mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-06-29 09:20:03 +02:00
Add 'ru_RU' and 'uk' translation of the "Git Demonstration" title
This commit is contained in:
parent
7adbd2967a
commit
4b68934ca1
2 changed files with 9 additions and 1 deletions
|
@ -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',
|
||||
|
|
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue