Fix strings mentioning "SchildiChat X" instead of Next

Change-Id: Ib5bbad504da340ae9bad0144f23cb949c70b9c0e
This commit is contained in:
SpiritCroc 2025-01-19 14:50:47 +01:00
parent f48b1a7372
commit 02a96fa444

View File

@ -20,6 +20,8 @@ stringdir="$mydir/library/ui-strings/src/main/res"
# Element -> SchildiChat
find "$stringdir" -name strings.xml -exec \
sed -i 's|Element|SchildiChat|g' '{}' \;
find "$stringdir" -name strings.xml -exec \
sed -i 's|SchildiChat X|SchildiChat Next|g' '{}' \;
# Restore Element where it makes sense
find "$stringdir" -name strings.xml -exec \
sed -i 's/SchildiChat \(Web\|iOS\|Desktop\)/Element \1/g' '{}' \;