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: df506af38cee88380db86dca244976a744777e4f (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
<?xml version="1.0" encoding="utf-8"?>
<!-- Android Strings File -->
<!-- Generated by Twine 0.6.0 -->
<!-- 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="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="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">Almacenamiento de mapas</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 Suggestion -->
	<string name="food">Comer</string>
	<!-- Search Suggestion -->
	<string name="transport">Transporte</string>
	<!-- Search Suggestion -->
	<string name="fuel">Gasolinera</string>
	<!-- Search Suggestion -->
	<string name="parking">Estacionamiento</string>
	<!-- Search Suggestion -->
	<string name="shop">Tienda</string>
	<!-- Search Suggestion -->
	<string name="hotel">Hotel</string>
	<!-- Search Suggestion -->
	<string name="tourism">Turismo</string>
	<!-- Search Suggestion -->
	<string name="entertainment">Entretenimiento</string>
	<!-- Search Suggestion -->
	<string name="atm">ATM</string>
	<!-- Search Suggestion -->
	<string name="bank">Banco</string>
	<!-- Search Suggestion -->
	<string name="pharmacy">Farmacia</string>
	<!-- Search Suggestion -->
	<string name="hospital">Hospital</string>
	<!-- Search Suggestion -->
	<string name="toilet">Servicios sanitario</string>
	<!-- Search Suggestion -->
	<string name="post">Oficina de correos</string>
	<!-- Search Suggestion -->
	<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>
	<!-- Email text when sharing bookmarks category -->
	<string name="share_bookmarks_email_body">¡Hola!\n\nEn el archivo adjunto \&quot;%s.kmz\&quot;, están mis marcadores de los mapas offline MAPS.ME. Por favor, ábrelo con MAPS.ME si ya lo has instalado. En caso contrario, descarga primero la aplicación para dispositivos iOS o Android desde el siguiente enlace: http://maps.me/get?kmz\n\n¡Que disfrutes de MAPS.ME!</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">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">Nota: activar esta función aumenta el uso de la batería.</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 \&quot;Me gusta\&quot; 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>
	<!-- 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 http://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 Suggestion -->
	<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_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::IRouter::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 http://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="profile">Perfil</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="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="placepage_unknown_place">Lugar desconocido</string>
	<string name="editor_other_info">Información adicional</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 \&quot;Ubicación\&quot;</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 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>
	<string name="install_app">Instalar</string>
	<!-- `Filter` is a noun here -->
	<string name="booking_filters">Filtrar</string>
	<string name="booking_filters_reset">Restablecer</string>
	<string name="booking_filters_rating">Clasificación</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="booking_filters_no_results">No se han encontrado resultados</string>
	<string name="booking_filters_nores_message">Pruebe un término de búsqueda general, aléjese o restablezca el filtro.</string>
	<string name="booking_filters_expand_area_button">Alejarse</string>
	<string name="booking_filters_reset_button">Restablecer filtro</string>
	<!-- noun -->
	<string name="search_in_table">Lista</string>
	<string name="booking_based_on_reviews">Basado en %d reseñas de hoteles</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="advertisement">Anuncio</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">Etiquetas mayores</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>
	<string name="banner_viator_title">Reserva de visitas guiadas en línea</string>
	<string name="banner_viator_message">Más de 50 000 visitas guiadas por todo el mundo.</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>
</resources>