sweet checkstrings

This commit is contained in:
Peter Cottle 2013-03-03 15:58:57 -08:00
parent dbdb1e5682
commit 3d01473ec4
2 changed files with 49 additions and 2 deletions

View file

@ -1388,7 +1388,7 @@ GitEngine.prototype.deleteBranch = function(name) {
this.HEAD.get('target') === target) {
throw new GitError({
msg: intl.str('git-error-brnach')
msg: intl.str('git-error-branch')
});
}
@ -1472,7 +1472,7 @@ GitEngine.prototype.statusStarter = function() {
lines.push(intl.str('git-status-detached'));
} else {
var branchName = this.HEAD.get('target').get('id');
lines.push(intl.str('git-stauts-onbranch', {branch: branchName}));
lines.push(intl.str('git-status-onbranch', {branch: branchName}));
}
lines.push('Changes to be committed:');
lines.push('');