Skip to content

Commit

Permalink
Update nls metadata for VSCode API 1.89.0 (#13743)
Browse files Browse the repository at this point in the history
  • Loading branch information
msujew authored May 31, 2024
1 parent 1fc0345 commit de59d81
Show file tree
Hide file tree
Showing 10 changed files with 11,653 additions and 8,606 deletions.
2 changes: 1 addition & 1 deletion packages/core/src/browser/common-frontend-contribution.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1408,7 +1408,7 @@ export class CommonFrontendContribution implements FrontendApplicationContributi
const items = [...itemsByTheme.light, ...itemsByTheme.dark, ...itemsByTheme.hc, ...itemsByTheme.hcLight];
this.quickInputService?.showQuickPick(items,
{
placeholder: nls.localizeByDefault('Select Color Theme (Up/Down Keys to Preview)'),
placeholder: nls.localizeByDefault('Select Color Theme'),
activeItem: items.find(item => item.id === resetTo),
onDidChangeSelection: (_, selectedItems) => {
resetTo = undefined;
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/browser/core-preferences.ts
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ export const corePreferenceSchema: PreferenceSchema = {
enum: ['dark', 'light', 'hc-theia'],
enumItemLabels: ['Dark (Theia)', 'Light (Theia)', 'High Contrast (Theia)'],
default: DefaultTheme.defaultForOSTheme(FrontendApplicationConfigProvider.get().defaultTheme),
description: nls.localizeByDefault('Specifies the color theme used in the workbench.')
description: nls.localizeByDefault('Specifies the color theme used in the workbench when {0} is not enabled.', '`#window.autoDetectColorScheme#`')
},
'workbench.iconTheme': {
type: ['string'],
Expand Down
Loading

0 comments on commit de59d81

Please sign in to comment.