Skip to content

Commit 2a106ad

Browse files
authored
fix: some settings still localize link markdown (microsoft#217375)
1 parent 4a59a68 commit 2a106ad

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/vs/platform/list/browser/listService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1490,7 +1490,7 @@ configurationRegistry.registerConfiguration({
14901490
type: 'number',
14911491
minimum: 1,
14921492
default: 7,
1493-
markdownDescription: localize('sticky scroll maximum items', "Controls the number of sticky elements displayed in the tree when `#workbench.tree.enableStickyScroll#` is enabled."),
1493+
markdownDescription: localize('sticky scroll maximum items', "Controls the number of sticky elements displayed in the tree when {0} is enabled.", '`#workbench.tree.enableStickyScroll#`'),
14941494
},
14951495
[typeNavigationModeSettingKey]: {
14961496
type: 'string',

src/vs/workbench/electron-sandbox/desktop.contribution.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ import { MAX_ZOOM_LEVEL, MIN_ZOOM_LEVEL } from 'vs/platform/window/electron-sand
226226
'type': 'boolean',
227227
'default': false,
228228
'scope': ConfigurationScope.APPLICATION,
229-
'markdownDescription': localize('window.doubleClickIconToClose', "If enabled, this setting will close the window when the application icon in the title bar is double-clicked. The window will not be able to be dragged by the icon. This setting is effective only if `#window.titleBarStyle#` is set to `custom`.")
229+
'markdownDescription': localize('window.doubleClickIconToClose', "If enabled, this setting will close the window when the application icon in the title bar is double-clicked. The window will not be able to be dragged by the icon. This setting is effective only if {0} is set to `custom`.", '`#window.titleBarStyle#`')
230230
},
231231
'window.titleBarStyle': {
232232
'type': 'string',

0 commit comments

Comments
 (0)