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
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
|
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR MATE Desktop Environment team
# This file is distributed under the same license as the mate-utils package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
# samson <sambelet@yahoo.com>, 2021
#
msgid ""
msgstr ""
"Project-Id-Version: mate-utils 1.27.0\n"
"Report-Msgid-Bugs-To: https://mate-desktop.org/\n"
"POT-Creation-Date: 2023-09-10 10:29+0200\n"
"PO-Revision-Date: 2018-03-12 09:18+0000\n"
"Last-Translator: samson <sambelet@yahoo.com>, 2021\n"
"Language-Team: Amharic (https://app.transifex.com/mate/teams/13566/am/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: am\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3
#: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:7
msgid "MATE Disk Usage Analyzer"
msgstr "įᵠᨠį²įµį į į įįį įįįįŖ"
#: baobab/data/mate-disk-usage-analyzer.desktop.in.in:4
msgid "Check folder sizes and available disk space"
msgstr "įØįįįµį įį įį½į į„į įįį įØį²įµį į¦į³įį½į įįįįŖ "
#. Translators: Search terms to find this application. Do NOT translate or
#. localize the semicolons! The list MUST also end with a semicolon!
#: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14
msgid "MATE;check;disk;usage;analyze;size;space;"
msgstr ""
#: baobab/data/baobab-dialog-scan-props.ui:18
msgid "Disk Usage Analyzer Preferences"
msgstr "ᨠį²įµį į į įįį įįįįŖ įįį«įį½ "
#: baobab/data/baobab-dialog-scan-props.ui:32
#: baobab/data/baobab-main-window.ui:129
#: mate-dictionary/src/gdict-applet.c:1234
#: mate-screenshot/data/mate-screenshot.ui:41
msgid "_Help"
msgstr "_į„įį³į³"
#: baobab/data/baobab-dialog-scan-props.ui:48
msgid "_Close"
msgstr "_įįįį«"
#: baobab/data/baobab-dialog-scan-props.ui:81
msgid "Select _devices to include in filesystem scan:"
msgstr "ᨠįįį įµįį įµ įį įØįį³į°į± įØįįØįį© _į į«įį½į įįįØį” "
#: baobab/data/baobab-dialog-scan-props.ui:119
msgid "_Monitor changes to your home folder"
msgstr "ᨠį¤įµ įįį°į įįį¦į½į _įįį£į įŖį«"
#: baobab/data/baobab-main-window.ui:10
msgid "_Analyzer"
msgstr "_įįįįŖ "
#: baobab/data/baobab-main-window.ui:17
msgid "Scan _Home Folder"
msgstr "ᨠ_į¤įµ įįį°į įį°į»"
#: baobab/data/baobab-main-window.ui:26
msgid "Scan _Filesystem"
msgstr "ᨠ_įįį įµįį įµ įį°į» "
#: baobab/data/baobab-main-window.ui:35
msgid "Scan F_older..."
msgstr "į_įį°į įį°į» "
#: baobab/data/baobab-main-window.ui:44
msgid "S_can Remote Folder..."
msgstr "įØįįįµ įįį°į į_į°į»..."
#: baobab/data/baobab-main-window.ui:74
msgid "_Edit"
msgstr "_įįØįį«"
#: baobab/data/baobab-main-window.ui:80
msgid "_Expand All"
msgstr "įįįį _įį³į°įį« "
#: baobab/data/baobab-main-window.ui:87
msgid "_Collapse All"
msgstr "įįįį _įį³įį» "
#: baobab/data/baobab-main-window.ui:101
msgid "_View"
msgstr "_įįįįØį»"
#: baobab/data/baobab-main-window.ui:108
msgid "_Toolbar"
msgstr "_į„į įį°įį°įŖį«"
#: baobab/data/baobab-main-window.ui:115
msgid "St_atusbar"
msgstr "įØį_įį³ įį°įį°įŖį«"
#: baobab/data/baobab-main-window.ui:122
msgid "All_ocated Space"
msgstr "į¦į³įį½ į_įį« "
#: baobab/data/baobab-main-window.ui:136
msgid "_Contents"
msgstr "_įįį³įį½"
#: baobab/data/baobab-main-window.ui:183 baobab/src/baobab.c:1237
#: baobab/src/callbacks.c:102
msgid "Disk Usage Analyzer"
msgstr "įØį²įµį į į įįį įįįįŖ "
#: baobab/data/baobab-main-window.ui:224 baobab/data/baobab-main-window.ui:236
msgid "Scan home folder"
msgstr "įØį¤įµ įįį°į įį°į» "
#: baobab/data/baobab-main-window.ui:225
msgid "Scan Home"
msgstr "į¤įµ įį°į» "
#: baobab/data/baobab-main-window.ui:248
msgid "Scan filesystem"
msgstr "įØįįį įµįį įµ įį°į» "
#: baobab/data/baobab-main-window.ui:249
msgid "Scan Filesystem"
msgstr "įØįįį įµįį įµ įį°į» "
#: baobab/data/baobab-main-window.ui:265
msgid "Scan a folder"
msgstr "įįį°į įį°į» "
#: baobab/data/baobab-main-window.ui:266
msgid "Scan Folder"
msgstr "įįį°į įį°į» "
#: baobab/data/baobab-main-window.ui:282
msgid "Scan a remote folder"
msgstr "ᨠį©į
įįį°į įį°į» "
#: baobab/data/baobab-main-window.ui:283
msgid "Scan Remote Folder"
msgstr "ᨠį©į
įįį°į įį°į» "
#: baobab/data/baobab-main-window.ui:312
msgid "Stop scanning"
msgstr "įį°į»įį įįµįįį« "
#: baobab/data/baobab-main-window.ui:328
msgid "Refresh"
msgstr "įįįįį« "
#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:9
msgid "Monitor Home"
msgstr "į¤įµ įįį£į įŖį«"
#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:10
msgid "Whether any change to the home directory should be monitored."
msgstr "į į¤įµ į³įį¬įį¶įŖ įįµį„ įįįįį įįį„ į įįį£į įŖį« įį³į į„įį°įį įįį°į "
#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:14
msgid "Excluded partitions URIs"
msgstr "ᨠURIs įįØįįį« į į³į«įµįµ"
#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:15
msgid "A list of URIs for partitions to be excluded from scanning."
msgstr "įįįį ᨠURIs įįįįį įØįįį«į°į± į įį°į»į įįµį„"
#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:21
msgid "Toolbar is Visible"
msgstr "ᨠį„į įį°įį°įŖį«į įį³į«į "
#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:22
msgid "Whether the toolbar should be visible in main window."
msgstr "ᨠį„į įį°įį°įŖį«į į įįį įįµį®įµ įį įį³į į„įį°įį "
#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:26
msgid "Statusbar is Visible"
msgstr "įįį³įį½ įį°įį°įŖį« įį³į«į "
#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:27
msgid "Whether the status bar at the bottom of main window should be visible."
msgstr "ᨠįįį³įį½ įį°įį°įŖį« ᨠį³į½ į įįį įįµį®įµ įį įį³į į„įį°įį įįį°į"
#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:31
msgid "Subfolder tips visible"
msgstr "ᨠįįįµ įįį°į į įį įįį įį³į«į "
#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:32
msgid "Whether the subfolder tooltips of the selected folder are drawn."
msgstr "ᨠįįįµ įįį°į įį³įŖį«įį½ į«į į į°įįØį į įįį°į įį³į į„įį°įį įįį°į"
#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:36
msgid "Active Chart"
msgstr "įį į»įįµ"
#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:37
msgid "Which type of chart should be displayed."
msgstr "įØįµįį į įįįµ į»įįµ įį³į"
#: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:8
msgid "A disk usage analyzing tool for MATE Desktop"
msgstr "ᨠį²įµį į į įįį įįįįŖ į įįµ į“įµįį¶į"
#: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10
msgid ""
"As its name implies, Disk Usage Analyzer is a graphical utility that you can"
" use to view and monitor your disk usage and folder structure. It displays "
"summary information in ring or treemap charts."
msgstr ""
#: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:15
msgid ""
"You can perform scans on a file system, your home or any other folder - "
"local or remote. There is also an option to constantly monitor any external "
"changes to the home directory and warn the user if a file is added/removed."
msgstr ""
#: baobab/src/baobab.c:141 baobab/src/baobab.c:358
msgid "Scanning..."
msgstr "į įį°įµ įį..."
#: baobab/src/baobab.c:186
msgid "Total filesystem capacity:"
msgstr "į į
įį įØįįį įµįį įµ įį į:"
#: baobab/src/baobab.c:187
msgid "used:"
msgstr "įØį°į įįįµ:"
#: baobab/src/baobab.c:188
msgid "available:"
msgstr "įįį:"
#: baobab/src/baobab.c:243 baobab/src/baobab.c:300 baobab/src/callbacks.c:267
msgid "Calculating percentage bars..."
msgstr "į įįµįįµ įį į įį¶į įį°įį°įŖį«..."
#: baobab/src/baobab.c:254 baobab/src/baobab.c:1300 baobab/src/callbacks.c:271
msgid "Ready"
msgstr "įįį "
#: baobab/src/baobab.c:392
msgid "Total filesystem capacity"
msgstr "į į
įį įØįįį įµįį į± įį į "
#: baobab/src/baobab.c:416
msgid "Total filesystem usage"
msgstr "į į
įį įØįįį įµįį į± į į įįį "
#: baobab/src/baobab.c:458
msgid "contains hardlinks for:"
msgstr "hardlinks įįį į:"
#: baobab/src/baobab.c:467
#, c-format
msgid "%5d item"
msgid_plural "%5d items"
msgstr[0] ""
msgstr[1] ""
#: baobab/src/baobab.c:593
msgid "Could not initialize monitoring"
msgstr "įįį£į įŖį«įį įįµįį³įµ į įį°į»įį "
#: baobab/src/baobab.c:594
msgid "Changes to your home folder will not be monitored."
msgstr "į į¤įµ įįį°į įįįįį įįį„ į įįį£į įŖį« į įį³įį "
#: baobab/src/baobab.c:913
msgid "Move to parent folder"
msgstr "įį° įįį
įįį°į įįįį³įį» "
#: baobab/src/baobab.c:917
msgid "Zoom in"
msgstr "į į
įį„ įį³į«"
#: baobab/src/baobab.c:921
msgid "Zoom out"
msgstr "į įįįµ įį³į«"
#: baobab/src/baobab.c:925
msgid "Save screenshot"
msgstr "ᨠįįįįØį»įį įį¶ įįµįįį«"
#: baobab/src/baobab.c:1111
msgid "View as Rings Chart"
msgstr "į įįį įµ į°įį įØį„ įį³į« "
#: baobab/src/baobab.c:1113
msgid "View as Treemap Chart"
msgstr "į įį į
įįį«į į°įį įØį„ įį³į«"
#: baobab/src/baobab.c:1224
msgid "Show version"
msgstr "į„įµįį įį³į«"
#: baobab/src/baobab.c:1225
msgid "[DIRECTORY]"
msgstr "[į³įį¬įį¶įŖ]"
#: baobab/src/baobab.c:1257
msgid "Too many arguments. Only one directory can be specified."
msgstr "į į£į į„į įįįį®į½: į įįµ į³įį¬įį¶įŖ į„į» įį įįįØį„ įØįį»įį"
#: baobab/src/baobab.c:1274
msgid "Could not detect any mount point."
msgstr "įįį įį«į įį„į„ į įį°įįį"
#: baobab/src/baobab.c:1276
msgid "Without mount points disk usage cannot be analyzed."
msgstr "į²įµį į«įį°į«į įįįįį į įį»įį"
#: baobab/src/baobab-chart.c:203
msgid "Maximum depth"
msgstr "įØįį°į "
#: baobab/src/baobab-chart.c:204
msgid "The maximum depth drawn in the chart from the root"
msgstr "įØįį°įį į„įįįµ į chart įįµį„ ᨠroot"
#: baobab/src/baobab-chart.c:213
msgid "Chart model"
msgstr "ᨠį°įį įØį„ įį“ "
#: baobab/src/baobab-chart.c:214
msgid "Set the model of the chart"
msgstr "į į°įį įØį„ įįį įį°įį "
#: baobab/src/baobab-chart.c:221
msgid "Chart root node"
msgstr "Chart root node"
#: baobab/src/baobab-chart.c:222
msgid "Set the root node from the model"
msgstr ""
#: baobab/src/baobab-chart.c:1708
msgid "Cannot create pixbuf image!"
msgstr "pixbuf įįµį įįį į į įį°į»įį "
#: baobab/src/baobab-chart.c:1718
msgid "Save Snapshot"
msgstr "įį«į įį¶ įįµįįį«"
#: baobab/src/baobab-chart.c:1745
msgid "_Image type:"
msgstr "ᨠ_įįµį į įįįµ:"
#: baobab/src/baobab-prefs.c:171
msgid "Scan"
msgstr "įį°į»"
#: baobab/src/baobab-prefs.c:178
msgid "Device"
msgstr "į į«į"
#: baobab/src/baobab-prefs.c:186
msgid "Mount Point"
msgstr "įį«į įį„į„ "
#: baobab/src/baobab-prefs.c:194
msgid "Filesystem Type"
msgstr "ᨠįįį įµįį įµ į įįįµ "
#: baobab/src/baobab-prefs.c:202
msgid "Total Size"
msgstr "į į
įį įį į "
#: baobab/src/baobab-prefs.c:211
msgid "Available"
msgstr "įįį "
#: baobab/src/baobab-remote-connect-dialog.c:71
#, c-format
msgid "Cannot scan location \"%s\""
msgstr "į į«į£į¢įį įį°įµ į įį°į»įį \"%s\""
#: baobab/src/baobab-remote-connect-dialog.c:160
msgid "Custom Location"
msgstr "į į«į£į¢ įįµį°į«įØį«"
#: baobab/src/baobab-remote-connect-dialog.c:162
msgid "SSH"
msgstr "SSH"
#: baobab/src/baobab-remote-connect-dialog.c:165
msgid "Public FTP"
msgstr "Public FTP"
#: baobab/src/baobab-remote-connect-dialog.c:167
msgid "FTP (with login)"
msgstr "FTP (with login)"
#: baobab/src/baobab-remote-connect-dialog.c:170
msgid "Windows share"
msgstr "įįµį®į¶į½ įį«įį«"
#: baobab/src/baobab-remote-connect-dialog.c:172
msgid "WebDAV (HTTP)"
msgstr "WebDAV (HTTP)"
#: baobab/src/baobab-remote-connect-dialog.c:174
msgid "Secure WebDAV (HTTPS)"
msgstr "Secure WebDAV (HTTPS)"
#: baobab/src/baobab-remote-connect-dialog.c:234
msgid "Cannot Connect to Server. You must enter a name for the server."
msgstr "įį° į°įįØį© įįįįįµ į įį°į»įį įį°įįØį© įµį įįµįį£įµ į įį„įįµ "
#: baobab/src/baobab-remote-connect-dialog.c:237
msgid "Please enter a name and try again."
msgstr "į„į£įįį įµį į«įµįį” į„į į„įį°įį įįįį© "
#: baobab/src/baobab-remote-connect-dialog.c:431
msgid "_Location (URI):"
msgstr "_į į«į£į¢ (URI):"
#: baobab/src/baobab-remote-connect-dialog.c:447
msgid "_Server:"
msgstr "_į°įįØį:"
#: baobab/src/baobab-remote-connect-dialog.c:460
msgid "Optional information:"
msgstr "į įį«į įįØįįį½:"
#: baobab/src/baobab-remote-connect-dialog.c:469
msgid "_Share:"
msgstr "_įį«įį«:"
#: baobab/src/baobab-remote-connect-dialog.c:484
#: mate-dictionary/data/mate-dictionary-source.ui:121
msgid "_Port:"
msgstr "_Port:"
#: baobab/src/baobab-remote-connect-dialog.c:498
msgid "_Folder:"
msgstr "_įįį°į:"
#: baobab/src/baobab-remote-connect-dialog.c:512
msgid "_User Name:"
msgstr "ᨠ_į°į įį įµį:"
#: baobab/src/baobab-remote-connect-dialog.c:527
msgid "_Domain Name:"
msgstr "ᨠ_įįįµ įµį:"
#: baobab/src/baobab-remote-connect-dialog.c:584
msgid "Connect to Server"
msgstr "įį° į°įØį įįįį"
#: baobab/src/baobab-remote-connect-dialog.c:600
msgid "Service _type:"
msgstr "ᨠįįįįįµ _į įįįµ:"
#: baobab/src/baobab-remote-connect-dialog.c:716
msgid "_Scan"
msgstr "_įį°į» "
#: baobab/src/baobab-treeview.c:83
msgid "Rescan your home folder?"
msgstr "ᨠį¤įµ įįį°į©į į„įį°įį įįµį°į? "
#: baobab/src/baobab-treeview.c:84
msgid ""
"The content of your home folder has changed. Select rescan to update the "
"disk usage details."
msgstr "ᨠį¤įµ įįį°į įįį³ į°įįįÆį: ᨠį²įµį į į įįį įįįįį įįį»į»į į„įį°įį įį°į»į įįįØį” "
#: baobab/src/baobab-treeview.c:85
msgid "_Rescan"
msgstr "_į„įį°įį įį°į» "
#: baobab/src/baobab-treeview.c:222 gsearchtool/src/gsearchtool.c:2446
msgid "Folder"
msgstr "įįį°į "
#: baobab/src/baobab-treeview.c:244
msgid "Usage"
msgstr "į į įįį "
#: baobab/src/baobab-treeview.c:258 gsearchtool/src/gsearchtool.c:2459
msgid "Size"
msgstr "įį į "
#: baobab/src/baobab-treeview.c:274
msgid "Contents"
msgstr "įįį³įį½"
#: baobab/src/baobab-utils.c:105
msgid "Select Folder"
msgstr "įįį°į įįįØį”"
#: baobab/src/baobab-utils.c:117
msgid "_Show hidden folders"
msgstr "įØį°į°į į įįį°į®į½ _įį³į« "
#: baobab/src/baobab-utils.c:280
msgid "Cannot check an excluded folder!"
msgstr "įØįį©įµį įįį°į®į½ įįįįį į įį°į»įį "
#: baobab/src/baobab-utils.c:304
#, c-format
msgid "\"%s\" is not a valid folder"
msgstr "\"%s\" įį į«įį įįį°į į įį°įį "
#: baobab/src/baobab-utils.c:307
msgid "Could not analyze disk usage."
msgstr "įØį²įµį į į įįį įįįįį į įį°į»įį "
#: baobab/src/baobab-utils.c:343
msgid "_Open Folder"
msgstr "įįį°į _įįįį» "
#: baobab/src/baobab-utils.c:349 gsearchtool/src/gsearchtool-callbacks.c:1326
msgid "Mo_ve to Trash"
msgstr "įį° įį»į½ įįį_į³įį»"
#: baobab/src/baobab-utils.c:378
#, c-format
msgid "Could not open folder \"%s\""
msgstr "įįį°į©į įįįįµ į įį°į»įį \"%s\""
#: baobab/src/baobab-utils.c:381
msgid "There is no installed viewer capable of displaying the folder."
msgstr "įįį°į©į įįį³įØįµ įØį°įį į įįįįØį» įØįį "
#: baobab/src/baobab-utils.c:448
#, c-format
msgid "Could not move \"%s\" to the Trash"
msgstr "įį° įį»į» įįįį³įįµ \"%s\" į įį°į»įį "
#: baobab/src/baobab-utils.c:456
msgid "Could not move file to the Trash"
msgstr "įįįį įį° įį»į» įįįį³įįµ į įį°į»įį "
#: baobab/src/baobab-utils.c:458
#, c-format
msgid "Details: %s"
msgstr "įįįį®į½: %s"
#: baobab/src/baobab-utils.c:496
msgid "There was an error displaying help."
msgstr "įµį
į°įµ į„įį³į³ į įį³įØįµ įį į„įį³į"
#: baobab/src/callbacks.c:74 logview/src/logview-about.h:44
#: mate-dictionary/src/gdict-about.c:49
msgid "MATE Documentation Team"
msgstr ""
#: baobab/src/callbacks.c:79 logview/src/logview-about.h:49
#: mate-dictionary/src/gdict-about.c:57
msgid ""
"This program is free software; you can redistribute it and/or modify it "
"under the terms of the GNU General Public License as published by the Free "
"Software Foundation; either version 2 of the License, or (at your option) "
"any later version."
msgstr ""
#: baobab/src/callbacks.c:84 logview/src/logview-about.h:53
#: mate-dictionary/src/gdict-about.c:62
msgid ""
"This program is distributed in the hope that it will be useful, but WITHOUT "
"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
"FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for "
"more details."
msgstr ""
#: baobab/src/callbacks.c:89 logview/src/logview-about.h:57
#: mate-dictionary/src/gdict-about.c:67
msgid ""
"You should have received a copy of the GNU General Public License along with"
" this program. If not, see <https://www.gnu.org/licenses/>."
msgstr ""
#: baobab/src/callbacks.c:104
msgid "About Disk Usage Analyzer"
msgstr ""
#: baobab/src/callbacks.c:105
msgid "Analyze your disk usage through a graphical tool."
msgstr ""
#: baobab/src/callbacks.c:106
msgid ""
"Copyright Ā© 2005-2010 Fabio Marzocca\n"
"Copyright Ā© 2011-2021 MATE developers"
msgstr ""
#: baobab/src/callbacks.c:112 logview/src/logview-about.h:62
#: mate-dictionary/src/gdict-about.c:53
msgid "translator-credits"
msgstr "Samson-Belete-Belayineh"
#: baobab/src/callbacks.c:210 gsearchtool/src/gsearchtool-callbacks.c:505
#: gsearchtool/src/gsearchtool-callbacks.c:878
msgid "The document does not exist."
msgstr "į°įį± į įį°įįį "
#: baobab/src/callbacks.c:291
msgid "The folder does not exist."
msgstr "įįį°į© į įį°įįį "
#: gsearchtool/data/mate-search-tool.appdata.xml.in:7
#: gsearchtool/data/mate-search-tool.desktop.in:3
msgid "MATE Search Tool"
msgstr "ᨠįįµ įįįįį« įį³įŖį«"
#: gsearchtool/data/mate-search-tool.appdata.xml.in:8
msgid "A file searching tool for MATE Desktop"
msgstr "į įįµ į“įµįį¶į įįį įįįįį«"
#: gsearchtool/data/mate-search-tool.appdata.xml.in:10
msgid ""
"MATE Search Tool is a simple but powerful utility that allows you to search "
"for files and folders on any mounted file system. Its interface gives you "
"instant access to a wide variety of parameters for each search, such as text"
" contained within a file, ownership, date of modification, file size, folder"
" exclusion, etc.."
msgstr ""
#: gsearchtool/data/mate-search-tool.desktop.in:4
msgid "Locate documents and folders on this computer by name or content"
msgstr "į°įį¶į½ įįįį įįį°į®į½ į įį
į®įįį©į°į įįµį„ į įµį įįįį į įįį³ įįį įįį"
#. Translators: Search terms to find this application. Do NOT translate or
#. localize the semicolons! The list MUST also end with a semicolon!
#: gsearchtool/data/mate-search-tool.desktop.in:13
msgid ""
"MATE;search;files;locate;documents;folders;computer;name;content;find;tool;"
msgstr ""
#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:5
msgid "Search history"
msgstr "į³įŖį įįįįį«"
#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:6
msgid "This key defines the items which were searched for in the past."
msgstr "įį
įįį įØįįįįøį į„įįį½ į£įįį ᨠį°įįįįįµį įį"
#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:10
msgid "Show Additional Options"
msgstr "į°įØįįŖ įįį«įį½ įį³į« "
#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:14
msgid "Disable Quick Search"
msgstr "į įį„įįµ įįįįį«į įį°įįØį« "
#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:15
msgid ""
"This key determines if the search tool disables the use of the locate "
"command when performing simple file name searches."
msgstr ""
"įį
įįį įØįįįµįį ᨠįįįįį« įįį ᨠį°į°įįØį ᨠįįį įįį įµį„įį įį įįį ᨠįįį įµį į įįįį įį"
#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:19
msgid "Quick Search Excluded Paths"
msgstr "į įį„įįµ įįįįį« įįįį¶į½ į į«į«įµįµį"
#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20
msgid ""
"This key defines the paths the search tool will exclude from a quick search."
" The wildcards '*' and '?' are supported. The default values are /mnt/*, "
"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*."
msgstr ""
"įį
įįį įØįįįįøį įįįᵠᨠįįįįį« įį³įŖį« įį: į įį„įįµ įįįįį« į į«į«įµįµį: įį įį„ į«įįµ '*' į„į '?'"
" ᨠį°į°įį įįøį: įį£į įįįį½ į„įįį
įįøį /mnt/*, /media/*, /dev/*, /tmp/*, /proc/*, "
"and /var/*."
#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24
msgid "Disable Quick Search Second Scan"
msgstr "į įį„įįµ įįįįį« į įįį°į įį įį°įįØį«"
#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:25
msgid ""
"This key determines if the search tool disables the use of the find command "
"after performing a quick search."
msgstr ""
"įį
įįį įØįįįµįį ᨠįįįįį« įįį įį³įŖį« ᨠį°į°įįØį ᨠįįį įįį įµį„įį įį įįį ᨠįįį įµį į įįįį "
"įį"
#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:29
msgid "Quick Search Second Scan Excluded Paths"
msgstr "į įį„įįµ įįįįį« į įįį°į įį įįįį¶į½ į į«į«įµįµį"
#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:30
msgid ""
"This key defines the paths the search tool will exclude from a second scan "
"when performing a quick search. The second scan uses the find command to "
"search for files. The purpose of the second scan is to find files that have "
"not been indexed. The wildcards '*' and '?' are supported. The default value"
" is /."
msgstr ""
#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34
msgid "Search Result Columns Order"
msgstr "ᨠįįįįį« įį¤įµ į į įį¶į½ į°įį„ įįµį„"
#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:35
msgid ""
"This key defines the order of the columns in the search results. This key "
"should not be modified by the user."
msgstr "įį
įįį įØįįįµįįᨠį įįµ į
į°į į°įØį°į įį į įįįįį« įįµį„: įįį į į°į įį įį»į»į įØįį įµį"
#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:39
msgid "Default Window Width"
msgstr "įį£į įØįįµį®įµ įµįįµ "
#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40
msgid ""
"This key defines the window width, and it's used to remember the size of the"
" search tool between sessions. Setting it to -1 will make the search tool "
"use the default width."
msgstr ""
"įį
įįį įØįįįµįį ᨠįįµį®įµ įµįįµ įį įį į„į į į įįįį įį į įįįįį« įį³įŖį«įį½ įį«įØį į įįį įį įįµį„ "
"įį: įį
-1 ᨠįįįįį« įįµįŖį« įį£į įµįįµ įį įįį"
#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44
msgid "Default Window Height"
msgstr "įį£į įØįįµį®įµ į„įįįįµ "
#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45
msgid ""
"This key defines the window height, and it's used to remember the size of "
"the search tool between sessions. Setting it to -1 will make the search tool"
" use the default height."
msgstr ""
"įį
įįį įØįįįµįį ᨠįįµį®įµ į„įįįįµ įį įį į„į į į įįįį įį į įįįįį« įį³įŖį«įį½ įį«įØį į įįį įį "
"įįµį„: įį
-1 ᨠįįįįį« įįµįŖį« įį£į į„įįįįµ įį įįį"
#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49
msgid "Default Window Maximized"
msgstr "įį£į įØįįµį®įµ įį³į°įį« "
#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:50
msgid ""
"This key determines if the search tool window starts in a maximized state."
msgstr "įį
įįį įØįįįµįį ᨠįįįįį« įį³įŖį« įįµį®įµ į įØįį°į įįį³ įįįį į„įįµįį įį"
#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:54
msgid "Look in Folder"
msgstr "į įįį°į įįµį„ įįįįØį» "
#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:55
msgid "This key defines the default value of the \"Look in Folder\" widget."
msgstr "įį
įį½ įØįįįįøį ᨠįį£į įį įį į \"įįį°į įįµį„ įįįįį«\" įįįµ įįµį„"
#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:62
msgid ""
"This key determines if the \"Contains the text\" search option is selected "
"when the search tool is started."
msgstr "įį
įį½ įØįįįµįį \"į½įį įØį«įį\" įįįįį« įįį« į²įįØį„ įį ᨠįįįįį« įį³įŖį« į įįįį įį"
#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:66
msgid ""
"This key determines if the \"Date modified less than\" search option is "
"selected when the search tool is started."
msgstr ""
"įį
įį½ įØįįįµįį \"ᨠį°į»į»įį įį į«įį³į į \" įįįįį« įįį« į²įįØį„ įį ᨠįįįįį« įį³įŖį« į įįįį įį"
#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:70
msgid ""
"This key determines if the \"Date modified more than\" search option is "
"selected when the search tool is started."
msgstr ""
"įį
įį½ įØįįįµįį \"ᨠį°į»į»įį įį įį įį£į į \" įįįįį« įįį« į²įįØį„ įį ᨠįįįįį« įį³įŖį« į įįįį įį"
#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:74
msgid ""
"This key determines if the \"Size at least\" search option is selected when "
"the search tool is started."
msgstr "įį
įį½ įØįįįµįį \"į¢į«įįµ įį į\" įįįįį« įįį« į²įįØį„ įį ᨠįįįįį« įį³įŖį« į įįįį įį"
#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:78
msgid ""
"This key determines if the \"Size at most\" search option is selected when "
"the search tool is started."
msgstr "įį
įįį įØįįįµįį \"į¢į«įįµ įį į\" įįįįį« įįį« į²įįØį„ įį ᨠįįįįį« įį³įŖį« į įįįį įį"
#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:82
msgid ""
"This key determines if the \"File is empty\" search option is selected when "
"the search tool is started."
msgstr "įį
įįį įØįįįµįį \"įįį į£į¶ į²įį įį\" įįįįį« įįį« į²įįØį„ įį ᨠįįįįį« įį³įŖį« į įįįį įį"
#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:86
msgid ""
"This key determines if the \"Owned by user\" search option is selected when "
"the search tool is started."
msgstr ""
"įį
įįį įØįįįµįį \"į£įį¤į± į°į įįį į²įį įį\" įįįįį« įįį« į²įįØį„ įį ᨠįįįįį« įį³įŖį« į įįįį įį"
#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90
msgid ""
"This key determines if the \"Owned by group\" search option is selected when"
" the search tool is started."
msgstr "įį
įį½ įØįįįµįį \"ᨠį”įµį į„įį°įį įį\" įįįįį« įįį« į²įįØį„ įį ᨠįįįįį« įį³įŖį« į įįįį įį"
#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94
msgid ""
"This key determines if the \"Owner is unrecognized\" search option is "
"selected when the search tool is started."
msgstr "įį
įįį įØįįįµįį \"į£įį¤į± įØįįį³įį
įØįį\" įįįįį« įįį« įįįØį£į ᨠįįįįį« įį³įŖį« į įįįį įį: "
#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:98
msgid ""
"This key determines if the \"Name does not contain\" search option is "
"selected when the search tool is started."
msgstr "įį
įįį įØįįįµįį \"įµį į«įį«į įØįį\" įįįįį« įįį« įįįØį£į ᨠįįįįį« įį³įŖį« į įįįį įį:"
#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102
msgid ""
"This key determines if the \"Name matches regular expression\" search option"
" is selected when the search tool is started."
msgstr ""
"įį
įįį įØįįįµįį \"įµį į°įį³į³į įØįį įį ᨠįį°į į įįįį« įį\" įįįįį« įįį« įįįØį£į ᨠįįįįį« "
"įį³įŖį« į įįįį įį:"
#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106
msgid ""
"This key determines if the \"Show hidden files and folders\" search option "
"is selected when the search tool is started."
msgstr ""
"įį
įįį įØįįįµįį \"ᨠį°į°į į įįįį½ įįį³įØįµ įį\" įįįįį« įįį« įįįØį£į ᨠįįįįį« įį³įŖį« į įįįį "
"įį:"
#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:110
msgid ""
"This key determines if the \"Follow symbolic links\" search option is "
"selected when the search tool is started."
msgstr ""
"įį
įįį įØįįįµį \"ᨠsymbolic į įįį įįØį°į«\" įįįįį« įįį« įįįØį£į ᨠįįįįį« įį³įŖį« į įįįį įį:"
#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:114
msgid ""
"This key determines if the \"Exclude other filesystems\" search option is "
"selected when the search tool is started."
msgstr ""
"įį
įįį įØįįįµįį \"įįὠᨠįįį įµįį įµ į į«į«įµįµį\" įįįįį« įįį« įįįØį£į ᨠįįįįį« įį³įŖį« į įįįį "
"įį:"
#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169
msgid "File is not a valid .desktop file"
msgstr "įįį įį į«įį ᨠ.į“įµįį¶į įįį į įį°įį"
#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194
#, c-format
msgid "Unrecognized desktop file Version '%s'"
msgstr "į«įį³įį ᨠį“įµįį¶į įįį į įįįµ į„įµį '%s'"
#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:984
#, c-format
msgid "Starting %s"
msgstr "į įįµįįį įį %s"
#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1126
msgid "Application does not accept documents on command line"
msgstr "įį°įį įŖį«į į°įįµ į įµį„įį įįµįį į įįį įį"
#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1194
#, c-format
msgid "Unrecognized launch option: %d"
msgstr "į«įį³įį įįµįįįŖį« įįį«: %d"
#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1410
msgid "Can't pass document URIs to a 'Type=Link' desktop entry"
msgstr "ᨠį°įįµ URIs įįį į įį°į»įį įᰠᨠ'į įįįµ=į įįį' į“įµįį¶į įįµįį¢į«"
#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1431
msgid "Not a launchable item"
msgstr "į„įį įØįįįį į įįįµ į įį°įį"
#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234
msgid "Disable connection to session manager"
msgstr "ᨠįįį įį į įµį°į³į³įŖ įį įįįįįµ įį°įįØį«"
#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239
msgid "Specify file containing saved configuration"
msgstr "ᨠį°įįį įį ᨠįį°įį įįį įØį«įįį įįį°į"
#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239
msgid "FILE"
msgstr "įįį"
#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244
msgid "Specify session management ID"
msgstr "ᨠįįį įį į įµį°į³į³įŖ ID įįįµį "
#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244
msgid "ID"
msgstr "įįį«"
#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270
msgid "Session management options:"
msgstr "ᨠįįį įį į įµį°į³į³įŖ įįį«"
#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271
msgid "Show session management options"
msgstr "ᨠįįį įį į įµį°į³į³įŖ įįį« įį³į«"
#: gsearchtool/src/gsearchtool.c:81
msgid "Contains the _text"
msgstr " _į½įį įįį "
#: gsearchtool/src/gsearchtool.c:83
msgid "_Date modified less than"
msgstr "ᨠį°į»į»įį įµ _įį į«įį³į įØ"
#: gsearchtool/src/gsearchtool.c:83 gsearchtool/src/gsearchtool.c:84
msgid "days"
msgstr "įįį½"
#: gsearchtool/src/gsearchtool.c:84
msgid "Date modified more than"
msgstr "ᨠį°į»į»įį įµ įį įį įį£į įØ"
#: gsearchtool/src/gsearchtool.c:86
msgid "S_ize at least"
msgstr "į_į į į¢į«įįµ "
#: gsearchtool/src/gsearchtool.c:86 gsearchtool/src/gsearchtool.c:87
msgid "kilobytes"
msgstr "įŖį į£įįµįµ "
#: gsearchtool/src/gsearchtool.c:87
msgid "Si_ze at most"
msgstr "į_į į į¢į į "
#: gsearchtool/src/gsearchtool.c:88
msgid "File is empty"
msgstr "įįį į£į¶ įį"
#: gsearchtool/src/gsearchtool.c:90
msgid "Owned by _user"
msgstr "į£įį¤į± _į°į įį"
#: gsearchtool/src/gsearchtool.c:91
msgid "Owned by _group"
msgstr "į£įį¤į± _į”įµį"
#: gsearchtool/src/gsearchtool.c:92
msgid "Owner is unrecognized"
msgstr "į£įį¤į± į įį³įį
į"
#: gsearchtool/src/gsearchtool.c:94
msgid "Na_me does not contain"
msgstr "įµ_į į įį«įį "
#: gsearchtool/src/gsearchtool.c:95
msgid "Name matches regular e_xpression"
msgstr "įµį į°įį³į į įį ᨠįį°į į įįįį« įį"
#: gsearchtool/src/gsearchtool.c:97
msgid "Show hidden and backup files"
msgstr "įØį°į°į į į„į į°į°įŖ įįįį½į įį³į« "
#: gsearchtool/src/gsearchtool.c:98
msgid "Follow symbolic links"
msgstr "ᨠįįįį±į į įįį įįØį°į"
#: gsearchtool/src/gsearchtool.c:99
msgid "Exclude other filesystems"
msgstr "įįὠᨠįįį įµįį į¶į½ į į³į«įµįµ"
#: gsearchtool/src/gsearchtool.c:157
msgid "Show version of the application"
msgstr "įØįį°įį įŖį«įį į„įµį įį³į« "
#: gsearchtool/src/gsearchtool.c:158 gsearchtool/src/gsearchtool.c:163
#: gsearchtool/src/gsearchtool.c:172
msgid "STRING"
msgstr "įįØį "
#: gsearchtool/src/gsearchtool.c:159
msgid "PATH"
msgstr "įįįįµ"
#: gsearchtool/src/gsearchtool.c:160
msgid "VALUE"
msgstr "įį"
#: gsearchtool/src/gsearchtool.c:164 gsearchtool/src/gsearchtool.c:165
msgid "DAYS"
msgstr "įįį½ "
#: gsearchtool/src/gsearchtool.c:166 gsearchtool/src/gsearchtool.c:167
msgid "KILOBYTES"
msgstr "įŖį į£įįµįµ "
#: gsearchtool/src/gsearchtool.c:169
msgid "USER"
msgstr "į°į įį "
#: gsearchtool/src/gsearchtool.c:170
msgid "GROUP"
msgstr "į”įµį "
#: gsearchtool/src/gsearchtool.c:173
msgid "PATTERN"
msgstr "įįµį"
#: gsearchtool/src/gsearchtool.c:384
msgid "A locate database has probably not been created."
msgstr "ᨠį³į³į¤į įįįįį« įįįį£įµ į įį°įį įØį"
#: gsearchtool/src/gsearchtool.c:486
#, c-format
msgid "Character set conversion failed for \"%s\""
msgstr "į£į
įŖ įį°įį įįįØįŖį« į įį°į³į«į į \"%s\""
#: gsearchtool/src/gsearchtool.c:510
msgid "Searching..."
msgstr "į įįįį įį... "
#: gsearchtool/src/gsearchtool.c:510 gsearchtool/src/gsearchtool.c:1047
#: gsearchtool/src/gsearchtool.c:3043
msgid "Search for Files"
msgstr "įįįį½į į įįįį įį "
#: gsearchtool/src/gsearchtool.c:993 gsearchtool/src/gsearchtool.c:1022
msgid "No files found"
msgstr "įįį įįį į įį°įįį "
#: gsearchtool/src/gsearchtool.c:1015
msgid "(stopped)"
msgstr "(įįį)"
#: gsearchtool/src/gsearchtool.c:1021
msgid "No Files Found"
msgstr "įįį įįį į įį°įįį "
#: gsearchtool/src/gsearchtool.c:1026
#, c-format
msgid "%'d File Found"
msgid_plural "%'d Files Found"
msgstr[0] ""
msgstr[1] ""
#: gsearchtool/src/gsearchtool.c:1030 gsearchtool/src/gsearchtool.c:1068
#, c-format
msgid "%'d file found"
msgid_plural "%'d files found"
msgstr[0] ""
msgstr[1] ""
#: gsearchtool/src/gsearchtool.c:1159
msgid "Entry changed called for a non entry option!"
msgstr "įįµįį¢į«į į°įįįÆį į įįį įįµįį¢į« įįį«"
#: gsearchtool/src/gsearchtool.c:1324
msgid "Set the text of \"Name contains\" search option"
msgstr "į½įį įį°įį \"įµį įį«įį\" įįįįį« įįį«"
#: gsearchtool/src/gsearchtool.c:1325
msgid "Set the text of \"Look in folder\" search option"
msgstr "į½įį įį°įį \"į įįį°į įįµį„ įįįįØį»\" įįįįį« įįį«"
#: gsearchtool/src/gsearchtool.c:1326
msgid "Sort files by one of the following: name, folder, size, type, or date"
msgstr "įØįįį„įįµ į į įį± įįįį½ įįį«: į įµį: į įįį°į: į į įįįµ: įįįį įį"
#: gsearchtool/src/gsearchtool.c:1327
msgid "Set sort order to descending, the default is ascending"
msgstr "į„įØįįį° į įįįµ į°įį„ įįį« įį°įį: įį£į© į„įØįØįᨠį įįįµ įį"
#: gsearchtool/src/gsearchtool.c:1328
msgid "Automatically start a search"
msgstr "į«į± į į«į± įįįįį« įįµįįįŖį«"
#: gsearchtool/src/gsearchtool.c:1334
#, c-format
msgid "Select the \"%s\" search option"
msgstr "įįįØį” ᨠ\"%s\" įįįįį« įįį«"
#: gsearchtool/src/gsearchtool.c:1337
#, c-format
msgid "Select and set the \"%s\" search option"
msgstr "įįįØį” į„į į«į°įᱠᨠ\"%s\" įįįįį« įįį«"
#: gsearchtool/src/gsearchtool.c:1444
msgid "Invalid option passed to sortby command line argument."
msgstr "įį įØįįį įįį« į įįį į įµį„įį įįµįį įįįį įįµį„"
#: gsearchtool/src/gsearchtool.c:1736
msgid ""
"\n"
"... Too many errors to display ..."
msgstr ""
"\n"
"... įµį
į°į± į į£į į įį«į³ įį įįį³įØįµ ..."
#: gsearchtool/src/gsearchtool.c:1750
msgid ""
"The search results may be invalid. There were errors while performing this "
"search."
msgstr "ᨠįįįįį« įį¤įµ įįįį£įµ įį įØįįį įį: įį
įįįįį« į²įįøį įµį
į°įµ į°įį„į® įį į"
#: gsearchtool/src/gsearchtool.c:1762 gsearchtool/src/gsearchtool.c:1806
msgid "Show more _details"
msgstr "į°įØįįŖ _įįįį®į½ įį³į« "
#: gsearchtool/src/gsearchtool.c:1792
msgid ""
"The search results may be out of date or invalid. Do you want to disable "
"the quick search feature?"
msgstr ""
"ᨠįįįįį« įį¤įµ įįįį£įµ įįį į«įįį įµ įįįį įį įØįįį įį: į„įįµį įį
į į įį„įįµ įįįįį« įį°įįØį "
"įįįįį?"
#: gsearchtool/src/gsearchtool.c:1817
msgid "Disable _Quick Search"
msgstr "įį°įįØį« _įį„į įįįįį«"
#: gsearchtool/src/gsearchtool.c:1844
#, c-format
msgid "Failed to set process group id of child %d: %s.\n"
msgstr ""
"ᨠį”įµį įįį« į įįį½ įį°įį³įµ į įį°į»įį: %d: %s.\n"
"\n"
#: gsearchtool/src/gsearchtool.c:1869
msgid "Error parsing the search command."
msgstr "įµį„įįį įį°įį°į įįįįį« įµį„įį"
#: gsearchtool/src/gsearchtool.c:1901
msgid "Error running the search command."
msgstr "ᨠįįįįį« įµį„įįį į įįµį¬įµ įį į„įį³į įµį
į°įµ į°įį„įÆį"
#: gsearchtool/src/gsearchtool.c:2024
#, c-format
msgid "Enter a text value for the \"%s\" search option."
msgstr "ᨠį½įį įį į«įµįį” į \"%s\" įįįįį« įįį«įį½"
#. Translators: Below is a string displaying the search options name
#. and unit value. For example, "\"Date modified less than\" in days".
#: gsearchtool/src/gsearchtool.c:2029
#, c-format
msgid "\"%s\" in %s"
msgstr "\"%s\" įįµį„ %s"
#: gsearchtool/src/gsearchtool.c:2031
#, c-format
msgid "Enter a value in %s for the \"%s\" search option."
msgstr "įį į«įµįį” %s į \"%s\" įįįįį« įįį«įį½"
#: gsearchtool/src/gsearchtool.c:2095
#, c-format
msgid "Remove \"%s\""
msgstr "įįµįįį \"%s\""
#: gsearchtool/src/gsearchtool.c:2096
#, c-format
msgid "Click to remove the \"%s\" search option."
msgstr "įį«į įįįµįįįµ įØe \"%s\" įįįįį« įįį«"
#: gsearchtool/src/gsearchtool.c:2189
msgid "A_vailable options:"
msgstr "į_įį įįį«įį½:"
#: gsearchtool/src/gsearchtool.c:2218
msgid "Available options"
msgstr "įįį įįį«įį½"
#: gsearchtool/src/gsearchtool.c:2219
msgid "Select a search option from the drop-down list."
msgstr "įįįØį” ᨠįįįįį« įį᫠ᨠįį°-į³į½ įØįįįØįįį įįµį„"
#: gsearchtool/src/gsearchtool.c:2237
msgid "Add search option"
msgstr "įØįįį įįį« įįØįįŖį«"
#: gsearchtool/src/gsearchtool.c:2238
msgid "Click to add the selected available search option."
msgstr "įį«į į įįØįį ᨠį°įįØį įį įįį įįįįį« įįį«"
#: gsearchtool/src/gsearchtool.c:2327
msgid "S_earch results:"
msgstr "įØ_įįįį įį¤į¶į½:"
#: gsearchtool/src/gsearchtool.c:2370
msgid "List View"
msgstr "įįįį įįįįØį»"
#: gsearchtool/src/gsearchtool.c:2422
#: mate-dictionary/libgdict/gdict-source.c:240
msgid "Name"
msgstr "įµį"
#: gsearchtool/src/gsearchtool.c:2471
msgid "Type"
msgstr "į įįįµ"
#: gsearchtool/src/gsearchtool.c:2483
msgid "Date Modified"
msgstr "ᨠį°į»į»įį įµ įį"
#: gsearchtool/src/gsearchtool.c:2779
msgid "_Name contains:"
msgstr "_įµį įįį:"
#: gsearchtool/src/gsearchtool.c:2794 gsearchtool/src/gsearchtool.c:2795
msgid "Enter a filename or partial filename with or without wildcards."
msgstr "ᨠįįį įµį į«įµįį” įįįį į įØįį ᨠįįį įµį ᨠįįįį į«į įį įį„"
#: gsearchtool/src/gsearchtool.c:2795
msgid "Name contains"
msgstr "įµį įįį"
#: gsearchtool/src/gsearchtool.c:2801
msgid "_Look in folder:"
msgstr "į įįį°į įįµį„ _įįįįØį»"
#: gsearchtool/src/gsearchtool.c:2807
msgid "Browse"
msgstr "įįįā¦"
#: gsearchtool/src/gsearchtool.c:2817
msgid "Look in folder"
msgstr "į įįį°į įįµį„ įįįįØį»"
#: gsearchtool/src/gsearchtool.c:2817
msgid "Select the folder or device from which you want to begin the search."
msgstr "įįį°į įįįį į į«į įįįØį” į„įįµį įįįįį įįµįįį įØįįįįį įµ"
#: gsearchtool/src/gsearchtool.c:2835
msgid "Select more _options"
msgstr "į°įØįįŖ _įįį«įį½ įįįØį” "
#: gsearchtool/src/gsearchtool.c:2845
msgid "Select more options"
msgstr "į°įØįįŖ įįį«įį½ įįįØį”"
#: gsearchtool/src/gsearchtool.c:2845
msgid "Click to expand or collapse the list of available options."
msgstr "įį«į į įįØįį įįįį įįį³įįµ įįį įįįįį« įįį«"
#: gsearchtool/src/gsearchtool.c:2876
msgid "Click to display the help manual."
msgstr "įØį„įį³į³ įį½ įįįØįµ įį«į "
#: gsearchtool/src/gsearchtool.c:2890
msgid "Click to close \"Search for Files\"."
msgstr "įį«į įįįįįµ \"ᨠįįį įįįįį\""
#: gsearchtool/src/gsearchtool.c:2928
msgid "Click to perform a search."
msgstr "įį«į įįįįį įįįįøį"
#: gsearchtool/src/gsearchtool.c:2929
msgid "Click to stop a search."
msgstr "įįįįį įįįµįį įį«į"
#: gsearchtool/src/gsearchtool.c:3026
msgid "- the MATE Search Tool"
msgstr "ᨠįįµ įįįįį« įį³įŖį«"
#: gsearchtool/src/gsearchtool.c:3037
#, c-format
msgid "Failed to parse command line arguments: %s\n"
msgstr "ᨠįµį„įį - įįµįį įįįį®į½į įį°įį°į į įį°į»įį: %s\n"
#: gsearchtool/src/gsearchtool-callbacks.c:192
msgid "Could not open help document."
msgstr "ᨠį„įį³į³ į°įį±į įįįįµ į įį°į»įį "
#: gsearchtool/src/gsearchtool-callbacks.c:342
#, c-format
msgid "Are you sure you want to open %d document?"
msgid_plural "Are you sure you want to open %d documents?"
msgstr[0] "į„įįµį į į„įįį„ į°įį±į įįįįµ %d įįįįį?"
msgstr[1] "į„įįµį į į„įįį„ į°įį¶į¹į įįįįµ %d įįįįį?"
#: gsearchtool/src/gsearchtool-callbacks.c:347
#: gsearchtool/src/gsearchtool-callbacks.c:547
#, c-format
msgid "This will open %d separate window."
msgid_plural "This will open %d separate windows."
msgstr[0] "įį
įØį°įį© įįµį®į¶į½ %d įįØįį³į"
msgstr[1] "įį
įØį°įį© įįµį®į¶į½ %d įįØįį³į"
#: gsearchtool/src/gsearchtool-callbacks.c:392
#, c-format
msgid "Could not open document \"%s\"."
msgstr "į°įį±į įįįįµ į įį°į»įį \"%s\"."
#: gsearchtool/src/gsearchtool-callbacks.c:421
#, c-format
msgid "Could not open folder \"%s\"."
msgstr "įįį°į©į įįįįµ į įį°į»įį \"%s\"."
#: gsearchtool/src/gsearchtool-callbacks.c:429
msgid "The caja file manager is not running."
msgstr "ᨠcaja fįįį į įµį°į³į³įŖ į„įØįį° į įį°įį "
#: gsearchtool/src/gsearchtool-callbacks.c:520
msgid "There is no installed viewer capable of displaying the document."
msgstr "į°įį±į įįį³įØįµ ᨠį°įį į įįįįØį» įØįį "
#: gsearchtool/src/gsearchtool-callbacks.c:542
#, c-format
msgid "Are you sure you want to open %d folder?"
msgid_plural "Are you sure you want to open %d folders?"
msgstr[0] "į į„įįį„ įįį°į®į¹į įįįįµ %d įįįįį?"
msgstr[1] "į į„įįį„ įįį°į®į¹į įįįįµ %d įįįįį?"
#: gsearchtool/src/gsearchtool-callbacks.c:724
#, c-format
msgid "Could not move \"%s\" to trash."
msgstr "įįįį³įįµ į įį°į»įį \"%s\" įį° įį»į»"
#: gsearchtool/src/gsearchtool-callbacks.c:755
#, c-format
msgid "Do you want to delete \"%s\" permanently?"
msgstr "į įįįįµ įį„įįµ \"%s\" įįįįį?"
#: gsearchtool/src/gsearchtool-callbacks.c:758
#, c-format
msgid "Trash is unavailable. Could not move \"%s\" to the trash."
msgstr "įį° įį»į» įįįį³įįµ \"%s\" į įį°į»įį "
#: gsearchtool/src/gsearchtool-callbacks.c:802
#, c-format
msgid "Could not delete \"%s\"."
msgstr "įį„įįµ į įį°į»įį \"%s\"."
#: gsearchtool/src/gsearchtool-callbacks.c:914
#, c-format
msgid "Deleting \"%s\" failed: %s."
msgstr "įį„įįµ \"%s\" į įį°į»įį : %s."
#: gsearchtool/src/gsearchtool-callbacks.c:926
#, c-format
msgid "Moving \"%s\" failed: %s."
msgstr "įįįį³įįµ \"%s\" į įį°į»įį : %s."
#: gsearchtool/src/gsearchtool-callbacks.c:1142
#: gsearchtool/src/gsearchtool-callbacks.c:1167
msgid "_Open"
msgstr "_įįįį»"
#: gsearchtool/src/gsearchtool-callbacks.c:1196
#, c-format
msgid "_Open with %s"
msgstr "_įįįį» į %s"
#: gsearchtool/src/gsearchtool-callbacks.c:1217
#, c-format
msgid "Open with %s"
msgstr "įįįį» į %s"
#: gsearchtool/src/gsearchtool-callbacks.c:1246
msgid "Open Wit_h"
msgstr "įįįį» į _"
#: gsearchtool/src/gsearchtool-callbacks.c:1297
msgid "Open Containing _Folder"
msgstr "įØį«įįį _įįį°į įįįį»"
#: gsearchtool/src/gsearchtool-callbacks.c:1307
msgid "Copy _Path"
msgstr ""
#: gsearchtool/src/gsearchtool-callbacks.c:1339
msgid "_Save Results As..."
msgstr "įį¤į±į _įįµįįį« į„įį°..."
#: gsearchtool/src/gsearchtool-callbacks.c:1715
msgid "Save Search Results As..."
msgstr "įį¤į±į įįµįįį« į„įį°..."
#: gsearchtool/src/gsearchtool-callbacks.c:1744
msgid "Could not save document."
msgstr "į°įį±į įįµįįį„ į įį°į»įį "
#: gsearchtool/src/gsearchtool-callbacks.c:1745
msgid "You did not select a document name."
msgstr "ᨠį°įįµ įµį į įįįØį”į "
#: gsearchtool/src/gsearchtool-callbacks.c:1775
#, c-format
msgid "Could not save \"%s\" document to \"%s\"."
msgstr "įįµįįį„ į įį°į»įį \"%s\" į°įį±į įį° \"%s\"."
#: gsearchtool/src/gsearchtool-callbacks.c:1808
#, c-format
msgid "The document \"%s\" already exists. Would you like to replace it?"
msgstr "įį
į°įįµ \"%s\" įį°į į²į įį į į” įįįØį įįįįį?"
#: gsearchtool/src/gsearchtool-callbacks.c:1812
msgid "If you replace an existing file, its contents will be overwritten."
msgstr "įØįį įØįį įįį ᨠįįØį©įµ į įį įØį įįį³ į°į°įᦠįį»įį į³į"
#: gsearchtool/src/gsearchtool-callbacks.c:1827
#: mate-screenshot/src/screenshot-xfer.c:84
msgid "_Replace"
msgstr "_įįįØįŖį«"
#: gsearchtool/src/gsearchtool-callbacks.c:1876
msgid "The document name you selected is a folder."
msgstr "įØįįØį”įµ įØį°įįµ įµį įØįįį°į įį"
#: gsearchtool/src/gsearchtool-callbacks.c:1912
msgid "You may not have write permissions to the document."
msgstr "į°įį± įį įįį»į į į įįįµ įØįįµį"
#: gsearchtool/src/gsearchtool-support.c:427
msgid "today at %-I:%M %p"
msgstr "įᬠį %-I:%M %p"
#: gsearchtool/src/gsearchtool-support.c:429
msgid "yesterday at %-I:%M %p"
msgstr "įµįįįµ į %-I:%M %p"
#: gsearchtool/src/gsearchtool-support.c:431
msgid "%A, %B %-d %Y at %-I:%M:%S %p"
msgstr "%A, %B %-d %Y at %-I:%M:%S %p"
#: gsearchtool/src/gsearchtool-support.c:478
msgid "link (broken)"
msgstr "į įįį (įØį°į°į įØ)"
#: gsearchtool/src/gsearchtool-support.c:482
#, c-format
msgid "link to %s"
msgstr "į įįį įį° %s"
#: gsearchtool/src/gsearchtool-support.c:1099
msgid " (copy)"
msgstr " (į®į)"
#: gsearchtool/src/gsearchtool-support.c:1101
msgid " (another copy)"
msgstr " (įį į®į)"
#: gsearchtool/src/gsearchtool-support.c:1104
#: gsearchtool/src/gsearchtool-support.c:1106
#: gsearchtool/src/gsearchtool-support.c:1108
#: gsearchtool/src/gsearchtool-support.c:1118
msgid "th copy)"
msgstr "į į®į)"
#: gsearchtool/src/gsearchtool-support.c:1111
msgid "st copy)"
msgstr "į į®į)"
#: gsearchtool/src/gsearchtool-support.c:1113
msgid "nd copy)"
msgstr "į į®į)"
#: gsearchtool/src/gsearchtool-support.c:1115
msgid "rd copy)"
msgstr "į į®į)"
#: gsearchtool/src/gsearchtool-support.c:1132
#, c-format
msgid "%s (copy)%s"
msgstr "%s (į®į)%s"
#: gsearchtool/src/gsearchtool-support.c:1134
#, c-format
msgid "%s (another copy)%s"
msgstr "%s (įį į®į)%s"
#: gsearchtool/src/gsearchtool-support.c:1137
#: gsearchtool/src/gsearchtool-support.c:1139
#: gsearchtool/src/gsearchtool-support.c:1141
#: gsearchtool/src/gsearchtool-support.c:1150
#, c-format
msgid "%s (%dth copy)%s"
msgstr "%s (%dį į®į)%s"
#: gsearchtool/src/gsearchtool-support.c:1144
#, c-format
msgid "%s (%dst copy)%s"
msgstr "%s (%dį į®į)%s"
#: gsearchtool/src/gsearchtool-support.c:1146
#, c-format
msgid "%s (%dnd copy)%s"
msgstr "%s (%dį į®į)%s"
#: gsearchtool/src/gsearchtool-support.c:1148
#, c-format
msgid "%s (%drd copy)%s"
msgstr "%s (%dį į®į)%s"
#: gsearchtool/src/gsearchtool-support.c:1195
msgid " (invalid Unicode)"
msgstr " (įį įØįįį Unicode)"
#: gsearchtool/src/gsearchtool-support.c:1284
msgid " ("
msgstr " ("
#: gsearchtool/src/gsearchtool-support.c:1292
#, c-format
msgid " (%d"
msgstr " (%d"
#: logview/data/mate-system-log.desktop.in.in:3
msgid "Log File Viewer"
msgstr "ᨠįįį¢į« įįįįØį»"
#: logview/data/mate-system-log.desktop.in.in:4
msgid "View or monitor system log files"
msgstr "ᨠįµįį įµ įįį¢į« įįįį½ įįįįØį» įįįį įįį£į įŖį«"
#. Translators: Search terms to find this application. Do NOT translate or
#. localize the semicolons! The list MUST also end with a semicolon!
#: logview/data/mate-system-log.desktop.in.in:13
msgid "MATE;monitor;view;system;log;files;logviewer;"
msgstr ""
#: logview/data/org.mate.system-log.gschema.xml.in:5
msgid "Log file to open up on startup"
msgstr "į įįįį įį ᨠįįį¢į« įįį įįįį»"
#: logview/data/org.mate.system-log.gschema.xml.in:6
msgid ""
"Specifies the log file displayed at startup. The default is either "
"/var/adm/messages or /var/log/messages, depending on your operating system."
msgstr ""
"į įįįį įį ᨠįįį¢į« įįį įį³į« įįį°į: įį£į© ᨠį„įįį
į įį± įį /var/adm/messages įįįį "
"/var/log/messages, į„įį° įįµįŖį« įµįį į± į įįįµ įįį«į«į"
#: logview/data/org.mate.system-log.gschema.xml.in:10
msgid "Size of the font used to display the log"
msgstr "įįį¢į« įØįį«į³įØį ᨠįį°į įį į"
#: logview/data/org.mate.system-log.gschema.xml.in:11
msgid ""
"Specifies the size of the fixed-width font used to display the log in the "
"main tree view. The default is taken from the default terminal font size."
msgstr ""
#: logview/data/org.mate.system-log.gschema.xml.in:15
msgid "Height of the main window in pixels"
msgstr "ᨠįįį įįµį®įµ į„įįįįµ į įįįµį"
#: logview/data/org.mate.system-log.gschema.xml.in:16
msgid "Specifies the height of the log viewer main window in pixels."
msgstr "ᨠįįį¢į« įįįįØį» į„įįįįµ į įįį įįµį®įµ į įįįµį įįį°į "
#: logview/data/org.mate.system-log.gschema.xml.in:20
msgid "Width of the main window in pixels"
msgstr "ᨠįįį įįµį®įµ įµįįµ į įįįµį"
#: logview/data/org.mate.system-log.gschema.xml.in:21
msgid "Specifies the width of the log viewer main window in pixels."
msgstr "ᨠįįį¢į« įįįįØį» įµįįµ į įįį įįµį®įµ į įįįµį įįį°į "
#: logview/data/org.mate.system-log.gschema.xml.in:25
msgid "Log files to open up on startup"
msgstr "į įįįį įį ᨠįįį įįį¢į« įįįį»"
#: logview/data/org.mate.system-log.gschema.xml.in:26
msgid ""
"Specifies a list of log files to open up at startup. A default list is "
"created by reading /etc/syslog.conf."
msgstr ""
#: logview/data/org.mate.system-log.gschema.xml.in:30
msgid "List of saved filters"
msgstr "ᨠį°įįᔠᨠįį£įŖį«įį½ įįįį"
#: logview/data/org.mate.system-log.gschema.xml.in:31
msgid "List of saved regexp filters"
msgstr "ᨠį°įįᔠᨠregexp įį£įŖį«įį½ įįįį"
#: logview/data/logview-filter.ui:32 mate-disk-image-mounter/src/main.c:124
#: mate-screenshot/data/mate-screenshot.ui:92
msgid "_Cancel"
msgstr "_įį°įØį£ "
#: logview/data/logview-filter.ui:48
msgid "_Apply"
msgstr "_įįįøįį«"
#: logview/data/logview-filter.ui:91
#: mate-screenshot/data/mate-screenshot.ui:178
msgid "_Name:"
msgstr "_įµį:"
#: logview/data/logview-filter.ui:108
msgid "_Regular Expression:"
msgstr "_įį°į į į įįįį½:"
#: logview/data/logview-filter.ui:180
msgid "Highlight"
msgstr "įįµįįį« "
#: logview/data/logview-filter.ui:205
msgid "Foreground:"
msgstr "įįµ įįįµ:"
#: logview/data/logview-filter.ui:220
msgid "Background:"
msgstr "įį°į„:"
#: logview/data/logview-filter.ui:274
msgid "Hide"
msgstr "įį°į įį« "
#: logview/data/logview-filter.ui:296
msgid "Effect:"
msgstr "į°į½į„į:"
#: logview/src/logview-about.h:41 mate-dictionary/src/gdict-about.c:46
msgid "Sun GNOME Documentation Team <gdocteam@sun.com>"
msgstr ""
#: logview/src/logview-app.c:369
#, c-format
msgid "Impossible to open the file %s"
msgstr "įįįį įįįįµ į įį»įį %s"
#: logview/src/logview-filter-manager.c:93
msgid "Filter name is empty!"
msgstr "įØįį£įŖį«į įµį į£į¶ įį"
#: logview/src/logview-filter-manager.c:106
msgid "Filter name may not contain the ':' character"
msgstr "ᨠįį£įŖį« įµį į įį«į įįįį ':' į£į
įŖ"
#: logview/src/logview-filter-manager.c:129
msgid "Regular expression is empty!"
msgstr "įį°į į įįįį« į£į¶ įį!"
#: logview/src/logview-filter-manager.c:145
#, c-format
msgid "Regular expression is invalid: %s"
msgstr "įį°į į įįįį« įį įØįįį: %s"
#: logview/src/logview-filter-manager.c:207
msgid "Please specify either foreground or background color!"
msgstr "į„į£įįį įįįṠᨠįįµ įįįµ įįįį ᨠįį°į„ įįį!"
#: logview/src/logview-filter-manager.c:282
msgid "Edit filter"
msgstr "įį£įŖį« įįØįį« "
#: logview/src/logview-filter-manager.c:282
msgid "Add new filter"
msgstr "į į²įµ įį£įŖį« įįØįįŖį« "
#: logview/src/logview-filter-manager.c:470
msgid "Filters"
msgstr "įį£įŖį«"
#: logview/src/logview-findbar.c:169
msgid "_Find:"
msgstr "_įįįįį«:"
#: logview/src/logview-findbar.c:184
msgid "Find Previous"
msgstr "į«įįįį įįįįį« "
#: logview/src/logview-findbar.c:187
msgid "Find previous occurrence of the search string"
msgstr "į«įįįį įįį³ įįįįį« į įįįįį« įįØį "
#: logview/src/logview-findbar.c:192
msgid "Find Next"
msgstr "įį„į įįįįį« "
#: logview/src/logview-findbar.c:195
msgid "Find next occurrence of the search string"
msgstr "įØįįį„įįį įįį³ įįįįį« į įįįįį« įįØį "
#: logview/src/logview-findbar.c:203
msgid "Clear the search string"
msgstr "ᨠįįįįį įįØį įį½į"
#: logview/src/logview-log.c:585
msgid "Error while uncompressing the GZipped log. The file might be corrupt."
msgstr "įµį
į°įµ į°įį„įÆį į įį«įį įį į„įį³į ᨠGZipped log. įįį ᨠį°į įįø įįį įį½įį"
#: logview/src/logview-log.c:631
msgid "You don't have enough permissions to read the file."
msgstr "į„įįµį įį
į įįį įįįį į„ į į įįįµ įØįįįµį "
#: logview/src/logview-log.c:646
msgid "The file is not a regular file or is not a text file."
msgstr "įį
įįį įį°į į įįį į įį°įį įįįį ᨠį½įį įįį į įį°įį"
#: logview/src/logview-log.c:739
msgid "This version of System Log does not support GZipped logs."
msgstr "įį
ᨠįµįį įµ į„įµį ᨠGZipped įįį¢į« į įį°įįį"
#: logview/src/logview-loglist.c:103
msgid "%A, %e %b"
msgstr ""
#: logview/src/logview-loglist.c:313
msgid "Loading..."
msgstr "į įį«į įį... "
#: logview/src/logview-main.c:48
#, c-format
msgid ""
"%s - Version %s\n"
"Copyright (C) 2004-2008 Vincent Noel, Cosimo Cecchi and others.\n"
"Copyright (C) 2011-2021 MATE developers.\n"
msgstr ""
#: logview/src/logview-main.c:64
msgid "Show the application's version"
msgstr "ᨠįį°įį įŖį«įį½ į„įµį įį³į«"
#: logview/src/logview-main.c:66
msgid "[LOGFILE...]"
msgstr "[ᨠįįį¢į« įįį...]"
#: logview/src/logview-main.c:70
msgid " - Browse and monitor logs"
msgstr "įįį į„į įįį¢į« įįį£į įŖį«"
#: logview/src/logview-main.c:107
msgid "Log Viewer"
msgstr "įįį¢į« įįįįØį»"
#: logview/src/logview-window.c:41 logview/src/logview-window.c:807
msgid "System Log Viewer"
msgstr "įØį įį įµ įįį¢į« įįįįØį»"
#: logview/src/logview-window.c:227
#, c-format
msgid "last update: %s"
msgstr "įįØįØį» įØį°į»į»įį: %s"
#: logview/src/logview-window.c:231
#, c-format
msgid "%d lines (%s) - %s"
msgstr "%d įįµįį®į½ (%s) - %s"
#: logview/src/logview-window.c:340
msgid "Open Log"
msgstr "įįį¢į« įįįį»"
#: logview/src/logview-window.c:385
#, c-format
msgid "There was an error displaying help: %s"
msgstr "į„įį³į³ į įį³įØįµ įį į„įį³į įµį
į°įµ į°įį„įÆį: %s"
#: logview/src/logview-window.c:517
msgid "Wrapped"
msgstr "į°į į
įįį"
#: logview/src/logview-window.c:532
#: mate-dictionary/libgdict/gdict-defbox.c:1127
#: mate-dictionary/libgdict/gdict-defbox.c:1221
#: mate-dictionary/libgdict/gdict-defbox.c:1255
msgid "Not found"
msgstr "į įį°įįį "
#: logview/src/logview-window.c:809
msgid "About System Log Viewer"
msgstr ""
#: logview/src/logview-window.c:810
msgid ""
"Copyright Ā© 1998-2008 Free Software Foundation, Inc.\n"
"Copyright Ā© 2011-2021 MATE developers"
msgstr ""
#: logview/src/logview-window.c:814
msgid "View, monitor or analyze your system logs in a gradual manner."
msgstr ""
#: logview/src/logview-window.c:1042
#, c-format
msgid "Can't read from \"%s\""
msgstr "įįį į„ į įį°į»įį ᨠ\"%s\""
#: logview/src/logview-window.c:1462
msgid "Version: "
msgstr "į„įµį: "
#: logview/src/logview-window.c:1565
msgid "Could not open the following files:"
msgstr "įØįįØį°įįµį įįįį½ įįįįµ į įį°į»įį: "
#: mate-dictionary/data/default.desktop.in:3
msgid "Default"
msgstr "įį£į "
#: mate-dictionary/data/default.desktop.in:4
msgid "Default Dictionary Server"
msgstr "įį£į įØįįįį įįįµ į°įįØį "
#: mate-dictionary/data/mate-dictionary.desktop.in.in:3
#: mate-dictionary/data/mate-dictionary.appdata.xml.in:7
msgid "MATE Dictionary"
msgstr "ᨠįįµ įįįį įįįµ"
#: mate-dictionary/data/mate-dictionary.desktop.in.in:4
msgid "Check word definitions and spellings in an online dictionary"
msgstr "ᨠįįįµ įµįįį į„į įį°į įįįįįŖį« į įįµįį įįįį įįįµ įį"
#. Translators: Search terms to find this application. Do NOT translate or
#. localize the semicolons! The list MUST also end with a semicolon!
#: mate-dictionary/data/mate-dictionary.desktop.in.in:13
msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;"
msgstr ""
#: mate-dictionary/data/mate-dictionary.appdata.xml.in:8
msgid "A dictionary for MATE Desktop"
msgstr "įįįį įįįµ į įįµ į“įµįį¶į "
#: mate-dictionary/data/mate-dictionary.appdata.xml.in:10
msgid ""
"MATE Dictionary allows you to look up words in on-line dictionaries. It "
"comes preconfigured with a list of Dict servers (RFC 2229), to which you can"
" add your own sources, while you can select specific servers for a specific "
"query."
msgstr ""
#: mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.desktop.in.in:6
msgid "Dictionary Applet Factory"
msgstr "ᨠįįįį įįįµ įįį "
#: mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.desktop.in.in:7
msgid "Factory for the dictionary applet"
msgstr "į įįįį įįįµ į įįįµ įįį¶įŖ"
#: mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.desktop.in.in:10
msgid "Dictionary Look up"
msgstr "įįįį įįįµ įį įįįįØį» "
#: mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.desktop.in.in:11
msgid "Look up words in a dictionary"
msgstr "įįį±į įįįį įįįµ įį įįįįØį» "
#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:6
msgid "The default database to use"
msgstr "įØįį įįįµ įį£į įØį³į³į¤į "
#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:7
msgid ""
"The name of the default individual database or meta-database to use on a "
"dictionary source. An exclamation mark (\"!\") means that all the databases "
"present in a dictionary source should be searched"
msgstr ""
#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:11
msgid "The default search strategy to use"
msgstr "įØįį įįįµ įį£į įØįįįįį« įį“ "
#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:12
msgid ""
"The name of the default search strategy to use on a dictionary source, if "
"available. The default strategy is 'exact', that is match exact words."
msgstr ""
#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:16
msgid "The font to be used when printing"
msgstr "į įį«įµį įį įØįį įįįµ įį°į "
#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:17
msgid "The font to be used when printing a definition."
msgstr "įįŗ į įį«įµį įį įØįį įįįµ įį°į"
#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:21
msgid "The name of the dictionary source used"
msgstr "įØį°į įįįµ įØįįįį įįįµ įįį įµį "
#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:22
msgid ""
"The name of the dictionary source used to retrieve the definitions of words."
msgstr "įØįįįį įįį± įįį įµį įØįįį±į įįŗ įØįįįįį įµ "
#: mate-dictionary/data/thai.desktop.in:3
msgid "Thai"
msgstr "Thai"
#: mate-dictionary/data/thai.desktop.in:4
msgid "Longdo Thai-English Dictionaries"
msgstr ""
#: mate-dictionary/libgdict/gdict-client-context.c:281
msgid "Client Name"
msgstr "įØį°įį į įµį "
#: mate-dictionary/libgdict/gdict-client-context.c:282
msgid "The name of the client of the context object"
msgstr "ᨠį°įį įį įµį į į„įį įįį³"
#: mate-dictionary/libgdict/gdict-client-context.c:295
msgid "Hostname"
msgstr "įØįį£į„ įµį"
#: mate-dictionary/libgdict/gdict-client-context.c:296
msgid "The hostname of the dictionary server to connect to"
msgstr "ᨠįį£į” įµį į įįįį įįį± į°įįØį įØįįįįį įį°"
#: mate-dictionary/libgdict/gdict-client-context.c:309
msgid "Port"
msgstr "Port"
#: mate-dictionary/libgdict/gdict-client-context.c:310
msgid "The port of the dictionary server to connect to"
msgstr ""
#: mate-dictionary/libgdict/gdict-client-context.c:325
msgid "Status"
msgstr "įįį³į "
#: mate-dictionary/libgdict/gdict-client-context.c:326
msgid "The status code as returned by the dictionary server"
msgstr "ᨠį°įįį°į ᨠįįį³ į®įµ į įįįį įįįµ į°įįØį"
#: mate-dictionary/libgdict/gdict-client-context.c:764
#, c-format
msgid "No connection to the dictionary server at '%s:%d'"
msgstr "įįį įįįįįµ įØįį įį° įįįį įįį± į°įįØį į '%s:%d'"
#: mate-dictionary/libgdict/gdict-client-context.c:1044
#, c-format
msgid "Lookup failed for hostname '%s': no suitable resources found"
msgstr "į įį£į„ įµį įįįį į įį°į»įį '%s': įįį į°įµįį įįį į įį°įįį"
#: mate-dictionary/libgdict/gdict-client-context.c:1075
#, c-format
msgid "Lookup failed for host '%s': %s"
msgstr "įįįįį« į įį°į³į«į į įį£į” '%s': %s"
#: mate-dictionary/libgdict/gdict-client-context.c:1109
#, c-format
msgid "Lookup failed for host '%s': host not found"
msgstr "įįįįį« į įį°į³į«į į įį£į” '%s': įį£į” į įį°įįį"
#: mate-dictionary/libgdict/gdict-client-context.c:1161
#, c-format
msgid ""
"Unable to connect to the dictionary server at '%s:%d'. The server replied "
"with code %d (server down)"
msgstr ""
"įį° įįįį įįįµį°įįØį įįįįįµ į įį°į»įį į '%s:%d'. į°įįØį© įįį·į į į®įµ %d (į°įįØį© į įį°į«į)"
#: mate-dictionary/libgdict/gdict-client-context.c:1180
#, c-format
msgid ""
"Unable to parse the dictionary server reply\n"
": '%s'"
msgstr ""
"ᨠįįįį įįį±į įįį½ įį°įį°į į įį°į»įį\n"
": '%s'"
#: mate-dictionary/libgdict/gdict-client-context.c:1209
#, c-format
msgid "No definitions found for '%s'"
msgstr "įįŗ į įį°įįį į '%s'"
#: mate-dictionary/libgdict/gdict-client-context.c:1224
#, c-format
msgid "Invalid database '%s'"
msgstr "įį įØįįį į³į³į¤į '%s'"
#: mate-dictionary/libgdict/gdict-client-context.c:1239
#, c-format
msgid "Invalid strategy '%s'"
msgstr "įį įØįįį įį“ '%s'"
#: mate-dictionary/libgdict/gdict-client-context.c:1254
#, c-format
msgid "Bad command '%s'"
msgstr "įį„į įµį„įį '%s'"
#: mate-dictionary/libgdict/gdict-client-context.c:1269
#, c-format
msgid "Bad parameters for command '%s'"
msgstr "įį„į į°įį„ į įµį„įį '%s'"
#: mate-dictionary/libgdict/gdict-client-context.c:1284
#, c-format
msgid "No databases found on dictionary server at '%s'"
msgstr "įįį į³į³į¤į į įį°įįį į įįįį įįį± į°įįØį į '%s'"
#: mate-dictionary/libgdict/gdict-client-context.c:1299
#, c-format
msgid "No strategies found on dictionary server at '%s'"
msgstr "įįį į„į
įµ į įį°įįį į įįįį įįįµ į°įįØį įį į '%s'"
#: mate-dictionary/libgdict/gdict-client-context.c:1724
#, c-format
msgid "Connection failed to the dictionary server at %s:%d"
msgstr "įįįįį± į įį°į³į«į įį° įįįį įįįµ į°įįØį į %s:%d"
#: mate-dictionary/libgdict/gdict-client-context.c:1763
#, c-format
msgid ""
"Error while reading reply from server:\n"
"%s"
msgstr ""
"ᨠį°įįØį©į įįįµ į įįį į„ įįį„įį³į įµį
į°įµ į°įį„įÆį:\n"
"%s"
#: mate-dictionary/libgdict/gdict-client-context.c:1836
#, c-format
msgid "Connection timeout for the dictionary server at '%s:%d'"
msgstr "įįįįį± įįį į įįį įį° įįįį įįįµ į°įįØį į %s:%d"
#: mate-dictionary/libgdict/gdict-client-context.c:1870
msgid "No hostname defined for the dictionary server"
msgstr "ᨠįį£į„ įµį į įį°įįįøį į įįįį įįį±"
#: mate-dictionary/libgdict/gdict-client-context.c:1905
#: mate-dictionary/libgdict/gdict-client-context.c:1920
msgid "Unable to create socket"
msgstr "į°į°įŖ įįį į į įį°į»įį "
#: mate-dictionary/libgdict/gdict-client-context.c:1946
#, c-format
msgid "Unable to set the channel as non-blocking: %s"
msgstr "į£į¢į« įį°įį³įµ į įį°į»įį į„įį° įįį įØįįįØįįį: %s "
#: mate-dictionary/libgdict/gdict-client-context.c:1961
#, c-format
msgid "Unable to connect to the dictionary server at '%s:%d'"
msgstr "įį° įįįį įįįµ į°įįØį įįįįįµ į įį°į»įį į '%s:%d'"
#: mate-dictionary/libgdict/gdict-context.c:221
msgid "Local Only"
msgstr "ᨠį į«į£į¢ į„į»"
#: mate-dictionary/libgdict/gdict-context.c:222
msgid "Whether the context uses only local dictionaries or not"
msgstr "įįį³į įØįį įįį ᨠį į«į£į¢ įįįį įįįµ įį įįįį įį "
#: mate-dictionary/libgdict/gdict-database-chooser.c:375
msgid "Reload the list of available databases"
msgstr "į„įį°įį įį«į į«įįµį įØį³į³į¤į įįįį®į½ "
#: mate-dictionary/libgdict/gdict-database-chooser.c:387
msgid "Clear the list of available databases"
msgstr "įįį ᨠį³į³į¤į įįįį įį½į"
#: mate-dictionary/libgdict/gdict-database-chooser.c:835
#: mate-dictionary/libgdict/gdict-speller.c:772
#: mate-dictionary/libgdict/gdict-strategy-chooser.c:783
msgid "Error while matching"
msgstr "įµį
į°įµ į°įį„įÆį į įįįįµ įį į„įį³į"
#: mate-dictionary/libgdict/gdict-defbox.c:1316
msgid "F_ind:"
msgstr "į_įįįį« :"
#: mate-dictionary/libgdict/gdict-defbox.c:1329
msgid "_Previous"
msgstr "_įį°į į«įį"
#: mate-dictionary/libgdict/gdict-defbox.c:1337
msgid "_Next"
msgstr "_įØįįį„įį"
#: mate-dictionary/libgdict/gdict-defbox.c:2485
msgid "Error while looking up definition"
msgstr "įįŗįį į įįįįØįµ įį į„įį³į įµį
į°įµ į°įį„įÆį "
#: mate-dictionary/libgdict/gdict-defbox.c:2527
#: mate-dictionary/libgdict/gdict-speller.c:730
msgid "Another search is in progress"
msgstr "įį įįį į įį°įµ įį įį "
#: mate-dictionary/libgdict/gdict-defbox.c:2528
#: mate-dictionary/libgdict/gdict-speller.c:731
msgid "Please wait until the current search ends."
msgstr "į„į£įįį įįį© įį
įįį į„įµįØįįØįįµ įµįØįµ "
#: mate-dictionary/libgdict/gdict-defbox.c:2568
msgid "Error while retrieving the definition"
msgstr "įµį
į°įµ į°įį„įÆį įįŗįį į įįįį įį į„įį³į "
#: mate-dictionary/libgdict/gdict-source.c:226
msgid "Filename"
msgstr "įØįįį įµį "
#: mate-dictionary/libgdict/gdict-source.c:227
msgid "The filename used by this dictionary source"
msgstr "į įį
į³įį¬įį¶įŖ įįį įØį°į įįįµ įØįįį įµį"
#: mate-dictionary/libgdict/gdict-source.c:241
msgid "The display name of this dictionary source"
msgstr "įØįį³įØį įµį į įįįį įįįµ įįį"
#: mate-dictionary/libgdict/gdict-source.c:254
msgid "Description"
msgstr "įįįį«"
#: mate-dictionary/libgdict/gdict-source.c:255
msgid "The description of this dictionary source"
msgstr "įįįį« įįį
į³įį¬įį¶įŖ įįį"
#: mate-dictionary/libgdict/gdict-source.c:268
#: mate-dictionary/libgdict/gdict-speller.c:374
msgid "Database"
msgstr "į³į³į¤į"
#: mate-dictionary/libgdict/gdict-source.c:269
msgid "The default database of this dictionary source"
msgstr "įį£į ᨠį³į³į¤į į įįįį įįįµ įįį"
#: mate-dictionary/libgdict/gdict-source.c:282
#: mate-dictionary/libgdict/gdict-speller.c:381
msgid "Strategy"
msgstr "įį“"
#: mate-dictionary/libgdict/gdict-source.c:283
msgid "The default strategy of this dictionary source"
msgstr "įį£į į„į
įµ į įįįį įįįµ įįį"
#: mate-dictionary/libgdict/gdict-source.c:296
msgid "Transport"
msgstr "įįįᣠ"
#: mate-dictionary/libgdict/gdict-source.c:297
msgid "The transport mechanism used by this dictionary source"
msgstr "ᨠįįįį įįįµ įįį įØįį įįį ᨠįįįᣠįį“"
#: mate-dictionary/libgdict/gdict-source.c:311
#: mate-dictionary/libgdict/gdict-speller.c:367
msgid "Context"
msgstr "į įį£į„ "
#: mate-dictionary/libgdict/gdict-source.c:312
msgid "The GdictContext bound to this source"
msgstr ""
#: mate-dictionary/libgdict/gdict-source.c:404
#, c-format
msgid "Invalid transport type '%d'"
msgstr "įį įØįįį įØįįįᣠį įįįµ '%d'"
#: mate-dictionary/libgdict/gdict-source.c:432
#, c-format
msgid "No '%s' group found inside the dictionary source definition"
msgstr "į į '%s' į”įµį į°įįį·į į įįįį įįįµ įįį įµįįį įįµį„"
#: mate-dictionary/libgdict/gdict-source.c:448
#: mate-dictionary/libgdict/gdict-source.c:472
#: mate-dictionary/libgdict/gdict-source.c:496
#: mate-dictionary/libgdict/gdict-source.c:521
#, c-format
msgid "Unable to get the '%s' key inside the dictionary source definition: %s"
msgstr ""
#: mate-dictionary/libgdict/gdict-source.c:546
#, c-format
msgid ""
"Unable to get the '%s' key inside the dictionary source definition file: %s"
msgstr ""
#: mate-dictionary/libgdict/gdict-source.c:732
msgid "Dictionary source does not have name"
msgstr "įØįįįį įįį± įįį įµį įØįįį "
#: mate-dictionary/libgdict/gdict-source.c:741
#, c-format
msgid "Dictionary source '%s' has invalid transport '%s'"
msgstr ""
#: mate-dictionary/libgdict/gdict-source-chooser.c:283
msgid "Reload the list of available sources"
msgstr "į„įį°įį įį«į į«įįµį įįį įįįį®į½"
#: mate-dictionary/libgdict/gdict-source-loader.c:160
msgid "Paths"
msgstr "įįįį¶į½ "
#: mate-dictionary/libgdict/gdict-source-loader.c:161
msgid "Search paths used by this object"
msgstr "įį
į į„į įįįįįį« įØį°į įįįµ įįįįµ "
#: mate-dictionary/libgdict/gdict-source-loader.c:173
msgid "Sources"
msgstr "įįį®į½ "
#: mate-dictionary/libgdict/gdict-source-loader.c:174
msgid "Dictionary sources found"
msgstr "įØįįįį įįį± įįį į°įįį·į "
#: mate-dictionary/libgdict/gdict-speller.c:346
msgid "Clear the list of similar words"
msgstr "įØį°įį³į³į įįįµ įįįį įį½į "
#: mate-dictionary/libgdict/gdict-speller.c:368
msgid "The GdictContext object used to get the word definition"
msgstr ""
#: mate-dictionary/libgdict/gdict-speller.c:375
msgid "The database used to query the GdictContext"
msgstr ""
#: mate-dictionary/libgdict/gdict-speller.c:382
msgid "The strategy used to query the GdictContext"
msgstr ""
#: mate-dictionary/libgdict/gdict-strategy-chooser.c:358
msgid "Reload the list of available strategies"
msgstr "į„įį°įį įį«į į«įįµį įįį įįį³įį½"
#: mate-dictionary/libgdict/gdict-strategy-chooser.c:370
msgid "Clear the list of available strategies"
msgstr "įįį į«įįµį įįį³įį½ įįįį įį½į "
#: mate-dictionary/libgdict/gdict-utils.c:97
msgid "GDict debugging flags to set"
msgstr ""
#: mate-dictionary/libgdict/gdict-utils.c:97
#: mate-dictionary/libgdict/gdict-utils.c:99
msgid "FLAGS"
msgstr "įįįįµ"
#: mate-dictionary/libgdict/gdict-utils.c:99
msgid "GDict debugging flags to unset"
msgstr ""
#: mate-dictionary/libgdict/gdict-utils.c:153
msgid "GDict Options"
msgstr ""
#: mate-dictionary/libgdict/gdict-utils.c:154
msgid "Show GDict Options"
msgstr ""
#: mate-dictionary/src/gdict-about.c:54
msgid "Look up words or terms in a dictionary source."
msgstr ""
#: mate-dictionary/src/gdict-about.c:82 mate-dictionary/src/gdict-app.c:360
#: mate-dictionary/src/gdict-window.c:578
#: mate-dictionary/src/gdict-window.c:1954
msgid "Dictionary"
msgstr "įįįį įįįµ"
#: mate-dictionary/src/gdict-about.c:84
msgid "About Dictionary"
msgstr ""
#: mate-dictionary/src/gdict-about.c:85
msgid ""
"Copyright Ā© 2005-2006 Emmanuele Bassi\n"
"Copyright Ā© 2011-2021 MATE developers"
msgstr ""
#. Translators: the first is the word found, the second is the
#. * database name and the last is the definition's text; please
#. * keep the new lines.
#: mate-dictionary/src/gdict-app.c:203
#, c-format
msgid ""
"Definition for '%s'\n"
" From '%s':\n"
"\n"
"%s\n"
msgstr ""
"įįŗ į '%s'\n"
" ᨠ'%s':\n"
"\n"
"%s\n"
#: mate-dictionary/src/gdict-app.c:217
#, c-format
msgid "Error: %s\n"
msgstr "įµį
į°įµ: %s\n"
#: mate-dictionary/src/gdict-app.c:243
msgid "See mate-dictionary --help for usage\n"
msgstr ""
#: mate-dictionary/src/gdict-app.c:256
msgid "Unable to find a suitable dictionary source"
msgstr "į°įµįį įØįįįį įįįµ įįį įįįįµ į įį°į»įį "
#: mate-dictionary/src/gdict-app.c:290
#, c-format
msgid ""
"Error while looking up the definition of \"%s\":\n"
"%s"
msgstr ""
"įįŗįį į įįįįØįµ įį į„įį³į įµį
į°įµ į°įį„įÆį į \"%s\":\n"
"%s"
#: mate-dictionary/src/gdict-app.c:319 mate-dictionary/src/gdict-app.c:329
msgid "Words to look up"
msgstr "įįŗįį įØįįįįįµ įį "
#: mate-dictionary/src/gdict-app.c:319 mate-dictionary/src/gdict-app.c:321
#: mate-dictionary/src/gdict-app.c:329
msgid "word"
msgstr "įįįµ "
#: mate-dictionary/src/gdict-app.c:321
msgid "Words to match"
msgstr "įØįįįį± įįį¶į½ "
#: mate-dictionary/src/gdict-app.c:323
msgid "Dictionary source to use"
msgstr "įØįį įįįµ įØįįįį įįįµ įįį "
#: mate-dictionary/src/gdict-app.c:323
msgid "source"
msgstr "įįį"
#: mate-dictionary/src/gdict-app.c:325
msgid "Print result to the console"
msgstr ""
#: mate-dictionary/src/gdict-app.c:327
msgid "Database to use"
msgstr "įØįį įįįµ įØį³į³į¤į "
#: mate-dictionary/src/gdict-app.c:327
msgid "db"
msgstr "į³į¤ "
#: mate-dictionary/src/gdict-app.c:339
msgid " - Look up words in dictionaries"
msgstr "įįį¶į½į į įįįį įįįµ įį -įįįįØį» "
#: mate-dictionary/src/gdict-applet.c:207
#: mate-dictionary/src/gdict-window.c:937
msgid "Save a Copy"
msgstr "į®į įįµįįį« "
#: mate-dictionary/src/gdict-applet.c:217
#: mate-dictionary/src/gdict-window.c:947
msgid "Untitled document"
msgstr "į«įį°į°įØį į°įįµ"
#: mate-dictionary/src/gdict-applet.c:238
#: mate-dictionary/src/gdict-window.c:968
#, c-format
msgid "Error while writing to '%s'"
msgstr "įµį
į°į° į°įį„įÆį į įį»į įį į„įį³į įį° '%s'"
#: mate-dictionary/src/gdict-applet.c:380
msgid "Clear the definitions found"
msgstr "įØį°įįįį įįŗ įį½į "
#: mate-dictionary/src/gdict-applet.c:382
msgid "Clear definition"
msgstr "įįŗįį įį½į "
#: mate-dictionary/src/gdict-applet.c:383
msgid "Clear the text of the definition"
msgstr "įØįįŗįį į½įį įį½į "
#: mate-dictionary/src/gdict-applet.c:395
msgid "Print the definitions found"
msgstr "įØį°įįįį įįŗ įį°įį« "
#: mate-dictionary/src/gdict-applet.c:397
msgid "Print definition"
msgstr "įįŗįį įį°įį« "
#: mate-dictionary/src/gdict-applet.c:398
msgid "Print the text of the definition"
msgstr "įØįįŗįį į½įį įį°įį« "
#: mate-dictionary/src/gdict-applet.c:410
msgid "Save the definitions found"
msgstr "įØį°įįįį įįŗ įįµįįį« "
#: mate-dictionary/src/gdict-applet.c:412
msgid "Save definition"
msgstr "įįŗįį įįµįįį« "
#: mate-dictionary/src/gdict-applet.c:413
msgid "Save the text of the definition to a file"
msgstr "įØį½įįį įįŗ įį° įįį įįµįįį« "
#: mate-dictionary/src/gdict-applet.c:560
msgid "Click to view the dictionary window"
msgstr "įØįįįį įįį±į įįµį®įµ įįįįįØįµ įį«į"
#: mate-dictionary/src/gdict-applet.c:562
msgid "Toggle dictionary window"
msgstr "įØįįįį įįį±į įįµį®įµ įįį«įØįŖį« "
#: mate-dictionary/src/gdict-applet.c:563
msgid "Show or hide the definition window"
msgstr "įØįįŗįį įįµį®įµ įį³į« įįįį įį°į įį«"
#: mate-dictionary/src/gdict-applet.c:625
msgid "Type the word you want to look up"
msgstr "įįØįµ įØįįįįįµį įį įį»į "
#: mate-dictionary/src/gdict-applet.c:627
msgid "Dictionary entry"
msgstr "įØįįįį įįįµ įįµįį¢į« "
#: mate-dictionary/src/gdict-applet.c:628
msgid "Look up words in dictionaries"
msgstr "įįį¶į¹į į įįįį įįį± įį įįįįØį» "
#: mate-dictionary/src/gdict-applet.c:766
#: mate-dictionary/src/gdict-window.c:1096
msgid "Dictionary Preferences"
msgstr "įØįįįį įįįµ įįį«įį½"
#: mate-dictionary/src/gdict-applet.c:790
#: mate-dictionary/src/gdict-pref-dialog.c:494
#: mate-dictionary/src/gdict-source-dialog.c:476
#: mate-dictionary/src/gdict-window.c:1297
msgid "There was an error while displaying help"
msgstr "įµį
į°įµ į°įį„įÆį į„įį³į³ į įį³įØįµ įį į„įį³į "
#: mate-dictionary/src/gdict-applet.c:929
#: mate-dictionary/src/gdict-window.c:493
#, c-format
msgid "No dictionary source available with name '%s'"
msgstr "į įį
įµį įįį įØįįįį įįįµ įįį į įį°įįį '%s'"
#: mate-dictionary/src/gdict-applet.c:933
#: mate-dictionary/src/gdict-window.c:497
msgid "Unable to find dictionary source"
msgstr "įØįįįį įįį±į įįį įįįįµ į įį°į»įį "
#: mate-dictionary/src/gdict-applet.c:949
#: mate-dictionary/src/gdict-window.c:513
#, c-format
msgid "No context available for source '%s'"
msgstr "įįįį© įįį į įį£į„ į įį°įįį '%s'"
#: mate-dictionary/src/gdict-applet.c:953
#: mate-dictionary/src/gdict-window.c:517
msgid "Unable to create a context"
msgstr "į įį£į„ įįį į į įį°į»įį "
#: mate-dictionary/src/gdict-applet.c:1219
msgid "_Look Up Selected Text"
msgstr "įØį°įįØį įį į½įį _įįįįØį» "
#: mate-dictionary/src/gdict-applet.c:1222
msgid "Cl_ear"
msgstr "įį½_į "
#: mate-dictionary/src/gdict-applet.c:1225
msgid "_Print"
msgstr "_įį°įį« "
#: mate-dictionary/src/gdict-applet.c:1228
#: mate-screenshot/data/mate-screenshot.ui:109
msgid "_Save"
msgstr "_įįµįįį«"
#: mate-dictionary/src/gdict-applet.c:1231
msgid "Preferences"
msgstr "įįį«įį½"
#: mate-dictionary/src/gdict-applet.c:1237
msgid "_About"
msgstr "_įµį"
#: mate-dictionary/src/gdict-common.c:77
#, c-format
msgid "Unable to rename file '%s' to '%s': %s"
msgstr "įįįį į„įį°įį įį°įØį į įį°į»įį '%s' to '%s': %s"
#: mate-dictionary/src/gdict-common.c:101
#: mate-dictionary/src/gdict-common.c:124
#, c-format
msgid "Unable to create the data directory '%s': %s"
msgstr "įØį³į³ į³įį¬įį¶įŖ įįį į į įį°į»įį '%s': %s"
#: mate-dictionary/src/gdict-pref-dialog.c:236
#: mate-dictionary/src/gdict-pref-dialog.c:425
msgid "Edit Dictionary Source"
msgstr "įØįįįį įįįµ įįį įįØįį« "
#: mate-dictionary/src/gdict-pref-dialog.c:300
msgid "Add Dictionary Source"
msgstr "įØįįįį įįįµ įįį įįØįįŖį« "
#: mate-dictionary/src/gdict-pref-dialog.c:345
#, c-format
msgid "Remove \"%s\"?"
msgstr "įįµįįį \"%s\"?"
#: mate-dictionary/src/gdict-pref-dialog.c:347
msgid "This will permanently remove the dictionary source from the list."
msgstr "įį
įØįįįį įįį±į įįį įØįįįį įįµį„ į įįįįµ į«į įįį "
#: mate-dictionary/src/gdict-pref-dialog.c:377
#, c-format
msgid "Unable to remove source '%s'"
msgstr "įįį©į įįµįįįµ į įį°į»įį '%s'"
#: mate-dictionary/src/gdict-pref-dialog.c:711
msgid "Add a new dictionary source"
msgstr "į į²įµ įØįįįį įįįµ įįį įįØįįŖį«"
#: mate-dictionary/src/gdict-pref-dialog.c:717
msgid "Remove the currently selected dictionary source"
msgstr "įØį°įįØį įį įØįįįį įįįµ įįį įįµįįį "
#: mate-dictionary/src/gdict-pref-dialog.c:723
msgid "Edit the currently selected dictionary source"
msgstr "į įį įØį°įįØį įį įØįįįį įįįµ įįį įįØįį«"
#: mate-dictionary/src/gdict-pref-dialog.c:731
msgid "Set the font used for printing the definitions"
msgstr "įµįįįį įįį°į įØįį įįį įµį įį°į įį°įį"
#: mate-dictionary/src/gdict-print.c:238 mate-dictionary/src/gdict-print.c:302
#, c-format
msgid "Unable to display the preview: %s"
msgstr "į
įµį į„įį³ įį³į«įµ į įį°į»įį : %s"
#: mate-dictionary/src/gdict-source-dialog.c:339
#: mate-dictionary/src/gdict-source-dialog.c:431
msgid "Unable to create a source file"
msgstr "įØįįį©į įįį įįį į į įį°į»įį "
#: mate-dictionary/src/gdict-source-dialog.c:357
#: mate-dictionary/src/gdict-source-dialog.c:449
msgid "Unable to save source file"
msgstr "įØįįį©į įįį įįµįįį„ į įį°į»įį "
#: mate-dictionary/src/gdict-window.c:288
#, c-format
msgid "Searching for '%s'..."
msgstr "į įįįį įį ᨠ'%s'..."
#: mate-dictionary/src/gdict-window.c:320
#: mate-dictionary/src/gdict-window.c:377
msgid "No definitions found"
msgstr "įįį įįŗ į įį°įįį "
#: mate-dictionary/src/gdict-window.c:322
#, c-format
msgid "A definition found"
msgid_plural "%d definitions found"
msgstr[0] ""
msgstr[1] ""
#: mate-dictionary/src/gdict-window.c:576
#, c-format
msgid "%s - Dictionary"
msgstr "%s - įįįį įįįµ"
#: mate-dictionary/src/gdict-window.c:1466
#, c-format
msgid "Dictionary source `%s' selected"
msgstr "įØįįįį įįį± įįį `%s' įØį°įįØį į"
#: mate-dictionary/src/gdict-window.c:1487
#, c-format
msgid "Strategy `%s' selected"
msgstr "įØį°įįØį”įµ `%s' įį“įį½ "
#: mate-dictionary/src/gdict-window.c:1507
#, c-format
msgid "Database `%s' selected"
msgstr "į³į³į¤į `%s' įØį°įįØį į "
#: mate-dictionary/src/gdict-window.c:1527
#, c-format
msgid "Word `%s' selected"
msgstr "įįįµ `%s' įØį°įįØį į "
#: mate-dictionary/src/gdict-window.c:1552
msgid "Double-click on the word to look up"
msgstr "įįįįįØįµ įįį±į įįįµ-įį įį«į "
#: mate-dictionary/src/gdict-window.c:1558
msgid "Double-click on the matching strategy to use"
msgstr "į°įį³į³į įį“įį½į įįį įį įįįµ-įį įį«į"
#: mate-dictionary/src/gdict-window.c:1563
msgid "Double-click on the source to use"
msgstr "įįį©į įįį įį įįį±į įįįµ-įį įį«į "
#: mate-dictionary/src/gdict-window.c:1572
msgid "Double-click on the database to use"
msgstr "į³į³į¤įį įįį įį įįį±į įįįµ-įį įį«į "
#: mate-dictionary/src/gdict-window.c:1760
msgid "Look _up:"
msgstr "įįį _įØį»:"
#: mate-dictionary/src/gdict-window.c:1835
msgid "Similar words"
msgstr "į°įį³į³į įįį¶į½ "
#: mate-dictionary/src/gdict-window.c:1848
msgid "Available dictionaries"
msgstr "įįį įįįį įįįµ "
#: mate-dictionary/src/gdict-window.c:1866
msgid "Available strategies"
msgstr "įįį įį“įį½ "
#: mate-dictionary/src/gdict-window.c:1882
msgid "Dictionary sources"
msgstr "įØįįįį įįįµ įįį®į½ "
#: mate-dictionary/data/mate-dictionary-preferences.ui:27
msgid "_Select a dictionary source for looking up words:"
msgstr ""
#: mate-dictionary/data/mate-dictionary-preferences.ui:132
#: mate-dictionary/data/mate-dictionary-source.ui:148
msgid "Source"
msgstr "įįį©"
#: mate-dictionary/data/mate-dictionary-preferences.ui:162
msgid "_Print font:"
msgstr "įį°į _įį°įį«:"
#: mate-dictionary/data/mate-dictionary-preferences.ui:216
msgid "Print"
msgstr "įį°įį«"
#: mate-dictionary/data/mate-dictionary-source.ui:38
msgid "_Description:"
msgstr "_įįįį«:"
#: mate-dictionary/data/mate-dictionary-source.ui:53
msgid "Source Name"
msgstr "įØįįį© įµį "
#: mate-dictionary/data/mate-dictionary-source.ui:65
msgid "_Transport:"
msgstr "_įįįį£:"
#: mate-dictionary/data/mate-dictionary-source.ui:96
msgid "H_ostname:"
msgstr "įØ_įį£į„ įµį:"
#: mate-dictionary/data/mate-dictionary-source.ui:175
msgid "Dictionaries"
msgstr "įįįį įįįµ "
#: mate-dictionary/data/mate-dictionary-source.ui:200
msgid "Strategies"
msgstr "įį“įį½ "
#: mate-disk-image-mounter/data/mate-disk-image-mounter.desktop.in:3
#: mate-disk-image-mounter/src/main.c:62
msgid "MATE Disk Image Mounter"
msgstr ""
#: mate-disk-image-mounter/data/mate-disk-image-mounter.desktop.in:4
msgid "Attach and mount one or more disk image files"
msgstr ""
#: mate-disk-image-mounter/src/main.c:60
msgid "An error occurred"
msgstr "įµį
į°įµ į°įį„įÆį"
#: mate-disk-image-mounter/src/main.c:81
msgid "Allow writing to the image"
msgstr ""
#: mate-disk-image-mounter/src/main.c:101
msgid "All Files"
msgstr "įįįį įįįį½"
#: mate-disk-image-mounter/src/main.c:105
msgid "Disk Images (*.img, *.iso)"
msgstr ""
#: mate-disk-image-mounter/src/main.c:121
msgid "Select Disk Image(s) to Mount"
msgstr ""
#: mate-disk-image-mounter/src/main.c:125
msgid "_Mount"
msgstr "_įį«į"
#: mate-disk-image-mounter/src/main.c:131
msgid "Set up _read-only mount"
msgstr ""
#: mate-disk-image-mounter/src/main.c:132
msgid ""
"If checked, the mount will be read-only. This is useful if you don't want "
"the underlying disk image to be modified"
msgstr ""
#: mate-disk-image-mounter/src/main.c:178
#, c-format
msgid "Error connecting to udisks daemon: %s (%s, %d)"
msgstr ""
#: mate-disk-image-mounter/src/main.c:186
msgid "Attach and mount one or more disk image files."
msgstr ""
#: mate-disk-image-mounter/src/main.c:236
#, c-format
msgid "Cannot open `%s' - maybe the volume isn't mounted?"
msgstr ""
#: mate-disk-image-mounter/src/main.c:243
#, c-format
msgid "Error opening `%s': %m"
msgstr ""
#: mate-disk-image-mounter/src/main.c:264
#, c-format
msgid "Error attaching disk image: %s (%s, %d)"
msgstr ""
#: mate-screenshot/data/mate-screenshot.appdata.xml.in:7
msgid "MATE Screenshot"
msgstr ""
#: mate-screenshot/data/mate-screenshot.appdata.xml.in:8
msgid "A screenshot utility for MATE Desktop"
msgstr ""
#: mate-screenshot/data/mate-screenshot.appdata.xml.in:10
msgid ""
"MATE Screenshot is a simple utility that lets you capture screenshots of "
"your desktop or of application windows. You can select to copy them to the "
"system clipboard or save them in Portable Network Graphics (.png) image "
"format."
msgstr ""
#: mate-screenshot/data/mate-screenshot.desktop.in:3
#: mate-screenshot/src/mate-screenshot.c:519
#: mate-screenshot/src/mate-screenshot.c:527
msgid "Take Screenshot"
msgstr "įįįįØį»įį įį¶ įįį» "
#: mate-screenshot/data/mate-screenshot.desktop.in:4
msgid "Save images of your desktop or individual windows"
msgstr ""
#. Translators: Search terms to find this application. Do NOT translate or
#. localize the semicolons! The list MUST also end with a semicolon!
#: mate-screenshot/data/mate-screenshot.desktop.in:13
msgid "MATE;screenshot;snapshot;desktop;window;image;"
msgstr ""
#: mate-screenshot/data/mate-screenshot.ui:24
msgid "Save Screenshot"
msgstr "įØįįįįØį»įį įį¶ įįµįįį« "
#: mate-screenshot/data/mate-screenshot.ui:58
msgid "_New"
msgstr "_į į²įµ "
#: mate-screenshot/data/mate-screenshot.ui:74
msgid "C_opy to Clipboard"
msgstr "į®_į įįµįØįį« įį° įį«į į°įį³į "
#: mate-screenshot/data/mate-screenshot.ui:192
msgid "Save in _folder:"
msgstr "į įįį°į įįµį„ _įįµįįį« :"
#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:5
msgid "Screenshot delay"
msgstr "įØįįįįØį»įį įį¶ įįį» įįįį« "
#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:6
msgid "The number of seconds to wait before taking the screenshot."
msgstr "įįįįØį»įį įį¶ įØįįį³į± į įįµ įØįį į„įį į į°įØįį¶į½ įį„į "
#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:10
msgid "Screenshot directory"
msgstr "įįįįØį»įį įį¶ įįį» į³įį¬įį¶įŖ "
#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:11
msgid "The directory the last screenshot was saved in."
msgstr "ᨠįįįįØį» įį¶ į įįØįØį» įį ᨠį°įįį į įµ į³įį¬įį¶įŖ"
#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:15
msgid "Include Border"
msgstr "įµįį į įį«į°į» "
#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:16
msgid "Include the window manager border along with the screenshot"
msgstr "ᨠįįµį®įµ į įµį°į³į³įŖ įµįį į į įįįįØį» įį¶ įį įį«į°į»"
#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:20
msgid "Include Pointer"
msgstr "į įį įį«į°į» "
#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:21
msgid "Include the pointer in the screenshot"
msgstr "į įįįįØį» įį¶ įį įį įįį« įį«į°į»"
#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:25
msgid "Border Effect"
msgstr "įØįµįį į į°į½į„į "
#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:26
msgid ""
"Effect to add to the outside of a border. Possible values are \"shadow\", "
"\"none\", and \"border\"."
msgstr ""
#: mate-screenshot/src/mate-screenshot.c:138
msgid "Error loading the help page"
msgstr "įµį
į°įµ į°įį„įÆį įØį„įį³įµ įį½ į įį«į įį į„įį³į "
#: mate-screenshot/src/mate-screenshot.c:250
msgid "None"
msgstr "įįį"
#: mate-screenshot/src/mate-screenshot.c:251
msgid "Drop shadow"
msgstr "į„į įį£į« "
#: mate-screenshot/src/mate-screenshot.c:252
msgid "Border"
msgstr "įµįį į"
#: mate-screenshot/src/mate-screenshot.c:353
msgid "Include _pointer"
msgstr "_į įį _įį«į°į» "
#: mate-screenshot/src/mate-screenshot.c:362
msgid "Include the window _border"
msgstr "įØįįµį®įµ _įµįį į įį«į°į» "
#: mate-screenshot/src/mate-screenshot.c:377
msgid "Apply _effect:"
msgstr " _įį¤į±į įįįøįį«:"
#: mate-screenshot/src/mate-screenshot.c:437
msgid "Grab the whole _desktop"
msgstr "į įį _į“įµįį¶į įį¶ įįį»"
#: mate-screenshot/src/mate-screenshot.c:449
msgid "Grab the current _window"
msgstr "ᨠį įįį _įįµį®įµ įį¶ įįį»"
#: mate-screenshot/src/mate-screenshot.c:461
msgid "Select _area to grab"
msgstr "įįįØį” _į¦į³ įį¶ įįįį³įµ"
#: mate-screenshot/src/mate-screenshot.c:479
msgid "Grab _after a delay of"
msgstr "įį¶ įįỠᨠį°įį°į įįįį« _į įį"
#: mate-screenshot/src/mate-screenshot.c:500
#: mate-screenshot/src/mate-screenshot.c:1290
msgid "seconds"
msgstr "į°į®įį¶į½"
#: mate-screenshot/src/mate-screenshot.c:528
msgid "Effects"
msgstr "į°į½į„įįį½ "
#: mate-screenshot/src/mate-screenshot.c:532
msgid "Take _Screenshot"
msgstr "įįįįØį»įį _įį¶ įįį» "
#: mate-screenshot/src/mate-screenshot.c:651
msgid "Error while saving screenshot"
msgstr "įµį
į°įµ į°įį„įÆį įØįįįįØį»į įį¶ į įįµįįį„ įį "
#: mate-screenshot/src/mate-screenshot.c:654
#, c-format
msgid ""
"Impossible to save the screenshot to %s.\n"
" Error was %s.\n"
" Please choose another location and retry."
msgstr ""
#: mate-screenshot/src/mate-screenshot.c:795
msgid "Screenshot taken"
msgstr "įįįįØį»į įį¶ į°įįµį·į "
#: mate-screenshot/src/mate-screenshot.c:850
msgid "Unable to take a screenshot of the current window"
msgstr "ᨠį įįį įįµį®įµ įį¶ įįį³įµ į įį°į»įį"
#: mate-screenshot/src/mate-screenshot.c:915
#, c-format
msgid "Screenshot at %s.png"
msgstr "įįįįØį»įį įį¶ įįį»-%s.png"
#: mate-screenshot/src/mate-screenshot.c:922
#, c-format
msgid "Screenshot at %s - %d.png"
msgstr "įįįįØį»įį įį¶ įįį» į %s - %d.png"
#: mate-screenshot/src/mate-screenshot.c:1285
msgid "Grab a window instead of the entire screen"
msgstr "ᨠį į
įį įįįįØį»į įįį
įįµį®į±į į„į» įįį»"
#: mate-screenshot/src/mate-screenshot.c:1286
msgid "Grab an area of the screen instead of the entire screen"
msgstr "ᨠį į
įį įįįįØį»į įįį
įįµį®į±į į į«į£į¢ į„į» įįį»"
#: mate-screenshot/src/mate-screenshot.c:1287
msgid "Send grabbed area directly to the clipboard"
msgstr ""
#: mate-screenshot/src/mate-screenshot.c:1288
msgid "Include the window border with the screenshot"
msgstr "į įįįįØį» įį¶ įį ᨠį įįį įįµį®įµ įµįį į įį«į°į» "
#: mate-screenshot/src/mate-screenshot.c:1289
msgid "Remove the window border from the screenshot"
msgstr "į įįįįØį» įį¶ įį ᨠį įįį įįµį®įµ įµįį į įįµįįį"
#: mate-screenshot/src/mate-screenshot.c:1290
msgid "Take screenshot after specified delay [in seconds]"
msgstr ""
#: mate-screenshot/src/mate-screenshot.c:1291
msgid "Effect to add to the border (shadow, border or none)"
msgstr ""
#: mate-screenshot/src/mate-screenshot.c:1291
msgid "effect"
msgstr "į°į½į„į "
#: mate-screenshot/src/mate-screenshot.c:1292
msgid "Interactively set options"
msgstr ""
#: mate-screenshot/src/mate-screenshot.c:1293
msgid "Print version information and exit"
msgstr "ᨠį„įµį įįØį įį³į« į„į įįį«"
#: mate-screenshot/src/mate-screenshot.c:1304
msgid "Take a picture of the screen"
msgstr "įįįįØį»įį įį¶ įįį»"
#: mate-screenshot/src/mate-screenshot.c:1327
msgid ""
"Conflicting options: --clipboard and --interactive should not be used at the"
" same time.\n"
msgstr ""
#: mate-screenshot/src/mate-screenshot.c:1333
msgid ""
"Conflicting options: --window and --area should not be used at the same "
"time.\n"
msgstr ""
#: mate-screenshot/src/screenshot-dialog.c:209
#, c-format
msgid ""
"Error loading UI definition file for the screenshot program: \n"
"%s\n"
"\n"
"Please check your installation of mate-utils."
msgstr ""
#: mate-screenshot/src/screenshot-dialog.c:232
msgid "Select a folder"
msgstr "įįį°į įįįØį” "
#: mate-screenshot/src/screenshot-dialog.c:329
#: mate-screenshot/src/screenshot-save.c:202
msgid "Screenshot.png"
msgstr "įįįįØį»įį įį¶ įįį».png"
#: mate-screenshot/src/screenshot-save.c:60
#, c-format
msgid ""
"Unable to clear the temporary folder:\n"
"%s"
msgstr ""
"įįį«į įįį°į įį½į³į³ į įį°į»įį:\n"
"%s"
#: mate-screenshot/src/screenshot-save.c:98
msgid ""
"The child save process unexpectedly exited. We are unable to write the "
"screenshot to disk."
msgstr ""
#: mate-screenshot/src/screenshot-save.c:231
msgid "Unknown error saving screenshot to disk"
msgstr "įµį
į°įµ į°įį„įÆį įØįįįįØį»į įį¶ į įįµįįį„ įį į„įį³į"
#: mate-screenshot/src/screenshot-xfer.c:74
msgid "File already exists"
msgstr "įįį įį°į į²į įį į "
#: mate-screenshot/src/screenshot-xfer.c:77
#, c-format
msgid "The file \"%s\" already exists. Would you like to replace it?"
msgstr "įį
įįį \"%s\" įį°į į²į įį į įįįį©įµ įįįįį?"
#: mate-screenshot/src/screenshot-xfer.c:122
msgid "Saving file..."
msgstr "įįįį į įįµįįį„ įį..."
#: mate-screenshot/src/screenshot-xfer.c:292
msgid "Can't access source file"
msgstr "įØįįį įįį įį įįµįØįµ į įį°į»įį "
|