@ -48,7 +48,7 @@ public class DateUtils extends android.text.format.DateUtils {
public static String getBriefRelativeTimeSpanString ( final Context c , final Locale locale , final long timestamp ) {
if ( isWithin ( timestamp , 1 , TimeUnit . MINUTES ) ) {
return c . getString ( R . string . DateUtils_ now) ;
return c . getString ( R . string . DateUtils_ just_ now) ;
} else if ( isWithin ( timestamp , 1 , TimeUnit . HOURS ) ) {
int mins = convertDelta ( timestamp , TimeUnit . MINUTES ) ;
return c . getResources ( ) . getString ( R . string . DateUtils_minutes_ago , mins ) ;
@ -66,7 +66,7 @@ public class DateUtils extends android.text.format.DateUtils {
public static String getExtendedRelativeTimeSpanString ( final Context c , final Locale locale , final long timestamp ) {
if ( isWithin ( timestamp , 1 , TimeUnit . MINUTES ) ) {
return c . getString ( R . string . DateUtils_ now) ;
return c . getString ( R . string . DateUtils_ just_ now) ;
} else if ( isWithin ( timestamp , 1 , TimeUnit . HOURS ) ) {
int mins = ( int ) TimeUnit . MINUTES . convert ( System . currentTimeMillis ( ) - timestamp , TimeUnit . MILLISECONDS ) ;
return c . getResources ( ) . getString ( R . string . DateUtils_minutes_ago , mins ) ;