Repo created

This commit is contained in:
Fr4nz D13trich 2025-11-20 14:05:38 +01:00
parent 51cf8bb4f9
commit ee0cddf35c
548 changed files with 93129 additions and 2 deletions

15
scripts/convert.sh Executable file
View file

@ -0,0 +1,15 @@
# Convert exported crowdin files to android format
for d in */ ; do
while read line
do
key=`echo "$line" | cut -d'=' -f1`
value=`echo "$line" | cut -d'=' -f2`
if [ $key"/" == $d ]
then
mv $d $value
fi
done < convert.properties
done
#delete Playstore.txt files
find . -name "Playstore.txt" -print0 | xargs -0 rm -rf