aboutsummaryrefslogtreecommitdiffstats
path: root/view/it/hstrings.php
blob: 7cc19599b44e1cba177d553d50ec6b25feca3367 (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
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
<?php

if(! function_exists("string_plural_select_it")) {
function string_plural_select_it($n){
	return ($n != 1);;
}}
;
App::$strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "L'autenticazione tramite il tuo hub non è disponibile. Puoi provare a disconnetterti per tentare di nuovo.";
App::$strings["Welcome %s. Remote authentication successful."] = "Ciao %s. L'accesso tramite il tuo hub è avvenuto con successo.";
App::$strings["parent"] = "cartella superiore";
App::$strings["Collection"] = "Cartella";
App::$strings["Principal"] = "Principale";
App::$strings["Addressbook"] = "Rubrica";
App::$strings["Calendar"] = "Calendario";
App::$strings["Schedule Inbox"] = "Appuntamenti ricevuti";
App::$strings["Schedule Outbox"] = "Appuntamenti inviati";
App::$strings["Unknown"] = "Sconosciuto";
App::$strings["Files"] = "Archivio file";
App::$strings["Total"] = "Totale";
App::$strings["Shared"] = "Condiviso";
App::$strings["Create"] = "Crea";
App::$strings["Upload"] = "Carica";
App::$strings["Name"] = "Nome";
App::$strings["Type"] = "Tipo";
App::$strings["Size"] = "Dimensione";
App::$strings["Last Modified"] = "Ultima modifica";
App::$strings["Edit"] = "Modifica";
App::$strings["Delete"] = "Elimina";
App::$strings["You are using %1\$s of your available file storage."] = "Stai usando %1\$s dello spazio disponibile per i tuoi file.";
App::$strings["You are using %1\$s of %2\$s available file storage. (%3\$s&#37;)"] = "Stai usando %1\$s di %2\$s che hai a disposizione per i file. (%3\$s&#37;)";
App::$strings["WARNING:"] = "ATTENZIONE:";
App::$strings["Create new folder"] = "Nuova cartella";
App::$strings["Upload file"] = "Carica un file";
App::$strings["Permission denied."] = "Permesso negato.";
App::$strings["Not Found"] = "Non disponibile";
App::$strings["Page not found."] = "Pagina non trovata.";
App::$strings["Connect"] = "Aggiungi";
App::$strings["New window"] = "Nuova finestra";
App::$strings["Open the selected location in a different window or browser tab"] = "Apri l'indirizzo selezionato in una nuova scheda o finestra";
App::$strings["User '%s' deleted"] = "Utente '%s' eliminato";
App::$strings["No username found in import file."] = "Impossibile trovare il nome utente nel file da importare.";
App::$strings["Unable to create a unique channel address. Import failed."] = "Impossibile creare un indirizzo univoco per il canale. L'import è fallito.";
App::$strings["Import completed."] = "L'importazione è terminata con successo.";
App::$strings["Not a valid email address"] = "Email non valida";
App::$strings["Your email domain is not among those allowed on this site"] = "Il dominio della tua email attualmente non è permesso su questo sito";
App::$strings["Your email address is already registered at this site."] = "La tua email è già registrata su questo sito.";
App::$strings["An invitation is required."] = "È necessario un invito.";
App::$strings["Invitation could not be verified."] = "L'invito non può essere verificato.";
App::$strings["Please enter the required information."] = "Inserisci le informazioni richieste.";
App::$strings["Failed to store account information."] = "Non è stato possibile salvare le informazioni del tuo account.";
App::$strings["Registration confirmation for %s"] = "Registrazione di %s confermata";
App::$strings["Registration request at %s"] = "Richiesta di registrazione su %s";
App::$strings["Administrator"] = "Amministratore";
App::$strings["your registration password"] = "la password di registrazione";
App::$strings["Registration details for %s"] = "Dettagli della registrazione di %s";
App::$strings["Account approved."] = "Account approvato.";
App::$strings["Registration revoked for %s"] = "Registrazione revocata per %s";
App::$strings["Account verified. Please login."] = "Registrazione verificata. Adesso puoi effettuare login.";
App::$strings["Click here to upgrade."] = "Clicca qui per aggiornare.";
App::$strings["This action exceeds the limits set by your subscription plan."] = "Questa operazione supera i limiti del tuo abbonamento.";
App::$strings["This action is not available under your subscription plan."] = "Questa operazione non è prevista dal tuo abbonamento.";
App::$strings["Visible to your default audience"] = "Visibile secondo le impostazioni predefinite";
App::$strings["Show"] = "Mostra";
App::$strings["Don't show"] = "Non mostrare";
App::$strings["Other networks and post services"] = "Invio ad altre reti o a siti esterni";
App::$strings["Permissions"] = "Permessi";
App::$strings["Close"] = "Chiudi";
App::$strings[" and "] = "e";
App::$strings["public profile"] = "profilo pubblico";
App::$strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s ha cambiato %2\$s in &ldquo;%3\$s&rdquo;";
App::$strings["Visit %1\$s's %2\$s"] = "Guarda %2\$s di %1\$s ";
App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha aggiornato %2\$s cambiando %3\$s.";
App::$strings["Public Timeline"] = "Diario pubblico";
App::$strings["Site Admin"] = "Amministrazione sito";
App::$strings["Bookmarks"] = "Segnalibri";
App::$strings["Address Book"] = "Rubrica";
App::$strings["Login"] = "Accedi";
App::$strings["Channel Manager"] = "Gestione canali";
App::$strings["Grid"] = "Rete";
App::$strings["Settings"] = "Impostazioni";
App::$strings["Webpages"] = "Pagine web";
App::$strings["Channel Home"] = "Bacheca del canale";
App::$strings["Profile"] = "Profilo";
App::$strings["Photos"] = "Foto";
App::$strings["Events"] = "Eventi";
App::$strings["Directory"] = "Elenchi pubblici dei canali";
App::$strings["Help"] = "Guida";
App::$strings["Mail"] = "Messaggi";
App::$strings["Mood"] = "Umore";
App::$strings["Poke"] = "Poke";
App::$strings["Chat"] = "Chat";
App::$strings["Search"] = "Cerca";
App::$strings["Probe"] = "Diagnostica";
App::$strings["Suggest"] = "Suggerisci";
App::$strings["Random Channel"] = "Canale casuale";
App::$strings["Invite"] = "Invita";
App::$strings["Features"] = "Funzionalità";
App::$strings["Language"] = "Lingua";
App::$strings["Post"] = "Post";
App::$strings["Profile Photo"] = "Foto del profilo";
App::$strings["Update"] = "Aggiorna";
App::$strings["Install"] = "Installa";
App::$strings["Purchase"] = "Acquista";
App::$strings["Logged out."] = "Uscita effettuata.";
App::$strings["Failed authentication"] = "Autenticazione fallita";
App::$strings["Login failed."] = "Accesso fallito.";
App::$strings["Attachments:"] = "Allegati:";
App::$strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i";
App::$strings["\$Projectname event notification:"] = "Notifica evento \$Projectname:";
App::$strings["Starts:"] = "Inizio:";
App::$strings["Finishes:"] = "Fine:";
App::$strings["Location:"] = "Luogo:";
App::$strings["%1\$s's bookmarks"] = "I segnalibri di %1\$s";
App::$strings["Missing room name"] = "Chat senza nome";
App::$strings["Duplicate room name"] = "Il nome della chat è duplicato";
App::$strings["Invalid room specifier."] = "Il nome della chat non è valido.";
App::$strings["Room not found."] = "Chat non trovata.";
App::$strings["Room is full"] = "La chat è al completo";
App::$strings["Default"] = "Predefinito";
App::$strings["%d invitation available"] = array(
	0 => "%d invito disponibile",
	1 => "%d inviti disponibili",
);
App::$strings["Advanced"] = "Avanzate";
App::$strings["Find Channels"] = "Ricerca canali";
App::$strings["Enter name or interest"] = "Scrivi un nome o un interesse";
App::$strings["Connect/Follow"] = "Aggiungi";
App::$strings["Examples: Robert Morgenstein, Fishing"] = "Per esempio: Mario Rossi, Pesca";
App::$strings["Find"] = "Cerca";
App::$strings["Channel Suggestions"] = "Canali suggeriti";
App::$strings["Random Profile"] = "Profilo casuale";
App::$strings["Invite Friends"] = "Invita amici";
App::$strings["Advanced example: name=fred and country=iceland"] = "Per esempio: name=mario e country=italy";
App::$strings["Saved Folders"] = "Cartelle salvate";
App::$strings["Everything"] = "Tutto";
App::$strings["Categories"] = "Categorie";
App::$strings["%d connection in common"] = array(
	0 => "%d contatto in comune",
	1 => "%d contatti in comune",
);
App::$strings["show more"] = "mostra tutto";
App::$strings["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'";
App::$strings["Directory Options"] = "Visibilità negli elenchi pubblici";
App::$strings["Safe Mode"] = "Modalità SafeSearch";
App::$strings["No"] = "No";
App::$strings["Yes"] = "Sì";
App::$strings["Public Forums Only"] = "Solo forum pubblici";
App::$strings["This Website Only"] = "Solo in questo sito";
App::$strings["This event has been added to your calendar."] = "Questo evento è stato aggiunto al tuo calendario";
App::$strings["event"] = "l'evento";
App::$strings["Not specified"] = "Non specificato";
App::$strings["Needs Action"] = "Necessita di un intervento";
App::$strings["Completed"] = "Completato";
App::$strings["In Process"] = "In corso";
App::$strings["Cancelled"] = "Annullato";
App::$strings["Channel is blocked on this site."] = "Il canale è bloccato per questo sito.";
App::$strings["Channel location missing."] = "Manca l'indirizzo del canale.";
App::$strings["Response from remote channel was incomplete."] = "La risposta dal canale non è completa.";
App::$strings["Channel was deleted and no longer exists."] = "Il canale è stato rimosso e non esiste più.";
App::$strings["Protocol disabled."] = "Protocollo disabilitato.";
App::$strings["Channel discovery failed."] = "La ricerca del canale non ha avuto successo.";
App::$strings["local account not found."] = "l'account locale non è stato trovato.";
App::$strings["Cannot connect to yourself."] = "Non puoi connetterti a te stesso.";
App::$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.";
App::$strings["Channel clone failed. Import failed."] = "Impossibile clonare il canale. L'importazione è fallita.";
App::$strings["Cloned channel not found. Import failed."] = "Impossibile trovare il canale clonato. L'importazione è fallita.";
App::$strings["Delete this item?"] = "Eliminare questo elemento?";
App::$strings["Comment"] = "Commento";
App::$strings["[+] show all"] = "[+] mostra tutto";
App::$strings["[-] show less"] = "[-] riduci";
App::$strings["[+] expand"] = "[+] mostra tutto";
App::$strings["[-] collapse"] = "[-] riduci";
App::$strings["Password too short"] = "Password troppo corta";
App::$strings["Passwords do not match"] = "Le password non corrispondono";
App::$strings["everybody"] = "tutti";
App::$strings["Secret Passphrase"] = "Parola chiave per decifrare";
App::$strings["Passphrase hint"] = "Suggerimento per la parola chiave";
App::$strings["Notice: Permissions have changed but have not yet been submitted."] = "Nota: i permessi sono stati modificati ma non ancora salvati.";
App::$strings["close all"] = "chiudi tutto";
App::$strings["Nothing new here"] = "Niente di nuovo qui";
App::$strings["Rate This Channel (this is public)"] = "Valuta questo canale (visibile a tutti)";
App::$strings["Rating"] = "Valutazioni";
App::$strings["Describe (optional)"] = "Descrizione (facoltativa)";
App::$strings["Submit"] = "Salva";
App::$strings["Please enter a link URL"] = "Inserisci l'URL di un link";
App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = "Non hai salvato i cambiamenti. Vuoi davvero lasciare questa pagina?";
App::$strings["Location"] = "Posizione geografica";
App::$strings["timeago.prefixAgo"] = "timeago.prefixAgo";
App::$strings["timeago.prefixFromNow"] = "timeago.prefixFromNow";
App::$strings["ago"] = "fa";
App::$strings["from now"] = "da adesso";
App::$strings["less than a minute"] = "meno di un minuto";
App::$strings["about a minute"] = "circa un minuto";
App::$strings["%d minutes"] = "%d minuti";
App::$strings["about an hour"] = "circa un’ora";
App::$strings["about %d hours"] = "circa %d ore";
App::$strings["a day"] = "un giorno";
App::$strings["%d days"] = "%d giorni";
App::$strings["about a month"] = "circa un mese";
App::$strings["%d months"] = "%d mesi";
App::$strings["about a year"] = "circa un anno";
App::$strings["%d years"] = "%d anni";
App::$strings[" "] = " ";
App::$strings["timeago.numbers"] = "timeago.numbers";
App::$strings["January"] = "gennaio";
App::$strings["February"] = "febbraio";
App::$strings["March"] = "marzo";
App::$strings["April"] = "aprile";
App::$strings["__ctx:long__ May"] = "maggio";
App::$strings["June"] = "giugno";
App::$strings["July"] = "luglio";
App::$strings["August"] = "agosto";
App::$strings["September"] = "settembre";
App::$strings["October"] = "ottobre";
App::$strings["November"] = "novembre";
App::$strings["December"] = "dicembre";
App::$strings["Jan"] = "Gen";
App::$strings["Feb"] = "Feb";
App::$strings["Mar"] = "Mar";
App::$strings["Apr"] = "Apr";
App::$strings["__ctx:short__ May"] = "maggio";
App::$strings["Jun"] = "Mag";
App::$strings["Jul"] = "Giu";
App::$strings["Aug"] = "Ago";
App::$strings["Sep"] = "Set";
App::$strings["Oct"] = "Ott";
App::$strings["Nov"] = "Nov";
App::$strings["Dec"] = "Dic";
App::$strings["Sunday"] = "domenica";
App::$strings["Monday"] = "lunedì";
App::$strings["Tuesday"] = "martedì";
App::$strings["Wednesday"] = "mercoledì";
App::$strings["Thursday"] = "giovedì";
App::$strings["Friday"] = "venerdì";
App::$strings["Saturday"] = "sabato";
App::$strings["Sun"] = "Dom";
App::$strings["Mon"] = "Lun";
App::$strings["Tue"] = "Mar";
App::$strings["Wed"] = "Mer";
App::$strings["Thu"] = "Gio";
App::$strings["Fri"] = "Ven";
App::$strings["Sat"] = "Sab";
App::$strings["__ctx:calendar__ today"] = "oggi";
App::$strings["__ctx:calendar__ month"] = "mese";
App::$strings["__ctx:calendar__ week"] = "settimana";
App::$strings["__ctx:calendar__ day"] = "giorno";
App::$strings["__ctx:calendar__ All day"] = "Tutto il giorno";
App::$strings["No recipient provided."] = "Devi scegliere un destinatario.";
App::$strings["[no subject]"] = "[nessun titolo]";
App::$strings["Unable to determine sender."] = "Impossibile determinare il mittente.";
App::$strings["Stored post could not be verified."] = "Non è stato possibile verificare il post.";
App::$strings["Logout"] = "Esci";
App::$strings["End this session"] = "Chiudi questa sessione";
App::$strings["Home"] = "Bacheca";
App::$strings["Your posts and conversations"] = "I tuoi post e conversazioni";
App::$strings["View Profile"] = "Profilo";
App::$strings["Your profile page"] = "Il tuo profilo";
App::$strings["Edit Profiles"] = "Modifica i tuoi profili";
App::$strings["Manage/Edit profiles"] = "Gestisci i tuoi profili";
App::$strings["Edit Profile"] = "Modifica il profilo";
App::$strings["Edit your profile"] = "Modifica il tuo profilo";
App::$strings["Your photos"] = "Le tue foto";
App::$strings["Your files"] = "I tuoi file";
App::$strings["Your chatrooms"] = "Le tue chat";
App::$strings["Your bookmarks"] = "I tuoi segnalibri";
App::$strings["Your webpages"] = "Le tue pagine web";
App::$strings["Sign in"] = "Accedi";
App::$strings["%s - click to logout"] = "%s - clicca per uscire";
App::$strings["Remote authentication"] = "Accedi dal tuo hub";
App::$strings["Click to authenticate to your home hub"] = "Clicca per farti riconoscere dal tuo hub principale";
App::$strings["Home Page"] = "Bacheca";
App::$strings["Register"] = "Registrati";
App::$strings["Create an account"] = "Crea un account";
App::$strings["Help and documentation"] = "Guida e documentazione";
App::$strings["Apps"] = "App";
App::$strings["Applications, utilities, links, games"] = "Applicazioni, utilità, link, giochi";
App::$strings["Search site @name, #tag, ?docs, content"] = "Cerca nel sito per @nome, #tag, ?guida o per contenuto";
App::$strings["Channel Directory"] = "Elenchi pubblici dei canali";
App::$strings["Your grid"] = "La tua rete";
App::$strings["Mark all grid notifications seen"] = "Segna come lette le notifiche della tua rete";
App::$strings["Channel home"] = "Bacheca del canale";
App::$strings["Mark all channel notifications seen"] = "Segna come lette le notifiche del canale";
App::$strings["Connections"] = "Contatti";
App::$strings["Notices"] = "Avvisi";
App::$strings["Notifications"] = "Notifiche";
App::$strings["See all notifications"] = "Vedi tutte le notifiche";
App::$strings["Mark all system notifications seen"] = "Segna come lette le notifiche di sistema";
App::$strings["Private mail"] = "Messaggi privati";
App::$strings["See all private messages"] = "Guarda tutti i messaggi privati";
App::$strings["Mark all private messages seen"] = "Segna come letti tutti i messaggi privati";
App::$strings["Inbox"] = "In arrivo";
App::$strings["Outbox"] = "Inviati";
App::$strings["New Message"] = "Nuovo messaggio";
App::$strings["Event Calendar"] = "Calendario";
App::$strings["See all events"] = "Guarda tutti gli eventi";
App::$strings["Mark all events seen"] = "Marca come letti tutti gli eventi";
App::$strings["Manage Your Channels"] = "Gestisci i tuoi canali";
App::$strings["Account/Channel Settings"] = "Impostazioni dell'account e del canale";
App::$strings["Admin"] = "Amministrazione";
App::$strings["Site Setup and Configuration"] = "Installazione e configurazione del sito";
App::$strings["Loading..."] = "Caricamento in corso...";
App::$strings["@name, #tag, ?doc, content"] = "@nome, #tag, ?guida, contenuto";
App::$strings["Please wait..."] = "Attendere...";
App::$strings["created a new post"] = "Ha creato un nuovo post";
App::$strings["commented on %s's post"] = "ha commentato il post di %s";
App::$strings["New Page"] = "Nuova pagina web";
App::$strings["View"] = "Guarda";
App::$strings["Preview"] = "Anteprima";
App::$strings["Actions"] = "Azioni";
App::$strings["Page Link"] = "Link alla pagina";
App::$strings["Title"] = "Titolo";
App::$strings["Created"] = "Creato";
App::$strings["Edited"] = "Modificato";
App::$strings["Profile Photos"] = "Foto del profilo";
App::$strings["Image/photo"] = "Immagine";
App::$strings["Encrypted content"] = "Contenuto cifrato";
App::$strings["Install %s element: "] = "Installa l'elemento %s:";
App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Questo post contiene un elemento %s installabile, tuttavia non hai i permessi necessari per l'installazione.";
App::$strings["webpage"] = "pagina web";
App::$strings["layout"] = "layout";
App::$strings["block"] = "block";
App::$strings["menu"] = "menu";
App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s ha scritto %2\$s %3\$s";
App::$strings["post"] = "il post";
App::$strings["Different viewers will see this text differently"] = "Ad altri questo testo potrebbe apparire in modo differente";
App::$strings["$1 spoiler"] = "$1 spoiler";
App::$strings["$1 wrote:"] = "$1 ha scritto:";
App::$strings["Male"] = "Maschio";
App::$strings["Female"] = "Femmina";
App::$strings["Currently Male"] = "Al momento maschio";
App::$strings["Currently Female"] = "Al momento femmina";
App::$strings["Mostly Male"] = "Prevalentemente maschio";
App::$strings["Mostly Female"] = "Prevalentemente femmina";
App::$strings["Transgender"] = "Transgender";
App::$strings["Intersex"] = "Intersex";
App::$strings["Transsexual"] = "Transessuale";
App::$strings["Hermaphrodite"] = "Ermafrodito";
App::$strings["Neuter"] = "Neutro";
App::$strings["Non-specific"] = "Non specificato";
App::$strings["Other"] = "Altro";
App::$strings["Undecided"] = "Indeciso";
App::$strings["Males"] = "Maschi";
App::$strings["Females"] = "Femmine";
App::$strings["Gay"] = "Gay";
App::$strings["Lesbian"] = "Lesbica";
App::$strings["No Preference"] = "Senza preferenza";
App::$strings["Bisexual"] = "Bisessuale";
App::$strings["Autosexual"] = "Autosessuale";
App::$strings["Abstinent"] = "Astinente";
App::$strings["Virgin"] = "Vergine";
App::$strings["Deviant"] = "Deviato";
App::$strings["Fetish"] = "Feticista";
App::$strings["Oodles"] = "Un sacco";
App::$strings["Nonsexual"] = "Asessuato";
App::$strings["Single"] = "Single";
App::$strings["Lonely"] = "Da solo";
App::$strings["Available"] = "Disponibile";
App::$strings["Unavailable"] = "Non disponibile";
App::$strings["Has crush"] = "Ha una cotta";
App::$strings["Infatuated"] = "Infatuato/a";
App::$strings["Dating"] = "Disponibile a un incontro";
App::$strings["Unfaithful"] = "Infedele";
App::$strings["Sex Addict"] = "Sesso-dipendente";
App::$strings["Friends"] = "Amici";
App::$strings["Friends/Benefits"] = "Amici con qualcosa in più";
App::$strings["Casual"] = "Casual";
App::$strings["Engaged"] = "Impegnato";
App::$strings["Married"] = "Sposato/a";
App::$strings["Imaginarily married"] = "Con matrimonio immaginario";
App::$strings["Partners"] = "Partner";
App::$strings["Cohabiting"] = "Convivente";
App::$strings["Common law"] = "Matrimonio regolare";
App::$strings["Happy"] = "Felice";
App::$strings["Not looking"] = "Non in cerca";
App::$strings["Swinger"] = "Scambista";
App::$strings["Betrayed"] = "Tradito/a";
App::$strings["Separated"] = "Separato/a";
App::$strings["Unstable"] = "Instabile";
App::$strings["Divorced"] = "Divorziato/a";
App::$strings["Imaginarily divorced"] = "Sogna il divorzio";
App::$strings["Widowed"] = "Vedovo/a";
App::$strings["Uncertain"] = "Incerto/a";
App::$strings["It's complicated"] = "Relazione complicata";
App::$strings["Don't care"] = "Chi se ne frega";
App::$strings["Ask me"] = "Chiedimelo";
App::$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.";
App::$strings["Tags"] = "Tag";
App::$strings["Keywords"] = "Parole chiave";
App::$strings["have"] = "ho";
App::$strings["has"] = "ha";
App::$strings["want"] = "voglio";
App::$strings["wants"] = "vuole";
App::$strings["like"] = "mi piace";
App::$strings["likes"] = "gli piace";
App::$strings["dislike"] = "non mi piace";
App::$strings["dislikes"] = "non gli piace";
App::$strings["__ctx:noun__ Like"] = array(
	0 => "Mi piace",
	1 => "Mi piace",
);
App::$strings["Invalid data packet"] = "Dati ricevuti non validi";
App::$strings["Unable to verify channel signature"] = "Impossibile verificare la firma elettronica del canale";
App::$strings["Unable to verify site signature for %s"] = "Impossibile verificare la firma elettronica del sito %s";
App::$strings["invalid target signature"] = "la firma ricevuta non è valida";
App::$strings["Item was not found."] = "Elemento non trovato.";
App::$strings["No source file."] = "Nessun file di origine.";
App::$strings["Cannot locate file to replace"] = "Il file da sostituire non è stato trovato";
App::$strings["Cannot locate file to revise/update"] = "Il file da aggiornare non è stato trovato";
App::$strings["File exceeds size limit of %d"] = "Il file supera la dimensione massima di %d";
App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Hai raggiunto il limite complessivo di %1$.0f Mbytes per gli allegati.";
App::$strings["File upload failed. Possible system limit or action terminated."] = "Caricamento file fallito, potrebbe essere stato interrotto o potrebbe aver superato lo spazio assegnato.";
App::$strings["Stored file could not be verified. Upload failed."] = "Il file non può essere verificato. Caricamento fallito.";
App::$strings["Path not available."] = "Percorso non disponibile.";
App::$strings["Empty pathname"] = "Il percorso del file è vuoto";
App::$strings["duplicate filename or path"] = "il file o il percorso del file è duplicato";
App::$strings["Path not found."] = "Percorso del file non trovato.";
App::$strings["mkdir failed."] = "mkdir fallito.";
App::$strings["database storage failed."] = "scrittura su database fallita.";
App::$strings["Empty path"] = "La posizione è vuota";
App::$strings["Frequently"] = "Frequentemente";
App::$strings["Hourly"] = "Ogni ora";
App::$strings["Twice daily"] = "Due volte al giorno";
App::$strings["Daily"] = "Ogni giorno";
App::$strings["Weekly"] = "Ogni settimana";
App::$strings["Monthly"] = "Ogni mese";
App::$strings["Friendica"] = "Friendica";
App::$strings["OStatus"] = "OStatus";
App::$strings["RSS/Atom"] = "RSS/Atom";
App::$strings["Email"] = "Email";
App::$strings["Diaspora"] = "Diaspora";
App::$strings["Facebook"] = "Facebook";
App::$strings["Zot"] = "Zot";
App::$strings["LinkedIn"] = "LinkedIn";
App::$strings["XMPP/IM"] = "XMPP/IM";
App::$strings["MySpace"] = "MySpace";
App::$strings["view full size"] = "guarda nelle dimensioni reali";
App::$strings["\$Projectname Notification"] = "Notifica \$Projectname";
App::$strings["\$projectname"] = "\$projectname";
App::$strings["Thank You,"] = "Grazie,";
App::$strings["%s Administrator"] = "L'amministratore di %s";
App::$strings["No Subject"] = "Nessun titolo";
App::$strings["Image exceeds website size limit of %lu bytes"] = "L'immagine supera il limite massimo di %lu bytes";
App::$strings["Image file is empty."] = "Il file dell'immagine è vuoto.";
App::$strings["Unable to process image"] = "Impossibile elaborare l'immagine";
App::$strings["Photo storage failed."] = "Impossibile salvare la foto.";
App::$strings["a new photo"] = "una nuova foto";
App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s ha pubblicato %2\$s su %3\$s";
App::$strings["Photo Albums"] = "Album foto";
App::$strings["Upload New Photos"] = "Carica nuove foto";
App::$strings["General Features"] = "Funzionalità di base";
App::$strings["Content Expiration"] = "Scadenza";
App::$strings["Remove posts/comments and/or private messages at a future time"] = "Elimina i post, i commenti o i messaggi privati dopo un lasso di tempo";
App::$strings["Multiple Profiles"] = "Profili multipli";
App::$strings["Ability to create multiple profiles"] = "Abilitazione a creare profili multipli";
App::$strings["Advanced Profiles"] = "Profili avanzati";
App::$strings["Additional profile sections and selections"] = "Informazioni aggiuntive del profilo";
App::$strings["Profile Import/Export"] = "Importa/esporta il profilo";
App::$strings["Save and load profile details across sites/channels"] = "Salva o ripristina le informazioni del profilo su siti diversi";
App::$strings["Web Pages"] = "Pagine web";
App::$strings["Provide managed web pages on your channel"] = "Attiva la creazione di pagine web sul tuo canale";
App::$strings["Hide Rating"] = "Nascondi le valutazioni";
App::$strings["Hide the rating buttons on your channel and profile pages. Note: People can still rate you somewhere else."] = "Nascondi i bottoni delle valutazioni sul tuo canale e sul profilo. Nota: le persone potranno comunque esprimere una valutazione altrove.";
App::$strings["Private Notes"] = "Note private";
App::$strings["Enables a tool to store notes and reminders (note: not encrypted)"] = "Abilita il riquadro per scrivere annotazioni (in chiaro)";
App::$strings["Navigation Channel Select"] = "Scegli il canale attivo dal menu";
App::$strings["Change channels directly from within the navigation dropdown menu"] = "Scegli il canale attivo direttamente dal menu di navigazione";
App::$strings["Photo Location"] = "Posizione geografica";
App::$strings["If location data is available on uploaded photos, link this to a map."] = "Collega la foto a una mappa quando contiene indicazioni geografiche.";
App::$strings["Smart Birthdays"] = "Compleanni intelligenti";
App::$strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = "Fa in modo che i compleanni siano segnalati in base al fuso orario, se hai amici sparsi per il mondo.";
App::$strings["Expert Mode"] = "Modalità esperto";
App::$strings["Enable Expert Mode to provide advanced configuration options"] = "Abilita la modalità esperto per vedere le opzioni di configurazione avanzate";
App::$strings["Premium Channel"] = "Canale premium";
App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Ti permette di impostare restrizioni e termini d'uso per il canale";
App::$strings["Post Composition Features"] = "Modalità di scrittura post";
App::$strings["Large Photos"] = "Foto grandi";
App::$strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Includi anteprime grandi per le foto dei tuoi post (1024px). Altrimenti saranno mostrate anteprime più piccole (640px)";
App::$strings["Channel Sources"] = "Sorgenti del canale";
App::$strings["Automatically import channel content from other channels or feeds"] = "Importa automaticamente il contenuto del canale da altri canali o feed";
App::$strings["Even More Encryption"] = "Cifratura addizionale";
App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Rendi possibile la crifratura aggiuntiva tra mittente e destinatario usando una parola chiave conosciuta a entrambi";
App::$strings["Enable Voting Tools"] = "Permetti i post con votazione";
App::$strings["Provide a class of post which others can vote on"] = "Rende possibile la creazione di post in cui sarà possibile votare";
App::$strings["Delayed Posting"] = "Pubblicazione ritardata";
App::$strings["Allow posts to be published at a later date"] = "Per scegliere una data e un'ora a cui far uscire i post";
App::$strings["Suppress Duplicate Posts/Comments"] = "Impedisci post e commenti duplicati";
App::$strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = "Scarta post e commenti se sono identici ad altri inviati meno di due minuti prima.";
App::$strings["Network and Stream Filtering"] = "Filtraggio dei contenuti";
App::$strings["Search by Date"] = "Ricerca per data";
App::$strings["Ability to select posts by date ranges"] = "Per selezionare i post in un intervallo tra date";
App::$strings["Privacy Groups"] = "Gruppi di canali";
App::$strings["Enable management and selection of privacy groups"] = "Abilita i gruppi di canali";
App::$strings["Saved Searches"] = "Ricerche salvate";
App::$strings["Save search terms for re-use"] = "Salva i termini delle ricerche per poterle ripetere";
App::$strings["Network Personal Tab"] = "Attività personale";
App::$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";
App::$strings["Network New Tab"] = "Contenuti nuovi";
App::$strings["Enable tab to display all new Network activity"] = "Abilita il link per visualizzare solo i nuovi contenuti";
App::$strings["Affinity Tool"] = "Filtro per affinità";
App::$strings["Filter stream activity by depth of relationships"] = "Permette di selezionare i contenuti in base al livello di amicizia";
App::$strings["Connection Filtering"] = "Filtro sui contatti";
App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filtra i post che ricevi con parole chiave";
App::$strings["Suggest Channels"] = "Suggerisci canali";
App::$strings["Show channel suggestions"] = "Mostra alcuni canali che potrebbero interessarti";
App::$strings["Post/Comment Tools"] = "Gestione post e commenti";
App::$strings["Community Tagging"] = "Tag della comunità";
App::$strings["Ability to tag existing posts"] = "Permetti l'aggiunta di tag su post già esistenti";
App::$strings["Post Categories"] = "Categorie dei post";
App::$strings["Add categories to your posts"] = "Abilita le categorie per i tuoi post";
App::$strings["Ability to file posts under folders"] = "Abilita la raccolta dei tuoi articoli in cartelle";
App::$strings["Dislike Posts"] = "Non mi piace";
App::$strings["Ability to dislike posts/comments"] = "Abilità la funzionalità \"non mi piace\" per i tuoi post";
App::$strings["Star Posts"] = "Post con stella";
App::$strings["Ability to mark special posts with a star indicator"] = "Mostra la stella per segnare i post preferiti";
App::$strings["Tag Cloud"] = "Nuvola di tag";
App::$strings["Provide a personal tag cloud on your channel page"] = "Mostra la nuvola dei tag che usi di più sulla pagina del tuo canale";
App::$strings["System"] = "Sistema";
App::$strings["Personal"] = "Personali";
App::$strings["Create Personal App"] = "Crea app personale";
App::$strings["Edit Personal App"] = "Modifica app personale";
App::$strings["Ignore/Hide"] = "Ignora/nascondi";
App::$strings["Suggestions"] = "Suggerimenti";
App::$strings["See more..."] = "Altro...";
App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Hai attivato %1$.0f delle %2$.0f connessioni permesse.";
App::$strings["Add New Connection"] = "Aggiungi un contatto";
App::$strings["Enter channel address"] = "Indirizzo del canale";
App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Per esempio: bob@example.com, https://example.com/barbara";
App::$strings["Notes"] = "Note";
App::$strings["Save"] = "Salva";
App::$strings["Remove term"] = "Rimuovi termine";
App::$strings["add"] = "aggiungi";
App::$strings["Archives"] = "Archivi";
App::$strings["Me"] = "Me";
App::$strings["Family"] = "Famiglia";
App::$strings["Acquaintances"] = "Conoscenti";
App::$strings["All"] = "Tutti";
App::$strings["Refresh"] = "Aggiorna";
App::$strings["Account settings"] = "Il tuo account";
App::$strings["Channel settings"] = "Impostazioni del canale";
App::$strings["Additional features"] = "Funzionalità opzionali";
App::$strings["Feature/Addon settings"] = "Componenti aggiuntivi";
App::$strings["Display settings"] = "Aspetto";
App::$strings["Connected apps"] = "App connesse";
App::$strings["Export channel"] = "Esporta il canale";
App::$strings["Connection Default Permissions"] = "Permessi predefiniti dei nuovi contatti";
App::$strings["Premium Channel Settings"] = "Canale premium - impostazioni";
App::$strings["Private Mail Menu"] = "Menu messaggi privati";
App::$strings["Combined View"] = "Vista combinata";
App::$strings["Conversations"] = "Conversazioni";
App::$strings["Received Messages"] = "Ricevuti";
App::$strings["Sent Messages"] = "Inviati";
App::$strings["No messages."] = "Nessun messaggio.";
App::$strings["Delete conversation"] = "Elimina la conversazione";
App::$strings["Events Menu"] = "Menu eventi";
App::$strings["Day View"] = "Eventi del giorno";
App::$strings["Week View"] = "Eventi della settimana";
App::$strings["Month View"] = "Eventi del mese";
App::$strings["Export"] = "Esporta";
App::$strings["Import"] = "Importa";
App::$strings["Events Tools"] = "Gestione eventi";
App::$strings["Export Calendar"] = "Esporta calendario";
App::$strings["Import Calendar"] = "Importa calendario";
App::$strings["Chat Rooms"] = "Chat";
App::$strings["Bookmarked Chatrooms"] = "Chat nei segnalibri";
App::$strings["Suggested Chatrooms"] = "Chat suggerite";
App::$strings["photo/image"] = "foto/immagine";
App::$strings["Click to show more"] = "Clicca per mostrare tutto";
App::$strings["Rating Tools"] = "Valutazione";
App::$strings["Rate Me"] = "Valutami";
App::$strings["View Ratings"] = "Vedi le valutazioni ricevute";
App::$strings["Public Hubs"] = "Hub pubblici";
App::$strings["Forums"] = "Forum";
App::$strings["Tasks"] = "Attività";
App::$strings["Documentation"] = "Guida";
App::$strings["Project/Site Information"] = "Informazioni sul sito/progetto";
App::$strings["For Members"] = "Per gli utenti";
App::$strings["For Administrators"] = "Per gli amministratori";
App::$strings["For Developers"] = "Per sviluppatori";
App::$strings["Site"] = "Sito";
App::$strings["Accounts"] = "Account";
App::$strings["Member registrations waiting for confirmation"] = "Richieste di registrazione in attesa di conferma";
App::$strings["Channels"] = "Canali";
App::$strings["Security"] = "Sicurezza";
App::$strings["Plugins"] = "Plugin";
App::$strings["Themes"] = "Temi";
App::$strings["Inspect queue"] = "Coda di attesa";
App::$strings["Profile Fields"] = "Campi del profilo";
App::$strings["DB updates"] = "Aggiornamenti al DB";
App::$strings["Logs"] = "Log";
App::$strings["Plugin Features"] = "Plugin";
App::$strings["View Photo"] = "Guarda la foto";
App::$strings["Edit Album"] = "Modifica album";
App::$strings["prev"] = "prec";
App::$strings["first"] = "inizio";
App::$strings["last"] = "fine";
App::$strings["next"] = "succ";
App::$strings["older"] = "più recenti";
App::$strings["newer"] = "più nuovi";
App::$strings["No connections"] = "Nessun contatto";
App::$strings["View all %s connections"] = "Mostra tutti i %s contatti";
App::$strings["poke"] = "poke";
App::$strings["poked"] = "ha mandato un poke";
App::$strings["ping"] = "ping";
App::$strings["pinged"] = "ha effettuato un ping";
App::$strings["prod"] = "spintone";
App::$strings["prodded"] = "ha ricevuto uno spintone";
App::$strings["slap"] = "schiaffo";
App::$strings["slapped"] = "ha ricevuto uno schiaffo";
App::$strings["finger"] = "finger";
App::$strings["fingered"] = "ha ricevuto un finger";
App::$strings["rebuff"] = "rifiuto";
App::$strings["rebuffed"] = "ha ricevuto un rifiuto";
App::$strings["happy"] = "felice";
App::$strings["sad"] = "triste";
App::$strings["mellow"] = "calmo";
App::$strings["tired"] = "stanco";
App::$strings["perky"] = "vivace";
App::$strings["angry"] = "arrabbiato";
App::$strings["stupefied"] = "stupito";
App::$strings["puzzled"] = "confuso";
App::$strings["interested"] = "attento";
App::$strings["bitter"] = "amaro";
App::$strings["cheerful"] = "allegro";
App::$strings["alive"] = "vivace";
App::$strings["annoyed"] = "seccato";
App::$strings["anxious"] = "ansioso";
App::$strings["cranky"] = "irritabile";
App::$strings["disturbed"] = "turbato";
App::$strings["frustrated"] = "frustrato";
App::$strings["depressed"] = "in depressione";
App::$strings["motivated"] = "motivato";
App::$strings["relaxed"] = "rilassato";
App::$strings["surprised"] = "sorpreso";
App::$strings["May"] = "Mag";
App::$strings["Unknown Attachment"] = "Allegato non riconoscuto";
App::$strings["unknown"] = "sconosciuta";
App::$strings["remove category"] = "rimuovi la categoria";
App::$strings["remove from file"] = "rimuovi dal file";
App::$strings["Click to open/close"] = "Clicca per aprire/chiudere";
App::$strings["Link to Source"] = "Link al sito d'origine";
App::$strings["default"] = "predefinito";
App::$strings["Page layout"] = "Layout della pagina";
App::$strings["You can create your own with the layouts tool"] = "Puoi creare un tuo layout dalla configurazione delle pagine web";
App::$strings["Page content type"] = "Tipo di contenuto della pagina";
App::$strings["Select an alternate language"] = "Seleziona una lingua diversa";
App::$strings["photo"] = "la foto";
App::$strings["status"] = "il messaggio di stato";
App::$strings["comment"] = "il commento";
App::$strings["activity"] = "l'attività";
App::$strings["Design Tools"] = "Strumenti di design";
App::$strings["Blocks"] = "Block";
App::$strings["Menus"] = "Menù";
App::$strings["Layouts"] = "Layout";
App::$strings["Pages"] = "Pagine";
App::$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."] = "Un gruppo di canali con lo stesso nome esisteva in precedenza ed è stato ripristinato. I vecchi permessi saranno applicati ai nuovi canali. Se non vuoi che ciò accada, devi creare un gruppo con un nome diverso.";
App::$strings["Add new connections to this privacy group"] = "Aggiungi nuovi contatti a questo gruppo di canali";
App::$strings["All Channels"] = "Tutti i canali";
App::$strings["edit"] = "modifica";
App::$strings["Edit group"] = "Modifica il gruppo";
App::$strings["Add privacy group"] = "Crea un gruppo di canali";
App::$strings["Channels not in any privacy group"] = "Canali che non sono in nessun gruppo";
App::$strings["%s <!item_type!>"] = "%s <!item_type!>";
App::$strings["[Hubzilla:Notify] New mail received at %s"] = "[Hubzilla] Nuovo messaggio su %s";
App::$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.";
App::$strings["%1\$s sent you %2\$s."] = "%1\$s ti ha mandato %2\$s.";
App::$strings["a private message"] = "un messaggio privato";
App::$strings["Please visit %s to view and/or reply to your private messages."] = "Visita %s per leggere i tuoi messaggi privati e rispondere.";
App::$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]";
App::$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]";
App::$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]";
App::$strings["[Hubzilla:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Hubzilla] Nuovo commento di %2\$s alla conversazione #%1\$d";
App::$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.";
App::$strings["Please visit %s to view and/or reply to the conversation."] = "Visita %s per leggere o commentare la conversazione.";
App::$strings["[Hubzilla:Notify] %s posted to your profile wall"] = "[Hubzilla] %s ha scritto sulla tua bacheca";
App::$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";
App::$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]";
App::$strings["[Hubzilla:Notify] %s tagged you"] = "[Hubzilla] %s ti ha taggato";
App::$strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s ti ha taggato su %3\$s";
App::$strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]ti ha taggato[/zrl].";
App::$strings["[Hubzilla:Notify] %1\$s poked you"] = "[Hubzilla] %1\$s ti ha mandato un poke";
App::$strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s ti ha mandato un poke su %3\$s";
App::$strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]ti ha mandato un poke[/zrl].";
App::$strings["[Hubzilla:Notify] %s tagged your post"] = "[Hubzilla] %s ha taggato il tuo post";
App::$strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s ha taggato il tuo post su %3\$s";
App::$strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s ha taggato [zrl=%3\$s]il tuo post[/zrl]";
App::$strings["[Hubzilla:Notify] Introduction received"] = "[Hubzilla] Hai una richiesta di amicizia";
App::$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";
App::$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.";
App::$strings["You may visit their profile at %s"] = "Puoi visitare il suo profilo su %s";
App::$strings["Please visit %s to approve or reject the connection request."] = "Visita %s per approvare o rifiutare la richiesta di entrare in contatto.";
App::$strings["[Hubzilla:Notify] Friend suggestion received"] = "[Hubzilla] Ti è stato suggerito un amico";
App::$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";
App::$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.";
App::$strings["Name:"] = "Nome:";
App::$strings["Photo:"] = "Foto:";
App::$strings["Please visit %s to approve or reject the suggestion."] = "Visita %s per approvare o rifiutare il suggerimento.";
App::$strings["[Hubzilla:Notify]"] = "[Hubzilla]";
App::$strings["Miscellaneous"] = "Altro";
App::$strings["Birthday"] = "Compleanno";
App::$strings["Age: "] = "Età:";
App::$strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-GG oppure MM-GG";
App::$strings["Required"] = "Obbligatorio";
App::$strings["never"] = "mai";
App::$strings["less than a second ago"] = "meno di un secondo fa";
App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "%1\$d %2\$s fa";
App::$strings["__ctx:relative_date__ year"] = array(
	0 => "anno",
	1 => "anni",
);
App::$strings["__ctx:relative_date__ month"] = array(
	0 => "mese",
	1 => "mesi",
);
App::$strings["__ctx:relative_date__ week"] = array(
	0 => "settimana",
	1 => "settimane",
);
App::$strings["__ctx:relative_date__ day"] = array(
	0 => "giorno",
	1 => "giorni",
);
App::$strings["__ctx:relative_date__ hour"] = array(
	0 => "ora",
	1 => "ore",
);
App::$strings["__ctx:relative_date__ minute"] = array(
	0 => "minuto",
	1 => "minuti",
);
App::$strings["__ctx:relative_date__ second"] = array(
	0 => "secondo",
	1 => "secondi",
);
App::$strings["%1\$s's birthday"] = "Compleanno di %1\$s";
App::$strings["Happy Birthday %1\$s"] = "Buon compleanno %1\$s";
App::$strings["Embedded content"] = "Contenuti incorporati";
App::$strings["Embedding disabled"] = "Disabilita la creazione di contenuti incorporati";
App::$strings["channel"] = "il canale";
App::$strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s piace %3\$s di %2\$s";
App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s non piace %3\$s di %2\$s";
App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s adesso è connesso con %2\$s";
App::$strings["%1\$s poked %2\$s"] = "%1\$s ha mandato un poke a %2\$s";
App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s è %2\$s";
App::$strings["__ctx:title__ Likes"] = "Mi piace";
App::$strings["__ctx:title__ Dislikes"] = "Non mi piace";
App::$strings["__ctx:title__ Agree"] = "D'accordo";
App::$strings["__ctx:title__ Disagree"] = "Non d'accordo";
App::$strings["__ctx:title__ Abstain"] = "Astenuti";
App::$strings["__ctx:title__ Attending"] = "Partecipano";
App::$strings["__ctx:title__ Not attending"] = "Non partecipano";
App::$strings["__ctx:title__ Might attend"] = "Forse partecipano";
App::$strings["Select"] = "Scegli";
App::$strings["Private Message"] = "Messaggio privato";
App::$strings["Message signature validated"] = "Messaggio con firma verificata";
App::$strings["Message signature incorrect"] = "Massaggio con firma non corretta";
App::$strings["View %s's profile @ %s"] = "Vedi il profilo di %s @ %s";
App::$strings["Categories:"] = "Categorie:";
App::$strings["Filed under:"] = "Classificato come:";
App::$strings["from %s"] = "da %s";
App::$strings["last edited: %s"] = "ultima modifica: %s";
App::$strings["Expires: %s"] = "Scadenza: %s";
App::$strings["View in context"] = "Vedi nel contesto";
App::$strings["Please wait"] = "Attendere";
App::$strings["remove"] = "rimuovi";
App::$strings["Delete Selected Items"] = "Elimina gli oggetti selezionati";
App::$strings["View Source"] = "Vedi il sorgente";
App::$strings["Follow Thread"] = "Segui la discussione";
App::$strings["Unfollow Thread"] = "Non seguire la discussione";
App::$strings["Activity/Posts"] = "Attività e Post";
App::$strings["Edit Connection"] = "Modifica il contatto";
App::$strings["Message"] = "Messaggio";
App::$strings["Ratings"] = "Valutazioni";
App::$strings["%s likes this."] = "Piace a %s.";
App::$strings["%s doesn't like this."] = "Non piace a %s.";
App::$strings["<span  %1\$s>%2\$d people</span> like this."] = array(
	0 => "",
	1 => "Piace a <span %1\$s>%2\$d persone</span>.",
);
App::$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>.",
);
App::$strings["and"] = "e";
App::$strings[", and %d other people"] = array(
	0 => "",
	1 => "e altre %d persone",
);
App::$strings["%s like this."] = "Piace a %s.";
App::$strings["%s don't like this."] = "Non piace a %s.";
App::$strings["Visible to <strong>everybody</strong>"] = "Visibile a <strong>tutti</strong>";
App::$strings["Please enter a link URL:"] = "Inserisci l'indirizzo del link:";
App::$strings["Please enter a video link/URL:"] = "Inserisci l'indirizzo del video:";
App::$strings["Please enter an audio link/URL:"] = "Inserisci l'indirizzo dell'audio:";
App::$strings["Tag term:"] = "Tag:";
App::$strings["Save to Folder:"] = "Salva nella cartella:";
App::$strings["Where are you right now?"] = "Dove sei ora?";
App::$strings["Expires YYYY-MM-DD HH:MM"] = "Scade il YYYY-MM-DD HH:MM";
App::$strings["Share"] = "Condividi";
App::$strings["Page link name"] = "Nome del link alla pagina";
App::$strings["Post as"] = "Pubblica come ";
App::$strings["Bold"] = "Grassetto";
App::$strings["Italic"] = "Corsivo";
App::$strings["Underline"] = "Sottolineato";
App::$strings["Quote"] = "Citazione";
App::$strings["Code"] = "Codice";
App::$strings["Upload photo"] = "Carica foto";
App::$strings["upload photo"] = "carica foto";
App::$strings["Attach file"] = "Allega file";
App::$strings["attach file"] = "allega file";
App::$strings["Insert web link"] = "Inserisci un indirizzo web";
App::$strings["web link"] = "link web";
App::$strings["Insert video link"] = "Inserisci l'indirizzo del video";
App::$strings["video link"] = "link video";
App::$strings["Insert audio link"] = "Inserisci l'indirizzo dell'audio";
App::$strings["audio link"] = "link audio";
App::$strings["Set your location"] = "La tua località";
App::$strings["set location"] = "la tua località";
App::$strings["Toggle voting"] = "Abilita/disabilita il voto";
App::$strings["Clear browser location"] = "Rimuovi la località data dal browser";
App::$strings["clear location"] = "rimuovi la località";
App::$strings["Title (optional)"] = "Titolo (facoltativo)";
App::$strings["Categories (optional, comma-separated list)"] = "Categorie (facoltative, lista separata da virgole)";
App::$strings["Permission settings"] = "Permessi dei tuoi contatti";
App::$strings["permissions"] = "permessi";
App::$strings["Public post"] = "Post pubblico";
App::$strings["Example: bob@example.com, mary@example.com"] = "Per esempio: mario@esempio.com, simona@esempio.com";
App::$strings["Set expiration date"] = "Data di scadenza";
App::$strings["Set publish date"] = "Data di uscita programmata";
App::$strings["Encrypt text"] = "Cifratura del messaggio";
App::$strings["OK"] = "OK";
App::$strings["Cancel"] = "Annulla";
App::$strings["Discover"] = "Scopri";
App::$strings["Imported public streams"] = "Contenuti pubblici importati";
App::$strings["Commented Order"] = "Commenti recenti";
App::$strings["Sort by Comment Date"] = "Per data del commento";
App::$strings["Posted Order"] = "Post recenti";
App::$strings["Sort by Post Date"] = "Per data di creazione";
App::$strings["Posts that mention or involve you"] = "Post che ti riguardano";
App::$strings["New"] = "Novità";
App::$strings["Activity Stream - by date"] = "Elenco attività - per data";
App::$strings["Starred"] = "Preferiti";
App::$strings["Favourite Posts"] = "Post preferiti";
App::$strings["Spam"] = "Spam";
App::$strings["Posts flagged as SPAM"] = "Post marcati come spam";
App::$strings["Channel"] = "Canale";
App::$strings["Status Messages and Posts"] = "Post e messaggi di stato";
App::$strings["About"] = "Informazioni";
App::$strings["Profile Details"] = "Dettagli del profilo";
App::$strings["Files and Storage"] = "Archivio file";
App::$strings["Chatrooms"] = "Chat";
App::$strings["Saved Bookmarks"] = "Segnalibri salvati";
App::$strings["Manage Webpages"] = "Gestisci le pagine web";
App::$strings["View all"] = "Vedi tutto";
App::$strings["__ctx:noun__ Dislike"] = array(
	0 => "Non mi piace",
	1 => "Non mi piace",
);
App::$strings["__ctx:noun__ Attending"] = array(
	0 => "Partecipa",
	1 => "Partecipano",
);
App::$strings["__ctx:noun__ Not Attending"] = array(
	0 => "Non partecipa",
	1 => "Non partecipano",
);
App::$strings["__ctx:noun__ Undecided"] = array(
	0 => "Indeciso",
	1 => "Indecisi",
);
App::$strings["__ctx:noun__ Agree"] = array(
	0 => "D'accordo",
	1 => "D'accordo",
);
App::$strings["__ctx:noun__ Disagree"] = array(
	0 => "Non d'accordo",
	1 => "Non d'accordo",
);
App::$strings["__ctx:noun__ Abstain"] = array(
	0 => "Astenuto",
	1 => "Astenuti",
);
App::$strings["Save to Folder"] = "Salva nella cartella";
App::$strings["I will attend"] = "Parteciperò";
App::$strings["I will not attend"] = "Non parteciperò";
App::$strings["I might attend"] = "Forse parteciperò";
App::$strings["I agree"] = "Sono d'accordo";
App::$strings["I disagree"] = "Non sono d'accordo";
App::$strings["I abstain"] = "Mi astengo";
App::$strings["Add Star"] = "Aggiungi ai preferiti";
App::$strings["Remove Star"] = "Rimuovi dai preferiti";
App::$strings["Toggle Star Status"] = "Attiva/disattiva preferito";
App::$strings["starred"] = "preferito";
App::$strings["Add Tag"] = "Aggiungi un tag";
App::$strings["I like this (toggle)"] = "Attiva/disattiva Mi piace";
App::$strings["I don't like this (toggle)"] = "Attiva/disattiva Non mi piace";
App::$strings["Share This"] = "Condividi";
App::$strings["share"] = "condividi";
App::$strings["Delivery Report"] = "Rapporto di trasmissione";
App::$strings["%d comment"] = array(
	0 => "%d commento",
	1 => "%d commenti",
);
App::$strings["View %s's profile - %s"] = "Guarda il profilo di %s - %s";
App::$strings["to"] = "a";
App::$strings["via"] = "via";
App::$strings["Wall-to-Wall"] = "Da bacheca a bacheca";
App::$strings["via Wall-To-Wall:"] = "da bacheca a bacheca:";
App::$strings["Save Bookmarks"] = "Salva segnalibro";
App::$strings["Add to Calendar"] = "Aggiungi al calendario";
App::$strings["Mark all seen"] = "Marca tutto come letto";
App::$strings["__ctx:noun__ Likes"] = "Mi piace";
App::$strings["__ctx:noun__ Dislikes"] = "Non mi piace";
App::$strings["This is you"] = "Questo sei tu";
App::$strings["Image"] = "Immagine";
App::$strings["Insert Link"] = "Collegamento";
App::$strings["Video"] = "Video";
App::$strings["Can view my normal stream and posts"] = "Può vedere i miei contenuti e i post normali";
App::$strings["Can view my default channel profile"] = "Può vedere il profilo predefinito del canale";
App::$strings["Can view my connections"] = "Può vedere i miei contatti";
App::$strings["Can view my file storage and photos"] = "Può vedere il mio archivio file e foto";
App::$strings["Can view my webpages"] = "Può vedere le mie pagine web";
App::$strings["Can send me their channel stream and posts"] = "È tra i canali che seguo";
App::$strings["Can post on my channel page (\"wall\")"] = "Può scrivere sulla bacheca del mio canale";
App::$strings["Can comment on or like my posts"] = "Può commentare o aggiungere \"mi piace\" ai miei post";
App::$strings["Can send me private mail messages"] = "Può inviarmi messaggi privati";
App::$strings["Can like/dislike stuff"] = "Può aggiungere \"mi piace\" a tutto il resto";
App::$strings["Profiles and things other than posts/comments"] = "Può aggiungere \"mi piace\" a tutto ciò che non riguarda i post, come per esempio il profilo";
App::$strings["Can forward to all my channel contacts via post @mentions"] = "Può inoltrare post a tutti i contatti del canale tramite una @menzione";
App::$strings["Advanced - useful for creating group forum channels"] = "Impostazione avanzata - utile per creare un canale-forum di discussione";
App::$strings["Can chat with me (when available)"] = "Può aprire una chat con me (se disponibile)";
App::$strings["Can write to my file storage and photos"] = "Può modificare il mio archivio file e foto";
App::$strings["Can edit my webpages"] = "Può modificare le mie pagine web";
App::$strings["Can source my public posts in derived channels"] = "Può usare i miei post pubblici per creare canali derivati";
App::$strings["Somewhat advanced - very useful in open communities"] = "Piuttosto avanzato - molto utile nelle comunità aperte";
App::$strings["Can administer my channel resources"] = "Può amministrare i contenuti del mio canale";
App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Impostazione pericolosa - lasciare il valore predefinito se non si è assolutamente sicuri";
App::$strings["Social Networking"] = "Social network";
App::$strings["Social - Mostly Public"] = "Social - Prevalentemente pubblico";
App::$strings["Social - Restricted"] = "Social - Con restrizioni";
App::$strings["Social - Private"] = "Social - Privato";
App::$strings["Community Forum"] = "Forum di discussione";
App::$strings["Forum - Mostly Public"] = "Social - Prevalentemente pubblico";
App::$strings["Forum - Restricted"] = "Forum - Con restrizioni";
App::$strings["Forum - Private"] = "Forum - Privato";
App::$strings["Feed Republish"] = "Aggregatore di feed esterni";
App::$strings["Feed - Mostly Public"] = "Feed - Prevalentemente pubblico";
App::$strings["Feed - Restricted"] = "Feed - Con restrizioni";
App::$strings["Special Purpose"] = "Per finalità speciali";
App::$strings["Special - Celebrity/Soapbox"] = "Speciale - Pagina per fan";
App::$strings["Special - Group Repository"] = "Speciale - Repository di gruppo";
App::$strings["Custom/Expert Mode"] = "Personalizzazione per esperti";
App::$strings["Permission denied"] = "Permesso negato";
App::$strings["(Unknown)"] = "(Sconosciuto)";
App::$strings["Visible to anybody on the internet."] = "Visibile a chiunque su internet.";
App::$strings["Visible to you only."] = "Visibile solo a te.";
App::$strings["Visible to anybody in this network."] = "Visibile a tutti su questa rete.";
App::$strings["Visible to anybody authenticated."] = "Visibile a chiunque sia autenticato.";
App::$strings["Visible to anybody on %s."] = "Visibile a tutti su %s.";
App::$strings["Visible to all connections."] = "Visibile a tutti coloro che ti seguono.";
App::$strings["Visible to approved connections."] = "Visibile ai contatti approvati.";
App::$strings["Visible to specific connections."] = "Visibile ad alcuni contatti scelti.";
App::$strings["Item not found."] = "Elemento non trovato.";
App::$strings["Privacy group not found."] = "Gruppo di canali non trovato.";
App::$strings["Privacy group is empty."] = "Gruppo di canali vuoto.";
App::$strings["Privacy group: %s"] = "Gruppo di canali: %s";
App::$strings["Connection: %s"] = "Contatto: %s";
App::$strings["Connection not found."] = "Contatto non trovato.";
App::$strings["female"] = "femmina";
App::$strings["%1\$s updated her %2\$s"] = "Aggiornamento: %2\$s di %1\$s";
App::$strings["male"] = "maschio";
App::$strings["%1\$s updated his %2\$s"] = "Aggiornamento: %2\$s di %1\$s";
App::$strings["%1\$s updated their %2\$s"] = "Aggiornamento: %2\$s di %1\$s";
App::$strings["profile photo"] = "foto del profilo";
App::$strings["Unable to obtain identity information from database"] = "Impossibile ottenere le informazioni di identificazione dal database";
App::$strings["Empty name"] = "Nome vuoto";
App::$strings["Name too long"] = "Nome troppo lungo";
App::$strings["No account identifier"] = "Account senza identificativo";
App::$strings["Nickname is required."] = "Il nome dell'account è obbligatorio.";
App::$strings["Reserved nickname. Please choose another."] = "Nome utente riservato. Per favore scegline un altro.";
App::$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.";
App::$strings["Unable to retrieve created identity"] = "Impossibile caricare l'identità creata";
App::$strings["Default Profile"] = "Profilo predefinito";
App::$strings["Requested channel is not available."] = "Il canale che cerchi non è disponibile.";
App::$strings["Requested profile is not available."] = "Il profilo richiesto non è disponibile.";
App::$strings["Change profile photo"] = "Cambia la foto del profilo";
App::$strings["Create New Profile"] = "Crea un nuovo profilo";
App::$strings["Profile Image"] = "Immagine del profilo";
App::$strings["Visible to everybody"] = "Visibile a tutti";
App::$strings["Edit visibility"] = "Cambia la visibilità";
App::$strings["Gender:"] = "Sesso:";
App::$strings["Status:"] = "Stato:";
App::$strings["Homepage:"] = "Home page:";
App::$strings["Online Now"] = "Online adesso";
App::$strings["g A l F d"] = "g A l d F";
App::$strings["F d"] = "d F";
App::$strings["[today]"] = "[oggi]";
App::$strings["Birthday Reminders"] = "Promemoria compleanni";
App::$strings["Birthdays this week:"] = "Compleanni questa settimana:";
App::$strings["[No description]"] = "[Nessuna descrizione]";
App::$strings["Event Reminders"] = "Promemoria";
App::$strings["Events this week:"] = "Eventi della settimana:";
App::$strings["Full Name:"] = "Nome completo:";
App::$strings["Like this channel"] = "Mi piace questo canale";
App::$strings["j F, Y"] = "j F Y";
App::$strings["j F"] = "j F";
App::$strings["Birthday:"] = "Compleanno:";
App::$strings["Age:"] = "Età:";
App::$strings["for %1\$d %2\$s"] = "per %1\$d %2\$s";
App::$strings["Sexual Preference:"] = "Preferenze sessuali:";
App::$strings["Hometown:"] = "Città dove vivo:";
App::$strings["Tags:"] = "Tag:";
App::$strings["Political Views:"] = "Orientamento politico:";
App::$strings["Religion:"] = "Religione:";
App::$strings["About:"] = "Informazioni:";
App::$strings["Hobbies/Interests:"] = "Interessi e hobby:";
App::$strings["Likes:"] = "Mi piace:";
App::$strings["Dislikes:"] = "Non mi piace:";
App::$strings["Contact information and Social Networks:"] = "Contatti e social network:";
App::$strings["My other channels:"] = "I miei altri canali:";
App::$strings["Musical interests:"] = "Gusti musicali:";
App::$strings["Books, literature:"] = "Libri, letteratura:";
App::$strings["Television:"] = "Televisione:";
App::$strings["Film/dance/culture/entertainment:"] = "Film, danza, cultura, intrattenimento:";
App::$strings["Love/Romance:"] = "Amore:";
App::$strings["Work/employment:"] = "Lavoro:";
App::$strings["School/education:"] = "Scuola:";
App::$strings["Like this thing"] = "Mi piace";
App::$strings["cover photo"] = "Copertina del canale";
App::$strings["Some blurb about what to do when you're new here"] = "Qualche suggerimento per i nuovi utenti su cosa fare";
App::$strings["network"] = "rete";
App::$strings["RSS"] = "RSS";
App::$strings["Authorize application connection"] = "Autorizza la app";
App::$strings["Return to your app and insert this Securty Code:"] = "Torna alla app e inserisci questo codice di sicurezza:";
App::$strings["Please login to continue."] = "Accedi al sito per continuare.";
App::$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?";
App::$strings["App installed."] = "App installata";
App::$strings["Malformed app."] = "L'app contiene errori";
App::$strings["Embed code"] = "Inserisci il codice";
App::$strings["Edit App"] = "Modifica app";
App::$strings["Create App"] = "Crea una app";
App::$strings["Name of app"] = "Nome app";
App::$strings["Location (URL) of app"] = "Indirizzo (URL) della app";
App::$strings["Description"] = "Descrizione";
App::$strings["Photo icon URL"] = "URL icona";
App::$strings["80 x 80 pixels - optional"] = "80 x 80 pixel - facoltativa";
App::$strings["Version ID"] = "ID versione";
App::$strings["Price of app"] = "Prezzo app";
App::$strings["Location (URL) to purchase app"] = "Indirizzo (URL) per acquistare la app";
App::$strings["Item not available."] = "Elemento non disponibile.";
App::$strings["Invalid item."] = "Elemento non valido.";
App::$strings["Channel not found."] = "Canale non trovato.";
App::$strings["Block Name"] = "Nome del block";
App::$strings["Block Title"] = "Titolo del block";
App::$strings["Bookmark added"] = "Segnalibro aggiunto";
App::$strings["My Bookmarks"] = "I miei segnalibri";
App::$strings["My Connections Bookmarks"] = "I segnalibri dei miei contatti";
App::$strings["You must be logged in to see this page."] = "Devi aver effettuato l'accesso per vedere questa pagina.";
App::$strings["Insufficient permissions.  Request redirected to profile page."] = "Permessi insufficienti. Sarà visualizzata la pagina del profilo.";
App::$strings["Public"] = "Pubblico";
App::$strings["Room not found"] = "Chat non trovata";
App::$strings["Leave Room"] = "Lascia la chat";
App::$strings["Delete This Room"] = "Elimina questa chat";
App::$strings["I am away right now"] = "Non sono presente";
App::$strings["I am online"] = "Sono online";
App::$strings["Bookmark this room"] = "Aggiungi questa chat ai segnalibri";
App::$strings["New Chatroom"] = "Nuova chat";
App::$strings["Chatroom Name"] = "Nome della chat";
App::$strings["Expiration of chats (minutes)"] = "Scadenza dei messaggi della chat (minuti)";
App::$strings["%1\$s's Chatrooms"] = "Le chat di %1\$s";
App::$strings["Away"] = "Assente";
App::$strings["Online"] = "Online";
App::$strings["No channel."] = "Nessun canale.";
App::$strings["Common connections"] = "Contatti in comune";
App::$strings["No connections in common."] = "Nessun contatto in comune.";
App::$strings["Continue"] = "Continua";
App::$strings["Premium Channel Setup"] = "Canale premium - configurazione";
App::$strings["Enable premium channel connection restrictions"] = "Abilita le restrizioni del canale premium";
App::$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.";
App::$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:";
App::$strings["Potential connections will then see the following text before proceeding:"] = "Il testo seguente comparirà a chi vorrà seguire il canale:";
App::$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.";
App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(Il gestore del canale non ha fornito istruzioni specifiche)";
App::$strings["Restricted or Premium Channel"] = "Canale premium - con restrizioni";
App::$strings["Blocked"] = "Bloccati";
App::$strings["Ignored"] = "Ignorati";
App::$strings["Hidden"] = "Nascosti";
App::$strings["Archived"] = "Archiviati";
App::$strings["New Connections"] = "Nuovi contatti";
App::$strings["Show pending (new) connections"] = "Richieste di contatto in attesa";
App::$strings["All Connections"] = "Tutti i contatti";
App::$strings["Show all connections"] = "Mostra tutti i contatti";
App::$strings["Only show blocked connections"] = "Mostra solo i contatti bloccati";
App::$strings["Only show ignored connections"] = "Mostra solo i contatti ignorati";
App::$strings["Only show archived connections"] = "Mostra solo i contatti archiviati";
App::$strings["Only show hidden connections"] = "Mostra solo i contatti nascosti";
App::$strings["Pending approval"] = "In attesa di conferma";
App::$strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]";
App::$strings["Edit connection"] = "Modifica il contatto";
App::$strings["Delete connection"] = "Elimina il contatto";
App::$strings["Channel address"] = "Indirizzo del canale";
App::$strings["Network"] = "Network";
App::$strings["Status"] = "Stato";
App::$strings["Connected"] = "In contatto";
App::$strings["Approve connection"] = "Approva questo contatto";
App::$strings["Approve"] = "Approva";
App::$strings["Ignore connection"] = "Ignora il contatto";
App::$strings["Ignore"] = "Ignora";
App::$strings["Recent activity"] = "Attività recenti";
App::$strings["Search your connections"] = "Cerca tra i contatti";
App::$strings["Connections search"] = "Ricerca tra i contatti";
App::$strings["Could not access contact record."] = "Non è possibile accedere alle informazioni sul contatto.";
App::$strings["Could not locate selected profile."] = "Non riesco a trovare il profilo selezionato.";
App::$strings["Connection updated."] = "Contatto aggiornato.";
App::$strings["Failed to update connection record."] = "Impossibile aggiornare le informazioni del contatto.";
App::$strings["is now connected to"] = "ha come nuovo contatto";
App::$strings["Could not access address book record."] = "Impossibile accedere alle informazioni della rubrica.";
App::$strings["Refresh failed - channel is currently unavailable."] = "Il canale non è disponibile - impossibile aggiornare.";
App::$strings["Unable to set address book parameters."] = "Impossibile impostare i parametri della rubrica.";
App::$strings["Connection has been removed."] = "Il contatto è stato rimosso.";
App::$strings["View %s's profile"] = "Guarda il profilo di %s";
App::$strings["Refresh Permissions"] = "Modifica i permessi";
App::$strings["Fetch updated permissions"] = "Guarda e modifica i permessi assegnati";
App::$strings["Recent Activity"] = "Attività recenti";
App::$strings["View recent posts and comments"] = "Leggi i post recenti e i commenti";
App::$strings["Unblock"] = "Sblocca";
App::$strings["Block"] = "Blocca";
App::$strings["Block (or Unblock) all communications with this connection"] = "Blocca ogni interazione con questo contatto (abilita/disabilita)";
App::$strings["This connection is blocked!"] = "Questa connessione è tra quelle bloccate!";
App::$strings["Unignore"] = "Non ignorare";
App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "Ignora tutte le comunicazioni in arrivo da questo contatto (abilita/disabilita)";
App::$strings["This connection is ignored!"] = "Questa connessione è tra quelle ignorate!";
App::$strings["Unarchive"] = "Non archiviare";
App::$strings["Archive"] = "Archivia";
App::$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";
App::$strings["This connection is archived!"] = "Questa connessione è tra quelle archiviate!";
App::$strings["Unhide"] = "Non nascondere";
App::$strings["Hide"] = "Nascondi";
App::$strings["Hide or Unhide this connection from your other connections"] = "Nascondi questo contatto a tutti gli altri (abilita/disabilita)";
App::$strings["This connection is hidden!"] = "Questa connessione è tra quelle nascoste!";
App::$strings["Delete this connection"] = "Elimina questo contatto";
App::$strings["Approve this connection"] = "Approva questo contatto";
App::$strings["Accept connection to allow communication"] = "Entra in contatto per poter comunicare";
App::$strings["Set Affinity"] = "Scegli l'affinità";
App::$strings["Set Profile"] = "Scegli il profilo da mostrare";
App::$strings["Set Affinity & Profile"] = "Affinità e profilo";
App::$strings["none"] = "--";
App::$strings["Apply these permissions automatically"] = "Applica automaticamente questi permessi";
App::$strings["Connection requests will be approved without your interaction"] = "Le richieste di entrare in contatto saranno approvate in automatico";
App::$strings["This connection's primary address is"] = "Indirizzo primario di questo canale";
App::$strings["Available locations:"] = "Indirizzi disponibili";
App::$strings["The permissions indicated on this page will be applied to all new connections."] = "I permessi indicati su questa pagina saranno applicati a tutti i nuovi contatti da ora in poi.";
App::$strings["Slide to adjust your degree of friendship"] = "Trascina per restringere il grado di amicizia da mostrare";
App::$strings["Slide to adjust your rating"] = "Trascina per cambiare la tua valutazione";
App::$strings["Optionally explain your rating"] = "Commento facoltativo";
App::$strings["Custom Filter"] = "Filtro personalizzato";
App::$strings["Only import posts with this text"] = "Importa solo i post che contengono queste parole chiave";
App::$strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = "per ogni riga: parole, #tag, /pattern/ o lang=xx , lascia vuoto per importare tutto";
App::$strings["Do not import posts with this text"] = "Non importare i post con queste parole chiave";
App::$strings["This information is public!"] = "Questa informazione è pubblica!";
App::$strings["Connection Pending Approval"] = "Contatti in attesa di approvazione";
App::$strings["inherited"] = "derivato";
App::$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 dopo che ha effettuato l'accesso.";
App::$strings["Their Settings"] = "Permessi concessi a te";
App::$strings["My Settings"] = "Permessi che concedo";
App::$strings["Individual Permissions"] = "Permessi individuali";
App::$strings["Some permissions may be inherited from your channel's <a href=\"settings\"><strong>privacy settings</strong></a>, which have higher priority than individual settings. You can <strong>not</strong> change those settings here."] = "Alcuni permessi derivano dalle <a href=\"settings\"><strong>impostazioni di privacy</strong></a> del tuo canale, che hanno priorità assoluta su qualsiasi altra impostazione scelta per i singoli contatti. Da questa pagina <strong>non</strong> puoi cambiarle.";
App::$strings["Some permissions may be inherited from your channel's <a href=\"settings\"><strong>privacy settings</strong></a>, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Alcuni permessi derivano dalle <a href=\"settings\"><strong>impostazioni di privacy</strong></a> del tuo canale, che hanno priorità assoluta su qualsiasi altra impostazione scelta per i singoli contatti. Le personalizzazioni che effettuerai qui potrebbero non essere effettive a meno che tu non cambi le impostazioni generali.";
App::$strings["Last update:"] = "Ultimo aggiornamento:";
App::$strings["\$Projectname channel"] = "Canale \$Projectname";
App::$strings["Public access denied."] = "Accesso pubblico negato.";
App::$strings["%d rating"] = array(
	0 => "%d valutazione",
	1 => "%d valutazioni",
);
App::$strings["Gender: "] = "Sesso:";
App::$strings["Status: "] = "Stato:";
App::$strings["Homepage: "] = "Homepage:";
App::$strings["Description:"] = "Descrizione:";
App::$strings["Public Forum:"] = "Forum pubblico:";
App::$strings["Keywords: "] = "Parole chiave:";
App::$strings["Don't suggest"] = "Non fornire suggerimenti";
App::$strings["Common connections:"] = "Contatti in comune:";
App::$strings["Global Directory"] = "Elenchi pubblici globali";
App::$strings["Local Directory"] = "Elenco canali su questo hub";
App::$strings["Finding:"] = "Ricerca:";
App::$strings["next page"] = "pagina successiva";
App::$strings["previous page"] = "pagina precedente";
App::$strings["Sort options"] = "Opzioni di ordinamento";
App::$strings["Alphabetic"] = "Alfabetico";
App::$strings["Reverse Alphabetic"] = "Alfabetico inverso";
App::$strings["Newest to Oldest"] = "Prima i più recenti";
App::$strings["Oldest to Newest"] = "Prima i più vecchi";
App::$strings["No entries (some entries may be hidden)."] = "Nessun risultato (qualche elemento potrebbe essere nascosto).";
App::$strings["This site is not a directory server"] = "Questo non è un directory server";
App::$strings["This directory server requires an access token"] = "Questo directory server necessita di un token di autenticazione";
App::$strings["Invalid message"] = "Messaggio non valido";
App::$strings["no results"] = "nessun risultato";
App::$strings["Delivery report for %1\$s"] = "Rapporto di consegna - %1\$s";
App::$strings["channel sync processed"] = "sincronizzazione del canale effettuata";
App::$strings["queued"] = "in coda";
App::$strings["posted"] = "inviato";
App::$strings["accepted for delivery"] = "accettato per la spedizione";
App::$strings["updated"] = "aggiornato";
App::$strings["update ignored"] = "aggiornamento ignorato";
App::$strings["permission denied"] = "permessi non sufficienti";
App::$strings["recipient not found"] = "Destinatario non trovato";
App::$strings["mail recalled"] = "messaggio richiamato dal mittente";
App::$strings["duplicate mail received"] = "ricevuto messaggio duplicato";
App::$strings["mail delivered"] = "messaggio recapitato";
App::$strings["Item not found"] = "Elemento non trovato";
App::$strings["Delete block?"] = "Vuoi eliminare questo block?";
App::$strings["Insert YouTube video"] = "Inserisci video da YouTube";
App::$strings["Insert Vorbis [.ogg] video"] = "Inserisci video Vorbis [.ogg]";
App::$strings["Insert Vorbis [.ogg] audio"] = "Inserisci audio Vorbis [.ogg]";
App::$strings["Edit Block"] = "Modifica il block";
App::$strings["Delete layout?"] = "Vuoi eliminare questo layout?";
App::$strings["Layout Description (Optional)"] = "Descrizione del layout (facoltativa)";
App::$strings["Layout Name"] = "Nome layout";
App::$strings["Edit Layout"] = "Modifica il layout";
App::$strings["Item is not editable"] = "L'elemento non è modificabile";
App::$strings["Delete item?"] = "Eliminare questo elemento?";
App::$strings["Edit post"] = "Modifica post";
App::$strings["Delete webpage?"] = "Vuoi eliminare questa pagina web?";
App::$strings["Page link title"] = "Link del titolo";
App::$strings["Edit Webpage"] = "Modifica la pagina web";
App::$strings["Calendar entries imported."] = "Le voci del calendario sono state importate.";
App::$strings["No calendar entries found."] = "Non sono state trovate voci del calendario.";
App::$strings["Event can not end before it has started."] = "Un evento non può terminare prima del suo inizio.";
App::$strings["Unable to generate preview."] = "Impossibile creare un'anteprima.";
App::$strings["Event title and start time are required."] = "Sono necessari il titolo e l'ora d'inizio dell'evento.";
App::$strings["Event not found."] = "Evento non trovato.";
App::$strings["Edit event title"] = "Modifica il titolo dell'evento";
App::$strings["Event title"] = "Titolo dell'evento";
App::$strings["Categories (comma-separated list)"] = "Categorie (separate da virgola)";
App::$strings["Edit Category"] = "Modifica la categoria";
App::$strings["Category"] = "Categoria";
App::$strings["Edit start date and time"] = "Modifica data/ora di inizio";
App::$strings["Start date and time"] = "Data e ora di inizio";
App::$strings["Finish date and time are not known or not relevant"] = "La data e l'ora di fine non sono necessarie";
App::$strings["Edit finish date and time"] = "Modifica data/ora di fine";
App::$strings["Finish date and time"] = "Data e ora di fine";
App::$strings["Adjust for viewer timezone"] = "Adatta al fuso orario di chi legge";
App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Importante per eventi che avvengono online ma con un certo fuso orario.";
App::$strings["Edit Description"] = "Modifica la descrizione";
App::$strings["Edit Location"] = "Modifica il luogo";
App::$strings["Share this event"] = "Condividi questo evento";
App::$strings["Advanced Options"] = "Opzioni avanzate";
App::$strings["l, F j"] = "l j F";
App::$strings["Edit event"] = "Modifica l'evento";
App::$strings["Delete event"] = "Elimina l'evento";
App::$strings["calendar"] = "calendario";
App::$strings["Edit Event"] = "Modifica l'evento";
App::$strings["Create Event"] = "Crea un evento";
App::$strings["Previous"] = "Precendente";
App::$strings["Next"] = "Successivo";
App::$strings["Today"] = "Oggi";
App::$strings["Event removed"] = "Evento eliminato";
App::$strings["Failed to remove event"] = "Impossibile eliminare l'evento";
App::$strings["Share content from Firefox to \$Projectname"] = "Condividi i contenuti su \$Projectname da Firefox";
App::$strings["Activate the Firefox \$Projectname provider"] = "Attiva Firefox Share per \$Projectname";
App::$strings["- select -"] = "- scegli -";
App::$strings["Permission Denied."] = "Permesso negato.";
App::$strings["File not found."] = "File non trovato.";
App::$strings["Edit file permissions"] = "Modifica i permessi del file";
App::$strings["Set/edit permissions"] = "Modifica i permessi";
App::$strings["Include all files and sub folders"] = "Includi tutti i file e le sottocartelle";
App::$strings["Return to file list"] = "Torna all'elenco dei file";
App::$strings["Copy/paste this code to attach file to a post"] = "Copia/incolla questo codice per far comparire il file in un post";
App::$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";
App::$strings["Share this file"] = "Condividi questo file";
App::$strings["Show URL to this file"] = "Mostra l'URL del file";
App::$strings["Notify your contacts about this file"] = "Notifica ai contatti che hai caricato questo file";
App::$strings["Channel added."] = "Canale aggiunto.";
App::$strings["Contact not found."] = "Contatto non trovato.";
App::$strings["Friend suggestion sent."] = "Suggerimento di amicizia inviato.";
App::$strings["Suggest Friends"] = "Suggerisci amici";
App::$strings["Suggest a friend for %s"] = "Suggerisci un amico a %s";
App::$strings["Privacy group created."] = "Gruppo di canali creato.";
App::$strings["Could not create privacy group."] = "Impossibile creare il gruppo di canali.";
App::$strings["Privacy group updated."] = "Gruppo di canali aggiornato.";
App::$strings["Create a group of channels."] = "Crea un gruppo di canali.";
App::$strings["Privacy group name: "] = "Nome del gruppo di canali:";
App::$strings["Members are visible to other channels"] = "I membri potranno vedere gli altri canali del gruppo";
App::$strings["Privacy group removed."] = "Gruppo di canali rimosso.";
App::$strings["Unable to remove privacy group."] = "Impossibile rimuovere il gruppo di canali.";
App::$strings["Privacy group editor"] = "Editor dei gruppi di canali";
App::$strings["Members"] = "Membri";
App::$strings["All Connected Channels"] = "Tutti i canali connessi";
App::$strings["Click on a channel to add or remove."] = "Clicca su un canale per aggiungerlo o rimuoverlo.";
App::$strings["Documentation Search"] = "Ricerca nella guida";
App::$strings["Help:"] = "Guida:";
App::$strings["\$Projectname Documentation"] = "Guida di \$Projectname";
App::$strings["\$Projectname"] = "\$Projectname";
App::$strings["Welcome to %s"] = "%s ti dà il benvenuto";
App::$strings["First Name"] = "Nome";
App::$strings["Last Name"] = "Cognome";
App::$strings["Nickname"] = "Nick";
App::$strings["Full Name"] = "Nome e cognome";
App::$strings["Profile Photo 16px"] = "Foto del profilo 16px";
App::$strings["Profile Photo 32px"] = "Foto del profilo 32px";
App::$strings["Profile Photo 48px"] = "Foto del profilo 48px";
App::$strings["Profile Photo 64px"] = "Foto del profilo 64px";
App::$strings["Profile Photo 80px"] = "Foto del profilo 80px";
App::$strings["Profile Photo 128px"] = "Foto del profilo 128px";
App::$strings["Timezone"] = "Fuso orario";
App::$strings["Homepage URL"] = "Indirizzo home page";
App::$strings["Birth Year"] = "Anno di nascita";
App::$strings["Birth Month"] = "Mese di nascita";
App::$strings["Birth Day"] = "Giorno di nascita";
App::$strings["Birthdate"] = "Data di nascita";
App::$strings["Gender"] = "Sesso";
App::$strings["%s element installed"] = "%s elemento installato";
App::$strings["%s element installation failed"] = "Elementi con installazione fallita: %s";
App::$strings["Your service plan only allows %d channels."] = "Il tuo account permette di creare al massimo %d canali.";
App::$strings["Nothing to import."] = "Non c'è niente da importare.";
App::$strings["Unable to download data from old server"] = "Impossibile importare i dati dal vecchio hub";
App::$strings["Imported file is empty."] = "Il file da importare è vuoto.";
App::$strings["Warning: Database versions differ by %1\$d updates."] = "Attenzione: le versioni di database differiscono di %1\$d aggiornamenti.";
App::$strings["No channel. Import failed."] = "Nessun canale. Import fallito.";
App::$strings["You must be logged in to use this feature."] = "Per questa funzionalità devi aver effettuato l'accesso.";
App::$strings["Import Channel"] = "Importa un canale";
App::$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."] = "Usa questo modulo per importare un tuo canale da un altro hub. Puoi ottenere i dati identificativi del canale direttamente dall'altro hub oppure tramite un file esportato in precedenza.";
App::$strings["File to Upload"] = "File da caricare";
App::$strings["Or provide the old server/hub details"] = "Oppure fornisci i dettagli del vecchio hub";
App::$strings["Your old identity address (xyz@example.com)"] = "Il tuo vecchio identificativo (per esempio pippo@esempio.com)";
App::$strings["Your old login email address"] = "L'email che usavi per accedere sul vecchio hub";
App::$strings["Your old login password"] = "La password per il vecchio hub";
App::$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 hub, oppure se preferisci che quello vecchio resti tale. Potrai pubblicare da entrambi i hub, ma solamente uno sarà indicato come la posizione su cui risiedono i tuoi file, foto, ecc.";
App::$strings["Make this hub my primary location"] = "Rendi questo hub il mio indirizzo primario";
App::$strings["Import existing posts if possible (experimental - limited by available memory"] = "Importa i contenuti pubblicati, se possibile (sperimentale)";
App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Questa funzione potrebbe impiegare molto tempo a terminare. Per favore lanciala *una volta sola* e resta su questa pagina finché non avrà finito.";
App::$strings["Import completed"] = "Importazione completata";
App::$strings["Import Items"] = "Importa i contenuti";
App::$strings["Use this form to import existing posts and content from an export file."] = "Usa questa funzionalità per importare i vecchi contenuti e i post da un file esportato in precedenza.";
App::$strings["Total invitation limit exceeded."] = "Hai superato il numero massimo di inviti.";
App::$strings["%s : Not a valid email address."] = "%s: non è un indirizzo email valido.";
App::$strings["Please join us on \$Projectname"] = "Unisciti a noi su \$Projectname";
App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Hai superato il numero massimo di inviti. Contatta l'amministratore se necessario.";
App::$strings["%s : Message delivery failed."] = "%s: la consegna del messaggio è fallita.";
App::$strings["%d message sent."] = array(
	0 => "%d messaggio inviato.",
	1 => "%d messaggi inviati.",
);
App::$strings["You have no more invitations available"] = "Non hai altri inviti disponibili";
App::$strings["Send invitations"] = "Spedisci inviti";
App::$strings["Enter email addresses, one per line:"] = "Inserisci gli indirizzi email, uno per riga:";
App::$strings["Your message:"] = "Il tuo messaggio:";
App::$strings["Please join my community on \$Projectname."] = "Entra nella mia comunità su \$Projectname.";
App::$strings["You will need to supply this invitation code:"] = "Dovrai fornire questo codice invito:";
App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registrati su qualsiasi server \$Projectname (sono tutti interconnessi)";
App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Inserisci il mio indirizzo \$Projectname nel riquadro di ricerca del sito.";
App::$strings["or visit"] = "oppure visita";
App::$strings["3. Click [Connect]"] = "3. Clicca su [Aggiungi]";
App::$strings["Unable to locate original post."] = "Impossibile trovare il messaggio originale.";
App::$strings["Empty post discarded."] = "Il post vuoto è stato ignorato.";
App::$strings["Executable content type not permitted to this channel."] = "I contenuti eseguibili non sono permessi su questo canale.";
App::$strings["Duplicate post suppressed."] = "I post duplicati sono scartati.";
App::$strings["System error. Post not saved."] = "Errore di sistema. Post non salvato.";
App::$strings["Unable to obtain post information from database."] = "Impossibile caricare il post dal database.";
App::$strings["You have reached your limit of %1$.0f top level posts."] = "Hai raggiunto il limite massimo di %1$.0f post sulla pagina principale.";
App::$strings["You have reached your limit of %1$.0f webpages."] = "Hai raggiunto il limite massimo di %1$.0f pagine web.";
App::$strings["Comanche page description language help"] = "Guida di Comanche Page Description Language";
App::$strings["Layout Description"] = "Descrizione del layout";
App::$strings["Download PDL file"] = "Scarica il file PDL";
App::$strings["Like/Dislike"] = "Mi piace/Non mi piace";
App::$strings["This action is restricted to members."] = "Questa funzionalità è riservata agli iscritti.";
App::$strings["Please <a href=\"rmagic\">login with your \$Projectname ID</a> or <a href=\"register\">register as a new \$Projectname member</a> to continue."] = "Per continuare devi <a href=\"rmagic\">accedere con il tuo identificativo \$Projectname</a> o <a href=\"register\">registrarti come nuovo utente \$Projectname</a>.";
App::$strings["Invalid request."] = "Richiesta non valida.";
App::$strings["thing"] = "Oggetto";
App::$strings["Channel unavailable."] = "Canale non trovato.";
App::$strings["Previous action reversed."] = "Il comando precedente è stato annullato.";
App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s è d'accordo";
App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s non è d'accordo";
App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s non si esprime";
App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s partecipa";
App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s non partecipa";
App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s forse partecipa";
App::$strings["Action completed."] = "Comando completato.";
App::$strings["Thank you."] = "Grazie.";
App::$strings["Remote privacy information not available."] = "Le informazioni remote sulla privacy non sono disponibili.";
App::$strings["Visible to:"] = "Visibile a:";
App::$strings["Location not found."] = "Indirizzo non trovato.";
App::$strings["Location lookup failed."] = "La ricerca dell'indirizzo è fallita.";
App::$strings["Please select another location to become primary before removing the primary location."] = "Prima di rimuovere il tuo canale primario assicurati di avere scelto una sua copia (clone) come primaria.";
App::$strings["Syncing locations"] = "Sincronizzazione tra hub";
App::$strings["No locations found."] = "Nessun indirizzo trovato.";
App::$strings["Manage Channel Locations"] = "Modifica gli indirizzi del canale";
App::$strings["Location (address)"] = "Indirizzo";
App::$strings["Primary Location"] = "Indirizzo primario";
App::$strings["Drop location"] = "Elimina un indirizzo";
App::$strings["Sync now"] = "Sincronizza ora";
App::$strings["Please wait several minutes between consecutive operations."] = "Si raccomanda di attendere alcuni minuti prima di effettuare una nuova sincronizzazione.";
App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Quando possibile, riduci il numero di cloni del tuo canale effettuando il login sul relativo hub e rimuovendoli.";
App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Usa questo modulo per abbandonare un canale su un hub che non è più funzionante.";
App::$strings["sent you a private message"] = "ti ha inviato un messaggio privato";
App::$strings["added your channel"] = "ha aggiunto il tuo canale";
App::$strings["posted an event"] = "ha creato un evento";
App::$strings["Hub not found."] = "Hub non trovato.";
App::$strings["Unable to lookup recipient."] = "Impossibile associare un destinatario.";
App::$strings["Unable to communicate with requested channel."] = "Impossibile comunicare con il canale richiesto.";
App::$strings["Cannot verify requested channel."] = "Impossibile verificare il canale richiesto.";
App::$strings["Selected channel has private message restrictions. Send failed."] = "Il canale ha delle regole restrittive per la ricezione dei messaggi privati. Invio fallito.";
App::$strings["Messages"] = "Messaggi";
App::$strings["Message recalled."] = "Messaggio revocato.";
App::$strings["Conversation removed."] = "Conversazione rimossa.";
App::$strings["Requested channel is not in this network"] = "Il canale cercato non è in questa rete";
App::$strings["Send Private Message"] = "Invia un messaggio privato";
App::$strings["To:"] = "A:";
App::$strings["Subject:"] = "Oggetto:";
App::$strings["Send"] = "Invia";
App::$strings["Delete message"] = "Elimina il messaggio";
App::$strings["Delivery report"] = "Rapporto di trasmissione";
App::$strings["Recall message"] = "Revoca il messaggio";
App::$strings["Message has been recalled."] = "Il messaggio è stato revocato.";
App::$strings["Delete Conversation"] = "Elimina la conversazione";
App::$strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Non è disponibile alcun modo sicuro di comunicare con questo canale. <strong>Se possibile</strong>, prova a rispondere direttamente dalla pagina del profilo del mittente.";
App::$strings["Send Reply"] = "Invia la risposta";
App::$strings["Your message for %s (%s):"] = "Il tuo messaggio per %s (%s):";
App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Hai creato %1$.0f dei %2$.0f canali permessi.";
App::$strings["Create a new channel"] = "Crea un nuovo canale";
App::$strings["Current Channel"] = "Canale attuale";
App::$strings["Switch to one of your channels by selecting it."] = "Seleziona l'altro canale a cui vuoi passare.";
App::$strings["Default Channel"] = "Canale predefinito";
App::$strings["Make Default"] = "Rendi predefinito";
App::$strings["%d new messages"] = "%d nuovi messaggi";
App::$strings["%d new introductions"] = "%d nuove richieste di entrare in contatto";
App::$strings["Delegated Channels"] = "Canali delegati";
App::$strings["Profile Match"] = "Profili corrispondenti";
App::$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.";
App::$strings["is interested in:"] = "interessi personali:";
App::$strings["No matches"] = "Nessun risultato";
App::$strings["Unable to update menu."] = "Impossibile aggiornare il menù.";
App::$strings["Unable to create menu."] = "Impossibile creare il menù.";
App::$strings["Menu Name"] = "Nome del menu";
App::$strings["Unique name (not visible on webpage) - required"] = "Nome unico (non visibile sulla pagina) - obbligatorio";
App::$strings["Menu Title"] = "Titolo del menu";
App::$strings["Visible on webpage - leave empty for no title"] = "Visibile sulla pagina - lascia vuoto per non avere un titolo";
App::$strings["Allow Bookmarks"] = "Permetti i segnalibri";
App::$strings["Menu may be used to store saved bookmarks"] = "Puoi salvare i segnalibri nei menù";
App::$strings["Submit and proceed"] = "Salva e procedi";
App::$strings["Drop"] = "Elimina";
App::$strings["Bookmarks allowed"] = "Permetti segnalibri";
App::$strings["Delete this menu"] = "Elimina questo menù";
App::$strings["Edit menu contents"] = "Modifica i contenuti del menù";
App::$strings["Edit this menu"] = "Modifica questo menù";
App::$strings["Menu could not be deleted."] = "Il menù non può essere eliminato.";
App::$strings["Menu not found."] = "Menù non trovato.";
App::$strings["Edit Menu"] = "Modifica menù";
App::$strings["Add or remove entries to this menu"] = "Aggiungi o rimuovi elementi di questo menù";
App::$strings["Menu name"] = "Nome del menù";
App::$strings["Must be unique, only seen by you"] = "Deve essere unico, lo vedrai solo tu";
App::$strings["Menu title"] = "Titolo del menù";
App::$strings["Menu title as seen by others"] = "Titolo del menù come comparirà a tutti";
App::$strings["Allow bookmarks"] = "Permetti l'invio di segnalibri";
App::$strings["Not found."] = "Non trovato.";
App::$strings["Unable to create element."] = "Impossibile creare l'elemento.";
App::$strings["Unable to update menu element."] = "Non è possibile aggiornare l'elemento del menù.";
App::$strings["Unable to add menu element."] = "Impossibile aggiungere l'elemento al menù.";
App::$strings["Menu Item Permissions"] = "Permessi del menu";
App::$strings["(click to open/close)"] = "(clicca per aprire/chiudere)";
App::$strings["Link Name"] = "Nome link";
App::$strings["Link or Submenu Target"] = "Azione del link o del sottomenu";
App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Inserisci l'indirizzo del link o scegli il nome di un sottomenu";
App::$strings["Use magic-auth if available"] = "Usa l'autenticazione tramite il tuo hub, se disponibile";
App::$strings["Open link in new window"] = "Apri il link in una nuova finestra";
App::$strings["Order in list"] = "Ordine dell'elenco";
App::$strings["Higher numbers will sink to bottom of listing"] = "I numeri più alti andranno in fondo all'elenco";
App::$strings["Submit and finish"] = "Salva e termina";
App::$strings["Submit and continue"] = "Salva e continua";
App::$strings["Menu:"] = "Menu:";
App::$strings["Link Target"] = "Destinazione link";
App::$strings["Edit menu"] = "Modifica il menù";
App::$strings["Edit element"] = "Modifica l'elemento";
App::$strings["Drop element"] = "Elimina l'elemento";
App::$strings["New element"] = "Nuovo elemento";
App::$strings["Edit this menu container"] = "Modifica il contenitore del menù";
App::$strings["Add menu element"] = "Aggiungi un elemento al menù";
App::$strings["Delete this menu item"] = "Elimina questo elemento del menù";
App::$strings["Edit this menu item"] = "Modifica questo elemento del menù";
App::$strings["Menu item not found."] = "L'elemento del menù non è stato trovato.";
App::$strings["Menu item deleted."] = "L'elemento del menù è stato eliminato.";
App::$strings["Menu item could not be deleted."] = "L'elemento del menù non può essere eliminato.";
App::$strings["Edit Menu Element"] = "Modifica l'elemento del menù";
App::$strings["Link text"] = "Testo del link";
App::$strings["Set your current mood and tell your friends"] = "Scegli il tuo umore attuale per mostrarlo agli amici";
App::$strings["No such group"] = "Impossibile trovare il gruppo di canali";
App::$strings["No such channel"] = "Canale sconosciuto";
App::$strings["forum"] = "forum";
App::$strings["Search Results For:"] = "Cerca risultati con:";
App::$strings["Privacy group is empty"] = "Il gruppo di canali è vuoto";
App::$strings["Privacy group: "] = "Gruppo di canali:";
App::$strings["Invalid connection."] = "Contatto non valido.";
App::$strings["Name or caption"] = "Nome o titolo";
App::$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\"";
App::$strings["Choose a short nickname"] = "Scegli un nome breve";
App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Il nome breve sarà usato per creare un indirizzo facile da ricordare per il tuo canale, per esempio nickname%s";
App::$strings["Channel role and privacy"] = "Tipo di canale e privacy";
App::$strings["Select a channel role with your privacy requirements."] = "Scegli il tipo di canale che vuoi e la privacy da applicare.";
App::$strings["Read more about roles"] = "Maggiori informazioni sui ruoli";
App::$strings["Create Channel"] = "Crea un canale";
App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "Un canale è la tua identità su questa rete. Può rappresentare una persona, un blog o un forum, per esempio. I canali possono essere in contatto con altri canali per condividere i loro contenuti con permessi anche molto dettagliati.";
App::$strings["or <a href=\"import\">import an existing channel</a> from another location."] = "oppure <a href=\"import\">importa un canale esistente</a> da un altro server/hub.";
App::$strings["Invalid request identifier."] = "L'identificativo della richiesta non è valido.";
App::$strings["Discard"] = "Rifiuta";
App::$strings["No more system notifications."] = "Non ci sono nuove notifiche di sistema.";
App::$strings["System Notifications"] = "Notifiche di sistema";
App::$strings["Unable to find your hub."] = "Impossibile raggiungere il tuo hub.";
App::$strings["Post successful."] = "Inviato!";
App::$strings["OpenID protocol error. No ID returned."] = "Errore del protocollo OpenID. Nessun ID ricevuto in risposta.";
App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.";
App::$strings["This setting requires special processing and editing has been blocked."] = "Questa impostazione è bloccata, richiede criteri di modifica speciali";
App::$strings["Configuration Editor"] = "Editor di configurazione";
App::$strings["Warning: Changing some settings could render your channel inoperable. Please leave this page unless you are comfortable with and knowledgeable about how to correctly use this feature."] = "Attenzione: alcune delle impostazioni, se cambiate, potrebbero rendere questo canale non funzionante. Lascia questa pagina a meno che tu non sappia con assoluta certezza quali modifiche effettuare.";
App::$strings["Layout updated."] = "Layout aggiornato.";
App::$strings["Edit System Page Description"] = "Modifica i layout di sistema";
App::$strings["Layout not found."] = "Layout non trovato.";
App::$strings["Module Name:"] = "Nome del modulo:";
App::$strings["Layout Help"] = "Guida al layout";
App::$strings["Page owner information could not be retrieved."] = "Impossibile ottenere informazioni sul proprietario della pagina.";
App::$strings["Album not found."] = "Album non trovato.";
App::$strings["Delete Album"] = "Elimina album";
App::$strings["Delete Photo"] = "Elimina foto";
App::$strings["No photos selected"] = "Nessuna foto selezionata";
App::$strings["Access to this item is restricted."] = "Questo elemento non è visibile a tutti.";
App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "Hai usato %1$.2f Mb dei %2$.2f Mb di spazio disponibile.";
App::$strings["%1$.2f MB photo storage used."] = "Hai usato %1$.2f Mb del tuo spazio disponibile.";
App::$strings["Upload Photos"] = "Carica foto";
App::$strings["Enter an album name"] = "Scegli il nome dell'album";
App::$strings["or select an existing album (doubleclick)"] = "o seleziona un album esistente (doppio click)";
App::$strings["Create a status post for this upload"] = "Pubblica sulla bacheca";
App::$strings["Caption (optional):"] = "Titolo (facoltativo):";
App::$strings["Description (optional):"] = "Descrizione (facoltativa):";
App::$strings["Album name could not be decoded"] = "Non è stato possibile leggere il nome dell'album";
App::$strings["Contact Photos"] = "Foto dei contatti";
App::$strings["Show Newest First"] = "Prima i più recenti";
App::$strings["Show Oldest First"] = "Prima i più vecchi";
App::$strings["Permission denied. Access to this item may be restricted."] = "Permesso negato. L'accesso a questo elemento può essere stato limitato.";
App::$strings["Photo not available"] = "Foto non disponibile";
App::$strings["Use as profile photo"] = "Usa come foto del profilo";
App::$strings["Private Photo"] = "Foto privata";
App::$strings["View Full Size"] = "Vedi nelle dimensioni originali";
App::$strings["Remove"] = "Rimuovi";
App::$strings["Edit photo"] = "Modifica la foto";
App::$strings["Rotate CW (right)"] = "Ruota (senso orario)";
App::$strings["Rotate CCW (left)"] = "Ruota (senso antiorario)";
App::$strings["Enter a new album name"] = "Inserisci il nome del nuovo album";
App::$strings["or select an existing one (doubleclick)"] = "o seleziona uno esistente (doppio click)";
App::$strings["Caption"] = "Didascalia";
App::$strings["Add a Tag"] = "Aggiungi tag";
App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Esempio: @bob, @Barbara_Jensen, @jim@example.com";
App::$strings["Flag as adult in album view"] = "Marca come 'per adulti'";
App::$strings["In This Photo:"] = "In questa foto:";
App::$strings["Map"] = "Mappa";
App::$strings["View Album"] = "Guarda l'album";
App::$strings["Recent Photos"] = "Foto recenti";
App::$strings["Theme settings updated."] = "Le impostazioni del tema sono state aggiornate.";
App::$strings["# Accounts"] = "# account";
App::$strings["# blocked accounts"] = "# account bloccati";
App::$strings["# expired accounts"] = "# account scaduti";
App::$strings["# expiring accounts"] = "# account in scadenza";
App::$strings["# Channels"] = "# canali";
App::$strings["# primary"] = "# primari";
App::$strings["# clones"] = "# cloni";
App::$strings["Message queues"] = "Coda messaggi in uscita";
App::$strings["Administration"] = "Amministrazione";
App::$strings["Summary"] = "Riepilogo";
App::$strings["Registered accounts"] = "Account creati";
App::$strings["Pending registrations"] = "Registrazioni da approvare";
App::$strings["Registered channels"] = "Canali creati";
App::$strings["Active plugins"] = "Plugin attivi";
App::$strings["Version"] = "Versione";
App::$strings["Site settings updated."] = "Impostazioni del sito salvate correttamente.";
App::$strings["mobile"] = "mobile";
App::$strings["experimental"] = "sperimentale";
App::$strings["unsupported"] = "non supportato";
App::$strings["Yes - with approval"] = "Sì - con approvazione";
App::$strings["My site is not a public server"] = "Non è un server pubblico";
App::$strings["My site has paid access only"] = "È un servizio a pagamento";
App::$strings["My site has free access only"] = "È un servizio gratuito";
App::$strings["My site offers free accounts with optional paid upgrades"] = "È un servizio gratuito con opzioni aggiuntive a pagamento";
App::$strings["Registration"] = "Registrazione";
App::$strings["File upload"] = "Caricamento file";
App::$strings["Policies"] = "Politiche";
App::$strings["Site name"] = "Nome del sito";
App::$strings["Banner/Logo"] = "Banner o logo";
App::$strings["Administrator Information"] = "Informazioni sull'amministratore";
App::$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";
App::$strings["System language"] = "Lingua di sistema";
App::$strings["System theme"] = "Tema di sistema";
App::$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>";
App::$strings["Mobile system theme"] = "Tema di sistema per dispositivi mobili";
App::$strings["Theme for mobile devices"] = "Tema per i dispositivi mobili";
App::$strings["Allow Feeds as Connections"] = "Permetti di aggiungere i feed come contatti";
App::$strings["(Heavy system resource usage)"] = "(Uso intenso delle risorse di sistema!)";
App::$strings["Maximum image size"] = "Dimensione massima immagini";
App::$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.";
App::$strings["Does this site allow new member registration?"] = "Questo sito permette a nuovi utenti di registrarsi?";
App::$strings["Invitation only"] = "Solo con invito";
App::$strings["Only allow new member registrations with an invitation code. Above register policy must be set to Yes."] = "La registrazione è permessa solo a chi possiede un codice di invito. Funziona solo se la possibilità di registrarsi è impostata a 'Sì'.";
App::$strings["Which best describes the types of account offered by this hub?"] = "Come descriveresti il tipo di servizio proposto da questo server?";
App::$strings["Register text"] = "Testo di registrazione";
App::$strings["Will be displayed prominently on the registration page."] = "Sarà mostrato ben visibile nella pagina di registrazione.";
App::$strings["Site homepage to show visitors (default: login box)"] = "Homepage del sito da mostrare ai navigatori (predefinito: modulo di login)";
App::$strings["example: 'public' to show public stream, 'page/sys/home' to show a system webpage called 'home' or 'include:home.html' to include a file."] = "esempio: 'public' per mostrare i contenuti pubblici degli utenti, 'page/sys/home' per mostrare la pagina web definita come 'home' oppure 'include:home.html' per mostrare il contenuto di un file.";
App::$strings["Preserve site homepage URL"] = "Conserva l'URL della homepage";
App::$strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Presenta la homepage del sito in un frame all'indirizzo attuale invece di un redirect.";
App::$strings["Accounts abandoned after x days"] = "Account abbandonati dopo X giorni";
App::$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.";
App::$strings["Allowed friend domains"] = "Domini fidati e consentiti";
App::$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 virgola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascia vuoto per accettare connessioni da qualsiasi dominio.";
App::$strings["Allowed email domains"] = "Domini email consentiti";
App::$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";
App::$strings["Not allowed email domains"] = "Domini email non consentiti";
App::$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.";
App::$strings["Verify Email Addresses"] = "Verifica l'indirizzo email";
App::$strings["Check to verify email addresses used in account registration (recommended)."] = "Attiva per richiedere la verifica degli indirizzi email dei nuovi utenti (consigliato).";
App::$strings["Force publish"] = "Forza la publicazione del profilo";
App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "Seleziona per pubblicare sui directory server <strong>tutti</strong> i profili registrati su questo sito.";
App::$strings["Import Public Streams"] = "Suggerisci contenuti pubblici della rete Hubzilla";
App::$strings["Import and allow access to public content pulled from other sites. Warning: this content is unmoderated."] = "Suggerisci e visualizza i post pubblici presenti su altri siti Hubzilla. Attenzione: i contenuti potrebbero essere inappropriati perché non sottoposti a moderazione.";
App::$strings["login on Homepage"] = "Mostra il login sulla homepage";
App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = "Presenta il modulo di login ai visitatori sulla homepage in mancanza di altri contenuti.";
App::$strings["Directory Server URL"] = "URL del directory server";
App::$strings["Default directory server"] = "Directory server predefinito";
App::$strings["Proxy user"] = "Utente proxy";
App::$strings["Proxy URL"] = "URL proxy";
App::$strings["Network timeout"] = "Timeout rete";
App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valore in secondi. Imposta a 0 per illimitato (sconsigliato).";
App::$strings["Delivery interval"] = "Recapito ritardato";
App::$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.";
App::$strings["Deliveries per process"] = "Tentativi di recapito per processo";
App::$strings["Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5."] = "Numero di tentativi di recapito da tentare per ciascun processo. Può essere modificato per migliorare le performance di sistema. Raccomandato: 1-5";
App::$strings["Poll interval"] = "Intervallo di polling";
App::$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'.";
App::$strings["Maximum Load Average"] = "Carico massimo medio";
App::$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.";
App::$strings["Expiration period in days for imported (grid/network) content"] = "Scadenza dei contenuti importati da altri siti (in giorni)";
App::$strings["0 for no expiration of imported content"] = "0 per non avere scadenza";
App::$strings["Off"] = "Off";
App::$strings["On"] = "On";
App::$strings["Lock feature %s"] = "Rendi non modificabile %s";
App::$strings["Manage Additional Features"] = "Funzionalità opzionali";
App::$strings["No server found"] = "Server non trovato";
App::$strings["ID"] = "ID";
App::$strings["for channel"] = "per il canale";
App::$strings["on server"] = "sul server";
App::$strings["Server"] = "Server";
App::$strings["Block public"] = "Blocca pagine pubbliche";
App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated."] = "Seleziona per impedire di vedere le pagine personali di questo sito a chi non ha effettuato l'accesso.";
App::$strings["Allow communications only from these sites"] = "Permetti la comunicazione solo da questi siti";
App::$strings["One site per line. Leave empty to allow communication from anywhere by default"] = "Un sito per riga. Lascia vuoto per permettere la comunicazione con tutti";
App::$strings["Block communications from these sites"] = "Blocca la comunicazione da questi siti";
App::$strings["Allow communications only from these channels"] = "Permetti la comunicazione solo da questi canali";
App::$strings["One channel (hash) per line. Leave empty to allow from any channel by default"] = "Un canale (hash) per riga. Lascia vuoto per comunicare con tutti i canali";
App::$strings["Block communications from these channels"] = "Blocca la comunicazione da questi canali";
App::$strings["Allow embedded HTML content only from these domains"] = "Permetti i contenuti incorporati HTML solo da questi domini";
App::$strings["One site per line. Leave empty to allow from any site by default"] = "Un sito per riga. Lascia vuoto per permettere sempre i contenuti incorporati";
App::$strings["Block embedded HTML from these domains"] = "Blocca i contenuti incorporati HTML da questi domini";
App::$strings["Cooperative embed security"] = "Sicurezza cooperativa sui contenuti incorporati";
App::$strings["Enable to share embed security with other compatible sites/hubs"] = "Abilita la condivisione delle informazioni di sicurezza sui contenuti incorporati con altri siti/hub";
App::$strings["Update has been marked successful"] = "L'aggiornamento è stato marcato come eseguito.";
App::$strings["Executing %s failed. Check system logs."] = "Fallita l'esecuzione di %s. Maggiori informazioni sui log di sistema.";
App::$strings["Update %s was successfully applied."] = "L'aggiornamento %s è terminato correttamente.";
App::$strings["Update %s did not return a status. Unknown if it succeeded."] = "L'aggiornamento %s non ha dato risposta. Impossibile determinare se è terminato correttamente.";
App::$strings["Update function %s could not be found."] = "Impossibile trovare la funzione di aggiornamento %s";
App::$strings["No failed updates."] = "Nessun aggiornamento fallito.";
App::$strings["Failed Updates"] = "Aggiornamenti falliti.";
App::$strings["Mark success (if update was manually applied)"] = "Marca come eseguito (se applicato manualmente).";
App::$strings["Attempt to execute this update step automatically"] = "Tenta di eseguire in automatico questo passaggio dell'aggiornamento.";
App::$strings["Queue Statistics"] = "Statistiche della coda";
App::$strings["Total Entries"] = "Totale";
App::$strings["Priority"] = "Priorità";
App::$strings["Destination URL"] = "URL di destinazione";
App::$strings["Mark hub permanently offline"] = "Questo hub è definitivamente offline";
App::$strings["Empty queue for this hub"] = "Svuota la coda per questo hub";
App::$strings["Last known contact"] = "Ultimo scambio dati";
App::$strings["%s account blocked/unblocked"] = array(
	0 => "Modificato il blocco su %s account",
	1 => "Modificato il blocco verso %s",
);
App::$strings["%s account deleted"] = array(
	0 => "%s account eliminato",
	1 => "%s account eliminati",
);
App::$strings["Account not found"] = "Account non trovato";
App::$strings["Account '%s' deleted"] = "Account '%s' eliminato";
App::$strings["Account '%s' blocked"] = "Aggiunto un blocco verso '%s'";
App::$strings["Account '%s' unblocked"] = "Rimosso il blocco verso '%s'";
App::$strings["Users"] = "Utenti";
App::$strings["select all"] = "seleziona tutti";
App::$strings["User registrations waiting for confirm"] = "Richieste di registrazione in attesa di conferma";
App::$strings["Request date"] = "Data richiesta";
App::$strings["No registrations."] = "Nessuna registrazione.";
App::$strings["Deny"] = "Nega";
App::$strings["Register date"] = "Data registrazione";
App::$strings["Last login"] = "Ultimo accesso";
App::$strings["Expires"] = "Con scadenza";
App::$strings["Service Class"] = "Classe dell'account";
App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Gli account selezionati saranno eliminati!\\n\\nTutto ciò che hanno caricato o pubblicato su questo sito sarà eliminato definitivamente!\\n\\nVuoi confermare?";
App::$strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "L'account {0} sarà eliminato!\\n\\nTutto ciò che ha caricato o pubblicato su questo sito sarà eliminato definitivamente!\\n\\nVuoi confermare?";
App::$strings["%s channel censored/uncensored"] = array(
	0 => "Censura modificata per %s canale",
	1 => "Censura modificata per %s canali",
);
App::$strings["%s channel code allowed/disallowed"] = array(
	0 => "%s canale permette/non permette codice nei contenuti",
	1 => "%s canali permettono/non permettono codice nei contenuti",
);
App::$strings["%s channel deleted"] = array(
	0 => "%s canale è stato rimosso",
	1 => "%s canali sono stati rimossi",
);
App::$strings["Channel not found"] = "Canale non trovato";
App::$strings["Channel '%s' deleted"] = "Il canale '%s' è stato rimosso";
App::$strings["Channel '%s' censored"] = "Applicata una censura al canale '%s'";
App::$strings["Channel '%s' uncensored"] = "Rimossa la censura dal canale '%s'";
App::$strings["Channel '%s' code allowed"] = "Il canale '%s' permette codice nei contenuti";
App::$strings["Channel '%s' code disallowed"] = "Il canale '%s' non permette codice nei contenuti";
App::$strings["Censor"] = "Applica censura";
App::$strings["Uncensor"] = "Rimuovi censura";
App::$strings["Allow Code"] = "Permetti codice";
App::$strings["Disallow Code"] = "Non permettere codice";
App::$strings["UID"] = "UID";
App::$strings["Address"] = "Indirizzo";
App::$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?";
App::$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?";
App::$strings["Plugin %s disabled."] = "Plugin %s non attivo.";
App::$strings["Plugin %s enabled."] = "Plugin %s attivo.";
App::$strings["Disable"] = "Disattiva";
App::$strings["Enable"] = "Attiva";
App::$strings["Toggle"] = "Attiva/disattiva";
App::$strings["Author: "] = "Autore:";
App::$strings["Maintainer: "] = "Gestore:";
App::$strings["Minimum project version: "] = "Minima versione hubzilla";
App::$strings["Maximum project version: "] = "Massima versione hubzilla";
App::$strings["Minimum PHP version: "] = "Minima versione PHP:";
App::$strings["Requires: "] = "Necessita di:";
App::$strings["Disabled - version incompatibility"] = "Disabilitato - incompatibilità di versione";
App::$strings["No themes found."] = "Nessun tema trovato.";
App::$strings["Screenshot"] = "Istantanea dello schermo";
App::$strings["[Experimental]"] = "[Sperimentale]";
App::$strings["[Unsupported]"] = "[Non supportato]";
App::$strings["Log settings updated."] = "Impostazioni di log aggiornate.";
App::$strings["Clear"] = "Pulisci";
App::$strings["Debugging"] = "Debugging";
App::$strings["Log file"] = "File di log";
App::$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.";
App::$strings["Log level"] = "Livello di log";
App::$strings["New Profile Field"] = "Nuovo campo del profilo";
App::$strings["Field nickname"] = "Nome breve del campo";
App::$strings["System name of field"] = "Nome di sistema del campo";
App::$strings["Input type"] = "Tipo di dati";
App::$strings["Field Name"] = "Nome del campo";
App::$strings["Label on profile pages"] = "Etichetta da mostrare sulla pagina del profilo";
App::$strings["Help text"] = "Testo di aiuto";
App::$strings["Additional info (optional)"] = "Informazioni aggiuntive (facoltative)";
App::$strings["Field definition not found"] = "Impossibile trovare la definizione del campo";
App::$strings["Edit Profile Field"] = "Modifica campo del profilo";
App::$strings["Basic Profile Fields"] = "Campi base del profilo";
App::$strings["Advanced Profile Fields"] = "Campi avanzati del profilo";
App::$strings["(In addition to basic fields)"] = "(In aggiunta ai campi di base)";
App::$strings["All available fields"] = "Tutti i campi disponibili";
App::$strings["Custom Fields"] = "Campi Personalizzati";
App::$strings["Create Custom Field"] = "Aggiungi Campi Personalizzati";
App::$strings["Poke somebody"] = "Manda un poke";
App::$strings["Poke/Prod"] = "Poke/Prod";
App::$strings["Poke, prod or do other things to somebody"] = "Manda un poke o altro a qualcuno";
App::$strings["Recipient"] = "Destinatario";
App::$strings["Choose what you wish to do to recipient"] = "Scegli cosa vuoi inviare al destinatario";
App::$strings["Make this post private"] = "Rendi privato questo post";
App::$strings["Fetching URL returns error: %1\$s"] = "La chiamata all'URL restituisce questo errore: %1\$s";
App::$strings["Image uploaded but image cropping failed."] = "L'immagine è stata caricata, ma il non è stato possibile ritagliarla.";
App::$strings["Image resize failed."] = "Il ridimensionamento dell'immagine è fallito.";
App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Forza l'aggiornamento della pagina o cancella la cache del browser se la nuova foto non viene visualizzata immediatamente.";
App::$strings["Image upload failed."] = "Il caricamento dell'immagine è fallito.";
App::$strings["Unable to process image."] = "Impossibile elaborare l'immagine.";
App::$strings["Photo not available."] = "Foto non disponibile.";
App::$strings["Upload File:"] = "Carica un file:";
App::$strings["Select a profile:"] = "Seleziona un profilo:";
App::$strings["Upload Profile Photo"] = "Carica la foto del profilo";
App::$strings["or"] = "o";
App::$strings["skip this step"] = "salta questo passaggio";
App::$strings["select a photo from your photo albums"] = "seleziona una foto dai tuoi album";
App::$strings["Crop Image"] = "Ritaglia immagine";
App::$strings["Please adjust the image cropping for optimum viewing."] = "Ritaglia l'immagine per migliorarne la visualizzazione.";
App::$strings["Done Editing"] = "Modifica terminata";
App::$strings["Profile not found."] = "Profilo non trovato.";
App::$strings["Profile deleted."] = "Profilo eliminato.";
App::$strings["Profile-"] = "Profilo-";
App::$strings["New profile created."] = "Il nuovo profilo è stato creato.";
App::$strings["Profile unavailable to clone."] = "Impossibile duplicare il profilo.";
App::$strings["Profile unavailable to export."] = "Il profilo non è disponibile per l'export.";
App::$strings["Profile Name is required."] = "Il nome del profilo è obbligatorio.";
App::$strings["Marital Status"] = "Stato sentimentale";
App::$strings["Romantic Partner"] = "Partner affettivo";
App::$strings["Likes"] = "Mi piace";
App::$strings["Dislikes"] = "Non mi piace";
App::$strings["Work/Employment"] = "Lavoro/impiego";
App::$strings["Religion"] = "Religione";
App::$strings["Political Views"] = "Orientamento politico";
App::$strings["Sexual Preference"] = "Preferenze sessuali";
App::$strings["Homepage"] = "Home page";
App::$strings["Interests"] = "Interessi";
App::$strings["Profile updated."] = "Profilo aggiornato.";
App::$strings["Hide your connections list from viewers of this profile"] = "Nascondi la tua lista di contatti ai visitatori di questo profilo";
App::$strings["Edit Profile Details"] = "Modifica i dettagli del profilo";
App::$strings["View this profile"] = "Guarda questo profilo";
App::$strings["Change cover photo"] = "Cambia la copertina del canale";
App::$strings["Create a new profile using these settings"] = "Crea un nuovo profilo usando queste impostazioni";
App::$strings["Clone this profile"] = "Clona questo profilo";
App::$strings["Delete this profile"] = "Elimina questo profilo";
App::$strings["Add profile things"] = "Aggiungi oggetti al profilo";
App::$strings["Relation"] = "Relazione";
App::$strings["Import profile from file"] = "Importa il profilo da un file";
App::$strings["Export profile to file"] = "Esporta il profilo in un file";
App::$strings["Your gender"] = "Sesso";
App::$strings["Marital status"] = "Stato civile";
App::$strings["Sexual preference"] = "Preferenze sessuali";
App::$strings["Profile name"] = "Nome del profilo";
App::$strings["This is your default profile."] = "Questo è il tuo profilo predefinito.";
App::$strings["Your full name"] = "Il tuo nome completo";
App::$strings["Title/Description"] = "Titolo/descrizione";
App::$strings["Street address"] = "Indirizzo (via/piazza)";
App::$strings["Locality/City"] = "Località";
App::$strings["Region/State"] = "Regione/stato";
App::$strings["Postal/Zip code"] = "CAP";
App::$strings["Country"] = "Nazione";
App::$strings["Who (if applicable)"] = "Con chi (se possibile)";
App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Per esempio: cathy123, Cathy Williams, cathy@example.com";
App::$strings["Since (date)"] = "dal (data)";
App::$strings["Tell us about yourself"] = "Raccontaci di te...";
App::$strings["Hometown"] = "Città dove vivo";
App::$strings["Political views"] = "Orientamento politico";
App::$strings["Religious views"] = "Orientamento religioso";
App::$strings["Keywords used in directory listings"] = "Parole chiavi mostrate nell'elenco dei canali";
App::$strings["Example: fishing photography software"] = "Per esempio: pesca fotografia programmazione";
App::$strings["Musical interests"] = "Interessi musicali";
App::$strings["Books, literature"] = "Libri, letteratura";
App::$strings["Television"] = "Televisione";
App::$strings["Film/Dance/Culture/Entertainment"] = "Film, danza, cultura, intrattenimento";
App::$strings["Hobbies/Interests"] = "Hobby/interessi";
App::$strings["Love/Romance"] = "Amore";
App::$strings["School/Education"] = "Scuola/educazione";
App::$strings["Contact information and social networks"] = "Contatti e social network";
App::$strings["My other channels"] = "I miei altri canali";
App::$strings["Create New"] = "Crea nuovo";
App::$strings["Invalid profile identifier."] = "Indentificativo del profilo non valido.";
App::$strings["Profile Visibility Editor"] = "Modifica la visibilità del profilo";
App::$strings["Click on a contact to add or remove."] = "Clicca su un contatto per aggiungerlo o rimuoverlo.";
App::$strings["Visible To"] = "Visibile a";
App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself <strong>may</strong> provide additional details."] = "I siti elencati permettono la registrazione libera sulla rete \$Projectname. Tutti questi hub sono interconnessi, quindi essere iscritti su uno equivale a una registrazione su tutta la rete. Alcuni siti potrebbero richiedere un abbonamento o dei servizi a pagamento. Per maggiori dettagli visita gli indirizzi nell'elenco.";
App::$strings["Hub URL"] = "URL del hub";
App::$strings["Access Type"] = "Tipo di accesso";
App::$strings["Registration Policy"] = "Politica di registrazione";
App::$strings["Rate"] = "Valuta";
App::$strings["Website:"] = "Sito web:";
App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Canale remoto [%s] (non ancora conosciuto da questo sito)";
App::$strings["Rating (this information is public)"] = "Valutazione (visibile a tutti)";
App::$strings["Optionally explain your rating (this information is public)"] = "Commento alla valutazione (facoltativo, visibile a tutti)";
App::$strings["No ratings"] = "Nessuna valutazione";
App::$strings["Rating: "] = "Valutazione:";
App::$strings["Website: "] = "Sito web:";
App::$strings["Description: "] = "Descrizione:";
App::$strings["Select a bookmark folder"] = "Scegli una cartella di segnalibri";
App::$strings["Save Bookmark"] = "Salva segnalibro";
App::$strings["URL of bookmark"] = "URL del segnalibro";
App::$strings["Or enter new bookmark folder name"] = "O inserisci il nome di una nuova cartella di segnalibri";
App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "È stato superato il numero massimo giornaliero di registrazioni a questo sito. Riprova domani!";
App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Impossibile proseguire. Devi prima accettare le Condizioni d'Uso del servizio.";
App::$strings["Passwords do not match."] = "Le password non corrispondono.";
App::$strings["Registration successful. Please check your email for validation instructions."] = "La registrazione è terminata correttamente. Per continuare controlla l'email che ti è stata inviata.";
App::$strings["Your registration is pending approval by the site owner."] = "La tua richiesta è in attesa di approvazione da parte dell'amministratore di questo hub.";
App::$strings["Your registration can not be processed."] = "La tua registrazione non puo' essere processata.";
App::$strings["Registration on this hub is disabled."] = "Su questo hub la registrazione non è permessa.";
App::$strings["Registration on this hub is by approval only."] = "La registrazione su questo hub è soggetta ad approvazione.";
App::$strings["<a href=\"pubsites\">Register at another affiliated hub.</a>"] = "<a href=\"pubsites\">Registrati su un altro server hubzilla.</a>";
App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Questo hub ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani.";
App::$strings["Terms of Service"] = "Condizioni d'Uso";
App::$strings["I accept the %s for this website"] = "Accetto le %s di questo sito";
App::$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";
App::$strings["Your email address"] = "Il tuo indirizzo email";
App::$strings["Choose a password"] = "Scegli una password";
App::$strings["Please re-enter your password"] = "Ripeti la password per verifica";
App::$strings["Please enter your invitation code"] = "Inserisci il codice dell'invito";
App::$strings["no"] = "no";
App::$strings["yes"] = "sì";
App::$strings["Membership on this site is by invitation only."] = "Per registrarsi su questo hub è necessario un invito.";
App::$strings["Proceed to create your first channel"] = "Continua e crea il tuo primo canale";
App::$strings["Please login."] = "Effettua l'accesso.";
App::$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.";
App::$strings["Remove This Account"] = "Elimina questo account";
App::$strings["WARNING: "] = "ATTENZIONE:";
App::$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.";
App::$strings["This action is permanent and can not be undone!"] = "Questo comando è definitivo e non può essere annullato!";
App::$strings["Please enter your password for verification:"] = "Inserisci la tua password per verifica:";
App::$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.";
App::$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 hub saranno rimossi dalla rete.";
App::$strings["Remove Account"] = "Elimina l'account";
App::$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.";
App::$strings["Remove This Channel"] = "Elimina questo canale";
App::$strings["This channel will be completely removed from the network. "] = "Questo canale sarà completamente eliminato dalla rete.";
App::$strings["Remove this channel and all its clones from the network"] = "Elimina questo canale e tutti i suoi cloni dalla rete";
App::$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";
App::$strings["Remove Channel"] = "Elimina questo canale";
App::$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.";
App::$strings["The error message was:"] = "Messaggio di errore ricevuto:";
App::$strings["Authentication failed."] = "Autenticazione fallita.";
App::$strings["Remote Authentication"] = "Accedi tramite il tuo hub";
App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Inserisci l'indirizzo del tuo canale (ad esempio lucia@esempio.com)";
App::$strings["Authenticate"] = "Accedi";
App::$strings["Items tagged with: %s"] = "Elementi taggati con: %s";
App::$strings["Search results for: %s"] = "Risultati ricerca: %s";
App::$strings["No service class restrictions found."] = "Non esistono restrizioni su questa classe di account.";
App::$strings["Name is required"] = "Il nome è obbligatorio";
App::$strings["Key and Secret are required"] = "Key e Secret sono richiesti";
App::$strings["Not valid email."] = "Email non valida.";
App::$strings["Protected email address. Cannot change to that email."] = "È un indirizzo email riservato. Non puoi sceglierlo.";
App::$strings["System failure storing new email. Please try again."] = "Errore di sistema. Non è stato possibile memorizzare il tuo messaggio, riprova per favore.";
App::$strings["Password verification failed."] = "Verifica della password fallita.";
App::$strings["Passwords do not match. Password unchanged."] = "Le password non corrispondono. Password non cambiata.";
App::$strings["Empty passwords are not allowed. Password unchanged."] = "Le password non possono essere vuote. Password non cambiata.";
App::$strings["Password changed."] = "Password cambiata.";
App::$strings["Password update failed. Please try again."] = "Modifica password fallita. Prova ancora.";
App::$strings["Settings updated."] = "Impostazioni aggiornate.";
App::$strings["Add application"] = "Aggiungi una app";
App::$strings["Name of application"] = "Nome dell'applicazione";
App::$strings["Consumer Key"] = "Consumer Key";
App::$strings["Automatically generated - change if desired. Max length 20"] = "Generato automaticamente - è possibile cambiarlo. Lunghezza massima 20";
App::$strings["Consumer Secret"] = "Consumer Secret";
App::$strings["Redirect"] = "Redirect";
App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI di riderezione - lasciare vuoto se non richiesto specificamente dall'applicazione";
App::$strings["Icon url"] = "Url icona";
App::$strings["Optional"] = "Facoltativo";
App::$strings["Application not found."] = "Applicazione non trovata.";
App::$strings["Connected Apps"] = "App connesse";
App::$strings["Client key starts with"] = "La client key inizia con";
App::$strings["No name"] = "Nessun nome";
App::$strings["Remove authorization"] = "Revoca l'autorizzazione";
App::$strings["No feature settings configured"] = "Non hai componenti aggiuntivi da personalizzare";
App::$strings["Feature/Addon Settings"] = "Impostazioni dei componenti aggiuntivi";
App::$strings["Account Settings"] = "Il tuo account";
App::$strings["Current Password"] = "Password attuale";
App::$strings["Enter New Password"] = "Nuova password";
App::$strings["Confirm New Password"] = "Conferma la nuova password";
App::$strings["Leave password fields blank unless changing"] = "Lascia vuoti questi campi per non cambiare la password";
App::$strings["Email Address:"] = "Indirizzo email:";
App::$strings["Remove this account including all its channels"] = "Elimina questo account e tutti i suoi canali";
App::$strings["Additional Features"] = "Funzionalità opzionali";
App::$strings["Connector Settings"] = "Impostazioni del connettore";
App::$strings["No special theme for mobile devices"] = "Nessun tema per dispositivi mobili";
App::$strings["%s - (Experimental)"] = "%s - (Sperimentale)";
App::$strings["Display Settings"] = "Aspetto";
App::$strings["Theme Settings"] = "Impostazioni del tema";
App::$strings["Custom Theme Settings"] = "Personalizzazione del tema";
App::$strings["Content Settings"] = "Impostazioni dei contenuti";
App::$strings["Display Theme:"] = "Tema per schermi medio grandi:";
App::$strings["Mobile Theme:"] = "Tema per dispositivi mobili:";
App::$strings["Preload images before rendering the page"] = "Anticipa il caricamento delle immagini prima del rendering della pagina";
App::$strings["The subjective page load time will be longer but the page will be ready when displayed"] = "Il tempo di caricamento della pagina sarà più lungo ma sarà mostrato il rendering completo";
App::$strings["Enable user zoom on mobile devices"] = "Attiva la possibilità di fare zoom sui dispositivi mobili";
App::$strings["Update browser every xx seconds"] = "Aggiorna il browser ogni x secondi";
App::$strings["Minimum of 10 seconds, no maximum"] = "Minimo 10 secondi, nessun limite massimo";
App::$strings["Maximum number of conversations to load at any time:"] = "Massimo numero di conversazioni da mostrare ogni volta:";
App::$strings["Maximum of 100 items"] = "Massimo 100";
App::$strings["Show emoticons (smilies) as images"] = "Mostra le faccine (smilies) come immagini";
App::$strings["Link post titles to source"] = "Il link del titolo di un post porta al sito originale";
App::$strings["System Page Layout Editor - (advanced)"] = "Modifica i layout di sistema (avanzato)";
App::$strings["Use blog/list mode on channel page"] = "Mostra il canale nella modalità blog";
App::$strings["(comments displayed separately)"] = "(i commenti sono mostrati separatamente)";
App::$strings["Use blog/list mode on grid page"] = "Mostra la tua rete in modalità blog";
App::$strings["Channel page max height of content (in pixels)"] = "Altezza massima dei contenuti del canale (in pixel)";
App::$strings["click to expand content exceeding this height"] = "dovrai cliccare sul post per mostrare i contenuti di dimensioni maggiori";
App::$strings["Grid page max height of content (in pixels)"] = "Altezza massima dei contenuti della tua rete (in pixel)";
App::$strings["Nobody except yourself"] = "Nessuno tranne te";
App::$strings["Only those you specifically allow"] = "Solo chi riceve il mio permesso";
App::$strings["Approved connections"] = "Contatti approvati";
App::$strings["Any connections"] = "Tutti i contatti";
App::$strings["Anybody on this website"] = "Chiunque su questo hub";
App::$strings["Anybody in this network"] = "Chiunque su questa rete";
App::$strings["Anybody authenticated"] = "Chiunque abbia effettuato l'accesso";
App::$strings["Anybody on the internet"] = "Chiunque su internet";
App::$strings["Publish your default profile in the network directory"] = "Mostra il mio profilo predefinito negli elenchi pubblici dei canali";
App::$strings["Allow us to suggest you as a potential friend to new members?"] = "Vuoi essere suggerito come amico ai nuovi membri?";
App::$strings["Your channel address is"] = "L'indirizzo del tuo canale è";
App::$strings["Channel Settings"] = "Impostazioni del canale";
App::$strings["Basic Settings"] = "Impostazioni di base";
App::$strings["Your Timezone:"] = "Il tuo fuso orario:";
App::$strings["Default Post Location:"] = "Località predefinita:";
App::$strings["Geographical location to display on your posts"] = "La posizione geografica da mostrare sui tuoi post";
App::$strings["Use Browser Location:"] = "Usa la località rilevata dal browser:";
App::$strings["Adult Content"] = "Contenuto per adulti";
App::$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)";
App::$strings["Security and Privacy Settings"] = "Impostazioni di sicurezza e privacy";
App::$strings["Your permissions are already configured. Click to view/adjust"] = "I tuoi permessi sono già stati configurati. Clicca per vederli o modificarli";
App::$strings["Hide my online presence"] = "Nascondi la mia presenza online";
App::$strings["Prevents displaying in your profile that you are online"] = "Non mostrare sul tuo profilo quando sei online";
App::$strings["Simple Privacy Settings:"] = "Impostazioni di privacy semplificate";
App::$strings["Very Public - <em>extremely permissive (should be used with caution)</em>"] = "Tutto pubblico - <em>estremamente permissivo (da usare con cautela)</em>";
App::$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>";
App::$strings["Private - <em>default private, never open or public</em>"] = "Privato - <em>contenuti normalmente privati, nulla è aperto o pubblico</em>";
App::$strings["Blocked - <em>default blocked to/from everybody</em>"] = "Bloccato - <em>bloccato in invio e ricezione dei contenuti</em>";
App::$strings["Allow others to tag your posts"] = "Permetti ad altri di taggare i tuoi post";
App::$strings["Often used by the community to retro-actively flag inappropriate content"] = "Usato spesso dalla comunità per marcare contenuti inappropriati già esistenti";
App::$strings["Advanced Privacy Settings"] = "Impostazioni di privacy avanzate";
App::$strings["Expire other channel content after this many days"] = "Giorni dopo cui mettere in scadenza gli altri contenuti del canale";
App::$strings["0 or blank to use the website limit. The website expires after %d days."] = "0 o vuoto per usare i valori predefiniti. Per questo sito la scadenza è %d giorni. ";
App::$strings["Maximum Friend Requests/Day:"] = "Numero massimo giornaliero di richieste di amicizia:";
App::$strings["May reduce spam activity"] = "Serve a ridurre lo spam";
App::$strings["Default Post Permissions"] = "Permessi predefiniti per i post";
App::$strings["Channel permissions category:"] = "Categorie di permessi dei canali:";
App::$strings["Maximum private messages per day from unknown people:"] = "Numero massimo giornaliero di messaggi privati da utenti sconosciuti:";
App::$strings["Useful to reduce spamming"] = "Serve e ridurre lo spam";
App::$strings["Notification Settings"] = "Impostazioni di notifica";
App::$strings["By default post a status message when:"] = "Pubblica un messaggio di stato quando:";
App::$strings["accepting a friend request"] = "accetto una nuova amicizia";
App::$strings["joining a forum/community"] = "entro a far parte di un forum";
App::$strings["making an <em>interesting</em> profile change"] = "faccio un cambiamento <em>interessante</em> al mio profilo";
App::$strings["Send a notification email when:"] = "Invia una email di notifica quando:";
App::$strings["You receive a connection request"] = "Ricevi una richiesta di entrare in contatto";
App::$strings["Your connections are confirmed"] = "I tuoi contatti sono confermati";
App::$strings["Someone writes on your profile wall"] = "Qualcuno scrive sulla tua bacheca";
App::$strings["Someone writes a followup comment"] = "Qualcuno scrive un commento dopo di te";
App::$strings["You receive a private message"] = "Ricevi un messaggio privato";
App::$strings["You receive a friend suggestion"] = "Ti viene suggerito un amico";
App::$strings["You are tagged in a post"] = "Sei taggato in un post";
App::$strings["You are poked/prodded/etc. in a post"] = "Ricevi un poke in un post";
App::$strings["Show visual notifications including:"] = "Mostra queste notifiche a schermo:";
App::$strings["Unseen grid activity"] = "Nuove attività nella rete";
App::$strings["Unseen channel activity"] = "Novità nei canali";
App::$strings["Unseen private messages"] = "Nuovi messaggi privati";
App::$strings["Recommended"] = "Consigliato";
App::$strings["Upcoming events"] = "Prossimi eventi";
App::$strings["Events today"] = "Eventi di oggi";
App::$strings["Upcoming birthdays"] = "Prossimi compleanni";
App::$strings["Not available in all themes"] = "Non disponibile in tutti i temi";
App::$strings["System (personal) notifications"] = "Notifiche personali dal sistema";
App::$strings["System info messages"] = "Notifiche di sistema";
App::$strings["System critical alerts"] = "Avvisi critici di sistema";
App::$strings["New connections"] = "Nuovi contatti";
App::$strings["System Registrations"] = "Registrazioni";
App::$strings["Also show new wall posts, private messages and connections under Notices"] = "Mostra negli avvisi anche i nuovi post, i messaggi privati e i nuovi contatti";
App::$strings["Notify me of events this many days in advance"] = "Giorni di anticipo per notificare gli eventi";
App::$strings["Must be greater than 0"] = "Maggiore di 0";
App::$strings["Advanced Account/Page Type Settings"] = "Impostazioni avanzate";
App::$strings["Change the behaviour of this account for special situations"] = "Cambia il funzionamento di questo account per necessità particolari";
App::$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>)";
App::$strings["Miscellaneous Settings"] = "Impostazioni varie";
App::$strings["Default photo upload folder"] = "Cartella predefinita per le foto caricate";
App::$strings["%Y - current year, %m -  current month"] = "%Y - anno corrente, %m - mese corrente";
App::$strings["Default file upload folder"] = "Cartella predefinita per i file caricati";
App::$strings["Personal menu to display in your channel pages"] = "Menu personale da mostrare sulle pagine del tuo canale";
App::$strings["Remove this channel."] = "Elimina questo canale.";
App::$strings["Firefox Share \$Projectname provider"] = "Attiva Firefox Share per \$Projectname";
App::$strings["Start calendar week on monday"] = "La settimana inizia il lunedì";
App::$strings["\$Projectname Server - Setup"] = "Server \$Projectname - Installazione";
App::$strings["Could not connect to database."] = " Impossibile connettersi al database.";
App::$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.";
App::$strings["Could not create table."] = "Impossibile creare le tabelle.";
App::$strings["Your site database has been installed."] = "Il database del sito è stato installato.";
App::$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.";
App::$strings["Please see the file \"install/INSTALL.txt\"."] = "Leggi il file 'install/INSTALL.txt'.";
App::$strings["System check"] = "Verifica del sistema";
App::$strings["Check again"] = "Verifica di nuovo";
App::$strings["Database connection"] = "Connessione al database";
App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = "Per poter installare \$Projectname è necessario fornire i parametri di connessione al tuo database.";
App::$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.";
App::$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.";
App::$strings["Database Server Name"] = "Server del database";
App::$strings["Default is 127.0.0.1"] = "Il valore predefinito è 127.0.0.1";
App::$strings["Database Port"] = "Port del database";
App::$strings["Communication port number - use 0 for default"] = "Scrivi 0 per usare il valore standard";
App::$strings["Database Login Name"] = "Utente database";
App::$strings["Database Login Password"] = "Password database";
App::$strings["Database Name"] = "Nome database";
App::$strings["Database Type"] = "Tipo database";
App::$strings["Site administrator email address"] = "Indirizzo email dell'amministratore del hub";
App::$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 di Hubzilla.";
App::$strings["Website URL"] = "URL completo del sito";
App::$strings["Please use SSL (https) URL if available."] = "Se disponibile, usa l'indirizzo SSL (https).";
App::$strings["Please select a default timezone for your website"] = "Seleziona il fuso orario predefinito per il tuo hub";
App::$strings["Site settings"] = "Impostazioni del hub";
App::$strings["Enable \$Projectname <strong>advanced</strong> features?"] = "Vuoi attivare le funzionalità <strong>avanzate</strong> di \$Projectname?";
App::$strings["Some advanced features, while useful - may be best suited for technically proficient audiences"] = "Alcune funzionalità avanzate, per quanto utili, potrebbero essere adatte solo a un pubblico tecnicamente preparato.";
App::$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";
App::$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.";
App::$strings["PHP executable path"] = "Path del comando PHP";
App::$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.";
App::$strings["Command line PHP"] = "PHP da riga di comando";
App::$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\".";
App::$strings["This is required for message delivery to work."] = "E' necessario perché funzioni la consegna dei messaggi.";
App::$strings["PHP register_argc_argv"] = "PHP register_argc_argv";
App::$strings["Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once."] = "La dimensione massima di un caricamento è impostata a %s. Il singolo file non può superare %s. Ti è permesso caricare max %d file per volta.";
App::$strings["You can adjust these settings in the servers php.ini."] = "Puoi regolare queste impostazioni sul server in php.ini";
App::$strings["PHP upload limits"] = "Limiti PHP in upload";
App::$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 cifratura";
App::$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\".";
App::$strings["Generate encryption keys"] = "Genera chiavi di cifratura";
App::$strings["libCurl PHP module"] = "modulo PHP libCurl";
App::$strings["GD graphics PHP module"] = "modulo PHP GD graphics";
App::$strings["OpenSSL PHP module"] = "modulo PHP OpenSSL";
App::$strings["mysqli or postgres PHP module"] = "modulo PHP per mysqli oppure prostgres";
App::$strings["mb_string PHP module"] = "modulo PHP mb_string";
App::$strings["mcrypt PHP module"] = "modulo PHP mcrypt";
App::$strings["xml PHP module"] = "modulo xml PHP";
App::$strings["Apache mod_rewrite module"] = "modulo Apache mod_rewrite";
App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Errore: il modulo mod-rewrite di Apache è richiesto ma non installato";
App::$strings["proc_open"] = "proc_open";
App::$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";
App::$strings["Error: libCURL PHP module required but not installed."] = "Errore: il modulo libCURL di PHP è richiesto ma non installato.";
App::$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.";
App::$strings["Error: openssl PHP module required but not installed."] = "Errore: il modulo openssl di PHP è richiesto ma non installato.";
App::$strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Errore: il modulo PHP per mysqli o postgres è richiesto ma non installato";
App::$strings["Error: mb_string PHP module required but not installed."] = "Errore: il modulo PHP mb_string è richiesto ma non installato.";
App::$strings["Error: mcrypt PHP module required but not installed."] = "Errore: il modulo PHP mcrypt è richiesto ma non installato.";
App::$strings["Error: xml PHP module required for DAV but not installed."] = "Errore: il modulo xml PHP è richiesto per DAV ma non è installato.";
App::$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.";
App::$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.";
App::$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.";
App::$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.";
App::$strings[".htconfig.php is writable"] = ".htconfig.php è scrivibile";
App::$strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Hubzilla usa il sistema Smarty3 per costruire i suoi template grafici. Smarty3 è molto veloce perché compila i template delle pagine direttamente in PHP.";
App::$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.";
App::$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 con un utente che ha diritto di scrittura su quella cartella (ad esempio www-data).";
App::$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.";
App::$strings["%s is writable"] = "%s è scrivibile";
App::$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 RedMatrix";
App::$strings["store is writable"] = "l'archivio è scrivibile";
App::$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.";
App::$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 self-signed generati da te!";
App::$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.";
App::$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.";
App::$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.";
App::$strings["Providers are available that issue free certificates which are browser-valid."] = "Eventualmente, considera che esistono provider che rilasciano certificati gratuiti riconosciuti dai browser.";
App::$strings["SSL certificate validation"] = "Validazione del certificato SSL";
App::$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:";
App::$strings["Url rewrite is working"] = "Url rewrite funziona correttamente";
App::$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.";
App::$strings["Errors encountered creating database tables."] = "La creazione delle tabelle del database ha generato errori.";
App::$strings["<h1>What next</h1>"] = "<h1>I prossimi passi</h1>";
App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Devi creare [manualmente] la pianificazione del polling.";
App::$strings["No valid account found."] = "Nessun account valido trovato.";
App::$strings["Password reset request issued. Check your email."] = "La richiesta per reimpostare la password è stata inviata. Controlla la tua email.";
App::$strings["Site Member (%s)"] = "Utente del sito (%s)";
App::$strings["Password reset requested at %s"] = "È stato richiesto di reimpostare password su %s";
App::$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.";
App::$strings["Password Reset"] = "Reimposta la password";
App::$strings["Your password has been reset as requested."] = "La password è stata reimpostata come richiesto.";
App::$strings["Your new password is"] = "La tua nuova password è";
App::$strings["Save or copy your new password - and then"] = "Salva o copia la tua nuova password, quindi";
App::$strings["click here to login"] = "clicca qui per accedere";
App::$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.";
App::$strings["Your password has changed at %s"] = "La tua password su %s è cambiata";
App::$strings["Forgot your Password?"] = "Hai dimenticato la password?";
App::$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.";
App::$strings["Email Address"] = "Indirizzo email";
App::$strings["Reset"] = "Reimposta";
App::$strings["Files: shared with me"] = "File: condivisi con me";
App::$strings["NEW"] = "NOVITÀ";
App::$strings["Remove all files"] = "Elimina tutti i file";
App::$strings["Remove this file"] = "Elimina questo file";
App::$strings["Version %s"] = "Versione %s";
App::$strings["Installed plugins/addons/apps:"] = "App e componenti installati:";
App::$strings["No installed plugins/addons/apps"] = "Nessuna app o componente installato";
App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Questo è un hub di \$Projectname - una rete cooperativa e decentralizzata di siti ad elevata privacy. ";
App::$strings["Tag: "] = "Tag: ";
App::$strings["Last background fetch: "] = "Ultima acquisizione:";
App::$strings["Current load average: "] = "Carico medio attuale:";
App::$strings["Running at web location"] = "In esecuzione sull'indirizzo web";
App::$strings["Please visit <a href=\"http://hubzilla.org\">hubzilla.org</a> to learn more about \$Projectname."] = "Visita <a href=\"http://hubzilla.org\">hubzilla.org</a> per maggiori informazioni su \$Projectname.";
App::$strings["Bug reports and issues: please visit"] = "Per segnalare bug e problemi: visita";
App::$strings["\$projectname issues"] = "Problematiche note su \$projectname";
App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Per consigli, ringraziamenti, ecc. - scrivi a \"redmatrix\" at librelist - dot com";
App::$strings["Site Administrators"] = "Amministratori del sito";
App::$strings["Failed to create source. No channel selected."] = "Impossibile creare la sorgente. Nessun canale selezionato.";
App::$strings["Source created."] = "Sorgente creata.";
App::$strings["Source updated."] = "Sorgente aggiornata.";
App::$strings["*"] = "*";
App::$strings["Manage remote sources of content for your channel."] = "Gestisci le sorgenti dei contenuti del tuo canale.";
App::$strings["New Source"] = "Nuova sorgente";
App::$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.";
App::$strings["Only import content with these words (one per line)"] = "Importa solo i contenuti che hanno queste parole (una per riga)";
App::$strings["Leave blank to import all public content"] = "Lascia vuoto per importare tutti i contenuti pubblici";
App::$strings["Channel Name"] = "Nome del canale";
App::$strings["Source not found."] = "Sorgente non trovata.";
App::$strings["Edit Source"] = "Modifica la sorgente";
App::$strings["Delete Source"] = "Elimina la sorgente";
App::$strings["Source removed"] = "Sorgente eliminata";
App::$strings["Unable to remove source."] = "Impossibile rimuovere la sorgente.";
App::$strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s sta seguendo %3\$s di %2\$s";
App::$strings["%1\$s stopped following %2\$s's %3\$s"] = "%1\$s non segue più %3\$s di %2\$s";
App::$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.";
App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha taggato %3\$s di %2\$s con %4\$s";
App::$strings["Tag removed"] = "Tag rimosso";
App::$strings["Remove Item Tag"] = "Rimuovi il tag";
App::$strings["Select a tag to remove: "] = "Seleziona un tag da rimuovere: ";
App::$strings["Thing updated"] = "L'oggetto è stato aggiornato";
App::$strings["Object store: failed"] = "Impossibile memorizzare l'oggetto.";
App::$strings["Thing added"] = "L'Oggetto è stato aggiunto";
App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s";
App::$strings["Show Thing"] = "Mostra l'oggetto";
App::$strings["item not found."] = "non trovato.";
App::$strings["Edit Thing"] = "Modifica l'oggetto";
App::$strings["Select a profile"] = "Scegli un profilo";
App::$strings["Post an activity"] = "Pubblica un'attività";
App::$strings["Only sends to viewers of the applicable profile"] = "Invia solo a chi può vedere il profilo scelto";
App::$strings["Name of thing e.g. something"] = "Nome dell'oggetto";
App::$strings["URL of thing (optional)"] = "Indirizzo web dell'oggetto (facoltativo)";
App::$strings["URL for photo of thing (optional)"] = "Indirizzo di un'immagine dell'oggetto (facoltativo)";
App::$strings["Add Thing to your Profile"] = "Aggiungi l'oggetto al tuo profilo";
App::$strings["Export Channel"] = "Esporta il canale";
App::$strings["Export your basic channel information to a 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 server hub, but does not contain your content."] = "Esporta le informazioni di base del canale in un file. In pratica è un salvataggio delle tue connessioni, dei permessi che hai assegnato e del tuo profilo che così potrà essere importato su un altro server/hub. Il file non includerà i tuoi post e altri contenuti che hai creato o caricato.";
App::$strings["Export Content"] = "Esporta i contenuti";
App::$strings["Export your channel information and recent content to a JSON backup that can be restored or imported to another server hub. This backs up all of your connections, permissions, profile data and several months of posts. This file may be VERY large.  Please be patient - it may take several minutes for this download to begin."] = "Esporta il tuo canale e i contenuti recenti in un file di salvataggio che potrà essere importato su un altro server/hub. Sarà un backup dei tuoi contatti, dei permessi che hai assegnato, dei dati del profilo e dei post degli ultimi mesi. Il file potrebbe essere MOLTO grande. Sarà necessario attendere con pazienza - saranno necessari molti minuti prima che inizi lo scaricamento.";
App::$strings["Export your posts from a given year."] = "Esporta i tuoi post a partire dall'anno scelto.";
App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Puoi anche esportare post e conversazioni di un particolare anno o mese. Modifica la data nella barra dell'indirizzo del browser per scegliere date differenti. Se l'esportazione dovesse fallire (la memoria sul server potrebbe non bastare), riprova scegliendo un intervallo più breve tra le date.";
App::$strings["To select all posts for a given year, such as this year, visit <a href=\"%1\$s\">%2\$s</a>"] = "Per selezionare tutti i post di un anno, come per esempio quello in corso, visita <a href=\"%1\$s\">%2\$s</a> ";
App::$strings["To select all posts for a given month, such as January of this year, visit <a href=\"%1\$s\">%2\$s</a>"] = "Per selezionare tutti post di un dato mese, come per esempio gennaio di quest'anno, visita <a href=\"%1\$s\">%2\$s</a>";
App::$strings["These content files may be imported or restored by visiting <a href=\"%1\$s\">%2\$s</a> on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Questi contenuti potranno essere importati o ripristinati visitando <a href=\"%1\$s\">%2\$s</a> su qualsiasi sito/hub dove è presente il tuo canale. Per mantenere l'ordinamento originale fai attenzione ad importare i file secondo la data (prima il più vecchio)";
App::$strings["No connections."] = "Nessun contatto.";
App::$strings["Visit %s's profile [%s]"] = "Visita il profilo di %s [%s]";
App::$strings["View Connections"] = "Elenco contatti";
App::$strings["Source of Item"] = "Sorgente";
App::$strings["Page Title"] = "Titolo della pagina";
App::$strings["Xchan Lookup"] = "Ricerca canale";
App::$strings["Lookup xchan beginning with (or webbie): "] = "Cerca un canale (o un webbie) che inizia per:";
App::$strings["Cover Photos"] = "Copertine del canale";
App::$strings["Upload Cover Photo"] = "Carica una copertina";
App::$strings["Permissions denied."] = "Permesso negato.";
App::$strings["Focus (Hubzilla default)"] = "Focus (predefinito)";
App::$strings["Theme settings"] = "Impostazioni del tema";
App::$strings["Select scheme"] = "Scegli uno schema";
App::$strings["Narrow navbar"] = "Barra di navigazione ristretta";
App::$strings["Navigation bar background color"] = "Barra di navigazione: Colore di sfondo";
App::$strings["Navigation bar gradient top color"] = "Barra di navigazione: Gradiente superiore";
App::$strings["Navigation bar gradient bottom color"] = "Barra di navigazione: Gradiente inferiore";
App::$strings["Navigation active button gradient top color"] = "Bottone di navigazione attivo: Gradiente superiore";
App::$strings["Navigation active button gradient bottom color"] = "Bottone di navigazione attivo: Gradiente inferiore";
App::$strings["Navigation bar border color "] = "Barra di navigazione: Colore del bordo";
App::$strings["Navigation bar icon color "] = "Barra di navigazione: Colore delle icone";
App::$strings["Navigation bar active icon color "] = "Barra di navigazione: Colore dell'icona attiva";
App::$strings["link color"] = "colore del link";
App::$strings["Set font-color for banner"] = "Colore del font del banner";
App::$strings["Set the background color"] = "Colore di sfondo";
App::$strings["Set the background image"] = "Immagine di sfondo";
App::$strings["Set the background color of items"] = "Colore di sfondo degli oggetti";
App::$strings["Set the background color of comments"] = "Colore di sfondo dei commenti";
App::$strings["Set the border color of comments"] = "Colore del bordo dei commenti";
App::$strings["Set the indent for comments"] = "Spostamento a destra dei commenti";
App::$strings["Set the basic color for item icons"] = "Colore di base per le icone";
App::$strings["Set the hover color for item icons"] = "Colore per le icone in mouse-over";
App::$strings["Set font-size for the entire application"] = "Dimensione font per tutto il sito";
App::$strings["Example: 14px"] = "Esempio: 14px";
App::$strings["Set font-size for posts and comments"] = "Dimensioni del carattere per post e commenti";
App::$strings["Set font-color for posts and comments"] = "Colore del carattere per post e commenti";
App::$strings["Set radius of corners"] = "Raggio degli angoli stondati";
App::$strings["Set shadow depth of photos"] = "Profondità dell'ombra delle foto";
App::$strings["Set maximum width of content region in pixel"] = "Larghezza massima dell'area dei contenuti in pixel";
App::$strings["Leave empty for default width"] = "Lascia vuoto per usare il valore predefinito";
App::$strings["Left align page content"] = "Allinea a sinistra il contenuto della pagina";
App::$strings["Set minimum opacity of nav bar - to hide it"] = "Opacità minima della barra di navigazione - per nasconderla";
App::$strings["Set size of conversation author photo"] = "Dimensione foto dell'autore della conversazione";
App::$strings["Set size of followup author photos"] = "Dimensione foto dei partecipanti alla conversazione";
App::$strings["Update %s failed. See error logs."] = "%s: aggiornamento fallito. Controlla i log di errore.";
App::$strings["Update Error at %s"] = "Errore di aggiornamento su %s";
App::$strings["Create an account to access services and applications within the Hubzilla"] = "Registrati per accedere ai servizi e alle applicazioni di Hubzilla";
App::$strings["Password"] = "Password";
App::$strings["Remember me"] = "Resta connesso";
App::$strings["Forgot your password?"] = "Hai dimenticato la password?";
App::$strings["toggle mobile"] = "attiva/disattiva versione mobile";
App::$strings["Website SSL certificate is not valid. Please correct."] = "Il certificato SSL del sito non è valido. Si prega di intervenire.";
App::$strings["[hubzilla] Website SSL error for %s"] = "[hubzilla] Errore SSL su %s";
App::$strings["Cron/Scheduled tasks not running."] = "Processi cron non avviati.";
App::$strings["[hubzilla] Cron tasks not running on %s"] = "[hubzilla] Cron non è stato eseguito %s";