dewinjm / monthyear-picker

Month and Year picker library for Android
Apache License 2.0
35 stars 14 forks source link

List of Months localized #6

Closed Spettacolo83 closed 4 years ago

Spettacolo83 commented 4 years ago

Hello there, thank you for this useful library! Is it possible to set the Locale of the Months? Actually I need to switch the name of the months in Spanish language but the default is in English. I need also to show the entire string of the month, for example "January" instead of "Jan" Thank you!

dewinjm commented 4 years ago

Thank you for using this library!!

I will notify you when I do these feature.

Spettacolo83 commented 4 years ago

Thank you @dewinjm really appreciated!

dewinjm commented 4 years ago

Hi! Use this implementation:

Update to 1.0.2 version

MonthFormat monthFormat = MonthFormat.LONG; //MonthFormat.LONG or MonthFormat.SHORT
Locale customLocale = new Locale("es-ES"); //Locale for Spanish language

MonthYearPickerDialogFragment.getInstance(
    monthSelected,
    yearSelected,
    customTitle,
    customLocale,
    monthFormat)

I hope this helps you!

Spettacolo83 commented 4 years ago

@dewinjm wow! So fast! Thank you very much! I really appreciate your library now even more! ;)