-
Notifications
You must be signed in to change notification settings - Fork 175
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4065 from nucleogenesis/bug--kolibri-tools-i18n-c…
…ommands Update makemessages & transfercontext scripts to use kolibri-tools CLI
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,9 +9,9 @@ | |
"lint-frontend:format": "yarn run lint-frontend --write", | ||
"lint-frontend:watch": "yarn run lint-frontend --monitor", | ||
"lint-frontend:watch:format": "yarn run lint-frontend --monitor --write", | ||
"makemessages": "node ./node_modules/kolibri-tools/lib/i18n/ExtractMessages.js --project=studio", | ||
"makemessages": "kolibri-tools i18n-extract-messages --namespace studio --searchPath contentcuration/contentcuration/frontend", | ||
"combineprofiles": "node ./node_modules/kolibri-tools/lib/combineStringProfiles.js ./contentcuration/locale/en/LC_MESSAGES/profiles/", | ||
"transfercontext": "APP_NAME=contentcuration node ./node_modules/kolibri-tools/lib/i18n/SyncContext.js run && yarn lint-all:fix", | ||
"transfercontext": "kolibri-tools i18n-transfer-context --namespace studio --searchPath contentcuration/contentcuration/frontend; yarn lint-all:fix", | ||
"build": "webpack --env prod --config webpack.config.js", | ||
"postgres": "pg_ctl -D /usr/local/var/[email protected] start || true", | ||
"redis": "redis-server /usr/local/etc/redis.conf || true", | ||
|