1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 07:47:35 +00:00

LibUnicode: Parse Unicode CLDR languages and generate locale mappings

This commit is contained in:
Timothy Flynn 2021-08-26 08:17:01 -04:00 committed by Linus Groh
parent 6719e5cb17
commit ab7a1dd89e
3 changed files with 39 additions and 0 deletions

View file

@ -40,6 +40,7 @@ Optional<String> canonicalize_unicode_locale_id(LocaleID&);
String const& default_locale();
bool is_locale_available(StringView locale);
Optional<StringView> get_locale_language_mapping(StringView locale, StringView language);
Optional<StringView> get_locale_territory_mapping(StringView locale, StringView territory);
}