From c10b3b74263ebffced91faa4683c3cfc29ebf4d8 Mon Sep 17 00:00:00 2001 From: Rachel Macfarlane Date: Mon, 21 Oct 2019 16:07:42 -0700 Subject: [PATCH] Improve wording of issue reporter clipboard warning, fixes #82856 --- src/vs/platform/issue/electron-main/issueMainService.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/vs/platform/issue/electron-main/issueMainService.ts b/src/vs/platform/issue/electron-main/issueMainService.ts index e7bca7849f4..1307534e24a 100644 --- a/src/vs/platform/issue/electron-main/issueMainService.ts +++ b/src/vs/platform/issue/electron-main/issueMainService.ts @@ -81,10 +81,10 @@ export class IssueMainService implements IIssueService { ipcMain.on('vscode:issueReporterClipboard', (event: IpcMainEvent) => { const messageOptions = { - message: localize('issueReporterWriteToClipboard', "There is too much data to send to GitHub. Would you like to write the information to the clipboard so that it can be pasted?"), + message: localize('issueReporterWriteToClipboard', "There is too much data to send to GitHub directly. The data will be copied to the clipboard, please paste it into the GitHub issue page that is opened."), type: 'warning', buttons: [ - localize('yes', "Yes"), + localize('ok', "OK"), localize('cancel', "Cancel") ] };