diff --git a/modules/validations/unsquare_way.js b/modules/validations/unsquare_way.js index a4331458a..73a06dff7 100644 --- a/modules/validations/unsquare_way.js +++ b/modules/validations/unsquare_way.js @@ -66,7 +66,7 @@ export function validationUnsquareWay(context) { // use same degree threshold as for detection var autoAction = actionOrthogonalize(entity.id, context.projection, undefined, degreeThreshold); autoAction.transitionable = false; // when autofixing, do it instantly - autoArgs = [autoAction, t('operations.orthogonalize.annotation.area')]; + autoArgs = [autoAction, t('operations.orthogonalize.annotation.feature.single')]; } return [new validationIssue({ @@ -91,7 +91,7 @@ export function validationUnsquareWay(context) { // use same degree threshold as for detection context.perform( actionOrthogonalize(entityId, context.projection, undefined, degreeThreshold), - t('operations.orthogonalize.annotation.area') + t('operations.orthogonalize.annotation.feature.single') ); // run after the squaring transition (currently 150ms) window.setTimeout(function() { completionHandler(); }, 175);