1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
|
commit f41bab7e51b5e267dee567e59f20af921404f530
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date: Sat Jul 7 12:10:31 2012 +0200
add po gnome copyrights file
po/gnome-copyrights.txt | 1061 +++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 1061 insertions(+)
commit 1632efe04d57ee2b53e18ce753c388cf56015064
Author: Steve Zesch <stevezesch2@gmail.com>
Date: Wed Feb 22 21:03:17 2012 -0500
Preparing for 1.2 release
AUTHORS | 29 +-
ChangeLog | 2272 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
autogen.sh | 4 +-
configure.ac | 2 +-
4 files changed, 2292 insertions(+), 15 deletions(-)
commit c0e7770d10295a80108d35b325d812395ff11946
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date: Thu Jan 26 10:03:56 2012 +0100
1.1.1 release
configure.ac | 2 +-
distro/archlinux/PKGBUILD | 2 +-
distro/ubuntu/build | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
commit 3d8d4da2e892a00a97347fd8187e5adccccc0897
Author: Steve Zesch <stevezesch2@gmail.com>
Date: Wed Jan 25 22:45:57 2012 -0500
Added mate.svg and start-here.svg
src/mate.svg | 179 +++++++++
src/start-here.svg | 1041 ++++++++--------------------------------------------
2 files changed, 329 insertions(+), 891 deletions(-)
commit c7c80da1aaa36e26d4c1340c1475cb3e768dc358
Author: Perberos <perberos@gmail.com>
Date: Wed Jan 25 00:33:21 2012 -0300
changing menu icon
mate/16x16/places/start-here.png | Bin 946 -> 945 bytes
mate/22x22/places/start-here.png | Bin 1308 -> 1485 bytes
mate/24x24/places/start-here.png | Bin 1415 -> 1508 bytes
mate/32x32/places/start-here.png | Bin 2132 -> 2392 bytes
mate/48x48/places/start-here.png | Bin 3356 -> 4187 bytes
5 files changed, 0 insertions(+), 0 deletions(-)
commit 9f54e89513a9fdc3cd7499e5c25efe349fed295d
Author: Perberos <perberos@gmail.com>
Date: Wed Jan 25 00:20:56 2012 -0300
emptydirs is not a package
distro/archlinux/PKGBUILD | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit bd045de03a7979f5ab16699e4c888b1e9259f858
Author: Perberos <perberos@gmail.com>
Date: Wed Jan 25 00:19:21 2012 -0300
changing MATE icon
mate/16x16/apps/mate.png | Bin 946 -> 945 bytes
mate/22x22/apps/mate.png | Bin 1308 -> 1485 bytes
mate/24x24/apps/mate.png | Bin 1415 -> 1508 bytes
mate/32x32/apps/mate.png | Bin 2132 -> 2392 bytes
mate/48x48/apps/mate.png | Bin 3356 -> 4187 bytes
5 files changed, 0 insertions(+), 0 deletions(-)
commit 6dda59fd04344d9118c960e497b7a29e51e7cbec
Author: Perberos <perberos@gmail.com>
Date: Wed Jan 25 00:18:33 2012 -0300
changing pkgbuild source method
distro/archlinux/PKGBUILD | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
commit 6bcd3f86ff2091b0c232cba181c93dc7e7b0c2f3
Author: Steve Zesch <stevezesch2@gmail.com>
Date: Tue Jan 10 14:00:31 2012 -0500
Changed mate.gr.jp to gnome.gr.jp as requested in Issue #86
po/ChangeLog | 52 ++++++++++++++++++++++++++--------------------------
po/ja.po | 4 ++--
2 files changed, 28 insertions(+), 28 deletions(-)
commit 449656f243abe85038fc110a1252e730ec012ff1
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date: Fri Dec 9 16:33:45 2011 +0100
updated some info
AUTHORS | 1 +
configure.ac | 2 +-
2 files changed, 2 insertions(+), 1 deletion(-)
commit 5f30c1dc0dbec76602513549f68d4d4ca8e2d16b
Author: Steve Zesch <stevezesch2@gmail.com>
Date: Thu Dec 8 22:56:34 2011 -0500
updated version
configure.ac | 2 +-
distro/archlinux/PKGBUILD | 2 +-
distro/ubuntu/build | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
commit 7607677cb3451b25e88a0d5cfed24125675014e5
Author: Perberos <perberos@gmail.com>
Date: Mon Dec 5 05:47:38 2011 -0300
using autogen.sh instead of configure
distro/archlinux/PKGBUILD | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit f3cc786dfbe6f904587df81f4a76b58f5929d06c
Author: Perberos <perberos@gmail.com>
Date: Mon Dec 5 05:36:37 2011 -0300
touch
Makefile.am | 39 ++++++++++++++++++++-------------------
configure.ac | 2 +-
2 files changed, 21 insertions(+), 20 deletions(-)
commit 9d262551b4937dd58179925db1050134376d93bf
Author: Perberos <perberos@gmail.com>
Date: Mon Dec 5 05:32:46 2011 -0300
removing autogenerated files and adding default-applications icon
Makefile.in | 852 ------------
aclocal.m4 | 1355 --------------------
install-sh | 520 --------
.../preferences-desktop-default-applications.png | Bin 0 -> 748 bytes
.../preferences-desktop-default-applications.png | Bin 0 -> 1310 bytes
.../preferences-desktop-default-applications.png | Bin 0 -> 1340 bytes
.../preferences-desktop-default-applications.png | Bin 0 -> 1727 bytes
.../preferences-desktop-default-applications.png | Bin 0 -> 2825 bytes
missing | 376 ------
po/Makefile.in.in | 217 ----
src/Makefile.in | 373 ------
11 files changed, 3693 deletions(-)
commit 12b658ab32b972ce3023302573fd7b095f658490
Author: Steve Zesch <stevezesch2@gmail.com>
Date: Fri Dec 2 20:21:26 2011 -0500
Changed version to 2011.12.01
configure.ac | 2 +-
distro/archlinux/PKGBUILD | 2 +-
distro/ubuntu/build | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
commit 783bf11df04627b63812812fc7ba756248499883
Author: Perberos <perberos@gmail.com>
Date: Thu Dec 1 22:26:22 2011 -0300
moving from https://github.com/perberos/mate-desktop-environment
AUTHORS | 11 +
COPYING | 1 +
Makefile.am | 109 +
Makefile.in | 852 +
NEWS | 1 +
README | 40 +
TODO | 50 +
aclocal.m4 | 1355 +
autogen.sh | 25 +
configure.ac | 66 +
distro/archlinux/PKGBUILD | 26 +
distro/archlinux/mate-icon-theme.install | 11 +
distro/ubuntu/build | 26 +
distro/ubuntu/postinst | 5 +
distro/ubuntu/postrm | 6 +
index.theme.in.in | 24 +
install-sh | 520 +
mate-icon-theme.pc.in | 6 +
mate/16x16/actions/address-book-new.png | Bin 0 -> 883 bytes
mate/16x16/actions/application-exit.png | Bin 0 -> 781 bytes
mate/16x16/actions/appointment-new.png | Bin 0 -> 1029 bytes
mate/16x16/actions/bookmark-new.png | Bin 0 -> 720 bytes
mate/16x16/actions/call-start.png | Bin 0 -> 599 bytes
mate/16x16/actions/call-stop.png | Bin 0 -> 563 bytes
mate/16x16/actions/contact-new.png | Bin 0 -> 618 bytes
mate/16x16/actions/document-new.png | Bin 0 -> 851 bytes
mate/16x16/actions/document-open-recent.png | Bin 0 -> 1017 bytes
mate/16x16/actions/document-open.png | Bin 0 -> 776 bytes
mate/16x16/actions/document-page-setup.png | Bin 0 -> 910 bytes
mate/16x16/actions/document-print-preview.png | Bin 0 -> 889 bytes
mate/16x16/actions/document-print.png | Bin 0 -> 698 bytes
mate/16x16/actions/document-properties.png | Bin 0 -> 927 bytes
mate/16x16/actions/document-revert.png | Bin 0 -> 948 bytes
mate/16x16/actions/document-save-as.png | Bin 0 -> 689 bytes
mate/16x16/actions/document-save.png | Bin 0 -> 660 bytes
mate/16x16/actions/document-send.png | Bin 0 -> 480 bytes
mate/16x16/actions/edit-clear.png | Bin 0 -> 739 bytes
mate/16x16/actions/edit-copy.png | Bin 0 -> 549 bytes
mate/16x16/actions/edit-cut.png | Bin 0 -> 959 bytes
mate/16x16/actions/edit-delete.png | Bin 0 -> 1031 bytes
mate/16x16/actions/edit-find-replace.png | Bin 0 -> 1059 bytes
mate/16x16/actions/edit-find.png | Bin 0 -> 949 bytes
mate/16x16/actions/edit-paste.png | Bin 0 -> 722 bytes
mate/16x16/actions/edit-redo.png | Bin 0 -> 625 bytes
mate/16x16/actions/edit-select-all.png | Bin 0 -> 822 bytes
mate/16x16/actions/edit-undo.png | Bin 0 -> 626 bytes
mate/16x16/actions/folder-new.png | Bin 0 -> 836 bytes
mate/16x16/actions/format-indent-less.png | Bin 0 -> 577 bytes
mate/16x16/actions/format-indent-more.png | Bin 0 -> 593 bytes
mate/16x16/actions/format-justify-center.png | Bin 0 -> 400 bytes
mate/16x16/actions/format-justify-fill.png | Bin 0 -> 393 bytes
mate/16x16/actions/format-justify-left.png | Bin 0 -> 415 bytes
mate/16x16/actions/format-justify-right.png | Bin 0 -> 402 bytes
mate/16x16/actions/format-text-bold.png | Bin 0 -> 799 bytes
mate/16x16/actions/format-text-direction-ltr.png | Bin 0 -> 738 bytes
mate/16x16/actions/format-text-direction-rtl.png | Bin 0 -> 719 bytes
mate/16x16/actions/format-text-italic.png | Bin 0 -> 828 bytes
mate/16x16/actions/format-text-strikethrough.png | Bin 0 -> 637 bytes
mate/16x16/actions/format-text-underline.png | Bin 0 -> 736 bytes
mate/16x16/actions/go-bottom.png | Bin 0 -> 547 bytes
mate/16x16/actions/go-down.png | Bin 0 -> 540 bytes
mate/16x16/actions/go-first.png | Bin 0 -> 673 bytes
mate/16x16/actions/go-home.png | Bin 0 -> 770 bytes
mate/16x16/actions/go-jump.png | Bin 0 -> 469 bytes
mate/16x16/actions/go-last.png | Bin 0 -> 673 bytes
mate/16x16/actions/go-next.png | Bin 0 -> 541 bytes
mate/16x16/actions/go-previous.png | Bin 0 -> 551 bytes
mate/16x16/actions/go-top.png | Bin 0 -> 570 bytes
mate/16x16/actions/go-up.png | Bin 0 -> 468 bytes
mate/16x16/actions/help-about.png | Bin 0 -> 669 bytes
mate/16x16/actions/help-contents.png | Bin 0 -> 680 bytes
mate/16x16/actions/help-faq.png | Bin 0 -> 805 bytes
mate/16x16/actions/insert-image.png | Bin 0 -> 650 bytes
mate/16x16/actions/insert-link.png | Bin 0 -> 760 bytes
mate/16x16/actions/insert-object.png | Bin 0 -> 530 bytes
mate/16x16/actions/insert-text.png | Bin 0 -> 556 bytes
mate/16x16/actions/list-add.png | Bin 0 -> 520 bytes
mate/16x16/actions/list-remove.png | Bin 0 -> 333 bytes
mate/16x16/actions/mail-forward.png | Bin 0 -> 454 bytes
mate/16x16/actions/mail-mark-important.png | Bin 0 -> 591 bytes
mate/16x16/actions/mail-mark-junk.png | Bin 0 -> 946 bytes
mate/16x16/actions/mail-mark-notjunk.png | Bin 0 -> 804 bytes
mate/16x16/actions/mail-mark-read.png | Bin 0 -> 876 bytes
mate/16x16/actions/mail-mark-unread.png | Bin 0 -> 782 bytes
mate/16x16/actions/mail-message-new.png | Bin 0 -> 807 bytes
mate/16x16/actions/mail-reply-all.png | Bin 0 -> 573 bytes
mate/16x16/actions/mail-reply-sender.png | Bin 0 -> 456 bytes
mate/16x16/actions/mail-send-receive.png | Bin 0 -> 393 bytes
mate/16x16/actions/mail-send.png | Bin 0 -> 678 bytes
mate/16x16/actions/media-eject.png | Bin 0 -> 476 bytes
mate/16x16/actions/media-playback-pause.png | Bin 0 -> 398 bytes
mate/16x16/actions/media-playback-start.png | Bin 0 -> 520 bytes
mate/16x16/actions/media-playback-stop.png | Bin 0 -> 370 bytes
mate/16x16/actions/media-record.png | Bin 0 -> 551 bytes
mate/16x16/actions/media-seek-backward.png | Bin 0 -> 497 bytes
mate/16x16/actions/media-seek-forward.png | Bin 0 -> 518 bytes
mate/16x16/actions/media-skip-backward.png | Bin 0 -> 555 bytes
mate/16x16/actions/media-skip-forward.png | Bin 0 -> 610 bytes
mate/16x16/actions/object-flip-horizontal.png | Bin 0 -> 579 bytes
mate/16x16/actions/object-flip-vertical.png | Bin 0 -> 539 bytes
mate/16x16/actions/object-rotate-left.png | Bin 0 -> 638 bytes
mate/16x16/actions/object-rotate-right.png | Bin 0 -> 626 bytes
mate/16x16/actions/process-stop.png | Bin 0 -> 551 bytes
mate/16x16/actions/system-lock-screen.png | Bin 0 -> 922 bytes
mate/16x16/actions/system-log-out.png | Bin 0 -> 725 bytes
mate/16x16/actions/system-run.png | Bin 0 -> 383 bytes
mate/16x16/actions/system-search.png | Bin 0 -> 996 bytes
mate/16x16/actions/system-shutdown.png | Bin 0 -> 547 bytes
mate/16x16/actions/tab-new.png | Bin 0 -> 723 bytes
mate/16x16/actions/tools-check-spelling.png | Bin 0 -> 642 bytes
mate/16x16/actions/view-fullscreen.png | Bin 0 -> 549 bytes
mate/16x16/actions/view-refresh.png | Bin 0 -> 922 bytes
mate/16x16/actions/view-restore.png | Bin 0 -> 509 bytes
mate/16x16/actions/view-sort-ascending.png | Bin 0 -> 503 bytes
mate/16x16/actions/view-sort-descending.png | Bin 0 -> 489 bytes
mate/16x16/actions/window-close.png | Bin 0 -> 505 bytes
mate/16x16/actions/window-new.png | Bin 0 -> 528 bytes
mate/16x16/actions/zoom-fit-best.png | Bin 0 -> 629 bytes
mate/16x16/actions/zoom-in.png | Bin 0 -> 664 bytes
mate/16x16/actions/zoom-original.png | Bin 0 -> 657 bytes
mate/16x16/actions/zoom-out.png | Bin 0 -> 596 bytes
mate/16x16/animations/process-working.png | Bin 0 -> 2916 bytes
mate/16x16/apps/accessories-calculator.png | Bin 0 -> 500 bytes
mate/16x16/apps/accessories-character-map.png | Bin 0 -> 569 bytes
mate/16x16/apps/accessories-dictionary.png | Bin 0 -> 817 bytes
mate/16x16/apps/accessories-text-editor.png | Bin 0 -> 798 bytes
mate/16x16/apps/applets-screenshooter.png | Bin 0 -> 868 bytes
mate/16x16/apps/help-browser.png | Bin 0 -> 1058 bytes
mate/16x16/apps/logviewer.png | Bin 0 -> 756 bytes
mate/16x16/apps/mate.png | Bin 0 -> 946 bytes
mate/16x16/apps/multimedia-volume-control.png | Bin 0 -> 457 bytes
.../apps/preferences-desktop-accessibility.png | Bin 0 -> 914 bytes
mate/16x16/apps/preferences-desktop-display.png | Bin 0 -> 877 bytes
mate/16x16/apps/preferences-desktop-font.png | Bin 0 -> 680 bytes
.../preferences-desktop-keyboard-shortcuts.png | Bin 0 -> 640 bytes
mate/16x16/apps/preferences-desktop-keyboard.png | Bin 0 -> 763 bytes
mate/16x16/apps/preferences-desktop-locale.png | Bin 0 -> 658 bytes
.../apps/preferences-desktop-remote-desktop.png | Bin 0 -> 749 bytes
.../16x16/apps/preferences-desktop-screensaver.png | Bin 0 -> 803 bytes
mate/16x16/apps/preferences-desktop-theme.png | Bin 0 -> 889 bytes
mate/16x16/apps/preferences-desktop-wallpaper.png | Bin 0 -> 811 bytes
mate/16x16/apps/preferences-system-windows.png | Bin 0 -> 418 bytes
mate/16x16/apps/system-file-manager.png | Bin 0 -> 774 bytes
mate/16x16/apps/system-software-install.png | Bin 0 -> 591 bytes
mate/16x16/apps/system-software-update.png | Bin 0 -> 918 bytes
mate/16x16/apps/system-users.png | Bin 0 -> 840 bytes
mate/16x16/apps/user-info.png | Bin 0 -> 953 bytes
mate/16x16/apps/utilities-system-monitor.png | Bin 0 -> 727 bytes
mate/16x16/apps/utilities-terminal.png | Bin 0 -> 689 bytes
mate/16x16/apps/web-browser.png | Bin 0 -> 1120 bytes
mate/16x16/categories/applications-accessories.png | Bin 0 -> 1003 bytes
mate/16x16/categories/applications-development.png | Bin 0 -> 494 bytes
mate/16x16/categories/applications-engineering.png | Bin 0 -> 638 bytes
mate/16x16/categories/applications-games.png | Bin 0 -> 473 bytes
mate/16x16/categories/applications-graphics.png | Bin 0 -> 966 bytes
mate/16x16/categories/applications-internet.png | Bin 0 -> 1097 bytes
mate/16x16/categories/applications-multimedia.png | Bin 0 -> 632 bytes
mate/16x16/categories/applications-office.png | Bin 0 -> 864 bytes
mate/16x16/categories/applications-other.png | Bin 0 -> 796 bytes
mate/16x16/categories/applications-science.png | Bin 0 -> 981 bytes
mate/16x16/categories/applications-system.png | Bin 0 -> 991 bytes
mate/16x16/categories/applications-utilities.png | Bin 0 -> 850 bytes
.../categories/preferences-desktop-peripherals.png | Bin 0 -> 585 bytes
.../categories/preferences-desktop-personal.png | Bin 0 -> 438 bytes
mate/16x16/categories/preferences-desktop.png | Bin 0 -> 482 bytes
mate/16x16/categories/preferences-other.png | Bin 0 -> 772 bytes
.../categories/preferences-system-network.png | Bin 0 -> 860 bytes
mate/16x16/categories/preferences-system.png | Bin 0 -> 1014 bytes
mate/16x16/categories/system-help.png | Bin 0 -> 766 bytes
mate/16x16/devices/ac-adapter.png | Bin 0 -> 606 bytes
mate/16x16/devices/audio-card.png | Bin 0 -> 669 bytes
mate/16x16/devices/audio-input-microphone.png | Bin 0 -> 916 bytes
mate/16x16/devices/battery.png | Bin 0 -> 456 bytes
mate/16x16/devices/camera-photo.png | Bin 0 -> 898 bytes
mate/16x16/devices/camera-video.png | Bin 0 -> 766 bytes
mate/16x16/devices/camera-web.png | Bin 0 -> 924 bytes
mate/16x16/devices/computer.png | Bin 0 -> 805 bytes
mate/16x16/devices/drive-harddisk.png | Bin 0 -> 847 bytes
mate/16x16/devices/drive-optical.png | Bin 0 -> 764 bytes
mate/16x16/devices/drive-removable-media.png | Bin 0 -> 533 bytes
mate/16x16/devices/input-gaming.png | Bin 0 -> 817 bytes
mate/16x16/devices/input-keyboard.png | Bin 0 -> 588 bytes
mate/16x16/devices/input-mouse.png | Bin 0 -> 747 bytes
mate/16x16/devices/input-tablet.png | Bin 0 -> 328 bytes
mate/16x16/devices/input-touchpad.png | Bin 0 -> 622 bytes
mate/16x16/devices/media-flash.png | Bin 0 -> 478 bytes
mate/16x16/devices/media-floppy.png | Bin 0 -> 678 bytes
mate/16x16/devices/media-optical.png | Bin 0 -> 960 bytes
mate/16x16/devices/media-tape.png | Bin 0 -> 619 bytes
mate/16x16/devices/modem.png | Bin 0 -> 670 bytes
mate/16x16/devices/multimedia-player.png | Bin 0 -> 295 bytes
mate/16x16/devices/network-wired.png | Bin 0 -> 703 bytes
mate/16x16/devices/network-wireless.png | Bin 0 -> 1025 bytes
mate/16x16/devices/pda.png | Bin 0 -> 382 bytes
mate/16x16/devices/phone.png | Bin 0 -> 597 bytes
mate/16x16/devices/printer.png | Bin 0 -> 616 bytes
mate/16x16/devices/scanner.png | Bin 0 -> 655 bytes
mate/16x16/devices/video-display.png | Bin 0 -> 741 bytes
mate/16x16/emblems/emblem-default.png | Bin 0 -> 974 bytes
mate/16x16/emblems/emblem-documents.png | Bin 0 -> 862 bytes
mate/16x16/emblems/emblem-downloads.png | Bin 0 -> 381 bytes
mate/16x16/emblems/emblem-favorite.png | Bin 0 -> 742 bytes
mate/16x16/emblems/emblem-generic.png | Bin 0 -> 998 bytes
mate/16x16/emblems/emblem-important.png | Bin 0 -> 786 bytes
mate/16x16/emblems/emblem-mail.png | Bin 0 -> 784 bytes
mate/16x16/emblems/emblem-new.png | Bin 0 -> 796 bytes
mate/16x16/emblems/emblem-package.png | Bin 0 -> 622 bytes
mate/16x16/emblems/emblem-photos.png | Bin 0 -> 611 bytes
mate/16x16/emblems/emblem-readonly.png | Bin 0 -> 625 bytes
mate/16x16/emblems/emblem-shared.png | Bin 0 -> 669 bytes
mate/16x16/emblems/emblem-symbolic-link.png | Bin 0 -> 659 bytes
mate/16x16/emblems/emblem-synchronizing.png | Bin 0 -> 790 bytes
mate/16x16/emblems/emblem-system.png | Bin 0 -> 660 bytes
mate/16x16/emblems/emblem-unreadable.png | Bin 0 -> 677 bytes
mate/16x16/emblems/emblem-urgent.png | Bin 0 -> 808 bytes
mate/16x16/emblems/emblem-web.png | Bin 0 -> 973 bytes
mate/16x16/emotes/face-angel.png | Bin 0 -> 1060 bytes
mate/16x16/emotes/face-angry.png | Bin 0 -> 1046 bytes
mate/16x16/emotes/face-cool.png | Bin 0 -> 1032 bytes
mate/16x16/emotes/face-crying.png | Bin 0 -> 1085 bytes
mate/16x16/emotes/face-devilish.png | Bin 0 -> 1102 bytes
mate/16x16/emotes/face-embarrassed.png | Bin 0 -> 1067 bytes
mate/16x16/emotes/face-glasses.png | Bin 0 -> 1114 bytes
mate/16x16/emotes/face-kiss.png | Bin 0 -> 1074 bytes
mate/16x16/emotes/face-laugh.png | Bin 0 -> 1075 bytes
mate/16x16/emotes/face-monkey.png | Bin 0 -> 892 bytes
mate/16x16/emotes/face-plain.png | Bin 0 -> 1049 bytes
mate/16x16/emotes/face-raspberry.png | Bin 0 -> 1054 bytes
mate/16x16/emotes/face-sad.png | Bin 0 -> 1057 bytes
mate/16x16/emotes/face-sick.png | Bin 0 -> 1080 bytes
mate/16x16/emotes/face-smile-big.png | Bin 0 -> 1066 bytes
mate/16x16/emotes/face-smile.png | Bin 0 -> 1057 bytes
mate/16x16/emotes/face-smirk.png | Bin 0 -> 1062 bytes
mate/16x16/emotes/face-surprise.png | Bin 0 -> 1069 bytes
mate/16x16/emotes/face-tired.png | Bin 0 -> 1068 bytes
mate/16x16/emotes/face-uncertain.png | Bin 0 -> 1047 bytes
mate/16x16/emotes/face-wink.png | Bin 0 -> 1052 bytes
mate/16x16/emotes/face-worried.png | Bin 0 -> 1043 bytes
mate/16x16/mimetypes/application-certificate.png | Bin 0 -> 644 bytes
mate/16x16/mimetypes/application-x-executable.png | Bin 0 -> 684 bytes
mate/16x16/mimetypes/audio-x-generic.png | Bin 0 -> 688 bytes
mate/16x16/mimetypes/font-x-generic.png | Bin 0 -> 974 bytes
mate/16x16/mimetypes/image-x-generic.png | Bin 0 -> 672 bytes
mate/16x16/mimetypes/package-x-generic.png | Bin 0 -> 521 bytes
mate/16x16/mimetypes/text-html.png | Bin 0 -> 875 bytes
mate/16x16/mimetypes/text-x-generic-template.png | Bin 0 -> 834 bytes
mate/16x16/mimetypes/text-x-generic.png | Bin 0 -> 778 bytes
mate/16x16/mimetypes/text-x-preview.png | Bin 0 -> 741 bytes
mate/16x16/mimetypes/text-x-script.png | Bin 0 -> 913 bytes
mate/16x16/mimetypes/video-x-generic.png | Bin 0 -> 949 bytes
mate/16x16/mimetypes/x-office-address-book.png | Bin 0 -> 838 bytes
mate/16x16/mimetypes/x-office-calendar.png | Bin 0 -> 570 bytes
.../16x16/mimetypes/x-office-document-template.png | Bin 0 -> 949 bytes
mate/16x16/mimetypes/x-office-document.png | Bin 0 -> 831 bytes
mate/16x16/mimetypes/x-office-drawing-template.png | Bin 0 -> 1043 bytes
mate/16x16/mimetypes/x-office-drawing.png | Bin 0 -> 938 bytes
.../mimetypes/x-office-presentation-template.png | Bin 0 -> 878 bytes
mate/16x16/mimetypes/x-office-presentation.png | Bin 0 -> 712 bytes
.../mimetypes/x-office-spreadsheet-template.png | Bin 0 -> 981 bytes
mate/16x16/mimetypes/x-office-spreadsheet.png | Bin 0 -> 857 bytes
mate/16x16/places/folder-documents.png | Bin 0 -> 822 bytes
mate/16x16/places/folder-download.png | Bin 0 -> 798 bytes
mate/16x16/places/folder-music.png | Bin 0 -> 811 bytes
mate/16x16/places/folder-pictures.png | Bin 0 -> 898 bytes
mate/16x16/places/folder-publicshare.png | Bin 0 -> 797 bytes
mate/16x16/places/folder-remote.png | Bin 0 -> 743 bytes
mate/16x16/places/folder-saved-search.png | Bin 0 -> 828 bytes
mate/16x16/places/folder-templates.png | Bin 0 -> 772 bytes
mate/16x16/places/folder-videos.png | Bin 0 -> 785 bytes
mate/16x16/places/folder.png | Bin 0 -> 658 bytes
mate/16x16/places/network-server.png | Bin 0 -> 832 bytes
mate/16x16/places/network-workgroup.png | Bin 0 -> 720 bytes
mate/16x16/places/start-here.png | Bin 0 -> 946 bytes
mate/16x16/places/user-bookmarks.png | Bin 0 -> 863 bytes
mate/16x16/places/user-desktop.png | Bin 0 -> 854 bytes
mate/16x16/places/user-home.png | Bin 0 -> 875 bytes
mate/16x16/places/user-trash.png | Bin 0 -> 997 bytes
mate/16x16/status/appointment-missed.png | Bin 0 -> 1007 bytes
mate/16x16/status/appointment-soon.png | Bin 0 -> 915 bytes
mate/16x16/status/audio-volume-high.png | Bin 0 -> 906 bytes
mate/16x16/status/audio-volume-low.png | Bin 0 -> 577 bytes
mate/16x16/status/audio-volume-medium.png | Bin 0 -> 714 bytes
mate/16x16/status/audio-volume-muted.png | Bin 0 -> 711 bytes
mate/16x16/status/avatar-default.png | Bin 0 -> 846 bytes
mate/16x16/status/battery-caution-charging.png | Bin 0 -> 857 bytes
mate/16x16/status/battery-caution.png | Bin 0 -> 728 bytes
mate/16x16/status/battery-empty.png | Bin 0 -> 479 bytes
mate/16x16/status/battery-full-charged.png | Bin 0 -> 729 bytes
mate/16x16/status/battery-full-charging.png | Bin 0 -> 848 bytes
mate/16x16/status/battery-full.png | Bin 0 -> 472 bytes
mate/16x16/status/battery-good-charging.png | Bin 0 -> 839 bytes
mate/16x16/status/battery-good.png | Bin 0 -> 477 bytes
mate/16x16/status/battery-low-charging.png | Bin 0 -> 940 bytes
mate/16x16/status/battery-low.png | Bin 0 -> 496 bytes
mate/16x16/status/battery-missing.png | Bin 0 -> 635 bytes
mate/16x16/status/changes-allow.png | Bin 0 -> 786 bytes
mate/16x16/status/changes-prevent.png | Bin 0 -> 845 bytes
mate/16x16/status/dialog-error.png | Bin 0 -> 747 bytes
mate/16x16/status/dialog-information.png | Bin 0 -> 813 bytes
mate/16x16/status/dialog-password.png | Bin 0 -> 771 bytes
mate/16x16/status/dialog-question.png | Bin 0 -> 644 bytes
mate/16x16/status/dialog-warning.png | Bin 0 -> 683 bytes
mate/16x16/status/folder-drag-accept.png | Bin 0 -> 674 bytes
mate/16x16/status/folder-open.png | Bin 0 -> 722 bytes
mate/16x16/status/folder-visiting.png | Bin 0 -> 819 bytes
mate/16x16/status/image-loading.png | Bin 0 -> 1039 bytes
mate/16x16/status/image-missing.png | Bin 0 -> 576 bytes
mate/16x16/status/mail-attachment.png | Bin 0 -> 648 bytes
mate/16x16/status/mail-read.png | Bin 0 -> 621 bytes
mate/16x16/status/mail-replied.png | Bin 0 -> 819 bytes
mate/16x16/status/mail-signed-verified.png | Bin 0 -> 823 bytes
mate/16x16/status/mail-signed.png | Bin 0 -> 637 bytes
mate/16x16/status/mail-unread.png | Bin 0 -> 773 bytes
mate/16x16/status/media-playlist-repeat.png | Bin 0 -> 535 bytes
mate/16x16/status/media-playlist-shuffle.png | Bin 0 -> 598 bytes
mate/16x16/status/network-error.png | Bin 0 -> 848 bytes
mate/16x16/status/network-idle.png | Bin 0 -> 704 bytes
mate/16x16/status/network-offline.png | Bin 0 -> 773 bytes
mate/16x16/status/network-receive.png | Bin 0 -> 759 bytes
mate/16x16/status/network-transmit-receive.png | Bin 0 -> 725 bytes
mate/16x16/status/network-transmit.png | Bin 0 -> 774 bytes
mate/16x16/status/network-wireless-encrypted.png | Bin 0 -> 1033 bytes
mate/16x16/status/printer-error.png | Bin 0 -> 816 bytes
mate/16x16/status/printer-printing.png | Bin 0 -> 646 bytes
mate/16x16/status/security-high.png | Bin 0 -> 806 bytes
mate/16x16/status/security-low.png | Bin 0 -> 845 bytes
mate/16x16/status/security-medium.png | Bin 0 -> 828 bytes
mate/16x16/status/software-update-available.png | Bin 0 -> 752 bytes
mate/16x16/status/software-update-urgent.png | Bin 0 -> 762 bytes
mate/16x16/status/task-due.png | Bin 0 -> 696 bytes
mate/16x16/status/task-past-due.png | Bin 0 -> 686 bytes
mate/16x16/status/user-available.png | Bin 0 -> 859 bytes
mate/16x16/status/user-away.png | Bin 0 -> 770 bytes
mate/16x16/status/user-busy.png | Bin 0 -> 893 bytes
mate/16x16/status/user-idle.png | Bin 0 -> 684 bytes
mate/16x16/status/user-invisible.png | Bin 0 -> 849 bytes
mate/16x16/status/user-offline.png | Bin 0 -> 863 bytes
mate/16x16/status/user-trash-full.png | Bin 0 -> 1056 bytes
mate/16x16/status/weather-clear-night.png | Bin 0 -> 767 bytes
mate/16x16/status/weather-clear.png | Bin 0 -> 841 bytes
mate/16x16/status/weather-few-clouds-night.png | Bin 0 -> 799 bytes
mate/16x16/status/weather-few-clouds.png | Bin 0 -> 896 bytes
mate/16x16/status/weather-fog.png | Bin 0 -> 952 bytes
mate/16x16/status/weather-overcast.png | Bin 0 -> 608 bytes
mate/16x16/status/weather-severe-alert.png | Bin 0 -> 793 bytes
mate/16x16/status/weather-showers-scattered.png | Bin 0 -> 709 bytes
mate/16x16/status/weather-showers.png | Bin 0 -> 820 bytes
mate/16x16/status/weather-snow.png | Bin 0 -> 564 bytes
mate/16x16/status/weather-storm.png | Bin 0 -> 767 bytes
mate/22x22/actions/address-book-new.png | Bin 0 -> 1305 bytes
mate/22x22/actions/application-exit.png | Bin 0 -> 1091 bytes
mate/22x22/actions/appointment-new.png | Bin 0 -> 1651 bytes
mate/22x22/actions/bookmark-new.png | Bin 0 -> 948 bytes
mate/22x22/actions/call-start.png | Bin 0 -> 1035 bytes
mate/22x22/actions/call-stop.png | Bin 0 -> 840 bytes
mate/22x22/actions/contact-new.png | Bin 0 -> 969 bytes
mate/22x22/actions/document-new.png | Bin 0 -> 1208 bytes
mate/22x22/actions/document-open-recent.png | Bin 0 -> 1617 bytes
mate/22x22/actions/document-open.png | Bin 0 -> 970 bytes
mate/22x22/actions/document-page-setup.png | Bin 0 -> 1349 bytes
mate/22x22/actions/document-print-preview.png | Bin 0 -> 1511 bytes
mate/22x22/actions/document-print.png | Bin 0 -> 1178 bytes
mate/22x22/actions/document-properties.png | Bin 0 -> 1372 bytes
mate/22x22/actions/document-revert.png | Bin 0 -> 1281 bytes
mate/22x22/actions/document-save-as.png | Bin 0 -> 1158 bytes
mate/22x22/actions/document-save.png | Bin 0 -> 1228 bytes
mate/22x22/actions/document-send.png | Bin 0 -> 813 bytes
mate/22x22/actions/edit-clear.png | Bin 0 -> 1060 bytes
mate/22x22/actions/edit-copy.png | Bin 0 -> 729 bytes
mate/22x22/actions/edit-cut.png | Bin 0 -> 1236 bytes
mate/22x22/actions/edit-delete.png | Bin 0 -> 1418 bytes
mate/22x22/actions/edit-find-replace.png | Bin 0 -> 1627 bytes
mate/22x22/actions/edit-find.png | Bin 0 -> 1517 bytes
mate/22x22/actions/edit-paste.png | Bin 0 -> 952 bytes
mate/22x22/actions/edit-redo.png | Bin 0 -> 1027 bytes
mate/22x22/actions/edit-select-all.png | Bin 0 -> 1188 bytes
mate/22x22/actions/edit-undo.png | Bin 0 -> 993 bytes
mate/22x22/actions/folder-new.png | Bin 0 -> 1138 bytes
mate/22x22/actions/format-indent-less.png | Bin 0 -> 715 bytes
mate/22x22/actions/format-indent-more.png | Bin 0 -> 705 bytes
mate/22x22/actions/format-justify-center.png | Bin 0 -> 498 bytes
mate/22x22/actions/format-justify-fill.png | Bin 0 -> 444 bytes
mate/22x22/actions/format-justify-left.png | Bin 0 -> 509 bytes
mate/22x22/actions/format-justify-right.png | Bin 0 -> 466 bytes
mate/22x22/actions/format-text-bold.png | Bin 0 -> 1017 bytes
mate/22x22/actions/format-text-direction-ltr.png | Bin 0 -> 1146 bytes
mate/22x22/actions/format-text-direction-rtl.png | Bin 0 -> 1168 bytes
mate/22x22/actions/format-text-italic.png | Bin 0 -> 1102 bytes
mate/22x22/actions/format-text-strikethrough.png | Bin 0 -> 898 bytes
mate/22x22/actions/format-text-underline.png | Bin 0 -> 997 bytes
mate/22x22/actions/go-bottom.png | Bin 0 -> 1173 bytes
mate/22x22/actions/go-down.png | Bin 0 -> 1149 bytes
mate/22x22/actions/go-first.png | Bin 0 -> 1216 bytes
mate/22x22/actions/go-home.png | Bin 0 -> 1328 bytes
mate/22x22/actions/go-jump.png | Bin 0 -> 1033 bytes
mate/22x22/actions/go-last.png | Bin 0 -> 1188 bytes
mate/22x22/actions/go-next.png | Bin 0 -> 1114 bytes
mate/22x22/actions/go-previous.png | Bin 0 -> 1078 bytes
mate/22x22/actions/go-top.png | Bin 0 -> 1107 bytes
mate/22x22/actions/go-up.png | Bin 0 -> 1018 bytes
mate/22x22/actions/help-about.png | Bin 0 -> 981 bytes
mate/22x22/actions/help-contents.png | Bin 0 -> 966 bytes
mate/22x22/actions/help-faq.png | Bin 0 -> 1118 bytes
mate/22x22/actions/insert-image.png | Bin 0 -> 919 bytes
mate/22x22/actions/insert-link.png | Bin 0 -> 1038 bytes
mate/22x22/actions/insert-object.png | Bin 0 -> 673 bytes
mate/22x22/actions/insert-text.png | Bin 0 -> 795 bytes
mate/22x22/actions/list-add.png | Bin 0 -> 773 bytes
mate/22x22/actions/list-remove.png | Bin 0 -> 463 bytes
mate/22x22/actions/mail-forward.png | Bin 0 -> 1147 bytes
mate/22x22/actions/mail-mark-important.png | Bin 0 -> 870 bytes
mate/22x22/actions/mail-mark-junk.png | Bin 0 -> 1333 bytes
mate/22x22/actions/mail-mark-notjunk.png | Bin 0 -> 1233 bytes
mate/22x22/actions/mail-mark-read.png | Bin 0 -> 1214 bytes
mate/22x22/actions/mail-mark-unread.png | Bin 0 -> 1111 bytes
mate/22x22/actions/mail-message-new.png | Bin 0 -> 1146 bytes
mate/22x22/actions/mail-reply-all.png | Bin 0 -> 1153 bytes
mate/22x22/actions/mail-reply-sender.png | Bin 0 -> 1157 bytes
mate/22x22/actions/mail-send-receive.png | Bin 0 -> 1004 bytes
mate/22x22/actions/mail-send.png | Bin 0 -> 1082 bytes
mate/22x22/actions/media-eject.png | Bin 0 -> 712 bytes
mate/22x22/actions/media-playback-pause.png | Bin 0 -> 579 bytes
mate/22x22/actions/media-playback-start.png | Bin 0 -> 882 bytes
mate/22x22/actions/media-playback-stop.png | Bin 0 -> 515 bytes
mate/22x22/actions/media-record.png | Bin 0 -> 962 bytes
mate/22x22/actions/media-seek-backward.png | Bin 0 -> 791 bytes
mate/22x22/actions/media-seek-forward.png | Bin 0 -> 803 bytes
mate/22x22/actions/media-skip-backward.png | Bin 0 -> 902 bytes
mate/22x22/actions/media-skip-forward.png | Bin 0 -> 829 bytes
mate/22x22/actions/object-flip-horizontal.png | Bin 0 -> 964 bytes
mate/22x22/actions/object-flip-vertical.png | Bin 0 -> 1042 bytes
mate/22x22/actions/object-rotate-left.png | Bin 0 -> 1006 bytes
mate/22x22/actions/object-rotate-right.png | Bin 0 -> 1028 bytes
mate/22x22/actions/process-stop.png | Bin 0 -> 1190 bytes
mate/22x22/actions/system-lock-screen.png | Bin 0 -> 1432 bytes
mate/22x22/actions/system-log-out.png | Bin 0 -> 1098 bytes
mate/22x22/actions/system-run.png | Bin 0 -> 1302 bytes
mate/22x22/actions/system-search.png | Bin 0 -> 1521 bytes
mate/22x22/actions/system-shutdown.png | Bin 0 -> 717 bytes
mate/22x22/actions/tab-new.png | Bin 0 -> 1162 bytes
mate/22x22/actions/tools-check-spelling.png | Bin 0 -> 900 bytes
mate/22x22/actions/view-fullscreen.png | Bin 0 -> 625 bytes
mate/22x22/actions/view-refresh.png | Bin 0 -> 1349 bytes
mate/22x22/actions/view-restore.png | Bin 0 -> 594 bytes
mate/22x22/actions/view-sort-ascending.png | Bin 0 -> 914 bytes
mate/22x22/actions/view-sort-descending.png | Bin 0 -> 872 bytes
mate/22x22/actions/window-close.png | Bin 0 -> 1065 bytes
mate/22x22/actions/window-new.png | Bin 0 -> 857 bytes
mate/22x22/actions/zoom-fit-best.png | Bin 0 -> 874 bytes
mate/22x22/actions/zoom-in.png | Bin 0 -> 847 bytes
mate/22x22/actions/zoom-original.png | Bin 0 -> 871 bytes
mate/22x22/actions/zoom-out.png | Bin 0 -> 779 bytes
mate/22x22/animations/process-working.png | Bin 0 -> 4263 bytes
mate/22x22/apps/accessories-calculator.png | Bin 0 -> 799 bytes
mate/22x22/apps/accessories-character-map.png | Bin 0 -> 1020 bytes
mate/22x22/apps/accessories-dictionary.png | Bin 0 -> 1231 bytes
mate/22x22/apps/accessories-text-editor.png | Bin 0 -> 1178 bytes
mate/22x22/apps/applets-screenshooter.png | Bin 0 -> 1304 bytes
mate/22x22/apps/help-browser.png | Bin 0 -> 1543 bytes
mate/22x22/apps/logviewer.png | Bin 0 -> 911 bytes
mate/22x22/apps/mate.png | Bin 0 -> 1308 bytes
mate/22x22/apps/multimedia-volume-control.png | Bin 0 -> 1033 bytes
.../apps/preferences-desktop-accessibility.png | Bin 0 -> 1489 bytes
mate/22x22/apps/preferences-desktop-display.png | Bin 0 -> 1277 bytes
mate/22x22/apps/preferences-desktop-font.png | Bin 0 -> 1038 bytes
.../preferences-desktop-keyboard-shortcuts.png | Bin 0 -> 841 bytes
mate/22x22/apps/preferences-desktop-keyboard.png | Bin 0 -> 1056 bytes
mate/22x22/apps/preferences-desktop-locale.png | Bin 0 -> 1325 bytes
.../apps/preferences-desktop-remote-desktop.png | Bin 0 -> 1139 bytes
.../22x22/apps/preferences-desktop-screensaver.png | Bin 0 -> 1227 bytes
mate/22x22/apps/preferences-desktop-theme.png | Bin 0 -> 1271 bytes
mate/22x22/apps/preferences-desktop-wallpaper.png | Bin 0 -> 1226 bytes
mate/22x22/apps/preferences-system-windows.png | Bin 0 -> 507 bytes
mate/22x22/apps/system-file-manager.png | Bin 0 -> 1120 bytes
mate/22x22/apps/system-software-install.png | Bin 0 -> 1230 bytes
mate/22x22/apps/system-software-update.png | Bin 0 -> 1379 bytes
mate/22x22/apps/system-users.png | Bin 0 -> 1280 bytes
mate/22x22/apps/user-info.png | Bin 0 -> 1408 bytes
mate/22x22/apps/utilities-system-monitor.png | Bin 0 -> 1082 bytes
mate/22x22/apps/utilities-terminal.png | Bin 0 -> 946 bytes
mate/22x22/apps/web-browser.png | Bin 0 -> 1712 bytes
mate/22x22/categories/applications-accessories.png | Bin 0 -> 1570 bytes
mate/22x22/categories/applications-development.png | Bin 0 -> 938 bytes
mate/22x22/categories/applications-engineering.png | Bin 0 -> 973 bytes
mate/22x22/categories/applications-games.png | Bin 0 -> 801 bytes
mate/22x22/categories/applications-graphics.png | Bin 0 -> 1539 bytes
mate/22x22/categories/applications-internet.png | Bin 0 -> 1676 bytes
mate/22x22/categories/applications-multimedia.png | Bin 0 -> 940 bytes
mate/22x22/categories/applications-office.png | Bin 0 -> 1194 bytes
mate/22x22/categories/applications-other.png | Bin 0 -> 1253 bytes
mate/22x22/categories/applications-science.png | Bin 0 -> 1403 bytes
mate/22x22/categories/applications-system.png | Bin 0 -> 1523 bytes
mate/22x22/categories/applications-utilities.png | Bin 0 -> 1341 bytes
.../categories/preferences-desktop-peripherals.png | Bin 0 -> 753 bytes
.../categories/preferences-desktop-personal.png | Bin 0 -> 922 bytes
mate/22x22/categories/preferences-desktop.png | Bin 0 -> 704 bytes
mate/22x22/categories/preferences-other.png | Bin 0 -> 1212 bytes
.../categories/preferences-system-network.png | Bin 0 -> 1342 bytes
mate/22x22/categories/preferences-system.png | Bin 0 -> 1419 bytes
mate/22x22/categories/system-help.png | Bin 0 -> 1131 bytes
mate/22x22/devices/ac-adapter.png | Bin 0 -> 1189 bytes
mate/22x22/devices/audio-card.png | Bin 0 -> 1246 bytes
mate/22x22/devices/audio-input-microphone.png | Bin 0 -> 1206 bytes
mate/22x22/devices/battery.png | Bin 0 -> 585 bytes
mate/22x22/devices/camera-photo.png | Bin 0 -> 1331 bytes
mate/22x22/devices/camera-video.png | Bin 0 -> 1220 bytes
mate/22x22/devices/camera-web.png | Bin 0 -> 1314 bytes
mate/22x22/devices/computer.png | Bin 0 -> 1270 bytes
mate/22x22/devices/drive-harddisk.png | Bin 0 -> 1222 bytes
mate/22x22/devices/drive-optical.png | Bin 0 -> 1183 bytes
mate/22x22/devices/drive-removable-media.png | Bin 0 -> 786 bytes
mate/22x22/devices/input-gaming.png | Bin 0 -> 1107 bytes
mate/22x22/devices/input-keyboard.png | Bin 0 -> 710 bytes
mate/22x22/devices/input-mouse.png | Bin 0 -> 1259 bytes
mate/22x22/devices/input-tablet.png | Bin 0 -> 659 bytes
mate/22x22/devices/input-touchpad.png | Bin 0 -> 860 bytes
mate/22x22/devices/media-flash.png | Bin 0 -> 860 bytes
mate/22x22/devices/media-floppy.png | Bin 0 -> 928 bytes
mate/22x22/devices/media-optical.png | Bin 0 -> 1402 bytes
mate/22x22/devices/media-tape.png | Bin 0 -> 915 bytes
mate/22x22/devices/modem.png | Bin 0 -> 1240 bytes
mate/22x22/devices/multimedia-player.png | Bin 0 -> 670 bytes
mate/22x22/devices/network-wired.png | Bin 0 -> 839 bytes
mate/22x22/devices/network-wireless.png | Bin 0 -> 1340 bytes
mate/22x22/devices/pda.png | Bin 0 -> 673 bytes
mate/22x22/devices/phone.png | Bin 0 -> 906 bytes
mate/22x22/devices/printer.png | Bin 0 -> 1084 bytes
mate/22x22/devices/scanner.png | Bin 0 -> 1072 bytes
mate/22x22/devices/video-display.png | Bin 0 -> 1140 bytes
mate/22x22/emblems/emblem-default.png | Bin 0 -> 1376 bytes
mate/22x22/emblems/emblem-documents.png | Bin 0 -> 1301 bytes
mate/22x22/emblems/emblem-downloads.png | Bin 0 -> 736 bytes
mate/22x22/emblems/emblem-favorite.png | Bin 0 -> 1003 bytes
mate/22x22/emblems/emblem-generic.png | Bin 0 -> 1448 bytes
mate/22x22/emblems/emblem-important.png | Bin 0 -> 1211 bytes
mate/22x22/emblems/emblem-mail.png | Bin 0 -> 997 bytes
mate/22x22/emblems/emblem-new.png | Bin 0 -> 1042 bytes
mate/22x22/emblems/emblem-package.png | Bin 0 -> 788 bytes
mate/22x22/emblems/emblem-photos.png | Bin 0 -> 1246 bytes
mate/22x22/emblems/emblem-readonly.png | Bin 0 -> 879 bytes
mate/22x22/emblems/emblem-shared.png | Bin 0 -> 868 bytes
mate/22x22/emblems/emblem-symbolic-link.png | Bin 0 -> 899 bytes
mate/22x22/emblems/emblem-synchronizing.png | Bin 0 -> 1047 bytes
mate/22x22/emblems/emblem-system.png | Bin 0 -> 895 bytes
mate/22x22/emblems/emblem-unreadable.png | Bin 0 -> 984 bytes
mate/22x22/emblems/emblem-urgent.png | Bin 0 -> 1232 bytes
mate/22x22/emblems/emblem-web.png | Bin 0 -> 1411 bytes
mate/22x22/emotes/face-angel.png | Bin 0 -> 1543 bytes
mate/22x22/emotes/face-angry.png | Bin 0 -> 1479 bytes
mate/22x22/emotes/face-cool.png | Bin 0 -> 1350 bytes
mate/22x22/emotes/face-crying.png | Bin 0 -> 1412 bytes
mate/22x22/emotes/face-devilish.png | Bin 0 -> 1443 bytes
mate/22x22/emotes/face-embarrassed.png | Bin 0 -> 1464 bytes
mate/22x22/emotes/face-glasses.png | Bin 0 -> 1473 bytes
mate/22x22/emotes/face-kiss.png | Bin 0 -> 1407 bytes
mate/22x22/emotes/face-laugh.png | Bin 0 -> 1399 bytes
mate/22x22/emotes/face-monkey.png | Bin 0 -> 1390 bytes
mate/22x22/emotes/face-plain.png | Bin 0 -> 1369 bytes
mate/22x22/emotes/face-raspberry.png | Bin 0 -> 1385 bytes
mate/22x22/emotes/face-sad.png | Bin 0 -> 1381 bytes
mate/22x22/emotes/face-sick.png | Bin 0 -> 1412 bytes
mate/22x22/emotes/face-smile-big.png | Bin 0 -> 1376 bytes
mate/22x22/emotes/face-smile.png | Bin 0 -> 1376 bytes
mate/22x22/emotes/face-smirk.png | Bin 0 -> 1375 bytes
mate/22x22/emotes/face-surprise.png | Bin 0 -> 1407 bytes
mate/22x22/emotes/face-tired.png | Bin 0 -> 1429 bytes
mate/22x22/emotes/face-uncertain.png | Bin 0 -> 1368 bytes
mate/22x22/emotes/face-wink.png | Bin 0 -> 1381 bytes
mate/22x22/emotes/face-worried.png | Bin 0 -> 1368 bytes
mate/22x22/mimetypes/application-certificate.png | Bin 0 -> 840 bytes
mate/22x22/mimetypes/application-x-executable.png | Bin 0 -> 1231 bytes
mate/22x22/mimetypes/audio-x-generic.png | Bin 0 -> 955 bytes
mate/22x22/mimetypes/font-x-generic.png | Bin 0 -> 1476 bytes
mate/22x22/mimetypes/image-x-generic.png | Bin 0 -> 993 bytes
mate/22x22/mimetypes/package-x-generic.png | Bin 0 -> 978 bytes
mate/22x22/mimetypes/text-html.png | Bin 0 -> 1318 bytes
mate/22x22/mimetypes/text-x-generic-template.png | Bin 0 -> 1147 bytes
mate/22x22/mimetypes/text-x-generic.png | Bin 0 -> 1098 bytes
mate/22x22/mimetypes/text-x-preview.png | Bin 0 -> 1036 bytes
mate/22x22/mimetypes/text-x-script.png | Bin 0 -> 1304 bytes
mate/22x22/mimetypes/video-x-generic.png | Bin 0 -> 1409 bytes
mate/22x22/mimetypes/x-office-address-book.png | Bin 0 -> 1216 bytes
mate/22x22/mimetypes/x-office-calendar.png | Bin 0 -> 842 bytes
.../22x22/mimetypes/x-office-document-template.png | Bin 0 -> 1426 bytes
mate/22x22/mimetypes/x-office-document.png | Bin 0 -> 1244 bytes
mate/22x22/mimetypes/x-office-drawing-template.png | Bin 0 -> 1525 bytes
mate/22x22/mimetypes/x-office-drawing.png | Bin 0 -> 1322 bytes
.../mimetypes/x-office-presentation-template.png | Bin 0 -> 1346 bytes
mate/22x22/mimetypes/x-office-presentation.png | Bin 0 -> 1106 bytes
.../mimetypes/x-office-spreadsheet-template.png | Bin 0 -> 1513 bytes
mate/22x22/mimetypes/x-office-spreadsheet.png | Bin 0 -> 1350 bytes
mate/22x22/places/folder-documents.png | Bin 0 -> 1045 bytes
mate/22x22/places/folder-download.png | Bin 0 -> 1044 bytes
mate/22x22/places/folder-music.png | Bin 0 -> 1032 bytes
mate/22x22/places/folder-pictures.png | Bin 0 -> 1143 bytes
mate/22x22/places/folder-publicshare.png | Bin 0 -> 1057 bytes
mate/22x22/places/folder-remote.png | Bin 0 -> 1030 bytes
mate/22x22/places/folder-saved-search.png | Bin 0 -> 1053 bytes
mate/22x22/places/folder-templates.png | Bin 0 -> 1018 bytes
mate/22x22/places/folder-videos.png | Bin 0 -> 1048 bytes
mate/22x22/places/folder.png | Bin 0 -> 873 bytes
mate/22x22/places/network-server.png | Bin 0 -> 1231 bytes
mate/22x22/places/network-workgroup.png | Bin 0 -> 1298 bytes
mate/22x22/places/start-here.png | Bin 0 -> 1308 bytes
mate/22x22/places/user-bookmarks.png | Bin 0 -> 1099 bytes
mate/22x22/places/user-desktop.png | Bin 0 -> 1055 bytes
mate/22x22/places/user-home.png | Bin 0 -> 1140 bytes
mate/22x22/places/user-trash.png | Bin 0 -> 1582 bytes
mate/22x22/status/appointment-missed.png | Bin 0 -> 1608 bytes
mate/22x22/status/appointment-soon.png | Bin 0 -> 1414 bytes
mate/22x22/status/audio-volume-high.png | Bin 0 -> 1280 bytes
mate/22x22/status/audio-volume-low.png | Bin 0 -> 937 bytes
mate/22x22/status/audio-volume-medium.png | Bin 0 -> 1078 bytes
mate/22x22/status/audio-volume-muted.png | Bin 0 -> 1043 bytes
mate/22x22/status/avatar-default.png | Bin 0 -> 1202 bytes
mate/22x22/status/battery-caution-charging.png | Bin 0 -> 1324 bytes
mate/22x22/status/battery-caution.png | Bin 0 -> 1113 bytes
mate/22x22/status/battery-empty.png | Bin 0 -> 746 bytes
mate/22x22/status/battery-full-charged.png | Bin 0 -> 1099 bytes
mate/22x22/status/battery-full-charging.png | Bin 0 -> 1258 bytes
mate/22x22/status/battery-full.png | Bin 0 -> 705 bytes
mate/22x22/status/battery-good-charging.png | Bin 0 -> 1293 bytes
mate/22x22/status/battery-good.png | Bin 0 -> 768 bytes
mate/22x22/status/battery-low-charging.png | Bin 0 -> 1317 bytes
mate/22x22/status/battery-low.png | Bin 0 -> 775 bytes
mate/22x22/status/battery-missing.png | Bin 0 -> 887 bytes
mate/22x22/status/changes-allow.png | Bin 0 -> 1128 bytes
mate/22x22/status/changes-prevent.png | Bin 0 -> 1061 bytes
mate/22x22/status/dialog-error.png | Bin 0 -> 1126 bytes
mate/22x22/status/dialog-information.png | Bin 0 -> 1242 bytes
mate/22x22/status/dialog-password.png | Bin 0 -> 1196 bytes
mate/22x22/status/dialog-question.png | Bin 0 -> 1086 bytes
mate/22x22/status/dialog-warning.png | Bin 0 -> 1074 bytes
mate/22x22/status/folder-drag-accept.png | Bin 0 -> 865 bytes
mate/22x22/status/folder-open.png | Bin 0 -> 987 bytes
mate/22x22/status/folder-visiting.png | Bin 0 -> 1186 bytes
mate/22x22/status/image-loading.png | Bin 0 -> 1464 bytes
mate/22x22/status/image-missing.png | Bin 0 -> 749 bytes
mate/22x22/status/mail-attachment.png | Bin 0 -> 949 bytes
mate/22x22/status/mail-read.png | Bin 0 -> 847 bytes
mate/22x22/status/mail-replied.png | Bin 0 -> 1131 bytes
mate/22x22/status/mail-signed-verified.png | Bin 0 -> 1348 bytes
mate/22x22/status/mail-signed.png | Bin 0 -> 1108 bytes
mate/22x22/status/mail-unread.png | Bin 0 -> 1100 bytes
mate/22x22/status/media-playlist-repeat.png | Bin 0 -> 938 bytes
mate/22x22/status/media-playlist-shuffle.png | Bin 0 -> 1210 bytes
mate/22x22/status/network-error.png | Bin 0 -> 1256 bytes
mate/22x22/status/network-idle.png | Bin 0 -> 1163 bytes
mate/22x22/status/network-offline.png | Bin 0 -> 1231 bytes
mate/22x22/status/network-receive.png | Bin 0 -> 1228 bytes
mate/22x22/status/network-transmit-receive.png | Bin 0 -> 1176 bytes
mate/22x22/status/network-transmit.png | Bin 0 -> 1232 bytes
mate/22x22/status/network-wireless-encrypted.png | Bin 0 -> 1510 bytes
mate/22x22/status/printer-error.png | Bin 0 -> 1193 bytes
mate/22x22/status/printer-printing.png | Bin 0 -> 1162 bytes
mate/22x22/status/security-high.png | Bin 0 -> 1229 bytes
mate/22x22/status/security-low.png | Bin 0 -> 1203 bytes
mate/22x22/status/security-medium.png | Bin 0 -> 1297 bytes
mate/22x22/status/software-update-available.png | Bin 0 -> 1259 bytes
mate/22x22/status/software-update-urgent.png | Bin 0 -> 1167 bytes
mate/22x22/status/task-due.png | Bin 0 -> 1035 bytes
mate/22x22/status/task-past-due.png | Bin 0 -> 919 bytes
mate/22x22/status/user-available.png | Bin 0 -> 1304 bytes
mate/22x22/status/user-away.png | Bin 0 -> 1145 bytes
mate/22x22/status/user-busy.png | Bin 0 -> 1364 bytes
mate/22x22/status/user-idle.png | Bin 0 -> 1223 bytes
mate/22x22/status/user-invisible.png | Bin 0 -> 1141 bytes
mate/22x22/status/user-offline.png | Bin 0 -> 1247 bytes
mate/22x22/status/user-trash-full.png | Bin 0 -> 1587 bytes
mate/22x22/status/weather-clear-night.png | Bin 0 -> 1207 bytes
mate/22x22/status/weather-clear.png | Bin 0 -> 1314 bytes
mate/22x22/status/weather-few-clouds-night.png | Bin 0 -> 1276 bytes
mate/22x22/status/weather-few-clouds.png | Bin 0 -> 1398 bytes
mate/22x22/status/weather-fog.png | Bin 0 -> 1320 bytes
mate/22x22/status/weather-overcast.png | Bin 0 -> 885 bytes
mate/22x22/status/weather-severe-alert.png | Bin 0 -> 1258 bytes
mate/22x22/status/weather-showers-scattered.png | Bin 0 -> 1202 bytes
mate/22x22/status/weather-showers.png | Bin 0 -> 1306 bytes
mate/22x22/status/weather-snow.png | Bin 0 -> 900 bytes
mate/22x22/status/weather-storm.png | Bin 0 -> 1121 bytes
mate/24x24/actions/address-book-new.png | Bin 0 -> 1434 bytes
mate/24x24/actions/application-exit.png | Bin 0 -> 1130 bytes
mate/24x24/actions/appointment-new.png | Bin 0 -> 1690 bytes
mate/24x24/actions/bookmark-new.png | Bin 0 -> 962 bytes
mate/24x24/actions/call-start.png | Bin 0 -> 1147 bytes
mate/24x24/actions/call-stop.png | Bin 0 -> 949 bytes
mate/24x24/actions/contact-new.png | Bin 0 -> 1122 bytes
mate/24x24/actions/document-new.png | Bin 0 -> 1255 bytes
mate/24x24/actions/document-open-recent.png | Bin 0 -> 1645 bytes
mate/24x24/actions/document-open.png | Bin 0 -> 1021 bytes
mate/24x24/actions/document-page-setup.png | Bin 0 -> 1391 bytes
mate/24x24/actions/document-print-preview.png | Bin 0 -> 1501 bytes
mate/24x24/actions/document-print.png | Bin 0 -> 1253 bytes
mate/24x24/actions/document-properties.png | Bin 0 -> 1401 bytes
mate/24x24/actions/document-revert.png | Bin 0 -> 1326 bytes
mate/24x24/actions/document-save-as.png | Bin 0 -> 1187 bytes
mate/24x24/actions/document-save.png | Bin 0 -> 1238 bytes
mate/24x24/actions/document-send.png | Bin 0 -> 910 bytes
mate/24x24/actions/edit-clear.png | Bin 0 -> 1177 bytes
mate/24x24/actions/edit-copy.png | Bin 0 -> 859 bytes
mate/24x24/actions/edit-cut.png | Bin 0 -> 1347 bytes
mate/24x24/actions/edit-delete.png | Bin 0 -> 1425 bytes
mate/24x24/actions/edit-find-replace.png | Bin 0 -> 1683 bytes
mate/24x24/actions/edit-find.png | Bin 0 -> 1560 bytes
mate/24x24/actions/edit-paste.png | Bin 0 -> 1084 bytes
mate/24x24/actions/edit-redo.png | Bin 0 -> 1052 bytes
mate/24x24/actions/edit-select-all.png | Bin 0 -> 1234 bytes
mate/24x24/actions/edit-undo.png | Bin 0 -> 1033 bytes
mate/24x24/actions/folder-new.png | Bin 0 -> 1199 bytes
mate/24x24/actions/format-indent-less.png | Bin 0 -> 718 bytes
mate/24x24/actions/format-indent-more.png | Bin 0 -> 706 bytes
mate/24x24/actions/format-justify-center.png | Bin 0 -> 513 bytes
mate/24x24/actions/format-justify-fill.png | Bin 0 -> 453 bytes
mate/24x24/actions/format-justify-left.png | Bin 0 -> 522 bytes
mate/24x24/actions/format-justify-right.png | Bin 0 -> 473 bytes
mate/24x24/actions/format-text-bold.png | Bin 0 -> 1029 bytes
mate/24x24/actions/format-text-direction-ltr.png | Bin 0 -> 1278 bytes
mate/24x24/actions/format-text-direction-rtl.png | Bin 0 -> 1284 bytes
mate/24x24/actions/format-text-italic.png | Bin 0 -> 1107 bytes
mate/24x24/actions/format-text-strikethrough.png | Bin 0 -> 894 bytes
mate/24x24/actions/format-text-underline.png | Bin 0 -> 1005 bytes
mate/24x24/actions/go-bottom.png | Bin 0 -> 1195 bytes
mate/24x24/actions/go-down.png | Bin 0 -> 1150 bytes
mate/24x24/actions/go-first.png | Bin 0 -> 1236 bytes
mate/24x24/actions/go-home.png | Bin 0 -> 1367 bytes
mate/24x24/actions/go-jump.png | Bin 0 -> 1035 bytes
mate/24x24/actions/go-last.png | Bin 0 -> 1207 bytes
mate/24x24/actions/go-next.png | Bin 0 -> 1114 bytes
mate/24x24/actions/go-previous.png | Bin 0 -> 1078 bytes
mate/24x24/actions/go-top.png | Bin 0 -> 1117 bytes
mate/24x24/actions/go-up.png | Bin 0 -> 1019 bytes
mate/24x24/actions/help-about.png | Bin 0 -> 1078 bytes
mate/24x24/actions/help-contents.png | Bin 0 -> 1074 bytes
mate/24x24/actions/help-faq.png | Bin 0 -> 1254 bytes
mate/24x24/actions/insert-image.png | Bin 0 -> 1041 bytes
mate/24x24/actions/insert-link.png | Bin 0 -> 1180 bytes
mate/24x24/actions/insert-object.png | Bin 0 -> 783 bytes
mate/24x24/actions/insert-text.png | Bin 0 -> 920 bytes
mate/24x24/actions/list-add.png | Bin 0 -> 779 bytes
mate/24x24/actions/list-remove.png | Bin 0 -> 469 bytes
mate/24x24/actions/mail-forward.png | Bin 0 -> 1301 bytes
mate/24x24/actions/mail-mark-important.png | Bin 0 -> 1001 bytes
mate/24x24/actions/mail-mark-junk.png | Bin 0 -> 1326 bytes
mate/24x24/actions/mail-mark-notjunk.png | Bin 0 -> 1238 bytes
mate/24x24/actions/mail-mark-read.png | Bin 0 -> 1224 bytes
mate/24x24/actions/mail-mark-unread.png | Bin 0 -> 1244 bytes
mate/24x24/actions/mail-message-new.png | Bin 0 -> 1174 bytes
mate/24x24/actions/mail-reply-all.png | Bin 0 -> 1270 bytes
mate/24x24/actions/mail-reply-sender.png | Bin 0 -> 1282 bytes
mate/24x24/actions/mail-send-receive.png | Bin 0 -> 1135 bytes
mate/24x24/actions/mail-send.png | Bin 0 -> 1207 bytes
mate/24x24/actions/media-eject.png | Bin 0 -> 712 bytes
mate/24x24/actions/media-playback-pause.png | Bin 0 -> 583 bytes
mate/24x24/actions/media-playback-start.png | Bin 0 -> 893 bytes
mate/24x24/actions/media-playback-stop.png | Bin 0 -> 522 bytes
mate/24x24/actions/media-record.png | Bin 0 -> 963 bytes
mate/24x24/actions/media-seek-backward.png | Bin 0 -> 791 bytes
mate/24x24/actions/media-seek-forward.png | Bin 0 -> 802 bytes
mate/24x24/actions/media-skip-backward.png | Bin 0 -> 922 bytes
mate/24x24/actions/media-skip-forward.png | Bin 0 -> 842 bytes
mate/24x24/actions/object-flip-horizontal.png | Bin 0 -> 1010 bytes
mate/24x24/actions/object-flip-vertical.png | Bin 0 -> 1052 bytes
mate/24x24/actions/object-rotate-left.png | Bin 0 -> 1030 bytes
mate/24x24/actions/object-rotate-right.png | Bin 0 -> 1046 bytes
mate/24x24/actions/process-stop.png | Bin 0 -> 1206 bytes
mate/24x24/actions/system-lock-screen.png | Bin 0 -> 1438 bytes
mate/24x24/actions/system-log-out.png | Bin 0 -> 1245 bytes
mate/24x24/actions/system-run.png | Bin 0 -> 1424 bytes
mate/24x24/actions/system-search.png | Bin 0 -> 1579 bytes
mate/24x24/actions/system-shutdown.png | Bin 0 -> 733 bytes
mate/24x24/actions/tab-new.png | Bin 0 -> 1292 bytes
mate/24x24/actions/tools-check-spelling.png | Bin 0 -> 1023 bytes
mate/24x24/actions/view-fullscreen.png | Bin 0 -> 633 bytes
mate/24x24/actions/view-refresh.png | Bin 0 -> 1373 bytes
mate/24x24/actions/view-restore.png | Bin 0 -> 595 bytes
mate/24x24/actions/view-sort-ascending.png | Bin 0 -> 944 bytes
mate/24x24/actions/view-sort-descending.png | Bin 0 -> 880 bytes
mate/24x24/actions/window-close.png | Bin 0 -> 1187 bytes
mate/24x24/actions/window-new.png | Bin 0 -> 981 bytes
mate/24x24/actions/zoom-fit-best.png | Bin 0 -> 878 bytes
mate/24x24/actions/zoom-in.png | Bin 0 -> 858 bytes
mate/24x24/actions/zoom-original.png | Bin 0 -> 879 bytes
mate/24x24/actions/zoom-out.png | Bin 0 -> 791 bytes
mate/24x24/apps/accessories-calculator.png | Bin 0 -> 820 bytes
mate/24x24/apps/accessories-character-map.png | Bin 0 -> 1057 bytes
mate/24x24/apps/accessories-dictionary.png | Bin 0 -> 1306 bytes
mate/24x24/apps/accessories-text-editor.png | Bin 0 -> 1308 bytes
mate/24x24/apps/applets-screenshooter.png | Bin 0 -> 1335 bytes
mate/24x24/apps/help-browser.png | Bin 0 -> 1494 bytes
mate/24x24/apps/logviewer.png | Bin 0 -> 1034 bytes
mate/24x24/apps/mate.png | Bin 0 -> 1415 bytes
mate/24x24/apps/multimedia-volume-control.png | Bin 0 -> 1156 bytes
.../apps/preferences-desktop-accessibility.png | Bin 0 -> 1646 bytes
mate/24x24/apps/preferences-desktop-display.png | Bin 0 -> 1287 bytes
mate/24x24/apps/preferences-desktop-font.png | Bin 0 -> 1053 bytes
.../preferences-desktop-keyboard-shortcuts.png | Bin 0 -> 881 bytes
mate/24x24/apps/preferences-desktop-keyboard.png | Bin 0 -> 1195 bytes
mate/24x24/apps/preferences-desktop-locale.png | Bin 0 -> 1380 bytes
.../apps/preferences-desktop-remote-desktop.png | Bin 0 -> 1096 bytes
.../24x24/apps/preferences-desktop-screensaver.png | Bin 0 -> 1211 bytes
mate/24x24/apps/preferences-desktop-theme.png | Bin 0 -> 1414 bytes
mate/24x24/apps/preferences-desktop-wallpaper.png | Bin 0 -> 1245 bytes
mate/24x24/apps/preferences-system-windows.png | Bin 0 -> 596 bytes
mate/24x24/apps/system-file-manager.png | Bin 0 -> 1128 bytes
mate/24x24/apps/system-software-install.png | Bin 0 -> 1362 bytes
mate/24x24/apps/system-software-update.png | Bin 0 -> 1503 bytes
mate/24x24/apps/system-users.png | Bin 0 -> 1280 bytes
mate/24x24/apps/user-info.png | Bin 0 -> 1475 bytes
mate/24x24/apps/utilities-system-monitor.png | Bin 0 -> 1227 bytes
mate/24x24/apps/utilities-terminal.png | Bin 0 -> 1092 bytes
mate/24x24/apps/web-browser.png | Bin 0 -> 1724 bytes
mate/24x24/categories/applications-accessories.png | Bin 0 -> 1584 bytes
mate/24x24/categories/applications-development.png | Bin 0 -> 1044 bytes
mate/24x24/categories/applications-engineering.png | Bin 0 -> 1101 bytes
mate/24x24/categories/applications-games.png | Bin 0 -> 925 bytes
mate/24x24/categories/applications-graphics.png | Bin 0 -> 1651 bytes
mate/24x24/categories/applications-internet.png | Bin 0 -> 1802 bytes
mate/24x24/categories/applications-multimedia.png | Bin 0 -> 1072 bytes
mate/24x24/categories/applications-office.png | Bin 0 -> 1324 bytes
mate/24x24/categories/applications-other.png | Bin 0 -> 1378 bytes
mate/24x24/categories/applications-science.png | Bin 0 -> 1518 bytes
mate/24x24/categories/applications-system.png | Bin 0 -> 1470 bytes
mate/24x24/categories/applications-utilities.png | Bin 0 -> 1473 bytes
.../categories/preferences-desktop-peripherals.png | Bin 0 -> 872 bytes
.../categories/preferences-desktop-personal.png | Bin 0 -> 1042 bytes
mate/24x24/categories/preferences-desktop.png | Bin 0 -> 840 bytes
mate/24x24/categories/preferences-other.png | Bin 0 -> 1342 bytes
.../categories/preferences-system-network.png | Bin 0 -> 1403 bytes
mate/24x24/categories/preferences-system.png | Bin 0 -> 1564 bytes
mate/24x24/categories/system-help.png | Bin 0 -> 1180 bytes
mate/24x24/devices/ac-adapter.png | Bin 0 -> 1004 bytes
mate/24x24/devices/audio-card.png | Bin 0 -> 1414 bytes
mate/24x24/devices/audio-input-microphone.png | Bin 0 -> 1232 bytes
mate/24x24/devices/battery.png | Bin 0 -> 579 bytes
mate/24x24/devices/camera-photo.png | Bin 0 -> 1491 bytes
mate/24x24/devices/camera-video.png | Bin 0 -> 1376 bytes
mate/24x24/devices/camera-web.png | Bin 0 -> 1436 bytes
mate/24x24/devices/computer.png | Bin 0 -> 1298 bytes
mate/24x24/devices/drive-harddisk.png | Bin 0 -> 1247 bytes
mate/24x24/devices/drive-optical.png | Bin 0 -> 1300 bytes
mate/24x24/devices/drive-removable-media.png | Bin 0 -> 895 bytes
mate/24x24/devices/input-gaming.png | Bin 0 -> 1252 bytes
mate/24x24/devices/input-keyboard.png | Bin 0 -> 840 bytes
mate/24x24/devices/input-mouse.png | Bin 0 -> 1387 bytes
mate/24x24/devices/input-tablet.png | Bin 0 -> 780 bytes
mate/24x24/devices/input-touchpad.png | Bin 0 -> 998 bytes
mate/24x24/devices/media-flash.png | Bin 0 -> 978 bytes
mate/24x24/devices/media-floppy.png | Bin 0 -> 962 bytes
mate/24x24/devices/media-optical.png | Bin 0 -> 1520 bytes
mate/24x24/devices/media-tape.png | Bin 0 -> 1043 bytes
mate/24x24/devices/modem.png | Bin 0 -> 1359 bytes
mate/24x24/devices/multimedia-player.png | Bin 0 -> 801 bytes
mate/24x24/devices/network-wired.png | Bin 0 -> 846 bytes
mate/24x24/devices/network-wireless.png | Bin 0 -> 1455 bytes
mate/24x24/devices/pda.png | Bin 0 -> 789 bytes
mate/24x24/devices/phone.png | Bin 0 -> 1024 bytes
mate/24x24/devices/printer.png | Bin 0 -> 1148 bytes
mate/24x24/devices/scanner.png | Bin 0 -> 1196 bytes
mate/24x24/devices/video-display.png | Bin 0 -> 1118 bytes
mate/24x24/emblems/emblem-default.png | Bin 0 -> 1505 bytes
mate/24x24/emblems/emblem-documents.png | Bin 0 -> 1436 bytes
mate/24x24/emblems/emblem-downloads.png | Bin 0 -> 858 bytes
mate/24x24/emblems/emblem-favorite.png | Bin 0 -> 1092 bytes
mate/24x24/emblems/emblem-generic.png | Bin 0 -> 1577 bytes
mate/24x24/emblems/emblem-important.png | Bin 0 -> 1330 bytes
mate/24x24/emblems/emblem-mail.png | Bin 0 -> 1095 bytes
mate/24x24/emblems/emblem-new.png | Bin 0 -> 1165 bytes
mate/24x24/emblems/emblem-package.png | Bin 0 -> 898 bytes
mate/24x24/emblems/emblem-photos.png | Bin 0 -> 1364 bytes
mate/24x24/emblems/emblem-readonly.png | Bin 0 -> 849 bytes
mate/24x24/emblems/emblem-shared.png | Bin 0 -> 964 bytes
mate/24x24/emblems/emblem-symbolic-link.png | Bin 0 -> 870 bytes
mate/24x24/emblems/emblem-system.png | Bin 0 -> 1033 bytes
mate/24x24/emblems/emblem-unreadable.png | Bin 0 -> 888 bytes
mate/24x24/emblems/emblem-urgent.png | Bin 0 -> 1350 bytes
mate/24x24/emblems/emblem-web.png | Bin 0 -> 1547 bytes
mate/24x24/emotes/face-angel.png | Bin 0 -> 1628 bytes
mate/24x24/emotes/face-angry.png | Bin 0 -> 1503 bytes
mate/24x24/emotes/face-cool.png | Bin 0 -> 1358 bytes
mate/24x24/emotes/face-crying.png | Bin 0 -> 1422 bytes
mate/24x24/emotes/face-devilish.png | Bin 0 -> 1490 bytes
mate/24x24/emotes/face-embarrassed.png | Bin 0 -> 1479 bytes
mate/24x24/emotes/face-glasses.png | Bin 0 -> 1486 bytes
mate/24x24/emotes/face-kiss.png | Bin 0 -> 1415 bytes
mate/24x24/emotes/face-laugh.png | Bin 0 -> 1412 bytes
mate/24x24/emotes/face-monkey.png | Bin 0 -> 1537 bytes
mate/24x24/emotes/face-plain.png | Bin 0 -> 1379 bytes
mate/24x24/emotes/face-raspberry.png | Bin 0 -> 1395 bytes
mate/24x24/emotes/face-sad.png | Bin 0 -> 1387 bytes
mate/24x24/emotes/face-sick.png | Bin 0 -> 1421 bytes
mate/24x24/emotes/face-smile-big.png | Bin 0 -> 1386 bytes
mate/24x24/emotes/face-smile.png | Bin 0 -> 1386 bytes
mate/24x24/emotes/face-smirk.png | Bin 0 -> 1381 bytes
mate/24x24/emotes/face-surprise.png | Bin 0 -> 1429 bytes
mate/24x24/emotes/face-tired.png | Bin 0 -> 1457 bytes
mate/24x24/emotes/face-uncertain.png | Bin 0 -> 1378 bytes
mate/24x24/emotes/face-wink.png | Bin 0 -> 1393 bytes
mate/24x24/emotes/face-worried.png | Bin 0 -> 1379 bytes
mate/24x24/mimetypes/application-certificate.png | Bin 0 -> 976 bytes
mate/24x24/mimetypes/application-x-executable.png | Bin 0 -> 1348 bytes
mate/24x24/mimetypes/audio-x-generic.png | Bin 0 -> 1090 bytes
mate/24x24/mimetypes/font-x-generic.png | Bin 0 -> 1471 bytes
mate/24x24/mimetypes/image-x-generic.png | Bin 0 -> 1114 bytes
mate/24x24/mimetypes/package-x-generic.png | Bin 0 -> 1089 bytes
mate/24x24/mimetypes/text-html.png | Bin 0 -> 1350 bytes
mate/24x24/mimetypes/text-x-generic-template.png | Bin 0 -> 1191 bytes
mate/24x24/mimetypes/text-x-generic.png | Bin 0 -> 1140 bytes
mate/24x24/mimetypes/text-x-preview.png | Bin 0 -> 1081 bytes
mate/24x24/mimetypes/text-x-script.png | Bin 0 -> 1362 bytes
mate/24x24/mimetypes/video-x-generic.png | Bin 0 -> 1542 bytes
mate/24x24/mimetypes/x-office-address-book.png | Bin 0 -> 1360 bytes
mate/24x24/mimetypes/x-office-calendar.png | Bin 0 -> 967 bytes
.../24x24/mimetypes/x-office-document-template.png | Bin 0 -> 1479 bytes
mate/24x24/mimetypes/x-office-document.png | Bin 0 -> 1291 bytes
mate/24x24/mimetypes/x-office-drawing-template.png | Bin 0 -> 1589 bytes
mate/24x24/mimetypes/x-office-drawing.png | Bin 0 -> 1366 bytes
.../mimetypes/x-office-presentation-template.png | Bin 0 -> 1497 bytes
mate/24x24/mimetypes/x-office-presentation.png | Bin 0 -> 1230 bytes
.../mimetypes/x-office-spreadsheet-template.png | Bin 0 -> 1596 bytes
mate/24x24/mimetypes/x-office-spreadsheet.png | Bin 0 -> 1393 bytes
mate/24x24/places/folder-documents.png | Bin 0 -> 1082 bytes
mate/24x24/places/folder-download.png | Bin 0 -> 1085 bytes
mate/24x24/places/folder-music.png | Bin 0 -> 1075 bytes
mate/24x24/places/folder-pictures.png | Bin 0 -> 1185 bytes
mate/24x24/places/folder-publicshare.png | Bin 0 -> 1095 bytes
mate/24x24/places/folder-remote.png | Bin 0 -> 1049 bytes
mate/24x24/places/folder-saved-search.png | Bin 0 -> 1091 bytes
mate/24x24/places/folder-templates.png | Bin 0 -> 1056 bytes
mate/24x24/places/folder-videos.png | Bin 0 -> 1084 bytes
mate/24x24/places/folder.png | Bin 0 -> 920 bytes
mate/24x24/places/network-server.png | Bin 0 -> 1363 bytes
mate/24x24/places/network-workgroup.png | Bin 0 -> 1275 bytes
mate/24x24/places/start-here.png | Bin 0 -> 1415 bytes
mate/24x24/places/user-bookmarks.png | Bin 0 -> 1132 bytes
mate/24x24/places/user-desktop.png | Bin 0 -> 1067 bytes
mate/24x24/places/user-home.png | Bin 0 -> 1180 bytes
mate/24x24/places/user-trash.png | Bin 0 -> 1716 bytes
mate/24x24/status/appointment-missed.png | Bin 0 -> 1682 bytes
mate/24x24/status/appointment-soon.png | Bin 0 -> 1456 bytes
mate/24x24/status/audio-volume-high.png | Bin 0 -> 1368 bytes
mate/24x24/status/audio-volume-low.png | Bin 0 -> 998 bytes
mate/24x24/status/audio-volume-medium.png | Bin 0 -> 1161 bytes
mate/24x24/status/audio-volume-muted.png | Bin 0 -> 1123 bytes
mate/24x24/status/avatar-default.png | Bin 0 -> 1230 bytes
mate/24x24/status/battery-caution-charging.png | Bin 0 -> 1315 bytes
mate/24x24/status/battery-caution.png | Bin 0 -> 1138 bytes
mate/24x24/status/battery-empty.png | Bin 0 -> 743 bytes
mate/24x24/status/battery-full-charged.png | Bin 0 -> 1077 bytes
mate/24x24/status/battery-full-charging.png | Bin 0 -> 1250 bytes
mate/24x24/status/battery-full.png | Bin 0 -> 707 bytes
mate/24x24/status/battery-good-charging.png | Bin 0 -> 1283 bytes
mate/24x24/status/battery-good.png | Bin 0 -> 762 bytes
mate/24x24/status/battery-low-charging.png | Bin 0 -> 1308 bytes
mate/24x24/status/battery-low.png | Bin 0 -> 780 bytes
mate/24x24/status/battery-missing.png | Bin 0 -> 882 bytes
mate/24x24/status/changes-allow.png | Bin 0 -> 1169 bytes
mate/24x24/status/changes-prevent.png | Bin 0 -> 1095 bytes
mate/24x24/status/dialog-error.png | Bin 0 -> 1251 bytes
mate/24x24/status/dialog-information.png | Bin 0 -> 1248 bytes
mate/24x24/status/dialog-password.png | Bin 0 -> 1315 bytes
mate/24x24/status/dialog-question.png | Bin 0 -> 1054 bytes
mate/24x24/status/dialog-warning.png | Bin 0 -> 1212 bytes
mate/24x24/status/folder-drag-accept.png | Bin 0 -> 906 bytes
mate/24x24/status/folder-open.png | Bin 0 -> 1051 bytes
mate/24x24/status/folder-visiting.png | Bin 0 -> 1235 bytes
mate/24x24/status/image-loading.png | Bin 0 -> 1489 bytes
mate/24x24/status/image-missing.png | Bin 0 -> 877 bytes
mate/24x24/status/mail-attachment.png | Bin 0 -> 1074 bytes
mate/24x24/status/mail-read.png | Bin 0 -> 850 bytes
mate/24x24/status/mail-replied.png | Bin 0 -> 1251 bytes
mate/24x24/status/mail-signed-verified.png | Bin 0 -> 1505 bytes
mate/24x24/status/mail-signed.png | Bin 0 -> 1243 bytes
mate/24x24/status/mail-unread.png | Bin 0 -> 1254 bytes
mate/24x24/status/media-playlist-repeat.png | Bin 0 -> 939 bytes
mate/24x24/status/media-playlist-shuffle.png | Bin 0 -> 1224 bytes
mate/24x24/status/network-error.png | Bin 0 -> 1195 bytes
mate/24x24/status/network-idle.png | Bin 0 -> 1039 bytes
mate/24x24/status/network-offline.png | Bin 0 -> 1124 bytes
mate/24x24/status/network-receive.png | Bin 0 -> 1135 bytes
mate/24x24/status/network-transmit-receive.png | Bin 0 -> 1056 bytes
mate/24x24/status/network-transmit.png | Bin 0 -> 1137 bytes
mate/24x24/status/network-wireless-encrypted.png | Bin 0 -> 1630 bytes
mate/24x24/status/printer-error.png | Bin 0 -> 1243 bytes
mate/24x24/status/printer-printing.png | Bin 0 -> 1232 bytes
mate/24x24/status/security-high.png | Bin 0 -> 1316 bytes
mate/24x24/status/security-low.png | Bin 0 -> 1337 bytes
mate/24x24/status/security-medium.png | Bin 0 -> 1416 bytes
mate/24x24/status/software-update-available.png | Bin 0 -> 1381 bytes
mate/24x24/status/software-update-urgent.png | Bin 0 -> 1285 bytes
mate/24x24/status/task-due.png | Bin 0 -> 1159 bytes
mate/24x24/status/task-past-due.png | Bin 0 -> 1025 bytes
mate/24x24/status/user-available.png | Bin 0 -> 1349 bytes
mate/24x24/status/user-away.png | Bin 0 -> 1153 bytes
mate/24x24/status/user-busy.png | Bin 0 -> 1376 bytes
mate/24x24/status/user-idle.png | Bin 0 -> 1264 bytes
mate/24x24/status/user-invisible.png | Bin 0 -> 1174 bytes
mate/24x24/status/user-offline.png | Bin 0 -> 1290 bytes
mate/24x24/status/user-trash-full.png | Bin 0 -> 1724 bytes
mate/24x24/status/weather-clear-night.png | Bin 0 -> 1361 bytes
mate/24x24/status/weather-clear.png | Bin 0 -> 1442 bytes
mate/24x24/status/weather-few-clouds-night.png | Bin 0 -> 1439 bytes
mate/24x24/status/weather-few-clouds.png | Bin 0 -> 1517 bytes
mate/24x24/status/weather-fog.png | Bin 0 -> 1440 bytes
mate/24x24/status/weather-overcast.png | Bin 0 -> 984 bytes
mate/24x24/status/weather-severe-alert.png | Bin 0 -> 1401 bytes
mate/24x24/status/weather-showers-scattered.png | Bin 0 -> 1318 bytes
mate/24x24/status/weather-showers.png | Bin 0 -> 1424 bytes
mate/24x24/status/weather-snow.png | Bin 0 -> 1021 bytes
mate/24x24/status/weather-storm.png | Bin 0 -> 1244 bytes
mate/256x256/actions/address-book-new.png | Bin 0 -> 31514 bytes
mate/256x256/actions/appointment-new.png | Bin 0 -> 41724 bytes
mate/256x256/actions/document-new.png | Bin 0 -> 17181 bytes
mate/256x256/actions/document-open-recent.png | Bin 0 -> 40571 bytes
mate/256x256/actions/document-open.png | Bin 0 -> 40642 bytes
mate/256x256/actions/document-page-setup.png | Bin 0 -> 46636 bytes
mate/256x256/actions/document-print-preview.png | Bin 0 -> 35663 bytes
mate/256x256/actions/document-print.png | Bin 0 -> 18913 bytes
mate/256x256/actions/document-properties.png | Bin 0 -> 31535 bytes
mate/256x256/actions/document-revert.png | Bin 0 -> 28838 bytes
mate/256x256/actions/document-save-as.png | Bin 0 -> 33745 bytes
mate/256x256/actions/document-save.png | Bin 0 -> 33764 bytes
mate/256x256/actions/edit-delete.png | Bin 0 -> 27575 bytes
mate/256x256/actions/edit-find-replace.png | Bin 0 -> 50577 bytes
mate/256x256/actions/edit-find.png | Bin 0 -> 42370 bytes
mate/256x256/actions/edit-select-all.png | Bin 0 -> 27886 bytes
mate/256x256/actions/folder-new.png | Bin 0 -> 46525 bytes
mate/256x256/actions/go-first.png | Bin 0 -> 14058 bytes
mate/256x256/actions/go-jump.png | Bin 0 -> 13037 bytes
mate/256x256/actions/go-last.png | Bin 0 -> 14124 bytes
mate/256x256/actions/go-next.png | Bin 0 -> 11433 bytes
mate/256x256/actions/go-previous.png | Bin 0 -> 11478 bytes
mate/256x256/actions/mail-message-new.png | Bin 0 -> 29318 bytes
mate/256x256/actions/process-stop.png | Bin 0 -> 15538 bytes
mate/256x256/actions/system-lock-screen.png | Bin 0 -> 30275 bytes
mate/256x256/actions/system-log-out.png | Bin 0 -> 23876 bytes
mate/256x256/actions/system-search.png | Bin 0 -> 40216 bytes
mate/256x256/actions/view-refresh.png | Bin 0 -> 17750 bytes
mate/256x256/apps/accessories-calculator.png | Bin 0 -> 36891 bytes
mate/256x256/apps/accessories-character-map.png | Bin 0 -> 16343 bytes
mate/256x256/apps/accessories-dictionary.png | Bin 0 -> 45334 bytes
mate/256x256/apps/accessories-text-editor.png | Bin 0 -> 34900 bytes
mate/256x256/apps/applets-screenshooter.png | Bin 0 -> 36475 bytes
mate/256x256/apps/help-browser.png | Bin 0 -> 54366 bytes
.../apps/preferences-desktop-accessibility.png | Bin 0 -> 31782 bytes
mate/256x256/apps/preferences-desktop-display.png | Bin 0 -> 32181 bytes
mate/256x256/apps/preferences-desktop-font.png | Bin 0 -> 17189 bytes
.../preferences-desktop-keyboard-shortcuts.png | Bin 0 -> 18774 bytes
mate/256x256/apps/preferences-desktop-keyboard.png | Bin 0 -> 26738 bytes
mate/256x256/apps/preferences-desktop-locale.png | Bin 0 -> 38272 bytes
.../apps/preferences-desktop-remote-desktop.png | Bin 0 -> 26843 bytes
.../apps/preferences-desktop-screensaver.png | Bin 0 -> 27874 bytes
mate/256x256/apps/preferences-desktop-theme.png | Bin 0 -> 31647 bytes
.../256x256/apps/preferences-desktop-wallpaper.png | Bin 0 -> 23523 bytes
mate/256x256/apps/system-file-manager.png | Bin 0 -> 22468 bytes
mate/256x256/apps/system-software-install.png | Bin 0 -> 28264 bytes
mate/256x256/apps/system-software-update.png | Bin 0 -> 35544 bytes
mate/256x256/apps/system-users.png | Bin 0 -> 39231 bytes
mate/256x256/apps/user-info.png | Bin 0 -> 30516 bytes
mate/256x256/apps/utilities-system-monitor.png | Bin 0 -> 25084 bytes
mate/256x256/apps/utilities-terminal.png | Bin 0 -> 18052 bytes
mate/256x256/apps/web-browser.png | Bin 0 -> 53300 bytes
mate/256x256/categories/applications-graphics.png | Bin 0 -> 51499 bytes
mate/256x256/categories/applications-internet.png | Bin 0 -> 48456 bytes
mate/256x256/categories/applications-office.png | Bin 0 -> 34945 bytes
mate/256x256/categories/applications-system.png | Bin 0 -> 20460 bytes
.../categories/preferences-system-network.png | Bin 0 -> 50518 bytes
mate/256x256/categories/preferences-system.png | Bin 0 -> 34273 bytes
mate/256x256/devices/ac-adapter.png | Bin 0 -> 35206 bytes
mate/256x256/devices/audio-input-microphone.png | Bin 0 -> 35558 bytes
mate/256x256/devices/battery.png | Bin 0 -> 11276 bytes
mate/256x256/devices/camera-photo.png | Bin 0 -> 35484 bytes
mate/256x256/devices/computer.png | Bin 0 -> 37416 bytes
mate/256x256/devices/drive-harddisk.png | Bin 0 -> 27782 bytes
mate/256x256/devices/drive-optical.png | Bin 0 -> 22541 bytes
mate/256x256/devices/drive-removable-media.png | Bin 0 -> 12158 bytes
mate/256x256/devices/input-keyboard.png | Bin 0 -> 15163 bytes
mate/256x256/devices/media-flash.png | Bin 0 -> 53447 bytes
mate/256x256/devices/media-optical.png | Bin 0 -> 49992 bytes
mate/256x256/devices/multimedia-player.png | Bin 0 -> 21179 bytes
mate/256x256/devices/printer.png | Bin 0 -> 15592 bytes
mate/256x256/devices/video-display.png | Bin 0 -> 24708 bytes
mate/256x256/emblems/emblem-package.png | Bin 0 -> 22327 bytes
mate/256x256/emblems/emblem-readonly.png | Bin 0 -> 12779 bytes
mate/256x256/emblems/emblem-shared.png | Bin 0 -> 15317 bytes
mate/256x256/emblems/emblem-symbolic-link.png | Bin 0 -> 14253 bytes
mate/256x256/emblems/emblem-synchronizing.png | Bin 0 -> 15754 bytes
mate/256x256/emblems/emblem-unreadable.png | Bin 0 -> 14917 bytes
mate/256x256/emotes/face-angel.png | Bin 0 -> 65228 bytes
mate/256x256/emotes/face-angry.png | Bin 0 -> 42401 bytes
mate/256x256/emotes/face-cool.png | Bin 0 -> 54156 bytes
mate/256x256/emotes/face-crying.png | Bin 0 -> 43693 bytes
mate/256x256/emotes/face-devilish.png | Bin 0 -> 46015 bytes
mate/256x256/emotes/face-embarrassed.png | Bin 0 -> 49050 bytes
mate/256x256/emotes/face-glasses.png | Bin 0 -> 53133 bytes
mate/256x256/emotes/face-laugh.png | Bin 0 -> 44201 bytes
mate/256x256/emotes/face-plain.png | Bin 0 -> 40724 bytes
mate/256x256/emotes/face-sad.png | Bin 0 -> 41402 bytes
mate/256x256/emotes/face-sick.png | Bin 0 -> 45094 bytes
mate/256x256/emotes/face-smile-big.png | Bin 0 -> 42372 bytes
mate/256x256/emotes/face-smile.png | Bin 0 -> 44104 bytes
mate/256x256/emotes/face-smirk.png | Bin 0 -> 42109 bytes
mate/256x256/emotes/face-surprise.png | Bin 0 -> 42530 bytes
mate/256x256/emotes/face-tired.png | Bin 0 -> 45342 bytes
mate/256x256/emotes/face-uncertain.png | Bin 0 -> 41143 bytes
mate/256x256/emotes/face-wink.png | Bin 0 -> 43011 bytes
.../256x256/mimetypes/application-x-executable.png | Bin 0 -> 30489 bytes
mate/256x256/mimetypes/audio-x-generic.png | Bin 0 -> 29979 bytes
mate/256x256/mimetypes/font-x-generic.png | Bin 0 -> 38627 bytes
mate/256x256/mimetypes/image-x-generic.png | Bin 0 -> 30341 bytes
mate/256x256/mimetypes/package-x-generic.png | Bin 0 -> 27511 bytes
mate/256x256/mimetypes/text-html.png | Bin 0 -> 34089 bytes
mate/256x256/mimetypes/text-x-generic-template.png | Bin 0 -> 21792 bytes
mate/256x256/mimetypes/text-x-generic.png | Bin 0 -> 27338 bytes
mate/256x256/mimetypes/text-x-preview.png | Bin 0 -> 14122 bytes
mate/256x256/mimetypes/text-x-script.png | Bin 0 -> 30797 bytes
mate/256x256/mimetypes/video-x-generic.png | Bin 0 -> 66793 bytes
mate/256x256/mimetypes/x-office-address-book.png | Bin 0 -> 23778 bytes
.../mimetypes/x-office-document-template.png | Bin 0 -> 41744 bytes
mate/256x256/mimetypes/x-office-document.png | Bin 0 -> 33113 bytes
.../mimetypes/x-office-drawing-template.png | Bin 0 -> 31263 bytes
mate/256x256/mimetypes/x-office-drawing.png | Bin 0 -> 23763 bytes
.../mimetypes/x-office-presentation-template.png | Bin 0 -> 34287 bytes
mate/256x256/mimetypes/x-office-presentation.png | Bin 0 -> 22939 bytes
.../mimetypes/x-office-spreadsheet-template.png | Bin 0 -> 38340 bytes
mate/256x256/mimetypes/x-office-spreadsheet.png | Bin 0 -> 30399 bytes
mate/256x256/places/folder-documents.png | Bin 0 -> 41936 bytes
mate/256x256/places/folder-download.png | Bin 0 -> 42326 bytes
mate/256x256/places/folder-music.png | Bin 0 -> 42119 bytes
mate/256x256/places/folder-pictures.png | Bin 0 -> 43827 bytes
mate/256x256/places/folder-publicshare.png | Bin 0 -> 42337 bytes
mate/256x256/places/folder-remote.png | Bin 0 -> 45178 bytes
mate/256x256/places/folder-saved-search.png | Bin 0 -> 48263 bytes
mate/256x256/places/folder-templates.png | Bin 0 -> 41181 bytes
mate/256x256/places/folder-videos.png | Bin 0 -> 41629 bytes
mate/256x256/places/folder.png | Bin 0 -> 41439 bytes
mate/256x256/places/network-server.png | Bin 0 -> 32917 bytes
mate/256x256/places/network-workgroup.png | Bin 0 -> 39869 bytes
mate/256x256/places/user-bookmarks.png | Bin 0 -> 43037 bytes
mate/256x256/places/user-desktop.png | Bin 0 -> 42457 bytes
mate/256x256/places/user-home.png | Bin 0 -> 41908 bytes
mate/256x256/places/user-trash.png | Bin 0 -> 83424 bytes
mate/256x256/status/appointment-missed.png | Bin 0 -> 40756 bytes
mate/256x256/status/appointment-soon.png | Bin 0 -> 54263 bytes
mate/256x256/status/audio-volume-high.png | Bin 0 -> 50626 bytes
mate/256x256/status/audio-volume-low.png | Bin 0 -> 38400 bytes
mate/256x256/status/audio-volume-medium.png | Bin 0 -> 44075 bytes
mate/256x256/status/audio-volume-muted.png | Bin 0 -> 38992 bytes
mate/256x256/status/avatar-default.png | Bin 0 -> 25710 bytes
mate/256x256/status/battery-caution-charging.png | Bin 0 -> 57022 bytes
mate/256x256/status/battery-caution.png | Bin 0 -> 34851 bytes
mate/256x256/status/battery-empty.png | Bin 0 -> 19864 bytes
mate/256x256/status/battery-full-charged.png | Bin 0 -> 44363 bytes
mate/256x256/status/battery-full-charging.png | Bin 0 -> 54995 bytes
mate/256x256/status/battery-full.png | Bin 0 -> 23063 bytes
mate/256x256/status/battery-good-charging.png | Bin 0 -> 59848 bytes
mate/256x256/status/battery-good.png | Bin 0 -> 28858 bytes
mate/256x256/status/battery-low-charging.png | Bin 0 -> 56718 bytes
mate/256x256/status/battery-low.png | Bin 0 -> 24194 bytes
mate/256x256/status/battery-missing.png | Bin 0 -> 21837 bytes
mate/256x256/status/dialog-error.png | Bin 0 -> 19677 bytes
mate/256x256/status/dialog-information.png | Bin 0 -> 41373 bytes
mate/256x256/status/dialog-question.png | Bin 0 -> 36388 bytes
mate/256x256/status/dialog-warning.png | Bin 0 -> 27527 bytes
mate/256x256/status/folder-drag-accept.png | Bin 0 -> 43624 bytes
mate/256x256/status/folder-open.png | Bin 0 -> 46287 bytes
mate/256x256/status/folder-visiting.png | Bin 0 -> 16389 bytes
mate/256x256/status/image-loading.png | Bin 0 -> 32851 bytes
mate/256x256/status/image-missing.png | Bin 0 -> 22121 bytes
mate/256x256/status/mail-read.png | Bin 0 -> 16994 bytes
mate/256x256/status/network-error.png | Bin 0 -> 48567 bytes
mate/256x256/status/network-idle.png | Bin 0 -> 45749 bytes
mate/256x256/status/network-offline.png | Bin 0 -> 49335 bytes
mate/256x256/status/network-receive.png | Bin 0 -> 46937 bytes
mate/256x256/status/network-transmit-receive.png | Bin 0 -> 48452 bytes
mate/256x256/status/network-transmit.png | Bin 0 -> 47618 bytes
mate/256x256/status/printer-error.png | Bin 0 -> 18723 bytes
mate/256x256/status/printer-printing.png | Bin 0 -> 18488 bytes
mate/256x256/status/security-high.png | Bin 0 -> 40283 bytes
mate/256x256/status/security-low.png | Bin 0 -> 39967 bytes
mate/256x256/status/security-medium.png | Bin 0 -> 38144 bytes
mate/256x256/status/software-update-available.png | Bin 0 -> 28058 bytes
mate/256x256/status/software-update-urgent.png | Bin 0 -> 26876 bytes
mate/256x256/status/user-trash-full.png | Bin 0 -> 71142 bytes
mate/32x32/actions/address-book-new.png | Bin 0 -> 2280 bytes
mate/32x32/actions/application-exit.png | Bin 0 -> 1686 bytes
mate/32x32/actions/appointment-new.png | Bin 0 -> 2611 bytes
mate/32x32/actions/bookmark-new.png | Bin 0 -> 1110 bytes
mate/32x32/actions/call-start.png | Bin 0 -> 1396 bytes
mate/32x32/actions/call-stop.png | Bin 0 -> 1157 bytes
mate/32x32/actions/contact-new.png | Bin 0 -> 1701 bytes
mate/32x32/actions/document-new.png | Bin 0 -> 1621 bytes
mate/32x32/actions/document-open-recent.png | Bin 0 -> 2487 bytes
mate/32x32/actions/document-open.png | Bin 0 -> 1352 bytes
mate/32x32/actions/document-page-setup.png | Bin 0 -> 2031 bytes
mate/32x32/actions/document-print-preview.png | Bin 0 -> 2192 bytes
mate/32x32/actions/document-print.png | Bin 0 -> 1784 bytes
mate/32x32/actions/document-properties.png | Bin 0 -> 1959 bytes
mate/32x32/actions/document-revert.png | Bin 0 -> 1921 bytes
mate/32x32/actions/document-save-as.png | Bin 0 -> 1891 bytes
mate/32x32/actions/document-save.png | Bin 0 -> 2050 bytes
mate/32x32/actions/document-send.png | Bin 0 -> 1279 bytes
mate/32x32/actions/edit-clear.png | Bin 0 -> 1698 bytes
mate/32x32/actions/edit-copy.png | Bin 0 -> 1055 bytes
mate/32x32/actions/edit-cut.png | Bin 0 -> 1503 bytes
mate/32x32/actions/edit-delete.png | Bin 0 -> 2100 bytes
mate/32x32/actions/edit-find-replace.png | Bin 0 -> 2558 bytes
mate/32x32/actions/edit-find.png | Bin 0 -> 2296 bytes
mate/32x32/actions/edit-paste.png | Bin 0 -> 1415 bytes
mate/32x32/actions/edit-redo.png | Bin 0 -> 1328 bytes
mate/32x32/actions/edit-select-all.png | Bin 0 -> 1614 bytes
mate/32x32/actions/edit-undo.png | Bin 0 -> 1254 bytes
mate/32x32/actions/folder-new.png | Bin 0 -> 1490 bytes
mate/32x32/actions/format-indent-less.png | Bin 0 -> 1146 bytes
mate/32x32/actions/format-indent-more.png | Bin 0 -> 1162 bytes
mate/32x32/actions/format-justify-center.png | Bin 0 -> 708 bytes
mate/32x32/actions/format-justify-fill.png | Bin 0 -> 656 bytes
mate/32x32/actions/format-justify-left.png | Bin 0 -> 723 bytes
mate/32x32/actions/format-justify-right.png | Bin 0 -> 660 bytes
mate/32x32/actions/format-text-bold.png | Bin 0 -> 1787 bytes
mate/32x32/actions/format-text-direction-ltr.png | Bin 0 -> 1531 bytes
mate/32x32/actions/format-text-direction-rtl.png | Bin 0 -> 1532 bytes
mate/32x32/actions/format-text-italic.png | Bin 0 -> 1681 bytes
mate/32x32/actions/format-text-strikethrough.png | Bin 0 -> 1534 bytes
mate/32x32/actions/format-text-underline.png | Bin 0 -> 1675 bytes
mate/32x32/actions/go-bottom.png | Bin 0 -> 1603 bytes
mate/32x32/actions/go-down.png | Bin 0 -> 1487 bytes
mate/32x32/actions/go-first.png | Bin 0 -> 1663 bytes
mate/32x32/actions/go-home.png | Bin 0 -> 1717 bytes
mate/32x32/actions/go-jump.png | Bin 0 -> 1537 bytes
mate/32x32/actions/go-last.png | Bin 0 -> 1711 bytes
mate/32x32/actions/go-next.png | Bin 0 -> 1455 bytes
mate/32x32/actions/go-previous.png | Bin 0 -> 1430 bytes
mate/32x32/actions/go-top.png | Bin 0 -> 1535 bytes
mate/32x32/actions/go-up.png | Bin 0 -> 1607 bytes
mate/32x32/actions/help-about.png | Bin 0 -> 1716 bytes
mate/32x32/actions/help-contents.png | Bin 0 -> 1453 bytes
mate/32x32/actions/help-faq.png | Bin 0 -> 1611 bytes
mate/32x32/actions/insert-image.png | Bin 0 -> 1024 bytes
mate/32x32/actions/insert-link.png | Bin 0 -> 1467 bytes
mate/32x32/actions/insert-object.png | Bin 0 -> 910 bytes
mate/32x32/actions/insert-text.png | Bin 0 -> 1151 bytes
mate/32x32/actions/list-add.png | Bin 0 -> 1184 bytes
mate/32x32/actions/list-remove.png | Bin 0 -> 625 bytes
mate/32x32/actions/mail-forward.png | Bin 0 -> 1624 bytes
mate/32x32/actions/mail-mark-important.png | Bin 0 -> 1238 bytes
mate/32x32/actions/mail-mark-junk.png | Bin 0 -> 2211 bytes
mate/32x32/actions/mail-mark-notjunk.png | Bin 0 -> 1961 bytes
mate/32x32/actions/mail-mark-read.png | Bin 0 -> 2024 bytes
mate/32x32/actions/mail-mark-unread.png | Bin 0 -> 1620 bytes
mate/32x32/actions/mail-message-new.png | Bin 0 -> 1731 bytes
mate/32x32/actions/mail-reply-all.png | Bin 0 -> 1963 bytes
mate/32x32/actions/mail-reply-sender.png | Bin 0 -> 1748 bytes
mate/32x32/actions/mail-send-receive.png | Bin 0 -> 1805 bytes
mate/32x32/actions/mail-send.png | Bin 0 -> 1452 bytes
mate/32x32/actions/media-eject.png | Bin 0 -> 1163 bytes
mate/32x32/actions/media-playback-pause.png | Bin 0 -> 540 bytes
mate/32x32/actions/media-playback-start.png | Bin 0 -> 1021 bytes
mate/32x32/actions/media-playback-stop.png | Bin 0 -> 590 bytes
mate/32x32/actions/media-record.png | Bin 0 -> 1324 bytes
mate/32x32/actions/media-seek-backward.png | Bin 0 -> 1279 bytes
mate/32x32/actions/media-seek-forward.png | Bin 0 -> 1228 bytes
mate/32x32/actions/media-skip-backward.png | Bin 0 -> 1345 bytes
mate/32x32/actions/media-skip-forward.png | Bin 0 -> 1327 bytes
mate/32x32/actions/object-flip-horizontal.png | Bin 0 -> 1482 bytes
mate/32x32/actions/object-flip-vertical.png | Bin 0 -> 1491 bytes
mate/32x32/actions/object-rotate-left.png | Bin 0 -> 1540 bytes
mate/32x32/actions/object-rotate-right.png | Bin 0 -> 1560 bytes
mate/32x32/actions/process-stop.png | Bin 0 -> 1444 bytes
mate/32x32/actions/system-lock-screen.png | Bin 0 -> 2061 bytes
mate/32x32/actions/system-log-out.png | Bin 0 -> 1626 bytes
mate/32x32/actions/system-run.png | Bin 0 -> 2181 bytes
mate/32x32/actions/system-search.png | Bin 0 -> 2343 bytes
mate/32x32/actions/system-shutdown.png | Bin 0 -> 989 bytes
mate/32x32/actions/tools-check-spelling.png | Bin 0 -> 1225 bytes
mate/32x32/actions/view-fullscreen.png | Bin 0 -> 1012 bytes
mate/32x32/actions/view-refresh.png | Bin 0 -> 1623 bytes
mate/32x32/actions/view-restore.png | Bin 0 -> 895 bytes
mate/32x32/actions/view-sort-ascending.png | Bin 0 -> 1533 bytes
mate/32x32/actions/view-sort-descending.png | Bin 0 -> 1463 bytes
mate/32x32/actions/window-close.png | Bin 0 -> 1648 bytes
mate/32x32/actions/window-new.png | Bin 0 -> 1269 bytes
mate/32x32/actions/zoom-fit-best.png | Bin 0 -> 1262 bytes
mate/32x32/actions/zoom-in.png | Bin 0 -> 1235 bytes
mate/32x32/actions/zoom-original.png | Bin 0 -> 1214 bytes
mate/32x32/actions/zoom-out.png | Bin 0 -> 1057 bytes
mate/32x32/animations/process-working.png | Bin 0 -> 6874 bytes
mate/32x32/apps/accessories-calculator.png | Bin 0 -> 1343 bytes
mate/32x32/apps/accessories-character-map.png | Bin 0 -> 1599 bytes
mate/32x32/apps/accessories-dictionary.png | Bin 0 -> 1699 bytes
mate/32x32/apps/accessories-text-editor.png | Bin 0 -> 1759 bytes
mate/32x32/apps/applets-screenshooter.png | Bin 0 -> 2025 bytes
mate/32x32/apps/help-browser.png | Bin 0 -> 2367 bytes
mate/32x32/apps/logviewer.png | Bin 0 -> 1528 bytes
mate/32x32/apps/mate.png | Bin 0 -> 2132 bytes
mate/32x32/apps/multimedia-volume-control.png | Bin 0 -> 1417 bytes
.../apps/preferences-desktop-accessibility.png | Bin 0 -> 2341 bytes
mate/32x32/apps/preferences-desktop-display.png | Bin 0 -> 2181 bytes
mate/32x32/apps/preferences-desktop-font.png | Bin 0 -> 1457 bytes
.../preferences-desktop-keyboard-shortcuts.png | Bin 0 -> 1335 bytes
mate/32x32/apps/preferences-desktop-keyboard.png | Bin 0 -> 1454 bytes
mate/32x32/apps/preferences-desktop-locale.png | Bin 0 -> 2019 bytes
.../apps/preferences-desktop-remote-desktop.png | Bin 0 -> 1715 bytes
.../32x32/apps/preferences-desktop-screensaver.png | Bin 0 -> 2040 bytes
mate/32x32/apps/preferences-desktop-theme.png | Bin 0 -> 1742 bytes
mate/32x32/apps/preferences-desktop-wallpaper.png | Bin 0 -> 1924 bytes
mate/32x32/apps/preferences-system-windows.png | Bin 0 -> 684 bytes
mate/32x32/apps/system-file-manager.png | Bin 0 -> 1602 bytes
mate/32x32/apps/system-software-install.png | Bin 0 -> 1731 bytes
mate/32x32/apps/system-software-update.png | Bin 0 -> 2073 bytes
mate/32x32/apps/system-users.png | Bin 0 -> 1444 bytes
mate/32x32/apps/user-info.png | Bin 0 -> 2182 bytes
mate/32x32/apps/utilities-system-monitor.png | Bin 0 -> 1693 bytes
mate/32x32/apps/utilities-terminal.png | Bin 0 -> 1483 bytes
mate/32x32/apps/web-browser.png | Bin 0 -> 2740 bytes
mate/32x32/categories/applications-accessories.png | Bin 0 -> 2292 bytes
mate/32x32/categories/applications-development.png | Bin 0 -> 1159 bytes
mate/32x32/categories/applications-engineering.png | Bin 0 -> 1392 bytes
mate/32x32/categories/applications-games.png | Bin 0 -> 1357 bytes
mate/32x32/categories/applications-graphics.png | Bin 0 -> 2532 bytes
mate/32x32/categories/applications-internet.png | Bin 0 -> 2654 bytes
mate/32x32/categories/applications-multimedia.png | Bin 0 -> 1692 bytes
mate/32x32/categories/applications-office.png | Bin 0 -> 2064 bytes
mate/32x32/categories/applications-other.png | Bin 0 -> 1898 bytes
mate/32x32/categories/applications-science.png | Bin 0 -> 2566 bytes
mate/32x32/categories/applications-system.png | Bin 0 -> 2308 bytes
mate/32x32/categories/applications-utilities.png | Bin 0 -> 2245 bytes
.../categories/preferences-desktop-peripherals.png | Bin 0 -> 1837 bytes
.../categories/preferences-desktop-personal.png | Bin 0 -> 1579 bytes
mate/32x32/categories/preferences-desktop.png | Bin 0 -> 1390 bytes
mate/32x32/categories/preferences-other.png | Bin 0 -> 2354 bytes
.../categories/preferences-system-network.png | Bin 0 -> 2220 bytes
mate/32x32/categories/preferences-system.png | Bin 0 -> 2138 bytes
mate/32x32/categories/system-help.png | Bin 0 -> 1915 bytes
mate/32x32/devices/ac-adapter.png | Bin 0 -> 2037 bytes
mate/32x32/devices/audio-card.png | Bin 0 -> 2006 bytes
mate/32x32/devices/audio-input-microphone.png | Bin 0 -> 1839 bytes
mate/32x32/devices/battery.png | Bin 0 -> 1042 bytes
mate/32x32/devices/camera-photo.png | Bin 0 -> 1950 bytes
mate/32x32/devices/camera-video.png | Bin 0 -> 1969 bytes
mate/32x32/devices/camera-web.png | Bin 0 -> 2067 bytes
mate/32x32/devices/computer.png | Bin 0 -> 2012 bytes
mate/32x32/devices/drive-harddisk.png | Bin 0 -> 1519 bytes
mate/32x32/devices/drive-optical.png | Bin 0 -> 1528 bytes
mate/32x32/devices/drive-removable-media.png | Bin 0 -> 1052 bytes
mate/32x32/devices/input-gaming.png | Bin 0 -> 1573 bytes
mate/32x32/devices/input-keyboard.png | Bin 0 -> 972 bytes
mate/32x32/devices/input-mouse.png | Bin 0 -> 1776 bytes
mate/32x32/devices/input-tablet.png | Bin 0 -> 2338 bytes
mate/32x32/devices/input-touchpad.png | Bin 0 -> 1421 bytes
mate/32x32/devices/media-flash.png | Bin 0 -> 1547 bytes
mate/32x32/devices/media-floppy.png | Bin 0 -> 1238 bytes
mate/32x32/devices/media-optical.png | Bin 0 -> 2291 bytes
mate/32x32/devices/media-tape.png | Bin 0 -> 1317 bytes
mate/32x32/devices/modem.png | Bin 0 -> 2212 bytes
mate/32x32/devices/multimedia-player.png | Bin 0 -> 1186 bytes
mate/32x32/devices/network-wired.png | Bin 0 -> 1632 bytes
mate/32x32/devices/network-wireless.png | Bin 0 -> 2834 bytes
mate/32x32/devices/pda.png | Bin 0 -> 1059 bytes
mate/32x32/devices/phone.png | Bin 0 -> 1369 bytes
mate/32x32/devices/printer.png | Bin 0 -> 1557 bytes
mate/32x32/devices/scanner.png | Bin 0 -> 1714 bytes
mate/32x32/devices/video-display.png | Bin 0 -> 1679 bytes
mate/32x32/emblems/emblem-default.png | Bin 0 -> 2062 bytes
mate/32x32/emblems/emblem-documents.png | Bin 0 -> 1739 bytes
mate/32x32/emblems/emblem-downloads.png | Bin 0 -> 1158 bytes
mate/32x32/emblems/emblem-favorite.png | Bin 0 -> 1660 bytes
mate/32x32/emblems/emblem-generic.png | Bin 0 -> 1954 bytes
mate/32x32/emblems/emblem-important.png | Bin 0 -> 1914 bytes
mate/32x32/emblems/emblem-mail.png | Bin 0 -> 1386 bytes
mate/32x32/emblems/emblem-new.png | Bin 0 -> 1582 bytes
mate/32x32/emblems/emblem-package.png | Bin 0 -> 1307 bytes
mate/32x32/emblems/emblem-photos.png | Bin 0 -> 2730 bytes
mate/32x32/emblems/emblem-readonly.png | Bin 0 -> 1126 bytes
mate/32x32/emblems/emblem-shared.png | Bin 0 -> 1218 bytes
mate/32x32/emblems/emblem-symbolic-link.png | Bin 0 -> 1239 bytes
mate/32x32/emblems/emblem-synchronizing.png | Bin 0 -> 1420 bytes
mate/32x32/emblems/emblem-system.png | Bin 0 -> 1470 bytes
mate/32x32/emblems/emblem-unreadable.png | Bin 0 -> 1301 bytes
mate/32x32/emblems/emblem-urgent.png | Bin 0 -> 2008 bytes
mate/32x32/emblems/emblem-web.png | Bin 0 -> 2414 bytes
mate/32x32/emotes/face-angel.png | Bin 0 -> 2687 bytes
mate/32x32/emotes/face-angry.png | Bin 0 -> 2565 bytes
mate/32x32/emotes/face-cool.png | Bin 0 -> 2811 bytes
mate/32x32/emotes/face-crying.png | Bin 0 -> 2677 bytes
mate/32x32/emotes/face-devilish.png | Bin 0 -> 2735 bytes
mate/32x32/emotes/face-embarrassed.png | Bin 0 -> 2774 bytes
mate/32x32/emotes/face-glasses.png | Bin 0 -> 2796 bytes
mate/32x32/emotes/face-kiss.png | Bin 0 -> 2623 bytes
mate/32x32/emotes/face-laugh.png | Bin 0 -> 2704 bytes
mate/32x32/emotes/face-monkey.png | Bin 0 -> 2149 bytes
mate/32x32/emotes/face-plain.png | Bin 0 -> 2555 bytes
mate/32x32/emotes/face-raspberry.png | Bin 0 -> 2594 bytes
mate/32x32/emotes/face-sad.png | Bin 0 -> 2580 bytes
mate/32x32/emotes/face-sick.png | Bin 0 -> 2634 bytes
mate/32x32/emotes/face-smile-big.png | Bin 0 -> 2638 bytes
mate/32x32/emotes/face-smile.png | Bin 0 -> 2655 bytes
mate/32x32/emotes/face-smirk.png | Bin 0 -> 2604 bytes
mate/32x32/emotes/face-surprise.png | Bin 0 -> 2583 bytes
mate/32x32/emotes/face-tired.png | Bin 0 -> 2691 bytes
mate/32x32/emotes/face-uncertain.png | Bin 0 -> 2573 bytes
mate/32x32/emotes/face-wink.png | Bin 0 -> 2633 bytes
mate/32x32/emotes/face-worried.png | Bin 0 -> 2587 bytes
mate/32x32/mimetypes/application-certificate.png | Bin 0 -> 1106 bytes
mate/32x32/mimetypes/application-x-executable.png | Bin 0 -> 1912 bytes
mate/32x32/mimetypes/audio-x-generic.png | Bin 0 -> 1461 bytes
mate/32x32/mimetypes/font-x-generic.png | Bin 0 -> 2204 bytes
mate/32x32/mimetypes/image-x-generic.png | Bin 0 -> 1521 bytes
mate/32x32/mimetypes/package-x-generic.png | Bin 0 -> 1676 bytes
mate/32x32/mimetypes/text-html.png | Bin 0 -> 1900 bytes
mate/32x32/mimetypes/text-x-generic-template.png | Bin 0 -> 1588 bytes
mate/32x32/mimetypes/text-x-generic.png | Bin 0 -> 1404 bytes
mate/32x32/mimetypes/text-x-preview.png | Bin 0 -> 1342 bytes
mate/32x32/mimetypes/text-x-script.png | Bin 0 -> 1865 bytes
mate/32x32/mimetypes/video-x-generic.png | Bin 0 -> 2645 bytes
mate/32x32/mimetypes/x-office-address-book.png | Bin 0 -> 2026 bytes
mate/32x32/mimetypes/x-office-calendar.png | Bin 0 -> 1741 bytes
.../32x32/mimetypes/x-office-document-template.png | Bin 0 -> 2037 bytes
mate/32x32/mimetypes/x-office-document.png | Bin 0 -> 1682 bytes
mate/32x32/mimetypes/x-office-drawing-template.png | Bin 0 -> 2251 bytes
mate/32x32/mimetypes/x-office-drawing.png | Bin 0 -> 1898 bytes
.../mimetypes/x-office-presentation-template.png | Bin 0 -> 2151 bytes
mate/32x32/mimetypes/x-office-presentation.png | Bin 0 -> 1678 bytes
.../mimetypes/x-office-spreadsheet-template.png | Bin 0 -> 2206 bytes
mate/32x32/mimetypes/x-office-spreadsheet.png | Bin 0 -> 1827 bytes
mate/32x32/places/folder-documents.png | Bin 0 -> 1347 bytes
mate/32x32/places/folder-download.png | Bin 0 -> 1335 bytes
mate/32x32/places/folder-music.png | Bin 0 -> 1317 bytes
mate/32x32/places/folder-pictures.png | Bin 0 -> 1625 bytes
mate/32x32/places/folder-publicshare.png | Bin 0 -> 1376 bytes
mate/32x32/places/folder-remote.png | Bin 0 -> 1329 bytes
mate/32x32/places/folder-saved-search.png | Bin 0 -> 1374 bytes
mate/32x32/places/folder-templates.png | Bin 0 -> 1308 bytes
mate/32x32/places/folder-videos.png | Bin 0 -> 1388 bytes
mate/32x32/places/folder.png | Bin 0 -> 1046 bytes
mate/32x32/places/network-server.png | Bin 0 -> 1759 bytes
mate/32x32/places/network-workgroup.png | Bin 0 -> 1840 bytes
mate/32x32/places/start-here.png | Bin 0 -> 2132 bytes
mate/32x32/places/user-bookmarks.png | Bin 0 -> 1476 bytes
mate/32x32/places/user-desktop.png | Bin 0 -> 1386 bytes
mate/32x32/places/user-home.png | Bin 0 -> 1575 bytes
mate/32x32/places/user-trash.png | Bin 0 -> 2695 bytes
mate/32x32/status/appointment-missed.png | Bin 0 -> 2562 bytes
mate/32x32/status/appointment-soon.png | Bin 0 -> 2400 bytes
mate/32x32/status/audio-volume-high.png | Bin 0 -> 2150 bytes
mate/32x32/status/audio-volume-low.png | Bin 0 -> 1778 bytes
mate/32x32/status/audio-volume-medium.png | Bin 0 -> 1952 bytes
mate/32x32/status/audio-volume-muted.png | Bin 0 -> 1970 bytes
mate/32x32/status/avatar-default.png | Bin 0 -> 1938 bytes
mate/32x32/status/battery-caution-charging.png | Bin 0 -> 2589 bytes
mate/32x32/status/battery-caution.png | Bin 0 -> 1865 bytes
mate/32x32/status/battery-empty.png | Bin 0 -> 1275 bytes
mate/32x32/status/battery-full-charged.png | Bin 0 -> 2268 bytes
mate/32x32/status/battery-full-charging.png | Bin 0 -> 2469 bytes
mate/32x32/status/battery-full.png | Bin 0 -> 1223 bytes
mate/32x32/status/battery-good-charging.png | Bin 0 -> 2566 bytes
mate/32x32/status/battery-good.png | Bin 0 -> 1371 bytes
mate/32x32/status/battery-low-charging.png | Bin 0 -> 2599 bytes
mate/32x32/status/battery-low.png | Bin 0 -> 1407 bytes
mate/32x32/status/battery-missing.png | Bin 0 -> 1561 bytes
mate/32x32/status/changes-allow.png | Bin 0 -> 1975 bytes
mate/32x32/status/changes-prevent.png | Bin 0 -> 1860 bytes
mate/32x32/status/dialog-error.png | Bin 0 -> 1546 bytes
mate/32x32/status/dialog-information.png | Bin 0 -> 1925 bytes
mate/32x32/status/dialog-password.png | Bin 0 -> 1820 bytes
mate/32x32/status/dialog-question.png | Bin 0 -> 1848 bytes
mate/32x32/status/dialog-warning.png | Bin 0 -> 1720 bytes
mate/32x32/status/folder-drag-accept.png | Bin 0 -> 1191 bytes
mate/32x32/status/folder-open.png | Bin 0 -> 1213 bytes
mate/32x32/status/folder-visiting.png | Bin 0 -> 1604 bytes
mate/32x32/status/image-loading.png | Bin 0 -> 2129 bytes
mate/32x32/status/image-missing.png | Bin 0 -> 1039 bytes
mate/32x32/status/mail-attachment.png | Bin 0 -> 1443 bytes
mate/32x32/status/mail-read.png | Bin 0 -> 1243 bytes
mate/32x32/status/mail-replied.png | Bin 0 -> 1962 bytes
mate/32x32/status/mail-unread.png | Bin 0 -> 1687 bytes
mate/32x32/status/media-playlist-repeat.png | Bin 0 -> 1275 bytes
mate/32x32/status/media-playlist-shuffle.png | Bin 0 -> 1348 bytes
mate/32x32/status/network-error.png | Bin 0 -> 1902 bytes
mate/32x32/status/network-idle.png | Bin 0 -> 1555 bytes
mate/32x32/status/network-offline.png | Bin 0 -> 1870 bytes
mate/32x32/status/network-receive.png | Bin 0 -> 1797 bytes
mate/32x32/status/network-transmit-receive.png | Bin 0 -> 1578 bytes
mate/32x32/status/network-transmit.png | Bin 0 -> 1782 bytes
mate/32x32/status/printer-error.png | Bin 0 -> 1734 bytes
mate/32x32/status/printer-printing.png | Bin 0 -> 1696 bytes
mate/32x32/status/security-high.png | Bin 0 -> 2457 bytes
mate/32x32/status/security-low.png | Bin 0 -> 1865 bytes
mate/32x32/status/security-medium.png | Bin 0 -> 2050 bytes
mate/32x32/status/software-update-available.png | Bin 0 -> 1801 bytes
mate/32x32/status/software-update-urgent.png | Bin 0 -> 1754 bytes
mate/32x32/status/task-due.png | Bin 0 -> 1648 bytes
mate/32x32/status/task-past-due.png | Bin 0 -> 1474 bytes
mate/32x32/status/user-available.png | Bin 0 -> 2259 bytes
mate/32x32/status/user-away.png | Bin 0 -> 1796 bytes
mate/32x32/status/user-busy.png | Bin 0 -> 2259 bytes
mate/32x32/status/user-idle.png | Bin 0 -> 2034 bytes
mate/32x32/status/user-invisible.png | Bin 0 -> 1867 bytes
mate/32x32/status/user-offline.png | Bin 0 -> 1809 bytes
mate/32x32/status/user-trash-full.png | Bin 0 -> 2649 bytes
mate/32x32/status/weather-clear-night.png | Bin 0 -> 1758 bytes
mate/32x32/status/weather-clear.png | Bin 0 -> 2245 bytes
mate/32x32/status/weather-few-clouds-night.png | Bin 0 -> 2101 bytes
mate/32x32/status/weather-few-clouds.png | Bin 0 -> 2157 bytes
mate/32x32/status/weather-fog.png | Bin 0 -> 1376 bytes
mate/32x32/status/weather-overcast.png | Bin 0 -> 1214 bytes
mate/32x32/status/weather-severe-alert.png | Bin 0 -> 1838 bytes
mate/32x32/status/weather-showers-scattered.png | Bin 0 -> 1599 bytes
mate/32x32/status/weather-showers.png | Bin 0 -> 2343 bytes
mate/32x32/status/weather-snow.png | Bin 0 -> 1181 bytes
mate/32x32/status/weather-storm.png | Bin 0 -> 1654 bytes
mate/48x48/actions/address-book-new.png | Bin 0 -> 3787 bytes
mate/48x48/actions/application-exit.png | Bin 0 -> 2633 bytes
mate/48x48/actions/appointment-new.png | Bin 0 -> 4804 bytes
mate/48x48/actions/bookmark-new.png | Bin 0 -> 1500 bytes
mate/48x48/actions/call-start.png | Bin 0 -> 2155 bytes
mate/48x48/actions/call-stop.png | Bin 0 -> 1922 bytes
mate/48x48/actions/contact-new.png | Bin 0 -> 1992 bytes
mate/48x48/actions/document-new.png | Bin 0 -> 2459 bytes
mate/48x48/actions/document-open-recent.png | Bin 0 -> 4690 bytes
mate/48x48/actions/document-open.png | Bin 0 -> 2190 bytes
mate/48x48/actions/document-page-setup.png | Bin 0 -> 3328 bytes
mate/48x48/actions/document-print-preview.png | Bin 0 -> 3843 bytes
mate/48x48/actions/document-print.png | Bin 0 -> 2899 bytes
mate/48x48/actions/document-properties.png | Bin 0 -> 3139 bytes
mate/48x48/actions/document-revert.png | Bin 0 -> 3011 bytes
mate/48x48/actions/document-save-as.png | Bin 0 -> 2801 bytes
mate/48x48/actions/document-save.png | Bin 0 -> 2946 bytes
mate/48x48/actions/document-send.png | Bin 0 -> 1796 bytes
mate/48x48/actions/edit-clear.png | Bin 0 -> 2777 bytes
mate/48x48/actions/edit-copy.png | Bin 0 -> 1295 bytes
mate/48x48/actions/edit-cut.png | Bin 0 -> 2185 bytes
mate/48x48/actions/edit-delete.png | Bin 0 -> 3145 bytes
mate/48x48/actions/edit-find-replace.png | Bin 0 -> 5240 bytes
mate/48x48/actions/edit-find.png | Bin 0 -> 4342 bytes
mate/48x48/actions/edit-paste.png | Bin 0 -> 1913 bytes
mate/48x48/actions/edit-redo.png | Bin 0 -> 2142 bytes
mate/48x48/actions/edit-select-all.png | Bin 0 -> 2504 bytes
mate/48x48/actions/edit-undo.png | Bin 0 -> 1986 bytes
mate/48x48/actions/folder-new.png | Bin 0 -> 2311 bytes
mate/48x48/actions/format-indent-less.png | Bin 0 -> 1371 bytes
mate/48x48/actions/format-indent-more.png | Bin 0 -> 1419 bytes
mate/48x48/actions/format-justify-center.png | Bin 0 -> 869 bytes
mate/48x48/actions/format-justify-fill.png | Bin 0 -> 832 bytes
mate/48x48/actions/format-justify-left.png | Bin 0 -> 901 bytes
mate/48x48/actions/format-justify-right.png | Bin 0 -> 813 bytes
mate/48x48/actions/format-text-bold.png | Bin 0 -> 2872 bytes
mate/48x48/actions/format-text-direction-ltr.png | Bin 0 -> 2097 bytes
mate/48x48/actions/format-text-direction-rtl.png | Bin 0 -> 2125 bytes
mate/48x48/actions/format-text-italic.png | Bin 0 -> 2749 bytes
mate/48x48/actions/format-text-strikethrough.png | Bin 0 -> 2554 bytes
mate/48x48/actions/format-text-underline.png | Bin 0 -> 2699 bytes
mate/48x48/actions/go-bottom.png | Bin 0 -> 2282 bytes
mate/48x48/actions/go-down.png | Bin 0 -> 2013 bytes
mate/48x48/actions/go-first.png | Bin 0 -> 2470 bytes
mate/48x48/actions/go-home.png | Bin 0 -> 2491 bytes
mate/48x48/actions/go-jump.png | Bin 0 -> 1917 bytes
mate/48x48/actions/go-last.png | Bin 0 -> 2422 bytes
mate/48x48/actions/go-next.png | Bin 0 -> 2004 bytes
mate/48x48/actions/go-previous.png | Bin 0 -> 1915 bytes
mate/48x48/actions/go-top.png | Bin 0 -> 2246 bytes
mate/48x48/actions/go-up.png | Bin 0 -> 1963 bytes
mate/48x48/actions/help-about.png | Bin 0 -> 2978 bytes
mate/48x48/actions/help-contents.png | Bin 0 -> 2842 bytes
mate/48x48/actions/help-faq.png | Bin 0 -> 2421 bytes
mate/48x48/actions/insert-image.png | Bin 0 -> 1886 bytes
mate/48x48/actions/insert-link.png | Bin 0 -> 2222 bytes
mate/48x48/actions/insert-object.png | Bin 0 -> 1386 bytes
mate/48x48/actions/insert-text.png | Bin 0 -> 1699 bytes
mate/48x48/actions/list-add.png | Bin 0 -> 1500 bytes
mate/48x48/actions/list-remove.png | Bin 0 -> 812 bytes
mate/48x48/actions/mail-forward.png | Bin 0 -> 2466 bytes
mate/48x48/actions/mail-mark-important.png | Bin 0 -> 1856 bytes
mate/48x48/actions/mail-mark-junk.png | Bin 0 -> 3583 bytes
mate/48x48/actions/mail-mark-notjunk.png | Bin 0 -> 3728 bytes
mate/48x48/actions/mail-mark-read.png | Bin 0 -> 3317 bytes
mate/48x48/actions/mail-mark-unread.png | Bin 0 -> 2128 bytes
mate/48x48/actions/mail-message-new.png | Bin 0 -> 2616 bytes
mate/48x48/actions/mail-reply-all.png | Bin 0 -> 3054 bytes
mate/48x48/actions/mail-reply-sender.png | Bin 0 -> 2552 bytes
mate/48x48/actions/mail-send-receive.png | Bin 0 -> 2553 bytes
mate/48x48/actions/mail-send.png | Bin 0 -> 2021 bytes
mate/48x48/actions/media-eject.png | Bin 0 -> 1666 bytes
mate/48x48/actions/media-playback-pause.png | Bin 0 -> 781 bytes
mate/48x48/actions/media-playback-start.png | Bin 0 -> 1577 bytes
mate/48x48/actions/media-playback-stop.png | Bin 0 -> 703 bytes
mate/48x48/actions/media-record.png | Bin 0 -> 2306 bytes
mate/48x48/actions/media-seek-backward.png | Bin 0 -> 1939 bytes
mate/48x48/actions/media-seek-forward.png | Bin 0 -> 1824 bytes
mate/48x48/actions/media-skip-backward.png | Bin 0 -> 2160 bytes
mate/48x48/actions/media-skip-forward.png | Bin 0 -> 2053 bytes
mate/48x48/actions/object-flip-horizontal.png | Bin 0 -> 1824 bytes
mate/48x48/actions/object-flip-vertical.png | Bin 0 -> 2121 bytes
mate/48x48/actions/object-rotate-left.png | Bin 0 -> 2235 bytes
mate/48x48/actions/object-rotate-right.png | Bin 0 -> 2332 bytes
mate/48x48/actions/process-stop.png | Bin 0 -> 2181 bytes
mate/48x48/actions/system-lock-screen.png | Bin 0 -> 3425 bytes
mate/48x48/actions/system-log-out.png | Bin 0 -> 2398 bytes
mate/48x48/actions/system-run.png | Bin 0 -> 3241 bytes
mate/48x48/actions/system-search.png | Bin 0 -> 4315 bytes
mate/48x48/actions/system-shutdown.png | Bin 0 -> 1602 bytes
mate/48x48/actions/tools-check-spelling.png | Bin 0 -> 2050 bytes
mate/48x48/actions/view-fullscreen.png | Bin 0 -> 1568 bytes
mate/48x48/actions/view-refresh.png | Bin 0 -> 2422 bytes
mate/48x48/actions/view-restore.png | Bin 0 -> 1152 bytes
mate/48x48/actions/view-sort-ascending.png | Bin 0 -> 2090 bytes
mate/48x48/actions/view-sort-descending.png | Bin 0 -> 1819 bytes
mate/48x48/actions/window-close.png | Bin 0 -> 1981 bytes
mate/48x48/actions/window-new.png | Bin 0 -> 1430 bytes
mate/48x48/actions/zoom-fit-best.png | Bin 0 -> 1405 bytes
mate/48x48/actions/zoom-in.png | Bin 0 -> 1224 bytes
mate/48x48/actions/zoom-original.png | Bin 0 -> 1387 bytes
mate/48x48/actions/zoom-out.png | Bin 0 -> 1172 bytes
mate/48x48/animations/process-working.png | Bin 0 -> 14110 bytes
mate/48x48/apps/accessories-calculator.png | Bin 0 -> 2473 bytes
mate/48x48/apps/accessories-character-map.png | Bin 0 -> 2319 bytes
mate/48x48/apps/accessories-dictionary.png | Bin 0 -> 2869 bytes
mate/48x48/apps/accessories-text-editor.png | Bin 0 -> 2660 bytes
mate/48x48/apps/applets-screenshooter.png | Bin 0 -> 3015 bytes
mate/48x48/apps/help-browser.png | Bin 0 -> 5073 bytes
mate/48x48/apps/logviewer.png | Bin 0 -> 2449 bytes
mate/48x48/apps/mate.png | Bin 0 -> 3356 bytes
mate/48x48/apps/multimedia-volume-control.png | Bin 0 -> 2479 bytes
.../apps/preferences-desktop-accessibility.png | Bin 0 -> 3714 bytes
mate/48x48/apps/preferences-desktop-display.png | Bin 0 -> 3339 bytes
mate/48x48/apps/preferences-desktop-font.png | Bin 0 -> 2147 bytes
.../preferences-desktop-keyboard-shortcuts.png | Bin 0 -> 2667 bytes
mate/48x48/apps/preferences-desktop-keyboard.png | Bin 0 -> 2183 bytes
mate/48x48/apps/preferences-desktop-locale.png | Bin 0 -> 3075 bytes
.../apps/preferences-desktop-remote-desktop.png | Bin 0 -> 2706 bytes
.../48x48/apps/preferences-desktop-screensaver.png | Bin 0 -> 3154 bytes
mate/48x48/apps/preferences-desktop-theme.png | Bin 0 -> 3118 bytes
mate/48x48/apps/preferences-desktop-wallpaper.png | Bin 0 -> 2654 bytes
mate/48x48/apps/preferences-system-windows.png | Bin 0 -> 846 bytes
mate/48x48/apps/system-file-manager.png | Bin 0 -> 2061 bytes
mate/48x48/apps/system-software-install.png | Bin 0 -> 2232 bytes
mate/48x48/apps/system-software-update.png | Bin 0 -> 2605 bytes
mate/48x48/apps/system-users.png | Bin 0 -> 3891 bytes
mate/48x48/apps/user-info.png | Bin 0 -> 3607 bytes
mate/48x48/apps/utilities-system-monitor.png | Bin 0 -> 2758 bytes
mate/48x48/apps/utilities-terminal.png | Bin 0 -> 2406 bytes
mate/48x48/apps/visor.png | Bin 0 -> 2714 bytes
mate/48x48/apps/web-browser.png | Bin 0 -> 4992 bytes
mate/48x48/categories/applications-accessories.png | Bin 0 -> 3743 bytes
mate/48x48/categories/applications-development.png | Bin 0 -> 1556 bytes
mate/48x48/categories/applications-engineering.png | Bin 0 -> 3105 bytes
mate/48x48/categories/applications-games.png | Bin 0 -> 2040 bytes
mate/48x48/categories/applications-graphics.png | Bin 0 -> 4381 bytes
mate/48x48/categories/applications-internet.png | Bin 0 -> 4680 bytes
mate/48x48/categories/applications-multimedia.png | Bin 0 -> 2448 bytes
mate/48x48/categories/applications-office.png | Bin 0 -> 3608 bytes
mate/48x48/categories/applications-other.png | Bin 0 -> 2764 bytes
mate/48x48/categories/applications-science.png | Bin 0 -> 4577 bytes
mate/48x48/categories/applications-system.png | Bin 0 -> 3937 bytes
mate/48x48/categories/applications-utilities.png | Bin 0 -> 3604 bytes
.../categories/preferences-desktop-peripherals.png | Bin 0 -> 3034 bytes
.../categories/preferences-desktop-personal.png | Bin 0 -> 2180 bytes
mate/48x48/categories/preferences-desktop.png | Bin 0 -> 2083 bytes
mate/48x48/categories/preferences-other.png | Bin 0 -> 3769 bytes
.../categories/preferences-system-network.png | Bin 0 -> 3719 bytes
mate/48x48/categories/preferences-system.png | Bin 0 -> 3373 bytes
mate/48x48/categories/system-help.png | Bin 0 -> 2962 bytes
mate/48x48/devices/ac-adapter.png | Bin 0 -> 3368 bytes
mate/48x48/devices/audio-card.png | Bin 0 -> 3020 bytes
mate/48x48/devices/audio-input-microphone.png | Bin 0 -> 3385 bytes
mate/48x48/devices/battery.png | Bin 0 -> 1486 bytes
mate/48x48/devices/camera-photo.png | Bin 0 -> 3378 bytes
mate/48x48/devices/camera-video.png | Bin 0 -> 2498 bytes
mate/48x48/devices/camera-web.png | Bin 0 -> 3352 bytes
mate/48x48/devices/computer.png | Bin 0 -> 3328 bytes
mate/48x48/devices/drive-harddisk.png | Bin 0 -> 2326 bytes
mate/48x48/devices/drive-optical.png | Bin 0 -> 2405 bytes
mate/48x48/devices/drive-removable-media.png | Bin 0 -> 1632 bytes
mate/48x48/devices/input-gaming.png | Bin 0 -> 2511 bytes
mate/48x48/devices/input-keyboard.png | Bin 0 -> 1381 bytes
mate/48x48/devices/input-mouse.png | Bin 0 -> 2688 bytes
mate/48x48/devices/input-tablet.png | Bin 0 -> 2924 bytes
mate/48x48/devices/input-touchpad.png | Bin 0 -> 1949 bytes
mate/48x48/devices/media-flash.png | Bin 0 -> 2919 bytes
mate/48x48/devices/media-floppy.png | Bin 0 -> 1822 bytes
mate/48x48/devices/media-optical.png | Bin 0 -> 3997 bytes
mate/48x48/devices/media-tape.png | Bin 0 -> 2195 bytes
mate/48x48/devices/modem.png | Bin 0 -> 3019 bytes
mate/48x48/devices/multimedia-player.png | Bin 0 -> 1824 bytes
mate/48x48/devices/network-wired.png | Bin 0 -> 3108 bytes
mate/48x48/devices/network-wireless.png | Bin 0 -> 4747 bytes
mate/48x48/devices/pda.png | Bin 0 -> 1728 bytes
mate/48x48/devices/phone.png | Bin 0 -> 2352 bytes
mate/48x48/devices/printer.png | Bin 0 -> 2453 bytes
mate/48x48/devices/scanner.png | Bin 0 -> 2680 bytes
mate/48x48/devices/video-display.png | Bin 0 -> 2405 bytes
mate/48x48/emblems/emblem-default.png | Bin 0 -> 3591 bytes
mate/48x48/emblems/emblem-desktop.png | Bin 0 -> 2291 bytes
mate/48x48/emblems/emblem-documents.png | Bin 0 -> 2602 bytes
mate/48x48/emblems/emblem-downloads.png | Bin 0 -> 1408 bytes
mate/48x48/emblems/emblem-favorite.png | Bin 0 -> 2614 bytes
mate/48x48/emblems/emblem-generic.png | Bin 0 -> 3030 bytes
mate/48x48/emblems/emblem-important.png | Bin 0 -> 2866 bytes
mate/48x48/emblems/emblem-mail.png | Bin 0 -> 2231 bytes
mate/48x48/emblems/emblem-new.png | Bin 0 -> 2453 bytes
mate/48x48/emblems/emblem-package.png | Bin 0 -> 1900 bytes
mate/48x48/emblems/emblem-photos.png | Bin 0 -> 4942 bytes
mate/48x48/emblems/emblem-readonly.png | Bin 0 -> 1703 bytes
mate/48x48/emblems/emblem-shared.png | Bin 0 -> 1769 bytes
mate/48x48/emblems/emblem-symbolic-link.png | Bin 0 -> 1800 bytes
mate/48x48/emblems/emblem-synchronizing.png | Bin 0 -> 1971 bytes
mate/48x48/emblems/emblem-system.png | Bin 0 -> 2004 bytes
mate/48x48/emblems/emblem-unreadable.png | Bin 0 -> 2045 bytes
mate/48x48/emblems/emblem-urgent.png | Bin 0 -> 3122 bytes
mate/48x48/emblems/emblem-web.png | Bin 0 -> 3981 bytes
mate/48x48/emotes/face-angel.png | Bin 0 -> 5111 bytes
mate/48x48/emotes/face-angry.png | Bin 0 -> 4073 bytes
mate/48x48/emotes/face-cool.png | Bin 0 -> 4673 bytes
mate/48x48/emotes/face-crying.png | Bin 0 -> 4314 bytes
mate/48x48/emotes/face-devilish.png | Bin 0 -> 4939 bytes
mate/48x48/emotes/face-embarrassed.png | Bin 0 -> 4733 bytes
mate/48x48/emotes/face-glasses.png | Bin 0 -> 4863 bytes
mate/48x48/emotes/face-kiss.png | Bin 0 -> 4261 bytes
mate/48x48/emotes/face-laugh.png | Bin 0 -> 4447 bytes
mate/48x48/emotes/face-monkey.png | Bin 0 -> 3684 bytes
mate/48x48/emotes/face-plain.png | Bin 0 -> 4108 bytes
mate/48x48/emotes/face-raspberry.png | Bin 0 -> 4165 bytes
mate/48x48/emotes/face-sad.png | Bin 0 -> 4135 bytes
mate/48x48/emotes/face-sick.png | Bin 0 -> 4303 bytes
mate/48x48/emotes/face-smile-big.png | Bin 0 -> 4244 bytes
mate/48x48/emotes/face-smile.png | Bin 0 -> 4296 bytes
mate/48x48/emotes/face-smirk.png | Bin 0 -> 4236 bytes
mate/48x48/emotes/face-surprise.png | Bin 0 -> 4173 bytes
mate/48x48/emotes/face-tired.png | Bin 0 -> 4535 bytes
mate/48x48/emotes/face-uncertain.png | Bin 0 -> 4096 bytes
mate/48x48/emotes/face-wink.png | Bin 0 -> 4188 bytes
mate/48x48/emotes/face-worried.png | Bin 0 -> 4079 bytes
mate/48x48/mimetypes/application-certificate.png | Bin 0 -> 1740 bytes
mate/48x48/mimetypes/application-x-executable.png | Bin 0 -> 3105 bytes
mate/48x48/mimetypes/audio-x-generic.png | Bin 0 -> 2290 bytes
mate/48x48/mimetypes/font-x-generic.png | Bin 0 -> 3978 bytes
mate/48x48/mimetypes/image-x-generic.png | Bin 0 -> 2603 bytes
mate/48x48/mimetypes/package-x-generic.png | Bin 0 -> 2418 bytes
mate/48x48/mimetypes/text-html.png | Bin 0 -> 3347 bytes
mate/48x48/mimetypes/text-x-generic-template.png | Bin 0 -> 2753 bytes
mate/48x48/mimetypes/text-x-generic.png | Bin 0 -> 2118 bytes
mate/48x48/mimetypes/text-x-preview.png | Bin 0 -> 2095 bytes
mate/48x48/mimetypes/text-x-script.png | Bin 0 -> 3056 bytes
mate/48x48/mimetypes/video-x-generic.png | Bin 0 -> 4665 bytes
mate/48x48/mimetypes/x-office-address-book.png | Bin 0 -> 3259 bytes
mate/48x48/mimetypes/x-office-calendar.png | Bin 0 -> 2848 bytes
.../48x48/mimetypes/x-office-document-template.png | Bin 0 -> 3295 bytes
mate/48x48/mimetypes/x-office-document.png | Bin 0 -> 2625 bytes
mate/48x48/mimetypes/x-office-drawing-template.png | Bin 0 -> 3719 bytes
mate/48x48/mimetypes/x-office-drawing.png | Bin 0 -> 2998 bytes
.../mimetypes/x-office-presentation-template.png | Bin 0 -> 3244 bytes
mate/48x48/mimetypes/x-office-presentation.png | Bin 0 -> 2293 bytes
.../mimetypes/x-office-spreadsheet-template.png | Bin 0 -> 3449 bytes
mate/48x48/mimetypes/x-office-spreadsheet.png | Bin 0 -> 2774 bytes
mate/48x48/places/folder-documents.png | Bin 0 -> 2177 bytes
mate/48x48/places/folder-download.png | Bin 0 -> 2103 bytes
mate/48x48/places/folder-music.png | Bin 0 -> 2344 bytes
mate/48x48/places/folder-pictures.png | Bin 0 -> 2660 bytes
mate/48x48/places/folder-publicshare.png | Bin 0 -> 2208 bytes
mate/48x48/places/folder-remote.png | Bin 0 -> 2211 bytes
mate/48x48/places/folder-saved-search.png | Bin 0 -> 2216 bytes
mate/48x48/places/folder-templates.png | Bin 0 -> 2004 bytes
mate/48x48/places/folder-videos.png | Bin 0 -> 2267 bytes
mate/48x48/places/folder.png | Bin 0 -> 1601 bytes
mate/48x48/places/network-server.png | Bin 0 -> 3253 bytes
mate/48x48/places/network-workgroup.png | Bin 0 -> 3146 bytes
mate/48x48/places/start-here.png | Bin 0 -> 3356 bytes
mate/48x48/places/user-bookmarks.png | Bin 0 -> 2399 bytes
mate/48x48/places/user-desktop.png | Bin 0 -> 2132 bytes
mate/48x48/places/user-home.png | Bin 0 -> 2337 bytes
mate/48x48/places/user-trash.png | Bin 0 -> 5204 bytes
mate/48x48/status/appointment-missed.png | Bin 0 -> 4722 bytes
mate/48x48/status/appointment-soon.png | Bin 0 -> 4836 bytes
mate/48x48/status/audio-volume-high.png | Bin 0 -> 3499 bytes
mate/48x48/status/audio-volume-low.png | Bin 0 -> 2866 bytes
mate/48x48/status/audio-volume-medium.png | Bin 0 -> 3134 bytes
mate/48x48/status/audio-volume-muted.png | Bin 0 -> 3227 bytes
mate/48x48/status/avatar-default.png | Bin 0 -> 3123 bytes
mate/48x48/status/battery-caution-charging.png | Bin 0 -> 4589 bytes
mate/48x48/status/battery-caution.png | Bin 0 -> 3049 bytes
mate/48x48/status/battery-empty.png | Bin 0 -> 1969 bytes
mate/48x48/status/battery-full-charged.png | Bin 0 -> 3743 bytes
mate/48x48/status/battery-full-charging.png | Bin 0 -> 4244 bytes
mate/48x48/status/battery-full.png | Bin 0 -> 1854 bytes
mate/48x48/status/battery-good-charging.png | Bin 0 -> 4497 bytes
mate/48x48/status/battery-good.png | Bin 0 -> 2125 bytes
mate/48x48/status/battery-low-charging.png | Bin 0 -> 4552 bytes
mate/48x48/status/battery-low.png | Bin 0 -> 2220 bytes
mate/48x48/status/battery-missing.png | Bin 0 -> 2270 bytes
mate/48x48/status/changes-allow.png | Bin 0 -> 3178 bytes
mate/48x48/status/changes-prevent.png | Bin 0 -> 2924 bytes
mate/48x48/status/dialog-error.png | Bin 0 -> 2383 bytes
mate/48x48/status/dialog-information.png | Bin 0 -> 3165 bytes
mate/48x48/status/dialog-password.png | Bin 0 -> 2992 bytes
mate/48x48/status/dialog-question.png | Bin 0 -> 2502 bytes
mate/48x48/status/dialog-warning.png | Bin 0 -> 2844 bytes
mate/48x48/status/folder-drag-accept.png | Bin 0 -> 1729 bytes
mate/48x48/status/folder-open.png | Bin 0 -> 1979 bytes
mate/48x48/status/folder-visiting.png | Bin 0 -> 2599 bytes
mate/48x48/status/image-loading.png | Bin 0 -> 3585 bytes
mate/48x48/status/image-missing.png | Bin 0 -> 1728 bytes
mate/48x48/status/mail-attachment.png | Bin 0 -> 1947 bytes
mate/48x48/status/mail-read.png | Bin 0 -> 1621 bytes
mate/48x48/status/mail-replied.png | Bin 0 -> 2886 bytes
mate/48x48/status/mail-unread.png | Bin 0 -> 2609 bytes
mate/48x48/status/media-playlist-repeat.png | Bin 0 -> 1830 bytes
mate/48x48/status/media-playlist-shuffle.png | Bin 0 -> 2061 bytes
mate/48x48/status/network-error.png | Bin 0 -> 3571 bytes
mate/48x48/status/network-idle.png | Bin 0 -> 3031 bytes
mate/48x48/status/network-offline.png | Bin 0 -> 3502 bytes
mate/48x48/status/network-receive.png | Bin 0 -> 3438 bytes
mate/48x48/status/network-transmit-receive.png | Bin 0 -> 3213 bytes
mate/48x48/status/network-transmit.png | Bin 0 -> 3434 bytes
mate/48x48/status/printer-error.png | Bin 0 -> 2760 bytes
mate/48x48/status/printer-printing.png | Bin 0 -> 2704 bytes
mate/48x48/status/security-high.png | Bin 0 -> 4219 bytes
mate/48x48/status/security-low.png | Bin 0 -> 3088 bytes
mate/48x48/status/security-medium.png | Bin 0 -> 3129 bytes
mate/48x48/status/software-update-available.png | Bin 0 -> 3058 bytes
mate/48x48/status/software-update-urgent.png | Bin 0 -> 3005 bytes
mate/48x48/status/task-due.png | Bin 0 -> 2155 bytes
mate/48x48/status/task-past-due.png | Bin 0 -> 1850 bytes
mate/48x48/status/user-available.png | Bin 0 -> 4060 bytes
mate/48x48/status/user-away.png | Bin 0 -> 2868 bytes
mate/48x48/status/user-busy.png | Bin 0 -> 3751 bytes
mate/48x48/status/user-idle.png | Bin 0 -> 3235 bytes
mate/48x48/status/user-invisible.png | Bin 0 -> 2949 bytes
mate/48x48/status/user-offline.png | Bin 0 -> 2698 bytes
mate/48x48/status/user-trash-full.png | Bin 0 -> 4937 bytes
mate/48x48/status/weather-clear-night.png | Bin 0 -> 3064 bytes
mate/48x48/status/weather-clear.png | Bin 0 -> 4042 bytes
mate/48x48/status/weather-few-clouds-night.png | Bin 0 -> 3626 bytes
mate/48x48/status/weather-few-clouds.png | Bin 0 -> 3618 bytes
mate/48x48/status/weather-fog.png | Bin 0 -> 2541 bytes
mate/48x48/status/weather-overcast.png | Bin 0 -> 1890 bytes
mate/48x48/status/weather-severe-alert.png | Bin 0 -> 2601 bytes
mate/48x48/status/weather-showers-scattered.png | Bin 0 -> 2812 bytes
mate/48x48/status/weather-showers.png | Bin 0 -> 4295 bytes
mate/48x48/status/weather-snow.png | Bin 0 -> 1864 bytes
mate/48x48/status/weather-storm.png | Bin 0 -> 2769 bytes
mate/8x8/emblems/emblem-default.png | Bin 0 -> 332 bytes
mate/8x8/emblems/emblem-new.png | Bin 0 -> 328 bytes
mate/8x8/emblems/emblem-readonly.png | Bin 0 -> 343 bytes
mate/8x8/emblems/emblem-symbolic-link.png | Bin 0 -> 353 bytes
mate/8x8/emblems/emblem-synchronizing.png | Bin 0 -> 358 bytes
mate/8x8/emblems/emblem-unreadable.png | Bin 0 -> 362 bytes
missing | 376 +
po/ChangeLog | 1708 +
po/LINGUAS | 95 +
po/Makefile.in.in | 217 +
po/POTFILES.in | 4 +
po/af.po | 167 +
po/am.po | 224 +
po/ar.po | 194 +
po/as.po | 83 +
po/ast.po | 82 +
po/az.po | 269 +
po/be.po | 240 +
po/be@latin.po | 189 +
po/bg.po | 82 +
po/bn.po | 78 +
po/bn_IN.po | 225 +
po/br.po | 80 +
po/bs.po | 201 +
po/ca.po | 206 +
po/ca@valencia.po | 183 +
po/crh.po | 84 +
po/cs.po | 197 +
po/cy.po | 256 +
po/da.po | 202 +
po/de.po | 272 +
po/dz.po | 212 +
po/el.po | 275 +
po/en@shaw.po | 24 +
po/en_CA.po | 169 +
po/en_GB.po | 202 +
po/eo.po | 77 +
po/es.po | 226 +
po/et.po | 208 +
po/eu.po | 233 +
po/fa.po | 224 +
po/fi.po | 221 +
po/fr.po | 234 +
po/fur.po | 170 +
po/fy.po | 60 +
po/ga.po | 171 +
po/gl.po | 30 +
po/gu.po | 221 +
po/he.po | 234 +
po/hi.po | 92 +
po/hr.po | 149 +
po/hu.po | 85 +
po/id.po | 224 +
po/is.po | 236 +
po/it.po | 170 +
po/ja.po | 266 +
po/ka.po | 206 +
po/kk.po | 89 +
po/kn.po | 72 +
po/ko.po | 268 +
po/li.po | 223 +
po/lt.po | 226 +
po/lv.po | 90 +
po/mai.po | 83 +
po/mg.po | 196 +
po/mk.po | 197 +
po/ml.po | 179 +
po/mn.po | 256 +
po/mr.po | 172 +
po/ms.po | 216 +
po/nb.po | 240 +
po/nds.po | 81 +
po/ne.po | 189 +
po/nl.po | 318 +
po/nn.po | 165 +
po/oc.po | 184 +
po/or.po | 31 +
po/pa.po | 185 +
po/pl.po | 110 +
po/ps.po | 83 +
po/pt.po | 250 +
po/pt_BR.po | 183 +
po/ro.po | 89 +
po/ru.po | 188 +
po/rw.po | 247 +
po/si.po | 195 +
po/sk.po | 206 +
po/sl.po | 219 +
po/sq.po | 239 +
po/sr.po | 153 +
po/sr@latin.po | 153 +
po/sv.po | 201 +
po/ta.po | 219 +
po/te.po | 208 +
po/th.po | 255 +
po/tk.po | 204 +
po/tr.po | 195 +
po/uk.po | 219 +
po/uz.po | 82 +
po/uz@cyrillic.po | 82 +
po/vi.po | 250 +
po/wa.po | 228 +
po/xh.po | 205 +
po/zh_CN.po | 194 +
po/zh_HK.po | 207 +
po/zh_TW.po | 207 +
src/Makefile.am | 44 +
src/Makefile.in | 373 +
src/TODO | 31 +
src/accessories-calculator.svg | 6529 ++++
src/accessories-character-map.svg | 1784 +
src/accessories-dictionary.svg | 1992 ++
src/accessories-text-editor.svg | 7107 ++++
src/applets-screenshooter.svg |10209 ++++++
src/application-certificate.svg | 889 +
src/application-exit.svg | 951 +
src/application-x-executable.svg | 1608 +
src/applications-accessories.svg | 2093 ++
src/applications-development.svg | 548 +
src/applications-engineering.svg | 1385 +
src/applications-games.svg | 1343 +
src/applications-graphics.svg | 2803 ++
src/applications-internet.svg | 5035 +++
src/applications-multimedia.svg | 2737 ++
src/applications-office.svg | 3931 +++
src/applications-other.svg | 2475 ++
src/applications-science.svg | 2737 ++
src/applications-system.svg | 1701 +
src/applications-utilities.svg | 1448 +
src/audio-card.svg | 1771 +
src/audio-input-microphone.svg | 5969 ++++
src/audio-volume.svg | 4581 +++
src/audio-x-generic.svg | 1730 +
src/batteries.svg |29066 ++++++++++++++++
src/bookmark-new.svg | 1499 +
src/cabinets.svg | 7388 ++++
src/call-start.svg | 1210 +
src/call-stop.svg | 1177 +
src/camera-photo.svg | 7529 +++++
src/camera-video.svg | 2225 ++
src/camera-web.svg | 1283 +
src/changes.svg | 8704 +++++
src/clocks.svg | 8245 +++++
src/computers.svg |14450 ++++++++
src/contact-new.svg | 1946 ++
src/copy-paste-tasks.svg | 4446 +++
src/dialog-error.svg | 924 +
src/dialog-information.svg | 3548 ++
src/dialog-password.svg | 1457 +
src/dialog-question.svg | 1350 +
src/dialog-warning.svg | 1087 +
src/displays.svg |14893 +++++++++
src/document-send.svg | 387 +
src/drive-harddisk.svg | 3121 ++
src/drives.svg | 4720 +++
src/edit-clear.svg | 710 +
src/edit-cut.svg | 787 +
src/edit-delete.svg | 1499 +
src/edit-undo-redo.svg | 1363 +
src/emblem-default.svg | 493 +
src/emblem-documents.svg | 1093 +
src/emblem-downloads.svg | 853 +
src/emblem-favorite.svg | 599 +
src/emblem-generic.svg | 433 +
src/emblem-important.svg | 448 +
src/emblem-mail.svg | 756 +
src/emblem-new.svg | 400 +
src/emblem-photos.svg | 1890 ++
src/emblem-shared.svg | 2430 ++
src/emblem-synchronizing.svg | 1219 +
src/emblem-system.svg | 475 +
src/emblem-urgent.svg | 703 +
src/emblem-web.svg | 1840 +
src/emblems-fs.svg | 3332 ++
src/face-monkey.svg | 1174 +
src/faces-1.svg |35188 ++++++++++++++++++++
src/faces-2.svg |11149 +++++++
src/find.svg | 6079 ++++
src/folders.svg |13746 ++++++++
src/format-indent-justify-text.svg | 9246 +++++
src/format-text-direction-ltr.svg | 1685 +
src/format-text-direction-rtl.svg | 1545 +
src/help-about.svg | 483 +
src/help-browser.svg | 1818 +
src/help-contents.svg | 1395 +
src/help-faq.svg | 915 +
src/input-gaming.svg | 1130 +
src/input-mouse.svg | 897 +
src/input-tablet.svg | 489 +
src/input-touchpad.svg | 936 +
src/insert-image.svg | 806 +
src/insert-link.svg | 1155 +
src/insert-object.svg | 627 +
src/insert-text.svg | 453 +
src/keyboards.svg | 6245 ++++
src/list-add-remove.svg | 1030 +
src/logviewer.svg | 1084 +
src/mail-attachment.svg | 452 +
src/mail-forward.svg | 1719 +
src/mail-mark-important.svg | 3790 +++
src/mail-mark-junk.svg | 519 +
src/mail-mark-notjunk.svg | 558 +
src/mail-mark-unread.svg | 642 +
src/mail-replied.svg | 2052 ++
src/mail-reply-all.svg | 2093 ++
src/mail-reply-sender.svg | 1670 +
src/mail-send-receive.svg | 1974 ++
src/mail-send.svg | 865 +
src/mail-signed-verified.svg | 819 +
src/mail-signed.svg | 779 +
src/mail-unread.svg | 580 +
src/media-control-icons.svg | 7469 +++++
src/media-flash.svg | 3010 ++
src/media-floppy.svg | 1327 +
src/media-optical.svg | 2183 ++
src/media-tape.svg | 1020 +
src/modem.svg | 2775 ++
src/multimedia-player.svg | 2045 ++
src/multimedia-volume-control.svg | 327 +
src/navigation-icons.svg |17052 ++++++++++
src/network-server.svg |14931 +++++++++
src/network-wired.svg | 1106 +
src/network-wireless-encrypted.svg | 647 +
src/network-wireless.svg | 1001 +
src/object-flip-rotate.svg | 2774 ++
src/open-envelopes.svg | 4739 +++
src/packages.svg | 3654 ++
src/paper-sheets.svg |32054 ++++++++++++++++++
src/pda.svg | 777 +
src/phone.svg | 2104 ++
src/photos.svg | 2318 ++
src/preferences-desktop-accessibility.svg | 1601 +
src/preferences-desktop-font.svg | 980 +
src/preferences-desktop-keyboard-shortcuts.svg | 2363 ++
src/preferences-desktop-locale.svg | 3653 ++
src/preferences-desktop-peripherals.svg | 905 +
src/preferences-desktop-personal.svg | 1320 +
src/preferences-desktop-theme.svg | 3826 +++
src/preferences-desktop.svg | 1074 +
src/preferences-other.svg | 2483 ++
src/preferences-system-windows.svg | 524 +
src/preferences-system.svg | 2474 ++
src/printers.svg |11098 ++++++
src/scanner.svg | 990 +
src/security-high.svg | 1800 +
src/security-low.svg | 1529 +
src/security-medium.svg | 1896 ++
src/software-update.svg | 1902 ++
src/start-here.svg | 920 +
src/system-help.svg | 1633 +
src/system-log-out.svg | 1094 +
src/system-run.svg | 671 +
src/system-search.svg | 2120 ++
src/system-shutdown.svg | 903 +
src/system-software.svg | 5203 +++
src/tab-new.svg | 183 +
src/terminals.svg | 4469 +++
src/tools-check-spelling.svg | 504 +
src/trash.svg |15203 +++++++++
src/users.svg |13315 ++++++++
src/video-x-generic.svg | 3412 ++
src/view-fullscreen-restore.svg | 1870 ++
src/view-sort.svg | 2327 ++
src/weather-clear-night.svg | 744 +
src/weather-clear.svg | 438 +
src/weather-few-clouds-night.svg | 792 +
src/weather-few-clouds.svg | 564 +
src/weather-fog.svg | 900 +
src/weather-overcast.svg | 434 +
src/weather-severe-alert.svg | 1647 +
src/weather-showers-scattered.svg | 768 +
src/weather-showers.svg | 974 +
src/weather-snow.svg | 458 +
src/weather-storm.svg | 898 +
src/web-browser.svg | 5466 +++
src/window-close.svg | 576 +
src/window-new.svg | 722 +
src/x-office-address-book.svg | 5566 ++++
src/x-office-calendar.svg | 1686 +
src/x-office-presentation.svg | 6756 ++++
src/zoom.svg | 3693 ++
2120 files changed, 586807 insertions(+)
|