~dpniel/dekko/trunk2

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
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Dan Chapman.
# This file is distributed under the same license as the dekko.dekkoproject package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: dekko.dekkoproject\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-16 17:04+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"

#: src/3rdParty/trojita/Imap/Tasks/FetchMsgMetadataTask.cpp:102
msgid "Downloading headers"
msgstr ""

#: src/3rdParty/trojita/Imap/Tasks/ListChildMailboxesTask.cpp:161
msgid "Listing mailboxes"
msgstr ""

#: src/3rdParty/trojita/Imap/Tasks/EnableTask.cpp:86
msgid "Enabling IMAP extensions"
msgstr ""

#: src/3rdParty/trojita/Imap/Tasks/AppendTask.cpp:97
msgid "Uploading message"
msgstr ""

#: src/3rdParty/trojita/Imap/Tasks/ImapTask.cpp:256
#, qt-format
msgid ""
"The server sent the following ALERT:\n"
"%1"
msgstr ""

#: src/3rdParty/trojita/Imap/Tasks/NoopTask.cpp:74
msgid "Checking for new messages"
msgstr ""

#: src/3rdParty/trojita/Imap/Tasks/DeleteMailboxTask.cpp:109
msgid "Deleting mailbox"
msgstr ""

#: src/3rdParty/trojita/Imap/Tasks/DeleteMailboxTask.cpp:115
#, qt-format
msgid "Mailbox %1 has pending activity, so it cannot be deleted now."
msgstr ""

#: src/3rdParty/trojita/Imap/Tasks/NumberOfMessagesTask.cpp:99
#: src/3rdParty/trojita/Imap/Tasks/SubscribeUnsubscribeTask.cpp:115
msgid "Looking for messages"
msgstr ""

#: src/3rdParty/trojita/Imap/Tasks/UpdateFlagsTask.cpp:148
msgid "Saving message state"
msgstr ""

#: src/3rdParty/trojita/Imap/Tasks/ObtainSynchronizedMailboxTask.cpp:73
msgid "Mailbox syncing dead or aborted"
msgstr ""

#: src/3rdParty/trojita/Imap/Tasks/ObtainSynchronizedMailboxTask.cpp:1208
msgid "Synchronizing mailbox"
msgstr ""

#: src/3rdParty/trojita/Imap/Tasks/OpenConnectionTask.cpp:164
msgid ""
"Configuration requires sending STARTTLS, but the IMAP server greets us with "
"PREAUTH. Encryption cannot be established. If this configuration worked "
"previously, someone is after your data and they are pretty smart."
msgstr ""

#: src/3rdParty/trojita/Imap/Tasks/OpenConnectionTask.cpp:196
msgid "Server has closed the connection"
msgstr ""

#: src/3rdParty/trojita/Imap/Tasks/OpenConnectionTask.cpp:203
#, qt-format
msgid ""
"The server replied with the following BAD response:\n"
"%1"
msgstr ""

#: src/3rdParty/trojita/Imap/Tasks/OpenConnectionTask.cpp:205
msgid "Server has greeted us with a BAD response"
msgstr ""

#: src/3rdParty/trojita/Imap/Tasks/OpenConnectionTask.cpp:237
#, qt-format
msgid "STARTTLS failed: %1"
msgstr ""

#: src/3rdParty/trojita/Imap/Tasks/OpenConnectionTask.cpp:266
msgid "Capabilities still contain LOGINDISABLED even after STARTTLS"
msgstr ""

#: src/3rdParty/trojita/Imap/Tasks/OpenConnectionTask.cpp:303
msgid "Temporary failure because a subsystem is down."
msgstr ""

#: src/3rdParty/trojita/Imap/Tasks/OpenConnectionTask.cpp:306
msgid ""
"Authentication failed.  This often happens due to bad password or wrong user "
"name."
msgstr ""

#: src/3rdParty/trojita/Imap/Tasks/OpenConnectionTask.cpp:309
msgid ""
"Authentication succeeded in using the authentication identity, but the "
"server cannot or will not allow the authentication identity to act as the "
"requested authorization identity."
msgstr ""

#: src/3rdParty/trojita/Imap/Tasks/OpenConnectionTask.cpp:314
msgid ""
"Either authentication succeeded or the server no longer had the necessary "
"data; either way, access is no longer permitted using that passphrase.  You "
"should get a new passphrase."
msgstr ""

#: src/3rdParty/trojita/Imap/Tasks/OpenConnectionTask.cpp:319
msgid "The operation is not permitted due to a lack of privacy."
msgstr ""

#: src/3rdParty/trojita/Imap/Tasks/OpenConnectionTask.cpp:322
msgid "You should contact the system administrator or support desk."
msgstr ""

#: src/3rdParty/trojita/Imap/Tasks/OpenConnectionTask.cpp:329
#, qt-format
msgid "Login failed: %1"
msgstr ""

#: src/3rdParty/trojita/Imap/Tasks/OpenConnectionTask.cpp:331
#, qt-format
msgid ""
"%1\n"
"\n"
"%2"
msgstr ""

#: src/3rdParty/trojita/Imap/Tasks/OpenConnectionTask.cpp:382
msgid "Server does not support STARTTLS"
msgstr ""

#: src/3rdParty/trojita/Imap/Tasks/OpenConnectionTask.cpp:402
msgid "Server did not provide useful capabilities"
msgstr ""

#: src/3rdParty/trojita/Imap/Tasks/OpenConnectionTask.cpp:406
msgid "CAPABILITIES command has failed"
msgstr ""

#: src/3rdParty/trojita/Imap/Tasks/OpenConnectionTask.cpp:474
msgid "No credentials available"
msgstr ""

#: src/3rdParty/trojita/Imap/Tasks/OpenConnectionTask.cpp:481
msgid "Connecting to mail server"
msgstr ""

#: src/3rdParty/trojita/Imap/Tasks/OpenConnectionTask.cpp:501
msgid "The security state of the SSL connection got rejected"
msgstr ""

#: src/3rdParty/trojita/Imap/Tasks/OpenConnectionTask.cpp:510
msgid ""
"The security state of the connection after a STARTTLS operation got rejected"
msgstr ""

#: src/3rdParty/trojita/Imap/Tasks/SortTask.cpp:235
msgid "Sorting mailbox"
msgstr ""

#: src/3rdParty/trojita/Imap/Tasks/ExpungeMailboxTask.cpp:78
msgid "Removing deleted messages"
msgstr ""

#: src/3rdParty/trojita/Imap/Tasks/UpdateFlagsOfAllMessagesTask.cpp:105
msgid "Saving mailbox state"
msgstr ""

#: src/3rdParty/trojita/Imap/Tasks/ThreadTask.cpp:109
msgid "Fetching conversations"
msgstr ""

#: src/3rdParty/trojita/Imap/Tasks/FetchMsgPartTask.cpp:118
msgid "Downloading messages"
msgstr ""

#: src/3rdParty/trojita/Imap/Tasks/ExpungeMessagesTask.cpp:105
msgid "Removing some of the deleted messages"
msgstr ""

#: src/3rdParty/trojita/Imap/Tasks/UidSubmitTask.cpp:55
#, qt-format
msgid "UIDVALIDITY mismatch: expected %1, got %2"
msgstr ""

#: src/3rdParty/trojita/Imap/Tasks/UidSubmitTask.cpp:84
msgid "Sending mail"
msgstr ""

#: src/3rdParty/trojita/Imap/Tasks/IdTask.cpp:89
msgid "Identifying server"
msgstr ""

#: src/3rdParty/trojita/Imap/Tasks/KeepMailboxOpenTask.cpp:721
msgid "Logging off..."
msgstr ""

#: src/3rdParty/trojita/Imap/Tasks/KeepMailboxOpenTask.cpp:962
msgid "The UIDVALIDITY has changed while mailbox is open. Please reconnect."
msgstr ""

#: src/3rdParty/trojita/Imap/Tasks/OfflineConnectionTask.cpp:63
#: src/3rdParty/trojita/Imap/Network/MsgPartNetworkReply.cpp:92
#: src/app/Utils/AttachmentDownloader.cpp:109
#: src/app/Network/MessagePartNetworkReply.cpp:66
msgid "Offline"
msgstr ""

#: src/3rdParty/trojita/Imap/Tasks/CopyMoveMessagesTask.cpp:133
msgid "Copying messages"
msgstr ""

#: src/3rdParty/trojita/Imap/Tasks/CreateMailboxTask.cpp:89
msgid "Creating mailbox"
msgstr ""

#: src/3rdParty/trojita/Imap/Tasks/GenUrlAuthTask.cpp:86
msgid "Obtaining authentication token"
msgstr ""

#: src/3rdParty/trojita/Imap/Model/ThreadingMsgListModel.cpp:313
msgid "[Message is missing]"
msgstr ""

#: src/3rdParty/trojita/Imap/Model/ThreadingMsgListModel.cpp:316
msgid ""
"This thread refers to an extra message, but that message is not present in "
"the selected mailbox, or is missing from the current search context."
msgstr ""

#: src/3rdParty/trojita/Imap/Model/NetworkWatcher.cpp:52
#, qt-format
msgid "Attempting to reconnect in %1 secs"
msgstr ""

#: src/3rdParty/trojita/Imap/Model/SystemNetworkWatcher.cpp:91
msgid ""
"Qt does not recognize any network session. Please be sure that qtbearer "
"package (or similar) is installed. Assuming that network is actually already "
"available."
msgstr ""

#: src/3rdParty/trojita/Imap/Model/ImapAccess.cpp:278
#, qt-format
msgid "Failed to create directory %1"
msgstr ""

#: src/3rdParty/trojita/Imap/Model/ImapAccess.cpp:287
#, qt-format
msgid "Failed to set safe permissions on cache directory %1"
msgstr ""

#: src/3rdParty/trojita/Imap/Model/MailboxTree.cpp:1201
#: src/app/Contacts/ContactsModel.cpp:232
msgid "Today"
msgstr ""

#: src/3rdParty/trojita/Imap/Model/MailboxTree.cpp:1205
#: src/app/Contacts/ContactsModel.cpp:234
msgid "Yesterday"
msgstr ""

#: src/3rdParty/trojita/Imap/Model/MailboxTree.cpp:1208
msgid "dddd"
msgstr ""

#. : The format specifiers (yyyy, etc) must not be translated, but
#. : their order can be changed to follow the local conventions
#: src/3rdParty/trojita/Imap/Model/MailboxTree.cpp:1213
msgid "dd MMMM yyyy"
msgstr ""

#. :33 just as "18:33" even though the local time was "18:20" already. In a perfect world, we would
#. also periodically emit dataChanged() in order to force a wrap once the view has been open for too long, but that will
#. have to wait a bit.
#. The time is displayed without seconds to conserve space as well.
#. : please do not translate the format specifier (you can change their order
#. : or the separator to follow the local conventions)
#: src/3rdParty/trojita/Imap/Model/MailboxTree.cpp:1225
#: src/3rdParty/trojita/UiUtils/Formatting.cpp:129
msgid "hh:mm"
msgstr ""

#. : please do not translate the format specifier (you can change their order
#. : or the separator to follow the local conventions)
#: src/3rdParty/trojita/Imap/Model/MailboxTree.cpp:1229
#: src/3rdParty/trojita/UiUtils/Formatting.cpp:134
msgid "ddd hh:mm"
msgstr ""

#: src/3rdParty/trojita/Imap/Model/MailboxTree.cpp:1232
msgid "dd MMM"
msgstr ""

#: src/3rdParty/trojita/Imap/Model/MailboxTree.cpp:1677
#, qt-format
msgid "[loading %1...]"
msgstr ""

#: src/3rdParty/trojita/Imap/Model/MailboxTree.cpp:1678
#, qt-format
msgid "[loading %1: %2...]"
msgstr ""

#: src/3rdParty/trojita/Imap/Model/MailboxTree.cpp:1690
#, qt-format
msgid "%1 bytes of data"
msgstr ""

#: src/3rdParty/trojita/Imap/Model/Model.cpp:1145
msgid "Going offline"
msgstr ""

#: src/3rdParty/trojita/Imap/Model/Model.cpp:1219
msgid ""
"<p>It appears that you are connecting to a POP3 server. That won't work here."
"</p>"
msgstr ""

#: src/3rdParty/trojita/Imap/Model/Model.cpp:1221
msgid ""
"<p>It appears that you are connecting to an SMTP server. That won't work "
"here.</p>"
msgstr ""

#: src/3rdParty/trojita/Imap/Model/Model.cpp:1282
msgid "We aren't talking to an IMAP4 server"
msgstr ""

#. : now this message sucks
#: src/3rdParty/trojita/Imap/Model/Model.cpp:1536
msgid "The connection is being killed for unspecified reason"
msgstr ""

#: src/3rdParty/trojita/Imap/Model/MsgListModel.cpp:301
#: qml/Composer/Composer.qml:254
msgid "Subject"
msgstr ""

#: src/3rdParty/trojita/Imap/Model/MsgListModel.cpp:303
#: qml/Composer/Identities/IdentitySelector.qml:58
msgid "From"
msgstr ""

#: src/3rdParty/trojita/Imap/Model/MsgListModel.cpp:305
#: qml/Composer/Recipients/TypeLabel.qml:39
msgid "To"
msgstr ""

#: src/3rdParty/trojita/Imap/Model/MsgListModel.cpp:307
#: qml/Composer/Recipients/TypeLabel.qml:41
msgid "Cc"
msgstr ""

#: src/3rdParty/trojita/Imap/Model/MsgListModel.cpp:309
#: qml/Composer/Recipients/TypeLabel.qml:43
msgid "Bcc"
msgstr ""

#: src/3rdParty/trojita/Imap/Model/MsgListModel.cpp:311
msgid "Date"
msgstr ""

#: src/3rdParty/trojita/Imap/Model/MsgListModel.cpp:313
msgid "Received"
msgstr ""

#: src/3rdParty/trojita/Imap/Model/MsgListModel.cpp:315
msgid "Size"
msgstr ""

#: src/3rdParty/trojita/Imap/Model/FullMessageCombiner.cpp:122
msgid "Message is gone"
msgstr ""

#: src/3rdParty/trojita/Imap/Model/FullMessageCombiner.cpp:137
msgid "Offline mode: uncached message data not available"
msgstr ""

#: src/3rdParty/trojita/Imap/Model/FullMessageCombiner.cpp:139
msgid "Offline mode: uncached header data not available"
msgstr ""

#: src/3rdParty/trojita/Imap/Model/FullMessageCombiner.cpp:141
msgid "Offline mode: uncached body data not available"
msgstr ""

#: src/3rdParty/trojita/Imap/Model/PrettyMailboxModel.cpp:81
#, qt-format
msgid "%1 (%2/%3)"
msgstr ""

#: src/3rdParty/trojita/Imap/Model/PrettyMailboxModel.cpp:85
#, qt-format
msgid "%1 (%2)"
msgstr ""

#: src/3rdParty/trojita/Imap/Model/PrettyMailboxModel.cpp:126
#, qt-format
msgid ""
"<p>%1</p>\n"
"<p>%2 messages<br/>%3 unread<br/>%4 recent</p>"
msgstr ""

#: src/3rdParty/trojita/Imap/Model/TaskPresentationModel.cpp:195
#, qt-format
msgid "Parser %1"
msgstr ""

#: src/3rdParty/trojita/Imap/Model/TaskPresentationModel.cpp:200
#, qt-format
msgid "%1: %2"
msgstr ""

#: src/3rdParty/trojita/Imap/Model/PrettyMsgListModel.cpp:106
msgid "Loading..."
msgstr ""

#: src/3rdParty/trojita/Imap/Model/PrettyMsgListModel.cpp:108
msgid "(no subject)"
msgstr ""

#: src/3rdParty/trojita/Imap/Network/FileDownloadManager.cpp:50
#: src/app/Utils/AttachmentDownloader.cpp:69
#, c-format, qt-format
msgid "msg_%1.eml"
msgstr ""

#: src/3rdParty/trojita/Imap/Network/FileDownloadManager.cpp:53
#: src/app/Utils/AttachmentDownloader.cpp:72
#, qt-format
msgid "msg_%1_%2"
msgstr ""

#: src/3rdParty/trojita/Imap/Network/ForbiddenReply.cpp:34
msgid "Remote Content Is Banned"
msgstr ""

#: src/3rdParty/trojita/Plugins/QtKeyChain/QtKeyChainPassword.cpp:129
msgid "Secure storage via QtKeychain"
msgstr ""

#: src/3rdParty/trojita/Plugins/ClearTextPassword/ClearTextPassword.cpp:52
#: src/3rdParty/trojita/Plugins/ClearTextPassword/ClearTextPassword.cpp:68
#: src/3rdParty/trojita/Plugins/ClearTextPassword/ClearTextPassword.cpp:80
#: src/plugins/SimpleCryptPassword/EncryptedPassword.cpp:81
#: src/plugins/SimpleCryptPassword/EncryptedPassword.cpp:93
msgid "This plugin only supports storing of IMAP and SMTP passwords"
msgstr ""

#: src/3rdParty/trojita/MSA/SMTP.cpp:48
msgid "Sending of the message was cancelled"
msgstr ""

#: src/3rdParty/trojita/MSA/SMTP.cpp:63
msgid "Sending of the message failed."
msgstr ""

#: src/3rdParty/trojita/MSA/SMTP.cpp:65
#, qt-format
msgid "Sending of the message failed with the following error: %1"
msgstr ""

#: src/3rdParty/trojita/MSA/SMTP.cpp:143
msgid "Unknown SMTP mode"
msgstr ""

#: src/3rdParty/trojita/MSA/AbstractMSA.cpp:51
#, qt-format
msgid "Sending mail plaintext is not supported by %1"
msgstr ""

#: src/3rdParty/trojita/MSA/AbstractMSA.cpp:59
#, qt-format
msgid "BURL is not supported by %1"
msgstr ""

#: src/3rdParty/trojita/MSA/AbstractMSA.cpp:68
#, qt-format
msgid "IMAP sending is not supported by %1"
msgstr ""

#: src/3rdParty/trojita/MSA/AbstractMSA.cpp:74
#, qt-format
msgid "Setting password is not supported by %1"
msgstr ""

#: src/3rdParty/trojita/MSA/AbstractMSA.cpp:80
#, qt-format
msgid "Setting token is not supported by %1"
msgstr ""

#: src/3rdParty/trojita/MSA/Sendmail.cpp:81
#, qt-format
msgid "The sendmail process has failed: %1"
msgstr ""

#: src/3rdParty/trojita/MSA/Sendmail.cpp:103
#, qt-format
msgid ""
"The sendmail process has failed (%1):\n"
"%2\n"
"%3"
msgstr ""

#: src/3rdParty/trojita/UiUtils/PasswordWatcher.cpp:79
#, qt-format
msgid "Loading password from plugin %1..."
msgstr ""

#: src/3rdParty/trojita/UiUtils/PasswordWatcher.cpp:83
#, qt-format
msgid "Cannot read password via plugin %1"
msgstr ""

#: src/3rdParty/trojita/UiUtils/PasswordWatcher.cpp:86
#: src/3rdParty/trojita/UiUtils/PasswordWatcher.cpp:175
msgid "Password plugin is not available."
msgstr ""

#: src/3rdParty/trojita/UiUtils/PasswordWatcher.cpp:117
#, qt-format
msgid "Password reading failed: %1"
msgstr ""

#: src/3rdParty/trojita/UiUtils/PasswordWatcher.cpp:146
#, qt-format
msgid "Password writing failed: %1"
msgstr ""

#: src/3rdParty/trojita/UiUtils/PasswordWatcher.cpp:168
#, qt-format
msgid "Saving password from plugin %1..."
msgstr ""

#: src/3rdParty/trojita/UiUtils/PasswordWatcher.cpp:172
#, qt-format
msgid "Cannot save password via plugin %1"
msgstr ""

#: src/3rdParty/trojita/UiUtils/Formatting.cpp:87
msgid "0"
msgstr ""

#: src/3rdParty/trojita/UiUtils/Formatting.cpp:97
#, qt-format
msgid "%1 bytes"
msgstr ""

#: src/3rdParty/trojita/UiUtils/Formatting.cpp:99
msgid "kB"
msgstr ""

#: src/3rdParty/trojita/UiUtils/Formatting.cpp:101
msgid "MB"
msgstr ""

#: src/3rdParty/trojita/UiUtils/Formatting.cpp:103
msgid "GB"
msgstr ""

#: src/3rdParty/trojita/UiUtils/Formatting.cpp:106
msgid "TB"
msgstr ""

#: src/3rdParty/trojita/UiUtils/Formatting.cpp:108
#, qt-format
msgid "%1 %2"
msgstr ""

#. : please do not translate the format specifier (you can change their order
#. : or the separator to follow the local conventions)
#: src/3rdParty/trojita/UiUtils/Formatting.cpp:139
msgid "d MMM hh:mm"
msgstr ""

#: src/3rdParty/trojita/UiUtils/Formatting.cpp:173
#, qt-format
msgid ""
"<li><b>CN</b>: %1,<br/>\n"
"<b>Organization</b>: %2,<br/>\n"
"<b>Serial</b>: %3,<br/>\n"
"<b>SHA1</b>: %4,<br/>\n"
"<b>MD5</b>: %5</li>"
msgstr ""

#: src/3rdParty/trojita/UiUtils/Formatting.cpp:177
#: src/3rdParty/trojita/UiUtils/Formatting.cpp:178
msgid ", "
msgstr ""

#: src/3rdParty/trojita/UiUtils/Formatting.cpp:188
msgid "<p>The remote side doesn't have a certificate.</p>\n"
msgstr ""

#: src/3rdParty/trojita/UiUtils/Formatting.cpp:189
#, qt-format
msgid ""
"<p>This is the certificate chain of the connection:</p>\n"
"<ul>%1</ul>\n"
msgstr ""

#: src/3rdParty/trojita/UiUtils/Formatting.cpp:189
#: src/3rdParty/trojita/UiUtils/Formatting.cpp:204
msgid "\n"
msgstr ""

#: src/3rdParty/trojita/UiUtils/Formatting.cpp:197
#: src/3rdParty/trojita/UiUtils/Formatting.cpp:199
#, qt-format
msgid "<li>%1</li>"
msgstr ""

#: src/3rdParty/trojita/UiUtils/Formatting.cpp:204
#, qt-format
msgid ""
"<p>The connection triggered the following SSL errors:</p>\n"
"<ul>%1</ul>\n"
msgstr ""

#: src/3rdParty/trojita/UiUtils/Formatting.cpp:215
msgid "Different SSL certificate"
msgstr ""

#: src/3rdParty/trojita/UiUtils/Formatting.cpp:216
#, qt-format
msgid ""
"<p>The public key of the SSL certificate has changed. This should only "
"happen when there was a security incident on the remote server. Your system "
"configuration is set to accept such certificates anyway.</p>\n"
"%1\n"
"<p>Would you like to connect and remember the new certificate?</p>"
msgstr ""

#: src/3rdParty/trojita/UiUtils/Formatting.cpp:223
msgid "SSL certificate looks fishy"
msgstr ""

#: src/3rdParty/trojita/UiUtils/Formatting.cpp:224
#, qt-format
msgid ""
"<p>The public key of the SSL certificate of the IMAP server has changed "
"since the last time and your system doesn't believe that the new certificate "
"is genuine.</p>\n"
"%1\n"
"%2\n"
"<p>Would you like to connect anyway and remember the new certificate?</p>"
msgstr ""

#: src/3rdParty/trojita/UiUtils/Formatting.cpp:233
#: src/3rdParty/trojita/UiUtils/Formatting.cpp:240
msgid "Accept SSL connection?"
msgstr ""

#: src/3rdParty/trojita/UiUtils/Formatting.cpp:234
#, qt-format
msgid ""
"<p>This is the first time you're connecting to this IMAP server; the "
"certificate is trusted by this system.</p>\n"
"%1\n"
"%2\n"
"<p>Would you like to connect and remember this certificate's public key for "
"the next time?</p>"
msgstr ""

#: src/3rdParty/trojita/UiUtils/Formatting.cpp:241
#, qt-format
msgid ""
"<p>This is the first time you're connecting to this IMAP server and the "
"server certificate failed validation test.</p>\n"
"%1\n"
"\n"
"%2\n"
"<p>Would you like to connect and remember this certificate's public key for "
"the next time?</p>"
msgstr ""

#: src/3rdParty/trojita/Composer/SenderIdentitiesModel.cpp:94
#: qml/Settings/user/SenderIdentityInput.qml:51
msgid "Name"
msgstr ""

#: src/3rdParty/trojita/Composer/SenderIdentitiesModel.cpp:96
msgid "E-mail"
msgstr ""

#: src/3rdParty/trojita/Composer/SenderIdentitiesModel.cpp:98
#: qml/Contact/ContactEditPage.qml:152
#: qml/Settings/user/SenderIdentityInput.qml:68
msgid "Organization"
msgstr ""

#: src/3rdParty/trojita/Composer/SenderIdentitiesModel.cpp:100
#: qml/Settings/user/SenderIdentityInput.qml:77
msgid "Signature"
msgstr ""

#: src/3rdParty/trojita/Composer/MessageComposer.cpp:600
#: src/3rdParty/trojita/Composer/MessageComposer.cpp:629
#, qt-format
msgid "Attachment %1 is not available"
msgstr ""

#: src/3rdParty/trojita/Composer/MessageComposer.cpp:634
#, qt-format
msgid "Attachment %1 disappeared"
msgstr ""

#: src/3rdParty/trojita/Composer/ComposerAttachments.cpp:126
#, qt-format
msgid ""
"%1\n"
"(from %2)"
msgstr ""

#: src/3rdParty/trojita/Composer/ComposerAttachments.cpp:137
msgid "File does not exist"
msgstr ""

#: src/3rdParty/trojita/Composer/ComposerAttachments.cpp:140
msgid "File is not readable"
msgstr ""

#: src/3rdParty/trojita/Composer/ComposerAttachments.cpp:241
msgid "Message not available"
msgstr ""

#: src/3rdParty/trojita/Composer/ComposerAttachments.cpp:254
#, qt-format
msgid "IMAP message %1"
msgstr ""

#: src/3rdParty/trojita/Composer/ComposerAttachments.cpp:373
#, qt-format
msgid "IMAP part %1"
msgstr ""

#: src/3rdParty/trojita/Composer/Submission.cpp:104
msgid "Preparing to send"
msgstr ""

#: src/3rdParty/trojita/Composer/Submission.cpp:109
msgid "Creating message"
msgstr ""

#: src/3rdParty/trojita/Composer/Submission.cpp:114
msgid "Saving to the sent folder"
msgstr ""

#: src/3rdParty/trojita/Composer/Submission.cpp:119
msgid "Preparing message for delivery"
msgstr ""

#: src/3rdParty/trojita/Composer/Submission.cpp:124
msgid "Submitting message"
msgstr ""

#: src/3rdParty/trojita/Composer/Submission.cpp:129
msgid "Updating message keywords"
msgstr ""

#: src/3rdParty/trojita/Composer/Submission.cpp:134
msgid "Message sent"
msgstr ""

#: src/3rdParty/trojita/Composer/Submission.cpp:141
msgid "Sending failed"
msgstr ""

#: src/3rdParty/trojita/Composer/Submission.cpp:173
msgid ""
"The IMAP connection has disappeared. You'll have close the composer, save "
"the draft and re-open it later. The attachments will have to be added later. "
"Sorry for the trouble"
msgstr ""

#. : relax this to wait here
#: src/3rdParty/trojita/Composer/Submission.cpp:186
msgid "Some data are not available yet"
msgstr ""

#: src/3rdParty/trojita/Composer/Submission.cpp:202
#, qt-format
msgid ""
"Cannot send right now -- saving failed:\n"
" %1"
msgstr ""

#: src/3rdParty/trojita/Composer/Submission.cpp:206
#, qt-format
msgid ""
"Cannot send right now -- saving (CATENATE) failed:\n"
" %1"
msgstr ""

#: src/3rdParty/trojita/Composer/Submission.cpp:331
msgid "Sent"
msgstr ""

#: src/3rdParty/trojita/Composer/Submission.cpp:351
#, qt-format
msgid "APPEND failed: %1"
msgstr ""

#: src/3rdParty/trojita/Composer/Submission.cpp:381
msgid "The URLAUTH response does not contain a proper URL"
msgstr ""

#: src/app/Utils/AttachmentDownloader.cpp:85
msgid "Download failed."
msgstr ""

#: src/app/Accounts/Account.cpp:606 src/app/Accounts/SenderIdentity.cpp:90
msgid "Sent using Dekko from my Ubuntu device"
msgstr ""

#: src/app/Models/MessageModel.cpp:132 src/app/Composition/Composer.cpp:555
msgid "you"
msgstr ""

#: src/app/Models/MessageModel.cpp:134
#, qt-format
msgid "to %1"
msgstr ""

#: src/app/Composition/Composer.cpp:557
#, qt-format
msgid "On %1, %2 wrote:\n"
msgstr ""

#: src/app/Composition/Composer.cpp:621
msgid "This message has no destination"
msgstr ""

#: src/app/Composition/Composer.cpp:624
msgid "No configured identities. Have you got an smtp account setup?"
msgstr ""

#: src/app/Composition/Composer.cpp:627
msgid "Please select an identity for this message"
msgstr ""

#: src/app/Composition/Composer.cpp:630
msgid "Subject required"
msgstr ""

#: src/app/Composition/SubmissionManager.cpp:125
msgid "No recipients given, please provide a recipient for this message"
msgstr ""

#. : %1 is an email address
#: src/app/Composition/SubmissionManager.cpp:135
#, qt-format
msgid ""
"%1 is not a vaild mailaddress format. Please check your Sender Identity "
"configuration in settings"
msgstr ""

#: src/app/Composition/SubmissionManager.cpp:140
msgid "Subject field is empty, please provide a subject for this message"
msgstr ""

#: src/app/Composition/SubmissionManager.cpp:157
msgid "Something went wrong and dekko cannot serialize this message."
msgstr ""

#: src/app/Composition/SubmissionManager.cpp:183
msgid "Unable to send message, please provide a proper configuration"
msgstr ""

#: src/plugins/SimpleCryptPassword/EncryptedPassword.cpp:70
msgid "This plugin only supports storing imap and smtp passwords"
msgstr ""

#: qml/main.qml:122 qml/main.qml:135 qml/main.qml:172
#: qml/Stages/MainStage.qml:185
msgid "New Message"
msgstr ""

#: qml/MessageView/RecipientInfo.qml:58
msgid "Copy to clipboard"
msgstr ""

#: qml/MessageView/RecipientInfo.qml:72 qml/Contact/ContactChoicePage.qml:33
#: qml/Composer/Recipients/RecipientInfo.qml:95
msgid "Add to addressbook"
msgstr ""

#: qml/MessageView/DekkoWebView.qml:154
msgid "Open in browser?"
msgstr ""

#: qml/MessageView/DekkoWebView.qml:155
#, qt-format
msgid "Confirm to open %1 in web browser"
msgstr ""

#: qml/MessageView/AttachmentsPanel.qml:83
#: qml/Composer/Attachments/AttachmentsPanel.qml:88 qml/Utils/Utils.js:121
msgid "Attachments"
msgstr ""

#: qml/MessageView/ThreadMessageHeader.qml:51
msgid "Hide details"
msgstr ""

#: qml/MessageView/ThreadMessageHeader.qml:51
msgid "View details"
msgstr ""

#: qml/MessageView/ThreadDelegate.qml:145
#: qml/MessageView/OneMessagePage.qml:119
msgid "e-mails read today"
msgstr ""

#: qml/MessageView/ThreadDelegate.qml:146
#: qml/MessageView/OneMessagePage.qml:120
msgid "No e-mails read today"
msgstr ""

#: qml/MessageView/MessageSourceViewer.qml:36
msgid "Message source"
msgstr ""

#: qml/MessageView/MessageSourceViewer.qml:57 qml/Composer/Composer.qml:86
msgid "Error"
msgstr ""

#: qml/MessageView/DetailsPanel.qml:48
msgid "From:"
msgstr ""

#: qml/MessageView/DetailsPanel.qml:101
msgid "To:"
msgstr ""

#: qml/MessageView/DetailsPanel.qml:107
msgid "Cc:"
msgstr ""

#: qml/MessageView/MessageContextMenu.qml:49
#: qml/MessageListView/MessageListDelegate.qml:202
msgid "Forward"
msgstr ""

#: qml/MessageView/MessageContextMenu.qml:73
msgid "Full screen"
msgstr ""

#: qml/MessageView/MessageContextMenu.qml:96
msgid "View source"
msgstr ""

#: qml/MessageView/MessageContextMenu.qml:120
#, qt-format
msgid "Zoom: %1%"
msgstr ""

#: qml/Contact/ContactEditPage.qml:70
msgid "Edit contact"
msgstr ""

#: qml/Contact/ContactEditPage.qml:70
msgid "New contact"
msgstr ""

#: qml/Contact/ContactEditPage.qml:76
msgid "Error creating contact"
msgstr ""

#: qml/Contact/ContactEditPage.qml:77
msgid "Please fill in the name of the contact."
msgstr ""

#: qml/Contact/ContactEditPage.qml:139
msgid "First name"
msgstr ""

#: qml/Contact/ContactEditPage.qml:147
msgid "Surname"
msgstr ""

#: qml/Contact/ContactEditPage.qml:162
msgid "Email"
msgstr ""

#: qml/Contact/ContactEditPage.qml:214
msgid "Add email"
msgstr ""

#: qml/Contact/ContactDetailPageBase.qml:165
msgid "Emails"
msgstr ""

#: qml/Contact/ContactDetailPageBase.qml:196
#, qt-format
msgid "Remove contact %1?"
msgstr ""

#: qml/Contact/AddressbookContactDelegate.qml:84
msgid "emails"
msgstr ""

#: qml/Contact/AddressbookPage.qml:96
#, qt-format
msgid "%1 contacts imported."
msgstr ""

#: qml/Contact/AddressbookPage.qml:105 qml/AccountsView/AccountsDrawer.qml:166
msgid "Addressbook"
msgstr ""

#: qml/Contact/AddressbookPage.qml:109
#: qml/MessageListView/MessageListPage.qml:63
#: qml/MailboxView/MailboxListPage.qml:39
msgid "All"
msgstr ""

#: qml/Contact/AddressbookPage.qml:109
msgid "Recent"
msgstr ""

#: qml/Contact/AddressbookPage.qml:109
#: qml/MessageListView/MessageListPage.qml:63
msgid "Starred"
msgstr ""

#: qml/Contact/AddressbookPage.qml:160 qml/Contact/ContactChoicePage.qml:210
msgid "Search contact"
msgstr ""

#: qml/Contact/ContactChoicePage.qml:33
msgid "Add recipients"
msgstr ""

#: qml/Contact/ContactChoicePage.qml:79
msgid "Recipient kind"
msgstr ""

#: qml/Contact/imports/AddContactDialog.qml:27
msgid "Add Contact"
msgstr ""

#: qml/Contact/imports/AddContactDialog.qml:35
msgid "From VCard file"
msgstr ""

#: qml/Contact/imports/AddContactDialog.qml:45
msgid "From Address Book"
msgstr ""

#: qml/Contact/imports/AddContactDialog.qml:53
msgid "Enter Details"
msgstr ""

#: qml/Contact/imports/AddContactDialog.qml:61
#: qml/Dialogs/PasswordDialog.qml:90 qml/Dialogs/MoveMessageActionDialog.qml:58
#: qml/Dialogs/ConfirmationDialog.qml:27 qml/Composer/ComposePage.qml:133
msgid "Cancel"
msgstr ""

#: qml/Settings/ServerView.qml:7 qml/DeveloperMode/DevSettingsTabs.qml:160
msgid "Server Settings"
msgstr ""

#: qml/Settings/ServerView.qml:29
msgid "IMAP"
msgstr ""

#: qml/Settings/ServerView.qml:29
msgid "SMTP"
msgstr ""

#: qml/Settings/AboutPage.qml:34
msgid "About"
msgstr ""

#: qml/Settings/AboutPage.qml:54
msgid "Dekko Email Client"
msgstr ""

#: qml/Settings/AboutPage.qml:103
#, qt-format
msgid "Version %1"
msgstr ""

#: qml/Settings/AboutPage.qml:120
msgid "Want to say thanks?<br>Then please consider making a donation."
msgstr ""

#: qml/Settings/AboutPage.qml:135
msgid "Donate"
msgstr ""

#: qml/Settings/AboutPage.qml:145
msgid ""
"If you wish to support the future development of Dekko, please consider "
"making recurring donations."
msgstr ""

#: qml/Settings/global/GlobalSettingsListView.qml:13
msgid "Settings"
msgstr ""

#: qml/Settings/global/OfflineSettingsPage.qml:14
msgid "Offline Settings"
msgstr ""

#: qml/Settings/global/OfflineSettingsPage.qml:30
#: qml/Settings/global/GlobalSettingsListModel.qml:125
msgid "Start offline"
msgstr ""

#: qml/Settings/global/OfflineSettingsPage.qml:48
msgid ""
"Starting offline may cause the views to not fully load, but re-opening that "
"view will fix it"
msgstr ""

#: qml/Settings/global/OfflineSettingsPage.qml:59
msgid "Cache Offline"
msgstr ""

#: qml/Settings/global/OfflineSettingsPage.qml:60
msgid "Do not cache"
msgstr ""

#: qml/Settings/global/OfflineSettingsPage.qml:60
msgid "Cache offline for X days"
msgstr ""

#: qml/Settings/global/OfflineSettingsPage.qml:60
msgid "Cache everything"
msgstr ""

#: qml/Settings/global/OfflineSettingsPage.qml:90
msgid "Number of days to cache offline"
msgstr ""

#: qml/Settings/global/CachePolicySelector.qml:60
#: qml/Settings/global/MarkReadSelector.qml:77
#: qml/Settings/user/SignatureSelector.qml:96
#: qml/Settings/user/MailboxBehaviour.qml:77
#: qml/Settings/user/MailboxBehaviour.qml:246
msgid "Never"
msgstr ""

#: qml/Settings/global/CachePolicySelector.qml:105
msgid "Cache for"
msgstr ""

#: qml/Settings/global/CachePolicySelector.qml:123
msgid "days"
msgstr ""

#: qml/Settings/global/CachePolicySelector.qml:134
msgid "Forever"
msgstr ""

#: qml/Settings/global/CompositionSettingsPage.qml:13
msgid "Composition"
msgstr ""

#: qml/Settings/global/MarkReadSelector.qml:91
msgid "After 1 second"
msgstr ""

#: qml/Settings/global/MarkReadSelector.qml:105
msgid "After 2 seconds"
msgstr ""

#: qml/Settings/global/MarkReadSelector.qml:119
msgid "After 3 seconds"
msgstr ""

#: qml/Settings/global/MarkReadSelector.qml:134
msgid "Immediately"
msgstr ""

#: qml/Settings/global/PreviewSelector.qml:48
msgid "Disable"
msgstr ""

#: qml/Settings/global/PreviewSelector.qml:62
msgid "1 line"
msgstr ""

#: qml/Settings/global/PreviewSelector.qml:76
msgid "2 lines"
msgstr ""

#: qml/Settings/global/GlobalSettingsListModel.qml:17
msgid "Account settings"
msgstr ""

#: qml/Settings/global/GlobalSettingsListModel.qml:46
#: qml/AccountsView/AccountsListView.qml:134
#: qml/MessageListView/MessageListDelegate.qml:160
#: qml/MessageListView/MessagesListView.qml:268
#: qml/MailboxView/MailboxListView.qml:71
msgid "Delete"
msgstr ""

#: qml/Settings/global/GlobalSettingsListModel.qml:58
msgid "Display settings"
msgstr ""

#: qml/Settings/global/GlobalSettingsListModel.qml:66
msgid "Mark messages read"
msgstr ""

#: qml/Settings/global/GlobalSettingsListModel.qml:77
msgid "Show preview"
msgstr ""

#: qml/Settings/global/GlobalSettingsListModel.qml:83
msgid "Prefer plain text messages"
msgstr ""

