From fc44283f09b5a83450ed2b6563c5ac2ca02537ec Mon Sep 17 00:00:00 2001 From: Uruk Date: Thu, 2 Oct 2025 22:10:22 +0200 Subject: [PATCH] feat: add Crowdin configuration for translation management Enables automated translation workflow by configuring Crowdin integration. Sets up source translation file mapping from English to multiple language codes with update approval workflow. --- .github/crowdin.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/crowdin.yml diff --git a/.github/crowdin.yml b/.github/crowdin.yml new file mode 100644 index 00000000..4acc3208 --- /dev/null +++ b/.github/crowdin.yml @@ -0,0 +1,12 @@ +"project_id_env": "CROWDIN_PROJECT_ID" +"api_token_env": "CROWDIN_PERSONAL_TOKEN" +"base_path": "." + +"preserve_hierarchy": true + +"files": [ + { + "source": "translations/en.json", + "translation": "translations/%two_letters_code%.json" + } +] \ No newline at end of file