-
-
Notifications
You must be signed in to change notification settings - Fork 318
/
crowdin.yaml
46 lines (40 loc) · 1015 Bytes
/
crowdin.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#
# Your Crowdin credentials
#
"base_path": "."
"base_url": "https://api.crowdin.com"
"commit_message": 'New translations: %original_file_name% (%language%)'
"append_commit_message": false
#
# Choose file structure in Crowdin
# e.g. true or false
#
"preserve_hierarchy": true
#
# Files configuration
#
files: [
{
#
# Source files filter
# e.g. "/resources/en/*.json"
#
"source" : "/translation/source/*.yaml",
#
# Where translations will be placed
# e.g. "/resources/%two_letters_code%/%original_file_name%"
#
"translation" : "/translation/dest/%locale%/%file_name%.%file_extension%",
"labels" : ["mobile"],
#
# File type
# e.g. "json"
#
"type" : "yaml",
#
# The parameter "update_option" is optional. If it is not set, after the files update the translations for changed strings will be removed. Use to fix typos and for minor changes in the source strings
# e.g. "update_as_unapproved" or "update_without_changes"
#
"update_option" : "update_without_changes"
}
]