🐛 make git.cleanAll more alarming

fixes #24803
This commit is contained in:
Joao Moreno 2017-04-27 09:27:00 +02:00
parent c7e23b4c4e
commit 40f2a2f35b

View file

@ -515,8 +515,8 @@ export class CommandCenter {
@command('git.cleanAll')
async cleanAll(): Promise<void> {
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) {