From 8c7e03931eb9f68d4698c3850653261a9e3b5b97 Mon Sep 17 00:00:00 2001 From: Christophe Bliard Date: Fri, 8 Sep 2023 10:16:46 +0200 Subject: [PATCH] [49848] Fix crowdin locale mapping directly in app settings In the web app, under Settings > Languages > Language Mapping, mappings for ckb-IR, zh-CN and zh-TW have been explicitly defined. There are not needed anymore in the configuration file. --- crowdin.yml | 54 ++++++----------------------------------------------- 1 file changed, 6 insertions(+), 48 deletions(-) diff --git a/crowdin.yml b/crowdin.yml index c8aca54fd7dc..043e5f1c1912 100644 --- a/crowdin.yml +++ b/crowdin.yml @@ -9,68 +9,26 @@ files: [ { "source": "/config/locales/en.yml", - "translation": "/config/locales/crowdin/%two_letters_code%.yml", - "languages_mapping": { - "two_letters_code": { - "ckb": "ckb-IR", - "zh-CN": "zh-CN", - "zh-TW": "zh-TW", - } - } + "translation": "/config/locales/crowdin/%two_letters_code%.yml" }, { "source": "/config/locales/js-en.yml", - "translation": "/config/locales/crowdin/js-%two_letters_code%.yml", - "languages_mapping": { - "two_letters_code": { - "ckb": "ckb-IR", - "zh-CN": "zh-CN", - "zh-TW": "zh-TW", - } - } + "translation": "/config/locales/crowdin/js-%two_letters_code%.yml" }, { "source": "/config/locales/en.seeders.yml", - "translation": "/config/locales/crowdin/%two_letters_code%.seeders.yml", - "languages_mapping": { - "two_letters_code": { - "ckb": "ckb-IR", - "zh-CN": "zh-CN", - "zh-TW": "zh-TW", - } - } + "translation": "/config/locales/crowdin/%two_letters_code%.seeders.yml" }, { "source": "/modules/**/config/locales/en.yml", - "translation": "/modules/**/config/locales/crowdin/%two_letters_code%.yml", - "languages_mapping": { - "two_letters_code": { - "ckb": "ckb-IR", - "zh-CN": "zh-CN", - "zh-TW": "zh-TW", - } - } + "translation": "/modules/**/config/locales/crowdin/%two_letters_code%.yml" }, { "source": "/modules/**/config/locales/js-en.yml", - "translation": "/modules/**/config/locales/crowdin/js-%two_letters_code%.yml", - "languages_mapping": { - "two_letters_code": { - "ckb": "ckb-IR", - "zh-CN": "zh-CN", - "zh-TW": "zh-TW", - } - } + "translation": "/modules/**/config/locales/crowdin/js-%two_letters_code%.yml" }, { "source": "/modules/**/config/locales/en.seeders.yml", - "translation": "/modules/**/config/locales/crowdin/%two_letters_code%.seeders.yml", - "languages_mapping": { - "two_letters_code": { - "ckb": "ckb-IR", - "zh-CN": "zh-CN", - "zh-TW": "zh-TW", - } - } + "translation": "/modules/**/config/locales/crowdin/%two_letters_code%.seeders.yml" }, ]