JakeWharton/ThreeTenABP

Incorrect FULL_STANDALONE months names

kotucz opened this issue · 1 comments

In some languages (e.g. czech, polish, russian, ...) there is difference in month names, whether there are used in context (1. ledna = January 1st) or standalone (leden = January).

The difference is when using "LLLL" in format or
Month.getDisplayName(TextStyle.FULL_STANDALONE, Locale("cs," , "CZ"))

The ThreeTen library uses context name in place of standalone.
SimpleDateTimeTextProvider
Related issue ThreeTen/threetenbp#55

Android formatters format correctly using "LLLL" format, so maybe there would be a way to use correct localization on android.

This is a problem with ThreeTenBP and not this library (which is just a repackaging of the timezone database for more efficient loading on Android). You seem to have found the issue is already filed on ThreeTenBP as well.