@codingame/monaco-vscode-search-service-override 32.0.0 → 32.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.
@@ -44,154 +44,154 @@ class SearchAccessibilityHelpProvider extends Disposable {
44
44
  const content = [];
45
45
  const resultCount = this._searchModel.searchResult.count();
46
46
  const isReplaceMode = this._searchModel.replaceActive;
47
- content.push(( localize(12939, "Accessibility Help: Search Across Files")));
47
+ content.push(( localize(12964, "Accessibility Help: Search Across Files")));
48
48
  content.push(( localize(
49
- 12940,
49
+ 12965,
50
50
  "You are in the Search view. This workspace-wide tool lets you find text or patterns across all files in your workspace."
51
51
  )));
52
52
  content.push("");
53
- content.push(( localize(12941, "Current Search Status:")));
54
- content.push(( localize(12942, "You are searching across your workspace.")));
53
+ content.push(( localize(12966, "Current Search Status:")));
54
+ content.push(( localize(12967, "You are searching across your workspace.")));
55
55
  if (resultCount !== undefined) {
56
56
  if (resultCount === 0) {
57
- content.push(( localize(12943, "No results found. Check your search term or adjust options below.")));
57
+ content.push(( localize(12968, "No results found. Check your search term or adjust options below.")));
58
58
  } else {
59
- content.push(( localize(12944, "{0} results found.", resultCount)));
59
+ content.push(( localize(12969, "{0} results found.", resultCount)));
60
60
  }
61
61
  } else {
62
- content.push(( localize(12945, "Type a search term to find results.")));
62
+ content.push(( localize(12970, "Type a search term to find results.")));
63
63
  }
64
64
  content.push("");
65
- content.push(( localize(12946, "Inside the Search Input (What It Does):")));
65
+ content.push(( localize(12971, "Inside the Search Input (What It Does):")));
66
66
  content.push(( localize(
67
- 12947,
67
+ 12972,
68
68
  "While you are in the Search input, your focus stays in the field. You can type your search term and navigate the search results list without leaving the input. When you navigate to a result, the editor updates in the background to show the match."
69
69
  )));
70
70
  content.push("");
71
- content.push(( localize(12948, "What You Hear Each Time You Move to a Result:")));
72
- content.push(( localize(12949, "Each navigation step gives you a complete spoken update:")));
71
+ content.push(( localize(12973, "What You Hear Each Time You Move to a Result:")));
72
+ content.push(( localize(12974, "Each navigation step gives you a complete spoken update:")));
73
73
  content.push(( localize(
74
- 12950,
74
+ 12975,
75
75
  "1) The file name where the result is located is read first, so you know which file contains the match."
76
76
  )));
77
77
  content.push(( localize(
78
- 12951,
78
+ 12976,
79
79
  "2) The full line that contains the match is read, so you get immediate context."
80
80
  )));
81
81
  content.push(( localize(
82
- 12952,
82
+ 12977,
83
83
  "3) Your position among the results is announced, so you know how far you are through the results."
84
84
  )));
85
85
  content.push(( localize(
86
- 12953,
86
+ 12978,
87
87
  "4) The exact line and column are announced, so you know precisely where the match is in the file."
88
88
  )));
89
89
  content.push("");
90
- content.push(( localize(12954, "Focus Behavior (Important):")));
90
+ content.push(( localize(12979, "Focus Behavior (Important):")));
91
91
  content.push(( localize(
92
- 12955,
92
+ 12980,
93
93
  "When you navigate from the Search input, the editor updates while your focus stays in the search field. This is intentional, so you can keep refining your search without losing your place."
94
94
  )));
95
95
  content.push(( localize(
96
- 12956,
96
+ 12981,
97
97
  "If you press Tab, focus moves to the results tree below the input, and you can navigate results and open them. When you press Enter on a result, the match is shown in the editor."
98
98
  )));
99
99
  content.push(( localize(
100
- 12957,
100
+ 12982,
101
101
  "If you want to focus the editor to edit text at a search result, use {0} to navigate to the result and automatically focus the editor there.",
102
102
  "<keybinding:search.action.focusNextSearchResult>"
103
103
  )));
104
104
  content.push("");
105
- content.push(( localize(12958, "Keyboard Navigation Summary:")));
105
+ content.push(( localize(12983, "Keyboard Navigation Summary:")));
106
106
  content.push("");
107
- content.push(( localize(12959, "While focused IN the Search input:")));
108
- content.push(( localize(12960, "- Enter: Run or refresh the search.")));
109
- content.push(( localize(12961, "- Tab: Move focus to the results tree below.")));
107
+ content.push(( localize(12984, "While focused IN the Search input:")));
108
+ content.push(( localize(12985, "- Enter: Run or refresh the search.")));
109
+ content.push(( localize(12986, "- Tab: Move focus to the results tree below.")));
110
110
  content.push("");
111
- content.push(( localize(12962, "Navigating search results:")));
112
- content.push(( localize(12963, "- Down Arrow: Navigate through results in the tree.")));
111
+ content.push(( localize(12987, "Navigating search results:")));
112
+ content.push(( localize(12988, "- Down Arrow: Navigate through results in the tree.")));
113
113
  content.push(( localize(
114
- 12964,
114
+ 12989,
115
115
  "- Enter (when a result is focused): Navigate to that result in the editor."
116
116
  )));
117
117
  content.push("");
118
- content.push(( localize(12965, "From anywhere (Search input or editor):")));
118
+ content.push(( localize(12990, "From anywhere (Search input or editor):")));
119
119
  content.push(( localize(
120
- 12966,
120
+ 12991,
121
121
  "- {0}: Jump to the next result and focus the editor.",
122
122
  "<keybinding:search.action.focusNextSearchResult>"
123
123
  )));
124
124
  content.push(( localize(
125
- 12967,
125
+ 12992,
126
126
  "- {0}: Jump to the previous result and focus the editor.",
127
127
  "<keybinding:search.action.focusPreviousSearchResult>"
128
128
  )));
129
129
  content.push("");
130
- content.push(( localize(12968, "Search Options in the Dialog:")));
131
- content.push(( localize(12969, "- Match Case: Only exact case matches are included.")));
132
- content.push(( localize(12970, "- Whole Word: Only full words are matched.")));
133
- content.push(( localize(12971, "- Regular Expression: Use pattern matching for advanced searches.")));
130
+ content.push(( localize(12993, "Search Options in the Dialog:")));
131
+ content.push(( localize(12994, "- Match Case: Only exact case matches are included.")));
132
+ content.push(( localize(12995, "- Whole Word: Only full words are matched.")));
133
+ content.push(( localize(12996, "- Regular Expression: Use pattern matching for advanced searches.")));
134
134
  content.push("");
135
135
  if (isReplaceMode) {
136
- content.push(( localize(12972, "Replace Across Files (Replace Mode Active):")));
137
- content.push(( localize(12973, "Tab to the Replace input and type your replacement text.")));
138
- content.push(( localize(12974, "You can replace individual matches or all matches at once.")));
136
+ content.push(( localize(12997, "Replace Across Files (Replace Mode Active):")));
137
+ content.push(( localize(12998, "Tab to the Replace input and type your replacement text.")));
138
+ content.push(( localize(12999, "You can replace individual matches or all matches at once.")));
139
139
  content.push(( localize(
140
- 12975,
140
+ 13000,
141
141
  "Warning: This action affects multiple files. Make sure you have searched for exactly what you want to replace."
142
142
  )));
143
143
  content.push("");
144
144
  }
145
145
  content.push(( localize(
146
- 12976,
146
+ 13001,
147
147
  "Settings You Can Adjust ({0} opens Settings):",
148
148
  "<keybinding:workbench.action.openSettings>"
149
149
  )));
150
- content.push(( localize(12977, "These settings affect how Search across files behaves.")));
150
+ content.push(( localize(13002, "These settings affect how Search across files behaves.")));
151
151
  content.push(( localize(
152
- 12978,
152
+ 13003,
153
153
  "- `accessibility.verbosity.find`: Controls whether the Search input announces the Accessibility Help hint."
154
154
  )));
155
155
  content.push(( localize(
156
- 12979,
156
+ 13004,
157
157
  "- `search.smartCase`: Use case-insensitive search if your search term is all lowercase."
158
158
  )));
159
- content.push(( localize(12980, "- `search.searchOnType`: Search all files as you type.")));
159
+ content.push(( localize(13005, "- `search.searchOnType`: Search all files as you type.")));
160
160
  content.push(( localize(
161
- 12981,
161
+ 13006,
162
162
  "- `search.searchOnTypeDebouncePeriod`: Wait time in milliseconds before searching as you type."
163
163
  )));
164
- content.push(( localize(12982, "- `search.maxResults`: Maximum number of search results to show.")));
165
- content.push(( localize(12983, "- `search.collapseResults`: Expand or collapse results.")));
166
- content.push(( localize(12984, "- `search.showLineNumbers`: Show line numbers for results.")));
164
+ content.push(( localize(13007, "- `search.maxResults`: Maximum number of search results to show.")));
165
+ content.push(( localize(13008, "- `search.collapseResults`: Expand or collapse results.")));
166
+ content.push(( localize(13009, "- `search.showLineNumbers`: Show line numbers for results.")));
167
167
  content.push(( localize(
168
- 12985,
168
+ 13010,
169
169
  "- `search.sortOrder`: Sort results by file name, type, modified time, or match count."
170
170
  )));
171
171
  content.push(( localize(
172
- 12986,
172
+ 13011,
173
173
  "- `search.searchEditor.defaultNumberOfContextLines`: Number of context lines shown around matches."
174
174
  )));
175
- content.push(( localize(12987, "- `search.defaultViewMode`: Show results as list or tree.")));
176
- content.push(( localize(12988, "- `search.actionsPosition`: Position of action buttons.")));
175
+ content.push(( localize(13012, "- `search.defaultViewMode`: Show results as list or tree.")));
176
+ content.push(( localize(13013, "- `search.actionsPosition`: Position of action buttons.")));
177
177
  if (isReplaceMode) {
178
178
  content.push(( localize(
179
- 12989,
179
+ 13014,
180
180
  "- `search.useReplacePreview`: Open preview when replacing matches."
181
181
  )));
182
182
  }
183
183
  if (isMacintosh) {
184
184
  content.push("");
185
- content.push(( localize(12990, "Platform-Specific Setting (macOS only):")));
185
+ content.push(( localize(13015, "Platform-Specific Setting (macOS only):")));
186
186
  content.push(( localize(
187
- 12991,
187
+ 13016,
188
188
  "- `search.globalFindClipboard`: Uses the shared macOS Find clipboard when available."
189
189
  )));
190
190
  }
191
191
  content.push("");
192
- content.push(( localize(12992, "Closing:")));
192
+ content.push(( localize(13017, "Closing:")));
193
193
  content.push(( localize(
194
- 12993,
194
+ 13018,
195
195
  "Press Escape to close Search. Focus returns to the editor, and your search history is preserved."
196
196
  )));
197
197
  return content.join("\n");
@@ -16,7 +16,7 @@ registerAction2(class CopyMatchCommandAction extends Action2 {
16
16
  constructor() {
17
17
  super({
18
18
  id: SearchCommandIds.CopyMatchCommandId,
19
- title: ( localize2(12995, "Copy")),
19
+ title: ( localize2(13020, "Copy")),
20
20
  category,
21
21
  keybinding: {
22
22
  weight: KeybindingWeight.WorkbenchContrib,
@@ -39,7 +39,7 @@ registerAction2(class CopyPathCommandAction extends Action2 {
39
39
  constructor() {
40
40
  super({
41
41
  id: SearchCommandIds.CopyPathCommandId,
42
- title: ( localize2(12996, "Copy Path")),
42
+ title: ( localize2(13021, "Copy Path")),
43
43
  category,
44
44
  keybinding: {
45
45
  weight: KeybindingWeight.WorkbenchContrib,
@@ -65,7 +65,7 @@ registerAction2(class CopyAllCommandAction extends Action2 {
65
65
  constructor() {
66
66
  super({
67
67
  id: SearchCommandIds.CopyAllCommandId,
68
- title: ( localize2(12997, "Copy All")),
68
+ title: ( localize2(13022, "Copy All")),
69
69
  category,
70
70
  menu: [{
71
71
  id: MenuId.SearchContext,
@@ -83,7 +83,7 @@ registerAction2(class GetSearchResultsAction extends Action2 {
83
83
  constructor() {
84
84
  super({
85
85
  id: SearchCommandIds.GetSearchResultsActionId,
86
- title: ( localize2(12998, "Get Search Results")),
86
+ title: ( localize2(13023, "Get Search Results")),
87
87
  category,
88
88
  f1: false
89
89
  });
@@ -31,7 +31,7 @@ registerAction2(class RestrictSearchToFolderAction extends Action2 {
31
31
  constructor() {
32
32
  super({
33
33
  id: SearchCommandIds.RestrictSearchToFolderId,
34
- title: ( localize2(12999, "Restrict Search to Folder")),
34
+ title: ( localize2(13024, "Restrict Search to Folder")),
35
35
  category,
36
36
  keybinding: {
37
37
  weight: KeybindingWeight.WorkbenchContrib,
@@ -57,7 +57,7 @@ registerAction2(class ExpandSelectedTreeCommandAction extends Action2 {
57
57
  constructor() {
58
58
  super({
59
59
  id: SearchCommandIds.ExpandRecursivelyCommandId,
60
- title: ( localize(13000, "Expand Recursively")),
60
+ title: ( localize(13025, "Expand Recursively")),
61
61
  category,
62
62
  menu: [{
63
63
  id: MenuId.SearchContext,
@@ -78,7 +78,7 @@ registerAction2(class ExcludeFolderFromSearchAction extends Action2 {
78
78
  constructor() {
79
79
  super({
80
80
  id: SearchCommandIds.ExcludeFolderFromSearchId,
81
- title: ( localize2(13001, "Exclude Folder from Search")),
81
+ title: ( localize2(13026, "Exclude Folder from Search")),
82
82
  category,
83
83
  menu: [{
84
84
  id: MenuId.SearchContext,
@@ -96,7 +96,7 @@ registerAction2(class ExcludeFileTypeFromSearchAction extends Action2 {
96
96
  constructor() {
97
97
  super({
98
98
  id: SearchCommandIds.ExcludeFileTypeFromSearchId,
99
- title: ( localize2(13002, "Exclude File Type from Search")),
99
+ title: ( localize2(13027, "Exclude File Type from Search")),
100
100
  category,
101
101
  menu: [{
102
102
  id: MenuId.SearchContext,
@@ -114,7 +114,7 @@ registerAction2(class IncludeFileTypeInSearchAction extends Action2 {
114
114
  constructor() {
115
115
  super({
116
116
  id: SearchCommandIds.IncludeFileTypeInSearchId,
117
- title: ( localize2(13003, "Include File Type from Search")),
117
+ title: ( localize2(13028, "Include File Type from Search")),
118
118
  category,
119
119
  menu: [{
120
120
  id: MenuId.SearchContext,
@@ -132,7 +132,7 @@ registerAction2(class RevealInSideBarForSearchResultsAction extends Action2 {
132
132
  constructor() {
133
133
  super({
134
134
  id: SearchCommandIds.RevealInSideBarForSearchResults,
135
- title: ( localize2(13004, "Reveal in Explorer View")),
135
+ title: ( localize2(13029, "Reveal in Explorer View")),
136
136
  category,
137
137
  menu: [{
138
138
  id: MenuId.SearchContext,
@@ -179,13 +179,13 @@ registerAction2(class FindInFilesAction extends Action2 {
179
179
  super({
180
180
  id: SearchCommandIds.FindInFilesActionId,
181
181
  title: {
182
- ...( localize2(13005, "Find in Files")),
183
- mnemonicTitle: ( localize(13006, "Find &&in Files"))
182
+ ...( localize2(13030, "Find in Files")),
183
+ mnemonicTitle: ( localize(13031, "Find &&in Files"))
184
184
  },
185
185
  metadata: {
186
- description: ( localize(13007, "Open a workspace search")),
186
+ description: ( localize(13032, "Open a workspace search")),
187
187
  args: [{
188
- name: ( localize(13008, "A set of options for the search")),
188
+ name: ( localize(13033, "A set of options for the search")),
189
189
  schema: {
190
190
  type: "object",
191
191
  properties: {
@@ -252,7 +252,7 @@ registerAction2(class FindInFolderAction extends Action2 {
252
252
  constructor() {
253
253
  super({
254
254
  id: SearchCommandIds.FindInFolderId,
255
- title: ( localize2(13009, "Find in Folder...")),
255
+ title: ( localize2(13034, "Find in Folder...")),
256
256
  category,
257
257
  keybinding: {
258
258
  weight: KeybindingWeight.WorkbenchContrib,
@@ -275,7 +275,7 @@ registerAction2(class FindInWorkspaceAction extends Action2 {
275
275
  constructor() {
276
276
  super({
277
277
  id: SearchCommandIds.FindInWorkspaceId,
278
- title: ( localize2(13010, "Find in Workspace...")),
278
+ title: ( localize2(13035, "Find in Workspace...")),
279
279
  category,
280
280
  menu: [{
281
281
  id: MenuId.ExplorerContext,
@@ -24,7 +24,7 @@ registerAction2(class ToggleQueryDetailsAction extends Action2 {
24
24
  constructor() {
25
25
  super({
26
26
  id: SearchCommandIds.ToggleQueryDetailsActionId,
27
- title: ( localize2(13011, "Toggle Query Details")),
27
+ title: ( localize2(13036, "Toggle Query Details")),
28
28
  category,
29
29
  keybinding: {
30
30
  weight: KeybindingWeight.WorkbenchContrib,
@@ -51,7 +51,7 @@ registerAction2(class CloseReplaceAction extends Action2 {
51
51
  constructor() {
52
52
  super({
53
53
  id: SearchCommandIds.CloseReplaceWidgetActionId,
54
- title: ( localize2(13012, "Close Replace Widget")),
54
+ title: ( localize2(13037, "Close Replace Widget")),
55
55
  category,
56
56
  keybinding: {
57
57
  weight: KeybindingWeight.WorkbenchContrib,
@@ -76,7 +76,7 @@ registerAction2(class ToggleCaseSensitiveCommandAction extends Action2 {
76
76
  constructor() {
77
77
  super({
78
78
  id: SearchCommandIds.ToggleCaseSensitiveCommandId,
79
- title: ( localize2(13013, "Toggle Case Sensitive")),
79
+ title: ( localize2(13038, "Toggle Case Sensitive")),
80
80
  category,
81
81
  keybinding: Object.assign({
82
82
  weight: KeybindingWeight.WorkbenchContrib,
@@ -92,7 +92,7 @@ registerAction2(class ToggleWholeWordCommandAction extends Action2 {
92
92
  constructor() {
93
93
  super({
94
94
  id: SearchCommandIds.ToggleWholeWordCommandId,
95
- title: ( localize2(13014, "Toggle Whole Word")),
95
+ title: ( localize2(13039, "Toggle Whole Word")),
96
96
  keybinding: Object.assign({
97
97
  weight: KeybindingWeight.WorkbenchContrib,
98
98
  when: SearchContext.SearchViewFocusedKey
@@ -108,7 +108,7 @@ registerAction2(class ToggleRegexCommandAction extends Action2 {
108
108
  constructor() {
109
109
  super({
110
110
  id: SearchCommandIds.ToggleRegexCommandId,
111
- title: ( localize2(13015, "Toggle Regex")),
111
+ title: ( localize2(13040, "Toggle Regex")),
112
112
  keybinding: Object.assign({
113
113
  weight: KeybindingWeight.WorkbenchContrib,
114
114
  when: SearchContext.SearchViewFocusedKey
@@ -124,7 +124,7 @@ registerAction2(class TogglePreserveCaseAction extends Action2 {
124
124
  constructor() {
125
125
  super({
126
126
  id: SearchCommandIds.TogglePreserveCaseId,
127
- title: ( localize2(13016, "Toggle Preserve Case")),
127
+ title: ( localize2(13041, "Toggle Preserve Case")),
128
128
  keybinding: Object.assign({
129
129
  weight: KeybindingWeight.WorkbenchContrib,
130
130
  when: SearchContext.SearchViewFocusedKey
@@ -140,7 +140,7 @@ registerAction2(class OpenMatchAction extends Action2 {
140
140
  constructor() {
141
141
  super({
142
142
  id: SearchCommandIds.OpenMatch,
143
- title: ( localize2(13017, "Open Match")),
143
+ title: ( localize2(13042, "Open Match")),
144
144
  category,
145
145
  keybinding: {
146
146
  weight: KeybindingWeight.WorkbenchContrib,
@@ -174,7 +174,7 @@ registerAction2(class OpenMatchToSideAction extends Action2 {
174
174
  constructor() {
175
175
  super({
176
176
  id: SearchCommandIds.OpenMatchToSide,
177
- title: ( localize2(13018, "Open Match To Side")),
177
+ title: ( localize2(13043, "Open Match To Side")),
178
178
  category,
179
179
  keybinding: {
180
180
  weight: KeybindingWeight.WorkbenchContrib,
@@ -201,7 +201,7 @@ registerAction2(class AddCursorsAtSearchResultsAction extends Action2 {
201
201
  constructor() {
202
202
  super({
203
203
  id: SearchCommandIds.AddCursorsAtSearchResults,
204
- title: ( localize2(13019, "Add Cursors at Search Results")),
204
+ title: ( localize2(13044, "Add Cursors at Search Results")),
205
205
  keybinding: {
206
206
  weight: KeybindingWeight.WorkbenchContrib,
207
207
  when: ( ContextKeyExpr.and(
@@ -225,7 +225,7 @@ registerAction2(class FocusNextInputAction extends Action2 {
225
225
  constructor() {
226
226
  super({
227
227
  id: SearchCommandIds.FocusNextInputActionId,
228
- title: ( localize2(13020, "Focus Next Input")),
228
+ title: ( localize2(13045, "Focus Next Input")),
229
229
  category,
230
230
  keybinding: {
231
231
  weight: KeybindingWeight.WorkbenchContrib,
@@ -254,7 +254,7 @@ registerAction2(class FocusPreviousInputAction extends Action2 {
254
254
  constructor() {
255
255
  super({
256
256
  id: SearchCommandIds.FocusPreviousInputActionId,
257
- title: ( localize2(13021, "Focus Previous Input")),
257
+ title: ( localize2(13046, "Focus Previous Input")),
258
258
  category,
259
259
  keybinding: {
260
260
  weight: KeybindingWeight.WorkbenchContrib,
@@ -284,7 +284,7 @@ registerAction2(class FocusSearchFromResultsAction extends Action2 {
284
284
  constructor() {
285
285
  super({
286
286
  id: SearchCommandIds.FocusSearchFromResults,
287
- title: ( localize2(13022, "Focus Search From Results")),
287
+ title: ( localize2(13047, "Focus Search From Results")),
288
288
  category,
289
289
  keybinding: {
290
290
  weight: KeybindingWeight.WorkbenchContrib,
@@ -308,7 +308,7 @@ registerAction2(class ToggleSearchOnTypeAction extends Action2 {
308
308
  constructor() {
309
309
  super({
310
310
  id: SearchCommandIds.ToggleSearchOnTypeActionId,
311
- title: ( localize2(13023, "Toggle Search on Type")),
311
+ title: ( localize2(13048, "Toggle Search on Type")),
312
312
  category
313
313
  });
314
314
  }
@@ -322,7 +322,7 @@ registerAction2(class FocusSearchListCommandAction extends Action2 {
322
322
  constructor() {
323
323
  super({
324
324
  id: SearchCommandIds.FocusSearchListCommandID,
325
- title: ( localize2(13024, "Focus List")),
325
+ title: ( localize2(13049, "Focus List")),
326
326
  category,
327
327
  f1: true
328
328
  });
@@ -335,7 +335,7 @@ registerAction2(class FocusNextSearchResultAction extends Action2 {
335
335
  constructor() {
336
336
  super({
337
337
  id: SearchCommandIds.FocusNextSearchResultActionId,
338
- title: ( localize2(13025, "Focus Next Search Result")),
338
+ title: ( localize2(13050, "Focus Next Search Result")),
339
339
  keybinding: [{
340
340
  primary: KeyCode.F4,
341
341
  weight: KeybindingWeight.WorkbenchContrib
@@ -356,7 +356,7 @@ registerAction2(class FocusPreviousSearchResultAction extends Action2 {
356
356
  constructor() {
357
357
  super({
358
358
  id: SearchCommandIds.FocusPreviousSearchResultActionId,
359
- title: ( localize2(13026, "Focus Previous Search Result")),
359
+ title: ( localize2(13051, "Focus Previous Search Result")),
360
360
  keybinding: [{
361
361
  primary: KeyMod.Shift | KeyCode.F4,
362
362
  weight: KeybindingWeight.WorkbenchContrib
@@ -377,7 +377,7 @@ registerAction2(class ReplaceInFilesAction extends Action2 {
377
377
  constructor() {
378
378
  super({
379
379
  id: SearchCommandIds.ReplaceInFilesActionId,
380
- title: ( localize2(13027, "Replace in Files")),
380
+ title: ( localize2(13052, "Replace in Files")),
381
381
  keybinding: [{
382
382
  primary: KeyMod.CtrlCmd | KeyMod.Shift | KeyCode.KeyH,
383
383
  weight: KeybindingWeight.WorkbenchContrib
@@ -23,7 +23,7 @@ registerAction2(class RemoveAction extends Action2 {
23
23
  constructor() {
24
24
  super({
25
25
  id: SearchCommandIds.RemoveActionId,
26
- title: ( localize2(13028, "Dismiss")),
26
+ title: ( localize2(13053, "Dismiss")),
27
27
  category,
28
28
  icon: searchRemoveIcon,
29
29
  keybinding: {
@@ -106,7 +106,7 @@ registerAction2(class ReplaceAction extends Action2 {
106
106
  constructor() {
107
107
  super({
108
108
  id: SearchCommandIds.ReplaceActionId,
109
- title: ( localize2(13029, "Replace")),
109
+ title: ( localize2(13054, "Replace")),
110
110
  category,
111
111
  keybinding: {
112
112
  weight: KeybindingWeight.WorkbenchContrib,
@@ -148,7 +148,7 @@ registerAction2(class ReplaceAllAction extends Action2 {
148
148
  constructor() {
149
149
  super({
150
150
  id: SearchCommandIds.ReplaceAllInFileActionId,
151
- title: ( localize2(13030, "Replace All")),
151
+ title: ( localize2(13055, "Replace All")),
152
152
  category,
153
153
  keybinding: {
154
154
  weight: KeybindingWeight.WorkbenchContrib,
@@ -191,7 +191,7 @@ registerAction2(class ReplaceAllInFolderAction extends Action2 {
191
191
  constructor() {
192
192
  super({
193
193
  id: SearchCommandIds.ReplaceAllInFolderActionId,
194
- title: ( localize2(13030, "Replace All")),
194
+ title: ( localize2(13055, "Replace All")),
195
195
  category,
196
196
  keybinding: {
197
197
  weight: KeybindingWeight.WorkbenchContrib,
@@ -11,7 +11,7 @@ registerAction2(class ShowAllSymbolsAction extends Action2 {
11
11
  this.ID = "workbench.action.showAllSymbols";
12
12
  }
13
13
  static {
14
- this.LABEL = ( localize(13031, "Go to Symbol in Workspace..."));
14
+ this.LABEL = ( localize(13056, "Go to Symbol in Workspace..."));
15
15
  }
16
16
  static {
17
17
  this.ALL_SYMBOLS_PREFIX = "#";
@@ -20,8 +20,8 @@ registerAction2(class ShowAllSymbolsAction extends Action2 {
20
20
  super({
21
21
  id: SearchCommandIds.ShowAllSymbolsActionId,
22
22
  title: {
23
- ...( localize2(13031, "Go to Symbol in Workspace...")),
24
- mnemonicTitle: ( localize(13032, "Go to Symbol in &&Workspace..."))
23
+ ...( localize2(13056, "Go to Symbol in Workspace...")),
24
+ mnemonicTitle: ( localize(13057, "Go to Symbol in &&Workspace..."))
25
25
  },
26
26
  f1: true,
27
27
  keybinding: {
@@ -13,7 +13,7 @@ registerAction2(class TextSearchQuickAccessAction extends Action2 {
13
13
  constructor() {
14
14
  super({
15
15
  id: SearchCommandIds.QuickTextSearchActionId,
16
- title: ( localize2(13033, "Quick Search")),
16
+ title: ( localize2(13058, "Quick Search")),
17
17
  category,
18
18
  f1: true
19
19
  });
@@ -14,14 +14,14 @@ quickAccessRegistry.registerQuickAccessProvider({
14
14
  ctor: AnythingQuickAccessProvider,
15
15
  prefix: AnythingQuickAccessProvider.PREFIX,
16
16
  placeholder: ( localize(
17
- 13071,
17
+ 13096,
18
18
  "Search files by name (append {0} to go to line or {1} to go to symbol)",
19
19
  AbstractGotoLineQuickAccessProvider.GO_TO_LINE_PREFIX,
20
20
  GotoSymbolQuickAccessProvider.PREFIX
21
21
  )),
22
22
  contextKey: defaultQuickAccessContextKeyValue,
23
23
  helpEntries: [{
24
- description: ( localize(13072, "Go to File")),
24
+ description: ( localize(13097, "Go to File")),
25
25
  commandId: "workbench.action.quickOpen",
26
26
  commandCenterOrder: 10
27
27
  }]
@@ -29,10 +29,10 @@ quickAccessRegistry.registerQuickAccessProvider({
29
29
  quickAccessRegistry.registerQuickAccessProvider({
30
30
  ctor: SymbolsQuickAccessProvider,
31
31
  prefix: SymbolsQuickAccessProvider.PREFIX,
32
- placeholder: ( localize(13073, "Type the name of a symbol to open.")),
32
+ placeholder: ( localize(13098, "Type the name of a symbol to open.")),
33
33
  contextKey: "inWorkspaceSymbolsPicker",
34
34
  helpEntries: [{
35
- description: ( localize(13074, "Go to Symbol in Workspace")),
35
+ description: ( localize(13099, "Go to Symbol in Workspace")),
36
36
  commandId: "workbench.action.showAllSymbols"
37
37
  }]
38
38
  });