aboutsummaryrefslogtreecommitdiffstats
path: root/view/it/hstrings.php
blob: 956e0bea778a46bf03dcbb72b7a8b7ca15d28bde (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
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
<?php

if(! function_exists("string_plural_select_it")) {
function string_plural_select_it($n){
	return ($n != 1);;
}}
App::$rtl = 0;
App::$strings["Can view my channel stream and posts"] = "Può vedere i post e i contenuti del mio canale";
App::$strings["Can send me their channel stream and posts"] = "È tra i canali che seguo";
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 upload/modify my file storage and photos"] = "Può caricare o modificare i file e le foto del mio archivio";
App::$strings["Can view my channel webpages"] = "Può vedere le pagine web del mio canale";
App::$strings["Can view my wiki pages"] = "Può vedere le pagine del mio wiki";
App::$strings["Can create/edit my channel webpages"] = "Può creare o modificare le pagine web del mio canale";
App::$strings["Can write to my wiki pages"] = "Può scrivere nelle pagine del mio wiki";
App::$strings["Can post on my channel (wall) page"] = "Può postare sulla mia bacheca";
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 profiles and profile things"] = "Può aggiungere un \"mi piace\" sul profilo e sugli oggetti del profilo";
App::$strings["Can forward to all my channel connections via @+ mentions in posts"] = "Può inoltrare post a tutti i miei contatti con una menzione @+";
App::$strings["Can chat with me"] = "Può aprire una chat con me";
App::$strings["Can source my public posts in derived channels"] = "Può usare i miei post pubblici per creare canali derivati";
App::$strings["Can administer my channel"] = "Può amministrare il mio canale";
App::$strings["Social Networking"] = "Social network";
App::$strings["Social - Party"] = "Social - Party";
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["Other"] = "Altro";
App::$strings["Custom/Expert Mode"] = "Personalizzazione per esperti";
App::$strings["Requested profile is not available."] = "Il profilo richiesto non è disponibile.";
App::$strings["Permission denied."] = "Permesso negato.";
App::$strings["Block Name"] = "Nome del block";
App::$strings["Blocks"] = "Block";
App::$strings["Block Title"] = "Titolo del block";
App::$strings["Created"] = "Creato";
App::$strings["Edited"] = "Modificato";
App::$strings["Create"] = "Crea";
App::$strings["Edit"] = "Modifica";
App::$strings["Share"] = "Condividi";
App::$strings["Delete"] = "Elimina";
App::$strings["View"] = "Guarda";
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["Submit"] = "Salva";
App::$strings["Articles"] = "Articoli";
App::$strings["Add Article"] = "Aggiungi un articolo";
App::$strings["Item not found"] = "Elemento non trovato";
App::$strings["Layout Name"] = "Nome layout";
App::$strings["Layout Description (Optional)"] = "Descrizione del layout (facoltativa)";
App::$strings["Edit Layout"] = "Modifica il layout";
App::$strings["Permission denied"] = "Permesso negato";
App::$strings["Invalid profile identifier."] = "Indentificativo del profilo non valido.";
App::$strings["Profile Visibility Editor"] = "Modifica la visibilità del profilo";
App::$strings["Profile"] = "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["All Connections"] = "Tutti i contatti";
App::$strings["INVALID EVENT DISMISSED!"] = "EVENTO NON VALIDO ELIMINATO!";
App::$strings["Summary: "] = "Sommario:";
App::$strings["Unknown"] = "Sconosciuto";
App::$strings["Date: "] = "Data:";
App::$strings["Reason: "] = "Motivo:";
App::$strings["INVALID CARD DISMISSED!"] = "CARD NON VALIDA ELIMINATA!";
App::$strings["Name: "] = "Nome:";
App::$strings["Event title"] = "Titolo dell'evento";
App::$strings["Start date and time"] = "Data e ora di inizio";
App::$strings["Example: YYYY-MM-DD HH:mm"] = "Esempio: YYYY-MM-DD HH:mm";
App::$strings["End date and time"] = "Data e ora di fine";
App::$strings["Description"] = "Descrizione";
App::$strings["Location"] = "Posizione geografica";
App::$strings["Previous"] = "Precendente";
App::$strings["Next"] = "Successivo";
App::$strings["Today"] = "Oggi";
App::$strings["Month"] = "Mese";
App::$strings["Week"] = "Settimana";
App::$strings["Day"] = "Giorno";
App::$strings["List month"] = "Lista del mese";
App::$strings["List week"] = "Lista della settimana";
App::$strings["List day"] = "Lista del giorno";
App::$strings["More"] = "Di più";
App::$strings["Less"] = "Meno";
App::$strings["Select calendar"] = "Seleziona calendario";
App::$strings["Delete all"] = "Elimina tutto";
App::$strings["Cancel"] = "Annulla";
App::$strings["Sorry! Editing of recurrent events is not yet implemented."] = "Spiacenti! La modifica di eventi ricorrenti non è ancora disponibile.";
App::$strings["Name"] = "Nome";
App::$strings["Organisation"] = "Organizzazione";
App::$strings["Title"] = "Titolo";
App::$strings["Phone"] = "Telefono";
App::$strings["Email"] = "Email";
App::$strings["Instant messenger"] = "Messaggistica istantanea";
App::$strings["Website"] = "Sito web";
App::$strings["Address"] = "Indirizzo";
App::$strings["Note"] = "Nota";
App::$strings["Mobile"] = "Mobile";
App::$strings["Home"] = "Bacheca";
App::$strings["Work"] = "Lavoro";
App::$strings["Add Contact"] = "Aggiungi contatto";
App::$strings["Add Field"] = "Aggiungi campo";
App::$strings["Update"] = "Aggiorna";
App::$strings["P.O. Box"] = "P.O. Box";
App::$strings["Additional"] = "Aggiuntivo";
App::$strings["Street"] = "Via";
App::$strings["Locality"] = "Località";
App::$strings["Region"] = "Regione";
App::$strings["ZIP Code"] = "CAP";
App::$strings["Country"] = "Nazione";
App::$strings["Default Calendar"] = "Calendario predefinito";
App::$strings["Default Addressbook"] = "Rubrica predefinita";
App::$strings["This site is not a directory server"] = "Questo non è un directory server";
App::$strings["You must be logged in to see this page."] = "Devi aver effettuato l'accesso per vedere questa pagina.";
App::$strings["Posts and comments"] = "Post e commenti";
App::$strings["Only posts"] = "Solo post";
App::$strings["Insufficient permissions.  Request redirected to profile page."] = "Permessi insufficienti. Sarà visualizzata la pagina del 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["Welcome to Hubzilla!"] = "Benvenuto su Hubzilla!";
App::$strings["You have got no unseen posts..."] = "Non hai post non letti...";
App::$strings["Public access denied."] = "Accesso pubblico negato.";
App::$strings["Search"] = "Cerca";
App::$strings["Items tagged with: %s"] = "Elementi taggati con: %s";
App::$strings["Search results for: %s"] = "Risultati ricerca: %s";
App::$strings["Public Stream"] = "Flusso pubblico";
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["Primary"] = "Primario";
App::$strings["Drop"] = "Elimina";
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["Change Order of Pinned Navbar Apps"] = "Cambia l'ordine della app bloccate sulla barra di navigazione";
App::$strings["Change Order of App Tray Apps"] = "Cambia l'ordine delle app elencate nel menu delle app";
App::$strings["Use arrows to move the corresponding app left (top) or right (bottom) in the navbar"] = "Utilizza le frecce per spostare l'app a sinistra (su) o destra (giù) nella barra di navigazione";
App::$strings["Use arrows to move the corresponding app up or down in the app tray"] = "Utilizza le frecce per spostare l'app su o giù nel menu delle app";
App::$strings["Menu not found."] = "Menù 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["Not found."] = "Non trovato.";
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["No"] = "No";
App::$strings["Yes"] = "Sì";
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["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["event"] = "l'evento";
App::$strings["Edit event title"] = "Modifica il titolo dell'evento";
App::$strings["Required"] = "Obbligatorio";
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["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["Preview"] = "Anteprima";
App::$strings["Permission settings"] = "Permessi dei tuoi contatti";
App::$strings["Timezone:"] = "Fuso orario: ";
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["Link to Source"] = "Link al sito d'origine";
App::$strings["calendar"] = "calendario";
App::$strings["Edit Event"] = "Modifica l'evento";
App::$strings["Create Event"] = "Crea un evento";
App::$strings["Export"] = "Esporta";
App::$strings["Event removed"] = "Evento eliminato";
App::$strings["Failed to remove event"] = "Impossibile eliminare l'evento";
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["Photo icon URL"] = "URL icona";
App::$strings["80 x 80 pixels - optional"] = "80 x 80 pixel - facoltativa";
App::$strings["Categories (optional, comma separated list)"] = "Categorie (facoltative, lista separata da virgole)";
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["Please login."] = "Effettua l'accesso.";
App::$strings["Hub not found."] = "Hub non trovato.";
App::$strings["photo"] = "la foto";
App::$strings["status"] = "messaggio di stato";
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["Channel not found."] = "Canale non trovato.";
App::$strings["Insert web link"] = "Inserisci un indirizzo web";
App::$strings["Title (optional)"] = "Titolo (facoltativo)";
App::$strings["Edit Article"] = "Modifica l'articolo";
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["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["File to Upload"] = "File da caricare";
App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Hai creato %1$.0f dei %2$.0f canali permessi.";
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. Il tuo canale può essere in contatto con altri canali per condividere 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["Validate"] = "Validazione";
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["WARNING: "] = "ATTENZIONE:";
App::$strings["This channel will be completely removed from the network. "] = "Questo canale sarà completamente eliminato 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 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["Files: shared with me"] = "File: condivisi con me";
App::$strings["NEW"] = "NOVITÀ";
App::$strings["Size"] = "Dimensione";
App::$strings["Last Modified"] = "Ultima modifica";
App::$strings["Remove all files"] = "Elimina tutti i file";
App::$strings["Remove this file"] = "Elimina questo file";
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["PHP version 5.5 or greater is required."] = "E' necessario PHP versione 5.5 o superiore.";
App::$strings["PHP version"] = "Versione PHP";
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["Unable to check command line PHP, as shell_exec() is disabled. This is required."] = "Non è possible accedere alla linea di comando PHP perché shell_exec() è disabilitato. Requisito necessario.";
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 server php.ini file."] = "Puoi modificare queste impostazione nel file php.ini del server.";
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["PDO database PHP module"] = "PDO database PHP module";
App::$strings["mb_string PHP module"] = "modulo PHP mb_string";
App::$strings["xml PHP module"] = "modulo xml PHP";
App::$strings["zip PHP module"] = "modulo zip del 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["exec"] = "exec";
App::$strings["Error: exec is required but is either not installed or has been disabled in php.ini"] = "Errore: exec è richiesto ma non è installato o è stato disabilitato nel php.ini";
App::$strings["shell_exec"] = "shell_exec";
App::$strings["Error: shell_exec is required but is either not installed or has been disabled in php.ini"] = "Errore: shell_exec è richiesto ma non è installato o è stato 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: PDO database PHP module required but not installed."] = "Errore: PDO database PHP module è 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: xml PHP module required for DAV but not installed."] = "Errore: il modulo xml PHP è richiesto per DAV ma non è installato.";
App::$strings["Error: zip PHP module required but not installed."] = "Errore: il modulo zip del PHP necessario ma non installato.";
App::$strings[".htconfig.php is writable"] = ".htconfig.php è scrivibile";
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["Please see install/INSTALL.txt for additional information."] = "Leggi il file 'install/INSTALL.txt' per maggiori informazioni.";
App::$strings["This software uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Questo software usa lo Smarty3 template engine per visualizzare le web views. Smarty3 compila i template in PHP per accelerarne la visualizzazione.";
App::$strings["In order to store these compiled templates, the web server needs to have write access to the directory %s under the top level web folder."] = "Per poter memorizzare questi template, il server web deve avere i diritti di scrittura sulla directory %s";
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["This software uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the top level web folder"] = "Questo software salva i file caricati nelle directory sul filesystem. Il server web necessita di permessi di scrittura sulle directory alla radice della cartella web";
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["If you are confident that the certificate is valid and signed by a trusted authority, check to see if you have failed to install an intermediate cert. These are not normally required by browsers, but are required for server-to-server communications."] = "Se credi che il certificato sia valido e firmato da una authority, verifica se hai sbagliato a installare i certificati intermedi. Normalmente non sono richiesti dai browser, ma sono necessari per la comunicazione server-to-server.";
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>E ora?</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["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["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["Off"] = "Off";
App::$strings["On"] = "On";
App::$strings["Lock feature %s"] = "Rendi non modificabile %s";
App::$strings["Manage Additional Features"] = "Funzionalità opzionali";
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["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["No failed updates."] = "Nessun aggiornamento fallito.";
App::$strings["Item not found."] = "Elemento non trovato.";
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["Administration"] = "Amministrazione";
App::$strings["Plugins"] = "Plugin";
App::$strings["Toggle"] = "Attiva/disattiva";
App::$strings["Settings"] = "Impostazioni";
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["Compatible Server Roles: "] = "Ruoli previsti per questo server";
App::$strings["Requires: "] = "Necessita di:";
App::$strings["Disabled - version incompatibility"] = "Disabilitato - incompatibilità di versione";
App::$strings["Enter the public git repository URL of the plugin repo."] = "Inserisci lo URL del repository git dei plugin.";
App::$strings["Plugin repo git URL"] = "URL git del repository del plugin";
App::$strings["Custom repo name"] = "Nome repository personalizzato";
App::$strings["(optional)"] = "(facoltativo)";
App::$strings["Download Plugin Repo"] = "Scarica il repository del plugin";
App::$strings["Install new repo"] = "Installa un nuovo repository";
App::$strings["Install"] = "Installa";
App::$strings["Manage Repos"] = "Gestisci i repository";
App::$strings["Installed Plugin Repositories"] = "Repository per i plugin installati";
App::$strings["Install a New Plugin Repository"] = "Installa un nuovo repository per i plugin";
App::$strings["Switch branch"] = "Cambia branch";
App::$strings["Remove"] = "Rimuovi";
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["Accounts"] = "Account";
App::$strings["select all"] = "seleziona tutti";
App::$strings["Registrations waiting for confirm"] = "Registrazioni in attesa di conferma";
App::$strings["Request date"] = "Data richiesta";
App::$strings["No registrations."] = "Nessuna registrazione.";
App::$strings["Approve"] = "Approva";
App::$strings["Deny"] = "Nega";
App::$strings["Block"] = "Blocca";
App::$strings["Unblock"] = "Sblocca";
App::$strings["ID"] = "ID";
App::$strings["All Channels"] = "Tutti i canali";
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["Log settings updated."] = "Impostazioni di log aggiornate.";
App::$strings["Logs"] = "Log";
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 top-level webserver directory."] = "Relativo alla directory base del server web. Deve essere scrivibile.";
App::$strings["Log level"] = "Livello di log";
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["Channels"] = "Canali";
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["Channel"] = "Canale";
App::$strings["UID"] = "UID";
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["Theme settings updated."] = "Le impostazioni del tema sono state aggiornate.";
App::$strings["No themes found."] = "Nessun tema trovato.";
App::$strings["Screenshot"] = "Istantanea dello schermo";
App::$strings["Themes"] = "Temi";
App::$strings["[Experimental]"] = "[Sperimentale]";
App::$strings["[Unsupported]"] = "[Non supportato]";
App::$strings["Site settings updated."] = "Impostazioni del sito salvate correttamente.";
App::$strings["Default"] = "Predefinito";
App::$strings["%s - (Incompatible)"] = "%s - (Incompatibile)";
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["Beginner/Basic"] = "Principiante";
App::$strings["Novice - not skilled but willing to learn"] = "Novizio - disposto a imparare";
App::$strings["Intermediate - somewhat comfortable"] = "Intermedio - con alcune conoscenze tecniche";
App::$strings["Advanced - very comfortable"] = "Avanzato - a mio agio con gli aspetti tecnici";
App::$strings["Expert - I can write computer code"] = "Esperto - posso scrivere codice";
App::$strings["Wizard - I probably know more than you do"] = "Genio - probabilmente ne so più di te!";
App::$strings["Site"] = "Sito";
App::$strings["Registration"] = "Registrazione";
App::$strings["File upload"] = "Caricamento file";
App::$strings["Policies"] = "Politiche";
App::$strings["Advanced"] = "Avanzate";
App::$strings["Site name"] = "Nome del sito";
App::$strings["Site default technical skill level"] = "Livello tecnico predefinito per gli utenti del sito";
App::$strings["Used to provide a member experience matched to technical comfort level"] = "Utile a fornire agli utenti un livello tecnico del sito che rispetti le loro conoscenze";
App::$strings["Lock the technical skill level setting"] = "Il livello tecnico non potrà essere modificato";
App::$strings["Members can set their own technical comfort level by default"] = "Gli utenti possono scegliere il livello tecnico preferito";
App::$strings["Banner/Logo"] = "Banner o logo";
App::$strings["Unfiltered HTML/CSS/JS is allowed"] = "È permesso un contenuto HTML/CSS/JS non filtrato";
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["Site Information"] = "Informazioni sul sito";
App::$strings["Publicly visible description of this site.  Displayed on siteinfo page.  BBCode can be used here"] = "Descrizione del sito, visibile pubblicamente. Visualizzata sulla pagina siteinfo. Puoi usare 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["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["Minimum age"] = "Età minima";
App::$strings["Minimum age (in years) for who may register on this site."] = "L'età minima (in anni) richiesta per registrarsi su questo sito.";
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["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["Site only Public Streams"] = "Solo i flussi pubblici su questo sito";
App::$strings["Allow access to public content originating only from this site if Imported Public Streams are disabled."] = "Consenti l'accesso a contenuti pubblici originati solo da questo sito se se è disabilitata l'importazione di flussi pubblici.";
App::$strings["Allow anybody on the internet to access the Public streams"] = "Permetti a chiunque su internet di accedere ai flussi pubblici";
App::$strings["Disable to require authentication before viewing. Warning: this content is unmoderated."] = "Disabilita per richiedere di autenticarsi prima di visualizzare. Attenzione: questo contenuto non è moderato.";
App::$strings["Login on Homepage"] = "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["Enable context help"] = "Abilita la guida contestuale";
App::$strings["Display contextual help for the current page when the help button is pressed."] = "Quando è premuto, il bottone della guida mostra quella relativa alla pagina corrente";
App::$strings["Reply-to email address for system generated email."] = "Indirizzo Reply-to per mail generate dal sistema.";
App::$strings["Sender (From) email address for system generated email."] = "Indirzzo email del mittente (From) per mail generate dal sistema.";
App::$strings["Name of email sender for system generated email."] = "Nome del mittente per mail generate dal sistema";
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["Queue Threshold"] = "Threshold della coda";
App::$strings["Always defer immediate delivery if queue contains more than this number of entries."] = "Rinvia la consegna immediata se la coda contiene più di questo numero di elementi.";
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["Path to ImageMagick convert program"] = "Percorso del comando convert di ImageMagic";
App::$strings["If set, use this program to generate photo thumbnails for huge images ( > 4000 pixels in either dimension), otherwise memory exhaustion may occur. Example: /usr/bin/convert"] = "Se impostato, utilizza questo programma per generare le anteprime di immagini molto grandi ( > 4000 pixel in larghezza o altezza), per evitare di esaurire la memoria. Esempio: /user/bin/convert";
App::$strings["Allow SVG thumbnails in file browser"] = "Permetti le anteprime SVG nell'elenco dei file";
App::$strings["WARNING: SVG images may contain malicious code."] = "ATTENZIONE: le immagini SVG potrebbero contenere codice malevolo.";
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["Do not expire any posts which have comments less than this many days ago"] = "Non far scadere nessun post che ha commenti più recenti di questo numero di giorni";
App::$strings["Public servers: Optional landing (marketing) webpage for new registrants"] = "Server pubblici: Landing page (marketing) opzionale per utenti appena registrati";
App::$strings["Create this page first. Default is %s/register"] = "Crea questa pagina prima. Il default è %s/register";
App::$strings["Page to display after creating a new channel"] = "Pagina da visualizzare dopo la creazione di un nuovo canale";
App::$strings["Recommend: profiles, go, or settings"] = "";
App::$strings["Optional: site location"] = "Opzionale: site location";
App::$strings["Region or country"] = "Regione o Paese";
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["Save"] = "Salva";
App::$strings["Field definition not found"] = "Impossibile trovare la definizione del campo";
App::$strings["Edit Profile Field"] = "Modifica campo del profilo";
App::$strings["Profile Fields"] = "Campi 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 campo personalizzato";
App::$strings["Password changed for account %d."] = "La password per l'utente %d è cambiata.";
App::$strings["Account settings updated."] = "L'impostazioni sono state aggiornate.";
App::$strings["Account not found."] = "Account non trovato.";
App::$strings["Account Edit"] = "Modifica le impostazioni";
App::$strings["New Password"] = "Nuova password";
App::$strings["New Password again"] = "Ripeti la nuova password";
App::$strings["Technical skill level"] = "Livello tecnico";
App::$strings["Account language (for emails)"] = "Lingua (per le email di sistema)";
App::$strings["Service class"] = "Classe dell'account";
App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = "Il codice HTML degli oggetti multimediali incorporati nei post è consentito. Questo tipo di impostazione è insicura.";
App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = "L'impostazione consigliata è di permettere HTML non filtrato solo dai seguenti siti:";
App::$strings["https://youtube.com/<br />https://www.youtube.com/<br />https://youtu.be/<br />https://vimeo.com/<br />https://soundcloud.com/<br />"] = "https://youtube.com/<br />https://www.youtube.com/<br />https://youtu.be/<br />https://vimeo.com/<br />https://soundcloud.com/<br />";
App::$strings["All other embedded content will be filtered, <strong>unless</strong> embedded content from that site is explicitly blocked."] = "Tutti gli altri contenuti incorporati saranno filtrati <strong>a meno che</strong> il contenuto incorporato di quel sito non sia esplicitamente bloccato.";
App::$strings["Security"] = "Sicurezza";
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["Set \"Transport Security\" HTTP header"] = "Imposta il \"Transport Security\" HTTP header";
App::$strings["Set \"Content Security Policy\" HTTP header"] = "Imposta il \"Content Security Policy\" HTTP header";
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["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["Only allow embeds from secure (SSL) websites and links."] = "Permetti di incorporare contenuti solamente da siti sicuri (SSL).";
App::$strings["Allow unfiltered embedded HTML content only from these domains"] = "Incorpora i contenuti HTML non filtrati solo da questi domini";
App::$strings["One site per line. By default embedded content is filtered."] = "Un sito per riga. Normalmente i contenuti incorporati sono filtrati.";
App::$strings["Block embedded HTML from these domains"] = "Blocca i contenuti incorporati HTML da questi domini";
App::$strings["Remote privacy information not available."] = "Le informazioni remote sulla privacy non sono disponibili.";
App::$strings["Visible to:"] = "Visibile a:";
App::$strings["__ctx:acl__ Profile"] = "Profilo";
App::$strings["Comment approved"] = "Commento approvato";
App::$strings["Comment deleted"] = "Commento eliminato";
App::$strings["Permission Name is required."] = "";
App::$strings["Permission category saved."] = "Categoria di permessi salvata";
App::$strings["Use this form to create permission rules for various classes of people or connections."] = "Usa questo modulo per definire i permessi specifici per classi di persone o connessioni.";
App::$strings["Permission Categories"] = "Categorie di permessi";
App::$strings["Permission Name"] = "Nome del permesso";
App::$strings["My Settings"] = "Permessi che concedo";
App::$strings["inherited"] = "derivato";
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["Friends"] = "Amici";
App::$strings["Settings updated."] = "Impostazioni aggiornate.";
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["or"] = "o";
App::$strings["Your channel address is"] = "L'indirizzo del tuo canale è";
App::$strings["Your files/photos are accessible via WebDAV at"] = "I tuoi file/foto sono accessibili via WebDAV all'indirizzo";
App::$strings["Channel Settings"] = "Impostazioni del canale";
App::$strings["Basic Settings"] = "Impostazioni di base";
App::$strings["Full Name:"] = "Nome completo:";
App::$strings["Email Address:"] = "Indirizzo email:";
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["Channel Permission Limits"] = "Limiti sui permessi del canale";
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."] = "0 o vuoto per usare i valori predefiniti.";
App::$strings["This website expires after %d days."] = "Per questo sito la scadenza è %d giorni. ";
App::$strings["This website does not expire imported content."] = "I contenuti di questo sito non hanno scadenza.";
App::$strings["The website limit takes precedence if lower than your limit."] = "Il limite del server ha la precedenza, se minore di quello impostato da te.";
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 Privacy Group"] = "Privacy Group predefinito";
App::$strings["Use my default audience setting for the type of object published"] = "Mostra ai contatti secondo le impostazioni standard per questo tipo di contenuto";
App::$strings["Profile to assign new connections"] = "Profilo da associare ai nuovi contatti";
App::$strings["Channel permissions category:"] = "Categorie di permessi dei canali:";
App::$strings["Default Permissions Group"] = "Permission Group predefinito";
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["Someone likes your post/comment"] = "Qualcuno mette mi piace al tuo post/commento";
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["Unseen shared files"] = "File condivisi non ancora visitati";
App::$strings["Unseen public activity"] = "Attività pubblica non letta";
App::$strings["Unseen likes and dislikes"] = "Mi piace e non mi piace da leggere";
App::$strings["Email notification hub (hostname)"] = "Hub di notifica (hostname)";
App::$strings["If your channel is mirrored to multiple hubs, set this to your preferred location. This will prevent duplicate email notifications. Example: %s"] = "Se il tuo canale è replicato su molti hub, scegli qui da dove saranno inviati i messaggi. Serve ad evitare di ricevere notifiche duplicate. Esempio: %s";
App::$strings["Show new wall posts, private messages and connections under Notices"] = "Mostra i nuovi post in bacheca, i messaggi privati e le connessioni come Notifiche";
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["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"] = "Inizia la settimana nel calendario da lunedì";
App::$strings["Additional Features"] = "Funzionalità opzionali";
App::$strings["Your technical skill level"] = "Il tuo livello tecnico";
App::$strings["Used to provide a member experience and additional features consistent with your comfort level"] = "Serve ad adeguare l'interfaccia e le funzionalità mostrate alla tua dimestichezza";
App::$strings["This channel is limited to %d tokens"] = "Questo canale è limitato a %d token";
App::$strings["Name and Password are required."] = "Nome e password sono obbligatori.";
App::$strings["Token saved."] = "Token salvato.";
App::$strings["Use this form to create temporary access identifiers to share things with non-members. These identities may be used in Access Control Lists and visitors may login using these credentials to access private content."] = "Usa questo modulo per creare credenziali temporanee per condividere qualcosa con i non iscritti. A queste credenziali potrai dare o togliere diritti come a tutti gli altri utenti e i visitatori potranno usarle per accedere a contenuti privati.";
App::$strings["You may also provide <em>dropbox</em> style access links to friends and associates by adding the Login Password to any specific site URL as shown. Examples:"] = "Puoi anche fornire un accesso simile a <em>dropbox</em> agli amici o ai colleghi aggiungendo la password all'url che vuoi comunicare, come mostrato sotto. Esempi:";
App::$strings["Guest Access Tokens"] = "Token di accesso ospite";
App::$strings["Login Name"] = "Nome utente";
App::$strings["Login Password"] = "Password";
App::$strings["Expires (yyyy-mm-dd)"] = "Con scadenza (aaaa-mm-gg)";
App::$strings["Their Settings"] = "Permessi concessi a te";
App::$strings["Name and Secret are required"] = "Nome e Password sono obbligatori";
App::$strings["Add OAuth2 application"] = "Aggiungi applicazione OAuth2";
App::$strings["Name of application"] = "Nome dell'applicazione";
App::$strings["Consumer Secret"] = "Consumer Secret";
App::$strings["Automatically generated - change if desired. Max length 20"] = "Generato automaticamente - è possibile cambiarlo. Lunghezza massima 20";
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["Grant Types"] = "";
App::$strings["leave blank unless your application sepcifically requires this"] = "lascia bianco a meno che la applicazione non lo richieda esplicitamente";
App::$strings["Authorization scope"] = "Ambito dell'autorizzazione";
App::$strings["OAuth2 Application not found."] = "Applicazione OAuth2 non trovata.";
App::$strings["Add application"] = "Aggiungi una app";
App::$strings["Connected OAuth2 Apps"] = "Applicazioni OAuth2 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["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["Technical skill level updated"] = "Livello tecnico aggiornato";
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["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["Remove Account"] = "Elimina l'account";
App::$strings["Remove this account including all its channels"] = "Elimina questo account e tutti i suoi canali";
App::$strings["Affinity Slider settings updated."] = "Impostazioni dell'Affinity Slider salvate.";
App::$strings["No feature settings configured"] = "Non hai componenti aggiuntivi da personalizzare";
App::$strings["Default maximum affinity level"] = "Livello di affinità predefinito massimo ";
App::$strings["0-99 default 99"] = "0-99 predefinito 99";
App::$strings["Default minimum affinity level"] = "Livello di affinità predefinito minimo";
App::$strings["0-99 - default 0"] = "0-99 - predefinito 0";
App::$strings["Affinity Slider Settings"] = "Impostazioni dell'Affinity Slider";
App::$strings["Addon Settings"] = "Impostazioni del componente aggiuntivo";
App::$strings["Please save/submit changes to any panel before opening another."] = "Salva/invia i cambiamenti prima di cambiare pannello.";
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["Select scheme"] = "Scegli uno schema";
App::$strings["Preload images before rendering the page"] = "Carica le 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["Provide channel menu in navigation bar"] = "Visualizza il menu del canale nella barra di navigazione";
App::$strings["Default: channel menu located in app menu"] = "Predefinito: menu del canale nel menu delle app";
App::$strings["Manual conversation updates"] = "Aggiornamenti manuali alla conversazione";
App::$strings["Default is on, turning this off may increase screen jumping"] = "Se non è attiva può causare scorrimenti imprevisti della pagina";
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["Name is required"] = "Il nome è obbligatorio";
App::$strings["Key and Secret are required"] = "Key e Secret sono richiesti";
App::$strings["Consumer Key"] = "Consumer Key";
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["View Photo"] = "Guarda la foto";
App::$strings["Edit Album"] = "Modifica album";
App::$strings["Upload"] = "Carica";
App::$strings["Some blurb about what to do when you're new here"] = "Qualche suggerimento per i nuovi utenti su cosa fare";
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["Permissions"] = "Permessi";
App::$strings["Add Thing to your Profile"] = "Aggiungi l'oggetto al tuo profilo";
App::$strings["No more system notifications."] = "Non ci sono nuove notifiche di sistema.";
App::$strings["System Notifications"] = "Notifiche di sistema";
App::$strings["Connection added."] = "Contatto aggiunto.";
App::$strings["Your service plan only allows %d channels."] = "Il tuo account permette di creare al massimo %d canali.";
App::$strings["No channel. Import failed."] = "Nessun canale. Import fallito.";
App::$strings["Import completed."] = "L'importazione è terminata con successo.";
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["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["Move this channel (disable all previous locations)"] = "Sposta questo canale (disabilita le posizioni precedenti)";
App::$strings["Import a few months of posts if possible (limited by available memory"] = "Importa alcune mesi di post se possibile (dipende dalla memoria disponibile";
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["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["Permissions denied."] = "Permesso negato.";
App::$strings["Import"] = "Importa";
App::$strings["Authorize application connection"] = "Autorizza la app";
App::$strings["Return to your app and insert this Security Code:"] = "Ritorna alla tua app e inserisci questo Security Code:";
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["Item not available."] = "Elemento non disponibile.";
App::$strings["Edit Block"] = "Modifica il block";
App::$strings["vcard"] = "vcard";
App::$strings["Apps"] = "App";
App::$strings["Manage apps"] = "Gestisci le app";
App::$strings["Create new app"] = "Crea nuova app";
App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s è %2\$s";
App::$strings["Mood"] = "Umore";
App::$strings["Set your current mood and tell your friends"] = "Scegli il tuo umore attuale per mostrarlo agli amici";
App::$strings["Active"] = "Attivo";
App::$strings["Blocked"] = "Bloccati";
App::$strings["Ignored"] = "Ignorati";
App::$strings["Hidden"] = "Nascosti";
App::$strings["Archived/Unreachable"] = "Archiviato/Irraggiungibile";
App::$strings["New"] = "Novità";
App::$strings["All"] = "Tutti";
App::$strings["Active Connections"] = "Contatto Attivo";
App::$strings["Show active connections"] = "Mostra i contatti atttivi";
App::$strings["New Connections"] = "Nuovi contatti";
App::$strings["Show pending (new) connections"] = "Richieste di contatto in attesa";
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/unreachable connections"] = "Mostra solo i contatti archiviati/irraggiungibili";
App::$strings["Only show hidden connections"] = "Mostra solo i contatti nascosti";
App::$strings["Show all connections"] = "Mostra tutti i contatti";
App::$strings["Pending approval"] = "In attesa di conferma";
App::$strings["Archived"] = "Archiviati";
App::$strings["Not connected at this location"] = "Non connesso a questa location";
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["Call"] = "Chiama";
App::$strings["Status"] = "Stato";
App::$strings["Connected"] = "In contatto";
App::$strings["Approve connection"] = "Approva questo contatto";
App::$strings["Ignore connection"] = "Ignora il contatto";
App::$strings["Ignore"] = "Ignora";
App::$strings["Recent activity"] = "Attività recenti";
App::$strings["Connections"] = "Contatti";
App::$strings["Search your connections"] = "Cerca tra i contatti";
App::$strings["Connections search"] = "Ricerca tra i contatti";
App::$strings["Find"] = "Cerca";
App::$strings["item"] = "elemento";
App::$strings["Source of Item"] = "Sorgente";
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["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["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["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["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["Description (optional)"] = "Descrizione (opzionale)";
App::$strings["Show Newest First"] = "Prima i più recenti";
App::$strings["Show Oldest First"] = "Prima i più vecchi";
App::$strings["Add Photos"] = "Aggiungi foto";
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["Use as cover photo"] = "Usa come copertina del canale";
App::$strings["Private Photo"] = "Foto privata";
App::$strings["View Full Size"] = "Vedi nelle dimensioni originali";
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["Move photo to album"] = "Sposta la foto in un album";
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["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["I like this (toggle)"] = "Attiva/disattiva Mi piace";
App::$strings["I don't like this (toggle)"] = "Attiva/disattiva Non mi piace";
App::$strings["Please wait"] = "Attendere";
App::$strings["This is you"] = "Questo sei tu";
App::$strings["Comment"] = "Commento";
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["View all"] = "Vedi tutto";
App::$strings["__ctx:noun__ Like"] = array(
	0 => "Mi piace",
	1 => "\"Mi piace\"",
);
App::$strings["__ctx:noun__ Dislike"] = array(
	0 => "Non mi piace",
	1 => "\"Non mi piace\"",
);
App::$strings["Photo Tools"] = "Gestione foto";
App::$strings["In This Photo:"] = "In questa foto:";
App::$strings["Map"] = "Mappa";
App::$strings["__ctx:noun__ Likes"] = "\"Mi piace\"";
App::$strings["__ctx:noun__ Dislikes"] = "\"Non mi piace\"";
App::$strings["Close"] = "Chiudi";
App::$strings["Recent Photos"] = "Foto recenti";
App::$strings["Profile Unavailable."] = "Profilo non dispobibile";
App::$strings["Not found"] = "Non trovato";
App::$strings["Invalid channel"] = "Canale non valido";
App::$strings["Error retrieving wiki"] = "Errore caricamento wiki";
App::$strings["Error creating zip file export folder"] = "Errore nella creazione della cartella per l'esportazione in zip";
App::$strings["Error downloading wiki: "] = "Errore scaricamento wiki:";
App::$strings["Wikis"] = "Pagine wiki";
App::$strings["Download"] = "Scarica";
App::$strings["Create New"] = "Crea nuova";
App::$strings["Wiki name"] = "Nome wiki";
App::$strings["Content type"] = "Tipo di contenuto";
App::$strings["Markdown"] = "Markdown";
App::$strings["BBcode"] = "BBCode";
App::$strings["Text"] = "Testo";
App::$strings["Type"] = "Tipo";
App::$strings["Any&nbsp;type"] = "Qualsiasi&nbsp;tipo";
App::$strings["Lock content type"] = "Blocca il tipo di contenuto";
App::$strings["Create a status post for this wiki"] = "Crea un messaggio di stato per questo wiki";
App::$strings["Edit Wiki Name"] = "Modifica il nome del Wiki";
App::$strings["Wiki not found"] = "Wiki non trovato";
App::$strings["Rename page"] = "Rinomina la pagina";
App::$strings["Error retrieving page content"] = "Errore nel caricamento del contenuto della pagina";
App::$strings["New page"] = "Nuova pagina";
App::$strings["Revision Comparison"] = "Confronto tra revisioni";
App::$strings["Revert"] = "Ripristina";
App::$strings["Short description of your changes (optional)"] = "Breve descrizione delle tue modifiche (opzionale)";
App::$strings["Source"] = "Sorgente";
App::$strings["New page name"] = "Nome della nuova pagina";
App::$strings["Embed image from photo albums"] = "Inserisci un'immagine dall'album foto";
App::$strings["Embed an image from your albums"] = "Inserisci un'immagine dai tuoi album";
App::$strings["OK"] = "OK";
App::$strings["Choose images to embed"] = "Scegli le immagini da inserire";
App::$strings["Choose an album"] = "Scegli un album";
App::$strings["Choose a different album"] = "Scegli un album diverso";
App::$strings["Error getting album list"] = "Errore nell'ottenere l'elenco degli album";
App::$strings["Error getting photo link"] = "Errore nell'ottenere il link alla foto";
App::$strings["Error getting album"] = "Errore nell'ottenere l'album";
App::$strings["Error creating wiki. Invalid name."] = "Errore nella creazione. Nome non valido.";
App::$strings["A wiki with this name already exists."] = "Un Wiki con questo nome esiste già";
App::$strings["Wiki created, but error creating Home page."] = "Wiki creato, ma c'è stato un errore nella creazione della Home page.";
App::$strings["Error creating wiki"] = "Errore nella creazione del Wiki";
App::$strings["Error updating wiki. Invalid name."] = "Errore nell'aggiornamento del Wiki. Nome non valido.";
App::$strings["Error updating wiki"] = "Errore nell'aggiornamento del Wiki";
App::$strings["Wiki delete permission denied."] = "Permesso negato nell'eliminare del Wiki";
App::$strings["Error deleting wiki"] = "Errore nell'eliminare il Wiki";
App::$strings["New page created"] = "Nuova pagina creata";
App::$strings["Cannot delete Home"] = "Non è possibile eliminare la Home";
App::$strings["Current Revision"] = "Revisione corrente";
App::$strings["Selected Revision"] = "Revisione selezionata";
App::$strings["You must be authenticated."] = "Devi autenticarti.";
App::$strings["toggle full screen mode"] = "attiva/disattiva schermo intero";
App::$strings["Layout updated."] = "Layout aggiornato.";
App::$strings["Feature disabled."] = "Funzionalità disattivata.";
App::$strings["Edit System Page Description"] = "Modifica i layout di sistema";
App::$strings["(modified)"] = "(modificato)";
App::$strings["Reset"] = "Reimposta";
App::$strings["Layout not found."] = "Layout non trovato.";
App::$strings["Module Name:"] = "Nome del modulo:";
App::$strings["Layout Help"] = "Guida al layout";
App::$strings["Edit another layout"] = "Modifica un altro layout";
App::$strings["System layout"] = "Layout di sistema";
App::$strings["Poke"] = "Poke";
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["Image uploaded but image cropping failed."] = "L'immagine è stata caricata, ma il non è stato possibile ritagliarla.";
App::$strings["Profile Photos"] = "Foto del profilo";
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["Unable to process image"] = "Impossibile elaborare l'immagine";
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["Use Photo for Profile"] = "Usa la foto per il profilo";
App::$strings["Change Profile Photo"] = "Cambia la foto del profilo";
App::$strings["Use"] = "Usa";
App::$strings["Use a photo from your albums"] = "Usa una foto presa dai tuoi album";
App::$strings["Select existing photo"] = "Seleziona una foto esistente";
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["Away"] = "Assente";
App::$strings["Online"] = "Online";
App::$strings["Unable to locate original post."] = "Impossibile trovare il messaggio originale.";
App::$strings["Empty post discarded."] = "Il post vuoto è stato ignorato.";
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["Your comment is awaiting approval."] = "Il tuo contenuto è in attesa di approvazione.";
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["sent you a private message"] = "ti ha inviato un messaggio privato";
App::$strings["added your channel"] = "ha aggiunto il tuo canale";
App::$strings["requires approval"] = "richiede approvazione";
App::$strings["g A l F d"] = "g A l d F";
App::$strings["[today]"] = "[oggi]";
App::$strings["posted an event"] = "ha creato un evento";
App::$strings["shared a file with you"] = "ha condiviso un file con te";
App::$strings["Invalid item."] = "Elemento non valido.";
App::$strings["Page not found."] = "Pagina non trovata.";
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["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 Profile"] = "Profilo";
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["Refresh Photo"] = "Ricarica la foto";
App::$strings["Fetch updated photo"] = "Aggiorna la foto";
App::$strings["Recent Activity"] = "Attività recenti";
App::$strings["View recent posts and comments"] = "Leggi i post recenti e i commenti";
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["Fetch Vcard"] = "Aggiorna la Vcard";
App::$strings["Fetch electronic calling card for this connection"] = "Scarica la scheda con le informazioni di questo contatto";
App::$strings["Open Individual Permissions section by default"] = "Apri automaticamente la sezione Permessi individuali";
App::$strings["Affinity"] = "Affinità";
App::$strings["Open Set Affinity section by default"] = "Apri la sezione Imposta affinità per default";
App::$strings["Me"] = "Me";
App::$strings["Family"] = "Famiglia";
App::$strings["Acquaintances"] = "Conoscenti";
App::$strings["Filter"] = "Filtra";
App::$strings["Open Custom Filter section by default"] = "Apri automaticamente la sezione con i Filtri personalizzati";
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["This connection is unreachable from this location."] = "Questo contatto non è raggiungibile dal server in uso";
App::$strings["This connection may be unreachable from other channel locations."] = "Questo contatto potrebbe non essere raggiungibile da altri canali";
App::$strings["Location independence is not supported by their network."] = "Nella loro rete la location independence non è supportata.";
App::$strings["This connection is unreachable from this location. Location independence is not supported by their network."] = "Il contatto indicato non è raggiungibile. Nella loro rete la location independence non è supportata.";
App::$strings["Connection Default Permissions"] = "Permessi predefiniti dei nuovi contatti";
App::$strings["Connection: %s"] = "Contatto: %s";
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["Permission role"] = "Ruolo";
App::$strings["Loading"] = "Sto caricando";
App::$strings["Add permission role"] = "Aggiungi un ruolo";
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["Connection Tools"] = "Gestione del contatto";
App::$strings["Slide to adjust your degree of friendship"] = "Trascina per restringere il grado di amicizia da mostrare";
App::$strings["Rating"] = "Valutazioni";
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["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["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["Details"] = "Dettagli";
App::$strings["Room not found"] = "Chat non trovata";
App::$strings["Leave Room"] = "Lascia la chat";
App::$strings["Delete 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["Please enter a link URL:"] = "Inserisci l'indirizzo del link:";
App::$strings["Encrypt text"] = "Cifratura del messaggio";
App::$strings["New Chatroom"] = "Nuova chat";
App::$strings["Chatroom name"] = "Nome 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["No chatrooms available"] = "Nessuna chat disponibile";
App::$strings["Expiration"] = "Scadenza";
App::$strings["min"] = "min";
App::$strings["Photos"] = "Foto";
App::$strings["Files"] = "Archivio file";
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["Menus"] = "Menù";
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["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["Layouts"] = "Layout";
App::$strings["Help"] = "Guida";
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["Please refresh page"] = "Per favore ricarica la pagina";
App::$strings["Unknown error"] = "Errore sconosciuto";
App::$strings["Token verification failed."] = "Verifica del token fallita";
App::$strings["Email Verification Required"] = "È richiesta una verifica della mail";
App::$strings["A verification token was sent to your email address [%s]. Enter that token here to complete the account verification step. Please allow a few minutes for delivery, and check your spam folder if you do not see the message."] = "Un token di verifica è stato spedito al tuo indirizzo email [%s]. Inserisci il token qui per completare la verifica dell'account. Per favore attendi qualche minuti e controlla lo spam se non vedi il messaggio.";
App::$strings["Resend Email"] = "Reinvia la mail";
App::$strings["Validation token"] = "Token di validazione";
App::$strings["Post not found."] = "Post non trovato.";
App::$strings["post"] = "il post";
App::$strings["comment"] = "il commento";
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["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["If enabled, connection requests will be approved without your interaction"] = "Se abilitato, le richieste di contatto saranno approvate automaticamente";
App::$strings["Automatic approval settings"] = "Impostazioni di approvazione automatica";
App::$strings["Some individual permissions may have been preset or locked based on your channel type and privacy settings."] = "";
App::$strings["Unknown App"] = "Applicazione sconosciuta";
App::$strings["Authorize"] = "Autorizza";
App::$strings["Do you authorize the app %s to access your channel data?"] = "Autorizzi la app %s ad accedere ai dati del tuo canale?";
App::$strings["Allow"] = "Autorizza";
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 not found."] = "Gruppo di canali non trovato.";
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["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["Gender"] = "Sesso";
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["Edit visibility"] = "Cambia la visibilità";
App::$strings["Profile Tools"] = "Gestione del profilo";
App::$strings["Change cover photo"] = "Cambia la copertina del canale";
App::$strings["Change profile photo"] = "Cambia la foto del profilo";
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["Personal"] = "Personali";
App::$strings["Relationship"] = "Relazione";
App::$strings["Miscellaneous"] = "Altro";
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["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["Homepage URL"] = "Indirizzo home page";
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["Communications"] = "Comunicazioni";
App::$strings["Profile Image"] = "Immagine del profilo";
App::$strings["Edit Profiles"] = "Modifica i tuoi profili";
App::$strings["This page is available only to site members"] = "Questa pagina è accessibile solo agli utenti registrati";
App::$strings["Welcome"] = "Benvenuto";
App::$strings["What would you like to do?"] = "Vorresti farlo?";
App::$strings["Please bookmark this page if you would like to return to it in the future"] = "Per favore metti questa pagina nei preferiti se vuoi ritornarci in futuro";
App::$strings["Upload a profile photo"] = "Carica una foto per il profilo";
App::$strings["Upload a cover photo"] = "Carica una foto di copertina";
App::$strings["Edit your default profile"] = "Modifica il tuo profilo predefinito";
App::$strings["View friend suggestions"] = "Guarda i suggerimenti di amicizia";
App::$strings["View the channel directory"] = "Guarda l'elenco dei canali";
App::$strings["View/edit your channel settings"] = "Guarda/modifica le impostazioni del tuo canale";
App::$strings["View the site or project documentation"] = "Guarda la documentazione del sito o del progetto";
App::$strings["Visit your channel homepage"] = "Visita la pagina iniziale del tuo canale";
App::$strings["View your connections and/or add somebody whose address you already know"] = "Guarda i tuoi contatti e/o aggiungine qualcuno di cui hai l'indirizzo";
App::$strings["View your personal stream (this may be empty until you add some connections)"] = "Guarda il tuo flusso personale (potrebbe essere vuoto finché non aggiungi connessioni)";
App::$strings["View the public stream. Warning: this content is not moderated"] = "Vedi il flusso pubblico. Attenzione: contenuti non moderati";
App::$strings["Page link"] = "Link alla pagina";
App::$strings["Edit Webpage"] = "Modifica la pagina web";
App::$strings["Create a new channel"] = "Crea un nuovo canale";
App::$strings["Channel Manager"] = "Gestione canali";
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 Channel"] = "Canale delegato";
App::$strings["Cards"] = "Card";
App::$strings["Add Card"] = "Aggiungi card";
App::$strings["This directory server requires an access token"] = "Questo directory server necessita di un token di autenticazione";
App::$strings["About this site"] = "Informazioni su questo sito";
App::$strings["Site Name"] = "Nome del sito";
App::$strings["Administrator"] = "Amministratore";
App::$strings["Terms of Service"] = "Condizioni d'Uso";
App::$strings["Software and Project information"] = "Informazioni sul software e sul progetto";
App::$strings["This site is powered by \$Projectname"] = "Questo sito è costruito con \$Projectname";
App::$strings["Federated and decentralised networking and identity services provided by Zot"] = "";
App::$strings["Version %s"] = "Versione %s";
App::$strings["Project homepage"] = "Homepage del progetto";
App::$strings["Developer homepage"] = "Homepage dello sviluppatore";
App::$strings["No ratings"] = "Nessuna valutazione";
App::$strings["Ratings"] = "Valutazioni";
App::$strings["Rating: "] = "Valutazione:";
App::$strings["Website: "] = "Sito web:";
App::$strings["Description: "] = "Descrizione:";
App::$strings["Import Webpage Elements"] = "Importa gli elementi della pagina web";
App::$strings["Import selected"] = "Importa i selezionati";
App::$strings["Export Webpage Elements"] = "Esporta gli elementi della pagina web";
App::$strings["Export selected"] = "Esporta i selezionati";
App::$strings["Webpages"] = "Pagine web";
App::$strings["Actions"] = "Azioni";
App::$strings["Page Link"] = "Link alla pagina";
App::$strings["Page Title"] = "Titolo della pagina";
App::$strings["Invalid file type."] = "Tipo di file non valido.";
App::$strings["Error opening zip file"] = "Errore nell'apertura del file zip";
App::$strings["Invalid folder path."] = "La cartella indicata non è valida.";
App::$strings["No webpage elements detected."] = "Nella pagina web non sono presenti elementi.";
App::$strings["Import complete."] = "Importazione completata.";
App::$strings["Channel name changes are not allowed within 48 hours of changing the account password."] = "Non è possibile cambiare il nome del canale entro le 48 dal cambio della password dell'account.";
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["Change channel nickname/address"] = "Cambia il nome/indirizzo del canale";
App::$strings["Any/all connections on other networks will be lost!"] = "Tutti i contatti su altre reti saranno persi!";
App::$strings["New channel address"] = "";
App::$strings["Rename Channel"] = "";
App::$strings["Item is not editable"] = "L'elemento non è modificabile";
App::$strings["Edit post"] = "Modifica post";
App::$strings["Invalid message"] = "Messaggio non valido";
App::$strings["no results"] = "nessun risultato";
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["Delivery report for %1\$s"] = "Rapporto di consegna - %1\$s";
App::$strings["Options"] = "Opzioni";
App::$strings["Redeliver"] = "Reinvia";
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["Channel Sources"] = "Sorgenti del canale";
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["Add the following categories to posts imported from this source (comma separated)"] = "Aggiungi le seguenti categorie ai post importati da questa sorgente (separate da virgola)";
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["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["channel"] = "il canale";
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 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 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["No default suggestions were found."] = "";
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["Age:"] = "Età:";
App::$strings["Location:"] = "Luogo:";
App::$strings["Description:"] = "Descrizione:";
App::$strings["Hometown:"] = "Città dove vivo:";
App::$strings["About:"] = "Informazioni:";
App::$strings["Connect"] = "Aggiungi";
App::$strings["Public Forum:"] = "Forum pubblico:";
App::$strings["Keywords: "] = "Parole chiave:";
App::$strings["Don't suggest"] = "Non fornire suggerimenti";
App::$strings["Common connections (estimated):"] = "";
App::$strings["Global Directory"] = "Elenchi pubblici globali";
App::$strings["Local Directory"] = "Elenco canali su questo hub";
App::$strings["Finding:"] = "Ricerca:";
App::$strings["Channel Suggestions"] = "Canali suggeriti";
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["Xchan Lookup"] = "Ricerca canale";
App::$strings["Lookup xchan beginning with (or webbie): "] = "Cerca un canale (o un webbie) che inizia per:";
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["Ignore/Hide"] = "Ignora/nascondi";
App::$strings["Unable to find your hub."] = "Impossibile raggiungere il tuo hub.";
App::$strings["Post successful."] = "Inviato!";
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"] = "";
App::$strings["Message recalled."] = "Messaggio revocato.";
App::$strings["Conversation removed."] = "Conversazione rimossa.";
App::$strings["Expires YYYY-MM-DD HH:MM"] = "Scade il YYYY-MM-DD HH:MM";
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["Attach file"] = "Allega file";
App::$strings["Send"] = "Invia";
App::$strings["Set expiration date"] = "Data di scadenza";
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["Public Hubs"] = "Hub pubblici";
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 fornire alcune funzionalità o l'intero servizio 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["Stats"] = "Statistiche";
App::$strings["Software"] = "Software";
App::$strings["Rate"] = "Valuta";
App::$strings["webpage"] = "pagina web";
App::$strings["block"] = "block";
App::$strings["layout"] = "layout";
App::$strings["menu"] = "menu";
App::$strings["%s element installed"] = "%s elemento installato";
App::$strings["%s element installation failed"] = "Elementi con installazione fallita: %s";
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["Enter a folder name"] = "";
App::$strings["or select an existing folder (doubleclick)"] = "";
App::$strings["Save to Folder"] = "Salva nella cartella";
App::$strings["Fetching URL returns error: %1\$s"] = "La chiamata all'URL restituisce questo errore: %1\$s";
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. Continue to create your first channel..."] = "";
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["I accept the %s for this website"] = "Accetto le %s di questo sito";
App::$strings["I am over %s years of age and accept the %s for this website"] = "";
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["Register"] = "Registrati";
App::$strings["This site requires email verification. After completing this form, please check your email for further instructions."] = "";
App::$strings["Cover Photos"] = "Copertine del canale";
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["cover photo"] = "Copertina del canale";
App::$strings["Change Cover Photo"] = "";
App::$strings["Documentation Search"] = "Ricerca nella guida";
App::$strings["About"] = "Informazioni";
App::$strings["Administrators"] = "";
App::$strings["Developers"] = "";
App::$strings["Tutorials"] = "";
App::$strings["\$Projectname Documentation"] = "Guida di \$Projectname";
App::$strings["Contents"] = "";
App::$strings["Article"] = "";
App::$strings["Item has been removed."] = "";
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["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["Invalid channel."] = "";
App::$strings["network"] = "rete";
App::$strings["\$Projectname"] = "\$Projectname";
App::$strings["Welcome to %s"] = "%s ti dà il benvenuto";
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["Show in your contacts shared folder"] = "";
App::$strings["No channel."] = "Nessun canale.";
App::$strings["No connections in common."] = "Nessun contatto in comune.";
App::$strings["View Common Connections"] = "";
App::$strings["Email verification resent"] = "";
App::$strings["Unable to resend email verification message."] = "";
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["Blocked accounts"] = "Account bloccati";
App::$strings["Expired accounts"] = "";
App::$strings["Expiring accounts"] = "";
App::$strings["Clones"] = "";
App::$strings["Message queues"] = "Coda messaggi in uscita";
App::$strings["Your software should be updated"] = "Il tuo software necessita di un aggiornamento";
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["Repository version (master)"] = "Versione del repository (master)";
App::$strings["Repository version (dev)"] = "Versione del repository (dev)";
App::$strings["No service class restrictions found."] = "Non esistono restrizioni su questa classe di account.";
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["Edit Card"] = "";
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["Mark all seen"] = "Marca tutto come letto";
App::$strings["0. Beginner/Basic"] = "";
App::$strings["1. Novice - not skilled but willing to learn"] = "";
App::$strings["2. Intermediate - somewhat comfortable"] = "";
App::$strings["3. Advanced - very comfortable"] = "";
App::$strings["4. Expert - I can write computer code"] = "";
App::$strings["5. Wizard - I probably know more than you do"] = "";
App::$strings["Site Admin"] = "Amministrazione sito";
App::$strings["Report Bug"] = "Segnala il bug";
App::$strings["View Bookmarks"] = "Vedi i segnalibri";
App::$strings["My Chatrooms"] = "Le mie aree chat";
App::$strings["Firefox Share"] = "Firefox Share";
App::$strings["Remote Diagnostics"] = "Diagnostica remota";
App::$strings["Suggest Channels"] = "Suggerisci canali";
App::$strings["Login"] = "Accedi";
App::$strings["Activity"] = "Attività";
App::$strings["Wiki"] = "Wiki";
App::$strings["Channel Home"] = "Bacheca del canale";
App::$strings["Events"] = "Eventi";
App::$strings["Directory"] = "Elenchi pubblici dei canali";
App::$strings["Mail"] = "Messaggi";
App::$strings["Chat"] = "Chat";
App::$strings["Probe"] = "Diagnostica";
App::$strings["Suggest"] = "Suggerisci";
App::$strings["This email was sent by %1\$s at %2\$s."] = "";
App::$strings["To stop receiving these messages, please adjust your Notification Settings at %s"] = "";
App::$strings["To stop receiving these messages, please adjust your %s."] = "";
App::$strings["%s <!item_type!>"] = "%s <!item_type!>";
App::$strings["[\$Projectname:Notify] New mail received at %s"] = "[\$Projectname:Notifica] 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["commented on"] = "ha commentato";
App::$strings["liked"] = "";
App::$strings["disliked"] = "";
App::$strings["%1\$s, %2\$s %3\$s [zrl=%4\$s]a %5\$s[/zrl]"] = "";
App::$strings["%1\$s, %2\$s %3\$s [zrl=%4\$s]%5\$s's %6\$s[/zrl]"] = "";
App::$strings["%1\$s, %2\$s %3\$s [zrl=%4\$s]your %5\$s[/zrl]"] = "";
App::$strings["[\$Projectname:Notify] Moderated Comment to conversation #%1\$d by %2\$s"] = "";
App::$strings["[\$Projectname:Notify] Comment to conversation #%1\$d by %2\$s"] = "[\$Projectname:Notifica] 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["Please visit %s to approve or reject this comment."] = "";
App::$strings["%1\$s, %2\$s liked [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, a %2\$s [zrl=%3\$s]tuo %4\$s[/zrl]";
App::$strings["[\$Projectname:Notify] Like received to conversation #%1\$d by %2\$s"] = "[\$Projectname:Notify] Ricevuto un mi piace alla conversazione #%1\$d di %2\$s";
App::$strings["%1\$s, %2\$s liked an item/conversation you created."] = "%1\$s, a %2\$s piace l'elemento/conversazione che hai creato";
App::$strings["[\$Projectname:Notify] %s posted to your profile wall"] = "[\$Projectname:Notifica] %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["[\$Projectname:Notify] %s tagged you"] = "[\$Projectname:Notifica] %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["[\$Projectname:Notify] %1\$s poked you"] = "[\$Projectname:Notifica] %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["[\$Projectname:Notify] %s tagged your post"] = "[\$Projectname:Notifica] %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["[\$Projectname:Notify] Introduction received"] = "[\$Projectname:Notifica] 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["[\$Projectname:Notify] Friend suggestion received"] = "[\$Projectname:Notifica] 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["[\$Projectname:Notify]"] = "[\$Projectname:Notifica]";
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["edited a post dated %s"] = "";
App::$strings["edited a comment dated %s"] = "";
App::$strings["Wiki updated successfully"] = "";
App::$strings["Wiki files deleted successfully"] = "";
App::$strings["Update Error at %s"] = "Errore di aggiornamento su %s";
App::$strings["Update %s failed. See error logs."] = "%s: aggiornamento fallito. Controlla i log di errore.";
App::$strings["Private Message"] = "Messaggio privato";
App::$strings["Select"] = "Scegli";
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["Message signature validated"] = "Messaggio con firma verificata";
App::$strings["Message signature incorrect"] = "Massaggio con firma non corretta";
App::$strings["Add Tag"] = "Aggiungi un tag";
App::$strings["like"] = "mi piace";
App::$strings["dislike"] = "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["from %s"] = "da %s";
App::$strings["last edited: %s"] = "ultima modifica: %s";
App::$strings["Expires: %s"] = "Scadenza: %s";
App::$strings["Attend"] = "";
App::$strings["Attendance Options"] = "";
App::$strings["Vote"] = "";
App::$strings["Voting Options"] = "";
App::$strings["Save Bookmarks"] = "Salva segnalibro";
App::$strings["Add to Calendar"] = "Aggiungi al calendario";
App::$strings["This is an unsaved preview"] = "";
App::$strings["%s show all"] = "%s mostra tutto";
App::$strings["Bold"] = "Grassetto";
App::$strings["Italic"] = "Corsivo";
App::$strings["Underline"] = "Sottolineato";
App::$strings["Quote"] = "Citazione";
App::$strings["Code"] = "Codice";
App::$strings["Image"] = "Immagine";
App::$strings["Attach File"] = "";
App::$strings["Insert Link"] = "Collegamento";
App::$strings["Video"] = "Video";
App::$strings["Your full name (required)"] = "";
App::$strings["Your email address (required)"] = "";
App::$strings["Your website URL (optional)"] = "";
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["Total"] = "Totale";
App::$strings["Shared"] = "Condiviso";
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["Drop files here to immediately upload"] = "Trascina i file qui per caricarli al volo";
App::$strings["Forums"] = "Forum";
App::$strings["Select Channel"] = "";
App::$strings["Read-write"] = "";
App::$strings["Read-only"] = "";
App::$strings["My Calendars"] = "";
App::$strings["Shared Calendars"] = "";
App::$strings["Share this calendar"] = "";
App::$strings["Calendar name and color"] = "";
App::$strings["Create new calendar"] = "";
App::$strings["Calendar Name"] = "";
App::$strings["Calendar Tools"] = "";
App::$strings["Import calendar"] = "";
App::$strings["Select a calendar to import to"] = "";
App::$strings["Addressbooks"] = "";
App::$strings["Addressbook name"] = "";
App::$strings["Create new addressbook"] = "";
App::$strings["Addressbook Name"] = "";
App::$strings["Addressbook Tools"] = "";
App::$strings["Import addressbook"] = "";
App::$strings["Select an addressbook to import to"] = "";
App::$strings["Categories"] = "Categorie";
App::$strings["Everything"] = "Tutto";
App::$strings["Events Tools"] = "Gestione eventi";
App::$strings["Export Calendar"] = "Esporta calendario";
App::$strings["Import Calendar"] = "Importa calendario";
App::$strings["Suggested Chatrooms"] = "Chat suggerite";
App::$strings["HQ Control Panel"] = "";
App::$strings["Create a new post"] = "";
App::$strings["Private Mail Menu"] = "Menu messaggi privati";
App::$strings["Combined View"] = "Vista combinata";
App::$strings["Inbox"] = "In arrivo";
App::$strings["Outbox"] = "Inviati";
App::$strings["New Message"] = "Nuovo messaggio";
App::$strings["Chatrooms"] = "Chat";
App::$strings["Overview"] = "Riepilogo";
App::$strings["Rating Tools"] = "Valutazione";
App::$strings["Rate Me"] = "Valutami";
App::$strings["View Ratings"] = "Vedi le valutazioni ricevute";
App::$strings["__ctx:widget__ Activity"] = "Attività";
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["Wiki List"] = "Elenco wiki";
App::$strings["Archives"] = "Archivi";
App::$strings["Received Messages"] = "Ricevuti";
App::$strings["Sent Messages"] = "Inviati";
App::$strings["Conversations"] = "Conversazioni";
App::$strings["No messages."] = "Nessun messaggio.";
App::$strings["Delete conversation"] = "Elimina la conversazione";
App::$strings["Chat Members"] = "Partecipanti";
App::$strings["photo/image"] = "foto/immagine";
App::$strings["Remove term"] = "Rimuovi termine";
App::$strings["Saved Searches"] = "Ricerche salvate";
App::$strings["add"] = "aggiungi";
App::$strings["Notes"] = "Note";
App::$strings["Add new page"] = "";
App::$strings["Wiki Pages"] = "Pagine wiki";
App::$strings["Page name"] = "";
App::$strings["Refresh"] = "Aggiorna";
App::$strings["Tasks"] = "Attività";
App::$strings["Suggestions"] = "Suggerimenti";
App::$strings["See more..."] = "Altro...";
App::$strings["Saved Folders"] = "Cartelle salvate";
App::$strings["Click to show more"] = "Clicca per mostrare tutto";
App::$strings["Profile Creation"] = "";
App::$strings["Upload profile photo"] = "";
App::$strings["Upload cover photo"] = "";
App::$strings["Edit your profile"] = "Modifica il tuo profilo";
App::$strings["Find and Connect with others"] = "";
App::$strings["Manage your connections"] = "";
App::$strings["Communicate"] = "";
App::$strings["View your channel homepage"] = "";
App::$strings["View your network stream"] = "";
App::$strings["Documentation"] = "";
App::$strings["View public stream. Warning: not moderated"] = "";
App::$strings["New Member Links"] = "";
App::$strings["Member registrations waiting for confirmation"] = "Richieste in attesa di conferma";
App::$strings["Inspect queue"] = "Coda di attesa";
App::$strings["DB updates"] = "Aggiornamenti al DB";
App::$strings["Admin"] = "Amministrazione";
App::$strings["Plugin Features"] = "Plugin";
App::$strings["Account settings"] = "Il tuo account";
App::$strings["Channel settings"] = "Impostazioni del canale";
App::$strings["Additional features"] = "Funzionalità opzionali";
App::$strings["Addon settings"] = "";
App::$strings["Display settings"] = "Aspetto";
App::$strings["Manage locations"] = "Gestione cloni del tuo canale";
App::$strings["Export channel"] = "Esporta il canale";
App::$strings["Connected apps"] = "App connesse";
App::$strings["Permission Groups"] = "";
App::$strings["Premium Channel Settings"] = "Canale premium - impostazioni";
App::$strings["Bookmarked Chatrooms"] = "Chat nei segnalibri";
App::$strings["New Network Activity"] = "Nuova attività nella tua rete";
App::$strings["New Network Activity Notifications"] = "";
App::$strings["View your network activity"] = "";
App::$strings["Mark all notifications read"] = "";
App::$strings["Show new posts only"] = "";
App::$strings["Filter by name"] = "";
App::$strings["New Home Activity"] = "";
App::$strings["New Home Activity Notifications"] = "";
App::$strings["View your home activity"] = "";
App::$strings["Mark all notifications seen"] = "";
App::$strings["New Mails"] = "";
App::$strings["New Mails Notifications"] = "";
App::$strings["View your private mails"] = "";
App::$strings["Mark all messages seen"] = "";
App::$strings["New Events"] = "";
App::$strings["New Events Notifications"] = "";
App::$strings["View events"] = "";
App::$strings["Mark all events seen"] = "Marca come letti tutti gli eventi";
App::$strings["New Connections Notifications"] = "";
App::$strings["View all connections"] = "";
App::$strings["New Files"] = "";
App::$strings["New Files Notifications"] = "";
App::$strings["Notices"] = "Avvisi";
App::$strings["View all notices"] = "";
App::$strings["Mark all notices seen"] = "";
App::$strings["New Registrations"] = "";
App::$strings["New Registrations Notifications"] = "";
App::$strings["Public Stream Notifications"] = "";
App::$strings["View the public stream"] = "";
App::$strings["Sorry, you have got no notifications at the moment"] = "";
App::$strings["Source channel not found."] = "";
App::$strings["Create an account to access services and applications"] = "";
App::$strings["Logout"] = "Esci";
App::$strings["Login/Email"] = "Login/Email";
App::$strings["Password"] = "Password";
App::$strings["Remember me"] = "Resta connesso";
App::$strings["Forgot your password?"] = "Hai dimenticato la password?";
App::$strings["[\$Projectname] Website SSL error for %s"] = "";
App::$strings["Website SSL certificate is not valid. Please correct."] = "Il certificato SSL del sito non è valido. Si prega di intervenire.";
App::$strings["[\$Projectname] Cron tasks not running on %s"] = "";
App::$strings["Cron/Scheduled tasks not running."] = "Processi cron non avviati.";
App::$strings["never"] = "mai";
App::$strings["Focus (Hubzilla default)"] = "Focus (predefinito)";
App::$strings["Theme settings"] = "Impostazioni del tema";
App::$strings["Narrow navbar"] = "Barra di navigazione ristretta";
App::$strings["Navigation bar background color"] = "Barra di navigazione: Colore di sfondo";
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"] = "";
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 font-size for the entire application"] = "Dimensione font per tutto il sito";
App::$strings["Examples: 1rem, 100%, 16px"] = "";
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["Example: 4px"] = "Esempio: 4px";
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 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["Errors encountered deleting database table "] = "Errore nella cancellazione della tabella";
App::$strings["Submit Settings"] = "Invia impostazioni";
App::$strings["Drop tables when uninstalling?"] = "";
App::$strings["If checked, the Rendezvous database tables will be deleted when the plugin is uninstalled."] = "";
App::$strings["Mapbox Access Token"] = "";
App::$strings["If you enter a Mapbox access token, it will be used to retrieve map tiles from Mapbox instead of the default OpenStreetMap tile server."] = "";
App::$strings["Rendezvous"] = "";
App::$strings["This identity has been deleted by another member due to inactivity. Please press the \"New identity\" button or refresh the page to register a new identity. You may use the same name."] = "";
App::$strings["Welcome to Rendezvous!"] = "";
App::$strings["Enter your name to join this rendezvous. To begin sharing your location with the other members, tap the GPS control. When your location is discovered, a red dot will appear and others will be able to see you on the map."] = "";
App::$strings["Let's meet here"] = "Incontriamoci qui";
App::$strings["New marker"] = "Nuovo segnaposto";
App::$strings["Edit marker"] = "Modifica segnaposto";
App::$strings["New identity"] = "Nuova identità";
App::$strings["Delete marker"] = "Elimina segnaposto";
App::$strings["Delete member"] = "Elimina membro";
App::$strings["Edit proximity alert"] = "";
App::$strings["A proximity alert will be issued when this member is within a certain radius of you.<br><br>Enter a radius in meters (0 to disable):"] = "";
App::$strings["distance"] = "distanza";
App::$strings["Proximity alert distance (meters)"] = "";
App::$strings["A proximity alert will be issued when you are within a certain radius of the marker location.<br><br>Enter a radius in meters (0 to disable):"] = "";
App::$strings["Marker proximity alert"] = "";
App::$strings["Reminder note"] = "Nota per il promemoria";
App::$strings["Enter a note to be displayed when you are within the specified proximity..."] = "";
App::$strings["Add new rendezvous"] = "";
App::$strings["Create a new rendezvous and share the access link with those you wish to invite to the group. Those who open the link become members of the rendezvous. They can view other member locations, add markers to the map, or share their own locations with the group."] = "";
App::$strings["Some setting"] = "";
App::$strings["A setting"] = "";
App::$strings["Skeleton Settings"] = "";
App::$strings["GNU-Social Protocol Settings updated."] = "";
App::$strings["The GNU-Social protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "";
App::$strings["Enable the GNU-Social protocol for this channel"] = "";
App::$strings["GNU-Social Protocol Settings"] = "";
App::$strings["Follow"] = "Segui";
App::$strings["%1\$s is now following %2\$s"] = "%1\$s sta ora seguendo %2\$s";
App::$strings["Planets Settings updated."] = "";
App::$strings["Enable Planets Plugin"] = "";
App::$strings["Planets Settings"] = "";
App::$strings["System defaults:"] = "";
App::$strings["Preferred Clipart IDs"] = "";
App::$strings["List of preferred clipart ids. These will be shown first."] = "";
App::$strings["Default Search Term"] = "";
App::$strings["The default search term. These will be shown second."] = "";
App::$strings["Return After"] = "";
App::$strings["Page to load after image selection."] = "";
App::$strings["Edit Profile"] = "Modifica il profilo";
App::$strings["Profile List"] = "";
App::$strings["Order of Preferred"] = "";
App::$strings["Sort order of preferred clipart ids."] = "";
App::$strings["Newest first"] = "";
App::$strings["As entered"] = "";
App::$strings["Order of other"] = "";
App::$strings["Sort order of other clipart ids."] = "";
App::$strings["Most downloaded first"] = "";
App::$strings["Most liked first"] = "";
App::$strings["Preferred IDs Message"] = "";
App::$strings["Message to display above preferred results."] = "";
App::$strings["Uploaded by: "] = "Caricato da:";
App::$strings["Drawn by: "] = "";
App::$strings["Use this image"] = "Usa questa immagine";
App::$strings["Or select from a free OpenClipart.org image:"] = "";
App::$strings["Search Term"] = "Termine di ricerca";
App::$strings["Unknown error. Please try again later."] = "Errore sconosciuto. Per favore riprova più tardi.";
App::$strings["Profile photo updated successfully."] = "";
App::$strings["Flag Adult Photos"] = "Marca le foto per adulti";
App::$strings["Provide photo edit option to hide inappropriate photos from default album view"] = "Permetti di nascondere le foto inappropriate nella visualizzazione degli album";
App::$strings["Post to WordPress"] = "";
App::$strings["Enable WordPress Post Plugin"] = "";
App::$strings["WordPress username"] = "";
App::$strings["WordPress password"] = "";
App::$strings["WordPress API URL"] = "";
App::$strings["Typically https://your-blog.tld/xmlrpc.php"] = "";
App::$strings["WordPress blogid"] = "";
App::$strings["For multi-user sites such as wordpress.com, otherwise leave blank"] = "";
App::$strings["Post to WordPress by default"] = "";
App::$strings["Forward comments (requires hubzilla_wp plugin)"] = "";
App::$strings["WordPress Post Settings"] = "";
App::$strings["Wordpress Settings saved."] = "";
App::$strings["This plugin looks in posts for the words/text you specify below, and collapses any content containing those keywords so it is not displayed at inappropriate times, such as sexual innuendo that may be improper in a work setting. It is polite and recommended to tag any content containing nudity with #NSFW.  This filter can also match any other word/text you specify, and can thereby be used as a general purpose content filter."] = "";
App::$strings["Enable Content filter"] = "";
App::$strings["Comma separated list of keywords to hide"] = "";
App::$strings["Word, /regular-expression/, lang=xx, lang!=xx"] = "";
App::$strings["Not Safe For Work Settings"] = "";
App::$strings["General Purpose Content Filter"] = "";
App::$strings["NSFW Settings saved."] = "";
App::$strings["Possible adult content"] = "";
App::$strings["%s - view"] = "";
App::$strings["Post to Insanejournal"] = "";
App::$strings["Enable InsaneJournal Post Plugin"] = "";
App::$strings["InsaneJournal username"] = "";
App::$strings["InsaneJournal password"] = "";
App::$strings["Post to InsaneJournal by default"] = "";
App::$strings["InsaneJournal Post Settings"] = "";
App::$strings["Insane Journal Settings saved."] = "";
App::$strings["Post to Dreamwidth"] = "";
App::$strings["Enable Dreamwidth Post Plugin"] = "";
App::$strings["Dreamwidth username"] = "";
App::$strings["Dreamwidth password"] = "";
App::$strings["Post to Dreamwidth by default"] = "";
App::$strings["Dreamwidth Post Settings"] = "";
App::$strings["New registration"] = "";
App::$strings["Message sent to %s. New account registration: %s"] = "";
App::$strings["Hubzilla Directory Stats"] = "";
App::$strings["Total Hubs"] = "";
App::$strings["Hubzilla Hubs"] = "";
App::$strings["Friendica Hubs"] = "";
App::$strings["Diaspora Pods"] = "";
App::$strings["Hubzilla Channels"] = "";
App::$strings["Friendica Channels"] = "";
App::$strings["Diaspora Channels"] = "";
App::$strings["Aged 35 and above"] = "";
App::$strings["Aged 34 and under"] = "";
App::$strings["Average Age"] = "";
App::$strings["Known Chatrooms"] = "";
App::$strings["Known Tags"] = "";
App::$strings["Please note Diaspora and Friendica statistics are merely those **this directory** is aware of, and not all those known in the network.  This also applies to chatrooms,"] = "";
App::$strings["Your Webbie:"] = "";
App::$strings["Fontsize (px):"] = "";
App::$strings["Link:"] = "";
App::$strings["Like us on Hubzilla"] = "Metti un like su Hubzilla";
App::$strings["Embed:"] = "";
App::$strings["Photos imported"] = "";
App::$strings["Redmatrix Photo Album Import"] = "";
App::$strings["This will import all your Redmatrix photo albums to this channel."] = "";
App::$strings["Redmatrix Server base URL"] = "";
App::$strings["Redmatrix Login Username"] = "";
App::$strings["Redmatrix Login Password"] = "";
App::$strings["Import just this album"] = "";
App::$strings["Leave blank to import all albums"] = "";
App::$strings["Maximum count to import"] = "";
App::$strings["0 or blank to import all available"] = "";
App::$strings["Channels to auto connect"] = "";
App::$strings["Comma separated list"] = "";
App::$strings["Popular Channels"] = "";
App::$strings["IRC Settings"] = "";
App::$strings["IRC settings saved."] = "";
App::$strings["IRC Chatroom"] = "";
App::$strings["Post to LiveJournal"] = "";
App::$strings["Enable LiveJournal Post Plugin"] = "";
App::$strings["LiveJournal username"] = "";
App::$strings["LiveJournal password"] = "";
App::$strings["Post to LiveJournal by default"] = "";
App::$strings["LiveJournal Post Settings"] = "";
App::$strings["LiveJournal Settings saved."] = "";
App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "";
App::$strings["The error message was:"] = "";
App::$strings["First Name"] = "";
App::$strings["Last Name"] = "";
App::$strings["Nickname"] = "";
App::$strings["Full Name"] = "";
App::$strings["Profile Photo 16px"] = "";
App::$strings["Profile Photo 32px"] = "";
App::$strings["Profile Photo 48px"] = "";
App::$strings["Profile Photo 64px"] = "";
App::$strings["Profile Photo 80px"] = "";
App::$strings["Profile Photo 128px"] = "";
App::$strings["Timezone"] = "";
App::$strings["Birth Year"] = "";
App::$strings["Birth Month"] = "";
App::$strings["Birth Day"] = "";
App::$strings["Birthdate"] = "";
App::$strings["OpenID protocol error. No ID returned."] = "";
App::$strings["Login failed."] = "Accesso fallito.";
App::$strings["Male"] = "Maschio";
App::$strings["Female"] = "Femmina";
App::$strings["You're welcome."] = "";
App::$strings["Ah shucks..."] = "";
App::$strings["Don't mention it."] = "";
App::$strings["&lt;blush&gt;"] = "";
App::$strings["Page to load after login"] = "";
App::$strings["Examples: &quot;apps&quot;, &quot;network?f=&gid=37&quot; (privacy collection), &quot;channel&quot; or &quot;notifications/system&quot; (leave blank for default network page (grid)."] = "";
App::$strings["Startpage Settings"] = "";
App::$strings["bitchslap"] = "";
App::$strings["bitchslapped"] = "";
App::$strings["shag"] = "";
App::$strings["shagged"] = "";
App::$strings["patent"] = "";
App::$strings["patented"] = "";
App::$strings["hug"] = "";
App::$strings["hugged"] = "";
App::$strings["murder"] = "";
App::$strings["murdered"] = "";
App::$strings["worship"] = "";
App::$strings["worshipped"] = "";
App::$strings["kiss"] = "";
App::$strings["kissed"] = "";
App::$strings["tempt"] = "";
App::$strings["tempted"] = "";
App::$strings["raise eyebrows at"] = "";
App::$strings["raised their eyebrows at"] = "";
App::$strings["insult"] = "";
App::$strings["insulted"] = "";
App::$strings["praise"] = "";
App::$strings["praised"] = "";
App::$strings["be dubious of"] = "";
App::$strings["was dubious of"] = "";
App::$strings["eat"] = "";
App::$strings["ate"] = "";
App::$strings["giggle and fawn at"] = "";
App::$strings["giggled and fawned at"] = "";
App::$strings["doubt"] = "";
App::$strings["doubted"] = "";
App::$strings["glare"] = "";
App::$strings["glared at"] = "";
App::$strings["fuck"] = "";
App::$strings["fucked"] = "";
App::$strings["bonk"] = "";
App::$strings["bonked"] = "";
App::$strings["declare undying love for"] = "";
App::$strings["declared undying love for"] = "";
App::$strings["Diaspora Protocol Settings updated."] = "";
App::$strings["The Diaspora protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "";
App::$strings["Enable the Diaspora protocol for this channel"] = "";
App::$strings["Allow any Diaspora member to comment on your public posts"] = "";
App::$strings["Prevent your hashtags from being redirected to other sites"] = "";
App::$strings["Sign and forward posts and comments with no existing Diaspora signature"] = "";
App::$strings["Followed hashtags (comma separated, do not include the #)"] = "";
App::$strings["Diaspora Protocol Settings"] = "";
App::$strings["No username found in import file."] = "";
App::$strings["Unable to create a unique channel address. Import failed."] = "Impossibile creare un indirizzo univoco per il canale. L'import è fallito.";
App::$strings["Your account on %s will expire in a few days."] = "";
App::$strings["Enable Rainbowtag"] = "";
App::$strings["Rainbowtag Settings"] = "";
App::$strings["Rainbowtag Settings saved."] = "";
App::$strings["Show Upload Limits"] = "";
App::$strings["Hubzilla configured maximum size: "] = "";
App::$strings["PHP upload_max_filesize: "] = "";
App::$strings["PHP post_max_size (must be larger than upload_max_filesize): "] = "";
App::$strings["generic profile image"] = "";
App::$strings["random geometric pattern"] = "";
App::$strings["monster face"] = "";
App::$strings["computer generated face"] = "";
App::$strings["retro arcade style face"] = "";
App::$strings["Hub default profile photo"] = "";
App::$strings["Information"] = "";
App::$strings["Libravatar addon is installed, too. Please disable Libravatar addon or this Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "";
App::$strings["Save Settings"] = "";
App::$strings["Default avatar image"] = "";
App::$strings["Select default avatar image if none was found at Gravatar. See README"] = "";
App::$strings["Rating of images"] = "";
App::$strings["Select the appropriate avatar rating for your site. See README"] = "";
App::$strings["Gravatar settings updated."] = "";
App::$strings["Hubzilla File Storage Import"] = "";
App::$strings["This will import all your cloud files from another server."] = "";
App::$strings["Hubzilla Server base URL"] = "";
App::$strings["Since modified date yyyy-mm-dd"] = "";
App::$strings["Until modified date yyyy-mm-dd"] = "";
App::$strings["Recent Channel/Profile Viewers"] = "";
App::$strings["This plugin/addon has not been configured."] = "";
App::$strings["Please visit the Visage settings on %s"] = "";
App::$strings["your feature settings page"] = "";
App::$strings["No entries."] = "";
App::$strings["Enable Visage Visitor Logging"] = "";
App::$strings["Visage Settings"] = "";
App::$strings["Nsabait Settings updated."] = "";
App::$strings["Enable NSAbait Plugin"] = "";
App::$strings["NSAbait Settings"] = "";
App::$strings["Send test email"] = "";
App::$strings["No recipients found."] = "";
App::$strings["Mail sent."] = "";
App::$strings["Sending of mail failed."] = "";
App::$strings["Mail Test"] = "";
App::$strings["Message subject"] = "";
App::$strings["Use markdown for editing posts"] = "";
App::$strings["View Larger"] = "";
App::$strings["Tile Server URL"] = "";
App::$strings["A list of <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank\">public tile servers</a>"] = "";
App::$strings["Nominatim (reverse geocoding) Server URL"] = "";
App::$strings["A list of <a href=\"http://wiki.openstreetmap.org/wiki/Nominatim\" target=\"_blank\">Nominatim servers</a>"] = "";
App::$strings["Default zoom"] = "";
App::$strings["The default zoom level. (1:world, 18:highest, also depends on tile server)"] = "";
App::$strings["Include marker on map"] = "";
App::$strings["Include a marker on the map."] = "";
App::$strings["text to include in all outgoing posts from this site"] = "";
App::$strings["Post to Friendica"] = "";
App::$strings["rtof Settings saved."] = "";
App::$strings["Allow posting to Friendica"] = "";
App::$strings["Send public postings to Friendica by default"] = "";
App::$strings["Friendica API Path"] = "";
App::$strings["https://{sitename}/api"] = "";
App::$strings["Friendica login name"] = "";
App::$strings["Friendica password"] = "";
App::$strings["Hubzilla to Friendica Post Settings"] = "";
App::$strings["Status:"] = "Stato:";
App::$strings["Activate addon"] = "";
App::$strings["Hide Jappixmini Chat-Widget from the webinterface"] = "";
App::$strings["Jabber username"] = "";
App::$strings["Jabber server"] = "";
App::$strings["Jabber BOSH host URL"] = "";
App::$strings["Jabber password"] = "";
App::$strings["Encrypt Jabber password with Hubzilla password"] = "";
App::$strings["Hubzilla password"] = "";
App::$strings["Approve subscription requests from Hubzilla contacts automatically"] = "";
App::$strings["Purge internal list of jabber addresses of contacts"] = "";
App::$strings["Configuration Help"] = "";
App::$strings["Jappix Mini Settings"] = "";
App::$strings["Currently blocked"] = "Attualmente bloccati";
App::$strings["No channels currently blocked"] = "Nessun canale attualmente bloccato";
App::$strings["\"Superblock\" Settings"] = "";
App::$strings["Block Completely"] = "";
App::$strings["superblock settings updated"] = "";
App::$strings["Federate"] = "";
App::$strings["nofed Settings saved."] = "";
App::$strings["Allow Federation Toggle"] = "";
App::$strings["Federate posts by default"] = "";
App::$strings["NoFed Settings"] = "";
App::$strings["Post to Red"] = "";
App::$strings["Channel is required."] = "";
App::$strings["redred Settings saved."] = "";
App::$strings["Allow posting to another Hubzilla Channel"] = "";
App::$strings["Send public postings to Hubzilla channel by default"] = "";
App::$strings["Hubzilla API Path"] = "";
App::$strings["Hubzilla login name"] = "";
App::$strings["Hubzilla channel name"] = "";
App::$strings["Hubzilla Crosspost Settings"] = "";
App::$strings["Logfile archive directory"] = "";
App::$strings["Directory to store rotated logs"] = "";
App::$strings["Logfile size in bytes before rotating"] = "";
App::$strings["Number of logfiles to retain"] = "";
App::$strings["Friendica Photo Album Import"] = "";
App::$strings["This will import all your Friendica photo albums to this Red channel."] = "";
App::$strings["Friendica Server base URL"] = "";
App::$strings["Friendica Login Username"] = "";
App::$strings["Friendica Login Password"] = "";
App::$strings["ActivityPub"] = "";
App::$strings["ActivityPub Protocol Settings updated."] = "";
App::$strings["The ActivityPub protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "";
App::$strings["Enable the ActivityPub protocol for this channel"] = "";
App::$strings["Send multi-media HTML articles"] = "";
App::$strings["Not supported by some microblog services such as Mastodon"] = "";
App::$strings["ActivityPub Protocol Settings"] = "";
App::$strings["Project Servers and Resources"] = "";
App::$strings["Project Creator and Tech Lead"] = "";
App::$strings["Admin, developer, directorymin, support bloke"] = "";
App::$strings["And the hundreds of other people and organisations who helped make the Hubzilla possible."] = "";
App::$strings["The Redmatrix/Hubzilla projects are provided primarily by volunteers giving their time and expertise - and often paying out of pocket for services they share with others."] = "";
App::$strings["There is no corporate funding and no ads, and we do not collect and sell your personal information. (We don't control your personal information - <strong>you do</strong>.)"] = "";
App::$strings["Help support our ground-breaking work in decentralisation, web identity, and privacy."] = "";
App::$strings["Your donations keep servers and services running and also helps us to provide innovative new features and continued development."] = "";
App::$strings["Donate"] = "";
App::$strings["Choose a project, developer, or public hub to support with a one-time donation"] = "";
App::$strings["Donate Now"] = "";
App::$strings["<strong><em>Or</em></strong> become a project sponsor (Hubzilla Project only)"] = "";
App::$strings["Please indicate if you would like your first name or full name (or nothing) to appear in our sponsor listing"] = "";
App::$strings["Sponsor"] = "";
App::$strings["Special thanks to: "] = "";
App::$strings["This is a fairly comprehensive and complete guitar chord dictionary which will list most of the available ways to play a certain chord, starting from the base of the fingerboard up to a few frets beyond the twelfth fret (beyond which everything repeats). A couple of non-standard tunings are provided for the benefit of slide players, etc."] = "Questo è un dizionario piuttosto esteso e completo di accordi per chitarra che elenca quasi i tutti i modi possibili di suonare un certo accordo a partire dal tasto iniziale fino a circa il dodicesimo (dopo di cui si ripete tutto). Sono previste anche un paio di accordature non standard a beneficio di chi le usa.";
App::$strings["Chord names start with a root note (A-G) and may include sharps (#) and flats (b). This software will parse most of the standard naming conventions such as maj, min, dim, sus(2 or 4), aug, with optional repeating elements."] = "I nomi degli accordi iniziano con la nota fondamentale (A-G) e possono includere diesis (#) e bemolle (b). Questo software gestisce gran parte delle notazioni convenzionali come maj, min, dim, sus(2 o 4), aug.";
App::$strings["Valid examples include  A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, E7b13b11 ..."] = "Esempi validi includono A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, E7b13b11 ...";
App::$strings["Guitar Chords"] = "Accordi per chitarra";
App::$strings["The complete online chord dictionary"] = "Il dizionario completo degli accordi online";
App::$strings["Tuning"] = "Accordatura";
App::$strings["Chord name: example: Em7"] = "Nome accordo: per esempio Em7";
App::$strings["Show for left handed stringing"] = "Mostra l'accordatura per mancini";
App::$strings["Quick Reference"] = "Riferimento veloce";
App::$strings["Post to Libertree"] = "";
App::$strings["Enable Libertree Post Plugin"] = "";
App::$strings["Libertree API token"] = "";
App::$strings["Libertree site URL"] = "";
App::$strings["Post to Libertree by default"] = "";
App::$strings["Libertree Post Settings"] = "";
App::$strings["Libertree Settings saved."] = "";
App::$strings["Flattr this!"] = "";
App::$strings["Flattr widget settings updated."] = "";
App::$strings["Flattr user"] = "";
App::$strings["URL of the Thing to flattr"] = "";
App::$strings["If empty channel URL is used"] = "";
App::$strings["Title of the Thing to flattr"] = "";
App::$strings["If empty \"channel name on The Hubzilla\" will be used"] = "";
App::$strings["Static or dynamic flattr button"] = "";
App::$strings["static"] = "";
App::$strings["dynamic"] = "";
App::$strings["Alignment of the widget"] = "";
App::$strings["left"] = "";
App::$strings["right"] = "";
App::$strings["Enable Flattr widget"] = "";
App::$strings["Flattr Widget Settings"] = "";
App::$strings["Post to GNU social"] = "";
App::$strings["Please contact your site administrator.<br />The provided API URL is not valid."] = "";
App::$strings["We could not contact the GNU social API with the Path you entered."] = "";
App::$strings["GNU social settings updated."] = "";
App::$strings["Globally Available GNU social OAuthKeys"] = "";
App::$strings["There are preconfigured OAuth key pairs for some GNU social servers available. If you are using one of them, please use these credentials.<br />If not feel free to connect to any other GNU social instance (see below)."] = "";
App::$strings["Provide your own OAuth Credentials"] = "";
App::$strings["No consumer key pair for GNU social found. Register your Hubzilla Account as an desktop client on your GNU social account, copy the consumer key pair here and enter the API base root.<br />Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Hubzilla installation at your favourite GNU social installation."] = "";
App::$strings["OAuth Consumer Key"] = "";
App::$strings["OAuth Consumer Secret"] = "";
App::$strings["Base API Path"] = "";
App::$strings["Remember the trailing /"] = "";
App::$strings["GNU social application name"] = "";
App::$strings["To connect to your GNU social account click the button below to get a security code from GNU social which you have to copy into the input box below and submit the form. Only your <strong>public</strong> posts will be posted to GNU social."] = "";
App::$strings["Log in with GNU social"] = "";
App::$strings["Copy the security code from GNU social here"] = "";
App::$strings["Cancel Connection Process"] = "";
App::$strings["Current GNU social API is"] = "";
App::$strings["Cancel GNU social Connection"] = "";
App::$strings["Currently connected to: "] = "";
App::$strings["<strong>Note</strong>: Due your privacy settings (<em>Hide your profile details from unknown viewers?</em>) the link potentially included in public postings relayed to GNU social will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "";
App::$strings["Allow posting to GNU social"] = "";
App::$strings["If enabled your public postings can be posted to the associated GNU-social account"] = "";
App::$strings["Post to GNU social by default"] = "";
App::$strings["If enabled your public postings will be posted to the associated GNU-social account by default"] = "";
App::$strings["Clear OAuth configuration"] = "";
App::$strings["GNU social Post Settings"] = "";
App::$strings["API URL"] = "";
App::$strings["Application name"] = "";
App::$strings["QR code"] = "";
App::$strings["QR Generator"] = "";
App::$strings["Enter some text"] = "";
App::$strings["Invalid game."] = "";
App::$strings["You are not a player in this game."] = "";
App::$strings["You must be a local channel to create a game."] = "";
App::$strings["You must select one opponent that is not yourself."] = "";
App::$strings["Random color chosen."] = "";
App::$strings["Error creating new game."] = "";
App::$strings["Requested channel is not available."] = "Il canale che cerchi non è disponibile.";
App::$strings["You must select a local channel /chess/channelname"] = "";
App::$strings["Enable notifications"] = "";
App::$strings["Post to Twitter"] = "";
App::$strings["Twitter settings updated."] = "";
App::$strings["No consumer key pair for Twitter found. Please contact your site administrator."] = "";
App::$strings["At this Hubzilla instance the Twitter plugin was enabled but you have not yet connected your account to your Twitter account. To do so click the button below to get a PIN from Twitter which you have to copy into the input box below and submit the form. Only your <strong>public</strong> posts will be posted to Twitter."] = "";
App::$strings["Log in with Twitter"] = "";
App::$strings["Copy the PIN from Twitter here"] = "";
App::$strings["<strong>Note:</strong> Due your privacy settings (<em>Hide your profile details from unknown viewers?</em>) the link potentially included in public postings relayed to Twitter will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "";
App::$strings["Allow posting to Twitter"] = "";
App::$strings["If enabled your public postings can be posted to the associated Twitter account"] = "";
App::$strings["Twitter post length"] = "";
App::$strings["Maximum tweet length"] = "";
App::$strings["Send public postings to Twitter by default"] = "";
App::$strings["If enabled your public postings will be posted to the associated Twitter account by default"] = "";
App::$strings["Twitter Post Settings"] = "";
App::$strings["Deactivate the feature"] = "";
App::$strings["Hide the button and show the smilies directly."] = "";
App::$strings["Smileybutton Settings"] = "";
App::$strings["This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> analytics tool."] = "";
App::$strings["If you do not want that your visits are logged this way you <a href='%s'>can set a cookie to prevent Piwik from tracking further visits of the site</a> (opt-out)."] = "";
App::$strings["Piwik Base URL"] = "";
App::$strings["Absolute path to your Piwik installation. (without protocol (http/s), with trailing slash)"] = "";
App::$strings["Site ID"] = "";
App::$strings["Show opt-out cookie link?"] = "";
App::$strings["Asynchronous tracking"] = "";
App::$strings["Enable frontend JavaScript error tracking"] = "";
App::$strings["This feature requires Piwik >= 2.2.0"] = "";
App::$strings["Edit your profile and change settings."] = "";
App::$strings["Click here to see activity from your connections."] = "";
App::$strings["Click here to see your channel home."] = "";
App::$strings["You can access your private messages from here."] = "";
App::$strings["Create new events here."] = "";
App::$strings["You can accept new connections and change permissions for existing ones here. You can also e.g. create groups of contacts."] = "";
App::$strings["System notifications will arrive here"] = "";
App::$strings["Search for content and users"] = "";
App::$strings["Browse for new contacts"] = "";
App::$strings["Launch installed apps"] = "";
App::$strings["Looking for help? Click here."] = "";
App::$strings["New events have occurred in your network. Click here to see what has happened!"] = "";
App::$strings["You have received a new private message. Click here to see from who!"] = "Hai ricevuto un nuovo messaggio privato. Clicca qui per sapere da chi!";
App::$strings["There are events this week. Click here too see which!"] = "";
App::$strings["You have received a new introduction. Click here to see who!"] = "Hai ricevuto una nuova richiesta di amicizia. Clicca qui per sapere da chi!";
App::$strings["There is a new system notification. Click here to see what has happened!"] = "";
App::$strings["Click here to share text, images, videos and sound."] = "";
App::$strings["You can write an optional title for your update (good for long posts)."] = "";
App::$strings["Entering some categories here makes it easier to find your post later."] = "";
App::$strings["Share photos, links, location, etc."] = "";
App::$strings["Only want to share content for a while? Make it expire at a certain date."] = "";
App::$strings["You can password protect content."] = "";
App::$strings["Choose who you share with."] = "";
App::$strings["Click here when you are done."] = "";
App::$strings["Adjust from which channels posts should be displayed."] = "";
App::$strings["Only show posts from channels in the specified privacy group."] = "";
App::$strings["Easily find posts containing tags (keywords preceded by the \"#\" symbol)."] = "";
App::$strings["Easily find posts in given category."] = "";
App::$strings["Easily find posts by date."] = "";
App::$strings["Suggested users who have volounteered to be shown as suggestions, and who we think you might find interesting."] = "";
App::$strings["Here you see channels you have connected to."] = "";
App::$strings["Save your search so you can repeat it at a later date."] = "";
App::$strings["If you see this icon you can be sure that the sender is who it say it is. It is normal that it is not always possible to verify the sender, so the icon will be missing sometimes. There is usually no need to worry about that."] = "";
App::$strings["Danger! It seems someone tried to forge a message! This message is not necessarily from who it says it is from!"] = "";
App::$strings["Welcome to Hubzilla! Would you like to see a tour of the UI?</p> <p>You can pause it at any time and continue where you left off by reloading the page, or navigting to another page.</p><p>You can also advance by pressing the return key"] = "Benvenuto su Hubzilla! Vorresti vedere una panoramica sulla UI? </p><p> Puoi metterla in pausa in qualsiasi momento e continuare da dove hai interrorro ricaricando la pagina, o spostandoti su un'altra pagina. </p><p>Puoi anche andare avanti premendo il tasto invio";
App::$strings["Extended Identity Sharing"] = "";
App::$strings["Share your identity with all websites on the internet. When disabled, identity is only shared with \$Projectname sites."] = "";
App::$strings["Three Dimensional Tic-Tac-Toe"] = "";
App::$strings["3D Tic-Tac-Toe"] = "";
App::$strings["New game"] = "";
App::$strings["New game with handicap"] = "";
App::$strings["Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. "] = "";
App::$strings["In this case there are three levels. You win by getting three in a row on any level, as well as up, down, and diagonally across the different levels."] = "";
App::$strings["The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage."] = "";
App::$strings["You go first..."] = "";
App::$strings["I'm going first this time..."] = "";
App::$strings["You won!"] = "";
App::$strings["\"Cat\" game!"] = "";
App::$strings["I won!"] = "";
App::$strings["Message to display on every page on this server"] = "";
App::$strings["Pageheader Settings"] = "";
App::$strings["pageheader Settings saved."] = "";
App::$strings["Only authenticate automatically to sites of your friends"] = "";
App::$strings["By default you are automatically authenticated anywhere in the network"] = "";
App::$strings["Authchoose Settings"] = "";
App::$strings["Atuhchoose Settings updated."] = "";
App::$strings["lonely"] = "";
App::$strings["drunk"] = "";
App::$strings["horny"] = "";
App::$strings["stoned"] = "";
App::$strings["fucked up"] = "";
App::$strings["clusterfucked"] = "";
App::$strings["crazy"] = "";
App::$strings["hurt"] = "";
App::$strings["sleepy"] = "";
App::$strings["grumpy"] = "";
App::$strings["high"] = "";
App::$strings["semi-conscious"] = "";
App::$strings["in love"] = "";
App::$strings["in lust"] = "";
App::$strings["naked"] = "";
App::$strings["stinky"] = "";
App::$strings["sweaty"] = "";
App::$strings["bleeding out"] = "";
App::$strings["victorious"] = "";
App::$strings["defeated"] = "";
App::$strings["envious"] = "";
App::$strings["jealous"] = "";
App::$strings["XMPP settings updated."] = "";
App::$strings["Enable Chat"] = "";
App::$strings["Individual credentials"] = "";
App::$strings["Jabber BOSH server"] = "";
App::$strings["XMPP Settings"] = "";
App::$strings["Jabber BOSH host"] = "";
App::$strings["Use central userbase"] = "";
App::$strings["If enabled, members will automatically login to an ejabberd server that has to be installed on this machine with synchronized credentials via the \"auth_ejabberd.php\" script."] = "";
App::$strings["Who likes me?"] = "Chi mi ha messo un mi piace?";
App::$strings["You are now authenticated to pumpio."] = "";
App::$strings["return to the featured settings page"] = "";
App::$strings["Post to Pump.io"] = "";
App::$strings["Pump.io servername"] = "";
App::$strings["Without \"http://\" or \"https://\""] = "";
App::$strings["Pump.io username"] = "";
App::$strings["Without the servername"] = "";
App::$strings["You are not authenticated to pumpio"] = "";
App::$strings["(Re-)Authenticate your pump.io connection"] = "";
App::$strings["Enable pump.io Post Plugin"] = "";
App::$strings["Post to pump.io by default"] = "";
App::$strings["Should posts be public"] = "";
App::$strings["Mirror all public posts"] = "";
App::$strings["Pump.io Post Settings"] = "";
App::$strings["PumpIO Settings saved."] = "";
App::$strings["An account has been created for you."] = "";
App::$strings["Authentication successful but rejected: account creation is disabled."] = "";
App::$strings["__ctx:opensearch__ Search %1\$s (%2\$s)"] = "Cerca %1\$s (%2\$s)";
App::$strings["__ctx:opensearch__ \$Projectname"] = "\$Projectname";
App::$strings["Search \$Projectname"] = "";
App::$strings["Redmatrix File Storage Import"] = "";
App::$strings["This will import all your Redmatrix cloud files to this channel."] = "";
App::$strings["file"] = "";
App::$strings["Send email to all members"] = "";
App::$strings["%1\$d of %2\$d messages sent."] = "";
App::$strings["Send email to all hub members."] = "";
App::$strings["Sender Email address"] = "";
App::$strings["Test mode (only send to hub administrator)"] = "";
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["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["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/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["likes %1\$s's %2\$s"] = "ha messo mi piace al %2\$s di %1\$s";
App::$strings["doesn't like %1\$s's %2\$s"] = "ha messo non mi piace al %2\$s di %1\$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["poked"] = "ha mandato un poke";
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["View in context"] = "Vedi nel contesto";
App::$strings["remove"] = "rimuovi";
App::$strings["Loading..."] = "Caricamento in corso...";
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["%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["Set your location"] = "La tua località";
App::$strings["Clear browser location"] = "Rimuovi la località data dal browser";
App::$strings["Tag term:"] = "Tag:";
App::$strings["Where are you right now?"] = "Dove sei ora?";
App::$strings["Choose a different album..."] = "Scegli un altro album...";
App::$strings["Comments enabled"] = "Commenti abilitati";
App::$strings["Comments disabled"] = "Commenti disabilitati";
App::$strings["Page link name"] = "Nome del link alla pagina";
App::$strings["Post as"] = "Pubblica come ";
App::$strings["Toggle voting"] = "Abilita/disabilita il voto";
App::$strings["Disable comments"] = "Disabilita i commenti";
App::$strings["Toggle comments"] = "Abilita/disabilita i commenti";
App::$strings["Categories (optional, comma-separated list)"] = "Categorie (facoltative, lista separata da virgole)";
App::$strings["Other networks and post services"] = "Invio ad altre reti o a siti esterni";
App::$strings["Set publish date"] = "Data di uscita programmata";
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["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["Status Messages and Posts"] = "Post e messaggi di stato";
App::$strings["Profile Details"] = "Dettagli del profilo";
App::$strings["Photo Albums"] = "Album foto";
App::$strings["Files and Storage"] = "Archivio file";
App::$strings["Bookmarks"] = "Segnalibri";
App::$strings["Saved Bookmarks"] = "Segnalibri salvati";
App::$strings["View Cards"] = "";
App::$strings["articles"] = "";
App::$strings["View Articles"] = "";
App::$strings["View Webpages"] = "";
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["Directory Options"] = "Visibilità negli elenchi pubblici";
App::$strings["Safe Mode"] = "Modalità SafeSearch";
App::$strings["Public Forums Only"] = "Solo forum pubblici";
App::$strings["This Website Only"] = "Solo in questo sito";
App::$strings["%1\$s's bookmarks"] = "I segnalibri di %1\$s";
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["Cloned channel not found. Import failed."] = "Impossibile trovare il canale clonato. L'importazione è fallita.";
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["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["Monday"] = "lunedì";
App::$strings["Tuesday"] = "martedì";
App::$strings["Wednesday"] = "mercoledì";
App::$strings["Thursday"] = "giovedì";
App::$strings["Friday"] = "venerdì";
App::$strings["Saturday"] = "sabato";
App::$strings["Sunday"] = "domenica";
App::$strings["January"] = "gennaio";
App::$strings["February"] = "febbraio";
App::$strings["March"] = "marzo";
App::$strings["April"] = "aprile";
App::$strings["May"] = "Mag";
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["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["Download binary/encrypted content"] = "";
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["HTML"] = "";
App::$strings["Comanche Layout"] = "";
App::$strings["PHP"] = "";
App::$strings["Page content type"] = "Tipo di contenuto della pagina";
App::$strings["activity"] = "l'attività";
App::$strings["a-z, 0-9, -, and _ only"] = "";
App::$strings["Design Tools"] = "Strumenti di design";
App::$strings["Pages"] = "Pagine";
App::$strings["Import website..."] = "Importazione sito web...";
App::$strings["Select folder to import"] = "Scegli la cartella da importare";
App::$strings["Import from a zipped folder:"] = "Importa da un file zip:";
App::$strings["Import from cloud files:"] = "Importa da un file su cloud:";
App::$strings["/cloud/channel/path/to/folder"] = "/cloud/channel/posizione/della/cartella";
App::$strings["Enter path to website files"] = "Inserisci la posizione dei file del sito web";
App::$strings["Select folder"] = "Scegli la cartella";
App::$strings["Export website..."] = "Esporta il sito web...";
App::$strings["Export to a zip file"] = "Esporta come file zip";
App::$strings["website.zip"] = "sitoweb.zip";
App::$strings["Enter a name for the zip file."] = "Scegli il nome del file zip.";
App::$strings["Export to cloud files"] = "Esporta nell'archivio cloud";
App::$strings["/path/to/export/folder"] = "/percorso/alla/cartella";
App::$strings["Enter a path to a cloud files destination."] = "Scegli la posizione su una cartella cloud.";
App::$strings["Specify folder"] = "Scegli la cartella";
App::$strings["%d invitation available"] = array(
	0 => "%d invito disponibile",
	1 => "%d inviti disponibili",
);
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["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["Common Connections"] = "";
App::$strings["View all %d common connections"] = "";
App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s ha scritto %2\$s %3\$s";
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["Remote channel or protocol unavailable."] = "";
App::$strings["Channel discovery failed."] = "La ricerca del canale non ha avuto successo.";
App::$strings["Protocol disabled."] = "Protocollo disabilitato.";
App::$strings["Cannot connect to yourself."] = "Non puoi connetterti a te stesso.";
App::$strings["Delete this item?"] = "Eliminare questo elemento?";
App::$strings["%s show less"] = "%s riduci";
App::$strings["%s expand"] = "%s mostra tutto";
App::$strings["%s collapse"] = "%s minimizza";
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["Describe (optional)"] = "Descrizione (facoltativa)";
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["timeago.prefixAgo"] = "timeago.prefixAgo";
App::$strings["timeago.prefixFromNow"] = "timeago.prefixFromNow";
App::$strings["timeago.suffixAgo"] = "";
App::$strings["timeago.suffixFromNow"] = "";
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["__ctx:long__ May"] = "maggio";
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["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["Unable to determine sender."] = "Impossibile determinare il mittente.";
App::$strings["No recipient provided."] = "Devi scegliere un destinatario.";
App::$strings["[no subject]"] = "[nessun titolo]";
App::$strings["Stored post could not be verified."] = "Non è stato possibile verificare il post.";
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["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["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["(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["Privacy group is empty."] = "Gruppo di canali vuoto.";
App::$strings["Privacy group: %s"] = "Gruppo di canali: %s";
App::$strings["Connection not found."] = "Contatto non trovato.";
App::$strings["profile photo"] = "foto del profilo";
App::$strings["[Edited %s]"] = "";
App::$strings["__ctx:edit_activity__ Post"] = "";
App::$strings["__ctx:edit_activity__ Comment"] = "";
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["Unable to retrieve created identity"] = "Impossibile caricare l'identità creata";
App::$strings["Default Profile"] = "Profilo predefinito";
App::$strings["Unable to retrieve modified identity"] = "";
App::$strings["Create New Profile"] = "Crea un nuovo profilo";
App::$strings["Visible to everybody"] = "Visibile a tutti";
App::$strings["Gender:"] = "Sesso:";
App::$strings["Homepage:"] = "Home page:";
App::$strings["Online Now"] = "Online adesso";
App::$strings["Change your profile photo"] = "";
App::$strings["Trans"] = "";
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["for %1\$d %2\$s"] = "per %1\$d %2\$s";
App::$strings["Sexual Preference:"] = "Preferenze sessuali:";
App::$strings["Tags:"] = "Tag:";
App::$strings["Political Views:"] = "Orientamento politico:";
App::$strings["Religion:"] = "Religione:";
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["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i";
App::$strings["Starts:"] = "Inizio:";
App::$strings["Finishes:"] = "Fine:";
App::$strings["This event has been added to your calendar."] = "Questo evento è stato aggiunto al tuo calendario";
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["Home, Voice"] = "";
App::$strings["Home, Fax"] = "";
App::$strings["Work, Voice"] = "";
App::$strings["Work, Fax"] = "";
App::$strings["view full size"] = "guarda nelle dimensioni reali";
App::$strings["Friendica"] = "Friendica";
App::$strings["OStatus"] = "OStatus";
App::$strings["GNU-Social"] = "GNU-Social";
App::$strings["RSS/Atom"] = "RSS/Atom";
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["Select an alternate language"] = "Seleziona una lingua diversa";
App::$strings["Who can see this?"] = "Chi può vederlo?";
App::$strings["Custom selection"] = "Selezione personalizzata";
App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Scegli \"Mostra\" per permettere la visione. \"Non mostrare\" ha la precedenza e limita l'effetto di \"Mostra\".";
App::$strings["Show"] = "Mostra";
App::$strings["Don't show"] = "Non mostrare";
App::$strings["Post permissions %s cannot be changed %s after a post is shared.</br />These permissions set who is allowed to view the post."] = "I permessi del post %s non possono essere cambiati %s dopo che un post è stato condiviso.</br />Questi permessi definiscono chi ha diritto di vedere il post.";
App::$strings["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'";
App::$strings["Image/photo"] = "Immagine";
App::$strings["Encrypted content"] = "Contenuto cifrato";
App::$strings["Install %1\$s element %2\$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["card"] = "";
App::$strings["article"] = "";
App::$strings["Click to open/close"] = "Clicca per aprire/chiudere";
App::$strings["spoiler"] = "spoiler";
App::$strings["View article"] = "";
App::$strings["View summary"] = "";
App::$strings["$1 wrote:"] = "$1 ha scritto:";
App::$strings[" by "] = "di";
App::$strings[" on "] = "su";
App::$strings["Embedded content"] = "Contenuti incorporati";
App::$strings["Embedding disabled"] = "Disabilita la creazione di contenuti incorporati";
App::$strings["OpenWebAuth: %1\$s welcomes %2\$s"] = "";
App::$strings["General Features"] = "Funzionalità di base";
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["Provide a wiki for your channel"] = "Fornisce una wiki per il tuo canale";
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["Create personal planning cards"] = "";
App::$strings["Create interactive articles"] = "";
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["Access Controlled Chatrooms"] = "Chat ad accesso riservato";
App::$strings["Provide chatrooms and chat services with access control."] = "Il servizio di chat con accesso riservato.";
App::$strings["Smart Birthdays"] = "Compleanni intelligenti";
App::$strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = "I compleanni saranno segnalati in base al fuso orario, utile se hai amici sparsi per il mondo.";
App::$strings["Event Timezone Selection"] = "";
App::$strings["Allow event creation in timezones other than your own."] = "";
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["Advanced Directory Search"] = "Ricerca avanzata sugli elenchi pubblici";
App::$strings["Allows creation of complex directory search queries"] = "Permette la creazione di ricerche complesse negli elenchi";
App::$strings["Advanced Theme and Layout Settings"] = "Impostazioni avanzate del tema e dei layout";
App::$strings["Allows fine tuning of themes and page layouts"] = "Permette una personalizzazione accurata del tema e dei layout";
App::$strings["Access Control and Permissions"] = "";
App::$strings["Privacy Groups"] = "Gruppi di canali";
App::$strings["Enable management and selection of privacy groups"] = "Abilita i gruppi di canali";
App::$strings["Multiple Profiles"] = "Profili multipli";
App::$strings["Ability to create multiple profiles"] = "Abilitazione a creare profili multipli";
App::$strings["Provide alternate connection permission roles."] = "";
App::$strings["OAuth Clients"] = "";
App::$strings["Manage authenticatication tokens for mobile and remote apps."] = "";
App::$strings["Access Tokens"] = "";
App::$strings["Create access tokens so that non-members can access private content."] = "";
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["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["Disable Comments"] = "Disabilita i commenti";
App::$strings["Provide the option to disable comments for a post"] = "Permetti di disabilitare i commenti";
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["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["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["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["Show friend and connection suggestions"] = "Mostra suggerimenti di contatti e amici";
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["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["Emoji Reactions"] = "Risposte emoji";
App::$strings["Add emoji reaction ability to posts"] = "Permetti di rispondere ai post con degli emoji";
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["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["likes"] = "gli piace";
App::$strings["dislikes"] = "non gli piace";
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["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["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["Birthday"] = "Compleanno";
App::$strings["Age: "] = "Età:";
App::$strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-GG oppure MM-GG";
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["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["Manage Your Channels"] = "Gestisci i tuoi canali";
App::$strings["Account/Channel Settings"] = "Impostazioni dell'account e del canale";
App::$strings["End this session"] = "Chiudi questa sessione";
App::$strings["Your profile page"] = "Il tuo profilo";
App::$strings["Manage/Edit profiles"] = "Gestisci i tuoi profili";
App::$strings["Sign in"] = "Accedi";
App::$strings["Take me home"] = "";
App::$strings["Log me out of this site"] = "";
App::$strings["Create an account"] = "Crea un account";
App::$strings["Help and documentation"] = "Guida e documentazione";
App::$strings["Search site @name, #tag, ?docs, content"] = "Cerca nel sito per @nome, #tag, ?guida o per contenuto";
App::$strings["Site Setup and Configuration"] = "Installazione e configurazione del sito";
App::$strings["@name, #tag, ?doc, content"] = "@nome, #tag, ?guida, contenuto";
App::$strings["Please wait..."] = "Attendere...";
App::$strings["Add Apps"] = "Aggiungi App";
App::$strings["Arrange Apps"] = "Ordina le App";
App::$strings["Toggle System Apps"] = "Attiva/disattiva Apps";
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["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["Upload New Photos"] = "Carica nuove foto";
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["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["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["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["Logged out."] = "Uscita effettuata.";
App::$strings["Email validation is incomplete. Please check your email."] = "Validazione via mail non completa. Per favore controlla la tua mail.";
App::$strings["Failed authentication"] = "Autenticazione fallita";
App::$strings["Help:"] = "Guida:";
App::$strings["Not Found"] = "Non disponibile";