translator

package
v1.0.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 20, 2025 License: MIT Imports: 1 Imported by: 0

Documentation

Overview

Package translator provides internationalization support for validation messages.

The translator package enables localization of validation error messages, allowing applications to provide user-friendly error messages in different languages.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func DefaultEnglishTranslations

func DefaultEnglishTranslations() map[string]string

DefaultEnglishTranslations returns a map of default English messages.

Types

type SimpleTranslator

type SimpleTranslator struct {
	// contains filtered or unexported fields
}

SimpleTranslator is a basic implementation of Translator using a map.

func NewSimpleTranslator

func NewSimpleTranslator(messages map[string]string) *SimpleTranslator

NewSimpleTranslator creates a new SimpleTranslator.

func (*SimpleTranslator) T

func (st *SimpleTranslator) T(key string, params ...any) string

T returns the translated message or the default if not found.

type Translator

type Translator interface {
	// T returns a localized message for the given key and parameters.
	T(key string, params ...any) string
}

Translator is an interface for obtaining localized messages.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL