mirror of https://github.com/Chocobozzz/PeerTube
Use update i18n command instead of generate
parent
1e7eb457ed
commit
49a56c7203
|
@ -35,7 +35,7 @@
|
|||
"danger:clean:dev": "scripty",
|
||||
"danger:clean:prod": "scripty",
|
||||
"danger:clean:modules": "scripty",
|
||||
"i18n:generate": "scripty",
|
||||
"i18n:update": "scripty",
|
||||
"plugin:install": "node ./dist/scripts/plugin/install.js",
|
||||
"plugin:uninstall": "node ./dist/scripts/plugin/uninstall.js",
|
||||
"i18n:create-custom-files": "node ./dist/scripts/i18n/create-custom-files.js",
|
||||
|
|
|
@ -2,6 +2,8 @@
|
|||
|
||||
set -eu
|
||||
|
||||
git fetch weblate && git merge weblate/develop
|
||||
|
||||
npm run build -- --i18n
|
||||
|
||||
cd client
|
|
@ -8,10 +8,8 @@ Source files are in `client/src/locale` and translated files merged from [Weblat
|
|||
Will generate XLIFF base files for Angular (`angular.xlf`) and JSON files for the player (`player.en-US.json`) and the server (`server.en-US.json`).
|
||||
Then, it will merge new translation keys into localized Angular files (`angular.fr-FR.xlf` etc).
|
||||
|
||||
**Only generate new translations after a Weblate pull to avoid conflicts**
|
||||
|
||||
```
|
||||
$ npm run i18n:generate
|
||||
$ npm run i18n:update
|
||||
```
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue