forked from streetcomplete/StreetComplete
-
Notifications
You must be signed in to change notification settings - Fork 0
/
strings.xml
1772 lines (1462 loc) · 130 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"?>
<!-- This ( app/src/main/res/values/strings.xml ) is the source file for the app’s strings in en-US.
All other strings.xml are imported from POEditor crowd translation platform.
The strings are sorted into categories to
- avoid merge conflicts (people tend to append strings at the end of the file)
- better organize the strings to make it easier for translators (strings are presented in
POEditor in the same order as in this file)
-->
<resources xmlns:tools="http://schemas.android.com/tools">
<!-- Store description -->
<string name="store_listing_short_description" tools:ignore="UnusedResources">"OpenStreetMap surveyor app"</string>
<string name="store_listing_full_description" tools:ignore="UnusedResources">"Help improve OpenStreetMap with StreetComplete!
This app finds missing map data in your vicinity and displays it on a map as quests. Solve each quest by visiting the location on-site and answering a simple question to update the map.
The info you enter is directly added to OpenStreetMap in your name, without the need to use another editor."</string>
<!-- Main menu -->
<string name="action_about2">"About"</string>
<string name="action_settings">"Settings"</string>
<string name="action_overlays">"Overlays"</string>
<string name="user_profile">My Profile</string>
<string name="team_mode">Enter Team Mode</string>
<string name="action_download">"Download data here"</string>
<string name="cannot_find_bbox_or_reduce_tilt">"Can’t download 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 download and download here instead?"</string>
<string name="confirmation_cancel_prev_download_confirmed">"Download here instead"</string>
<string name="confirmation_cancel_prev_download_cancel">"Continue current download"</string>
<!-- Elements on map view -->
<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="map_btn_gps_tracking">"Follow me"</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 download data in your vicinity."</string>
<string name="map_attribution_osm">"© OpenStreetMap contributors"</string>
<string name="open_url">Open URL</string>
<string name="action_undo">Undo</string>
<string name="action_upload">"Upload answers"</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="map_btn_create_note">Create new note</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="create_new_note_hint">Ideally, write the note in the local language, or otherwise in English.</string>
<string name="map_btn_create_track">Create new track recording</string>
<string name="map_btn_stop_track">"Stop recording track"</string>
<!-- Android notifications -->
<string name="notification_channel_sync">"Sync Data"</string>
<string name="notification_syncing">"Syncing data…"</string>
<!-- Generic strings used in various quests -->
<string name="quest_generic_hasFeature_yes">"Yes"</string>
<string name="quest_generic_hasFeature_no">"No"</string>
<string name="quest_generic_hasFeature_optional">"Optionally"</string>
<!-- aka "exclusively". E.g. "Does this restaurant have vegan food?" - "It only has vegan food!"-->
<string name="quest_hasFeature_only">Only</string>
<string name="quest_generic_hasFeature_no_leave_note">"No (leave note)"</string>
<string name="quest_generic_hasFeature_yes_leave_note">"Yes (leave note)"</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_generic_answer_noSign">There is no sign</string>
<!-- e.g. "it is displayed as a footway on the map but actually these are steps" -->
<string name="quest_generic_answer_is_actually_steps">"These are steps"</string>
<string name="quest_generic_answer_is_indoors">"This is indoors"</string>
<!-- As in: "select ONE of the pictures below" -->
<string name="quest_roofShape_select_one">"Select one:"</string>
<!-- As in: "select any of the pictures below that fit" -->
<string name="quest_select_hint">"Select:"</string>
<!-- As in: "show more of those pictures to select an answer from -->
<string name="quest_roofShape_show_more">"Show more…"</string>
<!-- E.g "tactile paving at a crosswalk usually looks like this: <picture of tactile paving shown> -->
<string name="quest_generic_looks_like_this">Usually looks like this:</string>
<!-- E.g user answered that the surface of a road is "paved", but maybe he can say what kind of pavement it is? -->
<string name="quest_generic_item_confirmation">Are you sure that you can not determine it more specifically?</string>
<string name="quest_street_side_puzzle_tutorial">The road in the illustration is rotated the same as on the map at its center pin location. Try rotating the map and you’ll get it.</string>
<string name="quest_arrow_tutorial">The arrows in the illustration point towards the directions in which the way runs on the map at its center pin location. Try rotating the map and you’ll get it.</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_no_ar">You need a tape measure to solve this quest because measuring with the camera is not supported on this device.</string>
<string name="default_disabled_msg_difficult_and_time_consuming">This quest type is disabled by default because it is either time-consuming or difficult to make the right choice. Only enable this quest type if you are really committed to adding this kind of data.</string>
<string name="default_disabled_msg_overlay">This quest type is disabled by default because there is already an overlay with which it is more effective and efficient to enter and update this data.</string>
<string name="default_disabled_msg_seasonal">"This quest type is disabled by default because it may require re-checking the situation at different times of the year."</string>
<!-- Quest interface -->
<!-- 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="at_housename">house name %s</string>
<string name="at_housenumber">house number %s</string>
<!-- as in: “Where is the ATM?” - “It is inside” -->
<string name="inside">inside</string>
<!-- as in: “Where is the ATM?” - “It is outside” -->
<string name="outside">outside</string>
<!-- when the user left the answer form empty -->
<string name="no_changes">"You did not give an answer"</string>
<string name="info">"More information"</string>
<string name="confirmation_discard_title">"Discard input?"</string>
<string name="confirmation_discard_positive">"Discard"</string>
<string name="short_no_answer_on_button">No</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 for other mappers to resolve at this location, or hide this quest for yourself only"</string>
<string name="quest_leave_new_note_yes">"Leave note"</string>
<string name="quest_leave_new_note_no">"Hide"</string>
<string name="quest_leave_new_note_as_answer">In this case, you need to leave a note in which you explain the situation.</string>
<string name="quest_generic_otherAnswers">"Other answers…"</string>
<!-- The sound someone makes if he is not sure what to answer... uh… er… oh… äh…-->
<string name="quest_generic_otherAnswers2">"Uh…"</string>
<!-- aka "not applicable", "not answerable" -->
<string name="quest_generic_answer_notApplicable">"Can’t say…"</string>
<string name="quest_generic_answer_does_not_exist">It does not exist…</string>
<string name="osm_element_gone_description">"Are you sure that it does not exist, not even at a slightly different location? If you’re not sure, leave a note instead.</string>
<string name="osm_element_gone_confirmation">It does not exist</string>
<string name="leave_note">Leave note</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 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. Use the zoom function and try to be as precise as possible.</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="split_way">Split way</string>
<string name="move_node">It’s at a slightly different position…</string>
<string name="quest_move_node_message">You can correct the position by moving the feature.\nMove it now?</string>
<string name="node_moved_not_far_enough">Please move it further</string>
<string name="node_moved_too_far">Moved too far. Consider leaving a note</string>
<string name="node_moved">Moved by %s</string>
<string name="move_node_description">Drag the map to place the feature at the correct position. Use the zoom function and try to be as precise as possible. Please be aware that your displayed location may be less exact than displayed.</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 verified in-person should be entered.</string>
<string name="dialog_session_dont_show_again">Don’t show again for this session</string>
<!-- Tutorial screen -->
<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="next">Next</string>
<string name="letsgo">Let’s go!</string>
<!-- Overlay tutorial screen -->
<string name="overlays_tutorial_title">Overlays</string>
<string name="overlays_tutorial_intro">"You found a new way to edit data!"</string>
<string name="overlays_tutorial_display">"Each overlay displays one kind of data, for example “places“ or “street surfaces“.
The data is highlighted in different colors to give you a good overview of what has been recorded so far.
Missing data is always shown in red."</string>
<string name="overlays_tutorial_edit">"Tap on any highlighted data to display or edit it. You can also split ways or report notes, like with quests.
Additionally, some overlays allow you to add new data at the position of a displayed crosshair, such as the addresses overlay."</string>
<!-- Add note interface-->
<string name="quest_leave_new_note_photos_are_useful">Adding a photo will make the note much more useful.</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_create_image_error">Unable to create file for photo</string>
<string name="no_camera_app">No camera app available</string>
<string name="no_camera_permission_warning_title">Camera permission</string>
<string name="no_camera_permission_warning">The permission is required to measure distances with the camera.</string>
<string name="no_camera_permission_toast">No camera permission</string>
<!-- Edit history sidebar -->
<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="create_node_action_description">You created a node with …</string>
<string name="move_node_action_description">You moved the node</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="undo_confirm_title2">Undo the following edit?</string>
<string name="undo_confirm_positive">Undo</string>
<string name="undo_confirm_negative">Cancel</string>
<string name="toast_undo_unavailable">This edit is already synced and cannot be undone</string>
<!-- AR Measure screen -->
<string name="ar_measure">Measure</string>
<string name="ar_core_error_sdk_too_old">This app is too old, try updating.</string>
<string name="ar_core_tracking_error_bad_state">Something went wrong. Try restarting the measuring.</string>
<string name="ar_core_tracking_error_insufficient_light">Too dark here</string>
<string name="ar_core_tracking_error_excessive_motion">Too much movement</string>
<string name="ar_core_tracking_error_insufficient_features">Insufficient visual features here</string>
<string name="ar_core_tracking_error_camera_unavailable">Camera is used by another app</string>
<string name="ar_core_tracking_error_too_steep_angle">Too steep of an angle, step away a bit</string>
<string name="ar_core_tracking_error_no_plane_hit">Keep closer to the arrow but watch out for traffic!</string>
<string name="ar_core_tracking_hint_tap_to_measure">Tap screen to start measuring</string>
<string name="measure_info_title">"Achieving optimal precision"</string>
<string name="measure_info_html_description">"<p>ARCore sometimes (initially) presumes the ground to be a bit lower or higher than it actually is. This introduces a measurement error that gets larger the more you tilt your phone towards the horizon.</p>
<p>Set each the start- and endpoint while pointing the phone straight down (so that you see the white arrow from above) to completely avoid this issue for horizontal measurements.</p>
<p>For vertical measurements, you need to instead check that the startpoint does not seem to move in relation to the ground by looking at it from different directions.</p>"</string>
<string name="quest_disable_action">Disable</string>
<string name="quest_disable_title">Disable this quest type?</string>
<string name="quest_disable_message_not_installed">"StreetMeasure is not installed (yet)."</string>
<string name="quest_disable_message_not_working">"StreetMeasure didn’t return a measurement.</string>
<string name="quest_disable_message_tape_measure">You could use a tape measure instead, but that might be a little awkward, after all.</string>
<!-- Notifications -->
<string name="unread_messages_message">You have %d unread messages in your inbox</string>
<string name="unread_messages_button">Open Inbox</string>
<string name="quest_selection_hint_title">Too much to do?</string>
<string name="quest_selection_hint_message">"Contributing should primarily be fun!
If you are overwhelmed by the number of quests, you can always fine-tune which quests are displayed to you and in what order in the settings.</string>
<!-- Team mode -->
<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.
Each of you will then see different quests."</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>
<!-- Error messages and crash report -->
<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="confirmation_authorize_now_note2">You can also do this later on the profile screen.</string>
<string name="later">"Later"</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 download data around you automatically, turn on location"</string>
<string name="download_server_error">"Connection error while downloading data. Try again later."</string>
<string name="upload_server_error">"Connection error while uploading answers. Try again later."</string>
<string name="download_error">"Error while downloading data"</string>
<string name="upload_error">"Error while uploading answers"</string>
<string name="crash_title">"Oh no, StreetComplete crashed last time!"</string>
<string name="crash_message">"Send an error report to the developer?"</string>
<string name="crash_compose_email">"Compose email"</string>
<string name="no_email_client">"You have no email client installed."</string>
<!-- About screen -->
<string name="about_category_feedback">Feedback</string>
<string name="about_title_get_involved">Get Involved</string>
<string name="about_title_changelog">Version history</string>
<string name="about_summary_current_version">"Current version: %s"</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_summary_donate">Show your appreciation! ❤️</string>
<string name="about_title_sponsors">Sponsors</string>
<string name="about_description_donate">Thank you for considering supporting this app! To see current donations and to donate yourself, tap on the respective platform:</string>
<string name="about_description_donate_google_play3">"Thank you for considering supporting this app!
You can find donation information on our website or project home, Google Play does not allow us to provide the link within the app."</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_privacy_statement">"Privacy statement"</string>
<string name="about_summary_privacy_statement">"and data usage"</string>
<string name="about_title_authors">"Credits"</string>
<string name="about_summary_authors">"© %s Tobias Zwick and contributors"</string>
<string name="about_title_repository">"Project Home"</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>
<!-- Credits screen -->
<string name="credits_author_title">Author and maintainer</string>
<string name="credits_main_contributors_title">Main contributors</string>
<string name="credits_contributors_title">Code contributors</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_art_contributors_title">Art contributors</string>
<string name="credits_projects_contributors_title">Projects made for StreetComplete</string>
<!-- Privacy screen -->
<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 OpenStreetMap (OSM).<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 download data around you, and position the map at your location.
</p>
<p><b>Data Usage</b></p>
<p>
This app directly communicates with OSM servers.<br/>
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 to ensure that this version of the app has not been banned from uploading changes. This is a precautionary measure to be able to block versions of the app that turn out to have critical bugs from uploading corrupted data to OSM.</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="privacy_html_arcore">This application runs on <a href="https://play.google.com/store/apps/details?id=com.google.ar.core">Google Play Services for AR</a> (ARCore), which is provided by Google and governed by the <a href="https://policies.google.com/privacy">Google Privacy Policy</a>.</string>
<!-- User screen -->
<string name="user_quests_title">Edits</string>
<string name="user_achievements_title">Achievements</string>
<string name="user_links_title">Link Collection</string>
<string name="user_profile_title">Profile</string>
<!-- Profile screen -->
<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="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="user_profile_current_week_title">Last 7 days</string>
<string name="user_profile_dates_mapped">Days you’ve mapped recently</string>
<string name="user_login">Login</string>
<string name="user_logout">Logout</string>
<string name="osm_profile">OSM Profile</string>
<string name="oauth_communication_error">"Unable to reach the authorization server"</string>
<string name="oauth_failed_permissions">"Authorization failed: All listed permissions need to be granted"</string>
<!-- User statistics screen -->
<string name="stats_are_syncing">Your statistics are still syncing. Check this screen later.</string>
<string name="quests_empty">You published no edits yet</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="user_statistics_quest_wiki_link">Documentation</string>
<string name="user_statistics_filter_by_country">by country</string>
<string name="user_statistics_filter_by_quest_type">by type</string>
<!-- Links screen -->
<string name="links_empty">You have no links yet</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 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_every_door_description">Powerful POI editor for Android and iOS</string>
<string name="link_mapcomplete_description">Collection of thematic OSM maps that each show and let you edit one kind of feature</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_forum_description">Need help? Want to read what’s going on? Come and mingle, it’s bustling with activity from communities all over the globe!</string>
<string name="link_calendar_description">Are OpenStreetMap events or community meetings near you? (If not, you could add your own!)</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_ohsomehex_description">Explore OSM data across scales from the "big picture" up to individual objects over space and time</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_valhalla_description">Routing engine with a very small memory footprint, multi-modal routing, isochrones and more.</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_opencampingmap_description">A map of campsites</string>
<string name="link_prettymapp_description">Create pretty multi-colored map posters of neighbourhoods</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_osmand_description">Mobile app for online and offline map viewing and navigation</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="link_sunders_description">A map of cameras and surveillance equipment</string>
<string name="link_osmhydrant_description">"Lookup, add and edit fire stations and fire hydrants"</string>
<string name="link_backofyourhand_description">How well do you know your area? Test your knowledge by locating streets.</string>
<string name="link_notesreview_description">Conveniently see, filter and comment on notes created by you and others. Many notes can be solved by putting the information contained in them on the map with iD or JOSM</string>
<!-- Achievement screen -->
<string name="achievements_unlocked_link">Unlocked link:</string>
<string name="achievements_unlocked_links">Unlocked links:</string>
<string name="achievements_empty">You have no achievements yet</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 about each type of quest you’ve 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 mail carrier 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 house number 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 rarely completed, congratulations!</string>
<string name="achievement_citizen_title">Citizen</string>
<string name="achievement_citizen_solved_X">You solved %d quests that are useful for everyday life in town!</string>
<string name="achievement_outdoors_title">Outdoors</string>
<string name="achievement_outdoors_solved_X">You solved %d quests that are useful for outdoor enthusiasts!</string>
<string name="achievement_lifesaver_title">Lifesaver</string>
<string name="achievement_lifesaver_solved_X">You solved %d quests that help emergency services and first responders!</string>
<!-- Settings screen -->
<string name="pref_category_communication">"Communication"</string>
<string name="pref_category_advanced">Advanced</string>
<string name="pref_category_display">"Display"</string>
<string name="pref_category_quests_overlays">Quests & Overlays</string>
<string name="pref_background_type_select">Select background type</string>
<string name="background_type_map">Map</string>
<string name="background_type_aerial_esri">Aerial (by Esri)</string>
<string name="pref_title_keep_screen_on">"Keep screen on"</string>
<string name="pref_title_sync2">"Upload answers automatically"</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="dialog_tutorial_upload">To upload your changes manually, use the button in the toolbar that looks like this.</string>
<string name="pref_title_map_cache">"Map cache size"</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_language_select">Select language</string>
<string name="language_default">System default</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="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_quests_restore_hidden">Restore hidden quests</string>
<string name="pref_title_quests_restore_hidden_summary">Number of hidden quests: %d</string>
<string name="restore_confirmation">Restore</string>
<string name="restore_dialog_message">Restore all quests you’ve hidden?</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="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="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_delete_cache">Delete cache</string>
<string name="pref_title_delete_cache_summary">If you think some data is outdated</string>
<!-- Quest selection screen -->
<string name="action_search">Search</string>
<string name="no_search_results">Nothing found</string>
<string name="action_deselect_all">Deselect all</string>
<string name="pref_quests_deselect_all">Deselect all quests?</string>
<string name="action_manage_presets">Manage presets</string>
<string name="action_reset">Reset</string>
<string name="pref_quests_reset">Reset both quest enablement and order to the default?</string>
<string name="quest_enabled">Enabled</string>
<string name="quest_type">Quest type</string>
<string name="questList_disabled_in_country">Never shown in %s</string>
<string name="enable_quest_confirmation_title">Enable this quest type?</string>
<!-- Managing quest presets screen -->
<string name="quest_presets_preset_add">Add preset</string>
<string name="quest_presets_preset_name">Preset name</string>
<string name="quest_presets_default_name">Default</string>
<string name="quest_presets_selected">Selected</string>
<string name="quest_presets_delete_message">"Delete preset “%s”? The quest selection and order for it will be irrevocably lost."</string>
<string name="quest_presets_rename">Rename</string>
<string name="quest_presets_duplicate">Duplicate</string>
<string name="quest_presets_share">Share</string>
<string name="quest_presets_delete">Delete</string>
<!-- Config via URL/QRCode -->
<string name="urlconfig_qr_code_description">Let others scan this QR code to share your preset.</string>
<string name="urlconfig_as_url">Or as URL:</string>
<string name="urlconfig_url_copied">URL copied to clipboard</string>
<string name="urlconfig_apply_title">Apply Preset</string>
<string name="urlconfig_apply_message">Apply and select preset %1$s?</string>
<string name="urlconfig_apply_message_overwrite">Note: Your preset with the same name will be overwritten!</string>
<string name="urlconfig_switch_hint">You can switch presets in the settings at any time.</string>
<string name="urlconfig_scan_qr_code_again2">"After installing the app, scan the QR code again or click <a href=\"%s\">this link</a> to apply the preset."</string>
<!-- Quests -->
<!-- sorted alphabetically by title -->
<string name="quest_accepts_cards">Are credit or debit cards accepted here?</string>
<string name="quest_accepts_cards_debit_and_credit">Both debit and credit cards</string>
<string name="quest_accepts_cards_credit_only">Only credit cards</string>
<string name="quest_accepts_cards_dedit_only">Only debit cards</string>
<string name="quest_accepts_cards_unavailable">Neither debit nor credit cards</string>
<string name="quest_accepts_cash_title2">"Is cash payment accepted here?"</string>
<string name="quest_accessPointRef_answer_assembly_point">It’s an Assembly Point</string>
<string name="quest_accessPointRef_detailed_answer_impossible_confirmation">An Assembly Point is where people assemble in case of an emergency. It usually looks similar to this:</string>
<string name="quest_accessible_for_pedestrians_title_prohibited">Are pedestrians forbidden to walk on this road without sidewalk here?</string>
<string name="quest_accessible_for_pedestrians_prohibited">It is forbidden.</string>
<string name="quest_accessible_for_pedestrians_allowed">It is allowed.</string>
<string name="quest_accessible_for_pedestrians_separate_sidewalk">Actually, there is a sidewalk, but it is displayed separately on the map.</string>
<string name="quest_address_title">"What’s the house number of this building?"</string>
<string name="quest_address_house_number_label">House number:</string>
<string name="quest_address_house_name_label">House name:</string>
<!-- In Japan, addresses are chiefly house number + block number (because most streets don’t have a name) -->
<string name="label_housenumber">house number</string>
<!-- In Japan, addresses are chiefly house number + block number (because most streets don’t have a name) -->
<string name="label_blocknumber">block number</string>
<!-- In some countries, addresses may have a house number and a block (number or letters) -->
<string name="label_block">block</string>
<!-- a unique house number within one place, only (still) used in Czechia, Slovakia https://de.wikipedia.org/wiki/Konskriptionsnummer -->
<string name="quest_housenumber_conscription_number">Conscription number</string>
<!-- an (optional) number that is unique within one street like a normal housenumber but used sometimes in addition to conscription numbers in Czechia, Slovakia -->
<string name="quest_housenumber_street_number_optional">Orientation number (optional)</string>
<string name="quest_address_answer_house_name2">Address has a house name…</string>
<string name="quest_housenumber_multiple_numbers">It has multiple house numbers</string>
<string name="quest_housenumber_multiple_numbers_description" tools:ignore="TypographyDashes">"You can enter comma-separated house numbers or ranges.\nFor example 1,3 or 2-6."</string>
<string name="quest_address_answer_no_housenumber">It has no house number…</string>
<string name="quest_address_answer_no_address">No address here</string>
<string name="quest_address_answer_block">It’s within a block…</string>
<string name="quest_address_answer_no_block">It isn’t within a block…</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_address_unusualHousenumber_confirmation_description">"This house number looks very unusual."</string>
<string name="quest_address_street_title2">What street is this on?</string>
<string name="quest_address_street_no_named_streets">It does not belong to a named street…</string>
<string name="quest_address_street_place_name_label">Place name:</string>
<string name="quest_address_street_street_name_label">Street name:</string>
<string name="quest_address_street_hint2">Tap street on map to select it</string>
<string name="quest_airConditioning_title">"Is this place air-conditioned?"</string>
<string name="quest_atm_cashin_title">"Can you deposit cash at this ATM?"</string>
<string name="quest_atm_operator_title">"Which bank operates this ATM?"</string>
<string name="quest_baby_changing_table_title2">"Does this place have a baby changing table?"</string>
<string name="quest_barrier_type_title">What type of barrier is this?</string>
<string name="quest_stile_type_title">What type of stile is this?</string>
<string name="quest_barrier_path_intersection">How does this path cross the barrier here?</string>
<string name="quest_barrier_road_intersection">How does this road cross the barrier here?</string>
<string name="quest_barrier_type_gate_any_size">"Gate, any size"</string>
<string name="quest_barrier_type_lift_gate">Boom barrier</string>
<string name="quest_barrier_type_bollard">Bollard(s)</string>
<string name="quest_barrier_type_chain">Chain</string>
<string name="quest_barrier_type_rope">Rope</string>
<string name="quest_barrier_type_wire_gate">Removable wire section</string>
<string name="quest_barrier_type_cattle_grid">Grid blocking livestock from walking over</string>
<string name="quest_barrier_type_block">Big immobile object</string>
<string name="quest_barrier_jersey_barrier">Jersey barrier</string>
<string name="quest_barrier_type_log">Log</string>
<string name="quest_barrier_type_kerb">Curb</string>
<string name="quest_barrier_type_height_restrictor">Height barrier</string>
<string name="quest_barrier_full_height_turnstile">Full-height turnstile</string>
<string name="quest_barrier_type_turnstile">Turnstile</string>
<string name="quest_barrier_type_passage">Passage through a wall/fence/etc.</string>
<string name="quest_barrier_type_debris_pile">Pile of debris</string>
<string name="quest_barrier_type_stile_squeezer">Squeeze stile</string>
<string name="quest_barrier_type_stile_ladder">Ladder stile</string>
<string name="quest_barrier_type_bicycle_barrier">Bicycle barrier</string>
<string name="quest_barrier_type_kissing_gate">Kissing gate</string>
<string name="quest_barrier_type_stepover_wooden">Wooden step-over stile</string>
<string name="quest_barrier_type_stepover_stone">Stone step-over stile</string>
<string name="quest_barrier_type_swing_gate">Horizontal bar</string>
<string name="quest_barrier_type_kissing_gate_conversion">Converted into a kissing gate</string>
<string name="quest_barrier_type_passage_conversion">Converted into a passage in a wall/fence/etc.</string>
<string name="quest_barrier_type_gate_conversion">Converted into a gate</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_bicycle_barrier_type_title">What type of bicycle barrier is this?</string>
<string name="quest_barrier_bicycle_type_diagonal">Diagonal to the path</string>
<string name="quest_barrier_bicycle_type_tilted">Narrow passage, smaller toward top</string>
<string name="quest_barrier_bicycle_type_single">Passage between barriers</string>
<string name="quest_barrier_bicycle_type_double">Chicane - barrier on each side</string>
<string name="quest_barrier_bicycle_type_multiple">Chicane - more than two barriers</string>
<string name="quest_barrier_bicycle_type_not_cycle_barrier">Not a cycle barrier, but some other barrier</string>
<string name="quest_bicycle_barrier_installation_title">Can this cycle barrier be opened (with or without a key)?</string>
<string name="quest_barrier_bicycle_installation_fixed">Fixed</string>
<string name="quest_barrier_bicycle_installation_openable">Openable</string>
<string name="quest_barrier_bicycle_installation_removable">Removable</string>
<string name="quest_bicycle_incline_title">Which direction leads upwards here?</string>
<string name="quest_bicycle_incline_up_and_down">It’s up and down hops</string>
<string name="quest_bicycle_parking_access_title2">Who is allowed to park a bicycle here? Parking may be free or paid.</string>
<string name="quest_bicycleParkingCoveredStatus_title">"Is this bicycle parking covered (protected from rain)?"</string>
<string name="quest_bicycle_parking_fee_title">Do you have to pay to park a bicycle here?</string>
<string name="quest_bicycle_parking_type_title">What type of bicycle parking is this?</string>
<string name="quest_bicycle_parking_type_stand">Stand (supports bicycle 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_handlebarholder">Handlebar holder</string>
<string name="quest_bicycle_parking_type_two_tier">Two-tier bike rack</string>
<string name="quest_bicycle_rental_capacity_title">How many rental bicycle spaces are here?</string>
<string name="quest_bicycle_rental_type_title">What type of bicycle rental is this?</string>
<string name="quest_bicycle_rental_type_docking_station">Docking station which locks bicycles</string>
<string name="quest_bicycle_rental_type_dropoff_point">Designated spot (bicycles locked individually)</string>
<string name="quest_bicycle_rental_type_human">Staffed bicycle rental</string>
<string name="quest_bicycle_rental_type_shop_with_rental">Bicycle store that also rents bicycles</string>
<string name="quest_bicycle_shop_repair_title">Are bicycle repair services offered here?</string>
<string name="quest_bicycle_shop_second_hand_title">Are second-hand bicycles sold here?</string>
<string name="quest_bicycle_shop_second_hand_only_new">No, only new ones</string>
<string name="quest_bicycle_shop_second_hand_new_and_used">Yes, alongside new ones</string>
<string name="quest_bicycle_shop_second_hand_only_used">Yes, exclusively</string>
<string name="quest_bicycle_shop_second_hand_no_bicycles">No bicycles sold at all</string>
<string name="quest_bikeParkingCapacity_title">"How many bicycles can be parked here?"</string>
<string name="quest_bikeParkingCapacity_hint">"Note that you can usually park one bicycle on each side of a stand."</string>
<string name="quest_air_pump_bicycle_shop_title">Is there a public bicycle pump here (at least when it’s open)?</string>
<string name="quest_air_pump_bicycle_repair_station_title">Is there a working bicycle pump here?</string>
<string name="quest_air_pump_compressor_title">Is there an air compressor available here?</string>
<string name="quest_board_type_title">What’s the topic of this information board?</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_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_bollard_type_title">What type of bollard is this?</string>
<string name="quest_bollard_type_rising">Rising</string>
<string name="quest_bollard_type_removable">Removable (with or without key)</string>
<string name="quest_bollard_type_foldable2">Foldable (with or without key)</string>
<string name="quest_bollard_type_flexible">Flexible</string>
<string name="quest_bollard_type_fixed">Fixed (not removable)</string>
<string name="quest_bollard_type_not_bollard">Not a bollard, but some other barrier</string>
<string name="quest_bridge_structure_title">What’s the structure of this bridge?</string>
<string name="quest_building_entrance_title">What kind of building entrance is this?</string>
<string name="quest_building_entrance_main">Main entrance of a public building</string>
<string name="quest_building_entrance_staircase">Stairwell entrance (e.g. to an apartment building)</string>
<string name="quest_building_entrance_service">Service entrance</string>
<string name="quest_building_entrance_exit">Exit only</string>
<string name="quest_building_entrance_emergency_exit">Emergency exit only</string>
<string name="quest_building_entrance_shop">Storefront entrance</string>
<string name="quest_building_entrance_yes">Other entrance type</string>
<string name="quest_building_entrance_dead_end">Dead end, no entrance</string>
<string name="quest_building_underground_title">Is this building completely underground?</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_buildingLevels_roofLevelsLabel2">levels in the roof</string>
<string name="quest_buildingLevels_levelsLabel2">regular levels (not counting the roof)</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_buildingLevels_hint">"For buildings on a slope, the level count starts from the ground level of the lowest side.
A level counts as a roof level when its windows are in the roof. Subsequently, roofs with zero roof levels are not necessarily flat, just not tall enough for an entire level.
"</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, e.g. a single row house</string>
<string name="quest_buildingType_apartments">Apartment building</string>
<string name="quest_buildingType_apartments_description">house for multiple families, may have retail outlets on the ground floor</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 building</string>
<string name="quest_buildingType_houseboat">Houseboat</string>
<string name="quest_buildingType_bungalow">Bungalow building</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 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">Retail building</string>
<string name="quest_buildingType_retail_description">including buildings for restaurants, cafés, stores…</string>
<string name="quest_buildingType_warehouse">Warehouse building</string>
<string name="quest_buildingType_kiosk">Kiosk building</string>
<string name="quest_buildingType_storage_tank">Storage tank</string>
<string name="quest_buildingType_religious">Religious building</string>
<string name="quest_buildingType_church">Church building</string>
<string name="quest_buildingType_chapel">Chapel building</string>
<string name="quest_buildingType_cathedral">Cathedral</string>
<string name="quest_buildingType_mosque">Mosque building</string>
<string name="quest_buildingType_temple">Temple building</string>
<string name="quest_buildingType_pagoda">Pagoda building</string>
<string name="quest_buildingType_synagogue">Synagogue building</string>
<string name="quest_buildingType_shrine">Shrine building</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_outbuilding">Outbuilding</string>
<string name="quest_buildingType_outbuilding_description">less important building on a property</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_other_description">a specific building that is not selectable in this app</string>
<string name="quest_buildingType_shed">Shed</string>
<string name="quest_buildingType_boathouse">Boathouse</string>
<string name="quest_buildingType_container">Container</string>
<string name="quest_buildingType_tent">Tent</string>
<string name="quest_buildingType_tomb">Tomb</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_tower">Tower</string>
<string name="quest_buildingType_tower_description">any kind of tower</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 building</string>
<string name="quest_buildingType_guardhouse">Guardhouse</string>
<string name="quest_buildingType_under_construction">Under construction</string>
<!-- "stop" as in "bus stop". But could be a tram stop, railway stop etc. too -->
<string name="quest_busStopBench_title2">"Is there a bench at this stop?"</string>
<!-- "stop" as in "bus stop". But could be a tram stop, railway stop etc. too -->
<string name="quest_busStopBin_title2">"Is there a waste basket at this stop?"</string>
<!-- "stop" as in "bus stop". But could be a tram stop, railway stop etc. too -->
<string name="quest_busStopLit_title2">"Is this stop lit?"</string>
<!-- "stop" as in "bus stop". But could be a tram stop, railway stop etc. too -->
<string name="quest_busStopName_title2">"What’s the name of this stop?"</string>
<!-- "stop" as in "bus stop". But could be a tram stop, railway stop etc. too -->
<string name="quest_busStopRef_title2">"What number or code identifies this stop?"</string>
<!-- "stop" as in "bus stop". But could be a tram stop, railway stop etc. too -->
<string name="quest_busStopShelter_title2">"Is there a shelter at this stop?"</string>
<!-- "stop" as in "bus stop". But could be a tram stop, railway stop etc. too -->
<string name="quest_busStopShelter_covered">Whole stop is covered</string>
<!-- "stop" as in "bus stop". But could be a tram stop, railway stop etc. too -->
<string name="quest_busStopTactilePaving_title">"Does this stop have tactile paving?"</string>
<string name="quest_camera_type_title">What type of surveillance camera is this?</string>
<string name="quest_camera_type_dome">Dome</string>
<string name="quest_camera_type_fixed">Fixed</string>
<string name="quest_camera_type_panning">Panning</string>
<string name="quest_camp_drinking_water_title">Is drinking water freely available to campers here?</string>
<string name="quest_camp_shower_title">Are there showers here?</string>
<string name="quest_camp_power_supply_title">Is there any way for customers to charge their phone, laptop etc. here?</string>
<string name="quest_camp_type_title">Who may camp here?</string>
<string name="quest_camp_type_tents_and_caravans">Both tents and motor homes, travel trailers, …</string>
<string name="quest_camp_type_caravans_only">Only motor homes, travel trailers, …</string>
<string name="quest_camp_type_tents_only">Only tents</string>
<string name="quest_camp_type_backcountry">Backcountry camping (no facilities)</string>
<string name="quest_sanitary_dump_station_title">Is there a sanitary dump station?</string>
<string name="quest_sanitary_dump_station_description">A sanitary dump station is a facility for depositing human waste from a toilet holding tank of a motorhome, long haul truck, etc. Usually indicated by a sign like this:</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_charging_station_capacity_title">"How many cars can be charged here at the same time?"</string>
<string name="quest_charging_station_operator_title">"Who is the operator of this charging station?"</string>
<string name="quest_clothes_container_operator_title">"Who accepts donations for this clothing bin?"</string>
<string name="quest_construction_building_title">Is this building completed?</string>
<string name="quest_construction_completed_at_known_date">Will be finished at date…</string>
<string name="quest_construction_completion_date_title">When will it be complete?</string>
<string name="quest_construction_road_title">Is this road completed?</string>
<string name="quest_construction_cycleway_title">Is this bike path completed?</string>
<string name="quest_construction_footway_title">Is this foot path completed?</string>
<string name="quest_construction_steps_title">Are these steps completed?</string>
<string name="quest_construction_generic_title">Is this path completed?</string>
<string name="quest_crossing_kerb_height_title">What’s the height of the curbs at this crossing?</string>
<string name="quest_crossing_title2">Is there a crossing here?</string>
<string name="quest_crossing_yes">Yes (e.g. the curb is lowered here or there are markings)</string>
<string name="quest_crossing_no">No, but crossing is possible</string>
<string name="quest_crossing_prohibited">No, crossing is prohibited or impossible</string>
<string name="quest_cycleway_title2">"Is there a bicycle lane or path here? What type?"</string>
<string name="quest_cycleway_resurvey_title">"Is this still the cycling situation here?"</string>
<string name="quest_cycleway_value_track">sidepath or protected bicycle lane</string>
<string name="quest_cycleway_value_lane">bicycle lane</string>
<string name="quest_cycleway_value_none">none</string>
<string name="quest_cycleway_value_shared">lane shared explicitly with other traffic</string>
<!-- A kind of second-grade cycle lane. It has a lower minimum width and other traffic may drive or even legally stop on it and thus conceptually akin to "sharrows". It is often used in places where there is not enough space for both full car lanes and full cycle lanes. Hence it is usually not mandatory for cyclists. The concept of such a cycle lanes only exists in some countries. It is called differently in different countries, some examples: "advisory cycle lane" (GB), "suggestion cycle lane" (NL,BE), "protective lane" (DE,CZ), "multiple-purpose strip" (AT), see https://github.com/streetcomplete/countrymetadata/blob/master/data/hasAdvisoryCycleLane.yml if you think something is missing -->
<string name="quest_cycleway_value_advisory_lane">advisory bicycle lane</string>
<string name="quest_cycleway_value_bus_lane">on bus lane</string>
<string name="quest_cycleway_value_separate">displayed separately on the map</string>
<string name="quest_cycleway_value_sidewalk2">shared-use path</string>
<string name="quest_cycleway_value_sidewalk_dual2">shared-use path, both directions</string>
<string name="quest_cycleway_value_lane_dual">bicycle lane, both directions</string>
<string name="quest_cycleway_value_track_dual">sidepath or protected bicycle lane, both directions</string>
<string name="quest_cycleway_value_none_but_no_oneway">none, but cyclists may use road in both directions</string>
<string name="quest_cycleway_value_none_and_oneway">none, no cycling allowed in this direction</string>
<string name="quest_cycleway_value_shoulder">none, but shoulder is usable for cyclists</string>
<string name="quest_cycleway_answer_contraflow_cycleway">Also bicycle path on the other side…</string>