File: el.po

package info (click to toggle)
mate-utils 1.20.2-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 38,612 kB
  • sloc: ansic: 35,555; makefile: 803; xml: 161; sh: 30
file content (3256 lines) | stat: -rw-r--r-- 127,544 bytes parent folder | download
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
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
# 
# Translators:
# geost <george.stefanakis@gmail.com>, 2018
# alexandros_ <alexandros.venn@gmail.com>, 2018
# Panos Panagiotopoulos <panagiotopoulos@gmail.com>, 2018
# Le Pa <lepa.22@hotmail.com>, 2018
# Efstathios Iosifidis <iefstathios@gmail.com>, 2018
# Angelos Chraniotis <chraniotis@gmail.com>, 2018
# Timos Zacharatos <kokkinopioupiou@hotmail.com>, 2018
# 437c9d6e19936ed69f57bed9e0fe4716, 2018
# Christos Pappis <pappis@gmail.com>, 2018
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
# thunk <thunk77@gmail.com>, 2018
# Αλέξανδρος Καπετάνιος <alexandros@gnugr.org>, 2018
# 
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: MATE Desktop Environment\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-03-17 21:09+0100\n"
"PO-Revision-Date: 2018-03-12 09:17+0000\n"
"Last-Translator: Αλέξανδρος Καπετάνιος <alexandros@gnugr.org>, 2018\n"
"Language-Team: Greek (https://www.transifex.com/mate/teams/13566/el/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: el\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"

#: ../baobab/data/mate-disk-usage-analyzer.desktop.in.in.h:1
msgid "MATE Disk Usage Analyzer"
msgstr "Ανάλυση χρήσης δίσκου του MATE"

#: ../baobab/data/mate-disk-usage-analyzer.desktop.in.in.h:2
msgid "Check folder sizes and available disk space"
msgstr "Έλεγχος μεγέθους φακέλων και διαθέσιμου χώρου στο δίσκο"

#: ../baobab/data/baobab-dialog-scan-props.ui.h:1
msgid "Disk Usage Analyzer Preferences"
msgstr "Προτιμήσεις ανάλυσης χρήσης δίσκου"

#: ../baobab/data/baobab-dialog-scan-props.ui.h:2
msgid "Select _devices to include in filesystem scan:"
msgstr ""
"Επιλέξτε τις _συσκευές που θα συμπεριλαμβάνονται κατά την σάρωση του "
"συστήματος αρχείων:"

#: ../baobab/data/baobab-dialog-scan-props.ui.h:3
msgid "_Monitor changes to your home folder"
msgstr "_Παρακολούθηση αλλαγών στον αρχικό σας κατάλογο"

#: ../baobab/data/baobab-main-window.ui.h:1
msgid "_Analyzer"
msgstr "_Αναλυτής"

#: ../baobab/data/baobab-main-window.ui.h:2
msgid "Scan _Home Folder"
msgstr "Σάρωση αρ_χικού καταλόγου"

#: ../baobab/data/baobab-main-window.ui.h:3
msgid "Scan _Filesystem"
msgstr "Σάρωση σ_υστήματος αρχείων"

#: ../baobab/data/baobab-main-window.ui.h:4
msgid "Scan F_older..."
msgstr "Σάρωση _φακέλου..."

#: ../baobab/data/baobab-main-window.ui.h:5
msgid "S_can Remote Folder..."
msgstr "Σάρωση α_πομακρυσμένου φακέλου..."

#: ../baobab/data/baobab-main-window.ui.h:6
#: ../logview/src/logview-window.c:817
#: ../mate-dictionary/src/gdict-window.c:1288
msgid "_Edit"
msgstr "_Επεξεργασία"

#: ../baobab/data/baobab-main-window.ui.h:7
msgid "_Expand All"
msgstr "Α_νάπτυξη όλων"

#: ../baobab/data/baobab-main-window.ui.h:8
msgid "_Collapse All"
msgstr "Σύμπτυξη ό_λων"

#: ../baobab/data/baobab-main-window.ui.h:9
#: ../logview/src/logview-window.c:818
#: ../mate-dictionary/src/gdict-window.c:1289
msgid "_View"
msgstr "_Προβολή"

#: ../baobab/data/baobab-main-window.ui.h:10
msgid "_Toolbar"
msgstr "_Εργαλειοθήκη"

#: ../baobab/data/baobab-main-window.ui.h:11
msgid "St_atusbar"
msgstr "_Γραμμή κατάστασης"

#: ../baobab/data/baobab-main-window.ui.h:12
msgid "All_ocated Space"
msgstr "Εκχωρημένος _χώρος"

#: ../baobab/data/baobab-main-window.ui.h:13
#: ../logview/src/logview-window.c:820
#: ../mate-dictionary/src/gdict-applet.c:1172
#: ../mate-dictionary/src/gdict-window.c:1291
msgid "_Help"
msgstr "_Βοήθεια"

#. Help menu
#: ../baobab/data/baobab-main-window.ui.h:14
#: ../logview/src/logview-window.c:846
#: ../mate-dictionary/src/gdict-window.c:1341
msgid "_Contents"
msgstr "_Περιεχόμενα"

#: ../baobab/data/baobab-main-window.ui.h:15 ../baobab/src/baobab.c:1242
msgid "Disk Usage Analyzer"
msgstr "Ανάλυση χρήσης δίσκου"

#: ../baobab/data/baobab-main-window.ui.h:16
msgid "Scan home folder"
msgstr "Σάρωση ενός αρχικού καταλόγου"

#: ../baobab/data/baobab-main-window.ui.h:17
msgid "Scan Home"
msgstr "Σάρωση αρχικού καταλόγου"

#: ../baobab/data/baobab-main-window.ui.h:18
msgid "Scan filesystem"
msgstr "Σάρωση συστήματος αρχείων"

#: ../baobab/data/baobab-main-window.ui.h:19
msgid "Scan Filesystem"
msgstr "Σάρωση συστήματος αρχείων"

#: ../baobab/data/baobab-main-window.ui.h:20
msgid "Scan a folder"
msgstr "Σάρωση ενός φακέλου"

#: ../baobab/data/baobab-main-window.ui.h:21
msgid "Scan Folder"
msgstr "Σάρωση φακέλου"

#: ../baobab/data/baobab-main-window.ui.h:22
msgid "Scan a remote folder"
msgstr "Σάρωση ενός απομακρυσμένου"

#: ../baobab/data/baobab-main-window.ui.h:23
msgid "Scan Remote Folder"
msgstr "Σάρωση απομακρυσμένου φακέλου"

#: ../baobab/data/baobab-main-window.ui.h:24
msgid "Stop scanning"
msgstr "Διακοπή σάρωσης "

#: ../baobab/data/baobab-main-window.ui.h:25
msgid "Refresh"
msgstr "Ανανέωση"

#: ../baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in.h:1
msgid "Monitor Home"
msgstr "Αρχική οθόνη"

#: ../baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in.h:2
msgid "Whether any change to the home directory should be monitored."
msgstr "Αν θα παρακολουθείται για αλλαγές ο αρχικός σας κατάλογος."

#: ../baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in.h:3
msgid "Excluded partitions URIs"
msgstr "URI κατατμήσεων που εξαιρούνται"

#: ../baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in.h:4
msgid "A list of URIs for partitions to be excluded from scanning."
msgstr "Μια λίστα URI για κατατμήσεις που θα εξαιρούνται από τη σάρωση."

#: ../baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in.h:5
msgid "Toolbar is Visible"
msgstr "Η εργαλειοθήκη είναι ορατή "

#: ../baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in.h:6
msgid "Whether the toolbar should be visible in main window."
msgstr "Αν η εργαλειοθήκη θα είναι ορατή στο κύριο παράθυρο."

#: ../baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in.h:7
msgid "Statusbar is Visible"
msgstr "Η γραμμή κατάστασης είναι ορατή"

#: ../baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in.h:8
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.h:9
msgid "Subfolder tips visible"
msgstr "Ορατές συμβουλές υποφακέλου"

#: ../baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in.h:10
msgid "Whether the subfolder tooltips of the selected folder are drawn."
msgstr ""
"Αν θα σχεδιάζονται συμβουλές οθόνης για τους υποφακέλους του επιλεγμένου "
"φακέλου."

#: ../baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in.h:11
msgid "Active Chart"
msgstr "Ενεργό Διάγραμμα"

#: ../baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in.h:12
msgid "Which type of chart should be displayed."
msgstr "Ποιο είδος διαγράμματος θα πρέπει να εμφανίζεται."

#: ../baobab/data/mate-disk-usage-analyzer.appdata.xml.in.h:1
msgid "A disk usage analyzing tool for MATE Desktop"
msgstr ""
"Ένα εργαλείο ανάλυσης της χρήσης δίσκων για την επιφάνεια εργασίας MATE"

#: ../baobab/data/mate-disk-usage-analyzer.appdata.xml.in.h:2
msgid ""
"<p> 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. </p> <p> 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. </p>"
msgstr ""
"</p> Όπως υποδηλώνει το όνομά του, ο Αναλυτής Χρήσης Δίσκου είναι ένα "
"γραφικό βοηθητικό πρόγραμμα που μπορείτε να χρησιμοποιήσετε για να δείτε και"
" να παρακολουθήσετε τη χρήση του δίσκου σας και τη δομή του φακέλου. "
"Εμφανίζει συνοπτικές πληροφορίες σε δακτύλιο ή treemap διαγράμματα. </p> "
"</p> Μπορείτε να εκτελέσετε σαρώσεις σε ένα σύστημα αρχείων, στον αρχικό σας"
" ή οποιοδήποτε άλλο φάκελο - τοπικά ή απομακρυσμένα. Υπάρχει επίσης μια "
"επιλογή για να παρακολουθεί συνεχώς όλες τις εξωτερικές αλλαγές στον αρχικό "
"κατάλογο και προειδοποιεί τον χρήστη εάν ένα αρχείο έχει "
"προστεθεί/αφαιρεθεί. </p>"

#: ../baobab/src/baobab.c:137 ../baobab/src/baobab.c:357
msgid "Scanning..."
msgstr "Σάρωση..."

#: ../baobab/src/baobab.c:183
msgid "Total filesystem capacity:"
msgstr "Συνολική χωρητικότητα συστήματος αρχείων:"

#: ../baobab/src/baobab.c:184
msgid "used:"
msgstr "σε χρήση:"

#: ../baobab/src/baobab.c:185
msgid "available:"
msgstr "Διαθέσιμο:"

#. set statusbar, percentage and allocated/normal size
#: ../baobab/src/baobab.c:242 ../baobab/src/baobab.c:299
#: ../baobab/src/callbacks.c:259
msgid "Calculating percentage bars..."
msgstr "Υπολογισμός ποσοστιαίων μπαρών..."

#: ../baobab/src/baobab.c:253 ../baobab/src/baobab.c:1306
#: ../baobab/src/callbacks.c:263
msgid "Ready"
msgstr "Έτοιμο"

#: ../baobab/src/baobab.c:391
msgid "Total filesystem capacity"
msgstr "Συνολική χωρητικότητα συστήματος αρχείων"

#: ../baobab/src/baobab.c:415
msgid "Total filesystem usage"
msgstr "Συνολική χρήση συστήματος αρχείων"

#: ../baobab/src/baobab.c:457
msgid "contains hardlinks for:"
msgstr "περιέχει hardlinks για:"

#: ../baobab/src/baobab.c:466
#, c-format
msgid "%5d item"
msgid_plural "%5d items"
msgstr[0] ""
msgstr[1] ""

#: ../baobab/src/baobab.c:592
msgid "Could not initialize monitoring"
msgstr "Αδυναμία αρχικοποίησης παρακολούθησης "

#: ../baobab/src/baobab.c:593
msgid "Changes to your home folder will not be monitored."
msgstr "Δεν θα παρακολουθείται για αλλαγές ο αρχικός σας κατάλογος."

#: ../baobab/src/baobab.c:921
msgid "Move to parent folder"
msgstr "Μετακίνηση σε γονικό φάκελο"

#: ../baobab/src/baobab.c:925
msgid "Zoom in"
msgstr "Μεγέθυνση "

#: ../baobab/src/baobab.c:929
msgid "Zoom out"
msgstr "Σμίκρυνση"

#: ../baobab/src/baobab.c:933
msgid "Save screenshot"
msgstr "Αποθήκευση στιγμιότυπου οθόνης"

#: ../baobab/src/baobab.c:1120
msgid "View as Rings Chart"
msgstr "Προβολή ως διάγραμμα δακτυλίων"

#: ../baobab/src/baobab.c:1122
msgid "View as Treemap Chart"
msgstr "Προβολή ως  δενδροειδές διάγραμμα "

#: ../baobab/src/baobab.c:1231
msgid "Show version"
msgstr "Προβολή έκδοσης"

#: ../baobab/src/baobab.c:1232
msgid "[DIRECTORY]"
msgstr "[ΚΑΤΑΛΟΓΟΣ]"

#: ../baobab/src/baobab.c:1262
msgid "Too many arguments. Only one directory can be specified."
msgstr "Πάρα πολλές επιλογές. Μόνο ένας κατάλογος μπορεί να οριστεί."

#: ../baobab/src/baobab.c:1279
msgid "Could not detect any mount point."
msgstr "Δεν εντοπίστηκε κάποιο σημείο προσάρτησης."

#: ../baobab/src/baobab.c:1281
msgid "Without mount points disk usage cannot be analyzed."
msgstr "Χωρίς τα σημεία προσάρτησης δεν είναι δυνατή η ανάλυση χρήσης δίσκων."

#: ../baobab/src/baobab-chart.c:209
msgid "Maximum depth"
msgstr "Μέγιστο βάθος"

#: ../baobab/src/baobab-chart.c:210
msgid "The maximum depth drawn in the chart from the root"
msgstr ""
"Το μέγιστος βάος που θα σχεδιάζεται στο διάγραμμα από το κατάλογο root"

#: ../baobab/src/baobab-chart.c:219
msgid "Chart model"
msgstr "Μοντέλο διαγράμματος"

#: ../baobab/src/baobab-chart.c:220
msgid "Set the model of the chart"
msgstr "Ορισμός του μοντέλου για το διάγραμμα"

#: ../baobab/src/baobab-chart.c:227
msgid "Chart root node"
msgstr "Κόμβος root διαγράμματος"

#: ../baobab/src/baobab-chart.c:228
msgid "Set the root node from the model"
msgstr "Ορισμός του κόμβου root από το μοντέλο"

#: ../baobab/src/baobab-chart.c:1718
msgid "Cannot create pixbuf image!"
msgstr "Αδυναμία δημιουργίας εικόνας pixbuf!"

#. Popup the File chooser dialog
#: ../baobab/src/baobab-chart.c:1728
msgid "Save Snapshot"
msgstr "Αποθήκευση στιγμιότυπου οθόνης"

#: ../baobab/src/baobab-chart.c:1755
msgid "_Image type:"
msgstr "Τύπος ε_ικόνας:"

#: ../baobab/src/baobab-prefs.c:172
msgid "Scan"
msgstr "Σάρωση"

#: ../baobab/src/baobab-prefs.c:179
msgid "Device"
msgstr "Συσκευή"

#: ../baobab/src/baobab-prefs.c:187
msgid "Mount Point"
msgstr "Σημείο προσάρτησης"

#: ../baobab/src/baobab-prefs.c:195
msgid "Filesystem Type"
msgstr "Τύπος συστήματος αρχείων"

#: ../baobab/src/baobab-prefs.c:203
msgid "Total Size"
msgstr "Συνολικό μέγεθος"

