...
This commit is contained in:
parent
cd5ca52c71
commit
157368b611
|
@ -47,7 +47,7 @@ func NumberToString(n int, sep rune) string {
|
||||||
return buf.String()
|
return buf.String()
|
||||||
}
|
}
|
||||||
|
|
||||||
func ReplaceUmlauts(s string) string {
|
func ReplaceUmlauts(s string) ret string {
|
||||||
ret := strings.Replace(s, "Ä", "Ae", -1)
|
ret := strings.Replace(s, "Ä", "Ae", -1)
|
||||||
ret = strings.Replace(ret, "Ö", "Oe", -1)
|
ret = strings.Replace(ret, "Ö", "Oe", -1)
|
||||||
ret = strings.Replace(ret, "Ü", "Ue", -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, "ö", "oe", -1)
|
||||||
ret = strings.Replace(ret, "ü", "ue", -1)
|
ret = strings.Replace(ret, "ü", "ue", -1)
|
||||||
ret = strings.Replace(ret, "ß", "ss", -1)
|
ret = strings.Replace(ret, "ß", "ss", -1)
|
||||||
return ret
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,2 @@
|
||||||
package version
|
package version
|
||||||
|
const Version = "109"
|
||||||
const (
|
|
||||||
Version = ""
|
|
||||||
)
|
|
||||||
|
|
Loading…
Reference in New Issue