Web:Client:Add t.

This commit is contained in:
Vlada Gazizova 2023-01-29 21:02:11 +03:00
parent 183c38e648
commit 76f62accf4

View File

@ -373,9 +373,9 @@ class UploadDataStore {
const res = convertFile(fileId, itemPassword) const res = convertFile(fileId, itemPassword)
.then((res) => res) .then((res) => res)
.catch(() => { .catch(() => {
runInAction(() => { const error = t("FailedToConvert");
const error = t("FailedToConvert");
runInAction(() => {
if (file) file.error = error; if (file) file.error = error;
if (historyFile) historyFile.error = error; if (historyFile) historyFile.error = error;
}); });
@ -752,7 +752,8 @@ class UploadDataStore {
fileSize, fileSize,
indexOfFile, indexOfFile,
file, file,
path path,
t
) => { ) => {
this.filesStore.setOperationAction(true); this.filesStore.setOperationAction(true);
const length = requestsDataArray.length; const length = requestsDataArray.length;
@ -823,7 +824,7 @@ class UploadDataStore {
if (!this.filesToConversion.length || this.converted) { if (!this.filesToConversion.length || this.converted) {
this.filesToConversion.push(currentFile); this.filesToConversion.push(currentFile);
this.startConversion(); this.startConversion(t);
} else { } else {
this.filesToConversion.push(currentFile); this.filesToConversion.push(currentFile);
} }
@ -956,7 +957,8 @@ class UploadDataStore {
fileSize, fileSize,
indexOfFile, indexOfFile,
file, file,
path path,
t
); );
}) })
.catch((error) => { .catch((error) => {