type
AdminLanguage
type AdminLanguage struct {
Code string `json:"code"`
Label string `json:"label"`
LabelTranslations map[string]string `json:"labelTranslations,omitempty"`
RTL bool `json:"rtl,omitempty"`
}One statically bundled admin interface language.
Codestring- The Code value.
Labelstring- The Label value.
LabelTranslationsmap[string]string- The LabelTranslations value.
RTLbool- The RTL value.