Skip to content

Commit 10b50ff

Browse files
committed
fix microsoft#101674 Improve text of SCM count badge settings
1 parent 867e775 commit 10b50ff

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -136,22 +136,22 @@ Registry.as<IConfigurationRegistry>(ConfigurationExtensions.Configuration).regis
136136
type: 'string',
137137
enum: ['all', 'focused', 'off'],
138138
enumDescriptions: [
139-
localize('scm.countBadge.all', "Show the sum of all Source Control Providers count badges."),
139+
localize('scm.countBadge.all', "Show the sum of all Source Control Provider count badges."),
140140
localize('scm.countBadge.focused', "Show the count badge of the focused Source Control Provider."),
141141
localize('scm.countBadge.off', "Disable the Source Control count badge.")
142142
],
143-
description: localize('scm.countBadge', "Controls the Source Control count badge."),
143+
description: localize('scm.countBadge', "Controls the count badge on the Source Control icon on the Activity Bar."),
144144
default: 'all'
145145
},
146146
'scm.providerCountBadge': {
147147
type: 'string',
148148
enum: ['hidden', 'auto', 'visible'],
149149
enumDescriptions: [
150-
localize('scm.providerCountBadge.hidden', "Hide Source Control Providers count badges."),
151-
localize('scm.providerCountBadge.auto', "Show Source Control Providers count badges if there are any changes."),
152-
localize('scm.providerCountBadge.visible', "Show Source Control Providers count badges.")
150+
localize('scm.providerCountBadge.hidden', "Hide Source Control Provider count badges."),
151+
localize('scm.providerCountBadge.auto', "Only show count badge for Source Control Provider when non-zero."),
152+
localize('scm.providerCountBadge.visible', "Show Source Control Provider count badges.")
153153
],
154-
description: localize('scm.providerCountBadge', "Controls the Source Control Providers count badge."),
154+
description: localize('scm.providerCountBadge', "Controls the count badges on Source Control Provider headers. These headers only appear when there is more than one provider."),
155155
default: 'hidden'
156156
},
157157
'scm.defaultViewMode': {

0 commit comments

Comments
 (0)