mirror of
https://github.com/nicolargo/glances.git
synced 2024-11-11 17:26:37 +03:00
20 lines
665 B
Bash
20 lines
665 B
Bash
#!/bin/sh
|
|
#
|
|
# To create a new language pack XX
|
|
# > mkdir -p ./i18n/XX/LC_MESSAGES/
|
|
# > msginit --input=./i18n/glances.pot --output=./i18n/XX/LC_MESSAGES/glances.po
|
|
# Translate using the ./i18n/XX/LC_MESSAGES/glances.po file
|
|
# Then add XX to the LANG_LIST
|
|
# Run this script
|
|
#
|
|
|
|
LANG_LIST='es fr it pt_BR zh_CN'
|
|
|
|
xgettext --language=Python --keyword=_ --output=./i18n/glances.pot ./glances/glances.py
|
|
|
|
for i in $LANG_LIST; do
|
|
echo "Generate language pack for: $i"
|
|
msgmerge --update --no-fuzzy-matching --backup=off ./i18n/$i/LC_MESSAGES/glances.po ./i18n/glances.pot
|
|
msgfmt ./i18n/$i/LC_MESSAGES/glances.po --output-file ./i18n/$i/LC_MESSAGES/glances.mo
|
|
done
|