forked from openstreetmap/iD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
core.yaml
2489 lines (2489 loc) · 128 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:
center_zoom:
title: Center
return_tooltip: Undo centering on this.
return: Return
deselect:
title: Deselect
undo_redo: Undo / Redo
recent: Recent
favorites: Favorites
add_feature: Add Feature
<<<<<<< HEAD
title:
format:
context: "{base} – {context}"
changes: "({changes}) {base}"
changes_context: "({changes}) {base} – {context}"
labeled_and_more:
one: "{labeled} and {count} more"
other: "{labeled} and {count} more"
modes:
=======
finish: Finish
generic:
title: Geometries
geometry:
key: T
repeat:
title: Repeat
tooltip:
point: "Add another {feature} after this one."
way: "Start another {feature} after finishing this one."
key: R
segments:
title: Segments
straight:
title: Straight
orthogonal:
title: Rectangular
key: A
structure:
none:
title: None
key: S
support:
title: Support
pole:
title: Pole
tower:
title: Tower
key: S
toolbox:
title: Tools
tooltip: Customize the toolbar.
assistant:
mode:
authenticating: Authenticating
drawing: Drawing
inspecting: Inspecting
mapping: Mapping
placing: Placing
saving: Saving
instructions:
add_point: Click the center of the feature.
add_vertex: Click the point along a line or area where the feature occurs.
add_line: Click the starting point of the feature.
draw_line: Place points along the feature's centerline.
add_area: Click any corner of the feature.
draw_area: Place points along the feature's outline.
finishing: When you're done, click the last point again or click <b>Finish</b>.
global_location: Planet Earth
greetings:
morning: Good Morning
afternoon: Good Afternoon
evening: Good Evening
# "Good Night" isn't a greeting in English but it can be in some languages
night: Good Evening
notice: Notice
launch:
osm_info: "You’re editing <b>OpenStreetMap</b>: the free, collaborative world map."
first_time_tutorial: "If this is your first time here, consider taking the <a>quick-start tutorial</a>."
thanks_have_fun: Thanks for contributing. Have fun!
generic_welcome:
0: Ready to make the map even better?
1: What a great day for mapping.
welcome_back_user: "Welcome back, {displayName}."
changesets: "You've contributed {changesets} changesets to OpenStreetMap so far."
changesets_date: "You've contributed {changesets} changesets to OpenStreetMap since {joinDate}."
anniversary:
happy_anniversary: Happy Anniversary
years:
first: "Congratulations on your first year of mapping, {displayName}!"
subsequent: "Congratulations on {years} years of mapping, {displayName}!"
blocks:
active: Your OpenStreetMap account, {displayName}, has an active block and cannot upload changes.
start_mapping: Start Mapping
restore:
title: Restore
discard: Discard
info:
count_loc: "You have {count} unsaved changes around {location}."
count_loc_time: "You have {count} unsaved changes from {duration} ago around {location}."
ask: Would you like to restore them?
commit:
auth:
osm_account: OpenStreetMap Account
message: You must sign in to upload your changes.
success:
thank_you: Thank You!
just_improved: "You've just improved OpenStreetMap around {location}."
propagation_help: Your changes will be live momentarily. Some maps take longer to update than others.
feature_count:
multiple: "{count} Features"
modes:
add_feature:
search_placeholder: Search feature types
description: "Browse features to add to the map."
# The hotkey to open the Add Feature preset browser. Expect the key adjacent to the number row.
key: "`"
result: "{count} result"
results: "{count} results"
>>>>>>> af4ea2c4ddd394e18be57c4998a7860f8e535444
add_area:
title: Area
description: "Add parks, buildings, lakes or other areas to the map."
filter_tooltip: areas
add_line:
title: Line
description: "Add highways, streets, pedestrian paths, canals or other lines to the map."
filter_tooltip: lines
add_point:
title: Point
description: "Add restaurants, monuments, postal boxes or other points to the map."
filter_tooltip: points
add_note:
title: Note
label: Add Note
description: "Spotted an issue? Let other mappers know."
key: N
add_preset:
title: "Add {feature}"
browse:
title: Browse
description: Pan and zoom the map.
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. Add one to the selection to continue.
annotation:
line: Continued a line.
area: Continued an area.
cancel_draw:
annotation: Canceled drawing.
change_role:
annotation:
one: Changed the role of a relation member.
other: "Changed the roles of {n} relation members."
change_tags:
annotation: Changed tags.
copy:
title: Copy
description:
one: Set this feature for pasting.
other: Set these features for pasting.
annotation:
one: Copied a feature.
other: "Copied {n} features."
too_large:
one: This can't be copied because not enough of it is currently visible.
other: These can't be copied because not enough of them are currently visible.
paste:
title: Paste
description:
one: "Add a duplicate {feature} here."
other: "Add {n} duplicate features here."
annotation:
one: Pasted a feature.
other: "Pasted {n} features."
nothing_copied: No features have been copied.
circularize:
title: Circularize
description:
single: Make this feature circular.
multiple: Make these features circular.
key: O
annotation:
feature:
one: Made a feature circular.
other: "Made {n} 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:
<<<<<<< HEAD
one: Squared a corner.
other: "Squared {n} corners."
feature:
one: Squared the corners of a feature.
other: "Squared the corners of {n} features."
=======
single: Squared a corner.
multiple: Squared several corners.
feature:
single: Squared the corners of a feature.
multiple: Squared the corners of several features.
>>>>>>> af4ea2c4ddd394e18be57c4998a7860f8e535444
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.
<<<<<<< HEAD
multiple: These can't be made square because not enough of them are currently visible.
=======
multiple: These can't be made square because not enought of them are currently visible.
>>>>>>> af4ea2c4ddd394e18be57c4998a7860f8e535444
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.
lines: Straighten these lines.
key: S
annotation:
point:
one: Straightened a point.
other: "Straightened {n} points."
line:
one: Straightened a line.
other: "Straightened {n} lines."
too_bendy:
single: This can't be straightened because it bends too much.
multiple: These can't be straightened because they bend too much.
connected_to_hidden:
single: This can't be straightened because it is connected to a hidden feature.
multiple: These can't be straightened because some are connected to hidden features.
not_downloaded:
single: This can't be straightened because parts of it have not yet been downloaded.
multiple: These can't be straightened because parts of them have not yet been downloaded.
straight_enough:
single: This can't be made straighter than it already is.
multiple: These can't be made straighter than they already are.
too_large:
single: This can't be straightened because not enough of it is currently visible.
multiple: These can't be straightened because not enough of them are currently visible.
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.
feature:
one: "Deleted a feature."
other: "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.
generic: Remove tags.
annotation:
building:
one: Downgraded a feature to a basic building.
other: "Downgraded {n} features to basic buildings."
address:
one: Downgraded a feature to an address.
other: "Downgraded {n} features to addresses."
generic:
one: "Downgraded a feature."
other: "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:
one: Added a member to a relation.
other: "Added {n} members to a relation."
delete_member:
annotation:
one: Removed a member from a relation.
other: "Removed {n} members 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:
no_points:
single_way:
line: Disconnect this line from other features.
area: Disconnect this area from other features.
multiple_ways:
conjoined: Disconnect these features from each other.
separate: Disconnect these features from everything.
single_point:
no_ways: Disconnect the features at this point.
single_way:
line: Disconnect the selected line at this point.
area: Disconnect the selected area at this point.
multiple_ways: Disconnect the selected features at this point.
multiple_points:
no_ways: Disconnect the features at these points.
single_way:
line: Disconnect the selected line at these points.
area: Disconnect the selected area at these points.
multiple_ways: Disconnect the selected features at these points.
key: D
annotation:
features: Disconnected features.
from_each_other: Disconnected features from each other.
too_large:
single: This can't be disconnected because not enough of it is currently visible.
multiple: These can't be disconnected because not enough of them are 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:
one: "Merged a feature."
other: "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.
too_many_vertices: These features can't be merged because the resulting path would have too many points.
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.
relation: Moved a relation.
feature:
one: "Moved a feature."
other: "Moved {n} 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: Flip Long
short: Flip Short
description:
long:
single: Flip this feature across its long axis.
multiple: Flip these features across their long axis.
short:
single: Flip this feature across its short axis.
multiple: Flip these features across their short axis.
key:
long: T
short: Y
annotation:
long:
feature:
one: Flipped a feature across its long axis.
other: "Flipped {n} features across their long axis."
short:
feature:
one: Flipped a feature across its short axis.
other: "Flipped {n} features across their short axis."
incomplete_relation:
single: This feature can't be flipped because it hasn't been fully downloaded.
multiple: These features can't be flipped because they haven't been fully downloaded.
too_large:
single: This feature can't be flipped because not enough of it is currently visible.
multiple: These features can't be flipped because not enough of them are currently visible.
connected_to_hidden:
single: This feature can't be flipped because it is connected to a hidden feature.
multiple: These features can't be flipped because some are connected to hidden features.
not_downloaded:
single: This feature can't be flipped because parts of it have not yet been downloaded.
multiple: These features can't be flipped 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.
relation: Rotated a relation.
feature:
one: Rotated a feature.
other: "Rotated {n} 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:
one: Reversed a point.
other: "Reversed {n} points."
line:
one: Reversed a line.
other: "Reversed {n} lines."
feature:
one: Reversed a feature.
other: "Reversed {n} features."
scale:
annotation:
down:
feature:
one: Scaled down a feature.
other: "Scaled down {n} features."
up:
feature:
one: Scaled up a feature.
other: "Scaled up {n} features."
too_small:
single: This feature can't be scaled down because it would become too small.
multiple: These features can't be scaled down because they would become too small.
too_large:
single: This feature can't be scaled because not enough of it is currently visible.
multiple: These features can't be scaled because not enough of them are currently visible.
connected_to_hidden:
single: This feature can't be scaled because it is connected to a hidden feature.
multiple: These features can't be scaled because some are connected to hidden features.
not_downloaded:
single: This feature can't be scaled because parts of it have not yet been downloaded.
multiple: These features can't be scaled because parts of them have not yet been downloaded.
split:
title: Split
description:
line:
single:
single_node: Divide this line into two at this point.
multiple_node: Divide this line at these points.
multiple:
single_node: Divide these lines at this point.
multiple_node: Divide these lines at these points.
area:
single:
single_node: Divide the edge of this area into two at this point.
multiple_node: Divide the edge of this area at these points.
multiple:
single_node: Divide the edges of these areas at this point.
multiple_node: Divide the edges of these areas at these points.
feature:
multiple:
single_node: Divide these features at this point.
multiple_node: Divide these features at these points.
key: X
annotation:
line:
one: "Split a line."
other: "Split {n} lines."
area:
one: "Split the edge of an area."
other: "Split {n} areas."
feature:
one: "Split a feature."
other: "Split {n} features."
not_eligible: Lines can't be split at their beginning or end.
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.
multiple: Extract these points from their parent features.
line:
single: Extract a point from this line.
multiple: Extract points from these lines.
area:
single: Extract a point from this area.
multiple: Extract points from these areas.
feature:
multiple: Extract points from these features.
annotation:
one: Extracted a point.
other: "Extracted {n} points."
too_large:
single: A point can't be extracted because not enough of this feature is visible.
multiple: Points can't be extracted because not enough of these features are visible.
connected_to_hidden:
single: This point can't be extracted because it is connected to a hidden feature.
multiple: Points can't be extracted from these features because some are connected to hidden features.
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:
title: Undo
tooltip: "Undo: {action}"
nothing: Nothing to undo.
redo:
title: 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: Add multilingual name
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
feature_info:
hidden_warning:
one: "{count} hidden feature"
other: "{count} hidden features"
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."
request_review_info: "Unsure about something? Invite an experienced mapper to check your work once it's live."
save: Upload
cancel: Cancel
<<<<<<< HEAD
changes: Changes
=======
change: "1 Change"
changes: "{count} Changes"
changes_parenthetical: "Changes ({count})"
>>>>>>> af4ea2c4ddd394e18be57c4998a7860f8e535444
download_changes: Download osmChange file
errors: Errors
warnings: Warnings
modified: Modified
deleted: Deleted
created: Created
blocker_message:
outstanding_errors: "Please resolve all errors before uploading."
comment_needed: Please add a changeset comment before uploading. This helps others understand your edits.
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:
one: "Edits by {users} and {count} other"
other: "Edits by {users} and {count} others"
info_panels:
key: I
selected:
one: "{n} selected"
other: "{n} selected"
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
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
geometry: Geometry
closed_line: closed line
closed_area: closed area
center: Center
perimeter: Perimeter
length: Length
distance: Distance
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
<<<<<<< HEAD
title: Zoom To Selection
no_selection: Nothing to zoom to.
=======
tooltip_feature: "Center and zoom the map to focus on this feature."
tooltip_note: "Center and zoom the map to focus on this note."
tooltip_data: "Center and zoom the map to focus on this data."
tooltip_issue: "Center and zoom the map to focus on this issue."
>>>>>>> af4ea2c4ddd394e18be57c4998a7860f8e535444
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
<<<<<<< HEAD
feature_type: Feature Type
fields: Fields
tags: Tags
members: Members
relations: Relations
features: Features
title_count: "{title} ({count})"
=======
all_fields: Fields
all_tags: Tags
all_members: Members
all_relations: Relations
>>>>>>> af4ea2c4ddd394e18be57c4998a7860f8e535444
add_to_relation: Add to a relation
new_relation: New relation...
choose_relation: Choose a parent relation
role: Role
multiple_roles: Multiple Roles
choose: Select feature type
results:
one: "{n} result for {search}"
other: "{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
<<<<<<< HEAD
key_value: "key=value"
multiple_values: Multiple Values
multiple_types: Multiple Types
unshared_value_tooltip: not shared by all features
=======
multiple_values: Multiple Values
>>>>>>> af4ea2c4ddd394e18be57c4998a7860f8e535444
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.'
display_name:
direction: "{direction}"
from_to: "from {from} to {to}"
from_to_via: "from {from} to {to} via {via}"
network_direction: "{network} {direction}"
network_from_to: "{network} from {from} to {to}"
network_from_to_via: "{network} from {from} to {to} via {via}"
ref: "{ref}"
ref_direction: "{ref} {direction}"
ref_from_to: "{ref} from {from} to {to}"
ref_from_to_via: "{ref} from {from} to {to} via {via}"
network_ref: "{network} {ref}"
network_ref_direction: "{network} {ref} {direction}"
network_ref_from_to: "{network} {ref} from {from} to {to}"
network_ref_from_to_via: "{network} {ref} from {from} to {to} via {via}"
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 Background Panel
tooltip: Show advanced background information.
location_panel:
description: Show Location Panel
tooltip: Show coordinates and regional details.
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
history_panel:
title: Show History Panel
tooltip: Show version details for the selection.
measurement_panel:
title: Show Measurement Panel
tooltip: Show geometry values for the selection.
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"
date_filter:
fromDate:
title: "From"
tooltip: "Show photos taken after this date"
toDate:
title: "To"
tooltip: "Show photos taken before this date"
username_filter:
title: "Username"
tooltip: "Show only photos by this user"
feature:
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