#: ../baobab/src/baobab-prefs.c:212
msgid "Available"
msgstr "Διαθέσιμα"

#: ../baobab/src/baobab-remote-connect-dialog.c:75
#, c-format
msgid "Cannot scan location \"%s\""
msgstr "Αδυναμία σάρωσης τοποθεσίας \"%s\""

#: ../baobab/src/baobab-remote-connect-dialog.c:173
msgid "Custom Location"
msgstr "Προσαρμοσμένη τοποθεσία"

#: ../baobab/src/baobab-remote-connect-dialog.c:175
msgid "SSH"
msgstr "SSH"

#: ../baobab/src/baobab-remote-connect-dialog.c:178
msgid "Public FTP"
msgstr "Δημόσιο FTP"

#: ../baobab/src/baobab-remote-connect-dialog.c:180
msgid "FTP (with login)"
msgstr "FTP (με σύνδεση)"

#: ../baobab/src/baobab-remote-connect-dialog.c:183
msgid "Windows share"
msgstr "Κοινόχρηστο Windows"

#: ../baobab/src/baobab-remote-connect-dialog.c:185
msgid "WebDAV (HTTP)"
msgstr "WebDAV (HTTP)"

#: ../baobab/src/baobab-remote-connect-dialog.c:187
msgid "Secure WebDAV (HTTPS)"
msgstr "Secure WebDAV (HTTPS)"

#: ../baobab/src/baobab-remote-connect-dialog.c:247
msgid "Cannot Connect to Server. You must enter a name for the server."
msgstr ""
"Αδυναμία σύνδεσης με τον εξυπηρετητή. Θα πρέπει να εισάγετε ένα όνομα για "
"αυτό τον εξυπηρετητή"

#: ../baobab/src/baobab-remote-connect-dialog.c:250
msgid "Please enter a name and try again."
msgstr "Παρακαλώ εισάγετε ένα όνομα και προσπαθήστε ξανά."

#: ../baobab/src/baobab-remote-connect-dialog.c:438
msgid "_Location (URI):"
msgstr "_Τοποθεσία (URI):"

#: ../baobab/src/baobab-remote-connect-dialog.c:454
msgid "_Server:"
msgstr "_Εξυπηρετητής:"

#: ../baobab/src/baobab-remote-connect-dialog.c:467
msgid "Optional information:"
msgstr "Προαιρετικές πληροφορίες"

#: ../baobab/src/baobab-remote-connect-dialog.c:476
msgid "_Share:"
msgstr "_Κοινή χρήση:"

#: ../baobab/src/baobab-remote-connect-dialog.c:491
#: ../mate-dictionary/data/mate-dictionary-source.ui.h:4
msgid "_Port:"
msgstr "_Θύρα:"

#: ../baobab/src/baobab-remote-connect-dialog.c:505
msgid "_Folder:"
msgstr "_Φάκελος:"

#: ../baobab/src/baobab-remote-connect-dialog.c:519
msgid "_User Name:"
msgstr "Όνομα χρήσ_τη:"

#: ../baobab/src/baobab-remote-connect-dialog.c:534
msgid "_Domain Name:"
msgstr "Ό_νομα τομέα:"

#: ../baobab/src/baobab-remote-connect-dialog.c:595
msgid "Connect to Server"
msgstr "Σύνδεση στον εξυπηρετητή"

#: ../baobab/src/baobab-remote-connect-dialog.c:611
msgid "Service _type:"
msgstr "Τύπος υ_πηρεσίας:"

#: ../baobab/src/baobab-remote-connect-dialog.c:729
msgid "_Scan"
msgstr "_Σάρωση"

#: ../baobab/src/baobab-treeview.c:82
msgid "Rescan your home folder?"
msgstr "Σάρωση ξανά του αρχικού σας κατάλογου;"

#: ../baobab/src/baobab-treeview.c:83
msgid ""
"The content of your home folder has changed. Select rescan to update the "
"disk usage details."
msgstr ""
"Τα περιεχόμενα του αρχικού σας καταλόγου άλλαξαν.Επιλέξτε να γίνει σάρωση "
"ξανά για να ενημερωθούν οι λεπτομέρειες της χρήσης δίσκου"

#: ../baobab/src/baobab-treeview.c:84
msgid "_Rescan"
msgstr "Σάρωση _ξανά"

#: ../baobab/src/baobab-treeview.c:222 ../gsearchtool/src/gsearchtool.c:2426
msgid "Folder"
msgstr "Φάκελος"

#: ../baobab/src/baobab-treeview.c:244
msgid "Usage"
msgstr "Χρήση"

#: ../baobab/src/baobab-treeview.c:258 ../gsearchtool/src/gsearchtool.c:2439
msgid "Size"
msgstr "Μέγεθος"

#: ../baobab/src/baobab-treeview.c:274
msgid "Contents"
msgstr "Περιεχόμενα"

#: ../baobab/src/baobab-utils.c:106
msgid "Select Folder"
msgstr "Επιλογή φακέλου"

#. add extra widget
#: ../baobab/src/baobab-utils.c:118
msgid "_Show hidden folders"
msgstr "Εμ_φάνιση κρυφών φακέλων"

#: ../baobab/src/baobab-utils.c:299
msgid "Cannot check an excluded folder!"
msgstr "Δεν είναι δυνατός ο έλεγχος φακέλων που εξαιρούνται!"

#: ../baobab/src/baobab-utils.c:323
#, c-format
msgid "\"%s\" is not a valid folder"
msgstr "Το %s δεν είναι έγκυρος φάκελος"

#: ../baobab/src/baobab-utils.c:326
msgid "Could not analyze disk usage."
msgstr "Αδυναμία ανάλυσης χρήσης του δίσκου"

#: ../baobab/src/baobab-utils.c:362
msgid "_Open Folder"
msgstr "Ά_νοιγμα φακέλου "

#: ../baobab/src/baobab-utils.c:368
#: ../gsearchtool/src/gsearchtool-callbacks.c:1211
msgid "Mo_ve to Trash"
msgstr "_Μετακίνηση στα απορρίμματα"

#: ../baobab/src/baobab-utils.c:402
#, c-format
msgid "Could not open folder \"%s\""
msgstr "Αδυναμία ανοίγματος φακέλου \"%s\"."

#: ../baobab/src/baobab-utils.c:405
msgid "There is no installed viewer capable of displaying the folder."
msgstr ""
"Δεν υπάρχει εγκατεστημένο πρόγραμμα παρουσίασης για την εμφάνιση του "
"φακέλου."

#: ../baobab/src/baobab-utils.c:474
#, c-format
msgid "Could not move \"%s\" to the Trash"
msgstr "Αδυναμία μετακίνησης \"%s\" στα απορρίμματα"

#: ../baobab/src/baobab-utils.c:482
msgid "Could not move file to the Trash"
msgstr "Αδυναμία μετακίνησης αρχείου στα απορρίμματα"

#: ../baobab/src/baobab-utils.c:484
#, c-format
msgid "Details: %s"
msgstr "Λεπτομέρειες: %s"

#: ../baobab/src/baobab-utils.c:522
msgid "There was an error displaying help."
msgstr "Υπήρξε σφάλμα κατά την εμφάνιση της βοήθειας."

#: ../baobab/src/callbacks.c:76 ../logview/src/logview-about.h:49
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 ""
"Αυτό το πρόγραμμα είναι ελεύθερο λογισμικό. Επιτρέπεται η αναδιανομή ή/και η"
" τροποποίησή του υπό τους όρους της Γενικής Άδειας Δημόσιας Χρήσης GNU (GNU "
"General Public License) όπως αυτή δημοσιεύεται από το Ίδρυμα Ελεύθερου "
"Λογισμικού (Free Software Foundation) -είτε της έκδοσης 2 της άδειας, είτε "
"(κατ' επιλογήν) οποιασδήποτε μεταγενέστερης έκδοσης."

#: ../baobab/src/callbacks.c:81 ../logview/src/logview-about.h:53
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 ""
"Αυτό το πρόγραμμα διανέμεται με την ελπίδα οτι θα είναι χρήσιμο, αλλά ΧΩΡΙΣ "
"ΚΑΜΙΑ ΑΠΟΛΥΤΩΣ ΕΓΓΥΗΣΗ -χωρίς ακόμη και την έμμεση εγγύηση ΕΜΠΟΡΕΥΣΙΜΟΤΗΤΑΣ "
"ή ΚΑΤΑΛΛΗΛΟΤΗΤΑΣ ΓΙΑ ΣΥΓΚΕΚΡΙΜΕΝΟ ΣΚΟΠΟ. Δείτε για περισσότερες λεπτομέρειες"
" τη Γενική Άδεια Δημόσιας Χρήσης GNU (GNU General Public License)."

#: ../baobab/src/callbacks.c:86 ../logview/src/logview-about.h:57
msgid ""
"You should have received a copy of the GNU General Public License along with"
" this program; if not, write to the Free Software Foundation, Inc., 51 "
"Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA"
msgstr ""
"Θα πρέπει να έχετε λάβει ένα αντίγραφο της Γενικής Άδειας Δημόσιας Χρήσης "
"GNU (GNU General Public License) μαζί με αυτό το πρόγραμμα. Αν όχι, "
"επικοινωνήστε γραπτώς με το Ίδρυμα Ελεύθερου Λογισμικού (Free Software "
"Foundation, Inc.), 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, "
"USA"

#: ../baobab/src/callbacks.c:98
msgid "A graphical tool to analyze disk usage."
msgstr "Ένα γραφικό εργαλείο για την ανάλυση της χρήσης του δίσκου."

#. translator credits
#: ../baobab/src/callbacks.c:104 ../logview/src/logview-about.h:63
#: ../mate-dictionary/src/gdict-about.c:55
msgid "translator-credits"
msgstr ""
"Ελληνική μεταφραστική ομάδα MATE\n"
" Αλέξανδρος Μουχτσής <alexandros@gnugr.org>\n"
"\n"
"Για περισσότερες πληροφορίες, επισκεφθείτε την σελίδα http://www.mate.gr/"

#: ../baobab/src/callbacks.c:202
#: ../gsearchtool/src/gsearchtool-callbacks.c:509
#: ../gsearchtool/src/gsearchtool-callbacks.c:849
msgid "The document does not exist."
msgstr "Το έγγραφο δεν υπάρχει."

#: ../baobab/src/callbacks.c:283
msgid "The folder does not exist."
msgstr "Ο φάκελος δεν υπάρχει."

#: ../gsearchtool/data/mate-search-tool.appdata.xml.in.h:1
msgid "A file searching tool for MATE Desktop"
msgstr "Ένα εργαλείο αναζήτησης για το MATE"

#: ../gsearchtool/data/mate-search-tool.appdata.xml.in.h:2
msgid ""
"<p> 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.. </p>"
msgstr ""
"<p> Το Εργαλείο Αναζήτησης MATE είναι ένα απλό αλλά πανίσχυρο εργαλείο που "
"σας επιτρέπει να αναζητήσετε για αρχεία και φακέλους σε οποιοδήποτε "
"προσαρμοσμένο σύστημα αρχείων. Η διεπαφή σας δίνει άμεση πρόσβαση σε μία "
"μεγάλη ποικιλία από παραμέτρους για κάθε αναζήτηση, όπως κείμενο που "
"περιέχεται μέσα σε ένα αρχείο, μέγεθος αρχείου, αποκλεισμός φακέλου κ.λ.π. "
"</p>"

#: ../gsearchtool/data/mate-search-tool.desktop.in.h:1
msgid "MATE Search Tool"
msgstr "Εργαλείο αναζήτησης MATE"

#: ../gsearchtool/data/mate-search-tool.desktop.in.h:2
msgid "Locate documents and folders on this computer by name or content"
msgstr ""
"Εντοπισμός εγγράφων και φακέλων σε αυτό τον υπολογιστή με βάση το όνομα ή το"
" περιεχόμενο"

#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:1
msgid "Search history"
msgstr "Ιστορικό αναζητήσεων"

#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:2
msgid "This key defines the items which were searched for in the past."
msgstr ""
"Αυτό το κλειδί καθορίζει τα αντικείμενα τα οποία αναζητήθηκαν στο παρελθόν."

#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:3
msgid "Show Additional Options"
msgstr "Εμφάνιση πρόσθετων επιλογών"

#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:4
msgid "Disable Quick Search"
msgstr "Απενεργοποίηση  γρήγορης αναζήτησης"

#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:5
msgid ""
"This key determines if the search tool disables the use of the locate "
"command when performing simple file name searches."
msgstr ""
"Αυτό το κλειδί καθορίζει αν η επιλογή αναζήτησης απενεργοποιεί τη χρήση της "
"εντολής locate όταν εκτελεί  αναζήτηση απλού ονόματος αρχείου."

#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:6
msgid "Quick Search Excluded Paths"
msgstr "Γρήγορη αναζήτηση διαδρομών που έχουν εξαιρεθεί"

#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:7
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 ""
"Αυτό το κλειδί καθορίζει τις διαδρομές του εργαλείου αναζήτησης που θα "
"εξαιρούνται από την γρήγορη αναζήτηση. Τα wildcards '*' και '?' "
"υποστηρίζονται. Οι προεπιλεγμένες τιμές είναι  /mnt/*, /media/*, /dev/*, "
"/tmp/*, /proc/*, and /var/*."

#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:8
msgid "Disable Quick Search Second Scan"
msgstr "Απενεργοποίηση γρήγορης αναζήτησης δευτερεύουσας σάρωσης"

#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:9
msgid ""
"This key determines if the search tool disables the use of the find command "
"after performing a quick search."
msgstr ""
"Αυτό το κλειδί καθορίζει αν η επιλογή αναζήτησης απενεργοποιεί τη χρήση της "
"εντολής find όταν εκτελεί μια γρήγορη αναζήτηση."

#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:10
msgid "Quick Search Second Scan Excluded Paths"
msgstr "Γρήγορη αναζήτηση αποκλεισμένων διαδρομών δεύτερης σάρωσης"

#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:11
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 ""
"Αυτό το κλειδί καθορίζει τις διαδρομές του εργαλείου αναζήτησης που θα "
"εξαιρούνται από την δεύτερη σάρωση όταν γίνεται γρήγορη αναζήτηση. Η δεύτερη"
" σάρωση χρησιμοποιεί την εντολή find για την αναζήτηση αρχείων και ο σκοπός "
"της είναι να βρεθούν τα αρχεία που δεν έχουν ταξινομηθεί. Τα wildcards '*' "
"και '?' υποστηρίζονται. Η προεπιλεγμένη τιμή είναι /."

#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:12
msgid "Search Result Columns Order"
msgstr "Ταξινόμηση στηλών αποτελεσμάτων αναζήτησης:"

#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:13
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.h:14
msgid "Default Window Width"
msgstr "Προεπιλεγμένο πλάτος παραθύρου"

#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:15
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.h:16
msgid "Default Window Height"
msgstr "Προεπιλεγμένο ύψος παραθύρου"

#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:17
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.h:18
msgid "Default Window Maximized"
msgstr "Μεγιστοποίηση προεπιλεγμένου παραθύρου"

#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:19
msgid ""
"This key determines if the search tool window starts in a maximized state."
msgstr ""
"Αυτό το κλειδί καθορίζει αν το παράθυρο αναζήτησης θα ξεκινάει σε "
"μεγιστοποίηση."

#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:20
msgid "Look in Folder"
msgstr "Αναζήτηση σε φάκελο"

#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:21
msgid "This key defines the default value of the \"Look in Folder\" widget."
msgstr ""
"Αυτό το κλειδί καθορίζει την προεπιλεγμένη τιμή της λειτουργίας \"Αναζήτηση "
"σε φάκελο\"."

