package i18n import "github.com/BurntSushi/toml" // tomlUnmarshal is a thin adapter so the i18n bundle can speak TOML via // BurntSushi/toml without leaking the dependency through the public API. func tomlUnmarshal(data []byte, v any) error { return toml.Unmarshal(data, v) }