Skip to content

Commit 61680ab

Browse files
Correct non-standard capitalization of term 'status bar' in some settings (fix #277376) (#277383)
1 parent e7600fa commit 61680ab

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

src/vs/workbench/browser/workbench.contribution.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ const registry = Registry.as<IConfigurationRegistry>(ConfigurationExtensions.Con
184184
'workbench.editor.languageDetectionHints': {
185185
type: 'object',
186186
default: { 'untitledEditors': true, 'notebookEditors': true },
187-
description: localize('workbench.editor.showLanguageDetectionHints', "When enabled, shows a Status bar Quick Fix when the editor language doesn't match detected content language."),
187+
description: localize('workbench.editor.showLanguageDetectionHints', "When enabled, shows a status bar Quick Fix when the editor language doesn't match detected content language."),
188188
additionalProperties: false,
189189
properties: {
190190
untitledEditors: {

src/vs/workbench/contrib/debug/browser/debug.contribution.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -543,8 +543,8 @@ configurationRegistry.registerConfiguration({
543543
},
544544
'debug.showInStatusBar': {
545545
enum: ['never', 'always', 'onFirstSessionStart'],
546-
enumDescriptions: [nls.localize('never', "Never show debug in Status bar"), nls.localize('always', "Always show debug in Status bar"), nls.localize('onFirstSessionStart', "Show debug in Status bar only after debug was started for the first time")],
547-
description: nls.localize({ comment: ['This is the description for a setting'], key: 'showInStatusBar' }, "Controls when the debug Status bar should be visible."),
546+
enumDescriptions: [nls.localize('never', "Never show debug item in status bar"), nls.localize('always', "Always show debug item in status bar"), nls.localize('onFirstSessionStart', "Show debug item in status bar only after debug was started for the first time")],
547+
description: nls.localize({ comment: ['This is the description for a setting'], key: 'showInStatusBar' }, "Controls when the debug status bar item should be visible."),
548548
default: 'onFirstSessionStart'
549549
},
550550
'debug.internalConsoleOptions': INTERNAL_CONSOLE_OPTIONS_SCHEMA,
@@ -680,7 +680,7 @@ configurationRegistry.registerConfiguration({
680680
},
681681
'debug.enableStatusBarColor': {
682682
type: 'boolean',
683-
description: nls.localize('debug.enableStatusBarColor', "Color of the Status bar when debugger is active."),
683+
description: nls.localize('debug.enableStatusBarColor', "Color of the status bar when the debugger is active."),
684684
default: true
685685
},
686686
'debug.hideLauncherWhileDebugging': {

src/vs/workbench/contrib/notebook/browser/notebook.contribution.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -992,9 +992,9 @@ configurationRegistry.registerConfiguration({
992992
type: 'string',
993993
enum: ['hidden', 'visible', 'visibleAfterExecute'],
994994
enumDescriptions: [
995-
nls.localize('notebook.showCellStatusbar.hidden.description', "The cell Status bar is always hidden."),
996-
nls.localize('notebook.showCellStatusbar.visible.description', "The cell Status bar is always visible."),
997-
nls.localize('notebook.showCellStatusbar.visibleAfterExecute.description', "The cell Status bar is hidden until the cell has executed. Then it becomes visible to show the execution status.")],
995+
nls.localize('notebook.showCellStatusbar.hidden.description', "The cell status bar is always hidden."),
996+
nls.localize('notebook.showCellStatusbar.visible.description', "The cell status bar is always visible."),
997+
nls.localize('notebook.showCellStatusbar.visibleAfterExecute.description', "The cell status bar is hidden until the cell has executed. Then it becomes visible to show the execution status.")],
998998
default: 'visible',
999999
tags: ['notebookLayout']
10001000
},

0 commit comments

Comments
 (0)