blob: 3589ec3d21021770137a047b30f4d5d29a093d64 [file] [log] [blame]
avm999639f77d0d2020-12-28 22:16:12 +01001# Your Crowdin credentials
2"project_id" : "191707"
3"api_token" : "{{API_TOKEN}}"
4"base_path" : "../../."
5"base_url" : "https://api.crowdin.com"
6
7# Choose file structure in Crowdin
8"preserve_hierarchy": true
9
10# Files configuration
11files: [
12 {
13 # Source files filter
14 "source" : "src/_locales/en/messages.json",
15
16 # Where translations will be placed
17 "translation" : "src/_locales/%osx_locale%/%original_file_name%",
18
19 # Files or directories for ignore
20 "ignore" : ["OWNERS"],
21
22 # The dest allows you to specify a file name in Crowdin
23 # e.g. "/messages.json"
24 "dest" : "/messages.json",
25 "type" : "chrome",
26
27 "skip_untranslated_strings" : true,
28 "export_only_approved" : true,
29
30 "languages_mapping" : {
31 "osx_locale" : {
32 "es-AR" : "es_419",
33 "pt-PT" : "pt_PT",
34 "zh-CN" : "zh_CN",
35 "zh-TW" : "zh_TW",
36 }
37 },
38 }
39]