Use comma between date and year

pull/14/head
Sam Bosley 14 years ago
parent 520ddf60fb
commit 3aada5bd6f

@ -130,9 +130,9 @@ public class DateUtilities {
Locale locale = Locale.getDefault();
if (arrayBinaryContains(locale.getLanguage(), "ja", "ko", "zh")
|| arrayBinaryContains(locale.getCountry(), "BZ", "CA", "KE", "MN" ,"US"))
value = "'#' d'$' yyyy";
value = "'#' d'$', yyyy";
else
value = "d'$' '#' yyyy";
value = "d'$' '#', yyyy";
if (arrayBinaryContains(locale.getLanguage(), "ja", "zh")){
standardDate = new SimpleDateFormat(value).format(date).replace("#", month).replace("$", "\u65E5"); //$NON-NLS-1$
}else if ("ko".equals(Locale.getDefault().getLanguage())){

Loading…
Cancel
Save