Init commit

This commit is contained in:
David Spáčil
2026-02-10 15:28:10 +01:00
commit ff73f32b16
37 changed files with 17016 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
#!/bin/bash
LRELEASE=$1
LOCALES=$2
for LOCALE in ${LOCALES}
do
echo "Processing: ${LOCALE}.ts"
# Note we don't use pylupdate with qt .pro file approach as it is flakey
# about what is made available.
$LRELEASE i18n/${LOCALE}.ts
done