#: qml/Settings/global/GlobalSettingsListModel.qml:89
msgid "Auto load images"
msgstr ""

#: qml/Settings/global/GlobalSettingsListModel.qml:94
msgid "Hide messages marked for deletion"
msgstr ""

#: qml/Settings/global/GlobalSettingsListModel.qml:99
msgid "Enable avatars"
msgstr ""

#: qml/Settings/global/GlobalSettingsListModel.qml:109
msgid "Privacy and security"
msgstr ""

#: qml/Settings/global/GlobalSettingsListModel.qml:112
msgid "Show you are using Dekko"
msgstr ""

#: qml/Settings/global/GlobalSettingsListModel.qml:122
msgid "Offline settings"
msgstr ""

#: qml/Settings/global/GlobalSettingsListModel.qml:135
msgid "Cache offline"
msgstr ""

#: qml/Settings/user/ServerSettings.qml:54
#: qml/Settings/user/OutgoingServerSettings.qml:60
#: qml/SetupWizard/ManualSetup.qml:98 qml/SetupWizard/ManualSetup.qml:201
msgid "Host name"
msgstr ""

#: qml/Settings/user/ServerSettings.qml:66
#: qml/Settings/user/OutgoingServerSettings.qml:73
#: qml/SetupWizard/UserInput.qml:117 qml/SetupWizard/UserInput.qml:128
#: qml/SetupWizard/ManualSetup.qml:123 qml/SetupWizard/ManualSetup.qml:226
msgid "Username"
msgstr ""

#: qml/Settings/user/ServerSettings.qml:90
#: qml/Settings/user/OutgoingServerSettings.qml:97
#: qml/SetupWizard/UserInput.qml:177 qml/SetupWizard/ManualSetup.qml:135
#: qml/SetupWizard/ManualSetup.qml:238
msgid "Password"
msgstr ""

#: qml/Settings/user/ServerSettings.qml:109
#: qml/Settings/user/OutgoingServerSettings.qml:116
#: qml/SetupWizard/UserInput.qml:191 qml/SetupWizard/ManualSetup.qml:147
#: qml/SetupWizard/ManualSetup.qml:249 qml/Dialogs/PasswordDialog.qml:74
msgid "Show password"
msgstr ""

#: qml/Settings/user/ServerSettings.qml:114
#: qml/Settings/user/OutgoingServerSettings.qml:121
#: qml/SetupWizard/ManualSetup.qml:111 qml/SetupWizard/ManualSetup.qml:214
msgid "Port"
msgstr ""

#: qml/Settings/user/ServerSettings.qml:164
msgid "Show only subscribed folders"
msgstr ""

#: qml/Settings/user/ServerSettings.qml:176
msgid "Server capabilities"
msgstr ""

#: qml/Settings/user/SignatureSelector.qml:68
msgid "All messages"
msgstr ""

#: qml/Settings/user/SignatureSelector.qml:82
msgid "Only new messages"
msgstr ""

#: qml/Settings/user/MailboxBehaviour.qml:46
msgid "Archiving"
msgstr ""

#: qml/Settings/user/MailboxBehaviour.qml:50
msgid "Enable archiving"
msgstr ""

#: qml/Settings/user/MailboxBehaviour.qml:58
msgid "Archive messages"
msgstr ""

#: qml/Settings/user/MailboxBehaviour.qml:59
msgid "In Archive folder"
msgstr ""

#: qml/Settings/user/MailboxBehaviour.qml:64
msgid "Archive format"
msgstr ""

#: qml/Settings/user/MailboxBehaviour.qml:65
msgid "Monthly"
msgstr ""

#: qml/Settings/user/MailboxBehaviour.qml:69
msgid "Composing messages"
msgstr ""

#: qml/Settings/user/MailboxBehaviour.qml:74
msgid "Save sent messages"
msgstr ""

#: qml/Settings/user/MailboxBehaviour.qml:78
#, qt-format
msgid "In %1 folder"
msgstr ""

#: qml/Settings/user/MailboxBehaviour.qml:78
#: qml/Settings/user/MailboxBehaviour.qml:247
msgid "Select folder..."
msgstr ""

#: qml/Settings/user/MailboxBehaviour.qml:125
msgid "Attempt re-submit on fail"
msgstr ""

#: qml/Settings/user/MailboxBehaviour.qml:133
msgid "Quote original message"
msgstr ""

#: qml/Settings/user/MailboxBehaviour.qml:142
msgid "Start reply"
msgstr ""

#: qml/Settings/user/MailboxBehaviour.qml:143
#: qml/Settings/user/QuoteSelector.qml:68
msgid "Above quoted message"
msgstr ""

#: qml/Settings/user/MailboxBehaviour.qml:152
msgid "Include signature"
msgstr ""

#: qml/Settings/user/MailboxBehaviour.qml:161
msgid "Include addresses"
msgstr ""

#: qml/Settings/user/MailboxBehaviour.qml:162
msgid "added to every message"
msgstr ""

#: qml/Settings/user/MailboxBehaviour.qml:180
msgid "Cc these addresses"
msgstr ""

#: qml/Settings/user/MailboxBehaviour.qml:201
msgid "Bcc these addresses"
msgstr ""

#: qml/Settings/user/MailboxBehaviour.qml:218
msgid "Use comma separated values"
msgstr ""

#: qml/Settings/user/MailboxBehaviour.qml:226 qml/Composer/ComposePage.qml:109
msgid "Drafts"
msgstr ""

#: qml/Settings/user/MailboxBehaviour.qml:233
msgid "Save drafts"
msgstr ""

#: qml/Settings/user/MailboxBehaviour.qml:234
#, qt-format
msgid "In %1"
msgstr ""

#: qml/Settings/user/MailboxBehaviour.qml:238
msgid "Deleting messages"
msgstr ""

#: qml/Settings/user/MailboxBehaviour.qml:243
msgid "Move deleted messages"
msgstr ""

#: qml/Settings/user/MailboxBehaviour.qml:247
#, qt-format
msgid "To %1 folder"
msgstr ""

#: qml/Settings/user/MailboxBehaviour.qml:295
msgid "Permanently delete messages"
msgstr ""

#: qml/Settings/user/MailboxBehaviour.qml:296
#, qt-format
msgid "After %1 days"
msgstr ""

#: qml/Settings/user/MailboxBehaviour.qml:299
msgid "Mark as read when deleted"
msgstr ""

#: qml/Settings/user/MailboxBehaviour.qml:306
msgid "Never delete starred messages"
msgstr ""

#: qml/Settings/user/ProfileSettingsPage.qml:31
msgid "Description"
msgstr ""

#: qml/Settings/user/ProfileSettingsPage.qml:35
#: qml/SetupWizard/DetailsInput.qml:83
msgid "Eg: \"Personal\" or \"Work\""
msgstr ""

#: qml/Settings/user/ProfileSettingsPage.qml:43
msgid "Company (optional)"
msgstr ""

#: qml/Settings/user/AccountListModel.qml:42
msgid "Default email account"
msgstr ""

#: qml/Settings/user/AccountListModel.qml:56
msgid "Incoming mail server"
msgstr ""

#: qml/Settings/user/AccountListModel.qml:64
msgid "Outgoing mail server"
msgstr ""

#: qml/Settings/user/AccountListModel.qml:72
#: qml/Settings/user/AccountsListPage.qml:137
#: qml/SetupWizard/DetailsInput.qml:35
msgid "Account description"
msgstr ""

#: qml/Settings/user/AccountListModel.qml:78
msgid "Sender identities"
msgstr ""

#: qml/Settings/user/AccountListModel.qml:115
msgid "Add new identity"
msgstr ""

#: qml/Settings/user/AccountListModel.qml:122
msgid "Mailbox settings"
msgstr ""

#: qml/Settings/user/AccountListModel.qml:125
#: qml/Settings/user/AccountsListPage.qml:138
msgid "Mailbox behaviour"
msgstr ""

#: qml/Settings/user/NewIdentityPage.qml:24
msgid "Edit identity"
msgstr ""

#: qml/Settings/user/NewIdentityPage.qml:24
msgid "New identity"
msgstr ""

