@codingame/monaco-vscode-notebook-service-override 9.0.0 → 9.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. package/package.json +2 -2
  2. package/vscode/src/vs/workbench/contrib/codeEditor/browser/emptyTextEditorHint/emptyTextEditorHint.js +8 -8
  3. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/cellCommands/cellCommands.js +21 -21
  4. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/cellDiagnostics/cellDiagnosticsActions.js +2 -2
  5. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/cellDiagnostics/diagnosticCellStatusBarContrib.js +1 -1
  6. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/cellStatusBar/statusBarProviders.js +3 -3
  7. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/clipboard/notebookClipboard.js +6 -6
  8. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/editorStatusBar/editorStatusBar.js +10 -10
  9. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/find/notebookFind.js +2 -2
  10. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/format/formatting.js +4 -4
  11. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/gettingStarted/notebookGettingStarted.js +1 -1
  12. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/layout/layoutActions.js +1 -1
  13. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/multicursor/notebookMulticursor.js +3 -3
  14. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/navigation/arrow.js +13 -13
  15. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariables.js +1 -1
  16. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariablesView.js +1 -1
  17. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/outline/notebookOutline.js +9 -9
  18. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/profile/notebookProfile.js +1 -1
  19. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/saveParticipants/saveParticipants.js +12 -12
  20. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/troubleshoot/layout.js +3 -3
  21. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/chat/cellChatActions.js +24 -24
  22. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/editActions.js +24 -24
  23. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/executeActions.js +22 -22
  24. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/insertCellActions.js +24 -24
  25. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/layoutActions.js +17 -17
  26. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/notebookIndentationActions.js +7 -7
  27. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/sectionActions.js +12 -12
  28. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffActions.js +16 -16
  29. package/vscode/src/vs/workbench/contrib/notebook/browser/notebook.contribution.js +59 -59
  30. package/vscode/src/vs/workbench/contrib/notebook/browser/notebookAccessibilityHelp.js +10 -10
  31. package/vscode/src/vs/workbench/contrib/notebook/browser/notebookExtensionPoint.js +33 -33
  32. package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookExecutionServiceImpl.js +1 -1
  33. package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookKernelHistoryServiceImpl.js +1 -1
  34. package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookKeymapServiceImpl.js +3 -3
  35. package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookLoggingServiceImpl.js +1 -1
  36. package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookServiceImpl.js +1 -1
  37. package/vscode/src/vs/workbench/services/workingCopy/common/fileWorkingCopyManager.js +12 -12
  38. package/vscode/src/vs/workbench/services/workingCopy/common/storedFileWorkingCopyManager.js +1 -1
@@ -90,7 +90,7 @@ registerAction2(class RenderAllMarkdownCellsAction extends NotebookAction {
90
90
  constructor() {
91
91
  super({
92
92
  id: RENDER_ALL_MARKDOWN_CELLS,
93
- title: ( localize(8104, "Render All Markdown Cells")),
93
+ title: ( localize(7895, "Render All Markdown Cells")),
94
94
  });
95
95
  }
96
96
  async runWithContext(accessor, context) {
@@ -101,10 +101,10 @@ registerAction2(class ExecuteNotebookAction extends NotebookAction {
101
101
  constructor() {
102
102
  super({
103
103
  id: EXECUTE_NOTEBOOK_COMMAND_ID,
104
- title: ( localize(8105, "Run All")),
104
+ title: ( localize(7896, "Run All")),
105
105
  icon: executeAllIcon,
106
106
  metadata: {
107
- description: ( localize(8105, "Run All")),
107
+ description: ( localize(7896, "Run All")),
108
108
  args: [
109
109
  {
110
110
  name: 'uri',
@@ -162,7 +162,7 @@ registerAction2(class ExecuteCell extends NotebookMultiCellAction {
162
162
  super({
163
163
  id: EXECUTE_CELL_COMMAND_ID,
164
164
  precondition: executeThisCellCondition,
165
- title: ( localize(8106, "Execute Cell")),
165
+ title: ( localize(7897, "Execute Cell")),
166
166
  keybinding: {
167
167
  when: ( (ContextKeyExpr.or(
168
168
  NOTEBOOK_CELL_LIST_FOCUSED,
@@ -180,7 +180,7 @@ registerAction2(class ExecuteCell extends NotebookMultiCellAction {
180
180
  group: 'inline'
181
181
  },
182
182
  metadata: {
183
- description: ( localize(8106, "Execute Cell")),
183
+ description: ( localize(7897, "Execute Cell")),
184
184
  args: cellExecutionArgs
185
185
  },
186
186
  icon: executeIcon
@@ -214,7 +214,7 @@ registerAction2(class ExecuteAboveCells extends NotebookMultiCellAction {
214
214
  super({
215
215
  id: EXECUTE_CELLS_ABOVE,
216
216
  precondition: executeCondition,
217
- title: ( localize(8107, "Execute Above Cells")),
217
+ title: ( localize(7898, "Execute Above Cells")),
218
218
  menu: [
219
219
  {
220
220
  id: MenuId.NotebookCellExecute,
@@ -260,7 +260,7 @@ registerAction2(class ExecuteCellAndBelow extends NotebookMultiCellAction {
260
260
  super({
261
261
  id: EXECUTE_CELL_AND_BELOW,
262
262
  precondition: executeCondition,
263
- title: ( localize(8108, "Execute Cell and Below")),
263
+ title: ( localize(7899, "Execute Cell and Below")),
264
264
  menu: [
265
265
  {
266
266
  id: MenuId.NotebookCellExecute,
@@ -306,9 +306,9 @@ registerAction2(class ExecuteCellFocusContainer extends NotebookMultiCellAction
306
306
  super({
307
307
  id: EXECUTE_CELL_FOCUS_CONTAINER_COMMAND_ID,
308
308
  precondition: executeThisCellCondition,
309
- title: ( localize(8109, "Execute Cell and Focus Container")),
309
+ title: ( localize(7900, "Execute Cell and Focus Container")),
310
310
  metadata: {
311
- description: ( localize(8109, "Execute Cell and Focus Container")),
311
+ description: ( localize(7900, "Execute Cell and Focus Container")),
312
312
  args: cellExecutionArgs
313
313
  },
314
314
  icon: executeIcon
@@ -340,7 +340,7 @@ registerAction2(class CancelExecuteCell extends NotebookMultiCellAction {
340
340
  super({
341
341
  id: CANCEL_CELL_COMMAND_ID,
342
342
  precondition: cellCancelCondition,
343
- title: ( localize(8110, "Stop Cell Execution")),
343
+ title: ( localize(7901, "Stop Cell Execution")),
344
344
  icon: stopIcon,
345
345
  menu: {
346
346
  id: MenuId.NotebookCellExecutePrimary,
@@ -348,7 +348,7 @@ registerAction2(class CancelExecuteCell extends NotebookMultiCellAction {
348
348
  group: 'inline'
349
349
  },
350
350
  metadata: {
351
- description: ( localize(8110, "Stop Cell Execution")),
351
+ description: ( localize(7901, "Stop Cell Execution")),
352
352
  args: [
353
353
  {
354
354
  name: 'options',
@@ -406,7 +406,7 @@ registerAction2(class ExecuteCellSelectBelow extends NotebookCellAction {
406
406
  executeThisCellCondition,
407
407
  (NOTEBOOK_CELL_TYPE.isEqualTo('markup'))
408
408
  ))),
409
- title: ( localize(8111, "Execute Notebook Cell and Select Below")),
409
+ title: ( localize(7902, "Execute Notebook Cell and Select Below")),
410
410
  keybinding: {
411
411
  when: ( (ContextKeyExpr.and(
412
412
  NOTEBOOK_CELL_LIST_FOCUSED,
@@ -472,7 +472,7 @@ registerAction2(class ExecuteCellInsertBelow extends NotebookCellAction {
472
472
  executeThisCellCondition,
473
473
  (NOTEBOOK_CELL_TYPE.isEqualTo('markup'))
474
474
  ))),
475
- title: ( localize(8112, "Execute Notebook Cell and Insert Below")),
475
+ title: ( localize(7903, "Execute Notebook Cell and Insert Below")),
476
476
  keybinding: {
477
477
  when: NOTEBOOK_CELL_LIST_FOCUSED,
478
478
  primary: KeyMod.Alt | KeyCode.Enter,
@@ -509,7 +509,7 @@ registerAction2(class CancelAllNotebook extends CancelNotebook {
509
509
  constructor() {
510
510
  super({
511
511
  id: CANCEL_NOTEBOOK_COMMAND_ID,
512
- title: ( localize2(8113, "Stop Execution")),
512
+ title: ( localize2(7904, "Stop Execution")),
513
513
  icon: stopIcon,
514
514
  menu: [
515
515
  {
@@ -541,7 +541,7 @@ registerAction2(class InterruptNotebook extends CancelNotebook {
541
541
  constructor() {
542
542
  super({
543
543
  id: INTERRUPT_NOTEBOOK_COMMAND_ID,
544
- title: ( localize2(8114, "Interrupt")),
544
+ title: ( localize2(7905, "Interrupt")),
545
545
  precondition: ( (ContextKeyExpr.and(NOTEBOOK_HAS_SOMETHING_RUNNING, NOTEBOOK_INTERRUPTIBLE_KERNEL))),
546
546
  icon: stopIcon,
547
547
  menu: [
@@ -575,7 +575,7 @@ registerAction2(class InterruptNotebook extends CancelNotebook {
575
575
  }
576
576
  });
577
577
  MenuRegistry.appendMenuItem(MenuId.NotebookToolbar, {
578
- title: ( localize(8115, "Go To")),
578
+ title: ( localize(7906, "Go To")),
579
579
  submenu: MenuId.NotebookCellExecuteGoTo,
580
580
  group: 'navigation/execute',
581
581
  order: 20,
@@ -585,9 +585,9 @@ registerAction2(class RevealRunningCellAction extends NotebookAction {
585
585
  constructor() {
586
586
  super({
587
587
  id: REVEAL_RUNNING_CELL,
588
- title: ( localize(8116, "Go to Running Cell")),
589
- tooltip: ( localize(8116, "Go to Running Cell")),
590
- shortTitle: ( localize(8116, "Go to Running Cell")),
588
+ title: ( localize(7907, "Go to Running Cell")),
589
+ tooltip: ( localize(7907, "Go to Running Cell")),
590
+ shortTitle: ( localize(7907, "Go to Running Cell")),
591
591
  precondition: NOTEBOOK_HAS_RUNNING_CELL,
592
592
  menu: [
593
593
  {
@@ -656,9 +656,9 @@ registerAction2(class RevealLastFailedCellAction extends NotebookAction {
656
656
  constructor() {
657
657
  super({
658
658
  id: REVEAL_LAST_FAILED_CELL,
659
- title: ( localize(8117, "Go to Most Recently Failed Cell")),
660
- tooltip: ( localize(8117, "Go to Most Recently Failed Cell")),
661
- shortTitle: ( localize(8118, "Go to Most Recently Failed Cell")),
659
+ title: ( localize(7908, "Go to Most Recently Failed Cell")),
660
+ tooltip: ( localize(7908, "Go to Most Recently Failed Cell")),
661
+ shortTitle: ( localize(7909, "Go to Most Recently Failed Cell")),
662
662
  precondition: NOTEBOOK_LAST_CELL_FAILED,
663
663
  menu: [
664
664
  {
@@ -55,7 +55,7 @@ registerAction2(class InsertCodeCellAboveAction extends InsertCellCommand {
55
55
  constructor() {
56
56
  super({
57
57
  id: INSERT_CODE_CELL_ABOVE_COMMAND_ID,
58
- title: ( localize(8088, "Insert Code Cell Above")),
58
+ title: ( localize(7879, "Insert Code Cell Above")),
59
59
  keybinding: {
60
60
  primary: KeyMod.CtrlCmd | KeyMod.Shift | KeyCode.Enter,
61
61
  when: ( (ContextKeyExpr.and(
@@ -75,7 +75,7 @@ registerAction2(class InsertCodeCellAboveAndFocusContainerAction extends InsertC
75
75
  constructor() {
76
76
  super({
77
77
  id: INSERT_CODE_CELL_ABOVE_AND_FOCUS_CONTAINER_COMMAND_ID,
78
- title: ( localize(8089, "Insert Code Cell Above and Focus Container"))
78
+ title: ( localize(7880, "Insert Code Cell Above and Focus Container"))
79
79
  }, CellKind.Code, 'above', false);
80
80
  }
81
81
  });
@@ -83,7 +83,7 @@ registerAction2(class InsertCodeCellBelowAction extends InsertCellCommand {
83
83
  constructor() {
84
84
  super({
85
85
  id: INSERT_CODE_CELL_BELOW_COMMAND_ID,
86
- title: ( localize(8090, "Insert Code Cell Below")),
86
+ title: ( localize(7881, "Insert Code Cell Below")),
87
87
  keybinding: {
88
88
  primary: KeyMod.CtrlCmd | KeyCode.Enter,
89
89
  when: ( (ContextKeyExpr.and(
@@ -104,7 +104,7 @@ registerAction2(class InsertCodeCellBelowAndFocusContainerAction extends InsertC
104
104
  constructor() {
105
105
  super({
106
106
  id: INSERT_CODE_CELL_BELOW_AND_FOCUS_CONTAINER_COMMAND_ID,
107
- title: ( localize(8091, "Insert Code Cell Below and Focus Container")),
107
+ title: ( localize(7882, "Insert Code Cell Below and Focus Container")),
108
108
  }, CellKind.Code, 'below', false);
109
109
  }
110
110
  });
@@ -112,7 +112,7 @@ registerAction2(class InsertMarkdownCellAboveAction extends InsertCellCommand {
112
112
  constructor() {
113
113
  super({
114
114
  id: INSERT_MARKDOWN_CELL_ABOVE_COMMAND_ID,
115
- title: ( localize(8092, "Insert Markdown Cell Above")),
115
+ title: ( localize(7883, "Insert Markdown Cell Above")),
116
116
  menu: {
117
117
  id: MenuId.NotebookCellInsert,
118
118
  order: 2
@@ -124,7 +124,7 @@ registerAction2(class InsertMarkdownCellBelowAction extends InsertCellCommand {
124
124
  constructor() {
125
125
  super({
126
126
  id: INSERT_MARKDOWN_CELL_BELOW_COMMAND_ID,
127
- title: ( localize(8093, "Insert Markdown Cell Below")),
127
+ title: ( localize(7884, "Insert Markdown Cell Below")),
128
128
  menu: {
129
129
  id: MenuId.NotebookCellInsert,
130
130
  order: 3
@@ -136,7 +136,7 @@ registerAction2(class InsertCodeCellAtTopAction extends NotebookAction {
136
136
  constructor() {
137
137
  super({
138
138
  id: INSERT_CODE_CELL_AT_TOP_COMMAND_ID,
139
- title: ( localize(8094, "Add Code Cell At Top")),
139
+ title: ( localize(7885, "Add Code Cell At Top")),
140
140
  f1: false
141
141
  });
142
142
  }
@@ -158,7 +158,7 @@ registerAction2(class InsertMarkdownCellAtTopAction extends NotebookAction {
158
158
  constructor() {
159
159
  super({
160
160
  id: INSERT_MARKDOWN_CELL_AT_TOP_COMMAND_ID,
161
- title: ( localize(8095, "Add Markdown Cell At Top")),
161
+ title: ( localize(7886, "Add Markdown Cell At Top")),
162
162
  f1: false
163
163
  });
164
164
  }
@@ -179,8 +179,8 @@ registerAction2(class InsertMarkdownCellAtTopAction extends NotebookAction {
179
179
  MenuRegistry.appendMenuItem(MenuId.NotebookCellBetween, {
180
180
  command: {
181
181
  id: INSERT_CODE_CELL_BELOW_COMMAND_ID,
182
- title: '$(add) ' + ( localize(8096, "Code")),
183
- tooltip: ( localize(8097, "Add Code Cell"))
182
+ title: '$(add) ' + ( localize(7887, "Code")),
183
+ tooltip: ( localize(7888, "Add Code Cell"))
184
184
  },
185
185
  order: 0,
186
186
  group: 'inline',
@@ -192,9 +192,9 @@ MenuRegistry.appendMenuItem(MenuId.NotebookCellBetween, {
192
192
  MenuRegistry.appendMenuItem(MenuId.NotebookCellBetween, {
193
193
  command: {
194
194
  id: INSERT_CODE_CELL_BELOW_COMMAND_ID,
195
- title: ( localize(8098, "Add Code")),
195
+ title: ( localize(7889, "Add Code")),
196
196
  icon: Codicon.add,
197
- tooltip: ( localize(8097, "Add Code Cell"))
197
+ tooltip: ( localize(7888, "Add Code Cell"))
198
198
  },
199
199
  order: 0,
200
200
  group: 'inline',
@@ -207,8 +207,8 @@ MenuRegistry.appendMenuItem(MenuId.NotebookToolbar, {
207
207
  command: {
208
208
  id: INSERT_CODE_CELL_BELOW_COMMAND_ID,
209
209
  icon: Codicon.add,
210
- title: ( localize(8099, "Code")),
211
- tooltip: ( localize(8097, "Add Code Cell"))
210
+ title: ( localize(7890, "Code")),
211
+ tooltip: ( localize(7888, "Add Code Cell"))
212
212
  },
213
213
  order: -5,
214
214
  group: 'navigation/add',
@@ -221,8 +221,8 @@ MenuRegistry.appendMenuItem(MenuId.NotebookToolbar, {
221
221
  MenuRegistry.appendMenuItem(MenuId.NotebookCellListTop, {
222
222
  command: {
223
223
  id: INSERT_CODE_CELL_AT_TOP_COMMAND_ID,
224
- title: '$(add) ' + ( localize(8096, "Code")),
225
- tooltip: ( localize(8097, "Add Code Cell"))
224
+ title: '$(add) ' + ( localize(7887, "Code")),
225
+ tooltip: ( localize(7888, "Add Code Cell"))
226
226
  },
227
227
  order: 0,
228
228
  group: 'inline',
@@ -234,9 +234,9 @@ MenuRegistry.appendMenuItem(MenuId.NotebookCellListTop, {
234
234
  MenuRegistry.appendMenuItem(MenuId.NotebookCellListTop, {
235
235
  command: {
236
236
  id: INSERT_CODE_CELL_AT_TOP_COMMAND_ID,
237
- title: ( localize(8100, "Add Code")),
237
+ title: ( localize(7891, "Add Code")),
238
238
  icon: Codicon.add,
239
- tooltip: ( localize(8097, "Add Code Cell"))
239
+ tooltip: ( localize(7888, "Add Code Cell"))
240
240
  },
241
241
  order: 0,
242
242
  group: 'inline',
@@ -248,8 +248,8 @@ MenuRegistry.appendMenuItem(MenuId.NotebookCellListTop, {
248
248
  MenuRegistry.appendMenuItem(MenuId.NotebookCellBetween, {
249
249
  command: {
250
250
  id: INSERT_MARKDOWN_CELL_BELOW_COMMAND_ID,
251
- title: '$(add) ' + ( localize(8101, "Markdown")),
252
- tooltip: ( localize(8102, "Add Markdown Cell"))
251
+ title: '$(add) ' + ( localize(7892, "Markdown")),
252
+ tooltip: ( localize(7893, "Add Markdown Cell"))
253
253
  },
254
254
  order: 1,
255
255
  group: 'inline',
@@ -262,8 +262,8 @@ MenuRegistry.appendMenuItem(MenuId.NotebookToolbar, {
262
262
  command: {
263
263
  id: INSERT_MARKDOWN_CELL_BELOW_COMMAND_ID,
264
264
  icon: Codicon.add,
265
- title: ( localize(8103, "Markdown")),
266
- tooltip: ( localize(8102, "Add Markdown Cell"))
265
+ title: ( localize(7894, "Markdown")),
266
+ tooltip: ( localize(7893, "Add Markdown Cell"))
267
267
  },
268
268
  order: -5,
269
269
  group: 'navigation/add',
@@ -278,8 +278,8 @@ MenuRegistry.appendMenuItem(MenuId.NotebookToolbar, {
278
278
  MenuRegistry.appendMenuItem(MenuId.NotebookCellListTop, {
279
279
  command: {
280
280
  id: INSERT_MARKDOWN_CELL_AT_TOP_COMMAND_ID,
281
- title: '$(add) ' + ( localize(8101, "Markdown")),
282
- tooltip: ( localize(8102, "Add Markdown Cell"))
281
+ title: '$(add) ' + ( localize(7892, "Markdown")),
282
+ tooltip: ( localize(7893, "Add Markdown Cell"))
283
283
  },
284
284
  order: 1,
285
285
  group: 'inline',
@@ -22,7 +22,7 @@ registerAction2(class NotebookConfigureLayoutAction extends Action2 {
22
22
  constructor() {
23
23
  super({
24
24
  id: 'workbench.notebook.layout.select',
25
- title: ( localize2(8127, "Select between Notebook Layouts")),
25
+ title: ( localize2(7918, "Select between Notebook Layouts")),
26
26
  f1: true,
27
27
  precondition: ( (ContextKeyExpr.equals(`config.${NotebookSetting.openGettingStarted}`, true))),
28
28
  category: NOTEBOOK_ACTIONS_CATEGORY,
@@ -57,7 +57,7 @@ registerAction2(class NotebookConfigureLayoutAction extends Action2 {
57
57
  constructor() {
58
58
  super({
59
59
  id: 'workbench.notebook.layout.configure',
60
- title: ( localize2(8128, "Customize Notebook Layout")),
60
+ title: ( localize2(7919, "Customize Notebook Layout")),
61
61
  f1: true,
62
62
  category: NOTEBOOK_ACTIONS_CATEGORY,
63
63
  menu: [
@@ -78,7 +78,7 @@ registerAction2(class NotebookConfigureLayoutFromEditorTitle extends Action2 {
78
78
  constructor() {
79
79
  super({
80
80
  id: 'workbench.notebook.layout.configure.editorTitle',
81
- title: ( localize2(8128, "Customize Notebook Layout")),
81
+ title: ( localize2(7919, "Customize Notebook Layout")),
82
82
  f1: false,
83
83
  category: NOTEBOOK_ACTIONS_CATEGORY,
84
84
  menu: [
@@ -98,7 +98,7 @@ registerAction2(class NotebookConfigureLayoutFromEditorTitle extends Action2 {
98
98
  MenuRegistry.appendMenuItem(MenuId.EditorTitle, {
99
99
  submenu: MenuId.NotebookEditorLayoutConfigure,
100
100
  rememberDefaultAction: false,
101
- title: ( localize2(8129, "Customize Notebook...")),
101
+ title: ( localize2(7920, "Customize Notebook...")),
102
102
  icon: Codicon.gear,
103
103
  group: 'navigation',
104
104
  order: -1,
@@ -108,7 +108,7 @@ registerAction2(class ToggleLineNumberFromEditorTitle extends Action2 {
108
108
  constructor() {
109
109
  super({
110
110
  id: 'notebook.toggleLineNumbersFromEditorTitle',
111
- title: ( localize2(8130, 'Toggle Notebook Line Numbers')),
111
+ title: ( localize2(7921, 'Toggle Notebook Line Numbers')),
112
112
  precondition: NOTEBOOK_EDITOR_FOCUSED,
113
113
  menu: [
114
114
  {
@@ -122,7 +122,7 @@ registerAction2(class ToggleLineNumberFromEditorTitle extends Action2 {
122
122
  f1: true,
123
123
  toggled: {
124
124
  condition: ( (ContextKeyExpr.notEquals('config.notebook.lineNumbers', 'off'))),
125
- title: ( localize(8131, "Notebook Line Numbers")),
125
+ title: ( localize(7922, "Notebook Line Numbers")),
126
126
  }
127
127
  });
128
128
  }
@@ -134,7 +134,7 @@ registerAction2(class ToggleCellToolbarPositionFromEditorTitle extends Action2 {
134
134
  constructor() {
135
135
  super({
136
136
  id: 'notebook.toggleCellToolbarPositionFromEditorTitle',
137
- title: ( localize2(8132, 'Toggle Cell Toolbar Position')),
137
+ title: ( localize2(7923, 'Toggle Cell Toolbar Position')),
138
138
  menu: [{
139
139
  id: MenuId.NotebookEditorLayoutConfigure,
140
140
  group: 'notebookLayoutDetails',
@@ -152,7 +152,7 @@ registerAction2(class ToggleBreadcrumbFromEditorTitle extends Action2 {
152
152
  constructor() {
153
153
  super({
154
154
  id: 'breadcrumbs.toggleFromEditorTitle',
155
- title: ( localize2(8133, 'Toggle Breadcrumbs')),
155
+ title: ( localize2(7924, 'Toggle Breadcrumbs')),
156
156
  menu: [{
157
157
  id: MenuId.NotebookEditorLayoutConfigure,
158
158
  group: 'notebookLayoutDetails',
@@ -169,7 +169,7 @@ registerAction2(class SaveMimeTypeDisplayOrder extends Action2 {
169
169
  constructor() {
170
170
  super({
171
171
  id: 'notebook.saveMimeTypeOrder',
172
- title: ( localize2(8134, "Save Mimetype Display Order")),
172
+ title: ( localize2(7925, "Save Mimetype Display Order")),
173
173
  f1: true,
174
174
  category: NOTEBOOK_ACTIONS_CATEGORY,
175
175
  precondition: NOTEBOOK_IS_ACTIVE_EDITOR,
@@ -179,10 +179,10 @@ registerAction2(class SaveMimeTypeDisplayOrder extends Action2 {
179
179
  const service = accessor.get(INotebookService);
180
180
  const disposables = ( (new DisposableStore()));
181
181
  const qp = disposables.add(accessor.get(IQuickInputService).createQuickPick());
182
- qp.placeholder = ( localize(8135, 'Settings file to save in'));
182
+ qp.placeholder = ( localize(7926, 'Settings file to save in'));
183
183
  qp.items = [
184
- { target: ConfigurationTarget.USER, label: ( localize(8136, 'User Settings')) },
185
- { target: ConfigurationTarget.WORKSPACE, label: ( localize(8137, 'Workspace Settings')) },
184
+ { target: ConfigurationTarget.USER, label: ( localize(7927, 'User Settings')) },
185
+ { target: ConfigurationTarget.WORKSPACE, label: ( localize(7928, 'Workspace Settings')) },
186
186
  ];
187
187
  disposables.add(qp.onDidAccept(() => {
188
188
  const target = qp.selectedItems[0]?.target;
@@ -199,7 +199,7 @@ registerAction2(class NotebookWebviewResetAction extends Action2 {
199
199
  constructor() {
200
200
  super({
201
201
  id: 'workbench.notebook.layout.webview.reset',
202
- title: ( localize2(8138, "Reset Notebook Webview")),
202
+ title: ( localize2(7929, "Reset Notebook Webview")),
203
203
  f1: false,
204
204
  category: NOTEBOOK_ACTIONS_CATEGORY
205
205
  });
@@ -230,14 +230,14 @@ registerAction2(class ToggleNotebookStickyScroll extends Action2 {
230
230
  super({
231
231
  id: 'notebook.action.toggleNotebookStickyScroll',
232
232
  title: {
233
- ...( localize2(8139, "Toggle Notebook Sticky Scroll")),
234
- mnemonicTitle: ( localize(8140, "&&Toggle Notebook Sticky Scroll")),
233
+ ...( localize2(7930, "Toggle Notebook Sticky Scroll")),
234
+ mnemonicTitle: ( localize(7931, "&&Toggle Notebook Sticky Scroll")),
235
235
  },
236
236
  category: Categories.View,
237
237
  toggled: {
238
238
  condition: ( (ContextKeyExpr.equals('config.notebook.stickyScroll.enabled', true))),
239
- title: ( localize(8141, "Toggle Notebook Sticky Scroll")),
240
- mnemonicTitle: ( localize(8140, "&&Toggle Notebook Sticky Scroll")),
239
+ title: ( localize(7932, "Toggle Notebook Sticky Scroll")),
240
+ mnemonicTitle: ( localize(7931, "&&Toggle Notebook Sticky Scroll")),
241
241
  },
242
242
  menu: [
243
243
  { id: MenuId.CommandPalette },
@@ -17,7 +17,7 @@ class NotebookIndentUsingTabs extends Action2 {
17
17
  constructor() {
18
18
  super({
19
19
  id: NotebookIndentUsingTabs.ID,
20
- title: ( localize(10771, "Indent Using Tabs")),
20
+ title: ( localize(10740, "Indent Using Tabs")),
21
21
  precondition: undefined,
22
22
  });
23
23
  }
@@ -30,7 +30,7 @@ class NotebookIndentUsingSpaces extends Action2 {
30
30
  constructor() {
31
31
  super({
32
32
  id: NotebookIndentUsingSpaces.ID,
33
- title: ( localize(10772, "Indent Using Spaces")),
33
+ title: ( localize(10741, "Indent Using Spaces")),
34
34
  precondition: undefined,
35
35
  });
36
36
  }
@@ -43,7 +43,7 @@ class NotebookChangeTabDisplaySize extends Action2 {
43
43
  constructor() {
44
44
  super({
45
45
  id: NotebookChangeTabDisplaySize.ID,
46
- title: ( localize(10773, "Change Tab Display Size")),
46
+ title: ( localize(10742, "Change Tab Display Size")),
47
47
  precondition: undefined,
48
48
  });
49
49
  }
@@ -56,7 +56,7 @@ class NotebookIndentationToSpacesAction extends Action2 {
56
56
  constructor() {
57
57
  super({
58
58
  id: NotebookIndentationToSpacesAction.ID,
59
- title: ( localize(10774, "Convert Indentation to Spaces")),
59
+ title: ( localize(10743, "Convert Indentation to Spaces")),
60
60
  precondition: undefined,
61
61
  });
62
62
  }
@@ -69,7 +69,7 @@ class NotebookIndentationToTabsAction extends Action2 {
69
69
  constructor() {
70
70
  super({
71
71
  id: NotebookIndentationToTabsAction.ID,
72
- title: ( localize(10775, "Convert Indentation to Tabs")),
72
+ title: ( localize(10744, "Convert Indentation to Tabs")),
73
73
  precondition: undefined,
74
74
  });
75
75
  }
@@ -101,7 +101,7 @@ function changeNotebookIndentation(accessor, insertSpaces, displaySizeOnly) {
101
101
  delete initialConfig['editor.tabSize'];
102
102
  delete initialConfig['editor.insertSpaces'];
103
103
  setTimeout(() => {
104
- quickInputService.pick(picks, { placeHolder: ( localize(10776, "Select Tab Size for Current File")) }).then(pick => {
104
+ quickInputService.pick(picks, { placeHolder: ( localize(10745, "Select Tab Size for Current File")) }).then(pick => {
105
105
  if (pick) {
106
106
  const pickedVal = parseInt(pick.label, 10);
107
107
  if (displaySizeOnly) {
@@ -151,7 +151,7 @@ function convertNotebookIndentation(accessor, tabsToSpaces) {
151
151
  return;
152
152
  }
153
153
  const edits = getIndentationEditOperations(textEditorModel, modelOpts.tabSize, tabsToSpaces);
154
- bulkEditService.apply(edits, { label: ( localize(10777, "Convert Indentation")), code: 'undoredo.convertIndentation', });
154
+ bulkEditService.apply(edits, { label: ( localize(10746, "Convert Indentation")), code: 'undoredo.convertIndentation', });
155
155
  })))).then(() => {
156
156
  const initialConfig = configurationService.getValue(NotebookSetting.cellEditorOptionsCustomizations);
157
157
  const initialIndentSize = initialConfig['editor.indentSize'];
@@ -13,10 +13,10 @@ class NotebookRunSingleCellInSection extends Action2 {
13
13
  super({
14
14
  id: 'notebook.section.runSingleCell',
15
15
  title: {
16
- ...( localize2(8119, "Run Cell")),
17
- mnemonicTitle: ( localize(8120, "&&Run Cell")),
16
+ ...( localize2(7910, "Run Cell")),
17
+ mnemonicTitle: ( localize(7911, "&&Run Cell")),
18
18
  },
19
- shortTitle: ( localize(8119, "Run Cell")),
19
+ shortTitle: ( localize(7910, "Run Cell")),
20
20
  icon: executeIcon,
21
21
  menu: [
22
22
  {
@@ -45,10 +45,10 @@ class NotebookRunCellsInSection extends Action2 {
45
45
  super({
46
46
  id: 'notebook.section.runCells',
47
47
  title: {
48
- ...( localize2(8121, "Run Cells In Section")),
49
- mnemonicTitle: ( localize(8122, "&&Run Cells In Section")),
48
+ ...( localize2(7912, "Run Cells In Section")),
49
+ mnemonicTitle: ( localize(7913, "&&Run Cells In Section")),
50
50
  },
51
- shortTitle: ( localize(8121, "Run Cells In Section")),
51
+ shortTitle: ( localize(7912, "Run Cells In Section")),
52
52
  menu: [
53
53
  {
54
54
  id: MenuId.NotebookStickyScrollContext,
@@ -91,10 +91,10 @@ class NotebookFoldSection extends Action2 {
91
91
  super({
92
92
  id: 'notebook.section.foldSection',
93
93
  title: {
94
- ...( localize2(8123, "Fold Section")),
95
- mnemonicTitle: ( localize(8124, "&&Fold Section")),
94
+ ...( localize2(7914, "Fold Section")),
95
+ mnemonicTitle: ( localize(7915, "&&Fold Section")),
96
96
  },
97
- shortTitle: ( localize(8123, "Fold Section")),
97
+ shortTitle: ( localize(7914, "Fold Section")),
98
98
  menu: [
99
99
  {
100
100
  id: MenuId.NotebookOutlineActionMenu,
@@ -130,10 +130,10 @@ class NotebookExpandSection extends Action2 {
130
130
  super({
131
131
  id: 'notebook.section.expandSection',
132
132
  title: {
133
- ...( localize2(8125, "Expand Section")),
134
- mnemonicTitle: ( localize(8126, "&&Expand Section")),
133
+ ...( localize2(7916, "Expand Section")),
134
+ mnemonicTitle: ( localize(7917, "&&Expand Section")),
135
135
  },
136
- shortTitle: ( localize(8125, "Expand Section")),
136
+ shortTitle: ( localize(7916, "Expand Section")),
137
137
  menu: [
138
138
  {
139
139
  id: MenuId.NotebookOutlineActionMenu,