Fix translating dates
This commit is contained in:
parent
21d31f2b40
commit
647b02e989
1 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
||||||
import {createDateFromString} from '@/helpers/time/createDateFromString'
|
import {createDateFromString} from '@/helpers/time/createDateFromString'
|
||||||
import {format, formatDistance} from 'date-fns'
|
import {format, formatDistance} from 'date-fns'
|
||||||
import { enGB, de } from 'date-fns/locale'
|
import {enGB, de} from 'date-fns/locale'
|
||||||
|
|
||||||
const locales = {enGB, de}
|
const locales = {enGB, de}
|
||||||
|
|
||||||
|
@ -30,7 +30,7 @@ export const formatDateSince = (date, $t) => {
|
||||||
date = createDateFromString(date)
|
date = createDateFromString(date)
|
||||||
|
|
||||||
const currentDate = new Date()
|
const currentDate = new Date()
|
||||||
const distance = formatDistance(date, currentDate)
|
const distance = formatDistance(date, currentDate, {locale: locales[$t('date.locale')]})
|
||||||
|
|
||||||
if (date > currentDate) {
|
if (date > currentDate) {
|
||||||
return $t('date.in', {date: distance})
|
return $t('date.in', {date: distance})
|
||||||
|
|
Loading…
Reference in a new issue