Improve wording of issue reporter clipboard warning, fixes #82856

This commit is contained in:
Rachel Macfarlane
2019-10-21 16:08:16 -07:00
parent d1499b2664
commit c10b3b7426
@@ -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")
]
};