diff --git a/src/commonMain/kotlin/nl/jacobras/humanreadable/i18n/translations/ViStrings.kt b/src/commonMain/kotlin/nl/jacobras/humanreadable/i18n/translations/ViStrings.kt index edcc8ce..87c4b0e 100644 --- a/src/commonMain/kotlin/nl/jacobras/humanreadable/i18n/translations/ViStrings.kt +++ b/src/commonMain/kotlin/nl/jacobras/humanreadable/i18n/translations/ViStrings.kt @@ -31,7 +31,7 @@ internal val ViStrings = HumanReadableStrings( monthsNarrow = presentTense(other = "tháng"), yearsNarrow = presentTense(other = "năm"), timeAgo = { "$it trước" }, - timeInFuture = { "sau $it" }, + timeInFuture = { "$it nữa" }, now = "bây giờ", today = "hôm nay", yesterday = "hôm qua", diff --git a/src/commonTest/kotlin/nl/jacobras/humanreadable/localized/LocalisedTests.kt b/src/commonTest/kotlin/nl/jacobras/humanreadable/localized/LocalisedTests.kt index 050c082..6e084f7 100644 --- a/src/commonTest/kotlin/nl/jacobras/humanreadable/localized/LocalisedTests.kt +++ b/src/commonTest/kotlin/nl/jacobras/humanreadable/localized/LocalisedTests.kt @@ -363,7 +363,7 @@ class LocalisedTests { assertThat(HumanReadable.duration(twoSeconds)).isEqualTo("2 giây") assertThat(HumanReadable.timeAgo(twoSecondsAgo, baseInstant = now)).isEqualTo("2 giây trước") - assertThat(HumanReadable.timeAgo(oneMinuteFromNow, baseInstant = now)).isEqualTo("sau 1 phút") + assertThat(HumanReadable.timeAgo(oneMinuteFromNow, baseInstant = now)).isEqualTo("1 phút nữa") assertThat(HumanReadable.number(1_000_000.34, decimals = 2)).isEqualTo("1.000.000,34") assertThat(HumanReadable.number(-4.34, decimals = 2)).isEqualTo("-4,34")