diff --git a/metadata/com.corvettecole.gotosleep/en-US/summary.txt b/metadata/com.corvettecole.gotosleep/en-US/summary.txt index c2f961c5c0..305810b20a 100644 --- a/metadata/com.corvettecole.gotosleep/en-US/summary.txt +++ b/metadata/com.corvettecole.gotosleep/en-US/summary.txt @@ -1 +1 @@ -Reminds you to go to sleep... until you do +Reminds you to go to sleep… until you do diff --git a/metadata/com.owncloud.android/en-US/summary.txt b/metadata/com.owncloud.android/en-US/summary.txt index 6fe64621ed..cb29fca9e2 100644 --- a/metadata/com.owncloud.android/en-US/summary.txt +++ b/metadata/com.owncloud.android/en-US/summary.txt @@ -1 +1 @@ -Add an ownCloud server now and get ... Your Cloud, Your Data, Your Way! +Add an ownCloud server now and get … Your Cloud, Your Data, Your Way! diff --git a/metadata/net.osmand.plus/en-US/description.txt b/metadata/net.osmand.plus/en-US/description.txt index 90a8869ee8..c4bac70350 100644 --- a/metadata/net.osmand.plus/en-US/description.txt +++ b/metadata/net.osmand.plus/en-US/description.txt @@ -61,7 +61,7 @@ Approximate map coverage and quality: • Africa: ** • Antarctica: * Most countries around the globe available as downloads! -From Afghanistan to Zimbabwe, from Australia to the USA. Argentina, Brazil, Canada, France, Germany, Mexico, UK, Spain, ... +From Afghanistan to Zimbabwe, from Australia to the USA. Argentina, Brazil, Canada, France, Germany, Mexico, UK, Spain, … Anti-Features: * NonFreeAssets - Artwork and layouts are under a non-commercial license. diff --git a/tools/fix-ellipsis.sh b/tools/fix-ellipsis.sh new file mode 100755 index 0000000000..7c060a0b4d --- /dev/null +++ b/tools/fix-ellipsis.sh @@ -0,0 +1,19 @@ +#!/bin/bash + +# Fix TypographyEllipsis programmatically + +exitvalue=0 +for d in metadata/*/*; do + test -d $d || continue + test $(basename $d) != "signatures" || continue + sed -i 's/\.\.\./…/g' $d/*.txt + if [ $exitvalue = 0 ]; then + git diff $d | grep -Eo '^\+.*…' || exitvalue=1 + fi +done + + +if [ $exitvalue != 0 ]; then + echo Fix TypographyEllipsis +fi +exit $exitvalue