From fdbdff5fcc2f1a41a44027719e96a5ce3d1be3b2 Mon Sep 17 00:00:00 2001 From: Elara Musayelyan Date: Tue, 3 Oct 2023 20:36:41 +0000 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9990cfa..d52e6a7 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Translate -This library is an incredibly simple translation system for Go. It is designed to work well with [go.arsenm.dev/logger](https://pkg.go.dev/go.arsenm.dev/logger), and doesn't have nearly as many features as other solutions, because those features are not needed for all applications, and they increase complexity unnecessarily in use cases that don't need it. All this package does is parses TOML files for translations, and then gets the raw text from the files for whatever language you want to translate to. +This library is an incredibly simple translation system for Go. It is designed to work well with [go.elara.ws/logger](https://pkg.go.dev/go.elara.ws/logger), and doesn't have nearly as many features as other solutions, because those features are not needed for all applications, and they increase complexity unnecessarily in use cases that don't need it. All this package does is parses TOML files for translations, and then gets the raw text from the files for whatever language you want to translate to. If you need advanced functionality, such as handling singular/plural words, gender, etc., use other packages such as [golang.org/x/text/message](https://pkg.go.dev/golang.org/x/text/message) or [github.com/nicksnyder/go-i18n](https://pkg.go.dev/github.com/nicksnyder/go-i18n).