Adjust text for Reflect operation messages

This commit is contained in:
Bryan Housel
2017-02-15 16:37:37 -05:00
parent c18cc7577d
commit 33227c2b53
3 changed files with 12 additions and 7 deletions
+5 -3
View File
@@ -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.
+6 -3
View File
@@ -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."
}
},
+1 -1
View File
@@ -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;