#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:22
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.h:23
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.h:24
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.h:25
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.h:26
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.h:27
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.h:28
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.h:29
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.h:30
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.h:31
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.h:32
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.h:33
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.h:34
msgid ""
"This key determines if the \"Follow symbolic links\" search option is "
"selected when the search tool is started."
msgstr ""
"Αυτό το κλειδί καθορίζει αν η επιλογή αναζήτησης \"Ακολούθηση συμβολικών "
"δεσμών\" είναι επιλεγμένη όταν εκκινείται το εργαλείο αναζήτησης."

#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:35
msgid ""
"This key determines if the \"Exclude other filesystems\" search option is "
"selected when the search tool is started."
msgstr ""
"Αυτό το κλειδί καθορίζει αν η επιλογή αναζήτησης \"Να μη συμπεριλαμβάνονται "
"άλλα συστήματα αρχείων\" είναι επιλεγμένη όταν εκκινείται το εργαλείο "
"αναζήτησης."

#: ../gsearchtool/libeggsmclient/eggdesktopfile.c:165
#, c-format
msgid "File is not a valid .desktop file"
msgstr "Το αρχείο δεν είναι έγκυρο αρχείο .desktop"

#: ../gsearchtool/libeggsmclient/eggdesktopfile.c:188
#, c-format
msgid "Unrecognized desktop file Version '%s'"
msgstr "Μη αναγνωρίσιμη έκδοση αρχείου desktop '%s'"

#: ../gsearchtool/libeggsmclient/eggdesktopfile.c:957
#, c-format
msgid "Starting %s"
msgstr "Εκκίνηση %s"

#: ../gsearchtool/libeggsmclient/eggdesktopfile.c:1098
#, c-format
msgid "Application does not accept documents on command line"
msgstr "Η εφαρμογή δεν δέχεται έγγραφα από τη γραμμή εντολών"

#: ../gsearchtool/libeggsmclient/eggdesktopfile.c:1166
#, c-format
msgid "Unrecognized launch option: %d"
msgstr "Μη αναγνωρίσιμη επιλογή εκκίνησης: %d"

#: ../gsearchtool/libeggsmclient/eggdesktopfile.c:1364
#, c-format
msgid "Can't pass document URIs to a 'Type=Link' desktop entry"
msgstr ""
"Δεν επιτρέπεται το πέρασμα διευθύνσεων (URI) εγγράφων σε εγγραφές της "
"επιφάνειας εργασίας τύπου 'Type=Link'"

#: ../gsearchtool/libeggsmclient/eggdesktopfile.c:1383
#, c-format
msgid "Not a launchable item"
msgstr "Μη εκκινήσιμο αντικείμενο"

#: ../gsearchtool/libeggsmclient/eggsmclient.c:225
msgid "Disable connection to session manager"
msgstr "Απενεργοποίηση σύνδεσης με τον διαχειριστή συνεδρίας"

#: ../gsearchtool/libeggsmclient/eggsmclient.c:228
msgid "Specify file containing saved configuration"
msgstr "Καθορισμός του αρχείου που περιέχει τις αποθηκευμένες ρυθμίσεις"

#: ../gsearchtool/libeggsmclient/eggsmclient.c:228
msgid "FILE"
msgstr "ΑΡΧΕΙΟ"

#: ../gsearchtool/libeggsmclient/eggsmclient.c:231
msgid "Specify session management ID"
msgstr "Καθορισμός ID διαχείρισης συνεδρίας"

#: ../gsearchtool/libeggsmclient/eggsmclient.c:231
msgid "ID"
msgstr "ID"

#: ../gsearchtool/libeggsmclient/eggsmclient.c:252
msgid "Session management options:"
msgstr "Επιλογές διαχείρισης συνεδρίας"

#: ../gsearchtool/libeggsmclient/eggsmclient.c:253
msgid "Show session management options"
msgstr "Εμφάνιση επιλογών διαχείρισης συνεδρίας"

#: ../gsearchtool/src/gsearchtool.c:82
msgid "Contains the _text"
msgstr "Περιέχει το _κείμενο"

#: ../gsearchtool/src/gsearchtool.c:84
msgid "_Date modified less than"
msgstr "Ημερομηνία τ_ροποποίησης μικρότερη από"

#: ../gsearchtool/src/gsearchtool.c:84 ../gsearchtool/src/gsearchtool.c:85
msgid "days"
msgstr "ημέρες"

#: ../gsearchtool/src/gsearchtool.c:85
msgid "Date modified more than"
msgstr "Ημερομηνία τροποποίησης μεγαλύτερη από"

#: ../gsearchtool/src/gsearchtool.c:87
msgid "S_ize at least"
msgstr "Μέ_γεθος τουλάχιστον"

#: ../gsearchtool/src/gsearchtool.c:87 ../gsearchtool/src/gsearchtool.c:88
msgid "kilobytes"
msgstr "kilobytes"

#: ../gsearchtool/src/gsearchtool.c:88
msgid "Si_ze at most"
msgstr "Μέ_γεθος το μέγιστο"

#: ../gsearchtool/src/gsearchtool.c:89
msgid "File is empty"
msgstr "Το αρχείο είναι κενό"

#: ../gsearchtool/src/gsearchtool.c:91
msgid "Owned by _user"
msgstr "Ανήκει σε _χρήστη"

#: ../gsearchtool/src/gsearchtool.c:92
msgid "Owned by _group"
msgstr "Ανήκει σε ο_μάδα"

#: ../gsearchtool/src/gsearchtool.c:93
msgid "Owner is unrecognized"
msgstr "Μη αναγνωρίσιμος ιδιοκτήτης"

#: ../gsearchtool/src/gsearchtool.c:95
msgid "Na_me does not contain"
msgstr "Το ό_νομα δεν περιέχει"

#: ../gsearchtool/src/gsearchtool.c:96
msgid "Name matches regular e_xpression"
msgstr "Ταίριασμα κανονικής έ_κφρασης"

#: ../gsearchtool/src/gsearchtool.c:98
msgid "Show hidden and backup files"
msgstr "Εμφάνιση κρυφών αρχείων και αρχείων ασφαλείας."

#: ../gsearchtool/src/gsearchtool.c:99
msgid "Follow symbolic links"
msgstr "Ακολούθηση συμβολικών συνδέσμων"

#: ../gsearchtool/src/gsearchtool.c:100
msgid "Exclude other filesystems"
msgstr "Να μη συμπεριλαμβάνει άλλα συστήματα αρχείων."

#: ../gsearchtool/src/gsearchtool.c:158
msgid "Show version of the application"
msgstr "Προβολή της έκδοσης της εφαρμογής"

#: ../gsearchtool/src/gsearchtool.c:159 ../gsearchtool/src/gsearchtool.c:164
#: ../gsearchtool/src/gsearchtool.c:173
msgid "STRING"
msgstr "ΑΛΦΑΡΙΘΜΗΤΙΚΟ"

#: ../gsearchtool/src/gsearchtool.c:160
msgid "PATH"
msgstr "ΔΙΑΔΡΟΜΗ"

#: ../gsearchtool/src/gsearchtool.c:161
msgid "VALUE"
msgstr "ΤΙΜΗ"

#: ../gsearchtool/src/gsearchtool.c:165 ../gsearchtool/src/gsearchtool.c:166
msgid "DAYS"
msgstr "ΗΜΕΡΕΣ"

#: ../gsearchtool/src/gsearchtool.c:167 ../gsearchtool/src/gsearchtool.c:168
msgid "KILOBYTES"
msgstr "KILOBYTES"

#: ../gsearchtool/src/gsearchtool.c:170
msgid "USER"
msgstr "ΧΡΗΣΤΗΣ"

#: ../gsearchtool/src/gsearchtool.c:171
msgid "GROUP"
msgstr "ΟΜΑΔΑ"

#: ../gsearchtool/src/gsearchtool.c:174
msgid "PATTERN"
msgstr "ΜΟΤΙΒΟ"

#: ../gsearchtool/src/gsearchtool.c:385
msgid "A locate database has probably not been created."
msgstr "Πιθανόν να μην έχει δημιουργηθεί μια βάση δεδομένων locate."

#: ../gsearchtool/src/gsearchtool.c:487
#, c-format
msgid "Character set conversion failed for \"%s\""
msgstr "Αποτυχία μετατροπής κωδικοποίησης χαρακτήρων για \"%s\""

#: ../gsearchtool/src/gsearchtool.c:511
msgid "Searching..."
msgstr "Αναζήτηση..."

#: ../gsearchtool/src/gsearchtool.c:511 ../gsearchtool/src/gsearchtool.c:1031
#: ../gsearchtool/src/gsearchtool.c:3031
msgid "Search for Files"
msgstr "Αναζήτηση για αρχεία"

#: ../gsearchtool/src/gsearchtool.c:977 ../gsearchtool/src/gsearchtool.c:1006
msgid "No files found"
msgstr "Δε βρέθηκαν αρχεία"

#: ../gsearchtool/src/gsearchtool.c:999
msgid "(stopped)"
msgstr "(διακόπηκε)"

#: ../gsearchtool/src/gsearchtool.c:1005
msgid "No Files Found"
msgstr "Δεν βρέθηκαν αρχεία"

#: ../gsearchtool/src/gsearchtool.c:1010
#, c-format
msgid "%'d File Found"
msgid_plural "%'d Files Found"
msgstr[0] ""
msgstr[1] ""

#: ../gsearchtool/src/gsearchtool.c:1014 ../gsearchtool/src/gsearchtool.c:1052
#, c-format
msgid "%'d file found"
msgid_plural "%'d files found"
msgstr[0] ""
msgstr[1] ""

#: ../gsearchtool/src/gsearchtool.c:1143
msgid "Entry changed called for a non entry option!"
msgstr "Η αλλαγή εισαγωγής καλέστηκε για επιλογή που δεν επιτρέπει εισαγωγή!"

#: ../gsearchtool/src/gsearchtool.c:1308
msgid "Set the text of \"Name contains\" search option"
msgstr "Ορισμός του κειμένου της επιλογής αναζήτησης \"'Όνομα περιέχει'\""

#: ../gsearchtool/src/gsearchtool.c:1309
msgid "Set the text of \"Look in folder\" search option"
msgstr "Ορισμός του κειμένου της επιλογής αναζήτησης \"αναζήτηση στο φάκελο\" "

#: ../gsearchtool/src/gsearchtool.c:1310
msgid "Sort files by one of the following: name, folder, size, type, or date"
msgstr ""
"Ταξινόμηση αρχείων σύμφωνα με τα ακόλουθα: όνομα, φάκελος. μέγεθος, τύπος, ή"
" ημερομηνία"

#: ../gsearchtool/src/gsearchtool.c:1311
msgid "Set sort order to descending, the default is ascending"
msgstr "Καθορισμός σειράς ταξινόμησης σε φθίνουσα, η εξ ορισμού είναι αύξουσα"

#: ../gsearchtool/src/gsearchtool.c:1312
msgid "Automatically start a search"
msgstr "Αυτόματη έναρξη μιας αναζήτησης"

#: ../gsearchtool/src/gsearchtool.c:1318
#, c-format
msgid "Select the \"%s\" search option"
msgstr "Επιλογή της επιλογής αναζήτησης \"%s\""

#: ../gsearchtool/src/gsearchtool.c:1321
#, c-format
msgid "Select and set the \"%s\" search option"
msgstr "Επιλογή και ορισμός της επιλογής αναζήτησης \"%s\""

#: ../gsearchtool/src/gsearchtool.c:1428
msgid "Invalid option passed to sortby command line argument."
msgstr "Πέρασε μη έγκυρη επιλογή στην εντολή ταξινόμησης κατά."

#: ../gsearchtool/src/gsearchtool.c:1720
msgid ""
"\n"
"... Too many errors to display ..."
msgstr ""
"\n"
"...Πάρα πολλά λάθη για εμφάνιση..."

#: ../gsearchtool/src/gsearchtool.c:1734
msgid ""
"The search results may be invalid.  There were errors while performing this "
"search."
msgstr ""
"Τα αποτελέσματα αναζήτησης μπορεί να μην είναι έγκυρα. Υπήρξαν σφάλματα κατα"
" την εκτέλεση αυτής της αναζήτησης."

#: ../gsearchtool/src/gsearchtool.c:1746 ../gsearchtool/src/gsearchtool.c:1790
msgid "Show more _details"
msgstr "Εμφάνιση περισσότερων _λεπτομερειών"

#: ../gsearchtool/src/gsearchtool.c:1776
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:1801
msgid "Disable _Quick Search"
msgstr "Απενεργοποίηση _γρήγορης αναζήτησης"

#: ../gsearchtool/src/gsearchtool.c:1828
#, c-format
msgid "Failed to set process group id of child %d: %s.\n"
msgstr "Αποτυχία ορισμού process group id of child %d: %s.\n"

#: ../gsearchtool/src/gsearchtool.c:1853
msgid "Error parsing the search command."
msgstr "Σφάλμα κατά την ανάλυση της εντολής αναζήτησης."

#: ../gsearchtool/src/gsearchtool.c:1885
msgid "Error running the search command."
msgstr "Σφάλμα κατά την εκτέλεση της εντολής αναζήτησης."

#: ../gsearchtool/src/gsearchtool.c:2008
#, 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:2013
#, c-format
msgid "\"%s\" in %s"
msgstr "\"%s\" σε %s"

#: ../gsearchtool/src/gsearchtool.c:2015
#, c-format
msgid "Enter a value in %s for the \"%s\" search option."
msgstr "Εισάγετε μια τιμή σε %s για την επιλογή αναζήτησης  \"%s\""

#: ../gsearchtool/src/gsearchtool.c:2073
#, c-format
msgid "Remove \"%s\""
msgstr "Διαγραφή  \"%s\""

#: ../gsearchtool/src/gsearchtool.c:2074
#, c-format
msgid "Click to remove the \"%s\" search option."
msgstr "Πατήστε για αφαίρεση της  επιλογή αναζήτησης  \"%s\""

#: ../gsearchtool/src/gsearchtool.c:2167
msgid "A_vailable options:"
msgstr "Δια_θέσιμες επιλογές:"

#: ../gsearchtool/src/gsearchtool.c:2196
msgid "Available options"
msgstr "Διαθέσιμες επιλογές:"

#: ../gsearchtool/src/gsearchtool.c:2197
msgid "Select a search option from the drop-down list."
msgstr "Επιλέξτε μια επιλογή αναζήτησης από την κυλιόμενη λίστα"

#: ../gsearchtool/src/gsearchtool.c:2209
msgid "Add search option"
msgstr "Προσθήκη επιλογής αναζήτησης"

#: ../gsearchtool/src/gsearchtool.c:2210
msgid "Click to add the selected available search option."
msgstr "Πατήστε για προσθήκη της επιλεγμένης διαθέσιμης επιλογής αναζήτησης."

#: ../gsearchtool/src/gsearchtool.c:2299
msgid "S_earch results:"
msgstr "Αποτελέσματα α_ναζήτησης:"

#: ../gsearchtool/src/gsearchtool.c:2342
msgid "List View"
msgstr "Προβολή λίστας"

#: ../gsearchtool/src/gsearchtool.c:2402
#: ../mate-dictionary/libgdict/gdict-source.c:246
msgid "Name"
msgstr "Όνομα"

#: ../gsearchtool/src/gsearchtool.c:2451
msgid "Type"
msgstr "Τύπος"

