-
-
Notifications
You must be signed in to change notification settings - Fork 366
/
Copy pathstrings.xml
1135 lines (1107 loc) · 97.9 KB
/
strings.xml
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
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<string name="action_settings">"Settings"</string>
<string name="oauth_communication_error">"Unable to reach the authorization server"</string>
<string name="user_profile">My Profile</string>
<string name="user_login">Login</string>
<string name="user_logout">Logout</string>
<string name="osm_profile">OSM Profile</string>
<string name="next">Next</string>
<string name="letsgo">Let’s go!</string>
<string name="tutorial_welcome_to_osm">Welcome to OpenStreetMap</string>
<string name="tutorial_welcome_to_osm_subtitle">the free wiki world map</string>
<string name="tutorial_intro">StreetComplete makes it easy to contribute to OpenStreetMap.\nIt automatically looks for missing details in your vicinity: bicycle lanes, house numbers, opening hours and much more…</string>
<string name="tutorial_solving_quests">Once found, the missing details will appear on your map as quests.\n\nYou can start solving them right away and later login to publish your answers.</string>
<string name="tutorial_stay_safe">Whenever you are uncertain, you can always reply “Can’t Say” and leave a note.\n\nFinally, remember to stay safe: Be aware of your surroundings and don’t enter private property.</string>
<string name="tutorial_happy_mapping">Happy Mapping!</string>
<string name="retry">"Retry"</string>
<string name="oauth_failed_permissions">"Authorization failed: All listed permissions need to be granted"</string>
<string name="achievements_empty">You have no achievements yet</string>
<string name="links_empty">You have no links yet</string>
<string name="quests_empty">You published no quest answers yet</string>
<string name="stats_are_syncing">Your statistics are still syncing. Check this screen later.</string>
<string name="unsynced_quests_description">plus %d not yet published changes.</string>
<string name="unsynced_quests_not_logged_in_description">You have %d not yet published changes. You need to login to have them uploaded.</string>
<string name="pref_category_communication">"Communication"</string>
<string name="pref_category_display">"Display"</string>
<string name="pref_tilecache_size_summary">"%d MB"</string>
<string name="pref_tilecache_size_message">"Space in megabytes reserved on external storage to cache map tiles"</string>
<string name="pref_title_show_notes_not_phrased_as_questions">"Show all notes"</string>
<string name="pref_summaryOn_show_notes_not_phrased_as_questions">"Also showing notes not phrased as questions"</string>
<string name="pref_summaryOff_show_notes_not_phrased_as_questions">"Ignoring notes not phrased as questions"</string>
<string name="pref_title_map_cache">"Map cache size"</string>
<string name="map_btn_gps_tracking">"Follow me"</string>
<string name="map_attribution_osm">"© OpenStreetMap contributors"</string>
<string name="quest_generic_otherAnswers">"Other answers…"</string>
<string name="quest_generic_answer_notApplicable">"Can’t say…"</string>
<string name="quest_generic_confirmation_title">"Are you sure?"</string>
<string name="quest_generic_confirmation_yes">"Yes, I am sure"</string>
<string name="quest_generic_confirmation_no">"I will check"</string>
<string name="quest_leave_new_note_title">"Leave a note instead?"</string>
<string name="quest_leave_new_note_description">"You can leave a public note at this location which other mappers can comment on and hopefully resolve or alternatively just hide the quest for yourself only"</string>
<string name="quest_leave_new_note_yes">"OK"</string>
<string name="quest_leave_new_note_no">"No, just hide"</string>
<string name="quest_leave_new_note_photo">Attach photo</string>
<string name="quest_leave_new_note_photo_delete_title">Do you want to delete this picture?</string>
<string name="quest_leave_new_note_photos_are_useful">Adding a photo will make the note much more useful.</string>
<string name="quest_streetName_title">"What is the name of this road?"</string>
<string name="quest_streetName_description">"as written on the street sign, abbreviations are expanded:"</string>
<string name="quest_streetName_answer_noName_confirmation_description">"Sometimes the street sign is only at one end of the street. Also, note that there may not be extra street signs for side streets that belong to a bigger street. Usually, any street with houses has a name."</string>
<string name="quest_streetName_nameWithAbbreviations_confirmation_title_name">"Abbreviation in the name %s?"</string>
<string name="quest_streetName_nameWithAbbreviations_confirmation_description">"If the name can be spelled without an abbreviation, then it should be expanded. Many common abbreviations are expanded automatically while you type, but probably not all."</string>
<string name="quest_streetName_nameWithAbbreviations_confirmation_positive">"No abbreviation"</string>
<string name="quest_openingHours_name_title">"What are the opening hours of %s?"</string>
<string name="quest_openingHours_name_type_title">"What are the opening hours of %1$s (%2$s)?"</string>
<string name="quest_openingHours_no_name_title">"What are the opening hours of this place? (%s)"</string>
<string name="quest_openingHours_resurvey_name_title">"Are these opening hours for %s still correct?"</string>
<string name="quest_openingHours_resurvey_name_type_title">"Are these opening hours for %1$s (%2$s) still correct?"</string>
<string name="quest_openingHours_resurvey_no_name_title">"Are these opening hours still correct (%s)?"</string>
<string name="quest_openingHours_start_time">"opening time"</string>
<string name="quest_openingHours_end_time">"closing time"</string>
<string name="quest_openingHours_timeSelect_next">Next</string>
<string name="quest_openingHours_add_months">"Add months"</string>
<string name="quest_openingHours_add_hours">"Add hours"</string>
<string name="quest_openingHours_add_weekdays">"Add days of the week"</string>
<string name="quest_openingHours_add_off_days">"Add off days"</string>
<string name="quest_openingHours_off_day">"Off day"</string>
<string name="quest_openingHours_unspecified_range">Not specified"</string>
<string name="quest_openingHours_chooseMonthsTitle">"Select months"</string>
<string name="quest_openingHours_chooseWeekdaysTitle">"Select days of the week"</string>
<string name="quest_openingHours_24_7_confirmation">"In other words, is it open any time, every day?"</string>
<string name="quest_noteDiscussion_title">"Can you contribute anything to this note?"</string>
<string name="quest_noteDiscussion_no">"No, hide"</string>
<string name="quest_noteDiscussion_comment2">"— %1$s, %2$s"</string>
<string name="quest_noteDiscussion_closed2">"Closed by %1$s, %2$s"</string>
<string name="quest_noteDiscussion_reopen2">"Reopened by %1$s, %2$s"</string>
<string name="quest_noteDiscussion_hide2">"Hidden by %1$s, %2$s"</string>
<string name="quest_noteDiscussion_anonymous">"Anonymous"</string>
<string name="confirmation_discard_title">"Discard input?"</string>
<string name="confirmation_discard_positive">"Discard"</string>
<string name="confirmation_discard_negative2">"No"</string>
<string name="action_download">"Scan for quests here"</string>
<string name="action_upload">"Upload answers"</string>
<string name="no_changes">"You did not give any answer"</string>
<string name="close">"close"</string>
<string name="download_error">"Error while scanning for quests"</string>
<string name="upload_error">"Error while uploading answers"</string>
<string name="cannot_find_bbox_or_reduce_tilt">"Can’t scan here. Try to zoom in further or tilt the map less."</string>
<string name="download_area_too_big">"Please zoom in further"</string>
<string name="confirmation_cancel_prev_download_title">"Stop the current search and scan here instead?"</string>
<string name="confirmation_cancel_prev_download_confirmed">"Scan here instead"</string>
<string name="confirmation_cancel_prev_download_cancel">"Continue current scan"</string>
<string name="notification_syncing">"Syncing data…"</string>
<string name="turn_on_location_request">"Location is off. Open Settings to turn it on now?"</string>
<string name="no_location_permission_warning_title">"Location Permission"</string>
<string name="no_location_permission_warning">"Location permission is needed to show your position on the map and scan for quests in your vicinity."</string>
<string name="action_about2">"About"</string>
<string name="about_summary_current_version">"Current version: %s"</string>
<string name="about_title_authors">"Credits"</string>
<string name="about_summary_authors">"© 2016–2021 Tobias Zwick and contributors"</string>
<string name="about_title_repository">"Source Repository"</string>
<string name="about_summary_repository">"on GitHub"</string>
<string name="about_title_faq">"FAQ"</string>
<string name="about_title_report_error">"Report error"</string>
<string name="about_title_feedback">"Give Feedback"</string>
<string name="about_title_license">"License"</string>
<string name="about_summary_license">"GNU General Public License"</string>
<string name="offline">"You are offline"</string>
<string name="confirmation_authorize_now">"You need to authorize with your OSM user account to publish your answers. Authorize now?"</string>
<string name="not_authorized">"Not authorized"</string>
<string name="version_banned_message">"This version of StreetComplete is too old. Please update!"</string>
<string name="no_gps_no_quests">"To scan for quests around you automatically, turn on location"</string>
<string name="later">"Later"</string>
<string name="quest_streetName_answer_noName_question">"Why does it have no name?"</string>
<string name="quest_streetName_answer_noProperStreet_link">"It just links two roads"</string>
<string name="quest_streetName_answer_noProperStreet_service2">"It is something like a driveway or parking aisle"</string>
<string name="quest_streetName_answer_noProperStreet_leaveNote">"Something else (leave note)"</string>
<string name="quest_streetName_answer_noProperStreet_track2">"It is an agricultural or forest road"</string>
<string name="quest_streetName_answer_noName_noname">None of the above, it simply has no name</string>
<string name="about_title_privacy_statement">"Privacy statement"</string>
<string name="about_summary_privacy_statement">"and data usage"</string>
<string name="quest_openingHours_public_holidays">"Public holidays"</string>
<string name="quest_openingHours_public_holidays_short">"PH"</string>
<string name="quest_openingHours_open_end">"open end"</string>
<string name="quest_openingHours_answer_247">"Open 24/7"</string>
<string name="quest_openingHours_answer_seasonal_opening_hours">"Differs by month…"</string>
<string name="quest_openingHours_answer_no_regular_opening_hours">"No regular opening hours…"</string>
<string name="quest_openingHours_comment_title">"Describe opening hours"</string>
<string name="quest_openingHours_comment_description">"Be concise, ideally use the wording from the sign, e.g. “by appointment”. The absence of a sign does not necessarily mean that there are no regular opening hours."</string>
<string name="quest_buildingLevels_title2">"How many levels above the basement does this building have?"</string>
<string name="quest_buildingLevels_title_buildingPart2">"How many levels above the basement does this building part have?"</string>
<string name="quest_roofShape_title">"What basic shape does this building’s roof have?"</string>
<string name="quest_roofShape_select_one">"Select one:"</string>
<string name="quest_roofShape_show_more">"Show more…"</string><!--it is used in generic list, not only for roof shape but rename would break translations-->
<string name="quest_roofShape_answer_many">"It has several different shapes"</string>
<string name="quest_sport_title">"What sport is played here?"</string>
<string name="quest_sport_answer_multi">"Not any specific sport"</string>
<string name="quest_sport_soccer">"Soccer"</string>
<string name="quest_sport_tennis">"Tennis"</string>
<string name="quest_sport_baseball">"Baseball"</string>
<string name="quest_sport_basketball">"Basketball"</string>
<string name="quest_sport_golf">"Golf"</string>
<string name="quest_sport_equestrian">"Equestrian sports"</string>
<string name="quest_sport_athletics">"Track and field"</string>
<string name="quest_sport_volleyball">"Volleyball"</string>
<string name="quest_sport_beachvolleyball">"Beach volleyball"</string>
<string name="quest_sport_american_football">"American football"</string>
<string name="quest_sport_skateboard">"Skateboarding"</string>
<string name="quest_sport_bowls">"Bowls"</string>
<string name="quest_sport_boules">"Boules"</string>
<string name="quest_sport_shooting">"Shooting"</string>
<string name="quest_sport_cricket">"Cricket"</string>
<string name="quest_sport_table_tennis">"Table tennis"</string>
<string name="quest_sport_gymnastics">"Gymnastics"</string>
<string name="quest_sport_archery">"Archery"</string>
<string name="quest_sport_australian_football">"Australian football"</string>
<string name="quest_sport_badminton">"Badminton"</string>
<string name="quest_sport_canadian_football">"Canadian football"</string>
<string name="quest_sport_field_hockey">"Field hockey"</string>
<string name="quest_sport_handball">"Handball"</string>
<string name="quest_sport_ice_hockey">"Ice hockey"</string>
<string name="quest_sport_netball">"Netball"</string>
<string name="quest_sport_rugby">"Rugby"</string>
<string name="pref_title_sync2">"Upload answers automatically"</string>
<string name="map_btn_zoom_out">"Zoom out"</string>
<string name="map_btn_zoom_in">"Zoom in"</string>
<string name="map_btn_menu">"Menu"</string>
<string name="privacy_html">"<p>Ah, someone who cares about privacy, nice! I think I have only good news for you:</p>
<p><b>Direct Contributions</b></p>
<p>
First off, understand that with this app, you make actual and direct contributions to the OpenStreetMap.<br/>
Anything you contribute in this app is directly added to the map, there is no third party in-between the app and OSM infrastructure.
</p>
<p>
Editing OpenStreetMap anonymously is not possible. Any changes you make (and their date and location) are attributed to your OSM user account and publicly visible on the openstreetmap.org website. Because StreetComplete should only be used for on-site survey, this reveals where and when you have used the app.
</p>
<b>Location</b><br/>
<p>
The app does not share your GPS location with anyone. It is used to automatically scan for quests around your area and to focus (and thus download) the map around your location.
</p>
<p><b>Data Usage</b></p>
<p>
As mentioned, the app directly communicates with OSM infrastructure.<br/>
However, before uploading your changes, the app checks with a <a href=\"https://www.westnordost.de/streetcomplete/banned_versions.txt\">simple text file</a> on my server whether it has been banned from uploading any changes. This is a precautionary measure to be able to keep versions of the app that turn out to have critical bugs from possibly corrupting OSM data.</p>"</string>
<string name="privacy_html_tileserver2">"<p>To display the map, vector tiles are retrieved from %1$s. See their <a href=\"%2$s\">privacy statement</a> for more information.</p>"</string>
<string name="privacy_html_image_upload2"><p>Photos you attach to a note are uploaded to my server and deleted some days after that note has been resolved. Their meta-data is stripped before upload.</p></string>
<string name="privacy_html_third_party_quest_sources"><p>For some quests, some additional data from third parties is downloaded. In particular, the oneway quest queries an API, also hosted on westnordost.de, about likely candidates for oneways.</p></string>
<string name="privacy_html_statistics"><p>The data shown in your profile is aggregated from your publicly available contribution history to OpenStreetMap and then hosted on my server.</p></string>
<string name="autosync_on">"On"</string>
<string name="autosync_only_on_wifi">"Only on Wi-Fi"</string>
<string name="autosync_off">"Off"</string>
<string name="quest_pathSurface_title_steps">"What surface do these steps have here?"</string>
<string name="quest_pathSurface_title_bridleway">"What surface does this bridleway have here?"</string>
<string name="quest_pathSurface_title">"What surface does this path have here?"</string>
<string name="quest_streetSurface_title">"What surface does this piece of road have?"</string>
<string name="quest_streetSurface_name_title">"What surface does the road %s have here?"</string>
<string name="quest_streetSurface_square_title">"What surface does this square have?"</string>
<string name="quest_streetSurface_square_name_title">"What surface does the square %s have here?"</string>
<string name="quest_pitchSurface_title">What surface does this sport field have?</string>
<string name="quest_pitchSurface_title_track">What surface does this sport track have?</string>
<string name="quest_pitchLit_title">Is this sport field lit?</string>
<string name="quest_pitchLit_title_track">Is this sport track lit?</string>
<string name="quest_select_hint_most_specific">"Select the most specific one that fits:"</string>
<string name="quest_surface_value_paved">"Paved (generic)"</string>
<string name="quest_surface_value_unpaved">"Unpaved (generic)"</string>
<string name="quest_surface_value_ground">"Ground (generic)"</string>
<string name="quest_surface_value_asphalt">"Asphalt"</string>
<string name="quest_surface_value_compacted">"Compacted"</string>
<string name="quest_surface_value_concrete">"Concrete"</string>
<string name="quest_surface_value_dirt">"Dirt"</string>
<string name="quest_surface_value_fine_gravel">"Fine gravel"</string>
<string name="quest_surface_value_grass">"Grass"</string>
<string name="quest_surface_value_grass_paver">"Grass paver"</string>
<string name="quest_surface_value_gravel">"Gravel"</string>
<string name="quest_surface_value_paving_stones">"Paving stones"</string>
<string name="quest_surface_value_pebblestone">"Pebbles"</string>
<string name="quest_surface_value_sand">"Sand"</string>
<string name="quest_surface_value_rock">"Rock"</string>
<string name="quest_surface_value_sett">"Sett"</string>
<string name="quest_surface_value_wood">"Wood"</string>
<string name="quest_surface_value_woodchips">Woodchips</string>
<string name="quest_placeName_title_name">"What is the name of this place? (%s)"</string>
<string name="quest_sidewalk_title">"Does this street have a sidewalk?"</string>
<string name="quest_busStopName_title">"What is the name of this bus stop?"</string>
<string name="quest_tramStopName_title">"What is the name of this streetcar stop?"</string>
<string name="quest_busStopRef_title">"What is the reference number of this bus stop?"</string>
<string name="quest_tramStopRef_title">"What is the reference number of this streetcar stop?"</string>
<string name="quest_maxspeed_title_short2">"What is the speed limit for this street?"</string>
<string name="quest_maxspeed_unusualInput_confirmation_description">"This speed limit looks implausible."</string>
<string name="quest_maxspeed_answer_sign">"A sign"</string>
<string name="quest_maxspeed_answer_zone2">"It’s within a (slow) zone"</string>
<string name="quest_maxspeed_answer_noSign2">"No sign, defaults apply"</string>
<string name="quest_maxspeed_answer_noSign_confirmation_title">"Are you sure no limit is posted?"</string>
<string name="quest_maxspeed_answer_noSign_confirmation">"Did you check at the ends of the street?
If there are no signs along the whole street which apply for the highlighted section, default speed limits apply."</string>
<string name="quest_maxspeed_answer_noSign_confirmation_positive">"Yes, no sign"</string>
<string name="quest_maxspeed_answer_noSign_info_urbanOrRural">"Where is this street?"</string>
<string name="quest_maxspeed_answer_noSign_urbanOrRural_description">Roads in built-up areas have a lower default speed limit than rural roads.</string>
<string name="quest_maxspeed_answer_noSign_urbanOk">"Built-up area"</string>
<string name="quest_maxspeed_answer_noSign_ruralOk">"Rural"</string>
<string name="quest_maxspeed_answer_noSign_info_zone">"If there is a sign like this at the main street intersection, you won’t find individual signs within the zone because the speed limit posted there applies to the whole zone."</string>
<string name="quest_cycleway_title2">"Is there a cycleway here? What type?"</string>
<string name="quest_cycleway_resurvey_title">"Is this still the cycleway situation here?"</string>
<string name="quest_serviceType_title">"What kind of service road is this?"</string>
<string name="quest_lanes_title">"How many lanes for cars does this road have?"</string>
<string name="quest_lanes_answer_lanes">"Marked lanes"</string>
<string name="quest_lanes_answer_lanes_odd2">"Lane count differs for each side"</string>
<string name="quest_lanes_answer_lanes_description2">"Specify the total number of marked lanes (both directions) usable by car traffic. So, bike and dedicated parking lanes don’t count.
If any lanes are reserved for buses, please leave a note instead."</string>
<string name="quest_lanes_answer_lanes_description_one_side2">"Specify the number of marked lanes usable by car traffic here. So, bike and dedicated parking lanes don’t count.
If any lanes are reserved for buses, please leave a note instead."</string>
<string name="quest_lanes_answer_noLanes">"No marked lanes"</string>
<string name="quest_lanes_answer_lanes_center_left_turn_lane">"It has a two-way left turn lane"</string>
<string name="quest_oneway_title">"Is this a one-way street?"</string>
<string name="quest_oneway2_title">"Is this a one-way street? In which direction?"</string>
<string name="quest_oneway2_dir">"Oneway in this direction"</string>
<string name="quest_oneway2_no_oneway">"Not a oneway"</string>
<string name="quest_address_title">"What is the house number of this building?"</string>
<string name="store_listing_short_description" tools:ignore="UnusedResources">"OpenStreetMap surveyor app"</string>
<string name="store_listing_full_description" tools:ignore="UnusedResources">"Help to improve the OpenStreetMap with StreetComplete!
This app finds incomplete and extendable data in your vicinity and displays it on a map as markers. Each of those is solvable by answering a simple question to complete the info on site.
The info you enter is then directly added to the OpenStreetMap in your name, without the need to use another editor."</string>
<string name="quest_name_answer_noName">"It has no name…"</string>
<string name="quest_name_answer_noName_confirmation_title">"Really no name?"</string>
<string name="quest_name_noName_confirmation_positive">"Yes, no name"</string>
<string name="quest_openingHours_add_times">"Add opening hours"</string>
<string name="crash_message">"Would you please send the error report to the developer?"</string>
<string name="crash_title">"Oh no, StreetComplete crashed last time!"</string>
<string name="crash_compose_email">"Compose email"</string>
<string name="no_email_client">"You have no email client installed."</string>
<string name="pref_title_keep_screen_on">"Keep screen on"</string>
<string name="download_server_error">"Connection error while scanning for quests. Try again later."</string>
<string name="upload_server_error">"Connection error while uploading answers. Try again later."</string>
<string name="quest_generic_hasFeature_yes">"Yes"</string>
<string name="quest_generic_hasFeature_no">"No"</string>
<string name="quest_generic_hasFeature_optional">"Optionally"</string>
<string name="quest_generic_hasFeature_no_leave_note">"No (leave note)"</string>
<string name="quest_bikeParkingCapacity_title">"How many bikes can be parked here?"</string>
<string name="quest_bikeParkingCapacity_hint">"Note that most normal stands can be used from both sides to park each one bike."</string>
<string name="quest_address_unusualHousenumber_confirmation_description">"This house number looks very unusual."</string>
<string name="quest_select_hint">"Select:"</string>
<string name="quest_sport_manySports_confirmation_description">"Is this sports field designed for exactly these sports specifically (markings and equipment are present) or as a general purpose sports field for all kinds of games?"</string>
<string name="quest_manySports_confirmation_specific">"Specifically these"</string>
<string name="quest_manySports_confirmation_generic">"General purpose"</string>
<string name="quest_sport_manySports_confirmation_title">"You selected many sports"</string>
<string name="quest_toiletsFee_title">"Do you have to pay to use this restroom?"</string>
<string name="quest_baby_changing_table_toilets_title">"Does this restroom have a baby changing table?"</string>
<string name="quest_baby_changing_table_title">"Does %s have a baby changing table?"</string>
<string name="quest_way_lit_title">"Is this stretch of way lit?"</string>
<string name="quest_way_lit_named_title">"Is %s lit here?"</string>
<string name="quest_way_lit_road_title">"Is this stretch of road lit?"</string>
<string name="quest_way_lit_automatic">"It uses motion detection"</string>
<string name="quest_way_lit_24_7">"It’s lit night and day"</string>
<string name="quest_tactilePaving_title_bus">"Does this bus stop have tactile pavings?"</string>
<string name="quest_tactilePaving_title_tram">"Does this streetcar stop have tactile pavings?"</string>
<string name="quest_tactilePaving_title_crosswalk">"Does this crosswalk have tactile pavings on both sides?"</string>
<string name="quest_source_dialog_title">Are you sure you checked this on-site?</string>
<string name="quest_source_dialog_note">Only information that was found on a survey should be entered.</string>
<string name="quest_tactilePaving_title_name_bus">"Does the bus stop %s have tactile pavings?"</string>
<string name="quest_tactilePaving_title_name_tram">"Does the streetcar stop %s have tactile pavings?"</string>
<string name="quest_bicycleParkingCoveredStatus_title">"Is this bicycle parking covered (protected from rain)?"</string>
<string name="dialog_session_dont_show_again">Don’t show again for this session</string>
<string name="quest_sport_softball">Softball</string>
<string name="quest_sport_racquet">Racquetball</string>
<string name="quest_sport_ice_skating">Ice skating</string>
<string name="quest_sport_paddle_tennis">Paddle tennis</string>
<string name="quest_sport_gaelic_games">Gaelic games</string>
<string name="quest_sport_sepak_takraw">Sepak takraw</string>
<string name="quest_sport_roller_skating">Roller skating</string>
<string name="quest_wheelchairAccess_name_title">Is %s wheelchair accessible?</string>
<string name="quest_wheelchairAccess_name_type_title">Is %1$s (%2$s) wheelchair accessible?</string>
<string name="quest_wheelchairAccess_bus_station_title">Is this bus station wheelchair accessible?</string>
<string name="quest_wheelchairAccess_toilets_title">Is this restroom wheelchair accessible?</string>
<string name="quest_wheelchairAccess_subway_entrance_title">Is this subway entrance wheelchair accessible?</string>
<string name="quest_wheelchairAccess_railway_station_title">Is this train station wheelchair accessible?</string>
<string name="quest_wheelchairAccess_location_title">Is this location wheelchair accessible?</string>
<string name="quest_wheelchairAccess_bus_station_name_title">Is the bus station %s wheelchair accessible?</string>
<string name="quest_wheelchairAccess_toilets_name_title">Is the restroom %s wheelchair accessible?</string>
<string name="quest_wheelchairAccess_toiletsPart_title">Is the restroom at %s wheelchair accessible?</string>
<string name="quest_wheelchairAccess_subway_entrance_name_title">Is the subway entrance %s wheelchair accessible?</string>
<string name="quest_wheelchairAccess_railway_station_name_title">Is the train station %s wheelchair accessible?</string>
<string name="quest_wheelchairAccess_location_name_title">Is the location %s wheelchair accessible?</string>
<string name="quest_wheelchairAccess_limited">Partially</string>
<string name="quest_wheelchairAccess_limited_description_business">Partially means that there is no more than an ankle-high step to access the place and that most rooms inside are wheelchair accessible.</string>
<string name="quest_wheelchairAccess_limited_description_outside">Partially means that there is no more than an ankle-high step to access it.</string>
<string name="quest_wheelchairAccess_limited_description_public_transport">Partially means that there is no more than an ankle-high step to access it.</string>
<string name="quest_wheelchairAccess_description_toilets">"A wheelchair sign like this might be visible if the restroom is accessible.
Partially means that a wheelchair can enter and use the restroom, but no handrail or adapted hand basin is present."</string>
<string name="quest_recycling_type_title">What type of recycling facility is this?</string>
<string name="recycling_centre">Center</string>
<string name="overground_recycling_container">Container</string>
<string name="underground_recycling_container">Underground container</string>
<string name="quest_generic_error_a_field_empty">You left a field empty</string>
<string name="quest_streetName_menuItem_language_simple">%1$s – %2$s</string>
<string name="quest_streetName_menuItem_language_native">%1$s – %2$s (%3$s)</string>
<string name="quest_streetName_menuItem_language_with_script_simple">%1$s – %2$s, %3$s</string>
<string name="quest_streetName_menuItem_language_with_script_native">%1$s – %2$s (%3$s), %4$s</string>
<string name="quest_streetName_answer_cantType">"Can’t type the characters on the sign"</string>
<string name="quest_streetName_cantType_title">Missing keyboard layout?</string>
<string name="quest_streetName_cantType_open_settings">Open settings</string>
<string name="quest_streetName_cantType_open_store">Visit app store</string>
<string name="quest_streetName_cantType_description">"If you use a default keyboard, chances are that you can simply enable the keyboard layout for the language you need in the input method settings.
Otherwise, you can download another keyboard in the app store. Popular keyboards that support many languages are Google Gboard, SwiftKey Keyboard, and Multiling O Keyboard."</string>
<string name="quest_streetName_menuItem_nolanguage">(unspecified)</string>
<string name="quest_streetName_menuItem_international">international</string>
<string name="quest_fireHydrant_type_title">What kind of fire hydrant is this?</string>
<string name="quest_fireHydrant_type_pillar">Pillar</string>
<string name="quest_fireHydrant_type_underground">Underground</string>
<string name="quest_fireHydrant_type_wall">Wall</string>
<string name="quest_fireHydrant_type_pond">Pond</string>
<string name="credits_contributors">"See the <a href=\"https://github.com/streetcomplete/StreetComplete/graphs/contributors\">complete list on GitHub</a>."</string>
<string name="credits_translations_title">Translations</string>
<string name="credits_contributors_title">Code contributors</string>
<string name="credits_art_contributors_title">Art contributors</string>
<string name="credits_projects_contributors_title">Projects made for StreetComplete</string>
<string name="credits_main_contributors_title">Main contributors</string>
<string name="credits_author_title">Author and maintainer</string>
<string name="credits_and_more">and more…</string>
<string name="quest_maxspeed_answer_living_street">It is a living street</string>
<string name="quest_maxspeed_answer_living_street_confirmation_title">So, there is a sign like this?</string>
<string name="quest_crossing_title">Are there curbs where this way meets this road here? What kind?</string>
<string name="quest_crossing_type_title">What kind of crossing is this?</string>
<string name="quest_crossing_type_signals_controlled">Controlled by traffic lights</string>
<string name="quest_crossing_type_marked">Marked</string>
<string name="quest_crossing_type_unmarked">Without road markings</string>
<string name="action_undo">Undo</string>
<string name="undo_confirm_title2">Undo the following edit?</string>
<string name="synced">Synced</string>
<string name="toast_undo_unavailable">This edit is already synced and cannot be undone</string>
<string name="quest_orchard_produce_title">What is being cultivated here?</string>
<string name="produce_grapes">Grapes</string>
<string name="produce_agaves">Agaves</string>
<string name="produce_almonds">Almonds</string>
<string name="produce_apples">Apples</string>
<string name="produce_apricots">Apricots</string>
<string name="produce_avocados">Avocados</string>
<string name="produce_bananas">Bananas</string>
<string name="produce_blueberries">Blueberries</string>
<string name="produce_cacao">Cacao</string>
<string name="produce_cashew_nuts">Cashew nuts</string>
<string name="produce_cherries">Cherries</string>
<string name="produce_chestnuts">Chestnuts</string>
<string name="produce_coconuts">Coconuts</string>
<string name="produce_coffee">Coffee</string>
<string name="produce_cranberries">Cranberries</string>
<string name="produce_dates">Dates</string>
<string name="produce_figs">Figs</string>
<string name="produce_grapefruits">Grapefruits</string>
<string name="produce_guavas">Guavas</string>
<string name="produce_hazelnuts">Hazelnuts</string>
<string name="produce_hops">Hops</string>
<string name="produce_jojoba">Jojoba</string>
<string name="produce_kiwis">Kiwis</string>
<string name="produce_kola_nuts">Kola nuts</string>
<string name="produce_lemons">Lemons</string>
<string name="produce_limes">Limes</string>
<string name="produce_mangos">Mangoes</string>
<string name="produce_mate">Mate</string>
<string name="produce_nutmeg">Nutmeg</string>
<string name="produce_oil_palms">Oil palms</string>
<string name="produce_olives">Olives</string>
<string name="produce_oranges">Oranges</string>
<string name="produce_papayas">Papayas</string>
<string name="produce_peaches">Peaches</string>
<string name="produce_pears">Pears</string>
<string name="produce_chili">Chili</string>
<string name="produce_persimmons">Persimmons</string>
<string name="produce_pineapples">Pineapples</string>
<string name="produce_pepper">Peppers</string>
<string name="produce_pistachios">Pistachios</string>
<string name="produce_plums">Plums</string>
<string name="produce_raspberries">Raspberries</string>
<string name="produce_rubber">Rubber</string>
<string name="produce_strawberries">Strawberries</string>
<string name="produce_tea">Tea</string>
<string name="produce_vanilla">Vanilla</string>
<string name="produce_walnuts">Walnuts</string>
<string name="produce_sisal">Sisal</string>
<string name="produce_mangosteen">Mangosteen</string>
<string name="produce_tomatoes">Tomatoes</string>
<string name="produce_areca_nuts">Areca nuts</string>
<string name="produce_sweet_peppers">Sweet peppers</string>
<string name="produce_brazil_nuts">Brazil nuts</string>
<string name="produce_tung_nuts">Tung nuts</string>
<string name="quest_parkingType_title">What kind of parking is this?</string>
<string name="quest_parkingType_surface">Parking lot</string>
<string name="quest_parkingType_street_side">Parking adjacent to the roadway</string>
<string name="quest_parkingType_lane">Parking on roadway</string>
<string name="quest_parkingType_underground">Underground garage</string>
<string name="quest_parkingType_multiStorage">Parking garage</string>
<string name="quest_diet_answer_no_food">It has no food</string>
<string name="quest_dietType_vegetarian_name_title">Does %s have vegetarian meals on the menu?</string>
<string name="quest_dietType_vegan_name_title">Does %s have vegan meals on the menu?</string>
<string name="quest_hasFeature_only">Only</string>
<string name="quest_dietType_explanation_vegan">Vegan meals contain no animal products (no meat, fish, poultry, milk products, eggs, honey …).</string>
<string name="quest_dietType_explanation_vegetarian">Vegetarian meals contain no meat, fish, or poultry.</string>
<string name="quest_dietType_explanation">Only answer “yes” if the place provides a comparable choice of eating options for this diet</string>
<string name="quest_toiletAvailability_name_title">Does %s have a restroom?</string>
<string name="quest_existence_title">Is this still here? (%s)</string>
<string name="quest_existence_name_title">Is %1$s (%2$s) still here?</string>
<string name="quest_powerPolesMaterial_title">What is the material of this power or utility pole?</string>
<string name="quest_powerPolesMaterial_wood">Wood</string>
<string name="quest_powerPolesMaterial_metal">Steel</string>
<string name="quest_powerPolesMaterial_concrete">Concrete</string>
<string name="quest_maxspeed_answer_advisory_speed_limit">Just an advisory speed limit…</string>
<string name="quest_address_answer_house_name">No house number but a name…</string>
<string name="quest_address_answer_house_name_and_housenumber">Both a house number and a name…</string>
<string name="quest_address_house_name_label">House name:</string>
<string name="quest_address_house_number_label">House number:</string>
<string name="quest_buildingLevels_roofLevelsLabel2">levels in the roof</string>
<string name="quest_buildingLevels_levelsLabel2">regular levels (not counting the roof)</string>
<string name="quest_cycleway_value_track">cycle track</string>
<string name="quest_cycleway_value_lane">cycle lane</string>
<string name="quest_cycleway_value_lane_soft">cycle lane (dashed markings)</string>
<string name="quest_cycleway_value_none">none</string>
<string name="quest_cycleway_value_shared">lane shared explicitly with other traffic</string>
<string name="quest_buildingLevels_answer_multipleLevels">Differs per building part</string>
<string name="quest_buildingLevels_answer_description">In this case, simply input the values of the highest building part.</string>
<string name="quest_maxspeed_answer_noSign_singleOrDualCarriageway_description">Are the roadways of this road here physically separated (i.e. through a barrier)? The default speed limit depends on whether this is the case or not.</string>
<string name="quest_cycleway_value_bus_lane">on bus lane</string>
<string name="quest_cycleway_value_separate">displayed separately on map</string>
<string name="about_category_feedback">Feedback</string>
<string name="quest_cycleway_value_sidewalk">explicitly shared sidewalk</string>
<string name="quest_leave_new_note_create_image_error">Unable to create file for photo</string>
<string name="no_camera_app">No camera app available</string>
<string name="quest_carWashType_title">What kind of car wash is this?</string>
<string name="quest_carWashType_automated">Automated</string>
<string name="quest_carWashType_selfService">Self service</string>
<string name="quest_carWashType_service">Staff cleans car</string>
<string name="quest_cycleway_value_lane_dual">cycle lane, both directions</string>
<string name="quest_cycleway_value_track_dual">cycle track, both directions</string>
<string name="pref_category_advanced">Advanced</string>
<string name="pref_title_resurvey_intervals">Resurvey intervals</string>
<string name="resurvey_intervals_less_often">Ask less often</string>
<string name="resurvey_intervals_default">Default</string>
<string name="resurvey_intervals_more_often">Ask more often</string>
<string name="pref_title_quests2">Quest selection and display order</string>
<string name="pref_subtitle_quests">%1$d of %2$d enabled</string>
<string name="pref_subtitle_quests_preset_name">Preset: %s</string>
<string name="quest_enabled">Enabled</string>
<string name="quest_type">Quest type</string>
<string name="action_reset">Reset</string>
<string name="undo_confirm_positive">Undo</string>
<string name="undo_confirm_negative">Cancel</string>
<string name="enable_quest_confirmation_title">Enable this quest type?</string>
<string name="default_disabled_msg_go_inside">This quest type is disabled by default because you will likely have to enter the place to be able to answer a quest of this type.</string>
<string name="default_disabled_msg_go_inside_regional_warning">This quest type is disabled by default because it is not useful in some regions and you will likely have to enter the place to be able to answer a quest of this type.</string>
<string name="default_disabled_msg_roofShape">This quest type is disabled by default because the roof shapes are often not easily visible from the street. This quest type is also quite time-consuming; in most cases it is easier and more efficient to map this from aerial imagery at home.</string>
<string name="quest_housenumber_conscription_number">Conscription number</string>
<string name="quest_housenumber_street_number_optional">Orientation number (optional)</string>
<string name="quest_bridge_structure_title">What is the structure of this bridge?</string>
<string name="quest_cycleway_answer_contraflow_cycleway">Also cycleway on other side…</string>
<string name="map_btn_create_note">Create new note</string>
<string name="created_note_action_title">Created note</string>
<string name="commented_note_action_title">Commented note</string>
<string name="hid_action_description">You hid it</string>
<string name="split_way_action_description">You split the way</string>
<string name="deleted_poi_action_description">You deleted it</string>
<string name="added_tag_action_title">Added %s</string>
<string name="removed_tag_action_title">Removed %s</string>
<string name="changed_tag_action_title">Updated to %s</string>
<string name="create_new_note_unprecise">Zoom in further to create a note</string>
<string name="create_new_note_description">You can leave a note to let other mappers know about an issue here. Adjust the note’s position by moving the map:</string>
<string name="pref_title_delete_cache">Delete cache</string>
<string name="pref_title_delete_cache_summary">If you think some data is outdated</string>
<string name="delete_confirmation">Delete</string>
<string name="delete_cache_dialog_message">Delete all downloaded map data, including quests?\nData is refreshed after %1$s days and unused data is deleted after %2$s days automatically.</string>
<string name="restore_confirmation">Restore</string>
<string name="restore_dialog_message">Restore all quests you’ve hidden?</string>
<string name="quest_openingHours_emptyAnswer">You need to describe what is on the sign. If there is no sign, you should ask for the opening hours inside.</string>
<string name="quest_openingHours_no_sign">No opening hours sign</string>
<string name="quest_cycleway_value_none_but_no_oneway">none, but cyclists may use road in both directions</string>
<string name="quest_generic_looks_like_this">Usually looks like this:</string>
<string name="quest_surface_value_metal">Metal</string>
<string name="quest_generic_item_confirmation">Are you sure that you can not determine it more specifically?</string>
<string name="quest_internet_access_name_title">What kind of Internet connection does %s offer?</string>
<string name="quest_internet_access_wlan">Wi-Fi</string>
<string name="quest_internet_access_wired">Wired (LAN)</string>
<string name="quest_internet_access_terminal">Computer with Internet access</string>
<string name="quest_internet_access_no">No connection</string>
<string name="quest_busStopShelter_tram_name_title">"Is there a shelter at the streetcar stop %s?"</string>
<string name="quest_busStopShelter_tram_title">"Is there a shelter at this streetcar stop?"</string>
<string name="quest_busStopShelter_title">"Is there a shelter at this bus stop?"</string>
<string name="quest_busStopShelter_name_title">"Is there a shelter at the bus stop %s?"</string>
<string name="quest_busStopShelter_covered">Whole stop is covered</string>
<string name="quest_busStopBench_tram_name_title">"Is there a bench at the streetcar stop %s?"</string>
<string name="quest_busStopBench_tram_title">"Is there a bench at this streetcar stop?"</string>
<string name="quest_busStopBench_title">"Is there a bench at this bus stop?"</string>
<string name="quest_busStopBench_name_title">"Is there a bench at the bus stop %s?"</string>
<string name="quest_busStopBin_tram_name_title">"Is there a waste basket at the streetcar stop %s?"</string>
<string name="quest_busStopBin_tram_title">"Is there a waste basket at this streetcar stop?"</string>
<string name="quest_busStopBin_title">"Is there a waste basket at this bus stop?"</string>
<string name="quest_busStopBin_name_title">"Is there a waste basket at the bus stop %s?"</string>
<string name="quest_busStopLit_tram_name_title">"Is the streetcar stop %s lit?"</string>
<string name="quest_busStopLit_tram_title">"Is this streetcar stop lit?"</string>
<string name="quest_busStopLit_title">"Is this bus stop lit?"</string>
<string name="quest_busStopLit_name_title">"Is the bus stop %s lit?"</string>
<string name="quest_bench_backrest_title">Does this bench have a backrest?</string>
<string name="quest_bench_answer_picnic_table">It’s a picnic table</string>
<string name="quest_religion_for_place_of_worship_name_title">What religion is practiced at %s?</string>
<string name="quest_religion_for_place_of_worship_title">What religion is practiced at this place?</string>
<string name="quest_religion_christian">Christianity</string>
<string name="quest_religion_muslim">Islam</string>
<string name="quest_religion_hindu">Hinduism</string>
<string name="quest_religion_buddhist">Buddhism</string>
<string name="quest_religion_shinto">Shinto</string>
<string name="quest_religion_jewish">Judaism</string>
<string name="quest_religion_taoist">Taoism</string>
<string name="quest_religion_for_place_of_worship_answer_multi">for use by any religion</string>
<string name="quest_religion_sikh">Sikh</string>
<string name="quest_religion_jain">Jain</string>
<string name="quest_religion_bahai">Bahá’í Faith</string>
<string name="quest_religion_animist">Animist</string>
<string name="quest_religion_caodaist">Caodaism</string>
<string name="quest_religion_chinese_folk">Chinese folk religion</string>
<string name="quest_religion_for_wayside_shrine_title">What religion is represented at this shrine?</string>
<string name="quest_parking_fee_title">Do you have to pay to park here?</string>
<string name="quest_surface_value_unhewn_cobblestone">Unhewn cobblestone</string>
<string name="quest_parking_access_title2">Who is allowed to park here? Parking may be free or paid.</string>
<string name="quest_access_yes">Any member of the general public</string>
<string name="quest_access_customers">Any person visiting a specific place (e.g. customers only)</string>
<string name="quest_access_private">Only individual(s) with permission</string>
<string name="quest_streetName_pedestrian_title">What is the name of this pedestrian street?</string>
<string name="quest_fee_answer_hours">Depends on time and day…</string>
<string name="quest_fee_add_times">"Add times"</string>
<string name="quest_fee_only_at_hours">Yes, but only…</string>
<string name="quest_fee_not_at_hours">Yes, but not…</string>
<string name="quest_fee_hours_title">at the following times:</string>
<string name="quest_housenumber_multiple_numbers">It has multiple house numbers</string>
<string name="quest_housenumber_multiple_numbers_description">"You can simply enter comma–separated house numbers or ranges.\nFor instance 1,3 or 2–6."</string>
<string name="quest_bicycle_parking_type_stand">Stand (supports bike frame)</string>
<string name="quest_bicycle_parking_type_wheelbender">Wheelbender (supports wheel only)</string>
<string name="quest_bicycle_parking_type_shed">Shed</string>
<string name="quest_bicycle_parking_type_locker">Locker</string>
<string name="quest_bicycle_parking_type_building">Building</string>
<string name="quest_bicycle_parking_type_title">What type of bicycle parking is this?</string>
<string name="quest_bicycle_parking_access_title">Is it restricted who may park a bike here?</string>
<string name="quest_bicycle_parking_fee_title">Do you have to pay to park a bike here?</string>
<string name="quest_cycleway_value_suggestion_lane">bicycle suggestion lane</string>
<string name="quest_postboxCollectionTimes_title">What are the collection times of this postbox?</string>
<string name="quest_postboxCollectionTimes_name_title">What are the collection times of this %s postbox?</string>
<string name="quest_postboxCollectionTimes_resurvey_title">Are the collection times of this postbox still correct?</string>
<string name="quest_postboxCollectionTimes_resurvey_name_title">Are the collection times of this %s postbox still correct?</string>
<string name="quest_postboxRef_title">What is the reference number of this postbox?</string>
<string name="quest_postboxRef_name_title">What is the reference number of this %s postbox?</string>
<string name="quest_ref_answer_noRef">"No reference number visible…"</string>
<string name="quest_collectionTimes_add_times">Add collection time</string>
<string name="quest_collectionTimes_answer_no_times_specified">No times specified</string>
<string name="quest_postboxRoyalCypher_title">What is the royal cypher on this postbox?</string>
<string name="quest_postboxRoyalCypher_type_none">No royal cypher is visible</string>
<string name="quest_postboxRoyalCypher_type_scottish_crown">The Crown of Scotland</string>
<string name="quest_policeType_title">Which type of police station is this?</string>
<string name="quest_construction_road_title">Is this road completed?</string>
<string name="quest_construction_cycleway_title">Is this cycleway completed?</string>
<string name="quest_construction_footway_title">Is this footway completed?</string>
<string name="quest_construction_steps_title">Are these steps completed?</string>
<string name="quest_construction_generic_title">Is this way completed?</string>
<string name="quest_construction_building_title">Is this building completed?</string>
<string name="questList_disabled_in_country">Never shown in %s</string>
<string name="quest_toiletAvailability_rest_area_title">Does this rest area have restroom facilities?</string>
<string name="quest_maxspeed_name_title2">What is the speed limit for %s here?</string>
<string name="pref_quests_reset">Reset both quest enablement and order to the default?</string>
<string name="pref_quests_deselect_all">Deselect all quests?</string>
<string name="quest_buildingType_title">"What kind of building is this?"</string>
<string name="quest_generic_item_invalid_value">Please select a more specific value.</string>
<string name="quest_buildingType_answer_multiple_types">It has multiple purposes</string>
<string name="quest_buildingType_answer_multiple_types_description">Simply select the main purpose of this building. E.g. if there is a shop on the ground floor with apartments above it, it is still mainly an apartment building.</string>
<string name="quest_buildingType_answer_construction_site">It is still being constructed</string>
<string name="quest_buildingType_residential">Residential</string>
<string name="quest_buildingType_residential_description">building where people live</string>
<string name="quest_buildingType_house">House</string>
<string name="quest_buildingType_house_description2">non-detached single-family home</string>
<string name="quest_buildingType_apartments_description">house for multiple families, may have retail outlets on the ground floor</string>
<string name="quest_buildingType_apartments">Apartment building</string>
<string name="quest_buildingType_detached">Detached house</string>
<string name="quest_buildingType_detached_description">free-standing single-family home</string>
<string name="quest_buildingType_semi_detached">Semi-detached house</string>
<string name="quest_buildingType_semi_detached_description2">adjoined single-family home(s)</string>
<string name="quest_buildingType_terrace2">Row houses</string>
<string name="quest_buildingType_terrace_description">a linear row of similar single-family homes</string>
<string name="quest_buildingType_hotel">Hotel building</string>
<string name="quest_buildingType_dormitory">Dormitory</string>
<string name="quest_buildingType_houseboat">Houseboat</string>
<string name="quest_buildingType_bungalow">Bungalow</string>
<string name="quest_buildingType_bungalow_description2">small detached house (summer house, holiday cottage, cabin …)</string>
<string name="quest_buildingType_static_caravan">Mobile home</string>
<string name="quest_buildingType_commercial">Commercial building</string>
<string name="quest_buildingType_commercial_generic_description">building where people work, shop or do any other commercial activities</string>
<string name="quest_buildingType_industrial">Industrial building</string>
<string name="quest_buildingType_industrial_description">e.g. a factory, workshop, car repair garage, …</string>
<string name="quest_buildingType_office">Office building</string>
<string name="quest_buildingType_retail">Shop(s)</string>
<string name="quest_buildingType_warehouse">Warehouse</string>
<string name="quest_buildingType_kiosk">Kiosk</string>
<string name="quest_buildingType_storage_tank">Storage tank</string>
<string name="quest_buildingType_religious">Religious building</string>
<string name="quest_buildingType_church">Church</string>
<string name="quest_buildingType_chapel">Chapel</string>
<string name="quest_buildingType_cathedral">Cathedral</string>
<string name="quest_buildingType_mosque">Mosque</string>
<string name="quest_buildingType_temple">Temple building</string>
<string name="quest_buildingType_pagoda">Pagoda</string>
<string name="quest_buildingType_synagogue">Synagogue</string>
<string name="quest_buildingType_shrine">Shrine</string>
<string name="quest_buildingType_civic">Civic building</string>
<string name="quest_buildingType_civic_description">public building usually housing an amenity</string>
<string name="quest_buildingType_kindergarten">Kindergarten building</string>
<string name="quest_buildingType_school">School building</string>
<string name="quest_buildingType_college">College building</string>
<string name="quest_buildingType_hospital">Hospital building</string>
<string name="quest_buildingType_sports_centre">Sports centre</string>
<string name="quest_buildingType_stadium">Stadium</string>
<string name="quest_buildingType_train_station">Train station</string>
<string name="quest_buildingType_transportation">Public transportation building</string>
<string name="quest_buildingType_university">University building</string>
<string name="quest_buildingType_government">Government building</string>
<string name="quest_buildingType_cars">For cars</string>
<string name="quest_buildingType_carport">Carport</string>
<string name="quest_buildingType_carport_description">roof for a car</string>
<string name="quest_buildingType_garage">Single garage</string>
<string name="quest_buildingType_garages">Multiple garages</string>
<string name="quest_buildingType_garages_description">Separate spaces for different owners/tenants</string>
<string name="quest_buildingType_parking">Parking building</string>
<string name="quest_buildingType_farm">On a farm</string>
<string name="quest_buildingType_farmhouse">Farmhouse</string>
<string name="quest_buildingType_farmhouse_description">the residential building on a farm</string>
<string name="quest_buildingType_farm_auxiliary">Farm building</string>
<string name="quest_buildingType_farm_auxiliary_description">any building on a farm that is not a residential building</string>
<string name="quest_buildingType_silo">Silo</string>
<string name="quest_buildingType_greenhouse">Greenhouse</string>
<string name="quest_buildingType_other">Other</string>
<string name="quest_buildingType_shed">Shed</string>
<string name="quest_buildingType_boathouse">Boathouse</string>
<string name="quest_buildingType_allotment_house">Garden allotment outbuilding</string>
<string name="quest_buildingType_grandstand">Grandstand</string>
<string name="quest_buildingType_toilets">Toilets</string>
<string name="quest_buildingType_hut">Hut</string>
<string name="quest_buildingType_hut_description">small, simple dwelling or shelter</string>
<string name="quest_buildingType_roof">Roof</string>
<string name="quest_buildingType_bridge">Bridge between buildings (skyway)</string>
<string name="quest_buildingType_service">Service building</string>
<string name="quest_buildingType_service_description">building with machinery like pumps or transformers</string>
<string name="quest_buildingType_hangar">Hangar</string>
<string name="quest_buildingType_hangar_description">storage for airplanes, helicopters or spacecraft</string>
<string name="quest_buildingType_bunker">Bunker</string>
<string name="quest_buildingType_historic">Historic</string>
<string name="quest_buildingType_historic_description">building of historic value, constructed for an unknown or unclear purpose</string>
<string name="quest_buildingType_abandoned">Abandoned</string>
<string name="quest_buildingType_abandoned_description">unused building whose original function or purpose is unknown</string>
<string name="quest_buildingType_ruins">Ruins</string>
<string name="quest_buildingType_ruins_description">derelict, ruined and unidentifiable building</string>
<string name="quest_buildingType_fire_station">Fire station</string>
<string name="quest_address_answer_no_housenumber">It has no house number…</string>
<string name="quest_address_answer_no_housenumber_message1">The building was tagged as:</string>
<string name="quest_address_answer_no_housenumber_message2b">Is this correct?</string>
<string name="quest_maxspeed_sign_question">What defines the speed limit?</string>
<string name="notification_channel_sync">"Sync Data"</string>
<string name="quest_playground_access_title">Is this playground publicly accessible?</string>
<string name="quest_segregated_title">How are the footway and cycleway laid out here?</string>
<string name="dialog_tutorial_upload">To upload your changes manually, use the button in the toolbar that looks like this.</string>
<string name="quest_segregated_separated">Segregated from one another</string>
<string name="quest_segregated_mixed">Cyclists and pedestrians share the same space</string>
<string name="quest_maxheight_title">"What is the height limit here?"</string>
<string name="quest_maxheight_parking_entrance_title">What is the height limit of this parking entrance?</string>
<string name="quest_maxheight_height_restrictor_title">What is the height limit of this height restrictor?</string>
<string name="quest_maxheight_tunnel_title">What is the height limit of this tunnel?</string>
<string name="quest_maxheight_below_bridge_title">What is the height limit below the bridge?</string>
<string name="quest_maxheight_answer_noSign">There is no sign…</string>
<string name="quest_maxheight_split_way_hint">If it doesn’t apply for the whole way, consider answering “%s”.</string>
<string name="quest_maxheight_answer_noSign_question">Is there easily enough space for even the tallest trucks (at least about 4.5 meters / 15 feet) to pass through?</string>
<string name="quest_maxheight_answer_noSign_question_yes">Tall trucks can pass through</string>
<string name="quest_maxheight_answer_noSign_question_no">"Tall trucks don’t fit"</string>
<string name="quest_maxheight_unusualInput_confirmation_description">This height looks implausible. Are you sure that it is correct?</string>
<string name="quest_railway_crossing_barrier_title2">What barriers are used at this railway crossing?</string>
<string name="quest_railway_crossing_barrier_none2">No barriers</string>
<string name="action_search">Search</string>
<string name="action_deselect_all">Deselect all</string>
<string name="action_manage_presets">Manage presets</string>
<string name="quest_buildingType_retail_description">including buildings for restaurants, cafés, big stores …</string>
<string name="quest_maxweight_title">"What is the weight limit here?"</string>
<string name="quest_maxweight_select_sign">"Select sign"</string>
<string name="quest_generic_answer_noSign">There is no sign</string>
<string name="quest_maxweight_unusualInput_confirmation_description">This weight looks implausible. Are you sure that it is correct?</string>
<string name="quest_maxweight_answer_other_sign">Sign looks different…</string>
<string name="quest_maxweight_unsupported_sign_request_photo">Would you like to leave a note? A note with a photo will enable other mappers to take care of it.</string>
<string name="quest_tracktype_title">What is the surface firmness of this track?</string>
<string name="quest_tracktype_grade1">Solid</string>
<string name="quest_tracktype_grade2a">Solid but unpaved</string>
<string name="quest_tracktype_grade3a">Mostly solid</string>
<string name="quest_tracktype_grade4">Mostly soft</string>
<string name="quest_tracktype_grade5">Soft</string>
<string name="quest_wheelchairAccess_outside_title">Is this place wheelchair accessible?</string>
<string name="quest_building_underground_name_title">Is %s completely underground?</string>
<string name="quest_building_underground_title">Is this building completely underground?</string>
<string name="quest_traffic_signals_sound_title">Are there sound signals for the blind here?</string>
<string name="quest_traffic_signals_button_title">Do these traffic lights have a button to request a walk signal?</string>
<string name="quest_traffic_signals_vibrate_title">Do these traffic lights have a tactile indication for blind people for when it’s safe to cross?</string>
<string name="quest_traffic_signals_vibrate_description">Hint: Often this is a vibrating button or rotating cone on the underside of the traffic light button case.</string>
<string name="quest_motorcycleParkingCapacity_title">How many motorcycles can be parked here?</string>
<string name="quest_motorcycleParkingCoveredStatus_title">Is this motorcycle parking covered (protected from rain)?</string>
<string name="default_disabled_msg_maxspeed">This quest type is disabled by default because you are usually required to check the whole street for speed limit signs, not just the highlighted section. This can sometimes be quite the stretch just to solve a single quest.</string>
<string name="pref_title_quests_restore_hidden">Restore hidden quests</string>
<string name="restore_hidden_success">Restored %d hidden quests</string>
<!-- caution: This is not the floor and level=0 is not necessarily at street level as it may follow the numbering scheme of the building operator. Try to use a generic wording that does not carry an implicit meaning of where it is located in respect to the ground floor. The context is usually shopping centres, train stations or airport terminals -->
<string name="on_level">on level %s:</string>
<string name="on_floor">on floor %s:</string>
<!-- as in: “Where is the metro station?” - “It is underground” -->
<string name="underground">underground:</string>
<string name="quest_sidewalk_value_yes">sidewalk</string>
<string name="quest_sidewalk_value_no">no sidewalk</string>
<string name="quest_accessible_for_pedestrians_title_prohibited">Are pedestrians forbidden to walk on this road here?</string>
<string name="pref_title_theme_select">Select theme</string>
<string name="theme_automatic">Auto</string>
<string name="theme_light">Light</string>
<string name="theme_dark">Dark</string>
<string name="theme_system_default">System default</string>
<string name="quest_accessible_for_pedestrians_separate_sidewalk_explanation">This street was tagged as having no sidewalk on either side. In the case that there is a sidewalk after all but it is displayed as a separate way, please answer “sidewalk”.</string>
<string name="action_open_location">Open location in another app</string>
<string name="map_application_missing">No other map application installed</string>
<string name="label_housenumber">house number</string>
<string name="label_blocknumber">block number</string>
<string name="quest_ferry_pedestrian_name_title">Does %s transport pedestrians?</string>
<string name="quest_ferry_pedestrian_title">Does this ferry route transport pedestrians?</string>
<string name="quest_ferry_motor_vehicle_name_title">Does %s transport motor vehicles?</string>
<string name="quest_ferry_motor_vehicle_title">Does this ferry route transport motor vehicles?</string>
<string name="quest_leafType_title">Do the trees here have needles or leaves?</string>
<string name="quest_leaf_type_needles">Needles</string>
<string name="quest_leaf_type_broadleaved">Broadleaved</string>
<string name="quest_leaf_type_mixed">Both are present</string>
<string name="create_new_note_hint">Best write the note in the locally spoken language or otherwise in English.</string>
<string name="quest_cyclewayPartSurface_title">What’s the surface of the cycleway here?</string>
<string name="quest_footwayPartSurface_title">What’s the surface of the footway here?</string>
<string name="quest_board_type_history">History</string>
<string name="quest_board_type_geology">Geology</string>
<string name="quest_board_type_plants">Plants</string>
<string name="quest_board_type_wildlife">Wildlife</string>
<string name="quest_board_type_nature">Nature (multiple topics)</string>
<string name="quest_board_type_notice_board">It is a notice board</string>
<string name="quest_board_type_public_transport">Public transport</string>
<string name="quest_board_type_sport">Sport, Exercises</string>
<string name="quest_board_type_title">What is the topic of this information board?</string>
<string name="quest_generic_answer_differs_along_the_way">"Differs along the way…"</string>
<string name="quest_split_way_description">If it differs along the way, the first step is to split up the way. After that, the quest can be answered for each split part separately.\nSplit it now?</string>
<string name="quest_split_way_tutorial">Tap on the way to split it at the point(s) where the answer differs. Try to be as precise as possible, you can zoom in as usual.</string>
<string name="quest_split_way_too_imprecise">"Please zoom in further"</string>
<string name="quest_split_way_many_splits_confirmation_description">These are quite a few splits. You can always further split up the way later.</string>
<string name="quest_generic_answer_is_actually_steps">"This part is steps"</string>
<string name="confirmation_authorize_now_note2">You can also do this later on the profile screen.</string>
<string name="quest_generalFee_title">Do you need to pay to enter %s?</string>
<string name="quest_laundrySelfService_title2">Does this laundry provide self-service?</string>
<string name="quest_handrail_title">Do these steps have a handrail?</string>
<string name="quest_steps_ramp_title">Do these steps have a ramp? What kind?</string>
<string name="quest_steps_ramp_separate_wheelchair">Is the wheelchair ramp displayed as a separate way on the map?</string>
<string name="quest_steps_ramp_separate_wheelchair_confirm">separate</string>
<string name="quest_steps_ramp_separate_wheelchair_decline">not separate</string>
<string name="quest_steps_ramp_none">No (usable) ramp</string>
<string name="quest_steps_ramp_bicycle">Bicycle ramp</string>
<string name="quest_steps_ramp_stroller">Stroller ramp</string>
<string name="quest_steps_ramp_wheelchair">Wheelchair ramp</string>
<string name="quest_steps_incline_title">Which direction leads upwards for these steps?</string>
<string name="quest_steps_incline_up">This way up</string>
<string name="quest_step_count_title">How many steps are here?</string>
<string name="quest_address_street_title">What street does (house) %s belong to?</string>
<string name="quest_address_street_no_named_streets">It does not belong to a named street</string>
<string name="quest_address_street_hint">Tap road on map</string>
<string name="quest_address_street_place_name_label">Place name:</string>
<string name="quest_address_street_description">Tap the road it belongs to on the map or enter it without abbreviations in the field below:</string>
<string name="quest_street_side_puzzle_tutorial">The road in the illustration is rotated the same as on the map at the location of the pin. </string>
<string name="quest_recycling_materials_title">What can be left here for recycling?</string>
<string name="quest_recycling_materials_note">If anything different can be recycled than selectable here, please leave a note instead.</string>
<string name="quest_recycling_type_batteries">Batteries</string>
<string name="quest_recycling_type_cans">Cans</string>
<string name="quest_recycling_type_clothes">Clothes</string>
<string name="quest_recycling_type_green_waste">Garden waste</string>
<string name="quest_recycling_type_glass_bottles">Glass bottles and jars</string>
<string name="quest_recycling_type_glass_bottles_short">Bottles and jars</string>
<string name="quest_recycling_type_paper">Paper</string>
<string name="quest_recycling_type_plastic_generic">Plastic</string>
<string name="quest_recycling_type_plastic">Any plastic</string>
<string name="quest_recycling_type_shoes">Shoes</string>
<string name="quest_recycling_type_electric_appliances">Electric appliances</string>
<string name="quest_recycling_type_plastic_bottles">Plastic bottles only</string>
<string name="quest_recycling_type_beverage_cartons">Beverage cartons only</string>
<string name="quest_recycling_type_plastic_packaging">Plastic packaging only</string>
<string name="quest_recycling_type_plastic_bottles_and_cartons">Plastic bottles and cartons only</string>
<string name="quest_recycling_type_scrap_metal">Scrap metal</string>
<string name="quest_recycling_type_any_glass">Any glass</string>
<string name="quest_recycling_type_cooking_oil">Cooking Oil</string>
<string name="quest_recycling_type_engine_oil">Engine Oil</string>
<string name="quest_recycling_glass_title">Can only glass bottles and jars be recycled here, or any type of glass?</string>
<string name="quest_determineRecyclingGlass_description_any_glass">Examples of glass that is often not accepted: tempered glass, window panes, glassware, light bulbs or mirrors.</string>
<string name="quest_tourism_information_title">What type of tourist information is this?</string>
<string name="quest_tourism_information_name_title">What type of tourist information is %s?</string>
<string name="quest_tourism_information_office">Tourist information office</string>
<string name="quest_tourism_information_board">Information board</string>
<string name="quest_tourism_information_terminal">Information terminal</string>
<string name="quest_tourism_information_map">Map</string>
<string name="quest_tourism_information_guidepost">Guidepost</string>
<string name="about_title_changelog">Version history</string>
<string name="title_whats_new">What’s New?</string>
<string name="about_title_rate">Rate this app</string>
<string name="about_summary_rate">on Google Play</string>
<string name="about_title_donate">Donate</string>
<string name="about_title_translate">Help translate this app</string>
<string name="about_description_translate">%1$s is translated %2$d%%</string>
<string name="about_title_sponsors">Sponsors</string>
<string name="about_summary_donate">Show your appreciation! ❤️</string>
<string name="about_description_donate">Thank you for considering to support this app! To see current donations and to donate yourself, tap on the respective platform:</string>
<string name="quest_recycling_materials_answer_waste">It’s for general waste</string>
<string name="quest_recycling_materials_answer_waste_description">So, this is a container for any waste, such as bagged up household or commercial waste?</string>
<string name="quest_accepts_cash_type_title">"Does %1$s (%2$s) accept cash payment?"</string>
<string name="quest_accepts_cash_title">"Does %s accept cash payment?"</string>
<string name="quest_atm_operator_title">"What’s the name of the bank for this ATM?"</string>
<string name="quest_clothes_container_operator_title">"Who accepts donations for this clothing bin?"</string>
<string name="quest_charging_station_operator_title">"Who is the operator of this charging station?"</string>
<string name="quest_charging_station_capacity_title">"How many cars can be charged at this charging station at the same time?"</string>
<string name="quest_charging_station_name_capacity_title">"How many cars can be charged at this charging station (%s) at the same time?"</string>
<string name="team_mode">Team Mode</string>
<string name="team_mode_exit">Exit Team Mode</string>
<string name="team_mode_description">When mapping the same area together in a group, you can enter team mode to split up quests between all team members.</string>
<string name="team_mode_team_size_label2">How many people are mapping? Enter the same number on everyone’s phone.</string>
<string name="team_mode_team_size_hint">Team mode works for groups of 2 to 12 people.</string>
<string name="team_mode_choose_color2">Next, each person must pick a different color. Choose yours:</string>
<string name="team_mode_active">Team mode is active</string>
<string name="team_mode_deactivated">Team mode deactivated</string>
<string name="user_quests_title">Solved Quests</string>
<string name="user_achievements_title">Achievements</string>
<string name="user_links_title">Link Collection</string>
<string name="user_profile_title">Profile</string>
<string name="user_statistics_quest_wiki_link">Documentation</string>
<string name="achievements_unlocked_link">Unlocked link:</string>
<string name="achievements_unlocked_links">Unlocked links:</string>
<string name="link_category_intro_title">Introduction</string>
<string name="link_category_intro_description">Learning more about OSM and its community</string>
<string name="link_category_editors_title">Contributing</string>
<string name="link_category_editors_description">Editors and other ways to contribute to OpenStreetMap</string>
<string name="link_category_maps_title">Maps</string>
<string name="link_category_maps_description">OpenStreetMap-based maps</string>
<string name="link_category_showcase_title">Showcase</string>
<string name="link_category_showcase_description">OpenStreetMap-based services and apps</string>
<string name="link_category_goodies_title">Goodies</string>
<string name="link_category_goodies_description">Interesting map-related stuff for you to try out</string>
<string name="link_cyclosm_description">A map for cyclists</string>
<string name="link_indoorequal_description">Discover indoor maps of malls, railway stations etc.</string>
<string name="link_wheelmap_description">A map for finding wheelchair accessible places</string>
<string name="link_osm_buildings_description">A map that shows the buildings in 3D</string>
<string name="link_openvegemap_description">Discover vegetarian and vegan restaurants in your city</string>
<string name="link_touch_mapper_description">Create tactile maps easily for any address</string>
<string name="link_mapy_tactile_description">Tactile maps for the visually impaired in various scales</string>
<string name="link_josm_description">Fully-featured OSM editor for the desktop. This is the power tool for regular contributors.</string>
<string name="link_vespucci_description">Advanced OSM editor for Android</string>
<string name="link_ideditor_description">Simple OSM editor for the browser. Optimized for the desktop or large tablets</string>
<string name="link_umap_description">Create maps with custom data quickly and embed them in your site</string>
<string name="link_opnvkarte_description">A map of public transport routes and stops</string>
<string name="link_pic4review_description">Contribute to OSM simply by looking at pictures of your city</string>
<string name="link_wiki_description">The wiki is your starting point to everything related to OpenStreetMap</string>
<string name="link_learnosm_description">New to OpenStreetMap? This is a beginner’s guide</string>
<string name="link_neis_one_description">A huge collection of statistics for OpenStreetMap contributors, like where and how you contributed, who else is around you plus leaderboards</string>
<string name="link_disaster_ninja_description">Map that shows recent natural disasters, interesting for humanitarian mappers. Also, shows many interesting statistics to analyze how well-mapped and up-to-date places are.</string>
<string name="link_welcome_mat_description">General information about OpenStreetMap and how to work with OSM as an organization</string>
<string name="link_mapillary_description">A service and app for sharing crowdsourced street-level photos, with explicit permission to use them for contributing to OSM</string>
<string name="link_openstreetcam_description">A service and app for sharing crowdsourced street-level photos, with explicit permission to use them for contributing to OSM</string>
<string name="link_openrouteservice_wheelchair_description">Turn by turn navigation for wheelchair users</string>
<string name="link_nominatim_description">The geocoder for OSM data, used by many other services</string>
<string name="link_photon_description">A standalone extension to Nominatim, featuring fuzzy search and search-as-you-type</string>
<string name="link_city_roads_description">Render all roads of a city, for printing on T-Shirts, mugs, …</string>
<string name="link_myosmatic_description">"Generate printable city maps in a few easy steps, optionally with a street directory"</string>
<string name="link_brouter_description">Probably the best routing engine for cyclists</string>
<string name="link_show_me_the_way_description">Watch OSM edits happen in real time</string>
<string name="link_osrm_description">The fastest routing engine around</string>
<string name="link_graphhopper_description">A flexible routing engine</string>
<string name="link_openrouteservice_description">Routing for a variety of vehicles and on foot, each with preferences. Can also show isochrones (reachable area in X minutes from a starting point).</string>
<string name="link_osm_haiku_description">Using OSM data to generate a haiku (a form of Japanese poetry)</string>
<string name="link_openinframap_description">A map showing power, telecoms, gas, and oil infrastructure</string>
<string name="link_openorienteeringmap_description">Create printable maps for the orienteering sport</string>
<string name="link_openstreetbrowser_description">A map to browse OpenStreetMap map features by category</string>
<string name="link_qwant_maps_description">A map with searchable places and directions</string>
<string name="link_organic_maps_description">Maps app for travelers, hikers and cyclists that works offline</string>
<string name="link_weeklyosm_description">The weekly news blog about what’s happening in the OpenStreetMap world</string>
<string name="link_figuregrounder_description">Create figure-ground diagram posters of a city or neighbourhood</string>
<string name="achievement_first_edit_title">First Quest Solved</string>
<string name="achievement_first_edit_description">Welcome to the OpenStreetMap community! In your profile screen, you can see more info for each quest type you solved.</string>
<string name="achievement_surveyor_title">Surveyor</string>
<string name="achievement_surveyor_solved_X">You solved %d quests! Keep going to unlock more achievements that contain links to OSM and other map-related apps and projects!</string>
<string name="achievement_regular_title">Regular</string>
<string name="achievement_regular_description">You contributed %d days to OSM with this app! Regular contributors are the backbone of OSM, thanks for your dedication! ❤</string>
<string name="achievement_bicyclist_title">Cyclist</string>
<string name="achievement_bicyclist_solved_X">You solved %d quests that help cyclists!</string>
<string name="achievement_wheelchair_title">Mobility</string>
<string name="achievement_wheelchair_solved_X">You solved %d quests that help wheelchair users get around town!</string>
<string name="achievement_postman_title">Postman</string>
<string name="achievement_postman_solved_X">You helped to locate %d addresses!\nThis data is essential not only for the postman but also for any navigation system.</string>
<string name="achievement_building_title">High-Rise</string>
<string name="achievement_building_solved_X">You solved %d building related quests.\nNote that this app asks for the housenumber of a building only after its type has been determined.</string>
<string name="achievement_blind_title">Sixth Sense</string>
<string name="achievement_blind_solved_X">You solved %d quests that are interesting for visually impaired.</string>
<string name="achievement_pedestrian_title">Runner</string>
<string name="achievement_pedestrian_solved_X">You solved %d quests that are interesting for people on foot!</string>
<string name="achievement_veg_title">Kind to Animals</string>
<string name="achievement_veg_solved_X">You solved %d quests that are interesting for people living on a no-meat diet!</string>
<string name="achievement_car_title">On the Road</string>
<string name="achievement_car_solved_X">You solved %d quests that improve detail on the street infrastructure, putting the “street” in OpenStreetMap!</string>
<string name="achievement_rare_title">Treasure Hunt</string>
<string name="achievement_rare_solved_X">You found and solved %d quests that are completed really rarely, congratulations!</string>
<string name="achievement_citizen_title">Citizen</string>
<string name="achievement_citizen_solved_X">You solved %d quests useful for everyday life in town!</string>
<string name="achievement_outdoors_title">Outdoors</string>
<string name="achievement_outdoors_solved_X">You solved %d quests useful for outdoor-people!</string>
<string name="user_statistics_country_rank">Rank in %2$s: %1$d</string>
<string name="user_statistics_country_wiki_link">Mapping Portal %s</string>
<string name="unread_messages_message">You have %d unread messages in your inbox</string>
<string name="unread_messages_button">Open Inbox</string>
<string name="user_statistics_filter_by_country">by country</string>
<string name="user_statistics_filter_by_quest_type">by quest type</string>
<string name="user_profile_global_rank">Global\nrank</string>
<string name="user_profile_local_rank">Rank in\n%s</string>
<string name="user_profile_days_active">Days\nactive</string>
<string name="user_profile_achievement_levels">Achievement\nlevels</string>
<string name="quest_sidewalk_separately_mapped">Yes, displayed separately on map</string>
<string name="quest_board_type_map">It is a map</string>
<string name="quest_board_type_map_title">Is it just a map and only a map?</string>
<string name="quest_board_type_map_description">If the board is about a particular topic, please specify it, regardless of whether it also includes a map. For example a public transport board may have a bus route map. If the topic is not listed among the available answers, please consider leaving a note instead.</string>
<string name="quest_surface_detailed_answer_impossible">Multiple surfaces…</string>
<string name="quest_surface_detailed_answer_impossible_confirmation">Are you sure that it is impossible to specify the surface? Note the “Differs along the way” answer option that allows you to cut the way where the surface changes. Please use “Can’t say” if there is a single surface but it is not available as an answer.</string>
<string name="quest_surface_detailed_answer_impossible_description">Please briefly specify the nature of the surface here, for example “sandy with patches of cobblestone”. The text length is limited to 255 characters.</string>
<string name="at_housename">house name %s:</string>
<string name="at_conscription_and_street_number">conscription number %1$s, orientation number %2$s:</string>
<string name="at_conscription_number">conscription number %s:</string>
<string name="at_housenumber">house number %s:</string>
<string name="quest_summit_register_title">Is there a summit register at %s?</string>
<string name="quest_is_defibrillator_inside_title">Is this defibrillator (AED) inside a building?</string>
<string name="quest_pedestrian_crossing_island">"Does this pedestrian crossing have an island?"</string>
<string name="quest_surface_detailed_answer_impossible_title">Describe surface</string>
<string name="open_url">Open URL</string>
<string name="quest_dietType_kosher_name_title">Does %s offer kosher products?</string>