I am using joda-time library for my Android project instead of Calendar. but unlike calendar I am facing a problem with locale language.
According to system/device language all type of text is translating but the "d" pattern is not translating, it always stays in English language.
Like say with "d" pattern, if a variable is 15, for English language locale it is: 15, but for Arabic language locale it is still: 15, it should convert to arabic 15 (١٥). It is not translating.
How can I do this? is this something joda-time lib does not support, or I am doing something wrong.