You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Localize.Language.display_name/2 now normalises its input through Localize.validate_locale/1, so a string and an equivalent Localize.LanguageTag return the same name ("en-GB" and LanguageTag.new!("en-GB") both give "British English") and region-specific codes resolve with fallback ("pt-BR" → "Brazilian Portuguese", "ar-SA" → "Arabic" instead of raising). A malformed locale now returns Localize.InvalidLocaleError rather than Localize.UnknownLanguageError. Thanks to @DVSLabs for the report. Closes #36.