forked from openrocket/openrocket
-
Notifications
You must be signed in to change notification settings - Fork 0
/
crowdin.yml
45 lines (37 loc) · 1.21 KB
/
crowdin.yml
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
#
# Your Crowdin credentials
#
"project_id": "711913"
"api_token_env": "CROWDIN_API_TOKEN"
"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": "core/src/main/resources/l10n/messages.properties",
"dest": "core/src/main/resources/l10n/messages_%two_letters_code%.properties",
"translation": "core/src/main/resources/l10n/messages_%two_letters_code%.properties",
"type": "properties",
# 3 - escape single quote by another single quote only in strings containing variables ( {0} ).
"escape_quotes": 3,
# 0 - do not escape special characters
"escape_special_characters": 0
},
{
"source": "core/src/main/resources/l10n/messages.properties",
"dest": "core/src/main/resources/l10n/messages_%locale_with_underscore%.properties",
"translation": "core/src/main/resources/l10n/messages_%locale_with_underscore%.properties",
"type": "properties",
# 3 - escape single quote by another single quote only in strings containing variables ( {0} ).
"escape_quotes": 3,
# 0 - do not escape special characters
"escape_special_characters": 0
}
]