Skip to content

Commit

Permalink
Fixes microsoft#143378 by mentioning "sound" in the audio cue setting…
Browse files Browse the repository at this point in the history
…s name.
  • Loading branch information
hediet committed Feb 18, 2022
1 parent b5d09a8 commit 3aafd13
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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,
},
}
Expand Down

0 comments on commit 3aafd13

Please sign in to comment.