|
|
@ -56,8 +56,10 @@ for MODULE_DIR in $(find src/modules -maxdepth 1 -mindepth 1 -type d) ; do
|
|
|
|
MODULE_NAME=$(basename ${MODULE_DIR})
|
|
|
|
MODULE_NAME=$(basename ${MODULE_DIR})
|
|
|
|
if [ -d ${MODULE_DIR}/lang ]; then
|
|
|
|
if [ -d ${MODULE_DIR}/lang ]; then
|
|
|
|
${PYGETTEXT} -p ${MODULE_DIR}/lang -d ${MODULE_NAME} -o ${MODULE_NAME}.pot ${MODULE_DIR}/*.py
|
|
|
|
${PYGETTEXT} -p ${MODULE_DIR}/lang -d ${MODULE_NAME} -o ${MODULE_NAME}.pot ${MODULE_DIR}/*.py
|
|
|
|
if [ -f ${MODULE_DIR}/lang/${MODULE_NAME}.pot ]; then
|
|
|
|
POTFILE="${MODULE_DIR}/lang/${MODULE_NAME}.pot"
|
|
|
|
tx set -r calamares.${MODULE_NAME} --source -l en ${MODULE_DIR}/lang/${MODULE_NAME}.pot
|
|
|
|
if [ -f "$POTFILE" ]; then
|
|
|
|
|
|
|
|
sed -i'' '/^"Content-Type/s/CHARSET/UTF-8/' "$POTFILE"
|
|
|
|
|
|
|
|
tx set -r calamares.${MODULE_NAME} --source -l en "$POTFILE"
|
|
|
|
tx push --source --no-interactive -r calamares.${MODULE_NAME}
|
|
|
|
tx push --source --no-interactive -r calamares.${MODULE_NAME}
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
else
|
|
|
@ -68,6 +70,8 @@ done
|
|
|
|
|
|
|
|
|
|
|
|
if test -n "$SHARED_PYTHON" ; then
|
|
|
|
if test -n "$SHARED_PYTHON" ; then
|
|
|
|
${PYGETTEXT} -p lang -d python -o python.pot $SHARED_PYTHON
|
|
|
|
${PYGETTEXT} -p lang -d python -o python.pot $SHARED_PYTHON
|
|
|
|
tx set -r calamares.python --source -l en lang/python.pot
|
|
|
|
POTFILE="lang/python.pot"
|
|
|
|
|
|
|
|
sed -i'' '/^"Content-Type/s/CHARSET/UTF-8/' "$POTFILE"
|
|
|
|
|
|
|
|
tx set -r calamares.python --source -l en "$POTFILE"
|
|
|
|
tx push --source --no-interactive -r calamares.python
|
|
|
|
tx push --source --no-interactive -r calamares.python
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|