Welcome to mirror list, hosted at ThFree Co, Russian Federation.

strings.xml « values-it « res « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0eabb913ecdc90dab88d28088116fa66410d741d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
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
<?xml version="1.0" encoding="utf-8"?>
<!-- Android Strings File -->
<!-- Generated by Twine 1.0.3 -->
<!-- Language: it -->
<resources>
	<!-- SECTION: Strings -->
	<!-- About button text (should be short) -->
	<string name="about">Informazioni</string>
	<!-- Button text (should be short) -->
	<string name="back">Indietro</string>
	<!-- Button text (should be short) -->
	<string name="cancel">Annulla</string>
	<!-- Button which interrupts country download -->
	<string name="cancel_download">Annulla il download</string>
	<!-- Button which deletes downloaded country -->
	<string name="delete">Cancella</string>
	<!-- Button to dismiss dialog forever -->
	<string name="do_not_ask_me_again">Non me lo chiedere di nuovo</string>
	<!-- Button "do not interrupt download" if user touched actively downloading country -->
	<string name="do_nothing">Continua</string>
	<string name="download_maps">Scarica le mappe</string>
	<!-- Settings/Downloader - Download confirmation button -->
	<string name="download_x_kb">Scarica %qu kB</string>
	<!-- Settings/Downloader - Download confirmation button -->
	<string name="download_x_mb">Scarica %qu MB</string>
	<!-- Settings/Downloader - info for country when download fails -->
	<string name="download_has_failed">Download fallito, tocca di nuovo per un altro tentativo</string>
	<!-- Settings/Downloader - info for downloaded country -->
	<string name="downloaded_x_y_touch_to_delete">Scaricato (%1$qu %2$s), tocca per annullare</string>
	<!-- Settings/Downloader - country info current download progress -->
	<string name="downloading_x_touch_to_cancel">Download di %qu%%, tocca per annullare</string>
	<!-- Settings/Downloader - info for country which started downloading -->
	<string name="downloading">In fase di download…</string>
	<string name="get_it_now">Prendila ora</string>
	<!-- Text to show occasionaly with a proposal to Like our program on Facebook -->
	<string name="share_on_facebook_text">Grazie per aver utilizzato MAPS.ME! Ti piace l’app? Dillo ai tuoi amici! Questo è il miglior segno di gratitudine.</string>
	<!-- Choose measurement on first launch alert - choose metric system button -->
	<string name="kilometres">Chilometri</string>
	<!-- Leave Review dialog - Review button -->
	<string name="leave_a_review">Lascia una recensione</string>
	<!-- View and button titles for accessibility -->
	<string name="maps">Mappe</string>
	<!-- View and button titles for accessibility -->
	<string name="downloader_maps">Mappe:</string>
	<!-- Settings/Downloader - info for country in the download queue -->
	<string name="marked_for_downloading">Contrassegnato per il download, tocca per cancellare</string>
	<!-- Choose measurement on first launch alert - choose imperial system button -->
	<string name="miles">Miglia</string>
	<!-- View and button titles for accessibility -->
	<string name="core_my_position">La mia posizione</string>
	<!-- Settings/Downloader - No free space dialog message -->
	<string name="free_disk_space_for_country_x">Cortesemente libera spazio sul tuo dispositivo prima per poter scaricare %s</string>
	<!-- Leave Review dialog - Not now button (remind me later) -->
	<string name="remind_me_later">Ricordamelo in seguito</string>
	<!-- Update maps later/Buy pro version later button text -->
	<string name="later">Più tardi</string>
	<!-- Don't show some dialog any more -->
	<string name="never">Mai</string>
	<!-- Leave Review dialog - Complain button (goes to support site) -->
	<string name="report_an_issue">Segnala un problema</string>
	<!-- View and button titles for accessibility -->
	<string name="search">Cerca</string>
	<!-- Search box placeholder text -->
	<string name="search_map">Ricerca Mappa</string>
	<!-- Settings/Downloader - info for not downloaded country -->
	<string name="touch_to_download">Tocca per scaricare</string>
	<!-- Settings/Downloader - 3G download warning dialog confirm button -->
	<string name="use_cellular_data">Sì</string>
	<!-- Settings/Downloader - No internet connection dialog message -->
	<string name="use_wifi_recommendation_text">Ti consigliamo di utilizzare il WiFi per scaricare mappe di grandi dimensioni</string>
	<!-- Choose measurement on first launch alert - title -->
	<string name="which_measurement_system">Quale sistema di misura preferisci?</string>
	<!-- Location services are disabled by user alert - message -->
	<string name="location_is_disabled_long_text">Attualmente hai disattivati tutti i servizi di locazione per questo dispositivo o applicazione. Cortesemente abilitali nelle Impostazioni.</string>
	<!-- Location Services are not available on the device alert - message -->
	<string name="device_doesnot_support_location_services">Il tuo dispositivo non supporta i servizi di localizzazione</string>
	<!-- View and button titles for accessibility -->
	<string name="zoom_to_country">Mostra sulla mappa</string>
	<!-- Message to display at the center of the screen when the country is added to the downloading queue -->
	<string name="country_status_added_to_queue">^\naggiunto alla coda di download</string>
	<!-- Message to display at the center of the screen when the country is downloading -->
	<string name="country_status_downloading">Sto scaricando\n^\n^</string>
	<!-- Button text for the button at the center of the screen when the country is not downloaded -->
	<string name="country_status_download">Scarica Map\n(^ ^)</string>
	<!-- Button text for the button at the center of the screen when the country is not downloaded and the size should not be shown -->
	<string name="country_status_download_without_size">Scarica Map</string>
	<!-- Button text for the button at the center of the screen when the country is not downloaded -->
	<string name="country_status_download_without_routing">Scarica mappa\nsenza percorsi (^ ^)</string>
	<!-- Message to display at the center of the screen when the country download has failed -->
	<string name="country_status_download_failed">Lo scaricamento è fallito</string>
	<!-- Button text for the button under the country_status_download_failed message -->
	<string name="try_again">Riprova</string>
	<string name="about_menu_title">Informazioni su MAPS.ME</string>
	<string name="downloading_touch_to_cancel">Download di %d%%, tocca per cancellare</string>
	<string name="downloaded_touch_to_delete">Scaricato (%s), tocca per cancellare</string>
	<string name="connection_settings">Impostazioni di connessione</string>
	<string name="download_mb_or_kb">Scarica %s</string>
	<string name="close">Chiudi</string>
	<string name="unsupported_phone">È necessaria una accelerazione hardware OpenGL. Purtroppo, il tuo dispositivo non è supportato.</string>
	<string name="download">Carica</string>
	<string name="external_storage_is_not_available">La scheda/USB/di memoria SD con le mappe scaricate non è disponibile</string>
	<string name="disconnect_usb_cable">Coortesemente scollega il cavo USB oppure inserisci la scheda di memoria per l\'usco dell\'app</string>
	<string name="not_enough_free_space_on_sdcard">Libera prima dello spazio sulla scheda Sd/ memoria USB per usare l\'app</string>
	<string name="not_enough_memory">Memoria insufficiente per lanciare l\'app</string>
	<string name="free_space_for_country">Libera %1$s sul dispositivo prima per poter scaricare %2$s</string>
	<string name="download_resources">Prima di iniziare è necessario scaricare la mappa generale del mondo sul tuo dispositivo.\nLa dimensione del download è di %s.</string>
	<string name="getting_position">Ottieni la posizione corrente</string>
	<string name="download_resources_continue">Vai alla mappa</string>
	<string name="downloading_country_can_proceed">Sto scaricando %s. Puoi ora\nprocedere con la mappa.</string>
	<string name="download_country_ask">Vuoi scaricare %s?</string>
	<string name="update_country_ask">Vuoi aggiornare %s?</string>
	<!-- REMOVE THIS STRING AFTER REFACTORING -->
	<string name="download_location_map_proposal">Puoi scaricare la mappa\ndella tua posizione corrente.</string>
	<!-- REMOVE THIS_STRING AFTER REFACTORING -->
	<string name="download_location_update_map_proposal">Puoi aggiornare la mappa\ndella tua posizione corrente.</string>
	<!-- REMOVE THIS STRING AFTER REFACTORING -->
	<string name="download_location_map_up_to_date">La mappa della tua attuale\nposizione (%s) è aggiornata</string>
	<!-- REMOVE THIS STRING AFTER REFACTORING -->
	<string name="pause">Pausa</string>
	<!-- REMOVE THIS STRING AFTER REFACTORING -->
	<string name="continue_download">Continua</string>
	<string name="downloaded_touch_to_update">Scaricato (%s), tocca per aggiornare o cancellare</string>
	<string name="update_mb_or_kb">Aggiorna %s</string>
	<!-- Show popup notification when we have downloaded countries without search (from Lite version) -->
	<string name="search_update_maps">Hai bisogno di mappe aggiornate per la funzione di ricerca:</string>
	<!-- Show popup notification on app start when we have out-of-date maps -->
	<string name="advise_update_maps">Aggiornamento disponibile per queste mappe:</string>
	<!-- Show popup notification in Pro version that Lite can be deleted -->
	<string name="suggest_uninstall_lite">Non hai più bisogno di MAPS.ME Lite, quindi puoi disinstallarlo.</string>
	<!-- Show popup notification on top of the map when country was downloaded. -->
	<string name="download_country_success">Scaricato %s con successo</string>
	<!-- Show popup notification on top of the map when country download has failed. -->
	<string name="download_country_failed">Il trasferimento di %s non è riuscito</string>
	<!-- Add New Bookmark Set dialog title -->
	<string name="add_new_set">Aggiungi un nuovo Set</string>
	<!-- Place Page - Add To Bookmarks button -->
	<string name="add_to_bookmarks">Aggiungi al Segnalibri</string>
	<!-- Bookmark Color dialog title -->
	<string name="bookmark_color">Colore del Segnalibro</string>
	<!-- Add Bookmark Set dialog - hint when set name is empty -->
	<string name="bookmark_set_name">Seleziona un nome del segnalibro</string>
	<!-- Bookmark Sets dialog title -->
	<string name="bookmark_sets">Seleziona un segnalibro</string>
	<!-- Bookmarks - dialog title -->
	<string name="bookmarks">Segnalibri</string>
	<!-- Add bookmark dialog - bookmark color -->
	<string name="color">Colore</string>
	<!-- Default bookmarks set name -->
	<string name="core_my_places">I miei luoghi</string>
	<!-- Editor title above street and house number -->
	<string name="address">Indirizzo</string>
	<!-- Place Page - Remove Pin button -->
	<string name="remove_pin">Rimuovi il Pin</string>
	<!-- Add bookmark dialog - bookmark set, Bookmarks dialog - Bookmark set cell -->
	<string name="set">Seleziona</string>
	<!-- Text hint in Bookmarks dialog when no any bookmarks are added -->
	<string name="bookmarks_usage_hint">Non hai ancora nessun segnalibro.\nTocca qualsiasi luogo sulla cartina per aggiungere un segnalibro.\nPossono essere anche importati Preferiti da altre fonti e visualizzate nell\'app MAPS.ME. Apri il file KML/KMZ con i pin salvati da una casella di posta, Dropbox o un link web.</string>
	<!-- Text hint in Bookmarks dialog when at least one bookmark is added -->
	<string name="bookmarks_usage_hint_import_only">Possono essere anche importati Preferiti da altre fonti e visualizzate nell\'app MAPS.ME. Apri il file KML/KMZ con i pin salvati da una casella di posta, Dropbox o un link web.</string>
	<!-- Settings button in system menu -->
	<string name="settings">Impostazioni</string>
	<!-- Header of settings activity where user defines storage path -->
	<string name="maps_storage">Salva mappe in</string>
	<!-- Detailed description of Maps Storage settings button -->
	<string name="maps_storage_summary">Seleziona il luogo in cui le mappe devono essere scaricate</string>
	<!-- Question dialog for transferring maps from one storage to another -->
	<string name="move_maps">Vuoi spostare le mappe?</string>
	<!-- Ask to wait user several minutes (some long process in modal dialog). -->
	<string name="wait_several_minutes">Questo può richiedere diversi minuti.\ncortesemente attendi…</string>
	<!-- Show bookmarks from this category on a map or not -->
	<string name="visible">Visibile</string>
	<!-- Toast which is displayed when GPS has been deactivated -->
	<string name="gps_is_disabled_long_text">Il GPS è disabilitato. Cortesemente abilitalo nelle Impostazioni.</string>
	<!-- Measurement units title in settings activity -->
	<string name="measurement_units">Unità di misura</string>
	<!-- Detailed description of Measurement Units settings button -->
	<string name="measurement_units_summary">Scegli tra miglia e chilometri</string>
	<!-- Do search in all sources -->
	<string name="search_mode_all">Ovunque</string>
	<!-- Do search near my position only -->
	<string name="search_mode_nearme">Vicino a me</string>
	<!-- Do search in current viewport only -->
	<string name="search_mode_viewport">Nella schermata</string>
	<!-- Search category for cafes, bars, restaurants -->
	<string name="eat">Dove mangiare</string>
	<!-- Search category for grocery stores -->
	<string name="food">Alimentari</string>
	<!-- Search category -->
	<string name="transport">Transporto</string>
	<!-- Search category -->
	<string name="fuel">Stazione di rifornimento</string>
	<!-- Search category -->
	<string name="parking">Parcheggio</string>
	<!-- Search category for clothes/shoes/gifts/jewellery/sport shops -->
	<string name="shopping">Shopping</string>
	<!-- Search category -->
	<string name="hotel">Hôtel</string>
	<!-- Search category -->
	<string name="tourism">Turistico</string>
	<!-- Search category -->
	<string name="entertainment">Divertimento</string>
	<!-- Search category -->
	<string name="atm">Bancomat</string>
	<!-- Search category for nightclubs/bars -->
	<string name="nightlife">Vita notturna</string>
	<!-- Search category for water park/disneyland/playground/toys store -->
	<string name="children">Vacanze bambini</string>
	<!-- Search category -->
	<string name="bank">Banca</string>
	<!-- Search category -->
	<string name="pharmacy">Farmacia</string>
	<!-- Search category -->
	<string name="hospital">Ospedale</string>
	<!-- Search category -->
	<string name="toilet">Toilette</string>
	<!-- Search category -->
	<string name="post">Posta</string>
	<!-- Search category -->
	<string name="police">Polizia</string>
	<!-- String in search result list, when nothing found -->
	<string name="no_search_results_found">Nessun risultato trovato</string>
	<!-- Notes field in Bookmarks view -->
	<string name="description">Note</string>
	<!-- Button text -->
	<string name="share_by_email">Condividi via email</string>
	<!-- Email Subject when sharing bookmarks category -->
	<string name="share_bookmarks_email_subject">Il segnalibri MAPS.ME è stato condiviso con te</string>
	<!-- message title of loading file -->
	<string name="load_kmz_title">Caricamento segnalibri in corso</string>
	<!-- Kmz file successful loading -->
	<string name="load_kmz_successful">Segnalibri caricati con successo! Puoi trovare i segnalibri direttamente sulla mappa, oppure aprendo la schermata dedicata alla Gestione dei segnalibri.</string>
	<!-- Kml file loading failed -->
	<string name="load_kmz_failed">Caricamento dei segnalibri non riuscito. Il file potrebbe essere corrotto o difettoso.</string>
	<!-- resource for context menu -->
	<string name="edit">Copia link</string>
	<!-- Warning message when doing search around current position -->
	<string name="unknown_current_position">La tua posizione non è stata ancora stabilita</string>
	<!-- Warning message when location country isn't downloaded during search (see also download_location_map_proposal). -->
	<string name="download_location_country">Scarica il paese della tua posizione attuale (%s)</string>
	<!-- Warning message when viewport country isn't downloaded during search -->
	<string name="download_viewport_country_to_search">Scarica il paese che stai cercando (%s)</string>
	<!-- Alert message that we can't run Map Storage settings due to some reasons. -->
	<string name="cant_change_this_setting">Siamo spiacenti, ma le impostazioni di archiviazione delle mappe sono disabilitate.</string>
	<!-- Alert message that downloading is in progress. -->
	<string name="downloading_is_active">Il download della nazione è in corso.</string>
	<!-- Message that will be shown in alert view, when we ask user to leave review on App Store -->
	<string name="appStore_message">Confidiamo nel fatto che sia piacevole utilizzare MAPS.ME! In caso positivo, ti preghiamo di valutare o recensire l\'app all\'interno dell\'app store. Ti porterà via meno di un minuto e la cosa ci aiuterebbe tantissimo. Grazie per il tuo sostegno!</string>
	<!-- No, thanks -->
	<string name="no_thanks">No, grazie</string>
	<!-- Share one specific bookmark using SMS, %1$@ contains ge0:// and %2$@ http://ge0.me link. @NOTE non-ascii symbols in the link will make 70 bytes sms instead of 140 -->
	<string name="bookmark_share_sms">Vedi pin sulla mappa. Apri %1$s o %2$s</string>
	<!-- Share my position using SMS, %1$@ contains ge0:// and %2$@ http://ge0.me link WITHOUT NAME. @NOTE non-ascii symbols in the link will make 70 bytes sms instead of 140 -->
	<string name="my_position_share_sms">Vedi dove sono ora. Apri %1$s o %2$s</string>
	<!-- Subject for emailed bookmark -->
	<string name="bookmark_share_email_subject">Dai uno sguardo al mio pin sulla mappa di MAPS.ME</string>
	<!-- Share one specific bookmark using EMail, %1$@ is bookmark's name, %2$@ is ge0:// link and %3$@ http://ge0.me -->
	<string name="bookmark_share_email">Ciao,\n\nHo segnato %1$s su MAPS.ME, le mappe del mondo offline. Clicca su questo link %2$s oppure su questo %3$s per vedere il posto sulla mappa.\n\nGrazie.</string>
	<!-- Subject for emailed position -->
	<string name="my_position_share_email_subject">Guarda dove mi trovo attualmente sulla mappa MAPS.ME</string>
	<!-- Share my position using EMail, %1$@ is ge0:// and %2$@ is http://ge0.me link WITHOUT NAME -->
	<string name="my_position_share_email">Ciao,\n\nSono qui adesso: %1$s. Clicca su questo link %2$s oppure su questo %3$s per vedere il posto sulla mappa.\n\nGrazie.</string>
	<!-- Android share by Message/SMS button text (including SMS) -->
	<string name="share_by_message">Condividi con un messaggio</string>
	<!-- Share button text which opens menu with more buttons, like Message, EMail, Facebook etc. -->
	<string name="share">Condividi</string>
	<!-- iOS share by Message button text (including SMS) -->
	<string name="message">Messaggio</string>
	<!-- Share by email button text, also used in editor. -->
	<string name="email">Email</string>
	<!-- Copy Link -->
	<string name="copy_link">Copia link</string>
	<!-- Text for the button that returns to caller application -->
	<string name="more_info">Mostra più informazioni</string>
	<!-- Text for message when used successfully copied something -->
	<string name="copied_to_clipboard">Copiato sugli Appunti: %1$s</string>
	<!-- Setting label for statistics turn on/off -->
	<string name="allow_statistics">Invia statistiche</string>
	<!-- place preview title -->
	<string name="info">Informazioni</string>
	<!-- Used for bookmark editing -->
	<string name="done">Fine</string>
	<!-- Summary for preferences in MWM -->
	<string name="yopme_pref_summary">Selezionate le impostazioni Sfondo</string>
	<!-- Title for yopme preferences in MWM -->
	<string name="yopme_pref_title">Impostazioni Sfondo</string>
	<!-- Hint for upper-right icon p2b -->
	<string name="show_on_backscreen">Mostra Sfondo</string>
	<!-- Prints version number in About dialog -->
	<string name="version">Versione: %s</string>
	<!-- Confirmation in downloading countries dialog -->
	<string name="are_you_sure">Sei sicuro di voler continuare?</string>
	<!-- Title for tracks category in bookmarks manager -->
	<string name="tracks_title">Tracciati</string>
	<!-- Length of track in cell that describes route -->
	<string name="length">Lunghezza</string>
	<string name="share_my_location">Condividi la mia location</string>
	<string name="menu_search">Cerca</string>
	<!-- Settings screen: "Map" category title -->
	<string name="prefs_group_map">Mappa</string>
	<!-- Settings screen: "Miscellaneous" category title -->
	<string name="prefs_group_misc">Miscellanea</string>
	<string name="prefs_group_route">Navigazione</string>
	<string name="pref_zoom_title">Pulsanti per lo zoom</string>
	<string name="pref_zoom_summary">Condividi la mia location</string>
	<!-- Settings «Map» category: «Night style» title -->
	<string name="pref_map_style_title">Modalità notturna</string>
	<!-- «Map style» entry value -->
	<string name="pref_map_style_default">Spento</string>
	<!-- «Map style» entry value -->
	<string name="pref_map_style_night">Acceso</string>
	<!-- «Map style» entry value -->
	<string name="pref_map_style_auto">Auto</string>
	<!-- Settings «Map» category: «Perspective view» title -->
	<string name="pref_map_3d_title">Vista in prospettiva</string>
	<!-- Settings «Map» category: «3D buildings» title -->
	<string name="pref_map_3d_buildings_title">Edifici in 3D</string>
	<!-- Settings «Map» category: «3D buildings» summary -->
	<string name="pref_map_3d_buildings_subtitle">Diminuisce la durata della batteria</string>
	<!-- Settings «Route» category: «Tts enabled» title -->
	<string name="pref_tts_enable_title">Istruzioni vocali</string>
	<!-- Settings «Route» category: «Tts language» title -->
	<string name="pref_tts_language_title">Lingua per la voce</string>
	<!-- Settings «Route» category: «Tts unavailable» subtitle -->
	<string name="pref_tts_unavailable">Non disponibile</string>
	<!-- Title for "Other" section in TTS settings. -->
	<string name="pref_tts_other_section_title">Altro</string>
	<string name="pref_tts_how_to_set_up_voice">Come impostare la voce</string>
	<!-- Settings «Map» category: «Record track» title -->
	<string name="pref_track_record_title">Percorso recente</string>
	<string name="pref_map_auto_zoom">Zoom automatico</string>
	<string name="duration_disabled">Disabilitato</string>
	<string name="duration_1_hour">1 ora</string>
	<string name="duration_2_hours">2 ore</string>
	<string name="duration_6_hours">6 ore</string>
	<string name="duration_12_hours">12 ore</string>
	<string name="duration_1_day">1 giorno</string>
	<string name="recent_track_help_text">Consente di registrare il tratto percorso in un determinato periodo di tempo e vedere lo stesso sulla mappa. Nota: l\'attivazione di questa funzione incrementa l\'uso della batteria. Il tratto viene rimosso automaticamente dalla mappa allo scadere dell\'intervallo di tempo.</string>
	<string name="pref_track_ios_caption">Il percorso recente mostra il tragitto effettuato.</string>
	<string name="pref_track_ios_subcaption">Seleziona un intervallo temporale per la registrazione del percorso.</string>
	<string name="placepage_distance">Distanza</string>
	<string name="placepage_coordinates">Coordinate</string>
	<string name="placepage_unsorted">Non classificato</string>
	<string name="search_show_on_map">Visualizza sulla mappa</string>
	<!-- Used to warn user when fixing KitKat issue -->
	<string name="kitkat_migrate_ok">L\'archiviazione dei dati delle mappe è stata ottimizzata. Ti preghiamo di riavviare l\'app.\n\nLa cartella MapsWithMe nel canale della scheda SD non è più necessario ed è possibile eliminarla.</string>
	<!-- Used to warn user when fixing KitKat issue -->
	<string name="kitkat_migrate_failed">A causa di modifiche alla versione Android 4.4, abbiamo bisogno di ottimizzare l\'archiviazione delle mappe, ma non c\'è abbastanza spazio per copiarne i dati:\n\nTi preghiamo di liberare la memoria, altrimenti le mappe saranno disponibili in sola lettura.</string>
	<!-- Used to warn user when fixing KitKat issue -->
	<string name="bookmark_move_fail">Abbiamo bisogno di trasferire i tuoi preferiti nella memoria interna, ma non c\'è abbastanza spazio disponibile. Ti preghiamo di liberare la memoria, altrimenti i preferiti non saranno disponibili.</string>
	<!-- Used to warn user when fixing KitKat issue -->
	<string name="kitkat_optimization_in_progress">L\'archiviazione delle tue mappe è in fase di ottimizzazione. Ti preghiamo di attendere, il processo durerà alcuni minuti.</string>
	<!-- Used in More Apps menu -->
	<string name="free">Gratis</string>
	<!-- Used in More Apps menu -->
	<string name="buy">Acquista</string>
	<!-- 1st search button-like result -->
	<string name="search_on_map">Cerca sulla mappa</string>
	<!-- toast with an error -->
	<string name="no_route_found">Nessun percorso trovato</string>
	<!-- route title -->
	<string name="route">Linea</string>
	<!-- category title -->
	<string name="routes">Percorsi</string>
	<!-- text of notification -->
	<string name="download_map_notification">Scarica la mappa del luogo in cui ti trovi</string>
	<!-- text of notification -->
	<string name="pro_version_is_free_today">Versione completa di MAPS.ME è oggi gratis! Scaricala ora e dillo ai tuoi amici!</string>
	<!-- Dialog for transferring maps from lite to pro. -->
	<string name="move_lite_maps_to_pro">Stiamo trasferendo le tue mappe scaricate da MAPS.ME Lite a MAPS.ME. Potrebbe richiedere alcuni minuti.</string>
	<!-- Message to display when maps moved. -->
	<string name="move_lite_maps_to_pro_ok">Le mappe che hai scaricato sono state trasferite con successo a MAPS.ME.</string>
	<!-- Message to display when maps move failed. -->
	<string name="move_lite_maps_to_pro_failed">Non è stato possibile trasferire le tue mappe. Cancella MAPS.ME Lite e scarica le mappe di nuovo.</string>
	<!-- Text in menu -->
	<string name="settings_and_more">Impostazioni e Altro</string>
	<!-- Text in menu -->
	<string name="website">Sito web</string>
	<!-- Text in menu -->
	<string name="maps_me_community">Comunità MAPS.ME</string>
	<!-- Text in menu -->
	<string name="like_on_facebook">Dai Mi Piace su Facebook</string>
	<!-- Text in menu -->
	<string name="follow_on_twitter">Seguici su Twitter</string>
	<!-- Text in menu -->
	<string name="contact_us">Contattaci</string>
	<!-- Settings: Send feedback button and dialog title -->
	<string name="feedback">Feedback</string>
	<!-- Text in menu -->
	<string name="subscribe_to_news">Iscriviti alle nostre notizie</string>
	<!-- Text in menu -->
	<string name="rate_the_app">Vota l\'app</string>
	<!-- Text in menu -->
	<string name="help">Aiuto</string>
	<!-- Text in menu -->
	<string name="copyright">Copyright</string>
	<!-- Text in menu -->
	<string name="report_a_bug">Riporta un bug</string>
	<!-- Email subject -->
	<string name="subscribe_me_subject">Iscrivimi alla newsletter di MAPS.ME</string>
	<!-- Email body -->
	<string name="subscribe_me_body">Voglio essere tra i primi a sapere delle ultime novità aggiornamenti e promozioni. Potrò annullare l\'iscrizione in ogni momento.</string>
	<!-- About text -->
	<string name="about_text">MAPS.ME offre le più veloci mappe offline di tutte le città, di tutti i paesi del mondo. Viaggia con piena fiducia: ovunque ti trovi, MAPS.ME ti aiuta a localizzarti sulla mappa, trovare ristoranti, hotel, banche, distributori di benzina ecc.., e non richiede la connessione a internet.\n\nLavoriamo sempre su nuove funzionalità e ci piacerebbe sapere da te in cosa potremmo migliorare MAPS.ME. Se avessi problemi con l\'app, non esitare a contattarci a support\@maps.me. Rispondiamo ad ogni richiesta!\n\nTi piace MAPS.ME e vuoi sostenerci? Ci sono alcuni modi semplici e assolutamente gratuiti:\n\n- Invia una recensione al tuo App Market\n- Metti mi piace sulla nostra pagina di Facebook http://www.facebook.com/mapswithme\n- O semplicemente fai pubblicità a MAPS.ME con la tua mamma, i tuoi amici e colleghi :)\n\nGrazie per essere stato con noi. Apprezziamo molto il tuo supporto!\n\nP.S. Prendiamo i dati delle mappe da OpenStreetMap, un progetto di mappatura simile a Wikipedia, che permette agli utenti di creare e modificare le mappe. Se vedi che manca qualcosa o se c\'è qualcosa di sbagliato sulla mappa, puoi correggere le mappe direttamente su https://www.openstreetmap.org, e le modifiche appariranno nella prossima versione dell\'app MAPS.ME.</string>
	<!-- Alert text -->
	<string name="email_error_body">Il client email non è stato configurato. Si prega di configurarlo o di usare qualsiasi altro metodo per contattarci all\'indirizzo %s</string>
	<!-- Alert title -->
	<string name="email_error_title">Errore invio email</string>
	<!-- Settings item title -->
	<string name="pref_calibration_title">Calibrazione del compasso</string>
	<!-- Search category -->
	<string name="wifi">WiFi</string>
	<!-- Update map suggestion -->
	<string name="routing_map_outdated">Aggiorna la mappa per creare un itinerario.</string>
	<!-- Update maps suggestion -->
	<string name="routing_update_maps">La nuova versione di MAPS.ME ti permette di creare itinerari dalla tua posizione attuale a un punto di destinazione. Aggiorna le mappe per utilizzare questa funzione.</string>
	<!-- Update all button text -->
	<string name="downloader_update_all_button">Aggiorna tutte</string>
	<!-- Cancel all button text -->
	<string name="downloader_cancel_all">Annulla tutto</string>
	<!-- Downloaded maps category -->
	<string name="downloader_downloaded_subtitle">Scaricate</string>
	<!-- Downloaded maps category -->
	<string name="downloader_available_maps">Disponibile</string>
	<!-- Country queued for download -->
	<string name="downloader_queued">In coda</string>
	<string name="downloader_near_me_subtitle">Vicino a me</string>
	<string name="downloader_status_maps">Mappe</string>
	<string name="downloader_download_all_button">Scarica tutte</string>
	<string name="downloader_downloading">In scaricamento:</string>
	<string name="downloader_search_results">Trovate</string>
	<!-- Disclaimer message -->
	<string name="routing_disclaimer">Creando percorsi nell\'app MAPS.ME tieni a mente quanto segue:\n\n  - I percorsi suggeriti possono essere considerati solo come consigliati.\n - Le condizioni della strada, le regole del traffico e i segnali hanno una priorità maggiore rispetto ai consigli sulla circolazione.\n - La mappa potrebbe essere scorretta o datata e i percorsi potrebbero non aver creato la strada migliore possibile.\n\n  Stai attento sulle strade e prenditi cura di te!</string>
	<!-- Outdated maps category -->
	<string name="downloader_outdated_maps">Obsoleto</string>
	<!-- Up to date maps category -->
	<string name="downloader_uptodate_maps">Aggiornato</string>
	<!-- Status of outdated country in the list -->
	<string name="downloader_status_outdated">Aggiorna</string>
	<!-- Status of failed country in the list -->
	<string name="downloader_status_failed">Fallito</string>
	<!-- Displayed in a dialog that appears when a user tries to delete a map while the app is in the follow route mode -->
	<string name="downloader_delete_map_while_routing_dialog">Per eliminare una mappa interrompi la navigazione.</string>
	<!-- Show when user try build route, but we don't know where he -->
	<string name="routing_failed_unknown_my_position">La posizione attuale non è definita. Specifica la posizione per creare il percorso.</string>
	<!-- Show if use has not routing file, or InconsistentMWMandRoute -->
	<string name="routing_failed_has_no_routing_file">Ulteriori dati sono necessari per creare un percorso. Inizio a scaricarli?</string>
	<!-- StartPointNotFound -->
	<string name="routing_failed_start_point_not_found">Impossibile calcolare il percorso. Nessuna strada vicina al tuo punto di partenza.</string>
	<!-- EndPointNotFound -->
	<string name="routing_failed_dst_point_not_found">Impossibile calcolare il percorso. Nessuna strada vicina al tuo punto di arrivo.</string>
	<!-- PointsInDifferentMWM -->
	<string name="routing_failed_cross_mwm_building">I percorsi possono essere creati solo se interamente presenti in una singola mappa.</string>
	<!-- RouteNotFound -->
	<string name="routing_failed_route_not_found">Non è stata trovata alcuna strada fra il punto di partenza e d\'arrivo selezionati. Seleziona un punto di partenza e d\'arrivo diversi.</string>
	<!-- InternalError -->
	<string name="routing_failed_internal_error">Si è verificato un errore interno. Prova ad eliminare la mappa e a scaricarla nuovamente. Se il problema dovesse persistere, contattaci all\'indirizzo support\@maps.me.</string>
	<!-- Context menu item for downloader. -->
	<string name="downloader_download_map_and_routing">Scarica mappa e percorso</string>
	<!-- Context menu item for downloader. -->
	<string name="downloader_download_routing">Scarica percorso</string>
	<!-- Context menu item for downloader. -->
	<string name="downloader_delete_routing">Elimina il percorso</string>
	<!-- Context menu item for downloader. -->
	<string name="downloader_download_map">Scarica mappa</string>
	<string name="downloader_download_map_no_routing">Scarica mappa senza percorsi</string>
	<!-- Button for routing. -->
	<string name="routing_go">Andare!</string>
	<!-- Item status in downloader. -->
	<string name="downloader_retry">Ripeti</string>
	<!-- Item in context menu. -->
	<string name="downloader_map_and_routing">Mappa + percorso</string>
	<!-- Item in context menu. -->
	<string name="downloader_delete_map">Elimina mappa</string>
	<!-- Item in context menu. -->
	<string name="downloader_update_map">Aggiorna mappa</string>
	<!-- Item in context menu. -->
	<string name="downloader_update_map_and_routing">Aggiorna mappa + percorso</string>
	<!-- Item in context menu. -->
	<string name="downloader_map_only">Solo mappa</string>
	<!-- Toolbar title -->
	<string name="toolbar_application_menu">Menu applicazione</string>
	<!-- Preference text -->
	<string name="pref_use_google_play">Usa i servizi Google Play per ottenere la tua posizione attuale</string>
	<!-- Text for rating dialog -->
	<string name="rating_just_rated">Ho appena valutato la tua app</string>
	<!-- Text for rating dialog -->
	<string name="rating_user_since">Sono un utente MAPS.ME dal %s</string>
	<!-- Text for rating dialog -->
	<string name="rating_do_like_maps">Ti piace MAPS.ME?</string>
	<!-- Text for rating dialog -->
	<string name="rating_tap_star">Fai tap sulla stella per valutare la nostra app.</string>
	<!-- Text for rating dialog -->
	<string name="rating_thanks">Grazie!</string>
	<!-- Text for rating dialog -->
	<string name="rating_share_ideas">Condividi le tue idee o problemi così che possiamo migliorare l\'app per te.</string>
	<!-- Text for rating dialog -->
	<string name="rating_send_feedback">Invia feedback</string>
	<!-- Text for g+ dialog -->
	<string name="rating_google_plus">Clicca su g+ per far conoscere l\'app ai tuoi amici.</string>
	<!-- Text for routing error dialog -->
	<string name="routing_download_maps_along">Scarica le mappe lungo il percorso</string>
	<!-- Text for routing error dialog -->
	<string name="routing_download_map">Scarica la mappa</string>
	<!-- Text for routing error dialog -->
	<string name="routing_download_map_and_routing">Scarica la mappa aggiornata e i dati del percorso per ottenere tutte le funzionalità MAPS.ME.</string>
	<!-- Text for routing error dialog -->
	<string name="routing_get_routing_data">Ottieni i dati del percorso</string>
	<!-- Text for routing error dialog -->
	<string name="routing_get_additional_data">dati aggiuntivi richiesti per creare i percorsi dalla tua posizione.</string>
	<!-- Text for routing error dialog -->
	<string name="routing_requires_all_map">Creare un percorso necessita la presenza di tutte le mappe scaricate e aggiornate dalla tua posizione alla destinazione.</string>
	<!-- Text for routing error dialog -->
	<string name="routing_not_enough_space">Spazio non sufficiente</string>
	<!-- Text for routing error dialog -->
	<string name="routing_download_more_than_avail">Devi scaricare %1$s MB, ma lo spazio disponibile è di soli %2$s MB.</string>
	<!-- Text for routing error dialog -->
	<string name="routing_download_roaming">Stai per scaricare %s MB tramite la rete cellulare (in roaming). Questo potrebbe comportare costi aggiuntivi, in base al piano dati del tuo operatore mobile.</string>
	<!-- bookmark button text -->
	<string name="bookmark">segnalibro</string>
	<!-- map is not downloaded -->
	<string name="not_found_map">La mappa del tuo posto non è stata trovata</string>
	<!-- location service disabled -->
	<string name="enable_location_services">Cortesemente abilita i servizi di localizzazione</string>
	<!-- download map -->
	<string name="download_map">Scarica la mappa per il tuo paese</string>
	<!-- download map on iPhone -->
	<string name="download_map_iphone">Scarica la mappa per la tua posizione corrente sul tuo iPhone</string>
	<!-- clear pin -->
	<string name="nearby">Nelle vicinanze</string>
	<!-- clear pin -->
	<string name="clear_pin">Annulla pin</string>
	<!-- location is undefined -->
	<string name="undefined_location">La posizione attuale non è definita.</string>
	<!-- download country of your location -->
	<string name="download_country">Scarica il paese della tua posizione attuale</string>
	<!-- download failed -->
	<string name="download_failed">Il trasferimento di non è riuscito</string>
	<!-- get the map -->
	<string name="get_the_map">Scarica la mappa</string>
	<string name="save">Salva</string>
	<string name="edit_description_hint">Le tue descrizioni (formato testo o html)</string>
	<string name="new_group">nuovo gruppo</string>
	<string name="create">crea</string>
	<!-- red color -->
	<string name="red">Rosso</string>
	<!-- yellow color -->
	<string name="yellow">Giallo</string>
	<!-- blue color -->
	<string name="blue">Blu</string>
	<!-- green color -->
	<string name="green">Verde</string>
	<!-- purple color -->
	<string name="purple">Viola</string>
	<!-- orange color -->
	<string name="orange">Arancione</string>
	<!-- brown color -->
	<string name="brown">Marrone</string>
	<!-- pink color -->
	<string name="pink">Rosa</string>
	<!-- Wi-Fi available -->
	<string name="WiFi_available">Sì</string>

	<!-- SECTION: Routing dialogs strings -->
	<string name="dialog_routing_disclaimer_title">Quando segui il percorso, ricorda che:</string>
	<string name="dialog_routing_disclaimer_priority">— Le condizioni stradali, il codice della strada e la segnaletica stradale hanno sempre precedenza sui consigli di navigazione;</string>
	<string name="dialog_routing_disclaimer_precision">— La mappa potrebbe essere imprecisa e il percorso suggerito potrebbe non essere sempre quello ottimale per raggiungere la destinazione;</string>
	<string name="dialog_routing_disclaimer_recommendations">— I percorsi suggeriti devono essere considerati solo come consigli;</string>
	<string name="dialog_routing_disclaimer_borders">— Fai attenzione ai percorsi nelle zone di confine: i percorsi creati dalla nostra app possono, a volte, attraversare i confini di stato in zone non autorizzate;</string>
	<string name="dialog_routing_disclaimer_beware">Fai sempre attenzione e guida con prudenza!</string>
	<string name="dialog_routing_check_gps">Controlla il segnale GPS</string>
	<string name="dialog_routing_error_location_not_found">Impossibile creare il percorso. Impossibile individuare le coordinate GPS attuali.</string>
	<string name="dialog_routing_location_turn_wifi">Controlla il segnale GPS. Se abiliti il Wi-Fi, migliorerà la precisione della posizione.</string>
	<string name="dialog_routing_location_turn_on">Abilita i servizi di localizzazione</string>
	<string name="dialog_routing_location_unknown_turn_on">Impossibile individuare le coordinate GPS attuali. Per calcolare il percorso, abilita i servizi di localizzazione.</string>
	<string name="dialog_routing_location_unknown">Impossibile individuare le coordinate GPS attuali.</string>
	<string name="dialog_routing_download_files">Scarica i file necessari</string>
	<string name="dialog_routing_download_and_update_all">Per calcolare il percorso, scarica e aggiorna tutte le mappe e le informazioni di itinerario lungo la strada prevista.</string>
	<string name="dialog_routing_routes_size">File di informazioni di itinerario</string>
	<string name="dialog_routing_unable_locate_route">Impossibile individuare il percorso</string>
	<string name="dialog_routing_cant_build_route">Impossibile creare il percorso.</string>
	<string name="dialog_routing_change_start_or_end">Modifica il punto di partenza o la destinazione.</string>
	<string name="dialog_routing_change_start">Modifica il punto di partenza</string>
	<string name="dialog_routing_start_not_determined">Percorso non creato. Impossibile individuare il punto di partenza.</string>
	<string name="dialog_routing_select_closer_start">Seleziona un punto di partenza più vicino a una strada.</string>
	<string name="dialog_routing_change_end">Modifica la destinazione</string>
	<string name="dialog_routing_end_not_determined">Percorso non creato. Impossibile individuare la destinazione.</string>
	<string name="dialog_routing_select_closer_end">Seleziona un punto di destinazione più vicino a una strada.</string>
	<string name="dialog_routing_change_intermediate">Impossibile individuare un punto intermedio.</string>
	<string name="dialog_routing_intermediate_not_determined">Regolare il punto intermedio.</string>
	<string name="dialog_routing_system_error">Errore di sistema</string>
	<string name="dialog_routing_application_error">Impossibile creare il percorso a causa di un errore dell\'applicazione.</string>
	<string name="dialog_routing_try_again">Riprova</string>
	<string name="dialog_routing_send_error">Segnala il problema</string>
	<string name="dialog_routing_if_get_cross_route">Vuoi creare un percorso più diretto che si estende su più mappe?</string>
	<string name="dialog_routing_cross_route_is_optimal">È disponibile un percorso migliore che oltrepassa il limite di questa mappa.</string>
	<string name="not_now">Non ora</string>
	<string name="dialog_routing_build_route">Crea</string>
	<string name="dialog_routing_download_and_build_cross_route">Vuoi scaricare la mappa e creare un percorso migliore che si estende su più mappe?</string>
	<string name="dialog_routing_download_cross_route">Per creare un percorso migliore che oltrepassa il limite di questa mappa, scarica la mappa.</string>
	<string name="dialog_routing_cross_route_always">Oltrepassa sempre questo limite</string>

	<!-- SECTION: Strings for downloading map from search -->
	<string name="search_without_internet_advertisement">Per iniziare a cercare e a creare i percorsi, scarica la mappa e non avrai più bisogno di una connessione a internet.</string>
	<string name="search_select_map">Seleziona mappa</string>
	<string name="search_select_other_map">Seleziona un\'altra mappa</string>
	<!-- «Show» context menu -->
	<string name="show">Mostra</string>
	<!-- «Hide» context menu -->
	<string name="hide">Nascondi</string>
	<!-- «Rename» context menu -->
	<string name="rename">Rinomina</string>
	<!-- Bottom sheet: expand button (should be short) -->
	<string name="bottom_sheet_more">Altro…</string>
	<!-- Failed planning route message in navigation view -->
	<string name="routing_planning_error">Pianificazione del percorso fallito</string>
	<!-- Arrive routing message in navigation view -->
	<string name="routing_arrive">Arrivo: %s</string>
	<!-- Text for routing::RouterResultCode::FileTooOld dialog. -->
	<string name="dialog_routing_download_and_update_maps">Per creare un percorso, scaricare e aggiornare tutte le mappe interessate dal percorso.</string>
	<string name="rate_alert_title">Ti piace l’app?</string>
	<string name="rate_alert_default_message">Grazie per aver utilizzato MAPS.ME. Valuta l’app. Il tuo feedback ci permette di migliorare.</string>
	<string name="rate_alert_five_star_message">Hooray! Anche noi amiamo i nostri utenti!</string>
	<string name="rate_alert_four_star_message">Grazie, faremo del nostro meglio!</string>
	<string name="rate_alert_less_than_four_star_message">Hai qualche idea su come migliorarla?</string>
	<string name="categories">Categorie</string>
	<string name="history">Cronologia</string>
	<string name="next_turn_then">Poi</string>
	<string name="closed">Chiuso</string>
	<string name="back_to">Torna a %s</string>
	<string name="search_not_found">Spiacente, non ho trovato nulla.</string>
	<string name="search_not_found_query">Prova con un\'altra ricerca.</string>
	<string name="search_not_found_map">Scarica la mappa nella quale stai cercando.</string>
	<string name="search_not_found_location">Scarica la mappa del luogo in cui ti trovi.</string>
	<string name="search_history_title">Cerca nella cronologia</string>
	<string name="search_history_text">Accedi velocemente alle stringhe di ricerca recenti.</string>
	<string name="clear_search">Cancella сronologia ricerche</string>
	<!-- Title for settings to enable/disable showcase menu button -->
	<string name="showcase_settings_title">Mostra offerte</string>
	<string name="p2p_route_planning">Pianificazione percorso</string>
	<string name="p2p_your_location">La tua posizione</string>
	<string name="p2p_from">Il punto di partenza</string>
	<string name="p2p_to">Il punto di destinazione</string>
	<string name="p2p_start">Inizia</string>
	<string name="p2p_planning">Pianificazione…</string>
	<string name="p2p_from_here">Da</string>
	<string name="p2p_to_here">Percorso per</string>
	<string name="p2p_only_from_current">La navigazione è disponibile solo dalla tua posizione attuale.</string>
	<string name="p2p_reroute_from_current">Vuoi che impostiamo il percorso dalla tua posizione corrente?</string>
	<string name="whats_new_next_button">Avanti</string>
	<string name="editor_time_add">Aggiungi orari</string>
	<string name="editor_time_delete">Elimina orari</string>
	<!-- Text for allday switch. -->
	<string name="editor_time_allday">Tutto il giorno (24 ore)</string>
	<string name="editor_time_open">Aperto</string>
	<string name="editor_time_close">Chiuso</string>
	<string name="editor_time_add_closed">Aggiungi orari di chiusura</string>
	<string name="editor_time_title">Orari di apertura</string>
	<string name="editor_time_advanced">Modalità avanzata</string>
	<string name="editor_time_simple">Modalità semplice</string>
	<string name="editor_hours_closed">Orari di chiusura</string>
	<string name="editor_example_values">Valori esemplificativi</string>
	<string name="editor_correct_mistake">Correggi errore</string>
	<string name="editor_correct_mistake_message">Hai commesso un errore nella modifica. Correggerlo o passare alla modalità semplice.</string>
	<string name="editor_add_select_location">Posizione</string>
	<string name="editor_done_dialog_1">Hai modificato la mappa del mondo. Non tenerlo per te! Dillo ai tuoi amici e modificatela insieme.</string>
	<string name="editor_done_dialog_2">Questa è la tua seconda modifica alla mappa. Adesso sei al %d° posto nella lista di chi ha modificato la mappa. Dillo ai tuoi amici.</string>
	<string name="editor_done_dialog_3">Hai migliorato la mappa. Dillo ai tuoi amici e modificate la mappa insieme.</string>
	<string name="share_with_friends">Condividi con gli amici</string>
	<string name="editor_report_problem_desription_1">Si prega di descrivere il problema in dettaglio in modo che la community OpenStreeMap possa riparare l’errore.</string>
	<string name="editor_report_problem_desription_2">O fallo tu stesso su https://www.openstreetmap.org/</string>
	<string name="editor_report_problem_send_button">Invia</string>
	<string name="editor_report_problem_title">Problema</string>
	<string name="editor_report_problem_no_place_title">Questo luogo non esiste</string>
	<string name="editor_report_problem_under_construction_title">Chiuso per manutenzione</string>
	<string name="editor_report_problem_duplicate_place_title">Luogo duplicato</string>
	<string name="first_launch_congrats_title">MAPS.ME è pronto per essere usato</string>
	<string name="first_launch_congrats_text">Cerca e naviga offline, ovunque ti trovi nel mondo, gratis.</string>
	<string name="migrate_title">Importante!</string>
	<!-- Android uses image instead of text. -->
	<string name="download_all">Scarica tutto</string>
	<string name="delete_all">Elimina tutti</string>
	<string name="autodownload">Scaricamento automatico</string>
	<string name="disable_autodownload">Disattiva download automatico</string>
	<!-- Place Page opening hours text -->
	<string name="closed_now">Ora chiuso</string>
	<!-- Place Page opening hours text -->
	<string name="daily">Tutti i giorni</string>
	<string name="twentyfour_seven">Giorno e notte</string>
	<string name="day_off_today">Oggi chiuso</string>
	<string name="day_off">Chiuso</string>
	<string name="today">Oggi</string>
	<string name="sunrise_to_sunset">Dall\'alba al tramonto</string>
	<string name="sunset_to_sunrise">Dal tramonto all\'alba</string>
	<string name="add_opening_hours">Aggiungi orari di apertura</string>
	<string name="edit_opening_hours">Modifica orari di apertura</string>
	<string name="no_osm_account">Non hai un account su OpenStreetMap?</string>
	<string name="register_at_openstreetmap">Registrati</string>
	<string name="password_8_chars_min">Password (minimo 8 caratteri)</string>
	<string name="invalid_username_or_password">Username o password non corretti.</string>
	<string name="login">Accedi</string>
	<string name="password">Password</string>
	<string name="forgot_password">Hai dimenticato la password?</string>
	<!-- Forgot Password dialog title -->
	<string name="restore_password">Ripristina password</string>
	<string name="enter_email_address_to_reset_password">Inserisci l\'indirizzo email utilizzato durante la registrazione e ti invieremo un link per recuperare la password.</string>
	<string name="reset_password">Reimpostare password</string>
	<string name="username">Nome utente</string>
	<string name="osm_account">Account OSM</string>
	<string name="logout">Esci</string>
	<string name="login_and_edit_map_motivation_message">Accedi e modifica le informazioni degli oggetti sulla mappa e noi provvederemo a renderli disponibili a milioni di altri utenti. Creiamo un mondo migliore assieme.</string>
	<!-- Information text: "Last upload 11.01.2016" -->
	<string name="last_upload">Ultimo caricamento</string>
	<!-- Motivates user to login/register, title above login buttons. -->
	<string name="you_have_edited_your_first_object">Hai modificato il tuo primo oggetto!</string>
	<string name="thank_you">Grazie</string>
	<string name="login_with_google">Accedi con Google</string>
	<string name="login_with_facebook">Accedi con Facebook</string>
	<string name="login_with_openstreetmap">Accedi con www.openstreetmap.org</string>
	<string name="edit_place">Modifica il luogo</string>
	<string name="place_name">Nome del luogo</string>
	<!-- title above languages list cells in the editor, below editable name text field. -->
	<string name="other_languages">Altre lingue</string>
	<!-- small button to open list with names in different languages -->
	<string name="show_more">Mostra più</string>
	<!-- small button to close list with names in different languages -->
	<string name="show_less">Mostra meno</string>
	<string name="add_language">Aggiungi una lingua</string>
	<string name="street">Via</string>
	<!-- Editable House Number text field (in address block). -->
	<string name="house_number">Numero civico</string>
	<string name="details">Dettagli</string>
	<!-- Text field to enter non-existing street name, below list of known streets around -->
	<string name="add_street">Aggiungi una strada</string>
	<string name="choose_language">Scegli una lingua</string>
	<string name="choose_street">Scegli una strada</string>
	<string name="postal_code">Codice postale</string>
	<string name="cuisine">Cucina</string>
	<string name="select_cuisine">Seleziona la cucina</string>
	<!-- login text field -->
	<string name="email_or_username">Email o nome utente</string>
	<string name="phone">Telefono</string>
	<string name="please_note">Si prega di notare</string>
	<string name="common_no_wifi_dialog">Nessuna connessione WiFi. Vuoi continuare con la connessione dati?</string>
	<string name="downloader_delete_map_dialog">Tutti i cambiamenti nella mappa saranno cancellati insieme alla mappa.</string>
	<string name="downloader_update_maps">Aggiorna mappe</string>
	<string name="downloader_mwm_migration_dialog">Per creare un percorso, devi aggiornare tutte le mappe e pianificare nuovamente il percorso.</string>
	<string name="downloader_search_field_hint">Trova la mappa</string>
	<string name="migration_update_all_button">Aggiorna tutte le mappe</string>
	<string name="migration_delete_all_download_current_button">Scarica la mappa attuale e cancella quelle vecchie</string>
	<string name="migration_download_error_dialog">Errore nel download</string>
	<string name="common_check_internet_connection_dialog">Sei pregato di verificare le tue impostazioni e assicurarti che il tuo dispositivo sia connesso a internet.</string>
	<string name="downloader_no_space_title">Spazio insufficiente</string>
	<string name="downloader_no_space_message">Si prega di rimuovere i dati non necessari</string>
	<string name="editor_general_auth_error_dialog">Errore generale di accesso.</string>
	<string name="editor_login_error_dialog">Errore accesso.</string>
	<string name="editor_login_failed_dialog">Accesso fallito</string>
	<string name="editor_username_error_dialog">Nome utente non valido</string>
	<string name="editor_place_edited_dialog">Hai modificato un oggetto!</string>
	<string name="editor_login_with_osm">Accedi con OpenStreetMap</string>
	<string name="editor_profile_changes">Modifiche approvate</string>
	<string name="editor_profile_unsent_changes">Non inviato:</string>
	<string name="editor_focus_map_on_location">Sposta la mappa per selezionare l’esatta posizione dell’oggetto.</string>
	<string name="editor_add_select_category">Seleziona categoria</string>
	<string name="editor_add_select_category_popular_subtitle">Popolari</string>
	<string name="editor_add_select_category_all_subtitle">Tutte le categorie</string>
	<string name="editor_edit_place_title">Modifica</string>
	<string name="editor_add_place_title">Aggiunta</string>
	<string name="editor_edit_place_name_hint">Nome del luogo</string>
	<string name="editor_edit_place_category_title">Categoria</string>
	<string name="detailed_problem_description">Descrizione dettagliata di un problema</string>
	<string name="editor_report_problem_other_title">Un problema diverso</string>
	<string name="placepage_report_problem_button">Riporta un problema</string>
	<string name="placepage_add_business_button">Aggiungi organizzazione</string>
	<string name="whatsnew_smallmwm_header">Ce lo avete chiesto e noi lo abbiamo fatto</string>
	<string name="whatsnew_smallmwm_message">Abbiamo diviso le mappe in parti. Ora puoi scaricare le regioni separate, non l\'intero paese.</string>
	<string name="whatsnew_search_header">Nuova ricerca</string>
	<string name="whatsnew_search_message">Abbiamo migliorato significativamente la ricerca per indirizzo. Guarda tu stesso.</string>
	<string name="whatsnew_editor_title">Modifica la mappa*</string>
	<string name="whatsnew_editor_message_1">Aggiungi nuovi luoghi alla mappa, e modifica quelli già esistenti direttamente dall’app.</string>
	<string name="whatsnew_editor_message_2">* MAPS.ME usa i dati della community OpenStreetMap.</string>
	<string name="onboarding_offline_navigation_title">Non ti perderai mai più</string>
	<string name="onboarding_offline_navigation_message">Pianifica percorsi ottimali in auto o a piedi, anche senza connessione internet!</string>
	<string name="onboarding_offline_navigation_title_2">Navigazione offline</string>
	<string name="onboarding_offline_navigation_message_2">Pianifica percorsi ottimali in auto o a piedi.</string>
	<string name="onboarding_offline_maps_title">MAPS.ME — accedi alla mappa in tutto il mondo senza Internet</string>
	<string name="onboarding_offline_maps_message">Scarica una volta le mappe per l’area desiderata e usa la navigazione e le funzioni di ricerca senza una connessione internet.</string>
	<string name="onboarding_notifications_message">Per ricevere le mappe aggiornate, attiva le notifiche di aggiornamento</string>
	<string name="onboarding_notifications_title">Attiva notifiche di aggiornamento</string>
	<string name="onboarding_location_title">Aiutaci a trovarti</string>
	<string name="onboarding_location_message">Per usare la navigazione e altri strumenti, dobbiamo accedere alla tua geolocalizzazione.</string>
	<string name="onboarding_permissions_title">Consenti a MAPS.ME di accedere a memoria e posizione</string>
	<string name="onboarding_permissions_message">Così puoi scaricare mappe, vedere luoghi e traffico vicino a te e usare la funzione di navigazione.</string>
	<string name="onboarding_welcome_title">Benvenuto in MAPS.ME</string>
	<string name="onboarding_welcome_first_subtitle">Mappe gratuite, veloci, dettagliate e interamente offline con navigazione turn-by-turn.</string>
	<string name="onboarding_welcome_second_subtitle">Lanciando l\'applicazione, accetti i &lt;a href="%1$s">Termini di utilizzo&lt;/a> e l\'&lt;a href="%2$s">Informativa sulla privacy&lt;/a>.</string>
	<string name="dialog_incorrect_feature_position">Cambia posizione</string>
	<string name="message_invalid_feature_position">Un oggetto non può essere posizionato qui</string>
	<string name="login_to_make_edits_visible">Accedi per consentire ad altri utenti di vedere le modifiche apportate.</string>
	<string name="no_migration_during_navigation">Non è possibile effettuare aggiornamenti durante la navigazione.</string>
	<!-- Error dialog no space -->
	<string name="migration_no_space_message">Per scaricare, hai bisogno di più spazio. Sei pregato di eliminare i dati non necessari.</string>
	<string name="editor_sharing_title">Ho migliorato le mappe MAPS.ME</string>
	<string name="editor_comment_will_be_sent">Invieremo i tuoi commenti ai cartografi.</string>
	<string name="editor_unsupported_category_message">Hai aggiunto un luogo di una categoria che non è ancora disponibile. Apparirà sulla mappa in futuro.</string>
	<!-- Downloaded 10 **of** 20 <- it is that "of" -->
	<string name="downloader_of">%1$d di %2$d</string>
	<string name="download_over_mobile_header">Vuoi scaricare utilizzando una connessione di rete cellulare?</string>
	<string name="download_over_mobile_message">Quest\'operazione potrebbe essere piuttosto costosa con alcuni piani o in roaming.</string>
	<string name="error_enter_correct_house_number">Inserisci numero civico corretto</string>
	<string name="editor_storey_number">Numero di piani (massimo %d)</string>
	<!-- Error message in Editor when a user tries to set the number of floors for a building higher than 25 -->
	<string name="error_enter_correct_storey_number">Modificare l\'edificio con un massimo di 25 piani</string>
	<string name="editor_zip_code">Codice postale</string>
	<string name="error_enter_correct_zip_code">Inserire il codice postale corretto</string>
	<!-- Place Page title for long tap -->
	<string name="core_placepage_unknown_place">Luogo sconosciuto</string>
	<string name="editor_other_info">Invia una nota al moderatore OSM</string>
	<string name="editor_detailed_description_hint">Commento dettagliato</string>
	<string name="editor_detailed_description">Le modifiche suggerite saranno inviate alla community OpenStreetMap. Descrivere i dettagli che non è possibile modificare in MAPS.ME.</string>
	<string name="editor_more_about_osm">Ulteriori informazioni su OpenStreetMap</string>
	<string name="editor_operator">Titolare</string>
	<string name="editor_tag_description">Inserire la società, organizzazione o soggetto responsabile per la struttura.</string>
	<string name="editor_no_local_edits_title">Non vi sono modifiche locali</string>
	<string name="editor_no_local_edits_description">Qui è visualizzato il numero di modifiche suggerite sulla mappa che sono attualmente solo accessibili sul tuo dispositivo.</string>
	<string name="editor_send_to_osm">Invia a OSM</string>
	<string name="editor_remove">Rimuovi</string>
	<string name="downloader_my_maps_title">Le mie mappe</string>
	<string name="downloader_no_downloaded_maps_title">Non hai scaricato mappe</string>
	<string name="downloader_no_downloaded_maps_message">Scarica mappe per trovare il luogo e navigare offline.</string>
	<string name="downloader_find_place_hint">Cerca città o paese</string>
	<!-- Error title that appears after certain time without location. -->
	<string name="current_location_unknown_title">Continuare a rilevare la posizione attuale?</string>
	<!-- Error that appears after certain time without location. -->
	<string name="current_location_unknown_message">La posizione attuale è sconosciuta. È possibile che ci si trovi all\'interno di un edificio o un tunnel.</string>
	<string name="current_location_unknown_continue_button">Continua</string>
	<string name="current_location_unknown_stop_button">Arresta</string>
	<string name="current_location_unknown_error_title">La posizione attuale è sconosciuta.</string>
	<string name="current_location_unknown_error_message">Si è verificato un errore durante la ricerca della posizione. Controllare che il dispositivo utilizzato funzioni correttamente e riprovare.</string>
	<string name="whatsnew_update_editor_title">Abbiamo aggiornato l\'editor mappe</string>
	<string name="whatsnew_update_editor_message">Gli utenti di MAPS.ME hanno apportato 200.000 modifiche alle mappe. Stiamo costruendo insieme le mappe più dettagliate al mondo. Unisciti a noi!</string>
	<!-- Additional text in whats new -->
	<string name="whatsnew_update_editor_message_update">Per utilizzare l\'editor delle mappe, aggiorna tutte le mappe.</string>
	<string name="location_services_disabled_header">La geolocalizzazione è disabilitata</string>
	<string name="location_services_disabled_message">Abilita l\'accesso alla geolocalizzazione dalle impostazioni del dispositivo</string>
	<string name="location_services_disabled_1">1. Apri le impostazioni</string>
	<string name="location_services_disabled_2">2. Tocca su Localizzazione</string>
	<!-- iOS Dialog for the case when the location permission is not granted -->
	<string name="location_services_disabled_3">3. Seleziona mentre usi l\'app</string>
	<string name="placepage_parking_surface">Superficie</string>
	<string name="placepage_parking_multistorey">Su più piani</string>
	<string name="placepage_parking_underground">Sotterraneo</string>
	<string name="placepage_parking_rooftop">Su terrazza</string>
	<string name="placepage_parking_sheds">Coperto</string>
	<string name="placepage_parking_carports">Tettoia</string>
	<string name="placepage_parking_boxes">Box</string>
	<string name="placepage_parking_pay">A pagamento</string>
	<string name="placepage_parking_free">Gratis</string>
	<string name="placepage_parking_interval">Pagamento a tempo</string>
	<string name="placepage_entrance_number">N.</string>
	<string name="placepage_entrance_type">Ingresso</string>
	<string name="placepage_flat">app.</string>
	<string name="placepage_open_24_7">24 / 7</string>
	<string name="place_page_booking_rating">Valutazione: %s</string>
	<string name="place_page_starting_from">da %s</string>
	<string name="meter">m</string>
	<string name="kilometer">km</string>
	<string name="kilometers_per_hour">chilometri orari (km/h)</string>
	<string name="mile">mi</string>
	<string name="foot">ft</string>
	<string name="miles_per_hour">mph</string>
	<string name="day">g</string>
	<string name="hour">h</string>
	<string name="minute">min</string>
	<string name="placepage_place_description">Descrizione</string>
	<string name="placepage_more_button">Altro</string>
	<string name="book_button">Prenota</string>
	<string name="placepage_call_button">Chiama</string>
	<string name="placepage_edit_bookmark_button">Modifica segnalibro</string>
	<string name="placepage_bookmark_name_hint">Nome segnalibro</string>
	<string name="placepage_personal_notes_hint">Note personali</string>
	<string name="placepage_delete_bookmark_button">Elimina segnalibro</string>
	<string name="editor_edits_sent_message">Le modifiche suggerite sono state inviate</string>
	<string name="editor_comment_hint">Commenta…</string>
	<string name="editor_reset_edits_message">Reimpostare tutte le modifiche locali?</string>
	<string name="editor_reset_edits_button">Reimposta</string>
	<string name="editor_remove_place_message">Rimuovere il luogo aggiunto?</string>
	<string name="editor_remove_place_button">Rimuovi</string>
	<string name="editor_status_sending">Invio…</string>
	<string name="editor_place_doesnt_exist">Luogo inesistente</string>
	<string name="text_more_button">…continua</string>
	<!-- Phone number error message -->
	<string name="error_enter_correct_phone">Inserisci un numero di telefono corretto</string>
	<string name="error_enter_correct_web">Inserisci un indirizzo web valido</string>
	<string name="error_enter_correct_email">Inserisci un\'email valida</string>
	<string name="error_enter_correct">Inserisci un valore valido</string>
	<string name="editor_profile_changes_for_next_place">Modifiche per posizione successiva: %d</string>
	<string name="editor_profile_rating_place">Posizione in classifica</string>
	<string name="booking_dialog_not_connect_header">Per prenotare l\'hotel, attivare la connessione Internet</string>
	<string name="button_try">Provalo</string>
	<string name="refresh">Aggiornare</string>
	<string name="last_update">Ultimo aggiornamento: %s</string>
	<string name="booking_checkin">check in: %s</string>
	<string name="booking_checkout">check out: %s</string>
	<string name="placepage_add_place_button">Aggiungi un luogo sulla mappa</string>
	<!-- Displayed when saving some edits to the map to warn against publishing personal data -->
	<string name="editor_share_to_all_dialog_title">Vuoi inviarlo a tutti gli utenti?</string>
	<!-- iOS Dialog before publishing the modifications to the public map. -->
	<string name="editor_share_to_all_dialog_message_1">Assicurati di non aver inserito alcun dato personale.</string>
	<string name="editor_share_to_all_dialog_message_2">Controlleremo le modifiche. Se avremo delle domande, ti contatteremo via email.</string>
	<string name="navigation_overview_button">panoramica</string>
	<string name="navigation_stop_button">ferma</string>
	<!-- Text on an empty bookmark page -->
	<string name="bookmarks_empty_title">Salva i Segnalibri</string>
	<string name="bookmarks_empty_message_1">Tocca su ★ per salvare i luoghi preferiti e accedervi rapidamente.</string>
	<string name="bookmarks_empty_message_2">Importa i segnalibri dalla posta elettronica e dal web.</string>
	<string name="bookmarks_empty_message_3">check out: %s</string>
	<!-- Name of the group for booked hotels -->
	<string name="bookmarks_group_name">Hotel prenotati</string>
	<string name="place_page_button_read_descriprion">Leggi</string>
	<!-- iOS dialog for the case when recent track recording is on and the app comes back from background -->
	<string name="recent_track_background_dialog_title">Disattivare la registrazione del tuo percorso effettuato di recente?</string>
	<!-- If a hotel is being shared -->
	<string name="sharing_booking">o prenota su booking.com</string>
	<string name="off_recent_track_background_button">Disattiva</string>
	<!-- For sharing via SMS and so on -->
	<string name="sharing_call_action_look">Dai uno sguardo</string>
	<string name="continue_recent_track_background_button">Continua</string>
	<string name="recent_track_background_dialog_message">MAPS.ME usa la tua posizione geografica in background per registrare il tuo percorso effettuato più di recente.</string>
	<string name="whatsnew_car_navigation_header">Navigazione veicoli user-friendly</string>
	<string name="whatsnew_car_navigation_message">• Gli elementi di navigazione occupano meno spazio\n• La velocità viene mostrata ed è stato aggiunto lo zoom automatico.</string>
	<string name="whatsnew_cycle_navigation_2_header">Navigazione con biciclette</string>
	<string name="whatsnew_cycle_navigation_2_message">• La navigazione con biciclette prende in considerazione i dati sul terreno.\n• Abbiamo creato dei percorsi più semplici che prendono in considerazione le pendenze del terreno.</string>
	<string name="whatsnew_booking_2_header">Ricerca di hotel semplificata</string>
	<string name="whatsnew_booking_2_message">I risultati di ricerca mostrano la valutazione dell\'hotel e la categoria del prezzo.</string>
	<string name="whatsnew_cycle_navigation_header">Navigazione in bici (versione beta)</string>
	<string name="whatsnew_cycle_navigation_message">Stiamo collaudando la navigazione in bici per la nuova stagione. Prova il tuo itinerario ciclistico preferito con MAPS.ME e condividi con noi le tue opinioni.</string>
	<!-- Rate on Google Play (Android only) -->
	<string name="rate_gp">Vota su Google Play</string>
	<!-- Share with friends: menu item title -->
	<string name="tell_friends">Dillo a un amico</string>
	<!-- Share with friends: sharing text -->
	<string name="tell_friends_text">Ciao! Installa MAPS.ME!</string>
	<!-- About short text (below logo) -->
	<string name="about_description">MAPS.ME è un\'applicazione offline essenziale per chi ama viaggiare. MAPS.ME si basa sui dati OpenStreetMap e consente di apportare modifiche.</string>
	<!-- Text in menu -->
	<string name="blog">Blog</string>
	<!-- Hint near allow statictics checkbox -->
	<string name="allow_statistics_hint">La raccolta di statistiche di utilizzo anonime ci aiuta a migliorare l\'app.</string>
	<string name="general_settings">Impostazioni generali</string>
	<string name="date">Data %d</string>
	<!-- "Report a bug" -> "Generaal Feedback" -> "Something is not working" -->
	<string name="something_is_not_working">Qualcosa non funziona</string>
	<!-- For the first routing -->
	<string name="accept">Accetta</string>
	<!-- For the first routing -->
	<string name="decline">Rifiuta</string>
	<string name="whats_new_route_profile_title">Meglio è tornar indietro, che correr male avanti</string>
	<string name="whats_new_route_profile_message">Per gli itinerari pedonali e ciclabili, è ora visualizzato il profilo altimetrico.</string>
	<string name="whats_new_booking_improve_title">Risparmia alla prenotazione degli hotel</string>
	<string name="whats_new_booking_improve_message">I risultati della ricerca per gli hotel contengono ora la categoria di prezzo.\nInoltre, abbiamo aggiunto più di 110.000 hotel.</string>
	<!-- For place page hotel facilities block -->
	<string name="placepage_hotel_facilities">Servizi</string>
	<!-- For place page hotel nearby block -->
	<string name="placepage_hotel_nearby">Nelle vicinanze</string>
	<!-- For ordering a taxi (as opposed to hotels or other things) -->
	<string name="taxi_order">Prenota un taxi</string>
	<!-- How long it is until the taxi arrives -->
	<string name="taxi_wait">Atteso in %s</string>
	<!-- When there are no available taxis nearby -->
	<string name="taxi_not_found">Impossibile trovare un taxi nelle vicinanze</string>
	<!-- When there are no available taxi providers nearby -->
	<string name="taxi_no_providers">Taxi non disponibile qui</string>
	<string name="install_app">Installa</string>
	<!-- `Filter` is a noun here -->
	<string name="booking_filters">Filtro</string>
	<string name="booking_filters_reset">Reimposta</string>
	<!-- Beginning from a particular value and -->
	<string name="booking_filters_rating">Voto da</string>
	<string name="booking_filters_rating_any">Qualsiasi</string>
	<string name="booking_filters_ragting_good">Buono</string>
	<string name="booking_filters_rating_very_good">Molto buono</string>
	<string name="booking_filters_rating_excellent">Eccellente</string>
	<string name="booking_filters_price_category">Categoria di prezzo</string>
	<string name="search_no_results_title">Nessun risultato trovato</string>
	<string name="search_no_results_message">Prova con un termine di ricerca più generale, fai lo zoom indietro o reimposta il filtro.</string>
	<string name="search_no_results_expand_area_button">Zoom indietro</string>
	<string name="search_no_results_reset_button">Reimposta filtro</string>
	<!-- noun -->
	<string name="search_in_table">Elenco</string>
	<string name="booking_show_more">Mostra altro</string>
	<string name="booking_reviews">Recensioni</string>
	<string name="booking_hotel">Hotel</string>
	<!-- hotel room -->
	<string name="booking_hotel_room">Camera</string>
	<!-- A neologism for a chat based on geographical proximity -->
	<string name="chat">GeoChat</string>
	<!-- Verb. Text on a button that opens the chat. -->
	<string name="chat_open">Apri</string>
	<string name="whatsnew_uber_header">MAPS.ME e Uber</string>
	<string name="whatsnew_uber_message">Prenota un taxi Uber direttamente dalla app!</string>
	<string name="dialog_taxi_offline">La chiamata taxi non è disponibile in modalità offline.</string>
	<string name="dialog_taxi_error">La chiamata taxi è temporaneamente non disponibile.</string>
	<string name="mobile_data_dialog">Usare l\'Internet mobile per mostrare le informazioni dettagliate?</string>
	<string name="mobile_data_option_always">Usa sempre</string>
	<string name="mobile_data_option_today">Solo oggi</string>
	<string name="mobile_data_option_not_today">Non usare oggi</string>
	<string name="mobile_data">Internet mobile</string>
	<string name="mobile_data_description">L\'Internet mobile è necessario per visualizzare informazioni dettagliate sulle località, ad esempio foto, prezzi e recensioni.</string>
	<string name="mobile_data_option_never">Non usare mai</string>
	<string name="mobile_data_option_ask">Chiedi sempre</string>
	<string name="traffic_update_maps_text">Per visualizzare i dati sul traffico, le mappe devono essere aggiornate.</string>
	<string name="traffic_outdated">Dati sul traffico non aggiornati.</string>
	<string name="big_font">Aumenta dimensione carattere sulla mappa</string>
	<string name="traffic_update_app">Aggiorna MAPS.ME</string>
	<!-- "traffic" as in road congestion -->
	<string name="traffic_update_app_message">Per visualizzare i dati sul traffico, l\'applicazione deve essere aggiornata.</string>
	<!-- "traffic" as in "road congestion" -->
	<string name="traffic_data_unavailable">Dati sul traffico non disponibili</string>
	<string name="banner_deliveryclub_title">Cibo a domicilio</string>
	<string name="banner_deliveryclub_message">Consegna rapida da 4000 ristoranti. Ordina da Delivery Club.</string>
	<string name="banner_lamoda_title">Store di abbigliamento e scarpe online</string>
	<string name="banner_lamoda_message">Più di 1000 brand. Fino al 70% di sconto. Spedizione gratuita in tutto il Paese.</string>
	<string name="banner_tutu_title">Biglietti ferroviari online</string>
	<string name="banner_tutu_message">Biglietti ferroviari per qualsiasi città online: prezzi, ricerca e prenotazione.</string>
	<string name="banner_geerbest_title">Store di elettronica online</string>
	<string name="banner_geerbest_message">Ricerca istantanea fra oltre 50.000 articoli a prezzo scontato.</string>
	<string name="banner_rentalcars_title">Autonoleggio online</string>
	<string name="banner_rentalcars_message">800 società di autonoleggio in oltre 49.000 località.</string>
	<!-- december -->
	<string name="whatsnew_traffic">Dati sul traffico in 36 Paesi</string>
	<!-- december -->
	<string name="whatsnew_traffic_text">Info sul traffico aggiornate e itinerari più veloci sulla loro base!</string>
	<!-- december -->
	<string name="whatsnew_traffic_roaming">Info sul traffico in roaming</string>
	<!-- december -->
	<string name="whatsnew_traffic_roaming_text">Richiede meno di 1 MB di larghezza di banda mobile per viaggio.</string>
	<!-- december -->
	<string name="whatsnew_order_taxi">Prenota un taxi</string>
	<!-- december -->
	<string name="whatsnew_order_taxi_text">La maggior parte delle pagine di posizione contiene ora un pulsante per prenotare un taxi.</string>
	<!-- january -->
	<string name="whatsnew_improved_search">Ricerca migliorata</string>
	<!-- january -->
	<string name="whatsnew_improved_search_text">Anche le query con errori di ortografia restituiscono risultati di ricerca accurati.</string>
	<!-- january -->
	<string name="whatsnew_filters_in_search">Filtri di ricerca</string>
	<!-- january -->
	<string name="whatsnew_filters_in_search_text">Cerca hotel in base a prezzo e voto.</string>
	<!-- january -->
	<string name="whatsnew_font_size">Dimensione carattere</string>
	<!-- january -->
	<string name="whatsnew_font_size_text">Le etichette sulla mappa possono essere ingrandite.</string>
	<!-- Seven points and higher -->
	<string name="booking_filter_rating_num_good">7.0+</string>
	<!-- Eight points and higher -->
	<string name="booking_filter_rating_num_very_good">8.0+</string>
	<!-- Nine points and higher -->
	<string name="booking_filter_rating_num_excellent">9.0+</string>
	<!-- Simplified colour scheme for traffic information, fewer colours are used to display traffic jams on the map. The string should be kept as short as possible -->
	<string name="pref_traffic_simplified_colors_title">Colori traffico semplificati</string>
	<string name="enable_logging">Abilita registrazione</string>
	<string name="whatsnew_more_info_on_hotels_title">Maggiori info su Hotel</string>
	<string name="whatsnew_more_info_on_hotels_message">Aspetto totalmente nuovo per le pagine dedicate agli hotel: online, per te, foto, recensioni degli utenti e molto altro.</string>
	<string name="whatsnew_better_routing_title">Pianificazione percorso migliorata</string>
	<string name="whatsnew_better_routing_message">• Stima più accurata del tempo di arrivo.\n• La app tiene in considerazione le zone con limitazione di velocità e i segnali stradali.</string>
	<string name="whatsnew_smaller_mwm_title">Maps si fa più piccolo</string>
	<string name="whatsnew_smaller_mwm_message">Maps richiede fino al 20% in meno di memoria.</string>
	<string name="whatsnew_waypoints_title">Waypoint di percorso</string>
	<string name="whatsnew_waypoints_message">Tocca i luoghi e aggiungi waypoint al tuo percorso.</string>
	<string name="whatsnew_driving_style_title">Nuovo stile di mappa per la guida</string>
	<string name="whatsnew_driving_style_message">Modalità di navigazione in auto più semplice da usare.</string>
	<string name="more_on_bookingcom">Altro su Booking.com</string>
	<string name="details_on_bookingcom">Dettagli su Booking.com</string>
	<string name="reviews_on_bookingcom">Altre recensioni su Booking.com</string>
	<string name="offline_place_page_more_information">Connettiti a Internet per ottenere maggiori informazioni sul luogo.</string>
	<string name="failed_load_information">Impossibile caricare le informazioni.</string>
	<string name="whats_new_auto_update_updating_maps">Aggiornamento mappe</string>
	<string name="whats_new_auto_update_title">Aggiorna le mappe scaricate</string>
	<string name="whats_new_auto_update_message">Aggiornamento mappe mantiene aggiornate le informazioni sugli oggetti</string>
	<string name="whats_new_auto_update_button_size">Aggiorna (%s)</string>
	<string name="whats_new_auto_update_button_later">Aggiorna manualmente più tardi</string>
	<string name="search_hotel_filter_apartment">Residence</string>
	<string name="search_hotel_filter_camp_site">Campeggio</string>
	<string name="search_hotel_filter_chalet">Chalet</string>
	<string name="search_hotel_filter_guest_house">Guest house</string>
	<string name="search_hotel_filter_hostel">Ostello</string>
	<string name="search_hotel_filter_resort">Resort</string>
	<string name="search_hotel_filter_hotel">Hôtel</string>
	<string name="search_hotel_filter_motel">Motel</string>
	<string name="create_campaign_button">Rivendica questa attività</string>
	<string name="view_campaign_button">Attività pubblicizzata</string>
	<string name="search_hotel_filters_type">Tipo</string>
	<!-- Settings: "Send general feedback" button -->
	<string name="feedback_general">Feedback generale</string>
	<string name="on">On</string>
	<string name="off">Off</string>
	<string name="prefs_languages_information">Usiamo il TTS di sistema per le istruzioni vocali. Molti dispositivi Android utilizzano Google TTS, che puoi scaricare o aggiornare da Google Play (https://play.google.com/store/apps/details?id=com.google.android.tts)</string>
	<string name="prefs_languages_information_off">Per alcune lingue, sarà necessario installare un altro sintetizzatore vocale o un language pack aggiuntivo dall\'app store (Google Play Market, Samsung Apps).\nApri le impostazioni del tuo dispositivo → Lingua e input → Riconoscimento vocale → Output sintesi vocale.\nQui puoi gestire le impostazioni di sintesi vocale (ad esempio, scaricare un language pack per l\'utilizzo offline) e selezionare un altro motore di sintesi vocale.</string>
	<string name="prefs_languages_information_off_link">Per maggiori informazioni, consulta questa guida.</string>
	<string name="whatsnew_transliteration_title">Traslitterazione in latino</string>
	<string name="whatsnew_transliteration_message">Se una strada o un oggetto non ha un nome nella tua lingua, tale nome sarà scritto utilizzando l\'alfabeto latino.</string>
	<string name="learn_more">Ulteriori informazioni</string>
	<string name="core_exit">Esci</string>
	<string name="routing_add_start_point">Aggiungi un punto di partenza per pianificare un percorso</string>
	<string name="routing_add_finish_point">Aggiungi un punto di arrivo per pianificare un percorso</string>
	<string name="onboarding_welcome_message">Mappe gratuite, veloci, dettagliate e interamente offline con navigazione turn-by-turn.</string>
	<!-- нужно как-то выделять документы, чтобы привязать позже ссылки. -->
	<string name="onboarding_welcome_agree">Lanciando l\'applicazione, accetti i Termini di utilizzo e l\'Informativa sulla privacy.</string>
	<string name="button_accept_and_continue">Accetta e continua</string>
	<string name="button_learn_more">Ulteriori informazioni</string>
	<string name="onboarding_storage_permissions_title">Concedi l\'accesso</string>
	<string name="onboarding_storage_permissions_message">Modifica le impostazioni di autorizzazione sul tuo dispositivo. Si richiede l\'accesso alla memoria per utilizzare MAPS.ME.</string>
	<string name="button_exit">Esci</string>
	<string name="onboarding_detail_permissions_title">MAPS.ME richiede l\'accesso a</string>
	<!-- Default permission's name from Android settings. -->
	<string name="onboarding_detail_permissions_storage_title">Memoria</string>
	<string name="onboarding_detail_permissions_storage_message">Per salvare e utilizzare le mappe scaricate offline, come pure per salvare i preferiti.</string>
	<!-- Default permission's name from Android settings. -->
	<string name="onboarding_detail_permissions_location_title">Posizione</string>
	<string name="onboarding_detail_permissions_location_message">Per vedere luoghi e traffico vicino a te e usare la funzione di navigazione.</string>
	<string name="onboarding_detail_permissions_storage_path_message">Puoi anche modificare la destinazione delle mappe scaricate dalle impostazioni.</string>
	<string name="settings_device_memory">Memoria del dispositivo</string>
	<string name="settings_card_memory">Scheda di memoria</string>
	<string name="settings_storage_available">%s disponibile</string>
	<string name="toast_location_permission_denied">Autorizzazione a posizione app negata</string>
	<string name="button_use">Usa</string>
	<string name="planning_route_manage_route">Gestisci percorso</string>
	<string name="button_plan">Pianifica</string>
	<string name="button_add">Aggiungi</string>
	<string name="placepage_remove_stop">Rimuovi</string>
	<string name="planning_route_remove_title">Trascina qui per rimuovere</string>
	<string name="dialog_change_start_point_message">Sostituire il punto di partenza con la posizione corrente?</string>
	<string name="button_replace">Sostituisci</string>
	<string name="placepage_add_stop">Aggiungi sosta</string>
	<string name="whatsnew_intermediate_point_title">Ulteriore sosta</string>
	<string name="whatsnew_intermediate_point_message">Pianifica un percorso con un punto intermedio.</string>
	<string name="add_my_position">Aggiungi mia posizione</string>
	<string name="choose_start_point">Scegli un punto di partenza</string>
	<string name="choose_destination">Scegli una destinazione</string>
	<string name="preloader_viator_button">Ulteriori informazioni</string>
	<string name="whats_new_title_route">Piste ciclabili e percorsi pedonali migliorati</string>
	<string name="whats_new_message_route">Abbiamo corretto gli errori, reso la creazione dei percorsi notevolmente più veloce e aggiunto soste intermedie</string>
	<string name="whats_new_message_title_update">Abbiamo reso gli aggiornamenti mappa 10 volte più piccoli</string>
	<string name="whats_new_message_maps_update">Per aggiornare una mappa, ora devi solo scaricare i dati mancanti</string>
	<string name="start_from_my_position">Parti da</string>
	<string name="rating">Voto</string>
	<string name="placepage_no_reviews">Nessuna recensione</string>
	<string name="placepage_reviewed">Hai già recensito questa località</string>
	<string name="placepage_summary_rating">Riepilogo valutazione</string>
	<plurals name="placepage_summary_rating_description">
	  <item quantity="other">Basato su %d recensioni</item>
	</plurals>
	<string name="placepage_rate_comment">Tocca per valutare e recensire questa località.</string>
	<string name="placepage_rate_horrible">Pessimo</string>
	<string name="placepage_rate_bad">Scarso</string>
	<string name="placepage_rate_normal">Normale</string>
	<string name="placepage_rate_good">Buono</string>
	<string name="placepage_rate_excellent">Eccellente</string>
	<string name="placepage_reviews_most_recent">Più recenti</string>
	<string name="placepage_reviews_most_useful">Più utili</string>
	<string name="placepage_reviews_highest_rated">Valutazioni migliori</string>
	<string name="placepage_reviews_lowest_rated">Valutazioni peggiori</string>
	<string name="placepage_reviews_offline_comment">In modalità offline sono mostrate solo le recensioni più utili</string>
	<string name="placepage_reviews_your_comment">La tua recensione</string>
	<string name="placepage_reviews_unhelpful">Inutile</string>
	<string name="placepage_reviews_inappropriate">Inappropriata</string>
	<string name="placepage_reviews_spam">Spam</string>
	<string name="placepage_reviews_hint">Quali sono i pregi o quali i difetti?</string>
	<string name="placepage_reviews_edit_your_review">Modifica la tua recensione</string>
	<string name="placepage_reviews_new_review">Nuova recensione</string>
	<string name="placepage_translate_button">Traduci</string>
	<string name="placepage_show_original_button">Mostra originale</string>
	<string name="placepage_more_reviews_booking_button">Altre recensioni su Booking.com</string>
	<string name="profile_authorization_title">Accedi con</string>
	<string name="profile_authorization_message">Semplice accesso senza login e password in un paio di secondi</string>
	<string name="profile_authorization_error">Ops, si è verificato un errore. Prova a ripetere l\'accesso più tardi.</string>
	<string name="service">Servizio</string>
	<string name="atmosphere">Atmosfera</string>
	<string name="value_for_money">Rapporto qualità/prezzo</string>
	<string name="experience">Esperienza</string>
	<string name="assortment">Assortimento</string>
	<string name="expertise">Competenza</string>
	<string name="equipment">Attrezzature</string>
	<string name="quality">Qualità</string>
	<string name="whats_new_ugc_title_updated_v840">Valutazioni e recensioni</string>
	<string name="whats_new_ugc_message">Ora puoi lasciare le tue valutazioni e recensioni anche offline! Non dimenticare di aggiornare le tue mappe per vedere le modifiche.</string>
	<string name="dialog_error_storage_title">Problema di accesso all\'archivio</string>
	<string name="dialog_error_storage_message">Archivio esterno non disponibile, probabilmente la scheda SD è stata rimossa, è danneggiata o il file system è di sola lettura. Controllala e contattaci su support\@maps.me</string>
	<string name="setting_emulate_bad_storage">Simula archivio danneggiato</string>
	<string name="discovery_button_title">Scopri nelle vicinanze</string>
	<string name="discovery_button_subtitle_things_to_do">Cose da fare</string>
	<string name="discovery_button_subtitle_attractions">Luoghi di interesse</string>
	<string name="discovery_button_subtitle_eat_and_drink">Bere e mangiare</string>
	<string name="discovery_button_subtitle_local_guides">Guide locali</string>
	<string name="discovery_button_viator_error_title">Errore nel caricamento dei dati</string>
	<string name="discovery_button_other_error_message">Errore nel caricamento dei dati</string>
	<string name="discovery_button_other_loading_message">Caricamento dei dati</string>
	<string name="discovery_button_404_error_title">Non trovato</string>
	<string name="discovery_button_404_error_message">Ops, non abbiamo trovato nulla di interessante nei dintorni.</string>
	<string name="booking_filters_check_in">Check-in</string>
	<string name="booking_filters_check_out">Check-out</string>
	<string name="booking_filters_offline">Non disponibile offline.</string>
	<string name="directions_finish">Destinazione</string>
	<string name="directions_on_foot">Percorri %s</string>
	<string name="core_entrance">Ingresso</string>
	<string name="coffee">Caffè</string>
	<string name="cleanliness">Pulizia</string>
	<string name="crowdedness">Clientela</string>
	<string name="error_enter_correct_name">Inserisci un nome corretto</string>
	<string name="hotel_available">Disponibile</string>
	<string name="whats_new_transit_title">Sottopassaggi disponibili</string>
	<string name="whats_new_transit_message">Definisci i percorsi utilizzando i sottopassaggi! Aggiorna le mappe per visualizzare le modifiche.</string>
	<string name="whats_new_discovery_title">Pulsante di scoperta</string>
	<string name="whats_new_discovery_message">Scopri cosa ti circonda in un click!</string>
	<string name="price_per_hour">%s/ora</string>
	<string name="bookmarks_backup">Abilita backup</string>
	<string name="authorization_button_sign_in">Accedi</string>
	<string name="bookmarks_message_authorized_user">Il backup dei tuoi preferiti è eseguito automaticamente su un servizio di archiviazione cloud protetto. Abilitare il backup?</string>
	<string name="bookmarks_message_unauthorized_user">Il backup dei tuoi preferiti è eseguito automaticamente su un servizio di archiviazione cloud protetto. Accedi per abilitare il backup.</string>
	<string name="bookmarks_message_unbackuped_user">Il backup dei tuoi preferiti è eseguito automaticamente su un servizio di archiviazione cloud protetto.</string>
	<string name="bookmarks_message_backuped_user">Il backup dei tuoi preferiti è eseguito automaticamente su un servizio di archiviazione cloud protetto. Ultimo backup %s</string>
	<string name="settings_backup_bookmarks">Backup preferiti</string>
	<string name="bookmarks_groups">Elenchi</string>
	<string name="bookmarks_groups_hide_all">Nascondi tutto</string>
	<string name="bookmarks_groups_show_all">Mostra tutto</string>
	<plurals name="bookmarks_places">
	  <item quantity="other">%d preferiti</item>
	</plurals>
	<string name="bookmarks_create_new_group">Crea una nuova lista</string>
	<string name="downloader_hide_screen">Nascondi schermata</string>
	<string name="downloader_percent">%1$s (%2$s di %3$s)</string>
	<string name="downloader_process">Download di %s...</string>
	<string name="downloader_applying">Applicazione di %s...</string>
	<string name="transit_not_found">La navigazione in transito in questa regione non è ancora disponibile</string>
	<string name="whats_new_title_hotel_filter">Nuovi filtri hotel disponibili!</string>
	<string name="whats_new_message_hotel_filter">Prenota gli hotel disponibili nelle tue date! Usa i filtri per check-in e check-out</string>
	<string name="whats_new_title_ugc_travel">Condividi la tua esperienza con altri viaggiatori!</string>
	<string name="whats_new_message_ugc_travel">Vota e recensisci i luoghi che hai visitato!</string>
	<string name="dialog_pedestrian_route_is_long">La strada pedonale è troppo lunga</string>
	<string name="dialog_message_transit_not_found_connection">Pianifica un percorso all\'interno di una rete di transito</string>
	<string name="bookmarks_error_message_share_general">Impossibile condividere a causa di un errore dell\'applicazione</string>
	<string name="bookmarks_error_title_share_empty">Errore di condivisione</string>
	<string name="bookmarks_error_message_share_empty">Impossibile condividere una lista vuota</string>
	<string name="discovery_button_subtitle_book_hotels">Prenota hotel</string>
	<string name="bookmarks_error_title_empty_list_name">Il nome non può essere vuoto</string>
	<string name="bookmarks_error_message_empty_list_name">Si prega di inserire il nome della lista</string>
	<string name="bookmarks_new_list_hint">Nuova lista</string>
	<string name="bookmarks_error_title_list_name_already_taken">Questo nome è già stato scelto</string>
	<string name="bookmarks_error_message_list_name_already_taken">Si prega di scegliere un altro nome</string>
	<string name="bookmarks_error_title_list_name_too_long">Questo nome è troppo lungo</string>
	<string name="bookmarks_error_message_list_name_too_long">Si prega di scegliere un altro nome</string>
	<string name="please_wait">Attendere prego...</string>
	<string name="phone_number">Numero di telefono</string>
	<string name="notification_unsent_reviews_title">Hai diverse recensioni non inviate</string>
	<string name="notification_unsent_reviews_message">Accedi per condividere recensioni con altri viaggiatori</string>
	<string name="profile">Profilo OpenStreetMap</string>
	<string name="place_page_search_similar_hotel">Cerca hotel simili</string>
	<string name="bookmarks_detect_title">Nuovi file rilevati</string>
	<plurals name="bookmarks_detect_message">
	  <item quantity="one">%d file è stato trovato. Lo vedrai dopo la conversione.</item>
	  <item quantity="other">%d file trovati Li vedrai dopo la conversione.</item>
	</plurals>
	<string name="button_convert">Convertire</string>
	<string name="bookmarks_convert_error_title">Errore</string>
	<string name="bookmarks_convert_error_message">Alcuni file non sono stati convertiti.</string>
	<string name="converting">Conversione...</string>
	<string name="wn_reinvented_bookmarks_title">Abbiamo reinventato i segnalibri!</string>
	<string name="wn_reinvented_bookmarks_message">Puoi fare il backup dei segnalibri, creare liste... È incredibile...</string>
	<string name="wn_way_of_booking_title">Abbiamo reimmaginato il modo di prenotare!</string>
	<string name="wn_way_of_booking_message">Basta trovare un hotel sulla mappa e prenotarlo, o selezionare quello simile.</string>
	<string name="bookmarks_restore">Ripristina segnalibri</string>
	<string name="bookmarks_restore_process">Ripristino...</string>
	<string name="bookmarks_restore_title">Ripristina questa versione?</string>
	<string name="bookmarks_restore_message">I tuoi segnalibri verranno ripristinati da %1$s (%2$s)</string>
	<string name="bookmarks_restore_empty_title">Non hai un backup</string>
	<string name="bookmarks_restore_empty_message">Il server non ha trovato i backup creati in precedenza</string>
	<string name="common_check_internet_connection_dialog_title">Nessuna connessione internet</string>
	<string name="error_server_title">Errore del server</string>
	<string name="error_server_message">Si è verificato un errore sul server, riprova più tardi</string>
	<string name="error_system_message">Si è verificato un errore sconosciuto</string>
	<string name="restore">Ristabilire</string>
	<string name="sign_message_gdpr">Per continuare, devi accettare i nostri Termini di utilizzo e la nostra Informativa sulla Privacy. Ti invitiamo a leggerli attentamente.</string>
	<string name="sign_agree_pp_gdpr">Accetto la &lt;a href="%s">Informativa sulla Privacy&lt;/a></string>
	<string name="sign_agree_tof_gdpr">Accetto i &lt;a href="%s">Termini di utilizzo&lt;/a></string>
	<string name="sign_agree_news_gdpr">Accetto di ricevere le ultime notizie sui prodotti di MAPS.ME</string>
	<string name="whats_new_localbiz_title">La piccola impresa merita attenzione</string>
	<string name="whats_new_localbiz_message">Sono le caffetterie locali, gli ostelli accoglienti e i negozi che rendono indimenticabili i nostri viaggi. Ottimizzeremo la tua pagina in MAPS.ME per farla risaltare.</string>
	<string name="whats_new_order_button">Lascia una richiesta</string>
	<string name="bookmarks_page_downloaded">Scaricati</string>
	<string name="bookmarks_page_my">I miei</string>
	<string name="routes_and_bookmarks">Percorsi e segnalibri</string>
	<string name="bookmarks_webview_success_toast">Segnalibri scaricati con successo</string>
	<string name="cached_bookmarks_placeholder_title">Scarica nuovi posti</string>
	<string name="cached_bookmarks_placeholder_subtitle">Premi il pulsante per scaricare migliaia di luoghi e percorsi interessanti creati dagli utenti di MAPS.ME. Avrai bisogno della connessione internet.</string>
	<string name="downloader_download_routers">Scarica i segnalibri</string>
	<string name="bookmarks_groups_cached">Elenchi scaricati da</string>
	<string name="author_name_by_prefix">%s</string>
	<plurals name="bookmarks_objects">
	  <item quantity="other">%s oggetto</item>
	</plurals>
	<plurals name="objects">
	  <item quantity="other">%d luogo</item>
	</plurals>
	<plurals name="places">
	  <item quantity="other">%d luoghi</item>
	</plurals>
	<plurals name="tracks">
	  <item quantity="other">%d tracce</item>
	</plurals>
	<string name="subtittle_opt_out">Impostazioni di tracciamento</string>
	<string name="opt_out_flurry">Statistica</string>
	<string name="opt_out_mopub">Pubblicità personalizzata</string>
	<string name="opt_out_fabric">Rapporto incidenti</string>
	<string name="opt_out_fabric_description">Potremmo utilizzare i tuoi dati per migliorare l\'esperienza MAPS.ME. Le modifiche avranno effetto dopo il riavvio dell\'applicazione.</string>
	<string name="opt_out_help_ios_1">Il tuo dispositivo mobile potrebbe fornire un\'impostazione «Limita monitoraggio annunci» o «Disattiva la pubblicità mirata».</string>
	<string name="opt_out_help_ios_2">iOS 9 o versioni successive</string>
	<string name="opt_out_help_ios_3">Vai a Impostazioni → Privacy → Pubblicità → Abilita l\'impostazione «Limita monitoraggio degli annunci»</string>
	<string name="opt_out_help_android">Il tuo dispositivo mobile potrebbe fornire un\'impostazione «Limita monitoraggio annunci» o «Disattiva pubblicità mirata». \n\nPer Android e Google Play Services versione 4.0 e successive:\nImpostazioni → Google → Annunci → Disattiva personalizzazione annunci \né\nImpostazioni → Google → Account Google → Informazioni personali e privacy → Impostazioni annunci → Personalizzazione annunci</string>
	<string name="privacy_policy">Politica sulla riservatezza</string>
	<string name="terms_of_use">Condizioni d\'uso</string>
	<string name="backup_notification_failed">Il backup dei segnalibri è stato sospeso. Accedi per riaccenderlo.</string>
	<string name="banner_megafon_banner_message">Dì addio al roaming internazionale!</string>
	<string name="banner_megafon_banner_button">Addio!</string>
	<string name="button_layer_traffic">Traffico</string>
	<string name="button_layer_subway">Metropolitana</string>
	<string name="layers_title">Livelli mappa</string>
	<string name="layers_message">Usa i livelli mappa per visualizzare il traffico, la mappa della metropolitana e altre informazioni utili</string>
	<string name="button_layer_got_it">Fatto</string>
	<string name="subway_data_unavailable">La mappa della metropolitana non è disponibile</string>
	<string name="bookmarks_empty_list_title">Questa lista è vuota</string>
	<string name="bookmarks_empty_list_message">Per aggiungere un segnalibro, toccare un punto sulla mappa e successivamente toccare l\'icona a forma di stella</string>
	<string name="category_desc_more">…altro</string>
	<string name="title_error_downloading_bookmarks">Si è verificato un errore</string>
	<string name="subtitle_error_downloading_bookmarks">I segnalibri non sono stati scaricati</string>
	<string name="whats_new_bookmarks_catalog_title">MAPS.ME ora ha un catalogo di percorsi</string>
	<string name="whats_new_bookmarks_catalog_message">Centinaia di itinerari dettagliati in tutto il mondo: dove andare, cosa vedere, dove mangiare.</string>
	<string name="whats_new_popularity_label_title">Luoghi popolari nelle vicinanze</string>
	<string name="whats_new_popularity_label_message">La sezione Cosa fare ti aiuterà a trovare i luoghi più popolari della città.</string>
	<string name="whats_new_hot_offers_title">Offerte interessanti dagli hotel</string>
	<string name="whats_new_hot_offers_message">Puoi cercarli utilizzando la categoria Alberghi nella ricerca. Le offerte saranno contrassegnate dal simbolo percentuale sulla mappa e nei risultati della ricerca.</string>
	<string name="error_already_downloaded">Questa lista è già stata scaricata</string>
	<string name="guides">Guide</string>
	<string name="guide_downloaded_title">La guida è stata scaricata correttamente</string>
	<string name="download_guides">Scarica le guide</string>
	<string name="cached_guides_placeholder_subtitle">Guide dettagliate offline per qualsiasi tipo di viaggio. Scegli quella che preferisci e scaricala direttamente sulla mappa. Per scaricare le guide, è necessaria una connessione a Internet.</string>
	<string name="guides_groups_cached">Guide scaricate</string>
	<string name="subtitle_error_downloading_guide">La guida non è stata scaricata</string>
	<string name="error_already_downloaded_guide">La guida è già stata scaricata</string>
	<string name="guide_downloaded_subtitle">Premi \"Visualizza sulla mappa\" per esplorare la guida</string>
	<string name="bookmarks_guides">Segnalibri e guide</string>
	<string name="remove_ads">Disattivare la pubblicità</string>
	<string name="remove_ads_title">Disattiva tutta la pubblicità e sostieni MAPS.ME</string>
	<string name="paybtn_title">Pagare %s/anno</string>
	<string name="paybtn_subtitle">Risparmio %s/anno</string>
	<string name="options_dropdown_title">Altre opzioni</string>
	<string name="why_support">Perché sostenere MAPS.ME?</string>
	<string name="options_dropdown_item1">%1$s/mese (risparmio %2$s/anno)</string>
	<string name="options_dropdown_item2">%s/settimana (nessun risparmio)</string>
	<string name="why_support_item1">Noi disattiviamo tutta la pubblicità</string>
	<string name="why_support_item2">Voi ci aiutate a migliorare MAPS.ME</string>
	<string name="why_support_item3">Ci aiutate a migliorare le mappe OpenStreetMaps.org</string>
	<string name="purchase_processing">Il tuo acquisto è in fase di elaborazione…</string>
	<string name="tips_bookmarks_catalog_title">La guida offline per i vostri viaggi</string>
	<string name="tips_bookmarks_catalog_message">Potete scaricare l\'applicazione e fare itinerari turistici nelle diverse città del mondo.</string>
	<string name="tips_discover_button_title">Volete trovare i locali più belli nelle vicinanze?</string>
	<string name="tips_discover_button_message">Nella pagina «Scopri nelle vicinanze» troverete le migliori scelte di ristoranti, alberghi e punti di interesse.</string>
	<string name="tips_book_hotel_title">Potete prenotare gli alberghi più confortevoli</string>
	<string name="tips_book_hotel_message">Applicare i filtri per effettuare la ricerca personalizzata dei migliori alberghi. Per effettuare la prenotazione diretta basta scegliere l\'albergo e cliccare sul tasto «Prenota».</string>
	<string name="tips_map_layers_title">Non conoscete la stazione metropolitana, dove è possibile cambiare la linea?</string>
	<string name="tips_map_layers_message">E\' possibile visualizzare la mappa di metropolitana attivando l\'apposito livello. Non vi perderete mai in una nuova città.</string>
	<string name="channels_map_update">Rinnovare la carta</string>
	<string name="channels_reviews">Recensioni non inviate</string>
	<string name="purchase_loading">Caricare informazioni sugli acquisti…</string>
	<string name="purchase_error_subtitle">Si è verificato un errore durante l\'elaborazione dell\'acquisto</string>
	<string name="awaiting_approval">Aspettiamo la conferma dei genitori</string>
	<string name="whats_new_leave_review">Scrivere la recensione! Condividete le vostre emozioni sui luoghi visitati in vacanza.</string>
	<string name="server_unavailable_title">Server non è disponibile</string>
	<string name="server_unavailable_message">L\'acquisto verrà completato più tardi. Se l\'errore persiste, si prega di contattare support\@maps.me.</string>
	<string name="offline_fiters_check_in">Per scegliere la data di check-in e check-out bisogna collegarsi a internet.</string>
	<string name="restore_subscription">Ripristina l\'abbonamento</string>
	<string name="restore_success_alert">L\'abbonamento è stato ripristinato correttamente</string>
	<string name="restore_error_alert">Si è verificato un errore durante il ripristino dell\'abbonamento</string>
	<string name="restore_no_subscription_alert">Non vi sono abbonamenti attivi</string>
	<string name="subscription_terms">Il pagamento verrà addebitato sul tuo account iTunes alla conferma dell\'acquisto. L\'abbonamento verrà rinnovato automaticamente a meno che l\'opzione di rinnovo automatico non venga disattivata almeno 24 ore prima del termine dell\'attuale periodo di fatturazione. L\'addebito sull\'account dipenderà dal piano di rinnovo e verrà effettuato nelle 24 ore precedenti alla fine del ciclo di fatturazione esistente. Puoi gestire o disattivare il rinnovo automatico dalle impostazioni dell\'account Apple ID in qualsiasi momento.</string>
	<string name="subscriptions_title">Abbonamenti</string>
	<string name="manage_subscription">Gestisci abbonamento</string>
	<string name="sharing_options">Impostazione accesso</string>
	<string name="export_file">Esportare il file</string>
	<string name="list_settings">Impostazioni elenco</string>
	<string name="delete_list">Cancella elenco</string>
	<string name="hide_from_map">Nascondere sulla mappa</string>
	<string name="ugc_route_tags_screen_label">Impostare tag</string>
	<string name="ugc_route_tags_progress_msg">Stiamo caricando tag…</string>
	<string name="public_access">Accesso pubblico</string>
	<string name="limited_access">Accesso privato</string>
	<string name="upload_and_publish_desc">La seguente guida verrà caricata sul catalogo pubblico MAPS.ME in open access</string>
	<string name="upload_and_publish">Caricare e pubblicare</string>
	<string name="upload_and_get_direct_link">Caricare e ricevere il link</string>
	<string name="get_direct_link_desc">La tua guida è accessibile tramite il link diretto</string>
	<string name="upload_and_publish_progress_text">La guida si sta caricando…</string>
	<string name="upload_and_publish_success">La guida è stata pubblicata</string>
	<string name="ugc_routes_user_agreement">&lt;b>ATTENZIONE!&lt;/b> Andando avanti accettate &lt;a href="%s">il contratto di licenza&lt;/a></string>
	<string name="ugc_route_edit_list_name">Nome della Guida</string>
	<string name="ugc_route_edit_description_hint">Aggiungere la descrizione (testo o html)</string>
	<string name="not_shared">Personale</string>
	<string name="direct_link_progress_text">Il file si sta caricando…</string>
	<string name="direct_link_success">Il link è stato creato</string>
	<string name="edit_guide_title">Modificare la tua guida online</string>
	<string name="edit_guide_subtitle">Ricevere il link per modificare la guida tramite l\'App: inserire una descrizione per il posto, caricare foto e collegare i tag.</string>
	<string name="send_a_link_btn">Mandare il link</string>
	<string name="upload_error_toast">Errore durante il caricamento</string>
	<string name="tags_loading_error_subtitle">Si è verificato un errore durante il caricamento dei tag. Si prega di riprovare</string>
	<string name="unable_upload_errorr_title">Il file non è stato caricato</string>
	<string name="unable_upload_error_subtitle_edited">Il file è stato modificato tramite web App</string>
	<string name="unable_upload_error_subtitle_broken">Il file è danneggiato e non può essere caricato. Si prega di caricare un altro file.</string>
	<string name="buy_btn">Acquistare a %s</string>
	<string name="download_guide_progress">La guida si sta caricando…</string>
	<string name="price_error_title">Impossibile conoscere il prezzo</string>
	<string name="price_error_subtitle">Si prega di riprovare più tardi</string>
	<string name="edit_your_guide_email_body">Modificare sul PC: inserire una descrizione per il posto, caricare foto e collegare i tag.</string>
	<string name="edit_on_web">Modificare online</string>
	<string name="properties_loading_error_subtitle">Si è verificato un errore durante il caricamento delle opzioni. Si prega di riprovare</string>
	<string name="custom_props_desc">La presente guida è stata creata da</string>
	<string name="custom_props_title">Uno del posto o un turista</string>
	<string name="custom_props_local">del posto</string>
	<string name="custom_props_traveler">turista</string>
	<string name="select_properties">Scegliere opzioni</string>
	<string name="access_rules_p_to_p">Accesso speciale</string>
	<string name="access_rules_paid">Acquistato</string>
	<string name="failed_purchase_support_message">Non hai terminato l\'acquisto. Per risolvere il problema si prega di contattare il servizio assistenza.</string>
	<string name="contact">Scrivere</string>
	<string name="check_price_button">Conoscere il prezzo</string>
	<string name="download_button">Scaricare</string>
	<string name="speedcams_alert_title">Atovelox o Tutor</string>
	<string name="speedcams_alert_subtitle">Avvisare sul limite della velocità</string>
	<string name="speedcam_option_auto">Auto</string>
	<string name="speedcam_option_always">Sempre</string>
	<string name="speedcam_option_never">Mai</string>
	<string name="bookmark_description_title">Descrizione tag</string>
	<string name="place_description_title">Descrizione luogo</string>
	<string name="ugc_routes_error_uploading_file_toast">Si è verificato un errore durante il caricamento. Si prega di riprovare.</string>
	<string name="notification_channel_ugc">Contenuto creato dagli utenti</string>
	<!-- this text will be shown in application notification preferences opposite checkbox which enable/disable downloader notifications. Devices on Android 8+ are affected. -->
	<string name="notification_channel_downloader">Caricamento mappe</string>
	<string name="notification_leave_review_title">%s - ti piace quì?</string>
	<string name="notification_leave_review_content">Lascia una recensione ed aiuta altri viaggiatori!</string>
	<string name="share_bookmarks_email_body_link">Ciao,\n\npuoi scaricare i tag dal seguente link: %s. Aprire elenco tramite MAPS.ME e godersi viaggio!\n\nScaricare l\'App: http://maps.me/get?kmz</string>
	<string name="warning_speedcams_title">Il navigatore avvisa della presenza della telecamere in caso di eccesso velocità di %d km/o</string>
	<string name="warning_speedcams_subtitle">Ricorda di informarti sul Codice della Strada del paese che visiti.</string>
	<string name="speedcams_notice_message">Auto - Avvisare di autovelox in caso di rischio eccesso velocità\nSempre - avvisare sempre di autovelox\nMai - Non avvisare mai di autovelox</string>
	<string name="whats_new_ugc_routes_title">È facile condividere le tue impressioni</string>
	<string name="whats_new_ugc_routes_subtitle">Salva luoghi memorabili, crea itinerari utilizzando i segnalibri e condividili con tutti nel catalogo MAPS.ME.</string>
	<string name="whats_new_webeditor_title">Trasforma i tuoi percorsi in storie</string>
	<string name="whats_new_ugc_routes_message2">Aggiungi foto e storie dettagliate nell\'editor web.</string>
	<string name="whatsnew_standard_routes_title">Itinerari standard</string>
	<string name="whatsnew_standard_routes_message">Punti d\'interesse principali con una breve descrizione. Divertimento garantito!</string>
	<string name="whatsnew_city_overview_title">Visita della città</string>
	<string name="whatsnew_city_overview_message">Fino a 200 attrazioni sulla mappa della città: tutto utile ed interessante per chi viaggia!</string>
	<string name="whatsnew_pro_guides_title">Itinerari professionali</string>
	<string name="whatsnew_pro_guides_message">Gli itinerari più precisi con una descrizione dettagliata. Possibilità di calcolare la distanza e i tempi di percorrenza</string>
	<string name="whatsnew_paid_routes_title">Nuove emozioni da scoprire!</string>
	<string name="whatsnew_paid_routes_message">Ora, insieme ai percorsi gratuiti, nel catalogo troverete anche guide a pagamento suddivise in 3 categorie. Più di 700 itinerari nuovi!</string>
	<string name="whats_new_ugc_routes_title_android_only">È facile condividere le tue impressioni</string>

	<!-- SECTION: Types -->
	<string name="type.aerialway.station">Stazione di rifornimento per auto elettriche</string>
	<string name="type.aeroway.aerodrome">Aeroporto</string>
	<string name="type.aeroway.aerodrome.international">Aeroporto</string>
	<string name="type.aeroway.helipad">Piattaforma per elicotteri</string>
	<string name="type.amenity.atm">Bancomat</string>
	<string name="type.amenity.bank">Banca</string>
	<string name="type.amenity.bbq">Picnic</string>
	<string name="type.amenity.bench">Panchina</string>
	<string name="type.amenity.bicycle_parking">Parcheggio biciclette</string>
	<string name="type.amenity.bicycle_rental">Noleggio biciclette</string>
	<string name="type.amenity.brothel">Bordello</string>
	<string name="type.amenity.bureau_de_change">Cambio valute</string>
	<string name="type.amenity.bus_station">Autostazione</string>
	<string name="type.amenity.cafe">Caffè</string>
	<string name="type.amenity.car_rental">Noleggio di automobili</string>
	<string name="type.amenity.car_wash">Lavaggio auto</string>
	<string name="type.amenity.casino">Casinò</string>
	<string name="type.amenity.charging_station">Stazione di ricarica</string>
	<string name="type.amenity.childcare">Asilo</string>
	<string name="type.amenity.clinic">Clinica</string>
	<string name="type.amenity.college">Collegio</string>
	<string name="type.amenity.community_centre">Centro ricreativo</string>
	<string name="type.amenity.courthouse">Tribunale</string>
	<string name="type.amenity.dentist">Dentista</string>
	<string name="type.amenity.doctors">Studio medico</string>
	<string name="type.amenity.drinking_water">Acqua potabile</string>
	<string name="type.amenity.driving_school">Scuola guida</string>
	<string name="type.amenity.embassy">Ambasciata</string>
	<string name="type.amenity.fast_food">Fast food</string>
	<string name="type.amenity.ferry_terminal">Traghetto</string>
	<string name="type.amenity.fire_station">Scuadra antincendio</string>
	<string name="type.amenity.fountain">Fontana</string>
	<string name="type.amenity.fuel">Stazione di rifornimento</string>
	<string name="type.amenity.grave_yard">Cimitero</string>
	<string name="type.amenity.grave_yard.christian">Cimitero</string>
	<string name="type.amenity.hospital">Ospedale</string>
	<string name="type.amenity.hunting_stand">Torre di caccio</string>
	<string name="type.amenity.ice_cream">Chiosco gelati</string>
	<string name="type.amenity.kindergarten">Scuola materna</string>
	<string name="type.amenity.library">Biblioteca</string>
	<string name="type.amenity.marketplace">Mercato</string>
	<string name="type.amenity.motorcycle_parking">Parcheggio moto</string>
	<string name="type.amenity.nightclub">Night club</string>
	<string name="type.amenity.nursing_home">Casa di riposo</string>
	<string name="type.amenity.parking">Parcheggio</string>
	<string name="type.amenity.parking.fee">Parcheggio</string>
	<string name="type.amenity.parking.multi.storey">Parcheggio</string>
	<string name="type.amenity.parking.multi.storey.fee">Parcheggio</string>
	<string name="type.amenity.parking.no.access">Parcheggio</string>
	<string name="type.amenity.parking.park_and_ride">Parcheggio</string>
	<string name="type.amenity.parking.permissive">Parcheggio</string>
	<string name="type.amenity.parking.permissive.fee">Parcheggio</string>
	<string name="type.amenity.parking.private">Parcheggio</string>
	<string name="type.amenity.parking.underground">Parcheggio</string>
	<string name="type.amenity.parking.underground.fee">Parcheggio</string>
	<string name="type.amenity.payment_terminal">Terminale di pagamento</string>
	<string name="type.amenity.pharmacy">Farmacia</string>
	<string name="type.amenity.place_of_worship">Tempio</string>
	<string name="type.amenity.place_of_worship.buddhist">Tempio</string>
	<string name="type.amenity.place_of_worship.christian">Chiesa</string>
	<string name="type.amenity.place_of_worship.hindu">Tempio</string>
	<string name="type.amenity.place_of_worship.jewish">Sinagoga</string>
	<string name="type.amenity.place_of_worship.muslim">Moschea</string>
	<string name="type.amenity.place_of_worship.shinto">Santuario</string>
	<string name="type.amenity.place_of_worship.taoist">Tempio</string>
	<string name="type.amenity.police">Polizia</string>
	<string name="type.amenity.post_box">Casella</string>
	<string name="type.amenity.post_office">Posta</string>
	<string name="type.amenity.public_bookcase">Libreria</string>
	<string name="type.amenity.recycling">Centro di riciclaggio</string>
	<string name="type.amenity.restaurant">Ristorante</string>
	<string name="type.amenity.school">Scuola</string>
	<string name="type.amenity.shelter">Riparo</string>
	<string name="type.amenity.shower">Doccia</string>
	<string name="type.amenity.telephone">Telefono</string>
	<string name="type.amenity.theatre">Teatro</string>
	<string name="type.amenity.toilets">Toilette</string>
	<string name="type.amenity.townhall">Municipio</string>
	<string name="type.amenity.university">Università</string>
	<string name="type.amenity.vending_machine.cigarettes">Distributore automatico di sigarette</string>
	<string name="type.amenity.vending_machine.drinks">Distributore automatico di bibite</string>
	<string name="type.amenity.vending_machine.parking_tickets">Parcometro</string>
	<string name="type.amenity.veterinary">Veterinario</string>
	<string name="type.amenity.waste_basket">Contenitore per rifiuti</string>
	<string name="type.amenity.waste_disposal">Spazzatura</string>
	<string name="type.amenity.water_point">Distributore acqua</string>
	<string name="type.barrier.block">Blocco</string>
	<string name="type.barrier.bollard">Pilastro</string>
	<string name="type.barrier.border_control">Controllo di frontiera</string>
	<string name="type.barrier.entrance">Ingresso</string>
	<string name="type.barrier.gate">Cancello</string>
	<string name="type.barrier.lift_gate">Barriera ferroviaria</string>
	<string name="type.barrier.stile">Scaletta per recinzioni</string>
	<string name="type.barrier.toll_booth">Casello di pedaggio</string>
	<string name="type.boundary.national_park">Parco nazionale</string>
	<string name="type.building">Edificio</string>
	<string name="type.building.address">Edificio</string>
	<string name="type.building.has_parts">Edificio</string>
	<string name="type.building.train_station">Stazione ferroviaria</string>
	<string name="type.craft.brewery">Birrificio</string>
	<string name="type.craft.carpenter">Falegname</string>
	<string name="type.craft.electrician">Elettricista</string>
	<string name="type.craft.gardener">Giardiniere</string>
	<string name="type.craft.hvac">Impianti HVAC</string>
	<string name="type.craft.metal_construction">Fabbro</string>
	<string name="type.craft.painter">Imbianchino</string>
	<string name="type.craft.photographer">Fotografo</string>
	<string name="type.craft.plumber">Idraulico</string>
	<string name="type.craft.shoemaker">Calzolaio</string>
	<string name="type.craft.tailor">Sarto</string>
	<string name="type.cuisine.african">Cucina africana</string>
	<string name="type.cuisine.american">Cucina americana</string>
	<string name="type.cuisine.arab">Cucina araba</string>
	<string name="type.cuisine.argentinian">Cucina argentina</string>
	<string name="type.cuisine.asian">Cucina asiatica</string>
	<string name="type.cuisine.austrian">Cucina austriaca</string>
	<string name="type.cuisine.bagel">Bagel</string>
	<string name="type.cuisine.balkan">Cucina balcanica</string>
	<string name="type.cuisine.barbecue">Barbecue</string>
	<string name="type.cuisine.bavarian">Cucina bavarese</string>
	<string name="type.cuisine.beef_bowl">Gyūdon</string>
	<string name="type.cuisine.brazilian">Cucina brasiliana</string>
	<string name="type.cuisine.breakfast">Colazione</string>
	<string name="type.cuisine.burger">Hamburger</string>
	<string name="type.cuisine.buschenschank">Osteria contadina</string>
	<string name="type.cuisine.cake">Torte</string>
	<string name="type.cuisine.caribbean">Cucina caraibica</string>
	<string name="type.cuisine.chicken">Pollo</string>
	<string name="type.cuisine.chinese">Cucina cinese</string>
	<string name="type.cuisine.coffee_shop">Caffè</string>
	<string name="type.cuisine.crepe">Crêpes</string>
	<string name="type.cuisine.croatian">Cucina croata</string>
	<string name="type.cuisine.curry">Curry</string>
	<string name="type.cuisine.deli">Gastronomia</string>
	<string name="type.cuisine.diner">Ristorantino</string>
	<string name="type.cuisine.donut">Ciambelle</string>
	<string name="type.cuisine.ethiopian">Cucina etiope</string>
	<string name="type.cuisine.filipino">Cucina filippina</string>
	<string name="type.cuisine.fine_dining">Ristorante elegante</string>
	<string name="type.cuisine.fish">Pesce</string>
	<string name="type.cuisine.fish_and_chips">Fish and chips</string>
	<string name="type.cuisine.french">Cucina francese</string>
	<string name="type.cuisine.friture">Fritture</string>
	<string name="type.cuisine.georgian">Cucina georgiana</string>
	<string name="type.cuisine.german">Cucina tedesca</string>
	<string name="type.cuisine.greek">Cucina greca</string>
	<string name="type.cuisine.grill">Cucina alla griglia</string>
	<string name="type.cuisine.heuriger">Heuriger</string>
	<string name="type.cuisine.hotdog">Hot dog</string>
	<string name="type.cuisine.hungarian">Cucina ungherese</string>
	<string name="type.cuisine.ice_cream">Gelateria</string>
	<string name="type.cuisine.indian">Cucina indiana</string>
	<string name="type.cuisine.indonesian">Cucina indonesiana</string>
	<string name="type.cuisine.international">Cucina internazionale</string>
	<string name="type.cuisine.irish">Cucina irlandese</string>
	<string name="type.cuisine.italian">Cucina italiana</string>
	<string name="type.cuisine.italian_pizza">Cucina italiana, pizza</string>
	<string name="type.cuisine.japanese">Cucina giapponese</string>
	<string name="type.cuisine.kebab">Kebab</string>
	<string name="type.cuisine.korean">Cucina coreana</string>
	<string name="type.cuisine.lao">Cucina laotiana</string>
	<string name="type.cuisine.lebanese">Cucina libanese</string>
	<string name="type.cuisine.local">Cucina locale</string>
	<string name="type.cuisine.malagasy">Cucina malgascia</string>
	<string name="type.cuisine.malaysian">Cucina malese</string>
	<string name="type.cuisine.mediterranean">Cucina mediterranea</string>
	<string name="type.cuisine.mexican">Cucina messicana</string>
	<string name="type.cuisine.moroccan">Cucina marocchina</string>
	<string name="type.cuisine.noodles">Noodles</string>
	<string name="type.cuisine.oriental">Cucina orientale</string>
	<string name="type.cuisine.pancake">Pancake</string>
	<string name="type.cuisine.pasta">Pasta</string>
	<string name="type.cuisine.persian">Cucina persiana</string>
	<string name="type.cuisine.peruvian">Cucina peruviana</string>
	<string name="type.cuisine.pizza">Pizza</string>
	<string name="type.cuisine.polish">Cucina polacca</string>
	<string name="type.cuisine.portuguese">Cucina portoghese</string>
	<string name="type.cuisine.ramen">Ramen</string>
	<string name="type.cuisine.regional">Cucina regionale</string>
	<string name="type.cuisine.russian">Cucina russa</string>
	<string name="type.cuisine.sandwich">Panini</string>
	<string name="type.cuisine.sausage">Salsicce</string>
	<string name="type.cuisine.savory_pancakes">Pancake salati</string>
	<string name="type.cuisine.seafood">Frutti di mare</string>
	<string name="type.cuisine.soba">Soba</string>
	<string name="type.cuisine.spanish">Cucina spagnola</string>
	<string name="type.cuisine.steak_house">Bisteccheria</string>
	<string name="type.cuisine.sushi">Sushi</string>
	<string name="type.cuisine.tapas">Tapas</string>
	<string name="type.cuisine.tea">Tè</string>
	<string name="type.cuisine.thai">Cucina tailandese</string>
	<string name="type.cuisine.turkish">Cucina turca</string>
	<string name="type.cuisine.vegan">Cucina vegana</string>
	<string name="type.cuisine.vegetarian">Cucina vegetariana</string>
	<string name="type.cuisine.vietnamese">Cucina vietnamita</string>
	<string name="type.emergency.defibrillator">Defibrillatore</string>
	<string name="type.emergency.fire_hydrant">Idrante</string>
	<string name="type.emergency.phone">Telefono di emergenza</string>
	<string name="type.entrance">Ingresso</string>
	<string name="type.highway.bus_stop">Fermata</string>
	<string name="type.highway.footway">Sentiero</string>
	<string name="type.highway.footway.alpine_hiking">Sentiero</string>
	<string name="type.highway.footway.area">Sentiero</string>
	<string name="type.highway.footway.bridge">Sentiero</string>
	<string name="type.highway.footway.demanding_alpine_hiking">Sentiero</string>
	<string name="type.highway.footway.demanding_mountain_hiking">Sentiero</string>
	<string name="type.highway.footway.difficult_alpine_hiking">Sentiero</string>
	<string name="type.highway.footway.hiking">Sentiero</string>
	<string name="type.highway.footway.mountain_hiking">Sentiero</string>
	<string name="type.highway.footway.permissive">Sentiero</string>
	<string name="type.highway.footway.tunnel">Sentiero</string>
	<string name="type.highway.living_street">Via</string>
	<string name="type.highway.living_street.bridge">Via</string>
	<string name="type.highway.living_street.tunnel">Via</string>
	<string name="type.highway.motorway">Via</string>
	<string name="type.highway.motorway.bridge">Via</string>
	<string name="type.highway.motorway.tunnel">Via</string>
	<string name="type.highway.motorway_link">Via</string>
	<string name="type.highway.motorway_link.bridge">Via</string>
	<string name="type.highway.motorway_link.tunnel">Via</string>
	<string name="type.highway.path">Sentiero</string>
	<string name="type.highway.path.alpine_hiking">Sentiero</string>
	<string name="type.highway.path.bicycle">Sentiero</string>
	<string name="type.highway.path.bridge">Sentiero</string>
	<string name="type.highway.path.demanding_alpine_hiking">Sentiero</string>
	<string name="type.highway.path.demanding_mountain_hiking">Sentiero</string>
	<string name="type.highway.path.difficult_alpine_hiking">Sentiero</string>
	<string name="type.highway.path.hiking">Sentiero</string>
	<string name="type.highway.path.horse">Sentiero</string>
	<string name="type.highway.path.mountain_hiking">Sentiero</string>
	<string name="type.highway.path.permissive">Sentiero</string>
	<string name="type.highway.path.tunnel">Sentiero</string>
	<string name="type.highway.pedestrian">Via</string>
	<string name="type.highway.pedestrian.area">Via</string>
	<string name="type.highway.pedestrian.bridge">Via</string>
	<string name="type.highway.pedestrian.tunnel">Via</string>
	<string name="type.highway.primary">Via</string>
	<string name="type.highway.primary.bridge">Via</string>
	<string name="type.highway.primary.tunnel">Via</string>
	<string name="type.highway.primary_link">Via</string>
	<string name="type.highway.primary_link.bridge">Via</string>
	<string name="type.highway.primary_link.tunnel">Via</string>
	<string name="type.highway.raceway">Pista</string>
	<string name="type.highway.residential">Via</string>
	<string name="type.highway.residential.area">Via</string>
	<string name="type.highway.residential.bridge">Via</string>
	<string name="type.highway.residential.tunnel">Via</string>
	<string name="type.highway.rest_area">Area di sosta</string>
	<string name="type.highway.road">Via</string>
	<string name="type.highway.road.bridge">Via</string>
	<string name="type.highway.road.tunnel">Via</string>
	<string name="type.highway.secondary">Via</string>
	<string name="type.highway.secondary.bridge">Via</string>
	<string name="type.highway.secondary.tunnel">Via</string>
	<string name="type.highway.secondary_link">Via</string>
	<string name="type.highway.secondary_link.bridge">Via</string>
	<string name="type.highway.secondary_link.tunnel">Via</string>
	<string name="type.highway.service">Via</string>
	<string name="type.highway.service.area">Via</string>
	<string name="type.highway.service.bridge">Via</string>
	<string name="type.highway.service.driveway">Via</string>
	<string name="type.highway.service.driveway.area">Via</string>
	<string name="type.highway.service.driveway.bridge">Via</string>
	<string name="type.highway.service.driveway.tunnel">Via</string>
	<string name="type.highway.service.parking_aisle">Via</string>
	<string name="type.highway.service.tunnel">Via</string>
	<string name="type.highway.speed_camera">Autovelox</string>
	<string name="type.highway.steps">Sentiero</string>
	<string name="type.highway.steps.bridge">Sentiero</string>
	<string name="type.highway.steps.tunnel">Sentiero</string>
	<string name="type.highway.tertiary">Via</string>
	<string name="type.highway.tertiary.bridge">Via</string>
	<string name="type.highway.tertiary.tunnel">Via</string>
	<string name="type.highway.tertiary_link">Via</string>
	<string name="type.highway.tertiary_link.bridge">Via</string>
	<string name="type.highway.tertiary_link.tunnel">Via</string>
	<string name="type.highway.track">Via</string>
	<string name="type.highway.track.area">Via</string>
	<string name="type.highway.track.bridge">Via</string>
	<string name="type.highway.track.grade1">Via</string>
	<string name="type.highway.track.grade2">Via</string>
	<string name="type.highway.track.grade3">Via</string>
	<string name="type.highway.track.grade3.no.access">Via</string>
	<string name="type.highway.track.grade3.permissive">Via</string>
	<string name="type.highway.track.grade4">Via</string>
	<string name="type.highway.track.grade4.no.access">Via</string>
	<string name="type.highway.track.grade4.permissive">Via</string>
	<string name="type.highway.track.grade5">Via</string>
	<string name="type.highway.track.grade5.no.access">Via</string>
	<string name="type.highway.track.grade5.permissive">Via</string>
	<string name="type.highway.track.no.access">Via</string>
	<string name="type.highway.track.permissive">Via</string>
	<string name="type.highway.track.tunnel">Via</string>
	<string name="type.highway.traffic_signals">Semaforo</string>
	<string name="type.highway.trunk">Via</string>
	<string name="type.highway.trunk.bridge">Via</string>
	<string name="type.highway.trunk.tunnel">Via</string>
	<string name="type.highway.trunk_link">Via</string>
	<string name="type.highway.trunk_link.bridge">Via</string>
	<string name="type.highway.trunk_link.tunnel">Via</string>
	<string name="type.highway.unclassified">Via</string>
	<string name="type.highway.unclassified.area">Via</string>
	<string name="type.highway.unclassified.bridge">Via</string>
	<string name="type.highway.unclassified.tunnel">Via</string>
	<string name="type.historic.archaeological_site">Sito archeologico</string>
	<string name="type.historic.castle">Castello</string>
	<string name="type.historic.castle.defensive">Castello</string>
	<string name="type.historic.castle.stately">Castello</string>
	<string name="type.historic.memorial">Memoriale</string>
	<string name="type.historic.memorial.plaque">Memoriale</string>
	<string name="type.historic.memorial.sculpture">Memoriale</string>
	<string name="type.historic.memorial.statue">Memoriale</string>
	<string name="type.historic.monument">Monumento</string>
	<string name="type.historic.ruins">Rovine</string>
	<string name="type.historic.ship">Turistico</string>
	<string name="type.historic.tomb">Turistico</string>
	<string name="type.landuse.basin">Bacino</string>
	<string name="type.landuse.cemetery">Cimitero</string>
	<string name="type.landuse.cemetery.christian">Cimitero</string>
	<string name="type.landuse.forest">Foresta</string>
	<string name="type.landuse.forest.coniferous">Foresta</string>
	<string name="type.landuse.forest.deciduous">Foresta</string>
	<string name="type.landuse.forest.mixed">Foresta</string>
	<string name="type.landuse.reservoir">Bacino</string>
	<string name="type.leisure.fitness_centre">Centro benessere</string>
	<string name="type.leisure.fitness_station">Centro fitness</string>
	<string name="type.leisure.garden">Giardino</string>
	<string name="type.leisure.golf_course">Campo da golf</string>
	<string name="type.leisure.nature_reserve">Riserva</string>
	<string name="type.leisure.park">Parco</string>
	<string name="type.leisure.park.no.access">Parco</string>
	<string name="type.leisure.park.permissive">Parco</string>
	<string name="type.leisure.park.private">Parco</string>
	<string name="type.leisure.pitch">Campo sportivo</string>
	<string name="type.leisure.pitch.tennis">Campo sportivo</string>
	<string name="type.leisure.playground">Campo giochi</string>
	<string name="type.leisure.playground.tennis">Campo giochi</string>
	<string name="type.leisure.sports_centre">Centro sportivo</string>
	<string name="type.leisure.sports_centre.climbing">Centro di arrampicata</string>
	<string name="type.leisure.sports_centre.shooting">Poligono di tiro</string>
	<string name="type.leisure.sports_centre.swimming">Centro natatorio</string>
	<string name="type.leisure.sports_centre.yoga">Centro Yoga</string>
	<string name="type.leisure.stadium">Stadio</string>
	<string name="type.leisure.swimming_pool">Piscina</string>
	<string name="type.leisure.water_park">Parco acquatico</string>
	<string name="type.man_made.chimney">Ciminiera industriale</string>
	<string name="type.man_made.lighthouse">Faro</string>
	<string name="type.man_made.surveillance">Videocamera di sorveglianza</string>
	<string name="type.man_made.tower">Torre</string>
	<string name="type.man_made.water_tap">Rubinetto dell\'acqua</string>
	<string name="type.man_made.water_tower">Cisterna per acqua</string>
	<string name="type.man_made.water_well">Pozzo d\'acqua</string>
	<string name="type.man_made.windmill">Mulino a vento</string>
	<string name="type.natural.bay">Baia</string>
	<string name="type.natural.beach">Spiaggia</string>
	<string name="type.natural.cape">Capo</string>
	<string name="type.natural.cave_entrance">Ingresso grotta</string>
	<string name="type.natural.geyser">Geyser</string>
	<string name="type.natural.glacier">Ghiacciaio</string>
	<string name="type.natural.lake">Lago</string>
	<string name="type.natural.peak">Monte</string>
	<string name="type.natural.pond">Stagno</string>
	<string name="type.natural.spring">Sorgente</string>
	<string name="type.natural.tree">Albero</string>
	<string name="type.natural.volcano">Vulcano</string>
	<string name="type.natural.water">Bacino</string>
	<string name="type.natural.wood">Foresta</string>
	<string name="type.natural.wood.coniferous">Foresta</string>
	<string name="type.natural.wood.deciduous">Foresta</string>
	<string name="type.natural.wood.mixed">Foresta</string>
	<string name="type.office">Ufficio</string>
	<string name="type.office.company">Ufficio aziendale</string>
	<string name="type.office.estate_agent">Agenzia immobiliare</string>
	<string name="type.office.government">Ufficio governativo</string>
	<string name="type.office.insurance">Ufficio assicurazioni</string>
	<string name="type.office.lawyer">Studio legale</string>
	<string name="type.office.ngo">Sede ONG</string>
	<string name="type.office.telecommunication">Operatore di telefonia mobile</string>
	<string name="type.place.city">Città</string>
	<string name="type.place.city.capital">Capitale</string>
	<string name="type.place.city.capital.10">Capitale</string>
	<string name="type.place.city.capital.11">Capitale</string>
	<string name="type.place.city.capital.2">Capitale</string>
	<string name="type.place.city.capital.3">Capitale</string>
	<string name="type.place.city.capital.4">Capitale</string>
	<string name="type.place.city.capital.5">Capitale</string>
	<string name="type.place.city.capital.6">Capitale</string>
	<string name="type.place.city.capital.7">Capitale</string>
	<string name="type.place.city.capital.8">Capitale</string>
	<string name="type.place.city.capital.9">Capitale</string>
	<string name="type.place.continent">Continente</string>
	<string name="type.place.country">Paese</string>
	<string name="type.place.county">Contea</string>
	<string name="type.place.farm">Fattoria</string>
	<string name="type.place.hamlet">Piccolo villaggio</string>
	<string name="type.place.island">Isola</string>
	<string name="type.place.islet">Isola</string>
	<string name="type.place.locality">Località</string>
	<string name="type.place.ocean">Oceano</string>
	<string name="type.place.region">Regione</string>
	<string name="type.place.sea">Mare</string>
	<string name="type.place.state">Provincia</string>
	<string name="type.place.state.USA">Provincia</string>
	<string name="type.place.suburb">Quartiere</string>
	<string name="type.place.town">Città</string>
	<string name="type.place.village">Villaggio</string>
	<string name="type.power.pole">Palo elettrico</string>
	<string name="type.power.substation">Sottostazione elettrica</string>
	<string name="type.power.tower">Palo elettrico</string>
	<string name="type.railway.halt">Stazione ferroviaria</string>
	<string name="type.railway.level_crossing">Passaggio a livello</string>
	<string name="type.railway.station">Stazione ferroviaria</string>
	<string name="type.railway.station.light_rail">Stazione ferroviaria</string>
	<string name="type.railway.station.monorail">Stazione ferroviaria</string>
	<string name="type.railway.station.subway">Metrò</string>
	<string name="type.railway.station.subway.barcelona">Metrò</string>
	<string name="type.railway.station.subway.berlin">Metrò</string>
	<string name="type.railway.station.subway.blue">Metrò</string>
	<string name="type.railway.station.subway.brown">Metrò</string>
	<string name="type.railway.station.subway.darkgreen">Metrò</string>
	<string name="type.railway.station.subway.gray">Metrò</string>
	<string name="type.railway.station.subway.green">Metrò</string>
	<string name="type.railway.station.subway.grey">Metrò</string>
	<string name="type.railway.station.subway.kiev">Metrò</string>
	<string name="type.railway.station.subway.lightblue">Metrò</string>
	<string name="type.railway.station.subway.lightgreen">Metrò</string>
	<string name="type.railway.station.subway.london">Metrò</string>
	<string name="type.railway.station.subway.madrid">Metrò</string>
	<string name="type.railway.station.subway.minsk">Metrò</string>
	<string name="type.railway.station.subway.moscow">Metrò</string>
	<string name="type.railway.station.subway.newyork">Metrò</string>
	<string name="type.railway.station.subway.orange">Metrò</string>
	<string name="type.railway.station.subway.paris">Metrò</string>
	<string name="type.railway.station.subway.purple">Metrò</string>
	<string name="type.railway.station.subway.red">Metrò</string>
	<string name="type.railway.station.subway.roma">Metrò</string>
	<string name="type.railway.station.subway.spb">Metrò</string>
	<string name="type.railway.station.subway.violet">Metrò</string>
	<string name="type.railway.station.subway.yellow">Metrò</string>
	<string name="type.railway.subway_entrance">Metrò</string>
	<string name="type.railway.subway_entrance.barcelona">Metrò</string>
	<string name="type.railway.subway_entrance.berlin">Metrò</string>
	<string name="type.railway.subway_entrance.kiev">Metrò</string>
	<string name="type.railway.subway_entrance.london">Metrò</string>
	<string name="type.railway.subway_entrance.madrid">Metrò</string>
	<string name="type.railway.subway_entrance.minsk">Metrò</string>
	<string name="type.railway.subway_entrance.moscow">Metrò</string>
	<string name="type.railway.subway_entrance.newyork">Metrò</string>
	<string name="type.railway.subway_entrance.paris">Metrò</string>
	<string name="type.railway.subway_entrance.roma">Metrò</string>
	<string name="type.railway.subway_entrance.spb">Metrò</string>
	<string name="type.railway.tram_stop">Fermata</string>
	<string name="type.shop">Negozio</string>
	<string name="type.shop.alcohol">Enoteca</string>
	<string name="type.shop.bakery">Panetteria</string>
	<string name="type.shop.beauty">Estetista</string>
	<string name="type.shop.beverages">Bibite</string>
	<string name="type.shop.bicycle">Negozio di biciclette</string>
	<string name="type.shop.bookmaker">Centro scommesse</string>
	<string name="type.shop.books">Libreria</string>
	<string name="type.shop.butcher">Macellaio</string>
	<string name="type.shop.car">Concessionaria</string>
	<string name="type.shop.car_parts">Ricambi auto</string>
	<string name="type.shop.car_repair">Riparazione auto</string>
	<string name="type.shop.car_repair.tyres">Gommista</string>
	<string name="type.shop.chemist">Negozio di detersivi</string>
	<string name="type.shop.chocolate">Negozio</string>
	<string name="type.shop.clothes">Negozio di abbigliamento</string>
	<string name="type.shop.coffee">Negozio</string>
	<string name="type.shop.computer">Negozio di computer</string>
	<string name="type.shop.confectionery">Pasticceria</string>
	<string name="type.shop.convenience">Minimarket</string>
	<string name="type.shop.copyshop">Copisteria</string>
	<string name="type.shop.cosmetics">Cosmetici</string>
	<string name="type.shop.department_store">Grandi magazzini</string>
	<string name="type.shop.doityourself">Ferramenta</string>
	<string name="type.shop.dry_cleaning">Lavaggio a secco</string>
	<string name="type.shop.electronics">Negozio di elettronica</string>
	<string name="type.shop.erotic">Sexy Shop</string>
	<string name="type.shop.fabric">Negozio</string>
	<string name="type.shop.florist">Fiorista</string>
	<string name="type.shop.funeral_directors">Pompe funebri</string>
	<string name="type.shop.furniture">Negozio di mobili</string>
	<string name="type.shop.garden_centre">Vivaio</string>
	<string name="type.shop.gift">Negozio di regali</string>
	<string name="type.shop.greengrocer">Fruttivendolo</string>
	<string name="type.shop.hairdresser">Parrucchiera</string>
	<string name="type.shop.hardware">Ferramenta</string>
	<string name="type.shop.jewelry">Gioielleria</string>
	<string name="type.shop.kiosk">Chiosco</string>
	<string name="type.shop.laundry">Lavanderia</string>
	<string name="type.shop.mall">Il centro commerciale</string>
	<string name="type.shop.massage">Centro massaggi</string>
	<string name="type.shop.mobile_phone">Negozio di telefonia mobile</string>
	<string name="type.shop.money_lender">Negozio</string>
	<string name="type.shop.motorcycle">Negozio di moto</string>
	<string name="type.shop.music">Negozio</string>
	<string name="type.shop.musical_instrument">Negozio</string>
	<string name="type.shop.newsagent">Edicola</string>
	<string name="type.shop.optician">Ottico</string>
	<string name="type.shop.outdoor">Attrezzatura sportiva</string>
	<string name="type.shop.pawnbroker">Pegni</string>
	<string name="type.shop.pet">Negozio di animali</string>
	<string name="type.shop.photo">Negozio di fotografia</string>
	<string name="type.shop.seafood">Pescivendolo</string>
	<string name="type.shop.shoes">Negozio di scarpe</string>
	<string name="type.shop.sports">Negozio sportivo</string>
	<string name="type.shop.stationery">Cartoleria</string>
	<string name="type.shop.supermarket">Supermercato</string>
	<string name="type.shop.tattoo">Studio tatuaggi</string>
	<string name="type.shop.tea">Negozio</string>
	<string name="type.shop.ticket">Biglietteria</string>
	<string name="type.shop.toys">Negozio di giocattoli</string>
	<string name="type.shop.travel_agency">Agenzia viaggi</string>
	<string name="type.shop.tyres">Gommista</string>
	<string name="type.shop.variety_store">Negozio di accessori</string>
	<string name="type.shop.video">Negozio</string>
	<string name="type.shop.wine">Negozio di alcolici</string>
	<string name="type.sport.athletics">Atletica leggera</string>
	<string name="type.sport.basketball">Pallacanestro</string>
	<string name="type.tourism.alpine_hut">Hotel di montagna</string>
	<string name="type.tourism.apartment">Residence</string>
	<string name="type.tourism.artwork">Opere d\'arte</string>
	<string name="type.tourism.artwork.architecture">Opere d\'arte</string>
	<string name="type.tourism.artwork.painting">Opere d\'arte</string>
	<string name="type.tourism.artwork.sculpture">Opere d\'arte</string>
	<string name="type.tourism.artwork.statue">Opere d\'arte</string>
	<string name="type.tourism.attraction">Attrattiva</string>
	<string name="type.tourism.attraction.animal">Attrattiva</string>
	<string name="type.tourism.attraction.specified">Attrattiva</string>
	<string name="type.tourism.camp_site">Campeggio</string>
	<string name="type.tourism.caravan_site">Area per campeggiatori</string>
	<string name="type.tourism.gallery">Turistico</string>
	<string name="type.tourism.guest_house">Guest house</string>
	<string name="type.tourism.hostel">Ostello</string>
	<string name="type.tourism.hotel">Hôtel</string>
	<string name="type.tourism.information">Informazione</string>
	<string name="type.tourism.information.board">Tabellone informativo</string>
	<string name="type.tourism.information.guidepost">Informazione</string>
	<string name="type.tourism.information.map">Mappa turistica</string>
	<string name="type.tourism.information.office">Ufficio turistico</string>
	<string name="type.tourism.museum">Museo</string>
	<string name="type.tourism.picnic_site">Picnic</string>
	<string name="type.tourism.theme_park">Turistico</string>
	<string name="type.tourism.viewpoint">Panorama</string>
	<string name="type.tourism.wilderness_hut">Rifugio</string>
	<string name="type.waterway.canal">Canale</string>
	<string name="type.waterway.canal.tunnel">Canale</string>
	<string name="type.waterway.lock_gate">Sbarramento</string>
	<string name="type.waterway.river">Fiume</string>
	<string name="type.waterway.river.tunnel">Fiume</string>
	<string name="type.waterway.riverbank">Fiume</string>
	<string name="type.waterway.stream">Fiume</string>
	<string name="type.waterway.stream.ephemeral">Fiume</string>
	<string name="type.waterway.stream.intermittent">Fiume</string>
	<string name="type.waterway.stream.tunnel">Fiume</string>
	<string name="type.waterway.waterfall">Cascata</string>
</resources>