forked from openstreetmap/iD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
core.yaml
2091 lines (2091 loc) · 111 KB
/
core.yaml
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
en:
icons:
download: download
information: info
remove: remove
undo: undo
zoom_to: zoom to
copy: copy
view_on: view on {domain}
favorite: favorite
list: list
text: text
deselect: deselect
toolbar:
inspect: Inspect
undo_redo: Undo / Redo
recent: Recent
favorites: Favorites
add_feature: Add Feature
title:
format:
context: "{base} – {context}"
changes: "({changes}) {base}"
changes_context: "({changes}) {base} – {context}"
labeled_and_more: "{labeled} and {count} more"
modes:
add_feature:
title: Add a feature
description: "Search for features to add to the map."
key: Tab
result: "{count} result"
results: "{count} results"
add_area:
title: Area
description: "Add parks, buildings, lakes or other areas to the map."
tail: "Click on the map to start drawing an area, like a park, lake, or building."
filter_tooltip: areas
add_line:
title: Line
description: "Add highways, streets, pedestrian paths, canals or other lines to the map."
tail: "Click on the map to start drawing a road, path, or route."
filter_tooltip: lines
add_point:
title: Point
description: "Add restaurants, monuments, postal boxes or other points to the map."
tail: Click on the map to add a point.
filter_tooltip: points
add_note:
title: Note
label: Add Note
description: "Spotted an issue? Let other mappers know."
tail: Click on the map to add a note.
key: N
add_preset:
title: "Add {feature}"
browse:
title: Browse
description: Pan and zoom the map.
draw_area:
tail: Click to add nodes to your area. Click the first node to finish the area.
draw_line:
tail: "Click to add more nodes to the line. Click on other lines to connect to them, and double-click to end the line."
drag_node:
connected_to_hidden: This can't be edited because it is connected to a hidden feature.
operations:
add:
annotation:
point: Added a point.
vertex: Added a node to a way.
relation: Added a relation.
note: Added a note.
start:
annotation:
line: Started a line.
area: Started an area.
continue:
key: A
title: Continue
description: Continue this line.
not_eligible: No line can be continued here.
multiple: Several lines can be continued here. To choose a line, press the Shift key and click on it to select it.
annotation:
line: Continued a line.
area: Continued an area.
cancel_draw:
annotation: Canceled drawing.
change_role:
annotation: Changed the role of a relation member.
change_tags:
annotation: Changed tags.
circularize:
title: Circularize
description:
single: Make this feature circular.
multiple: Make these features circular.
key: O
annotation:
single: Made a feature circular.
multiple: Made features circular.
multiple_blockers:
multiple: These can't be made circular for multiple reasons.
not_closed:
single: This can't be made circular because it's not a loop.
multiple: These can't be made circular because they aren't loops.
too_large:
single: This can't be made circular because not enough of it is currently visible.
multiple: These can't be made circular because not enough of them are currently visible.
connected_to_hidden:
single: This can't be made circular because it is connected to a hidden feature.
multiple: These can't be made circular because some are connected to hidden features.
not_downloaded:
single: This can't be made circular because parts of it have not yet been downloaded.
multiple: These can't be made circular because parts of them have not yet been downloaded.
already_circular:
single: This can't be made more circular than it already is.
multiple: These can't be made more circular than they already are.
orthogonalize:
title: Square
description:
corner:
single: Square this corner.
multiple: Square these corners.
feature:
single: Square the corners of this feature.
multiple: Square the corners of these features.
key: Q
annotation:
corner:
single: Squared a corner.
multiple: Squared several corners.
feature:
single: Squared the corners of a feature.
multiple: Squared the corners of several features.
multiple_blockers:
multiple: These can't be squared for multiple reasons.
end_vertex:
single: This can't be squared because it is an endpoint.
multiple: These can't be squared because they are endpoints.
square_enough:
single: This can't be made more square than it already is.
multiple: These can't be made more square than they already are.
not_squarish:
single: This can't be made square because it is not squarish.
multiple: These can't be made square because they are not squarish.
too_large:
single: This can't be made square because not enough of it is currently visible.
multiple: These can't be made square because not enough of them are currently visible.
connected_to_hidden:
single: This can't be made square because it is connected to a hidden feature.
multiple: These can't be made square because some are connected to hidden features.
not_downloaded:
single: This can't be made square because parts of it have not yet been downloaded.
multiple: These can't be made square because parts of them have not yet been downloaded.
straighten:
title: Straighten
description:
points: Straighten these points.
line: Straighten this line.
key: S
annotation:
points: Straightened several points.
line: Straightened a line.
too_bendy: This can't be straightened because it bends too much.
connected_to_hidden: This can't be straightened because it is connected to a hidden feature.
not_downloaded: This can't be straightened because parts of it have not yet been downloaded.
delete:
title: Delete
description:
single: Delete this feature permanently.
multiple: Delete these features permanently.
annotation:
point: Deleted a point.
vertex: Deleted a node from a way.
line: Deleted a line.
area: Deleted an area.
relation: Deleted a relation.
multiple: "Deleted {n} features."
too_large:
single: This feature can't be deleted because not enough of it is currently visible.
multiple: These features can't be deleted because not enough of them are currently visible.
incomplete_relation:
single: This feature can't be deleted because it hasn't been fully downloaded.
multiple: These features can't be deleted because they haven't been fully downloaded.
part_of_relation:
single: This feature can't be deleted because it is part of a larger relation. You must remove it from the relation first.
multiple: These features can't be deleted because they are part of larger relations. You must remove them from the relations first.
connected_to_hidden:
single: This feature can't be deleted because it is connected to a hidden feature.
multiple: These features can't be deleted because some are connected to hidden features.
not_downloaded:
single: This feature can't be deleted because parts of it have not yet been downloaded.
multiple: These features can't be deleted because parts of them have not yet been downloaded.
has_wikidata_tag:
single: This feature can't be deleted because it has a Wikidata tag.
multiple: These features can't be deleted because some have Wikidata tags.
downgrade:
title: Downgrade
description:
building_address: Remove all non-address and non-building tags.
building: Remove all non-building tags.
address: Remove all non-address tags.
annotation:
building:
single: Downgraded a feature to a basic building.
multiple: "Downgraded {n} features to basic buildings."
address:
single: Downgraded a feature to an address.
multiple: "Downgraded {n} features to addresses."
multiple: "Downgraded {n} features."
has_wikidata_tag:
single: This feature can't be downgraded because it has a Wikidata tag.
multiple: These features can't be downgraded because some have Wikidata tags.
add_member:
annotation: Added a member to a relation.
delete_member:
annotation: Removed a member from a relation.
reorder_members:
annotation: Reordered a relation's members.
connect:
annotation:
from_vertex:
to_point: Connected a way to a point.
to_vertex: Connected a way to another.
to_line: Connected a way to a line.
to_area: Connected a way to an area.
to_adjacent_vertex: Merged adjacent points in a way.
to_sibling_vertex: Connected a way to itself.
from_point:
to_point: Merged a point with another.
to_vertex: Merged a point with a point in a way.
to_line: Moved a point to a line.
to_area: Moved a point to an area.
relation: These features can't be connected because they have conflicting relation roles.
restriction: "These features can't be connected because it would damage a \"{relation}\" relation."
disconnect:
title: Disconnect
description: Disconnect these lines/areas from each other.
line:
description: Disconnect this line from other features.
area:
description: Disconnect this area from other features.
key: D
annotation: Disconnected lines/areas.
too_large:
single: This can't be disconnected because not enough of it is currently visible.
not_connected: There aren't enough lines/areas here to disconnect.
not_downloaded: This can't be disconnected because parts of it have not yet been downloaded.
connected_to_hidden: This can't be disconnected because it is connected to a hidden feature.
relation: This can't be disconnected because it connects members of a relation.
merge:
title: Merge
description: Merge these features.
key: C
annotation: "Merged {n} features."
not_eligible: These features can't be merged.
not_adjacent: These features can't be merged because their endpoints aren't connected.
restriction: "These features can't be merged because it would damage a \"{relation}\" relation."
relation: These features can't be merged because they have conflicting relation roles.
incomplete_relation: These features can't be merged because at least one hasn't been fully downloaded.
conflicting_tags: These features can't be merged because some of their tags have conflicting values.
paths_intersect: These features can't be merged because the resulting path would intersect itself.
move:
title: Move
description:
single: Move this feature to a different location.
multiple: Move these features to a different location.
key: M
annotation:
point: Moved a point.
vertex: Moved a node in a way.
line: Moved a line.
area: Moved an area.
multiple: Moved multiple features.
incomplete_relation:
single: This feature can't be moved because it hasn't been fully downloaded.
multiple: These features can't be moved because they haven't been fully downloaded.
too_large:
single: This feature can't be moved because not enough of it is currently visible.
multiple: These features can't be moved because not enough of them are currently visible.
connected_to_hidden:
single: This feature can't be moved because it is connected to a hidden feature.
multiple: These features can't be moved because some are connected to hidden features.
not_downloaded:
single: This feature can't be moved because parts of it have not yet been downloaded.
multiple: These features can't be moved because parts of them have not yet been downloaded.
reflect:
title:
long: Reflect Long
short: Reflect Short
description:
long:
single: Reflect this feature across its long axis.
multiple: Reflect these features across their long axis.
short:
single: Reflect this feature across its short axis.
multiple: Reflect these features across their short axis.
key:
long: T
short: Y
annotation:
long:
single: Reflected a feature across its long axis.
multiple: Reflected multiple features across their long axis.
short:
single: Reflected a feature across its short axis.
multiple: Reflected multiple features across their short axis.
incomplete_relation:
single: This feature can't be reflected because it hasn't been fully downloaded.
multiple: These features can't be reflected because they haven't been fully downloaded.
too_large:
single: This feature can't be reflected because not enough of it is currently visible.
multiple: These features can't be reflected because not enough of them are currently visible.
connected_to_hidden:
single: This feature can't be reflected because it is connected to a hidden feature.
multiple: These features can't be reflected because some are connected to hidden features.
not_downloaded:
single: This feature can't be reflected because parts of it have not yet been downloaded.
multiple: These features can't be reflected because parts of them have not yet been downloaded.
rotate:
title: Rotate
description:
single: Rotate this feature around its center point.
multiple: Rotate these features around their center point.
key: R
annotation:
line: Rotated a line.
area: Rotated an area.
multiple: Rotated multiple features.
incomplete_relation:
single: This feature can't be rotated because it hasn't been fully downloaded.
multiple: These features can't be rotated because they haven't been fully downloaded.
too_large:
single: This feature can't be rotated because not enough of it is currently visible.
multiple: These features can't be rotated because not enough of them are currently visible.
connected_to_hidden:
single: This feature can't be rotated because it is connected to a hidden feature.
multiple: These features can't be rotated because some are connected to hidden features.
not_downloaded:
single: This feature can't be rotated because parts of it have not yet been downloaded.
multiple: These features can't be rotated because parts of them have not yet been downloaded.
reverse:
title: Reverse
description:
point: Flip the direction of this point.
points: Flip the direction of these points.
line: Make this line go in the opposite direction.
lines: Make these lines go in the opposite direction.
features: Flip the directions of these features.
key: V
annotation:
point: Reversed a point.
points: Reversed multiple points.
line: Reversed a line.
lines: Reversed multiple lines.
features: Reversed multiple features.
split:
title: Split
description:
line: Split this line into two at this node.
area: Split the boundary of this area into two.
multiple: Split the lines/area boundaries at this node into two.
key: X
annotation:
line: Split a line.
area: Split an area boundary.
multiple: "Split {n} lines/area boundaries."
not_eligible: Lines can't be split at their beginning or end.
multiple_ways: There are too many lines here to split.
connected_to_hidden: This can't be split because it is connected to a hidden feature.
restriction:
annotation:
create: Added a turn restriction
delete: Deleted a turn restriction
extract:
title: Extract
key: E
description:
vertex:
single: Extract this point from its parent lines/areas.
area:
single: Extract a point from this area.
annotation:
single: Extracted a point.
too_large:
area:
single: A point can't be extracted from this area because not enough of it is currently visible.
restriction:
vertex:
single: "This point can't be extracted because it would damage a \"{relation}\" relation."
connected_to_hidden:
vertex:
single: This point can't be extracted because it is connected to a hidden feature.
restriction:
controls:
distance: Distance
distance_up_to: "Up to {distance}"
via: Via
via_node_only: "Node only"
via_up_to_one: "Up to 1 way"
via_up_to_two: "Up to 2 ways"
help:
indirect: "(indirect)"
turn:
no_left_turn: "NO Left Turn {indirect}"
no_right_turn: "NO Right Turn {indirect}"
no_u_turn: "NO U-Turn {indirect}"
no_straight_on: "NO Straight On {indirect}"
only_left_turn: "ONLY Left Turn {indirect}"
only_right_turn: "ONLY Right Turn {indirect}"
only_u_turn: "ONLY U-Turn {indirect}"
only_straight_on: "ONLY Straight On {indirect}"
allowed_left_turn: "Left Turn Allowed {indirect}"
allowed_right_turn: "Right Turn Allowed {indirect}"
allowed_u_turn: "U-Turn Allowed {indirect}"
allowed_straight_on: "Straight On Allowed {indirect}"
from: FROM
via: VIA
to: TO
from_name: "{from} {fromName}"
from_name_to_name: "{from} {fromName} {to} {toName}"
via_names: "{via} {viaNames}"
select_from: "Click to select a {from} segment"
select_from_name: "Click to select {from} {fromName}"
toggle: "Click for \"{turn}\""
undo:
tooltip: "Undo: {action}"
nothing: Nothing to undo.
redo:
tooltip: "Redo: {action}"
nothing: Nothing to redo.
tooltip_keyhint: "Shortcut:"
browser_notice: "This editor is supported in Firefox, Chrome, Safari, Opera, and Internet Explorer 11 and above. Please upgrade your browser or use Potlatch 2 to edit the map."
translate:
translate: Translate
localized_translation_label: Multilingual Name
localized_translation_language: Choose language
localized_translation_name: Name
language_and_code: "{language} ({code})"
zoom_in_edit: Zoom in to edit
login: Log In
logout: Log Out
loading_auth: "Connecting to OpenStreetMap..."
report_a_bug: Report a bug
help_translate: Help translate
sidebar:
key: '`'
tooltip: Toggle the sidebar.
feature_info:
hidden_warning: "{count} hidden features"
hidden_details: "These features are currently hidden: {details}"
osm_api_status:
message:
error: Unable to reach the OpenStreetMap API. Your edits are safe locally. Check your network connection.
offline: The OpenStreetMap API is offline. Your edits are safe locally. Please come back later.
readonly: The OpenStreetMap API is currently read-only. You can continue editing, but must wait to save your changes.
rateLimit: The OpenStreetMap API is limiting anonymous connections. You can fix this by logging in.
retry: Retry
commit:
title: Upload to OpenStreetMap
upload_explanation: "The changes you upload will be visible on all maps that use OpenStreetMap data."
upload_explanation_with_user: "The changes you upload as {user} will be visible on all maps that use OpenStreetMap data."
request_review: "I would like someone to review my edits."
save: Upload
cancel: Cancel
changes: "Changes ({count})"
download_changes: Download osmChange file
errors: Errors
warnings: Warnings
modified: Modified
deleted: Deleted
created: Created
outstanding_errors_message: "Please resolve all errors first. {count} remaining."
comment_needed_message: Please add a changeset comment first.
about_changeset_comments: About changeset comments
about_changeset_comments_link: //wiki.openstreetmap.org/wiki/Good_changeset_comments
google_warning: "You mentioned Google in this comment: remember that copying from Google Maps is strictly forbidden."
google_warning_link: https://www.openstreetmap.org/copyright
contributors:
list: "Edits by {users}"
truncated_list: "Edits by {users} and {count} others"
info_panels:
key: I
background:
key: B
title: Background
zoom: Zoom
vintage: Vintage
source: Source
description: Description
resolution: Resolution
accuracy: Accuracy
unknown: Unknown
show_tiles: Show Tiles
hide_tiles: Hide Tiles
show_vintage: Show Vintage
hide_vintage: Hide Vintage
history:
key: H
title: History
selected: "{n} selected"
no_history: "No History (New Feature)"
version: Version
last_edit: Last Edit
edited_by: Edited By
changeset: Changeset
unknown: Unknown
link_text: History on openstreetmap.org
note_no_history: "No History (New Note)"
note_comments: Comments
note_created_date: Created Date
note_created_user: Created By
note_link_text: Note on openstreetmap.org
location:
key: L
title: Location
unknown_location: Unknown Location
measurement:
key: M
title: Measurement
selected: "{n} selected"
geometry: Geometry
closed_line: closed line
closed_area: closed area
center: Center
perimeter: Perimeter
length: Length
area: Area
centroid: Centroid
location: Location
metric: Metric
imperial: Imperial
node_count: Number of nodes
geometry:
point: point
vertex: vertex
line: line
area: area
relation: relation
note: note
geocoder:
search: Search worldwide...
no_results_worldwide: No results found
geolocate:
key: L
title: Show My Location
locating: "Locating, please wait..."
location_unavailable: Your location is unavailable.
inspector:
zoom_to:
key: Z
title: Zoom To Selection
show_more: Show More
view_on_osm: View on openstreetmap.org
view_on_osmose: View on osmose.openstreetmap.fr
view_on_keepRight: View on keepright.at
feature_type: Feature Type
fields: Fields
tags_count: "Tags ({count})"
members_count: "Members ({count})"
relations_count: "Relations ({count})"
features_count: "Features ({count})"
add_to_relation: Add to a relation
new_relation: New relation...
choose_relation: Choose a parent relation
role: Role
choose: Select feature type
results: "{n} results for {search}"
no_documentation_key: "There is no documentation available."
edit_reference: "edit/translate"
wiki_reference: View documentation
wiki_en_reference: View documentation in English
key_value: "key=value"
multiple_values: Multiple Values
multiple_types: Multiple Types
unshared_value_tooltip: not shared by all features
hidden_preset:
manual: "{features} are hidden. Enable them in the Map Data pane."
zoom: "{features} are hidden. Zoom in to enable them."
back_tooltip: Change feature type
remove: Remove
search: Search
unknown: Unknown
incomplete: <not downloaded>
feature_list: Search features
edit: Edit feature
edit_features: Edit features
check:
"yes": "Yes"
"no": "No"
reverser: "Change Direction"
radio:
structure:
type: Type
default: Default
layer: Layer
add: Add
none: None
node: Node
way: Way
relation: Relation
location: Location
add_fields: "Add field:"
lock:
suggestion: 'The "{label}" field is locked because there is a Wikidata tag. You can delete it or edit the tags in the "Tags" section.'
background:
title: Background
description: Background settings
key: B
backgrounds: Backgrounds
none: None
best_imagery: Best known imagery source for this location
switch: Switch back to this background
custom: Custom
overlays: Overlays
imagery_problem_faq: Report an Imagery Problem
reset: reset
reset_all: Reset All
display_options: Display Options
brightness: Brightness
contrast: Contrast
saturation: Saturation
sharpness: Sharpness
minimap:
description: Show Minimap
tooltip: Show a zoomed out map to help locate the area currently displayed.
key: '/'
panel:
description: Show Detail Panel
tooltip: Show advanced background information.
fix_misalignment: Imagery Offset
offset: "Drag anywhere in the gray area below to adjust the imagery offset, or enter the offset values in meters."
map_data:
title: Map Data
description: Map Data
key: F
data_layers: Data Layers
layers:
osm:
tooltip: Map data from OpenStreetMap
title: OpenStreetMap data
notes:
tooltip: Note data from OpenStreetMap
title: OpenStreetMap notes
keepRight:
tooltip: Data issues detected by keepright.at
title: KeepRight Issues
improveOSM:
tooltip: Missing data detected by improveosm.org
title: ImproveOSM Issues
osmose:
tooltip: Data issues detected by osmose.openstreetmap.fr
title: Osmose Issues
custom:
tooltip: "Drag and drop a data file onto the page, or click the button to setup"
title: Custom Map Data
zoom: Zoom to data
style_options: Style Options
highlight_edits:
key: G
map_features: Map Features
autohidden: "These features have been automatically hidden because too many would be shown on the screen. You can zoom in to edit them."
osmhidden: "These features have been automatically hidden because the OpenStreetMap layer is hidden."
visual_diff:
highlight_edits:
description: Highlight Changes
tooltip: Outline edited features
photo_overlays:
title: Photo Overlays
traffic_signs:
title: Traffic Signs
photo_type:
flat:
title: "Flat Photos"
tooltip: "Traditional photos"
panoramic:
title: "Panoramic Photos"
tooltip: "360° photos"
feature:
points:
description: Points
tooltip: "Points of Interest"
traffic_roads:
description: Traffic Roads
tooltip: "Highways, Streets, etc."
service_roads:
description: Service Roads
tooltip: "Service Roads, Parking Aisles, Tracks, etc."
paths:
description: Paths
tooltip: "Sidewalks, Foot Paths, Cycle Paths, etc."
buildings:
description: Buildings
tooltip: "Buildings, Shelters, Garages, etc."
building_parts:
description: Building Parts
tooltip: "3D Building and Roof Components"
indoor:
description: Indoor Features
tooltip: "Rooms, Corridors, Stairwells, etc."
landuse:
description: Landuse Features
tooltip: "Forests, Farmland, Parks, Residential, Commercial, etc."
boundaries:
description: Boundaries
tooltip: "Administrative Boundaries"
water:
description: Water Features
tooltip: "Rivers, Lakes, Ponds, Basins, etc."
rail:
description: Rail Features
tooltip: "Railways"
pistes:
description: Pistes
tooltip: "Ski Slopes, Sled Runs, Ice Skating Trails, etc."
aerialways:
description: Aerial Features
tooltip: "Chair Lifts, Gondolas, Zip Lines, etc."
power:
description: Power Features
tooltip: "Power Lines, Power Plants, Substations, etc."
past_future:
description: Past/Future Features
tooltip: "Proposed, Construction, Abandoned, Demolished, etc."
others:
description: Other Features
tooltip: "Everything Else"
area_fill:
wireframe:
description: No Fill (Wireframe)
tooltip: "Enabling wireframe mode makes it easy to see the background imagery."
key: W
partial:
description: Partial Fill
tooltip: "Areas are drawn with fill only around their inner edges. (Recommended for beginner mappers)"
full:
description: Full Fill
tooltip: "Areas are drawn fully filled."
settings:
custom_background:
tooltip: Edit custom background
header: Custom Background Settings
instructions: "Enter a tile URL template. Valid tokens are:\n {zoom} or {z}, {x}, {y} for Z/X/Y tile scheme\n {-y} or {ty} for flipped TMS-style Y coordinates\n {u} for quadtile scheme\n {switch:a,b,c} for DNS server multiplexing\n\nExample:\n{example}"
template:
placeholder: Enter a url template
custom_data:
tooltip: Edit custom data layer
header: Custom Map Data Settings
file:
instructions: "Choose a local data file. Supported types are:\n .gpx, .kml, .geojson, .json"
label: "Browse files"
or: "Or"
url:
instructions: "Enter a data file URL or vector tile URL template. Valid tokens are:\n {zoom} or {z}, {x}, {y} for Z/X/Y tile scheme"
placeholder: Enter a url
preferences:
title: Preferences
description: Preferences
key: P
privacy:
title: Privacy
privacy_link: View the iD privacy policy
third_party_icons:
description: Show Third Party Icons
tooltip: Uncheck this box to avoid loading icons from third party sites such as Wikimedia Commons, Facebook, or Twitter.
restore:
heading: You have unsaved changes
description: "Do you wish to restore unsaved changes from a previous editing session?"
restore: Restore my changes
reset: Discard my changes
save:
title: Save
help: "Review your changes and upload them to OpenStreetMap, making them visible to other users."
no_changes: No changes to save.
error: Errors occurred while trying to save
status_code: "Server returned status code {code}"
unknown_error_details: "Please ensure you are connected to the internet."
uploading: Uploading changes to OpenStreetMap...
conflict_progress: "Checking for conflicts: {num} of {total}"
unsaved_changes: You have unsaved changes
conflict:
header: Resolve conflicting edits
count: 'Conflict {num} of {total}'
previous: '< Previous'
next: 'Next >'
keep_local: Keep mine
keep_remote: Use theirs
restore: Restore
delete: Leave Deleted
download_changes: Or download osmChange file
done: "All conflicts resolved!"
help: |
Another user changed some of the same map features you changed.
Click on each feature below for more details about the conflict, and choose whether to keep
your changes or the other user's changes.
merge_remote_changes:
conflict:
deleted: 'This feature has been deleted by {user}.'
location: 'This feature was moved by both you and {user}.'
nodelist: 'Nodes were changed by both you and {user}.'
memberlist: 'Relation members were changed by both you and {user}.'
tags: 'You changed the <b>{tag}</b> tag to "{local}" and {user} changed it to "{remote}".'
success:
just_edited: "You just edited OpenStreetMap!"
thank_you: "Thank you for improving the map."
thank_you_location: "Thank you for improving the map around {where}."
thank_you_where:
format: "{place}{separator}{region}"
separator: ", "
help_html: Your changes should appear on OpenStreetMap within a few minutes. It may take longer for maps elsewhere to receive updates.
help_link_text: Details
help_link_url: "https://wiki.openstreetmap.org/wiki/FAQ#I_have_just_made_some_changes_to_the_map._How_do_I_get_to_see_my_changes.3F"
view_on_osm: "View Changes on OSM"
changeset_id: "Your changeset #: {changeset_id}"
like_osm: "Like OpenStreetMap? Connect with others:"
more: More
events: Events
languages: "Languages: {languages}"
missing: "Is something missing from this list?"
tell_us: "Tell us!"
confirm:
okay: "OK"
cancel: "Cancel"
splash:
welcome: Welcome to the iD OpenStreetMap editor
text: "iD is a friendly but powerful tool for contributing to the world's best free world map. This is version {version}. For more information see {website} and report bugs at {github}."
privacy_update: "Our privacy policy has recently been updated."
privacy_policy: iD privacy policy
privacy: "{updateMessage} By using this software, you agree to do so in accordance with the {privacyLink}."
walkthrough: "Start the Walkthrough"
start: "Edit now"
source_switch:
live: live
lose_changes: "You have unsaved changes. Switching the map server will discard them. Are you sure you want to switch servers?"
dev: dev
version:
whats_new: "What's new in iD {version}"
tag_reference:
description: Description
on_wiki: "{tag} on wiki.osm.org"
used_with: "used with {type}"
zoom:
in: Zoom In
out: Zoom Out
cannot_zoom: "Cannot zoom out further in current mode."
full_screen: Toggle Full Screen
self_intersection:
error:
lines: Lines cannot cross over themselves.
areas: Areas cannot cross over themselves.
QA:
osmose:
title: Osmose Issue
detail_title: Details
elems_title: Features
fix_title: Fix Guidelines
trap_title: Common Mistakes
improveOSM:
title: ImproveOSM Detection
geometry_types:
path: paths
parking: parking
road: roads
both: roads and parking
directions:
east: east
north: north
northeast: northeast
northwest: northwest
south: south
southeast: southeast
southwest: southwest
west: west
error_types:
ow:
title: Missing One-way
description: 'Along this section of {highway}, {percentage}% of {num_trips} recorded trips travel from {from_node} to {to_node}. There may be missing a "oneway" tag.'
mr:
title: Missing Geometry
description: '{num_trips} recorded trips in this area suggest there may be unmapped {geometry_type} here.'
description_alt: 'Data from a 3rd party suggests there may be unmapped {geometry_type} here.'
tr:
title: Missing Turn Restriction
description: '{num_passed} of {num_trips} recorded trips (travelling {travel_direction}) make a turn from {from_way} to {to_way} at {junction}. There may be a missing "{turn_restriction}" restriction.'
keepRight:
title: KeepRight
detail_description: Description
comment: Comment
comment_placeholder: Enter a comment to share with other users.
close: Close (Issue Fixed)
ignore: Remove (False Positive)
save_comment: Save Comment
close_comment: Close and Comment
ignore_comment: Remove and Comment
error_parts:
this_node: 'this node'
this_way: 'this way'
this_relation: 'this relation'
this_oneway: 'this oneway'
this_highway: 'this highway'
this_railway: 'this railway'
this_waterway: 'this waterway'
this_cycleway: 'this cycleway'
this_cycleway_footpath: 'this cycleway/footpath'
this_riverbank: 'this riverbank'
this_crossing: 'this crossing'
this_railway_crossing: 'this railway crossing'
this_bridge: 'this bridge'
this_tunnel: 'this tunnel'
this_boundary: 'this boundary'
this_turn_restriction: 'this turn restriction'
this_roundabout: 'this roundabout'
this_mini_roundabout: 'this mini-roundabout'
this_track: 'this track'
this_feature: 'this feature'
highway: 'highway'
railway: 'railway'
waterway: 'waterway'
cycleway: 'cycleway'
cycleway_footpath: 'cycleway/footpath'
riverbank: 'riverbank'
place_of_worship: 'place of worship'
pub: 'pub'
restaurant: 'restaurant'
school: 'school'
university: 'university'
hospital: 'hospital'
library: 'library'
theatre: 'theatre'
courthouse: 'courthouse'
bank: 'bank'
cinema: 'cinema'
pharmacy: 'pharmacy'
cafe: 'cafe'
fast_food: 'fast food'
fuel: 'fuel'
from: 'from'
to: 'to'
left_hand: 'left-hand'
right_hand: 'right-hand'
errorTypes:
20:
title: 'Multiple nodes on the same spot'
description: 'There is more than one node in this spot. Node IDs: {var1}.'
30:
title: 'Non-closed area'
description: '{var1} is tagged with "{var2}" and should be a closed loop.'
40:
title: 'Impossible oneway'
description: 'The first node {var1} of {var2} is not connected to any other way.'
41:
description: 'The last node {var1} of {var2} is not connected to any other way.'
42:
description: 'You cannot reach {var1} because all ways leading from it are oneway.'
43:
description: 'You cannot escape from {var1} because all ways leading to it are oneway.'
50:
title: 'Almost junction'
description: '{var1} is very close but not connected to way {var2}.'
60:
title: 'Deprecated tag'
description: '{var1} uses deprecated tag "{var2}". Please use "{var3}" instead.'
70:
title: 'Missing tag'
description: '{var1} has an empty tag: "{var2}".'
71:
description: '{var1} has no tags.'
72:
description: '{var1} is not member of any way and doesn''t have any tags.'
73:
description: '{var1} has a "{var2}" tag but no "highway" tag.'
74:
description: '{var1} has an empty tag: "{var2}".'
75:
description: '{var1} has a name "{var2}" but no other tags.'
90:
title: 'Motorway without ref tag'
description: '{var1} is tagged as a motorway and therefore needs a "ref", "nat_ref", or "int_ref" tag.'
100:
title: 'Place of worship without religion'
description: '{var1} is tagged as a place of worship and therefore needs a religion tag.'
110:
title: 'Point of interest without name'
description: '{var1} is tagged as a "{var2}" and therefore needs a name tag.'
120:
title: 'Way without nodes'
description: '{var1} has just one single node.'
130:
title: 'Disconnected way'
description: '{var1} is not connected to the rest of the map.'
150:
title: 'Railway crossing without tag'
description: '{var1} of a highway and a railway needs to be tagged as "railway=crossing" or "railway=level_crossing".'
160:
title: 'Railway layer conflict'
description: 'There are ways in different layers (e.g. tunnel or bridge) meeting at {var1}.'
170:
title: 'FIXME tagged item'
description: '{var1} has a FIXME tag: {var2}'
180:
title: 'Relation without type'