You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
664 B
22 lines
664 B
7 years ago
|
Use the Crowdin plugin to update translation files.
|
||
|
|
||
|
You must provide in your configuration:
|
||
|
|
||
|
* `project-identifier` - Identifier of your Crowdin project
|
||
|
* `project-key` - API Key of your Crowdin project
|
||
|
* `files` - Map of files with the crowdin file name as key and the to-upload file-path as value.
|
||
|
|
||
|
Information about API keys: https://support.crowdin.com/api/api-integration-setup/
|
||
|
## Example
|
||
|
|
||
|
The following is a sample configuration in your .drone.yml file:
|
||
|
|
||
|
```yaml
|
||
|
translations:
|
||
|
crowdin:
|
||
|
project-identifier: example
|
||
|
project-key: 1bc29b36f623ba82aaf6724fd3b16718
|
||
|
files:
|
||
|
example: options/example.ini
|
||
|
example2: options/example2.ini
|
||
|
```
|