[RemindersCard] SHOPTIME-1933

- EIC / 독일 / My Page / Reminder / Coming Soon 번역 안됨
This commit is contained in:
jiwon93.son
2024-07-08 14:13:10 +09:00
parent 691b157b25
commit 723f471c55
5 changed files with 21 additions and 11 deletions

View File

@@ -191,6 +191,7 @@
"No addresses added.": "Keine Adressen hinzugefügt.",
"No coupons available": "Keine Gutscheine verfügbar",
"Coming Soon": "Demnächst",
"Days": "(need for transfer) Days",
"ORDER NUMBER": "Bestellnummer",
"payment method": "BEZAHLVERFAHREN",
"order date": "AUFTRAGSDATUM",

View File

@@ -191,6 +191,7 @@
"No addresses added.": "No addresses added.",
"No coupons available": "No coupons available",
"Coming Soon": "Coming Soon",
"Days": "Days",
"ORDER NUMBER": "ORDER NUMBER",
"payment method": "payment method",
"order date": "order date",

View File

@@ -191,6 +191,7 @@
"No addresses added.": "No addresses added.",
"No coupons available": "No coupons available",
"Coming Soon": "Coming Soon",
"Days": "Days",
"ORDER NUMBER": "ORDER NUMBER",
"payment method": "payment method",
"order date": "order date",

View File

@@ -191,6 +191,7 @@
"No addresses added.": "Адреса не добавлены.",
"No coupons available": "Нет доступных купонов",
"Coming Soon": "Скоро в эфире",
"Days": "(need for transfer) Days",
"ORDER NUMBER": "Номер заказа",
"payment method": "СПОСОБ ОПЛАТЫ",
"order date": "ДАТА ЗАКАЗА",

View File

@@ -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 Spottable from "@enact/spotlight/Spottable";
import Spotlight from '@enact/spotlight';
import Spottable from '@enact/spotlight/Spottable';
import CustomImage from "../../../../components/CustomImage/CustomImage";
import { convertUtcToLocal } from "../../../../components/MediaPlayer/util";
import TCheckBox from "../../../../components/TCheckBox/TCheckBox";
import * as HelperMethods from "../../../../utils/helperMethods";
import css from "./RemindersCard.module.less";
import CustomImage from '../../../../components/CustomImage/CustomImage';
import { convertUtcToLocal } from '../../../../components/MediaPlayer/util';
import TCheckBox from '../../../../components/TCheckBox/TCheckBox';
import * as HelperMethods from '../../../../utils/helperMethods';
import { $L } from '../../../../utils/helperMethods';
import css from './RemindersCard.module.less';
const RemindersItem = Spottable("div");
@@ -192,8 +198,8 @@ export default memo(function RemindersCard({
{!liveTime && !isEndTime && focus && activeDelete === false && (
<div className={css.timeOvelay}>
<div>
<p>{"Coming Soon"}</p>
<p>{lessDay > 0 ? lessDay + " Days" : lessTime}</p>
<p>{$L("Coming Soon")}</p>
<p>{lessDay > 0 ? lessDay + " " + $L("Days") : lessTime}</p>
</div>
</div>
)}