I'm trying to show dutch months. But the month is printed out in English. This needs to work from Android API 19 and higher.
compile 'joda-time:joda-time:2.9.9'
val test = DateTime()
val l = Locale("nl_NL") // Dutch language, Netherlands country.
val f = DateTimeFormat.forPattern("dd MMM yyyy").withLocale(l)
val text = f.print(test)
Prints out:
26 Oct 2017
Should be:
26 Okt 2017