From 3aada5bd6fc7b02195fbdd645ccfc136d6ce5227 Mon Sep 17 00:00:00 2001 From: Sam Bosley Date: Thu, 16 Aug 2012 14:31:42 -0700 Subject: [PATCH] Use comma between date and year --- api/src/com/todoroo/andlib/utility/DateUtilities.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/src/com/todoroo/andlib/utility/DateUtilities.java b/api/src/com/todoroo/andlib/utility/DateUtilities.java index afa34e604..068c3ed11 100644 --- a/api/src/com/todoroo/andlib/utility/DateUtilities.java +++ b/api/src/com/todoroo/andlib/utility/DateUtilities.java @@ -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())){