Skip to content

Commit eac49a3

Browse files
author
Benjamin Pasero
committed
Git: rename 'Publish' to 'Publish Branch' (fixes microsoft#26133)
1 parent 69ddf8a commit eac49a3

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

extensions/git/package.nls.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"command.push": "Push",
2828
"command.pushTo": "Push to...",
2929
"command.sync": "Sync",
30-
"command.publish": "Publish",
30+
"command.publish": "Publish Branch",
3131
"command.showOutput": "Show Git Output",
3232
"config.enabled": "Whether git is enabled",
3333
"config.path": "Path to the git executable",

extensions/git/src/statusbar.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -114,11 +114,11 @@ class SyncStatusBar {
114114
text += `${HEAD.behind}${HEAD.ahead}↑`;
115115
}
116116
command = 'git.sync';
117-
tooltip = localize('sync changes', "Synchronize changes");
117+
tooltip = localize('sync changes', "Synchronize Changes");
118118
} else {
119119
icon = '$(cloud-upload)';
120120
command = 'git.publish';
121-
tooltip = localize('publish changes', "Publish changes");
121+
tooltip = localize('publish changes', "Publish Changes");
122122
}
123123
} else {
124124
command = '';
@@ -128,7 +128,7 @@ class SyncStatusBar {
128128
if (this.state.isSyncRunning) {
129129
icon = '$(sync~spin)';
130130
command = '';
131-
tooltip = localize('syncing changes', "Synchronizing changes...");
131+
tooltip = localize('syncing changes', "Synchronizing Changes...");
132132
}
133133

134134
return {

0 commit comments

Comments
 (0)