diff --git a/extensions/git/src/commands.ts b/extensions/git/src/commands.ts index f8d193f7cbb..399cfd10a16 100644 --- a/extensions/git/src/commands.ts +++ b/extensions/git/src/commands.ts @@ -515,8 +515,8 @@ export class CommandCenter { @command('git.cleanAll') async cleanAll(): Promise { - const message = localize('confirm discard all', "Are you sure you want to discard ALL changes? This is irreversible!"); - const yes = localize('discard', "Discard Changes"); + const message = localize('confirm discard all', "Are you sure you want to discard ALL changes? This is IRREVERSIBLE!"); + const yes = localize('discardAll', "Discard ALL Changes"); const pick = await window.showWarningMessage(message, { modal: true }, yes); if (pick !== yes) {