@codingame/monaco-vscode-view-title-bar-service-override 11.1.0 → 11.1.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codingame/monaco-vscode-view-title-bar-service-override",
3
- "version": "11.1.0",
3
+ "version": "11.1.2",
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@11.1.0"
29
+ "vscode": "npm:@codingame/monaco-vscode-api@11.1.2"
30
30
  }
31
31
  }
@@ -144,13 +144,13 @@ let CommandCenterCenterViewItem = class CommandCenterCenterViewItem extends Base
144
144
  label = that._windowTitle.fileName ?? label;
145
145
  }
146
146
  if (!label) {
147
- label = ( localize(7071, "Search"));
147
+ label = ( localize(7042, "Search"));
148
148
  }
149
149
  if (prefix) {
150
- label = ( localize(7072, "{0} {1}", prefix, label));
150
+ label = ( localize(7043, "{0} {1}", prefix, label));
151
151
  }
152
152
  if (suffix) {
153
- label = ( localize(7073, "{0} {1}", label, suffix));
153
+ label = ( localize(7044, "{0} {1}", label, suffix));
154
154
  }
155
155
  return label.replaceAll(/\r\n|\r|\n/g, '\u23CE');
156
156
  }
@@ -172,14 +172,14 @@ let CommandCenterCenterViewItem = class CommandCenterCenterViewItem extends Base
172
172
  const kb = this._keybindingService.lookupKeybinding(this.action.id)?.getLabel();
173
173
  const title = kb
174
174
  ? ( localize(
175
- 7074,
175
+ 7045,
176
176
  "Search {0} ({1}) \u2014 {2}",
177
177
  this._windowTitle.workspaceName,
178
178
  kb,
179
179
  this._windowTitle.value
180
180
  ))
181
181
  : ( localize(
182
- 7075,
182
+ 7046,
183
183
  "Search {0} \u2014 {1}",
184
184
  this._windowTitle.workspaceName,
185
185
  this._windowTitle.value
@@ -195,7 +195,7 @@ CommandCenterCenterViewItem = CommandCenterCenterViewItem_1 = ( (__decorate([
195
195
  ], CommandCenterCenterViewItem)));
196
196
  MenuRegistry.appendMenuItem(MenuId.CommandCenter, {
197
197
  submenu: MenuId.CommandCenterCenter,
198
- title: ( localize(7076, "Command Center")),
198
+ title: ( localize(7047, "Command Center")),
199
199
  icon: Codicon.shield,
200
200
  order: 101,
201
201
  });