Initial commit

This commit is contained in:
2024-05-16 12:02:40 +02:00
commit a9e35e3d93
12 changed files with 1096 additions and 0 deletions

16
update-locale.sh Executable file
View File

@@ -0,0 +1,16 @@
#!/usr/bin/env sh
cd nightscout-follower@treehouse.org.za || exit 1
pot="gnome-shell-extension-nightscout-follower.pot"
touch "$pot"
xgettext -j ./*.js -o "$pot" --from-code UTF-8 --no-wrap
xgettext -j schemas/*.xml -o "$pot" --from-code UTF-8 --no-wrap
for po in locale/*; do
echo "$po"
msgmerge --backup=off -U "$po" "$pot"
done
rm "$pot"