Fix capitalization in survey notification (#187168)

This commit is contained in:
Joyce Er 2023-07-06 11:00:48 -07:00 committed by GitHub
parent 0daeaf508c
commit 078d0fd6e3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -98,7 +98,7 @@ class CESContribution extends Disposable implements IWorkbenchContribution {
this.skipSurvey();
}
}, {
label: nls.localize('remindLater', "Remind Me later"),
label: nls.localize('remindLater', "Remind Me Later"),
run: () => {
sendTelemetry('remindLater');
this.storageService.store(REMIND_LATER_DATE_KEY, new Date().toUTCString(), StorageScope.APPLICATION, StorageTarget.USER);

View file

@ -105,7 +105,7 @@ class LanguageSurvey extends Disposable {
storageService.store(SKIP_VERSION_KEY, productService.version, StorageScope.APPLICATION, StorageTarget.USER);
}
}, {
label: localize('remindLater', "Remind Me later"),
label: localize('remindLater', "Remind Me Later"),
run: () => {
telemetryService.publicLog(`${data.surveyId}.survey/remindMeLater`);
storageService.store(SESSION_COUNT_KEY, sessionCount - 3, StorageScope.APPLICATION, StorageTarget.USER);

View file

@ -76,7 +76,7 @@ class NPSContribution implements IWorkbenchContribution {
storageService.store(SKIP_VERSION_KEY, productService.version, StorageScope.APPLICATION, StorageTarget.USER);
}
}, {
label: nls.localize('remindLater', "Remind Me later"),
label: nls.localize('remindLater', "Remind Me Later"),
run: () => storageService.store(SESSION_COUNT_KEY, sessionCount - 3, StorageScope.APPLICATION, StorageTarget.USER)
}, {
label: nls.localize('neverAgain', "Don't Show Again"),