#: ../gsearchtool/src/gsearchtool.c:2463
msgid "Date Modified"
msgstr "Ημερομηνία τροποποίησης"

#: ../gsearchtool/src/gsearchtool.c:2798
msgid "_Name contains:"
msgstr "Το ό_νομα περιέχει:"

#: ../gsearchtool/src/gsearchtool.c:2813 ../gsearchtool/src/gsearchtool.c:2814
msgid "Enter a filename or partial filename with or without wildcards."
msgstr ""
"Εισάγετε ένα όνομα αρχείου ή ένα μερικό όνομα αρχείου με ή χωρίς wildcards."

#: ../gsearchtool/src/gsearchtool.c:2814
msgid "Name contains"
msgstr "Όνομα περιέχει"

#: ../gsearchtool/src/gsearchtool.c:2820
msgid "_Look in folder:"
msgstr "_Αναζήτηση στο φάκελο:"

#: ../gsearchtool/src/gsearchtool.c:2826
msgid "Browse"
msgstr "Περιήγηση"

#: ../gsearchtool/src/gsearchtool.c:2836
msgid "Look in folder"
msgstr "Αναζήτηση σε φάκελο"

#: ../gsearchtool/src/gsearchtool.c:2836
msgid "Select the folder or device from which you want to begin the search."
msgstr ""
"Επιλέξτε το φάκελο ή τη συσκευή  από όπου θέλετε να ξεκινήσει η αναζήτηση"

#: ../gsearchtool/src/gsearchtool.c:2854
msgid "Select more _options"
msgstr "Περισσότερες _επιλογές"

#: ../gsearchtool/src/gsearchtool.c:2863
msgid "Select more options"
msgstr "Περισσότερες επιλογές"

#: ../gsearchtool/src/gsearchtool.c:2863
msgid "Click to expand or collapse the list of available options."
msgstr "Πατήστε για ανάπτυξη η σύμπτυξη μιας λίστας των διαθέσιμων επιλογών."

#: ../gsearchtool/src/gsearchtool.c:2887
msgid "Click to display the help manual."
msgstr "Πατήστε για εμφάνιση του εγχειριδίου βοήθειας."

#: ../gsearchtool/src/gsearchtool.c:2895
msgid "Click to close \"Search for Files\"."
msgstr "Πατήστε για κλείσιμο του \"Αναζήτηση για αρχεία\"."

#: ../gsearchtool/src/gsearchtool.c:2921
msgid "Click to perform a search."
msgstr "Πατήστε για αναζήτηση."

#: ../gsearchtool/src/gsearchtool.c:2922
msgid "Click to stop a search."
msgstr "Πατήστε για να διακόψετε την αναζήτηση"

#: ../gsearchtool/src/gsearchtool.c:3016
msgid "- the MATE Search Tool"
msgstr "- το εργαλείο αναζήτησης του MATE"

#: ../gsearchtool/src/gsearchtool.c:3025
#, c-format
msgid "Failed to parse command line arguments: %s\n"
msgstr "Αποτυχία ανάλυσης των ορισμάτων της γραμμής εντολής: %s\n"

#: ../gsearchtool/src/gsearchtool-callbacks.c:199
msgid "Could not open help document."
msgstr "Αδυναμία ανοίγματος αρχείου βοήθειας."

#: ../gsearchtool/src/gsearchtool-callbacks.c:350
#, 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] ""
msgstr[1] ""

#: ../gsearchtool/src/gsearchtool-callbacks.c:355
#: ../gsearchtool/src/gsearchtool-callbacks.c:552
#, c-format
msgid "This will open %d separate window."
msgid_plural "This will open %d separate windows."
msgstr[0] ""
msgstr[1] ""

#: ../gsearchtool/src/gsearchtool-callbacks.c:395
#, c-format
msgid "Could not open document \"%s\"."
msgstr "Αδυναμία ανοίγματος εγγράφου  \"%s\"."

#: ../gsearchtool/src/gsearchtool-callbacks.c:424
#, c-format
msgid "Could not open folder \"%s\"."
msgstr "Αδυναμία ανοίγματος φακέλου \"%s\"."

#: ../gsearchtool/src/gsearchtool-callbacks.c:432
msgid "The caja file manager is not running."
msgstr "Ο διαχειριστής αρχείων του Ναυτίλου δεν εκτελείται."

#: ../gsearchtool/src/gsearchtool-callbacks.c:524
msgid "There is no installed viewer capable of displaying the document."
msgstr ""
"Δεν υπάρχει εγκατεστημένο πρόγραμμα παρουσίασης για την εμφάνιση του "
"εγγράφου."

#: ../gsearchtool/src/gsearchtool-callbacks.c:547
#, 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] ""
msgstr[1] ""

#: ../gsearchtool/src/gsearchtool-callbacks.c:700
#, c-format
msgid "Could not move \"%s\" to trash."
msgstr "Αδυναμία μετακίνησης \"%s\" στα απορρίμματα."

#: ../gsearchtool/src/gsearchtool-callbacks.c:731
#, c-format
msgid "Do you want to delete \"%s\" permanently?"
msgstr "Θέλετε την οριστική διαγραφή του \"%s\";"

#: ../gsearchtool/src/gsearchtool-callbacks.c:734
#, c-format
msgid "Trash is unavailable.  Could not move \"%s\" to the trash."
msgstr ""
"Τα απορρίμματα δεν είναι προσβάσιμα. Αδυναμία μετακίνησης\"%s\" στα "
"απορρίμματα."

#: ../gsearchtool/src/gsearchtool-callbacks.c:773
#, c-format
msgid "Could not delete \"%s\"."
msgstr "Αδυναμία διαγραφής \"%s\"."

#: ../gsearchtool/src/gsearchtool-callbacks.c:885
#, c-format
msgid "Deleting \"%s\" failed: %s."
msgstr "Η διαγραφή του \"%s\" απέτυχε: %s."

#: ../gsearchtool/src/gsearchtool-callbacks.c:897
#, c-format
msgid "Moving \"%s\" failed: %s."
msgstr "Η μετακίνηση \"%s\" απέτυχε: %s."

#. Popup menu item: Open
#: ../gsearchtool/src/gsearchtool-callbacks.c:1025
#: ../gsearchtool/src/gsearchtool-callbacks.c:1055
msgid "_Open"
msgstr "Ά_νοιγμα"

#. Popup menu item: Open with (default)
#: ../gsearchtool/src/gsearchtool-callbacks.c:1080
#, c-format
msgid "_Open with %s"
msgstr "Άνοιγμα _με %s"

#: ../gsearchtool/src/gsearchtool-callbacks.c:1115
#, c-format
msgid "Open with %s"
msgstr "Άνοιγμα με %s"

#. Popup menu item: Open With
#: ../gsearchtool/src/gsearchtool-callbacks.c:1148
msgid "Open Wit_h"
msgstr "Άνοιγμα _με"

#. Popup menu item: Open Containing Folder
#: ../gsearchtool/src/gsearchtool-callbacks.c:1193
msgid "Open Containing _Folder"
msgstr "Ανοιχτός _Φάκελος που περιέχει"

#: ../gsearchtool/src/gsearchtool-callbacks.c:1233
msgid "_Save Results As..."
msgstr "Αποθήκευ_ση αποτελεσμάτων ως..."

#: ../gsearchtool/src/gsearchtool-callbacks.c:1618
msgid "Save Search Results As..."
msgstr "Αποθήκευση αποτελεσμάτων αναζήτησης ως..."

#: ../gsearchtool/src/gsearchtool-callbacks.c:1647
msgid "Could not save document."
msgstr "Αδυναμία αποθήκευσης εγγράφου."

#: ../gsearchtool/src/gsearchtool-callbacks.c:1648
msgid "You did not select a document name."
msgstr "Δεν επιλέξατε ένα όνομα εγγράφου."

#: ../gsearchtool/src/gsearchtool-callbacks.c:1678
#, c-format
msgid "Could not save \"%s\" document to \"%s\"."
msgstr "Αδυναμία αποθήκευσης εγγράφου   \"%s\" σε \"%s\"."

#: ../gsearchtool/src/gsearchtool-callbacks.c:1711
#, c-format
msgid "The document \"%s\" already exists.  Would you like to replace it?"
msgstr "Το έγγραφο\"%s\" υπάρχει ήδη. Θέλετε να το αντικαταστήσετε;"

#: ../gsearchtool/src/gsearchtool-callbacks.c:1715
msgid "If you replace an existing file, its contents will be overwritten."
msgstr ""
"Αν αντικαταστήσετε ένα υπάρχον αρχείο, τα περιεχόμενα του θα "
"αντικατασταθούν."

#: ../gsearchtool/src/gsearchtool-callbacks.c:1730
#: ../mate-screenshot/src/screenshot-xfer.c:82
msgid "_Replace"
msgstr "_Αντικατάσταση"

#: ../gsearchtool/src/gsearchtool-callbacks.c:1779
msgid "The document name you selected is a folder."
msgstr "Το όνομα εγγράφου που επιλέξατε είναι ένας φάκελος."

#: ../gsearchtool/src/gsearchtool-callbacks.c:1815
msgid "You may not have write permissions to the document."
msgstr "Μπορεί να μην έχετε τα απαραίτητα δικαιώματα εγγραφής για το έγγραφο."

#. Translators:  Below are the strings displayed in the 'Date Modified'
#. column of the list view.  The format of this string can vary depending
#. on age of a file.  Please modify the format of the timestamp to match
#. your locale.  For example, to display 24 hour time replace the '%-I'
#. with '%-H' and remove the '%p'.  (See bugzilla report #120434.)
#: ../gsearchtool/src/gsearchtool-support.c:448
msgid "today at %-I:%M %p"
msgstr "σήμερα στις %-I:%M %p"

#: ../gsearchtool/src/gsearchtool-support.c:450
msgid "yesterday at %-I:%M %p"
msgstr "χθες στις %-I:%M %p"

#: ../gsearchtool/src/gsearchtool-support.c:452
#: ../gsearchtool/src/gsearchtool-support.c:454
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:641
msgid "link (broken)"
msgstr "σύνδεσμος (σπασμένος)"

#: ../gsearchtool/src/gsearchtool-support.c:645
#, c-format
msgid "link to %s"
msgstr "σύνδεσμος στο %s"

#. START OF CAJA/EEL FUNCTIONS: USED FOR HANDLING OF DUPLICATE FILENAMES
#. Localizers:
#. * Feel free to leave out the st, nd, rd and th suffix or
#. * make some or all of them match.
#. localizers: tag used to detect the first copy of a file
#: ../gsearchtool/src/gsearchtool-support.c:1260
msgid " (copy)"
msgstr " (αντίγραφο)"

#. localizers: tag used to detect the second copy of a file
#: ../gsearchtool/src/gsearchtool-support.c:1262
msgid " (another copy)"
msgstr "(και άλλο αντίγραφο)"

#. localizers: tag used to detect the x11th copy of a file
#. localizers: tag used to detect the x12th copy of a file
#. localizers: tag used to detect the x13th copy of a file
#. localizers: tag used to detect the xxth copy of a file
#: ../gsearchtool/src/gsearchtool-support.c:1265
#: ../gsearchtool/src/gsearchtool-support.c:1267
#: ../gsearchtool/src/gsearchtool-support.c:1269
#: ../gsearchtool/src/gsearchtool-support.c:1279
msgid "th copy)"
msgstr "ο αντίγραφο"

#. localizers: tag used to detect the x1st copy of a file
#: ../gsearchtool/src/gsearchtool-support.c:1272
msgid "st copy)"
msgstr "ο αντίγραφο"

#. localizers: tag used to detect the x2nd copy of a file
#: ../gsearchtool/src/gsearchtool-support.c:1274
msgid "nd copy)"
msgstr "ο αντίγραφο)"

#. localizers: tag used to detect the x3rd copy of a file
#: ../gsearchtool/src/gsearchtool-support.c:1276
msgid "rd copy)"
msgstr "ο αντίγραφο)"

#. localizers: appended to first file copy
#: ../gsearchtool/src/gsearchtool-support.c:1293
#, c-format
msgid "%s (copy)%s"
msgstr "%s (αντίγραφο) %s"

#. localizers: appended to second file copy
#: ../gsearchtool/src/gsearchtool-support.c:1295
#, c-format
msgid "%s (another copy)%s"
msgstr "%s (και άλλο αντίγραφο)%s"

#. localizers: appended to x11th file copy
#. localizers: appended to x12th file copy
#. localizers: appended to x13th file copy
#. localizers: appended to xxth file copy
#: ../gsearchtool/src/gsearchtool-support.c:1298
#: ../gsearchtool/src/gsearchtool-support.c:1300
#: ../gsearchtool/src/gsearchtool-support.c:1302
#: ../gsearchtool/src/gsearchtool-support.c:1311
#, c-format
msgid "%s (%dth copy)%s"
msgstr "%s (%dο αντίγραφο)%s"

#. localizers: appended to x1st file copy
#: ../gsearchtool/src/gsearchtool-support.c:1305
#, c-format
msgid "%s (%dst copy)%s"
msgstr "%s (%dο αντίγραφο)%s"

#. localizers: appended to x2nd file copy
#: ../gsearchtool/src/gsearchtool-support.c:1307
#, c-format
msgid "%s (%dnd copy)%s"
msgstr "%s (%dο αντίγραφο)%s"

#. localizers: appended to x3rd file copy
#: ../gsearchtool/src/gsearchtool-support.c:1309
#, c-format
msgid "%s (%drd copy)%s"
msgstr "%s (%dο αντίγραφο)%s"

#: ../gsearchtool/src/gsearchtool-support.c:1356
msgid " (invalid Unicode)"
msgstr " (μη έγκυρο Unicode)"

#. localizers: opening parentheses to match the "th copy)" string
#: ../gsearchtool/src/gsearchtool-support.c:1445
msgid " ("
msgstr " ("

#. localizers: opening parentheses of the "th copy)" string
#: ../gsearchtool/src/gsearchtool-support.c:1453
#, c-format
msgid " (%d"
msgstr " (%d"

#: ../logview/data/mate-system-log.desktop.in.in.h:1
msgid "Log File Viewer"
msgstr "Παρακολούθηση αρχείων καταγραφών"

#: ../logview/data/mate-system-log.desktop.in.in.h:2
msgid "View or monitor system log files"
msgstr "Εμφάνιση ή παρακολούθηση των αρχείων καταγραφής συστήματος"

#: ../logview/data/org.mate.system-log.gschema.xml.in.h:1
msgid "Log file to open up on startup"
msgstr "Αρχείο καταγραφής για άνοιγμα κατά την εκκίνηση"

#: ../logview/data/org.mate.system-log.gschema.xml.in.h:2
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/log/, ανάλογα με τη διανομή σας."

#: ../logview/data/org.mate.system-log.gschema.xml.in.h:3
msgid "Size of the font used to display the log"
msgstr "Το μέγεθος της γραμματοσειράς απεικόνισης της καταγραφής"

#: ../logview/data/org.mate.system-log.gschema.xml.in.h:4
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.h:5
msgid "Height of the main window in pixels"
msgstr "Το ύψος του κύριου παραθύρου σε εικονοστοιχεία"

#: ../logview/data/org.mate.system-log.gschema.xml.in.h:6
msgid "Specifies the height of the log viewer main window in pixels."
msgstr ""
"Καθορίζει το ύψος του κύριου παραθύρου προβολής καταγραφών σε εικοστοιχεία."

#: ../logview/data/org.mate.system-log.gschema.xml.in.h:7
msgid "Width of the main window in pixels"
msgstr "Πλάτος του κυρίου παραθύρου σε εικονοστοιχεία"

#: ../logview/data/org.mate.system-log.gschema.xml.in.h:8
msgid "Specifies the width of the log viewer main window in pixels."
msgstr ""
"Καθορίζει το πλάτος σε εικονοστοιχεία του κυρίου παραθύρου προβολής "
"καταγραφών"

#: ../logview/data/org.mate.system-log.gschema.xml.in.h:9
msgid "Log files to open up on startup"
msgstr "Αρχείο καταγραφής για άνοιγμα κατά την εκκίνηση"

#: ../logview/data/org.mate.system-log.gschema.xml.in.h:10
msgid ""
"Specifies a list of log files to open up at startup. A default list is "
"created by reading /etc/syslog.conf."
msgstr ""
"Καθορίζει μια λίστα αρχείων καταγραφής που θα ανοίγει κατά την εκκίνηση. Η "
"προεπιλογή  είναι η ανάγνωση του /etc/syslog.conf."

#: ../logview/data/org.mate.system-log.gschema.xml.in.h:11
msgid "List of saved filters"
msgstr "Λίστα αποθηκευμένων φίλτρων"

#: ../logview/data/org.mate.system-log.gschema.xml.in.h:12
msgid "List of saved regexp filters"
msgstr "Λίστα αποθηκευμένων φίλτρων regexp"

#: ../logview/data/logview-filter.ui.h:1
#: ../mate-screenshot/data/mate-screenshot.ui.h:3
msgid "_Name:"
msgstr "Ό_νομα:"

#: ../logview/data/logview-filter.ui.h:2
msgid "_Regular Expression:"
msgstr "_Κανονική έκφραση:"

#: ../logview/data/logview-filter.ui.h:3
msgid "Highlight"
msgstr "Επισήμανση"

#: ../logview/data/logview-filter.ui.h:4
msgid "Hide"
msgstr "Απόκρυψη"

#: ../logview/data/logview-filter.ui.h:5
msgid "Foreground:"
msgstr "Προσκήνιο:"

#: ../logview/data/logview-filter.ui.h:6
msgid "Background:"
msgstr "Παρασκήνιο:"

#: ../logview/data/logview-filter.ui.h:7
msgid "Effect:"
msgstr "Εφέ:"

#: ../logview/src/logview-app.c:377
#, c-format
msgid "Impossible to open the file %s"
msgstr "Αδύνατο το άνοιγμα του αρχείου %s"

#: ../logview/src/logview-filter-manager.c:94
msgid "Filter name is empty!"
msgstr "Το όνομα του φίλτρου είναι άδειο!"

#: ../logview/src/logview-filter-manager.c:107
msgid "Filter name may not contain the ':' character"
msgstr "Το όνομα του φίλτρου δε μπορεί να περιέχει το χαρακτήρα ':'"

#: ../logview/src/logview-filter-manager.c:130
msgid "Regular expression is empty!"
msgstr "Η κανονική έκφραση είναι άδεια!"

#: ../logview/src/logview-filter-manager.c:146
#, c-format
msgid "Regular expression is invalid: %s"
msgstr "Η κανονική έκφραση είναι άκυρη: %s"

#: ../logview/src/logview-filter-manager.c:242
msgid "Please specify either foreground or background color!"
msgstr "Παρακαλώ καθορίστε είτε το χρώμα του προσκηνίου είτε του παρασκηνίου!"

#: ../logview/src/logview-filter-manager.c:296
msgid "Edit filter"
msgstr "Επεξεργασία φίλτρου"

#: ../logview/src/logview-filter-manager.c:296
msgid "Add new filter"
msgstr "Προσθήκη νέου φίλτρου"

#: ../logview/src/logview-filter-manager.c:510
msgid "Filters"
msgstr "Φίλτρα"

#: ../logview/src/logview-findbar.c:172
msgid "_Find:"
msgstr "Εύ_ρεση:"

#: ../logview/src/logview-findbar.c:187
msgid "Find Previous"
msgstr "Εύρεση προηγούμενου"

#: ../logview/src/logview-findbar.c:190
msgid "Find previous occurrence of the search string"
msgstr "Εύρεση της προηγούμενης εμφάνισης του αλφαριθμητικού αναζήτησης"

#: ../logview/src/logview-findbar.c:195
msgid "Find Next"
msgstr "Εύρεση επόμενου"

#: ../logview/src/logview-findbar.c:198
msgid "Find next occurrence of the search string"
msgstr "Εύρεση της επόμενης εμφάνισης του αλφαριθμητικού αναζήτησης"

#: ../logview/src/logview-findbar.c:205
msgid "Clear the search string"
msgstr "Καθαρισμός του ζητούμενου αλφαριθμητικού"

#: ../logview/src/logview-log.c:598
msgid "Error while uncompressing the GZipped log. The file might be corrupt."
msgstr ""
"Σφάλμα κατά την αποσυμπίεση της καταγραφής σε μορφή GZip. Το αρχείο μπορεί "
"να είναι κατεστραμμένο."

#: ../logview/src/logview-log.c:645
msgid "You don't have enough permissions to read the file."
msgstr "Δεν έχετε τα απαραίτητα δικαιώματα για ανάγνωση του αρχείου."

#: ../logview/src/logview-log.c:660
msgid "The file is not a regular file or is not a text file."
msgstr "Το αρχείο δεν είναι κανονικό αρχείο ή δεν είναι αρχείο κειμένου."

#: ../logview/src/logview-log.c:742
msgid "This version of System Log does not support GZipped logs."
msgstr "Αυτή η έκδοση του System Log δεν υποστηρίζει καταγραφές μορφής GZip."

#: ../logview/src/logview-loglist.c:316
msgid "Loading..."
msgstr "Φόρτωση..."

#: ../logview/src/logview-main.c:61
msgid "Show the application's version"
msgstr "Προβολή της έκδοσης της εφαρμογής"

#: ../logview/src/logview-main.c:63
msgid "[LOGFILE...]"
msgstr "[ΑΡΧΕΙΟΚΑΤΑΓΡΑΦΗΣ...]"

#: ../logview/src/logview-main.c:67
msgid " - Browse and monitor logs"
msgstr "- Εξερεύνηση και παρακολούθηση καταγραφών"

#: ../logview/src/logview-main.c:100
msgid "Log Viewer"
msgstr "Παρακολούθηση Καταγραφών"

#: ../logview/src/logview-window.c:38 ../logview/src/logview-window.c:767
msgid "System Log Viewer"
msgstr "Παρακολούθηση καταγραφών συστήματος"

#: ../logview/src/logview-window.c:217
#, c-format
msgid "last update: %s"
msgstr "τελευταία ενημέρωση: %s"

#: ../logview/src/logview-window.c:221
#, c-format
msgid "%d lines (%s) - %s"
msgstr "%d γραμμές (%s) - %s"

#: ../logview/src/logview-window.c:325
msgid "Open Log"
msgstr "Άνοιγμα αρχείου καταγραφής"

#: ../logview/src/logview-window.c:364
#, c-format
msgid "There was an error displaying help: %s"
msgstr "Υπήρξε σφάλμα κατά την εμφάνιση της βοήθειας: %s"

#: ../logview/src/logview-window.c:478
msgid "Wrapped"
msgstr "Αναδιπλωμένο"

#: ../logview/src/logview-window.c:493
#: ../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:773
msgid "A system log viewer for MATE."
msgstr "Μια εφαρμογή προβολής καταγραφών συστήματος για το MATE."

#: ../logview/src/logview-window.c:816
#: ../mate-dictionary/src/gdict-window.c:1287
msgid "_File"
msgstr "_Αρχείο"

#: ../logview/src/logview-window.c:819
msgid "_Filters"
msgstr "_Φίλτρα"

#: ../logview/src/logview-window.c:822
msgid "_Open..."
msgstr "Άν_οιγμα..."

#: ../logview/src/logview-window.c:822
msgid "Open a log from file"
msgstr "Άνοιγμα καταγραφής από αρχείο"

#: ../logview/src/logview-window.c:824
msgid "_Close"
msgstr "_Κλείσιμο"

#: ../logview/src/logview-window.c:824
msgid "Close this log"
msgstr "Κλείσιμο αυτού του αρχείου καταγραφής"

#: ../logview/src/logview-window.c:826
msgid "_Quit"
msgstr "_Έξοδος"

#: ../logview/src/logview-window.c:826
msgid "Quit the log viewer"
msgstr "Κλείσιμο παρακολούθησης καταγραφών συστήματος"

#: ../logview/src/logview-window.c:829
msgid "_Copy"
msgstr "_Αντιγραφή"

#: ../logview/src/logview-window.c:829
msgid "Copy the selection"
msgstr "Αντιγραφή της επιλογής"

#: ../logview/src/logview-window.c:831
#: ../mate-dictionary/src/gdict-window.c:1308
msgid "Select _All"
msgstr "Επιλογή ό_λων"

#: ../logview/src/logview-window.c:831
msgid "Select the entire log"
msgstr "Επιλογή όλου του αρχείου καταγραφής"

#: ../logview/src/logview-window.c:833
msgid "_Find..."
msgstr "Εύ_ρεση"

#: ../logview/src/logview-window.c:833
msgid "Find a word or phrase in the log"
msgstr "Εύρεση μια λέξης ή φράσης στην καταγραφή"

#: ../logview/src/logview-window.c:836
msgid "Bigger text size"
msgstr "Μεγαλύτερο μέγεθος κειμένου"

#: ../logview/src/logview-window.c:838
msgid "Smaller text size"
msgstr "Μικρότερο μέγεθος κειμένου"

#: ../logview/src/logview-window.c:840
msgid "Normal text size"
msgstr "Κανονικό μέγεθος κειμένου"

#: ../logview/src/logview-window.c:843
msgid "Manage Filters"
msgstr "Διαχείριση φίλτρων"

#: ../logview/src/logview-window.c:843
msgid "Manage filters"
msgstr "Διαχείριση φίλτρων"

#: ../logview/src/logview-window.c:846
msgid "Open the help contents for the log viewer"
msgstr ""
"Άνοιγμα των περιεχομένων βοήθειας για την εφαρμογή προβολής καταγραφών"

#: ../logview/src/logview-window.c:848
#: ../mate-dictionary/src/gdict-applet.c:1175
#: ../mate-dictionary/src/gdict-window.c:1343
msgid "_About"
msgstr "Πε_ρί"

#: ../logview/src/logview-window.c:848
msgid "Show the about dialog for the log viewer"
msgstr "Προβολή του διαλόγου Περί για τον επεξεργαστή mateconf"

#: ../logview/src/logview-window.c:853
msgid "_Statusbar"
msgstr "_Γραμμή κατάστασης"

#: ../logview/src/logview-window.c:853
msgid "Show Status Bar"
msgstr "Προβολή γραμμής κατάστασης"

#: ../logview/src/logview-window.c:855
msgid "Side _Pane"
msgstr "Πλευρικό _ταμπλώ"

#: ../logview/src/logview-window.c:855
msgid "Show Side Pane"
msgstr "Προβολή της πλευρικής στηλης"

#: ../logview/src/logview-window.c:857
msgid "Show matches only"
msgstr "Εμφάνιση μόνο ταιριασμάτων"

#: ../logview/src/logview-window.c:857
msgid "Only show lines that match one of the given filters"
msgstr ""
"Να εμφανίζονται μόνο οι γραμμές που ταιριάζουν με ένα από τα φίλτρα που "
"δίνονται"

#: ../logview/src/logview-window.c:989
#, c-format
msgid "Can't read from \"%s\""
msgstr "Αδυναμία ανάγνωσης από «%s»"

#: ../logview/src/logview-window.c:1414
msgid "Version: "
msgstr "Έκδοση : "

#: ../logview/src/logview-window.c:1522
msgid "Could not open the following files:"
msgstr "Αδυναμία ανοίγματος των ακόλουθων αρχείων:"

#: ../mate-dictionary/data/default.desktop.in.h:1
msgid "Default Dictionary Server"
msgstr "Προεπιλεγμένος εξυπηρετητής λεξικού"

#: ../mate-dictionary/data/mate-dictionary.desktop.in.in.h:1
msgid "MATE Dictionary"
msgstr "Λεξικό MATE"

#: ../mate-dictionary/data/mate-dictionary.desktop.in.in.h:2
msgid "Check word definitions and spellings in an online dictionary"
msgstr "Έλεγχος ορισμών λέξεων και ορθογραφίας σε ένα λεξικό του Διαδικτύου"

#: ../mate-dictionary/data/mate-dictionary.appdata.xml.in.h:1
msgid "A dictionary for MATE Desktop"
msgstr "Ένα λεξικό για την επιφάνεια εργασίας MATE"

#: ../mate-dictionary/data/mate-dictionary.appdata.xml.in.h:2
msgid ""
"<p> 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. </p>"
msgstr ""
"<p> Το Λεξικό MATE σας επιτρέπει να αναζητήσετε λέξεις σε λεξικά απευθείας "
"σύνδεσης. Έρχεται προρυθμισμένο με μία λίστα από διακομιστές λεξικών (RFC "
"2229), στους οποίους μπορείτε να προσθέσετε τις δικές σας πηγές, ενώ "
"μπορείτε να επιλέξετε συγκεκριμένους διακομιστές για ένα συγκεκριμένο "
"ερώτημα. <p>"

#: ../mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.in.in.h:1
msgid "Dictionary Applet Factory"
msgstr "Μικροεφαρμογή Εργοστασίου Λεξικού "

#: ../mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.in.in.h:2
msgid "Factory for the dictionary applet"
msgstr "Εργοστάσιο για τη μικροεφαρμογή λεξικού"

#: ../mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.in.in.h:3
msgid "Dictionary Look up"
msgstr "Αναζήτηση Λεξικού"

#: ../mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.in.in.h:4
msgid "Look up words in a dictionary"
msgstr "Αναζήτηση λέξης στο λεξικό"

#: ../mate-dictionary/data/org.mate.dictionary.gschema.xml.in.h:1
msgid "The default database to use"
msgstr "Η προεπιλεγμένη βάση δεδομένων που θα χρησιμοποιηθεί"

#: ../mate-dictionary/data/org.mate.dictionary.gschema.xml.in.h:2
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 θα ψάχνει όλες τις βάσεις σε ένα δοσμένο εξυπηρετητή"

#: ../mate-dictionary/data/org.mate.dictionary.gschema.xml.in.h:3
msgid "The default search strategy to use"
msgstr "Η προεπιλεγμένη στρατηγική αναζήτησης που θα χρησιμοποιηθεί"

#: ../mate-dictionary/data/org.mate.dictionary.gschema.xml.in.h:4
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.h:5
msgid "The font to be used when printing"
msgstr "Η γραμματοσειρά που θα χρησιμοποιείται στην εκτύπωση"

#: ../mate-dictionary/data/org.mate.dictionary.gschema.xml.in.h:6
msgid "The font to be used when printing a definition."
msgstr "Η γραμματοσειρά που θα χρησιμοποιείται στην εκτύπωση ενός ορισμού."

#: ../mate-dictionary/data/org.mate.dictionary.gschema.xml.in.h:7
msgid "The name of the dictionary source used"
msgstr "Το όνομα της πηγής λεξικού που χρησιμοποιείται"

#: ../mate-dictionary/data/org.mate.dictionary.gschema.xml.in.h:8
msgid ""
"The name of the dictionary source used to retrieve the definitions of words."
msgstr ""
"Το όνομα της προεπιλεγμένης πηγής λεξικού για την ανάκτηση των ορισμών των "
"λέξεων."

#: ../mate-dictionary/data/thai.desktop.in.h:1
msgid "Longdo Thai-English Dictionaries"
msgstr "Λεξικά Longdo Thai-English "

