mirror of
https://github.com/FoggedLens/iD.git
synced 2026-05-15 05:30:35 +02:00
Adjust text for Reflect operation messages
This commit is contained in:
+5
-3
@@ -146,7 +146,9 @@ en:
|
||||
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.
|
||||
reflect:
|
||||
title: reflect
|
||||
title:
|
||||
long: Reflect Long
|
||||
short: Reflect Short
|
||||
description:
|
||||
long:
|
||||
single: Reflect this feature across its long axis.
|
||||
@@ -159,10 +161,10 @@ en:
|
||||
short: Y
|
||||
annotation:
|
||||
long:
|
||||
single: Reflected an feature across its long axis.
|
||||
single: Reflected a feature across its long axis.
|
||||
multiple: Reflected multiple features across their long axis.
|
||||
short:
|
||||
single: Reflected an feature across its short axis.
|
||||
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.
|
||||
|
||||
Vendored
+6
-3
@@ -188,7 +188,10 @@
|
||||
}
|
||||
},
|
||||
"reflect": {
|
||||
"title": "reflect",
|
||||
"title": {
|
||||
"long": "Reflect Long",
|
||||
"short": "Reflect Short"
|
||||
},
|
||||
"description": {
|
||||
"long": {
|
||||
"single": "Reflect this feature across its long axis.",
|
||||
@@ -205,11 +208,11 @@
|
||||
},
|
||||
"annotation": {
|
||||
"long": {
|
||||
"single": "Reflected an feature across its long axis.",
|
||||
"single": "Reflected a feature across its long axis.",
|
||||
"multiple": "Reflected multiple features across their long axis."
|
||||
},
|
||||
"short": {
|
||||
"single": "Reflected an feature across its short axis.",
|
||||
"single": "Reflected a feature across its short axis.",
|
||||
"multiple": "Reflected multiple features across their short axis."
|
||||
}
|
||||
},
|
||||
|
||||
@@ -69,7 +69,7 @@ export function operationReflect(selectedIDs, context, axis) {
|
||||
|
||||
operation.id = 'reflect-' + axis;
|
||||
operation.keys = [t('operations.reflect.key.' + axis)];
|
||||
operation.title = t('operations.reflect.title');
|
||||
operation.title = t('operations.reflect.title.' + axis);
|
||||
operation.behavior = behaviorOperation(context).which(operation);
|
||||
|
||||
return operation;
|
||||
|
||||
Reference in New Issue
Block a user