Constant SDL_HINT_PREFERRED_LOCALES
pub const SDL_HINT_PREFERRED_LOCALES: *const i8 = _; // {alloc39859<imm>: *const i8}
Available on crate feature
dep_sdl3
only.Expand description
Override for [SDL_GetPreferredLocales()
].
If set, this will be favored over anything the OS might report for the
user’s preferred locales. Changing this hint at runtime will not generate a
[SDL_EVENT_LOCALE_CHANGED
] event (but if you can change the hint, you can
push your own event, if you want).
The format of this hint is a comma-separated list of language and locale, combined with an underscore, as is a common format: “en_GB”. Locale is optional: “en”. So you might have a list like this: “en_GB,jp,es_PT”
This hint can be set anytime.
§Availability
This hint is available since SDL 3.2.0.