#: ../mate-dictionary/libgdict/gdict-client-context.c:283
msgid "Client Name"
msgstr "Όνομα πελάτη"

#: ../mate-dictionary/libgdict/gdict-client-context.c:284
msgid "The name of the client of the context object"
msgstr "Το όνομα του πελάτη για το αντικείμενο περιεχομένου"

#: ../mate-dictionary/libgdict/gdict-client-context.c:297
msgid "Hostname"
msgstr "Όνομα συστήματος"

#: ../mate-dictionary/libgdict/gdict-client-context.c:298
msgid "The hostname of the dictionary server to connect to"
msgstr ""
"Το όνομα συστήματος που χρησιμοποιείται  για τη σύνδεση στον εξυπηρετητή "
"λεξικού."

#: ../mate-dictionary/libgdict/gdict-client-context.c:311
msgid "Port"
msgstr "Θύρα"

#: ../mate-dictionary/libgdict/gdict-client-context.c:312
msgid "The port of the dictionary server to connect to"
msgstr "Η θύρα που χρησιμοποιείται για την σύνδεση στον εξυπηρετητή λεξικού."

#: ../mate-dictionary/libgdict/gdict-client-context.c:327
msgid "Status"
msgstr "Κατάσταση"

#: ../mate-dictionary/libgdict/gdict-client-context.c:328
msgid "The status code as returned by the dictionary server"
msgstr "Ο κωδικός κατάστασης που επιστρέφει ο εξυπηρετητής λεξικού"

#: ../mate-dictionary/libgdict/gdict-client-context.c:777
#, c-format
msgid "No connection to the dictionary server at '%s:%d'"
msgstr "Δεν υπάρχει σύνδεση  για τον εξυπηρετητή λεξικού σε '%s:%d'"

#: ../mate-dictionary/libgdict/gdict-client-context.c:1060
#, c-format
msgid "Lookup failed for hostname '%s': no suitable resources found"
msgstr ""
"Η αναζήτηση απέτυχε για το όνομα συστήματος  '%s': δεν βρέθηκε κατάλληλοι "
"πόροι"

#: ../mate-dictionary/libgdict/gdict-client-context.c:1091
#, c-format
msgid "Lookup failed for host '%s': %s"
msgstr "Η αναζήτηση απέτυχε για το σύστημα '%s': %s"

#: ../mate-dictionary/libgdict/gdict-client-context.c:1125
#, c-format
msgid "Lookup failed for host '%s': host not found"
msgstr "Η αναζήτηση απέτυχε για το σύστημα  '%s': το σύστημα δεν βρέθηκε"

#: ../mate-dictionary/libgdict/gdict-client-context.c:1177
#, 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:1196
#, c-format
msgid ""
"Unable to parse the dictionary server reply\n"
": '%s'"
msgstr ""
"Αδυναμία ανάλυσης της απόκρισης του εξυπηρετητή λεξικού\n"
": '%s'"

#: ../mate-dictionary/libgdict/gdict-client-context.c:1225
#, c-format
msgid "No definitions found for '%s'"
msgstr "Δεν βρέθηκαν ορισμοί για '%s'"

#: ../mate-dictionary/libgdict/gdict-client-context.c:1240
#, c-format
msgid "Invalid database '%s'"
msgstr "Μη έγκυρη βάση δεδομένων  '%s'"

#: ../mate-dictionary/libgdict/gdict-client-context.c:1255
#, c-format
msgid "Invalid strategy '%s'"
msgstr "Μη έγκυρη στρατηγική '%s'"

#: ../mate-dictionary/libgdict/gdict-client-context.c:1270
#, c-format
msgid "Bad command '%s'"
msgstr "Εσφαλμένη εντολή '%s'"

#: ../mate-dictionary/libgdict/gdict-client-context.c:1285
#, c-format
msgid "Bad parameters for command '%s'"
msgstr "Εσφαλμένες παράμετροι για την εντολή '%s'"

#: ../mate-dictionary/libgdict/gdict-client-context.c:1300
#, c-format
msgid "No databases found on dictionary server at '%s'"
msgstr "Δεν βρέθηκαν βάσεις δεδομένων στον εξυπηρετητή λεξικού σε '%s'"

#: ../mate-dictionary/libgdict/gdict-client-context.c:1315
#, c-format
msgid "No strategies found on dictionary server at '%s'"
msgstr "Δεν βρέθηκαν στρατηγικές στον εξυπηρετητή λεξικού στο '%s'"

#: ../mate-dictionary/libgdict/gdict-client-context.c:1740
#, c-format
msgid "Connection failed to the dictionary server at %s:%d"
msgstr "Αποτυχία σύνδεσης στον εξυπηρετητή λεξικού σε %s:%d"

#: ../mate-dictionary/libgdict/gdict-client-context.c:1779
#, c-format
msgid ""
"Error while reading reply from server:\n"
"%s"
msgstr ""
"Σφάλμα κατά την ανάγνωση απάντησης από εξυπηρετητή:\n"
"%s"

#: ../mate-dictionary/libgdict/gdict-client-context.c:1852
#, c-format
msgid "Connection timeout for the dictionary server at '%s:%d'"
msgstr "Λήξη ορίου χρόνου σύνδεσης στον εξυπηρετητή λεξικού σε '%s:%d'"

#: ../mate-dictionary/libgdict/gdict-client-context.c:1886
#, c-format
msgid "No hostname defined for the dictionary server"
msgstr "Δεν ορίσθηκε όνομα συστήματος για τον εξυπηρετητή λεξικού"

#: ../mate-dictionary/libgdict/gdict-client-context.c:1922
#: ../mate-dictionary/libgdict/gdict-client-context.c:1937
#, c-format
msgid "Unable to create socket"
msgstr "Αδύνατη η δημιουργία socket"

#: ../mate-dictionary/libgdict/gdict-client-context.c:1963
#, c-format
msgid "Unable to set the channel as non-blocking: %s"
msgstr "Αδυναμία ορισμού του καναλιού ως μη-φραγμένο: %s"

#: ../mate-dictionary/libgdict/gdict-client-context.c:1978
#, c-format
msgid "Unable to connect to the dictionary server at '%s:%d'"
msgstr "Αδυναμία σύνδεσης  στον εξυπηρετητή λεξικού σε  '%s:%d'"

#: ../mate-dictionary/libgdict/gdict-context.c:218
msgid "Local Only"
msgstr "Μόνο τοπικά"

#: ../mate-dictionary/libgdict/gdict-context.c:219
msgid "Whether the context uses only local dictionaries or not"
msgstr "Αν θα χρησιμοποιούνται ή όχι μόνο τοπικά λεξικά"

#: ../mate-dictionary/libgdict/gdict-database-chooser.c:379
msgid "Reload the list of available databases"
msgstr "Επαναφόρτωση της λίστας των διαθέσιμων βάσεων δεδομένων"

#: ../mate-dictionary/libgdict/gdict-database-chooser.c:391
msgid "Clear the list of available databases"
msgstr "Καθαρισμός της λίστας των διαθέσιμων βάσεων δεδομένων"

#: ../mate-dictionary/libgdict/gdict-database-chooser.c:841
#: ../mate-dictionary/libgdict/gdict-speller.c:773
#: ../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:731
msgid "Another search is in progress"
msgstr "Μια άλλη αναζήτηση είναι σε εξέλιξη"

#: ../mate-dictionary/libgdict/gdict-defbox.c:2528
#: ../mate-dictionary/libgdict/gdict-speller.c:732
msgid "Please wait until the current search ends."
msgstr "Παρακαλώ περιμένετε μέχρι να τελειώσει η τρέχουσα αναζήτηση."

#: ../mate-dictionary/libgdict/gdict-defbox.c:2567
msgid "Error while retrieving the definition"
msgstr "Σφάλμα κατά τη λήψη του ορισμού"

#: ../mate-dictionary/libgdict/gdict-source.c:232
msgid "Filename"
msgstr "Όνομα αρχείου"

#: ../mate-dictionary/libgdict/gdict-source.c:233
msgid "The filename used by this dictionary source"
msgstr "Το όνομα αρχείου που χρησιμοποιείται από αυτή τη πηγή λεξικού."

#: ../mate-dictionary/libgdict/gdict-source.c:247
msgid "The display name of this dictionary source"
msgstr "Το όνομα εμφάνισης αυτής της πηγής λεξικού."

#: ../mate-dictionary/libgdict/gdict-source.c:260
msgid "Description"
msgstr "Περιγραφή"

#: ../mate-dictionary/libgdict/gdict-source.c:261
msgid "The description of this dictionary source"
msgstr "Περιγραφή αυτής της πηγής λεξικού"

#: ../mate-dictionary/libgdict/gdict-source.c:274
#: ../mate-dictionary/libgdict/gdict-speller.c:375
msgid "Database"
msgstr "Βάση δεδομένων"

#: ../mate-dictionary/libgdict/gdict-source.c:275
msgid "The default database of this dictionary source"
msgstr "Η προεπιλεγμένη βάσης δεδομένων αυτής της πηγής λεξικού"

#: ../mate-dictionary/libgdict/gdict-source.c:288
#: ../mate-dictionary/libgdict/gdict-speller.c:382
msgid "Strategy"
msgstr "Στρατηγική"

#: ../mate-dictionary/libgdict/gdict-source.c:289
msgid "The default strategy of this dictionary source"
msgstr "Η προεπιλεγμένη στρατηγική αυτής της πηγής λεξικού"

#: ../mate-dictionary/libgdict/gdict-source.c:302
msgid "Transport"
msgstr "Μεταφορά"

#: ../mate-dictionary/libgdict/gdict-source.c:303
msgid "The transport mechanism used by this dictionary source"
msgstr "Ο μηχανισμός μεταφοράς που χρησιμοποιείται από τη πηγή λεξικού."

#: ../mate-dictionary/libgdict/gdict-source.c:317
#: ../mate-dictionary/libgdict/gdict-speller.c:368
msgid "Context"
msgstr "Περιεχόμενα"

#: ../mate-dictionary/libgdict/gdict-source.c:318
msgid "The GdictContext bound to this source"
msgstr "Το GdictContext που έχει συνδεθεί σε αυτή τη πηγή"

#: ../mate-dictionary/libgdict/gdict-source.c:413
#, c-format
msgid "Invalid transport type '%d'"
msgstr "Μη έγκυρος τύπος μεταφοράς '%d'"

#: ../mate-dictionary/libgdict/gdict-source.c:441
#, c-format
msgid "No '%s' group found inside the dictionary source definition"
msgstr "Δεν βρέθηκε ομάδα '%s' μέσα στον ορισμό πηγής λεξικού"

#: ../mate-dictionary/libgdict/gdict-source.c:457
#: ../mate-dictionary/libgdict/gdict-source.c:481
#: ../mate-dictionary/libgdict/gdict-source.c:505
#: ../mate-dictionary/libgdict/gdict-source.c:530
#, c-format
msgid "Unable to get the '%s' key inside the dictionary source definition: %s"
msgstr "Αδυναμία λήψης του κλειδιού '%s' μέσα στον ορισμό πηγής λεξικού: %s"

#: ../mate-dictionary/libgdict/gdict-source.c:555
#, c-format
msgid ""
"Unable to get the '%s' key inside the dictionary source definition file: %s"
msgstr ""
"Αδυναμία λήψης του κλειδιού '%s' μέσα στο αρχείο ορισμού πηγής λεξικού: %s"

#: ../mate-dictionary/libgdict/gdict-source.c:741
#, c-format
msgid "Dictionary source does not have name"
msgstr "Η πηγή λεξικού δεν έχει όνομα"

#: ../mate-dictionary/libgdict/gdict-source.c:750
#, c-format
msgid "Dictionary source '%s' has invalid transport '%s'"
msgstr "Η πηγή λεξικού '%s' έχει μη έγκυρη μεταφορά '%s'"

#: ../mate-dictionary/libgdict/gdict-source-chooser.c:283
msgid "Reload the list of available sources"
msgstr "Επαναφόρτωση της λίστας των διαθέσιμων πηγών"

#: ../mate-dictionary/libgdict/gdict-source-loader.c:171
msgid "Paths"
msgstr "Διαδρομές"

#: ../mate-dictionary/libgdict/gdict-source-loader.c:172
msgid "Search paths used by this object"
msgstr "Διαδρομές αναζήτησης που χρησιμοποιούνται από αυτό το αντικείμενο"

#: ../mate-dictionary/libgdict/gdict-source-loader.c:184
msgid "Sources"
msgstr "Πηγές"

#: ../mate-dictionary/libgdict/gdict-source-loader.c:185
msgid "Dictionary sources found"
msgstr "Βρέθηκαν πηγές λεξικού"

#: ../mate-dictionary/libgdict/gdict-speller.c:347
msgid "Clear the list of similar words"
msgstr "Καθαρισμός λίστας παρόμοιων λέξεων"

#: ../mate-dictionary/libgdict/gdict-speller.c:369
msgid "The GdictContext object used to get the word definition"
msgstr ""
"Το αντικείμενο GdictContext που χρησιμοποιείται για τη λήψη του ορισμού "
"λέξης"

#: ../mate-dictionary/libgdict/gdict-speller.c:376
msgid "The database used to query the GdictContext"
msgstr "Η βάση δεδομένων που χρησιμοποιείται για την αναζήτηση GdictContext"

#: ../mate-dictionary/libgdict/gdict-speller.c:383
msgid "The strategy used to query the GdictContext"
msgstr "Η στρατηγική που χρησιμοποιείται για την αναζήτηση GdictContext"

#: ../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 "Σημαίες αποσφαλμάτωσης GDict που θα οριστούν"

#: ../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 "Σημαίες αποσφαλμάτωσης GDict που θα ακυρωθούν"

#: ../mate-dictionary/libgdict/gdict-utils.c:157
msgid "GDict Options"
msgstr "Επιλογές GDict"

#: ../mate-dictionary/libgdict/gdict-utils.c:158
msgid "Show GDict Options"
msgstr "Εμφάνιση επιλογών GDict"

#: ../mate-dictionary/src/gdict-about.c:58
#: ../mate-dictionary/src/gdict-applet.c:574
msgid "Look up words in dictionaries"
msgstr "Αναζήτηση λέξεων στα λεξικά"

#: ../mate-dictionary/src/gdict-about.c:79
#: ../mate-dictionary/src/gdict-app.c:371
#: ../mate-dictionary/src/gdict-window.c:607
#: ../mate-dictionary/src/gdict-window.c:1896
msgid "Dictionary"
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:217
#, 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:231
#, c-format
msgid "Error: %s\n"
msgstr "Σφάλμα: %s\n"

#: ../mate-dictionary/src/gdict-app.c:257
#, c-format
msgid "See mate-dictionary --help for usage\n"
msgstr "Βλέπε mate-dictionary --help για χρήση\n"

#: ../mate-dictionary/src/gdict-app.c:270
msgid "Unable to find a suitable dictionary source"
msgstr "Αδυναμία εύρεσης μια κατάλληλης πηγής λεξικού"

#: ../mate-dictionary/src/gdict-app.c:304
#, c-format
msgid ""
"Error while looking up the definition of \"%s\":\n"
"%s"
msgstr ""
"Σφάλμα κατά την αναζήτηση του ορισμού του \"%s\":\n"
"%s"

#: ../mate-dictionary/src/gdict-app.c:333
#: ../mate-dictionary/src/gdict-app.c:343
msgid "Words to look up"
msgstr "Λέξεις για αναζήτηση"

