Welcome to mirror list, hosted at ThFree Co, Russian Federation.

crowdin.yml - github.com/betaflight/betaflight-configurator.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: be4e256d50401df6bedb5b846301011d4c503205 (plain)
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
#
# Files configuration
#
"preserve_hierarchy": false

files: [
 {
  #
  # Source files filter
  # e.g. "/resources/en/*.json"
  #
  "source" : "/locales/en/messages.json",

  #
  # where translations live
  # e.g. "/resources/%two_letters_code%/%original_file_name%"
  #
  "translation" : "/locales/%two_letters_code%/%original_file_name%",

  #
  # Often software projects have custom names for locale directories. crowdin-cli allows you to map your own languages to be understandable by Crowdin.
  #
  "languages_mapping" : {
    "two_letters_code" : {
      "pt-BR" : "pt_BR",
      "zh-CN" : "zh_CN"
     }
  }
 }
]