[RemindersCard] SHOPTIME-1933
- EIC / 독일 / My Page / Reminder / Coming Soon 번역 안됨
This commit is contained in:
@@ -191,6 +191,7 @@
|
|||||||
"No addresses added.": "Keine Adressen hinzugefügt.",
|
"No addresses added.": "Keine Adressen hinzugefügt.",
|
||||||
"No coupons available": "Keine Gutscheine verfügbar",
|
"No coupons available": "Keine Gutscheine verfügbar",
|
||||||
"Coming Soon": "Demnächst",
|
"Coming Soon": "Demnächst",
|
||||||
|
"Days": "(need for transfer) Days",
|
||||||
"ORDER NUMBER": "Bestellnummer",
|
"ORDER NUMBER": "Bestellnummer",
|
||||||
"payment method": "BEZAHLVERFAHREN",
|
"payment method": "BEZAHLVERFAHREN",
|
||||||
"order date": "AUFTRAGSDATUM",
|
"order date": "AUFTRAGSDATUM",
|
||||||
|
|||||||
@@ -191,6 +191,7 @@
|
|||||||
"No addresses added.": "No addresses added.",
|
"No addresses added.": "No addresses added.",
|
||||||
"No coupons available": "No coupons available",
|
"No coupons available": "No coupons available",
|
||||||
"Coming Soon": "Coming Soon",
|
"Coming Soon": "Coming Soon",
|
||||||
|
"Days": "Days",
|
||||||
"ORDER NUMBER": "ORDER NUMBER",
|
"ORDER NUMBER": "ORDER NUMBER",
|
||||||
"payment method": "payment method",
|
"payment method": "payment method",
|
||||||
"order date": "order date",
|
"order date": "order date",
|
||||||
|
|||||||
@@ -191,6 +191,7 @@
|
|||||||
"No addresses added.": "No addresses added.",
|
"No addresses added.": "No addresses added.",
|
||||||
"No coupons available": "No coupons available",
|
"No coupons available": "No coupons available",
|
||||||
"Coming Soon": "Coming Soon",
|
"Coming Soon": "Coming Soon",
|
||||||
|
"Days": "Days",
|
||||||
"ORDER NUMBER": "ORDER NUMBER",
|
"ORDER NUMBER": "ORDER NUMBER",
|
||||||
"payment method": "payment method",
|
"payment method": "payment method",
|
||||||
"order date": "order date",
|
"order date": "order date",
|
||||||
|
|||||||
@@ -191,6 +191,7 @@
|
|||||||
"No addresses added.": "Адреса не добавлены.",
|
"No addresses added.": "Адреса не добавлены.",
|
||||||
"No coupons available": "Нет доступных купонов",
|
"No coupons available": "Нет доступных купонов",
|
||||||
"Coming Soon": "Скоро в эфире",
|
"Coming Soon": "Скоро в эфире",
|
||||||
|
"Days": "(need for transfer) Days",
|
||||||
"ORDER NUMBER": "Номер заказа",
|
"ORDER NUMBER": "Номер заказа",
|
||||||
"payment method": "СПОСОБ ОПЛАТЫ",
|
"payment method": "СПОСОБ ОПЛАТЫ",
|
||||||
"order date": "ДАТА ЗАКАЗА",
|
"order date": "ДАТА ЗАКАЗА",
|
||||||
|
|||||||
@@ -1,15 +1,21 @@
|
|||||||
import React, { memo, useCallback, useEffect, useState } from "react";
|
import React, {
|
||||||
|
memo,
|
||||||
|
useCallback,
|
||||||
|
useEffect,
|
||||||
|
useState,
|
||||||
|
} from 'react';
|
||||||
|
|
||||||
import classNames from "classnames";
|
import classNames from 'classnames';
|
||||||
|
|
||||||
import Spotlight from "@enact/spotlight";
|
import Spotlight from '@enact/spotlight';
|
||||||
import Spottable from "@enact/spotlight/Spottable";
|
import Spottable from '@enact/spotlight/Spottable';
|
||||||
|
|
||||||
import CustomImage from "../../../../components/CustomImage/CustomImage";
|
import CustomImage from '../../../../components/CustomImage/CustomImage';
|
||||||
import { convertUtcToLocal } from "../../../../components/MediaPlayer/util";
|
import { convertUtcToLocal } from '../../../../components/MediaPlayer/util';
|
||||||
import TCheckBox from "../../../../components/TCheckBox/TCheckBox";
|
import TCheckBox from '../../../../components/TCheckBox/TCheckBox';
|
||||||
import * as HelperMethods from "../../../../utils/helperMethods";
|
import * as HelperMethods from '../../../../utils/helperMethods';
|
||||||
import css from "./RemindersCard.module.less";
|
import { $L } from '../../../../utils/helperMethods';
|
||||||
|
import css from './RemindersCard.module.less';
|
||||||
|
|
||||||
const RemindersItem = Spottable("div");
|
const RemindersItem = Spottable("div");
|
||||||
|
|
||||||
@@ -192,8 +198,8 @@ export default memo(function RemindersCard({
|
|||||||
{!liveTime && !isEndTime && focus && activeDelete === false && (
|
{!liveTime && !isEndTime && focus && activeDelete === false && (
|
||||||
<div className={css.timeOvelay}>
|
<div className={css.timeOvelay}>
|
||||||
<div>
|
<div>
|
||||||
<p>{"Coming Soon"}</p>
|
<p>{$L("Coming Soon")}</p>
|
||||||
<p>{lessDay > 0 ? lessDay + " Days" : lessTime}</p>
|
<p>{lessDay > 0 ? lessDay + " " + $L("Days") : lessTime}</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
|||||||
Reference in New Issue
Block a user