mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2024-11-22 01:15:54 +03:00
746f7a46ce
Change-Id: I72264e7f297e8a5c02300326c171e54d42de9710
43 lines
1.6 KiB
Bash
Executable file
43 lines
1.6 KiB
Bash
Executable file
#!/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
|
|
find "$mydir/vector/src/main/res" -name strings.xml -exec \
|
|
sed -i 's|Element|SchildiChat|g' '{}' \;
|
|
# Restore Element where it makes sense
|
|
find "$mydir/vector/src/main/res" -name strings.xml -exec \
|
|
sed -i 's/SchildiChat \(Web\|iOS\|Desktop\)/Element \1/g' '{}' \;
|
|
find "$mydir/vector/src/main/res" -name strings.xml -exec \
|
|
sed -i 's|SchildiChat Matrix Services|Element Matrix Services|g' '{}' \;
|
|
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|' '{}' \;
|
|
|
|
# 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
|
|
|
|
mydir="$(dirname "$(realpath "$0")")"
|
|
echo -e "\033[1;33m""Please fix -schlumpfwesen and -wolpertinger cases manually!""\033[0m"
|
|
echo "- $mydir/vector/src/main/res/values-de/strings.xml"
|