diff --git a/webprotege-gwt-ui-client/src/main/java/edu/stanford/bmir/protege/web/client/postcoordination/scaleValuesCard/ScaleAllowMultiValue.java b/webprotege-gwt-ui-client/src/main/java/edu/stanford/bmir/protege/web/client/postcoordination/scaleValuesCard/ScaleAllowMultiValue.java index 446f31af8..34ccf57b6 100644 --- a/webprotege-gwt-ui-client/src/main/java/edu/stanford/bmir/protege/web/client/postcoordination/scaleValuesCard/ScaleAllowMultiValue.java +++ b/webprotege-gwt-ui-client/src/main/java/edu/stanford/bmir/protege/web/client/postcoordination/scaleValuesCard/ScaleAllowMultiValue.java @@ -8,8 +8,8 @@ import static edu.stanford.bmir.protege.web.resources.WebProtegeClientBundle.BUNDLE; public enum ScaleAllowMultiValue { - NotAllowed(Optional.of(BUNDLE.singleScaleValue()), "In the Coding Tool, this axis allows the selection of multiple values"), - AllowAlways(Optional.of(BUNDLE.multipleScaleValues()),"In the Coding Tool, this axis allows the selection of a single value"), + NotAllowed(Optional.of(BUNDLE.singleScaleValue()), "In the Coding Tool, this axis allows the selection of a single value"), + AllowAlways(Optional.of(BUNDLE.multipleScaleValues()),"In the Coding Tool, this axis allows the selection of multiple values"), AllowedExceptFromSameBlock(Optional.of(BUNDLE.allowScaleValueIfNotFromSameBlock()),"In the Coding Tool, this axis allows the selection of multiple values, but only one value from each block"); private final String tooltip;