This commit is contained in:
2022-03-31 17:00:01 +00:00
parent 01651599db
commit 4eefcc2c25
2 changed files with 4 additions and 2 deletions

View File

@@ -66,7 +66,7 @@ import chartBarHorizontalControl from "./components/chart-bar-horizontal-control
//DEVELOPMENT MODE //DEVELOPMENT MODE
//THIS SHOULD BE FALSE IN RELEASE //THIS SHOULD BE FALSE IN RELEASE
//************************************************************ //************************************************************
const DEV_MODE = false; const DEV_MODE = true;
//************************************************************ //************************************************************
//************************************************************** //**************************************************************
//************************************************************** //**************************************************************

View File

@@ -194,6 +194,7 @@ export default {
res.data.forEach(function appendImportResultItem(value) { res.data.forEach(function appendImportResultItem(value) {
outText += value + "\n"; outText += value + "\n";
}); });
outText += "LT:ProcessCompleted\n";
this.outputText = await window.$gz.translation.translateStringWithMultipleKeysAsync( this.outputText = await window.$gz.translation.translateStringWithMultipleKeysAsync(
outText outText
); );
@@ -250,7 +251,8 @@ async function fetchTranslatedText() {
"ImportNewRecords", "ImportNewRecords",
"UpdateExistingRecords", "UpdateExistingRecords",
"AdminImportUpdateWarning", "AdminImportUpdateWarning",
"FileToImport" "FileToImport",
"ProcessCompleted"
]); ]);
} }