mirror of
https://github.com/FoggedLens/iD.git
synced 2026-03-07 03:41:33 +00:00
Don’t interpolate geometry type
This commit is contained in:
@@ -278,7 +278,9 @@ en:
|
||||
untagged_area: Untagged area
|
||||
many_deletions: "You're deleting {n} objects. Are you sure you want to do this? This will delete them from the map that everyone else sees on openstreetmap.org."
|
||||
tag_suggests_area: "The tag {tag} suggests line should be area, but it is not an area"
|
||||
untagged_tooltip: "Select a feature type that describes what this {geometry} is."
|
||||
untagged_point_tooltip: "Select a feature type that describes what this point is."
|
||||
untagged_line_tooltip: "Select a feature type that describes what this line is."
|
||||
untagged_area_tooltip: "Select a feature type that describes what this area is."
|
||||
deprecated_tags: "Deprecated tags: {tags}"
|
||||
zoom:
|
||||
in: Zoom In
|
||||
|
||||
4
dist/locales/en.json
vendored
4
dist/locales/en.json
vendored
@@ -336,7 +336,9 @@
|
||||
"untagged_area": "Untagged area",
|
||||
"many_deletions": "You're deleting {n} objects. Are you sure you want to do this? This will delete them from the map that everyone else sees on openstreetmap.org.",
|
||||
"tag_suggests_area": "The tag {tag} suggests line should be area, but it is not an area",
|
||||
"untagged_tooltip": "Select a feature type that describes what this {geometry} is.",
|
||||
"untagged_point_tooltip": "Select a feature type that describes what this point is.",
|
||||
"untagged_line_tooltip": "Select a feature type that describes what this line is.",
|
||||
"untagged_area_tooltip": "Select a feature type that describes what this area is.",
|
||||
"deprecated_tags": "Deprecated tags: {tags}"
|
||||
},
|
||||
"zoom": {
|
||||
|
||||
@@ -28,7 +28,7 @@ iD.validate = function(changes, graph) {
|
||||
if ((geometry === 'point' || geometry === 'line' || geometry === 'area') && !change.isUsed(graph)) {
|
||||
warnings.push({
|
||||
message: t('validations.untagged_' + geometry),
|
||||
tooltip: t('validations.untagged_tooltip', {geometry: geometry}),
|
||||
tooltip: t('validations.untagged_' + geometry + '_tooltip'),
|
||||
entity: change
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user