Fixes #143378 by mentioning "sound" in the audio cue settings name.

This commit is contained in:
Henning Dieterichs 2022-02-18 18:44:26 +01:00
parent b5d09a82f2
commit 3aafd130ec
No known key found for this signature in database
GPG key ID: 771381EFFDB9EC06

View file

@ -37,28 +37,28 @@ const audioCueFeatureBase: IConfigurationPropertySchema = {
Registry.as<IConfigurationRegistry>(ConfigurationExtensions.Configuration).registerConfiguration({
'properties': {
'audioCues.lineHasBreakpoint': {
'description': localize('audioCues.lineHasBreakpoint', "Plays an audio cue when the active line has a breakpoint."),
'description': localize('audioCues.lineHasBreakpoint', "Plays a sound when the active line has a breakpoint."),
...audioCueFeatureBase,
},
'audioCues.lineHasInlineSuggestion': {
'description': localize('audioCues.lineHasInlineSuggestion', "Plays an audio cue when the active line has an inline suggestion."),
'description': localize('audioCues.lineHasInlineSuggestion', "Plays a sound when the active line has an inline suggestion."),
...audioCueFeatureBase,
},
'audioCues.lineHasError': {
'description': localize('audioCues.lineHasError', "Plays an audio cue when the active line has an error."),
'description': localize('audioCues.lineHasError', "Plays a sound when the active line has an error."),
...audioCueFeatureBase,
},
'audioCues.lineHasFoldedArea': {
'description': localize('audioCues.lineHasFoldedArea', "Plays an audio cue when the active line has a folded area that can be unfolded."),
'description': localize('audioCues.lineHasFoldedArea', "Plays a sound when the active line has a folded area that can be unfolded."),
...audioCueFeatureBase,
},
'audioCues.lineHasWarning': {
'description': localize('audioCues.lineHasWarning', "Plays an audio cue when the active line has a warning."),
'description': localize('audioCues.lineHasWarning', "Plays a sound when the active line has a warning."),
...audioCueFeatureBase,
default: 'off',
},
'audioCues.debuggerStoppedOnBreakpoint': {
'description': localize('audioCues.debuggerStoppedOnBreakpoint', "Plays an audio cue when the debugger stopped on a breakpoint."),
'description': localize('audioCues.debuggerStoppedOnBreakpoint', "Plays a sound when the debugger stopped on a breakpoint."),
...audioCueFeatureBase,
},
}