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:
YourSenseiCreeper 2021-02-08 15:51:11 +01:00
parent 905845fa53
commit 38b19a6654
5 changed files with 71 additions and 11 deletions

View file

@ -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')
})
})
);
},