#: qml/Settings/user/IdentitiesList.qml:82
#: qml/Settings/user/IdentitiesList.qml:109
msgid "Add identity"
msgstr ""

#: qml/Settings/user/IdentitiesList.qml:94
msgid "No identities configured"
msgstr ""

#: qml/Settings/user/AccountsListPage.qml:35
#: qml/Settings/user/AccountsListPage.qml:104
#: qml/Settings/user/AccountsListPage.qml:111
msgid "Account Settings"
msgstr ""

#: qml/Settings/user/AccountsListPage.qml:70
msgid "Save Changes?"
msgstr ""

#: qml/Settings/user/AccountsListPage.qml:135
msgid "Incoming server"
msgstr ""

#: qml/Settings/user/AccountsListPage.qml:136
msgid "Outgoing server"
msgstr ""

#: qml/Settings/user/SenderIdentityInput.qml:59
msgid "Email Address"
msgstr ""

#: qml/Settings/user/QuoteSelector.qml:82
msgid "Below quoted message"
msgstr ""

#: qml/Settings/user/QuoteSelector.qml:96
msgid "Inline"
msgstr ""

#: qml/AccountsView/AccountsPage.qml:35 qml/AccountsView/AccountsDrawer.qml:136
#: qml/SetupWizard/NoAccountsPage.qml:33
msgid "Accounts"
msgstr ""

#: qml/AccountsView/AccountsPage.qml:53 qml/SetupWizard/NoAccountsPage.qml:50
msgid "No email account is setup yet. Add one?"
msgstr ""

#: qml/AccountsView/AccountsPage.qml:81 qml/AccountsView/AccountsDrawer.qml:149
#: qml/SetupWizard/NoAccountsPage.qml:68
msgid "Add account"
msgstr ""

#: qml/AccountsView/AccountsDrawer.qml:158
msgid "Email settings"
msgstr ""

#: qml/SetupWizard/ServerInput.qml:40
msgid "Server details"
msgstr ""

#: qml/SetupWizard/CredentialValidation.qml:33
msgid "Validating credentials..."
msgstr ""

#: qml/SetupWizard/CredentialValidation.qml:40
msgid "All done!"
msgstr ""

#: qml/SetupWizard/CredentialValidation.qml:51
#: qml/SetupWizard/ValidationState.qml:37
msgid "Authentication failed"
msgstr ""

#: qml/SetupWizard/DetailsInput.qml:82
msgid "Description (optional)"
msgstr ""

#: qml/SetupWizard/NewAccountTypeListView.qml:72
#: qml/SetupWizard/UserInput.qml:121
msgid "IMAP account"
msgstr ""

#: qml/SetupWizard/NewAccountTypeListView.qml:79
#: qml/SetupWizard/UserInput.qml:132
msgid "SMTP account"
msgstr ""

#: qml/SetupWizard/NewAccountPage.qml:32
msgid "New Account"
msgstr ""

#: qml/SetupWizard/UserInput.qml:106
msgid "Email address"
msgstr ""

#: qml/SetupWizard/UserInput.qml:162
msgid "Eg: \"johnsmith@example.com\""
msgstr ""

#: qml/SetupWizard/UserInput.qml:171
msgid "A valid email address is required for this service provider"
msgstr ""

#: qml/SetupWizard/OnlineAccountsOverlay.qml:29
msgid "New account detected"
msgstr ""

#: qml/SetupWizard/OnlineAccountsOverlay.qml:111
msgid "New account"
msgstr ""

#: qml/SetupWizard/OnlineAccountsOverlay.qml:112
#, qt-format
msgid ""
"%1 account found for %2.\n"
"\n"
"Would you like to configure this now?"
msgstr ""

#: qml/SetupWizard/OnlineAccountsOverlay.qml:118
msgid "Collecting details"
msgstr ""

#: qml/SetupWizard/IdentityInput.qml:39
msgid "Create identity"
msgstr ""

#: qml/SetupWizard/IdentityInput.qml:63
msgid "Invalid address"
msgstr ""

#: qml/SetupWizard/IdentityInput.qml:63
#, qt-format
msgid "%1 is not a valid email address"
msgstr ""

#: qml/SetupWizard/ManualSetup.qml:56
msgid "Incoming Mail Server"
msgstr ""

#: qml/SetupWizard/ManualSetup.qml:103
msgid "Eg: \"imap.example.com\""
msgstr ""

#: qml/SetupWizard/ManualSetup.qml:158
msgid "Outgoing Mail Server"
msgstr ""

#: qml/SetupWizard/ManualSetup.qml:206
msgid "Eg \"smtp.example.com\""
msgstr ""

#: qml/SetupWizard/AutoConfigOverlay.qml:32
msgid "Looking for configuration..."
msgstr ""

#: qml/SetupWizard/AutoConfigOverlay.qml:39
msgid "Configuration found."
msgstr ""

#: qml/SetupWizard/AutoConfigOverlay.qml:46
msgid "No configuration found."
msgstr ""

#: qml/SetupWizard/SmtpConfigState.qml:30
#, qt-format
msgid ""
"SMTP configuration found for username: \n"
"\n"
"%1\n"
"\n"
"Would you like to configure this now?"
msgstr ""

#: qml/SetupWizard/SmtpConfigState.qml:49
msgid "Yes"
msgstr ""

#: qml/SetupWizard/SmtpConfigState.qml:50
msgid "No"
msgstr ""

#: qml/SetupWizard/SmtpConfigState.qml:51
msgid "Settings found"
msgstr ""

#: qml/Dialogs/PasswordDialog.qml:34
msgid "Password required"
msgstr ""

#: qml/Dialogs/PasswordDialog.qml:35
#, qt-format
msgid "Please provide password for user <b>%1</b>"
msgstr ""

#: qml/Dialogs/PasswordDialog.qml:96 qml/Dialogs/ConfirmationDialog.qml:40
msgid "Confirm"
msgstr ""

#: qml/Dialogs/SubmissionStatusDialog.qml:39
msgid "Sending..."
msgstr ""

#: qml/Dialogs/SubmissionStatusDialog.qml:43
msgid "Success "
msgstr ""

#: qml/Dialogs/SubmissionStatusDialog.qml:49
msgid "Sending Failed"
msgstr ""

#: qml/Dialogs/SubmissionStatusDialog.qml:56
msgid "Sending...."
msgstr ""

#: qml/Dialogs/SubmissionStatusDialog.qml:70
#: qml/Dialogs/MoveMessageActionDialog.qml:38 qml/Dialogs/InfoDialog.qml:37
#: qml/DeveloperMode/DevSettingsTabs.qml:100
msgid "Close"
msgstr ""

#: qml/Dialogs/MoveMessageActionDialog.qml:33
msgid "Failed"
msgstr ""

#: qml/Dialogs/MoveMessageActionDialog.qml:34
msgid "Unable to move message"
msgstr ""

#: qml/Dialogs/MoveMessageActionDialog.qml:47
msgid "Move message."
msgstr ""

#: qml/Dialogs/MoveMessageActionDialog.qml:48
msgid "Select the mailbox to move message to"
msgstr ""

#: qml/Dialogs/MoveMessageActionDialog.qml:65
msgid "Move"
msgstr ""

#: qml/Dialogs/AddAttachmentsDialog.qml:25
msgid "Add Attachment"
msgstr ""

#: qml/Dialogs/NetworkPolicyDialog.qml:8
msgid "Network Policy"
msgstr ""

#: qml/Dialogs/NetworkPolicyDialog.qml:9
msgid "Bandwidth saving mode is a good choice for mobile data connections"
msgstr ""

#: qml/Dialogs/NetworkPolicyDialog.qml:16
msgid "Offline mode"
msgstr ""

#: qml/Dialogs/NetworkPolicyDialog.qml:16
msgid "Online mode"
msgstr ""

#: qml/Dialogs/DraftsDialog.qml:30
msgid "Message not sent"
msgstr ""

#: qml/Dialogs/DraftsDialog.qml:31
msgid "What would you like to do?"
msgstr ""

#: qml/Dialogs/DraftsDialog.qml:36
msgid "Save changes to drafts"
msgstr ""

#: qml/Dialogs/DraftsDialog.qml:36
msgid "Save to drafts"
msgstr ""

