diff options
author | Paul Frazee <pfrazee@gmail.com> | 2025-02-06 12:46:10 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-06 12:46:10 -0800 |
commit | b12d39b4cff0fe1b91fb16496c3fea1ed22de5cf (patch) | |
tree | 7486412af2ce67f2c37373de66d035875a0b24b6 /package.json | |
parent | be1285ea36124c5db3e2b270fd28b97900fa1bd9 (diff) | |
download | voidsky-b12d39b4cff0fe1b91fb16496c3fea1ed22de5cf.tar.zst |
Updated i18n process (#7684)
* Update documentation * Update crowdin.yml for cli usage * Add more info about crowdin cli setup * Add intl:pull and intl:push commands
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/package.json b/package.json index 51289dd8d..cd6303c38 100644 --- a/package.json +++ b/package.json @@ -43,8 +43,10 @@ "perf:test:results": "NODE_ENV=test flashlight report .perf/results.json", "perf:measure": "NODE_ENV=test flashlight measure", "intl:build": "yarn intl:extract && yarn intl:compile", - "intl:extract": "lingui extract", + "intl:extract": "lingui extract --clean", "intl:compile": "lingui compile", + "intl:pull": "crowdin download translations --verbose -b main", + "intl:push": "crowdin push translations --verbose -b main", "nuke": "rm -rf ./node_modules && rm -rf ./ios && rm -rf ./android", "update-extensions": "bash scripts/updateExtensions.sh", "export": "npx expo export", |