diff --git a/src/js/intl/strings.js b/src/js/intl/strings.js index 22bb07c0..7e6092ab 100755 --- a/src/js/intl/strings.js +++ b/src/js/intl/strings.js @@ -1024,6 +1024,13 @@ exports.strings = { 'uk': 'Задача' }, /////////////////////////////////////////////////////////////////////////// + 'git-demonstration-title': { + '__desc__': 'title of git demonstration window', + 'en_US': 'Git Demonstration', + 'ru_RU': 'Git демо', + 'uk' : 'Git демо' + }, + /////////////////////////////////////////////////////////////////////////// 'goal-to-reach': { '__desc__': 'title of window that shoes the goal tree to reach', 'en_US': 'Goal To Reach', diff --git a/src/js/views/gitDemonstrationView.js b/src/js/views/gitDemonstrationView.js index e69304c4..498d1901 100644 --- a/src/js/views/gitDemonstrationView.js +++ b/src/js/views/gitDemonstrationView.js @@ -3,6 +3,7 @@ var Q = require('q'); var Backbone = require('backbone'); var util = require('../util'); +var intl = require('../intl'); var KeyboardListener = require('../util/keyboard').KeyboardListener; var Command = require('../models/commandModel').Command; @@ -49,7 +50,7 @@ var GitDemonstrationView = ContainedBase.extend({ this.JSON.afterHTML = convert(this.JSON.afterMarkdowns); this.container = new ModalTerminal({ - title: options.title || 'Git Demonstration' + title: options.title || intl.str('git-demonstration-title') }); this.render(); this.checkScroll();