6 lines
222 B
Bash
Executable File
6 lines
222 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "extract text from source files"
|
|
find src -iname "*.py" | xargs /home/andi/bin/Python-3.10.0/Tools/i18n/pygettext.py -o locales/messages.pot
|
|
|
|
echo "edit with: poedit locales/de_DE/LC_MESSAGES/messages.po" |