#: ../mate-dictionary/src/gdict-app.c:333
#: ../mate-dictionary/src/gdict-app.c:335
#: ../mate-dictionary/src/gdict-app.c:343
msgid "word"
msgstr "λέξη"

#: ../mate-dictionary/src/gdict-app.c:335
msgid "Words to match"
msgstr "Λέξεις για ταίριασμα"

#: ../mate-dictionary/src/gdict-app.c:337
msgid "Dictionary source to use"
msgstr "Η πηγή λεξικού που θα χρησιμοποιηθεί"

#: ../mate-dictionary/src/gdict-app.c:337
msgid "source"
msgstr "πηγή"

#: ../mate-dictionary/src/gdict-app.c:339
msgid "Print result to the console"
msgstr "Εκτύπωση αποτελέσματος στη κονσόλα"

#: ../mate-dictionary/src/gdict-app.c:341
msgid "Database to use"
msgstr "Βάση δεδομένων που θα χρησιμοποιηθεί"

#: ../mate-dictionary/src/gdict-app.c:341
msgid "db"
msgstr "db"

#. create the new option context
#: ../mate-dictionary/src/gdict-app.c:353
msgid " - Look up words in dictionaries"
msgstr "- Αναζήτηση λέξης στα λεξικά"

#: ../mate-dictionary/src/gdict-applet.c:206
#: ../mate-dictionary/src/gdict-window.c:964
msgid "Save a Copy"
msgstr "Αποθήκευση αντιγράφου"

#: ../mate-dictionary/src/gdict-applet.c:216
#: ../mate-dictionary/src/gdict-window.c:974
msgid "Untitled document"
msgstr "Ανώνυμο έγγραφο"

#: ../mate-dictionary/src/gdict-applet.c:237
#: ../mate-dictionary/src/gdict-window.c:995
#, c-format
msgid "Error while writing to '%s'"
msgstr "Σφάλμα κατά την εγγραφή στο '%s'"

#: ../mate-dictionary/src/gdict-applet.c:357
msgid "Clear the definitions found"
msgstr "Εκκαθάριση των ορισμών που βρέθηκαν"

#: ../mate-dictionary/src/gdict-applet.c:359
msgid "Clear definition"
msgstr "Εκκαθάριση ορισμού λέξης"

#: ../mate-dictionary/src/gdict-applet.c:360
msgid "Clear the text of the definition"
msgstr "Εκκαθάριση του κειμένου του ορισμού"

#: ../mate-dictionary/src/gdict-applet.c:367
msgid "Print the definitions found"
msgstr "Εκτύπωση των ορισμών που βρέθηκαν"

#: ../mate-dictionary/src/gdict-applet.c:369
msgid "Print definition"
msgstr "Εκτύπωση ορισμού λέξης"

#: ../mate-dictionary/src/gdict-applet.c:370
msgid "Print the text of the definition"
msgstr "Εκτύπωση του κειμένου του ορισμού"

#: ../mate-dictionary/src/gdict-applet.c:377
msgid "Save the definitions found"
msgstr "Αποθήκευση των ορισμών που βρέθηκαν"

#: ../mate-dictionary/src/gdict-applet.c:379
msgid "Save definition"
msgstr "Αποθήκευση ορισμού"

#: ../mate-dictionary/src/gdict-applet.c:380
msgid "Save the text of the definition to a file"
msgstr "Αποθήκευση του κειμένου του ορισμού σε αρχείο"

#: ../mate-dictionary/src/gdict-applet.c:517
msgid "Click to view the dictionary window"
msgstr "Κάντε κλικ για να δείτε το παράθυρο του λεξικού"

#: ../mate-dictionary/src/gdict-applet.c:519
msgid "Toggle dictionary window"
msgstr "Εναλλαγή παραθύρου λεξικού"

#: ../mate-dictionary/src/gdict-applet.c:520
msgid "Show or hide the definition window"
msgstr "Προβολή η απόκρυψη του παραθύρου του ορισμού"

#: ../mate-dictionary/src/gdict-applet.c:571
msgid "Type the word you want to look up"
msgstr "Εισάγετε τη λέξη που θέλετε να αναζητήσετε"

#: ../mate-dictionary/src/gdict-applet.c:573
msgid "Dictionary entry"
msgstr "Λήμμα λεξικού"

#: ../mate-dictionary/src/gdict-applet.c:702
#: ../mate-dictionary/src/gdict-window.c:1106
msgid "Dictionary Preferences"
msgstr "Προτιμήσεις λεξικού"

#: ../mate-dictionary/src/gdict-applet.c:726
#: ../mate-dictionary/src/gdict-pref-dialog.c:495
#: ../mate-dictionary/src/gdict-source-dialog.c:478
#: ../mate-dictionary/src/gdict-window.c:1253
#, c-format
msgid "There was an error while displaying help"
msgstr "Υπήρξε σφάλμα κατά την εμφάνιση της βοήθειας"

#: ../mate-dictionary/src/gdict-applet.c:865
#: ../mate-dictionary/src/gdict-window.c:522
#, c-format
msgid "No dictionary source available with name '%s'"
msgstr "Δεν βρέθηκε διαθέσιμη πηγή λεξικού με το όνομα  '%s'"

#: ../mate-dictionary/src/gdict-applet.c:869
#: ../mate-dictionary/src/gdict-window.c:526
msgid "Unable to find dictionary source"
msgstr "Αδυναμία εύρεσης πηγής λεξικού."

#: ../mate-dictionary/src/gdict-applet.c:885
#: ../mate-dictionary/src/gdict-window.c:542
#, c-format
msgid "No context available for source '%s'"
msgstr "Δεν υπάρχει διαθέσιμο περιεχόμενο για τη πηγή '%s'"

#: ../mate-dictionary/src/gdict-applet.c:889
#: ../mate-dictionary/src/gdict-window.c:546
msgid "Unable to create a context"
msgstr "Αδύνατη η δημιουργία περιεχομένου"

#: ../mate-dictionary/src/gdict-applet.c:1157
msgid "_Look Up Selected Text"
msgstr "Αναζήτηση επι_λεγμένου κειμένου"

#: ../mate-dictionary/src/gdict-applet.c:1160
msgid "Cl_ear"
msgstr "Ε_κκαθάριση"

#: ../mate-dictionary/src/gdict-applet.c:1163
msgid "_Print"
msgstr "Εκτύ_πωση"

#: ../mate-dictionary/src/gdict-applet.c:1166
msgid "_Save"
msgstr "Απο_θήκευση"

#: ../mate-dictionary/src/gdict-applet.c:1169
msgid "Preferences"
msgstr "Προτιμήσεις"

#: ../mate-dictionary/src/gdict-common.c:80
#, c-format
msgid "Unable to rename file '%s' to '%s': %s"
msgstr "Αδύνατη η μετονομασία του αρχείου '%s' σε '%s': %s"

#: ../mate-dictionary/src/gdict-common.c:104
#: ../mate-dictionary/src/gdict-common.c:127
#, c-format
msgid "Unable to create the data directory '%s': %s"
msgstr "Αδυναμία δημιουργίας του καταλόγου δεδομένων '%s': %s"

#: ../mate-dictionary/src/gdict-pref-dialog.c:240
#: ../mate-dictionary/src/gdict-pref-dialog.c:429
msgid "Edit Dictionary Source"
msgstr "Επεξεργασία πηγής λεξικού"

#: ../mate-dictionary/src/gdict-pref-dialog.c:304
msgid "Add Dictionary Source"
msgstr "Προσθήκης πηγής λεξικού"

#: ../mate-dictionary/src/gdict-pref-dialog.c:349
#, c-format
msgid "Remove \"%s\"?"
msgstr "Διαγραφή \"%s\";"

#: ../mate-dictionary/src/gdict-pref-dialog.c:351
msgid "This will permanently remove the dictionary source from the list."
msgstr "Αυτό θα διαγράψει οριστικά την πηγή λεξικού από τη λίστα."

#: ../mate-dictionary/src/gdict-pref-dialog.c:381
#, c-format
msgid "Unable to remove source '%s'"
msgstr "Αδύνατη η απομάκρυνση πηγής '%s'"

#: ../mate-dictionary/src/gdict-pref-dialog.c:642
msgid "Add a new dictionary source"
msgstr "Προσθήκη μιας νέας πηγής λεξικού"

#: ../mate-dictionary/src/gdict-pref-dialog.c:648
msgid "Remove the currently selected dictionary source"
msgstr "Απομάκρυνση της επιλεγμένης πηγής λεξικού"

#: ../mate-dictionary/src/gdict-pref-dialog.c:654
msgid "Edit the currently selected dictionary source"
msgstr "Επεξεργασία της επιλεγμένης πηγής λεξικού"

#: ../mate-dictionary/src/gdict-pref-dialog.c:662
msgid "Set the font used for printing the definitions"
msgstr "Ορισμός της γραμματοσειράς εκτύπωσης των ορισμών"

#: ../mate-dictionary/src/gdict-print.c:241
#: ../mate-dictionary/src/gdict-print.c:305
#, c-format
msgid "Unable to display the preview: %s"
msgstr "Αδύνατη η προβολή της προεπισκόπησης: %s"

#: ../mate-dictionary/src/gdict-source-dialog.c:340
#: ../mate-dictionary/src/gdict-source-dialog.c:433
msgid "Unable to create a source file"
msgstr "Αδύνατη η δημιουργία ενός αρχείου πηγής"

#: ../mate-dictionary/src/gdict-source-dialog.c:358
#: ../mate-dictionary/src/gdict-source-dialog.c:451
msgid "Unable to save source file"
msgstr "Αδυναμία αποθήκευσης αρχείου πηγής"

#: ../mate-dictionary/src/gdict-window.c:317
#, c-format
msgid "Searching for '%s'..."
msgstr "Αναζήτηση για '%s'..."

#: ../mate-dictionary/src/gdict-window.c:349
#: ../mate-dictionary/src/gdict-window.c:406
msgid "No definitions found"
msgstr "Δε βρέθηκαν ορισμοί"

#: ../mate-dictionary/src/gdict-window.c:351
#, c-format
msgid "A definition found"
msgid_plural "%d definitions found"
msgstr[0] ""
msgstr[1] ""

#: ../mate-dictionary/src/gdict-window.c:605
#, c-format
msgid "%s - Dictionary"
msgstr "%s - Λεξικό"

#: ../mate-dictionary/src/gdict-window.c:1290
msgid "_Go"
msgstr "_Μετάβαση"

#. File menu
#: ../mate-dictionary/src/gdict-window.c:1294
msgid "_New"
msgstr "_Νέο"

#: ../mate-dictionary/src/gdict-window.c:1295
msgid "New look up"
msgstr "Νέα αναζήτηση"

#: ../mate-dictionary/src/gdict-window.c:1296
msgid "_Save a Copy..."
msgstr "Απο_θήκευση ενός αντιγράφου..."

#: ../mate-dictionary/src/gdict-window.c:1298
msgid "P_review..."
msgstr "Π_ροεπισκόπηση..."

#: ../mate-dictionary/src/gdict-window.c:1299
msgid "Preview this document"
msgstr "Προεπισκόπηση του εγγράφου"

#: ../mate-dictionary/src/gdict-window.c:1300
msgid "_Print..."
msgstr "Εκτύ_πωση..."

#: ../mate-dictionary/src/gdict-window.c:1301
msgid "Print this document"
msgstr "Εκτύπωση αυτού του εγγράφου"

#: ../mate-dictionary/src/gdict-window.c:1311
msgid "Find a word or phrase in the document"
msgstr "Εύρεση μίας λέξης ή μίας φράσης μέσα στη σελίδα"

#: ../mate-dictionary/src/gdict-window.c:1313
msgid "Find Ne_xt"
msgstr "Εύρεση ε_πόμενου"

#: ../mate-dictionary/src/gdict-window.c:1315
msgid "Find Pre_vious"
msgstr "Εύρεση προη_γούμενου"

#: ../mate-dictionary/src/gdict-window.c:1317
msgid "_Preferences"
msgstr "_Προτιμήσεις"

#. Go menu
#: ../mate-dictionary/src/gdict-window.c:1321
msgid "_Previous Definition"
msgstr "_Προηγούμενος ορισμός"

#: ../mate-dictionary/src/gdict-window.c:1322
msgid "Go to the previous definition"
msgstr "Μετάβαση στο προηγούμενο ορισμό"

#: ../mate-dictionary/src/gdict-window.c:1323
msgid "_Next Definition"
msgstr "Επόμε_νος ορισμός"

#: ../mate-dictionary/src/gdict-window.c:1324
msgid "Go to the next definition"
msgstr "Μετάβαση στον επόμενο ορισμό"

#: ../mate-dictionary/src/gdict-window.c:1325
msgid "_First Definition"
msgstr "Π_ρώτος ορισμός"

#: ../mate-dictionary/src/gdict-window.c:1326
msgid "Go to the first definition"
msgstr "Μετάβαση στο πρώτο ορισμό"

#: ../mate-dictionary/src/gdict-window.c:1327
msgid "_Last Definition"
msgstr "_Τελευταίος ορισμός"

#: ../mate-dictionary/src/gdict-window.c:1328
msgid "Go to the last definition"
msgstr "Μετάβαση στον τελευταίο ορισμό"

#. View menu
#: ../mate-dictionary/src/gdict-window.c:1331
msgid "Similar _Words"
msgstr "Παρόμοιες _λέξεις"

#: ../mate-dictionary/src/gdict-window.c:1333
msgid "Dictionary Sources"
msgstr "Πηγές λεξικού"

#: ../mate-dictionary/src/gdict-window.c:1335
msgid "Available _Databases"
msgstr "Διαθέσιμες _βάσεις δεδομένων"

#: ../mate-dictionary/src/gdict-window.c:1337
msgid "Available St_rategies"
msgstr "Διαθέσιμες _στρατηγικές"

#. View menu
#: ../mate-dictionary/src/gdict-window.c:1354
msgid "_Sidebar"
msgstr "Πλευρική _στήλη"

#: ../mate-dictionary/src/gdict-window.c:1356
msgid "S_tatusbar"
msgstr "_Γραμμή κατάστασης"

#: ../mate-dictionary/src/gdict-window.c:1421
#, c-format
msgid "Dictionary source `%s' selected"
msgstr "Επιλέχθηκε`%s' πηγή λεξικού"

#: ../mate-dictionary/src/gdict-window.c:1442
#, c-format
msgid "Strategy `%s' selected"
msgstr "Επιλέχθηκε η στρατηγική `%s' "

#: ../mate-dictionary/src/gdict-window.c:1462
#, c-format
msgid "Database `%s' selected"
msgstr "Επιλέχθηκε η βάση δεδομένων %s'"

#: ../mate-dictionary/src/gdict-window.c:1482
#, c-format
msgid "Word `%s' selected"
msgstr "Επιλέχθηκε η λέξη `%s'"

#. speller
#: ../mate-dictionary/src/gdict-window.c:1507
msgid "Double-click on the word to look up"
msgstr "Διπλό κλικ στη λέξη που θέλετε να αναζητήσετε"

#. strat-chooser
#: ../mate-dictionary/src/gdict-window.c:1513
msgid "Double-click on the matching strategy to use"
msgstr "Διπλό κλικ στη στρατηγική που θα χρησιμοποιηθεί"

#. source-chooser
#: ../mate-dictionary/src/gdict-window.c:1518
msgid "Double-click on the source to use"
msgstr "Διπλό κλικ στην πηγή που θα χρησιμοποιηθεί"

#. db-chooser
#: ../mate-dictionary/src/gdict-window.c:1527
msgid "Double-click on the database to use"
msgstr "Διπλό κλικ στη βάση δεδομένων που θα χρησιμοποιηθεί"

