mirror of
https://github.com/finos/SymphonyElectron.git
synced 2024-11-22 08:57:00 -06:00
30 lines
678 B
YAML
30 lines
678 B
YAML
|
#
|
||
|
# Your Crowdin credentials
|
||
|
#
|
||
|
"project_id": "420172" # Crowdin project Settings > API & Webhooks > API > Project Id
|
||
|
"api_token_env": "CROWDIN_PERSONAL_TOKEN" # Low priority: superseded by user-specific credentials file ~/.crowdin.yaml
|
||
|
"base_path": "."
|
||
|
"base_url": "https://api.crowdin.com"
|
||
|
|
||
|
#
|
||
|
# Choose file structure in Crowdin
|
||
|
# e.g. true or false
|
||
|
#
|
||
|
"preserve_hierarchy": true
|
||
|
|
||
|
#
|
||
|
# Files configuration
|
||
|
#
|
||
|
files:
|
||
|
[
|
||
|
{
|
||
|
"source": "/src/locale/en-US.json",
|
||
|
"translation": "/src/locale/%locale%.json",
|
||
|
},
|
||
|
# Duplicate file
|
||
|
{
|
||
|
"source": "/src/locale/en.json",
|
||
|
"translation": "/src/locale/%two_letters_code%.json",
|
||
|
},
|
||
|
]
|