mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-06-28 08:50:06 +02:00
Added few missing translations
First of all: + bottom command bar labels + missing command translation + command not supported in current environment translation
This commit is contained in:
parent
905845fa53
commit
38b19a6654
5 changed files with 71 additions and 11 deletions
|
@ -228,7 +228,11 @@ var Command = Backbone.Model.extend({
|
|||
|
||||
// if we reach here, this command is not supported :-/
|
||||
this.set('error', new CommandProcessError({
|
||||
msg: 'The command "' + this.get('rawStr') + '" isn\'t supported, sorry!'
|
||||
msg: intl.str(
|
||||
'git-error-command-not-supported',
|
||||
{
|
||||
command: this.get('rawStr')
|
||||
})
|
||||
})
|
||||
);
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue