From a7a77561f97edee6fad6a2c2e8242bf8bb064c42 Mon Sep 17 00:00:00 2001 From: AgustinVallejo Date: Mon, 29 Aug 2022 09:39:33 -0500 Subject: [PATCH] Changing Property to StringProperty, see https://github.com/phetsims/chipper/issues/1310 --- js/vectorAdditionStrings.ts | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/js/vectorAdditionStrings.ts b/js/vectorAdditionStrings.ts index 9e75a0e9..cfa0cde2 100644 --- a/js/vectorAdditionStrings.ts +++ b/js/vectorAdditionStrings.ts @@ -11,38 +11,38 @@ import vectorAddition from './vectorAddition.js'; type StringsType = { 'vector-addition': { 'title': string; - 'titleProperty': TReadOnlyProperty; + 'titleStringProperty': TReadOnlyProperty; }; 'screen': { 'equations': string; - 'equationsProperty': TReadOnlyProperty; + 'equationsStringProperty': TReadOnlyProperty; 'explore1D': string; - 'explore1DProperty': TReadOnlyProperty; + 'explore1DStringProperty': TReadOnlyProperty; 'explore2D': string; - 'explore2DProperty': TReadOnlyProperty; + 'explore2DStringProperty': TReadOnlyProperty; 'lab': string; - 'labProperty': TReadOnlyProperty; + 'labStringProperty': TReadOnlyProperty; }; 'sum': string; - 'sumProperty': TReadOnlyProperty; + 'sumStringProperty': TReadOnlyProperty; 'values': string; - 'valuesProperty': TReadOnlyProperty; + 'valuesStringProperty': TReadOnlyProperty; 'components': string; - 'componentsProperty': TReadOnlyProperty; + 'componentsStringProperty': TReadOnlyProperty; 'noVectorSelected': string; - 'noVectorSelectedProperty': TReadOnlyProperty; + 'noVectorSelectedStringProperty': TReadOnlyProperty; 'vectorValues': string; - 'vectorValuesProperty': TReadOnlyProperty; + 'vectorValuesStringProperty': TReadOnlyProperty; 'symbol': { 'x': string; - 'xProperty': TReadOnlyProperty; + 'xStringProperty': TReadOnlyProperty; 'y': string; - 'yProperty': TReadOnlyProperty; + 'yStringProperty': TReadOnlyProperty; }; 'baseVectors': string; - 'baseVectorsProperty': TReadOnlyProperty; + 'baseVectorsStringProperty': TReadOnlyProperty; 'equation': string; - 'equationProperty': TReadOnlyProperty; + 'equationStringProperty': TReadOnlyProperty; }; const vectorAdditionStrings = getStringModule( 'VECTOR_ADDITION' ) as StringsType;