From fc691f719c46bd6ea923a82ccf3b5fbcface3f7e Mon Sep 17 00:00:00 2001 From: Rachel Macfarlane Date: Mon, 22 Jan 2018 13:33:44 -0800 Subject: [PATCH] Update issue reporter wording, fixes #41994 --- .../code/electron-browser/issue/issueReporter.html | 12 ++++++------ .../code/electron-browser/issue/issueReporterMain.ts | 6 +++--- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/vs/code/electron-browser/issue/issueReporter.html b/src/vs/code/electron-browser/issue/issueReporter.html index 553c3d51de5..ad3010252ec 100644 --- a/src/vs/code/electron-browser/issue/issueReporter.html +++ b/src/vs/code/electron-browser/issue/issueReporter.html @@ -9,7 +9,7 @@
- +
@@ -42,7 +42,7 @@
My System Info - +
@@ -54,7 +54,7 @@
Currently Running Processes - +
@@ -66,7 +66,7 @@
My Workspace Stats - +
@@ -86,7 +86,7 @@
 					
We support GitHub-flavored Markdown. - After submitting, you will still be able to edit your issue on GitHub. + You will still be able to edit your issue when we preview it on GitHub. diff --git a/src/vs/code/electron-browser/issue/issueReporterMain.ts b/src/vs/code/electron-browser/issue/issueReporterMain.ts index 898e52222bf..c5300541bde 100644 --- a/src/vs/code/electron-browser/issue/issueReporterMain.ts +++ b/src/vs/code/electron-browser/issue/issueReporterMain.ts @@ -246,9 +246,9 @@ export class IssueReporter extends Disposable { hide(processBlock); hide(workspaceBlock); - descriptionTitle.innerHTML = 'Steps to reproduce *'; + descriptionTitle.innerHTML = 'Steps to Reproduce *'; show(descriptionSubtitle); - descriptionSubtitle.innerHTML = 'How did you encounter this problem? Clear steps to reproduce the problem help our investigation. What did you expect to happen and what actually happened?'; + descriptionSubtitle.innerHTML = 'How did you encounter this problem? Please provide clear steps to reproduce the problem during our investigation. What did you expect to happen and what actually did happen?'; } // 2 - Perf Issue else if (issueType === 1) { @@ -256,7 +256,7 @@ export class IssueReporter extends Disposable { show(processBlock); show(workspaceBlock); - descriptionTitle.innerHTML = 'Steps to reproduce *'; + descriptionTitle.innerHTML = 'Steps to Reproduce *'; show(descriptionSubtitle); descriptionSubtitle.innerHTML = 'When did this performance issue happen? For example, does it occur on startup or after a specific series of actions? Any details you can provide help our investigation.'; }