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") ] };