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:
Diffstat (limited to 'src/vs/workbench/contrib/notebook/browser/controller/layoutActions.ts')
-rw-r--r--src/vs/workbench/contrib/notebook/browser/controller/layoutActions.ts20
1 files changed, 16 insertions, 4 deletions
diff --git a/src/vs/workbench/contrib/notebook/browser/controller/layoutActions.ts b/src/vs/workbench/contrib/notebook/browser/controller/layoutActions.ts
index 4f6a3e489c5..7f6ac0a645b 100644
--- a/src/vs/workbench/contrib/notebook/browser/controller/layoutActions.ts
+++ b/src/vs/workbench/contrib/notebook/browser/controller/layoutActions.ts
@@ -21,7 +21,10 @@ registerAction2(class NotebookConfigureLayoutAction extends Action2 {
constructor() {
super({
id: 'workbench.notebook.layout.select',
- title: localize('workbench.notebook.layout.select.label', "Select between Notebook Layouts"),
+ title: {
+ value: localize('workbench.notebook.layout.select.label', "Select between Notebook Layouts"),
+ original: 'Select between Notebook Layouts'
+ },
f1: true,
precondition: ContextKeyExpr.equals(`config.${NotebookSetting.openGettingStarted}`, true),
category: NOTEBOOK_ACTIONS_CATEGORY,
@@ -57,7 +60,10 @@ registerAction2(class NotebookConfigureLayoutAction extends Action2 {
constructor() {
super({
id: 'workbench.notebook.layout.configure',
- title: localize('workbench.notebook.layout.configure.label', "Customize Notebook Layout"),
+ title: {
+ value: localize('workbench.notebook.layout.configure.label', "Customize Notebook Layout"),
+ original: 'Customize Notebook Layout'
+ },
f1: true,
category: NOTEBOOK_ACTIONS_CATEGORY,
menu: [
@@ -79,7 +85,10 @@ registerAction2(class NotebookConfigureLayoutFromEditorTitle extends Action2 {
constructor() {
super({
id: 'workbench.notebook.layout.configure.editorTitle',
- title: localize('workbench.notebook.layout.configure.label', "Customize Notebook Layout"),
+ title: {
+ value: localize('workbench.notebook.layout.configure.label', "Customize Notebook Layout"),
+ original: 'Customize Notebook Layout'
+ },
f1: false,
category: NOTEBOOK_ACTIONS_CATEGORY,
menu: [
@@ -177,7 +186,10 @@ registerAction2(class SaveMimeTypeDisplayOrder extends Action2 {
constructor() {
super({
id: 'notebook.saveMimeTypeOrder',
- title: localize('notebook.saveMimeTypeOrder', 'Save Mimetype Display Order'),
+ title: {
+ value: localize('notebook.saveMimeTypeOrder', 'Save Mimetype Display Order'),
+ original: 'Save Mimetype Display Order'
+ },
f1: true,
category: NOTEBOOK_ACTIONS_CATEGORY,
precondition: NOTEBOOK_IS_ACTIVE_EDITOR,