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 a5d5bfc commit b470795
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
1 change: 1 addition & 0 deletions forces-and-motion-basics_en.html
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,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
29 changes: 29 additions & 0 deletions js/forcesAndMotionBasicsStrings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,43 +5,72 @@
*/
/* eslint-disable */
import getStringModule from '../../chipper/js/getStringModule.js';
import TReadOnlyProperty from '../../axon/js/TReadOnlyProperty.js';
import forcesAndMotionBasics from './forcesAndMotionBasics.js';

type StringsType = {
'none': string;
'noneProperty': TReadOnlyProperty<string>;
'force': string;
'forceProperty': TReadOnlyProperty<string>;
'values': string;
'valuesProperty': TReadOnlyProperty<string>;
'redWins': string;
'redWinsProperty': TReadOnlyProperty<string>;
'frictionForce': string;
'frictionForceProperty': TReadOnlyProperty<string>;
'pause': string;
'pauseProperty': TReadOnlyProperty<string>;
'friction': string;
'frictionProperty': TReadOnlyProperty<string>;
'forces-and-motion-basics': {
'title': string;
'titleProperty': TReadOnlyProperty<string>;
};
'leftForce': string;
'leftForceProperty': TReadOnlyProperty<string>;
'appliedForce': string;
'appliedForceProperty': TReadOnlyProperty<string>;
'rightForce': string;
'rightForceProperty': TReadOnlyProperty<string>;
'pattern': {
'0massUnitsKilograms': string;
'0massUnitsKilogramsProperty': TReadOnlyProperty<string>;
'0valueUnitsNewtons': string;
'0valueUnitsNewtonsProperty': TReadOnlyProperty<string>;
'0name': {
'1valueUnitsAcceleration': string;
'1valueUnitsAccelerationProperty': TReadOnlyProperty<string>;
'1valueUnitsVelocity': string;
'1valueUnitsVelocityProperty': TReadOnlyProperty<string>;
};
'0valueUnitsN': string;
'0valueUnitsNProperty': TReadOnlyProperty<string>;
};
'acceleration': string;
'accelerationProperty': TReadOnlyProperty<string>;
'lots': string;
'lotsProperty': TReadOnlyProperty<string>;
'forces': string;
'forcesProperty': TReadOnlyProperty<string>;
'netForce': string;
'netForceProperty': TReadOnlyProperty<string>;
'motion': string;
'motionProperty': TReadOnlyProperty<string>;
'go': string;
'goProperty': TReadOnlyProperty<string>;
'sumOfForcesEqualsZero': string;
'sumOfForcesEqualsZeroProperty': TReadOnlyProperty<string>;
'blueWins': string;
'blueWinsProperty': TReadOnlyProperty<string>;
'sumOfForces': string;
'sumOfForcesProperty': TReadOnlyProperty<string>;
'speed': string;
'speedProperty': TReadOnlyProperty<string>;
'return': string;
'returnProperty': TReadOnlyProperty<string>;
'masses': string;
'massesProperty': TReadOnlyProperty<string>;
};

const forcesAndMotionBasicsStrings = getStringModule( 'FORCES_AND_MOTION_BASICS' ) as StringsType;
Expand Down

0 comments on commit b470795

Please sign in to comment.