aboutsummaryrefslogtreecommitdiffstats
path: root/view/it/strings.php
blob: 38b8c745c556237a68b5c188d821c38ac6975211 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
<?php

if(! function_exists("string_plural_select_it")) {
function string_plural_select_it($n){
	return ($n != 1);;
}}
;
$a->strings["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'";
$a->strings["Profile Photos"] = "Foto del profilo";
$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "I controlli di sicurezza sono falliti. Probabilmente è accaduto perché la pagina è stata tenuta aperta troppo a lungo (ore?) prima di inviare il contenuto.";
$a->strings["created a new post"] = "Ha creato un nuovo articolo";
$a->strings["commented on %s's post"] = "ha commentato l'articolo di %s";
$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "È stato ripristinato un insieme con lo stesso nome che era stato eliminato in precedenza. I permessi già presenti <strong>potrebbero</strong> rimanere validi per i nuovi canali. Se non vuoi che ciò accada, devi creare un altro insieme con un nome diverso.";
$a->strings["Default privacy group for new contacts"] = "Insieme predefinito per i canali che inizi a seguire";
$a->strings["All Channels"] = "Tutti i canali";
$a->strings["edit"] = "modifica";
$a->strings["Collections"] = "Insiemi di canali";
$a->strings["Edit collection"] = "Modifica l'insieme di canali";
$a->strings["Add new collection"] = "Nuovo insieme";
$a->strings["Channels not in any collection"] = "Canali che non sono in un insieme";
$a->strings["add"] = "aggiungi";
$a->strings["Not a valid email address"] = "Email non valida";
$a->strings["Your email domain is not among those allowed on this site"] = "Il dominio della tua email attualmente non è permesso su questo sito";
$a->strings["Your email address is already registered at this site."] = "La tua email è già registrata su questo sito.";
$a->strings["An invitation is required."] = "È necessario un invito.";
$a->strings["Invitation could not be verified."] = "L'invito non può essere verificato.";
$a->strings["Please enter the required information."] = "Inserisci le informazioni richieste.";
$a->strings["Failed to store account information."] = "Non è stato possibile salvare le informazioni del tuo account.";
$a->strings["Registration confirmation for %s"] = "Registrazione di %s confermata";
$a->strings["Registration request at %s"] = "Richiesta di registrazione su %s";
$a->strings["Administrator"] = "Amministratore";
$a->strings["your registration password"] = "la password di registrazione";
$a->strings["Registration details for %s"] = "Dettagli della registrazione di %s";
$a->strings["Account approved."] = "Account approvato.";
$a->strings["Registration revoked for %s"] = "Registrazione revocata per %s";
$a->strings["Account verified. Please login."] = "Registrazione verificata. Adesso puoi effettuare login.";
$a->strings["Click here to upgrade."] = "Clicca qui per aggiornare.";
$a->strings["This action exceeds the limits set by your subscription plan."] = "Questa operazione supera i limiti del tuo abbonamento.";
$a->strings["This action is not available under your subscription plan."] = "Questa operazione non è prevista dal tuo abbonamento.";
$a->strings["Miscellaneous"] = "Altro";
$a->strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-GG oppure MM-GG";
$a->strings["Required"] = "Obbligatorio";
$a->strings["never"] = "mai";
$a->strings["less than a second ago"] = "meno di un secondo fa";
$a->strings["year"] = "anno";
$a->strings["years"] = "anni";
$a->strings["month"] = "mese";
$a->strings["months"] = "mesi";
$a->strings["week"] = "settimana";
$a->strings["weeks"] = "settimane";
$a->strings["day"] = "giorno";
$a->strings["days"] = "giorni";
$a->strings["hour"] = "ora";
$a->strings["hours"] = "ore";
$a->strings["minute"] = "minuto";
$a->strings["minutes"] = "minuti";
$a->strings["second"] = "secondo";
$a->strings["seconds"] = "secondi";
$a->strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "%1\$d %2\$s fa";
$a->strings["%1\$s's birthday"] = "Compleanno di %1\$s";
$a->strings["Happy Birthday %1\$s"] = "Buon compleanno %1\$s";
$a->strings["New Page"] = "Nuova pagina web";
$a->strings["Edit"] = "Modifica";
$a->strings["View"] = "Guarda";
$a->strings["Preview"] = "Anteprima";
$a->strings["Actions"] = "Azioni";
$a->strings["Page Link"] = "Link alla pagina";
$a->strings["Title"] = "Titolo";
$a->strings["Created"] = "Creato";
$a->strings["Edited"] = "Modificato";
$a->strings["Public Timeline"] = "Diario pubblico";
$a->strings["Default"] = "Predefinito";
$a->strings["Directory Options"] = "Opzioni elenco pubblico";
$a->strings["Alphabetic"] = "Alfabetico";
$a->strings["Reverse Alphabetic"] = "Alfabetico inverso";
$a->strings["Newest to Oldest"] = "Prima i più recenti";
$a->strings["Oldest to Newest"] = "Prima i più vecchi";
$a->strings["Sort"] = "Ordinamento";
$a->strings["Safe Mode"] = "Modalità SafeSearch";
$a->strings["Public Forums Only"] = "Solo forum pubblici";
$a->strings["This Website Only"] = "Solo in questo sito";
$a->strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i";
$a->strings["Starts:"] = "Inizio:";
$a->strings["Finishes:"] = "Fine:";
$a->strings["Location:"] = "Luogo:";
$a->strings["This event has been added to your calendar."] = "Questo evento è stato aggiunto al tuo calendario";
$a->strings["Delete this item?"] = "Eliminare questo elemento?";
$a->strings["Comment"] = "Commento";
$a->strings["[+] show all"] = "[+] mostra tutto";
$a->strings["[-] show less"] = "[-] riduci";
$a->strings["[+] expand"] = "[+] mostra tutto";
$a->strings["[-] collapse"] = "[-] riduci";
$a->strings["Password too short"] = "Password troppo corta";
$a->strings["Passwords do not match"] = "Le password non corrispondono";
$a->strings["everybody"] = "tutti";
$a->strings["Secret Passphrase"] = "Chiave segreta";
$a->strings["Passphrase hint"] = "Suggerimento per la chiave segreta";
$a->strings["Notice: Permissions have changed but have not yet been submitted."] = "Nota: i permessi sono stati modificati ma non ancora salvati.";
$a->strings["close all"] = "chiudi tutto";
$a->strings["Nothing new here"] = "Niente di nuovo qui";
$a->strings["Rate This Channel (this is public)"] = "Valuta questo canale (visibile a tutti)";
$a->strings["Rating"] = "Valutazioni";
$a->strings["Describe (optional)"] = "Descrizione (facoltativa)";
$a->strings["Submit"] = "Salva";
$a->strings["Please enter a link URL"] = "Inserisci l'URL di un link";
$a->strings["Unsaved changes. Are you sure you wish to leave this page?"] = "Non hai salvato i cambiamenti. Vuoi davvero lasciare questa pagina?";
$a->strings["timeago.prefixAgo"] = "timeago.prefixAgo";
$a->strings["timeago.prefixFromNow"] = "timeago.prefixFromNow";
$a->strings["ago"] = "fa";
$a->strings["from now"] = "da adesso";
$a->strings["less than a minute"] = "meno di un minuto";
$a->strings["about a minute"] = "circa un minuto";
$a->strings["%d minutes"] = "%d minuti";
$a->strings["about an hour"] = "circa un’ora";
$a->strings["about %d hours"] = "circa %d ore";
$a->strings["a day"] = "un giorno";
$a->strings["%d days"] = "%d giorni";
$a->strings["about a month"] = "circa un mese";
$a->strings["%d months"] = "%d mesi";
$a->strings["about a year"] = "circa un anno";
$a->strings["%d years"] = "%d anni";
$a->strings[" "] = " ";
$a->strings["timeago.numbers"] = "timeago.numbers";
$a->strings["parent"] = "cartella superiore";
$a->strings["Collection"] = "Cartella";
$a->strings["Principal"] = "Principale";
$a->strings["Addressbook"] = "Rubrica";
$a->strings["Calendar"] = "Calendario";
$a->strings["Schedule Inbox"] = "Appuntamenti ricevuti";
$a->strings["Schedule Outbox"] = "Appuntamenti inviati";
$a->strings["Unknown"] = "Sconosciuto";
$a->strings["%1\$s used"] = "%1\$s occupati";
$a->strings["%1\$s used of %2\$s (%3\$s&#37;)"] = "%1\$s occupati di %2\$s (%3\$s&#37;)";
$a->strings["Files"] = "Archivio file";
$a->strings["Total"] = "Totale";
$a->strings["Shared"] = "Condiviso";
$a->strings["Create"] = "Crea";
$a->strings["Upload"] = "Carica";
$a->strings["Name"] = "Nome";
$a->strings["Type"] = "Tipo";
$a->strings["Size"] = "Dimensione";
$a->strings["Last Modified"] = "Ultima modifica";
$a->strings["Delete"] = "Elimina";
$a->strings["Create new folder"] = "Crea una nuova cartella";
$a->strings["Upload file"] = "Carica un file";
$a->strings["%1\$s's bookmarks"] = "I segnalibri di %1\$s";
$a->strings["view full size"] = "guarda nelle dimensioni reali";
$a->strings["General Features"] = "Funzionalità di base";
$a->strings["Content Expiration"] = "Scadenza";
$a->strings["Remove posts/comments and/or private messages at a future time"] = "Elimina gli articoli, i commenti o i messaggi privati dopo un lasso di tempo";
$a->strings["Multiple Profiles"] = "Profili multipli";
$a->strings["Ability to create multiple profiles"] = "Abilitazione a creare profili multipli";
$a->strings["Advanced Profiles"] = "Profili avanzati";
$a->strings["Additional profile sections and selections"] = "Informazioni aggiuntive del profilo";
$a->strings["Profile Import/Export"] = "Importa/esporta il profilo";
$a->strings["Save and load profile details across sites/channels"] = "Salva o ripristina le informazioni del profilo su canali o siti diversi";
$a->strings["Web Pages"] = "Pagine web";
$a->strings["Provide managed web pages on your channel"] = "Attiva la creazione di pagine web sul tuo canale";
$a->strings["Private Notes"] = "Note private";
$a->strings["Enables a tool to store notes and reminders"] = "Abilita il riquadro per scrivere annotazioni";
$a->strings["Navigation Channel Select"] = "Scegli il canale attivo dal menu";
$a->strings["Change channels directly from within the navigation dropdown menu"] = "Scegli il canale attivo direttamente dal menu di navigazione";
$a->strings["Photo Location"] = "Posizione geografica";
$a->strings["If location data is available on uploaded photos, link this to a map."] = "Collega la foto a una mappa quando contiene indicazioni geografiche.";
$a->strings["Expert Mode"] = "Modalità esperto";
$a->strings["Enable Expert Mode to provide advanced configuration options"] = "Abilita la modalità esperto per vedere le opzioni di configurazione avanzate";
$a->strings["Premium Channel"] = "Canale premium";
$a->strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Ti permette di impostare delle restrizioni e dei termini d'uso a chi segue il canale";
$a->strings["Post Composition Features"] = "Modalità di scrittura articoli";
$a->strings["Use Markdown"] = "Usa il markdown";
$a->strings["Allow use of \"Markdown\" to format posts"] = "Consenti l'uso del markdown per formattare gli articoli";
$a->strings["Large Photos"] = "Foto grandi";
$a->strings["Include large (640px) photo thumbnails in posts. If not enabled, use small (320px) photo thumbnails"] = "Includi anteprime grandi delle foto nei post (640px). Se disabilitato le anteprime saranno piccole (320px)";
$a->strings["Channel Sources"] = "Sorgenti del canale";
$a->strings["Automatically import channel content from other channels or feeds"] = "Importa automaticamente il contenuto del canale da altri canali o feed";
$a->strings["Even More Encryption"] = "Crittografia addizionale";
$a->strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Rendi possibile la crittografia tra mittente e destinatario che condividono una chiave segreta";
$a->strings["Enable voting tools"] = "Permetti i post con votazione";
$a->strings["Provide a class of post which others can vote on"] = "Rende possibile la creazione di articoli in cui sarà possibile votare";
$a->strings["Network and Stream Filtering"] = "Filtraggio dei contenuti";
$a->strings["Search by Date"] = "Ricerca per data";
$a->strings["Ability to select posts by date ranges"] = "Per selezionare gli articoli in un intervallo tra date";
$a->strings["Collections Filter"] = "Filtra per insiemi di canali";
$a->strings["Enable widget to display Network posts only from selected collections"] = "Mostra il riquadro per filtrare gli articoli di certi insiemi di canali";
$a->strings["Saved Searches"] = "Ricerche salvate";
$a->strings["Save search terms for re-use"] = "Salva i termini delle ricerche per poterle ripetere";
$a->strings["Network Personal Tab"] = "Attività personale";
$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Abilita il link per mostrare solamente i contenuti con cui hai interagito";
$a->strings["Network New Tab"] = "Contenuti nuovi";
$a->strings["Enable tab to display all new Network activity"] = "Abilita il link per visualizzare solo i nuovi contenuti";
$a->strings["Affinity Tool"] = "Filtro per affinità";
$a->strings["Filter stream activity by depth of relationships"] = "Permette di selezionare i contenuti in base al livello di amicizia";
$a->strings["Suggest Channels"] = "Suggerisci canali";
$a->strings["Show channel suggestions"] = "Mostra alcuni canali che potrebbero interessarti";
$a->strings["Post/Comment Tools"] = "Gestione articoli e commenti";
$a->strings["Tagging"] = "Tag";
$a->strings["Ability to tag existing posts"] = "Permetti l'aggiunta di tag su articoli già esistenti";
$a->strings["Post Categories"] = "Categorie degli articoli";
$a->strings["Add categories to your posts"] = "Abilita le categorie per i tuoi articoli";
$a->strings["Saved Folders"] = "Cartelle salvate";
$a->strings["Ability to file posts under folders"] = "Abilita la raccolta dei tuoi articoli in cartelle";
$a->strings["Dislike Posts"] = "Non mi piace";
$a->strings["Ability to dislike posts/comments"] = "Abilità la funzionalità \"non mi piace\" per i tuoi articoli";
$a->strings["Star Posts"] = "Articoli stella (preferiti)";
$a->strings["Ability to mark special posts with a star indicator"] = "Mostra la stella per scegliere gli articoli preferiti";
$a->strings["Tag Cloud"] = "Nuvola di tag";
$a->strings["Provide a personal tag cloud on your channel page"] = "Mostra la nuvola dei tag che usi di più sulla pagina del tuo canale";
$a->strings["Categories"] = "Categorie";
$a->strings["Apps"] = "Apps";
$a->strings["System"] = "Sistema";
$a->strings["Personal"] = "Personali";
$a->strings["Create Personal App"] = "Crea una app personale";
$a->strings["Edit Personal App"] = "Modifica una app personale";
$a->strings["Connect"] = "Aggiungi";
$a->strings["Ignore/Hide"] = "Ignora/nascondi";
$a->strings["Suggestions"] = "Suggerimenti";
$a->strings["See more..."] = "Altro...";
$a->strings["You have %1$.0f of %2$.0f allowed connections."] = "Hai attivato %1$.0f delle %2$.0f connessioni permesse.";
$a->strings["Add New Connection"] = "Aggiungi un contatto";
$a->strings["Enter the channel address"] = "Scrivi l'indirizzo del canale";
$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Per esempio: mario@pippo.it oppure http://pluto.com/barbara";
$a->strings["Notes"] = "Note";
$a->strings["Save"] = "Salva";
$a->strings["Remove term"] = "Rimuovi termine";
$a->strings["Everything"] = "Tutto";
$a->strings["Archives"] = "Archivi";
$a->strings["Me"] = "Io";
$a->strings["Family"] = "Famiglia";
$a->strings["Friends"] = "Amici";
$a->strings["Acquaintances"] = "Conoscenti";
$a->strings["All"] = "Tutti";
$a->strings["Refresh"] = "Aggiorna";
$a->strings["Account settings"] = "Il tuo account";
$a->strings["Channel settings"] = "Impostazioni del canale";
$a->strings["Additional features"] = "Funzionalità opzionali";
$a->strings["Feature/Addon settings"] = "Impostazioni dei componenti aggiuntivi";
$a->strings["Display settings"] = "Aspetto";
$a->strings["Connected apps"] = "App connesse";
$a->strings["Export channel"] = "Esporta il canale";
$a->strings["Connection Default Permissions"] = "Permessi predefiniti dei nuovi contatti";
$a->strings["Premium Channel Settings"] = "Canale premium - impostazioni";
$a->strings["Settings"] = "Impostazioni";
$a->strings["Messages"] = "Messaggi";
$a->strings["Check Mail"] = "Controlla i messaggi";
$a->strings["New Message"] = "Nuovo messaggio";
$a->strings["Chat Rooms"] = "Aree chat attive";
$a->strings["Bookmarked Chatrooms"] = "Aree chat nei segnalibri";
$a->strings["Suggested Chatrooms"] = "Aree chat suggerite";
$a->strings["photo/image"] = "foto/immagine";
$a->strings["Rate Me"] = "Valutami";
$a->strings["View Ratings"] = "Vedi le valutazioni ricevute";
$a->strings["Public Hubs"] = "Hub pubblici";
$a->strings["Hubzilla Notification"] = "Notifica di Hubzilla";
$a->strings["hubzilla"] = "Hubzilla";
$a->strings["Thank You,"] = "Grazie,";
$a->strings["%s Administrator"] = "L'amministratore di %s";
$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
$a->strings["[Red:Notify] New mail received at %s"] = "[Hubzilla] Nuovo messaggio su %s";
$a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s  ti ha mandato un messaggio privato su %3\$s.";
$a->strings["%1\$s sent you %2\$s."] = "%1\$s ti ha mandato %2\$s.";
$a->strings["a private message"] = "un messaggio privato";
$a->strings["Please visit %s to view and/or reply to your private messages."] = "Visita %s per leggere i tuoi messaggi privati e rispondere.";
$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s ha commentato [zrl=%3\$s]%4\$s[/zrl]";
$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s ha commentato [zrl=%3\$s]%5\$s di %4\$s[/zrl]";
$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s ha commentato [zrl=%3\$s]%4\$s che hai creato[/zrl]";
$a->strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Hubzilla] Nuovo commento di %2\$s alla conversazione #%1\$d";
$a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s ha commentato un elemento che stavi seguendo.";
$a->strings["Please visit %s to view and/or reply to the conversation."] = "Visita %s per leggere o commentare la conversazione.";
$a->strings["[Red:Notify] %s posted to your profile wall"] = "[Hubzilla] %s ha scritto sulla tua bacheca";
$a->strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s ha scritto sulla bacheca del tuo profilo su %3\$s";
$a->strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s ha scritto sulla [zrl=%3\$s]tua bacheca[/zrl]";
$a->strings["[Red:Notify] %s tagged you"] = "[Hubzilla] %s ti ha taggato";
$a->strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s ti ha taggato su %3\$s";
$a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]ti ha taggato[/zrl].";
$a->strings["[Red:Notify] %1\$s poked you"] = "[Hubzilla] %1\$s ti ha mandato un poke";
$a->strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s ti ha mandato un poke su %3\$s";
$a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]ti ha mandato un poke[/zrl].";
$a->strings["[Red:Notify] %s tagged your post"] = "[Hubzilla] %s ha taggato il tuo articolo";
$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s ha taggato il tuo articolo su %3\$s";
$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s ha taggato [zrl=%3\$s]il tuo articolo[/zrl]";
$a->strings["[Red:Notify] Introduction received"] = "[Hubzilla] Hai una richiesta di amicizia";
$a->strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, hai ricevuto una richiesta di entrare in contatto da '%2\$s' su %3\$s";
$a->strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, hai ricevuto una [zrl=%2\$s]richiesta di entrare in contatto[/zrl] da %3\$s.";
$a->strings["You may visit their profile at %s"] = "Puoi visitare il suo profilo su %s";
$a->strings["Please visit %s to approve or reject the connection request."] = "Visita %s per approvare o rifiutare la richiesta di entrare in contatto.";
$a->strings["[Red:Notify] Friend suggestion received"] = "[Hubzilla] Ti è stato suggerito un amico";
$a->strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, ti è stato suggerito un amico da '%2\$s' su %3\$s";
$a->strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, %4\$s ti [zrl=%2\$s]ha suggerito %3\$s[/zrl] come amico.";
$a->strings["Name:"] = "Nome:";
$a->strings["Photo:"] = "Foto:";
$a->strings["Please visit %s to approve or reject the suggestion."] = "Visita %s per approvare o rifiutare il suggerimento.";
$a->strings["[Red:Notify]"] = "[Hubzilla]";
$a->strings["Frequently"] = "Frequentemente";
$a->strings["Hourly"] = "Ogni ora";
$a->strings["Twice daily"] = "Due volte al giorno";
$a->strings["Daily"] = "Ogni giorno";
$a->strings["Weekly"] = "Ogni settimana";
$a->strings["Monthly"] = "Ogni mese";
$a->strings["Friendica"] = "Friendica";
$a->strings["OStatus"] = "OStatus";
$a->strings["RSS/Atom"] = "RSS/Atom";
$a->strings["Email"] = "Email";
$a->strings["Diaspora"] = "Diaspora";
$a->strings["Facebook"] = "Facebook";
$a->strings["Zot!"] = "Zot!";
$a->strings["LinkedIn"] = "LinkedIn";
$a->strings["XMPP/IM"] = "XMPP/IM";
$a->strings["MySpace"] = "MySpace";
$a->strings["No recipient provided."] = "Devi scegliere un destinatario.";
$a->strings["[no subject]"] = "[nessun titolo]";
$a->strings["Unable to determine sender."] = "Impossibile determinare il mittente.";
$a->strings["Stored post could not be verified."] = "Non è stato possibile verificare l'articolo inserito.";
$a->strings["Channel is blocked on this site."] = "Il canale è bloccato per questo sito.";
$a->strings["Channel location missing."] = "Manca l'indirizzo del canale.";
$a->strings["Response from remote channel was incomplete."] = "La risposta dal canale non è completa.";
$a->strings["Channel was deleted and no longer exists."] = "Il canale è stato rimosso e non esiste più.";
$a->strings["Protocol disabled."] = "Protocollo disabilitato.";
$a->strings["Channel discovery failed."] = "La ricerca del canale non ha avuto successo.";
$a->strings["local account not found."] = "l'account locale non è stato trovato.";
$a->strings["Cannot connect to yourself."] = "Non puoi connetterti a te stesso.";
$a->strings["Private Message"] = "Messaggio privato";
$a->strings["Select"] = "Seleziona";
$a->strings["Save to Folder"] = "Salva nella cartella";
$a->strings["I will attend"] = "Parteciperò";
$a->strings["I will not attend"] = "Non parteciperò";
$a->strings["I might attend"] = "Forse parteciperò";
$a->strings["I agree"] = "Sono d'accordo";
$a->strings["I disagree"] = "Non sono d'accordo";
$a->strings["I abstain"] = "Mi astengo";
$a->strings["View all"] = "Vedi tutto";
$a->strings["__ctx:noun__ Like"] = array(
	0 => "Mi piace",
	1 => "Mi piace",
);
$a->strings["__ctx:noun__ Dislike"] = array(
	0 => "Non mi piace",
	1 => "Non mi piace",
);
$a->strings["Add Star"] = "Aggiungi ai preferiti";
$a->strings["Remove Star"] = "Rimuovi dai preferiti";
$a->strings["Toggle Star Status"] = "Attiva/disattiva preferito";
$a->strings["starred"] = "preferito";
$a->strings["Message signature validated"] = "Messaggio con firma verificata";
$a->strings["Message signature incorrect"] = "Massaggio con firma non corretta";
$a->strings["Add Tag"] = "Aggiungi un tag";
$a->strings["I like this (toggle)"] = "Attiva/disattiva Mi piace";
$a->strings["like"] = "mi piace";
$a->strings["I don't like this (toggle)"] = "Attiva/disattiva Non mi piace";
$a->strings["dislike"] = "non mi piace";
$a->strings["Share This"] = "Condividi";
$a->strings["share"] = "condividi";
$a->strings["%d comment"] = array(
	0 => "%d commento",
	1 => "%d commenti",
);
$a->strings["View %s's profile - %s"] = "Guarda il profilo di %s - %s";
$a->strings["to"] = "a";
$a->strings["via"] = "via";
$a->strings["Wall-to-Wall"] = "Da bacheca a bacheca";
$a->strings["via Wall-To-Wall:"] = "da bacheca a bacheca:";
$a->strings["from %s"] = "da %s";
$a->strings["last edited: %s"] = "ultima modifica: %s";
$a->strings["Expires: %s"] = "Scadenza: %s";
$a->strings["Save Bookmarks"] = "Salva segnalibro";
$a->strings["Add to Calendar"] = "Aggiungi al calendario";
$a->strings["Mark all seen"] = "Marca tutto come letto";
$a->strings["__ctx:noun__ Likes"] = "Mi piace";
$a->strings["__ctx:noun__ Dislikes"] = "Non mi piace";
$a->strings["Close"] = "Chiudi";
$a->strings["Please wait"] = "Attendere";
$a->strings["This is you"] = "Questo sei tu";
$a->strings["Bold"] = "Grassetto";
$a->strings["Italic"] = "Corsivo";
$a->strings["Underline"] = "Sottolineato";
$a->strings["Quote"] = "Citazione";
$a->strings["Code"] = "Codice";
$a->strings["Image"] = "Immagine";
$a->strings["Insert Link"] = "Collegamento";
$a->strings["Video"] = "Video";
$a->strings["Encrypt text"] = "Crittografia del testo";
$a->strings["New window"] = "Nuova finestra";
$a->strings["Open the selected location in a different window or browser tab"] = "Apri l'indirizzo selezionato in una nuova scheda o finestra";
$a->strings["User '%s' deleted"] = "Utente '%s' eliminato";
$a->strings["Attachments:"] = "Allegati:";
$a->strings["Hubzilla event notification:"] = "Notifica eventi Hubzilla:";
$a->strings["prev"] = "prec";
$a->strings["first"] = "inizio";
$a->strings["last"] = "fine";
$a->strings["next"] = "succ";
$a->strings["older"] = "più recenti";
$a->strings["newer"] = "più nuovi";
$a->strings["No connections"] = "Nessun contatto";
$a->strings["%d Connection"] = array(
	0 => "%d contatto",
	1 => "%d contatti",
);
$a->strings["View Connections"] = "Elenco contatti";
$a->strings["Search"] = "Cerca";
$a->strings["poke"] = "poke";
$a->strings["poked"] = "ha ricevuto un poke";
$a->strings["ping"] = "ping";
$a->strings["pinged"] = "ha ricevuto un ping";
$a->strings["prod"] = "spintone";
$a->strings["prodded"] = "ha ricevuto uno spintone";
$a->strings["slap"] = "schiaffo";
$a->strings["slapped"] = "ha ricevuto uno schiaffo";
$a->strings["finger"] = "finger";
$a->strings["fingered"] = "ha ricevuto un finger";
$a->strings["rebuff"] = "rifiuto";
$a->strings["rebuffed"] = "ha ricevuto un rifiuto";
$a->strings["happy"] = "felice";
$a->strings["sad"] = "triste";
$a->strings["mellow"] = "calmo";
$a->strings["tired"] = "stanco";
$a->strings["perky"] = "vivace";
$a->strings["angry"] = "arrabbiato";
$a->strings["stupified"] = "stordito";
$a->strings["puzzled"] = "confuso";
$a->strings["interested"] = "attento";
$a->strings["bitter"] = "amaro";
$a->strings["cheerful"] = "allegro";
$a->strings["alive"] = "vivace";
$a->strings["annoyed"] = "seccato";
$a->strings["anxious"] = "ansioso";
$a->strings["cranky"] = "irritabile";
$a->strings["disturbed"] = "turbato";
$a->strings["frustrated"] = "frustrato";
$a->strings["depressed"] = "in depressione";
$a->strings["motivated"] = "motivato";
$a->strings["relaxed"] = "rilassato";
$a->strings["surprised"] = "sorpreso";
$a->strings["Monday"] = "lunedì";
$a->strings["Tuesday"] = "martedì";
$a->strings["Wednesday"] = "mercoledì";
$a->strings["Thursday"] = "giovedì";
$a->strings["Friday"] = "venerdì";
$a->strings["Saturday"] = "sabato";
$a->strings["Sunday"] = "domenica";
$a->strings["January"] = "gennaio";
$a->strings["February"] = "febbraio";
$a->strings["March"] = "marzo";
$a->strings["April"] = "aprile";
$a->strings["May"] = "maggio";
$a->strings["June"] = "giugno";
$a->strings["July"] = "luglio";
$a->strings["August"] = "agosto";
$a->strings["September"] = "settembre";
$a->strings["October"] = "ottobre";
$a->strings["November"] = "novembre";
$a->strings["December"] = "dicembre";
$a->strings["unknown.???"] = "sconosciuto???";
$a->strings["bytes"] = "byte";
$a->strings["remove category"] = "rimuovi la categoria";
$a->strings["remove from file"] = "rimuovi dal file";
$a->strings["Click to open/close"] = "Clicca per aprire/chiudere";
$a->strings["Link to Source"] = "Link al sito d'origine";
$a->strings["default"] = "predefinito";
$a->strings["Page layout"] = "Layout della pagina";
$a->strings["You can create your own with the layouts tool"] = "Con gli strumenti di design puoi creare il tuo";
$a->strings["Page content type"] = "Tipo di contenuto della pagina";
$a->strings["Select an alternate language"] = "Seleziona una lingua diversa";
$a->strings["photo"] = "la foto";
$a->strings["event"] = "l'evento";
$a->strings["status"] = "il messaggio di stato";
$a->strings["comment"] = "il commento";
$a->strings["activity"] = "l'attività";
$a->strings["Design Tools"] = "Strumenti di design";
$a->strings["Blocks"] = "Riquadri";
$a->strings["Menus"] = "Menù";
$a->strings["Layouts"] = "Layout";
$a->strings["Pages"] = "Pagine";
$a->strings["Logout"] = "Esci";
$a->strings["End this session"] = "Chiudi questa sessione";
$a->strings["Home"] = "Bacheca";
$a->strings["Your posts and conversations"] = "I tuoi articoli e conversazioni";
$a->strings["View Profile"] = "Profilo";
$a->strings["Your profile page"] = "Il tuo profilo";
$a->strings["Edit Profiles"] = "Modifica i profili";
$a->strings["Manage/Edit profiles"] = "Gestisci/modifica i profili";
$a->strings["Edit Profile"] = "Modifica il profilo";
$a->strings["Edit your profile"] = "Modifica il profilo";
$a->strings["Photos"] = "Foto";
$a->strings["Your photos"] = "Le tue foto";
$a->strings["Your files"] = "I tuoi file";
$a->strings["Chat"] = "Area chat";
$a->strings["Your chatrooms"] = "Le tue aree chat";
$a->strings["Bookmarks"] = "Segnalibri";
$a->strings["Your bookmarks"] = "I tuoi segnalibri";
$a->strings["Webpages"] = "Pagine web";
$a->strings["Your webpages"] = "Le tue pagine web";
$a->strings["Login"] = "Accedi";
$a->strings["Sign in"] = "Accedi";
$a->strings["%s - click to logout"] = "%s - clicca per uscire";
$a->strings["Remote authentication"] = "Autenticazione magica dal tuo server";
$a->strings["Click to authenticate to your home hub"] = "Clicca per autenticarti sul tuo server principale";
$a->strings["Home Page"] = "Bacheca";
$a->strings["Register"] = "Iscriviti";
$a->strings["Create an account"] = "Crea un account";
$a->strings["Help"] = "Guida";
$a->strings["Help and documentation"] = "Guida e documentazione";
$a->strings["Applications, utilities, links, games"] = "Applicazioni, utilità, link, giochi";
$a->strings["Search site content"] = "Cerca nel sito";
$a->strings["Directory"] = "Elenco pubblico";
$a->strings["Channel Directory"] = "Elenco pubblico canali";
$a->strings["Matrix"] = "Hubzilla";
$a->strings["Your matrix"] = "La tua rete";
$a->strings["Mark all matrix notifications seen"] = "Segna come lette le notifiche della tua rete";
$a->strings["Channel Home"] = "Bacheca del canale";
$a->strings["Channel home"] = "Bacheca del canale";
$a->strings["Mark all channel notifications seen"] = "Segna come lette le notifiche del canale";
$a->strings["Connections"] = "Contatti";
$a->strings["Notices"] = "Avvisi";
$a->strings["Notifications"] = "Notifiche";
$a->strings["See all notifications"] = "Vedi tutte le notifiche";
$a->strings["Mark all system notifications seen"] = "Segna come lette le notifiche di sistema";
$a->strings["Mail"] = "Messaggi";
$a->strings["Private mail"] = "Messaggi privati";
$a->strings["See all private messages"] = "Guarda tutti i messaggi privati";
$a->strings["Mark all private messages seen"] = "Segna come letti tutti i messaggi privati";
$a->strings["Inbox"] = "In arrivo";
$a->strings["Outbox"] = "Inviati";
$a->strings["Events"] = "Eventi";
$a->strings["Event Calendar"] = "Calendario";
$a->strings["See all events"] = "Guarda tutti gli eventi";
$a->strings["Mark all events seen"] = "Marca come letti tutti gli eventi";
$a->strings["Channel Manager"] = "Gestione canali";
$a->strings["Manage Your Channels"] = "Gestisci i tuoi canali";
$a->strings["Account/Channel Settings"] = "Impostazioni dell'account e del canale";
$a->strings["Admin"] = "Amministrazione";
$a->strings["Site Setup and Configuration"] = "Installazione e configurazione del sito";
$a->strings["Loading..."] = "Caricamento in corso...";
$a->strings["@name, #tag, content"] = "@nome, #tag, testo";
$a->strings["Please wait..."] = "Attendere...";
$a->strings["Tags"] = "Tag";
$a->strings["Keywords"] = "Parole chiave";
$a->strings["have"] = "ho";
$a->strings["has"] = "ha";
$a->strings["want"] = "voglio";
$a->strings["wants"] = "vuole";
$a->strings["likes"] = "gli piace";
$a->strings["dislikes"] = "non gli piace";
$a->strings[" and "] = "e";
$a->strings["public profile"] = "profilo pubblico";
$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s ha cambiato %2\$s in &ldquo;%3\$s&rdquo;";
$a->strings["Visit %1\$s's %2\$s"] = "Guarda %2\$s di %1\$s ";
$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha aggiornato %2\$s cambiando %3\$s.";
$a->strings["Image/photo"] = "Immagine";
$a->strings["Encrypted content"] = "Contenuto crittografato";
$a->strings["Install design element: "] = "Installa il componente di design:";
$a->strings["QR code"] = "QR code";
$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s ha scritto %2\$s %3\$s";
$a->strings["post"] = "l'articolo";
$a->strings["Different viewers will see this text differently"] = "Ad altri questo testo potrebbe apparire in modo differente";
$a->strings["$1 spoiler"] = "$1 spoiler";
$a->strings["$1 wrote:"] = "$1 ha scritto:";
$a->strings["Permission denied"] = "Permesso negato";
$a->strings["(Unknown)"] = "(Sconosciuto)";
$a->strings["Visible to anybody on the internet."] = "Visibile a chiunque su internet.";
$a->strings["Visible to you only."] = "Visibile solo a te.";
$a->strings["Visible to anybody in this network."] = "Visibile a tutti su questa rete.";
$a->strings["Visible to anybody authenticated."] = "Visibile a chiunque sia autenticato.";
$a->strings["Visible to anybody on %s."] = "Visibile a tutti in %s.";
$a->strings["Visible to all connections."] = "Visibile a tutti coloro che ti seguono.";
$a->strings["Visible to approved connections."] = "Visibile ai contatti approvati.";
$a->strings["Visible to specific connections."] = "Visibile ad alcuni contatti scelti.";
$a->strings["Item not found."] = "Elemento non trovato.";
$a->strings["Permission denied."] = "Permesso negato.";
$a->strings["Collection not found."] = "Insieme di canali non trovato.";
$a->strings["Collection is empty."] = "L'insieme di canali è vuoto.";
$a->strings["Collection: %s"] = "Insieme: %s";
$a->strings["Connection: %s"] = "Contatto: %s";
$a->strings["Connection not found."] = "Contatto non trovato.";
$a->strings["Can view my normal stream and posts"] = "Può vedere i miei contenuti e articoli normali";
$a->strings["Can view my default channel profile"] = "Può vedere il profilo predefinito del canale";
$a->strings["Can view my photo albums"] = "Può vedere i miei album fotografici";
$a->strings["Can view my connections"] = "Può vedere i miei contatti";
$a->strings["Can view my file storage"] = "Può vedere i miei file condivisi";
$a->strings["Can view my webpages"] = "Può vedere le mie pagine web";
$a->strings["Can send me their channel stream and posts"] = "È tra i canali che seguo";
$a->strings["Can post on my channel page (\"wall\")"] = "Può scrivere sulla bacheca del mio canale";
$a->strings["Can comment on or like my posts"] = "Può commentare o aggiungere \"mi piace\" ai miei articoli";
$a->strings["Can send me private mail messages"] = "Può inviarmi messaggi privati";
$a->strings["Can post photos to my photo albums"] = "Può aggiungere foto ai miei album";
$a->strings["Can like/dislike stuff"] = "Può aggiungere \"mi piace\"";
$a->strings["Profiles and things other than posts/comments"] = "Profili e tutto ciò che non è articoli e commenti";
$a->strings["Can forward to all my channel contacts via post @mentions"] = "Può inoltrare articoli a tutti i contatti del canale tramite una @menzione";
$a->strings["Advanced - useful for creating group forum channels"] = "Impostazione avanzata - utile per creare un canale-forum di discussione";
$a->strings["Can chat with me (when available)"] = "Può aprire una chat con me (se disponibile)";
$a->strings["Can write to my file storage"] = "Può scrivere sul mio archivio file";
$a->strings["Can edit my webpages"] = "Può modificare le mie pagine web";
$a->strings["Can source my public posts in derived channels"] = "Può usare i miei articoli pubblici per creare canali derivati";
$a->strings["Somewhat advanced - very useful in open communities"] = "Piuttosto avanzato - molto utile nelle comunità aperte";
$a->strings["Can administer my channel resources"] = "Può amministrare i contenuti del mio canale";
$a->strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Impostazione pericolosa - lasciare il valore predefinito se non si è assolutamente sicuri";
$a->strings["Social Networking"] = "Social network";
$a->strings["Mostly Public"] = "Prevalentemente pubblico";
$a->strings["Restricted"] = "Con restrizioni";
$a->strings["Private"] = "Privato";
$a->strings["Community Forum"] = "Forum di discussione";
$a->strings["Feed Republish"] = "Aggregatore di feed esterni";
$a->strings["Special Purpose"] = "Per finalità speciali";
$a->strings["Celebrity/Soapbox"] = "Pagina per fan";
$a->strings["Group Repository"] = "Repository di gruppo";
$a->strings["Other"] = "Altro";
$a->strings["Custom/Expert Mode"] = "Personalizzazione per esperti";
$a->strings["channel"] = "canale";
$a->strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s piace %3\$s di %2\$s";
$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s non piace %3\$s di %2\$s";
$a->strings["%1\$s is now connected with %2\$s"] = "%1\$s adesso è connesso con %2\$s";
$a->strings["%1\$s poked %2\$s"] = "%1\$s ha mandato un poke a %2\$s";
$a->strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s è %2\$s";
$a->strings["__ctx:title__ Likes"] = "Mi piace";
$a->strings["__ctx:title__ Dislikes"] = "Non mi piace";
$a->strings["__ctx:title__ Agree"] = "D'accordo";
$a->strings["__ctx:title__ Disagree"] = "Non d'accordo";
$a->strings["__ctx:title__ Abstain"] = "Astenuti";
$a->strings["__ctx:title__ Attending"] = "Partecipano";
$a->strings["__ctx:title__ Not attending"] = "Non partecipano";
$a->strings["__ctx:title__ Might attend"] = "Forse partecipano";
$a->strings["View %s's profile @ %s"] = "Vedi il profilo di %s @ %s";
$a->strings["Categories:"] = "Categorie:";
$a->strings["Filed under:"] = "Classificato come:";
$a->strings["View in context"] = "Vedi nel contesto";
$a->strings["remove"] = "rimuovi";
$a->strings["Delete Selected Items"] = "Elimina gli oggetti selezionati";
$a->strings["View Source"] = "Vedi il sorgente";
$a->strings["Follow Thread"] = "Segui la discussione";
$a->strings["View Status"] = "Guarda il messaggio di stato";
$a->strings["View Photos"] = "Guarda le foto";
$a->strings["Matrix Activity"] = "Attività nella tua rete";
$a->strings["Edit Contact"] = "Modifica il contatto";
$a->strings["Send PM"] = "Invia messaggio privato";
$a->strings["Poke"] = "Poke";
$a->strings["%s likes this."] = "Piace a %s.";
$a->strings["%s doesn't like this."] = "Non piace a %s.";
$a->strings["<span  %1\$s>%2\$d people</span> like this."] = array(
	0 => "",
	1 => "Piace a <span %1\$s>%2\$d persone</span>.",
);
$a->strings["<span  %1\$s>%2\$d people</span> don't like this."] = array(
	0 => "",
	1 => "Non piace a <span %1\$s>%2\$d persone</span>.",
);
$a->strings["and"] = "e";
$a->strings[", and %d other people"] = array(
	0 => "",
	1 => "e altre %d persone",
);
$a->strings["%s like this."] = "Piace a %s.";
$a->strings["%s don't like this."] = "Non piace a %s.";
$a->strings["Visible to <strong>everybody</strong>"] = "Visibile a <strong>tutti</strong>";
$a->strings["Please enter a link URL:"] = "Inserisci l'indirizzo del link:";
$a->strings["Please enter a video link/URL:"] = "Inserisci l'indirizzo del video:";
$a->strings["Please enter an audio link/URL:"] = "Inserisci l'indirizzo dell'audio:";
$a->strings["Tag term:"] = "Tag:";
$a->strings["Save to Folder:"] = "Salva nella cartella:";
$a->strings["Where are you right now?"] = "Dove sei ora?";
$a->strings["Expires YYYY-MM-DD HH:MM"] = "Scade il YYYY-MM-DD HH:MM";
$a->strings["Share"] = "Condividi";
$a->strings["Page link name"] = "Nome del link alla pagina";
$a->strings["Post as"] = "Pubblica come ";
$a->strings["Upload photo"] = "Carica foto";
$a->strings["upload photo"] = "carica foto";
$a->strings["Attach file"] = "Allega file";
$a->strings["attach file"] = "allega file";
$a->strings["Insert web link"] = "Inserisci un indirizzo web";
$a->strings["web link"] = "link web";
$a->strings["Insert video link"] = "Inserisci l'indirizzo di un video";
$a->strings["video link"] = "link video";
$a->strings["Insert audio link"] = "Inserisci l'indirizzo di un audio";
$a->strings["audio link"] = "link audio";
$a->strings["Set your location"] = "La tua località";
$a->strings["set location"] = "la tua località";
$a->strings["Toggle voting"] = "Abilita/disabilita il voto";
$a->strings["Clear browser location"] = "Rimuovi la località data dal browser";
$a->strings["clear location"] = "rimuovi la località";
$a->strings["Title (optional)"] = "Titolo (opzionale)";
$a->strings["Categories (optional, comma-separated list)"] = "Categorie (lista separata da virgole)";
$a->strings["Permission settings"] = "Impostazioni permessi";
$a->strings["permissions"] = "permessi";
$a->strings["Public post"] = "Articolo pubblico";
$a->strings["Example: bob@example.com, mary@example.com"] = "Per esempio: mario@esempio.com, simona@esempio.com";
$a->strings["Set expiration date"] = "Data di scadenza";
$a->strings["OK"] = "OK";
$a->strings["Cancel"] = "Annulla";
$a->strings["Discover"] = "Scopri";
$a->strings["Imported public streams"] = "Contenuti pubblici importati";
$a->strings["Commented Order"] = "Ultimi commenti";
$a->strings["Sort by Comment Date"] = "Per data del commento";
$a->strings["Posted Order"] = "Ultimi articoli";
$a->strings["Sort by Post Date"] = "Per data di creazione";
$a->strings["Posts that mention or involve you"] = "Articoli che ti riguardano o ti menzionano";
$a->strings["New"] = "Novità";
$a->strings["Activity Stream - by date"] = "Elenco attività - per data";
$a->strings["Starred"] = "Preferiti";
$a->strings["Favourite Posts"] = "Articoli preferiti";
$a->strings["Spam"] = "Spam";
$a->strings["Posts flagged as SPAM"] = "Articoli marcati come spam";
$a->strings["Channel"] = "Canale";
$a->strings["Status Messages and Posts"] = "Articoli e messaggi di stato";
$a->strings["About"] = "Informazioni";
$a->strings["Profile Details"] = "Dettagli del profilo";
$a->strings["Photo Albums"] = "Album foto";
$a->strings["Files and Storage"] = "Archivio file";
$a->strings["Chatrooms"] = "Area chat";
$a->strings["Saved Bookmarks"] = "Segnalibri salvati";
$a->strings["Manage Webpages"] = "Gestisci le pagine web";
$a->strings["__ctx:noun__ Attending"] = array(
	0 => "Partecipa",
	1 => "Partecipano",
);
$a->strings["__ctx:noun__ Not Attending"] = array(
	0 => "Non partecipa",
	1 => "Non partecipano",
);
$a->strings["__ctx:noun__ Undecided"] = array(
	0 => "Indeciso",
	1 => "Indecisi",
);
$a->strings["__ctx:noun__ Agree"] = array(
	0 => "D'accordo",
	1 => "D'accordo",
);
$a->strings["__ctx:noun__ Disagree"] = array(
	0 => "Non d'accordo",
	1 => "Non d'accordo",
);
$a->strings["__ctx:noun__ Abstain"] = array(
	0 => "Astenuto",
	1 => "Astenuti",
);
$a->strings["Image exceeds website size limit of %lu bytes"] = "L'immagine supera il limite massimo di %lu bytes";
$a->strings["Image file is empty."] = "Il file dell'immagine è vuoto.";
$a->strings["Unable to process image"] = "Impossibile elaborare l'immagine";
$a->strings["Photo storage failed."] = "Impossibile caricare la foto.";
$a->strings["Upload New Photos"] = "Carica nuove foto";
$a->strings["Invalid data packet"] = "Dati non validi";
$a->strings["Unable to verify channel signature"] = "Impossibile verificare la firma elettronica del canale";
$a->strings["Unable to verify site signature for %s"] = "Impossibile verificare la firma elettronica del sito %s";
$a->strings["Embedded content"] = "Contenuti incorporati";
$a->strings["Embedding disabled"] = "Disabilita la creazione di contenuti incorporati";
$a->strings["Logged out."] = "Uscita effettuata.";
$a->strings["Failed authentication"] = "Autenticazione fallita";
$a->strings["Login failed."] = "Accesso fallito.";
$a->strings["%d invitation available"] = array(
	0 => "%d invito disponibile",
	1 => "%d inviti disponibili",
);
$a->strings["Advanced"] = "Avanzate";
$a->strings["Find Channels"] = "Ricerca canali";
$a->strings["Enter name or interest"] = "Scrivi un nome o un interesse";
$a->strings["Connect/Follow"] = "Aggiungi";
$a->strings["Examples: Robert Morgenstein, Fishing"] = "Per esempio: Mario Rossi, Pesca";
$a->strings["Find"] = "Cerca";
$a->strings["Channel Suggestions"] = "Canali suggeriti";
$a->strings["Random Profile"] = "Profilo casuale";
$a->strings["Invite Friends"] = "Invita amici";
$a->strings["Advanced example: name=fred and country=iceland"] = "Per esempio: name=mario e country=italy";
$a->strings["%d connection in common"] = array(
	0 => "%d contatto in comune",
	1 => "%d contatti in comune",
);
$a->strings["show more"] = "mostra tutto";
$a->strings["Visible to your default audience"] = "Visibile secondo le impostazioni predefinite";
$a->strings["Show"] = "Mostra";
$a->strings["Don't show"] = "Non mostrare";
$a->strings["Permissions"] = "Permessi";
$a->strings["Item was not found."] = "Elemento non trovato.";
$a->strings["No source file."] = "Nessun file di origine.";
$a->strings["Cannot locate file to replace"] = "Il file da sostituire non è stato trovato";
$a->strings["Cannot locate file to revise/update"] = "Il file da aggiornare non è stato trovato";
$a->strings["File exceeds size limit of %d"] = "Il file supera la dimensione massima di %d";
$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Hai raggiunto il limite complessivo di %1$.0f Mbytes per gli allegati.";
$a->strings["File upload failed. Possible system limit or action terminated."] = "Caricamento file fallito, potrebbe essere stato interrotto o potrebbe aver superato lo spazio assegnato.";
$a->strings["Stored file could not be verified. Upload failed."] = "Il file non può essere verificato. Caricamento fallito.";
$a->strings["Path not available."] = "Percorso non disponibile.";
$a->strings["Empty pathname"] = "Il percorso del file è vuoto";
$a->strings["duplicate filename or path"] = "il file o il percorso del file è duplicato";
$a->strings["Path not found."] = "Percorso del file non trovato.";
$a->strings["mkdir failed."] = "mkdir fallito.";
$a->strings["database storage failed."] = "scrittura su database fallita.";
$a->strings["Unable to obtain identity information from database"] = "Impossibile ottenere le informazioni di identificazione dal database";
$a->strings["Empty name"] = "Nome vuoto";
$a->strings["Name too long"] = "Nome troppo lungo";
$a->strings["No account identifier"] = "Account senza identificativo";
$a->strings["Nickname is required."] = "Il nome dell'account è obbligatorio.";
$a->strings["Reserved nickname. Please choose another."] = "Nome utente riservato. Per favore scegline un altro.";
$a->strings["Nickname has unsupported characters or is already being used on this site."] = "Il nome dell'account è già in uso oppure ha dei caratteri non supportati.";
$a->strings["Unable to retrieve created identity"] = "Impossibile caricare l'identità creata";
$a->strings["Default Profile"] = "Profilo predefinito";
$a->strings["Requested channel is not available."] = "Il canale che cerchi non è disponibile.";
$a->strings["Requested profile is not available."] = "Il profilo richiesto non è disponibile.";
$a->strings["Change profile photo"] = "Cambia la foto del profilo";
$a->strings["Profiles"] = "Profili";
$a->strings["Manage/edit profiles"] = "Gestisci/modifica i profili";
$a->strings["Create New Profile"] = "Crea un nuovo profilo";
$a->strings["Profile Image"] = "Immagine del profilo";
$a->strings["visible to everybody"] = "visibile a tutti";
$a->strings["Edit visibility"] = "Cambia la visibilità";
$a->strings["Gender:"] = "Sesso:";
$a->strings["Status:"] = "Stato:";
$a->strings["Homepage:"] = "Home page:";
$a->strings["Online Now"] = "Online adesso";
$a->strings["g A l F d"] = "g A l d F";
$a->strings["F d"] = "d F";
$a->strings["[today]"] = "[oggi]";
$a->strings["Birthday Reminders"] = "Promemoria compleanni";
$a->strings["Birthdays this week:"] = "Compleanni questa settimana:";
$a->strings["[No description]"] = "[Nessuna descrizione]";
$a->strings["Event Reminders"] = "Promemoria";
$a->strings["Events this week:"] = "Eventi di questa settimana:";
$a->strings["Profile"] = "Profilo";
$a->strings["Full Name:"] = "Nome completo:";
$a->strings["Like this channel"] = "Mi piace questo canale";
$a->strings["j F, Y"] = "j F Y";
$a->strings["j F"] = "j F";
$a->strings["Birthday:"] = "Compleanno:";
$a->strings["Age:"] = "Età:";
$a->strings["for %1\$d %2\$s"] = "per %1\$d %2\$s";
$a->strings["Sexual Preference:"] = "Preferenze sessuali:";
$a->strings["Hometown:"] = "Città dove vivo:";
$a->strings["Tags:"] = "Tag:";
$a->strings["Political Views:"] = "Orientamento politico:";
$a->strings["Religion:"] = "Religione:";
$a->strings["About:"] = "Informazioni:";
$a->strings["Hobbies/Interests:"] = "Interessi e hobby:";
$a->strings["Likes:"] = "Mi piace:";
$a->strings["Dislikes:"] = "Non mi piace:";
$a->strings["Contact information and Social Networks:"] = "Contatti e social network:";
$a->strings["My other channels:"] = "I miei altri canali:";
$a->strings["Musical interests:"] = "Gusti musicali:";
$a->strings["Books, literature:"] = "Libri, letteratura:";
$a->strings["Television:"] = "Televisione:";
$a->strings["Film/dance/culture/entertainment:"] = "Film, danza, cultura, intrattenimento:";
$a->strings["Love/Romance:"] = "Amore:";
$a->strings["Work/employment:"] = "Lavoro:";
$a->strings["School/education:"] = "Scuola:";
$a->strings["Like this thing"] = "Mi piace questo Oggetto";
$a->strings["Male"] = "Maschio";
$a->strings["Female"] = "Femmina";
$a->strings["Currently Male"] = "Al momento maschio";
$a->strings["Currently Female"] = "Al momento femmina";
$a->strings["Mostly Male"] = "Prevalentemente maschio";
$a->strings["Mostly Female"] = "Prevalentemente femmina";
$a->strings["Transgender"] = "Transgender";
$a->strings["Intersex"] = "Intersex";
$a->strings["Transsexual"] = "Transessuale";
$a->strings["Hermaphrodite"] = "Ermafrodito";
$a->strings["Neuter"] = "Neutro";
$a->strings["Non-specific"] = "Non specificato";
$a->strings["Undecided"] = "Indeciso";
$a->strings["Males"] = "Maschi";
$a->strings["Females"] = "Femmine";
$a->strings["Gay"] = "Gay";
$a->strings["Lesbian"] = "Lesbica";
$a->strings["No Preference"] = "Senza preferenza";
$a->strings["Bisexual"] = "Bisessuale";
$a->strings["Autosexual"] = "Autosessuale";
$a->strings["Abstinent"] = "Astinente";
$a->strings["Virgin"] = "Vergine";
$a->strings["Deviant"] = "Deviato";
$a->strings["Fetish"] = "Feticista";
$a->strings["Oodles"] = "Un sacco";
$a->strings["Nonsexual"] = "Asessuato";
$a->strings["Single"] = "Single";
$a->strings["Lonely"] = "Da solo";
$a->strings["Available"] = "Disponibile";
$a->strings["Unavailable"] = "Non disponibile";
$a->strings["Has crush"] = "Ha una cotta";
$a->strings["Infatuated"] = "Infatuato/a";
$a->strings["Dating"] = "Disponibile a un incontro";
$a->strings["Unfaithful"] = "Infedele";
$a->strings["Sex Addict"] = "Sesso-dipendente";
$a->strings["Friends/Benefits"] = "Amici con qualcosa in più";
$a->strings["Casual"] = "Casual";
$a->strings["Engaged"] = "Impegnato";
$a->strings["Married"] = "Sposato/a";
$a->strings["Imaginarily married"] = "Con matrimonio immaginario";
$a->strings["Partners"] = "Partner";
$a->strings["Cohabiting"] = "Convivente";
$a->strings["Common law"] = "Matrimonio regolare";
$a->strings["Happy"] = "Felice";
$a->strings["Not looking"] = "Non in cerca";
$a->strings["Swinger"] = "Scambista";
$a->strings["Betrayed"] = "Tradito/a";
$a->strings["Separated"] = "Separato/a";
$a->strings["Unstable"] = "Instabile";
$a->strings["Divorced"] = "Divorziato/a";
$a->strings["Imaginarily divorced"] = "Sogna il divorzio";
$a->strings["Widowed"] = "Vedovo/a";
$a->strings["Uncertain"] = "Incerto/a";
$a->strings["It's complicated"] = "Relazione complicata";
$a->strings["Don't care"] = "Chi se ne frega";
$a->strings["Ask me"] = "Chiedimelo";
$a->strings["Site Admin"] = "Amministrazione sito";
$a->strings["Address Book"] = "Rubrica";
$a->strings["Mood"] = "Umore";
$a->strings["Probe"] = "Diagnostica";
$a->strings["Suggest"] = "Suggerisci";
$a->strings["Random Channel"] = "Canale casuale";
$a->strings["Invite"] = "Invita";
$a->strings["Features"] = "Funzionalità";
$a->strings["Language"] = "Lingua";
$a->strings["Post"] = "Articolo";
$a->strings["Profile Photo"] = "Foto del profilo";
$a->strings["Update"] = "Aggiorna";
$a->strings["Install"] = "Installa";
$a->strings["Purchase"] = "Acquista";
$a->strings["Missing room name"] = "Area chat senza nome";
$a->strings["Duplicate room name"] = "Il nome dell'area chat è duplicato";
$a->strings["Invalid room specifier."] = "Il nome dell'area chat non è valido.";
$a->strings["Room not found."] = "Area chat non trovata.";
$a->strings["Room is full"] = "L'area chat è al completo";
$a->strings["Some blurb about what to do when you're new here"] = "Qualche suggerimento per i nuovi utenti su cosa fare";
$a->strings["You have created %1$.0f of %2$.0f allowed channels."] = "Hai creato %1$.0f dei %2$.0f canali permessi.";
$a->strings["Create a new channel"] = "Crea un nuovo canale";
$a->strings["Current Channel"] = "Canale attuale";
$a->strings["Switch to one of your channels by selecting it."] = "Per passare a un altro tuo canale selezionalo.";
$a->strings["Default Channel"] = "Canale predefinito";
$a->strings["Make Default"] = "Rendi predefinito";
$a->strings["%d new messages"] = "%d nuovi messaggi";
$a->strings["%d new introductions"] = "%d nuove richieste di entrare in contatto";
$a->strings["Delegated Channels"] = "Canali delegati";
$a->strings["Name is required"] = "Il nome è obbligatorio";
$a->strings["Key and Secret are required"] = "Key e Secret sono richiesti";
$a->strings["Diaspora Policy Settings updated."] = "Le regole per Diaspora sono state aggiornate.";
$a->strings["Passwords do not match. Password unchanged."] = "Le password non corrispondono. Password non cambiata.";
$a->strings["Empty passwords are not allowed. Password unchanged."] = "Le password non possono essere vuote. Password non cambiata.";
$a->strings["Password changed."] = "Password cambiata.";
$a->strings["Password update failed. Please try again."] = "Modifica password fallita. Prova ancora.";
$a->strings["Not valid email."] = "Email non valida.";
$a->strings["Protected email address. Cannot change to that email."] = "È un indirizzo email riservato. Non puoi sceglierlo.";
$a->strings["System failure storing new email. Please try again."] = "Errore di sistema. Non è stato possibile memorizzare il tuo messaggio, riprova per favore.";
$a->strings["Settings updated."] = "Impostazioni aggiornate.";
$a->strings["No"] = "No";
$a->strings["Yes"] = "Si";
$a->strings["Add application"] = "Aggiungi una app";
$a->strings["Name of application"] = "Nome dell'applicazione";
$a->strings["Consumer Key"] = "Consumer Key";
$a->strings["Automatically generated - change if desired. Max length 20"] = "Generato automaticamente - è possibile cambiarlo. Lunghezza massima 20";
$a->strings["Consumer Secret"] = "Consumer Secret";
$a->strings["Redirect"] = "Redirect";
$a->strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI ridirezionato - lasciare bianco se non richiesto specificamente dall'applicazione.";
$a->strings["Icon url"] = "Url icona";
$a->strings["Optional"] = "Opzionale";
$a->strings["You can't edit this application."] = "Non puoi modificare questa applicazione.";
$a->strings["Connected Apps"] = "App connesse";
$a->strings["Client key starts with"] = "La client key inizia con";
$a->strings["No name"] = "Nessun nome";
$a->strings["Remove authorization"] = "Revoca l'autorizzazione";
$a->strings["No feature settings configured"] = "Non hai componenti aggiuntivi da personalizzare";
$a->strings["Feature/Addon Settings"] = "Impostazioni dei componenti aggiuntivi";
$a->strings["Settings for the built-in Diaspora emulator"] = "Interconnessione con Diaspora";
$a->strings["Allow any Diaspora member to comment on your public posts"] = "Permetti a tutti gli utenti di Diaspora di commentare i tuoi post pubblici";
$a->strings["Diaspora Policy Settings"] = "Regole per Diaspora";
$a->strings["Prevent your hashtags from being redirected to other sites"] = "Impedisci che i tuoi #tag puntino su altri siti";
$a->strings["Account Settings"] = "Il tuo account";
$a->strings["Enter New Password:"] = "Inserisci la nuova password:";
$a->strings["Confirm New Password:"] = "Conferma la nuova password:";
$a->strings["Leave password fields blank unless changing"] = "Lascia questi campi in bianco per non cambiare la password";
$a->strings["Email Address:"] = "Indirizzo email:";
$a->strings["Remove Account"] = "Elimina l'account";
$a->strings["Remove this account including all its channels"] = "Elimina questo account e tutti i suoi canali";
$a->strings["Off"] = "Off";
$a->strings["On"] = "On";
$a->strings["Additional Features"] = "Funzionalità opzionali";
$a->strings["Connector Settings"] = "Impostazioni del connettore";
$a->strings["No special theme for mobile devices"] = "Nessun tema per dispositivi mobili";
$a->strings["%s - (Experimental)"] = "%s - (Sperimentale)";
$a->strings["mobile"] = "mobile";
$a->strings["Display Settings"] = "Aspetto";
$a->strings["Display Theme:"] = "Tema per schermi medio grandi:";
$a->strings["Mobile Theme:"] = "Tema per dispositivi mobili:";
$a->strings["Enable user zoom on mobile devices"] = "Attiva la possibilità di fare zoom sui dispositivi mobili";
$a->strings["Update browser every xx seconds"] = "Aggiorna il browser ogni x secondi";
$a->strings["Minimum of 10 seconds, no maximum"] = "Minimo 10 secondi, nessun limite massimo";
$a->strings["Maximum number of conversations to load at any time:"] = "Massimo numero di conversazioni da mostrare ogni volta:";
$a->strings["Maximum of 100 items"] = "Massimo 100";
$a->strings["Show emoticons (smilies) as images"] = "Mostra le faccine (smilies) come immagini";
$a->strings["Link post titles to source"] = "Il link del titolo di un articolo porta al sito originale";
$a->strings["System Page Layout Editor - (advanced)"] = "Modifica i layout di sistema (avanzato)";
$a->strings["Use blog/list mode on channel page"] = "Mostra il canale nella modalità blog";
$a->strings["(comments displayed separately)"] = "(i commenti sono mostrati separatamente)";
$a->strings["Use blog/list mode on matrix page"] = "Mostra la tua rete in modalità blog";
$a->strings["Channel page max height of content (in pixels)"] = "Altezza massima dei contenuti del canale (in pixel)";
$a->strings["click to expand content exceeding this height"] = "dovrai cliccare per mostrare i contenuti di dimensioni maggiori";
$a->strings["Matrix page max height of content (in pixels)"] = "Altezza massima dei contenuti della tua rete (in pixel)";
$a->strings["Nobody except yourself"] = "Nessuno tranne te";
$a->strings["Only those you specifically allow"] = "Solo chi riceve il mio permesso";
$a->strings["Approved connections"] = "Contatti approvati";
$a->strings["Any connections"] = "Tutti i contatti";
$a->strings["Anybody on this website"] = "Chiunque su questo sito";
$a->strings["Anybody in this network"] = "Chiunque su Red";
$a->strings["Anybody authenticated"] = "Chiunque sia autenticato";
$a->strings["Anybody on the internet"] = "Chiunque su internet";
$a->strings["Publish your default profile in the network directory"] = "Mostra il mio profilo predefinito nell'elenco pubblico dei canali";
$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Vuoi essere suggerito come amico ai nuovi membri?";
$a->strings["or"] = "o";
$a->strings["Your channel address is"] = "L'indirizzo del tuo canale è";
$a->strings["Channel Settings"] = "Impostazioni del canale";
$a->strings["Basic Settings"] = "Impostazioni di base";
$a->strings["Your Timezone:"] = "Il tuo fuso orario:";
$a->strings["Default Post Location:"] = "Località predefinita:";
$a->strings["Geographical location to display on your posts"] = "Posizione geografica da mostrare sui tuoi post";
$a->strings["Use Browser Location:"] = "Usa la località rilevata dal browser:";
$a->strings["Adult Content"] = "Contenuto per adulti";
$a->strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Questo canale pubblica frequentemente contenuto per adulti. (I contenuti per adulti vanno taggati #NSFW - Not Safe For Work)";
$a->strings["Security and Privacy Settings"] = "Impostazioni di sicurezza e privacy";
$a->strings["Your permissions are already configured. Click to view/adjust"] = "I tuoi permessi sono già stati configurati. Clicca per vederli o modificarli";
$a->strings["Hide my online presence"] = "Nascondi la mia presenza online";
$a->strings["Prevents displaying in your profile that you are online"] = "Evita che sul tuo profilo compaia la tua presenza online";
$a->strings["Simple Privacy Settings:"] = "Impostazioni di privacy semplificate";
$a->strings["Very Public - <em>extremely permissive (should be used with caution)</em>"] = "Tutto pubblico - <em>estremamente permissivo (da usare con cautela)</em>";
$a->strings["Typical - <em>default public, privacy when desired (similar to social network permissions but with improved privacy)</em>"] = "Standard - <em>contenuti normalmente pubblici, ma anche privati se necessario (simile ai social network ma con privacy migliorata)</em>";
$a->strings["Private - <em>default private, never open or public</em>"] = "Privato - <em>contenuti normalmente privati, nulla è aperto o pubblico</em>";
$a->strings["Blocked - <em>default blocked to/from everybody</em>"] = "Bloccato - <em>bloccato in invio e ricezione dei contenuti</em>";
$a->strings["Allow others to tag your posts"] = "Permetti ad altri di taggare i tuoi articoli";
$a->strings["Often used by the community to retro-actively flag inappropriate content"] = "Usato spesso dalla comunità per marcare contenuti inappropriati già esistenti";
$a->strings["Advanced Privacy Settings"] = "Impostazioni di privacy avanzate";
$a->strings["Expire other channel content after this many days"] = "Giorni dopo cui mettere in scadenza gli altri contenuti del canale";
$a->strings["0 or blank prevents expiration"] = "Lascia vuoto oppure 0 per non impostare scadenze";
$a->strings["Maximum Friend Requests/Day:"] = "Numero massimo giornaliero di richieste di amicizia:";
$a->strings["May reduce spam activity"] = "Serve e ridurre lo spam";
$a->strings["Default Post Permissions"] = "Permessi predefiniti per gli articoli";
$a->strings["(click to open/close)"] = "(clicca per aprire/chiudere)";
$a->strings["Channel permissions category:"] = "Categorie di permessi dei canali:";
$a->strings["Maximum private messages per day from unknown people:"] = "Numero massimo giornaliero di messaggi privati da utenti sconosciuti:";
$a->strings["Useful to reduce spamming"] = "Serve e ridurre lo spam";
$a->strings["Notification Settings"] = "Impostazioni di notifica";
$a->strings["By default post a status message when:"] = "Pubblica un messaggio di stato quando:";
$a->strings["accepting a friend request"] = "accetto una nuova amicizia";
$a->strings["joining a forum/community"] = "entro a far parte di un forum";
$a->strings["making an <em>interesting</em> profile change"] = "faccio un cambiamento <em>interessante</em> al mio profilo";
$a->strings["Send a notification email when:"] = "Invia una email di notifica quando:";
$a->strings["You receive a connection request"] = "Ricevi una richiesta di entrare in contatto";
$a->strings["Your connections are confirmed"] = "I tuoi contatti sono confermati";
$a->strings["Someone writes on your profile wall"] = "Qualcuno scrive sulla tua bacheca";
$a->strings["Someone writes a followup comment"] = "Qualcuno scrive un commento a un tuo articolo";
$a->strings["You receive a private message"] = "Ricevi un messaggio privato";
$a->strings["You receive a friend suggestion"] = "Ti viene suggerito un amico";
$a->strings["You are tagged in a post"] = "Sei taggato in un articolo";
$a->strings["You are poked/prodded/etc. in a post"] = "Ricevi un poke in un articolo";
$a->strings["Show visual notifications including:"] = "Mostra queste notifiche a schermo:";
$a->strings["Unseen matrix activity"] = "Nuove attività nella rete";
$a->strings["Unseen channel activity"] = "Novità nei canali";
$a->strings["Unseen private messages"] = "Nuovi messaggi privati";
$a->strings["Recommended"] = "Consigliato";
$a->strings["Upcoming events"] = "Prossimi eventi";
$a->strings["Events today"] = "Eventi di oggi";
$a->strings["Upcoming birthdays"] = "Prossimi compleanni";
$a->strings["Not available in all themes"] = "Non disponibile in tutti i temi";
$a->strings["System (personal) notifications"] = "Notifiche personali dal sistema";
$a->strings["System info messages"] = "Notifiche di sistema";
$a->strings["System critical alerts"] = "Avvisi critici di sistema";
$a->strings["New connections"] = "Nuovi contatti";
$a->strings["System Registrations"] = "Registrazioni";
$a->strings["Also show new wall posts, private messages and connections under Notices"] = "Mostra negli avvisi anche i nuovi articoli, i messaggi privati e i nuovi contatti";
$a->strings["Notify me of events this many days in advance"] = "Giorni di anticipo per notificare gli eventi";
$a->strings["Must be greater than 0"] = "Maggiore di 0";
$a->strings["Advanced Account/Page Type Settings"] = "Impostazioni avanzate";
$a->strings["Change the behaviour of this account for special situations"] = "Cambia il funzionamento di questo account per necessità particolari";
$a->strings["Please enable expert mode (in <a href=\"settings/features\">Settings > Additional features</a>) to adjust!"] = "Abilita la modalità esperto per fare cambiamenti! (in <a href=\"settings/features\">Impostazioni > Funzionalità opzionali</a>)";
$a->strings["Miscellaneous Settings"] = "Impostazioni varie";
$a->strings["Personal menu to display in your channel pages"] = "Menu personale da mostrare sulle pagine del tuo canale";
$a->strings["Remove Channel"] = "Elimina questo canale";
$a->strings["Remove this channel."] = "Elimina questo canale.";
$a->strings["Xchan Lookup"] = "Ricerca canale";
$a->strings["Lookup xchan beginning with (or webbie): "] = "Cerca un canale (o un webbie) che inizia per:";
$a->strings["Not found."] = "Non trovato.";
$a->strings["Authorize application connection"] = "Autorizza la app";
$a->strings["Return to your app and insert this Securty Code:"] = "Torna alla app e inserisci questo codice di sicurezza:";
$a->strings["Please login to continue."] = "Accedi al sito per continuare.";
$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vuoi autorizzare questa app ad accedere ai messaggi e ai contatti o creare nuovi messaggi per te?";
$a->strings["Channel added."] = "Canale aggiunto.";
$a->strings["Tag removed"] = "Tag rimosso";
$a->strings["Remove Item Tag"] = "Rimuovi il tag";
$a->strings["Select a tag to remove: "] = "Seleziona un tag da rimuovere: ";
$a->strings["Remove"] = "Rimuovi";
$a->strings["Continue"] = "Continua";
$a->strings["Premium Channel Setup"] = "Canale premium - installazione";
$a->strings["Enable premium channel connection restrictions"] = "Abilita le restrizioni del canale premium";
$a->strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Scrivi le condizioni d'uso e le restrizioni di questo canale, come per esempio le linee guida, il sistema di pagamento, ecc.";
$a->strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Prima di connetterti a questo canale è necessario che tu accetti le seguenti condizioni:";
$a->strings["Potential connections will then see the following text before proceeding:"] = "Il testo seguente comparirà a chi vorrà seguire il canale:";
$a->strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Continuando dichiaro di aver seguito tutte le indicazioni e le istruzioni fornite in questa pagina.";
$a->strings["(No specific instructions have been provided by the channel owner.)"] = "(Il gestore del canale non ha fornito istruzioni specifiche)";
$a->strings["Restricted or Premium Channel"] = "Canale premium - con restrizioni";
$a->strings["Thing updated"] = "L'Oggetto è stato aggiornato";
$a->strings["Object store: failed"] = "Impossibile memorizzare l'oggetto.";
$a->strings["Thing added"] = "L'Oggetto è stato aggiunto";
$a->strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s";
$a->strings["Show Thing"] = "Mostra l'Oggetto";
$a->strings["item not found."] = "non trovato.";
$a->strings["Edit Thing"] = "Modifica l'Oggetto";
$a->strings["Select a profile"] = "Scegli un profilo";
$a->strings["Post an activity"] = "Pubblica un'attività";
$a->strings["Only sends to viewers of the applicable profile"] = "Invia solo a chi segue il relativo canale";
$a->strings["Name of thing e.g. something"] = "Nome dell'Oggetto";
$a->strings["URL of thing (optional)"] = "Indirizzo web dell'Oggetto (opzionale)";
$a->strings["URL for photo of thing (optional)"] = "Indirizzo di un'immagine dell'Oggetto (facoltativo)";
$a->strings["Add Thing to your Profile"] = "Aggiungi l'Oggetto al tuo profilo";
$a->strings["Item not available."] = "Elemento non disponibile.";
$a->strings["Fetching URL returns error: %1\$s"] = "La chiamata all'URL restituisce questo errore: %1\$s";
$a->strings["Hubzilla - &quot;The Network&quot;"] = "Hubzilla - &quot;La tua rete&quot;";
$a->strings["Welcome to %s"] = "%s ti dà il benvenuto";
$a->strings["Image uploaded but image cropping failed."] = "L'immagine è stata caricata, ma il non è stato possibile ritagliarla.";
$a->strings["Image resize failed."] = "Il ridimensionamento dell'immagine è fallito.";
$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Ricarica la pagina con shift+F5 o cancella la cache del browser se la nuova foto non viene mostrata immediatamente.";
$a->strings["Image exceeds size limit of %d"] = "La dimensione dell'immagine supera il limite di %d";
$a->strings["Unable to process image."] = "Impossibile elaborare l'immagine.";
$a->strings["Photo not available."] = "Foto non disponibile.";
$a->strings["Upload File:"] = "Carica un file:";
$a->strings["Select a profile:"] = "Seleziona un profilo:";
$a->strings["Upload Profile Photo"] = "Carica la foto del profilo";
$a->strings["skip this step"] = "salta questo passaggio";
$a->strings["select a photo from your photo albums"] = "seleziona una foto dai tuoi album";
$a->strings["Crop Image"] = "Ritaglia immagine";
$a->strings["Please adjust the image cropping for optimum viewing."] = "Ritaglia l'immagine per migliorarne la visualizzazione.";
$a->strings["Done Editing"] = "Modifica terminata";
$a->strings["Image uploaded successfully."] = "Immagine caricata con successo.";
$a->strings["Image upload failed."] = "Il caricamento dell'immagine è fallito.";
$a->strings["Image size reduction [%s] failed."] = "Il ridimensionamento del'immagine [%s] è fallito.";
$a->strings["Invalid item."] = "Elemento non valido.";
$a->strings["Channel not found."] = "Canale non trovato.";
$a->strings["Page not found."] = "Pagina non trovata.";
$a->strings["Like/Dislike"] = "Mi piace/Non mi piace";
$a->strings["This action is restricted to members."] = "Questa funzionalità è riservata agli iscritti.";
$a->strings["Please <a href=\"rmagic\">login with your Hubzilla ID</a> or <a href=\"register\">register as a new Redmatrix.member</a> to continue."] = "Per favore <a href=\"rmagic\">accedi con il tuo identificativo Hubzilla</a> o <a href=\"register\">registrati su Hubzilla</a> per continuare.";
$a->strings["Invalid request."] = "Richiesta non valida.";
$a->strings["thing"] = "Oggetto";
$a->strings["Channel unavailable."] = "Canale non trovato.";
$a->strings["Previous action reversed."] = "Il comando precedente è stato annullato.";
$a->strings["%1\$s agrees with %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s è d'accordo";
$a->strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s non è d'accordo";
$a->strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s non ha preso una decisione";
$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s partecipa";
$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s non partecipa";
$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s forse partecipa";
$a->strings["Action completed."] = "Comando completato.";
$a->strings["Thank you."] = "Grazie.";
$a->strings["Event can not end before it has started."] = "Un evento non può terminare prima del suo inizio.";
$a->strings["Unable to generate preview."] = "Impossibile creare un'anteprima.";
$a->strings["Event title and start time are required."] = "Sono necessari il titolo e l'ora d'inizio dell'evento.";
$a->strings["Event not found."] = "Evento non trovato.";
$a->strings["l, F j"] = "l j F";
$a->strings["Edit event"] = "Modifica l'evento";
$a->strings["Delete event"] = "Elimina l'evento";
$a->strings["Create New Event"] = "Crea un nuovo evento";
$a->strings["Previous"] = "Precendente";
$a->strings["Next"] = "Successivo";
$a->strings["Export"] = "Esporta";
$a->strings["Event removed"] = "Evento eliminato";
$a->strings["Failed to remove event"] = "Impossibile eliminare l'evento";
$a->strings["Event details"] = "Dettagli evento";
$a->strings["Starting date and Title are required."] = "Titolo e data d'inizio sono obbligatori.";
$a->strings["Categories (comma-separated list)"] = "Categorie (separate da virgola)";
$a->strings["Event Starts:"] = "Inizio:";
$a->strings["Finish date/time is not known or not relevant"] = "La data/ora di fine non è rilevante";
$a->strings["Event Finishes:"] = "Fine:";
$a->strings["Adjust for viewer timezone"] = "Adatta al fuso orario di chi legge";
$a->strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Importante per eventi che avvengono in base all'orario di un luogo particolare.";
$a->strings["Description:"] = "Descrizione:";
$a->strings["Title:"] = "Titolo:";
$a->strings["Share this event"] = "Condividi questo evento";
$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s sta seguendo %3\$s di %2\$s";
$a->strings["Public Sites"] = "Siti pubblici";
$a->strings["The listed sites allow public registration into the Hubzilla. All sites in the matrix are interlinked so membership on any of them conveys membership in the matrix as a whole. Some sites may require subscription or provide tiered service plans. The provider links <strong>may</strong> provide additional details."] = "Gli indirizzi elencati permettono la registrazione su Hubzilla. Tutti i siti di questa rete sono interconnessi, quindi essere registrati su uno è come essere registrati ovunque. Alcuni potrebbero richiedere un'iscrizione a pagamento o prevedere diverse tipologie di abbonamento. Eventualmente potrai trovare maggiori informazioni visitando ciascun sito.";
$a->strings["Rate this hub"] = "Valuta questo hub";
$a->strings["Site URL"] = "URL del sito";
$a->strings["Access Type"] = "Tipo di accesso";
$a->strings["Registration Policy"] = "Politica di registrazione";
$a->strings["Location"] = "Posizione geografica";
$a->strings["View hub ratings"] = "Vedi le valutazioni del hub";
$a->strings["Rate"] = "Valuta";
$a->strings["View ratings"] = "Vedi le valutazioni";
$a->strings["Edit post"] = "Modifica articolo";
$a->strings["Hubzilla channel"] = "Canale Hubzilla";
$a->strings["Collection created."] = "L'insieme di canali è stato creato.";
$a->strings["Could not create collection."] = "Impossibile creare l'insieme.";
$a->strings["Collection updated."] = "Insieme aggiornato.";
$a->strings["Create a collection of channels."] = "Crea un insieme di canali.";
$a->strings["Collection Name: "] = "Nome dell'insieme:";
$a->strings["Members are visible to other channels"] = "I membri potranno vedere gli altri canali dell'insieme";
$a->strings["Collection removed."] = "Insieme rimosso.";
$a->strings["Unable to remove collection."] = "Impossibile rimuovere l'insieme.";
$a->strings["Collection Editor"] = "Modifica l'insieme";
$a->strings["Members"] = "Membri";
$a->strings["All Connected Channels"] = "Tutti i canali connessi";
$a->strings["Click on a channel to add or remove."] = "Clicca su un canale per aggiungerlo o rimuoverlo.";
$a->strings["Version %s"] = "Versione %s";
$a->strings["Installed plugins/addons/apps:"] = "App e componenti installati:";
$a->strings["No installed plugins/addons/apps"] = "Nessuna app o componente installato";
$a->strings["Red"] = "Hubzilla";
$a->strings["This is a hub of hubzilla - a global cooperative network of decentralized privacy enhanced websites."] = "Questo è un hub di Hubzilla - una rete cooperativa e decentralizzata di siti ad elevata privacy. ";
$a->strings["Tag: "] = "Tag: ";
$a->strings["Last background fetch: "] = "Ultima acquisizione:";
$a->strings["Running at web location"] = "In esecuzione sull'indirizzo web";
$a->strings["Please visit <a href=\"https://redmatrix.me\">redmatrix.me</a> to learn more about the Hubzilla."] = "Visita <a href=\"https://redmatrix.me\">Redmatrix.me</a> per scoprire cosa è Hubzilla.";
$a->strings["Bug reports and issues: please visit"] = "Per segnalare bug e problemi: visita";
$a->strings["Suggestions, praise, etc. - please email \"hubzilla\" at librelist - dot com"] = "Per consigli, ringraziamenti, ecc. - scrivi a \"hubzilla\" at librelist - dot com";
$a->strings["Site Administrators"] = "Amministratori del sito";
$a->strings["Help:"] = "Guida:";
$a->strings["Not Found"] = "Non disponibile";
$a->strings["Hubzilla Server - Setup"] = "Hubzilla Server - Installazione";
$a->strings["Could not connect to database."] = " Impossibile connettersi al database.";
$a->strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Non è possibile raggiungere l'indirizzo del sito specificato. Potrebbe essere un problema di SSL o DNS.";
$a->strings["Could not create table."] = "Impossibile creare le tabelle.";
$a->strings["Your site database has been installed."] = "Il database del sito è stato installato.";
$a->strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Potresti dover importare il file 'install/schema_xxx.sql' manualmente usando un client per collegarti al db.";
$a->strings["Please see the file \"install/INSTALL.txt\"."] = "Leggi il file 'install/INSTALL.txt'.";
$a->strings["System check"] = "Verifica del sistema";
$a->strings["Check again"] = "Verifica di nuovo";
$a->strings["Database connection"] = "Connessione al database";
$a->strings["In order to install Hubzilla we need to know how to connect to your database."] = "Per installare Hubzilla è necessario conoscere i parametri di connessione al database.";
$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni.";
$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Il database deve già esistere. Se non esiste, crealo prima di continuare.";
$a->strings["Database Server Name"] = "Server del database";
$a->strings["Default is localhost"] = "'localhost' è il predefinito";
$a->strings["Database Port"] = "Port del database";
$a->strings["Communication port number - use 0 for default"] = "Scrivi 0 per usare il valore standard";
$a->strings["Database Login Name"] = "Utente database";
$a->strings["Database Login Password"] = "Password utente database";
$a->strings["Database Name"] = "Nome database";
$a->strings["Database Type"] = "Tipo database";
$a->strings["Site administrator email address"] = "Indirizzo email dell'amministratore del sito";
$a->strings["Your account email address must match this in order to use the web admin panel."] = "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione web.";
$a->strings["Website URL"] = "URL completo del sito";
$a->strings["Please use SSL (https) URL if available."] = "Se disponibile, usa l'indirizzo SSL (https).";
$a->strings["Please select a default timezone for your website"] = "Seleziona il fuso orario predefinito per il tuo sito web";
$a->strings["Site settings"] = "Impostazioni del sito";
$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Non è possibile trovare la versione di PHP da riga di comando nel PATH del server web";
$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."] = "Se non hai installata la versione di PHP da riga di comando non potrai attivare il polling in background tramite cron.";
$a->strings["PHP executable path"] = "Path del comando PHP";
$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Inserisci il percorso dell'eseguibile PHP. Puoi lasciarlo vuoto per continuare l'installazione.";
$a->strings["Command line PHP"] = "PHP da riga di comando";
$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\".";
$a->strings["This is required for message delivery to work."] = "E' necessario perché funzioni la consegna dei messaggi.";
$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Errore: la funzione \"openssl_pkey_new\" su questo sistema non è in grado di generare le chiavi di criptazione";
$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Se stai usando un server windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\".";
$a->strings["Generate encryption keys"] = "Genera chiavi di criptazione";
$a->strings["libCurl PHP module"] = "modulo PHP libCurl";
$a->strings["GD graphics PHP module"] = "modulo PHP GD graphics";
$a->strings["OpenSSL PHP module"] = "modulo PHP OpenSSL";
$a->strings["mysqli or postgres PHP module"] = "modulo PHP per mysqli oppure prostgres";
$a->strings["mb_string PHP module"] = "modulo PHP mb_string";
$a->strings["mcrypt PHP module"] = "modulo PHP mcrypt";
$a->strings["Apache mod_rewrite module"] = "modulo Apache mod_rewrite";
$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Errore: il modulo mod-rewrite di Apache è richiesto ma non installato";
$a->strings["proc_open"] = "proc_open";
$a->strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Errore: proc_open è richiesto ma non è installato o è disabilitato in php.ini";
$a->strings["Error: libCURL PHP module required but not installed."] = "Errore: il modulo libCURL di PHP è richiesto ma non installato.";
$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto ma non installato.";
$a->strings["Error: openssl PHP module required but not installed."] = "Errore: il modulo openssl di PHP è richiesto ma non installato.";
$a->strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Errore: il modulo PHP per mysqli o postgres è richiesto ma non installato";
$a->strings["Error: mb_string PHP module required but not installed."] = "Errore: il modulo PHP mb_string è richiesto ma non installato.";
$a->strings["Error: mcrypt PHP module required but not installed."] = "Errore: il modulo PHP mcrypt è richiesto ma non installato.";
$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "L'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella di Hubzilla ma non è in grado di farlo.";
$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Spesso ciò è dovuto ai permessi di accesso al disco: il web server potrebbe non aver diritto di scrivere il file nella cartella, anche se tu puoi.";
$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = "Alla fine di questa procedura ti sarà dato il testo da salvare in un file di nome .htconfig.php dentro la cartella principale di Hubzilla.";
$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "Puoi anche saltare questa procedura ed effettuare un'installazione manuale. Guarda il file 'install/INSTALL.txt' per le istruzioni.";
$a->strings[".htconfig.php is writable"] = ".htconfig.php è scrivibile";
$a->strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Red usa il sistema Smarty3 per costruire i suoi template grafici. Smarty3 è molto veloce perché compila i template delle pagine direttamente in PHP.";
$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory %s under the Red top level folder."] = "Per poter memorizzare i template compilati, il web server deve avere accesso in scrittura a %s sotto la cartella di installazione di Hubzilla.";
$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Assicurati che il tuo web server sia in esecuzione da parte di un utente che ha diritto di scrittura su quella cartella  (ad esempio www-data).";
$a->strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "Nota bene: come precauzione, dovresti dare i diritti di scrittura solamente su %s e non sui file template (.tpl) che contiene.";
$a->strings["%s is writable"] = "%s è scrivibile";
$a->strings["Red uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"] = "Hubzilla salva i file caricati nella cartella \"store\" sul server. Il server deve avere i diritti di scrittura su quella cartella che si trova dentro l'installazione di Hubzilla";
$a->strings["store is writable"] = "l'archivio è scrivibile";
$a->strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "Il certificato SSL non può essere validato. Correggi l'errore o disabilita l'accesso https al sito.";
$a->strings["If you have https access to your website or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"] = "Se abiliti https per il tuo sito o permetti connessioni TCP su port 443 (quella di https), DEVI usare un certificato riconosciuto dai browser internet. NON DEVI usare certificati generati da te!";
$a->strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Questa restrizione è necessaria perché i tuoi post pubblici potrebbero contenere riferimenti a immagini sul tuo server.";
$a->strings["If your certificate is not recognized, members of other sites (who may themselves have valid certificates) will get a warning message on their own site complaining about security issues."] = "Se il tuo certificato non è riconosciuto, gli utenti che ti seguono da altri siti (che avranno certificati validi) riceveranno gravi avvisi di sicurezza dal browser.";
$a->strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Ciò può creare seri problemi di usabilità (non solo sul tuo sito), quindi dobbiamo insistere su questo punto.";
$a->strings["Providers are available that issue free certificates which are browser-valid."] = "Eventualmente, considera che esistono provider che rilasciano certificati gratuiti riconosciuti dai browser.";
$a->strings["SSL certificate validation"] = "Validazione del certificato SSL";
$a->strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "In .htaccess la funzionalità url rewrite non funziona. Controlla la configurazione del server. Test:";
$a->strings["Url rewrite is working"] = "Url rewrite funziona correttamente";
$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Il file di configurazione del database \".htconfig.php\" non puo' essere scritto. Usa il testo qui di seguito per creare questo file di configurazione nella cartella principale del tuo sito.";
$a->strings["Errors encountered creating database tables."] = "La creazione delle tabelle del database ha generato errori.";
$a->strings["<h1>What next</h1>"] = "<h1>I prossimi passi</h1>";
$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Devi creare [manualmente] la pianificazione del polling.";
$a->strings["No channel."] = "Nessun canale.";
$a->strings["Common connections"] = "Contatti in comune";
$a->strings["No connections in common."] = "Nessun contatto in comune.";
$a->strings["This site is not a directory server"] = "Questo sito non è un server di elenchi pubblici";
$a->strings["Could not access contact record."] = "Non è possibile accedere alle informazioni sul contatto.";
$a->strings["Could not locate selected profile."] = "Non riesco a trovare il profilo selezionato.";
$a->strings["Connection updated."] = "Contatto aggiornato.";
$a->strings["Failed to update connection record."] = "Impossibile aggiornare le informazioni del contatto.";
$a->strings["Blocked"] = "Bloccati";
$a->strings["Ignored"] = "Ignorati";
$a->strings["Hidden"] = "Nascosti";
$a->strings["Archived"] = "Archiviati";
$a->strings["Suggest new connections"] = "Suggerisci nuovi contatti";
$a->strings["New Connections"] = "Nuovi contatti";
$a->strings["Show pending (new) connections"] = "Richieste di contatto in attesa";
$a->strings["All Connections"] = "Tutti i contatti";
$a->strings["Show all connections"] = "Mostra tutti i contatti";
$a->strings["Unblocked"] = "Non bloccati";
$a->strings["Only show unblocked connections"] = "Mostra solo i contatti non bloccati";
$a->strings["Only show blocked connections"] = "Mostra solo i contatti bloccati";
$a->strings["Only show ignored connections"] = "Mostra solo i contatti ignorati";
$a->strings["Only show archived connections"] = "Mostra solo i contatti archiviati";
$a->strings["Only show hidden connections"] = "Mostra solo i contatti nascosti";
$a->strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]";
$a->strings["Edit connection"] = "Modifica il contatto";
$a->strings["Search your connections"] = "Cerca tra i contatti";
$a->strings["Finding: "] = "Ricerca: ";
$a->strings["webpage"] = "pagina web";
$a->strings["block"] = "riquadro";
$a->strings["layout"] = "layout";
$a->strings["%s element installed"] = "%s elemento installato";
$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha taggato %3\$s di %2\$s con %4\$s";
$a->strings["Hubzilla - Guests: Username: {your email address}, Password: +++"] = "Accesso a Hubzilla. {Inserisci l'email con cui sei registrato e la password.}";
$a->strings["Page owner information could not be retrieved."] = "Impossibile ottenere informazioni sul proprietario della pagina.";
$a->strings["Album not found."] = "Album non trovato.";
$a->strings["Delete Album"] = "Elimina album";
$a->strings["Delete Photo"] = "Elimina foto";
$a->strings["Public access denied."] = "Accesso pubblico negato.";
$a->strings["No photos selected"] = "Nessuna foto selezionata";
$a->strings["Access to this item is restricted."] = "Questo elemento non è visibile a tutti.";
$a->strings["%1$.2f MB of %2$.2f MB photo storage used."] = "Hai usato %1$.2f Mb dei %2$.2f Mb di spazio disponibile.";
$a->strings["%1$.2f MB photo storage used."] = "Hai usato %1$.2f Mb del tuo spazio disponibile.";
$a->strings["Upload Photos"] = "Carica foto";
$a->strings["Enter a new album name"] = "Inserisci il nome di un nuovo album";
$a->strings["or select an existing one (doubleclick)"] = "o seleziona uno esistente (doppio click)";
$a->strings["Create a status post for this upload"] = "Pubblica l'oggetto caricato sulla bacheca";
$a->strings["Album name could not be decoded"] = "Non è stato possibile leggere il nome dell'album";
$a->strings["Contact Photos"] = "Foto dei contatti";
$a->strings["Show Newest First"] = "Prima i più recenti";
$a->strings["Show Oldest First"] = "Prima i più vecchi";
$a->strings["View Photo"] = "Guarda la foto";
$a->strings["Edit Album"] = "Modifica album";
$a->strings["Permission denied. Access to this item may be restricted."] = "Permesso negato. L'accesso a questo elemento può essere stato limitato.";
$a->strings["Photo not available"] = "Foto non disponibile";
$a->strings["Use as profile photo"] = "Usa come foto del profilo";
$a->strings["Private Photo"] = "Foto privata";
$a->strings["View Full Size"] = "Vedi nelle dimensioni originali";
$a->strings["Edit photo"] = "Modifica la foto";
$a->strings["Rotate CW (right)"] = "Ruota (senso orario)";
$a->strings["Rotate CCW (left)"] = "Ruota (senso antiorario)";
$a->strings["Caption"] = "Titolo";
$a->strings["Add a Tag"] = "Aggiungi tag";
$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Esempio: @bob, @Barbara_Jensen, @jim@example.com";
$a->strings["Flag as adult in album view"] = "Marca come 'per adulti'";
$a->strings["In This Photo:"] = "In questa foto:";
$a->strings["Map"] = "Mappa";
$a->strings["View Album"] = "Guarda l'album";
$a->strings["Recent Photos"] = "Foto recenti";
$a->strings["Profile Match"] = "Profili corrispondenti";
$a->strings["No keywords to match. Please add keywords to your default profile."] = "Non hai scritto parole chiave. Aggiungi parole chiave al tuo profilo predefinito per comparire nelle ricerche.";
$a->strings["is interested in:"] = "interessi personali:";
$a->strings["No matches"] = "Nessun risultato";
$a->strings["Away"] = "Assente";
$a->strings["Online"] = "Online";
$a->strings["Select a bookmark folder"] = "Scegli una cartella di segnalibri";
$a->strings["Save Bookmark"] = "Salva segnalibro";
$a->strings["URL of bookmark"] = "URL del segnalibro";
$a->strings["Description"] = "Descrizione";
$a->strings["Or enter new bookmark folder name"] = "O inserisci il nome di una nuova cartella di segnalibri";
$a->strings["No more system notifications."] = "Non ci sono nuove notifiche di sistema.";
$a->strings["System Notifications"] = "Notifiche di sistema";
$a->strings["network"] = "rete";
$a->strings["RSS"] = "RSS";
$a->strings["Layout updated."] = "Layout aggiornato.";
$a->strings["Edit System Page Description"] = "Modifica i layout di sistema";
$a->strings["Layout not found."] = "Layout non trovato.";
$a->strings["Module Name:"] = "Nome del modulo:";
$a->strings["Layout Help"] = "Guida al layout";
$a->strings["- select -"] = "- scegli -";
$a->strings["Your service plan only allows %d channels."] = "Il tuo account permette di creare al massimo %d canali.";
$a->strings["Nothing to import."] = "Non c'è niente da importare.";
$a->strings["Unable to download data from old server"] = "Impossibile importare i dati dal vecchio server";
$a->strings["Imported file is empty."] = "Il file da importare è vuoto.";
$a->strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Non posso creare un canale con un identificativo che già esiste su questo sistema. L'importazione è fallita.";
$a->strings["Unable to create a unique channel address. Import failed."] = "Impossibile creare un indirizzo univoco per il canale. L'import è fallito.";
$a->strings["Channel clone failed. Import failed."] = "Impossibile clonare il canale. L'importazione è fallita.";
$a->strings["Cloned channel not found. Import failed."] = "Impossibile trovare il canale clonato. L'importazione è fallita.";
$a->strings["Import completed."] = "L'importazione è terminata con successo!";
$a->strings["You must be logged in to use this feature."] = "Per questa funzionalità devi aver effettuato l'accesso.";
$a->strings["Import Channel"] = "Importa un canale";
$a->strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file. Only identity and connections/relationships will be imported. Importation of content is not yet available."] = "Usa questo modulo per importare un tuo canale da un altro server/hub. Puoi scaricare i dati identificativi del canale direttamente dall'altro server/hub oppure tramite un file che hai esportato. Saranno importati solamente l'identità e i contatti. L'importazione dei contenuti non è ancora disponibile.";
$a->strings["File to Upload"] = "File da caricare";
$a->strings["Or provide the old server/hub details"] = "Oppure fornisci i dettagli del vecchio server/hub";
$a->strings["Your old identity address (xyz@example.com)"] = "Il tuo vecchio identificativo (per esempio pippo@esempio.com)";
$a->strings["Your old login email address"] = "L'email che usavi per accedere sul vecchio server";
$a->strings["Your old login password"] = "La password per il vecchio server";
$a->strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Scegli se vuoi spostare il tuo indirizzo primario su questo server, oppure se preferisci che quello vecchio resti tale. Potrai pubblicare da entrambi i server, ma solamente uno sarà indicato come posizione in cui risiedono i tuoi file, foto, ecc.";
$a->strings["Make this hub my primary location"] = "Rendi questo server il mio indirizzo primario";
$a->strings["Import existing posts if possible"] = "Importazione dei post esistenti, se possibile";
$a->strings["Item not found"] = "Elemento non trovato";
$a->strings["Edit Layout"] = "Modifica il layout";
$a->strings["Delete layout?"] = "Vuoi eliminare questo layout?";
$a->strings["Insert YouTube video"] = "Inserisci video da YouTube";
$a->strings["Insert Vorbis [.ogg] video"] = "Inserisci video Vorbis [.ogg]";
$a->strings["Insert Vorbis [.ogg] audio"] = "Inserisci audio Vorbis [.ogg]";
$a->strings["Delete Layout"] = "Elimina il layout";
$a->strings["You must be logged in to see this page."] = "Devi aver effettuato l'accesso per vedere questa pagina.";
$a->strings["Room not found"] = "Area chat non trovata";
$a->strings["Leave Room"] = "Lascia l'area chat";
$a->strings["Delete This Room"] = "Elimina questa area chat";
$a->strings["I am away right now"] = "Non sono presente";
$a->strings["I am online"] = "Sono online";
$a->strings["Bookmark this room"] = "Aggiungi l'area chat ai segnalibri";
$a->strings["New Chatroom"] = "Nuova area chat";
$a->strings["Chatroom Name"] = "Nome dell'area chat";
$a->strings["%1\$s's Chatrooms"] = "Le aree chat di %1\$s";
$a->strings["Delete webpage?"] = "Vuoi eliminare questa pagina web?";
$a->strings["Page link title"] = "Link del titolo";
$a->strings["Edit Webpage"] = "Modifica la pagina web";
$a->strings["This directory server requires an access token"] = "Questo server di elenchi pubblici necessita di un token di autenticazione";
$a->strings["No valid account found."] = "Nessun account valido trovato.";
$a->strings["Password reset request issued. Check your email."] = "La richiesta per reimpostare la password è stata inviata. Controlla la tua email.";
$a->strings["Site Member (%s)"] = "Utente del sito (%s)";
$a->strings["Password reset requested at %s"] = "È stato richiesto di reimpostare password su %s";
$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La richiesta non può essere verificata (potresti averla già usata precedentemente). La password non sarà reimpostata.";
$a->strings["Password Reset"] = "Reimposta la password";
$a->strings["Your password has been reset as requested."] = "La password è stata reimpostata come richiesto.";
$a->strings["Your new password is"] = "La tua nuova password è";
$a->strings["Save or copy your new password - and then"] = "Salva o copia la tua nuova password, quindi";
$a->strings["click here to login"] = "clicca qui per accedere";
$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Puoi cambiare la tua password dalla pagina delle <em>Impostazioni</em> dopo aver effettuato l'accesso.";
$a->strings["Your password has changed at %s"] = "La tua password su %s è cambiata";
$a->strings["Forgot your Password?"] = "Hai dimenticato la password?";
$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Inserisci il tuo indirizzo email per reimpostare la password. Dopo aver inviato la richiesta, controlla l'email e troverai le istruzioni per continuare.";
$a->strings["Email Address"] = "Indirizzo email";
$a->strings["Reset"] = "Reimposta";
$a->strings["Website:"] = "Sito web:";
$a->strings["Remote Channel [%s] (not yet known on this site)"] = "Canale remoto [%s] (non ancora conosciuto da questo sito)";
$a->strings["Rating (this information is public)"] = "Valutazione (visibile a tutti)";
$a->strings["Optionally explain your rating (this information is public)"] = "Commento alla valutazione (facoltativo, visibile a tutti)";
$a->strings["Item is not editable"] = "L'elemento non è modificabile";
$a->strings["Delete item?"] = "Eliminare questo elemento?";
$a->strings["Total invitation limit exceeded."] = "Hai superato il numero massimo di inviti.";
$a->strings["%s : Not a valid email address."] = "%s: non è un indirizzo email valido.";
$a->strings["Please join us on Red"] = "Vieni con noi su Hubzilla";
$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Hai superato il numero massimo di inviti. Contatta l'amministratore se necessario.";
$a->strings["%s : Message delivery failed."] = "%s: la consegna del messaggio è fallita.";
$a->strings["%d message sent."] = array(
	0 => "%d messaggio inviato.",
	1 => "%d messaggi inviati.",
);
$a->strings["You have no more invitations available"] = "Non hai altri inviti disponibili";
$a->strings["Send invitations"] = "Spedisci inviti";
$a->strings["Enter email addresses, one per line:"] = "Inserisci gli indirizzi email, uno per riga:";
$a->strings["Your message:"] = "Il tuo messaggio:";
$a->strings["Please join my community on Hubzilla."] = "Entra a far parte della mia comunità su Hubzilla.";
$a->strings["You will need to supply this invitation code: "] = "Dovrai fornire questo codice di invito:";
$a->strings["1. Register at any Hubzilla location (they are all inter-connected)"] = "1. Registrati su un qualsiasi sito Hubzilla (sono tutti interconnessi)";
$a->strings["2. Enter my Hubzilla network address into the site searchbar."] = "2. Inserisci il mio indirizzo Hubzilla nella barra di ricerca che compare nella pagina.";
$a->strings["or visit "] = "oppure visita ";
$a->strings["3. Click [Connect]"] = "3. Clicca su [Aggiungi]";
$a->strings["Location not found."] = "Indirizzo non trovato.";
$a->strings["Primary location cannot be removed."] = "L'indirizzo principale non può essere rimosso.";
$a->strings["No locations found."] = "Nessun indirizzo trovato.";
$a->strings["Manage Channel Locations"] = "Modifica gli indirizzi del canale";
$a->strings["Location (address)"] = "Indirizzo";
$a->strings["Primary Location"] = "Indirizzo primario";
$a->strings["Drop location"] = "Elimina un indirizzo";
$a->strings["Failed to create source. No channel selected."] = "Impossibile creare la sorgente. Nessun canale selezionato.";
$a->strings["Source created."] = "Sorgente creata.";
$a->strings["Source updated."] = "Sorgente aggiornata.";
$a->strings["*"] = "*";
$a->strings["Manage remote sources of content for your channel."] = "Gestisci le sorgenti dei contenuti del tuo canale.";
$a->strings["New Source"] = "Nuova sorgente";
$a->strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importa nel tuo canale tutti o una parte dei contenuti dal canale seguente.";
$a->strings["Only import content with these words (one per line)"] = "Importa solo i contenuti che hanno queste parole (una per riga)";
$a->strings["Leave blank to import all public content"] = "Lascia vuoto per importare tutti i contenuti pubblici";
$a->strings["Channel Name"] = "Nome del canale";
$a->strings["Source not found."] = "Sorgente non trovata.";
$a->strings["Edit Source"] = "Modifica la sorgente";
$a->strings["Delete Source"] = "Elimina la sorgente";
$a->strings["Source removed"] = "Sorgente eliminata";
$a->strings["Unable to remove source."] = "Impossibile rimuovere la sorgente.";
$a->strings["Unable to update menu."] = "Impossibile aggiornare il menù.";
$a->strings["Unable to create menu."] = "Impossibile creare il menù.";
$a->strings["Menu Name"] = "Nome del menu";
$a->strings["Unique name (not visible on webpage) - required"] = "Identificativo unico (non visibile sulla pagina) - obbligatorio";
$a->strings["Menu Title"] = "Titolo del menu";
$a->strings["Visible on webpage - leave empty for no title"] = "Visibile sulla pagina - lascia vuoto per non avere un titolo";
$a->strings["Allow Bookmarks"] = "Permetti l'aggiunta ai segnalibri";
$a->strings["Menu may be used to store saved bookmarks"] = "Puoi salvare i segnalibri nei menù";
$a->strings["Submit and proceed"] = "Salva e procedi";
$a->strings["Drop"] = "Elimina";
$a->strings["Bookmarks allowed"] = "Permetti segnalibri";
$a->strings["Delete this menu"] = "Elimina questo menù";
$a->strings["Edit menu contents"] = "Modifica i contenuti del menù";
$a->strings["Edit this menu"] = "Modifica questo menù";
$a->strings["Menu could not be deleted."] = "Il menù non può essere eliminato.";
$a->strings["Menu not found."] = "Menù non trovato.";
$a->strings["Edit Menu"] = "Modifica menù";
$a->strings["Add or remove entries to this menu"] = "Aggiungi o rimuovi elementi di questo menù";
$a->strings["Menu name"] = "Nome del menù";
$a->strings["Must be unique, only seen by you"] = "Deve essere unico, lo vedrai solo tu";
$a->strings["Menu title"] = "Titolo del menù";
$a->strings["Menu title as seen by others"] = "Titolo del menù come comparirà a tutti";
$a->strings["Allow bookmarks"] = "Permetti l'invio di segnalibri";
$a->strings["Modify"] = "Modifica";
$a->strings["Permission Denied."] = "Permesso negato.";
$a->strings["File not found."] = "File non trovato.";
$a->strings["Edit file permissions"] = "Modifica i permessi del file";
$a->strings["Set/edit permissions"] = "Modifica i permessi";
$a->strings["Include all files and sub folders"] = "Includi tutti i file e le sottocartelle";
$a->strings["Return to file list"] = "Torna all'elenco dei file";
$a->strings["Copy/paste this code to attach file to a post"] = "Copia/incolla questo codice per far comparire il file in un articolo";
$a->strings["Copy/paste this URL to link file from a web page"] = "Copia/incolla questo indirizzo in una pagina web per avere un link al file";
$a->strings["Share this file"] = "Condividi questo file";
$a->strings["Show URL to this file"] = "Mostra l'URL del file";
$a->strings["Notify your contacts about this file"] = "Notifica ai tuoi contatti che hai caricato il file";
$a->strings["Contact not found."] = "Contatto non trovato.";
$a->strings["Friend suggestion sent."] = "Suggerimento di amicizia inviato.";
$a->strings["Suggest Friends"] = "Suggerisci amici";
$a->strings["Suggest a friend for %s"] = "Suggerisci un amico a %s";
$a->strings["Hub not found."] = "Server non trovato.";
$a->strings["Poke/Prod"] = "Poke/Prod";
$a->strings["poke, prod or do other things to somebody"] = "Manda un poke, un prod o altro";
$a->strings["Recipient"] = "Destinatario";
$a->strings["Choose what you wish to do to recipient"] = "Scegli cosa vuoi inviare al destinatario";
$a->strings["Make this post private"] = "Rendi privato questo articolo";
$a->strings["Invalid profile identifier."] = "Indentificativo del profilo non valido.";
$a->strings["Profile Visibility Editor"] = "Modifica la visibilità del profilo";
$a->strings["Click on a contact to add or remove."] = "Clicca su un contatto per aggiungerlo o rimuoverlo.";
$a->strings["Visible To"] = "Visibile a";
$a->strings["Page Title"] = "Titolo della pagina";
$a->strings["Profile not found."] = "Profilo non trovato.";
$a->strings["Profile deleted."] = "Profilo eliminato.";
$a->strings["Profile-"] = "Profilo-";
$a->strings["New profile created."] = "Il nuovo profilo è stato creato.";
$a->strings["Profile unavailable to clone."] = "Impossibile duplicare il profilo.";
$a->strings["Profile unavailable to export."] = "Il profilo non è disponibile per l'export.";
$a->strings["Profile Name is required."] = "Il nome del profilo è obbligatorio .";
$a->strings["Marital Status"] = "Stato sentimentale";
$a->strings["Romantic Partner"] = "Partner affettivo";
$a->strings["Likes"] = "Mi piace";
$a->strings["Dislikes"] = "Non mi piace";
$a->strings["Work/Employment"] = "Lavoro/impiego";
$a->strings["Religion"] = "Religione";
$a->strings["Political Views"] = "Orientamento politico";
$a->strings["Gender"] = "Sesso";
$a->strings["Sexual Preference"] = "Preferenze sessuali";
$a->strings["Homepage"] = "Home page";
$a->strings["Interests"] = "Interessi";
$a->strings["Address"] = "Indirizzo";
$a->strings["Profile updated."] = "Profilo aggiornato.";
$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Nascondi la tua lista di contatti/amici ai visitatori di questo profilo?";
$a->strings["Edit Profile Details"] = "Modifica i dettagli del profilo";
$a->strings["View this profile"] = "Guarda questo profilo";
$a->strings["Change Profile Photo"] = "Cambia la foto del profilo";
$a->strings["Create a new profile using these settings"] = "Crea un nuovo profilo usando queste impostazioni";
$a->strings["Clone this profile"] = "Clona questo profilo";
$a->strings["Delete this profile"] = "Elimina questo profilo";
$a->strings["Import profile from file"] = "Importa il profilo da un file";
$a->strings["Export profile to file"] = "Esporta il profilo in un file";
$a->strings["Profile Name:"] = "Nome del profilo:";
$a->strings["Your Full Name:"] = "Il tuo nome completo:";
$a->strings["Title/Description:"] = "Titolo/descrizione:";
$a->strings["Your Gender:"] = "Sesso:";
$a->strings["Birthday :"] = "Compleanno:";
$a->strings["Street Address:"] = "Indirizzo (via/piazza):";
$a->strings["Locality/City:"] = "Località:";
$a->strings["Postal/Zip Code:"] = "CAP:";
$a->strings["Country:"] = "Nazione:";
$a->strings["Region/State:"] = "Regione/stato:";
$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Stato sentimentale:";
$a->strings["Who: (if applicable)"] = "Con chi: (se possibile)";
$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Per esempio: cathy123, Cathy Williams, cathy@example.com";
$a->strings["Since [date]:"] = "dal [data]:";
$a->strings["Homepage URL:"] = "Indirizzo home page:";
$a->strings["Religious Views:"] = "Orientamento religioso:";
$a->strings["Keywords:"] = "Parole chiave, tag:";
$a->strings["Example: fishing photography software"] = "Per esempio: pesca fotografia programmazione";
$a->strings["Used in directory listings"] = "Visibile nell'elenco pubblico di canali";
$a->strings["Tell us about yourself..."] = "Raccontaci di te...";
$a->strings["Hobbies/Interests"] = "Hobby/interessi";
$a->strings["Contact information and Social Networks"] = "Contatti personali e i tuoi social network";
$a->strings["My other channels"] = "I miei altri canali";
$a->strings["Musical interests"] = "Interessi musicali";
$a->strings["Books, literature"] = "Libri, letteratura";
$a->strings["Television"] = "Televisione";
$a->strings["Film/dance/culture/entertainment"] = "Film/danza/cultura/intrattenimento";
$a->strings["Love/romance"] = "Amore";
$a->strings["Work/employment"] = "Lavoro/impiego";
$a->strings["School/education"] = "Scuola/educazione";
$a->strings["This is your default profile."] = "Questo è il tuo profilo predefinito.";
$a->strings["Age: "] = "Età:";
$a->strings["Edit/Manage Profiles"] = "Modifica/gestisci i profili";
$a->strings["Add profile things"] = "Aggiungi Oggetti al profilo";
$a->strings["Include desirable objects in your profile"] = "Aggiungi oggetti interessanti al tuo profilo";
$a->strings["No ratings"] = "Nessuna valutazione";
$a->strings["Ratings"] = "Valutazioni";
$a->strings["Rating: "] = "Valutazione:";
$a->strings["Website: "] = "Sito web:";
$a->strings["Description: "] = "Descrizione:";
$a->strings["Source of Item"] = "Sorgente";
$a->strings["Unable to create element."] = "Impossibile creare l'elemento.";
$a->strings["Unable to update menu element."] = "Non è possibile aggiornare l'elemento del menù.";
$a->strings["Unable to add menu element."] = "Impossibile aggiungere l'elemento al menù.";
$a->strings["Menu Item Permissions"] = "Permessi del menu";
$a->strings["Link Name"] = "Nome link";
$a->strings["Link Target"] = "Destinazione link";
$a->strings["Use Hubzilla magic-auth if available"] = "Usa l'autenticazione magica di Hubzilla, se disponibile";
$a->strings["Open link in new window"] = "Apri il link in una nuova finestra";
$a->strings["Order in list"] = "Ordine dell'elenco";
$a->strings["Higher numbers will sink to bottom of listing"] = "I numeri più alti andranno in fondo all'elenco";
$a->strings["Submit and finish"] = "Salva e termina";
$a->strings["Submit and continue"] = "Salva e continua";
$a->strings["Menu:"] = "Menu:";
$a->strings["Edit menu"] = "Modifica il menù";
$a->strings["Edit element"] = "Modifica l'elemento";
$a->strings["Drop element"] = "Elimina l'elemento";
$a->strings["New element"] = "Nuovo elemento";
$a->strings["Edit this menu container"] = "Modifica il contenitore del menù";
$a->strings["Add menu element"] = "Aggiungi un elemento al menù";
$a->strings["Delete this menu item"] = "Elimina questo elemento del menù";
$a->strings["Edit this menu item"] = "Modifica questo elemento del menù";
$a->strings["Menu item not found."] = "L'elemento del menù non è stato trovato.";
$a->strings["Menu item deleted."] = "L'elemento del menù è stato eliminato.";
$a->strings["Menu item could not be deleted."] = "L'elemento del menù non può essere eliminato.";
$a->strings["Edit Menu Element"] = "Modifica l'elemento del menù";
$a->strings["Link text"] = "Testo del link";
$a->strings["URL of link"] = "Indirizzo del link";
$a->strings["OpenID protocol error. No ID returned."] = "Errore del protocollo OpenID. Nessun ID ricevuto in risposta.";
$a->strings["Welcome %s. Remote authentication successful."] = "Ciao %s. L'autenticazione magica è avvenuta con successo.";
$a->strings["%d rating"] = array(
	0 => "%d valutazione",
	1 => "%d valutazioni",
);
$a->strings["Gender: "] = "Sesso:";
$a->strings["Status: "] = "Stato:";
$a->strings["Homepage: "] = "Homepage:";
$a->strings["Hometown: "] = "Città dove vivo:";
$a->strings["About: "] = "Informazioni:";
$a->strings["Public Forum:"] = "Forum pubblico:";
$a->strings["Keywords: "] = "Parole chiave:";
$a->strings["Common connections: %s"] = "Contatti in comune: %s";
$a->strings["Finding:"] = "Ricerca:";
$a->strings["next page"] = "pagina successiva";
$a->strings["previous page"] = "pagina precedente";
$a->strings["No entries (some entries may be hidden)."] = "Nessun risultato (qualche elemento potrebbe essere nascosto).";
$a->strings["Export Channel"] = "Esporta il canale";
$a->strings["Export your basic channel information to a small file.  This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new hub, but\tdoes not contain your content."] = "Esporta le informazioni di base del tuo canale in un piccolo file. E' utile per avere un salvataggio di sicurezza dei tuoi contatti, del tuo profilo ed altre informazioni fondamentali. Può essere usato per importare il tuo canale su un nuovo server, ma\tnon include i contenuti, per esempio articoli e foto.";
$a->strings["Export Content"] = "Esporta i contenuti";
$a->strings["Export your channel information and all the content to a JSON backup. This backs up all of your connections, permissions, profile data and all of your content, but is generally not suitable for importing a channel to a new hub as this file may be VERY large.  Please be patient - it may take several minutes for this download to begin."] = "Esporta i dati del canale e i contenuti in un file in formato JSON. E' un salvataggio dei tuoi contatti, dei dati del profilo e anche di tutti i contenuti. Questa non è la soluzione opportuna per importare il tuo canale su un nuovo server, visto che il file potrebbe avere dimensioni NOTEVOLI. Devi pazientare - ci vorranno alcuni minuti per raccogliere i dati prima che inizi lo scaricamento.";
$a->strings["No connections."] = "Nessun contatto.";
$a->strings["Visit %s's profile [%s]"] = "Visita il profilo di %s [%s]";
$a->strings["invalid target signature"] = "la firma ricevuta non è valida";
$a->strings["Theme settings updated."] = "Le impostazioni del tema sono state aggiornate.";
$a->strings["Site"] = "Sito";
$a->strings["Accounts"] = "Account";
$a->strings["Channels"] = "Canali";
$a->strings["Plugins"] = "Plugin";
$a->strings["Themes"] = "Temi";
$a->strings["Inspect queue"] = "Coda di attesa";
$a->strings["Profile Config"] = "Configurazione del profilo";
$a->strings["DB updates"] = "Aggiornamenti al DB";
$a->strings["Logs"] = "Log";
$a->strings["Plugin Features"] = "Plugin";
$a->strings["User registrations waiting for confirmation"] = "Registrazioni in attesa";
$a->strings["# Accounts"] = "# account";
$a->strings["# blocked accounts"] = "# account bloccati";
$a->strings["# expired accounts"] = "# account scaduti";
$a->strings["# expiring accounts"] = "# account in scadenza";
$a->strings["# Channels"] = "# canali";
$a->strings["# primary"] = "# primari";
$a->strings["# clones"] = "# cloni";
$a->strings["Message queues"] = "Coda messaggi in uscita";
$a->strings["Administration"] = "Amministrazione";
$a->strings["Summary"] = "Riepilogo";
$a->strings["Registered accounts"] = "Account creati";
$a->strings["Pending registrations"] = "Registrazioni da approvare";
$a->strings["Registered channels"] = "Canali creati";
$a->strings["Active plugins"] = "Plugin attivi";
$a->strings["Version"] = "Versione";
$a->strings["Site settings updated."] = "Impostazioni del sito salvate correttamente.";
$a->strings["experimental"] = "sperimentale";
$a->strings["unsupported"] = "non supportato";
$a->strings["Yes - with approval"] = "Sì - con approvazione";
$a->strings["My site is not a public server"] = "Non è un server pubblico";
$a->strings["My site has paid access only"] = "È un servizio a pagamento";
$a->strings["My site has free access only"] = "È un servizio gratuito";
$a->strings["My site offers free accounts with optional paid upgrades"] = "È un servizio gratuito con opzioni aggiuntive a pagamento";
$a->strings["Registration"] = "Registrazione";
$a->strings["File upload"] = "Caricamento file";
$a->strings["Policies"] = "Politiche";
$a->strings["Site name"] = "Nome del sito";
$a->strings["Banner/Logo"] = "Banner o logo";
$a->strings["Administrator Information"] = "Informazioni sull'amministratore";
$a->strings["Contact information for site administrators.  Displayed on siteinfo page.  BBCode can be used here"] = "Informazioni per contattare gli amministratori del sito. Saranno mostrate sulla pagina di informazioni. È consentito il BBcode";
$a->strings["System language"] = "Lingua di sistema";
$a->strings["System theme"] = "Tema di sistema";
$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "Il tema di sistema può essere cambiato dai profili dei singoli utenti - <a href='#' id='cnftheme'>Cambia le impostazioni del tema</a>";
$a->strings["Mobile system theme"] = "Tema di sistema per dispositivi mobili";
$a->strings["Theme for mobile devices"] = "Tema per i dispositivi mobili";
$a->strings["Enable Diaspora Protocol"] = "Abilita la comunicazione con Diaspora";
$a->strings["Communicate with Diaspora and Friendica - experimental"] = "Sperimentale - per comunicare con Diaspora e Friendica";
$a->strings["Allow Feeds as Connections"] = "Permetti di aggiungere i feed come contatti";
$a->strings["(Heavy system resource usage)"] = "(Uso intenso delle risorse di sistema!)";
$a->strings["Maximum image size"] = "Dimensione massima immagini";
$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite.";
$a->strings["Does this site allow new member registration?"] = "Questo sito permette a nuovi utenti di registrarsi?";
$a->strings["Which best describes the types of account offered by this hub?"] = "Come descriveresti il tipo di servizio proposto da questo server?";
$a->strings["Register text"] = "Testo di registrazione";
$a->strings["Will be displayed prominently on the registration page."] = "Sarà mostrato ben visibile nella pagina di registrazione.";
$a->strings["Accounts abandoned after x days"] = "Account abbandonati dopo X giorni";
$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Eviterà di sprecare risorse di sistema controllando se i siti esterni hanno account abbandonati. Immettere 0 per non imporre nessun limite di tempo.";
$a->strings["Allowed friend domains"] = "Domini fidati e consentiti";
$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Elenco separato da virglola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascia vuoto per accettare connessioni da qualsiasi dominio.";
$a->strings["Allowed email domains"] = "Domini email consentiti";
$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione. Sono accettati caratteri jolly. Lascia vuoto per accettare qualsiasi dominio email";
$a->strings["Not allowed email domains"] = "Domini email non consentiti";
$a->strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio.";
$a->strings["Block public"] = "Blocca pagine pubbliche";
$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Seleziona per impedire di vedere le pagine personali di questo sito a chi non ha effettuato l'accesso.";
$a->strings["Verify Email Addresses"] = "Verifica l'indirizzo email";
$a->strings["Check to verify email addresses used in account registration (recommended)."] = "Attiva per richiedere la verifica degli indirizzi email dei nuovi utenti (consigliato).";
$a->strings["Force publish"] = "Forza la publicazione del profilo";
$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Seleziona per mostrare nell'elenco pubblico <strong>tutti</strong> i profili registrati su questo sito.";
$a->strings["Disable discovery tab"] = "Disabilita la funzione 'scopri'";
$a->strings["Remove the tab in the network view with public content pulled from sources chosen for this site."] = "Nell'area della rete personale non comparirà più la scheda con i contenuti acquisiti da altri siti.";
$a->strings["No login on Homepage"] = "Non mostrare il login sulla homepage";
$a->strings["Check to hide the login form from your sites homepage when visitors arrive who are not logged in (e.g. when you put the content of the homepage in via the site channel)."] = "Per nascondere la possibilità di fare login ai visitatori (per esempio, quando il contenuto della homepage del sito è alimentato da un canale).";
$a->strings["Proxy user"] = "Utente proxy";
$a->strings["Proxy URL"] = "URL proxy";
$a->strings["Network timeout"] = "Timeout rete";
$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valore in secondi. Imposta a 0 per illimitato (sconsigliato).";
$a->strings["Delivery interval"] = "Recapito ritardato";
$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Numero di secondi di cui può essere ritardato il recapito, per ridurre il carico di sistema. Consigliati: 4-5 secondi per hosting condiviso, 2-3 per i VPS, 0-1 per grandi server dedicati.";
$a->strings["Poll interval"] = "Intervallo di polling";
$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Numero di secondi di cui può essere ritardato il polling in background, per ridurre il carico del sistema. Se 0, verrà usato lo stesso valore del 'Recapito ritardato'.";
$a->strings["Maximum Load Average"] = "Carico massimo medio";
$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Carico di sistema massimo perché i processi di recapito e polling siano ritardati - il valore predefinito è 50.";
$a->strings["Expiration period in days for imported (matrix/network) content"] = "Scadenza dei contenuti importati da altri siti (in giorni)";
$a->strings["0 for no expiration of imported content"] = "0 per non avere scadenza";
$a->strings["No server found"] = "Server non trovato";
$a->strings["ID"] = "ID";
$a->strings["for channel"] = "per canale";
$a->strings["on server"] = "sul server";
$a->strings["Status"] = "Stato";
$a->strings["Server"] = "Server";
$a->strings["Update has been marked successful"] = "L'aggiornamento è stato marcato come eseguito.";
$a->strings["Executing %s failed. Check system logs."] = "Fallita l'esecuzione di %s. Maggiori informazioni sui log di sistema.";
$a->strings["Update %s was successfully applied."] = "L'aggiornamento %s è terminato correttamente.";
$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "L'aggiornamento %s non ha dato risposta. Impossibile determinare se è terminato correttamente.";
$a->strings["Update function %s could not be found."] = "Impossibile trovare la funzione di aggiornamento %s";
$a->strings["No failed updates."] = "Nessun aggiornamento fallito.";
$a->strings["Failed Updates"] = "Aggiornamenti falliti.";
$a->strings["Mark success (if update was manually applied)"] = "Marca come eseguito (se applicato manualmente).";
$a->strings["Attempt to execute this update step automatically"] = "Tenta di eseguire in automatico questo passaggio dell'aggiornamento.";
$a->strings["Queue Statistics"] = "Statistiche della coda";
$a->strings["Total Entries"] = "Totale";
$a->strings["Priority"] = "Priorità";
$a->strings["Destination URL"] = "URL di destinazione";
$a->strings["Mark hub permanently offline"] = "Questo hub è definitivamente offline";
$a->strings["Empty queue for this hub"] = "Svuota la coda per questo hub";
$a->strings["Last known contact"] = "Ultimo scambio dati";
$a->strings["%s user blocked/unblocked"] = array(
	0 => "%s utente bloccato/sbloccato",
	1 => "%s utenti bloccati/sbloccati",
);
$a->strings["%s user deleted"] = array(
	0 => "%s utente cancellato",
	1 => "%s utenti cancellati",
);
$a->strings["Account not found"] = "Account non trovato";
$a->strings["User '%s' blocked"] = "Utente '%s' bloccato";
$a->strings["User '%s' unblocked"] = "Utente '%s' sbloccato";
$a->strings["Users"] = "Utenti";
$a->strings["select all"] = "seleziona tutti";
$a->strings["User registrations waiting for confirm"] = "Richieste di registrazione in attesa di conferma";
$a->strings["Request date"] = "Data richiesta";
$a->strings["No registrations."] = "Nessuna registrazione.";
$a->strings["Approve"] = "Approva";
$a->strings["Deny"] = "Nega";
$a->strings["Block"] = "Blocca";
$a->strings["Unblock"] = "Sblocca";
$a->strings["Register date"] = "Data registrazione";
$a->strings["Last login"] = "Ultimo accesso";
$a->strings["Expires"] = "Con scadenza";
$a->strings["Service Class"] = "Classe dell'account";
$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Gli utenti selezionati saranno eliminati!\\n\\nTutto quello che gli utenti hanno pubblicato su questo sito sarà permanentemente eliminato!\\n\\nConfermi?";
$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "L'utente {0} sarà eliminato!\\n\\nTutto quello che ha pubblicato su questo sito sarà permanentemente eliminato!\\n\\nConfermi?";
$a->strings["%s channel censored/uncensored"] = array(
	0 => "Censura modificata per %s canale",
	1 => "Censura modificata per %s canali",
);
$a->strings["%s channel deleted"] = array(
	0 => "%s canale è stato rimosso",
	1 => "%s canali sono stati rimossi",
);
$a->strings["Channel not found"] = "Canale non trovato";
$a->strings["Channel '%s' deleted"] = "Il canale '%s' è stato rimosso";
$a->strings["Channel '%s' uncensored"] = "Rimossa la censura dal canale '%s'";
$a->strings["Channel '%s' censored"] = "Applicata una censura al canale '%s'";
$a->strings["Censor"] = "Applica una censura";
$a->strings["Uncensor"] = "Rimuovi la censura";
$a->strings["UID"] = "UID";
$a->strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "I canali selezionati saranno rimossi!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questi canali sarà irreversibilmente eliminato!\\n\\nVuoi confermare?";
$a->strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "Il canale {0} sarà rimosso!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questo canale sarà irreversibilmente eliminato!\\n\\nVuoi confermare?";
$a->strings["Plugin %s disabled."] = "Plugin %s non attivo.";
$a->strings["Plugin %s enabled."] = "Plugin %s attivo.";
$a->strings["Disable"] = "Disattiva";
$a->strings["Enable"] = "Attiva";
$a->strings["Toggle"] = "Attiva/disattiva";
$a->strings["Author: "] = "Autore:";
$a->strings["Maintainer: "] = "Gestore:";
$a->strings["No themes found."] = "Nessun tema trovato.";
$a->strings["Screenshot"] = "Istantanea dello schermo";
$a->strings["[Experimental]"] = "[Sperimentale]";
$a->strings["[Unsupported]"] = "[Non supportato]";
$a->strings["Log settings updated."] = "Impostazioni di log aggiornate.";
$a->strings["Clear"] = "Pulisci";
$a->strings["Debugging"] = "Debugging";
$a->strings["Log file"] = "File di log";
$a->strings["Must be writable by web server. Relative to your Red top-level directory."] = "Deve essere scrivibile dal web server. La posizione è relativa alla cartella dove è installato Hubzilla.";
$a->strings["Log level"] = "Livello di log";
$a->strings["New Profile Field"] = "Nuovo campo del profilo";
$a->strings["Field nickname"] = "Nome breve del campo";
$a->strings["System name of field"] = "Nome di sistema del campo";
$a->strings["Input type"] = "Tipo di dati";
$a->strings["Field Name"] = "Nome del campo";
$a->strings["Label on profile pages"] = "Etichetta da mostrare sulla pagina del profilo";
$a->strings["Help text"] = "Testo di aiuto";
$a->strings["Additional info (optional)"] = "Informazioni aggiuntive (opzionali)";
$a->strings["Field definition not found"] = "Impossibile trovare la definizione del campo";
$a->strings["Edit Profile Field"] = "Modifica campo del profilo";
$a->strings["Unable to find your hub."] = "Impossibile raggiungere il tuo hub.";
$a->strings["Post successful."] = "Inviato!";
$a->strings["Edit Block"] = "Modifica il riquadro";
$a->strings["Delete block?"] = "Vuoi eliminare questo riquadro?";
$a->strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "È stato superato il numero massimo giornaliero di registrazioni a questo sito. Riprova domani!";
$a->strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Impossibile proseguire. Devi prima accettare le Condizioni d'Uso del servizio.";
$a->strings["Passwords do not match."] = "Le password non corrispondono.";
$a->strings["Registration successful. Please check your email for validation instructions."] = "La registrazione è terminata correttamente. Per continuare controlla l'email che ti è stata inviata.";
$a->strings["Your registration is pending approval by the site owner."] = "La tua richiesta è in attesa di approvazione da parte dell'amministratore del sito.";
$a->strings["Your registration can not be processed."] = "La tua registrazione non puo' essere processata.";
$a->strings["Registration on this site/hub is by approval only."] = "La registrazione su questo sito è soggetta ad approvazione.";
$a->strings["<a href=\"pubsites\">Register at another affiliated site/hub</a>"] = "<a href=\"pubsites\">Registrati su un altro server affiliato</a>";
$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Questo sito ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani.";
$a->strings["Terms of Service"] = "Condizioni d'Uso";
$a->strings["I accept the %s for this website"] = "Accetto le %s di questo sito";
$a->strings["I am over 13 years of age and accept the %s for this website"] = "Ho più di 13 anni e accetto le %s di questo sito";
$a->strings["Membership on this site is by invitation only."] = "Per registrarsi su questo sito è necessario un invito.";
$a->strings["Please enter your invitation code"] = "Inserisci il codice dell'invito";
$a->strings["Your email address"] = "Il tuo indirizzo email";
$a->strings["Choose a password"] = "Scegli una password";
$a->strings["Please re-enter your password"] = "Ripeti la password per verifica";
$a->strings["Account removals are not allowed within 48 hours of changing the account password."] = "Non è possibile eliminare il tuo account prima di 48 ore dall'ultimo cambio password.";
$a->strings["Remove This Account"] = "Elimina questo account";
$a->strings["WARNING: "] = "ATTENZIONE:";
$a->strings["This account and all its channels will be completely removed from the network. "] = "Questo account e tutti i suoi canali saranno completamente eliminati dalla rete.";
$a->strings["This action is permanent and can not be undone!"] = "Questo comando è definitivo e non può essere annullato!";
$a->strings["Please enter your password for verification:"] = "Inserisci la tua password per verifica:";
$a->strings["Remove this account, all its channels and all its channel clones from the network"] = "Elimina dalla rete questo account, tutti i suoi canali e ANCHE tutti gli eventuali canali clonati.";
$a->strings["By default only the instances of the channels located on this hub will be removed from the network"] = "A meno che tu non lo richieda espressamente, solo i canali presenti su questo server saranno rimossi dalla rete.";
$a->strings["Unable to locate original post."] = "Impossibile trovare il messaggio originale.";
$a->strings["Empty post discarded."] = "L'articolo vuoto è stato ignorato.";
$a->strings["Executable content type not permitted to this channel."] = "I contenuti eseguibili non sono permessi su questo canale.";
$a->strings["System error. Post not saved."] = "Errore di sistema. Articolo non salvato.";
$a->strings["Unable to obtain post information from database."] = "Impossibile caricare l'articolo dal database.";
$a->strings["You have reached your limit of %1$.0f top level posts."] = "Hai raggiunto il limite massimo di %1$.0f articoli sulla pagina principale.";
$a->strings["You have reached your limit of %1$.0f webpages."] = "Hai raggiunto il limite massimo di %1$.0f pagine web.";
$a->strings["[Embedded content - reload page to view]"] = "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]";
$a->strings["Remote privacy information not available."] = "Le informazioni remote sulla privacy non sono disponibili.";
$a->strings["Visible to:"] = "Visibile a:";
$a->strings["Block Name"] = "Nome del riquadro";
$a->strings["First Name"] = "Nome";
$a->strings["Last Name"] = "Cognome";
$a->strings["Nickname"] = "Nick";
$a->strings["Full Name"] = "Nome e cognome";
$a->strings["Profile Photo 16px"] = "Foto del profilo 16px";
$a->strings["Profile Photo 32px"] = "Foto del profilo 32px";
$a->strings["Profile Photo 48px"] = "Foto del profilo 48px";
$a->strings["Profile Photo 64px"] = "Foto del profilo 64px";
$a->strings["Profile Photo 80px"] = "Foto del profilo 80px";
$a->strings["Profile Photo 128px"] = "Foto del profilo 128px";
$a->strings["Timezone"] = "Fuso orario";
$a->strings["Homepage URL"] = "Indirizzo home page";
$a->strings["Birth Year"] = "Anno di nascita";
$a->strings["Birth Month"] = "Mese di nascita";
$a->strings["Birth Day"] = "Giorno di nascita";
$a->strings["Birthdate"] = "Data di nascita";
$a->strings["Conversation removed."] = "Conversazione rimossa.";
$a->strings["No messages."] = "Nessun messaggio.";
$a->strings["Delete conversation"] = "Elimina la conversazione";
$a->strings["D, d M Y - g:i A"] = "D d M Y - G:i";
$a->strings["Help with this feature"] = "La guida per questa funzionalità";
$a->strings["Layout Name"] = "Nome layout";
$a->strings["Comanche page description language help"] = "Guida di Comanche Page Description Language";
$a->strings["Set your current mood and tell your friends"] = "Scegli il tuo umore attuale per mostrarlo agli amici";
$a->strings["Total votes"] = "Voti totali";
$a->strings["Average Rating"] = "Valutazione media";
$a->strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Non è possibile eliminare un canale prima di 48 ore dall'ultimo cambio password.";
$a->strings["Remove This Channel"] = "Elimina questo canale";
$a->strings["This channel will be completely removed from the network. "] = "Questo canale sarà completamente eliminato dalla rete.";
$a->strings["Remove this channel and all its clones from the network"] = "Rimuovi questo canale e tutti i suoi cloni dalla rete";
$a->strings["By default only the instance of the channel located on this hub will be removed from the network"] = "L'impostazione predefinita è che sia eliminata solo l'istanza del canale presente su questo hub, non gli eventuali cloni";
$a->strings["is now connected to"] = "ha come nuovo contatto";
$a->strings["Could not access address book record."] = "Impossibile accedere alle informazioni della rubrica.";
$a->strings["Refresh failed - channel is currently unavailable."] = "Il canale non è disponibile - impossibile aggiornare.";
$a->strings["Channel has been unblocked"] = "Il canale è stato sbloccato";
$a->strings["Channel has been blocked"] = "Il canale è stato bloccato";
$a->strings["Unable to set address book parameters."] = "Impossibile impostare i parametri della rubrica.";
$a->strings["Channel has been unignored"] = "Il canale non sarà più ignorato";
$a->strings["Channel has been ignored"] = "Il canale sarà ignorato";
$a->strings["Channel has been unarchived"] = "Il canale non è più archiviato";
$a->strings["Channel has been archived"] = "Il canale è stato archiviato";
$a->strings["Channel has been unhidden"] = "Il canale non è più nascosto";
$a->strings["Channel has been hidden"] = "Il canale è stato nascosto";
$a->strings["Channel has been approved"] = "Il canale è stato approvato";
$a->strings["Channel has been unapproved"] = "Il canale non è più approvato";
$a->strings["Connection has been removed."] = "Il contatto è stato rimosso.";
$a->strings["View %s's profile"] = "Guarda il profilo di %s";
$a->strings["Refresh Permissions"] = "Modifica i permessi";
$a->strings["Fetch updated permissions"] = "Guarda e modifica i permessi assegnati";
$a->strings["Recent Activity"] = "Attività recenti";
$a->strings["View recent posts and comments"] = "Leggi i post recenti e i commenti";
$a->strings["Block (or Unblock) all communications with this connection"] = "Blocca ogni interazione con questo contatto (abilita/disabilita)";
$a->strings["Unignore"] = "Non ignorare";
$a->strings["Ignore"] = "Ignora";
$a->strings["Ignore (or Unignore) all inbound communications from this connection"] = "Ignora tutte le comunicazioni in arrivo da questo contatto (abilita/disabilita)";
$a->strings["Unarchive"] = "Non archiviare";
$a->strings["Archive"] = "Archivia";
$a->strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Archivia questo contatto (abilita/disabilita) - segna il canale come non più attivo ma ne conserva i contenuti";
$a->strings["Unhide"] = "Non nascondere";
$a->strings["Hide"] = "Nascondi";
$a->strings["Hide or Unhide this connection from your other connections"] = "Nascondi questo contatto a tutti gli altri (abilita/disabilita)";
$a->strings["Delete this connection"] = "Elimina questo contatto";
$a->strings["Approve this connection"] = "Approva questo contatto";
$a->strings["Accept connection to allow communication"] = "Entra in contatto per poter comunicare";
$a->strings["Connections: settings for %s"] = "Contatti: impostazioni per %s";
$a->strings["Apply these permissions automatically"] = "Applica automaticamente questi permessi";
$a->strings["Apply the permissions indicated on this page to all new connections."] = "Applica i permessi indicati su questa pagina a tutti i nuovi contatti.";
$a->strings["Slide to adjust your degree of friendship"] = "Trascina per restringere il grado di amicizia da mostrare";
$a->strings["Default permissions for your channel type have (just) been applied. They have not yet been submitted. Please review the permissions on this page and make any desired changes at this time. This new connection may <em>not</em> be able to communicate with you until you submit this page, which will install and apply the selected permissions."] = "I tuoi nuovi contatti potrebbero <em>non</em> essere abilitati a comunicare con te finché non salverai questa pagina (perché non hai permessi impostati). Sono stati selezionati i permessi standard per il tipo di canale che hai scelto. Non sono stati ancora salvati però. Puoi verificare le impostazioni e fare i cambiamenti che preferisci prima di salvare. ";
$a->strings["inherited"] = "derivato";
$a->strings["Connection has no individual permissions!"] = "Non hai assegnato permessi individuali a questo contatto!";
$a->strings["This may be appropriate based on your <a href=\"settings\">privacy settings</a>, though you may wish to review the \"Advanced Permissions\"."] = "Questo corrisponde alle tue <a href='settings'>impostazioni di privacy</a>, ma puoi anche dare un'occhiata ai 'Permessi avanzati' per opzioni più dettagliate.";
$a->strings["Profile Visibility"] = "Visibilità del profilo";
$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Seleziona il profilo che vuoi mostrare a %s quando visita il tuo profilo in modo sicuro.";
$a->strings["Contact Information / Notes"] = "Informazioni e annotazioni sul contatto";
$a->strings["Edit contact notes"] = "Modifica le informazioni sul contatto";
$a->strings["Their Settings"] = "Permessi concessi a te";
$a->strings["My Settings"] = "I permessi che concedo";
$a->strings["Default permissions for this channel type have (just) been applied. They have <em>not</em> been saved and there are currently no stored default permissions. Please review/edit the applied settings and click [Submit] to finalize."] = "A questo canale sono stati applicati i permessi predefiniti ma <em>non</em> sono stati salvati. In realtà non esistono ancora dei permessi predefiniti da usare su questo sito. Controlla e verifica le impostazioni, [Salva] per confermare.";
$a->strings["Clear/Disable Automatic Permissions"] = "Rimuovi/disabilita i permessi automatici";
$a->strings["Forum Members"] = "Membro di un forum";
$a->strings["Soapbox"] = "Comunicati e annunci";
$a->strings["Full Sharing (typical social network permissions)"] = "Condivisione completa (permessi tipici dei social network)";
$a->strings["Cautious Sharing "] = "Condivisione prudente";
$a->strings["Follow Only"] = "Follower";
$a->strings["Individual Permissions"] = "Permessi individuali";
$a->strings["Some permissions may be inherited from your channel <a href=\"settings\">privacy settings</a>, which have higher priority than individual settings. Changing those inherited settings on this page will have no effect."] = "I permessi nelle <a href=\"settings\">impostazioni di privacy</a> hanno priorità su quelli mostrati in questa pagina. Non avrà alcun effetto cambiarli qui, se sono indicati come derivati.";
$a->strings["Advanced Permissions"] = "Permessi avanzati";
$a->strings["Simple Permissions (select one and submit)"] = "Permessi semplificati (seleziona e salva)";
$a->strings["Visit %s's profile - %s"] = "Guarda il profilo di %s - %s";
$a->strings["Block/Unblock contact"] = "Blocca/sblocca contatto";
$a->strings["Ignore contact"] = "Ignora il contatto";
$a->strings["Repair URL settings"] = "Ripara le impostazioni URL";
$a->strings["View conversations"] = "Leggi le conversazioni";
$a->strings["Delete contact"] = "Elimina contatto";
$a->strings["Last update:"] = "Ultimo aggiornamento:";
$a->strings["Update public posts"] = "Aggiorna gli articoli pubblici";
$a->strings["Update now"] = "Aggiorna adesso";
$a->strings["Currently blocked"] = "Attualmente bloccato";
$a->strings["Currently ignored"] = "Attualmente ignorato";
$a->strings["Currently archived"] = "Attualmente archiviato";
$a->strings["Currently pending"] = "Attualmente da approvare";
$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Non è possibile effettuare login con l'OpenID che hai fornito. Per favore controlla che sia scritto correttamente.";
$a->strings["The error message was:"] = "Messaggio di errore ricevuto:";
$a->strings["Authentication failed."] = "Autenticazione fallita.";
$a->strings["Remote Authentication"] = "Autenticazione a distanza";
$a->strings["Enter your channel address (e.g. channel@example.com)"] = "Inserisci l'indirizzo del tuo canale (ad esempio lucia@esempio.com)";
$a->strings["Authenticate"] = "Autenticazione";
$a->strings["Unable to lookup recipient."] = "Impossibile associare un destinatario.";
$a->strings["Unable to communicate with requested channel."] = "Impossibile comunicare con il canale richiesto.";
$a->strings["Cannot verify requested channel."] = "Impossibile verificare il canale richiesto.";
$a->strings["Selected channel has private message restrictions. Send failed."] = "Il canale ha delle regole restrittive per la ricezione dei messaggi privati. Invio fallito.";
$a->strings["Message deleted."] = "Messaggio eliminato.";
$a->strings["Message recalled."] = "Messaggio revocato.";
$a->strings["Send Private Message"] = "Invia un messaggio privato";
$a->strings["To:"] = "A:";
$a->strings["Subject:"] = "Oggetto:";
$a->strings["Send"] = "Invia";
$a->strings["Message not found."] = "Messaggio non trovato.";
$a->strings["Delete message"] = "Elimina il messaggio";
$a->strings["Recall message"] = "Revoca il messaggio";
$a->strings["Message has been recalled."] = "Il messaggio è stato revocato.";
$a->strings["Private Conversation"] = "Conversazione privata";
$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Non è disponibile alcuna tecnologia per comunicare in modo sicuro. <strong>Se possibile</strong>, prova a rispondere direttamente dalla pagina del profilo del mittente.";
$a->strings["Send Reply"] = "Invia la risposta";
$a->strings["Invalid request identifier."] = "L'identificativo della richiesta non è valido.";
$a->strings["Discard"] = "Rifiuta";
$a->strings["Please login."] = "Effettua l'accesso.";
$a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "L'autenticazione magica dal tuo sito non è disponibile. Hai accesso solamente a questo sito. Puoi provare a disconnetterti per tentare di nuovo.";
$a->strings["Add a Channel"] = "Aggiungi un canale";
$a->strings["A channel is your own collection of related web pages. A channel can be used to hold social network profiles, blogs, conversation groups and forums, celebrity pages, and much more. You may create as many channels as your service provider allows."] = "I contenuti che pubblichi sono mostrati nel tuo \"canale\". Un canale può essere usato come bacheca personale, come blog, oppure può essere un forum di discussione, un gruppo di interesse, una pagina di celebrità e molto altro. Puoi creare tanti canali quanti ne permette il tuo sito.";
$a->strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = "Per esempio: \"Mario Rossi\", \"Lisa e le sue ricette\", \"Il campionato\", \"Il gruppo di escursionismo\"";
$a->strings["Choose a short nickname"] = "Scegli un nome breve";
$a->strings["Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others."] = "Il nome breve sarà usato per creare un indirizzo facile da ricordare per il tuo canale (simile a una email). Così potrai condividerlo e gli altri potranno trovarti.";
$a->strings["Or <a href=\"import\">import an existing channel</a> from another location"] = "Oppure <a href=\"import\">importa un tuo canale esistente</a> da un altro server/hub";
$a->strings["Please choose a channel type (such as social networking or community forum) and privacy requirements so we can select the best permissions for you"] = "Descrivi il tipo di canale che vorresti creare (per esempio se ti interessa più usarlo come social network, come un forum di discussione...) e il tipo di privacy che preferisci. Hubzilla sceglierà per te i permessi più adatti.";
$a->strings["Channel Type"] = "Tipo di canale";
$a->strings["Read more about roles"] = "Maggiori informazioni sui ruoli";
$a->strings["App installed."] = "App installata";
$a->strings["Malformed app."] = "App non corretta";
$a->strings["Embed code"] = "Inserisci del codice";
$a->strings["Edit App"] = "Modifica app";
$a->strings["Create App"] = "Crea una app";
$a->strings["Name of app"] = "Nome app";
$a->strings["Location (URL) of app"] = "Indirizzo (URL) della app";
$a->strings["Photo icon URL"] = "URL icona";
$a->strings["80 x 80 pixels - optional"] = "80 x 80 pixel - facoltativa";
$a->strings["Version ID"] = "ID versione";
$a->strings["Price of app"] = "Prezzo app";
$a->strings["Location (URL) to purchase app"] = "Indirizzo (URL) per acquistare la app";
$a->strings["sent you a private message"] = "ti ha inviato un messaggio privato";
$a->strings["added your channel"] = "ha aggiunto il tuo canale";
$a->strings["posted an event"] = "ha creato un evento";
$a->strings["No such group"] = "Impossibile trovare l'insieme";
$a->strings["No such channel"] = "Canale sconosciuto";
$a->strings["Search Results For:"] = "Cerca risultati con:";
$a->strings["Collection is empty"] = "L'insieme di canali è vuoto";
$a->strings["Collection: "] = "Insieme:";
$a->strings["Connection: "] = "Contatto:";
$a->strings["Invalid connection."] = "Contatto non valido.";
$a->strings["Ipsum Lorem"] = "Ipsum Lorem";
$a->strings["Bookmark added"] = "Segnalibro aggiunto";
$a->strings["My Bookmarks"] = "I miei segnalibri";
$a->strings["My Connections Bookmarks"] = "I segnalibri dei miei contatti";
$a->strings["Insufficient permissions.  Request redirected to profile page."] = "Permessi insufficienti. Sarà visualizzata la pagina del profilo.";
$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Nessun suggerimento disponibile. Se questo sito è nuovo, riprova tra 24 ore.";
$a->strings["Poll"] = "Sondaggio";
$a->strings["View Results"] = "Guarda i risultati";
$a->strings["No service class restrictions found."] = "Non esistono restrizioni su questa classe di account.";
$a->strings["Files: shared with me"] = "File: condivisi con me";
$a->strings["NEW"] = "NOVITÀ";
$a->strings["Remove all files"] = "Elimina tutti i file";
$a->strings["Remove this file"] = "Elimina questo file";
$a->strings["Schema Default"] = "Schema predefinito";
$a->strings["Sans-Serif"] = "Sans-serif";
$a->strings["Monospace"] = "Monospace";
$a->strings["Theme settings"] = "Impostazioni del tema";
$a->strings["Set scheme"] = "Schema";
$a->strings["Set font-size for posts and comments"] = "Dimensioni del carattere per articoli e commenti";
$a->strings["Set font face"] = "Tipo di carattere";
$a->strings["Set iconset"] = "Icone";
$a->strings["Set big shadow size, default 15px 15px 15px"] = "Ombra grande, predefinita 15px 15px 15px";
$a->strings["Set small shadow size, default 5px 5px 5px"] = "Ombra piccola, predefinita 5px 5px 5px";
$a->strings["Set shadow color, default #000"] = "Colore dell'ombra, predefinito #000";
$a->strings["Set radius size, default 5px"] = "Raggio degli angoli, predefinito 5px";
$a->strings["Set line-height for posts and comments"] = "Altezza della riga per articoli e commenti";
$a->strings["Set background image"] = "Immagine di sfondo";
$a->strings["Set background attachment"] = "Allega uno sfondo";
$a->strings["Set background color"] = "Colore di sfondo";
$a->strings["Set section background image"] = "Immagine di sfondo della sezione";
$a->strings["Set section background color"] = "Colore di sfondo dell'area principale";
$a->strings["Set color of items - use hex"] = "Colore degli elementi della pagina - esadecimale";
$a->strings["Set color of links - use hex"] = "Colore dei link - esadecimale";
$a->strings["Set max-width for items.  Default 400px"] = "Larghezza massima degli elementi della pagina. Predefinita: 400px";
$a->strings["Set min-width for items.  Default 240px"] = "Larghezza minima degli elementi della pagina. Predefinita: 240px";
$a->strings["Set the generic content wrapper width.  Default 48%"] = "Larghezza di tutta l'area dei contenuti. Predefinita: 48%";
$a->strings["Set color of fonts - use hex"] = "Colore dei caratteri - esadecimale";
$a->strings["Set background-size element"] = "Background-size element";
$a->strings["Item opacity"] = "Opacità degli elementi della pagina";
$a->strings["Display post previews only"] = "Mostra le anteprime solo degli articoli";
$a->strings["Display side bar on channel page"] = "Mostra la colonna laterale sulla pagina del canale";
$a->strings["Colour of the navigation bar"] = "Colore della barra di navigazione";
$a->strings["Item float"] = "Float degli oggetti della pagina";
$a->strings["Left offset of the section element"] = "Margine sinistro dell'area principale";
$a->strings["Right offset of the section element"] = "Margine destro dell'area principale";
$a->strings["Section width"] = "Larghezza dell'area principale";
$a->strings["Left offset of the aside"] = "Margine sinistro della colonna laterale";
$a->strings["Right offset of the aside element"] = "Margine destro della colonna laterale";
$a->strings["Light (Hubzilla default)"] = "Light (predefinito)";
$a->strings["Select scheme"] = "Scegli uno schema";
$a->strings["Narrow navbar"] = "Barra di navigazione ristretta";
$a->strings["Navigation bar background color"] = "Barra di navigazione: Colore di sfondo";
$a->strings["Navigation bar gradient top color"] = "Barra di navigazione: Gradiente superiore";
$a->strings["Navigation bar gradient bottom color"] = "Barra di navigazione: Gradiente inferiore";
$a->strings["Navigation active button gradient top color"] = "Bottone di navigazione attivo: Gradiente superiore";
$a->strings["Navigation active button gradient bottom color"] = "Bottone di navigazione attivo: Gradiente inferiore";
$a->strings["Navigation bar border color "] = "Barra di navigazione: Colore del bordo";
$a->strings["Navigation bar icon color "] = "Barra di navigazione: Colore delle icone";
$a->strings["Navigation bar active icon color "] = "Barra di navigazione: Colore dell'icona attiva";
$a->strings["link color"] = "colore del link";
$a->strings["Set font-color for banner"] = "Colore del font del banner";
$a->strings["Set the background color"] = "Imposta il colore di sfondo";
$a->strings["Set the background image"] = "Immagine di sfondo";
$a->strings["Set the background color of items"] = "Imposta il colore di sfondo degli oggetti";
$a->strings["Set the background color of comments"] = "Imposta il colore di sfondo dei commenti";
$a->strings["Set the border color of comments"] = "Imposta il colore del bordo dei commenti";
$a->strings["Set the indent for comments"] = "Imposta il lo spostamento a destra dei commenti";
$a->strings["Set the basic color for item icons"] = "Colore di base per le icone";
$a->strings["Set the hover color for item icons"] = "Colore per le icone in mouse-over";
$a->strings["Set font-size for the entire application"] = "Dimensione font per tutto il sito";
$a->strings["Example: 14px"] = "Esempio: 14px";
$a->strings["Set font-color for posts and comments"] = "Imposta il colore del carattere per articoli e commenti";
$a->strings["Set radius of corners"] = "Raggio degli angoli stondati";
$a->strings["Set shadow depth of photos"] = "Profondità dell'ombra delle foto";
$a->strings["Set maximum width of content region in pixel"] = "Larghezza massima dell'area dei contenuti in pixel";
$a->strings["Leave empty for default width"] = "Lascia vuoto per usare il valore predefinito";
$a->strings["Center page content"] = "Centra il contenuto della pagina";
$a->strings["Set minimum opacity of nav bar - to hide it"] = "Imposta l'opacità minima della barra di navigazione per nasconderla";
$a->strings["Set size of conversation author photo"] = "Dimensione foto dell'autore della conversazione";
$a->strings["Set size of followup author photos"] = "Dimensione foto dei partecipanti alla conversazione";
$a->strings["Update %s failed. See error logs."] = "%s: aggiornamento fallito. Controlla i log di errore.";
$a->strings["Update Error at %s"] = "Errore di aggiornamento su %s";
$a->strings["Create an account to access services and applications within the Hubzilla"] = "Registrati per accedere ai servizi e alle applicazioni di Hubzilla";
$a->strings["Password"] = "Password";
$a->strings["Remember me"] = "Resta connesso";
$a->strings["Forgot your password?"] = "Hai dimenticato la password?";
$a->strings["toggle mobile"] = "attiva/disattiva versione mobile";
$a->strings["Website SSL certificate is not valid. Please correct."] = "Il certificato SSL del sito non è valido. Si prega di intervenire.";
$a->strings["[red] Website SSL error for %s"] = "[red] Errore SSL %s ";
$a->strings["Cron/Scheduled tasks not running."] = "Processi/cron non avviati.";
$a->strings["[red] Cron tasks not running on %s"] = "[red] Processi non avviati su %s";
$a->strings["Source of Item"] = "Sorgente dell'Elemento";