Skip to content

Commit

Permalink
Grunt update, and changes for string Properties, see phetsims/chipper…
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanolson committed Aug 16, 2022
1 parent 7bab1f6 commit 98f34ca
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
1 change: 1 addition & 0 deletions expression-exchange_en.html
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@
let preloads = [
'../joist/js/splash.js',
'../sherpa/lib/jquery-2.1.0.js',
'../sherpa/lib/jsondiffpatch-v0.3.11.umd.js',
'../sherpa/lib/lodash-4.17.4.js',
'../sherpa/lib/FileSaver-b8054a2.js',
'../sherpa/lib/himalaya-1.1.0.js',
Expand Down
17 changes: 17 additions & 0 deletions js/expressionExchangeStrings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,27 +5,44 @@
*/
/* eslint-disable */
import getStringModule from '../../chipper/js/getStringModule.js';
import TReadOnlyProperty from '../../axon/js/TReadOnlyProperty.js';
import expressionExchange from './expressionExchange.js';

type StringsType = {
'coinValues': string;
'coinValuesProperty': TReadOnlyProperty<string>;
'done': string;
'doneProperty': TReadOnlyProperty<string>;
'numberCentsPattern': string;
'numberCentsPatternProperty': TReadOnlyProperty<string>;
'expression-exchange': {
'title': string;
'titleProperty': TReadOnlyProperty<string>;
};
'explore': string;
'exploreProperty': TReadOnlyProperty<string>;
'basics': string;
'basicsProperty': TReadOnlyProperty<string>;
'negatives': string;
'negativesProperty': TReadOnlyProperty<string>;
'game': string;
'gameProperty': TReadOnlyProperty<string>;
'myCollection': string;
'myCollectionProperty': TReadOnlyProperty<string>;
'allCoefficients': string;
'allCoefficientsProperty': TReadOnlyProperty<string>;
'total': string;
'totalProperty': TReadOnlyProperty<string>;
'variableValues': string;
'variableValuesProperty': TReadOnlyProperty<string>;
'variables': string;
'variablesProperty': TReadOnlyProperty<string>;
'levelNumberPattern': string;
'levelNumberPatternProperty': TReadOnlyProperty<string>;
'next': string;
'nextProperty': TReadOnlyProperty<string>;
'youCompletedAllLevels': string;
'youCompletedAllLevelsProperty': TReadOnlyProperty<string>;
};

const expressionExchangeStrings = getStringModule( 'EXPRESSION_EXCHANGE' ) as StringsType;
Expand Down

0 comments on commit 98f34ca

Please sign in to comment.