mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-24 16:23:40 +01:00
When running "make translations" use the external ejabberd_po repository
This commit is contained in:
parent
5af7532504
commit
0b55ded612
@ -21,6 +21,8 @@
|
|||||||
{deps, [{base64url, ".*", {git, "https://github.com/dvv/base64url", {tag, "1.0.1"}}},
|
{deps, [{base64url, ".*", {git, "https://github.com/dvv/base64url", {tag, "1.0.1"}}},
|
||||||
{cache_tab, ".*", {git, "https://github.com/processone/cache_tab", {tag, "1.0.26"}}},
|
{cache_tab, ".*", {git, "https://github.com/processone/cache_tab", {tag, "1.0.26"}}},
|
||||||
{eimp, ".*", {git, "https://github.com/processone/eimp", {tag, "1.0.18"}}},
|
{eimp, ".*", {git, "https://github.com/processone/eimp", {tag, "1.0.18"}}},
|
||||||
|
{if_var_true, tools,
|
||||||
|
{ejabberd_po, ".*", {git, "https://github.com/badlop/ejabberd-po", {branch, "main"}}}},
|
||||||
{if_var_true, elixir,
|
{if_var_true, elixir,
|
||||||
{elixir, ".*", {git, "https://github.com/elixir-lang/elixir", {tag, "v1.4.4"}}}},
|
{elixir, ".*", {git, "https://github.com/elixir-lang/elixir", {tag, "v1.4.4"}}}},
|
||||||
{if_var_true, pam,
|
{if_var_true, pam,
|
||||||
|
@ -10,14 +10,14 @@
|
|||||||
|
|
||||||
extract_lang_src2pot ()
|
extract_lang_src2pot ()
|
||||||
{
|
{
|
||||||
./tools/extract-tr.sh src deps/xmpp/src > priv/msgs/ejabberd.pot
|
./tools/extract-tr.sh src deps/xmpp/src > $PO_DIR/ejabberd.pot
|
||||||
}
|
}
|
||||||
|
|
||||||
extract_lang_popot2po ()
|
extract_lang_popot2po ()
|
||||||
{
|
{
|
||||||
LANG_CODE=$1
|
LANG_CODE=$1
|
||||||
PO_PATH=$MSGS_DIR/$LANG_CODE.po
|
PO_PATH=$PO_DIR/$LANG_CODE.po
|
||||||
POT_PATH=$MSGS_DIR/$PROJECT.pot
|
POT_PATH=$PO_DIR/$PROJECT.pot
|
||||||
|
|
||||||
msgmerge $PO_PATH $POT_PATH >$PO_PATH.translate 2>>$LOG
|
msgmerge $PO_PATH $POT_PATH >$PO_PATH.translate 2>>$LOG
|
||||||
mv $PO_PATH.translate $PO_PATH
|
mv $PO_PATH.translate $PO_PATH
|
||||||
@ -32,7 +32,7 @@ extract_lang_po2msg ()
|
|||||||
MSGSTR_PATH=$PO_PATH.msgstr
|
MSGSTR_PATH=$PO_PATH.msgstr
|
||||||
MSGS_PATH=$LANG_CODE.msg
|
MSGS_PATH=$LANG_CODE.msg
|
||||||
|
|
||||||
cd $MSGS_DIR
|
cd $PO_DIR
|
||||||
|
|
||||||
# Check PO has correct ~
|
# Check PO has correct ~
|
||||||
# Let's convert to C format so we can use msgfmt
|
# Let's convert to C format so we can use msgfmt
|
||||||
@ -54,6 +54,8 @@ extract_lang_po2msg ()
|
|||||||
rm $MS_PATH
|
rm $MS_PATH
|
||||||
rm $MSGID_PATH
|
rm $MSGID_PATH
|
||||||
rm $MSGSTR_PATH
|
rm $MSGSTR_PATH
|
||||||
|
|
||||||
|
mv $MSGS_PATH $MSGS_DIR
|
||||||
}
|
}
|
||||||
|
|
||||||
extract_lang_updateall ()
|
extract_lang_updateall ()
|
||||||
@ -70,7 +72,7 @@ extract_lang_updateall ()
|
|||||||
LANG_CODE=${i%.msg}
|
LANG_CODE=${i%.msg}
|
||||||
echo -n $LANG_CODE | awk '{printf "%-6s", $1 }'
|
echo -n $LANG_CODE | awk '{printf "%-6s", $1 }'
|
||||||
|
|
||||||
PO=$LANG_CODE.po
|
PO=$PO_DIR/$LANG_CODE.po
|
||||||
|
|
||||||
extract_lang_popot2po $LANG_CODE
|
extract_lang_popot2po $LANG_CODE
|
||||||
extract_lang_po2msg $LANG_CODE
|
extract_lang_po2msg $LANG_CODE
|
||||||
@ -99,5 +101,17 @@ EJA_DIR=`pwd`
|
|||||||
PROJECT=ejabberd
|
PROJECT=ejabberd
|
||||||
MSGS_DIR=$EJA_DIR/priv/msgs
|
MSGS_DIR=$EJA_DIR/priv/msgs
|
||||||
LOG=/tmp/ejabberd-translate-errors.log
|
LOG=/tmp/ejabberd-translate-errors.log
|
||||||
|
if [ -f $EJA_DIR/deps/ejabberd_po/src/ejabberd.pot ]; then
|
||||||
|
PO_DIR=$EJA_DIR/deps/ejabberd_po/src/
|
||||||
|
else
|
||||||
|
if [ -f $EJA_DIR/_build/default/lib/ejabberd_po/src/ejabberd.pot ]; then
|
||||||
|
PO_DIR=$EJA_DIR/_build/default/lib/ejabberd_po/src
|
||||||
|
else
|
||||||
|
echo "Couldn't find the required ejabberd_po repository."
|
||||||
|
echo "Run: ./configure --enable-tools; ./rebar get-deps"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
echo "Using PO files found in $PO_DIR."
|
||||||
|
|
||||||
extract_lang_updateall
|
extract_lang_updateall
|
||||||
|
Loading…
Reference in New Issue
Block a user