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
|
# translation of libtdepim.po to Khmer
#
# eng vannak <evannak@khmeros.info>, 2006.
# auk piseth <piseth_dv@khmeros.info>, 2006.
# Khoem Sokhem <khoemsokhem@khmeros.info>, 2007, 2008.
msgid ""
msgstr ""
"Project-Id-Version: libtdepim\n"
"POT-Creation-Date: 2020-05-11 04:03+0200\n"
"PO-Revision-Date: 2008-07-15 10:22+0700\n"
"Last-Translator: Khoem Sokhem <khoemsokhem@khmeros.info>\n"
"Language-Team: Khmer <en@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.11.4\n"
#. Instead of a literal translation, add your name to the end of the list (separated by a comma).
msgid ""
"_: NAME OF TRANSLATORS\n"
"Your names"
msgstr "ααΉα αα»ααα, ααΈ αα½ααααΈ, α’αα ααααα, α’αα αα·αα·ααα"
#. Instead of a literal translation, add your email to the end of the list (separated by a comma).
msgid ""
"_: EMAIL OF TRANSLATORS\n"
"Your emails"
msgstr ""
"khoemsokhem@khmeros.info,soursdey@khmeros.info, evannak@khmeros.info,"
"piseth_dv@khmeros.info"
#: addresseeemailselection.cpp:47 addressesdialog.cpp:243
#: addressesdialog.cpp:727
msgid "To"
msgstr "αα
"
#: addresseeemailselection.cpp:50
msgid "Cc"
msgstr "α
αααα"
#: addresseeemailselection.cpp:53
msgid "Bcc"
msgstr "ααΆααβ"
#: addresseeemailselection.cpp:196 addressesdialog.cpp:324
#: completionordereditor.cpp:208 recentaddresses.cpp:167
msgid "Recent Addresses"
msgstr "α’αΆαααααααΆαβααααΈαβααα"
#: addresseelineedit.cpp:594 addressesdialog.cpp:1152
#: completionordereditor.cpp:205
msgid "Distribution Lists"
msgstr "αααααΈβα
ααα
αΆα"
#: addresseelineedit.cpp:927
msgid "Configure Completion Order..."
msgstr "αααααβαα
ααΆααααααααβααααΆααβααααα..."
#: addresseeselector.cpp:67
msgid "All"
msgstr "ααΆααα’ααβ"
#: addresseeselector.cpp:273
msgid "Address book:"
msgstr "ααααα
βα’αΆααααααΆαΒ α"
#: addresseeselector.cpp:279
msgid "Search:"
msgstr "αααααααΒ α"
#: addresseeview.cpp:76
msgid "Show Birthday"
msgstr "αααα αΆαβααααβααααΎα"
#: addresseeview.cpp:77
msgid "Hide Birthday"
msgstr "ααΆααβααααβααααΎα"
#: addresseeview.cpp:78
msgid "Show Postal Addresses"
msgstr "αααα αΆαβα’αΆααααααΆαβαααααααΈαα"
#: addresseeview.cpp:79
msgid "Hide Postal Addresses"
msgstr "ααΆααα’αΆααααααΆαβαααααααΈαα"
#: addresseeview.cpp:80
msgid "Show Email Addresses"
msgstr "αααα αΆαβα’αΆααααααΆαβα’ααΈααα"
#: addresseeview.cpp:81
msgid "Hide Email Addresses"
msgstr "ααΆααα’αΆααααααΆαβα’ααΈααα"
#: addresseeview.cpp:82
msgid "Show Telephone Numbers"
msgstr "αααα αΆαβαααβααΌαααααα"
#: addresseeview.cpp:83
msgid "Hide Telephone Numbers"
msgstr "ααΆααβαααβααΌαααααα"
#: addresseeview.cpp:84
msgid "Show Web Pages (URLs)"
msgstr "αααα αΆααααααβαααααΆα (URL)"
#: addresseeview.cpp:85
msgid "Hide Web Pages (URLs)"
msgstr "ααΆαααααααβαααααΆα (URL)"
#: addresseeview.cpp:86
msgid "Show Instant Messaging Addresses"
msgstr "αααα αΆαβα’αΆααααααΆαβααααΎβααΆαβαααααΆαα"
#: addresseeview.cpp:87
msgid "Hide Instant Messaging Addresses"
msgstr "ααΆααα’αΆααααααΆαβααααΎβααΆαβαααααΆαα"
#: addresseeview.cpp:88
msgid "Show Custom Fields"
msgstr "αααα αΆαααΆαβααααΆααβαααα½α"
#: addresseeview.cpp:89
msgid "Hide Custom Fields"
msgstr "ααΆααααΆαβααααΆααβαααα½α"
#: addresseeview.cpp:238
msgid "SMS"
msgstr "ααααΆβααΆαβααααΈα"
#: addresseeview.cpp:254 ldapsearchdialog.cpp:78 ldapsearchdialog.cpp:156
#: ldapsearchdialog.cpp:287 ldapsearchdialog.cpp:358
msgid "Email"
msgstr "α’ααΈααα"
#: addresseeview.cpp:279
msgid "Homepage"
msgstr "ααα βααααα"
#: addresseeview.cpp:287
msgid "Blog Feed"
msgstr "ααα·ααααααΆα αααααβα ααα»βααΎβαααααΆαΒ α"
#: addresseeview.cpp:336
msgid "Notes"
msgstr "α
αααΆα"
#: addresseeview.cpp:343 ldapsearchdialog.cpp:90 ldapsearchdialog.cpp:300
msgid "Department"
msgstr "ααΆααααααΆα"
#: addresseeview.cpp:344
msgid "Profession"
msgstr "αα·ααααΆααΈαα"
#: addresseeview.cpp:345
msgid "Assistant's Name"
msgstr "αααααβα’αααβαααα½αααΆα"
#: addresseeview.cpp:346
msgid "Manager's Name"
msgstr "αααααβα’αααβααααααααα"
#: addresseeview.cpp:347
msgid "Partner's Name"
msgstr "αααααβααααΌ"
#: addresseeview.cpp:348
msgid "Office"
msgstr "ααΆαα·ααΆααα"
#: addresseeview.cpp:349
msgid "Anniversary"
msgstr "ααααβαα»αααβαα½α"
#: addresseeview.cpp:388
msgid "IM Address"
msgstr "α’αΆααααααΆα IM"
#: addresseeview.cpp:410
msgid "Presence"
msgstr "ααααααΆα"
#: addresseeview.cpp:479
msgid "<p><b>Address book</b>: %1</p>"
msgstr "<p><b>ααααα
βα’αΆααααααΆα</b>Β α %1</p>"
#: addresseeview.cpp:590 addresseeview.cpp:605 addresseeview.cpp:639
msgid ""
"There is no application set which could be executed. Please go to the "
"settings dialog and configure one."
msgstr ""
"αα·αβααΆαβαααα»αβαααααα·ααΈ αααβα’αΆα
βααααα·ααααα·βααΆαΒ α ααΌαβα
αΌαβαα
βαααα’ααβααΆαβααααα α αΎαβαααααβαα
ααΆααααααααβαααα»αβαααααα·ααΈβαα½αΒ α"
#: addresseeview.cpp:693
msgid "Send mail to '%1'"
msgstr "ααααΎα’ααΈαααβαα
'%1'"
#: addresseeview.cpp:698
#, c-format
msgid "Call number %1"
msgstr "ααΌααααααβαα
βααα %1"
#: addresseeview.cpp:703
#, c-format
msgid "Send fax to %1"
msgstr "ααααΎααΌαααΆααα
%1"
#: addresseeview.cpp:705
msgid "Show address on map"
msgstr "αααα αΆαβα’αΆααααααΆαβααΎβαααααΈ"
#: addresseeview.cpp:708
#, c-format
msgid "Send SMS to %1"
msgstr "ααααΎβααΆαβααααΈαβαα
%1"
#: addresseeview.cpp:711
#, c-format
msgid "Open URL %1"
msgstr "ααΎα URL %1"
#: addresseeview.cpp:713
#, c-format
msgid "Chat with %1"
msgstr "ααααβααααΆαααβααΆαα½α %1"
#: addressesdialog.cpp:125 addressesdialog.cpp:133
msgid "<group>"
msgstr "<group>"
#: addressesdialog.cpp:216 addresspicker.ui:16
#, no-c-format
msgid "Address Selection"
msgstr "ααΆαααααΎαβα’αΆααααααΆα"
#: addressesdialog.cpp:254 addressesdialog.cpp:748
msgid "CC"
msgstr "α
αααα"
#: addressesdialog.cpp:265 addressesdialog.cpp:769
msgid "BCC"
msgstr "ααΆαα"
#: addressesdialog.cpp:464
msgid "Other Addresses"
msgstr "α’αΆααααααΆαβαααααβααα"
#: addressesdialog.cpp:888
msgid ""
"There are no addresses in your list. First add some addresses from your "
"address book, then try again."
msgstr ""
"αα·αβααΆαββα’αΆααααααΆαβαα
βαααα»αβαααααΈβααααβα’αααβα‘αΎαΒ α ααααΌα α’αααβααααΌαβααααααα’αΆααααααΆαβαα½αα
ααα½αβααΈβααααα
βα’αΆααααααΆαβ"
"ααααβα’ααα αααααΆααβααβααΌαβααααΆααΆαβαααααααΒ αβ"
#: addressesdialog.cpp:895
msgid "New Distribution List"
msgstr "αααααΈβα
ααα
αΆαβααααΈ"
#: addressesdialog.cpp:896
msgid "Please enter name:"
msgstr "ααΌααααα
αΌαβαααααΒ α"
#: addressesdialog.cpp:913
msgid ""
"<qt>Distribution list with the given name <b>%1</b> already exists. Please "
"select a different name.</qt>"
msgstr "<qt>ααΆαββαααααΈβα
ααα
αΆαβαααβααΆαβααααα <b>%1</b> αα½α
βα αΎαα ααΌαααααΎαβαααααβααααααααΒ α</qt>"
#: broadcaststatus.cpp:59
msgid ""
"_: %1 is a time, %2 is a status message\n"
"[%1] %2"
msgstr "[%1] %2"
#: broadcaststatus.cpp:78
msgid ""
"_n: Transmission complete. %n new message in %1 KB (%2 KB remaining on the "
"server).\n"
"Transmission complete. %n new messages in %1 KB (%2 KB remaining on the "
"server)."
msgstr "αααααΌαβαα½α
βααΆααβ α ααΆαβααααΈ %n ααα α %1 ααΈα‘αΌαα (%2 ααΈα‘αΌαα αα
αααβααΎαααΆαααΈαβαααααΎ) α"
#: broadcaststatus.cpp:85
msgid ""
"_n: Transmission complete. %n message in %1 KB.\n"
"Transmission complete. %n messages in %1 KB."
msgstr "αααααΌαβαα½α
ααΆααΒ α ααΆα %n ααα α %1 ααΈα‘αΌααΒ α"
#: broadcaststatus.cpp:91
#, c-format
msgid ""
"_n: Transmission complete. %n new message.\n"
"Transmission complete. %n new messages."
msgstr "αααααΌαβαα½α
ααΆααΒ α ααΆαβααααΈ %nΒ α"
#: broadcaststatus.cpp:95
msgid "Transmission complete. No new messages."
msgstr "αααααΌαβαα½α
ααΆααΒ α ααααΆαβααΆαβααααΈβα‘αΎαΒ α"
#: broadcaststatus.cpp:117
msgid ""
"_n: Transmission for account %3 complete. %n new message in %1 KB (%2 KB "
"remaining on the server).\n"
"Transmission for account %3 complete. %n new messages in %1 KB (%2 KB "
"remaining on the server)."
msgstr "αααααΌαβααααΈ %3 αα½α
ααΆααΒ α ααΆαβααααΈ %n ααα α %1 ααΈα‘αΌαα (%2 ααΈα‘αΌαα αα
αααβααΎβαααΆαααΈαβαααααΎ)Β α"
#: broadcaststatus.cpp:127
msgid ""
"_n: Transmission for account %2 complete. %n message in %1 KB.\n"
"Transmission for account %2 complete. %n messages in %1 KB."
msgstr "αααααΌαβαααααΆααβααααΈ %2 αα½α
ααΆααΒ α ααΆα %n ααα α %1 ααΈα‘αΌααΒ α"
#: broadcaststatus.cpp:136
msgid ""
"_n: Transmission for account %1 complete. %n new message.\n"
"Transmission for account %1 complete. %n new messages."
msgstr "αααααΌαβαααααΆααβααααΈ %1 αα½α
ααΆααΒ α ααΆαβααααΈ %nΒ α"
#: broadcaststatus.cpp:142
msgid "Transmission for account %1 complete. No new messages."
msgstr "αααααΌαβαααααΆααβααααΈ %1 αα½α
ααΆααΒ α ααααΆαβααΆαβααααΈβα‘αΎαΒ α"
#: calendardiffalgo.cpp:111
msgid "Attendees"
msgstr "α’αααβα
αΌαβαα½α"
#: calendardiffalgo.cpp:114
msgid "Start time"
msgstr "αααααααΆβα
αΆααβααααΎα"
#: calendardiffalgo.cpp:117
msgid "Organizer"
msgstr "α’αααβαααα
α"
#: calendardiffalgo.cpp:120
msgid "UID"
msgstr "UID"
#: calendardiffalgo.cpp:123
msgid "Is floating"
msgstr "α’ααααα"
#: calendardiffalgo.cpp:126
msgid "Has duration"
msgstr "ααΆαβαα·αααααΆ"
#: calendardiffalgo.cpp:129
msgid "Duration"
msgstr "αα·αααααΆ"
#: calendardiffalgo.cpp:135 ksubscription.cpp:270 ldapsearchdialog.cpp:93
#: ldapsearchdialog.cpp:301
msgid "Description"
msgstr "ααα
ααααΈβαααααΆ"
#: calendardiffalgo.cpp:138
msgid "Summary"
msgstr "ααα
ααααΈβααααα"
#: calendardiffalgo.cpp:141
msgid "Status"
msgstr "ααααΆαααΆα"
#: calendardiffalgo.cpp:144
msgid "Secrecy"
msgstr "ααΆαβαααααΆαα"
#: calendardiffalgo.cpp:147
msgid "Priority"
msgstr "α’αΆαα·ααΆα"
#: calendardiffalgo.cpp:150
msgid "Location"
msgstr "ααΈααΆαα"
#: calendardiffalgo.cpp:152
msgid "Categories"
msgstr "αααααα"
#: calendardiffalgo.cpp:153
msgid "Alarms"
msgstr "αααα"
#: calendardiffalgo.cpp:154
msgid "Resources"
msgstr "ααααΆα"
#: calendardiffalgo.cpp:155
msgid "Relations"
msgstr "ααααΆααβαααα"
#: calendardiffalgo.cpp:156
msgid "Attachments"
msgstr "α―αααΆαβααααΆααβ"
#: calendardiffalgo.cpp:157
msgid "Exception Dates"
msgstr "ααΆαααα·α
ααααβααΎαααα"
#: calendardiffalgo.cpp:158
msgid "Exception Times"
msgstr "αααααααΆβααΎαααα"
#: calendardiffalgo.cpp:162
msgid "Created"
msgstr "ααΆαβαααααΎα"
#: calendardiffalgo.cpp:165
msgid "Related Uid"
msgstr "Uid αααβααΆαααα"
#: calendardiffalgo.cpp:171
msgid "Has End Date"
msgstr "ααΆαβααΆαααα·α
ααααβαααα
αα"
#: calendardiffalgo.cpp:174
msgid "End Date"
msgstr "ααΆαααα·α
ααααβαααα
ααβ"
#: calendardiffalgo.cpp:182
msgid "Has Start Date"
msgstr "ααΆαβααΆαααα·α
ααααβα
αΆααβααααΎα"
#: calendardiffalgo.cpp:185
msgid "Has Due Date"
msgstr "ααΆαααΆαααα·α
ααααβαααβααααα"
#: calendardiffalgo.cpp:188
msgid "Due Date"
msgstr "ααΆαααα·α
ααααβαααβααααα"
#: calendardiffalgo.cpp:191
msgid "Has Complete Date"
msgstr "ααΆαβααΆαααα·α
ααααββαααα
αα"
#: calendardiffalgo.cpp:194
msgid "Complete"
msgstr "αααα
αα"
#: calendardiffalgo.cpp:197
msgid "Completed"
msgstr "ααΆαβαααα
αα"
#: categoryeditdialog.cpp:63 categoryeditdialog_base.ui:16
#, no-c-format
msgid "Edit Categories"
msgstr "ααααααα½αβαααααα"
#: categoryeditdialog.cpp:127
msgid "New category"
msgstr "ααααααβααααΈ"
#: categoryselectdialog.cpp:38 categoryselectdialog_base.ui:16
#, no-c-format
msgid "Select Categories"
msgstr "ααααΎαβαααααα"
#: cfgc/autoexample.cpp:41
msgid "autoconfig example"
msgstr ""
#: cfgc/autoexample.cpp:54
msgid "General"
msgstr ""
#: cfgc/autoexample.cpp:59
#, fuzzy
msgid "MyOptions"
msgstr "αααααΎα"
#: cfgc/example.cpp:37
msgid "cfgc example"
msgstr ""
#: completionordereditor.cpp:91
#, c-format
msgid "LDAP server %1"
msgstr "αααΆαααΈαβαααααΎ LDAP %1"
#: completionordereditor.cpp:177
msgid "Edit Completion Order"
msgstr "ααααααα½αβααααΆααβααααα"
#: embeddedurlpage.cpp:46
#, c-format
msgid "Showing URL %1"
msgstr "ααΆααααα αΆα URL %1"
#: kaddrbook.cpp:76
msgid ""
"<qt>The email address <b>%1</b> cannot be found in your addressbook.</qt>"
msgstr ""
"<qt>αα·αα’αΆα
βααβα’αΆααααααΆαβα’ααΈααα <b>%1</b> αα
αααα»αβααααα
βα’αΆααααααΆαβααααα’αααβααΆαβα‘αΎαΒ α</qt>"
#: kaddrbook.cpp:79
msgid "is not in address book"
msgstr "αα·αβαα
αααα»αβααααα
βα’ααααααΆα"
#: kaddrbook.cpp:151
msgid ""
"<qt>The email address <b>%1</b> was added to your addressbook; you can add "
"more information to this entry by opening the addressbook.</qt>"
msgstr ""
"<qt>α’αΆααααααΆαβα’ααΈααα <b>%1</b> ααααΌαβααΆαβααααααβαα
βααααα
βα’αΆααααααΆαβααααβα’αααΒ α α’αααβα’αΆα
βααααααβ"
"ααααααΆαβααααααβαααβαα
βααΆαα»βααα αααβααΎαβααααα
βα’αΆααααααΆαΒ α</qt>"
#: kaddrbook.cpp:157
msgid "<qt>The email address <b>%1</b> is already in your addressbook.</qt>"
msgstr "<qt>ααΆαβα’αΆααααααΆαα’ααΈααα <b>%1</b> αααα»αααααα
βα’αΆααααααΆαβααααβα’αααβαα½α
βα αΎαΒ α</qt>"
#: kaddrbook.cpp:188
msgid ""
"The VCard was added to your addressbook; you can add more information to "
"this entry by opening the addressbook."
msgstr ""
"VCard ααααΌαβααΆαβααααααβαα
βααααα
βα’αΆααααααΆαβααααβα’αααΒ α α’αααβα’αΆα
βααααααβααααααΆαβααααααβαααβαα
βααΆαα»βααα αααβ"
"ααΎαβααααα
βα’αΆααααααΆαΒ α"
#: kaddrbook.cpp:195
msgid ""
"The VCard's primary email address is already in your addressbook; however, "
"you may save the VCard into a file and import it into the addressbook "
"manually."
msgstr ""
"ααΆαβα’αΆααααααΆαβα’ααΈαααβα
ααααβαααα VCard αα
βαααα»αβααααα
βα’αΆααααααΆαβααααβα’αααβαα½α
βα αΎαΒ α αααβαααΆαβααΆ α’αααβα’αΆα
β"
"ααΉαβαααααΆαα»αβααααααΆα VCard αα
βαααα»αβα―αααΆαβαα½α α αΎαβααΆαβααΆβα
αΌαβαα
βαααα»αβααααα
βα’αΆααααααΆαβαααβααΒ α"
#: kcmdesignerfields.cpp:77 kcmdesignerfields.cpp:78 kcmdesignerfields.cpp:83
msgid "Text"
msgstr "α’ααααα"
#: kcmdesignerfields.cpp:79
msgid "Numeric Value"
msgstr "αααααβααΆααα"
#: kcmdesignerfields.cpp:80
msgid "Boolean"
msgstr "αααΌααΈα"
#: kcmdesignerfields.cpp:81
msgid "Selection"
msgstr "ααΆαααααΎα"
#: kcmdesignerfields.cpp:82 kcmdesignerfields.cpp:84
msgid "Date & Time"
msgstr "ααΆαααα·α
αααα αα·αβαααααααΆ"
#: kcmdesignerfields.cpp:85
msgid "Date"
msgstr "ααΆαααα·α
αααα"
#: kcmdesignerfields.cpp:134
msgid "KCMDesignerfields"
msgstr "KCMDesignerfields"
#: kcmdesignerfields.cpp:135
#, fuzzy
msgid "TQt Designer Fields Dialog"
msgstr "αααα’ααβααΆαβαααααα·ααΈβαα
ααΆ Qt"
#: kcmdesignerfields.cpp:137
msgid "(c), 2004 Tobias Koenig"
msgstr "αααααΆαα·αααα·βααααΆα α’α α α€ ααα Tobias Koenig"
#: kcmdesignerfields.cpp:179
msgid "<qt>Do you really want to delete '<b>%1</b>'?</qt>"
msgstr "<qt>ααΎα’ααααα·αααΆα
ααβαα»α '<b>%1</b>' α¬Β ?</qt>"
#: kcmdesignerfields.cpp:188
msgid "*.ui|Designer Files"
msgstr "*.ui|α―αααΆαβαααααα·ααΈβαα
ααΆ"
#: kcmdesignerfields.cpp:189
msgid "Import Page"
msgstr "ααΆαα
αΌαβααααα"
#: kcmdesignerfields.cpp:272
#, fuzzy
msgid ""
"<qt><b>Warning:</b> TQt Designer could not be found. It is probably not "
"installed. You will only be able to import existing designer files.</qt>"
msgstr ""
"<qt><b>αααααΆαΒ α</b> αα·αβα’αΆα
βααααΎαβαααααα·ααΈβαα
ααΆ Qt ααΆαβα‘αΎαΒ α ααΆβαααα ααβααΆβαα·αβααααΌαβααΆαβααα‘αΎαβ"
"α‘αΎαΒ α α’αααβααΉαβα’αΆα
βααααΉαβααβααΆαα
αΌαβα―αααΆαβαααααα·ααΈβαα
ααΆβαααβααΆαβααααΆααβααα»αααααΒ α</qt>"
#: kcmdesignerfields.cpp:281
msgid "Available Pages"
msgstr "αααααβαααβααΆα"
#: kcmdesignerfields.cpp:287
msgid "Preview of Selected Page"
msgstr "αα·αααααΆαβααΆβαα»αβααβαααααβαααβααΆαβααααΎα"
#: kcmdesignerfields.cpp:300
#, fuzzy
msgid ""
"<qt><p>This section allows you to add your own GUI Elements ('<i>Widgets</"
"i>') to store your own values into %1. Proceed as described below:</"
"p><ol><li>Click on '<i>Edit with TQt Designer</i>'<li>In the dialog, select "
"'<i>Widget</i>', then click <i>OK</i><li>Add your widgets to the "
"form<li>Save the file in the directory proposed by TQt Designer<li>Close TQt "
"Designer</ol><p>In case you already have a designer file (*.ui) located "
"somewhere on your hard disk, simply choose '<i>Import Page</i>'</"
"p><p><b>Important:</b> The name of each input widget you place within the "
"form must start with '<i>X_</i>'; so if you want the widget to correspond to "
"your custom entry '<i>X-Foo</i>', set the widget's <i>name</i> property to "
"'<i>X_Foo</i>'.</p><p><b>Important:</b> The widget will edit custom fields "
"with an application name of %2. To change the application name to be "
"edited, set the widget name in TQt Designer.</p></qt>"
msgstr ""
"<qt><p>αααααβαααβα’αα»ααααΆαβα²ααβα’αααβααααααβααΆαα»βα
ααα»α
βαααααΆααβααααΆα ααα·αβααααΆααβαααα½αβααααβα’ααα ('<i>ααΆαα»βααααΆα ααα·α</"
"i>') ααΎααααΈβαα»αβαααααβααααΆααβαααα½αβααααβα’αααβαα
βαααα»α %1Β α ααΌαβααααβα’αα»ααααβααΆαβααΆαβαααααΒ α</p><ol><li>α
α»α
"
"'<i>ααααααα½αβααΆαα½α Qt Designer</i>'<li>αα
βαααα»αβαααα’αα ααααΎα '<i>ααΆαα»βααααΆα ααα·α</i>' αααααΆααβααβ"
"α
α»α
<i>ααααααα</i><li>ααααααβααΆαα»βααααΆα ααα·αβααααβα’αααβαα
βαααα»αααααα<li>αααααΆαα»αβα―αααΆαβαα
βαααα»αβααβαααβααΆαβ"
"ααααΎβααα Qt Designer<li>αα·α Qt Designer</ol><p>αααα»αβααααΈ α’αααβααΆαβα―αααΆαβαα
ααΆβαα½αβαα½α
βα αΎα (*."
"ui) αααβαααα·αβαα
βαααα»αβααΆαβααΉαβααααβα’ααα αααβα’αααβααααΆααβααβααααΎα '<i>ααΆαα
αΌαβααααα</i>' αα
βααΆαβα αΎα</"
"p><p><b>ααααΆααΒ α</b> αααααβααΆαα»βααααΆα ααα·αβαααα
αΌαβααΈαα½αα αααβα’αααβααΆααβαα
βαααα»αβαααα»αβααααα ααααΌαβααβα
αΆααααααΎαβ"
"ααα '<i>X_</i>'Β α ααΌα
αααα ααΎβα’αααβα
ααβα²ααβααΆαα»βααααΆα ααα·αβααααΎαααβαα
βααΉαβααΆαα» '<i>X-Foo</i>' ααααΆααβ"
"αααα½αβααααβα’ααα ααΌαβαααααβααααααβαααααααα· <i>ααααα</i> ααααβααΆαα»βααααΆα ααα·αβαα
βααΆ '<i>X_Foo</i>'Β α</"
"p><p><b>ααααΆααΒ α</b> ααΆαα»βααααΆα ααα·αβααΉαβααααααα½αβααΆαβααααΆααβαααα½α αααβααααΎβαααααβαααααα·ααΈβαααα %2Β α ααΎααααΈβ"
"ααααΆααααααΌαβαααααβαααααα·ααΈβαααβααααΌαβααααααα½α ααΌαβαααααβαααααβααΆαα»βααααΆα ααα·αβαα
βαααα»α Qt DesignerΒ α</p></qt>"
#: kcmdesignerfields.cpp:322
msgid "<a href=\"whatsthis:%1\">How does this work?</a>"
msgstr "<a href=\"whatsthis:%1\">ααΎβααΆβααααΎαααΆαβααΌα
ααααα
Β ?</a>"
#: kcmdesignerfields.cpp:330
msgid "Delete Page"
msgstr "αα»αααααα"
#: kcmdesignerfields.cpp:333
msgid "Import Page..."
msgstr "ααΆαα
αΌαβααααα..."
#: kcmdesignerfields.cpp:335
#, fuzzy
msgid "Edit with TQt Designer..."
msgstr "ααααααα½αβααΆαα½αβαααααα·ααΈβαα
ααΆ Qt..."
#: kcmdesignerfields.cpp:363
msgid "Key:"
msgstr "ααΆαααβαααααΉαΒ α"
#: kcmdesignerfields.cpp:365
msgid "Type:"
msgstr "ααααααΒ α"
#: kcmdesignerfields.cpp:367
msgid "Classname:"
msgstr "αααααβααααΆααΒ α"
#: kcmdesignerfields.cpp:369
msgid "Description:"
msgstr "ααα
ααααΈβαααααΆΒ α"
#: kdateedit.cpp:332
msgid "tomorrow"
msgstr "ααααβααα’αα"
#: kdateedit.cpp:333
msgid "today"
msgstr "ααααβααα"
#: kdateedit.cpp:334
msgid "yesterday"
msgstr "αααα·αααα·α"
#: kdatepickerpopup.cpp:61
msgid "&Today"
msgstr "ααααβααα"
#: kdatepickerpopup.cpp:62
msgid "To&morrow"
msgstr "ααααβααα’αα"
#: kdatepickerpopup.cpp:63
msgid "Next &Week"
msgstr "αααααΆα αβααααα"
#: kdatepickerpopup.cpp:64
msgid "Next M&onth"
msgstr "ααβααααα"
#: kdatepickerpopup.cpp:71
msgid "No Date"
msgstr "ααααΆαβααΆαααα·α
αααα"
#: kimportdialog.cpp:78
msgid "Plain"
msgstr "ααααααΆ"
#: kimportdialog.cpp:80
msgid "Unquoted"
msgstr "αα·αβαα
βαααα»αβαααααα"
#: kimportdialog.cpp:82
msgid "Bracketed"
msgstr "αα
βαααα»αβαααααα"
#: kimportdialog.cpp:84
msgid "Undefined"
msgstr "αα·αβααΆαβαααααβ"
#: kimportdialog.cpp:152
msgid "Import Text File"
msgstr "ααΆαα
αΌαβα―αααΆαβα’ααααα"
#: kimportdialog.cpp:164
msgid "File to import:"
msgstr "α―αααΆαβαααβααααΌαβααΆαα
αΌαΒ α"
#: kimportdialog.cpp:180
msgid "Separator:"
msgstr "αααααΆααβααααβα
ααΒ α"
#: kimportdialog.cpp:184
msgid "Tab"
msgstr "ααα"
#: kimportdialog.cpp:185
msgid "Space"
msgstr "ααβααααΆ"
#: kimportdialog.cpp:195
msgid "Import starts at row:"
msgstr "ααΆαβααΆαα
αΌαβα
αΆααααααΎαβαααααβαα½αβαααΒ α"
#: kimportdialog.cpp:210
msgid "Header"
msgstr "ααααΆα"
#: kimportdialog.cpp:219
msgid "Assign to Selected Column"
msgstr "αααααβαα
βαα½αααβαααβααΆαβααααΎα"
#: kimportdialog.cpp:223
msgid "Remove Assignment From Selected Column"
msgstr "αα»αβααΆααααααβαααααβααΈβαα½αααβαααβααΆαβααααΎα"
#: kimportdialog.cpp:227
msgid "Assign with Template..."
msgstr "αααααβαααβαα»ααα..."
#: kimportdialog.cpp:231
msgid "Save Current Template"
msgstr "αααααΆαα»αβαα»αααβαα
αα
α»αααααα"
#: kimportdialog.cpp:319
msgid "Loading Progress"
msgstr "αααααααΆαβαααα»α"
#: kimportdialog.cpp:320
msgid "Please wait while the file is loaded."
msgstr "ααΌαβαααβα
αΆα ααααααβαααα»αβα―αααΆαΒ α"
#: kimportdialog.cpp:593
msgid "Template Selection"
msgstr "ααΆαααααΎαβαα»ααα"
#: kimportdialog.cpp:594
msgid "Please select a template, that matches the CSV file:"
msgstr "ααΌαβααααΎαβαα»αααβαα½α αααβααααΌααααβααΉαβα―αααΆα CSVΒ α"
#: kimportdialog.cpp:652
msgid "Importing Progress"
msgstr "αααααααΆαβααΆαβα
αΌα"
#: kimportdialog.cpp:653
msgid "Please wait while the data is imported."
msgstr "ααΌαβαααα
αΆα αααβαααβααΆαα
αΌαβαα·ααααααΒ α"
#: kimportdialog.cpp:740
msgid "Template Name"
msgstr "αααααβαα»ααα"
#: kimportdialog.cpp:740
msgid "Please enter a name for the template:"
msgstr "ααΌαβαααα
αΌαβαααααβαα½αβαααααΆααβαα»αααΒ α"
#: kincidencechooser.cpp:53
msgid "Conflict Detected"
msgstr "ααΆαβααβααΎαβααΆαβαααβααααα·α
"
#: kincidencechooser.cpp:56
msgid ""
"<qt>A conflict was detected. This probably means someone edited the same "
"entry on the server while you changed it locally.<br/>NOTE: You have to "
"check mail again to apply your changes to the server.</qt>"
msgstr ""
"<qt>ααΆαβααααΎαβααΆαβαααααααα·α
Β α αααβαααα ααβααΆβααΆαβααααΆβααααΆααβααΆαβααααααβααΆαα»βααΌα
ααααΆβαα
βααΎβαααΆαααΈαβαααααΎβα αΎαβ"
"ααΎαβαα
αααβαααβα’αααβααΆαβααααΆααααααΌαβααΆβαααβααΒ α<br/>α
αααΆαΒ α α’αααβααααΌαβααβαα·αα·αααβααΎαβα’ααΈαααβααααβααα ααΎααααΈβ"
"α’αα»ααααβααΆαβααααΆααααααΌαβααααβα’αααβαα
βαααΆαααΈαβαααααΎΒ α</qt>"
#: kincidencechooser.cpp:63
msgid "Take Local"
msgstr "ααβααΆαα»βααΌαααααΆα"
#: kincidencechooser.cpp:65
msgid "Take New"
msgstr "ααβααΆαα»βααααΈ"
#: kincidencechooser.cpp:67
msgid "Take Both"
msgstr "ααβααΆαα»βααΆααααΈα"
#: kincidencechooser.cpp:72
msgid "Local incidence"
msgstr "ααΆαβααΎαα‘αΎαβααΌαααααΆα"
#: kincidencechooser.cpp:74
msgid "Local incidence summary"
msgstr "ααα
ααααΈβααααααβααΆαβααΎαα‘αΎαβααΌαααααΆα"
#: kincidencechooser.cpp:77 kincidencechooser.cpp:90
msgid "Last modified:"
msgstr "ααΆαβααααααβα
α»αβαααααΒ α"
#: kincidencechooser.cpp:80 kincidencechooser.cpp:93 kincidencechooser.cpp:229
#: kincidencechooser.cpp:285
msgid "Show Details"
msgstr "αααα αΆαβααα
ααααΈβαααα’α·α"
#: kincidencechooser.cpp:100
msgid "Show Differences"
msgstr "αααα αΆαβααΆαβαα»αβααααΆ"
#: kincidencechooser.cpp:107
msgid "Sync Preferences"
msgstr "α
ααααβα
αααΌαβα
α·αααβααααΆααααα"
#: kincidencechooser.cpp:110
msgid "Take local entry on conflict"
msgstr "ααααΆαα»βααΌαβααααΆα αα
αααβαααβααααα·α
"
#: kincidencechooser.cpp:111
msgid "Take new (remote) entry on conflict"
msgstr "ααβααΆαα»βααααΈ (ααΈβα
ααααΆα) αα
βαααβαααβααααα·α
β"
#: kincidencechooser.cpp:112
msgid "Take newest entry on conflict"
msgstr "ααβααΆαα»βααααΈβαααα»α αα
βαααβαααβααααα·α
β"
#: kincidencechooser.cpp:113
msgid "Ask for every entry on conflict"
msgstr "αα½αβααΆααβααΆαα»βααΆααα’αα αα
βαααβαααβααααα·α
"
#: kincidencechooser.cpp:114
msgid "Take both on conflict"
msgstr "ααβααΆαα»βααΆααααΈα αα
βαααβαααβααααα·α
β"
#: kincidencechooser.cpp:120
msgid "Apply This to All Conflicts of This Sync"
msgstr "α’αα»ααααβααΆβαα
βααΆαβαααααααα·α
βααΆααα’αα ααβααααΆαααααβααα"
#: kincidencechooser.cpp:186
msgid "Local Event"
msgstr "ααααΉαααααΆαβααβααΌαβααααΆα"
#: kincidencechooser.cpp:192
msgid "Local Todo"
msgstr "ααΆαααΆαβααααΌαβααααΎβααΌαααααΆα"
#: kincidencechooser.cpp:199
msgid "Local Journal"
msgstr "αα·ααΆαα»αααααααα·βααΌαααααΆα"
#: kincidencechooser.cpp:209
msgid "New Event"
msgstr "ααααΉαααααΆαααααααΈ"
#: kincidencechooser.cpp:213
msgid "New Todo"
msgstr "ααΆαααΆαβααααΌαβααααΎβααααΈ"
#: kincidencechooser.cpp:218
msgid "New Journal"
msgstr "αα·ααΆαα»αααααααα·βααααΈβ"
#: kincidencechooser.cpp:232 kincidencechooser.cpp:245
#: kincidencechooser.cpp:288 kincidencechooser.cpp:301
msgid "Hide Details"
msgstr "ααΆααβααα
ααααΈβαααα’α·α"
#: kincidencechooser.cpp:254 kincidencechooser.cpp:256
msgid "Show details..."
msgstr "αααα αΆαβααα
ααααΈβαααα’α·α..."
#: kincidencechooser.cpp:268
msgid "Differences of %1 and %2"
msgstr "ααΆααα»αβααααΆβαααΆα %1 αα·α %2"
#: kincidencechooser.cpp:270
#, c-format
msgid "Differences of %1"
msgstr "ααΆαβαα»αβααααΆβαα %1"
#: kincidencechooser.cpp:273
msgid "Local entry"
msgstr "ααΆαα»βααΌαααααΆα"
#: kincidencechooser.cpp:274
msgid "New (remote) entry"
msgstr "ααΆαα»ααααΈ (ααΈβα
ααααΆα)"
#: komposer/core/core.cpp:251
#, fuzzy
msgid "&Send"
msgstr "ααααΎ"
#: komposer/core/core.cpp:255
msgid "&Queue"
msgstr ""
#: komposer/core/core.cpp:259
msgid "Save in &Drafts Folder"
msgstr ""
#: komposer/core/core.cpp:262
msgid "&Insert File..."
msgstr ""
#: addresspicker.ui:201 komposer/core/core.cpp:265
#, no-c-format
msgid "&Address Book"
msgstr "ααααα
βα’αΆααααααΆαβ"
#: komposer/core/core.cpp:268
msgid "&New Composer"
msgstr ""
#: komposer/core/core.cpp:273
msgid "&Attach File..."
msgstr ""
#: komposer/core/prefsmodule.cpp:49
#, fuzzy
msgid "Editors"
msgstr "αααααα·ααΈβαα·ααααβα
αααΆαα"
#: komposer/core/prefsmodule.cpp:62
msgid "komposerconfig"
msgstr ""
#: komposer/core/prefsmodule.cpp:63
msgid "TDE Komposer"
msgstr ""
#: komposer/core/prefsmodule.cpp:65
msgid "(c), 2003-2004 Zack Rusin"
msgstr ""
#: komposer/plugins/default/defaulteditor.cpp:132
msgid "C&lear"
msgstr ""
#: komposer/plugins/default/defaulteditor.cpp:147
msgid "&Bold"
msgstr ""
#: komposer/plugins/default/defaulteditor.cpp:152
msgid "&Italic"
msgstr ""
#: komposer/plugins/default/defaulteditor.cpp:158
#, fuzzy
msgid "&Underline"
msgstr "αα·αβααΆαβαααααβ"
#: komposer/plugins/default/defaulteditor.cpp:164
msgid "Text &Color..."
msgstr ""
#: komposer/plugins/default/defaulteditor.cpp:171
msgid "&Font"
msgstr ""
#: komposer/plugins/default/defaulteditor.cpp:177
msgid "Font &Size"
msgstr ""
#: komposer/plugins/default/defaulteditor.cpp:185
msgid "Align &Left"
msgstr ""
#: komposer/plugins/default/defaulteditor.cpp:190
msgid "Align &Center"
msgstr ""
#: komposer/plugins/default/defaulteditor.cpp:195
msgid "Align &Right"
msgstr ""
#: komposer/plugins/default/defaulteditor.cpp:200
msgid "&Justify"
msgstr ""
#: komposer/test/test.cpp:33
msgid "TDE mail editing manager"
msgstr ""
#: komposer/test/test.cpp:39
msgid "KomposerTest"
msgstr ""
#: kpixmapregionselectordialog.cpp:32
msgid "Select Region of Image"
msgstr "ααααΎαβαααααβααΌαααΆα"
#: kpixmapregionselectordialog.cpp:35
msgid "Please click and drag on the image to select the region of interest:"
msgstr "ααΌαβα
α»α
α αΎαβα’αΌαβααΎβααΌαααΆα ααΎααααΈβααααΎαβαααααβαααβα
αΆααβα’αΆααααααΒ α"
#: kpixmapregionselectorwidget.cpp:144
msgid "Image Operations"
msgstr "ααααααα·ααααα·ααΆαβααΌαααΆα"
#: kpixmapregionselectorwidget.cpp:146
msgid "&Rotate Clockwise"
msgstr "ααααα·αβααααβααααα·α
βααΆα‘α·ααΆ"
#: kpixmapregionselectorwidget.cpp:151
msgid "Rotate &Counterclockwise"
msgstr "ααααα·αβα
αααΆααααααα·α
βααΆα‘α·ααΆ"
#: kprefsdialog.cpp:234
msgid "Choose..."
msgstr "ααααΎα..."
#: kprefsdialog.cpp:738
msgid "Preferences"
msgstr "α
ααααβα
αααΌαβα
α·ααα"
#: kprefsdialog.cpp:853
msgid ""
"You are about to set all preferences to default values. All custom "
"modifications will be lost."
msgstr ""
"α’αααβαααβααΉαβαααααβα
ααααβα
αααΌαβα
α·αααβααΆααα’αα αα
βααΆβαααααβααααΆαααΎαΒ α ααΆαβααααααβααααΆααβαααα½αβααΆααα’αα ααΉαβααααΌαβααΆαβ"
"ααΆαααααΒ α"
#: kprefsdialog.cpp:854
msgid "Setting Default Preferences"
msgstr "ααΆαβαααααβα
ααααβα
αααΌαβα
α·αααβααααΆαααΎα"
#: kprefsdialog.cpp:855
msgid "Reset to Defaults"
msgstr "αααααβαα
βααΆβααααΆαααΎα"
#: kscoring.cpp:106
msgid ""
"Article\n"
"<b>%1</b><br><b>%2</b><br>caused the following note to appear:<br>%3"
msgstr ""
"α’ααααα\n"
"<b>%1</b><br><b>%2</b><br>αααααΆαβα²ααβα
αααΆαβααΆαβαααααβααα
α‘αΎαΒ α<br>%3"
#: kscoring.cpp:172
msgid "Adjust Score"
msgstr "αααααααΌαβαα·αααα»"
#: kscoring.cpp:173
msgid "Display Message"
msgstr "αααα αΆαβααΆα"
#: kscoring.cpp:174
msgid "Colorize Header"
msgstr "ααααΆαβααα"
#: kscoring.cpp:175
msgid "Mark As Read"
msgstr "αααααΆααβααΆβα’αΆαβαα½α
"
#: kscoring.cpp:364
msgid "<h1>List of collected notes</h1>"
msgstr "<h1>αααααΈβααβα
αααΆαβαααβααΆαβαααααΌα</h1>"
#: kscoring.cpp:387
msgid "Collected Notes"
msgstr "α
αααΆαβαααβααΆαβαααααΌα"
#: kscoring.cpp:452
msgid "Contains Substring"
msgstr "ααΆαβααααβα’ααααβαα"
#: kscoring.cpp:453
msgid "Matches Regular Expression"
msgstr "ααααΌααααααααααβααααααΆβ"
#: kscoring.cpp:454
msgid "Matches Regular Expression (Case Sensitive)"
msgstr "ααααΌααααβααααααβααααααΆ (αααααΆααβα’ααααααΌα
βαα)"
#: kscoring.cpp:455
msgid "Is Exactly the Same As"
msgstr "ααΌα
βααααα·α"
#: kscoring.cpp:456
msgid "Less Than"
msgstr "ααΌα
βααΆα"
#: kscoring.cpp:457
msgid "Greater Than"
msgstr "ααβααΆα"
#: kscoring.cpp:989
msgid "Choose Another Rule Name"
msgstr "ααααΎααααααβα
αααΆααβαα½αβαααβ"
#: kscoring.cpp:990
msgid "The rule name is already assigned, please choose another name:"
msgstr "αααααβα
αααΆααααααΌαβααΆααααααβαααααβαα½α
α αΎα ααΌαβααααΎαβααααααααααΒ α"
#: kscoring.cpp:1140
#, c-format
msgid "rule %1"
msgstr "α
αααΆαα %1"
#: kscoringeditor.cpp:69
msgid "Not"
msgstr "αα·α"
#: kscoringeditor.cpp:70
msgid "Negate this condition"
msgstr "ααα·αααβααααααααβααα"
#: kscoringeditor.cpp:75
msgid "Select the header to match this condition against"
msgstr "ααααΎαβααααΆαβααΎααααΈβααααΌααααβααααααααβαααβααΆαα½α"
#: kscoringeditor.cpp:79
msgid "Select the type of match"
msgstr "ααααΎαβααααααβααΆαααααΌαααα"
#: kscoringeditor.cpp:85
msgid "The condition for the match"
msgstr "ααααααααβααααΌαααα"
#: kscoringeditor.cpp:89
msgid "Edit..."
msgstr "ααβααααα½α..."
#: kscoringeditor.cpp:224
msgid "Select an action."
msgstr "ααααΎαβα’αααΎβαα½αΒ α"
#: kscoringeditor.cpp:408
msgid "&Name:"
msgstr "αααααΒ α"
#: kscoringeditor.cpp:414
msgid "&Groups:"
msgstr "αααα»αΒ α"
#: kscoringeditor.cpp:417
msgid "A&dd Group"
msgstr "ααααααβαααα»α"
#: kscoringeditor.cpp:428
msgid "&Expire rule automatically"
msgstr "αααα»αβαααααβα
αααΆαα αααβααααααααααααα·"
#: kscoringeditor.cpp:435
msgid "&Rule is valid for:"
msgstr "α
αααΆααβααΆαβαα»ααααΆαβαααααΆααΒ α"
#: kscoringeditor.cpp:444
msgid "Conditions"
msgstr "αααααααα"
#: kscoringeditor.cpp:452
msgid "Match a&ll conditions"
msgstr "ααααΌααααβαααααβαααααααα"
#: kscoringeditor.cpp:455
msgid "Matc&h any condition"
msgstr "ααααΌααααβααααααααβααΆβαα½α"
#: kscoringeditor.cpp:465
msgid "Actions"
msgstr "α’αααΎ"
#: kscoringeditor.cpp:589
msgid ""
"_n: day\n"
" days"
msgstr " ααααβ"
#: kscoringeditor.cpp:617
msgid "Move rule up"
msgstr "ααααΆααααΈβα
αααΆααβα‘αΎαβααΎ"
#: kscoringeditor.cpp:622
msgid "Move rule down"
msgstr "ααααΆααααΈβα
αααΆααβα
α»αβααααα"
#: kscoringeditor.cpp:630
msgid "New rule"
msgstr "α
αααΆααβααααΈ"
#: kscoringeditor.cpp:637
msgid "Edit rule"
msgstr "ααααααα½αβα
αααΆαα"
#: kscoringeditor.cpp:643
msgid "Remove rule"
msgstr "ααβα
αααΆααβα
αα"
#: kscoringeditor.cpp:648
msgid "Copy rule"
msgstr "α
ααααβα
αααΆαα"
#: kscoringeditor.cpp:656 kscoringeditor.cpp:661 kscoringeditor.cpp:700
msgid "<all groups>"
msgstr "<αααα»αβααΆααα’αα>"
#: kscoringeditor.cpp:662
msgid "Sho&w only rules for group:"
msgstr "αααα αΆαβααβα
αααΆααβαααααΆααβαααα»αΒ α"
#: kscoringeditor.cpp:862
msgid "Rule Editor"
msgstr "αααααα·ααΈβαα·ααααβα
αααΆαα"
#: kscoringeditor.cpp:961
msgid "Edit Rule"
msgstr "ααααααα½αβα
αααΆαα"
#: ksubscription.cpp:212
msgid "Reload &List"
msgstr "αααα»αβαααααΈβα‘αΎαβαα·α"
#: ksubscription.cpp:223
msgid "Manage which mail folders you want to see in your folder view"
msgstr "αααααααααβααβαααα»ααα αααβα’αααβα
ααβααΎαβαααα»αβαα·αααααΆαβααβααααβα’ααα"
#: ksubscription.cpp:229
msgid "S&earch:"
msgstr "αααααααΒ α"
#: ksubscription.cpp:233
msgid "Disable &tree view"
msgstr "αα·αβαα·αααααΆαβαααααΆα"
#: ksubscription.cpp:235
msgid "&Subscribed only"
msgstr "ααβααΆαβααΆααααα
αΆα"
#: ksubscription.cpp:237
msgid "&New only"
msgstr "ααβααααΈ"
#: ksubscription.cpp:246
msgid "Loading..."
msgstr "αααα»αβαααα»α..."
#: ksubscription.cpp:247
msgid "Current changes:"
msgstr "ααΆαβααααΆααααααΌαβαα
αα
α»ααααααΒ α"
#: addresspicker.ui:25 addresspicker.ui:250 ksubscription.cpp:267
#: ldapsearchdialog.cpp:155 ldapsearchdialog.cpp:353
#, no-c-format
msgid "Name"
msgstr "ααααα"
#: ksubscription.cpp:305
msgid "Subscribe To"
msgstr "ααΆαβαααα
αΆαβαα
"
#: ksubscription.cpp:308
msgid "Unsubscribe From"
msgstr "αααβααΆαβααΈ"
#: ksubscription.cpp:774
#, c-format
msgid ""
"_n: Loading... (1 matching)\n"
"Loading... (%n matching)"
msgstr "αααα»αβαααα»α... (ααΌα
%n)"
#: ksubscription.cpp:777
msgid ""
"_n: %1: (1 matching)\n"
"%1: (%n matching)"
msgstr "%1Β α (ααΌα
%n)"
#: kwidgetlister.cpp:60
msgid ""
"_: more widgets\n"
"More"
msgstr "α
αααΎα"
#: kwidgetlister.cpp:63
msgid ""
"_: fewer widgets\n"
"Fewer"
msgstr "αα·α
"
#: kwidgetlister.cpp:70
msgid ""
"_: clear widgets\n"
"Clear"
msgstr "ααααα"
#: ldapsearchdialog.cpp:76 ldapsearchdialog.cpp:303
msgid "Title"
msgstr "αα»αααΆα"
#: ldapsearchdialog.cpp:77 ldapsearchdialog.cpp:286
msgid "Full Name"
msgstr "αααααβααα"
#: ldapsearchdialog.cpp:79 ldapsearchdialog.cpp:157 ldapsearchdialog.cpp:288
#: ldapsearchdialog.cpp:360
msgid "Home Number"
msgstr "αααβααΌααααααβαααα"
#: ldapsearchdialog.cpp:80 ldapsearchdialog.cpp:158 ldapsearchdialog.cpp:289
#: ldapsearchdialog.cpp:362
msgid "Work Number"
msgstr "αααβααΌααααααβααααααααααΎααΆα"
#: ldapsearchdialog.cpp:81 ldapsearchdialog.cpp:290
msgid "Mobile Number"
msgstr "αααβααΌααααααβα
ααα"
#: ldapsearchdialog.cpp:82 ldapsearchdialog.cpp:291
msgid "Fax Number"
msgstr "αααβααΌαααΆα"
#: ldapsearchdialog.cpp:83
msgid "Pager"
msgstr "ααααα"
#: ldapsearchdialog.cpp:84 ldapsearchdialog.cpp:294
msgid "Street"
msgstr "ααααΌα"
#: ldapsearchdialog.cpp:85 ldapsearchdialog.cpp:295
msgid "State"
msgstr "αααα"
#: ldapsearchdialog.cpp:86 ldapsearchdialog.cpp:296
msgid "Country"
msgstr "αααααα"
#: ldapsearchdialog.cpp:87 ldapsearchdialog.cpp:299
msgid "City"
msgstr "ααΈαααα»α"
#: ldapsearchdialog.cpp:88 ldapsearchdialog.cpp:293
msgid "Organization"
msgstr "α’αααααΆα"
#: ldapsearchdialog.cpp:89 ldapsearchdialog.cpp:292
msgid "Company"
msgstr "αααα»αα αα»α"
#: ldapsearchdialog.cpp:91 ldapsearchdialog.cpp:297
msgid "Zip Code"
msgstr "ααΌαβααααα"
#: ldapsearchdialog.cpp:92 ldapsearchdialog.cpp:298
msgid "Postal Address"
msgstr "βα’αΆααααααΆαβαααααααΈαα"
#: ldapsearchdialog.cpp:94 ldapsearchdialog.cpp:302
msgid "User ID"
msgstr "ααααααααΆααβα’αααβααααΎ"
#: ldapsearchdialog.cpp:128 ldapsearchdialog.cpp:135
msgid "Search for Addresses in Directory"
msgstr "αααααβααβα’αΆααααααΆαβαα
βαααα»αβαα"
#: ldapsearchdialog.cpp:144
msgid "Search for:"
msgstr "αααααααΒ α"
#: ldapsearchdialog.cpp:151
msgid "in"
msgstr "αα
βαααα»α"
#: ldapsearchdialog.cpp:164 ldapsearchdialog.cpp:418
msgid "Search"
msgstr "ααααααα"
#: ldapsearchdialog.cpp:172
msgid "Recursive search"
msgstr "αααααβααβα‘αΎααα·α"
#: ldapsearchdialog.cpp:177
msgid "Contains"
msgstr "ααΆα"
#: ldapsearchdialog.cpp:178
msgid "Starts With"
msgstr "α
αΆααααααΎαβααα"
#: ldapsearchdialog.cpp:191
msgid "Unselect All"
msgstr "αα·αβααααΎαβααΆααα’αα"
#: ldapsearchdialog.cpp:193
msgid "Add Selected"
msgstr "ααααααβα’αααΈβααΆαααααΎα"
#: ldapsearchdialog.cpp:234
msgid ""
"You must select a LDAP server before searching.\n"
"You can do this from the menu Settings/Configure KAddressBook."
msgstr ""
"α’αααβααααΌαβααβααααΎαβαααΆαααΈαβαααααΎ LDAP αα»αβααΉαβαααααααΒ α\n"
"α’αααβα’αΆα
βααααΎβααααααβααΆαβααΈββαααΊαα»αββααΆαβααααα/αααααβαα
ααΆαααααααα KAddressBookΒ α"
#: maillistdrag.cpp:236
msgid "Retrieving and storing messages..."
msgstr "αααα»ααα
βαα αα·αβαα»αβααΆα..."
#: pluginloaderbase.cpp:96
msgid "Unnamed plugin"
msgstr "αααααα·ααΈβαααα½αβααααΆαβααααα"
#: pluginloaderbase.cpp:103
msgid "No description available"
msgstr "αα·αβααΆαβααα
ααααΈβαααααΆ"
#: progressdialog.cpp:171
msgid "Cancel this operation."
msgstr "ααααααβααααα·ααααα·ααΆαβαααΒ α"
#: progressmanager.cpp:96
msgid "Aborting..."
msgstr "αααα»αβαααααα..."
#: recentaddresses.cpp:161
msgid "Edit Recent Addresses"
msgstr "ααααααα½αβα’αΆααααααΆαβααααΈαααα"
#: sendsmsdialog.cpp:31
msgid "Send SMS"
msgstr "ααααΎβααΆαβααααΈα"
#: sendsmsdialog.cpp:37
msgid "Message"
msgstr "ααΆα"
#: sendsmsdialog.cpp:46
msgid "Recipient:"
msgstr "α’αααααα½αΒ α"
#: sendsmsdialog.cpp:49
msgid "Send"
msgstr "ααααΎ"
#: ssllabel.cpp:69
msgid "Connection is encrypted"
msgstr "ααΆααβααααΆααβααααΌαααΆαα’αα·αααααΈα"
#: ssllabel.cpp:75
msgid "Connection is unencrypted"
msgstr "ααΆααααααΆαααα·αααααΌαααΆαα’αα·αααααΈα"
#: statusbarprogresswidget.cpp:81
msgid "Open detailed progress dialog"
msgstr "ααΎαβαααα’ααβαααααααΆαβαααα’α·α"
#: statusbarprogresswidget.cpp:287
msgid "Hide detailed progress window"
msgstr "ααΆααβαααα’α½α
βαααααααΆαβαααα’α·α"
#: statusbarprogresswidget.cpp:292
msgid "Show detailed progress window"
msgstr "αααα αΆαβαααα’α½α
βαααααααΆαβαααα’α·α"
#: tdeconfigpropagator.cpp:39
msgid "Change Config Value"
msgstr "ααααΆααααααΌαβααααααααααβαα
ααΆααααααααβ"
#: tdeconfigwizard.cpp:36 tdeconfigwizard.cpp:45
msgid "Configuration Wizard"
msgstr "α’αααβαααα½αααΆαβααΆααα
ααΆααααααααβ"
#: tdeconfigwizard.cpp:84
msgid "Rules"
msgstr "α
αααΆαα"
#: tdeconfigwizard.cpp:90
msgid "Source"
msgstr "ααααα"
#: tdeconfigwizard.cpp:91
msgid "Target"
msgstr "ααααα
"
#: tdeconfigwizard.cpp:92
msgid "Condition"
msgstr "αααααααα"
#: tdeconfigwizard.cpp:125
msgid "Changes"
msgstr "ααΆαβααααΆααααααΌα"
#: tdeconfigwizard.cpp:131
msgid "Action"
msgstr "αααααααΆα"
#: tdeconfigwizard.cpp:132
msgid "Option"
msgstr "αααααΎα"
#: tdeconfigwizard.cpp:133
msgid "Value"
msgstr "ααααα"
#: tdeconfigwizard.cpp:166
msgid ""
"Please make sure that the programs which are configured by the wizard do not "
"run in parallel to the wizard; otherwise, changes done by the wizard could "
"be lost."
msgstr ""
"ααΌαβααααΎβα²ααβααααΆααβααΆ αααααα·ααΈβαααβααααΌαβααΆαβαααααβαα
ααΆααααααααβαααβα’αααβαααα½αααΆα αα·αβαααβααααβαααβααΆαα½αβα’αααβ"
"αααα½αααΆα ααΎβαα»αβαααβαα ααΆαβααααΆααααααΌαβαααβααΆαβααααΎβαααβα’αααβαααα½αααΆα α’αΆα
βααΉαβααααΌαβααΆαααααΒ α"
#: tdeconfigwizard.cpp:169
msgid "Run Wizard Now"
msgstr "αααβα’αααβαααα½αααΆαβα₯α‘αΌα"
#: tdefileio.cpp:31
msgid "File I/O Error"
msgstr "ααα α»α I/O αα
βαααα»αβα―αααΆα"
#: tdefileio.cpp:51 tdefileio.cpp:122
#, c-format
msgid ""
"The specified file does not exist:\n"
"%1"
msgstr ""
"αα·αβααΆαβα―αααΆαβαααβααΆαβαααααΆααβα‘αΎαΒ α\n"
"%1"
#: tdefileio.cpp:57 tdefileio.cpp:129
#, c-format
msgid ""
"This is a folder and not a file:\n"
"%1"
msgstr ""
"αααβααΆβαα αα·αβαααβααΆβα―αααΆαβα‘αΎαΒ α\n"
"%1"
#: tdefileio.cpp:63 tdefileio.cpp:136
#, c-format
msgid ""
"You do not have read permissions to the file:\n"
"%1"
msgstr ""
"α’αααβαα·αβααΆαβαα·αααα·βα’αΆαβα―αααΆααααβα‘αΎαΒ α\n"
"%1"
#: tdefileio.cpp:74 tdefileio.cpp:147
#, c-format
msgid ""
"Could not read file:\n"
"%1"
msgstr ""
"αα·αβα’αΆα
βα’αΆαβα―αααΆαβααΆαβα‘αΎαΒ α\n"
"%1"
#: tdefileio.cpp:77 tdefileio.cpp:150
#, c-format
msgid ""
"Could not open file:\n"
"%1"
msgstr ""
"αα·αβα’αΆα
βααΎαβα―αααΆαβααΆαβα‘αΎαΒ α\n"
"%1"
#: tdefileio.cpp:80 tdefileio.cpp:153
#, c-format
msgid ""
"Error while reading file:\n"
"%1"
msgstr ""
"ααα α»αβααααααβα’αΆαβα―αααΆαΒ α\n"
"%1"
#: tdefileio.cpp:96 tdefileio.cpp:165
msgid "Could only read %1 bytes of %2."
msgstr "α’αΆα
βα’αΆαβαα %1 αα αα %2 ααα»αααααΒ α"
#: tdefileio.cpp:193
msgid ""
"File %1 exists.\n"
"Do you want to replace it?"
msgstr ""
"ααΆαβα―αααΆα %1Β α\n"
"ααΎβα’αααβα
ααβαααα½αβααΆβα¬Β ?"
#: tdefileio.cpp:196 tdefileio.cpp:213
msgid "Save to File"
msgstr "αααααΆαα»αβαα
βα―αααΆα"
#: tdefileio.cpp:196
msgid "&Replace"
msgstr "αααα½α"
#: tdefileio.cpp:211
msgid ""
"Failed to make a backup copy of %1.\n"
"Continue anyway?"
msgstr ""
"ααΆαβαααΆαααβαααα»αβααΆαβαααααΎαβα
αααΆααβα
ααααβααααα»αβαα»αβαα %1Β α\n"
"αααΆαβααΆβααβααα ααααΒ ?"
#: tdefileio.cpp:224 tdefileio.cpp:241
#, c-format
msgid ""
"Could not write to file:\n"
"%1"
msgstr ""
"αα·αβα’αΆα
βαααααβαα
βααΆααβα―αααΆαβααΆαβα‘αΎαΒ α\n"
"%1"
#: tdefileio.cpp:227
#, c-format
msgid ""
"Could not open file for writing:\n"
"%1"
msgstr ""
"αα·αβα’αΆα
βααΎαβα―αααΆα ααΎααααΈβαααααβααΆαβα‘αΎαΒ α\n"
"%1"
#: tdefileio.cpp:231
#, c-format
msgid ""
"Error while writing file:\n"
"%1"
msgstr ""
"ααα α»αβαααβαααβαααααβα―αααΆαΒ α\n"
"%1"
#: tdefileio.cpp:246
msgid "Could only write %1 bytes of %2."
msgstr "α’αΆα
βαααααβαα %1 αα αα %2 ααα»αααααΒ α"
#: tdefileio.cpp:285
msgid "%1 does not exist"
msgstr "αα·αβααΆα %1"
#: tdefileio.cpp:297
msgid "%1 is not accessible and that is unchangeable."
msgstr "%1 αα·αβα’αΆα
βα
αΌαβααααΎαααΆαβααΆαβα‘αΎα ααΌα
ααααβαα·αβα’αΆα
βααααΆααααααΌαβααΆαβα‘αΎαΒ α"
#: tdefileio.cpp:318
msgid "%1 is not readable and that is unchangeable."
msgstr "%1 αα·αβα’αΆα
βα’αΆαβααΆαβα‘αΎα ααΌα
ααααβαα·αβα’αΆα
βααααΆααααααΌαβααΆαβα‘αΎα α"
#: tdefileio.cpp:334
msgid "%1 is not writable and that is unchangeable."
msgstr "%1 αα·αβα’αΆα
βαααααβααΆαβα‘αΎα ααΌα
ααααβαα·αβα’αΆα
βααααΆααααααΌαβααΆαβα‘αΎα α"
#: tdefileio.cpp:349
msgid "Folder %1 is inaccessible."
msgstr "αα %1 ααΊβαα·αβα’αΆα
βα
αΌαααααΎαααΆαβααΆαβα‘αΎαΒ α"
#: tdefileio.cpp:380
msgid ""
"Some files or folders do not have the right permissions, please correct them "
"manually."
msgstr "α―αααΆα α¬ ααβαα·αβααΆαβαα·αααα·βααααΉαααααΌαβα‘αΎα ααΌαβααβαα½αβααΆβαααβααΒ α"
#: tdefileio.cpp:383
msgid "Permissions Check"
msgstr "αα·αα·αααβαα·αααα·"
#: ../libemailfunctions/email.cpp:465
msgid ""
"The email address you entered is not valid because it contains more than one "
"@. You will not create valid messages if you do not change your address."
msgstr ""
"α’αΆααααααΆαβα’ααΈαααβαααβα’αααβααΆαβαααα
αΌα αα·αααααΉαααααΌαβα‘αΎα αααααβααΆβααΆαβαααααΆ @ α
αααΎαβααΆαβαα½αβΒ α ααΎβα’αααβαα·αβααααΌαβ"
"α’αΆααααααΆαβαα α’αααβααΉαβαα·αβα’αΆα
βαααααΎαβααΆαβααααΉαααααΌαβααΆαα‘αΎαΒ α"
#: ../libemailfunctions/email.cpp:470
msgid ""
"The email address you entered is not valid because it does not contain a @."
"You will not create valid messages if you do not change your address."
msgstr ""
"α’αΆααααααΆαβα’ααΈαααβαααβα’αααβααΆαβαααα
αΌα αα·αααααΉαααααΌαβα‘αΎα αααααβααΆβαα·αβααΆαβαααααΆ @Β α ααΎβα’αααβαα·αβααααΌαβα’αΆααααααΆαβ"
"αα α’αααβααΉαβαα·αβα’αΆα
βαααααΎαβααΆαβααααΉαααααΌαβααΆαα‘αΎα α"
#: ../libemailfunctions/email.cpp:475
msgid "You have to enter something in the email address field."
msgstr "α’αααβααααΌαβααβαααα
αΌαβα’αααΈβαα½αβαα
αααα»αβααΆαβα’αΆααααααΆαβα’ααΈαααΒ α"
#: ../libemailfunctions/email.cpp:477
msgid ""
"The email address you entered is not valid because it does not contain a "
"local part."
msgstr "α’αΆααααααΆαβα’ααΈαααββαααβα’αααβααΆαβαααα
αΌα αα·αααααΉαααααΌαβα‘αΎα αααααβααΆβαα·αβααΆαβαααααβααΌαααααΆαΒ α"
#: ../libemailfunctions/email.cpp:480
msgid ""
"The email address you entered is not valid because it does not contain a "
"domain part."
msgstr "α’αΆααααααΆαβα’ααΈαααββαααβα’αααβααΆαβαααα
αΌα αα·αβααααΉαααααΌαβα‘αΎα αααααβααΆβαα·αβααΆαβαααααβαααΒ Β αβ"
#: ../libemailfunctions/email.cpp:483
msgid ""
"The email address you entered is not valid because it contains unclosed "
"comments/brackets."
msgstr "α’αΆααααααΆαββα’ααΈαααββαααββα’αααββααΆαββαααα
αΌα βαα·αααααΉαααααΌαα‘αΎαβαααααβααΆβααΆαβααα
ααααΈβα’αα·ααααΆα/ααααααβααΎαΒ α)"
#: ../libemailfunctions/email.cpp:486
msgid "The email address you entered is valid."
msgstr "α’αΆααααααΆαβα’ααΈαααββαααβα’αααββααΆαββαααα
αΌα βααΊααααΉαααααΌαβα αΎαΒ α"
#: ../libemailfunctions/email.cpp:488
msgid ""
"The email address you entered is not valid because it contains an unclosed "
"anglebracket."
msgstr "α’αΆααααααΆαβα’ααΈαααβαααβα’αααβααΆαβαααα
αΌα αα·αααααΉαααααΌαβα‘αΎα αααααβααΆβααΆαααααααβαα»αβααΎαΒ α"
#: ../libemailfunctions/email.cpp:491
msgid ""
"The email address you entered is not valid because it contains an unopened "
"anglebracket."
msgstr "α’αΆααααααΆαβα’ααΈαααβαααβα’αααβααΆαβαααα
αΌα αα·αααααΉαααααΌαβα‘αΎα αααααβααΆβααΆαααααααβαα»αβαα·α α"
#: ../libemailfunctions/email.cpp:494
msgid ""
"The email address you have entered is not valid because it contains an "
"unexpected comma."
msgstr "α’αΆααααααΆαβα’ααΈαααβαααβα’αααβααΆαβαααα
αΌα αα·αααααΉαααααΌαβα‘αΎα αααααβααΆβααΆααααααΆβαααααΒ α"
#: ../libemailfunctions/email.cpp:497
msgid ""
"The email address you entered is not valid because it ended unexpectedly, "
"this probably means you have used an escaping type character like an \\ as "
"the last character in your email address."
msgstr ""
"α’αΆααααααΆαα’ααΈαααββαααβα’αααβααΆαβαααα
αΌα αα·αβααααΉαααααΌαβα‘αΎα αααααααΆβααΆαβαααα
αααααβαα·αβααααΉαβααααΌαβ αααβαααα ααβααΆβα’αααβ"
"ααΆαβααααΎβαα½α’ααααβααα
βααΌα
ααΆ \\ ααΆααΎα αα
βα
α»αβα’αΆααααααΆαα’ααΈαααβααααβα’αααΒ α"
#: ../libemailfunctions/email.cpp:502
msgid ""
"The email address you entered is not valid because it contains quoted text "
"which does not end."
msgstr "α’αΆααααααΆαα’ααΈαααββαααββα’αααβααΆαβαααα
αΌα αα·αααααΉαααααΌαβα‘αΎα αααααβααΆβααΆαβα’αααααβααααααβαααβαα·αβααΆααβαα·αΒ α"
#: ../libemailfunctions/email.cpp:505 ../libemailfunctions/email.cpp:566
msgid ""
"The email address you entered is not valid because it does not seem to "
"contain an actual email address, i.e. something of the form joe@kde.org."
msgstr ""
"α’αΆααααααΆαα’ααΈαααββαααβα’αααβααΆαβαααα
αΌα αα·αααααΉαααααΌαβα‘αΎα αααααβααΆβααΌα
ααΆβαα·αβααΆαβα’αΆααααααΆαβαα·αααααΆααβΒ ααΌα
ααΆβ"
"αααααα joe@kde.org ααΆααΎαΒ α"
#: ../libemailfunctions/email.cpp:509
msgid ""
"The email address you entered is not valid because it contains an illegal "
"character."
msgstr "α’αΆααααααΆαβαααβα’αααβααΆαβαααα
αΌα αα·αβααααΉαααααΌαβα‘αΎα αααααβααΆβααΆαβαα½α’ααααβα αΆαααΆααΒ α"
#: ../libemailfunctions/email.cpp:512
msgid ""
"The email address you have entered is not valid because it contains an "
"invalid displayname."
msgstr "α’αΆααααααΆαα’ααΈαααββαααβα’αααβααΆαβαααα
αΌα αα·αααααΉαααααΌαβα‘αΎα αααααβααΆβααΆαβαααααβαααα αΆαβαα·αβααααΉαααααΌαΒ α"
#: ../libemailfunctions/email.cpp:515
msgid "Unknown problem with email address"
msgstr "αα·αβααααΆααβαααα αΆβαααβααΎαβααΆαβααΆαα½αβα’αΆααααααΆαβα’ααΈααα"
#: ../libkpimidentities/identity.cpp:104
msgid "<qt>Failed to execute signature script<br><b>%1</b>:<br>%2</qt>"
msgstr "<qt>ααΆαβαααΆαααβαααα»αβααΆαβααααα·ααααα·βααααααΈαβα αααααααΆΒ <br><b>%1</b>Β α<br>%2</qt>"
#: ../libkpimidentities/identitycombo.cpp:96
msgid "%1 (Default)"
msgstr "%1 (ααααΆαααΎα)"
#: ../libkpimidentities/identitymanager.cpp:340
msgid "Unnamed"
msgstr "ααααΆαααααα"
#: addresspicker.ui:36 addresspicker.ui:261
#, no-c-format
msgid "Email Address"
msgstr "α’αΆααααααΆαβα’ααΈααα"
#: addresspicker.ui:100
#, no-c-format
msgid "&To >>"
msgstr "αα
>>"
#: addresspicker.ui:111
#, no-c-format
msgid "&CC >>"
msgstr "α
αααα >>"
#: addresspicker.ui:122
#, no-c-format
msgid "&BCC >>"
msgstr "ααΆαα >>"
#: addresspicker.ui:150
#, no-c-format
msgid "<< &Remove"
msgstr "<< ααα
αα"
#: addresspicker.ui:182
#, no-c-format
msgid "&Selected Addresses"
msgstr "α’αΆααααααΆαβαααβααΆαβααααΎα"
#: addresspicker.ui:223
#, no-c-format
msgid "&Filter on:"
msgstr "ααααβααΎΒ α"
#: addresspicker.ui:300
#, no-c-format
msgid "Save as &Distribution List..."
msgstr "αααααΆαα»αβααΆβαααααΈβα
ααα
αΆα..."
#: addresspicker.ui:303
#, no-c-format
msgid "Alt+D"
msgstr "αααα½α(Alt)+D"
#: addresspicker.ui:311
#, no-c-format
msgid "&Search Directory Service"
msgstr "αααααααβααααΆβαα"
#: categoryeditdialog_base.ui:36 categoryselectdialog_base.ui:31
#, no-c-format
msgid "Category"
msgstr "αααααα"
#: categoryeditdialog_base.ui:68
#, no-c-format
msgid "A&dd"
msgstr "αααααα"
#: categoryselectdialog_base.ui:63
#, no-c-format
msgid "&Clear Selection"
msgstr "αααααβαααααΎα"
#: categoryselectdialog_base.ui:88
#, no-c-format
msgid "&Edit Categories..."
msgstr "ααααααα½ααααααα..."
#: cfgc/exampleprefs_base.kcfg:9
#, fuzzy, no-c-format
msgid "One option"
msgstr "αααααΎα"
#: cfgc/exampleprefs_base.kcfg:13
#, no-c-format
msgid "Another option"
msgstr ""
#: cfgc/exampleprefs_base.kcfg:17
#, no-c-format
msgid "This is some funky option"
msgstr ""
#: cfgc/exampleprefs_base.kcfg:18
#, no-c-format
msgid ""
"And this is a longer description of this option. Just wondering, how will "
"the translations of those be handled?"
msgstr ""
#: cfgc/exampleprefs_base.kcfg:21
#, no-c-format
msgid "One"
msgstr ""
#: cfgc/exampleprefs_base.kcfg:24
#, fuzzy, no-c-format
msgid "Two"
msgstr "αα
"
#: cfgc/exampleprefs_base.kcfg:27
#, no-c-format
msgid "Three"
msgstr ""
#: cfgc/exampleprefs_base.kcfg:35
#, no-c-format
msgid "This is a string"
msgstr ""
#: cfgc/general_base.ui:16
#, no-c-format
msgid "AutoExampleDialog"
msgstr ""
#: cfgc/general_base.ui:27
#, fuzzy, no-c-format
msgid "OneOption"
msgstr "αααααΎα"
#: cfgc/general_base.ui:40
#, fuzzy, no-c-format
msgid "AnotherOption:"
msgstr "ααα
ααααΈβαααααΆΒ α"
#: cfgc/myoptions_base.ui:28
#, no-c-format
msgid "MyString:"
msgstr ""
#: komposer/core/komposerui.rc:5
#, fuzzy, no-c-format
msgid "&Message"
msgstr "ααΆα"
#: komposer/core/komposerui.rc:22
#, fuzzy, no-c-format
msgid "&Attach"
msgstr "α―αααΆαβααααΆααβ"
#: komposer/plugins/default/defaulteditorui.rc:20
#, no-c-format
msgid "F&ormat"
msgstr ""
#: komposer/plugins/default/defaulteditorui.rc:27
#, no-c-format
msgid "&Alignment"
msgstr ""
#: komposer/plugins/default/defaulteditorui.rc:46
#, no-c-format
msgid "Editor Toolbar"
msgstr ""
#: komposer/plugins/default/defaulteditorui.rc:58
#, no-c-format
msgid "Format Toolbar"
msgstr ""
#: pimemoticons.kcfg:8
#, no-c-format
msgid "Emoticon theme"
msgstr "αααααβαααααΆα’αΆαααααα"
#: pimemoticons.kcfg:9
#, no-c-format
msgid "This allows you to change the emoticon theme that should be used."
msgstr "ααΆβα’αα»ααααΆαβα²ααβα’αααβααααΆααααααΌαβαααααβαααααΆβα’αΆαααααα αααβαα½αβααααΌαβααΆαβααααΎΒ α"
#, fuzzy
#~ msgid "No"
#~ msgstr "αα·α"
#, fuzzy
#~ msgid "Add"
#~ msgstr "αααααα"
#, fuzzy
#~ msgid "Edit"
#~ msgstr "ααβααααα½α..."
#, fuzzy
#~ msgid "Remove"
#~ msgstr "<< ααα
αα"
#, fuzzy
#~ msgid "Select All"
#~ msgstr "αα·αβααααΎαβααΆααα’αα"
#, fuzzy
#~ msgid "Default"
#~ msgstr "%1 (ααααΆαααΎα)"
#, fuzzy
#~ msgid "&Remove"
#~ msgstr "<< ααα
αα"
#, fuzzy
#~ msgid "&Edit"
#~ msgstr "ααβααααα½α..."
|