I'm developing a desktop application with Swing for an unsupported language.
I have my own properties file. I'm using it for the messages in the application. I also call setLocale()
method of the JCalendar
with my file. But since I don't know which keywords to use for months, month selection inside the JCalendar
shows English named months.
For example, I tried:
january=translatedJanuary
february=translatedFebruary
I couldn't find a tutorial or form to fill to create a locale (properties) file. Is there one? Or is it still impossible for JCalendar
to get words from properties file. Or simply, what is the necessary keywords?