This commit is contained in:
Andreas Neue 2019-07-31 15:12:26 +02:00
parent cd5ca52c71
commit 157368b611
2 changed files with 2 additions and 6 deletions

View File

@ -47,7 +47,7 @@ func NumberToString(n int, sep rune) string {
return buf.String()
}
func ReplaceUmlauts(s string) 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)
@ -55,5 +55,4 @@ func ReplaceUmlauts(s string) string {
ret = strings.Replace(ret, "ö", "oe", -1)
ret = strings.Replace(ret, "ü", "ue", -1)
ret = strings.Replace(ret, "ß", "ss", -1)
return ret
}

View File

@ -1,5 +1,2 @@
package version
const (
Version = ""
)
const Version = "109"