I need to be able to support nominative month names in the format month year e.g. Listopad 2016 in Polish. I am still supporting the genitive format of dates elsewhere as complete MMM/dd/YYYY
dates so I don't want to lose that functionality. I am using Java 8 and I believe that Java 8 by default uses the genitive form.
I've tried using jodaTime to MonthYear, but the Java 8 update appears to be forcing it to show the genitive form everywhere. I am going to need to support other languages that support declensions for months such as slovak, czech, etc.
Any suggestions would be appreciated!