rebuild and no more uppercase

This commit is contained in:
Peter Cottle 2013-02-24 00:11:39 -08:00
parent 5e7042c64b
commit 1b0d836a42
10 changed files with 74 additions and 18 deletions

View file

@ -6542,7 +6542,7 @@ var str = exports.str = function(key, params) {
return template(
strings[key][locale],
params
).toUpperCase();
);
};
var getIntlKey = exports.getIntlKey = function(obj, key) {
@ -6599,6 +6599,11 @@ var getStartDialog = exports.getStartDialog = function(level) {
});
require.define("/src/js/intl/strings.js",function(require,module,exports,__dirname,__filename,process,global){exports.strings = {
///////////////////////////////////////////////////////////////////////////
'learn-git-branching': {
'__desc__': 'The title of the app, with spaces',
'en_US': 'Learn Git Branching'
},
///////////////////////////////////////////////////////////////////////////
'select-a-level': {
'__desc__': 'The prompt to select a level on the drop down view',
@ -6754,6 +6759,16 @@ require.define("/src/js/intl/strings.js",function(require,module,exports,__dirna
'en_US': 'You are in a level builder, so multiple forms of help are available. Please select either "help general" or "help builder"'
},
///////////////////////////////////////////////////////////////////////////
'goal-to-reach': {
'__desc__': 'title of window that shoes the goal tree to reach',
'en_US': 'Goal To Reach'
},
///////////////////////////////////////////////////////////////////////////
'hide-goal': {
'__desc__': 'the helper message for the window that shows the goal tree',
'en_US': 'You can hide this window with "hide goal"'
},
///////////////////////////////////////////////////////////////////////////
'hide-start': {
'__desc__': 'The helper message for the window that shows the start tree for a level',
'en_US': 'You can hide this window with "hide start"'
@ -10337,6 +10352,7 @@ var Q = require('q');
var Backbone = (!require('../util').isBrowser()) ? require('backbone') : window.Backbone;
var Main = require('../app');
var intl = require('../intl');
var Constants = require('../util/constants');
var KeyboardListener = require('../util/keyboard').KeyboardListener;
var GitError = require('../util/errors').GitError;
@ -10923,8 +10939,8 @@ var CanvasTerminalHolder = BaseView.extend({
options = options || {};
this.destination = $('body');
this.JSON = {
title: options.title || 'Goal To Reach',
text: options.text || 'You can hide this window with "hide goal"'
title: options.title || intl.str('goal-to-reach'),
text: options.text || intl.str('hide-goal')
};
this.render();
@ -22810,7 +22826,7 @@ var str = exports.str = function(key, params) {
return template(
strings[key][locale],
params
).toUpperCase();
);
};
var getIntlKey = exports.getIntlKey = function(obj, key) {
@ -22868,6 +22884,11 @@ var getStartDialog = exports.getStartDialog = function(level) {
require("/src/js/intl/index.js");
require.define("/src/js/intl/strings.js",function(require,module,exports,__dirname,__filename,process,global){exports.strings = {
///////////////////////////////////////////////////////////////////////////
'learn-git-branching': {
'__desc__': 'The title of the app, with spaces',
'en_US': 'Learn Git Branching'
},
///////////////////////////////////////////////////////////////////////////
'select-a-level': {
'__desc__': 'The prompt to select a level on the drop down view',
@ -23023,6 +23044,16 @@ require.define("/src/js/intl/strings.js",function(require,module,exports,__dirna
'en_US': 'You are in a level builder, so multiple forms of help are available. Please select either "help general" or "help builder"'
},
///////////////////////////////////////////////////////////////////////////
'goal-to-reach': {
'__desc__': 'title of window that shoes the goal tree to reach',
'en_US': 'Goal To Reach'
},
///////////////////////////////////////////////////////////////////////////
'hide-goal': {
'__desc__': 'the helper message for the window that shows the goal tree',
'en_US': 'You can hide this window with "hide goal"'
},
///////////////////////////////////////////////////////////////////////////
'hide-start': {
'__desc__': 'The helper message for the window that shows the start tree for a level',
'en_US': 'You can hide this window with "hide start"'
@ -26634,6 +26665,7 @@ var Q = require('q');
var Backbone = (!require('../util').isBrowser()) ? require('backbone') : window.Backbone;
var Main = require('../app');
var intl = require('../intl');
var Constants = require('../util/constants');
var KeyboardListener = require('../util/keyboard').KeyboardListener;
var GitError = require('../util/errors').GitError;
@ -27220,8 +27252,8 @@ var CanvasTerminalHolder = BaseView.extend({
options = options || {};
this.destination = $('body');
this.JSON = {
title: options.title || 'Goal To Reach',
text: options.text || 'You can hide this window with "hide goal"'
title: options.title || intl.str('goal-to-reach'),
text: options.text || intl.str('hide-goal')
};
this.render();