1
0
mirror of https://github.com/pyrollo/display_modpack.git synced 2025-06-30 07:01:10 +02:00

Seperate signs API from signs definitions

Change modnames from *_lib to *_api
This commit is contained in:
Thomas--S
2018-02-01 16:54:55 +01:00
commit f9a26194f0
11 changed files with 626 additions and 0 deletions

25
tools/updatepo.sh Executable file
View File

@ -0,0 +1,25 @@
#! /bin/bash
# To create a new translation:
# msginit --locale=ll_CC -o locale/ll_CC.po -i locale/template.pot
cd "$(dirname "${BASH_SOURCE[0]}")/..";
# Extract translatable strings.
xgettext --from-code=UTF-8 \
--language=Lua \
--sort-by-file \
--keyword=S \
--keyword=NS:1,2 \
--keyword=N_ \
--keyword=F \
--add-comments='Translators:' \
--add-location=file \
-o locale/template.pot \
$(find . -name '*.lua')
# Update translations.
find locale -name '*.po' | while read -r file; do
echo $file
msgmerge --update $file locale/template.pot;
done