update module to own version

This commit is contained in:
2020-07-27 18:17:50 +02:00
parent 2441e55972
commit b4ab6497b5
11 changed files with 58 additions and 58 deletions

6
mo.go
View File

@@ -17,7 +17,7 @@ import (
"strings"
"sync"
"github.com/leonelquinteros/gotext/plurals"
"git.deineagentur.com/DeineAgenturUG/gotext/plurals"
)
const (
@@ -41,7 +41,7 @@ Example:
import (
"fmt"
"github.com/leonelquinteros/gotext"
"git.deineagentur.com/DeineAgenturUG/gotext"
)
func main() {
@@ -502,7 +502,7 @@ func (mo *Mo) GetNCE(str, plural string, n int, ctx string, vars ...interface{})
if _, ok := mo.contexts[ctx][str]; ok {
if fmt, ok := mo.contexts[ctx][str].GetNE(mo.pluralForm(n)); ok {
return Printf(fmt, vars...), true
}
}
}
}
}