Skip to content

Commit 47ea339

Browse files
authored
Merge pull request microsoft#210574 from gjsjohnmurray/silver-elk
Improve descriptions of `workbench.activityBar.iconClickBehavior` and `workbench.activityBar.location` settings
2 parents eea0b65 + 2dbf136 commit 47ea339

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -528,22 +528,22 @@ const registry = Registry.as<IConfigurationRegistry>(ConfigurationExtensions.Con
528528
'type': 'string',
529529
'enum': ['default', 'top', 'bottom', 'hidden'],
530530
'default': 'default',
531-
'markdownDescription': localize({ comment: ['This is the description for a setting'], key: 'activityBarLocation' }, "Controls the location of the Activity Bar. It can either show to the `default` or `top` / `bottom` of the Primary and Secondary Side Bar or `hidden`."),
531+
'markdownDescription': localize({ comment: ['This is the description for a setting'], key: 'activityBarLocation' }, "Controls the location of the Activity Bar relative to the Primary and Secondary Side Bars."),
532532
'enumDescriptions': [
533-
localize('workbench.activityBar.location.default', "Show the Activity Bar of the Primary Side Bar on the side."),
534-
localize('workbench.activityBar.location.top', "Show the Activity Bar on top of the Primary and Secondary Side Bar."),
535-
localize('workbench.activityBar.location.bottom', "Show the Activity Bar at the bottom of the Primary and Secondary Side Bar."),
536-
localize('workbench.activityBar.location.hide', "Hide the Activity Bar in the Primary and Secondary Side Bar.")
533+
localize('workbench.activityBar.location.default', "Show the Activity Bar on the side of the Primary Side Bar and on top of the Secondary Side Bar."),
534+
localize('workbench.activityBar.location.top', "Show the Activity Bar on top of the Primary and Secondary Side Bars."),
535+
localize('workbench.activityBar.location.bottom', "Show the Activity Bar at the bottom of the Primary and Secondary Side Bars."),
536+
localize('workbench.activityBar.location.hide', "Hide the Activity Bar in the Primary and Secondary Side Bars.")
537537
],
538538
},
539539
'workbench.activityBar.iconClickBehavior': {
540540
'type': 'string',
541541
'enum': ['toggle', 'focus'],
542542
'default': 'toggle',
543-
'description': localize('activityBarIconClickBehavior', "Controls the behavior of clicking an activity bar icon in the workbench."),
543+
'markdownDescription': localize({ comment: ['{0}, {1} will be a setting name rendered as a link'], key: 'activityBarIconClickBehavior' }, "Controls the behavior of clicking an Activity Bar icon in the workbench. This value is ignored when {0} is not set to {1}.", '`#workbench.activityBar.location#`', '`default`'),
544544
'enumDescriptions': [
545-
localize('workbench.activityBar.iconClickBehavior.toggle', "Hide the side bar if the clicked item is already visible."),
546-
localize('workbench.activityBar.iconClickBehavior.focus', "Focus side bar if the clicked item is already visible.")
545+
localize('workbench.activityBar.iconClickBehavior.toggle', "Hide the Primary Side Bar if the clicked item is already visible."),
546+
localize('workbench.activityBar.iconClickBehavior.focus', "Focus the Primary Side Bar if the clicked item is already visible.")
547547
]
548548
},
549549
'workbench.view.alwaysShowHeaderActions': {

0 commit comments

Comments
 (0)