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

strings.xml « values-es « res « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 334d74ca935d5eb41d35fe4c3c253098c28953b0 (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
<?xml version="1.0" encoding="utf-8"?>
<!-- Android Strings File -->
<!-- Generated by Twine 1.0.3 -->
<!-- Language: es -->
<resources>
	<!-- SECTION: Strings -->
	<!-- About button text (should be short) -->
	<string name="about">Acerca de</string>
	<!-- Button text (should be short) -->
	<string name="back">Atrás</string>
	<!-- Button text (should be short) -->
	<string name="cancel">Cancelar</string>
	<!-- Button which interrupts country download -->
	<string name="cancel_download">Cancelar descarga</string>
	<!-- Button which deletes downloaded country -->
	<string name="delete">Eliminar</string>
	<!-- Button to dismiss dialog forever -->
	<string name="do_not_ask_me_again">No volver a preguntar</string>
	<!-- Button "do not interrupt download" if user touched actively downloading country -->
	<string name="do_nothing">Seguir descarga</string>
	<string name="download_maps">Descargar mapas</string>
	<!-- Settings/Downloader - Download confirmation button -->
	<string name="download_x_kb">Descargar %qu kB</string>
	<!-- Settings/Downloader - Download confirmation button -->
	<string name="download_x_mb">Descargar %qu MB</string>
	<!-- Settings/Downloader - info for country when download fails -->
	<string name="download_has_failed">Error durante la descarga, iniciar otra vez</string>
	<!-- Settings/Downloader - info for downloaded country -->
	<string name="downloaded_x_y_touch_to_delete">Descargado (%1$qu %2$s), apreté para eliminar</string>
	<!-- Settings/Downloader - country info current download progress -->
	<string name="downloading_x_touch_to_cancel">Descarga %qu%%, presionar para cancelar</string>
	<!-- Settings/Downloader - info for country which started downloading -->
	<string name="downloading">Descargando…</string>
	<string name="get_it_now">Instalar</string>
	<!-- Text to show occasionaly with a proposal to Like our program on Facebook -->
	<string name="share_on_facebook_text">¡Gracias por utilizar MAPS.ME! ¿Te gusta la aplicación? ¡Habla de la aplicación a tus amigos! Sería la mejor muestra de gratitud para nosotros.</string>
	<!-- Choose measurement on first launch alert - choose metric system button -->
	<string name="kilometres">Kilómetros</string>
	<!-- Leave Review dialog - Review button -->
	<string name="leave_a_review">Escribir una opinión|comentario</string>
	<!-- View and button titles for accessibility -->
	<string name="maps">Mapas</string>
	<!-- View and button titles for accessibility -->
	<string name="downloader_maps">Mapas:</string>
	<!-- Settings/Downloader - info for country in the download queue -->
	<string name="marked_for_downloading">Marcado para descarga, presionar para cancelar</string>
	<!-- Choose measurement on first launch alert - choose imperial system button -->
	<string name="miles">Milla</string>
	<!-- View and button titles for accessibility -->
	<string name="core_my_position">Mi posición</string>
	<!-- Settings/Downloader - No free space dialog message -->
	<string name="free_disk_space_for_country_x">No hay espacio suficiente para realizar la descarga %s</string>
	<!-- Leave Review dialog - Not now button (remind me later) -->
	<string name="remind_me_later">Recordarme mas tarde</string>
	<!-- Update maps later/Buy pro version later button text -->
	<string name="later">Luego</string>
	<!-- Leave Review dialog - Complain button (goes to support site) -->
	<string name="report_an_issue">Reportar un problema</string>
	<!-- View and button titles for accessibility -->
	<string name="search">Buscar</string>
	<!-- Search box placeholder text -->
	<string name="search_map">Buscar en el mapa</string>
	<!-- Settings/Downloader - info for not downloaded country -->
	<string name="touch_to_download">Presionar para descargar</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">Recomendamos usar WiFi para descarga de los países grandes</string>
	<!-- Choose measurement on first launch alert - title -->
	<string name="which_measurement_system">¿Cual sistema de medición prefieres?</string>
	<!-- Location services are disabled by user alert - message -->
	<string name="location_is_disabled_long_text">No se puede acceder a los servicios de localización. Por favor, activelo en los ajustes.</string>
	<!-- Location Services are not available on the device alert - message -->
	<string name="device_doesnot_support_location_services">Su dispositivo no es compatible con los servicios de localización</string>
	<!-- View and button titles for accessibility -->
	<string name="zoom_to_country">Mostrar en el mapa</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">^\nañadido a la cola de descarga</string>
	<!-- Message to display at the center of the screen when the country is downloading -->
	<string name="country_status_downloading">Descargando\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">Descargar mapa\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">Descargar mapa</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">Descargar mapa\nsin ruta (^ ^)</string>
	<!-- Message to display at the center of the screen when the country download has failed -->
	<string name="country_status_download_failed">Error durante la descarga</string>
	<!-- Button text for the button under the country_status_download_failed message -->
	<string name="try_again">Intentarla otra vez</string>
	<string name="about_menu_title">Sobre MAPS.ME</string>
	<string name="downloading_touch_to_cancel">Descargando %d%%, presionar para cancelar</string>
	<string name="downloaded_touch_to_delete">Descargado (%s), presionar para eliminar</string>
	<string name="connection_settings">Ajustes de conexión</string>
	<string name="download_mb_or_kb">Descargar %s</string>
	<string name="close">Cerrar</string>
	<string name="unsupported_phone">Un acelerador de hardware OpenGL se requiere. Desafortunadamente, su dispositivo móvil no es compatible.</string>
	<string name="download">Descargar</string>
	<string name="external_storage_is_not_available">La memoria SD/almacenamiento USB con los mapas descargados no está disponible</string>
	<string name="disconnect_usb_cable">Por favor desconectar el cable USB o insertar la memoria SD para usar MAPS.ME</string>
	<string name="not_enough_free_space_on_sdcard">Por favor liberar espacio en la memoria SD/almacenamiento USB para usar la aplicación</string>
	<string name="not_enough_memory">No hay suficiente memoria para iniciar la aplicación</string>
	<string name="free_space_for_country">Por favor liberar %1$s primero para descargar %2$s</string>
	<string name="download_resources">Antes de comenzar, permite que descarguemos en tu dispositivo un mapamundi general.\nSe requieren %s de datos.</string>
	<string name="getting_position">Buscando su ubicación actual</string>
	<string name="download_resources_continue">Ir al mapa</string>
	<string name="downloading_country_can_proceed">Descargando %s. Puede ahora\nproceder al mapa</string>
	<string name="download_country_ask">Descargar %s?</string>
	<string name="update_country_ask">Actualizar %s?</string>
	<!-- REMOVE THIS STRING AFTER REFACTORING -->
	<string name="download_location_map_proposal">Puede descargar el mapa de su ubicación actual</string>
	<!-- REMOVE THIS_STRING AFTER REFACTORING -->
	<string name="download_location_update_map_proposal">Puede actualizar el mapa de su ubicación actual</string>
	<!-- REMOVE THIS STRING AFTER REFACTORING -->
	<string name="download_location_map_up_to_date">El mapa de su ubicación\nactual (%s) está actualizado</string>
	<!-- REMOVE THIS STRING AFTER REFACTORING -->
	<string name="pause">Pausar</string>
	<!-- REMOVE THIS STRING AFTER REFACTORING -->
	<string name="continue_download">Continuar</string>
	<string name="downloaded_touch_to_update">Descargado (%s), presionar para actualizar o borrar</string>
	<string name="update_mb_or_kb">Actualizar %s</string>
	<!-- Show popup notification when we have downloaded countries without search (from Lite version) -->
	<string name="search_update_maps">Necesita los mapas actualizados para la función de búsqueda</string>
	<!-- Show popup notification on app start when we have out-of-date maps -->
	<string name="advise_update_maps">Hay actualizaciones disponibles para estos mapas:</string>
	<!-- Show popup notification in Pro version that Lite can be deleted -->
	<string name="suggest_uninstall_lite">Ahora no necesita MAPS.ME Lite, la puede desinstalar.</string>
	<!-- Show popup notification on top of the map when country was downloaded. -->
	<string name="download_country_success">%s se descargó exitosamente</string>
	<!-- Show popup notification on top of the map when country download has failed. -->
	<string name="download_country_failed">%s la descarga ha fallado</string>
	<!-- Add New Bookmark Set dialog title -->
	<string name="add_new_set">Agregar un grupo nuevo</string>
	<!-- Place Page - Add To Bookmarks button -->
	<string name="add_to_bookmarks">Añadir a Favoritos</string>
	<!-- Bookmark Color dialog title -->
	<string name="bookmark_color">Color del marcador</string>
	<!-- Add Bookmark Set dialog - hint when set name is empty -->
	<string name="bookmark_set_name">Nombre del grupo de marcadores</string>
	<!-- Bookmark Sets dialog title -->
	<string name="bookmark_sets">Grupos de marcadores</string>
	<!-- Bookmarks - dialog title -->
	<string name="bookmarks">Marcadores</string>
	<!-- Default bookmarks set name -->
	<string name="core_my_places">Mis lugares</string>
	<!-- Add bookmark dialog - bookmark name -->
	<string name="name">Nombre</string>
	<!-- Editor title above street and house number -->
	<string name="address">Dirección</string>
	<!-- Place Page - Remove Pin button -->
	<string name="remove_pin">Quitar la etiqueta</string>
	<!-- Add bookmark dialog - bookmark set, Bookmarks dialog - Bookmark set cell -->
	<string name="set">Grupo</string>
	<!-- Text hint in Bookmarks dialog when no any bookmarks are added -->
	<string name="bookmarks_usage_hint">Todavía no tienes favoritos.\nToca en cualquier lugar del mapa y añade favoritos.\nTambién se pueden importar y mostrar marcadores de otras fuentes en la aplicación MAPS.ME. Abre el archivo KML/KMZ con los alfileres guardados desde el correo, Dropbox o Weblink.</string>
	<!-- Text hint in Bookmarks dialog when at least one bookmark is added -->
	<string name="bookmarks_usage_hint_import_only">Se pueden importar y mostrar marcadores de otras fuentes en la aplicación MAPS.ME. Abre el archivo KML/KMZ con los alfileres guardados desde el corre, Dropbox o Weblink.</string>
	<!-- Settings button in system menu -->
	<string name="settings">Ajustes</string>
	<!-- Header of settings activity where user defines storage path -->
	<string name="maps_storage">Guardar mapas en</string>
	<!-- Detailed description of Maps Storage settings button -->
	<string name="maps_storage_summary">Seleccione el lugar donde deben descargarse los mapas</string>
	<!-- Question dialog for transferring maps from one storage to another -->
	<string name="move_maps">¿Mover mapas?</string>
	<!-- Ask to wait user several minutes (some long process in modal dialog). -->
	<string name="wait_several_minutes">Esto podría tardar varios minutos.\nPor favor, espera…</string>
	<!-- Toast which is displayed when GPS has been deactivated -->
	<string name="gps_is_disabled_long_text">El GPS está inhabilitado. Por favor, activelo en los ajustes.</string>
	<!-- Measurement units title in settings activity -->
	<string name="measurement_units">Unidades de medida</string>
	<!-- Detailed description of Measurement Units settings button -->
	<string name="measurement_units_summary">Elija entre millas y kilómetros</string>
	<!-- Do search in all sources -->
	<string name="search_mode_all">Todos</string>
	<!-- Do search near my position only -->
	<string name="search_mode_nearme">Cerca de mí</string>
	<!-- Do search in current viewport only -->
	<string name="search_mode_viewport">En la pantalla</string>
	<!-- Search category for cafes, bars, restaurants -->
	<string name="eat">Dónde comer</string>
	<!-- Search category for grocery stores -->
	<string name="food">Productos</string>
	<!-- Search category -->
	<string name="transport">Transporte</string>
	<!-- Search category -->
	<string name="fuel">Gasolinera</string>
	<!-- Search category -->
	<string name="parking">Aparcamiento</string>
	<!-- Search category for clothes/shoes/gifts/jewellery/sport shops -->
	<string name="shopping">Compras</string>
	<!-- Search category -->
	<string name="hotel">Hotel</string>
	<!-- Search category -->
	<string name="tourism">Turismo</string>
	<!-- Search category -->
	<string name="entertainment">Entretenimiento</string>
	<!-- Search category -->
	<string name="atm">Cajero automático</string>
	<!-- Search category for nightclubs/bars -->
	<string name="nightlife">Vida nocturna</string>
	<!-- Search category for water park/disneyland/playground/toys store -->
	<string name="children">Descanso con niños</string>
	<!-- Search category -->
	<string name="bank">Banco</string>
	<!-- Search category -->
	<string name="pharmacy">Farmacia</string>
	<!-- Search category -->
	<string name="hospital">Hospital</string>
	<!-- Search category -->
	<string name="toilet">WC</string>
	<!-- Search category -->
	<string name="post">Oficina de correos</string>
	<!-- Search category -->
	<string name="police">Policía</string>
	<!-- String in search result list, when nothing found -->
	<string name="no_search_results_found">No se han encontrado resultados</string>
	<!-- Notes field in Bookmarks view -->
	<string name="description">Notas</string>
	<!-- Button text -->
	<string name="share_by_email">Enviar por email</string>
	<!-- Email Subject when sharing bookmarks category -->
	<string name="share_bookmarks_email_subject">Marcapáginas de MAPS.ME compartidos contigo</string>
	<!-- message title of loading file -->
	<string name="load_kmz_title">Cargando favoritos</string>
	<!-- Kmz file successful loading -->
	<string name="load_kmz_successful">¡Los favoritos se han cargado con éxito! Puedes encontrarlos en el mapa o en la pantalla de Gestión de favoritos.</string>
	<!-- Kml file loading failed -->
	<string name="load_kmz_failed">La carga de favoritos ha fallado. El archivo puede estar corrupto o ser defectuoso.</string>
	<!-- Warning message when doing search around current position -->
	<string name="unknown_current_position">Tu ubicación aún no ha sido determinada</string>
	<!-- Warning message when location country isn't downloaded during search (see also download_location_map_proposal). -->
	<string name="download_location_country">Descargar país de tu ubicación actual (%s)</string>
	<!-- Warning message when viewport country isn't downloaded during search -->
	<string name="download_viewport_country_to_search">Descargar país en el que estás buscando (%s)</string>
	<!-- Alert message that we can't run Map Storage settings due to some reasons. -->
	<string name="cant_change_this_setting">Lo sentimos, la configuración de Guardar Mapa está desactivada.</string>
	<!-- Alert message that downloading is in progress. -->
	<string name="downloading_is_active">Se está descargando un país.</string>
	<!-- Message that will be shown in alert view, when we ask user to leave review on App Store -->
	<string name="appStore_message">¡Ojalá disfrute mucho con MAPS.ME! Si le gusta, le agradeceremos que puntúe nuestra aplicación en el App Store. Es menos de un minuto y nos sería de gran ayuda. ¡Gracias por su apoyo!</string>
	<!-- No, thanks -->
	<string name="no_thanks">No, gracias</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">Ve mi alfiler en mapa. Abre %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">Mira dónde estoy. Abre %1$s o %2$s</string>
	<!-- Subject for emailed bookmark -->
	<string name="bookmark_share_email_subject">Mira mi alfiler en el mapa de 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">¡Hola!\n\nMarqué con un alfiler: %1$s en MAPS.ME, mapas del mundo sin conexión. Haz clic en este enlace %2$s o este %3$s para ver el sitio en el mapa.\n\nGracias.</string>
	<!-- Subject for emailed position -->
	<string name="my_position_share_email_subject">Mira mi ubicación actual en el mapa en 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">Hola:\n\nAhora estoy aquí: %1$s. Haz clic en este enlace %2$s o esta %3$s para verlo en el mapa.\n\nGracias.</string>
	<!-- Android share by Message/SMS button text (including SMS) -->
	<string name="share_by_message">Compartir por mensaje</string>
	<!-- Share button text which opens menu with more buttons, like Message, EMail, Facebook etc. -->
	<string name="share">Compartir</string>
	<!-- iOS share by Message button text (including SMS) -->
	<string name="message">Mensaje</string>
	<!-- Share by email button text, also used in editor. -->
	<string name="email">Correo electrónico</string>
	<!-- Copy Link -->
	<string name="copy_link">Copiar enlace</string>
	<!-- Text for the button that returns to caller application -->
	<string name="more_info">Mostrar más información</string>
	<!-- Text for message when used successfully copied something -->
	<string name="copied_to_clipboard">Copiado al portapapeles: %1$s</string>
	<!-- Setting label for statistics turn on/off -->
	<string name="allow_statistics">Enviar estadísticas</string>
	<!-- place preview title -->
	<string name="info">Información</string>
	<!-- Used for bookmark editing -->
	<string name="done">Hecho</string>
	<!-- Summary for preferences in MWM -->
	<string name="yopme_pref_summary">Seleccione la сonfiguración de la pantalla trasera</string>
	<!-- Title for yopme preferences in MWM -->
	<string name="yopme_pref_title">Configuración de la pantalla trasera</string>
	<!-- Hint for upper-right icon p2b -->
	<string name="show_on_backscreen">Mostrar en la pantalla trasera</string>
	<!-- Prints version number in About dialog -->
	<string name="version">Versión: %s</string>
	<!-- Confirmation in downloading countries dialog -->
	<string name="are_you_sure">¿Seguro que desea continuar?</string>
	<!-- Title for tracks category in bookmarks manager -->
	<string name="tracks_title">Tracks</string>
	<!-- Length of track in cell that describes route -->
	<string name="length">Longitud</string>
	<string name="share_my_location">Compartir mi ubicación</string>
	<string name="menu_search">Buscar</string>
	<!-- Settings screen: "Map" category title -->
	<string name="prefs_group_map">Mapa</string>
	<!-- Settings screen: "Miscellaneous" category title -->
	<string name="prefs_group_misc">Varios</string>
	<string name="prefs_group_route">Navegación</string>
	<string name="pref_zoom_title">Botones de zoom</string>
	<string name="pref_zoom_summary">Visualización en la pantalla</string>
	<!-- Settings «Map» category: «Night style» title -->
	<string name="pref_map_style_title">Modo nocturno</string>
	<!-- «Map style» entry value -->
	<string name="pref_map_style_default">Apagado</string>
	<!-- «Map style» entry value -->
	<string name="pref_map_style_night">Encendido</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 de perspectiva</string>
	<!-- Settings «Map» category: «3D buildings» title -->
	<string name="pref_map_3d_buildings_title">Edificios en 3D</string>
	<!-- Settings «Map» category: «3D buildings» summary -->
	<string name="pref_map_3d_buildings_subtitle">Afecta a la duración de la batería</string>
	<!-- Settings «Route» category: «Tts enabled» title -->
	<string name="pref_tts_enable_title">Instrucciones de voz</string>
	<!-- Settings «Route» category: «Tts language» title -->
	<string name="pref_tts_language_title">Idioma de voz</string>
	<!-- Settings «Route» category: «Tts unavailable» subtitle -->
	<string name="pref_tts_unavailable">No disponible</string>
	<!-- Title for "Other" section in TTS settings. -->
	<string name="pref_tts_other_section_title">Otros</string>
	<string name="pref_tts_how_to_set_up_voice">Cómo configurar la voz</string>
	<!-- Settings «Map» category: «Record track» title -->
	<string name="pref_track_record_title">Trayecto reciente</string>
	<string name="pref_map_auto_zoom">Autozoom</string>
	<string name="duration_disabled">Desactivada</string>
	<string name="duration_1_hour">1 hora</string>
	<string name="duration_2_hours">2 horas</string>
	<string name="duration_6_hours">6 horas</string>
	<string name="duration_12_hours">12 horas</string>
	<string name="duration_1_day">1 día</string>
	<string name="recent_track_help_text">Permite registrar el recorrido realizado durante un determinado periodo de tiempo y verlo en el mapa. Tenga en cuenta que la activación de esta función aumenta el consumo de la batería. El registro del recorrido se eliminará automáticamente del mapa una vez vencido dicho periodo de tiempo.</string>
	<string name="pref_track_ios_caption">El trayecto reciente muestra tu recorrido de viaje.</string>
	<string name="pref_track_ios_subcaption">Por favor, selecciona la periodicidad para guardar el trayecto.</string>
	<string name="placepage_distance">Distancia</string>
	<string name="placepage_coordinates">Coordenadas</string>
	<string name="placepage_unsorted">Sin clasificar</string>
	<string name="search_show_on_map">Ver en el mapa</string>
	<!-- Used to warn user when fixing KitKat issue -->
	<string name="kitkat_migrate_ok">Se ha optimizado el almacenamiento de datos de mapas. Por favor, reinicia la aplicación.\n\nLa carpeta MapsWithMe en el directorio raíz de la tarjeta SD ya no es necesaria, puedes borrarla.</string>
	<!-- Used to warn user when fixing KitKat issue -->
	<string name="kitkat_migrate_failed">Debido a cambios en Android 4.4, tenemos que optimizar el almacenamiento de datos de mapas, pero no hay espacio suficiente para copiar los datos de los mapas.\n\nPor favor, libera la memoria, en caso contrario los mapas solo estarán disponibles en modo de solo lectura.</string>
	<!-- Used to warn user when fixing KitKat issue -->
	<string name="bookmark_move_fail">Tenemos que mover tus marcadores a la memoria interna, pero no hay espacio disponible para ellos. Por favor, libera memoria, en caso contrario, los marcadores no estarán disponibles.</string>
	<!-- Used to warn user when fixing KitKat issue -->
	<string name="kitkat_optimization_in_progress">Tu almacenamiento de mapas se está optimizando ahora. Por favor, espera, podría tardar unos minutos.</string>
	<!-- Used in More Apps menu -->
	<string name="free">Gratis</string>
	<!-- Used in More Apps menu -->
	<string name="buy">Comprar</string>
	<!-- 1st search button-like result -->
	<string name="search_on_map">Buscar en mapa</string>
	<!-- toast with an error -->
	<string name="no_route_found">No se ha encontrado ninguna ruta</string>
	<!-- route title -->
	<string name="route">Ruta</string>
	<!-- category title -->
	<string name="routes">Rutas</string>
	<!-- text of notification -->
	<string name="download_map_notification">Descarga el mapa del lugar en que te encuentras</string>
	<!-- text of notification -->
	<string name="pro_version_is_free_today">¡Versión completa de MAPS.ME gratis hoy! Descárgalo ahora y dilo a tus amigos.</string>
	<!-- Dialog for transferring maps from lite to pro. -->
	<string name="move_lite_maps_to_pro">Estamos transfiriendo tus mapas descargados de MAPS.ME Lite a MAPS.ME, lo cual puede llevar unos minutos.</string>
	<!-- Message to display when maps moved. -->
	<string name="move_lite_maps_to_pro_ok">Tus mapas descargados se han transferido correctamente a MAPS.ME.</string>
	<!-- Message to display when maps move failed. -->
	<string name="move_lite_maps_to_pro_failed">No se han podido transferir tus mapas. Por favor, elimina MAPS.ME Lite y descarga los mapas de nuevo.</string>
	<!-- Text in menu -->
	<string name="settings_and_more">Ajustes y más</string>
	<!-- Text in menu -->
	<string name="website">Sitio web</string>
	<!-- Text in menu -->
	<string name="maps_me_community">Comunidad de MAPS.ME</string>
	<!-- Text in menu -->
	<string name="like_on_facebook">Pulsa \"Me gusta\" en Facebook</string>
	<!-- Text in menu -->
	<string name="follow_on_twitter">Síguenos en Twitter</string>
	<!-- Text in menu -->
	<string name="contact_us">Contacta con nosotros</string>
	<!-- Settings: Send feedback button and dialog title -->
	<string name="feedback">Comentarios</string>
	<!-- Text in menu -->
	<string name="subscribe_to_news">Suscríbete a nuestras noticias</string>
	<!-- Text in menu -->
	<string name="rate_the_app">Valora la aplicación</string>
	<!-- Text in menu -->
	<string name="help">Ayuda</string>
	<!-- Text in menu -->
	<string name="copyright">Copyright</string>
	<!-- Text in menu -->
	<string name="report_a_bug">Hay un error</string>
	<!-- Email subject -->
	<string name="subscribe_me_subject">Por favor quiero suscribirme al boletín de MAPS.ME</string>
	<!-- Email body -->
	<string name="subscribe_me_body">Quiero ser el primero en conocer las últimas noticias actualizaciones y promociones. Puedo cancelar mi suscripción en cualquier momento.</string>
	<!-- About text -->
	<string name="about_text">MAPS.ME ofrece los mapas sin conexión más rápidos de todas las ciudades y todos los países del mundo. Viaja con plena confianza: estés donde estés, MAPS.ME te ayuda a ubicarte en el mapa, encontrar el restaurante, hotel, banco o gasolinera más próximo, etc. No requiere conexión a Internet.\n\nTrabajamos continuamente en el desarrollo de nuevas funcionalidades y nos encantaría conocer tu opinión sobre cómo podríamos mejorar MAPS.ME. Si tienes cualquier problema con la aplicación, no dudes en contactar con nosotros en support\@maps.me. ¡Respondemos a todas las solicitudes!\n\n¿Te gusta MAPS.ME y quieres apoyarnos? Estas son algunas formas simples y totalmente gratis:\n\n- Publica una opinión en tu App Market\n- Dale a me gusta a nuestra página de Facebook http://www.facebook.com/mapswithme\n- O simplemente habla sobre MAPS.ME a tu madre, amigos y colegas :)\n\nGracias por estar a nuestro lado. ¡Agradecemos mucho tu apoyo!\n\nPD: obtenemos datos de los mapas de OpenStreetMap, un proyecto de mapeo similar a Wikipedia, que permite a los usuarios crear y editar mapas. Si crees que falta algo o hay cualquier error en el mapa, puedes corregir los mapas directamente en https://www.openstreetmap.org y los cambios aparecerán en la aplicación MAPS.ME en el próximo lanzamiento de la versión.</string>
	<!-- Alert text -->
	<string name="email_error_body">No se ha configurado el cliente de correo electrónico. Por favor, configúralo o utiliza alguna otra forma de ponerte en contacto con nosotros en %s</string>
	<!-- Alert title -->
	<string name="email_error_title">Error de envío de correo</string>
	<!-- Settings item title -->
	<string name="pref_calibration_title">Calibrado de la brújula</string>
	<!-- Search category -->
	<string name="wifi">WiFi</string>
	<!-- Update map suggestion -->
	<string name="routing_map_outdated">Por favor, actualiza el mapa para crear una ruta.</string>
	<!-- Update maps suggestion -->
	<string name="routing_update_maps">La nueva versión de MAPS.ME permite crear rutas desde tu ubicación actual hasta un punto de destino. Por favor, actualiza los mapas para utilizar esta característica.</string>
	<!-- Update all button text -->
	<string name="downloader_update_all_button">Actualizar todos</string>
	<!-- Cancel all button text -->
	<string name="downloader_cancel_all">Cancelar todo</string>
	<!-- Downloaded maps category -->
	<string name="downloader_downloaded_subtitle">Descargado</string>
	<!-- Downloaded maps category -->
	<string name="downloader_available_maps">Disponible</string>
	<!-- Country queued for download -->
	<string name="downloader_queued">En cola</string>
	<string name="downloader_near_me_subtitle">Cerca de mí</string>
	<string name="downloader_status_maps">Mapas</string>
	<string name="downloader_download_all_button">Descargar todos</string>
	<string name="downloader_downloading">Descargando:</string>
	<string name="downloader_search_results">Encontrado</string>
	<!-- Disclaimer message -->
	<string name="routing_disclaimer">Creando rutas en la aplicación MAPS.ME, por favor, tenga en cuenta lo siguiente:\n\n  - Las rutas sugeridas se pueden considerar únicamente como recomendaciones.\n - Las condiciones de la carretera, las normas y las señales de tráfico tienen mayor prioridad que el consejo de navegación.\n - El mapa podría ser incorrecto o estar obsoleto y las rutas pueden no crear el mejor camino posible.\n\n  ¡Esté seguro en las carreteras y cuídese!</string>
	<!-- Outdated maps category -->
	<string name="downloader_outdated_maps">Anticuado</string>
	<!-- Up to date maps category -->
	<string name="downloader_uptodate_maps">Actualizado</string>
	<!-- Status of outdated country in the list -->
	<string name="downloader_status_outdated">Actualizar</string>
	<!-- Status of failed country in the list -->
	<string name="downloader_status_failed">Fallo</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">Para eliminar el mapa, por favor, detén la navegación.</string>
	<!-- Show when user try build route, but we don't know where he -->
	<string name="routing_failed_unknown_my_position">La ubicación actual no está definida. Por favor, especifique la ubicación para crear la ruta.</string>
	<!-- Show if use has not routing file, or InconsistentMWMandRoute -->
	<string name="routing_failed_has_no_routing_file">Son necesarios datos adicionales para crear la ruta. ¿Empezar la descarga?</string>
	<!-- StartPointNotFound -->
	<string name="routing_failed_start_point_not_found">No se puede calcular la ruta. No hay carreteras cerca de su punto de partida.</string>
	<!-- EndPointNotFound -->
	<string name="routing_failed_dst_point_not_found">No se puede calcular la ruta. No hay carreteras cerca de su destino.</string>
	<!-- PointsInDifferentMWM -->
	<string name="routing_failed_cross_mwm_building">Solo se pueden crear rutas que estén totalmente incluidas en un mapa único.</string>
	<!-- RouteNotFound -->
	<string name="routing_failed_route_not_found">No se ha encontrado ninguna ruta entre el origen seleccionado y el destino. Por favor, seleccione un punto de partida o destino diferente.</string>
	<!-- InternalError -->
	<string name="routing_failed_internal_error">Se ha producido un error interno. Por favor, intente eliminar y descargar el mapa otra vez. Si el problema persiste, por favor contáctenos en support\@maps.me.</string>
	<!-- Context menu item for downloader. -->
	<string name="downloader_download_map_and_routing">Descargar mapa + itinerario</string>
	<!-- Context menu item for downloader. -->
	<string name="downloader_download_routing">Descargar itinerario</string>
	<!-- Context menu item for downloader. -->
	<string name="downloader_delete_routing">Eliminar itinerario</string>
	<!-- Context menu item for downloader. -->
	<string name="downloader_download_map">Descargar el mapa</string>
	<string name="downloader_download_map_no_routing">Descargar mapa sin ruta</string>
	<!-- Button for routing. -->
	<string name="routing_go">¡Listo!</string>
	<!-- Item status in downloader. -->
	<string name="downloader_retry">Repetir</string>
	<!-- Item in context menu. -->
	<string name="downloader_map_and_routing">Mapa + itinerario</string>
	<!-- Item in context menu. -->
	<string name="downloader_delete_map">Eliminar mapa</string>
	<!-- Item in context menu. -->
	<string name="downloader_update_map">Actualizar mapa</string>
	<!-- Item in context menu. -->
	<string name="downloader_update_map_and_routing">Actualizar mapa + itinerario</string>
	<!-- Item in context menu. -->
	<string name="downloader_map_only">Solo mapa</string>
	<!-- Toolbar title -->
	<string name="toolbar_application_menu">Menú de aplicación</string>
	<!-- Preference text -->
	<string name="pref_use_google_play">Usar los servicios de Google Play para obtener tu ubicación actual</string>
	<!-- Text for rating dialog -->
	<string name="rating_just_rated">Acabo de puntuar tu aplicación</string>
	<!-- Text for rating dialog -->
	<string name="rating_user_since">Soy usuario de MAPS.ME desde %s</string>
	<!-- Text for rating dialog -->
	<string name="rating_do_like_maps">¿Te gusta MAPS.ME?</string>
	<!-- Text for rating dialog -->
	<string name="rating_tap_star">Pulsa una estrella para puntuar tu aplicación.</string>
	<!-- Text for rating dialog -->
	<string name="rating_thanks">¡Gracias!</string>
	<!-- Text for rating dialog -->
	<string name="rating_share_ideas">Comparte ideas o informa de problemas para que podamos mejorar la aplicación para ti.</string>
	<!-- Text for rating dialog -->
	<string name="rating_send_feedback">Enviar comentarios</string>
	<!-- Text for g+ dialog -->
	<string name="rating_google_plus">Haz clic en g+ para hablar a tus amigos acerca de la app.</string>
	<!-- Text for routing error dialog -->
	<string name="routing_download_maps_along">Descarga mapas a lo largo de la ruta</string>
	<!-- Text for routing error dialog -->
	<string name="routing_download_map">Obtén el mapa</string>
	<!-- Text for routing error dialog -->
	<string name="routing_download_map_and_routing">Descarga el mapa actualizado y los datos de enrutamiento para conseguir todas las funciones de MAPS.ME.</string>
	<!-- Text for routing error dialog -->
	<string name="routing_get_routing_data">Obtén datos de enrutamiento</string>
	<!-- Text for routing error dialog -->
	<string name="routing_get_additional_data">Datos adicionales necesarios para crear rutas desde tu ubicación.</string>
	<!-- Text for routing error dialog -->
	<string name="routing_requires_all_map">Para crear una ruta es necesario descargar y actualizar todos los mapas de la ubicación de destino.</string>
	<!-- Text for routing error dialog -->
	<string name="routing_not_enough_space">No hay suficiente espacio</string>
	<!-- Text for routing error dialog -->
	<string name="routing_download_more_than_avail">Necesitas descargar %1$s MB, pero solo hay %2$s MB disponibles.</string>
	<!-- Text for routing error dialog -->
	<string name="routing_download_roaming">Vas a descargar %s MB usando datos móviles (en itinerancia). Esto puede dar lugar a cargos adicionales, dependiendo del plan de datos móviles de tu operador.</string>
	<!-- bookmark button text -->
	<string name="bookmark">marcador</string>
	<!-- map is not downloaded -->
	<string name="not_found_map">El mapa de tu ubicación no se ha descargado</string>
	<!-- location service disabled -->
	<string name="enable_location_services">Por favor, permite los servicios de localización</string>
	<!-- download map -->
	<string name="download_map">Descarga el mapa de tu ubicación</string>
	<!-- download map on iPhone -->
	<string name="download_map_iphone">Descarga el mapa para la ubicación actual en tu iPhone</string>
	<!-- clear pin -->
	<string name="nearby">Cerca</string>
	<!-- clear pin -->
	<string name="clear_pin">Borrar alfiler</string>
	<!-- location is undefined -->
	<string name="undefined_location">La ubicación actual no está definida.</string>
	<!-- download country of your location -->
	<string name="download_country">Descargar país de tu ubicación actual</string>
	<!-- download failed -->
	<string name="download_failed">la descarga ha fallado</string>
	<!-- get the map -->
	<string name="get_the_map">Obtén el mapa</string>
	<string name="save">Guardar</string>
	<string name="edit_description_hint">Tus descripciones (texto o html)</string>
	<string name="new_group">nuevo grupo</string>
	<string name="create">crear</string>
	<!-- red color -->
	<string name="red">Rojo</string>
	<!-- yellow color -->
	<string name="yellow">Amarillo</string>
	<!-- blue color -->
	<string name="blue">Azul</string>
	<!-- green color -->
	<string name="green">Verde</string>
	<!-- purple color -->
	<string name="purple">Morado</string>
	<!-- orange color -->
	<string name="orange">Naranja</string>
	<!-- brown color -->
	<string name="brown">Marrón</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">Al seguir la ruta, tenga en cuenta:</string>
	<string name="dialog_routing_disclaimer_priority">— Las condiciones de la ruta, las reglas de tráfico y las señales de carretera siempre tienen prioridad sobre las sugerencias de navegación;</string>
	<string name="dialog_routing_disclaimer_precision">— El mapa puede ser impreciso y sugerir una ruta que no siempre puede ser el mejor camino para llegar al destino;</string>
	<string name="dialog_routing_disclaimer_recommendations">— Las rutas sugeridas deben entenderse solo como recomendaciones;</string>
	<string name="dialog_routing_disclaimer_borders">— Actúa con cautela en las rutas con zonas fronterizas: las rutas creadas por nuestra aplicación en ocasiones pueden atravesar las fronteras de países en lugares no autorizados;</string>
	<string name="dialog_routing_disclaimer_beware">¡Manténgase alerta y seguro en las rutas!</string>
	<string name="dialog_routing_check_gps">Verificar la señal del GPS</string>
	<string name="dialog_routing_error_location_not_found">No se puede crear la ruta. No se pudieron identificar las coordenadas actuales del GPS.</string>
	<string name="dialog_routing_location_turn_wifi">Verifique la señal del GPS. Activar Wi-Fi mejorará la precisión de su ubicación.</string>
	<string name="dialog_routing_location_turn_on">Activar servicios de ubicación</string>
	<string name="dialog_routing_location_unknown_turn_on">No se pueden encontrar las coordenadas del GPS. Active los servicios de ubicación para calcular la ruta.</string>
	<string name="dialog_routing_location_unknown">No se pueden encontrar las coordenadas actuales del GPS.</string>
	<string name="dialog_routing_download_files">Descargar archivos requeridos</string>
	<string name="dialog_routing_download_and_update_all">Descargue y actualice toda la información de mapas y rutas junto con el trayecto proyectado para calcular la ruta.</string>
	<string name="dialog_routing_routes_size">Archivos de información de ruta</string>
	<string name="dialog_routing_unable_locate_route">Imposible encontrar ruta</string>
	<string name="dialog_routing_cant_build_route">No se puede crear la ruta.</string>
	<string name="dialog_routing_change_start_or_end">Ajuste su punto de inicio o su destino.</string>
	<string name="dialog_routing_change_start">Ajustar el punto de inicio</string>
	<string name="dialog_routing_start_not_determined">La ruta no se creó. No se pudo encontrar el punto de inicio.</string>
	<string name="dialog_routing_select_closer_start">Seleccione un punto de inicio cercano a una carretera.</string>
	<string name="dialog_routing_change_end">Ajustar destino</string>
	<string name="dialog_routing_end_not_determined">La ruta no se creó. No se pudo encontrar el destino.</string>
	<string name="dialog_routing_select_closer_end">Seleccione un punto de destino cercano a una carretera.</string>
	<string name="dialog_routing_change_intermediate">No se ha podido ubicar la parada intermedia.</string>
	<string name="dialog_routing_intermediate_not_determined">Por favor, ajuste la parada intermedia.</string>
	<string name="dialog_routing_system_error">Error del sistema</string>
	<string name="dialog_routing_application_error">No se pudo crear la ruta debido a un error en la aplicación.</string>
	<string name="dialog_routing_try_again">Intentar nuevamente</string>
	<string name="dialog_routing_send_error">Informar el problema</string>
	<string name="dialog_routing_if_get_cross_route">¿Desea crear una ruta más directa que abarca más de un mapa?</string>
	<string name="dialog_routing_cross_route_is_optimal">Está disponible una ruta mejor que cruza los límites de este mapa.</string>
	<string name="not_now">No ahora</string>
	<string name="dialog_routing_build_route">Crear</string>
	<string name="dialog_routing_download_and_build_cross_route">¿Desea descargar el mapa y crear una ruta mejor que abarca más de un mapa?</string>
	<string name="dialog_routing_download_cross_route">Descargar el mapa para crear una ruta mejor que cruza los límites de este mapa.</string>
	<string name="dialog_routing_cross_route_always">Cruzar siempre este límite</string>

	<!-- SECTION: Strings for downloading map from search -->
	<string name="search_without_internet_advertisement">Para empezar a buscar y crear rutas, por favor, descarga el mapa y no necesitarás conexión a Internet nunca más para usarlo.</string>
	<string name="search_select_map">Seleccionar el mapa</string>
	<string name="search_select_other_map">Seleccionar otro mapa</string>
	<!-- «Show» context menu -->
	<string name="show">Mostrar</string>
	<!-- «Hide» context menu -->
	<string name="hide">Ocultar</string>
	<!-- «Rename» context menu -->
	<string name="rename">Renombrar</string>
	<!-- Bottom sheet: expand button (should be short) -->
	<string name="bottom_sheet_more">Más…</string>
	<!-- Failed planning route message in navigation view -->
	<string name="routing_planning_error">Error al planificar la ruta</string>
	<!-- Arrive routing message in navigation view -->
	<string name="routing_arrive">Llegada: %s</string>
	<!-- Text for routing::RouterResultCode::FileTooOld dialog. -->
	<string name="dialog_routing_download_and_update_maps">Para crear una ruta, por favor, descarga y actualiza todos los mapas a lo largo de la ruta.</string>
	<string name="rate_alert_title">¿Te gusta la aplicación?</string>
	<string name="rate_alert_default_message">Gracias por usar MAPS.ME. Por favor, puntúa la aplicación. Tus comentarios nos ayudan a mejorar.</string>
	<string name="rate_alert_five_star_message">¡Genial! ¡Nosotros también te queremos!</string>
	<string name="rate_alert_four_star_message">¡Gracias, haremos todo lo posible!</string>
	<string name="rate_alert_less_than_four_star_message">¿Alguna idea de cómo podemos mejorarla?</string>
	<string name="categories">Categorías</string>
	<string name="history">Historial</string>
	<string name="next_turn_then">Luego</string>
	<string name="closed">Cerrado</string>
	<string name="back_to">Volver a %s</string>
	<string name="search_not_found">Lo siento, no he encontrado nada.</string>
	<string name="search_not_found_query">Por favor, prueba con otra consulta.</string>
	<string name="search_not_found_map">Por favor, descarga el mapa en el que estás buscando.</string>
	<string name="search_not_found_location">Descarga el mapa de tu ubicación actual.</string>
	<string name="search_history_title">Historial de búsquedas</string>
	<string name="search_history_text">Acceder rápidamente a las consultas de búsquedas recientes.</string>
	<string name="clear_search">Eliminar el historial de búsqueda</string>
	<!-- Title for settings to enable/disable showcase menu button -->
	<string name="showcase_settings_title">Mostrar ofertas</string>
	<string name="p2p_route_planning">Planificación de ruta</string>
	<string name="p2p_your_location">Tu ubicación</string>
	<string name="p2p_from">El punto de origen</string>
	<string name="p2p_to">El punto de destino</string>
	<string name="p2p_start">Empezar</string>
	<string name="p2p_planning">Planeando…</string>
	<string name="p2p_from_here">Desde</string>
	<string name="p2p_to_here">Ruta hasta</string>
	<string name="p2p_only_from_current">La navegación solo está disponible desde tu ubicación actual.</string>
	<string name="p2p_reroute_from_current">¿Quieres que planeemos un ruta desde tu ubicación actual?</string>
	<string name="whats_new_next_button">Siguiente</string>
	<string name="editor_time_add">Añadir horario</string>
	<string name="editor_time_delete">Eliminar horario</string>
	<!-- Text for allday switch. -->
	<string name="editor_time_allday">Todo el día (24 horas)</string>
	<string name="editor_time_open">Abierto</string>
	<string name="editor_time_close">Cerrado</string>
	<string name="editor_time_add_closed">Añadir horas de cierre</string>
	<string name="editor_time_title">Horario de apertura</string>
	<string name="editor_time_advanced">Modo avanzado</string>
	<string name="editor_time_simple">Modo sencillo</string>
	<string name="editor_hours_closed">Horas de cierre</string>
	<string name="editor_example_values">Valores de ejemplo</string>
	<string name="editor_correct_mistake">Corregir error</string>
	<string name="editor_correct_mistake_message">Ha cometido un error de edición. Por favor, corríjalo o cambie a modo sencillo.</string>
	<string name="editor_add_select_location">Ubicación</string>
	<string name="editor_done_dialog_1">Has cambiado el mapa del mundo. ¡No ocultarlo! Cuéntaselo a tus amigos y editadlo juntos.</string>
	<string name="editor_done_dialog_2">Esta es tu segunda mejora del mapa. Ahora estás en el puesto %dº de la lista de editores de mapa. Cuéntaselo a tus amigos.</string>
	<string name="editor_done_dialog_3">Has mejorado el mapa: cuéntaselo a tus amigos y editadlo juntos.</string>
	<string name="share_with_friends">Compartir con amigos</string>
	<string name="editor_report_problem_desription_1">Por favor, describe el problema en detalle para que la comunidad de OpenStreeMap pueda corregir el error.</string>
	<string name="editor_report_problem_desription_2">O hazlo tú mismo en https://www.openstreetmap.org/</string>
	<string name="editor_report_problem_send_button">Enviar</string>
	<string name="editor_report_problem_title">Problema</string>
	<string name="editor_report_problem_no_place_title">El lugar no existe</string>
	<string name="editor_report_problem_under_construction_title">Сerrado por mantenimiento</string>
	<string name="editor_report_problem_duplicate_place_title">Lugar duplicado</string>
	<string name="first_launch_congrats_title">MAPS.ME está listo para usar</string>
	<string name="first_launch_congrats_text">Busca y navega sin conexión por cualquier parte del mundo, sin cargos.</string>
	<string name="migrate_title">¡Importante!</string>
	<!-- Android uses image instead of text. -->
	<string name="download_all">Descargar todos</string>
	<string name="delete_all">Eliminar todos</string>
	<string name="autodownload">Descarga automática</string>
	<string name="disable_autodownload">Inhabilitar descarga automática</string>
	<!-- Place Page opening hours text -->
	<string name="closed_now">Cerrado ahora</string>
	<!-- Place Page opening hours text -->
	<string name="daily">Diario</string>
	<string name="twentyfour_seven">Día y noche</string>
	<string name="day_off_today">Día libre hoy</string>
	<string name="day_off">Día libre</string>
	<string name="today">Hoy</string>
	<string name="sunrise_to_sunset">Del amanecer al atardecer</string>
	<string name="sunset_to_sunrise">Del amanecer al anochecer</string>
	<string name="add_opening_hours">Añadir horas comerciales</string>
	<string name="edit_opening_hours">Editar las horas comerciales</string>
	<string name="no_osm_account">¿No tienes cuenta en OpenStreetMap?</string>
	<string name="register_at_openstreetmap">Registrarse</string>
	<string name="password_8_chars_min">Contraseña (mínimo 8 caracteres)</string>
	<string name="invalid_username_or_password">Usuario o contraseña incorrectos.</string>
	<string name="login">Iniciar sesión</string>
	<string name="password">Contraseña</string>
	<string name="forgot_password">¿Has olvidado tu contraseña?</string>
	<!-- Forgot Password dialog title -->
	<string name="restore_password">Restaurar contraseña</string>
	<string name="enter_email_address_to_reset_password">Introduce la dirección de correo electrónico que utilizaste durante el registro y te enviaremos el enlace para restaurar tu contraseña.</string>
	<string name="reset_password">Restablecer contraseña</string>
	<string name="username">Usuario</string>
	<string name="osm_account">Cuenta OSM</string>
	<string name="logout">Cerrar sesión</string>
	<string name="login_and_edit_map_motivation_message">Inicia sesión y edita la información de los objetos en el mapa y los pondremos a disposición de millones de otros usuarios. Hagamos de este mundo un lugar mejor.</string>
	<!-- Information text: "Last upload 11.01.2016" -->
	<string name="last_upload">Última carga</string>
	<!-- Motivates user to login/register, title above login buttons. -->
	<string name="you_have_edited_your_first_object">¡Has editado tu primer objeto!</string>
	<string name="thank_you">Gracias</string>
	<string name="login_with_google">Iniciar sesión con Google</string>
	<string name="login_with_facebook">Iniciar sesión con Facebook</string>
	<string name="login_with_openstreetmap">Iniciar sesión con www.openstreetmap.org</string>
	<string name="edit_place">Editar el lugar</string>
	<string name="place_name">Nombre del lugar</string>
	<!-- title above languages list cells in the editor, below editable name text field. -->
	<string name="other_languages">Otros idiomas</string>
	<!-- small button to open list with names in different languages -->
	<string name="show_more">Mostrar más</string>
	<!-- small button to close list with names in different languages -->
	<string name="show_less">Mostrar menos</string>
	<string name="add_language">Añadir un idioma</string>
	<string name="street">Calle</string>
	<!-- Editable House Number text field (in address block). -->
	<string name="house_number">Un número de domicilio</string>
	<string name="details">Detalles</string>
	<!-- Text field to enter non-existing street name, below list of known streets around -->
	<string name="add_street">Añadir una calle</string>
	<string name="choose_language">Elegir un idioma</string>
	<string name="choose_street">Elegir una calle</string>
	<string name="postal_code">Código postal</string>
	<string name="cuisine">Cocina</string>
	<string name="select_cuisine">Seleccionar Cocina</string>
	<!-- login text field -->
	<string name="email_or_username">Correo electrónico o usuario</string>
	<string name="phone">Teléfono</string>
	<string name="please_note">Aviso</string>
	<string name="common_no_wifi_dialog">No hay conexión Wi-Fi. ¿Quieres continuar con los datos móviles?</string>
	<string name="downloader_delete_map_dialog">Todos los cambios en los mapas se borrarán junto con el mapa.</string>
	<string name="downloader_update_maps">Autodescarga de mapas</string>
	<string name="downloader_mwm_migration_dialog">Los mapas empiezan a descargarse automáticamente cuando te aproximas al mapa.</string>
	<string name="downloader_search_field_hint">Encontrar el mapa</string>
	<string name="migration_update_all_button">Actualizar todos los mapas</string>
	<string name="migration_delete_all_download_current_button">Descargar el mapa actual y eliminar los mapas antiguos</string>
	<string name="migration_download_error_dialog">Error de descarga</string>
	<string name="common_check_internet_connection_dialog">Por favor, verifica la configuración y asegúrate de que tu dispositivo está conectado a Internet.</string>
	<string name="downloader_no_space_title">Sin espacio suficiente</string>
	<string name="downloader_no_space_message">Por favor, elimina los datos innecesarios</string>
	<string name="editor_general_auth_error_dialog">Error general de inicio de sesión.</string>
	<string name="editor_login_error_dialog">Error de inicio de sesión.</string>
	<string name="editor_login_failed_dialog">Error al iniciar sesión</string>
	<string name="editor_username_error_dialog">Usuario no válido</string>
	<string name="editor_place_edited_dialog">¡Has editado un objeto!</string>
	<string name="editor_login_with_osm">Iniciar sesión con OpenStreetMap</string>
	<string name="editor_profile_changes">Cambios verificados</string>
	<string name="editor_profile_unsent_changes">No enviado:</string>
	<string name="editor_focus_map_on_location">Arrastra el mapa para seleccionar la ubicación correcta del objeto.</string>
	<string name="editor_add_select_category">Seleccionar categoría</string>
	<string name="editor_add_select_category_popular_subtitle">Popular</string>
	<string name="editor_add_select_category_all_subtitle">Todas las categorías</string>
	<string name="editor_edit_place_title">Editar</string>
	<string name="editor_add_place_title">Añadir</string>
	<string name="editor_edit_place_name_hint">Nombre del lugar</string>
	<string name="editor_edit_place_category_title">Categoría</string>
	<string name="detailed_problem_description">Descripción al detalle del problema</string>
	<string name="editor_report_problem_other_title">Un problema diferente</string>
	<string name="placepage_report_problem_button">Informar de un problema</string>
	<string name="placepage_add_business_button">Añadir organización</string>
	<string name="whatsnew_smallmwm_header">Llevas tiempo pidiéndolo y lo hemos hecho</string>
	<string name="whatsnew_smallmwm_message">Hemos dividido el mapa por partes. Ahora, puedes descargar regiones individuales, en vez del país entero.</string>
	<string name="whatsnew_search_header">Nueva búsqueda</string>
	<string name="whatsnew_search_message">Hemos mejorado notablemente la búsqueda por dirección. Compruébalo.</string>
	<string name="whatsnew_editor_title">Editar el mapa*</string>
	<string name="whatsnew_editor_message_1">Añadir lugares nuevos al mapa y editar los lugares actuales directamente desde la aplicación.</string>
	<string name="whatsnew_editor_message_2">* MAPS.ME utiliza datos de la comunidad de OpenStreetMap.</string>
	<string name="onboarding_offline_navigation_title">Nunca volverás a perderte</string>
	<string name="onboarding_offline_navigation_message">Planifica rutas óptimas en coche y a pie, ¡incluso si no hay conexión a Internet!</string>
	<string name="onboarding_offline_navigation_title_2">Navegación fuera de línea</string>
	<string name="onboarding_offline_navigation_message_2">Planifica rutas óptimas en coche y a pie.</string>
	<string name="onboarding_offline_maps_title">MAPS.ME — accede al mapa del mundo sin Internet</string>
	<string name="onboarding_offline_maps_message">Descarga una vez los mapas para el área deseada, y utiliza las funciones de navegación y búsqueda sin conexión a Internet.</string>
	<string name="onboarding_notifications_message">Para recibir los mapas más recientes, obtén las notificaciones de actualización</string>
	<string name="onboarding_notifications_title">Permitir notificaciones de actualización</string>
	<string name="onboarding_location_title">Ayúdanos a encontrarte</string>
	<string name="onboarding_location_message">Para utilizar la navegación y otras funciones, necesitamos acceso a tu geolocalización.</string>
	<string name="onboarding_permissions_title">Permita el acceso de MAPS.ME a los servicios de almacenamiento y ubicación</string>
	<string name="onboarding_permissions_message">Así podrá descargar mapas, ver lugares y el estado de tráfico en su zona y utilizar navegación.</string>
	<string name="onboarding_welcome_title">Bienvenido a MAPS.ME</string>
	<string name="onboarding_welcome_first_subtitle">Mapas gratuitos, rápidos y detallados sin conexión a internet y con navegación paso a paso.</string>
	<string name="onboarding_welcome_second_subtitle">Al iniciar la aplicación, usted acepta los &lt;a href="%1$s">Términos de uso&lt;/a> y la &lt;a href="%2$s">Política de privacidad&lt;/a>.</string>
	<string name="dialog_incorrect_feature_position">Cambiar ubicación</string>
	<string name="message_invalid_feature_position">No se puede ubicar ningún objeto aquí</string>
	<string name="login_to_make_edits_visible">Inicia sesión para que otros usuarios puedan ver los cambios que has efectuado.</string>
	<string name="no_migration_during_navigation">No se permite la actualización durante la navegación.</string>
	<!-- Error dialog no space -->
	<string name="migration_no_space_message">Necesitas más espacio para descargar. Por favor, elimina los datos innecesarios.</string>
	<string name="editor_sharing_title">He mejorado los mapas de MAPS.ME</string>
	<string name="editor_comment_will_be_sent">Enviaremos tus comentarios a los cartógrafos.</string>
	<string name="editor_unsupported_category_message">Has añadido un lugar de una categoría que no hemos incluido aún. Aparecerá en el mapa en unos momentos.</string>
	<!-- Downloaded 10 **of** 20 <- it is that "of" -->
	<string name="downloader_of">%1$d de %2$d</string>
	<string name="download_over_mobile_header">¿Descargar con conexión de red móvil?</string>
	<string name="download_over_mobile_message">Podría ser muy caro con ciertos planes o con itinerancia de datos.</string>
	<string name="error_enter_correct_house_number">Introducir el número de domicilio correcto</string>
	<string name="editor_storey_number">Número de plantas (máx. %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">Edite el edificio con un máximo de 25 plantas</string>
	<string name="editor_zip_code">Código postal</string>
	<string name="error_enter_correct_zip_code">Introduzca el código postal correcto</string>
	<!-- Place Page title for long tap -->
	<string name="core_placepage_unknown_place">Lugar desconocido</string>
	<string name="editor_other_info">Enviar una nota al moderador de OSM</string>
	<string name="editor_detailed_description_hint">Comentario detallado</string>
	<string name="editor_detailed_description">Los cambios que ha sugerido se enviarán a la comunidad de OpenStreetMap. Describa los detalles que no pueden editarse en MAPS.ME.</string>
	<string name="editor_more_about_osm">Más acerca de OpenStreetMap</string>
	<string name="editor_operator">Operador</string>
	<string name="editor_tag_description">Introduzca la empresa, organización o individuo responsable de las instalaciones.</string>
	<string name="editor_no_local_edits_title">No tiene ediciones locales</string>
	<string name="editor_no_local_edits_description">Esto muestra el número de sus cambios sugeridos en el mapa que actualmente solo son accesibles desde su dispositivo.</string>
	<string name="editor_send_to_osm">Enviar a OSM</string>
	<string name="editor_remove">Eliminar</string>
	<string name="downloader_my_maps_title">Mis mapas</string>
	<string name="downloader_no_downloaded_maps_title">No ha descargado ningún mapa</string>
	<string name="downloader_no_downloaded_maps_message">Descargue mapas para encontrar la ubicación y navegar sin conexión.</string>
	<string name="downloader_find_place_hint">Buscar ciudad o país</string>
	<!-- Error title that appears after certain time without location. -->
	<string name="current_location_unknown_title">¿Continuar detectando su ubicación actual?</string>
	<!-- Error that appears after certain time without location. -->
	<string name="current_location_unknown_message">La ubicación actual es desconocida. Quizá esté en un edificio o en un túnel.</string>
	<string name="current_location_unknown_continue_button">Continuar</string>
	<string name="current_location_unknown_stop_button">Detener</string>
	<string name="current_location_unknown_error_title">La ubicación actual es desconocida.</string>
	<string name="current_location_unknown_error_message">Se ha producido un error al buscar su ubicación. Compruebe que su dispositivo funciona correctamente e inténtelo más tarde.</string>
	<string name="whatsnew_update_editor_title">Hemos actualizado el editor de mapas</string>
	<string name="whatsnew_update_editor_message">Los usuarios de MAPS.ME han realizado 200 000 cambios de mapas. Juntos estamos creando los mapas más detallados del mundo. ¡Únase a nosotros!</string>
	<!-- Additional text in whats new -->
	<string name="whatsnew_update_editor_message_update">Para usar el editor de mapas, actualiza todos los mapas.</string>
	<string name="location_services_disabled_header">La identificación de la ubicación está desactivada</string>
	<string name="location_services_disabled_message">Activa el acceso a la geolocalización en los ajustes del dispositivo</string>
	<string name="location_services_disabled_1">1. Abre los ajustes</string>
	<string name="location_services_disabled_2">2. Pulsa \"Ubicación\"</string>
	<!-- iOS Dialog for the case when the location permission is not granted -->
	<string name="location_services_disabled_3">3. Seleccionar Al usar la aplicación</string>
	<string name="placepage_parking_surface">Superficie</string>
	<string name="placepage_parking_multistorey">Varias plantas</string>
	<string name="placepage_parking_underground">Subterráneo</string>
	<string name="placepage_parking_rooftop">Azotea</string>
	<string name="placepage_parking_sheds">Cobertizos</string>
	<string name="placepage_parking_carports">Cochera</string>
	<string name="placepage_parking_boxes">Garaje</string>
	<string name="placepage_parking_pay">De pago</string>
	<string name="placepage_parking_free">Gratuito</string>
	<string name="placepage_parking_interval">Pago por intervalos</string>
	<string name="placepage_entrance_number">N.º</string>
	<string name="placepage_entrance_type">Entrada</string>
	<string name="placepage_flat">aplicación</string>
	<string name="placepage_open_24_7">24 / 7</string>
	<string name="place_page_booking_rating">Valoración: %s</string>
	<string name="place_page_starting_from">desde %s</string>
	<string name="meter">m</string>
	<string name="kilometer">km</string>
	<string name="kilometers_per_hour">km/h</string>
	<string name="mile">mile</string>
	<string name="foot">fot</string>
	<string name="miles_per_hour">mph</string>
	<string name="day">d</string>
	<string name="hour">h</string>
	<string name="minute">min</string>
	<string name="placepage_place_description">Descripción</string>
	<string name="placepage_more_button">Más</string>
	<string name="book_button">Reservar</string>
	<string name="placepage_call_button">Llamar</string>
	<string name="placepage_edit_bookmark_button">Editar marcador</string>
	<string name="placepage_bookmark_name_hint">Nombre del marcador</string>
	<string name="placepage_personal_notes_hint">Notas personales</string>
	<string name="placepage_delete_bookmark_button">Eliminar marcador</string>
	<string name="editor_edits_sent_message">Se han enviado sus cambios sugeridos</string>
	<string name="editor_comment_hint">Comentario…</string>
	<string name="editor_reset_edits_message">¿Restablecer todos los cambios locales?</string>
	<string name="editor_reset_edits_button">Restablecer</string>
	<string name="editor_remove_place_message">¿Eliminar el lugar añadido?</string>
	<string name="editor_remove_place_button">Eliminar</string>
	<string name="editor_status_sending">Enviando…</string>
	<string name="editor_place_doesnt_exist">El lugar no existe</string>
	<string name="text_more_button">…más</string>
	<!-- Phone number error message -->
	<string name="error_enter_correct_phone">Introduce un número de teléfono correcto</string>
	<string name="error_enter_correct_web">Introduce una dirección web válida</string>
	<string name="error_enter_correct_email">Introduce un email válido</string>
	<string name="error_enter_correct">Introduce un valor válido</string>
	<string name="editor_profile_changes_for_next_place">Cambios para la próxima posición: %d</string>
	<string name="editor_profile_rating_place">Posición en la clasificación</string>
	<string name="booking_dialog_not_connect_header">Para reservar el hotel, habilita tu conexión a Internet</string>
	<string name="button_try">Pruébalo</string>
	<string name="refresh">Actualizar</string>
	<string name="last_update">Última actualización: %s</string>
	<string name="booking_checkin">hora de llegada: %s</string>
	<string name="booking_checkout">hora de salida: %s</string>
	<string name="placepage_add_place_button">Añadir un lugar al mapa</string>
	<!-- Displayed when saving some edits to the map to warn against publishing personal data -->
	<string name="editor_share_to_all_dialog_title">¿Quieres enviarlo a todos los usuarios?</string>
	<!-- iOS Dialog before publishing the modifications to the public map. -->
	<string name="editor_share_to_all_dialog_message_1">Asegúrate de que no has introducido ningún dato personal.</string>
	<string name="editor_share_to_all_dialog_message_2">Comprobaremos los cambios. Si tenemos cualquier pregunta, te contactaremos por correo electrónico.</string>
	<string name="navigation_overview_button">resumen</string>
	<string name="navigation_stop_button">parada</string>
	<!-- Text on an empty bookmark page -->
	<string name="bookmarks_empty_title">Guardar marcadores</string>
	<string name="bookmarks_empty_message_1">Pulsa ★ para guardar los lugares favoritos a los que podrás acceder rápidamente.</string>
	<string name="bookmarks_empty_message_2">Importar marcadores desde Mail y la web.</string>
	<string name="bookmarks_empty_message_3">hora de salida: %s</string>
	<!-- Name of the group for booked hotels -->
	<string name="bookmarks_group_name">Hoteles reservados</string>
	<string name="place_page_button_read_descriprion">Leer</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">¿Deshabilitar registro de ruta recorrida recientemente?</string>
	<!-- If a hotel is being shared -->
	<string name="sharing_booking">o reserva en booking.com</string>
	<string name="off_recent_track_background_button">Deshabilitar</string>
	<!-- For sharing via SMS and so on -->
	<string name="sharing_call_action_look">Comprueba</string>
	<string name="continue_recent_track_background_button">Continuar</string>
	<string name="recent_track_background_dialog_message">MAPS.ME usa tu geolocalización en segundo plano para registrar tu ruta recorrida recientemente.</string>
	<string name="whatsnew_car_navigation_header">Navegación en vehículo intuitiva</string>
	<string name="whatsnew_car_navigation_message">• Los elementos de navegación ocupan menos espacio.\n• Se muestra la velocidad y se ha añadido zoom automático.</string>
	<string name="whatsnew_cycle_navigation_2_header">Navegación en bicicleta</string>
	<string name="whatsnew_cycle_navigation_2_message">• La navegación en bicicleta tiene en cuenta la información del terreno.\n• Hemos creado rutas más fáciles basándonos en las inclinaciones de carretera.</string>
	<string name="whatsnew_booking_2_header">Búsqueda de hoteles fácil</string>
	<string name="whatsnew_booking_2_message">Los resultados de búsqueda muestran la valoración del hotel y la categoría de precios.</string>
	<string name="whatsnew_cycle_navigation_header">Navegación en bici (versión beta)</string>
	<string name="whatsnew_cycle_navigation_message">Estamos probando la navegación en bici para la nueva temporada. Prueba tu ruta favorita en bicicleta con MAPS.ME y comparte tu opinión con nosotros.</string>
	<!-- Rate on Google Play (Android only) -->
	<string name="rate_gp">Valorar en Google Play</string>
	<!-- Share with friends: menu item title -->
	<string name="tell_friends">Enviar a un amigo</string>
	<!-- Share with friends: sharing text -->
	<string name="tell_friends_text">¡Hola! ¡Instala MAPS.ME!</string>
	<!-- About short text (below logo) -->
	<string name="about_description">MAPS.ME es una aplicación esencial offline para viajar. MAPS.ME se basa en datos de OpenStreetMap y permite editarla.</string>
	<!-- Text in menu -->
	<string name="blog">Blog</string>
	<!-- Hint near allow statictics checkbox -->
	<string name="allow_statistics_hint">La recopilación de estadísticas de uso anónimas nos ayuda a mejorar la aplicación.</string>
	<string name="general_settings">Ajustes generales</string>
	<string name="date">Fecha %d</string>
	<!-- "Report a bug" -> "Generaal Feedback" -> "Something is not working" -->
	<string name="something_is_not_working">Algo no funciona</string>
	<!-- For the first routing -->
	<string name="accept">Aceptar</string>
	<!-- For the first routing -->
	<string name="decline">Declinar</string>
	<string name="whats_new_route_profile_title">Más vale rodear que no ahogar</string>
	<string name="whats_new_route_profile_message">Ahora se muestra el perfil de elevación en los itinerarios pedestres y en bicicleta.</string>
	<string name="whats_new_booking_improve_title">Ahorrar al reservar hoteles</string>
	<string name="whats_new_booking_improve_message">La búsqueda de resultados de hoteles ahora contiene la categoría de precios.\nHemos añadido más de 110 000 hoteles.</string>
	<!-- For place page hotel facilities block -->
	<string name="placepage_hotel_facilities">Instalaciones</string>
	<!-- For place page hotel nearby block -->
	<string name="placepage_hotel_nearby">Cercano</string>
	<!-- For ordering a taxi (as opposed to hotels or other things) -->
	<string name="taxi_order">Pedir un taxi</string>
	<!-- How long it is until the taxi arrives -->
	<string name="taxi_wait">Se espera en %s</string>
	<!-- When there are no available taxis nearby -->
	<string name="taxi_not_found">No se puede encontrar un taxi cerca</string>
	<!-- When there are no available taxi providers nearby -->
	<string name="taxi_no_providers">El servicio de taxi no está disponible aquí</string>
	<string name="install_app">Instalar</string>
	<!-- `Filter` is a noun here -->
	<string name="booking_filters">Filtrar</string>
	<string name="booking_filters_reset">Restablecer</string>
	<!-- Beginning from a particular value and -->
	<string name="booking_filters_rating">Con calificación desde</string>
	<string name="booking_filters_rating_any">Cualquier</string>
	<string name="booking_filters_ragting_good">Bueno</string>
	<string name="booking_filters_rating_very_good">Muy bueno</string>
	<string name="booking_filters_rating_excellent">Excelente</string>
	<string name="booking_filters_price_category">Categoría de precios</string>
	<string name="search_no_results_title">No se han encontrado resultados</string>
	<string name="search_no_results_message">Pruebe un término de búsqueda general, aléjese o restablezca el filtro.</string>
	<string name="search_no_results_expand_area_button">Alejarse</string>
	<string name="search_no_results_reset_button">Restablecer filtro</string>
	<!-- noun -->
	<string name="search_in_table">Lista</string>
	<string name="booking_show_more">Mostrar más</string>
	<string name="booking_reviews">Reseñas</string>
	<string name="booking_hotel">Hotel</string>
	<!-- hotel room -->
	<string name="booking_hotel_room">Habitación</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">Abrir</string>
	<string name="whatsnew_uber_header">MAPS.ME &amp; Uber</string>
	<string name="whatsnew_uber_message">¡Pide un taxi Uber directamente desde la aplicación!</string>
	<string name="dialog_taxi_offline">La opción para solicitar un taxi no se encuentra disponible en el modo sin conexión.</string>
	<string name="dialog_taxi_error">La opción para solicitar un taxi se encuentra temporalmente no disponible.</string>
	<string name="mobile_data_dialog">¿Usar Internet móvil para mostrar información detallada?</string>
	<string name="mobile_data_option_always">Usar siempre</string>
	<string name="mobile_data_option_today">Solo hoy</string>
	<string name="mobile_data_option_not_today">No usar hoy</string>
	<string name="mobile_data">Internet móvil</string>
	<string name="mobile_data_description">Se necesita Internet móvil para mostrar información detallada de los lugares, como fotografías, precios y reseñas.</string>
	<string name="mobile_data_option_never">No usar nunca</string>
	<string name="mobile_data_option_ask">Preguntar siempre</string>
	<string name="traffic_update_maps_text">Para mostrar los datos de tráfico, deben actualizarse los mapas.</string>
	<string name="traffic_outdated">Los datos de tráfico están obsoletos.</string>
	<string name="big_font">Aumentar el tamaño de fuente en el mapa</string>
	<string name="traffic_update_app">Por favor, actualice MAPS.ME</string>
	<!-- "traffic" as in road congestion -->
	<string name="traffic_update_app_message">Para mostrar los datos de tráfico, debe actualizar la aplicación.</string>
	<!-- "traffic" as in "road congestion" -->
	<string name="traffic_data_unavailable">Los datos de tráfico no están disponibles</string>
	<string name="banner_deliveryclub_title">Entrega de alimentos</string>
	<string name="banner_deliveryclub_message">Entrega rápida de 4000 restaurantes. Haga el pedido en Delivery Club.</string>
	<string name="banner_lamoda_title">Tienda online de ropa y calzado</string>
	<string name="banner_lamoda_message">Más de 1000 marcas. Descuentos de hasta 70%. Entrega gratuita en todo el territorio nacional.</string>
	<string name="banner_tutu_title">Billetes de tren en línea</string>
	<string name="banner_tutu_message">Billetes de tren en línea a cualquier ciudad en línea: precios, búsqueda y reservas.</string>
	<string name="banner_geerbest_title">Tienda online de electrónica</string>
	<string name="banner_geerbest_message">Búsqueda instantánea de más de 50 000 artículos a precios bajos.</string>
	<string name="banner_rentalcars_title">Alquiler de coches en línea</string>
	<string name="banner_rentalcars_message">800 compañías de alquiler de coches en más de 49 000 localidades.</string>
	<!-- december -->
	<string name="whatsnew_traffic">Datos del tráfico en 36 países</string>
	<!-- december -->
	<string name="whatsnew_traffic_text">¡Información actualizada del tráfico y de las rutas más rápidas basadas en ella!</string>
	<!-- december -->
	<string name="whatsnew_traffic_roaming">Información del tráfico en roaming</string>
	<!-- december -->
	<string name="whatsnew_traffic_roaming_text">Precisa menos de 1 MB de ancho de banda móvil por viaje.</string>
	<!-- december -->
	<string name="whatsnew_order_taxi">Pedir un taxi</string>
	<!-- december -->
	<string name="whatsnew_order_taxi_text">La mayoría de las páginas de localización incluyen un botón para pedir un taxi ahora.</string>
	<!-- january -->
	<string name="whatsnew_improved_search">Búsqueda mejorada</string>
	<!-- january -->
	<string name="whatsnew_improved_search_text">Incluso las consultas mal escritas proporcionan resultados de búsqueda precisos.</string>
	<!-- january -->
	<string name="whatsnew_filters_in_search">Filtros de búsqueda</string>
	<!-- january -->
	<string name="whatsnew_filters_in_search_text">Búsqueda de hoteles según su precio y clasificación.</string>
	<!-- january -->
	<string name="whatsnew_font_size">Tamaño de la fuente</string>
	<!-- january -->
	<string name="whatsnew_font_size_text">Las etiquetas del mapa pueden ampliarse.</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">Colores simples para tráfico</string>
	<string name="enable_logging">Habilitar historial</string>
	<string name="whatsnew_more_info_on_hotels_title">Más información sobre hoteles</string>
	<string name="whatsnew_more_info_on_hotels_message">Nuevo diseño de páginas de hoteles: vea nuevas fotos, opiniones de usuarios y otra información en línea.</string>
	<string name="whatsnew_better_routing_title">Planificación de rutas mejorada</string>
	<string name="whatsnew_better_routing_message">• Estimación más precisa de la hora de llegada.\n• La aplicación tiene en cuenta las áreas restringidas y las señales de tráfico.</string>
	<string name="whatsnew_smaller_mwm_title">Los mapas son más pequeños</string>
	<string name="whatsnew_smaller_mwm_message">Los mapas requieren un 20% menos de espacio de almacenamiento.</string>
	<string name="whatsnew_waypoints_title">Puntos de referencia en las rutas</string>
	<string name="whatsnew_waypoints_message">Pulse sobre los lugares para añadir puntos de referencia a su ruta.</string>
	<string name="whatsnew_driving_style_title">Nuevo estilo de mapa para la conducción</string>
	<string name="whatsnew_driving_style_message">Modo de navegación más fácil de usar.</string>
	<string name="more_on_bookingcom">Más información en Booking.com</string>
	<string name="details_on_bookingcom">Detalles en Booking.com</string>
	<string name="reviews_on_bookingcom">Más valoraciones en Booking.com</string>
	<string name="offline_place_page_more_information">Conéctese a internet para obtener más información sobre este lugar.</string>
	<string name="failed_load_information">No se ha podido cargar la información.</string>
	<string name="whats_new_auto_update_updating_maps">Actualizando mapas</string>
	<string name="whats_new_auto_update_title">Actualice sus mapas descargados</string>
	<string name="whats_new_auto_update_message">La actualización de mapas mantiene actualizada la información sobre objetos</string>
	<string name="whats_new_auto_update_button_size">Actualizar (%s)</string>
	<string name="whats_new_auto_update_button_later">Actualizar más tarde de forma manual</string>
	<string name="search_hotel_filter_apartment">Apartamentos</string>
	<string name="search_hotel_filter_camp_site">Campamento</string>
	<string name="search_hotel_filter_chalet">Chalé</string>
	<string name="search_hotel_filter_guest_house">Casa de huéspedes</string>
	<string name="search_hotel_filter_hostel">Albergue juvenil</string>
	<string name="search_hotel_filter_resort">Resort</string>
	<string name="search_hotel_filter_hotel">Hotel</string>
	<string name="search_hotel_filter_motel">Motel</string>
	<string name="create_campaign_button">Este negocio es mío</string>
	<string name="view_campaign_button">Anuncio destacado</string>
	<string name="search_hotel_filters_type">Tipo</string>
	<!-- Settings: "Send general feedback" button -->
	<string name="feedback_general">Opinión general</string>
	<string name="on">Akt.</string>
	<string name="off">Desact.</string>
	<string name="prefs_languages_information">Utilizamos el sistema TTS para las instrucciones de voz. Muchos dispositivos de Android usan Google TTS. Puede descargar o actualizarlo desde Google Play (https://play.google.com/store/apps/details?id=com.google.android.tts)</string>
	<string name="prefs_languages_information_off">Para algunos idiomas, debe instalar otro sintetizador de voz o un paquete de idioma adicional desde la tienda de aplicaciones (Google Play mercado, Samsung Apps). Abra los Ajustes de su dispositivo → Idioma e introducción → Voz → Opciones texto a voz. Aquí puede administrar la configuración de síntesis de voz (por ejemplo, descargar un paquete de idioma para poder usarlo sin conexión) o seleccionar otro motor de texto a voz.</string>
	<string name="prefs_languages_information_off_link">Para obtener más información, consulte esta guía.</string>
	<string name="whatsnew_transliteration_title">Transliteración al alfabeto latino</string>
	<string name="whatsnew_transliteration_message">Si una calle o un objeto no tiene nombre en su idioma, se escribirá con el alfabeto latino.</string>
	<string name="learn_more">Leer más</string>
	<string name="core_exit">Salir</string>
	<string name="routing_add_start_point">Agregar un punto de inicio para planificar una ruta</string>
	<string name="routing_add_finish_point">Agregar un destino para planificar una ruta</string>
	<string name="onboarding_welcome_message">Mapas gratuitos, rápidos y detallados sin conexión a internet y con navegación paso a paso.</string>
	<!-- нужно как-то выделять документы, чтобы привязать позже ссылки. -->
	<string name="onboarding_welcome_agree">Al iniciar la aplicación, usted acepta las Condiciones de uso y la Política de privacidad.</string>
	<string name="button_accept_and_continue">Aceptar y continuar</string>
	<string name="button_learn_more">Leer más</string>
	<string name="onboarding_storage_permissions_title">Otorgar acceso</string>
	<string name="onboarding_storage_permissions_message">Cambie la configuración de permisos en su dispositivo. MAPS.ME necesita tener acceso al almacenamiento.</string>
	<string name="button_exit">Salir</string>
	<string name="onboarding_detail_permissions_title">MAPS.ME necesita tener acceso a</string>
	<!-- Default permission's name from Android settings. -->
	<string name="onboarding_detail_permissions_storage_title">Almacenamiento</string>
	<string name="onboarding_detail_permissions_storage_message">Para guardar y utilizar mapas descargados en línea, así como guardar marcadores.</string>
	<!-- Default permission's name from Android settings. -->
	<string name="onboarding_detail_permissions_location_title">Ubicación</string>
	<string name="onboarding_detail_permissions_location_message">Para ver lugares y el estado de tráfico en su zona, y utilizar navegación.</string>
	<string name="onboarding_detail_permissions_storage_path_message">También puede cambiar en los ajustes el destino para los mapas descargados.</string>
	<string name="settings_device_memory">Memoria del dispositivo</string>
	<string name="settings_card_memory">Tarjeta de memoria</string>
	<string name="settings_storage_available">%s disponible</string>
	<string name="toast_location_permission_denied">A la aplicación se le ha denegado el permiso de acceso a la ubicación</string>
	<string name="button_use">Utilizar</string>
	<string name="planning_route_manage_route">Administrar ruta</string>
	<string name="button_plan">Planificar</string>
	<string name="button_add">Añadir</string>
	<string name="placepage_remove_stop">Eliminar</string>
	<string name="planning_route_remove_title">Arrastre aquí para eliminar</string>
	<string name="dialog_change_start_point_message">¿Cambiar el punto de inicio por la ubicación actual?</string>
	<string name="button_replace">Cambiar</string>
	<string name="placepage_add_stop">Añadir parada</string>
	<string name="whatsnew_intermediate_point_title">Parada adicional</string>
	<string name="whatsnew_intermediate_point_message">Planifique una ruta con una parada intermedia.</string>
	<string name="add_my_position">Añadir mi posición</string>
	<string name="choose_start_point">Elegir un punto de partida</string>
	<string name="choose_destination">Elegir un destino</string>
	<string name="preloader_viator_button">Más información</string>
	<string name="whats_new_title_route">Las rutas en bicicleta y a pie han sido mejoradas</string>
	<string name="whats_new_message_route">Hemos corregido errores, hemos agilizado mucho la creación de rutas y hemos añadido paradas intermedias</string>
	<string name="whats_new_message_title_update">Las actualizaciones de los mapas ahora son 10 veces más pequeñas</string>
	<string name="whats_new_message_maps_update">Para actualizar un mapa, ahora basta con descargar los datos que faltan</string>
	<string name="start_from_my_position">Empezar desde</string>
	<string name="rating">Calificación</string>
	<string name="placepage_no_reviews">Sin opiniones</string>
	<string name="placepage_reviewed">Usted ya ha dejado una opinión sobre este lugar</string>
	<string name="placepage_summary_rating">Calificación media</string>
	<plurals name="placepage_summary_rating_description">
	  <item quantity="other">Basado en %d opiniones</item>
	</plurals>
	<string name="placepage_rate_comment">Toque para valorar y opinar sobre este lugar.</string>
	<string name="placepage_rate_horrible">Horrible</string>
	<string name="placepage_rate_bad">Mal</string>
	<string name="placepage_rate_normal">Normal</string>
	<string name="placepage_rate_good">Bueno</string>
	<string name="placepage_rate_excellent">Excelente</string>
	<string name="placepage_reviews_most_recent">Los más recientes</string>
	<string name="placepage_reviews_most_useful">Los más útiles</string>
	<string name="placepage_reviews_highest_rated">De mejor calificación</string>
	<string name="placepage_reviews_lowest_rated">De peor calificación</string>
	<string name="placepage_reviews_offline_comment">En el modo desconectado solo se muestran las opiniones más útiles</string>
	<string name="placepage_reviews_your_comment">Su opinión</string>
	<string name="placepage_reviews_unhelpful">Irrelevante</string>
	<string name="placepage_reviews_inappropriate">Inapropiado</string>
	<string name="placepage_reviews_spam">Spam</string>
	<string name="placepage_reviews_hint">¿Cuáles son los aspectos positivos y los negativos?</string>
	<string name="placepage_reviews_edit_your_review">Edite su opinión</string>
	<string name="placepage_reviews_new_review">Nueva opinión</string>
	<string name="placepage_translate_button">Traducir</string>
	<string name="placepage_show_original_button">Mostrar original</string>
	<string name="placepage_more_reviews_booking_button">Más valoraciones en Booking.com</string>
	<string name="profile_authorization_title">Iniciar sesión con</string>
	<string name="profile_authorization_message">Inicie sesión fácilmente sin nombre de usuario ni contraseña en un par de segundos</string>
	<string name="profile_authorization_error">Vaya, se ha producido un error. Intente iniciar sesión de nuevo.</string>
	<string name="service">Servicio</string>
	<string name="atmosphere">Ambiente</string>
	<string name="value_for_money">Relación calidad-precio</string>
	<string name="experience">Experiencia</string>
	<string name="assortment">Variedad</string>
	<string name="expertise">Conocimiento</string>
	<string name="equipment">Equipamiento</string>
	<string name="quality">Calidad</string>
	<string name="whats_new_ugc_title_updated_v840">Calificaciones y opiniones</string>
	<string name="whats_new_ugc_message">Ahora puede dejar calificaciones y opiniones incluso sin conexión. No se olvide de actualizar los mapas para ver los cambios.</string>
	<string name="dialog_error_storage_title">Problema de acceso al almacenamiento</string>
	<string name="dialog_error_storage_message">El almacenamiento externo no está disponible; puede que se haya quitado o dañado la tarjeta SD, o el sistema de archivos solo permite lectura. Por favor, compruébelo y escríbanos a support\@maps.me</string>
	<string name="setting_emulate_bad_storage">Emular almacenamiento dañado</string>
	<string name="discovery_button_title">Descubrir los alrededores</string>
	<string name="discovery_button_subtitle_things_to_do">Cosas que hacer</string>
	<string name="discovery_button_subtitle_attractions">Atracciones</string>
	<string name="discovery_button_subtitle_eat_and_drink">Comida y bebida</string>
	<string name="discovery_button_subtitle_local_guides">Guías locales</string>
	<string name="discovery_button_viator_error_title">De produjo un error al cargar datos</string>
	<string name="discovery_button_other_error_message">De produjo un error al cargar datos</string>
	<string name="discovery_button_other_loading_message">Cargando datos</string>
	<string name="discovery_button_404_error_title">No encontrado</string>
	<string name="discovery_button_404_error_message">Vaya, no se ha encontrado nada interesante por la zona.</string>
	<string name="booking_filters_check_in">Entrada</string>
	<string name="booking_filters_check_out">Salida</string>
	<string name="booking_filters_offline">No disponible fuera de línea.</string>
	<string name="directions_finish">Destino</string>
	<string name="directions_on_foot">%s a pie</string>
	<string name="core_entrance">Entrada</string>
	<string name="coffee">Café</string>
	<string name="cleanliness">Limpieza</string>
	<string name="crowdedness">Lugar concurrido</string>
	<string name="error_enter_correct_name">Por favor, introduzca el nombre correcto</string>
	<string name="hotel_available">Disponible</string>
	<string name="whats_new_transit_title">Metro disponible</string>
	<string name="whats_new_transit_message">¡Cree rutas con el metro! Actualice los mapas para ver los cambios.</string>
	<string name="whats_new_discovery_title">Botón Descubrimiento</string>
	<string name="whats_new_discovery_message">¡Descubra los alrededores en un clic!</string>
	<string name="price_per_hour">%s/hora</string>
	<string name="bookmarks_backup">Permitir copia de seguridad</string>
	<string name="authorization_button_sign_in">Iniciar sesión</string>
	<string name="bookmarks_message_authorized_user">La copia de seguridad de sus marcadores se guarda automáticamente en un almacenamiento seguro de la nube. ¿Desea habilitar la copia de seguridad?</string>
	<string name="bookmarks_message_unauthorized_user">La copia de seguridad de sus marcadores se guarda automáticamente en un almacenamiento seguro de la nube. Inicie sesión para habilitar la copia de seguridad.</string>
	<string name="bookmarks_message_unbackuped_user">La copia de seguridad de sus marcadores se guarda automáticamente en un almacenamiento seguro de la nube.</string>
	<string name="bookmarks_message_backuped_user">La copia de seguridad de sus marcadores se guarda automáticamente en un almacenamiento seguro de la nube. La última copia de seguridad se hizo %s</string>
	<string name="settings_backup_bookmarks">Marcadores de copia de seguridad</string>
	<string name="bookmarks_groups">Liza</string>
	<string name="bookmarks_groups_hide_all">Ocultar todo</string>
	<string name="bookmarks_groups_show_all">Mostrar todo</string>
	<plurals name="bookmarks_places">
	  <item quantity="other">%d marcadores</item>
	</plurals>
	<string name="bookmarks_create_new_group">Crear nueva lista</string>
	<string name="downloader_hide_screen">Ocultar pantalla</string>
	<string name="downloader_percent">%1$s (%2$s de %3$s)</string>
	<string name="downloader_process">Descargando %s...</string>
	<string name="downloader_applying">Aplicando %s...</string>
	<string name="transit_not_found">La navegación de tránsito aún no está disponible en esta región</string>
	<string name="whats_new_title_hotel_filter">¡Hay nuevos filtros disponibles!</string>
	<string name="whats_new_message_hotel_filter">¡Hay hoteles disponibles para las fechas especificadas! Utilice los filtros de Entrada y Salida</string>
	<string name="whats_new_title_ugc_travel">¡Comparta su experiencia con otros viajeros!</string>
	<string name="whats_new_message_ugc_travel">¡Puntúe y opine sobre los lugares visitados!</string>
	<string name="dialog_pedestrian_route_is_long">La ruta peatonal es demasiado larga</string>
	<string name="dialog_message_transit_not_found_connection">Planea una ruta en una red de tránsito</string>
	<string name="bookmarks_error_message_share_general">No se puede compartir debido a un error de la aplicación</string>
	<string name="bookmarks_error_title_share_empty">Error al compartir</string>
	<string name="bookmarks_error_message_share_empty">No se puede compartir una lista vacía</string>
	<string name="discovery_button_subtitle_book_hotels">Reservar hoteles</string>
	<string name="bookmarks_error_title_empty_list_name">El nombre no puede estar vacío</string>
	<string name="bookmarks_error_message_empty_list_name">Por favor ingrese el nombre de la lista</string>
	<string name="bookmarks_new_list_hint">Lista nueva</string>
	<string name="bookmarks_error_title_list_name_already_taken">Este nombre ya ha sido tomado</string>
	<string name="bookmarks_error_message_list_name_already_taken">Por favor elige otro nombre</string>
	<string name="bookmarks_error_title_list_name_too_long">Este nombre es demasiado largo</string>
	<string name="bookmarks_error_message_list_name_too_long">Por favor elige otro nombre</string>
	<string name="please_wait">Por favor espera...</string>
	<string name="phone_number">Número de teléfono</string>
	<string name="notification_unsent_reviews_title">Tienes varias reseñas sin enviar</string>
	<string name="notification_unsent_reviews_message">Inicia sesión para compartir comentarios con otros viajeros</string>
	<string name="profile">Perfil de OpenStreetMap</string>
	<string name="place_page_search_similar_hotel">Buscar hoteles similares</string>
	<string name="bookmarks_detect_title">Nuevos archivos detectados</string>
	<plurals name="bookmarks_detect_message">
	  <item quantity="one">Se encontró %d archivo. Lo verás después de la conversión.</item>
	  <item quantity="other">Se han encontrado %d archivos. Los verás después de la conversión.</item>
	</plurals>
	<string name="button_convert">Convertir</string>
	<string name="bookmarks_convert_error_title">Error</string>
	<string name="bookmarks_convert_error_message">Algunos archivos no fueron convertidos.</string>
	<string name="converting">Mudado...</string>
	<string name="wn_reinvented_bookmarks_title">¡Hemos reinventado marcadores!</string>
	<string name="wn_reinvented_bookmarks_message">Puede hacer una copia de seguridad de los marcadores, crear listas... Es increíble...</string>
	<string name="wn_way_of_booking_title">¡Hemos vuelto a imaginar la forma de reservar!</string>
	<string name="wn_way_of_booking_message">Solo encuentra un hotel en el mapa y reservalo, o selecciona el similar.</string>
	<string name="bookmarks_restore">Restaurar marcadores</string>
	<string name="bookmarks_restore_process">Restaurando...</string>
	<string name="bookmarks_restore_title">Restaurar esta versión?</string>
	<string name="bookmarks_restore_message">Tus marcadores se restaurarán desde %1$s (%2$s)</string>
	<string name="bookmarks_restore_empty_title">No tienes una copia de seguridad</string>
	<string name="bookmarks_restore_empty_message">El servidor no encontró copias de seguridad previamente hechas</string>
	<string name="common_check_internet_connection_dialog_title">Sin conexión a Internet</string>
	<string name="error_server_title">Error del Servidor</string>
	<string name="error_server_message">Hubo un error en el servidor, intente de nuevo más tarde</string>
	<string name="error_system_message">Un error desconocido ocurrió</string>
	<string name="restore">Restaurar</string>
	<string name="sign_message_gdpr">Para continuar debes aceptar nuestros Términos de Uso y la Política de Privacidad. Por favor, léelos cuidadosamente.</string>
	<string name="sign_agree_pp_gdpr">Acepto la &lt;a href="%s">Política de Privacidad&lt;/a></string>
	<string name="sign_agree_tof_gdpr">Acepto los &lt;a href="%s">Términos de Uso&lt;/a></string>
	<string name="sign_agree_news_gdpr">Acepto recibir las últimas noticias sobre productos de MAPS.ME</string>
	<string name="whats_new_localbiz_title">Los pequeños negocios merecen atención</string>
	<string name="whats_new_localbiz_message">Lo que hace que nuestros viajes sean inolvidables son las cafeterías locales, los acogedores hostales y las tiendas. Optimizaremos vuestra página en MAPS.ME para hacerla resaltar.</string>
	<string name="whats_new_order_button">Deja vuestra solicitud</string>
	<string name="bookmarks_page_downloaded">Descargado</string>
	<string name="bookmarks_page_my">Mis</string>
	<string name="routes_and_bookmarks">Rutas y marcadores</string>
	<string name="bookmarks_webview_success_toast">Marcadores descargados exitosamente</string>
	<string name="cached_bookmarks_placeholder_title">Descargar nuevos lugares</string>
	<string name="cached_bookmarks_placeholder_subtitle">Presione el botón para descargar miles de lugares y rutas interesantes creadas por usuarios de MAPS.ME. Necesitará una conexión a Internet.</string>
	<string name="downloader_download_routers">Descargar marcadores</string>
	<string name="bookmarks_groups_cached">Listas descargadas</string>
	<string name="author_name_by_prefix">%s</string>
	<plurals name="bookmarks_objects">
	  <item quantity="other">%s objeto</item>
	</plurals>
	<plurals name="objects">
	  <item quantity="other">%d lugar</item>
	</plurals>
	<plurals name="places">
	  <item quantity="other">%d lugares</item>
	</plurals>
	<plurals name="tracks">
	  <item quantity="other">%d seguimientos</item>
	</plurals>
	<string name="subtittle_opt_out">Configuraciones de seguimiento</string>
	<string name="opt_out_flurry">Estadística</string>
	<string name="opt_out_mopub">Publicidad personalizada</string>
	<string name="opt_out_fabric">Informe de incidentes</string>
	<string name="opt_out_fabric_description">Puede que utilicemos vuestros datos para mejorar la experiencia de MAPS.ME. Los cambios tendrán efecto después que reinicie la aplicación.</string>
	<string name="opt_out_help_ios_1">Su dispositivo móvil puede tener una opción de «Limitar el seguimiento de anuncios» o «Excluir anuncios basados en intereses».</string>
	<string name="opt_out_help_ios_2">iOS 9 o más reciente</string>
	<string name="opt_out_help_ios_3">Diríjase a su Configuración → Privacidad → Publicidad → Habilite la opción «Limitar seguimiento»</string>
	<string name="opt_out_help_android">Su dispositivo móvil puede proporcionar una configuración para «Limitar el seguimiento de anuncios» o «Excluir anuncios basados en intereses». \n\nPara la versión 4.0 o más reciente de Android y Servicios de Google Play :\nConfiguración → Google → Anuncios → Excluir Personalización de Anuncios\nor\nConfiguración → Google → Cuenta de Google → Información personal y privacidad → Configuración de Anuncios → Personalización de Anuncios</string>
	<string name="privacy_policy">Política de Privacidad</string>
	<string name="terms_of_use">Condiciones de uso</string>
	<string name="backup_notification_failed">La copia de suguridad de sus marcadores ha sido suspendida. Inicie sesión para volverla a iniciar.</string>
	<string name="banner_megafon_banner_message">¡Despídase del roaming internacional!</string>
	<string name="banner_megafon_banner_button">¡Adiós!</string>
	<string name="button_layer_traffic">Tráfico</string>
	<string name="button_layer_subway">Metro</string>
	<string name="layers_title">Capas del mapa</string>
	<string name="layers_message">Utilice las capas del mapa para mostrar el tráfico, el mapa del metro, y otra información útil</string>
	<string name="button_layer_got_it">Listo</string>
	<string name="subway_data_unavailable">El mapa del metro no está disponible</string>
	<string name="bookmarks_empty_list_title">Esta lista está vacía</string>
	<string name="bookmarks_empty_list_message">Para agregar un marcador, toque un lugar en el mapa y después toque el ícono de estrella</string>
	<string name="category_desc_more">…más</string>
	<string name="title_error_downloading_bookmarks">Se ha producido un error</string>
	<string name="subtitle_error_downloading_bookmarks">Los marcadores no se descargaron</string>
	<string name="whats_new_bookmarks_catalog_title">MAPS.ME ahora tiene un catálogo de rutas</string>
	<string name="whats_new_bookmarks_catalog_message">Cientos de rutas detalladas por todo el mundo: a dónde ir, qué ver, dónde comer.</string>
	<string name="whats_new_popularity_label_title">Lugares cercanos populares</string>
	<string name="whats_new_popularity_label_message">La sección \"Descubrir los alrededores\" os ayudará a encontrar los lugares más populares en la ciudad.</string>
	<string name="whats_new_hot_offers_title">Atractivas ofertas de hoteles</string>
	<string name="whats_new_hot_offers_message">Puede buscarlas utilizando la categoría «Hoteles» en la búsqueda. Las ofertas estarán marcadas por el símbolo de porcentaje en el mapa y en los resultados de la búsqueda.</string>
	<string name="error_already_downloaded">Esta lista ya se ha descargado</string>
	<string name="guides">Guías</string>
	<string name="guide_downloaded_title">Se ha descargado la guía correctamente</string>
	<string name="download_guides">Descargar guías</string>
	<string name="cached_guides_placeholder_subtitle">Guías detallas fuera de línea para cualquier tipo de viaje. Elija la que mejor se adapta a sus necesidades y descárguela directamente en el mapa. Necesitará conexión a Internet para descargar las guías.</string>
	<string name="guides_groups_cached">Guías descargadas</string>
	<string name="subtitle_error_downloading_guide">No se ha descargado la guía</string>
	<string name="error_already_downloaded_guide">Ya se ha descargado esta guía</string>
	<string name="guide_downloaded_subtitle">Pulsa \"Ver en el mapa\" para explorar la guía</string>
	<string name="bookmarks_guides">Marcadores y guías</string>
	<string name="remove_ads">Desactivar anuncios</string>
	<string name="remove_ads_title">Desactive todos los anuncios y apoye a MAPS.ME</string>
	<string name="paybtn_title">Pagar %s/por año</string>
	<string name="paybtn_subtitle">Ahorre %s/por año</string>
	<string name="options_dropdown_title">Otras opciones</string>
	<string name="why_support">¿Por qué apoyar a MAPS.ME?</string>
	<string name="options_dropdown_item1">%1$s/al mes (ahorro %2$s/por año)</string>
	<string name="options_dropdown_item2">%s/por semana (sin ahorro)</string>
	<string name="why_support_item1">Desactivaremos todos los anuncios para usted</string>
	<string name="why_support_item2">Usted nos ayuda a mejorar a MAPS.ME</string>
	<string name="why_support_item3">Nos está ayudando a mejorar los mapas de OpenStreetMaps.org</string>
	<string name="purchase_processing">Tu compra se está procesando…</string>
	<string name="tips_bookmarks_catalog_title">Guías turísticas offline para todo tipo de viajes</string>
	<string name="tips_bookmarks_catalog_message">Descargue y organice rutas turísticas por lugares interesantes en diferentes ciudades del mundo.</string>
	<string name="tips_discover_button_title">¿Quiere encontrar los lugares populares en el área?</string>
	<string name="tips_discover_button_message">En la sección «Descubrir los alrededores», están recopilados los mejores restaurantes, hoteles y sitios de interés.</string>
	<string name="tips_book_hotel_title">Reserve los hoteles más cómodos para sus vacaciones</string>
	<string name="tips_book_hotel_message">Con la ayuda de la búsqueda y los filtros encontrará los mejores hoteles. Oprima el botón «Reservar» en la descripción de lugar para la reserva inmediata del hotel.</string>
	<string name="tips_map_layers_title">¿No sabe en qué estación de metro hacer el transbordo?</string>
	<string name="tips_map_layers_message">Active la opción de metro en el mapa, para ver el esquema del metro y siempre se orientará en una nueva ciudad.</string>
	<string name="channels_map_update">Actualización de los mapas</string>
	<string name="channels_reviews">Comentarios no enviados</string>
	<string name="purchase_loading">Cargando la información de compras…</string>
	<string name="purchase_error_subtitle">Se produjo un error durante el procesamiento de su compra</string>
	<string name="awaiting_approval">Estamos esperando la confirmación de los padres</string>
	<string name="whats_new_leave_review">¡Haga un comentario! Comparta su opinión sobre los lugares que visitó durante las vacaciones.</string>
	<string name="server_unavailable_title">Servidor no disponible</string>
	<string name="server_unavailable_message">La compra se completará más tarde. Si el error persiste, póngase en contacto con support\@maps.me.</string>
	<string name="offline_fiters_check_in">Conéctese a Internet para seleccionar la fecha de llegada y salida.</string>
	<string name="restore_subscription">Restablecer la suscripción</string>
	<string name="restore_success_alert">La suscripción se ha restablecido correctamente</string>
	<string name="restore_error_alert">Se ha producido un error al restablecer la suscripción</string>
	<string name="restore_no_subscription_alert">No hay suscripciones activas</string>
	<string name="subscription_terms">El pago se cobrará en tu cuenta de iTunes a la confirmación de la compra. La suscripción se renovará automáticamente a menos que se desactive la renovación automática al menos 24 horas antes del final del periodo actual. Se cobrará en tu cuenta según tu plan de renovación dentro de las 24 horas antes del final del periodo actual. Puedes gestionar o desactivar la renovación automática en los ajustes de cuenta de tu Apple ID en cualquier momento de tu compra.</string>
	<string name="subscriptions_title">Suscripciones</string>
	<string name="manage_subscription">Gestionar suscripción</string>
	<string name="sharing_options">Configuración de acceso</string>
	<string name="export_file">Exportar el archivo</string>
	<string name="list_settings">Configurar lista</string>
	<string name="delete_list">Eliminar lista</string>
	<string name="hide_from_map">Ocultar en el mapa</string>
	<string name="ugc_route_tags_screen_label">Seleccione etiquetas</string>
	<string name="ugc_route_tags_progress_msg">Cargando etiquetas…</string>
	<string name="public_access">Acceso público</string>
	<string name="limited_access">Acceso privado</string>
	<string name="upload_and_publish_desc">Esta guía se cargará en el directorio público de MAPS.ME y estará disponible para otros usuarios</string>
	<string name="upload_and_publish">Cargar y publicar</string>
	<string name="upload_and_get_direct_link">Descargar y obtener el enlace</string>
	<string name="get_direct_link_desc">Su guía estará disponible en un enlace directo</string>
	<string name="upload_and_publish_progress_text">Guía publicándose…</string>
	<string name="upload_and_publish_success">Guía publicada</string>
	<string name="ugc_routes_user_agreement">&lt;b>TENGA EN CUENTA:&lt;/b> al continuar, acepta el &lt;a href="%s">acuerdo de licencia&lt;/a></string>
	<string name="ugc_route_edit_list_name">Nombre de la guía</string>
	<string name="ugc_route_edit_description_hint">Agregue una descripción (texto o html)</string>
	<string name="not_shared">Personal</string>
	<string name="direct_link_progress_text">Cargando su archivo…</string>
	<string name="direct_link_success">Enlace creado</string>
	<string name="edit_guide_title">Edite su guía en línea</string>
	<string name="edit_guide_subtitle">Obtenga un enlace para editar su guía a través de la aplicación web: agregue descripciones de lugares, suba fotos y conecte las etiquetas con líneas.</string>
	<string name="send_a_link_btn">Enviar enlace</string>
	<string name="upload_error_toast">Se produjo un error durante la carga del archivo</string>
	<string name="tags_loading_error_subtitle">Durante la carga de las etiquetas, se produjo un error, por favor inténtelo de nuevo</string>
	<string name="unable_upload_errorr_title">No se pudo cargar el archivo</string>
	<string name="unable_upload_error_subtitle_edited">El archivo fue editado a través de la aplicación web</string>
	<string name="unable_upload_error_subtitle_broken">El archivo está dañado y no se puede cargar. Por favor, suba otro archivo.</string>
	<string name="buy_btn">Comprar por %s</string>
	<string name="download_guide_progress">Guía de viajes cargando…</string>
	<string name="price_error_title">No se puede conocer el costo</string>
	<string name="price_error_subtitle">Por favor, inténtelo de nuevo en un par de minutos</string>
	<string name="edit_your_guide_email_body">Edite su guía de viaje en la computadora: agregue descripciones de lugares, suba fotos y conecte las etiquetas con líneas.</string>
	<string name="edit_on_web">Editar en línea</string>
	<string name="properties_loading_error_subtitle">Durante la carga de las opciones, se produjo un error, por favor inténtelo de nuevo</string>
	<string name="custom_props_desc">Esta guía que ha compilado como</string>
	<string name="custom_props_title">Local o turista</string>
	<string name="custom_props_local">local</string>
	<string name="custom_props_traveler">turista</string>
	<string name="select_properties">Seleccionar opciones</string>
	<string name="access_rules_p_to_p">Acceso especial</string>
	<string name="access_rules_paid">Comprado</string>
	<string name="failed_purchase_support_message">Parece que tiene una compra pendiente. Por favor escribanos a nuestro apoyo y resolveremos el problema.</string>
	<string name="contact">Escribir</string>
	<string name="check_price_button">Conocer el precio</string>
	<string name="download_button">Descargar</string>
	<string name="speedcams_alert_title">Cámaras de la velocidad</string>
	<string name="speedcams_alert_subtitle">Advertencia de límites de velocidad</string>
	<string name="speedcam_option_auto">Auto</string>
	<string name="speedcam_option_always">Siempre</string>
	<string name="speedcam_option_never">Nunca</string>
	<string name="bookmark_description_title">Descripción de la etiqueta</string>
	<string name="place_description_title">Descripción del lugar</string>
	<string name="ugc_routes_error_uploading_file_toast">Lo sentimos, se produjo un error al cargar las etiquetas. Por favor intente de nuevo.</string>
	<string name="notification_channel_ugc">Contenido del usuario</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">Cargando mapas</string>
	<string name="notification_leave_review_title">%s - ¿Cómo se siente aquí?</string>
	<string name="notification_leave_review_content">¡Deje un comentario y ayude a otros viajeros!</string>
	<string name="share_bookmarks_email_body_link">Hola!\n\nSus etiquetas se pueden descargar desde el enlace: %s. Abra la lista con la ayuda de MAPS.ME y disfrute del viaje!\n\nDescargar la aplicación: http://maps.me/get?kmz</string>
	<string name="warning_speedcams_title">El navegador le notificará de las cámaras cuando se exceda el límite de velocidad en %d km/h</string>
	<string name="warning_speedcams_subtitle">No de olvide de leer las reglas de carretera en el país de viaje.</string>
	<string name="speedcams_notice_message">Auto - advierte sobre las cámaras de velocidad si existe el riesgo de exceder el límite de velocidad\nSiempre - siempre alerta sobre las cámaras\nNunca - nunca advierte acerca de las cámaras</string>
	<string name="whats_new_ugc_routes_title">Compartir tus impresiones es fácil</string>
	<string name="whats_new_ugc_routes_subtitle">Guarda lugares memorables, crea rutas mediante marcadores y compártelas con todo el mundo en el catálogo de MAPS.ME.</string>
	<string name="whats_new_webeditor_title">Convierte tus rutas en historias</string>
	<string name="whats_new_ugc_routes_message2">Añade fotos e historias detalladas en el editor web.</string>
	<string name="whatsnew_standard_routes_title">Rutas estándar</string>
	<string name="whatsnew_standard_routes_message">Un conjunto básico de puntos, descripciones breves, ¡pero muchas impresiones!</string>
	<string name="whatsnew_city_overview_title">Una vista a la ciudad</string>
	<string name="whatsnew_city_overview_message">Hasta 200 puntos en el mapa de la ciudad: ¡todo lo más útil e interesante para el viajero!</string>
	<string name="whatsnew_pro_guides_title">Rutas profesionales</string>
	<string name="whatsnew_pro_guides_message">Alto nivel de detalle, descripciones minuciosas de lugares y capacidad para calcular la distancia y el tiempo en camino</string>
	<string name="whatsnew_paid_routes_title">¡Más experiencias nuevas!</string>
	<string name="whatsnew_paid_routes_message">Además de las rutas gratuitas, agregamos al catálogo 3 categorías de guías con pago. ¡Más de 700 rutas nuevas!</string>
	<string name="whats_new_ugc_routes_title_android_only">Compartir tus impresiones es fácil</string>

	<!-- SECTION: Types -->
	<string name="type.aerialway.station">Estación de teleférico</string>
	<string name="type.aeroway.aerodrome">Aeropuerto</string>
	<string name="type.aeroway.aerodrome.international">Aeropuerto</string>
	<string name="type.aeroway.helipad">Helipuerto</string>
	<string name="type.amenity.atm">Cajero</string>
	<string name="type.amenity.bank">Banco</string>
	<string name="type.amenity.bbq">Picnic</string>
	<string name="type.amenity.bench">Banco</string>
	<string name="type.amenity.bicycle_parking">Aparcamiento de bicis</string>
	<string name="type.amenity.bicycle_rental">Alquiler de bicicletas</string>
	<string name="type.amenity.brothel">Burdel</string>
	<string name="type.amenity.bureau_de_change">Cambio de divisas</string>
	<string name="type.amenity.bus_station">Estación de autobuses</string>
	<string name="type.amenity.cafe">Café</string>
	<string name="type.amenity.car_rental">Coche de alquiler</string>
	<string name="type.amenity.car_sharing">Compartir coche</string>
	<string name="type.amenity.car_wash">Lavado de coches</string>
	<string name="type.amenity.charging_station">Estación de carga</string>
	<string name="type.amenity.childcare">Guardería</string>
	<string name="type.amenity.cinema">Cine</string>
	<string name="type.amenity.clinic">Clínica</string>
	<string name="type.amenity.college">Colegio</string>
	<string name="type.amenity.community_centre">Centro comunitario</string>
	<string name="type.amenity.courthouse">Juzgado</string>
	<string name="type.amenity.dentist">Dentista</string>
	<string name="type.amenity.doctors">Consulta del médico</string>
	<string name="type.amenity.drinking_water">Agua potable</string>
	<string name="type.amenity.driving_school">Autoescuela</string>
	<string name="type.amenity.embassy">Embajada</string>
	<string name="type.amenity.fast_food">Comida rápida</string>
	<string name="type.amenity.ferry_terminal">Transbordador</string>
	<string name="type.amenity.fire_station">Parque de bomberos</string>
	<string name="type.amenity.fountain">Fuente</string>
	<string name="type.amenity.fuel">Gasolinera</string>
	<string name="type.amenity.grave_yard">Cementerio</string>
	<string name="type.amenity.grave_yard.christian">Cementerio</string>
	<string name="type.amenity.hunting_stand">Galería de caza</string>
	<string name="type.amenity.ice_cream">Heladería</string>
	<string name="type.amenity.internet_cafe">Cibercafé</string>
	<string name="type.amenity.kindergarten">Guardería</string>
	<string name="type.amenity.library">Biblioteca</string>
	<string name="type.amenity.marketplace">Mercado</string>
	<string name="type.amenity.motorcycle_parking">Aparcamiento de motos</string>
	<string name="type.amenity.nightclub">Discoteca</string>
	<string name="type.amenity.nursing_home">Residencia de ancianos</string>
	<string name="type.amenity.parking">Aparcamiento</string>
	<string name="type.amenity.parking.fee">Aparcamiento</string>
	<string name="type.amenity.parking.multi.storey">Aparcamiento</string>
	<string name="type.amenity.parking.multi.storey.fee">Aparcamiento</string>
	<string name="type.amenity.parking.no.access">Aparcamiento</string>
	<string name="type.amenity.parking.park_and_ride">Aparcamiento</string>
	<string name="type.amenity.parking.permissive">Aparcamiento</string>
	<string name="type.amenity.parking.permissive.fee">Aparcamiento</string>
	<string name="type.amenity.parking.private">Aparcamiento</string>
	<string name="type.amenity.parking.underground">Aparcamiento</string>
	<string name="type.amenity.parking.underground.fee">Aparcamiento</string>
	<string name="type.amenity.payment_terminal">Terminal de pago</string>
	<string name="type.amenity.pharmacy">Farmacia</string>
	<string name="type.amenity.place_of_worship">Lugar de culto</string>
	<string name="type.amenity.place_of_worship.buddhist">Templo</string>
	<string name="type.amenity.place_of_worship.christian">Iglesia</string>
	<string name="type.amenity.place_of_worship.hindu">Templo</string>
	<string name="type.amenity.place_of_worship.jewish">Sinagoga</string>
	<string name="type.amenity.place_of_worship.muslim">Mezquita</string>
	<string name="type.amenity.place_of_worship.shinto">Ermita</string>
	<string name="type.amenity.place_of_worship.taoist">Templo</string>
	<string name="type.amenity.police">Policía</string>
	<string name="type.amenity.post_box">Buzón</string>
	<string name="type.amenity.post_office">Oficina de correos</string>
	<string name="type.amenity.public_bookcase">Intercambio de libros</string>
	<string name="type.amenity.recycling">Centro de reciclaje</string>
	<string name="type.amenity.restaurant">Restaurante</string>
	<string name="type.amenity.school">Escuela</string>
	<string name="type.amenity.shelter">Refugio</string>
	<string name="type.amenity.shower">Ducha</string>
	<string name="type.amenity.telephone">Teléfono</string>
	<string name="type.amenity.theatre">Teatro</string>
	<string name="type.amenity.toilets">WC</string>
	<string name="type.amenity.townhall">Ayuntamiento</string>
	<string name="type.amenity.university">Universidad</string>
	<string name="type.amenity.vending_machine.cigarettes">Máquina expendedora de tabaco</string>
	<string name="type.amenity.vending_machine.drinks">Máquina expendedora de bebidas</string>
	<string name="type.amenity.vending_machine.parking_tickets">Máquina de pago de tique de aparcamiento</string>
	<string name="type.amenity.veterinary">Clínica veterinaria</string>
	<string name="type.amenity.waste_basket">Papelera</string>
	<string name="type.amenity.waste_disposal">Basura</string>
	<string name="type.amenity.water_point">Fuente de agua potable</string>
	<string name="type.barrier.block">Bloque</string>
	<string name="type.barrier.bollard">Bolardo</string>
	<string name="type.barrier.border_control">Control de fronteras</string>
	<string name="type.barrier.entrance">Entrada</string>
	<string name="type.barrier.gate">Puerta</string>
	<string name="type.barrier.lift_gate">Barrera</string>
	<string name="type.barrier.stile">Escalón</string>
	<string name="type.barrier.toll_booth">Peaje</string>
	<string name="type.boundary.national_park">Parque nacional</string>
	<string name="type.building">Edificio</string>
	<string name="type.building.address">Edificio</string>
	<string name="type.building.garage">Garaje</string>
	<string name="type.building.has_parts">Edificio</string>
	<string name="type.building.train_station">Estación de tren</string>
	<string name="type.craft.brewery">Fábrica de cerveza</string>
	<string name="type.craft.carpenter">Carpintero</string>
	<string name="type.craft.electrician">Electricista</string>
	<string name="type.craft.gardener">Paisajista</string>
	<string name="type.craft.hvac">Aire acondicionado</string>
	<string name="type.craft.metal_construction">Trabajador del metal</string>
	<string name="type.craft.painter">Pintor</string>
	<string name="type.craft.photographer">Fotógrafo</string>
	<string name="type.craft.plumber">Fontanero</string>
	<string name="type.craft.shoemaker">Zapatero</string>
	<string name="type.craft.tailor">Sastre</string>
	<string name="type.cuisine.african">Cocina africana</string>
	<string name="type.cuisine.american">Cocina americana</string>
	<string name="type.cuisine.arab">Cocina árabe</string>
	<string name="type.cuisine.argentinian">Cocina argentina</string>
	<string name="type.cuisine.asian">Cocina asiática</string>
	<string name="type.cuisine.austrian">Cocina austriaca</string>
	<string name="type.cuisine.bagel">Bágel</string>
	<string name="type.cuisine.balkan">Cocina balcánica</string>
	<string name="type.cuisine.barbecue">Barbacoa</string>
	<string name="type.cuisine.bavarian">Cocina bávara</string>
	<string name="type.cuisine.beef_bowl">Gyūdon</string>
	<string name="type.cuisine.brazilian">Cocina brasileña</string>
	<string name="type.cuisine.breakfast">Desayunos</string>
	<string name="type.cuisine.burger">Hamburguesas</string>
	<string name="type.cuisine.buschenschank">Buschenschank</string>
	<string name="type.cuisine.cake">Tartas</string>
	<string name="type.cuisine.caribbean">Cocina caribeña</string>
	<string name="type.cuisine.chicken">Pollos</string>
	<string name="type.cuisine.chinese">Cocina china</string>
	<string name="type.cuisine.coffee_shop">Café</string>
	<string name="type.cuisine.crepe">Crepes</string>
	<string name="type.cuisine.croatian">Cocina croata</string>
	<string name="type.cuisine.curry">Curri</string>
	<string name="type.cuisine.deli">Delicatesen</string>
	<string name="type.cuisine.diner">Cena</string>
	<string name="type.cuisine.donut">Rosquillas</string>
	<string name="type.cuisine.ethiopian">Cocina etíope</string>
	<string name="type.cuisine.filipino">Cocina filipina</string>
	<string name="type.cuisine.fine_dining">Restaurante elegante</string>
	<string name="type.cuisine.fish">Pescados</string>
	<string name="type.cuisine.fish_and_chips">Pescado rebozado con patatas</string>
	<string name="type.cuisine.french">Cocina francesa</string>
	<string name="type.cuisine.friture">Frituras</string>
	<string name="type.cuisine.georgian">Cocina georgiana</string>
	<string name="type.cuisine.german">Cocina alemana</string>
	<string name="type.cuisine.greek">Cocina griega</string>
	<string name="type.cuisine.grill">Parrilla</string>
	<string name="type.cuisine.heuriger">Heuriger</string>
	<string name="type.cuisine.hotdog">Perritos calientes</string>
	<string name="type.cuisine.hungarian">Cocina húngara</string>
	<string name="type.cuisine.ice_cream">Helados</string>
	<string name="type.cuisine.indian">Cocina hindú</string>
	<string name="type.cuisine.indonesian">Cocina indonesia</string>
	<string name="type.cuisine.international">Cocina internacional</string>
	<string name="type.cuisine.irish">Cocina irlandesa</string>
	<string name="type.cuisine.italian">Cocina italiana</string>
	<string name="type.cuisine.italian_pizza">Cocina italiana, pizzas</string>
	<string name="type.cuisine.japanese">Cocina japonesa</string>
	<string name="type.cuisine.kebab">Kebabs</string>
	<string name="type.cuisine.korean">Cocina coreana</string>
	<string name="type.cuisine.lao">Cocina laosiana</string>
	<string name="type.cuisine.lebanese">Cocina libanesa</string>
	<string name="type.cuisine.local">Cocina local</string>
	<string name="type.cuisine.malagasy">Cocina malgache</string>
	<string name="type.cuisine.malaysian">Cocina malaya</string>
	<string name="type.cuisine.mediterranean">Cocina mediterránea</string>
	<string name="type.cuisine.mexican">Cocina mexicana</string>
	<string name="type.cuisine.moroccan">Cocina marroquí</string>
	<string name="type.cuisine.noodles">Tallarines</string>
	<string name="type.cuisine.oriental">Cocina oriental</string>
	<string name="type.cuisine.pancake">Tortitas</string>
	<string name="type.cuisine.pasta">Pastas</string>
	<string name="type.cuisine.persian">Cocina persa</string>
	<string name="type.cuisine.peruvian">Cocina peruana</string>
	<string name="type.cuisine.pizza">Pizzas</string>
	<string name="type.cuisine.polish">Cocina polaca</string>
	<string name="type.cuisine.portuguese">Cocina portuguesa</string>
	<string name="type.cuisine.ramen">Ramen</string>
	<string name="type.cuisine.regional">Cocina regional</string>
	<string name="type.cuisine.russian">Cocina rusa</string>
	<string name="type.cuisine.sandwich">Sándwiches</string>
	<string name="type.cuisine.sausage">Salchichas</string>
	<string name="type.cuisine.savory_pancakes">Tortitas saladas</string>
	<string name="type.cuisine.seafood">Mariscos</string>
	<string name="type.cuisine.soba">Soba</string>
	<string name="type.cuisine.spanish">Cocina española</string>
	<string name="type.cuisine.steak_house">Asador</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">Cocina tailandesa</string>
	<string name="type.cuisine.turkish">Cocina turca</string>
	<string name="type.cuisine.vegan">Cocina vegana</string>
	<string name="type.cuisine.vegetarian">Cocina vegetariana</string>
	<string name="type.cuisine.vietnamese">Cocina vietnamita</string>
	<string name="type.emergency.defibrillator">Desfibrilador</string>
	<string name="type.emergency.fire_hydrant">Boca de incendio</string>
	<string name="type.emergency.phone">Teléfono de emergencia</string>
	<string name="type.entrance">Entrada</string>
	<string name="type.highway.bus_stop">Parada de autobús</string>
	<string name="type.highway.footway">Camino</string>
	<string name="type.highway.footway.alpine_hiking">Camino</string>
	<string name="type.highway.footway.area">Camino</string>
	<string name="type.highway.footway.bridge">Camino</string>
	<string name="type.highway.footway.demanding_alpine_hiking">Camino</string>
	<string name="type.highway.footway.demanding_mountain_hiking">Camino</string>
	<string name="type.highway.footway.difficult_alpine_hiking">Camino</string>
	<string name="type.highway.footway.hiking">Camino</string>
	<string name="type.highway.footway.mountain_hiking">Camino</string>
	<string name="type.highway.footway.permissive">Camino</string>
	<string name="type.highway.footway.tunnel">Camino</string>
	<string name="type.highway.living_street">Calle</string>
	<string name="type.highway.living_street.bridge">Calle</string>
	<string name="type.highway.living_street.tunnel">Calle</string>
	<string name="type.highway.motorway">Calle</string>
	<string name="type.highway.motorway.bridge">Calle</string>
	<string name="type.highway.motorway.tunnel">Calle</string>
	<string name="type.highway.motorway_junction">Salida</string>
	<string name="type.highway.motorway_link">Calle</string>
	<string name="type.highway.motorway_link.bridge">Calle</string>
	<string name="type.highway.motorway_link.tunnel">Calle</string>
	<string name="type.highway.path">Camino</string>
	<string name="type.highway.path.alpine_hiking">Camino</string>
	<string name="type.highway.path.bicycle">Camino</string>
	<string name="type.highway.path.bridge">Camino</string>
	<string name="type.highway.path.demanding_alpine_hiking">Camino</string>
	<string name="type.highway.path.demanding_mountain_hiking">Camino</string>
	<string name="type.highway.path.difficult_alpine_hiking">Camino</string>
	<string name="type.highway.path.hiking">Camino</string>
	<string name="type.highway.path.horse">Camino</string>
	<string name="type.highway.path.mountain_hiking">Camino</string>
	<string name="type.highway.path.permissive">Camino</string>
	<string name="type.highway.path.tunnel">Camino</string>
	<string name="type.highway.pedestrian">Calle</string>
	<string name="type.highway.pedestrian.area">Calle</string>
	<string name="type.highway.pedestrian.bridge">Calle</string>
	<string name="type.highway.pedestrian.tunnel">Calle</string>
	<string name="type.highway.primary">Calle</string>
	<string name="type.highway.primary.bridge">Calle</string>
	<string name="type.highway.primary.tunnel">Calle</string>
	<string name="type.highway.primary_link">Calle</string>
	<string name="type.highway.primary_link.bridge">Calle</string>
	<string name="type.highway.primary_link.tunnel">Calle</string>
	<string name="type.highway.raceway">Circuito</string>
	<string name="type.highway.residential">Calle</string>
	<string name="type.highway.residential.area">Calle</string>
	<string name="type.highway.residential.bridge">Calle</string>
	<string name="type.highway.residential.tunnel">Calle</string>
	<string name="type.highway.rest_area">Área de descanso</string>
	<string name="type.highway.road">Calle</string>
	<string name="type.highway.road.bridge">Calle</string>
	<string name="type.highway.road.tunnel">Calle</string>
	<string name="type.highway.secondary">Calle</string>
	<string name="type.highway.secondary.bridge">Calle</string>
	<string name="type.highway.secondary.tunnel">Calle</string>
	<string name="type.highway.secondary_link">Calle</string>
	<string name="type.highway.secondary_link.bridge">Calle</string>
	<string name="type.highway.secondary_link.tunnel">Calle</string>
	<string name="type.highway.service">Calle</string>
	<string name="type.highway.service.area">Calle</string>
	<string name="type.highway.service.bridge">Calle</string>
	<string name="type.highway.service.driveway">Calle</string>
	<string name="type.highway.service.driveway.area">Calle</string>
	<string name="type.highway.service.driveway.bridge">Calle</string>
	<string name="type.highway.service.driveway.tunnel">Calle</string>
	<string name="type.highway.service.parking_aisle">Calle</string>
	<string name="type.highway.service.tunnel">Calle</string>
	<string name="type.highway.speed_camera">Radar de velocidad</string>
	<string name="type.highway.steps">Camino</string>
	<string name="type.highway.steps.bridge">Camino</string>
	<string name="type.highway.steps.tunnel">Camino</string>
	<string name="type.highway.tertiary">Calle</string>
	<string name="type.highway.tertiary.bridge">Calle</string>
	<string name="type.highway.tertiary.tunnel">Calle</string>
	<string name="type.highway.tertiary_link">Calle</string>
	<string name="type.highway.tertiary_link.bridge">Calle</string>
	<string name="type.highway.tertiary_link.tunnel">Calle</string>
	<string name="type.highway.track">Calle</string>
	<string name="type.highway.track.area">Calle</string>
	<string name="type.highway.track.bridge">Calle</string>
	<string name="type.highway.track.grade1">Calle</string>
	<string name="type.highway.track.grade2">Calle</string>
	<string name="type.highway.track.grade3">Calle</string>
	<string name="type.highway.track.grade3.no.access">Calle</string>
	<string name="type.highway.track.grade3.permissive">Calle</string>
	<string name="type.highway.track.grade4">Calle</string>
	<string name="type.highway.track.grade4.no.access">Calle</string>
	<string name="type.highway.track.grade4.permissive">Calle</string>
	<string name="type.highway.track.grade5">Calle</string>
	<string name="type.highway.track.grade5.no.access">Calle</string>
	<string name="type.highway.track.grade5.permissive">Calle</string>
	<string name="type.highway.track.no.access">Calle</string>
	<string name="type.highway.track.permissive">Calle</string>
	<string name="type.highway.track.tunnel">Calle</string>
	<string name="type.highway.traffic_signals">Semáforos</string>
	<string name="type.highway.trunk">Calle</string>
	<string name="type.highway.trunk.bridge">Calle</string>
	<string name="type.highway.trunk.tunnel">Calle</string>
	<string name="type.highway.trunk_link">Calle</string>
	<string name="type.highway.trunk_link.bridge">Calle</string>
	<string name="type.highway.trunk_link.tunnel">Calle</string>
	<string name="type.highway.unclassified">Calle</string>
	<string name="type.highway.unclassified.area">Calle</string>
	<string name="type.highway.unclassified.bridge">Calle</string>
	<string name="type.highway.unclassified.tunnel">Calle</string>
	<string name="type.historic.archaeological_site">Yacimiento arqueológico</string>
	<string name="type.historic.castle">Castillo</string>
	<string name="type.historic.castle.defensive">Castillo</string>
	<string name="type.historic.castle.stately">Castillo</string>
	<string name="type.historic.monument">Monumento</string>
	<string name="type.historic.ruins">Ruinas</string>
	<string name="type.historic.ship">Turismo</string>
	<string name="type.historic.tomb">Turismo</string>
	<string name="type.landuse.basin">Cuenca</string>
	<string name="type.landuse.cemetery">Cementerio</string>
	<string name="type.landuse.cemetery.christian">Cementerio</string>
	<string name="type.landuse.forest">Bosque</string>
	<string name="type.landuse.forest.coniferous">Bosque</string>
	<string name="type.landuse.forest.deciduous">Bosque</string>
	<string name="type.landuse.forest.mixed">Bosque</string>
	<string name="type.landuse.reservoir">Cuenca</string>
	<string name="type.leisure.fitness_centre">Centro de fitness</string>
	<string name="type.leisure.fitness_station">Gimnasio</string>
	<string name="type.leisure.garden">Jardín</string>
	<string name="type.leisure.golf_course">Campo de golf</string>
	<string name="type.leisure.nature_reserve">Territorio reservado</string>
	<string name="type.leisure.park">Parque</string>
	<string name="type.leisure.park.no.access">Parque</string>
	<string name="type.leisure.park.permissive">Parque</string>
	<string name="type.leisure.park.private">Parque</string>
	<string name="type.leisure.pitch">Complejo deportivo</string>
	<string name="type.leisure.pitch.tennis">Complejo deportivo</string>
	<string name="type.leisure.playground">Patio de recreo</string>
	<string name="type.leisure.playground.tennis">Patio de recreo</string>
	<string name="type.leisure.sports_centre">Polideportivo</string>
	<string name="type.leisure.sports_centre.climbing">Centro de escalada</string>
	<string name="type.leisure.sports_centre.shooting">Campo de tiro</string>
	<string name="type.leisure.sports_centre.swimming">Centro de natación</string>
	<string name="type.leisure.sports_centre.yoga">Centro de yoga</string>
	<string name="type.leisure.stadium">Estadio</string>
	<string name="type.leisure.swimming_pool">Piscina</string>
	<string name="type.leisure.water_park">Parque acuático</string>
	<string name="type.man_made.chimney">Chimenea de fábrica</string>
	<string name="type.man_made.lighthouse">Faro</string>
	<string name="type.man_made.surveillance">Cámara de vigilancia</string>
	<string name="type.man_made.tower">Torre</string>
	<string name="type.man_made.water_tap">Toma de agua</string>
	<string name="type.man_made.water_tower">Depósito de agua</string>
	<string name="type.man_made.water_well">Pozo</string>
	<string name="type.man_made.windmill">Molino</string>
	<string name="type.military.bunker">Búnker</string>
	<string name="type.natural.bay">Bahía</string>
	<string name="type.natural.beach">Playa</string>
	<string name="type.natural.cape">Cabo</string>
	<string name="type.natural.cave_entrance">Entrada a la cueva</string>
	<string name="type.natural.geyser">Geiser</string>
	<string name="type.natural.glacier">Glaciar</string>
	<string name="type.natural.lake">Lago</string>
	<string name="type.natural.peak">Cima</string>
	<string name="type.natural.pond">Estanque</string>
	<string name="type.natural.spring">Manantial</string>
	<string name="type.natural.tree">Árbol</string>
	<string name="type.natural.volcano">Volcán</string>
	<string name="type.natural.water">Cuenca</string>
	<string name="type.natural.wood">Bosque</string>
	<string name="type.natural.wood.coniferous">Bosque</string>
	<string name="type.natural.wood.deciduous">Bosque</string>
	<string name="type.natural.wood.mixed">Bosque</string>
	<string name="type.office">Oficina</string>
	<string name="type.office.company">Oficina</string>
	<string name="type.office.estate_agent">Agente inmobiliario</string>
	<string name="type.office.government">Oficina gubernamental</string>
	<string name="type.office.insurance">Oficina de seguros</string>
	<string name="type.office.lawyer">Despacho de abogados</string>
	<string name="type.office.ngo">Sede de ONG</string>
	<string name="type.office.telecommunication">Operadora de telefonía móvil</string>
	<string name="type.place.city">Ciudad</string>
	<string name="type.place.continent">Continente</string>
	<string name="type.place.country">País</string>
	<string name="type.place.county">Municipio</string>
	<string name="type.place.farm">Granja</string>
	<string name="type.place.hamlet">Aldea</string>
	<string name="type.place.island">Isla</string>
	<string name="type.place.islet">Isla</string>
	<string name="type.place.locality">Localidad</string>
	<string name="type.place.ocean">Océano</string>
	<string name="type.place.region">Región</string>
	<string name="type.place.sea">Mar</string>
	<string name="type.place.state">Estado</string>
	<string name="type.place.state.USA">Estado</string>
	<string name="type.place.suburb">Barrio</string>
	<string name="type.place.town">Pueblo</string>
	<string name="type.place.village">Pueblo</string>
	<string name="type.power.pole">Poste eléctrico</string>
	<string name="type.power.substation">Subestación</string>
	<string name="type.power.tower">Poste eléctrico</string>
	<string name="type.railway.halt">Estación de tren</string>
	<string name="type.railway.level_crossing">Paso a nivel</string>
	<string name="type.railway.station">Estación de tren</string>
	<string name="type.railway.station.light_rail">Estación de tren</string>
	<string name="type.railway.station.monorail">Estación de tren</string>
	<string name="type.railway.station.subway">Metro</string>
	<string name="type.railway.station.subway.barcelona">Metro</string>
	<string name="type.railway.station.subway.berlin">Metro</string>
	<string name="type.railway.station.subway.blue">Metro</string>
	<string name="type.railway.station.subway.brown">Metro</string>
	<string name="type.railway.station.subway.darkgreen">Metro</string>
	<string name="type.railway.station.subway.gray">Metro</string>
	<string name="type.railway.station.subway.green">Metro</string>
	<string name="type.railway.station.subway.grey">Metro</string>
	<string name="type.railway.station.subway.kiev">Metro</string>
	<string name="type.railway.station.subway.lightblue">Metro</string>
	<string name="type.railway.station.subway.lightgreen">Metro</string>
	<string name="type.railway.station.subway.london">Metro</string>
	<string name="type.railway.station.subway.madrid">Metro</string>
	<string name="type.railway.station.subway.minsk">Metro</string>
	<string name="type.railway.station.subway.moscow">Metro</string>
	<string name="type.railway.station.subway.newyork">Metro</string>
	<string name="type.railway.station.subway.orange">Metro</string>
	<string name="type.railway.station.subway.paris">Metro</string>
	<string name="type.railway.station.subway.purple">Metro</string>
	<string name="type.railway.station.subway.red">Metro</string>
	<string name="type.railway.station.subway.roma">Metro</string>
	<string name="type.railway.station.subway.spb">Metro</string>
	<string name="type.railway.station.subway.violet">Metro</string>
	<string name="type.railway.station.subway.yellow">Metro</string>
	<string name="type.railway.subway_entrance">Metro</string>
	<string name="type.railway.subway_entrance.barcelona">Metro</string>
	<string name="type.railway.subway_entrance.berlin">Metro</string>
	<string name="type.railway.subway_entrance.kiev">Metro</string>
	<string name="type.railway.subway_entrance.london">Metro</string>
	<string name="type.railway.subway_entrance.madrid">Metro</string>
	<string name="type.railway.subway_entrance.minsk">Metro</string>
	<string name="type.railway.subway_entrance.moscow">Metro</string>
	<string name="type.railway.subway_entrance.newyork">Metro</string>
	<string name="type.railway.subway_entrance.paris">Metro</string>
	<string name="type.railway.subway_entrance.roma">Metro</string>
	<string name="type.railway.subway_entrance.spb">Metro</string>
	<string name="type.railway.tram_stop">Parada de tranvía</string>
	<string name="type.shop">Tienda</string>
	<string name="type.shop.alcohol">Licorería</string>
	<string name="type.shop.bakery">Panadería</string>
	<string name="type.shop.beauty">Centro de belleza</string>
	<string name="type.shop.beverages">Bebidas</string>
	<string name="type.shop.bicycle">Tienda de bicicletas</string>
	<string name="type.shop.bookmaker">Casa de apuestas</string>
	<string name="type.shop.books">Librería</string>
	<string name="type.shop.butcher">Carnicería</string>
	<string name="type.shop.car">Venta de coches</string>
	<string name="type.shop.car_parts">Piezas de automóvil</string>
	<string name="type.shop.car_repair">Taller</string>
	<string name="type.shop.car_repair.tyres">Reparación de neumáticos</string>
	<string name="type.shop.chemist">Droguería</string>
	<string name="type.shop.chocolate">Tienda</string>
	<string name="type.shop.clothes">Tienda de ropa</string>
	<string name="type.shop.coffee">Tienda</string>
	<string name="type.shop.computer">Tienda de informática</string>
	<string name="type.shop.confectionery">Confitería</string>
	<string name="type.shop.convenience">Tienda de barrio</string>
	<string name="type.shop.copyshop">Copistería</string>
	<string name="type.shop.cosmetics">Productos cosméticos</string>
	<string name="type.shop.department_store">Grandes almacenes</string>
	<string name="type.shop.doityourself">Ferretería</string>
	<string name="type.shop.dry_cleaning">Tintorería</string>
	<string name="type.shop.electronics">Electrónica</string>
	<string name="type.shop.erotic">Sex Shop</string>
	<string name="type.shop.fabric">Tienda</string>
	<string name="type.shop.florist">Floristería</string>
	<string name="type.shop.funeral_directors">Funeraria</string>
	<string name="type.shop.furniture">Tienda de muebles</string>
	<string name="type.shop.garden_centre">Vivero</string>
	<string name="type.shop.gift">Tienda de regalos</string>
	<string name="type.shop.greengrocer">Frutería</string>
	<string name="type.shop.hairdresser">Peluquero</string>
	<string name="type.shop.hardware">Ferretería</string>
	<string name="type.shop.jewelry">Joyería</string>
	<string name="type.shop.kiosk">Quiosco</string>
	<string name="type.shop.laundry">Lavandería</string>
	<string name="type.shop.mall">Centro comercial</string>
	<string name="type.shop.massage">Salón de masajes</string>
	<string name="type.shop.mobile_phone">Móviles</string>
	<string name="type.shop.money_lender">Tienda</string>
	<string name="type.shop.motorcycle">Tienda de motos</string>
	<string name="type.shop.music">Tienda</string>
	<string name="type.shop.musical_instrument">Tienda</string>
	<string name="type.shop.newsagent">Puesto de venta de periódicos</string>
	<string name="type.shop.optician">Óptica</string>
	<string name="type.shop.outdoor">Equipamiento</string>
	<string name="type.shop.pawnbroker">Casa de empeños</string>
	<string name="type.shop.pet">Tienda de mascotas</string>
	<string name="type.shop.photo">Artículos de fotografía</string>
	<string name="type.shop.seafood">Pescadería</string>
	<string name="type.shop.shoes">Zapatería</string>
	<string name="type.shop.sports">Artículos de deporte</string>
	<string name="type.shop.stationery">Papelería</string>
	<string name="type.shop.supermarket">Supermercado</string>
	<string name="type.shop.tattoo">Tatuajes</string>
	<string name="type.shop.tea">Tienda</string>
	<string name="type.shop.ticket">Venta de entradas</string>
	<string name="type.shop.toys">Tienda de juguetes</string>
	<string name="type.shop.travel_agency">Agencia de viajes</string>
	<string name="type.shop.tyres">Tienda de neumáticos</string>
	<string name="type.shop.variety_store">«Todo a cien»</string>
	<string name="type.shop.video">Tienda</string>
	<string name="type.shop.wine">Tienda de vinos</string>
	<string name="type.sport.athletics">Atletismo</string>
	<string name="type.sport.basketball">Baloncesto</string>
	<string name="type.sport.equestrian">Deportes ecuestres</string>
	<string name="type.tourism.alpine_hut">Cabaña</string>
	<string name="type.tourism.apartment">Apartamentos</string>
	<string name="type.tourism.artwork">Obras de arte</string>
	<string name="type.tourism.artwork.architecture">Obras de arte</string>
	<string name="type.tourism.artwork.painting">Obras de arte</string>
	<string name="type.tourism.artwork.sculpture">Obras de arte</string>
	<string name="type.tourism.artwork.statue">Obras de arte</string>
	<string name="type.tourism.attraction">Atracción turística</string>
	<string name="type.tourism.attraction.animal">Atracción turística</string>
	<string name="type.tourism.attraction.specified">Atracción turística</string>
	<string name="type.tourism.camp_site">Campamento</string>
	<string name="type.tourism.caravan_site">Zona de caravanas</string>
	<string name="type.tourism.chalet">Chalé</string>
	<string name="type.tourism.gallery">Turismo</string>
	<string name="type.tourism.guest_house">Casa de huéspedes</string>
	<string name="type.tourism.hostel">Albergue juvenil</string>
	<string name="type.tourism.information">Información</string>
	<string name="type.tourism.information.board">Tablón de información</string>
	<string name="type.tourism.information.guidepost">Información</string>
	<string name="type.tourism.information.map">Mapa turístico</string>
	<string name="type.tourism.information.office">Oficina de turismo</string>
	<string name="type.tourism.museum">Museo</string>
	<string name="type.tourism.picnic_site">Picnic</string>
	<string name="type.tourism.theme_park">Parque de atracciones</string>
	<string name="type.tourism.viewpoint">Vista panorámica</string>
	<string name="type.tourism.wilderness_hut">Cabaña</string>
	<string name="type.waterway.lock_gate">Compuerta</string>
	<string name="type.waterway.river">Río</string>
	<string name="type.waterway.river.tunnel">Río</string>
	<string name="type.waterway.riverbank">Río</string>
	<string name="type.waterway.stream">Río</string>
	<string name="type.waterway.stream.ephemeral">Río</string>
	<string name="type.waterway.stream.intermittent">Río</string>
	<string name="type.waterway.stream.tunnel">Río</string>
	<string name="type.waterway.waterfall">Cascada</string>
</resources>