Skip to content

Commit

Permalink
Git: rename 'Publish' to 'Publish Branch' (fixes #26133)
Browse files Browse the repository at this point in the history
  • Loading branch information
bpasero committed Jun 1, 2017
1 parent 69ddf8a commit eac49a3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion extensions/git/package.nls.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"command.push": "Push",
"command.pushTo": "Push to...",
"command.sync": "Sync",
"command.publish": "Publish",
"command.publish": "Publish Branch",
"command.showOutput": "Show Git Output",
"config.enabled": "Whether git is enabled",
"config.path": "Path to the git executable",
Expand Down
6 changes: 3 additions & 3 deletions extensions/git/src/statusbar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,11 +114,11 @@ class SyncStatusBar {
text += `${HEAD.behind}${HEAD.ahead}↑`;
}
command = 'git.sync';
tooltip = localize('sync changes', "Synchronize changes");
tooltip = localize('sync changes', "Synchronize Changes");
} else {
icon = '$(cloud-upload)';
command = 'git.publish';
tooltip = localize('publish changes', "Publish changes");
tooltip = localize('publish changes', "Publish Changes");
}
} else {
command = '';
Expand All @@ -128,7 +128,7 @@ class SyncStatusBar {
if (this.state.isSyncRunning) {
icon = '$(sync~spin)';
command = '';
tooltip = localize('syncing changes', "Synchronizing changes...");
tooltip = localize('syncing changes', "Synchronizing Changes...");
}

return {
Expand Down

0 comments on commit eac49a3

Please sign in to comment.