#: qml/Dialogs/DraftsDialog.qml:48
msgid "Discard changes"
msgstr ""

#: qml/Dialogs/DraftsDialog.qml:48
msgid "Discard message"
msgstr ""

#: qml/Dialogs/DraftsDialog.qml:56
msgid "Continue editing"
msgstr ""

#: qml/DeveloperMode/ImapCapabilitiesView.qml:32
msgid "IMAP Capabilities"
msgstr ""

#: qml/DeveloperMode/ImapCapabilitiesView.qml:62
msgid "Click on a capability to disable it"
msgstr ""

#: qml/DeveloperMode/DevSettingsTabs.qml:64
msgid "Failed saving password"
msgstr ""

#: qml/DeveloperMode/DevSettingsTabs.qml:66
msgid "Continue"
msgstr ""

#: qml/DeveloperMode/DevSettingsTabs.qml:123
msgid "Save"
msgstr ""

#: qml/DeveloperMode/DevSettingsTabs.qml:149
msgid "Developer Settings"
msgstr ""

#: qml/DeveloperMode/DevSettingsTabs.qml:171
msgid "Mail Preferences"
msgstr ""

#: qml/DeveloperMode/DevSettingsTabs.qml:181
msgid "Sender Identity"
msgstr ""

#: qml/DeveloperMode/DevSettingsTabs.qml:192
msgid "Capabilities"
msgstr ""

#: qml/MessageListView/MessageListDelegate.qml:167
msgid "Un-mark flagged"
msgstr ""

#: qml/MessageListView/MessageListDelegate.qml:167
msgid "Mark flagged"
msgstr ""

#: qml/MessageListView/MessageListDelegate.qml:175
msgid "Mark as un-read"
msgstr ""

#: qml/MessageListView/MessageListDelegate.qml:175
msgid "Mark as read"
msgstr ""

#: qml/MessageListView/MessageListDelegate.qml:187
msgid "Reply"
msgstr ""

#: qml/MessageListView/MessageListDelegate.qml:194
msgid "Reply all"
msgstr ""

#: qml/MessageListView/MessageListDelegate.qml:209
msgid "Move message to..."
msgstr ""

#: qml/MessageListView/MessagesListView.qml:288
msgid "Star"
msgstr ""

#: qml/MessageListView/MessagesListView.qml:288
msgid "Remove star"
msgstr ""

#: qml/MessageListView/MessagesListView.qml:309
msgid "Mark read"
msgstr ""

#: qml/MessageListView/MessagesListView.qml:309
msgid "Mark unread"
msgstr ""

#: qml/MessageListView/MessagesListView.qml:328
msgid "Unselect all"
msgstr ""

#: qml/MessageListView/MessagesListView.qml:328
msgid "Select all"
msgstr ""

#: qml/MessageListView/MessagesListView.qml:392
msgid "Load more messages...."
msgstr ""

#: qml/MessageListView/MessagesListView.qml:442
msgid "Release to refresh..."
msgstr ""

#: qml/MessageListView/MessagesListView.qml:442
msgid "Pull to refresh..."
msgstr ""

#: qml/MessageListView/MessageListPage.qml:33
#, qt-format
msgid "Inbox %1"
msgstr ""

#: qml/MessageListView/MessageListPage.qml:33
#: qml/MessageListView/MessageListPage.qml:42
#: qml/MailboxView/MailboxListDelegate.qml:102
#: qml/MailboxView/MailboxListDelegate.qml:103 qml/Components/DekkoPage.qml:201
msgid "Inbox"
msgstr ""

#: qml/MessageListView/MessageListPage.qml:40
#, qt-format
msgid "Inbox <small>(%1)</small>"
msgstr ""

#: qml/MessageListView/MessageListPage.qml:63
msgid "Unread"
msgstr ""

#: qml/MessageListView/MessageListPage.qml:63
msgid "Tagged"
msgstr ""

#: qml/MessageListView/MessageListPage.qml:63
msgid "Deleted"
msgstr ""

#: qml/MessageListView/MessageListPage.qml:81
#: qml/MailboxView/MailboxListPage.qml:66
msgid "Network"
msgstr ""

#: qml/MessageListView/MessageListPage.qml:135
msgid "Search..."
msgstr ""

#: qml/Composer/Composer.qml:255
msgid "Enter subject"
msgstr ""

#: qml/Composer/Composer.qml:267
msgid "Enter Message"
msgstr ""

#: qml/Composer/Attachments/AttachmentField.qml:84
msgid "Add attachment"
msgstr ""

#: qml/Composer/ComposePage.qml:34
msgid "Message"
msgstr ""

#: qml/Composer/ComposePage.qml:119
msgid "Send"
msgstr ""

#: qml/Composer/ComposePage.qml:158
msgid "e-mails sent today"
msgstr ""

#: qml/Composer/ComposePage.qml:159
msgid "No e-mails sent today"
msgstr ""

#: qml/Composer/Recipients/RecipientInfo.qml:83
msgid "Remove"
msgstr ""

#: qml/Composer/Recipients/TypedRecipientField.qml:146
msgid "Enter recipient address"
msgstr ""

#: qml/Composer/Recipients/TypedRecipientField.qml:170
msgid "Cc/Bcc"
msgstr ""

#: qml/Composer/Recipients/TypedRecipientField.qml:211
msgid "Add another recipient"
msgstr ""

#: qml/Composer/Recipients/TypedRecipientField.qml:219
msgid "Ooops!"
msgstr ""

#: qml/Composer/Recipients/TypedRecipientField.qml:220
#, qt-format
msgid "'%1' doesn't seem to be a valid email address"
msgstr ""

#: qml/Composer/Drafts/DraftsPanel.qml:57
msgid "You currently have no draft messages saved"
msgstr ""

#: qml/Composer/Drafts/DraftsPanel.qml:74
msgid "<No Recipient>"
msgstr ""

#: qml/MailboxView/MailboxListPage.qml:40
msgid "Subscribed"
msgstr ""

#: qml/MailboxView/MailboxActionPopover.qml:48
#: qml/Components/MessageListToolbar.qml:45
msgid "Expunge mailbox"
msgstr ""

#: qml/MailboxView/MailboxActionPopover.qml:55
#: qml/Components/MessageListToolbar.qml:53
#: qml/Components/MessageListToolbar.qml:68
msgid "Mark mailbox read"
msgstr ""

#: qml/MailboxView/MailboxActionPopover.qml:62
msgid "Unsubscribe"
msgstr ""

#: qml/MailboxView/MailboxActionPopover.qml:62
msgid "Subscribe"
msgstr ""

#: qml/Components/PageHeader.qml:117
msgid "No activity"
msgstr ""

#: qml/Components/MessageListToolbar.qml:37
#: qml/Components/MessageListToolbar.qml:93
msgid "Sort Options"
msgstr ""

#: qml/Components/MessageListToolbar.qml:58
msgid "Are you sure?"
msgstr ""

#: qml/Components/MessageListToolbar.qml:59
#, qt-format
msgid "Please confirm you wish to mark all messages in %1 as read"
msgstr ""

#: qml/Components/MessageListToolbar.qml:97
msgid "Sort Order"
msgstr ""

#: qml/Components/EncryptionSelector.qml:34
msgid "Secure Connection"
msgstr ""

#: qml/Components/EncryptionSelector.qml:125
#: qml/Components/EncryptionSelector.qml:131
msgid "No encryption"
msgstr ""

#: qml/Components/EncryptionSelector.qml:126
#: qml/Components/EncryptionSelector.qml:132
msgid "Use encryption (STARTTLS)"
msgstr ""

#: qml/Components/EncryptionSelector.qml:127
#: qml/Components/EncryptionSelector.qml:133
msgid "Force encryption (SSL/TLS)"
msgstr ""

#: qml/Components/DekkoHeader.qml:223
msgid "Enter search..."
msgstr ""

#: qml/Components/TitledTextField.qml:63
msgid " (Required)"
msgstr ""

#: qml/Components/MailboxPicker.qml:41
msgid "Select a mailbox"
msgstr ""

#: qml/Utils/Utils.js:117
msgid "HTML"
msgstr ""

#: qml/Utils/Utils.js:119
msgid "Plain text"
msgstr ""