]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - support/doc/development/localization.md
Fix e2e tests
[github/Chocobozzz/PeerTube.git] / support / doc / development / localization.md
1 # Application localization documentation
2
3 Source files are in `client/src/locale/source` and translated files pulled from [Zanata](https://trad.framasoft.org/zanata/iteration/view/peertube/develop/languages/fr?dswid=-1605) in `client/src/locale/target`.
4
5 ## Generation
6
7 Will generate XLIFF files for Angular and escape inner elements in `source` tag because Zanata does not support them.
8
9 This script will create `player_en_US.xml` XLIFF file using custom strings (VideoJS plugins) and strings from `videojs_en_US.json` file.
10
11 It will also create `server_en_US.xml` and `iso639_en_US.xml` XLIFF file using server strings and custom strings (defined inside the script, we did not find a way to extract them from TypeScript server files).
12
13 ```
14 $ npm run i18n:generate
15 ```
16
17 ## Upload on Zanata
18
19 Push source source files (en-US) on Zanata:
20
21 ```
22 $ zanata-cli push
23 ```
24
25 ## Pull translation
26
27 Pull XLIFF files from Zanata, and unescape them (so we retrieve inner elements in `source` tag, used by Angular).
28 A hook converts `player` and `server`, `iso639` translation files to JSON (needed by Video.JS, and our application to have efficient runtime translation).
29 Then, `iso639` files will be merged in `server` files (so we have only one JSON file to serve server translations).
30
31 ```
32 $ zanata-cli pull
33 ```
34
35 ## Support a new language
36
37 * Add it to [/shared/models/i18n/i18n.ts](/shared/models/i18n/i18n.ts)
38 * Add it to [/scripts/build/client.sh](/scripts/build/client.sh)
39 * Pull using zanata (that will execute hooks to correctly generate files of this new language)
40 * Build the application and check the new language correctly works