This commit is contained in:
Andreas Neue 2019-07-31 15:24:07 +02:00
parent d78d1fc07a
commit ab8e21b716
2 changed files with 2 additions and 2 deletions

View File

@ -47,7 +47,7 @@ func NumberToString(n int, sep rune) string {
return buf.String()
}
func ReplaceUmlauts(s string) ret string {
func ReplaceUmlauts(s string) (ret string) {
ret := strings.Replace(s, "Ä", "Ae", -1)
ret = strings.Replace(ret, "Ö", "Oe", -1)
ret = strings.Replace(ret, "Ü", "Ue", -1)

View File

@ -1,2 +1,2 @@
package version
const Version = "110"
const Version = "111"