Skip to content

Commit 078d0fd

Browse files
authored
Fix capitalization in survey notification (microsoft#187168)
1 parent 0daeaf5 commit 078d0fd

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/vs/workbench/contrib/surveys/browser/ces.contribution.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ class CESContribution extends Disposable implements IWorkbenchContribution {
9898
this.skipSurvey();
9999
}
100100
}, {
101-
label: nls.localize('remindLater', "Remind Me later"),
101+
label: nls.localize('remindLater', "Remind Me Later"),
102102
run: () => {
103103
sendTelemetry('remindLater');
104104
this.storageService.store(REMIND_LATER_DATE_KEY, new Date().toUTCString(), StorageScope.APPLICATION, StorageTarget.USER);

src/vs/workbench/contrib/surveys/browser/languageSurveys.contribution.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ class LanguageSurvey extends Disposable {
105105
storageService.store(SKIP_VERSION_KEY, productService.version, StorageScope.APPLICATION, StorageTarget.USER);
106106
}
107107
}, {
108-
label: localize('remindLater', "Remind Me later"),
108+
label: localize('remindLater', "Remind Me Later"),
109109
run: () => {
110110
telemetryService.publicLog(`${data.surveyId}.survey/remindMeLater`);
111111
storageService.store(SESSION_COUNT_KEY, sessionCount - 3, StorageScope.APPLICATION, StorageTarget.USER);

src/vs/workbench/contrib/surveys/browser/nps.contribution.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ class NPSContribution implements IWorkbenchContribution {
7676
storageService.store(SKIP_VERSION_KEY, productService.version, StorageScope.APPLICATION, StorageTarget.USER);
7777
}
7878
}, {
79-
label: nls.localize('remindLater', "Remind Me later"),
79+
label: nls.localize('remindLater', "Remind Me Later"),
8080
run: () => storageService.store(SESSION_COUNT_KEY, sessionCount - 3, StorageScope.APPLICATION, StorageTarget.USER)
8181
}, {
8282
label: nls.localize('neverAgain', "Don't Show Again"),

0 commit comments

Comments
 (0)