@codingame/monaco-vscode-view-title-bar-service-override 8.0.1 → 8.0.3

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codingame/monaco-vscode-view-title-bar-service-override",
3
- "version": "8.0.1",
3
+ "version": "8.0.3",
4
4
  "keywords": [],
5
5
  "author": {
6
6
  "name": "CodinGame",
@@ -26,6 +26,6 @@
26
26
  }
27
27
  },
28
28
  "dependencies": {
29
- "vscode": "npm:@codingame/monaco-vscode-api@8.0.1"
29
+ "vscode": "npm:@codingame/monaco-vscode-api@8.0.3"
30
30
  }
31
31
  }
@@ -143,13 +143,13 @@ let CommandCenterCenterViewItem = class CommandCenterCenterViewItem extends Base
143
143
  label = that._windowTitle.fileName ?? label;
144
144
  }
145
145
  if (!label) {
146
- label = ( localize(6846, "Search"));
146
+ label = ( localize(6828, "Search"));
147
147
  }
148
148
  if (prefix) {
149
- label = ( localize(6847, "{0} {1}", prefix, label));
149
+ label = ( localize(6829, "{0} {1}", prefix, label));
150
150
  }
151
151
  if (suffix) {
152
- label = ( localize(6848, "{0} {1}", label, suffix));
152
+ label = ( localize(6830, "{0} {1}", label, suffix));
153
153
  }
154
154
  return label.replaceAll(/\r\n|\r|\n/g, '\u23CE');
155
155
  }
@@ -171,14 +171,14 @@ let CommandCenterCenterViewItem = class CommandCenterCenterViewItem extends Base
171
171
  const kb = this._keybindingService.lookupKeybinding(this.action.id)?.getLabel();
172
172
  const title = kb
173
173
  ? ( localize(
174
- 6849,
174
+ 6831,
175
175
  "Search {0} ({1}) \u2014 {2}",
176
176
  this._windowTitle.workspaceName,
177
177
  kb,
178
178
  this._windowTitle.value
179
179
  ))
180
180
  : ( localize(
181
- 6850,
181
+ 6832,
182
182
  "Search {0} \u2014 {1}",
183
183
  this._windowTitle.workspaceName,
184
184
  this._windowTitle.value
@@ -194,7 +194,7 @@ CommandCenterCenterViewItem = CommandCenterCenterViewItem_1 = ( (__decorate([
194
194
  ], CommandCenterCenterViewItem)));
195
195
  MenuRegistry.appendMenuItem(MenuId.CommandCenter, {
196
196
  submenu: MenuId.CommandCenterCenter,
197
- title: ( localize(6851, "Command Center")),
197
+ title: ( localize(6833, "Command Center")),
198
198
  icon: Codicon.shield,
199
199
  order: 101,
200
200
  });
@@ -70,7 +70,7 @@ let BrowserTitleService = class BrowserTitleService extends MultiWindowParts {
70
70
  constructor() {
71
71
  super({
72
72
  id: `workbench.action.focusTitleBar`,
73
- title: ( localize2(3033, 'Focus Title Bar')),
73
+ title: ( localize2(3032, 'Focus Title Bar')),
74
74
  category: Categories.View,
75
75
  f1: true,
76
76
  });
@@ -353,7 +353,7 @@ let BrowserTitlebarPart = class BrowserTitlebarPart extends Part {
353
353
  this.actionToolBar = this.actionToolBarDisposable.add(this.instantiationService.createInstance(WorkbenchToolBar, this.actionToolBarElement, {
354
354
  contextMenu: MenuId.TitleBarContext,
355
355
  orientation: ActionsOrientation.HORIZONTAL,
356
- ariaLabel: ( localize(3034, "Title actions")),
356
+ ariaLabel: ( localize(3033, "Title actions")),
357
357
  getKeyBinding: action => this.getKeybinding(action),
358
358
  overflowBehavior: { maxItems: 9, exempted: [ACCOUNTS_ACTIVITY_ID, GLOBAL_ACTIVITY_ID, ...EDITOR_CORE_NAVIGATION_COMMANDS] },
359
359
  anchorAlignmentProvider: () => AnchorAlignment.RIGHT,