Fix format of the duration

This commit is contained in:
Maxime NATUREL 2022-04-05 16:07:19 +02:00
parent a412b2128d
commit 3acc139307
1 changed files with 1 additions and 2 deletions

View File

@ -90,7 +90,6 @@ object TextUtils {
val minutes = getMinutes(duration) val minutes = getMinutes(duration)
val seconds = getSeconds(duration) val seconds = getSeconds(duration)
val builder = StringBuilder() val builder = StringBuilder()
// TODO do we need Locale ? test with different language setting
when { when {
hours > 0 -> { hours > 0 -> {
appendHours(context, builder, hours) appendHours(context, builder, hours)
@ -108,11 +107,11 @@ object TextUtils {
appendSeconds(context, builder, seconds) appendSeconds(context, builder, seconds)
} }
} }
return builder.toString() return builder.toString()
} }
private fun appendHours(context: Context, builder: StringBuilder, hours: Int) { private fun appendHours(context: Context, builder: StringBuilder, hours: Int) {
builder.append(hours)
builder.append(context.resources.getQuantityString(R.plurals.time_unit_hour_short, hours)) builder.append(context.resources.getQuantityString(R.plurals.time_unit_hour_short, hours))
} }