diff --git a/tools/localization/src/constants.ts b/tools/localization/src/constants.ts index dfeeb56740..0f5d73654f 100644 --- a/tools/localization/src/constants.ts +++ b/tools/localization/src/constants.ts @@ -62,7 +62,6 @@ export const I18N_FILES = [ "11-arrays", "12-dont-translate", "14-marketdescription", - "15-markettitle", "16-multimedia-editor", "17-model-manager", "18-standard-models", diff --git a/tools/localization/src/update.ts b/tools/localization/src/update.ts index cd1b42687f..d347fcbda8 100644 --- a/tools/localization/src/update.ts +++ b/tools/localization/src/update.ts @@ -81,7 +81,6 @@ async function replacechars(fileName: string): Promise { */ function fileExtFor(f: string): string { if (f == "14-marketdescription") return ".txt"; - else if (f == "15-markettitle") return ".txt"; else return ".xml"; } diff --git a/tools/localization/src/upload.ts b/tools/localization/src/upload.ts index 5026f6bce7..75f9f2575e 100644 --- a/tools/localization/src/upload.ts +++ b/tools/localization/src/upload.ts @@ -38,13 +38,6 @@ export async function uploadI18nFiles() { let I18N_FILE_TARGET_NAME = `${file}.xml`; let I18N_FILE_SOURCE_NAME = `${I18N_FILES_DIR}${I18N_FILE_TARGET_NAME}`; - // special case, the title is just the name as one line, it is ephemeral so create it - if (file == "15-markettitle") { - I18N_FILE_TARGET_NAME = "15-markettitle.txt"; - I18N_FILE_SOURCE_NAME = path.join(TEMP_DIR, "15-markettitle.txt"); - fs.writeFileSync(I18N_FILE_SOURCE_NAME, TITLE_STR); - } - // special case, the market description is a txt file from different location if (file == "14-marketdescription") { I18N_FILE_TARGET_NAME = "14-marketdescription.txt";