Use separate string for toRelativeString "Today"

Apparently 0 quantity is ignored for some locales...
This commit is contained in:
arkon
2021-08-15 17:42:31 -04:00
parent ae1a76da2b
commit 071bad1232
4 changed files with 7 additions and 6 deletions

View File

@@ -6,6 +6,7 @@ import java.text.DateFormat
import java.util.Calendar
import java.util.Date
import java.util.TimeZone
import kotlin.math.floor
fun Date.toDateTimestampString(dateFormatter: DateFormat): String {
val date = dateFormatter.format(this)
@@ -106,12 +107,13 @@ fun Date.toRelativeString(
): String {
val now = Date()
val difference = now.time - this.time
val days = difference / MILLISECONDS_IN_DAY
val days = floor(difference / MILLISECONDS_IN_DAY).toInt()
return when {
difference < 0 -> context.getString(R.string.recently)
difference < MILLISECONDS_IN_DAY -> context.getString(R.string.relative_time_today)
difference < MILLISECONDS_IN_DAY.times(range) -> context.resources.getQuantityString(
R.plurals.relative_time,
days.toInt(),
days,
days
)
else -> dateFormat.format(this)