blob: 84d479a3248013dc3c63920e7cfdc860e47b4d51 (
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
|
# Finding missing translations
This package contains a script that detects missing translation keys in Titanfall2 translation files contained in this repository (in the `Northstar.Client/mod/resource` folder).
It uses english translations file as reference.
You have to launch it **from the repository root folder**:
```shell
node .github/build/find-missing-translations.js
```
The script will then list all missing translations for all supported languages.
If you want to display missing keys for a given language, just add it as an argument:
```shell
node .github/build/find-missing-translations.js french
```
Here's the list of supported languages:
* english
* french
* german
* italian
* japanese
* mspanish
* portuguese
* russian
* spanish
* tchinese
|