package i18n import ( "github.com/nicksnyder/go-i18n/v2/i18n" "golang.org/x/text/language" ) // addDutch will add all dutch translations func addDutch(i18nObject *i18n.Bundle) error { // add the translations return i18nObject.AddMessages(language.Dutch, &i18n.Message{ ID: "NotEnoughSpace", Other: "Niet genoeg ruimte om de panelen te renderen", }) }