Skip to content

Commit

Permalink
Update transle script.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandrevicenzi committed Mar 14, 2017
1 parent 323166a commit b39448f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions translate.sh
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
#!/usr/bin/env bash

function extract_pot() {
pybabel extract --mapping translations/babel.cfg --output translations/messages.pot ./
pybabel extract -s --no-wrap --project="Flex" --copyright-holder="Alexandre Vicenzi" --version="2.1.0" --mapping translations/babel.cfg --output translations/messages.pot ./
}

function new_translation() {
pybabel init --input-file translations/messages.pot --output-dir translations/ --locale $1 --domain messages
pybabel init --no-wrap --input-file translations/messages.pot --output-dir translations/ --locale $1 --domain messages
}

function update_translation() {
pybabel update --input-file translations/messages.pot --output-dir translations/ --domain messages
pybabel update --no-wrap --input-file translations/messages.pot --output-dir translations/ --domain messages
}

function compile_translations() {
pybabel compile --directory translations/ --domain messages
pybabel compile -f --directory translations/ --domain messages
}

function can_run() {
Expand Down

0 comments on commit b39448f

Please sign in to comment.