Update copy
parent
8cff59f123
commit
d55cb4266a
|
@ -503,8 +503,8 @@
|
|||
"Enable experimental, compact IRC style layout": "Enable experimental, compact IRC style layout",
|
||||
"Collecting app version information": "Collecting app version information",
|
||||
"Collecting logs": "Collecting logs",
|
||||
"Uploading report": "Uploading report",
|
||||
"Downloading report": "Downloading report",
|
||||
"Uploading logs": "Uploading logs",
|
||||
"Downloading logs": "Downloading logs",
|
||||
"Waiting for response from server": "Waiting for response from server",
|
||||
"Messages containing my display name": "Messages containing my display name",
|
||||
"Messages containing my username": "Messages containing my username",
|
||||
|
|
|
@ -204,7 +204,7 @@ export default async function sendBugReport(bugReportEndpoint: string, opts: IOp
|
|||
const progressCallback = opts.progressCallback || (() => {});
|
||||
const body = await collectBugReport(opts);
|
||||
|
||||
progressCallback(_t("Uploading report"));
|
||||
progressCallback(_t("Uploading logs"));
|
||||
await _submitReport(bugReportEndpoint, body, progressCallback);
|
||||
}
|
||||
|
||||
|
@ -226,7 +226,7 @@ export async function downloadBugReport(opts: IOpts = {}) {
|
|||
const progressCallback = opts.progressCallback || (() => {});
|
||||
const body = await collectBugReport(opts, false);
|
||||
|
||||
progressCallback(_t("Downloading report"));
|
||||
progressCallback(_t("Downloading logs"));
|
||||
let metadata = "";
|
||||
const tape = new Tar();
|
||||
let i = 0;
|
||||
|
|
Loading…
Reference in New Issue