type
Locale
type Locale struct {
Code LocaleCode `json:"code"`
Label string `json:"label"`
RTL bool `json:"rtl,omitempty"`
FallbackLocales []LocaleCode `json:"fallbackLocale,omitempty"`
}One resolved locale in deterministic authoring order.
CodeLocaleCode- The Code value.
Labelstring- The Label value.
RTLbool- The RTL value.
FallbackLocales[]LocaleCode- The FallbackLocales value.