From 40f2a2f35bb2a840c2a9d743baa2d6d8b76a3884 Mon Sep 17 00:00:00 2001 From: Joao Moreno Date: Thu, 27 Apr 2017 09:27:00 +0200 Subject: [PATCH] :bug: make git.cleanAll more alarming fixes #24803 --- 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 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) {