* fix: typos

* chore: revert formatting changes

* fix: Remove redundant blank lines
This commit is contained in:
易良
2022-07-26 06:41:30 +08:00
committed by GitHub
parent 1a8d4bf61d
commit fbdc848c29
5 changed files with 7 additions and 8 deletions

View File

@@ -1770,7 +1770,7 @@ export class CommandCenter {
const shouldPrompt = config.get<boolean>('confirmEmptyCommits') === true;
if (shouldPrompt) {
const message = localize('confirm emtpy commit', "Are you sure you want to create an empty commit?");
const message = localize('confirm empty commit', "Are you sure you want to create an empty commit?");
const yes = localize('yes', "Yes");
const neverAgain = localize('yes never again', "Yes, Don't Show Again");
const pick = await window.showWarningMessage(message, { modal: true }, yes, neverAgain);