SchildiChat-android/correct_strings.sh

40 lines
1.4 KiB
Bash
Raw Normal View History

2020-07-25 10:02:44 +02:00
#!/bin/bash
mydir="$(dirname "$(realpath "$0")")"
pushd "$mydir" > /dev/null
# Require clean git state
uncommitted=`git status --porcelain`
if [ ! -z "$uncommitted" ]; then
echo "Uncommitted changes are present, please commit first!"
exit 1
fi
mydir="."
# Element -> SchildiChat
2020-07-25 10:02:44 +02:00
find "$mydir/vector/src/main/res" -name strings.xml -exec \
sed -i 's|Element|SchildiChat|g' '{}' \;
# Restore Element where it makes sense
2020-07-25 10:02:44 +02:00
find "$mydir/vector/src/main/res" -name strings.xml -exec \
sed -i 's/SchildiChat \(Web\|iOS\|Desktop\)/Element \1/g' '{}' \;
2020-07-25 10:02:44 +02:00
find "$mydir/vector/src/main/res" -name strings.xml -exec \
sed -i 's|SchildiChat Matrix Services|Element Matrix Services|g' '{}' \;
2020-07-25 10:02:44 +02:00
find "$mydir/vector/src/main/res" -name strings.xml -exec \
sed -i 's|\("use_latest_riot">.*\)SchildiChat\(.*</string>\)|\1Element\2|g' '{}' \;
find "$mydir/vector/src/main/res" -name strings.xml -exec \
sed -i 's|\("use_other_session_content_description">.*\)SchildiChat\(.*SchildiChat.*</string>\)|\1SchildiChat/Element\2|' '{}' \;
2020-07-25 10:02:44 +02:00
# Requires manual intervention for correct grammar
sed -i 's|!nnen|wolpertinger|g' "$mydir/vector/src/main/res/values-de/strings.xml"
sed -i 's|!n|schlumpfwesen|g' "$mydir/vector/src/main/res/values-de/strings.xml"
# Remove Triple-T stuff to avoid using them in F-Droid
rm -rf "$mydir/vector/src/main/play/listings"
git add -A
git commit -m "Automatic SchildiChat string correction"
popd > /dev/null