mirror of
https://github.com/retailcrm/mg-transport-core.git
synced 2025-04-05 22:33:33 +03:00
Add localizer interface
This commit is contained in:
parent
627ceae0bc
commit
604e6fda58
1 changed files with 6 additions and 0 deletions
|
@ -38,6 +38,12 @@ type Localizer struct {
|
|||
TranslationsPath string
|
||||
}
|
||||
|
||||
type LocalizerInterface interface {
|
||||
GetLocalizedMessage(messageID string) string
|
||||
GetLocalizedTemplateMessage(messageID string, templateData map[string]interface{}) string
|
||||
Localize(messageID string) (string, error)
|
||||
}
|
||||
|
||||
// NewLocalizer returns localizer instance with specified parameters.
|
||||
// Usage:
|
||||
// NewLocalizer(language.English, DefaultLocalizerMatcher(), "translations")
|
||||
|
|
Loading…
Add table
Reference in a new issue