Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexandru Dima <alexdima@microsoft.com>2022-06-02 16:09:20 +0300
committerGitHub <noreply@github.com>2022-06-02 16:09:20 +0300
commit5103c931a0106e03e0ac9cb8e9f53cf7986af66c (patch)
treeb37ec40c6c058b7042cc41d17ed305035afbc92c /src/vs/workbench/contrib/extensions/electron-sandbox
parent5dd24e362572cc54f2469280be4940ae3b601097 (diff)
Use `nls.localize` for user facing strings (#151094)
Fixes #148535: Use `nls.localize`
Diffstat (limited to 'src/vs/workbench/contrib/extensions/electron-sandbox')
-rw-r--r--src/vs/workbench/contrib/extensions/electron-sandbox/runtimeExtensionsEditor.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vs/workbench/contrib/extensions/electron-sandbox/runtimeExtensionsEditor.ts b/src/vs/workbench/contrib/extensions/electron-sandbox/runtimeExtensionsEditor.ts
index b53ea1625f5..1361647e24b 100644
--- a/src/vs/workbench/contrib/extensions/electron-sandbox/runtimeExtensionsEditor.ts
+++ b/src/vs/workbench/contrib/extensions/electron-sandbox/runtimeExtensionsEditor.ts
@@ -192,8 +192,8 @@ export class SaveExtensionHostProfileAction extends Action {
private async _asyncRun(): Promise<any> {
let picked = await this._nativeHostService.showSaveDialog({
- title: 'Save Extension Host Profile',
- buttonLabel: 'Save',
+ title: nls.localize('saveprofile.dialogTitle', "Save Extension Host Profile"),
+ buttonLabel: nls.localize('saveprofile.saveButton', "Save"),
defaultPath: `CPU-${new Date().toISOString().replace(/[\-:]/g, '')}.cpuprofile`,
filters: [{
name: 'CPU Profiles',