Revert "Correct --locale suggestion in --help"

This reverts commit 69df5034e4.
This commit is contained in:
Daniel Imms
2016-08-28 15:06:12 -07:00
parent 056a161249
commit de1778435d

View File

@@ -128,7 +128,7 @@ export const optionsHelp: { [name: string]: string; } = {
'-d, --diff': localize('diff', "Open a diff editor. Requires to pass two file paths as arguments."),
'--disable-extensions': localize('disableExtensions', "Disable all installed extensions."),
'-g, --goto': localize('goto', "Open the file at path at the line and column (add :line[:column] to path)."),
'--locale=<locale>': localize('locale', "The locale to use (e.g. en-US or zh-TW)."),
'--locale <locale>': localize('locale', "The locale to use (e.g. en-US or zh-TW)."),
'-n, --new-window': localize('newWindow', "Force a new instance of Code."),
'-p, --performance': localize('performance', "Start with the 'Developer: Startup Performance' command enabled."),
'-r, --reuse-window': localize('reuseWindow', "Force opening a file or folder in the last active window."),
@@ -186,4 +186,4 @@ Usage: ${ executable } [arguments] [paths...]
Options:
${formatOptions(optionsHelp, columns)}`;
}
}