diff --git a/src/components/order-view/details/order-details.tsx b/src/components/order-view/details/order-details.tsx index 9411404..284e9c9 100644 --- a/src/components/order-view/details/order-details.tsx +++ b/src/components/order-view/details/order-details.tsx @@ -10,8 +10,10 @@ import { } from '@chakra-ui/react'; import { useTranslation } from 'react-i18next'; import dayjs from 'dayjs'; -import localizedFormat from "dayjs/plugin/localizedFormat"; +import localizedFormat from 'dayjs/plugin/localizedFormat'; dayjs.extend(localizedFormat); +import 'dayjs/locale/ru'; +import 'dayjs/locale/en'; import { Order } from '../../../models/landing'; import { formatDatetime } from '../../../lib'; @@ -43,26 +45,28 @@ export const OrderDetails: FC = ({ location, startWashTime, endWashTime, - created + created, }) => { - const { t } = useTranslation('~', { + const { t, i18n } = useTranslation('~', { keyPrefix: 'dry-wash.order-view.details', }); + dayjs.locale(i18n.language); const { t: tCarBody } = useTranslation('~', { keyPrefix: 'dry-wash.order-create.car-body-select.options', }); return ( <> + + {t('title', { number: orderNumber })} + - - {t('title', { number: orderNumber })} ({dayjs(created).format('LLLL')}) - + {dayjs(created).format('LLL')}