mirror of
https://github.com/RaspAP/raspap-webgui.git
synced 2024-11-21 23:20:22 +00:00
14 lines
364 B
Bash
Executable file
14 lines
364 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Compiles portable object (.po) files into machine object (.mo) files
|
|
# Requires GNU gettext
|
|
|
|
arrLocales=($PWD/*/);
|
|
|
|
# compiles message catalogs to binary format
|
|
# requires GNU gettext
|
|
for f in "${arrLocales[@]}"; do
|
|
echo -n `msgfmt -o ${f}LC_MESSAGES/messages.mo ${f}LC_MESSAGES/messages.po`
|
|
echo "Compiled ${f}LC_MESSAGES/messages.po"
|
|
done
|
|
|