From faf4de0d7ac5b3237babd0e84d62e2b24ca33748 Mon Sep 17 00:00:00 2001 From: John Murray Date: Thu, 6 Jan 2022 12:55:48 +0000 Subject: [PATCH] fix #118617 use term 'remote' when referring to lack of upstream branch (#120467) --- extensions/git/src/commands.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extensions/git/src/commands.ts b/extensions/git/src/commands.ts index 7d230790b0f..3629e2d89cf 100644 --- a/extensions/git/src/commands.ts +++ b/extensions/git/src/commands.ts @@ -2136,7 +2136,7 @@ export class CommandCenter { } const branchName = repository.HEAD.name; - const message = localize('confirm publish branch', "The branch '{0}' has no upstream branch. Would you like to publish this branch?", branchName); + const message = localize('confirm publish branch', "The branch '{0}' has no remote branch. Would you like to publish this branch?", branchName); const yes = localize('ok', "OK"); const pick = await window.showWarningMessage(message, { modal: true }, yes); @@ -2286,7 +2286,7 @@ export class CommandCenter { return; } else if (!HEAD.upstream) { const branchName = HEAD.name; - const message = localize('confirm publish branch', "The branch '{0}' has no upstream branch. Would you like to publish this branch?", branchName); + const message = localize('confirm publish branch', "The branch '{0}' has no remote branch. Would you like to publish this branch?", branchName); const yes = localize('ok', "OK"); const pick = await window.showWarningMessage(message, { modal: true }, yes);