web - tweak wording of quality change dialog

This commit is contained in:
Benjamin Pasero 2020-07-16 08:33:22 +02:00
parent c46ac429e2
commit d11d7bf1ef

View file

@ -506,7 +506,9 @@ export class SwitchProductQualityContribution extends Disposable implements IWor
const res = await dialogService.confirm({
type: 'info',
message: nls.localize('relaunchMessage', "Changing the version requires a reload to take effect"),
detail: newQuality === 'insider' ? nls.localize('relaunchDetailInsiders', "Press the reload button to switch to the insiders version.") : nls.localize('relaunchDetailStable', "Press the reload button to switch to the stable version."),
detail: newQuality === 'insider' ?
nls.localize('relaunchDetailInsiders', "Press the reload button to switch to the nightly pre-production version of VSCode.") :
nls.localize('relaunchDetailStable', "Press the reload button to switch to the monthly released stable version of VSCode."),
primaryButton: nls.localize('reload', "&&Reload")
});