This commit is contained in:
Ladislau Szomoru 2022-04-06 14:36:13 +02:00
parent 7e86d63f29
commit 0b270f9e22
No known key found for this signature in database
GPG key ID: 2375D1D0DB56CEA4

View file

@ -2303,7 +2303,7 @@ export class CommandCenter {
const shouldPrompt = !isReadonly && config.get<boolean>('confirmSync') === true;
if (shouldPrompt) {
const message = localize('sync is unpredictable', "This action will push and pull commits to and from '{0}/{1}'.", HEAD.upstream.remote, HEAD.upstream.name);
const message = localize('sync is unpredictable', "This action will pull and push commits from and to '{0}/{1}'.", HEAD.upstream.remote, HEAD.upstream.name);
const yes = localize('ok', "OK");
const neverAgain = localize('never again', "OK, Don't Show Again");
const pick = await window.showWarningMessage(message, { modal: true }, yes, neverAgain);