Skip to content

Commit

Permalink
Added list of all strings that are currently provided, so they will a…
Browse files Browse the repository at this point in the history
…ll appear in the minified file, see #16
  • Loading branch information
samreid committed May 1, 2013
1 parent 9aed7ba commit fc1054d
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions js/OhmsLawStrings.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,55 @@
//So just load them once and make them easily available
define( function( require ) {
"use strict";

//Only the strings specified in the config file get loaded unless you explicitly require them,
// see https://github.com/phetsims/ohms-law/issues/16
require( "i18n!../nls/ar/ohms-law-strings" );
require( "i18n!../nls/ar-sa/ohms-law-strings" );
require( "i18n!../nls/cs/ohms-law-strings" );
require( "i18n!../nls/da/ohms-law-strings" );
require( "i18n!../nls/de/ohms-law-strings" );
require( "i18n!../nls/el/ohms-law-strings" );
require( "i18n!../nls/es/ohms-law-strings" );
require( "i18n!../nls/es-pe/ohms-law-strings" );
require( "i18n!../nls/et/ohms-law-strings" );
require( "i18n!../nls/eu/ohms-law-strings" );
require( "i18n!../nls/fa/ohms-law-strings" );
require( "i18n!../nls/fi/ohms-law-strings" );
require( "i18n!../nls/fr/ohms-law-strings" );
require( "i18n!../nls/gl/ohms-law-strings" );
require( "i18n!../nls/hr/ohms-law-strings" );
require( "i18n!../nls/hu/ohms-law-strings" );
require( "i18n!../nls/in/ohms-law-strings" );
require( "i18n!../nls/it/ohms-law-strings" );
require( "i18n!../nls/iw/ohms-law-strings" );
require( "i18n!../nls/ja/ohms-law-strings" );
require( "i18n!../nls/ka/ohms-law-strings" );
require( "i18n!../nls/ko/ohms-law-strings" );
require( "i18n!../nls/lv/ohms-law-strings" );
require( "i18n!../nls/mk/ohms-law-strings" );
require( "i18n!../nls/mn/ohms-law-strings" );
require( "i18n!../nls/mr/ohms-law-strings" );
require( "i18n!../nls/ms/ohms-law-strings" );
require( "i18n!../nls/nb/ohms-law-strings" );
require( "i18n!../nls/nl/ohms-law-strings" );
require( "i18n!../nls/pl/ohms-law-strings" );
require( "i18n!../nls/pt/ohms-law-strings" );
require( "i18n!../nls/pt-br/ohms-law-strings" );
require( "i18n!../nls/ro/ohms-law-strings" );
require( "i18n!../nls/ru/ohms-law-strings" );
require( "i18n!../nls/sk/ohms-law-strings" );
require( "i18n!../nls/sl/ohms-law-strings" );
require( "i18n!../nls/sr/ohms-law-strings" );
require( "i18n!../nls/sv/ohms-law-strings" );
require( "i18n!../nls/ta/ohms-law-strings" );
require( "i18n!../nls/tk/ohms-law-strings" );
require( "i18n!../nls/tr/ohms-law-strings" );
require( "i18n!../nls/uk/ohms-law-strings" );
require( "i18n!../nls/vi/ohms-law-strings" );
require( "i18n!../nls/zh-cn/ohms-law-strings" );
require( "i18n!../nls/zh-tw/ohms-law-strings" );

var Strings = require( "i18n!../nls/ohms-law-strings" );
return Strings;
} );

0 comments on commit fc1054d

Please sign in to comment.