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

strings.xml « values « res « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 56473cc0089557a7143978535ccf3a8aa40d2573 (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
<?xml version="1.0" encoding="utf-8"?>
<!-- Android Strings File -->
<!-- Generated by Twine 0.6.0 -->
<!-- Language: en -->
<resources>
	<!-- SECTION: Strings -->
	<!-- About button text (should be short) -->
	<string name="about">About</string>
	<!-- Button text (should be short) -->
	<string name="back">Back</string>
	<!-- Button text (should be short) -->
	<string name="cancel">Cancel</string>
	<!-- Button which interrupts country download -->
	<string name="cancel_download">Cancel Download</string>
	<!-- Button which deletes downloaded country -->
	<string name="delete">Delete</string>
	<!-- Button to dismiss dialog forever -->
	<string name="do_not_ask_me_again">Do not ask me again</string>
	<!-- Button "do not interrupt download" if user touched actively downloading country -->
	<string name="do_nothing">Continue</string>
	<string name="download_maps">Download Maps</string>
	<!-- Settings/Downloader - Download confirmation button -->
	<string name="download_x_kb">Download %qu kB</string>
	<!-- Settings/Downloader - Download confirmation button -->
	<string name="download_x_mb">Download %qu MB</string>
	<!-- Settings/Downloader - info for country when download fails -->
	<string name="download_has_failed">Download has failed. Touch to try again.</string>
	<!-- Settings/Downloader - info for downloaded country -->
	<string name="downloaded_x_y_touch_to_delete">Downloaded (%1$qu %2$s), touch to delete</string>
	<!-- Settings/Downloader - country info current download progress -->
	<string name="downloading_x_touch_to_cancel">Downloading %qu%%, touch to cancel</string>
	<!-- Settings/Downloader - info for country which started downloading -->
	<string name="downloading">Downloading…</string>
	<string name="get_it_now">Get it now</string>
	<!-- Text to show occasionaly with a proposal to Like our program on Facebook -->
	<string name="share_on_facebook_text">Thank you for using MAPS.ME! Do you like the app? Tell your friends about it! This is the best thanks you could give us.</string>
	<!-- Settings/Downloader - size string, only strings different from English should be translated -->
	<string name="kb">kB</string>
	<!-- Choose measurement on first launch alert - choose metric system button -->
	<string name="kilometres">Kilometers</string>
	<!-- Leave Review dialog - Review button -->
	<string name="leave_a_review">Leave a Review</string>
	<!-- View and button titles for accessibility -->
	<string name="maps">Maps</string>
	<!-- View and button titles for accessibility -->
	<string name="downloader_maps">Maps:</string>
	<!-- Settings/Downloader - info for country in the download queue -->
	<string name="marked_for_downloading">Marked for downloading, touch to cancel</string>
	<!-- Settings/Downloader - size string, only strings different from English should be translated -->
	<string name="mb">MB</string>
	<string name="gb">GB</string>
	<!-- Choose measurement on first launch alert - choose imperial system button -->
	<string name="miles">Miles</string>
	<!-- View and button titles for accessibility -->
	<string name="my_position">My Position</string>
	<string name="ok">OK</string>
	<!-- Settings/Downloader - No free space dialog message -->
	<string name="free_disk_space_for_country_x">Please free some space on your device first in order to download %s</string>
	<!-- Leave Review dialog - Not now button (remind me later) -->
	<string name="remind_me_later">Remind me later</string>
	<!-- Update maps later/Buy pro version later button text -->
	<string name="later">Later</string>
	<!-- Don't show some dialog any more -->
	<string name="never">Never</string>
	<!-- Leave Review dialog - Complain button (goes to support site) -->
	<string name="report_an_issue">Report an issue</string>
	<!-- View and button titles for accessibility -->
	<string name="search">Search</string>
	<!-- Search box placeholder text -->
	<string name="search_map">Search Map</string>
	<!-- Settings/Downloader - info for not downloaded country -->
	<string name="touch_to_download">Touch to download</string>
	<!-- Settings/Downloader - 3G download warning dialog confirm button -->
	<string name="use_cellular_data">Yes</string>
	<!-- Settings/Downloader - No internet connection dialog message -->
	<string name="use_wifi_recommendation_text">We recommend using WiFi to download large maps</string>
	<!-- Choose measurement on first launch alert - title -->
	<string name="which_measurement_system">Which measurement system do you prefer?</string>
	<!-- Location services are disabled by user alert - message -->
	<string name="location_is_disabled_long_text">You currently have all Location Services for this device or application disabled. Please enable them in Settings.</string>
	<!-- Location Services are not available on the device alert - message -->
	<string name="device_doesnot_support_location_services">Your device doesn\&#39;t support Location Services</string>
	<!-- View and button titles for accessibility -->
	<string name="zoom_to_country">Show on the map</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">^\nis added to the download queue.</string>
	<!-- Message to display at the center of the screen when the country is downloading -->
	<string name="country_status_downloading">Downloading\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">Download Map\n(^ ^)</string>
	<!-- Button text for the button at the center of the screen when the country is not downloaded and the size should not be shown -->
	<string name="country_status_download_without_size">Download Map</string>
	<!-- Button text for the button at the center of the screen when the country is not downloaded -->
	<string name="country_status_download_without_routing">Download map\nwithout routing (^ ^)</string>
	<!-- Message to display at the center of the screen when the country download has failed -->
	<string name="country_status_download_failed">Download has failed</string>
	<!-- Button text for the button under the country_status_download_failed message -->
	<string name="try_again">Try Again</string>
	<string name="app_name">MAPS.ME</string>
	<string name="about_menu_title">About MAPS.ME</string>
	<string name="downloading_touch_to_cancel">Downloading %d%%, touch to cancel</string>
	<string name="downloaded_touch_to_delete">Downloaded (%s), touch to delete</string>
	<string name="connection_settings">Connection Settings</string>
	<string name="download_mb_or_kb">Download %s</string>
	<string name="close">Close</string>
	<string name="unsupported_phone">The app requires hardware accelerated OpenGL. Unfortunately, your device is not supported.</string>
	<string name="download">Download</string>
	<string name="external_storage_is_not_available">SD card/USB storage with downloaded maps is not available</string>
	<string name="disconnect_usb_cable">Please disconnect USB cable or insert memory card to use MAPS.ME</string>
	<string name="not_enough_free_space_on_sdcard">Please free up some space on the SD card/USB storage first in order to use the app</string>
	<string name="not_enough_memory">Not enough memory to launch app</string>
	<string name="free_space_for_country">Please free %1$s on your device first in order to download %2$s</string>
	<string name="download_resources">Before you start using the app, allow us to download the general world map to your device.\nIt will use %s of storage.</string>
	<string name="getting_position">Getting current position</string>
	<string name="download_resources_continue">Go to Map</string>
	<string name="downloading_country_can_proceed">Downloading %s. You can now\nproceed to the map.</string>
	<string name="download_country_ask">Download %s?</string>
	<string name="update_country_ask">Update %s?</string>
	<!-- REMOVE THIS STRING AFTER REFACTORING -->
	<string name="download_location_map_proposal">You can download the map\nof your current location.</string>
	<!-- REMOVE THIS_STRING AFTER REFACTORING -->
	<string name="download_location_update_map_proposal">You can update the map\nof your current location.</string>
	<!-- REMOVE THIS STRING AFTER REFACTORING -->
	<string name="download_location_map_up_to_date">The map of your current\nlocation (%s) is up-to-date.</string>
	<!-- REMOVE THIS STRING AFTER REFACTORING -->
	<string name="pause">Pause</string>
	<!-- REMOVE THIS STRING AFTER REFACTORING -->
	<string name="continue_download">Continue</string>
	<string name="downloaded_touch_to_update">Downloaded (%s), touch to update or delete</string>
	<string name="update_mb_or_kb">Update %s</string>
	<!-- Show popup notification when we have downloaded countries without search (from Lite version) -->
	<string name="search_update_maps">You need updated maps for search function:</string>
	<!-- Show popup notification on app start when we have out-of-date maps -->
	<string name="advise_update_maps">Update available for the following maps:</string>
	<!-- Show popup notification in Pro version that Lite can be deleted -->
	<string name="suggest_uninstall_lite">You don\&#39;t need MAPS.ME Lite any more, so you can uninstall it.</string>
	<!-- Show popup notification on top of the map when country was downloaded. -->
	<string name="download_country_success">%s downloaded successfully</string>
	<!-- Show popup notification on top of the map when country download has failed. -->
	<string name="download_country_failed">%s download has failed</string>
	<!-- Add New Bookmark Set dialog title -->
	<string name="add_new_set">Add New Set</string>
	<!-- Place Page - Add To Bookmarks button -->
	<string name="add_to_bookmarks">Add to Bookmarks</string>
	<!-- Bookmark Color dialog title -->
	<string name="bookmark_color">Bookmark Color</string>
	<!-- Add Bookmark Set dialog - hint when set name is empty -->
	<string name="bookmark_set_name">Bookmark Set Name</string>
	<!-- Bookmark Sets dialog title -->
	<string name="bookmark_sets">Bookmark Sets</string>
	<!-- Bookmarks - dialog title -->
	<string name="bookmarks">Bookmarks</string>
	<!-- Add bookmark dialog - bookmark color -->
	<string name="color">Color</string>
	<!-- Default bookmarks set name -->
	<string name="my_places">My Places</string>
	<!-- Add bookmark dialog - bookmark name -->
	<string name="name">Name</string>
	<!-- Editor title above street and house number -->
	<string name="address">Address</string>
	<!-- Place Page - Remove Pin button -->
	<string name="remove_pin">Remove Pin</string>
	<!-- Add bookmark dialog - bookmark set, Bookmarks dialog - Bookmark set cell -->
	<string name="set">Set</string>
	<!-- Text hint in Bookmarks dialog when no any bookmarks are added -->
	<string name="bookmarks_usage_hint">You have no bookmarks yet.\nTap on any place on the map to add a bookmark.\nBookmarks from other sources can also be imported and displayed in MAPS.ME. Open KML/KMZ file with saved bookmarks from email, Dropbox or weblink.</string>
	<!-- Text hint in Bookmarks dialog when at least one bookmark is added -->
	<string name="bookmarks_usage_hint_import_only">Bookmarks from other sources can be imported and displayed in MAPS.ME. Open a KML/KMZ file with saved bookmarks from email, Dropbox or a weblink.</string>
	<!-- Settings button in system menu -->
	<string name="settings">Settings</string>
	<!-- Header of settings activity where user defines storage path -->
	<string name="maps_storage">Maps storage</string>
	<!-- Detailed description of Maps Storage settings button -->
	<string name="maps_storage_summary">Select the place where maps should be downloaded to</string>
	<!-- Question dialog for transferring maps from one storage to another -->
	<string name="move_maps">Move maps?</string>
	<!-- Ask to wait user several minutes (some long process in modal dialog). -->
	<string name="wait_several_minutes">This can take several minutes.\nPlease wait…</string>
	<!-- Show bookmarks from this category on a map or not -->
	<string name="visible">Visible</string>
	<!-- Toast which is displayed when GPS has been deactivated -->
	<string name="gps_is_disabled_long_text">GPS is disabled. Please enable it in Settings.</string>
	<!-- Measurement units title in settings activity -->
	<string name="measurement_units">Measurement units</string>
	<!-- Detailed description of Measurement Units settings button -->
	<string name="measurement_units_summary">Choose between miles and kilometers</string>
	<!-- Do search in all sources -->
	<string name="search_mode_all">Everywhere</string>
	<!-- Do search near my position only -->
	<string name="search_mode_nearme">Near Me</string>
	<!-- Do search in current viewport only -->
	<string name="search_mode_viewport">On the Screen</string>
	<!-- Search Suggestion -->
	<string name="food">Food</string>
	<!-- Search Suggestion -->
	<string name="transport">Transport</string>
	<!-- Search Suggestion -->
	<string name="fuel">Gas</string>
	<!-- Search Suggestion -->
	<string name="parking">Parking</string>
	<!-- Search Suggestion -->
	<string name="shop">Shop</string>
	<!-- Search Suggestion -->
	<string name="hotel">Hotel</string>
	<!-- Search Suggestion -->
	<string name="tourism">Sights</string>
	<!-- Search Suggestion -->
	<string name="entertainment">Entertainment</string>
	<!-- Search Suggestion -->
	<string name="atm">ATM</string>
	<!-- Search Suggestion -->
	<string name="bank">Bank</string>
	<!-- Search Suggestion -->
	<string name="pharmacy">Pharmacy</string>
	<!-- Search Suggestion -->
	<string name="hospital">Hospital</string>
	<!-- Search Suggestion -->
	<string name="toilet">Toilet</string>
	<!-- Search Suggestion -->
	<string name="post">Post</string>
	<!-- Search Suggestion -->
	<string name="police">Police</string>
	<!-- String in search result list, when nothing found -->
	<string name="no_search_results_found">No results found</string>
	<!-- Notes field in Bookmarks view -->
	<string name="description">Notes</string>
	<!-- Button text -->
	<string name="share_by_email">Share by email</string>
	<!-- Email Subject when sharing bookmarks category -->
	<string name="share_bookmarks_email_subject">MAPS.ME bookmarks were shared with you</string>
	<!-- Email text when sharing bookmarks category -->
	<string name="share_bookmarks_email_body">Hello!\n\nAttached are my bookmarks from MAPS.ME offline maps. Please open them if you have MAPS.ME installed. Or, if you don\&#39;t, download the app for your iOS or Android device by following this link: http://maps.me/get?kmz\n\nEnjoy traveling with MAPS.ME!</string>
	<!-- message title of loading file -->
	<string name="load_kmz_title">Loading Bookmarks</string>
	<!-- Kmz file successful loading -->
	<string name="load_kmz_successful">Bookmarks loaded successfully! You can find them on the map or on the Bookmarks Manager screen.</string>
	<!-- Kml file loading failed -->
	<string name="load_kmz_failed">Bookmarks upload failed. The file may be corrupted or defective.</string>
	<!-- resource for context menu -->
	<string name="edit">Edit</string>
	<!-- Warning message when doing search around current position -->
	<string name="unknown_current_position">Your location hasn\&#39;t been determined yet</string>
	<!-- Warning message when location country isn't downloaded during search (see also download_location_map_proposal). -->
	<string name="download_location_country">Download the map of your current location (%s)</string>
	<!-- Warning message when viewport country isn't downloaded during search -->
	<string name="download_viewport_country_to_search">Download the country you are searching on (%s)</string>
	<!-- Alert message that we can't run Map Storage settings due to some reasons. -->
	<string name="cant_change_this_setting">Sorry, Map Storage settings are currently disabled.</string>
	<!-- Alert message that downloading is in progress. -->
	<string name="downloading_is_active">Map download is in progress now.</string>
	<!-- Message that will be shown in alert view, when we ask user to leave review on App Store -->
	<string name="appStore_message">Hope you enjoy using MAPS.ME! If so, please rate or review the app at the App Store. It takes less than a minute but can really help us. Thanks for your support!</string>
	<!-- No, thanks -->
	<string name="no_thanks">No, thanks</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">Hey, check out my pin at MAPS.ME! %1$s or %2$s Don\&#39;t have offline maps installed? Download here: http://maps.me/get</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">Hey, check out my current location in MAPS.ME! %1$s or %2$s Don\&#39;t have offline maps? Download here: http://maps.me/get</string>
	<!-- Subject for emailed bookmark -->
	<string name="bookmark_share_email_subject">Hey, check out my pin in 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">Hi,\n\nI pinned: %1$s on the MAPS.ME offline map of the world. Click this link %2$s or this one %3$s to see the place on the map.\n\nThanks.</string>
	<!-- Subject for emailed position -->
	<string name="my_position_share_email_subject">Hey, check out my current location on the MAPS.ME map!</string>
	<!-- Share my position using EMail, %1$@ is ge0:// and %2$@ is http://ge0.me link WITHOUT NAME -->
	<string name="my_position_share_email">Hi,\n\nI\&#39;m here now: %1$s. Click this link %2$s or this one %3$s to see the place on the map.\n\nThanks.</string>
	<!-- Android share by Message/SMS button text (including SMS) -->
	<string name="share_by_message">Share by message</string>
	<!-- Share button text which opens menu with more buttons, like Message, EMail, Facebook etc. -->
	<string name="share">Share</string>
	<!-- iOS share by Message button text (including SMS) -->
	<string name="message">Message</string>
	<!-- Share by email button text, also used in editor. -->
	<string name="email">Email</string>
	<!-- Copy Link -->
	<string name="copy_link">Copy Link</string>
	<!-- Text for the button that returns to caller application -->
	<string name="more_info">Show More Info</string>
	<!-- Text for message when used successfully copied something -->
	<string name="copied_to_clipboard">Copied to clipboard: %1$s</string>
	<!-- Setting label for statistics turn on/off -->
	<string name="allow_statistics">Send Statistics</string>
	<!-- place preview title -->
	<string name="info">Info</string>
	<!-- Used for bookmark editing -->
	<string name="done">Done</string>
	<!-- Summary for preferences in MWM -->
	<string name="yopme_pref_summary">Choose Back Screen settings</string>
	<!-- Title for yopme preferences in MWM -->
	<string name="yopme_pref_title">Back Screen Settings</string>
	<!-- Hint for upper-right icon p2b -->
	<string name="show_on_backscreen">Show on Back screen</string>
	<!-- Prints version number in About dialog -->
	<string name="version">Version: %s</string>
	<!-- Data version in «About» screen -->
	<string name="data_version">Data version: %d</string>
	<!-- Confirmation in downloading countries dialog -->
	<string name="are_you_sure">Are you sure you want to continue?</string>
	<!-- Title for tracks category in bookmarks manager -->
	<string name="tracks">Tracks</string>
	<!-- Length of track in cell that describes route -->
	<string name="length">Length</string>
	<string name="share_my_location">Share My Location</string>
	<string name="menu_search">Search</string>
	<!-- Settings screen: "Map" category title -->
	<string name="prefs_group_map">Map</string>
	<!-- Settings screen: "Miscellaneous" category title -->
	<string name="prefs_group_misc">Miscellaneous</string>
	<string name="prefs_group_route">Navigation</string>
	<string name="pref_zoom_title">Zoom buttons</string>
	<string name="pref_zoom_summary">Display on the map</string>
	<!-- Settings «Map» category: «Night style» title -->
	<string name="pref_map_style_title">Night Mode</string>
	<!-- «Map style» entry value -->
	<string name="pref_map_style_default">Off</string>
	<!-- «Map style» entry value -->
	<string name="pref_map_style_night">On</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">Perspective view</string>
	<!-- Settings «Map» category: «3D buildings» title -->
	<string name="pref_map_3d_buildings_title">3D buildings</string>
	<!-- Settings «Map» category: «3D buildings» summary -->
	<string name="pref_map_3d_buildings_subtitle">Affects battery life</string>
	<!-- Settings «Route» category: «Tts enabled» title -->
	<string name="pref_tts_enable_title">Voice Instructions</string>
	<!-- Settings «Route» category: «Tts language» title -->
	<string name="pref_tts_language_title">Voice Language</string>
	<!-- Settings «Route» category: «Tts unavailable» subtitle -->
	<string name="pref_tts_unavailable">Not Available</string>
	<!-- Title for "Other" section in TTS settings. -->
	<string name="pref_tts_other_section_title">Other</string>
	<string name="pref_tts_how_to_set_up_voice">How to set up voice</string>
	<!-- Settings «Map» category: «Record track» title -->
	<string name="pref_track_record_title">Recent track</string>
	<string name="pref_map_auto_zoom">Auto zoom</string>
	<string name="duration_disabled">Off</string>
	<string name="duration_1_hour">1 hour</string>
	<string name="duration_2_hours">2 hours</string>
	<string name="duration_6_hours">6 hours</string>
	<string name="duration_12_hours">12 hours</string>
	<string name="duration_1_day">1 day</string>
	<string name="recent_track_help_text">Please note: activation of this function causes increased battery usage.</string>
	<string name="pref_track_ios_caption">Recent track shows your traveled path.</string>
	<string name="pref_track_ios_subcaption">Please select the time range of saving the track.</string>
	<string name="placepage_distance">Distance</string>
	<string name="placepage_coordinates">Coordinates</string>
	<string name="placepage_unsorted">Unsorted</string>
	<string name="search_show_on_map">View on map</string>
	<!-- Used to warn user when fixing KitKat issue -->
	<string name="kitkat_migrate_ok">Map data storage has been optimized. Please restart the app.\n\nThe MapsWithMe folder in the SD card root folder is not needed anymore. You can delete it.</string>
	<!-- Used to warn user when fixing KitKat issue -->
	<string name="kitkat_migrate_failed">Due to changes in Android 4.4, we need to optimize the map data storage, but there is not enough space to copy map data.\n\nPlease free up some memory, otherwise maps will only be available in read-only mode.</string>
	<!-- Used to warn user when fixing KitKat issue -->
	<string name="bookmark_move_fail">We need to move your bookmarks to internal memory, but there is no available space for them. Please free up the memory, otherwise bookmarks won’t be available.</string>
	<!-- Used to warn user when fixing KitKat issue -->
	<string name="kitkat_optimization_in_progress">Your map storage is being optimized now. Please wait. It may take a few minutes.</string>
	<!-- Used in More Apps menu -->
	<string name="free">Free</string>
	<!-- Used in More Apps menu -->
	<string name="buy">Buy</string>
	<!-- 1st search button-like result -->
	<string name="search_on_map">Search on map</string>
	<!-- toast with an error -->
	<string name="no_route_found">No route found</string>
	<!-- route title -->
	<string name="route">Route</string>
	<!-- category title -->
	<string name="routes">Routes</string>
	<!-- Show on first launch. -->
	<string name="maps_licence_info">This applications uses geographical data (including maps, business listings, points of interest, borders of countries and regions, etc.) taken from the OpenStreetMap project. We do not warrant any consistency, accuracy, completeness or applicability of the OpenStreetMap data.</string>
	<!-- Show on first launch. -->
	<string name="agree">I agree</string>
	<!-- Show on first launch -->
	<string name="disagree">I disagree</string>
	<!-- text of notification -->
	<string name="download_map_notification">Download the map of the place where you are</string>
	<!-- text of notification -->
	<string name="pro_version_is_free_today">Full version of MAPS.ME is free today! Download now and tell your friends.</string>
	<!-- Dialog for transferring maps from lite to pro. -->
	<string name="move_lite_maps_to_pro">We are transferring your downloaded maps from MAPS.ME Lite to MAPS.ME. It may take a few minutes.</string>
	<!-- Message to display when maps moved. -->
	<string name="move_lite_maps_to_pro_ok">Your downloaded maps are successfully transferred to MAPS.ME.</string>
	<!-- Message to display when maps move failed. -->
	<string name="move_lite_maps_to_pro_failed">Your maps failed to transfer. Please delete MAPS.ME Lite and download the maps again.</string>
	<!-- Text in menu -->
	<string name="settings_and_more">Settings &amp; More</string>
	<!-- Text in menu -->
	<string name="website">Website</string>
	<!-- Text in menu -->
	<string name="maps_me_community">MAPS.ME Community</string>
	<!-- Text in menu -->
	<string name="like_on_facebook">Like on Facebook</string>
	<!-- Text in menu -->
	<string name="follow_on_twitter">Follow on Twitter</string>
	<!-- Text in menu -->
	<string name="contact_us">Contact us</string>
	<!-- Settings: Send feedback button and dialog title -->
	<string name="feedback">Feedback</string>
	<!-- Settings: "Send general feedback" button -->
	<string name="feedback_general">General Feedback</string>
	<!-- Text in menu -->
	<string name="subscribe_to_news">Subscribe to our newsletter</string>
	<!-- Text in menu -->
	<string name="rate_the_app">Rate the app</string>
	<!-- Text in menu -->
	<string name="help">Help</string>
	<!-- Text in menu -->
	<string name="copyright">Copyright</string>
	<!-- Text in menu -->
	<string name="report_a_bug">Report a bug</string>
	<!-- Email subject -->
	<string name="subscribe_me_subject">Please subscribe me to the MAPS.ME newsletter</string>
	<!-- Email body -->
	<string name="subscribe_me_body">I want to be the first to learn about the latest news, app updates, and promotions. I understand that I can cancel my subscription at any time.</string>
	<!-- About text -->
	<string name="about_text">MAPS.ME offers the fastest offline maps of all the cities, all countries of the world. Travel with full confidence: wherever you are, MAPS.ME helps to locate yourself on the map, find the nearest restaurant, hotel, bank, gas station etc. It doesn’t require internet connection.\n\nWe are always working on new features and would love to hear from you on how you think we could improve MAPS.ME. If you have any problems with the app, don\&#39;t hesitate to contact us at support@maps.me. We respond to every request!\n\nDo you like MAPS.ME and want to support us? There are some simple and absolutely free ways:\n\n- post a review at your App Market\n- like our Facebook page http://www.facebook.com/mapswithme\n- or just tell about MAPS.ME to your mom, friends and colleagues :)\n\nThank you for being with us. We appreciate your support very much!\n\nP.S. We take map data from OpenStreetMap, a mapping project similar to Wikipedia, which allows users to create and edit maps. If you see something is missing or wrong on the map, you can correct the maps directly at http://openstreetmap.org, and your changes will appear in MAPS.ME app with the next version release.</string>
	<!-- Alert text -->
	<string name="email_error_body">The email client has not been set up. Please configure it or use any other way to contact us at %s</string>
	<!-- Alert title -->
	<string name="email_error_title">Mail sending error</string>
	<!-- Settings item title -->
	<string name="pref_calibration_title">Compass calibration</string>
	<!-- Search Suggestion -->
	<string name="wifi">Wi-Fi</string>
	<!-- Update map suggestion -->
	<string name="routing_map_outdated">Please update the map to create a route</string>
	<!-- Update maps suggestion -->
	<string name="routing_update_maps">The new version of MAPS.ME allows creating routes from your current position to a destination point. Please update maps to use this feature.</string>
	<!-- Update all button text -->
	<string name="downloader_update_all_button">Update All</string>
	<!-- Cancel all button text -->
	<string name="downloader_cancel_all">Cancel All</string>
	<!-- Downloaded maps category -->
	<string name="downloader_downloaded_subtitle">Downloaded</string>
	<!-- Downloaded maps category -->
	<string name="downloader_available_maps">Available</string>
	<!-- Country queued for download -->
	<string name="downloader_queued">queued</string>
	<string name="downloader_near_me_subtitle">Near me</string>
	<string name="downloader_status_maps">Maps</string>
	<string name="downloader_download_all_button">Download All</string>
	<string name="downloader_downloading">Downloading:</string>
	<string name="downloader_search_results">Found</string>
	<!-- Disclaimer message -->
	<string name="routing_disclaimer">Creating routes in MAPS.ME app, please keep in mind the following:\n\n  - Suggested routes can be considered as recommendations only.\n - Road conditions, traffic rules and signs have higher priority than navigation advice.\n - The map may be incorrect or outdated, and routes may not be created the best possible way.\n\n  Be safe on roads and take care of yourself!</string>
	<!-- Outdated maps category -->
	<string name="downloader_outdated_maps">Outdated</string>
	<!-- Up to date maps category -->
	<string name="downloader_uptodate_maps">Up-to-date</string>
	<!-- Status of outdated country in the list -->
	<string name="downloader_status_outdated">Update</string>
	<!-- Status of failed country in the list -->
	<string name="downloader_status_failed">Failed</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">To delete map, please stop navigation.</string>
	<!-- Show when user try build route, but we don't know where he -->
	<string name="routing_failed_unknown_my_position">Current location is undefined. Please specify location to create route.</string>
	<!-- Show if use has not routing file, or InconsistentMWMandRoute -->
	<string name="routing_failed_has_no_routing_file">Additional data is required to create the route. Download data now?</string>
	<!-- StartPointNotFound -->
	<string name="routing_failed_start_point_not_found">Cannot calculate the route. No roads near your starting point.</string>
	<!-- EndPointNotFound -->
	<string name="routing_failed_dst_point_not_found">Cannot calculate the route. No roads near your destination.</string>
	<!-- PointsInDifferentMWM -->
	<string name="routing_failed_cross_mwm_building">Routes can only be created that are fully contained within a map of a single region.</string>
	<!-- RouteNotFound -->
	<string name="routing_failed_route_not_found">There is no route found between the selected origin and destination. Please select a different start or end point.</string>
	<!-- InternalError -->
	<string name="routing_failed_internal_error">Internal error occurred. Please try to delete and download the map again. If the problem persists, please contact us at support@maps.me.</string>
	<!-- Context menu item for downloader. -->
	<string name="downloader_download_map_and_routing">Download Map + Routing</string>
	<!-- Context menu item for downloader. -->
	<string name="downloader_download_routing">Download Routing</string>
	<!-- Context menu item for downloader. -->
	<string name="downloader_delete_routing">Delete Routing</string>
	<!-- Context menu item for downloader. -->
	<string name="downloader_download_map">Download map</string>
	<string name="downloader_download_map_no_routing">Download map without routing</string>
	<!-- Button for routing. -->
	<string name="routing_go">Go!</string>
	<!-- Item status in downloader. -->
	<string name="downloader_retry">Retry</string>
	<!-- Item in context menu. -->
	<string name="downloader_map_and_routing">Map + Routing</string>
	<!-- Item in context menu. -->
	<string name="downloader_delete_map">Delete Map</string>
	<!-- Item in context menu. -->
	<string name="downloader_update_map">Update Map</string>
	<!-- Item in context menu. -->
	<string name="downloader_update_map_and_routing">Update Map + Routing</string>
	<!-- Item in context menu. -->
	<string name="downloader_map_only">Map Only</string>
	<!-- Toolbar title -->
	<string name="toolbar_application_menu">Application menu</string>
	<!-- Preference text -->
	<string name="pref_use_google_play">Use Google Play Services to determine your current location</string>
	<!-- Text for rating dialog -->
	<string name="rating_just_rated">I’ve just rated your app</string>
	<!-- Text for rating dialog -->
	<string name="rating_user_since">I’ve been a MAPS.ME user since %s</string>
	<!-- Text for rating dialog -->
	<string name="rating_do_like_maps">Do you like MAPS.ME?</string>
	<!-- Text for rating dialog -->
	<string name="rating_tap_star">Tap a star to rate our app.</string>
	<!-- Text for rating dialog -->
	<string name="rating_thanks">Thank you!</string>
	<!-- Text for rating dialog -->
	<string name="rating_share_ideas">Share any ideas or issues so we can improve the app for you.</string>
	<!-- Text for rating dialog -->
	<string name="rating_send_feedback">Send feedback</string>
	<!-- Text for g+ dialog -->
	<string name="rating_google_plus">Click g+ to tell your friends about the app.</string>
	<!-- Text for routing error dialog -->
	<string name="routing_download_maps_along">Download all of the maps along your route</string>
	<!-- Text for routing error dialog -->
	<string name="routing_download_map">Get map</string>
	<!-- Text for routing error dialog -->
	<string name="routing_download_map_and_routing">Download updated map and routing data to get all MAPS.ME features.</string>
	<!-- Text for routing error dialog -->
	<string name="routing_get_routing_data">Get routing data</string>
	<!-- Text for routing error dialog -->
	<string name="routing_get_additional_data">Additional data required to create routes from your location.</string>
	<!-- Text for routing error dialog -->
	<string name="routing_requires_all_map">In order to create a route, we need to download and update all the maps from your location to your destination.</string>
	<!-- Text for routing error dialog -->
	<string name="routing_not_enough_space">Not enough space</string>
	<!-- Text for routing error dialog -->
	<string name="routing_download_more_than_avail">You need to download %1$s MB, but only %2$s MB are available.</string>
	<!-- Text for routing error dialog -->
	<string name="routing_download_roaming">You are going to download %s MB using Mobile Data (in Roaming). This may result in additional charges, depending on your operator mobile data plan.</string>
	<!-- bookmark button text -->
	<string name="bookmark">bookmark</string>
	<!-- map is not downloaded -->
	<string name="not_found_map">The map for your location is not downloaded</string>
	<!-- location service disabled -->
	<string name="enable_location_services">Please enable Location Services</string>
	<!-- download map -->
	<string name="download_map">Download the map for your location</string>
	<!-- download map on iPhone -->
	<string name="download_map_iphone">Download a current location map on your iPhone</string>
	<!-- clear pin -->
	<string name="nearby">Nearby</string>
	<!-- clear pin -->
	<string name="clear_pin">Clear Pin</string>
	<!-- location is undefined -->
	<string name="undefined_location">Current location is undefined.</string>
	<!-- download country of your location -->
	<string name="download_country">Download the country of your current location</string>
	<!-- download failed -->
	<string name="download_failed">download has failed</string>
	<!-- get the map -->
	<string name="get_the_map">Get the map</string>
	<string name="save">Save</string>
	<string name="edit_description_hint">Your descriptions (text or html)</string>
	<string name="new_group">new group</string>
	<string name="create">create</string>
	<!-- red color -->
	<string name="red">Red</string>
	<!-- yellow color -->
	<string name="yellow">Yellow</string>
	<!-- blue color -->
	<string name="blue">Blue</string>
	<!-- green color -->
	<string name="green">Green</string>
	<!-- purple color -->
	<string name="purple">Purple</string>
	<!-- orange color -->
	<string name="orange">Orange</string>
	<!-- brown color -->
	<string name="brown">Brown</string>
	<!-- pink color -->
	<string name="pink">Pink</string>
	<!-- Wi-Fi available -->
	<string name="WiFi_available">Yes</string>

	<!-- SECTION: Routing dialogs strings -->
	<string name="dialog_routing_disclaimer_title">When following the route, please keep in mind:</string>
	<string name="dialog_routing_disclaimer_priority">— Road conditions, traffic laws, and road signs always take priority over the navigation hints;</string>
	<string name="dialog_routing_disclaimer_precision">— The map might be inaccurate, and the suggested route might not always be the most optimal way to reach the destination;</string>
	<string name="dialog_routing_disclaimer_recommendations">— Suggested routes should only be understood as recommendations;</string>
	<string name="dialog_routing_disclaimer_borders">— Exercise caution with routes in border zones: the routes created by our app may sometimes cross country borders in unauthorized places.</string>
	<string name="dialog_routing_disclaimer_beware">Please stay alert and safe on the roads!</string>
	<string name="dialog_routing_check_gps">Check GPS signal</string>
	<string name="dialog_routing_error_location_not_found">Unable to create route. Current GPS coordinates could not be identified.</string>
	<string name="dialog_routing_location_turn_wifi">Please check your GPS signal. Enabling Wi-Fi will improve your location accuracy.</string>
	<string name="dialog_routing_location_turn_on">Enable location services</string>
	<string name="dialog_routing_location_unknown_turn_on">Unable to locate current GPS coordinates. Enable location services to calculate route.</string>
	<string name="dialog_routing_location_unknown">Unable to locate current GPS coordinates.</string>
	<string name="dialog_routing_download_files">Download required files</string>
	<string name="dialog_routing_download_and_update_all">Download and update all map and routing information along the projected path to calculate route.</string>
	<string name="dialog_routing_routes_size">Routing information files</string>
	<string name="dialog_routing_unable_locate_route">Unable to locate route</string>
	<string name="dialog_routing_cant_build_route">Unable to create route.</string>
	<string name="dialog_routing_change_start_or_end">Please adjust your starting point or your destination.</string>
	<string name="dialog_routing_change_start">Adjust starting point</string>
	<string name="dialog_routing_start_not_determined">Route was not created. Unable to locate starting point.</string>
	<string name="dialog_routing_select_closer_start">Please select a starting point closer to a road.</string>
	<string name="dialog_routing_change_end">Adjust destination</string>
	<string name="dialog_routing_end_not_determined">Route was not created. Unable to locate the destination.</string>
	<string name="dialog_routing_select_closer_end">Please select a destination point located closer to a road.</string>
	<string name="dialog_routing_system_error">System error</string>
	<string name="dialog_routing_application_error">Unable to create route due to an application error.</string>
	<string name="dialog_routing_try_again">Please try again</string>
	<string name="dialog_routing_send_error">Report the Problem</string>
	<string name="dialog_routing_if_get_cross_route">Would you like to create a more direct route that spans more than one map?</string>
	<string name="dialog_routing_cross_route_is_optimal">A more optimal route that crosses the edge of this map is available.</string>
	<string name="not_now">Not Now</string>
	<string name="dialog_routing_build_route">Create</string>
	<string name="dialog_routing_download_and_build_cross_route">Would you like to download the map and create a more optimal route spanning more than one map?</string>
	<string name="dialog_routing_download_cross_route">Download additional maps to create a better route that crosses the boundaries of this map.</string>
	<string name="dialog_routing_cross_route_always">Always cross this boundary</string>

	<!-- SECTION: Strings for downloading map from search -->
	<string name="search_without_internet_advertisement">To start searching and creating routes, please download the map. After that you will no longer need an Internet connection.</string>
	<string name="search_select_map">Select Map</string>
	<string name="search_select_other_map">Select Another Map</string>
	<!-- «Show» context menu -->
	<string name="show">Show</string>
	<!-- «Hide» context menu -->
	<string name="hide">Hide</string>
	<!-- «Rename» context menu -->
	<string name="rename">Rename</string>
	<!-- Bottom sheet: expand button (should be short) -->
	<string name="bottom_sheet_more">More…</string>
	<!-- Failed planning route message in navigation view -->
	<string name="routing_planning_error">Route Planning Failed</string>
	<!-- Arrive routing message in navigation view -->
	<string name="routing_arrive">Arrival at %s</string>
	<!-- Text for routing::IRouter::FileTooOld dialog. -->
	<string name="dialog_routing_download_and_update_maps">Download and update all map along the projected path to calculate route.</string>
	<string name="rate_alert_title">Like the app?</string>
	<string name="rate_alert_default_message">Thank you for using MAPS.ME. Please rate the app. Your feedback helps us improve our product.</string>
	<string name="rate_alert_five_star_message">Hooray! We love you, too!</string>
	<string name="rate_alert_four_star_message">Thank you, we will do our best!</string>
	<string name="rate_alert_less_than_four_star_message">Any idea how we can make it better?</string>
	<string name="categories">Categories</string>
	<string name="history">History</string>
	<string name="next_turn_then">Then</string>
	<string name="closed">Closed</string>
	<string name="back_to">Back to %s</string>
	<string name="search_not_found">Oops, no results found.</string>
	<string name="search_not_found_query">Try changing your search criteria.</string>
	<string name="search_not_found_map">Please download the map you are searching in.</string>
	<string name="search_not_found_location">Download the map of your current location.</string>
	<string name="search_history_title">Search History</string>
	<string name="search_history_text">View recent searches.</string>
	<string name="clear_search">Clear Search History</string>
	<!-- Title for settings to enable/disable showcase menu button -->
	<string name="showcase_settings_title">Show offers</string>
	<!-- Place Page link to Wikipedia article (if map object has it). -->
	<string name="read_in_wikipedia">Wikipedia</string>
	<string name="p2p_route_planning">Route Planning</string>
	<string name="p2p_your_location">Your Location</string>
	<string name="p2p_from">From</string>
	<string name="p2p_to">To</string>
	<string name="p2p_start">Start</string>
	<string name="p2p_planning">Planning…</string>
	<string name="p2p_from_here">Route from</string>
	<string name="p2p_to_here">Route to</string>
	<string name="p2p_only_from_current">Navigation is available only from your current location.</string>
	<string name="p2p_reroute_from_current">Do you want us to plan a route from your current location?</string>
	<string name="whats_new_next_button">Next</string>
	<string name="editor_time_add">Add Schedule</string>
	<string name="editor_time_delete">Delete Schedule</string>
	<!-- Text for allday switch. -->
	<string name="editor_time_allday">All Day (24 hours)</string>
	<string name="editor_time_open">Open</string>
	<string name="editor_time_close">Closed</string>
	<string name="editor_time_add_closed">Add Non-Business Hours</string>
	<string name="editor_time_title">Business Hours</string>
	<string name="editor_time_advanced">Advanced Mode</string>
	<string name="editor_time_simple">Simple Mode</string>
	<string name="editor_hours_closed">Non-Business Hours</string>
	<string name="editor_example_values">Example Values</string>
	<string name="editor_correct_mistake">Correct mistake</string>
	<string name="editor_correct_mistake_message">You made an editing mistake. Please correct it or switch to simple mode.</string>
	<string name="editor_add_select_location">Location</string>
	<string name="editor_done_dialog_1">You’ve changed the world map. Do not keep it to yourself! Tell your friends, and edit it together.</string>
	<string name="editor_done_dialog_2">This is the second time you edited the map. Now you are number %d in the map editors ranking. Tell your friends about it.</string>
	<string name="editor_done_dialog_3">You’ve improved the map, tell your friends about it, and edit the map together.</string>
	<string name="share_with_friends">Share with friends</string>
	<string name="editor_report_problem_desription_1">Please describe the problem in detail so that the OpenStreeMap community can fix the error.</string>
	<string name="editor_report_problem_desription_2">Or do it yourself at http://www.openstreetmap.org/</string>
	<string name="editor_report_problem_send_button">Send</string>
	<string name="editor_report_problem_title">Issue</string>
	<string name="editor_report_problem_no_place_title">The place does not exist</string>
	<string name="editor_report_problem_under_construction_title">Сlosed for maintenance</string>
	<string name="editor_report_problem_duplicate_place_title">Duplicated place</string>
	<string name="first_launch_congrats_title">MAPS.ME is ready to use</string>
	<string name="first_launch_congrats_text">Search and navigate everywhere in the world offline, free of charge.</string>
	<string name="migrate_title">Important!</string>
	<!-- Android uses image instead of text. -->
	<string name="download_all">Download all</string>
	<string name="delete_all">Delete all</string>
	<string name="autodownload">Auto-download</string>
	<string name="disable_autodownload">Disable autodownload</string>
	<!-- Place Page opening hours text -->
	<string name="closed_now">Closed now</string>
	<!-- Place Page opening hours text -->
	<string name="daily">Daily</string>
	<string name="twentyfour_seven">24/7</string>
	<string name="day_off_today">Closed today</string>
	<string name="day_off">Closed</string>
	<string name="today">Today</string>
	<string name="sunrise_to_sunset">From sunrise to sunset</string>
	<string name="sunset_to_sunrise">From sunset to sunrise</string>
	<string name="add_opening_hours">Add opening hours</string>
	<string name="edit_opening_hours">Edit business hours</string>
	<string name="profile">Profile</string>
	<string name="no_osm_account">Don\&#39;t have an OpenStreetMap account?</string>
	<string name="register_at_openstreetmap">Register at OpenStreetMap</string>
	<string name="password_8_chars_min">Password (8 characters minimum)</string>
	<string name="invalid_username_or_password">Invalid username or password.</string>
	<string name="login">Log In</string>
	<string name="password">Password</string>
	<string name="forgot_password">Forgot your password?</string>
	<!-- Forgot Password dialog title -->
	<string name="restore_password">Restore password</string>
	<string name="enter_email_address_to_reset_password">Enter the email address you used during registration and we will send you the link to reset your password.</string>
	<string name="reset_password">Reset Password</string>
	<string name="username">Username</string>
	<string name="osm_account">OSM Account</string>
	<string name="logout">Log Out</string>
	<string name="login_and_edit_map_motivation_message">Log in and edit objects on the map, and we will make them available for millions of users. Let’s make the world better together.</string>
	<!-- Information text: "Last upload 11.01.2016" -->
	<string name="last_upload">Last upload</string>
	<!-- Motivates user to login/register, title above login buttons. -->
	<string name="you_have_edited_your_first_object">You’ve edited your first object!</string>
	<string name="thank_you">Thank You</string>
	<string name="login_with_google">Login with Google</string>
	<string name="login_with_facebook">Login with Facebook</string>
	<string name="login_with_openstreetmap">Log in with www.openstreetmap.org</string>
	<string name="edit_place">Edit Place</string>
	<string name="place_name">Place Name</string>
	<!-- title above languages list cells in the editor, below editable name text field. -->
	<string name="other_languages">Other Languages</string>
	<!-- small button to open list with names in different languages -->
	<string name="show_more">Show More</string>
	<!-- small button to close list with names in different languages -->
	<string name="show_less">Show Less</string>
	<string name="add_language">Add a language</string>
	<string name="street">Street</string>
	<!-- Editable House Number text field (in address block). -->
	<string name="house_number">Building number</string>
	<string name="details">Details</string>
	<!-- Text field to enter non-existing street name, below list of known streets around -->
	<string name="add_street">Add a street</string>
	<string name="choose_language">Choose a language</string>
	<string name="choose_street">Choose a street</string>
	<string name="postal_code">Postal Code</string>
	<string name="cuisine">Cuisine</string>
	<string name="select_cuisine">Select cuisine</string>
	<!-- login text field -->
	<string name="email_or_username">Email or username</string>
	<string name="phone">Phone</string>
	<string name="please_note">Please note</string>
	<string name="common_no_wifi_dialog">No WiFi connection. Do you want to continue with mobile data?</string>
	<string name="downloader_delete_map_dialog">All of your map edits will be deleted together with the map.</string>
	<string name="downloader_update_maps">Update Maps</string>
	<string name="downloader_mwm_migration_dialog">To create a route, you need to update all maps and then plan the route again.</string>
	<string name="downloader_search_field_hint">Find map</string>
	<string name="migration_update_all_button">Update All Maps</string>
	<string name="migration_delete_all_download_current_button">Download the current map and delete all of the old ones</string>
	<string name="migration_download_error_dialog">Download error</string>
	<string name="common_check_internet_connection_dialog">Please check your settings and make sure your device is connected to the Internet.</string>
	<string name="downloader_no_space_title">Not enough space</string>
	<string name="downloader_no_space_message">Please delete any unnecessary data</string>
	<string name="editor_general_auth_error_dialog">General login error.</string>
	<string name="editor_login_error_dialog">Login error.</string>
	<string name="editor_login_failed_dialog">Login failed</string>
	<string name="editor_username_error_dialog">Username is invalid</string>
	<string name="editor_place_edited_dialog">You’ve edited an object!</string>
	<string name="editor_login_with_osm">Login with OpenStreetMap</string>
	<string name="editor_profile_changes">Verified Changes</string>
	<string name="editor_profile_unsent_changes">Not sent:</string>
	<string name="editor_focus_map_on_location">Drag the map to select the correct location of the object.</string>
	<string name="editor_add_select_category">Select category</string>
	<string name="editor_add_select_category_popular_subtitle">Popular</string>
	<string name="editor_add_select_category_all_subtitle">All Categories</string>
	<string name="editor_edit_place_title">Editing</string>
	<string name="editor_add_place_title">Adding</string>
	<string name="editor_edit_place_name_hint">Name of the place</string>
	<string name="editor_edit_place_category_title">Category</string>
	<string name="detailed_problem_description">Detailed description of the issue</string>
	<string name="editor_report_problem_other_title">Different problem</string>
	<string name="placepage_report_problem_button">Report a problem</string>
	<string name="placepage_add_business_button">Add business</string>
	<string name="whatsnew_smallmwm_header">You\&#39;ve long requested it, and we finally added it</string>
	<string name="whatsnew_smallmwm_message">We have split large maps into parts. Now you can download just the regions that you need as opposed to the maps for entire countries.</string>
	<string name="whatsnew_search_header">New search</string>
	<string name="whatsnew_search_message">We have significantly improved the search by address. See for yourself.</string>
	<string name="whatsnew_editor_title">Edit the map*</string>
	<string name="whatsnew_editor_message_1">Add new places to the map, and edit existing ones directly from the app.</string>
	<string name="whatsnew_editor_message_2">* MAPS.ME uses OpenStreetMap community data.</string>
	<string name="onboarding_offline_navigation_title">You will never get lost again</string>
	<string name="onboarding_offline_navigation_message">Plan optimal car and pedestrian routes, even when there is no Internet connection!</string>
	<string name="onboarding_offline_navigation_title_2">Offline navigation</string>
	<string name="onboarding_offline_navigation_message_2">Plan optimal car and pedestrian routes.</string>
	<string name="onboarding_offline_maps_title">MAPS.ME — use the maps of the entire world without an Internet connection</string>
	<string name="onboarding_offline_maps_message">Download the maps for the desired area once, and use the navigation and search functions without an Internet connection.</string>
	<string name="onboarding_notifications_message">To receive the latest maps, get updates notifications</string>
	<string name="onboarding_notifications_title">Enable updates notifications</string>
	<string name="onboarding_location_title">Help us find you</string>
	<string name="onboarding_location_message">In order for you to use navigation and the other app functions, MAPS.ME needs access to your geoposition.</string>
	<string name="dialog_incorrect_feature_position">Change location</string>
	<string name="message_invalid_feature_position">No object can be located here</string>
	<string name="login_to_make_edits_visible">Log in so other users can see the changes that you have made</string>
	<string name="no_migration_during_navigation">Updating is not allowed during navigation.</string>
	<!-- Error dialog no space -->
	<string name="migration_no_space_message">To download, you need more space. Please delete any unnecessary data.</string>
	<string name="editor_sharing_title">I improved the MAPS.ME maps</string>
	<string name="editor_comment_will_be_sent">We will make sure to send your comments to the map editors.</string>
	<string name="editor_unsupported_category_message">You have added an object whose category we do not support yet. It will appear on the map in the future.</string>
	<!-- Downloaded 10 **of** 20 <- it is that "of" -->
	<string name="downloader_of">%1$d of %2$d</string>
	<string name="download_over_mobile_header">Download over a cellular network connection?</string>
	<string name="download_over_mobile_message">This could be considerably expensive with some plans or if roaming.</string>
	<string name="error_enter_correct_house_number">Enter a valid building number</string>
	<string name="editor_storey_number">Number of floors (maximum of %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">The number of floors must non exceed 25</string>
	<string name="editor_zip_code">ZIP Code</string>
	<string name="error_enter_correct_zip_code">Enter a valid ZIP code</string>
	<!-- Place Page title for long tap -->
	<string name="placepage_unknown_place">Unknown Place</string>
	<string name="editor_other_info">Additional info</string>
	<string name="editor_detailed_description_hint">Detailed comment</string>
	<string name="editor_detailed_description">Your suggested map changes will be sent to the OpenStreetMap community. Describe any additional details that cannot be edited in MAPS.ME.</string>
	<string name="editor_more_about_osm">More about OpenStreetMap</string>
	<string name="editor_operator">Owner</string>
	<string name="editor_tag_description">Enter company, organization or individual responsible for the facilities.</string>
	<string name="editor_no_local_edits_title">You don\&#39;t have local edits</string>
	<string name="editor_no_local_edits_description">This shows the number of your suggested changes on the map that are currently accessible only on your device.</string>
	<string name="editor_send_to_osm">Send to OSM</string>
	<string name="editor_remove">Remove</string>
	<string name="downloader_my_maps_title">My maps</string>
	<string name="downloader_no_downloaded_maps_title">You haven\&#39;t downloaded any maps</string>
	<string name="downloader_no_downloaded_maps_message">Download maps to search for a location and use navigation offline.</string>
	<string name="downloader_find_place_hint">Search city or country</string>
	<!-- Error title that appears after certain time without location. -->
	<string name="current_location_unknown_title">Continue detecting your current location?</string>
	<!-- Error that appears after certain time without location. -->
	<string name="current_location_unknown_message">Current location is unknown. Maybe you are in a building or in a tunnel.</string>
	<string name="current_location_unknown_continue_button">Continue</string>
	<string name="current_location_unknown_stop_button">Stop</string>
	<string name="current_location_unknown_error_title">Current location is unknown.</string>
	<string name="current_location_unknown_error_message">An error occurred while searching for your location. Check that your device is working properly and try again later.</string>
	<string name="whatsnew_update_editor_title">We\&#39;ve updated the map editor</string>
	<string name="whatsnew_update_editor_message">MAPS.ME users have already made 200,000 map changes. Together we are making the most detailed maps in the world. Join us!</string>
	<!-- Additional text in whats new -->
	<string name="whatsnew_update_editor_message_update">Update all maps to use Map Editor.</string>
	<string name="location_services_disabled_header">Location services are disabled</string>
	<string name="location_services_disabled_message">Enable access to geolocation in the device settings</string>
	<string name="location_services_disabled_1">1. Open Settings</string>
	<string name="location_services_disabled_2">2. Tap Location</string>
	<!-- iOS Dialog for the case when the location permission is not granted -->
	<string name="location_services_disabled_3">3. Select While Using the App</string>
	<string name="placepage_parking_surface">Surface</string>
	<string name="placepage_parking_multistorey">Multi-storey</string>
	<string name="placepage_parking_underground">Underground</string>
	<string name="placepage_parking_rooftop">Rooftop</string>
	<string name="placepage_parking_sheds">Sheds</string>
	<string name="placepage_parking_carports">Carports</string>
	<string name="placepage_parking_boxes">Garage boxes</string>
	<string name="placepage_parking_pay">Pay</string>
	<string name="placepage_parking_free">Free</string>
	<string name="placepage_parking_interval">Interval Pay</string>
	<string name="placepage_entrance_number">No.</string>
	<string name="placepage_entrance_type">Entrance</string>
	<string name="placepage_flat">app.</string>
	<string name="placepage_open_24_7">24 / 7</string>
	<string name="place_page_booking_rating">Rating: %s</string>
	<string name="place_page_starting_from">from %s</string>
	<string name="meter">m</string>
	<string name="kilometer">km</string>
	<string name="kilometers_per_hour">km/h</string>
	<string name="mile">mi</string>
	<string name="foot">ft</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">Description</string>
	<string name="placepage_more_button">More</string>
	<string name="placepage_more_reviews_button">More Reviews</string>
	<string name="book_button">Book</string>
	<string name="placepage_call_button">Call</string>
	<string name="placepage_edit_bookmark_button">Edit Bookmark</string>
	<string name="placepage_bookmark_name_hint">Bookmark Name</string>
	<string name="placepage_personal_notes_hint">Personal notes</string>
	<string name="placepage_delete_bookmark_button">Delete Bookmark</string>
	<string name="editor_edits_sent_message">Your suggested changes have been sent</string>
	<string name="editor_comment_hint">Comment…</string>
	<string name="editor_reset_edits_message">Discard all local changes?</string>
	<string name="editor_reset_edits_button">Discard</string>
	<string name="editor_remove_place_message">Delete added place?</string>
	<string name="editor_remove_place_button">Delete</string>
	<string name="editor_status_sending">Sending…</string>
	<string name="editor_place_doesnt_exist">Place does not exist</string>
	<string name="text_more_button">…more</string>
	<!-- Phone number error message -->
	<string name="error_enter_correct_phone">Enter a valid phone number</string>
	<string name="error_enter_correct_web">Enter a valid web address</string>
	<string name="error_enter_correct_email">Enter a valid email</string>
	<string name="error_enter_correct">Enter a valid value</string>
	<string name="editor_profile_changes_for_next_place">Changes to the next place: %d</string>
	<string name="editor_profile_rating_place">Position in the ranking</string>
	<string name="booking_dialog_not_connect_header">To book the hotel, please enable your Internet connection</string>
	<string name="button_try">Try it</string>
	<string name="refresh">Update</string>
	<string name="last_update">Last update: %s</string>
	<string name="booking_checkin">check in: %s</string>
	<string name="booking_checkout">check out: %s</string>
	<string name="placepage_add_place_button">Add a place to the map</string>
	<!-- Displayed when saving some edits to the map to warn against publishing personal data -->
	<string name="editor_share_to_all_dialog_title">Do you want to send it to all users?</string>
	<!-- iOS Dialog before publishing the modifications to the public map. -->
	<string name="editor_share_to_all_dialog_message_1">Make sure you did not enter any personal data.</string>
	<string name="editor_share_to_all_dialog_message_2">We will check the changes. If we have any questions we will contact you via email.</string>
	<string name="navigation_overview_button">overview</string>
	<string name="navigation_stop_button">stop</string>
	<!-- Text on an empty bookmark page -->
	<string name="bookmarks_empty_title">Save Bookmarks</string>
	<string name="bookmarks_empty_message_1">Tap on ★ to save favorite places for quick access.</string>
	<string name="bookmarks_empty_message_2">Import Bookmarks from email and web.</string>
	<string name="bookmarks_empty_message_3">check out: %s</string>
	<!-- Name of the group for booked hotels -->
	<string name="bookmarks_group_name">Booked hotels</string>
	<string name="place_page_button_read_descriprion">Read</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">Disable recording of your recently traveled route?</string>
	<!-- If a hotel is being shared -->
	<string name="sharing_booking">or book at booking.com</string>
	<string name="off_recent_track_background_button">Disable</string>
	<!-- For sharing via SMS and so on -->
	<string name="sharing_call_action_look">Check out</string>
	<string name="continue_recent_track_background_button">Continue</string>
	<string name="recent_track_background_dialog_message">MAPS.ME uses your geoposition in the background for recording your recently traveled route.</string>
	<string name="whatsnew_car_navigation_header">User-friendly vehicle navigation</string>
	<string name="whatsnew_car_navigation_message">• The navigation elements take up less space.\n• We display the speed and have added auto zoom.</string>
	<string name="whatsnew_cycle_navigation_2_header">Bike navigation</string>
	<string name="whatsnew_cycle_navigation_2_message">• Bike navigation takes into account terrain data.\n• We create easier routes taking into account road inclines.</string>
	<string name="whatsnew_booking_2_header">Easy hotel search</string>
	<string name="whatsnew_booking_2_message">The search results show the hotel rating and price category.</string>
	<string name="whatsnew_cycle_navigation_header">Bike navigation (beta version)</string>
	<string name="whatsnew_cycle_navigation_message">We are testing bike navigation for the new season. Try your favorite bike route with MAPS.ME, and share your opinion with us.</string>
	<!-- Rate on Google Play (Android only) -->
	<string name="rate_gp">Rate on Google Play</string>
	<!-- Share with friends: menu item title -->
	<string name="tell_friends">Tell a Friend</string>
	<!-- Share with friends: sharing text -->
	<string name="tell_friends_text">Hi! Install MAPS.ME!</string>
	<!-- About short text (below logo) -->
	<string name="about_description">MAPS.ME is an essential offline application for travelling. MAPS.ME is based on OpenStreetMap data and allows editing it.</string>
	<!-- Text in menu -->
	<string name="blog">Blog</string>
	<!-- Hint near allow statictics checkbox -->
	<string name="allow_statistics_hint">Collecting usage statistics helps us improve the app.</string>
	<string name="general_settings">General settings</string>
	<string name="date">Date %d</string>
	<!-- "Report a bug" -> "Generaal Feedback" -> "Something is not working" -->
	<string name="something_is_not_working">Something is not working</string>
	<!-- For the first routing -->
	<string name="accept">Accept</string>
	<!-- For the first routing -->
	<string name="decline">Decline</string>
	<string name="whats_new_route_profile_title">Better go about than fall into the ditch</string>
	<string name="whats_new_route_profile_message">For pedestrian and bike routes we now display the elevation profile.</string>
	<string name="whats_new_booking_improve_title">Save when booking hotels</string>
	<string name="whats_new_booking_improve_message">Search results for hotels now contain the price category.\nWe also added more than 110,000 hotels.</string>
	<!-- For place page hotel facilities block -->
	<string name="placepage_hotel_facilities">Facilities</string>
	<!-- For place page hotel nearby block -->
	<string name="placepage_hotel_nearby">Nearby</string>
	<!-- For ordering a taxi (as opposed to hotels or other things) -->
	<string name="taxi_order">Order a taxi</string>
	<!-- How long it is until the taxi arrives -->
	<string name="taxi_wait">Expected in %s</string>
	<!-- When there are no available taxis nearby -->
	<string name="taxi_not_found">Couldn\&#39;t find a taxi nearby</string>
	<string name="install_app">Install</string>
	<!-- `Filter` is a noun here -->
	<string name="booking_filters">Filter</string>
	<string name="booking_filters_reset">Reset</string>
	<string name="booking_filters_rating">Rating</string>
	<string name="booking_filters_rating_any">Any</string>
	<string name="booking_filters_ragting_good">Good</string>
	<string name="booking_filters_rating_very_good">Very Good</string>
	<string name="booking_filters_rating_excellent">Excellent</string>
	<string name="booking_filters_price_category">Price Category</string>
	<string name="booking_filters_no_results">No Results Found</string>
	<string name="booking_filters_nores_message">Try a more general search term, zoom out or reset the filter.</string>
	<string name="booking_filters_expand_area_button">Zoom out</string>
	<string name="booking_filters_reset_button">Reset Filter</string>
	<!-- noun -->
	<string name="search_in_table">List</string>
	<string name="booking_based_on_reviews">Based on %d hotel reviews</string>
	<string name="booking_show_more">Show more</string>
	<string name="booking_reviews">Reviews</string>
	<string name="booking_hotel">Hotel</string>
	<!-- hotel room -->
	<string name="booking_hotel_room">Room</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">Open</string>
	<string name="whatsnew_uber_header">MAPS.ME &amp; Uber</string>
	<string name="whatsnew_uber_message">Order a taxi directly from the app!</string>
	<string name="dialog_taxi_offline">Taxi ordering is unavailable in offline mode.</string>
	<string name="dialog_taxi_error">Taxi ordering is temporarily unavailable.</string>
	<string name="advertisement">Advertisement</string>
	<string name="mobile_data_dialog">Use mobile internet to show detailed information?</string>
	<string name="mobile_data_option_always">Use Always</string>
	<string name="mobile_data_option_today">Only Today</string>
	<string name="mobile_data_option_not_today">Do not Use Today</string>
	<string name="mobile_data">Mobile Internet</string>
	<string name="mobile_data_description">Mobile internet is required for displaying detailed information about places, such as photographs, prices and reviews.</string>
	<string name="mobile_data_option_never">Never Use</string>
	<string name="mobile_data_option_ask">Always Ask</string>
	<string name="traffic_update_maps_text">To display traffic data, maps must be updated.</string>
	<string name="traffic_outdated">Traffic data is outdated.</string>
	<string name="big_font">Bigger labels</string>
	<string name="traffic_update_app">Please update MAPS.ME</string>
	<!-- "traffic" as in road congestion -->
	<string name="traffic_update_app_message">To display traffic data, the application must be updated.</string>
	<!-- "traffic" as in "road congestion" -->
	<string name="traffic_data_unavailable">Traffic data is not available</string>
	<string name="banner_deliveryclub_title">Food delivery</string>
	<string name="banner_deliveryclub_message">Fast delivery from 4,000 restaurants. Order from Delivery Club.</string>
	<string name="banner_lamoda_title">Online clothing and shoe store</string>
	<string name="banner_lamoda_message">More than 1,000 brands. Up to 70% off. Free delivery all over the country.</string>
	<string name="banner_tutu_title">Train tickets online</string>
	<string name="banner_tutu_message">Train tickets to any city online - prices, search, and booking.</string>
	<string name="banner_geerbest_title">Online electronics store</string>
	<string name="banner_geerbest_message">Instant search in over 50,000 items at low prices.</string>
	<string name="banner_rentalcars_title">Renting cars online</string>
	<string name="banner_rentalcars_message">800 car rental companies in more than 49,000 car rental locations.</string>
	<string name="banner_viator_title">Online tour search</string>
	<string name="banner_viator_message">Search in over 50,000 tours all over the world.</string>
	<!-- december -->
	<string name="whatsnew_traffic">Traffic Data in 36 Countries</string>
	<!-- december -->
	<string name="whatsnew_traffic_text">Up-to-date traffic info and fastest driving routes based on it!</string>
	<!-- december -->
	<string name="whatsnew_traffic_roaming">Traffic Info in Roaming</string>
	<!-- december -->
	<string name="whatsnew_traffic_roaming_text">Requires less than 1 MB of mobile bandwidth per trip.</string>
	<!-- december -->
	<string name="whatsnew_order_taxi">Order Taxi</string>
	<!-- december -->
	<string name="whatsnew_order_taxi_text">Most of the location pages now contain a button for ordering a taxi.</string>
	<!-- january -->
	<string name="whatsnew_improved_search">Improved Search</string>
	<!-- january -->
	<string name="whatsnew_improved_search_text">Even misspelled queries bring accurate search results.</string>
	<!-- january -->
	<string name="whatsnew_filters_in_search">Search Filters</string>
	<!-- january -->
	<string name="whatsnew_filters_in_search_text">Search hotels based on price and rating.</string>
	<!-- january -->
	<string name="whatsnew_font_size">Font Size</string>
	<!-- january -->
	<string name="whatsnew_font_size_text">Labels on the map can be made bigger.</string>
	<!-- "Translation is no needed, because it's a company name" -->
	<string name="uber">Uber</string>
</resources>