mirror of
https://github.com/nikdoof/oblogout.git
synced 2025-12-23 15:29:25 +00:00
completed by: arl - German Hanna Pietikäinen - Finnish benji - French Alon Horn - Hebrew papparonny - Norwegian
11 lines
241 B
Bash
Executable File
11 lines
241 B
Bash
Executable File
#!/bin/sh
|
|
|
|
cd openboxlogout/
|
|
|
|
for file in ./pofiles/*.po; do
|
|
lang=`echo $file | cut -d "-" -f 2 - | cut -d "." -f 1`
|
|
|
|
mkdir -p locale/$lang/LC_MESSAGES
|
|
msgfmt --output-file="locale/$lang/LC_MESSAGES/oblogout.mo" "$file"
|
|
done
|