mirror of
https://github.com/DYefremov/DemonEditor.git
synced 2026-01-13 19:13:19 +01:00
7 lines
208 B
Bash
Executable File
7 lines
208 B
Bash
Executable File
#!/bin/bash
|
|
#xgettext --keyword=translatable --sort-output -L Glade -o po/demon-editor.po app/ui/main_window.glade
|
|
|
|
for dir in */;
|
|
do
|
|
msgfmt $dir* -o ../app/ui/lang/${dir%/}/LC_MESSAGES/demon-editor.mo
|
|
done |