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 bb1a17b commit f9921fc
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
1 change: 1 addition & 0 deletions capacitor-lab-basics_en.html
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,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
23 changes: 23 additions & 0 deletions js/capacitorLabBasicsStrings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,36 +5,59 @@
*/
/* eslint-disable */
import getStringModule from '../../chipper/js/getStringModule.js';
import TReadOnlyProperty from '../../axon/js/TReadOnlyProperty.js';
import capacitorLabBasics from './capacitorLabBasics.js';

type StringsType = {
'capacitance': string;
'capacitanceProperty': TReadOnlyProperty<string>;
'conventional': string;
'conventionalProperty': TReadOnlyProperty<string>;
'currentDirection': string;
'currentDirectionProperty': TReadOnlyProperty<string>;
'barGraphs': string;
'barGraphsProperty': TReadOnlyProperty<string>;
'capacitor-lab-basics': {
'title': string;
'titleProperty': TReadOnlyProperty<string>;
};
'screen': {
'capacitance': string;
'capacitanceProperty': TReadOnlyProperty<string>;
'lightBulb': string;
'lightBulbProperty': TReadOnlyProperty<string>;
};
'electricField': string;
'electricFieldProperty': TReadOnlyProperty<string>;
'electrons': string;
'electronsProperty': TReadOnlyProperty<string>;
'plateArea': string;
'plateAreaProperty': TReadOnlyProperty<string>;
'topPlateCharge': string;
'topPlateChargeProperty': TReadOnlyProperty<string>;
'plateCharges': string;
'plateChargesProperty': TReadOnlyProperty<string>;
'separation': string;
'separationProperty': TReadOnlyProperty<string>;
'storedEnergy': string;
'storedEnergyProperty': TReadOnlyProperty<string>;
'voltage': string;
'voltageProperty': TReadOnlyProperty<string>;
'voltsPattern': string;
'voltsPatternProperty': TReadOnlyProperty<string>;
'millimetersPattern': string;
'millimetersPatternProperty': TReadOnlyProperty<string>;
'millimetersSquaredPattern': string;
'millimetersSquaredPatternProperty': TReadOnlyProperty<string>;
'picoJoulesPattern': string;
'picoJoulesPatternProperty': TReadOnlyProperty<string>;
'picoFaradsPattern': string;
'picoFaradsPatternProperty': TReadOnlyProperty<string>;
'picoCoulombsPattern': string;
'picoCoulombsPatternProperty': TReadOnlyProperty<string>;
'volts': {
'unknown': string;
'unknownProperty': TReadOnlyProperty<string>;
}
};

Expand Down

0 comments on commit f9921fc

Please sign in to comment.