mirror of
https://github.com/suitenumerique/messages.git
synced 2026-08-17 21:25:41 +02:00
This large PR modernizes the backend of the app: - Python Dependency Management: Poetry → uv - Object Storage for local dev: MinIO (now unmaintained) → RustFS - Makefile Target Standardization to align with other LaSuite repos - Internationalization Removal on backend: we only care about i18n on the frontend - Backend dependencies upgrade
31 lines
669 B
YAML
31 lines
669 B
YAML
#
|
|
# Your crowdin's credentials
|
|
#
|
|
api_token_env: CROWDIN_PERSONAL_TOKEN
|
|
project_id_env: CROWDIN_PROJECT_ID
|
|
base_path_env: CROWDIN_BASE_PATH
|
|
|
|
#
|
|
# Choose file structure in crowdin
|
|
# e.g. true or false
|
|
#
|
|
preserve_hierarchy: true
|
|
|
|
#
|
|
# Files configuration
|
|
#
|
|
files: [
|
|
{
|
|
source: "/frontend/public/locales/common/en-US.json",
|
|
dest: "/frontend-common.json",
|
|
translation: "/frontend/public/locales/common/%locale%.json",
|
|
skip_untranslated_strings: true,
|
|
},
|
|
{
|
|
source: "/frontend/public/locales/roles/en-US.json",
|
|
dest: "/frontend-roles.json",
|
|
translation: "/frontend/public/locales/roles/%locale%.json",
|
|
skip_untranslated_strings: true,
|
|
}
|
|
]
|