-
Notifications
You must be signed in to change notification settings - Fork 28
/
generate-mo.sh
executable file
·30 lines (26 loc) · 1.16 KB
/
generate-mo.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/bin/bash
# make bash sane
set -eu -o pipefail
DIR=$(basename "$PWD")
if [[ "$DIR" != "locale" ]]; then
echo "You are not inside the 'locale' directory"
echo "ABORTING."
exit 0
fi
echo "Generating .mo files"
msgfmt translations-ca.po -o ca_ES/LC_MESSAGES/translations.mo
msgfmt translations-es.po -o es_ES/LC_MESSAGES/translations.mo
msgfmt translations-eu.po -o eu_ES/LC_MESSAGES/translations.mo
msgfmt translations-fr.po -o fr_FR/LC_MESSAGES/translations.mo
msgfmt translations-ga.po -o ga_IE/LC_MESSAGES/translations.mo
msgfmt translations-gd.po -o gd_GB/LC_MESSAGES/translations.mo
msgfmt translations-gl.po -o gl_ES/LC_MESSAGES/translations.mo
msgfmt translations-hu.po -o hu_HU/LC_MESSAGES/translations.mo
msgfmt translations-it.po -o it_IT/LC_MESSAGES/translations.mo
msgfmt translations-nl.po -o nl_NL/LC_MESSAGES/translations.mo
msgfmt translations-de.po -o de_DE/LC_MESSAGES/translations.mo
msgfmt translations-pt_BR.po -o pt_BR/LC_MESSAGES/translations.mo
msgfmt translations-ru.po -o ru_RU/LC_MESSAGES/translations.mo
msgfmt translations-id.po -o id_ID/LC_MESSAGES/translations.mo
msgfmt translations-zh_TW.po -o zh_TW/LC_MESSAGES/translations.mo
echo "DONE"