blob: a8b35761499e655cd94fa7ead2bb8184fd0d61b8 (
plain)
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
|
# Converted from Roundcube PHP localization files
# Copyright (C) 2011 The Roundcube Dev Team
# This file is distributed under the same license as the Roundcube package.
#
#: program/localization/it_IT/labels.inc
msgid ""
msgstr ""
"Project-Id-Version: roundcubemail\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2012-02-11T14:50:46+01:00\n"
"Last-Translator: \n"
"Language-Team: Translations <hello@roundcube.net>\n"
"Language: it_IT\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: program/localization/it_IT/labels.inc:welcome
msgid "Welcome to $product"
msgstr "Benvenuto in $product"
#: program/localization/it_IT/labels.inc:username
msgid "Username"
msgstr "Utente"
#: program/localization/it_IT/labels.inc:password
msgid "Password"
msgstr "Password"
#: program/localization/it_IT/labels.inc:server
msgid "Server"
msgstr "Server"
#: program/localization/it_IT/labels.inc:login
msgid "Login"
msgstr "Entra"
#: program/localization/it_IT/labels.inc:logout
msgid "Logout"
msgstr "Esci"
#: program/localization/it_IT/labels.inc:mail
msgid "Mail"
msgstr "E-Mail"
#: program/localization/it_IT/labels.inc:settings
msgid "Settings"
msgstr "Impostazioni"
#: program/localization/it_IT/labels.inc:addressbook
msgid "Address Book"
msgstr "Rubrica"
#: program/localization/it_IT/labels.inc:inbox
msgid "Inbox"
msgstr "Posta in arrivo"
#: program/localization/it_IT/labels.inc:drafts
msgid "Drafts"
msgstr "Bozze"
#: program/localization/it_IT/labels.inc:sent
msgid "Sent"
msgstr "Inviata"
#: program/localization/it_IT/labels.inc:trash
msgid "Trash"
msgstr "Cestino"
#: program/localization/it_IT/labels.inc:junk
msgid "Junk"
msgstr "Spam"
#: program/localization/it_IT/labels.inc:subject
msgid "Subject"
msgstr "Oggetto"
#: program/localization/it_IT/labels.inc:from
msgid "From"
msgstr "Mittente"
#: program/localization/it_IT/labels.inc:to
msgid "To"
msgstr "Destinatario"
#: program/localization/it_IT/labels.inc:cc
msgid "Cc"
msgstr "Cc"
#: program/localization/it_IT/labels.inc:bcc
msgid "Bcc"
msgstr "Bcc"
#: program/localization/it_IT/labels.inc:replyto
msgid "Reply-To"
msgstr "Rispondi a"
#: program/localization/it_IT/labels.inc:followupto
msgid "Followup-To"
msgstr "Followup-To"
#: program/localization/it_IT/labels.inc:date
msgid "Date"
msgstr "Data"
#: program/localization/it_IT/labels.inc:size
msgid "Size"
msgstr "Dimensione"
#: program/localization/it_IT/labels.inc:priority
msgid "Priority"
msgstr "Priorità"
#: program/localization/it_IT/labels.inc:organization
msgid "Organization"
msgstr "Società"
#: program/localization/it_IT/labels.inc:readstatus
msgid "Read status"
msgstr "Visualizza lo stato"
#: program/localization/it_IT/labels.inc:mailboxlist
#: program/localization/it_IT/labels.inc:folders
msgid "Folders"
msgstr "Cartelle"
#: program/localization/it_IT/labels.inc:messagesfromto
msgid "Messages $from to $to of $count"
msgstr "Messaggi da $from a $to di $count"
#: program/localization/it_IT/labels.inc:threadsfromto
msgid "Threads $from to $to of $count"
msgstr "Thread da $from a $to di $count"
#: program/localization/it_IT/labels.inc:messagenrof
msgid "Message $nr of $count"
msgstr "Messaggio $nr di $count"
#: program/localization/it_IT/labels.inc:fromtoshort
msgid "$from – $to of $count"
msgstr "$from – $to di $count"
#: program/localization/it_IT/labels.inc:copy
msgid "Copy"
msgstr "Copia"
#: program/localization/it_IT/labels.inc:move
msgid "Move"
msgstr "Sposta"
#: program/localization/it_IT/labels.inc:moveto
msgid "Move to..."
msgstr "Sposta in..."
#: program/localization/it_IT/labels.inc:download
msgid "Download"
msgstr "Download"
#: program/localization/it_IT/labels.inc:filename
msgid "File name"
msgstr "Nome file"
#: program/localization/it_IT/labels.inc:filesize
msgid "File size"
msgstr "Dimensione file"
#: program/localization/it_IT/labels.inc:addtoaddressbook
msgid "Add to address book"
msgstr "Aggiungi alla rubrica"
#: program/localization/it_IT/labels.inc:sun
msgid "Sun"
msgstr "Dom"
#: program/localization/it_IT/labels.inc:mon
msgid "Mon"
msgstr "Lun"
#: program/localization/it_IT/labels.inc:tue
msgid "Tue"
msgstr "Mar"
#: program/localization/it_IT/labels.inc:wed
msgid "Wed"
msgstr "Mer"
#: program/localization/it_IT/labels.inc:thu
msgid "Thu"
msgstr "Gio"
#: program/localization/it_IT/labels.inc:fri
msgid "Fri"
msgstr "Ven"
#: program/localization/it_IT/labels.inc:sat
msgid "Sat"
msgstr "Sab"
#: program/localization/it_IT/labels.inc:sunday
msgid "Sunday"
msgstr "Domenica"
#: program/localization/it_IT/labels.inc:monday
msgid "Monday"
msgstr "Lunedì"
#: program/localization/it_IT/labels.inc:tuesday
msgid "Tuesday"
msgstr "Martedì"
#: program/localization/it_IT/labels.inc:wednesday
msgid "Wednesday"
msgstr "Mercoledì"
#: program/localization/it_IT/labels.inc:thursday
msgid "Thursday"
msgstr "Giovedì"
#: program/localization/it_IT/labels.inc:friday
msgid "Friday"
msgstr "Venerdì"
#: program/localization/it_IT/labels.inc:saturday
msgid "Saturday"
msgstr "Sabato"
#: program/localization/it_IT/labels.inc:jan
msgid "Jan"
msgstr "Gen"
#: program/localization/it_IT/labels.inc:feb
msgid "Feb"
msgstr "Feb"
#: program/localization/it_IT/labels.inc:mar
msgid "Mar"
msgstr "Mar"
#: program/localization/it_IT/labels.inc:apr
msgid "Apr"
msgstr "Apr"
#: program/localization/it_IT/labels.inc:may
#: program/localization/it_IT/labels.inc:longmay
msgid "May"
msgstr "Maggio"
#: program/localization/it_IT/labels.inc:jun
msgid "Jun"
msgstr "Giu"
#: program/localization/it_IT/labels.inc:jul
msgid "Jul"
msgstr "Lug"
#: program/localization/it_IT/labels.inc:aug
msgid "Aug"
msgstr "Ago"
#: program/localization/it_IT/labels.inc:sep
msgid "Sep"
msgstr "Set"
#: program/localization/it_IT/labels.inc:oct
msgid "Oct"
msgstr "Ott"
#: program/localization/it_IT/labels.inc:nov
msgid "Nov"
msgstr "Nov"
#: program/localization/it_IT/labels.inc:dec
msgid "Dec"
msgstr "Dic"
#: program/localization/it_IT/labels.inc:longjan
msgid "January"
msgstr "Gennaio"
#: program/localization/it_IT/labels.inc:longfeb
msgid "February"
msgstr "Febbraio"
#: program/localization/it_IT/labels.inc:longmar
msgid "March"
msgstr "Marzo"
#: program/localization/it_IT/labels.inc:longapr
msgid "April"
msgstr "Aprile"
#: program/localization/it_IT/labels.inc:longjun
msgid "June"
msgstr "Giugno"
#: program/localization/it_IT/labels.inc:longjul
msgid "July"
msgstr "Luglio"
#: program/localization/it_IT/labels.inc:longaug
msgid "August"
msgstr "Agosto"
#: program/localization/it_IT/labels.inc:longsep
msgid "September"
msgstr "Settembre"
#: program/localization/it_IT/labels.inc:longoct
msgid "October"
msgstr "Ottobre"
#: program/localization/it_IT/labels.inc:longnov
msgid "November"
msgstr "Novembre"
#: program/localization/it_IT/labels.inc:longdec
msgid "December"
msgstr "Dicembre"
#: program/localization/it_IT/labels.inc:today
msgid "Today"
msgstr "Oggi"
#: program/localization/it_IT/labels.inc:refresh
msgid "Refresh"
msgstr "Aggiorna"
#: program/localization/it_IT/labels.inc:checkmail
msgid "Check for new messages"
msgstr "Controlla nuovi messaggi"
#: program/localization/it_IT/labels.inc:compose
msgid "Compose"
msgstr "Scrivi un messaggio"
#: program/localization/it_IT/labels.inc:writenewmessage
msgid "Create a new message"
msgstr "Scrivi un nuovo messaggio"
#: program/localization/it_IT/labels.inc:reply
msgid "Reply"
msgstr "Rispondi"
#: program/localization/it_IT/labels.inc:replytomessage
msgid "Reply to sender"
msgstr "Rispondi al mittente"
#: program/localization/it_IT/labels.inc:replytoallmessage
msgid "Reply to list or to sender and all recipients"
msgstr "Rispondi al mittente e ai destinatari"
#: program/localization/it_IT/labels.inc:replyall
msgid "Reply all"
msgstr "Rispondi a tutti"
#: program/localization/it_IT/labels.inc:replylist
msgid "Reply list"
msgstr "Rispondi alla mailing list"
#: program/localization/it_IT/labels.inc:forward
msgid "Forward"
msgstr "Inoltra"
#: program/localization/it_IT/labels.inc:forwardinline
msgid "Forward inline"
msgstr "Inoltra come messaggio"
#: program/localization/it_IT/labels.inc:forwardattachment
msgid "Forward as attachment"
msgstr "Inoltre come allegato"
#: program/localization/it_IT/labels.inc:forwardmessage
msgid "Forward the message"
msgstr "Inoltra il messaggio"
#: program/localization/it_IT/labels.inc:deletemessage
msgid "Delete message"
msgstr "Elimina il messaggio"
#: program/localization/it_IT/labels.inc:movemessagetotrash
msgid "Move message to trash"
msgstr "Sposta il messaggio nel cestino"
#: program/localization/it_IT/labels.inc:printmessage
msgid "Print this message"
msgstr "Stampa il messaggio"
#: program/localization/it_IT/labels.inc:previousmessage
msgid "Show previous message"
msgstr "Visualizza il messaggio precedente"
#: program/localization/it_IT/labels.inc:firstmessage
msgid "Show first message"
msgstr "Visualizza il primo messaggio"
#: program/localization/it_IT/labels.inc:nextmessage
msgid "Show next message"
msgstr "Visualizza il messaggio successivo"
#: program/localization/it_IT/labels.inc:lastmessage
msgid "Show last message"
msgstr "Visualizza l'ultimo messaggio"
#: program/localization/it_IT/labels.inc:backtolist
msgid "Back to message list"
msgstr "Torna alla lista messaggi"
#: program/localization/it_IT/labels.inc:viewsource
msgid "Show source"
msgstr "Visualizza sorgente messaggio"
#: program/localization/it_IT/labels.inc:mark
msgid "Mark"
msgstr "Contrassegna"
#: program/localization/it_IT/labels.inc:markmessages
msgid "Mark messages"
msgstr "Marca i messaggi"
#: program/localization/it_IT/labels.inc:markread
msgid "As read"
msgstr "Letti"
#: program/localization/it_IT/labels.inc:markunread
msgid "As unread"
msgstr "Non letti"
#: program/localization/it_IT/labels.inc:markflagged
msgid "As flagged"
msgstr "Contrassegnato"
#: program/localization/it_IT/labels.inc:markunflagged
msgid "As unflagged"
msgstr "Non contrassegnato"
#: program/localization/it_IT/labels.inc:moreactions
msgid "More actions..."
msgstr "Altre operazioni..."
#: program/localization/it_IT/labels.inc:more
msgid "More"
msgstr "Di più"
#: program/localization/it_IT/labels.inc:back
msgid "Back"
msgstr "Indietro"
#: program/localization/it_IT/labels.inc:options
msgid "Options"
msgstr "Opzioni"
#: program/localization/it_IT/labels.inc:select
msgid "Select"
msgstr "Seleziona"
#: program/localization/it_IT/labels.inc:all
msgid "All"
msgstr "Tutti"
#: program/localization/it_IT/labels.inc:none
#: program/localization/it_IT/labels.inc:nonesort
msgid "None"
msgstr "Nessuno"
#: program/localization/it_IT/labels.inc:currpage
msgid "Current page"
msgstr "Pagina corrente"
#: program/localization/it_IT/labels.inc:unread
msgid "Unread"
msgstr "Non letti"
#: program/localization/it_IT/labels.inc:flagged
msgid "Flagged"
msgstr "Contrassegnato"
#: program/localization/it_IT/labels.inc:unanswered
msgid "Unanswered"
msgstr "Senza risposta"
#: program/localization/it_IT/labels.inc:deleted
msgid "Deleted"
msgstr "Cancellato"
#: program/localization/it_IT/labels.inc:invert
msgid "Invert"
msgstr "Inverti"
#: program/localization/it_IT/labels.inc:filter
msgid "Filter"
msgstr "Filtra"
#: program/localization/it_IT/labels.inc:list
msgid "List"
msgstr "Elenco"
#: program/localization/it_IT/labels.inc:threads
msgid "Threads"
msgstr "Argomenti"
#: program/localization/it_IT/labels.inc:expand-all
msgid "Expand All"
msgstr "Espandi tutto"
#: program/localization/it_IT/labels.inc:expand-unread
msgid "Expand Unread"
msgstr "Espandi non letti"
#: program/localization/it_IT/labels.inc:collapse-all
msgid "Collapse All"
msgstr "Richiudi tutti"
#: program/localization/it_IT/labels.inc:threaded
msgid "Threaded"
msgstr "Per argomenti"
#: program/localization/it_IT/labels.inc:autoexpand_threads
msgid "Expand message threads"
msgstr "Espandi"
#: program/localization/it_IT/labels.inc:do_expand
msgid "all threads"
msgstr "tutti i thread"
#: program/localization/it_IT/labels.inc:expand_only_unread
msgid "only with unread messages"
msgstr "solo con messaggi non letti"
#: program/localization/it_IT/labels.inc:fromto
msgid "From/To"
msgstr "Mittente/Destinatario"
#: program/localization/it_IT/labels.inc:flag
msgid "Flag"
msgstr "Contrassegnato"
#: program/localization/it_IT/labels.inc:attachment
msgid "Attachment"
msgstr "Allegato"
#: program/localization/it_IT/labels.inc:sentdate
msgid "Sent date"
msgstr "Data d'invio"
#: program/localization/it_IT/labels.inc:arrival
msgid "Arrival date"
msgstr "Data di arrivo"
#: program/localization/it_IT/labels.inc:asc
msgid "ascending"
msgstr "Ascendente"
#: program/localization/it_IT/labels.inc:desc
msgid "descending"
msgstr "Discendente"
#: program/localization/it_IT/labels.inc:listcolumns
msgid "List columns"
msgstr "Elenco Colonne"
#: program/localization/it_IT/labels.inc:listsorting
msgid "Sorting column"
msgstr "Ordina per"
#: program/localization/it_IT/labels.inc:listorder
msgid "Sorting order"
msgstr "Ordinamento"
#: program/localization/it_IT/labels.inc:listmode
msgid "List view mode"
msgstr "Modalità di visualizzazione"
#: program/localization/it_IT/labels.inc:folderactions
msgid "Folder actions..."
msgstr "Operazioni cartella"
#: program/localization/it_IT/labels.inc:compact
msgid "Compact"
msgstr "Compatta"
#: program/localization/it_IT/labels.inc:empty
msgid "Empty"
msgstr "Svuota"
#: program/localization/it_IT/labels.inc:quota
msgid "Disk usage"
msgstr "Spazio utilizzato"
#: program/localization/it_IT/labels.inc:unknown
msgid "unknown"
msgstr "sconosciuto"
#: program/localization/it_IT/labels.inc:unlimited
msgid "unlimited"
msgstr "illimitato"
#: program/localization/it_IT/labels.inc:quicksearch
msgid "Quick search"
msgstr "Ricerca veloce"
#: program/localization/it_IT/labels.inc:resetsearch
msgid "Reset search"
msgstr "Annulla ricerca"
#: program/localization/it_IT/labels.inc:searchmod
msgid "Search modifiers"
msgstr "Ambito di ricerca"
#: program/localization/it_IT/labels.inc:msgtext
msgid "Entire message"
msgstr "Intero messaggio"
#: program/localization/it_IT/labels.inc:openinextwin
msgid "Open in new window"
msgstr "Apri in una nuova finestra"
#: program/localization/it_IT/labels.inc:emlsave
msgid "Download (.eml)"
msgstr "Scarica (.eml)"
#: program/localization/it_IT/labels.inc:editasnew
msgid "Edit as new"
msgstr "Modifica come nuovo"
#: program/localization/it_IT/labels.inc:savemessage
msgid "Save as draft"
msgstr "Salva come bozza"
#: program/localization/it_IT/labels.inc:sendmessage
msgid "Send message"
msgstr "Invia il messaggio adesso"
#: program/localization/it_IT/labels.inc:addattachment
msgid "Attach a file"
msgstr "Allega un file"
#: program/localization/it_IT/labels.inc:charset
msgid "Charset"
msgstr "Set di caratteri"
#: program/localization/it_IT/labels.inc:editortype
msgid "Editor type"
msgstr "Tipo editor"
#: program/localization/it_IT/labels.inc:returnreceipt
msgid "Return receipt"
msgstr "Ricevuta di ritorno"
#: program/localization/it_IT/labels.inc:dsn
msgid "Delivery status notification"
msgstr "Notifica di consegna"
#: program/localization/it_IT/labels.inc:mailreplyintro
msgid "On $date, $sender wrote:"
msgstr "Il $date $sender ha scritto:"
#: program/localization/it_IT/labels.inc:originalmessage
msgid "Original Message"
msgstr "Messaggio originale"
#: program/localization/it_IT/labels.inc:editidents
msgid "Edit identities"
msgstr "Modifica identità"
#: program/localization/it_IT/labels.inc:spellcheck
msgid "Spell"
msgstr "Controllo ortografico"
#: program/localization/it_IT/labels.inc:checkspelling
msgid "Check spelling"
msgstr "Controlla ortografia"
#: program/localization/it_IT/labels.inc:resumeediting
msgid "Resume editing"
msgstr "Torna al messaggio"
#: program/localization/it_IT/labels.inc:revertto
msgid "Revert to"
msgstr "Ripristina"
#: program/localization/it_IT/labels.inc:attach
msgid "Attach"
msgstr "Allega"
#: program/localization/it_IT/labels.inc:attachments
msgid "Attachments"
msgstr "Allegati"
#: program/localization/it_IT/labels.inc:upload
msgid "Upload"
msgstr "Aggiungi"
#: program/localization/it_IT/labels.inc:uploadprogress
msgid "$percent ($current from $total)"
msgstr "$percent ($current di $total)"
#: program/localization/it_IT/labels.inc:close
msgid "Close"
msgstr "Chiudi"
#: program/localization/it_IT/labels.inc:messageoptions
msgid "Message options..."
msgstr "Opzioni messaggi..."
#: program/localization/it_IT/labels.inc:low
msgid "Low"
msgstr "Bassa"
#: program/localization/it_IT/labels.inc:lowest
msgid "Lowest"
msgstr "Molto bassa"
#: program/localization/it_IT/labels.inc:normal
msgid "Normal"
msgstr "Normale"
#: program/localization/it_IT/labels.inc:high
msgid "High"
msgstr "Alta"
#: program/localization/it_IT/labels.inc:highest
msgid "Highest"
msgstr "Molto alta"
#: program/localization/it_IT/labels.inc:nosubject
msgid "(no subject)"
msgstr "(nessun oggetto)"
#: program/localization/it_IT/labels.inc:showimages
msgid "Display images"
msgstr "Visualizza immagini"
#: program/localization/it_IT/labels.inc:alwaysshow
msgid "Always show images from $sender"
msgstr "Mostra sempre immagini da $sender"
#: program/localization/it_IT/labels.inc:isdraft
msgid "This is a draft message."
msgstr "Questa è una bozza."
#: program/localization/it_IT/labels.inc:htmltoggle
msgid "HTML"
msgstr "HTML"
#: program/localization/it_IT/labels.inc:plaintoggle
msgid "Plain text"
msgstr "Testo semplice"
#: program/localization/it_IT/labels.inc:savesentmessagein
msgid "Save sent message in"
msgstr "Salva i messaggi inviati in"
#: program/localization/it_IT/labels.inc:dontsave
msgid "don't save"
msgstr "non salvare"
#: program/localization/it_IT/labels.inc:maxuploadsize
msgid "Maximum allowed file size is $size"
msgstr "La dimensione massima consentita è $size"
#: program/localization/it_IT/labels.inc:addcc
msgid "Add Cc"
msgstr "Aggiungi Cc"
#: program/localization/it_IT/labels.inc:addbcc
msgid "Add Bcc"
msgstr "Aggiungi Bcc"
#: program/localization/it_IT/labels.inc:addreplyto
msgid "Add Reply-To"
msgstr "Aggiungi Rispondi a"
#: program/localization/it_IT/labels.inc:addfollowupto
msgid "Add Followup-To"
msgstr "Aggiungi Followup-To"
#: program/localization/it_IT/labels.inc:mdnrequest
msgid "The sender of this message has asked to be notified when you read this "
"message. Do you wish to notify the sender?"
msgstr "Il mittente ha richiesto di ricevere una notifica dell'avvenuta lettura del "
"messaggio. Si desidera inviare tale notifica?"
#: program/localization/it_IT/labels.inc:receiptread
msgid "Return Receipt (read)"
msgstr "Ricevuta di ritorno (letto)"
#: program/localization/it_IT/labels.inc:yourmessage
msgid "This is a Return Receipt for your message"
msgstr "Questa è la ricevuta di ritorno del messaggio inviato"
#: program/localization/it_IT/labels.inc:receiptnote
msgid "Note: This receipt only acknowledges that the message was displayed on the "
"recipient's computer. There is no guarantee that the recipient has read or "
"understood the message contents."
msgstr "Nota: questa Ricevuta di ritorno attesta solamente che il messaggio è "
"stato visualizzato nel computer del destinatario. Non c'è pertanto alcuna "
"garanzia che il destinatario abbia letto o compreso il suo contenuto."
#: program/localization/it_IT/labels.inc:name
msgid "Display Name"
msgstr "Nome visualizzato"
#: program/localization/it_IT/labels.inc:firstname
msgid "First Name"
msgstr "Nome"
#: program/localization/it_IT/labels.inc:surname
msgid "Last Name"
msgstr "Cognome"
#: program/localization/it_IT/labels.inc:middlename
msgid "Middle Name"
msgstr "Secondo nome"
#: program/localization/it_IT/labels.inc:nameprefix
msgid "Prefix"
msgstr "Prefisso"
#: program/localization/it_IT/labels.inc:namesuffix
msgid "Suffix"
msgstr "Suffisso"
#: program/localization/it_IT/labels.inc:nickname
msgid "Nickname"
msgstr "Soprannome"
#: program/localization/it_IT/labels.inc:jobtitle
msgid "Job Title"
msgstr "Titolo"
#: program/localization/it_IT/labels.inc:department
msgid "Department"
msgstr "Dipartimento"
#: program/localization/it_IT/labels.inc:gender
msgid "Gender"
msgstr "Sesso"
#: program/localization/it_IT/labels.inc:maidenname
msgid "Maiden Name"
msgstr "Cognome da nubile"
#: program/localization/it_IT/labels.inc:email
msgid "Email"
msgstr "E-Mail"
#: program/localization/it_IT/labels.inc:phone
msgid "Phone"
msgstr "Telefono"
#: program/localization/it_IT/labels.inc:address
msgid "Address"
msgstr "Indirizzo"
#: program/localization/it_IT/labels.inc:street
msgid "Street"
msgstr "Via"
#: program/localization/it_IT/labels.inc:locality
msgid "City"
msgstr "Città"
#: program/localization/it_IT/labels.inc:zipcode
msgid "ZIP Code"
msgstr "CAP"
#: program/localization/it_IT/labels.inc:region
msgid "State/Province"
msgstr "Regione"
#: program/localization/it_IT/labels.inc:country
msgid "Country"
msgstr "Stato"
#: program/localization/it_IT/labels.inc:birthday
msgid "Birthday"
msgstr "Compleanno"
#: program/localization/it_IT/labels.inc:anniversary
msgid "Anniversary"
msgstr "Anniversario"
#: program/localization/it_IT/labels.inc:website
msgid "Website"
msgstr "Sito web"
#: program/localization/it_IT/labels.inc:instantmessenger
msgid "IM"
msgstr "IM"
#: program/localization/it_IT/labels.inc:notes
msgid "Notes"
msgstr "Note"
#: program/localization/it_IT/labels.inc:male
msgid "male"
msgstr "maschio"
#: program/localization/it_IT/labels.inc:female
msgid "female"
msgstr "femmina"
#: program/localization/it_IT/labels.inc:manager
msgid "Manager"
msgstr "Manager"
#: program/localization/it_IT/labels.inc:assistant
#: program/localization/it_IT/labels.inc:typeassistant
msgid "Assistant"
msgstr "Assistente"
#: program/localization/it_IT/labels.inc:spouse
msgid "Spouse"
msgstr "Coniuge"
#: program/localization/it_IT/labels.inc:allfields
msgid "All fields"
msgstr "Tutti i campi"
#: program/localization/it_IT/labels.inc:search
msgid "Search"
msgstr "Ricerca"
#: program/localization/it_IT/labels.inc:advsearch
msgid "Advanced Search"
msgstr "Ricerca avanzata"
#: program/localization/it_IT/labels.inc:advanced
msgid "Advanced"
msgstr "Opzioni avanzate"
#: program/localization/it_IT/labels.inc:other
#: program/localization/it_IT/labels.inc:typeother
msgid "Other"
msgstr "Altro"
#: program/localization/it_IT/labels.inc:typehome
msgid "Home"
msgstr "Casa"
#: program/localization/it_IT/labels.inc:typework
msgid "Work"
msgstr "Lavoro"
#: program/localization/it_IT/labels.inc:typemobile
msgid "Mobile"
msgstr "Cellulare"
#: program/localization/it_IT/labels.inc:typemain
msgid "Main"
msgstr "Principale"
#: program/localization/it_IT/labels.inc:typehomefax
msgid "Home Fax"
msgstr "Fax casa"
#: program/localization/it_IT/labels.inc:typeworkfax
msgid "Work Fax"
msgstr "Fax lavoro"
#: program/localization/it_IT/labels.inc:typecar
msgid "Car"
msgstr "Auto"
#: program/localization/it_IT/labels.inc:typepager
msgid "Pager"
msgstr "Teledrin"
#: program/localization/it_IT/labels.inc:typevideo
msgid "Video"
msgstr "Video"
#: program/localization/it_IT/labels.inc:typehomepage
msgid "Home Page"
msgstr "Home page"
#: program/localization/it_IT/labels.inc:typeblog
msgid "Blog"
msgstr "Blog"
#: program/localization/it_IT/labels.inc:typeprofile
msgid "Profile"
msgstr "Profilo"
#: program/localization/it_IT/labels.inc:addfield
msgid "Add field..."
msgstr "Aggiungi campo..."
#: program/localization/it_IT/labels.inc:addcontact
msgid "Add new contact"
msgstr "Aggiungi contatto alla rubrica"
#: program/localization/it_IT/labels.inc:editcontact
msgid "Edit contact"
msgstr "Modifica contatto"
#: program/localization/it_IT/labels.inc:contacts
msgid "Contacts"
msgstr "Contatti"
#: program/localization/it_IT/labels.inc:contactproperties
msgid "Contact properties"
msgstr "Proprietà contatto"
#: program/localization/it_IT/labels.inc:personalinfo
msgid "Personal information"
msgstr "Informazioni personali"
#: program/localization/it_IT/labels.inc:edit
msgid "Edit"
msgstr "Modifica"
#: program/localization/it_IT/labels.inc:cancel
msgid "Cancel"
msgstr "Annulla"
#: program/localization/it_IT/labels.inc:save
msgid "Save"
msgstr "Salva"
#: program/localization/it_IT/labels.inc:delete
msgid "Delete"
msgstr "Elimina"
#: program/localization/it_IT/labels.inc:rename
msgid "Rename"
msgstr "Rinomina"
#: program/localization/it_IT/labels.inc:addphoto
msgid "Add"
msgstr "Aggiungi"
#: program/localization/it_IT/labels.inc:replacephoto
msgid "Replace"
msgstr "Sostituisci"
#: program/localization/it_IT/labels.inc:newcontact
msgid "Create new contact card"
msgstr "Crea un nuovo contatto"
#: program/localization/it_IT/labels.inc:deletecontact
msgid "Delete selected contacts"
msgstr "Elimina i contatti selezionati"
#: program/localization/it_IT/labels.inc:composeto
msgid "Compose mail to"
msgstr "Invia email a"
#: program/localization/it_IT/labels.inc:contactsfromto
msgid "Contacts $from to $to of $count"
msgstr "Contatti da $from a $to di $count"
#: program/localization/it_IT/labels.inc:print
msgid "Print"
msgstr "Stampa"
#: program/localization/it_IT/labels.inc:export
msgid "Export"
msgstr "Esporta"
#: program/localization/it_IT/labels.inc:exportvcards
msgid "Export contacts in vCard format"
msgstr "Esporta i contatti in formato vCard"
#: program/localization/it_IT/labels.inc:newcontactgroup
msgid "Create new contact group"
msgstr "Crea un nuovo gruppo"
#: program/localization/it_IT/labels.inc:grouprename
msgid "Rename group"
msgstr "Rinomina il gruppo"
#: program/localization/it_IT/labels.inc:groupdelete
msgid "Delete group"
msgstr "Cancella il gruppo"
#: program/localization/it_IT/labels.inc:previouspage
msgid "Show previous page"
msgstr "Pagina precedente"
#: program/localization/it_IT/labels.inc:firstpage
msgid "Show first page"
msgstr "Prima pagina"
#: program/localization/it_IT/labels.inc:nextpage
msgid "Show next page"
msgstr "Pagina successiva"
#: program/localization/it_IT/labels.inc:lastpage
msgid "Show last page"
msgstr "Ultima pagina"
#: program/localization/it_IT/labels.inc:group
msgid "Group"
msgstr "Gruppo"
#: program/localization/it_IT/labels.inc:groups
msgid "Groups"
msgstr "Gruppi"
#: program/localization/it_IT/labels.inc:personaladrbook
msgid "Personal Addresses"
msgstr "Rubrica Personale"
#: program/localization/it_IT/labels.inc:searchsave
msgid "Save search"
msgstr "Salva ricerca"
#: program/localization/it_IT/labels.inc:searchdelete
msgid "Delete search"
msgstr "Elimina ricerca"
#: program/localization/it_IT/labels.inc:import
msgid "Import"
msgstr "Importa"
#: program/localization/it_IT/labels.inc:importcontacts
msgid "Import contacts"
msgstr "Importa contatti"
#: program/localization/it_IT/labels.inc:importfromfile
msgid "Import from file:"
msgstr "Importa da file:"
#: program/localization/it_IT/labels.inc:importtarget
msgid "Add new contacts to address book:"
msgstr "Aggiungi nuovi contattu alla rubrica:"
#: program/localization/it_IT/labels.inc:importreplace
msgid "Replace the entire address book"
msgstr "Sostituisci l'intera rubrica"
#: program/localization/it_IT/labels.inc:importtext
msgid "You can upload contacts from an existing address book.<br/>We currently "
"support importing addresses from the <a "
"href=\"http://en.wikipedia.org/wiki/VCard\">vCard</a> data format."
msgstr "Puoi caricare i contatti da una rubrica esistente. Al momento è supportata "
"l'importazione dei contatti dal formato vCard."
#: program/localization/it_IT/labels.inc:done
msgid "Done"
msgstr "Fatto"
#: program/localization/it_IT/labels.inc:settingsfor
msgid "Settings for"
msgstr "Impostazioni per"
#: program/localization/it_IT/labels.inc:about
msgid "About"
msgstr "Informazioni"
#: program/localization/it_IT/labels.inc:preferences
msgid "Preferences"
msgstr "Preferenze"
#: program/localization/it_IT/labels.inc:userpreferences
msgid "User preferences"
msgstr "Preferenze utente"
#: program/localization/it_IT/labels.inc:editpreferences
msgid "Edit user preferences"
msgstr "Modifica le preferenze per l'utente"
#: program/localization/it_IT/labels.inc:identities
msgid "Identities"
msgstr "Identità"
#: program/localization/it_IT/labels.inc:manageidentities
msgid "Manage identities for this account"
msgstr "Gestisci le identità per questo account"
#: program/localization/it_IT/labels.inc:newidentity
msgid "New identity"
msgstr "Nuova identità"
#: program/localization/it_IT/labels.inc:newitem
msgid "New item"
msgstr "Nuovo elemento"
#: program/localization/it_IT/labels.inc:edititem
msgid "Edit item"
msgstr "Modifica elemento"
#: program/localization/it_IT/labels.inc:preferhtml
msgid "Display HTML"
msgstr "Mostra HTML"
#: program/localization/it_IT/labels.inc:defaultcharset
msgid "Default Character Set"
msgstr "Set di caratteri predefinito"
#: program/localization/it_IT/labels.inc:htmlmessage
msgid "HTML Message"
msgstr "Messaggio HTML"
#: program/localization/it_IT/labels.inc:dateformat
msgid "Date format"
msgstr "Formato data"
#: program/localization/it_IT/labels.inc:timeformat
msgid "Time format"
msgstr "Formato orario"
#: program/localization/it_IT/labels.inc:prettydate
msgid "Pretty dates"
msgstr "Date più leggibili"
#: program/localization/it_IT/labels.inc:setdefault
msgid "Set default"
msgstr "Imposta predefinita"
#: program/localization/it_IT/labels.inc:autodetect
msgid "Auto"
msgstr "Auto"
#: program/localization/it_IT/labels.inc:language
msgid "Language"
msgstr "Lingua"
#: program/localization/it_IT/labels.inc:timezone
msgid "Time zone"
msgstr "Fuso orario"
#: program/localization/it_IT/labels.inc:pagesize
msgid "Rows per page"
msgstr "Righe per pagina"
#: program/localization/it_IT/labels.inc:signature
msgid "Signature"
msgstr "Firma"
#: program/localization/it_IT/labels.inc:dstactive
msgid "Daylight saving time"
msgstr "Gestione ora legale"
#: program/localization/it_IT/labels.inc:htmleditor
msgid "Compose HTML messages"
msgstr "Scrivi i messaggi in HTML"
#: program/localization/it_IT/labels.inc:htmlonreply
msgid "on reply to HTML message only"
msgstr "solo in risposta a messaggi HTML"
#: program/localization/it_IT/labels.inc:htmlsignature
msgid "HTML signature"
msgstr "Firma in HTML"
#: program/localization/it_IT/labels.inc:previewpane
msgid "Show preview pane"
msgstr "Mostra l'anteprima"
#: program/localization/it_IT/labels.inc:skin
msgid "Interface skin"
msgstr "Tema interfaccia"
#: program/localization/it_IT/labels.inc:logoutclear
msgid "Clear Trash on logout"
msgstr "Svuota il Cestino all'uscita"
#: program/localization/it_IT/labels.inc:logoutcompact
msgid "Compact Inbox on logout"
msgstr "Compatta la Posta In Arrivo all'uscita"
#: program/localization/it_IT/labels.inc:uisettings
msgid "User Interface"
msgstr "Interfaccia Utente"
#: program/localization/it_IT/labels.inc:serversettings
msgid "Server Settings"
msgstr "Impostazioni Server"
#: program/localization/it_IT/labels.inc:mailboxview
msgid "Mailbox View"
msgstr "Vista Messaggi"
#: program/localization/it_IT/labels.inc:mdnrequests
msgid "On request for return receipt"
msgstr "Su richiesta per la ricevuta di ritorno"
#: program/localization/it_IT/labels.inc:askuser
msgid "ask me"
msgstr "chiedi conferma"
#: program/localization/it_IT/labels.inc:autosend
msgid "send receipt"
msgstr "invia"
#: program/localization/it_IT/labels.inc:autosendknown
msgid "send receipt to my contacts, otherwise ask me"
msgstr "invia notifica ai miei contatti, altrimenti chiedi conferma"
#: program/localization/it_IT/labels.inc:autosendknownignore
msgid "send receipt to my contacts, otherwise ignore"
msgstr "invia notifica ai miei contatti, altrimenti ignora"
#: program/localization/it_IT/labels.inc:ignore
msgid "ignore"
msgstr "ignora"
#: program/localization/it_IT/labels.inc:readwhendeleted
msgid "Mark the message as read on delete"
msgstr "Marca il messaggio come letto prima di eliminarlo"
#: program/localization/it_IT/labels.inc:flagfordeletion
msgid "Flag the message for deletion instead of delete"
msgstr "Marca il messaggio come eliminato invece di eliminarlo"
#: program/localization/it_IT/labels.inc:skipdeleted
msgid "Do not show deleted messages"
msgstr "Non mostrare i messaggi marcati come eliminati"
#: program/localization/it_IT/labels.inc:deletealways
msgid "If moving messages to Trash fails, delete them"
msgstr "Quando non è possinile spostare i messaggi nel Cestino eliminali"
#: program/localization/it_IT/labels.inc:showremoteimages
msgid "Display remote inline images"
msgstr "Mostra immagini remote contenute nel messaggio"
#: program/localization/it_IT/labels.inc:fromknownsenders
msgid "from known senders"
msgstr "da mittenti conosciuti"
#: program/localization/it_IT/labels.inc:always
msgid "always"
msgstr "sempre"
#: program/localization/it_IT/labels.inc:showinlineimages
msgid "Display attached images below the message"
msgstr "Mostra immagini allegate sotto il messaggio"
#: program/localization/it_IT/labels.inc:autosavedraft
msgid "Automatically save draft"
msgstr "Salva le bozze automaticamente"
#: program/localization/it_IT/labels.inc:everynminutes
msgid "every $n minute(s)"
msgstr "ogni $n minuto(i)"
#: program/localization/it_IT/labels.inc:keepalive
msgid "Check for new messages on"
msgstr "Controlla la presenza di nuovi messaggi"
#: program/localization/it_IT/labels.inc:never
msgid "never"
msgstr "mai"
#: program/localization/it_IT/labels.inc:immediately
msgid "immediately"
msgstr "immediatamente"
#: program/localization/it_IT/labels.inc:messagesdisplaying
msgid "Displaying Messages"
msgstr "Visualizzazione Messaggi"
#: program/localization/it_IT/labels.inc:messagescomposition
msgid "Composing Messages"
msgstr "Composizione Messaggi"
#: program/localization/it_IT/labels.inc:mimeparamfolding
msgid "Attachment names"
msgstr "Nomi allegati"
#: program/localization/it_IT/labels.inc:2231folding
msgid "Full RFC 2231 (Thunderbird)"
msgstr "RFC 2231 completo (Thunderbird)"
#: program/localization/it_IT/labels.inc:miscfolding
msgid "RFC 2047/2231 (MS Outlook)"
msgstr "RFC 2047/2231 (MS Outlook)"
#: program/localization/it_IT/labels.inc:2047folding
msgid "Full RFC 2047 (other)"
msgstr "RFC 2047 completo (altri)"
#: program/localization/it_IT/labels.inc:force7bit
msgid "Use MIME encoding for 8-bit characters"
msgstr "Usa la codifica MIME per i caratteri a 8-bit"
#: program/localization/it_IT/labels.inc:advancedoptions
msgid "Advanced options"
msgstr "Opzioni avanzate"
#: program/localization/it_IT/labels.inc:focusonnewmessage
msgid "Focus browser window on new message"
msgstr "Attiva la finestra del browser all'arrivo di un nuovo messaggio"
#: program/localization/it_IT/labels.inc:checkallfolders
msgid "Check all folders for new messages"
msgstr "Controlla tutte le cartelle per la presenza di nuovi messaggi"
#: program/localization/it_IT/labels.inc:displaynext
msgid "After message delete/move display the next message"
msgstr "Dopo aver cancellato/spostato il messaggio mostra quello successivo"
#: program/localization/it_IT/labels.inc:defaultfont
msgid "Default font of HTML message"
msgstr "font standard per messaggi in HTML"
#: program/localization/it_IT/labels.inc:mainoptions
msgid "Main Options"
msgstr "Opzioni principali"
#: program/localization/it_IT/labels.inc:section
msgid "Section"
msgstr "Sezione"
#: program/localization/it_IT/labels.inc:maintenance
msgid "Maintenance"
msgstr "Manutenzione"
#: program/localization/it_IT/labels.inc:newmessage
msgid "New Message"
msgstr "Nuovo Messaggio"
#: program/localization/it_IT/labels.inc:signatureoptions
msgid "Signature Options"
msgstr "Opzioni firma"
#: program/localization/it_IT/labels.inc:whenreplying
msgid "When replying"
msgstr "Quando rispondi"
#: program/localization/it_IT/labels.inc:replytopposting
msgid "start new message above original"
msgstr "inizia il nuovo messaggio sopra quello originale"
#: program/localization/it_IT/labels.inc:replybottomposting
msgid "start new message below original"
msgstr "inizia il nuovo messaggio sotto quello originale"
#: program/localization/it_IT/labels.inc:replyremovesignature
msgid "When replying remove original signature from message"
msgstr "Quando rispondi, rimuovi la firma dal messaggio originale"
#: program/localization/it_IT/labels.inc:autoaddsignature
msgid "Automatically add signature"
msgstr "Aggiungi automaticamente la firma"
#: program/localization/it_IT/labels.inc:newmessageonly
msgid "new message only"
msgstr "solo ai nuovi messaggi"
#: program/localization/it_IT/labels.inc:replyandforwardonly
msgid "replies and forwards only"
msgstr "solo alle risposte e inoltri"
#: program/localization/it_IT/labels.inc:replysignaturepos
msgid "When replying or forwarding place signature"
msgstr "In risposta o inoltro, posiziona la firma"
#: program/localization/it_IT/labels.inc:belowquote
msgid "below the quote"
msgstr "sotto la citazione"
#: program/localization/it_IT/labels.inc:abovequote
msgid "above the quote"
msgstr "sopra la citazione"
#: program/localization/it_IT/labels.inc:insertsignature
msgid "Insert signature"
msgstr "Inserisci firma"
#: program/localization/it_IT/labels.inc:previewpanemarkread
msgid "Mark previewed messages as read"
msgstr "Segna i messagi in anteprima come letti"
#: program/localization/it_IT/labels.inc:afternseconds
msgid "after $n seconds"
msgstr "dopo $n secondi"
#: program/localization/it_IT/labels.inc:reqmdn
msgid "Always request a return receipt"
msgstr "Richiedi sempre la ricevuta di ritorno"
#: program/localization/it_IT/labels.inc:reqdsn
msgid "Always request a delivery status notification"
msgstr "Richiedi sempre la notifica di consegna"
#: program/localization/it_IT/labels.inc:replysamefolder
msgid "Place replies in the folder of the message being replied to"
msgstr "Salva risposta nella cartella del messaggio a cui si risponde"
#: program/localization/it_IT/labels.inc:defaultaddressbook
msgid "Add new contacts to the selected addressbook"
msgstr "Aggiungi nuovi contatti alla rubrica selezionata"
#: program/localization/it_IT/labels.inc:autocompletesingle
msgid "Skip alternative email addresses in autocompletion"
msgstr "Non considerare gli indirizzi secondari nell'autocompletamento"
#: program/localization/it_IT/labels.inc:spellcheckbeforesend
msgid "Check spelling before sending a message"
msgstr "Esegui il controllo ortografico prima di inviare un messaggio"
#: program/localization/it_IT/labels.inc:spellcheckoptions
msgid "Spellcheck Options"
msgstr "Opzioni controllo ortografico"
#: program/localization/it_IT/labels.inc:spellcheckignoresyms
msgid "Ignore words with symbols"
msgstr "Ignora le parole contenenti simboli"
#: program/localization/it_IT/labels.inc:spellcheckignorenums
msgid "Ignore words with numbers"
msgstr "Ignora le parole contenenti numeri"
#: program/localization/it_IT/labels.inc:spellcheckignorecaps
msgid "Ignore words with all letters capitalized"
msgstr "Ignora le parole con tutte le lettere maiuscole"
#: program/localization/it_IT/labels.inc:addtodict
msgid "Add to dictionary"
msgstr "Aggiungi al dizionario"
#: program/localization/it_IT/labels.inc:folder
msgid "Folder"
msgstr "Cartella"
#: program/localization/it_IT/labels.inc:foldername
msgid "Folder name"
msgstr "Nome cartella"
#: program/localization/it_IT/labels.inc:subscribed
msgid "Subscribed"
msgstr "Sottoscritta"
#: program/localization/it_IT/labels.inc:messagecount
msgid "Messages"
msgstr "Messaggi"
#: program/localization/it_IT/labels.inc:create
msgid "Create"
msgstr "Crea"
#: program/localization/it_IT/labels.inc:createfolder
msgid "Create new folder"
msgstr "Crea nuova cartella"
#: program/localization/it_IT/labels.inc:managefolders
msgid "Manage folders"
msgstr "Gestione cartelle"
#: program/localization/it_IT/labels.inc:specialfolders
msgid "Special Folders"
msgstr "Cartelle Speciali"
#: program/localization/it_IT/labels.inc:properties
msgid "Properties"
msgstr "Proprietà"
#: program/localization/it_IT/labels.inc:folderproperties
msgid "Folder properties"
msgstr "Proprietà cartella"
#: program/localization/it_IT/labels.inc:parentfolder
msgid "Parent folder"
msgstr "Cartella padre"
#: program/localization/it_IT/labels.inc:location
msgid "Location"
msgstr "Ubicazione"
#: program/localization/it_IT/labels.inc:info
msgid "Information"
msgstr "Informazioni"
#: program/localization/it_IT/labels.inc:getfoldersize
msgid "Click to get folder size"
msgstr "Click per la dimensione della cartella"
#: program/localization/it_IT/labels.inc:changesubscription
msgid "Click to change subscription"
msgstr "Click per cambiare sottoscrizione"
#: program/localization/it_IT/labels.inc:foldertype
msgid "Folder Type"
msgstr "Tipo di cartella"
#: program/localization/it_IT/labels.inc:personalfolder
msgid "Private Folder"
msgstr "Cartella privata"
#: program/localization/it_IT/labels.inc:otherfolder
msgid "Other User's Folder"
msgstr "Cartella di un altro utente"
#: program/localization/it_IT/labels.inc:sharedfolder
msgid "Public Folder"
msgstr "Cartella pubblica"
#: program/localization/it_IT/labels.inc:sortby
msgid "Sort by"
msgstr "Ordina per"
#: program/localization/it_IT/labels.inc:sortasc
msgid "Sort ascending"
msgstr "Ordinamento crescente"
#: program/localization/it_IT/labels.inc:sortdesc
msgid "Sort descending"
msgstr "Ordinamento decrescente"
#: program/localization/it_IT/labels.inc:undo
msgid "Undo"
msgstr "Annulla"
#: program/localization/it_IT/labels.inc:plugin
msgid "Plugin"
msgstr "Plugin"
#: program/localization/it_IT/labels.inc:version
msgid "Version"
msgstr "Versione"
#: program/localization/it_IT/labels.inc:source
msgid "Source"
msgstr "Sorgente"
#: program/localization/it_IT/labels.inc:license
msgid "License"
msgstr "Licenza"
#: program/localization/it_IT/labels.inc:support
msgid "Get support"
msgstr "Ottieni supporto"
#: program/localization/it_IT/labels.inc:B
msgid "B"
msgstr "B"
#: program/localization/it_IT/labels.inc:KB
msgid "KB"
msgstr "KB"
#: program/localization/it_IT/labels.inc:MB
msgid "MB"
msgstr "MB"
#: program/localization/it_IT/labels.inc:GB
msgid "GB"
msgstr "GB"
#: program/localization/it_IT/labels.inc:unicode
msgid "Unicode"
msgstr "Unicode"
#: program/localization/it_IT/labels.inc:english
msgid "English"
msgstr "Inglese"
#: program/localization/it_IT/labels.inc:westerneuropean
msgid "Western European"
msgstr "Europa occidentale"
#: program/localization/it_IT/labels.inc:easterneuropean
msgid "Eastern European"
msgstr "Europa orientale"
#: program/localization/it_IT/labels.inc:southeasterneuropean
msgid "South-Eastern European"
msgstr "Europa sud-orientale"
#: program/localization/it_IT/labels.inc:baltic
msgid "Baltic"
msgstr "Baltiche"
#: program/localization/it_IT/labels.inc:cyrillic
msgid "Cyrillic"
msgstr "Cirillico"
#: program/localization/it_IT/labels.inc:arabic
msgid "Arabic"
msgstr "Arabo"
#: program/localization/it_IT/labels.inc:greek
msgid "Greek"
msgstr "Greco"
#: program/localization/it_IT/labels.inc:hebrew
msgid "Hebrew"
msgstr "Ebraico"
#: program/localization/it_IT/labels.inc:turkish
msgid "Turkish"
msgstr "Turco"
#: program/localization/it_IT/labels.inc:nordic
msgid "Nordic"
msgstr "Scandinavo"
#: program/localization/it_IT/labels.inc:thai
msgid "Thai"
msgstr "Tailandese"
#: program/localization/it_IT/labels.inc:celtic
msgid "Celtic"
msgstr "Celtico"
#: program/localization/it_IT/labels.inc:vietnamese
msgid "Vietnamese"
msgstr "Vietnamita"
#: program/localization/it_IT/labels.inc:japanese
msgid "Japanese"
msgstr "Giapponese"
#: program/localization/it_IT/labels.inc:korean
msgid "Korean"
msgstr "Coreano"
#: program/localization/it_IT/labels.inc:chinese
msgid "Chinese"
msgstr "Cinese"
|