#: ../mate-dictionary/src/gdict-window.c:1702
msgid "Look _up:"
msgstr "_Αναζήτηση:"

#: ../mate-dictionary/src/gdict-window.c:1777
msgid "Similar words"
msgstr "Παρόμοιες λέξεις"

#: ../mate-dictionary/src/gdict-window.c:1790
msgid "Available dictionaries"
msgstr "Διαθέσιμα λεξικά"

#: ../mate-dictionary/src/gdict-window.c:1808
msgid "Available strategies"
msgstr "Διαθέσιμες στρατηγικές"

#: ../mate-dictionary/src/gdict-window.c:1824
msgid "Dictionary sources"
msgstr "Πηγές λεξικού"

#: ../mate-dictionary/data/mate-dictionary-preferences.ui.h:1
msgid "_Select a dictionary source for looking up words:"
msgstr "Επι_λέξτε μια πηγή λεξικού για την αναζήτηση λέξεων:"

#: ../mate-dictionary/data/mate-dictionary-preferences.ui.h:2
#: ../mate-dictionary/data/mate-dictionary-source.ui.h:6
msgid "Source"
msgstr "Πηγή"

#: ../mate-dictionary/data/mate-dictionary-preferences.ui.h:3
msgid "_Print font:"
msgstr "Γραμματοσειρά εκτύ_πωσης:"

#: ../mate-dictionary/data/mate-dictionary-preferences.ui.h:4
msgid "Print"
msgstr "Εκτύπωση"

#: ../mate-dictionary/data/mate-dictionary-source.ui.h:1
msgid "_Description:"
msgstr "_Περιγραφή:"

#: ../mate-dictionary/data/mate-dictionary-source.ui.h:2
msgid "_Transport:"
msgstr "Μετα_φορά:"

#: ../mate-dictionary/data/mate-dictionary-source.ui.h:3
msgid "H_ostname:"
msgstr "Όνομα _συστήματος"

#: ../mate-dictionary/data/mate-dictionary-source.ui.h:5
msgid "Source Name"
msgstr "Όνομα πηγής"

#: ../mate-dictionary/data/mate-dictionary-source.ui.h:7
msgid "Dictionaries"
msgstr "Λεξικά"

#: ../mate-dictionary/data/mate-dictionary-source.ui.h:8
msgid "Strategies"
msgstr "Στρατηγικές"

#: ../mate-screenshot/data/mate-screenshot.appdata.xml.in.h:1
msgid "A screenshot utility for MATE Desktop"
msgstr "Μιαεφαρμογή για λήψη στιγμιοτύπου οθόνης για το MATE"

#: ../mate-screenshot/data/mate-screenshot.appdata.xml.in.h:2
msgid ""
"<p> 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. </p>"
msgstr ""
"</p> Το Στιγμιότυπο MATE είναι ένα απλό εργαλείο το οποίο σας επιτρέπει να "
"συλλάβετε στιγμιότυπα της επιφάνειας εργασίας ή παράθυρα εφαρμογών. Μπορείτε"
" να επιλέξετε να τα αντιγράψετε στο πρόχειρο του συστήματος ή να τα "
"αποθηκεύσετε σε μια Φορητή Διαδικτυακή Γραφική (.png) μορφή εικόνας. </p>"

#: ../mate-screenshot/data/mate-screenshot.desktop.in.h:1
#: ../mate-screenshot/src/mate-screenshot.c:518
#: ../mate-screenshot/src/mate-screenshot.c:526
msgid "Take Screenshot"
msgstr "Λήψη στιγμιότυπου οθόνης"

#: ../mate-screenshot/data/mate-screenshot.desktop.in.h:2
msgid "Save images of your desktop or individual windows"
msgstr "Αποθήκευση εικόνων της επιφάνειας εργασίας σας ή ξεχωριστών παραθύρων"

#: ../mate-screenshot/data/mate-screenshot.ui.h:1
msgid "Save Screenshot"
msgstr "Αποθήκευση στιγμιότυπου οθόνης"

#: ../mate-screenshot/data/mate-screenshot.ui.h:2
msgid "C_opy to Clipboard"
msgstr "Αντι_γραφή στο πρόχειρο"

#: ../mate-screenshot/data/mate-screenshot.ui.h:4
msgid "Save in _folder:"
msgstr "Αποθήκευση στο _φάκελο:"

#: ../mate-screenshot/data/org.mate.screenshot.gschema.xml.in.h:1
msgid "Screenshot delay"
msgstr "Καθυστέρηση στιγμιότυπου οθόνης"

#: ../mate-screenshot/data/org.mate.screenshot.gschema.xml.in.h:2
msgid "The number of seconds to wait before taking the screenshot."
msgstr "Ο αριθμός των δευτερολέπτων αναμονής πριν τη λήψη στιγμιοτύπου οθόνης"

#: ../mate-screenshot/data/org.mate.screenshot.gschema.xml.in.h:3
msgid "Screenshot directory"
msgstr "Κατάλογος στιγμιότυπου οθόνης"

#: ../mate-screenshot/data/org.mate.screenshot.gschema.xml.in.h:4
msgid "The directory the last screenshot was saved in."
msgstr "Ο κατάλογος που την προηγούμενη φορά αποθηκεύτηκε στιγμιότυπο οθόνης"

#: ../mate-screenshot/data/org.mate.screenshot.gschema.xml.in.h:5
msgid "Include Border"
msgstr "Να συμπεριλαμβάνεται το περίγραμμα"

#: ../mate-screenshot/data/org.mate.screenshot.gschema.xml.in.h:6
msgid "Include the window manager border along with the screenshot"
msgstr ""
"Να συμπεριλαμβάνεται το περίγραμμα του διαχειριστή παραθύρων μαζί με το "
"στιγμιότυπο οθόνης"

#: ../mate-screenshot/data/org.mate.screenshot.gschema.xml.in.h:7
msgid "Include Pointer"
msgstr "Να συμπεριλαμβάνεται ο δείκτης"

#: ../mate-screenshot/data/org.mate.screenshot.gschema.xml.in.h:8
msgid "Include the pointer in the screenshot"
msgstr "Να συμπεριλαμβάνεται ο δείκτης στο στιγμιότυπο οθόνης"

#: ../mate-screenshot/data/org.mate.screenshot.gschema.xml.in.h:9
msgid "Border Effect"
msgstr "Εφέ περιγράμματος"

#: ../mate-screenshot/data/org.mate.screenshot.gschema.xml.in.h:10
msgid ""
"Effect to add to the outside of a border. Possible values are \"shadow\", "
"\"none\", and \"border\"."
msgstr ""
"Εφέ για προσθήκη στο εξωτερικό του περιγράμματος. Πιθανές τιμές είναι  "
"\"σκιά\", \"τίποτα\", και \"περίγραμμα\"."

#: ../mate-screenshot/src/mate-screenshot.c:137
msgid "Error loading the help page"
msgstr "Σφάλμα φόρτωσης της σελίδας βοήθειας"

#: ../mate-screenshot/src/mate-screenshot.c:249
msgid "None"
msgstr "Καμία"

#: ../mate-screenshot/src/mate-screenshot.c:250
msgid "Drop shadow"
msgstr "Drop shadow"

#: ../mate-screenshot/src/mate-screenshot.c:251
msgid "Border"
msgstr "Περίγραμμα"

#. * Include pointer *
#: ../mate-screenshot/src/mate-screenshot.c:352
msgid "Include _pointer"
msgstr "Να συμπεριλαμβάνεται ο _δείκτης"

#. * Include window border *
#: ../mate-screenshot/src/mate-screenshot.c:361
msgid "Include the window _border"
msgstr "Να συμπεριλαμβάνεται το περί_γραμμα παραθύρου"

#: ../mate-screenshot/src/mate-screenshot.c:376
msgid "Apply _effect:"
msgstr "Εφαρμογή _εφέ:"

#: ../mate-screenshot/src/mate-screenshot.c:436
msgid "Grab the whole _desktop"
msgstr "Λήψη όλης της επι_φάνειας εργασίας"

#: ../mate-screenshot/src/mate-screenshot.c:448
msgid "Grab the current _window"
msgstr "Λήψη του τρέχοντος παρα_θύρου"

#: ../mate-screenshot/src/mate-screenshot.c:460
msgid "Select _area to grab"
msgstr "Επιλογή _περιοχής για λήψη"

#. translators: this is the first part of the "grab after a
#. * delay of <spin button> seconds".
#: ../mate-screenshot/src/mate-screenshot.c:478
msgid "Grab _after a delay of"
msgstr "Λήψη _μετά από καθυστέρηση "

#. translators: this is the last part of the "grab after a
#. * delay of <spin button> seconds".
#: ../mate-screenshot/src/mate-screenshot.c:499
#: ../mate-screenshot/src/mate-screenshot.c:1308
msgid "seconds"
msgstr "δευτερόλεπτα"

#: ../mate-screenshot/src/mate-screenshot.c:527
msgid "Effects"
msgstr "Εφέ"

#: ../mate-screenshot/src/mate-screenshot.c:531
msgid "Take _Screenshot"
msgstr "Λήψη _στιγμιότυπου οθόνης"

#: ../mate-screenshot/src/mate-screenshot.c:650
msgid "Error while saving screenshot"
msgstr "Σφάλμα κατά το αποθήκευση στιγμιοτύπου οθόνης"

#: ../mate-screenshot/src/mate-screenshot.c:653
#, c-format
msgid ""
"Impossible to save the screenshot to %s.\n"
" Error was %s.\n"
" Please choose another location and retry."
msgstr ""
"Αδυναμία αποθήκευσης του στιγμιοτύπου στο %s.\n"
" Το σφάλμα ήταν %s\n"
" Παρακαλώ, επιλέξτε άλλη τοποθεσία και προσπαθήστε ξανά."

#: ../mate-screenshot/src/mate-screenshot.c:792
msgid "Screenshot taken"
msgstr "Λήφθηκε στιγμιότυπο οθόνης"

#: ../mate-screenshot/src/mate-screenshot.c:847
msgid "Unable to take a screenshot of the current window"
msgstr "Αδυναμία λήψης στιγμιότυπου οθόνης του τρέχοντος παραθύρου"

#. translators: this is the name of the file that gets made up
#. * with the screenshot if the entire screen is taken
#: ../mate-screenshot/src/mate-screenshot.c:904
#, c-format
msgid "Screenshot at %s.png"
msgstr "Στιγμιότυπο στο %s.png"

#. translators: this is the name of the file that gets
#. * made up with the screenshot if the entire screen is
#. * taken
#: ../mate-screenshot/src/mate-screenshot.c:911
#, c-format
msgid "Screenshot at %s - %d.png"
msgstr "Στιγμιότυπο στο %s - %d.png"

#: ../mate-screenshot/src/mate-screenshot.c:1304
msgid "Grab a window instead of the entire screen"
msgstr "Λήψη ενός παραθύρου αντί ολόκληρης της οθόνης"

#: ../mate-screenshot/src/mate-screenshot.c:1305
msgid "Grab an area of the screen instead of the entire screen"
msgstr "Λήψη μιας περιοχής της οθόνης αντί ολόκληρης της οθόνης"

#: ../mate-screenshot/src/mate-screenshot.c:1306
msgid "Include the window border with the screenshot"
msgstr "Να συμπεριλαμβάνεται το περίγραμμα παραθύρου με το στιγμιότυπο οθόνης"

#: ../mate-screenshot/src/mate-screenshot.c:1307
msgid "Remove the window border from the screenshot"
msgstr "Αφαίρεση του περιγράμματος παραθύρου από το στιγμιότυπο οθόνης"

#: ../mate-screenshot/src/mate-screenshot.c:1308
msgid "Take screenshot after specified delay [in seconds]"
msgstr ""
"Λήψη στιγμιότυπου οθόνης μετά από μια καθορισμένη καθυστέρηση (σε "
"δευτερόλεπτα)"

#: ../mate-screenshot/src/mate-screenshot.c:1309
msgid "Effect to add to the border (shadow, border or none)"
msgstr "Εφέ για προσθήκη στο περίγραμμα  (σκιά, περίγραμμα ή κανένα)"

#: ../mate-screenshot/src/mate-screenshot.c:1309
msgid "effect"
msgstr "Εφέ"

#: ../mate-screenshot/src/mate-screenshot.c:1310
msgid "Interactively set options"
msgstr "Διαδραστικός ορισμός επιλογών"

#: ../mate-screenshot/src/mate-screenshot.c:1311
msgid "Print version information and exit"
msgstr "Εκτύπωση πληροφοριών έκδοσης και έξοδος"

#: ../mate-screenshot/src/mate-screenshot.c:1320
msgid "Take a picture of the screen"
msgstr "Λήψη μιας φωτογραφίας της οθόνης"

#: ../mate-screenshot/src/mate-screenshot.c:1343
#, c-format
msgid ""
"Conflicting options: --window and --area should not be used at the same "
"time.\n"
msgstr ""
"Συγκρουόμενες επιλογές: Τα --windows και --area δεν πρέπει να "
"χρησιμοποιούνται την ίδια στιγμή.\n"

#: ../mate-screenshot/src/screenshot-dialog.c:207
#, c-format
msgid ""
"Error loading UI definition file for the screenshot program: \n"
"%s\n"
"\n"
"Please check your installation of mate-utils."
msgstr ""
"Σφάλμα φόρτωσης φακέλου ορισμού UI για το πρόγραμμα στιγμιοτύπων!\n"
"%s\n"
"\n"
"Παρακαλώ ελέγξτε την εγκατάσταση των εργαλείων-mate"

#: ../mate-screenshot/src/screenshot-dialog.c:230
msgid "Select a folder"
msgstr "Επιλογή ενός φακέλου"

#: ../mate-screenshot/src/screenshot-dialog.c:325
#: ../mate-screenshot/src/screenshot-save.c:199
msgid "Screenshot.png"
msgstr "Screenshot.png"

#: ../mate-screenshot/src/screenshot-save.c:57
#, c-format
msgid ""
"Unable to clear the temporary folder:\n"
"%s"
msgstr ""
"Αδυναμία εκκαθάρισης του προσωρινού φακέλου:\n"
"%s"

#: ../mate-screenshot/src/screenshot-save.c:95
msgid ""
"The child save process unexpectedly exited.  We are unable to write the "
"screenshot to disk."
msgstr ""
"Η θυγατρική διεργασία αποθήκευσης έκλεισε απρόσμενα.  Δεν είναι δυνατή η "
"εγγραφή του στιγμιότυπου οθόνης στο δίσκο."

#: ../mate-screenshot/src/screenshot-save.c:225
msgid "Unknown error saving screenshot to disk"
msgstr "Άγνωστο σφάλμα αποθήκευσης στιγμιότυπου οθόνης στο δίσκο."

#: ../mate-screenshot/src/screenshot-xfer.c:72
msgid "File already exists"
msgstr "Το αρχείο υπάρχει ήδη"

#: ../mate-screenshot/src/screenshot-xfer.c:75
#, c-format
msgid "The file \"%s\" already exists. Would you like to replace it?"
msgstr "Το αρχείο \"%s\" υπάρχει ήδη. Θέλετε να το αντικαταστήσετε;"

#: ../mate-screenshot/src/screenshot-xfer.c:120
msgid "Saving file..."
msgstr "Αποθήκευση αρχείου..."

#: ../mate-screenshot/src/screenshot-xfer.c:290
msgid "Can't access source file"
msgstr "Αδυναμία πρόσβασης στο αρχείο πηγής"