update module to own version
This commit is contained in:
4
po.go
4
po.go
@@ -456,7 +456,7 @@ func (po *Po) GetNC(str, plural string, n int, ctx string, vars ...interface{})
|
||||
return Printf(plural, vars...)
|
||||
}
|
||||
|
||||
// Get Eretrieves the corresponding Translation for the given string.
|
||||
// GetE retrieves the corresponding Translation for the given string.
|
||||
// Supports optional parameters (vars... interface{}) to be inserted on the formatted string using the fmt.Printf syntax.
|
||||
// The second return value is true iff the string was found.
|
||||
func (po *Po) GetE(str string, vars ...interface{}) (string, bool) {
|
||||
@@ -475,7 +475,7 @@ func (po *Po) GetE(str string, vars ...interface{}) (string, bool) {
|
||||
return "", false
|
||||
}
|
||||
|
||||
// GetN Eretrieves the (N)th plural form of Translation for the given string.
|
||||
// GetNE retrieves the (N)th plural form of Translation for the given string.
|
||||
// Supports optional parameters (vars... interface{}) to be inserted on the formatted string using the fmt.Printf syntax.
|
||||
// The second return value is true iff the string was found.
|
||||
func (po *Po) GetNE(str, plural string, n int, vars ...interface{}) (string, bool) {
|
||||
|
||||
Reference in New Issue
Block a user