Gradience/po/update_potfile.sh

14 lines
753 B
Bash
Raw Normal View History

#!/bin/bash
po_dir=$(dirname "$(realpath "$0")")
2022-07-29 13:46:52 +00:00
xgettext -f $po_dir/POTFILES -o $po_dir/AdwCustomizer.pot --add-comments=Translators --keyword=_ --keyword=C_1c,2 --from-code=UTF-8
sed -i "s/SOME DESCRIPTIVE TITLE./Adwaita Manager POT file/" $po_dir/AdwCustomizer.pot
sed -i "s/YEAR THE PACKAGE'S COPYRIGHT HOLDER/$(date +%Y) Adwaita Manager Team/" $po_dir/AdwCustomizer.pot
sed -i "s@same license as the PACKAGE package.@MIT/X11 license.@" $po_dir/AdwCustomizer.pot
sed -i "s/FIRST AUTHOR <EMAIL@ADDRESS>, YEAR./Artyom Fomin <artyomisflash@mail.ru>, $(date +%Y)./" $po_dir/AdwCustomizer.pot
regex="$po_dir/([a-zA-Z_]*).po"
po_files=$(find "$po_dir" -type f -name "*.po")
if [[ $po_files =~ $regex ]]
then
echo ${BASH_REMATCH[1]} > $po_dir/LINGUAS
fi