goi18n
is a Go package for handling translations and localization with support for pluralization. It allows you to manage multiple locales, load translation files, and perform translations based on message keys and values.
To install goi18n
, use go get
:
go get github.com/mekramy/goi18n
To create a new translator, use the NewTranslator
function. You need to provide a default locale and a language tag for formatting numbers.
package main
import (
"github.com/mekramy/goi18n"
"golang.org/x/text/language"
)
func main() {
tr := goi18n.NewTranslator("en", language.English)
}
You can add additional locales using the AddLocale
method.
tr.AddLocale("fa", &language.Persian)
You can load translation files from byte slices or from files.
en := []byte(`{
"welcome": "Hello {name}, Welcome!",
"notification": {
"zero": "No new message",
"one": "You have a new message",
"other": "You have {count} new messages"
}
}`)
tr.LoadBytes("en", en)
err := tr.LoadFiles("en", "path/to/en.json")
if err != nil {
log.Fatal(err)
}
You can add individual messages using the AddMessage
method.
tr.AddMessage("en", "greeting", "Hello {name}!", goi18n.PluralOne("Hello {name}!"))
To translate a message, use the Translate
method.
res := tr.Translate("en", "welcome", map[string]any{"name": "John"})
fmt.Println(res) // Output: Hello John, Welcome!
To handle pluralization, use the Plural
method.
res := tr.Plural("en", "notification", 5, map[string]any{"count": 5})
fmt.Println(res) // Output: You have 5 new messages
Here is a complete example demonstrating the usage of goi18n
.
package main
import (
"fmt"
"log"
"github.com/mekramy/goi18n"
"golang.org/x/text/language"
)
func main() {
// Create translator
tr := goi18n.NewTranslator("en", language.English)
tr.AddLocale("fa", &language.Persian)
// Load translations
en := []byte(`{
"welcome": "Hello {name}, Welcome!",
"notification": {
"zero": "No new message",
"one": "You have a new message",
"other": "You have {count} new messages"
}
}`)
fa := []byte(`{
"welcome": "سلام {name}, خوش آمدید!",
"notification": {
"zero": "پیام جدیدی ندارید",
"one": "یک پیام جدید دارید",
"other": "{count} پیام جدید دارید"
}
}`)
tr.LoadBytes("en", en)
tr.LoadBytes("fa", fa)
// Translate messages
res := tr.Translate("en", "welcome", map[string]any{"name": "John"})
fmt.Println(res) // Output: Hello John, Welcome!
res = tr.Plural("fa", "notification", 0, map[string]any{"count": 0})
fmt.Println(res) // Output: پیام جدیدی ندارید
}
This project is licensed under the ISC License. See the LICENSE file for details.