
Release date translate problem
xMikux opened this issue · 2 comments
Is your feature request related to a problem? Please describe.
We are translating the mod into Traditional Chinese and noticed that the translation date is displayed with English short month names. This format seems unusual in Chinese, where dates are typically presented in formats such as 2024/08/12 or 2024年08月12號. Is there a way to use numerical dates for months instead of the English short month names?
Thanks!
Hi, translations use standard Java string formatting to replace variables, meaning you can change the format of the date, specifically for the language you are translating to! To do this replace the %t things in the string with what you need, see https://www.novixys.com/blog/java-string-format-examples/#31_Date_and_Time_Formatting for more info.