39f5cba27e
areas, biome_lib, blox, bobblocks, boost_cart, homedecor, mobs, coloredwood, ilights, inbox, item_tweaks, moreblocks, moreores, pipeworks, plasticbox, signs_lib, stainedglass, roads, unifieddyes, vines, worldedit, xban2, maybe some others I didn't think about ;-)
23 lines
520 B
Bash
Executable File
23 lines
520 B
Bash
Executable File
#! /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 \
|
|
--keyword=S \
|
|
--keyword=NS:1,2 \
|
|
--keyword=N_ \
|
|
--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
|