Skip to content

Commit 816f31f

Browse files
author
Greg Van Liew
authored
More settings description tuning (microsoft#166429)
1 parent 5f11d2f commit 816f31f

File tree

8 files changed

+16
-16
lines changed

8 files changed

+16
-16
lines changed

extensions/markdown-language-features/package.nls.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"configuration.markdown.editor.drop.enabled": "Enable dropping files into a Markdown editor while holding Shift. Requires enabling `#editor.dropIntoEditor.enabled#`.",
3535
"configuration.markdown.editor.pasteLinks.enabled": "Enable pasting files into a Markdown editor inserts Markdown links. Requires enabling `#editor.experimental.pasteActions.enabled#`.",
3636
"configuration.markdown.validate.enabled.description": "Enable all error reporting in Markdown files.",
37-
"configuration.markdown.validate.referenceLinks.enabled.description": "Validate reference links in Markdown files, for example `[link][ref]`. Requires enabling `#markdown.validate.enabled#`.",
37+
"configuration.markdown.validate.referenceLinks.enabled.description": "Validate reference links in Markdown files, for example `[link][ref]`. Requires enabling `#markdown.validate.enabled#`.",
3838
"configuration.markdown.validate.fragmentLinks.enabled.description": "Validate fragment links to headers in the current Markdown file, for example `[link](#header)`. Requires enabling `#markdown.validate.enabled#`.",
3939
"configuration.markdown.validate.fileLinks.enabled.description": "Validate links to other files in Markdown files, for example `[link](/path/to/file.md)`. This checks that the target files exists. Requires enabling `#markdown.validate.enabled#`.",
4040
"configuration.markdown.validate.fileLinks.markdownFragmentLinks.description": "Validate the fragment part of links to headers in other files in Markdown files, for example `[link](/path/to/file.md#header)`. Inherits the setting value from `#markdown.validate.fragmentLinks.enabled#` by default.",
@@ -45,7 +45,7 @@
4545
"configuration.markdown.updateLinksOnFileMove.enabled.prompt": "Prompt on each file move.",
4646
"configuration.markdown.updateLinksOnFileMove.enabled.always": "Always update links automatically.",
4747
"configuration.markdown.updateLinksOnFileMove.enabled.never": "Never try to update link and don't prompt.",
48-
"configuration.markdown.updateLinksOnFileMove.include": "Glob patterns that specifies which files that trigger automatic link updates. See `#markdown.updateLinksOnFileMove.enabled#` for details about this feature.",
48+
"configuration.markdown.updateLinksOnFileMove.include": "Glob patterns that specifies files that trigger automatic link updates. See `#markdown.updateLinksOnFileMove.enabled#` for details about this feature.",
4949
"configuration.markdown.updateLinksOnFileMove.include.property": "The glob pattern to match file paths against. Set to true to enable the pattern.",
5050
"configuration.markdown.updateLinksOnFileMove.enableForDirectories": "Enable updating links when a directory is moved or renamed in the workspace.",
5151
"configuration.markdown.occurrencesHighlight.enabled": "Enable highlighting link occurrences in the current document.",

extensions/typescript-language-features/package.nls.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@
165165
"configuration.tsserver.watchOptions.synchronousWatchDirectory": "Disable deferred watching on directories. Deferred watching is useful when lots of file changes might occur at once (e.g. a change in node_modules from running npm install), but you might want to disable it with this flag for some less-common setups.",
166166
"typescript.preferences.renameShorthandProperties.deprecationMessage": "The setting 'typescript.preferences.renameShorthandProperties' has been deprecated in favor of 'typescript.preferences.useAliasesForRenames'",
167167
"typescript.preferences.useAliasesForRenames": "Enable/disable introducing aliases for object shorthand properties during renames.",
168-
"typescript.workspaceSymbols.scope": "Controls which files are searched by [go to symbol in workspace](https://code.visualstudio.com/docs/editor/editingevolved#_open-symbol-by-name).",
168+
"typescript.workspaceSymbols.scope": "Controls which files are searched by [Go to Symbol in Workspace](https://code.visualstudio.com/docs/editor/editingevolved#_open-symbol-by-name).",
169169
"typescript.workspaceSymbols.scope.allOpenProjects": "Search all open JavaScript or TypeScript projects for symbols.",
170170
"typescript.workspaceSymbols.scope.currentProject": "Only search for symbols in the current JavaScript or TypeScript project.",
171171
"codeActions.refactor.extract.constant.title": "Extract constant",

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ Registry.as<IConfigurationRegistry>(ConfigurationExtensions.Configuration).regis
8484
...audioCueFeatureBase,
8585
},
8686
'audioCues.terminalQuickFix': {
87-
'description': localize('audioCues.terminalQuickFix', "Plays a sound when terminal Quick Fixes are available"),
87+
'description': localize('audioCues.terminalQuickFix', "Plays a sound when terminal Quick Fixes are available."),
8888
...audioCueFeatureBase,
8989
},
9090
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -503,7 +503,7 @@ configurationRegistry.registerConfiguration({
503503
},
504504
'debug.console.historySuggestions': {
505505
type: 'boolean',
506-
description: nls.localize('debug.console.historySuggestions', "Controls if the Sebug Console should suggest previously typed input."),
506+
description: nls.localize('debug.console.historySuggestions', "Controls if the Debug Console should suggest previously typed input."),
507507
default: true
508508
},
509509
'debug.console.collapseIdenticalLines': {

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ configurationRegistry.registerConfiguration({
138138
'properties': {
139139
[FILES_EXCLUDE_CONFIG]: {
140140
'type': 'object',
141-
'markdownDescription': nls.localize('exclude', "Configure [glob patterns](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options) for excluding files and folders. For example, the file explorer decides which files and folders to show or hide based on this setting. Refer to the `#search.exclude#` setting to define search-specific excludes. Refer to the `#explorer.excludeGitIgnore#` setting for ignorings files based on your `.gitignore`."),
141+
'markdownDescription': nls.localize('exclude', "Configure [glob patterns](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options) for excluding files and folders. For example, the File Explorer decides which files and folders to show or hide based on this setting. Refer to the `#search.exclude#` setting to define search-specific excludes. Refer to the `#explorer.excludeGitIgnore#` setting for ignorings files based on your `.gitignore`."),
142142
'default': {
143143
...{ '**/.git': true, '**/.svn': true, '**/.hg': true, '**/CVS': true, '**/.DS_Store': true, '**/Thumbs.db': true },
144144
...(isWeb ? { '**/*.crswap': true /* filter out swap files used for local file access */ } : undefined)
@@ -373,7 +373,7 @@ configurationRegistry.registerConfiguration({
373373
},
374374
'explorer.autoRevealExclude': {
375375
'type': 'object',
376-
'markdownDescription': nls.localize('autoRevealExclude', "Configure glob patterns for excluding files and folders from being revealed and selected in the explorer when they are opened. Read more about glob patterns [here](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options)."),
376+
'markdownDescription': nls.localize('autoRevealExclude', "Configure glob patterns for excluding files and folders from being revealed and selected in the Explorer when they are opened. Read more about glob patterns [here](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options)."),
377377
'default': { '**/node_modules': true, '**/bower_components': true },
378378
'additionalProperties': {
379379
'anyOf': [
@@ -471,11 +471,11 @@ configurationRegistry.registerConfiguration({
471471
'type': 'string',
472472
enum: ['simple', 'smart', 'disabled'],
473473
enumDescriptions: [
474-
nls.localize('simple', "Appends the word \"copy\" at the end of the duplicated name potentially followed by a number"),
475-
nls.localize('smart', "Adds a number at the end of the duplicated name. If some number is already part of the name, tries to increase that number"),
476-
nls.localize('disabled', "Disables incremental naming. If two files with the same name exist you will be prompted to overwrite the existing file")
474+
nls.localize('simple', "Appends the word \"copy\" at the end of the duplicated name potentially followed by a number."),
475+
nls.localize('smart', "Adds a number at the end of the duplicated name. If some number is already part of the name, tries to increase that number."),
476+
nls.localize('disabled', "Disables incremental naming. If two files with the same name exist you will be prompted to overwrite the existing file.")
477477
],
478-
description: nls.localize('explorer.incrementalNaming', "Controls what naming strategy to use when a giving a new name to a duplicated explorer item on paste."),
478+
description: nls.localize('explorer.incrementalNaming', "Controls what naming strategy to use when a giving a new name to a duplicated Explorer item on paste."),
479479
default: 'simple'
480480
},
481481
'explorer.compactFolders': {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ Registry.as<IConfigurationRegistry>(ConfigurationExtensions.Configuration).regis
171171
...editorConfigurationBaseNode,
172172
properties: {
173173
[DefaultFoldingRangeProvider.configName]: {
174-
description: nls.localize('formatter.default', "Defines a default folding range provider which takes precedence over all other folding range provider. Must be the identifier of an extension contributing a folding range provider."),
174+
description: nls.localize('formatter.default', "Defines a default folding range provider that takes precedence over all other folding range providers. Must be the identifier of an extension contributing a folding range provider."),
175175
type: ['string', 'null'],
176176
default: null,
177177
enum: DefaultFoldingRangeProvider.extensionIds,

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -900,7 +900,7 @@ configurationRegistry.registerConfiguration({
900900
tags: ['notebookLayout']
901901
},
902902
[NotebookSetting.outputFontSize]: {
903-
markdownDescription: nls.localize('notebook.outputFontSize', "Font size for the output text for notebook cells. When set to {0}, {1} is used.", '`0`', '`#editor.fontSize#`'),
903+
markdownDescription: nls.localize('notebook.outputFontSize', "Font size for the output text for notebook cells. When set to 0, {0} is used.", '`#editor.fontSize#`'),
904904
type: 'number',
905905
default: 0,
906906
tags: ['notebookLayout']

src/vs/workbench/contrib/terminal/common/terminalConfiguration.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -451,8 +451,8 @@ const terminalConfiguration: IConfigurationNode = {
451451
type: 'string',
452452
enum: ['6', '11'],
453453
enumDescriptions: [
454-
localize('terminal.integrated.unicodeVersion.six', "Version 6 of Unicode; this is an older version which should work better on older systems."),
455-
localize('terminal.integrated.unicodeVersion.eleven', "Version 11 of Unicode; this version provides better support on modern systems that use modern versions of Unicode.")
454+
localize('terminal.integrated.unicodeVersion.six', "Version 6 of Unicode. This is an older version which should work better on older systems."),
455+
localize('terminal.integrated.unicodeVersion.eleven', "Version 11 of Unicode. This version provides better support on modern systems that use modern versions of Unicode.")
456456
],
457457
default: '11',
458458
description: localize('terminal.integrated.unicodeVersion', "Controls what version of Unicode to use when evaluating the width of characters in the terminal. If you experience emoji or other wide characters not taking up the right amount of space or backspace either deleting too much or too little then you may want to try tweaking this setting.")
@@ -516,7 +516,7 @@ const terminalConfiguration: IConfigurationNode = {
516516
default: 'onExit'
517517
},
518518
[TerminalSettingId.CustomGlyphs]: {
519-
description: localize('terminal.integrated.customGlyphs', "Whether to draw custom glyphs for block element and box drawing characters instead of using the font, which typically yields better rendering with continuous lines. Note that this doesn't work with the DOM renderer"),
519+
description: localize('terminal.integrated.customGlyphs', "Whether to draw custom glyphs for block element and box drawing characters instead of using the font, which typically yields better rendering with continuous lines. Note that this doesn't work with the DOM renderer."),
520520
type: 'boolean',
521521
default: true
522522
},

0 commit comments

Comments
 (0)