Merge "Minor translation cleanups"
This commit is contained in:
commit
c563b2d6f4
@ -14,6 +14,9 @@
|
|||||||
# License for the specific language governing permissions and limitations
|
# License for the specific language governing permissions and limitations
|
||||||
# under the License.
|
# under the License.
|
||||||
|
|
||||||
|
# Used for setup.py babel commands
|
||||||
|
QUIET="--quiet"
|
||||||
|
|
||||||
# Initial transifex setup
|
# Initial transifex setup
|
||||||
function setup_translation {
|
function setup_translation {
|
||||||
# Track in HAS_CONFIG whether we run "tx init" since calling it
|
# Track in HAS_CONFIG whether we run "tx init" since calling it
|
||||||
@ -228,6 +231,8 @@ function send_patch {
|
|||||||
if [ $HAS_CONFIG -eq 1 ]; then
|
if [ $HAS_CONFIG -eq 1 ]; then
|
||||||
git reset -q .tx/config
|
git reset -q .tx/config
|
||||||
git checkout -- .tx/config
|
git checkout -- .tx/config
|
||||||
|
else
|
||||||
|
rm -rf .tx
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Don't send a review if nothing has changed.
|
# Don't send a review if nothing has changed.
|
||||||
@ -281,9 +286,9 @@ function extract_messages_log {
|
|||||||
project=$1
|
project=$1
|
||||||
|
|
||||||
# Update the .pot files
|
# Update the .pot files
|
||||||
python setup.py extract_messages
|
python setup.py $QUIET extract_messages
|
||||||
for level in $LEVELS ; do
|
for level in $LEVELS ; do
|
||||||
python setup.py extract_messages --no-default-keywords \
|
python setup.py $QUIET extract_messages --no-default-keywords \
|
||||||
--keyword ${LKEYWORD[$level]} \
|
--keyword ${LKEYWORD[$level]} \
|
||||||
--output-file ${project}/locale/${project}-log-${level}.pot
|
--output-file ${project}/locale/${project}-log-${level}.pot
|
||||||
done
|
done
|
||||||
|
@ -47,7 +47,8 @@ extract_messages_log "$PROJECT"
|
|||||||
PO_FILES=`find ${PROJECT}/locale -name "${PROJECT}.po"`
|
PO_FILES=`find ${PROJECT}/locale -name "${PROJECT}.po"`
|
||||||
if [ -n "$PO_FILES" ]; then
|
if [ -n "$PO_FILES" ]; then
|
||||||
# Use updated .pot file to update translations
|
# Use updated .pot file to update translations
|
||||||
python setup.py update_catalog --no-fuzzy-matching --ignore-obsolete=true
|
python setup.py $QUIET update_catalog \
|
||||||
|
--no-fuzzy-matching --ignore-obsolete=true
|
||||||
fi
|
fi
|
||||||
# We cannot run update_catalog for the log files, since there is no
|
# We cannot run update_catalog for the log files, since there is no
|
||||||
# option to specify the keyword and thus an update_catalog run would
|
# option to specify the keyword and thus an update_catalog run would
|
||||||
|
Loading…
Reference in New Issue
Block a user