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
The parsing in /Source/library/src/main/java/im/delight/android/languages/Language.java seems mandatory but it does not support the third optional argument in the Locale(String language, String country, String variant) constructor and does thus not support all locales (those with variants in the code) or am I wrong?
The text was updated successfully, but these errors were encountered:
This library currently only supports the language and the country, not the additional variant.
Though the list of possible language codes is fixed as well, so unless you fork this library, you won't have any languages codes that can't be parsed correctly. And if you do, you can patch the parsing as well, of course.
So there's only a problem here if some languages are missing which you need.
The parsing in
/Source/library/src/main/java/im/delight/android/languages/Language.java
seems mandatory but it does not support the third optional argument in theLocale(String language, String country, String variant)
constructor and does thus not support all locales (those with variants in the code) or am I wrong?The text was updated successfully, but these errors were encountered: