The culture shown to the user in the app. Its the ISO language-region format. This value is the starting point to search through localizations.
Add a culture and its fallback. If the culture already exists, it is replaced.
Check for the presence of a Culture. Will fallback to language only check if language-country cultureID doesn't find a match. In other words, if 'en-US' isn't found, it tries 'en'.
the found cultureID, so you know if it exactly matched or just got the language. If no match, returns null.
Returns the CultureIdFallback that matches its cultureId to the value passed in.
If the user needs to abandon this instance, they should use this to clean up active resources (like timers) and to release memory that would stall the garbage collector from disposing this object. It should assign any object reference to undefined as a strong indicator that the object has been disposed.
Generated using TypeDoc v0.25.12
Service for identifying cultures that you will use in the app, by their CultureID ('en', 'en-US', 'en-GB', etc), and provides fallbacks for when a requested CultureID is not found.