Skip to content

Commit

Permalink
More setting description tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
roblourens committed Aug 1, 2018
1 parent 3da7b06 commit 7dc16e9
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions src/vs/workbench/browser/parts/editor/breadcrumbs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ Registry.as<IConfigurationRegistry>(Extensions.Configuration).registerConfigurat
// default: false
// },
'breadcrumbs.filePath': {
description: localize('filepath', "Controls if and how file paths are shown in the breadcrumbs view."),
description: localize('filepath', "Controls whether and how file paths are shown in the breadcrumbs view."),
type: 'string',
default: 'on',
enum: ['on', 'off', 'last'],
Expand All @@ -131,7 +131,7 @@ Registry.as<IConfigurationRegistry>(Extensions.Configuration).registerConfigurat
]
},
'breadcrumbs.symbolPath': {
description: localize('symbolpath', "Controls if and how symbols are shown in the breadcrumbs view."),
description: localize('symbolpath', "Controls whether and how symbols are shown in the breadcrumbs view."),
type: 'string',
default: 'on',
enum: ['on', 'off', 'last'],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ configurationRegistry.registerConfiguration({
'properties': {
'files.exclude': {
'type': 'object',
'description': nls.localize('exclude', "Configure glob patterns for excluding files and folders. For example, the files explorer decides which files and folders to show or hide based on this setting."),
'description': nls.localize('exclude', "Configure glob patterns for excluding files and folders. For example, the files explorer decides which files and folders to show or hide based on this setting. Read more about glob patterns [here](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options)."),
'default': { '**/.git': true, '**/.svn': true, '**/.hg': true, '**/CVS': true, '**/.DS_Store': true },
'scope': ConfigurationScope.RESOURCE,
'additionalProperties': {
Expand Down Expand Up @@ -351,22 +351,22 @@ configurationRegistry.registerConfiguration({
},
'explorer.autoReveal': {
'type': 'boolean',
'description': nls.localize('autoReveal', "Controls if the explorer should automatically reveal and select files when opening them."),
'description': nls.localize('autoReveal', "Controls whether the explorer should automatically reveal and select files when opening them."),
'default': true
},
'explorer.enableDragAndDrop': {
'type': 'boolean',
'description': nls.localize('enableDragAndDrop', "Controls if the explorer should allow to move files and folders via drag and drop."),
'description': nls.localize('enableDragAndDrop', "Controls whether the explorer should allow to move files and folders via drag and drop."),
'default': true
},
'explorer.confirmDragAndDrop': {
'type': 'boolean',
'description': nls.localize('confirmDragAndDrop', "Controls if the explorer should ask for confirmation to move files and folders via drag and drop."),
'description': nls.localize('confirmDragAndDrop', "Controls whether the explorer should ask for confirmation to move files and folders via drag and drop."),
'default': true
},
'explorer.confirmDelete': {
'type': 'boolean',
'description': nls.localize('confirmDelete', "Controls if the explorer should ask for confirmation when deleting a file via the trash."),
'description': nls.localize('confirmDelete', "Controls whether the explorer should ask for confirmation when deleting a file via the trash."),
'default': true
},
'explorer.sortOrder': {
Expand All @@ -384,12 +384,12 @@ configurationRegistry.registerConfiguration({
},
'explorer.decorations.colors': {
type: 'boolean',
description: nls.localize('explorer.decorations.colors', "Controls if file decorations should use colors."),
description: nls.localize('explorer.decorations.colors', "Controls whether file decorations should use colors."),
default: true
},
'explorer.decorations.badges': {
type: 'boolean',
description: nls.localize('explorer.decorations.badges', "Controls if file decorations should use badges."),
description: nls.localize('explorer.decorations.badges', "Controls whether file decorations should use badges."),
default: true
},
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ configurationRegistry.registerConfiguration({
'properties': {
'telemetry.enableCrashReporter': {
'type': 'boolean',
'description': nls.localize('telemetry.enableCrashReporting', "Enable crash reports to be sent to a Microsoft online service..\nThis option requires restart to take effect."),
'description': nls.localize('telemetry.enableCrashReporting', "Enable crash reports to be sent to a Microsoft online service. \nThis option requires restart to take effect."),
'default': true,
'tags': ['usesOnlineServices']
}
Expand Down

0 comments on commit 7dc16e9

Please sign in to comment.