[다국어] 일괄 수정

This commit is contained in:
jangheon Pyo
2024-05-30 15:25:11 +09:00
parent d268a853f2
commit a96e5d83aa
12 changed files with 33 additions and 31 deletions

View File

@@ -131,7 +131,8 @@
"view order details": "Mehr Details sehen", "view order details": "Mehr Details sehen",
"You have not any recently viewed pages": "Sie haben keine kürzlich angesehene Seiten.", "You have not any recently viewed pages": "Sie haben keine kürzlich angesehene Seiten.",
"No Alerts Yet": "Keine Benachrichtigungen vorhanden", "No Alerts Yet": "Keine Benachrichtigungen vorhanden",
"Reminder Notification turned 'OFF'": "Erinnerung-Benachrichtigung ist ausgeschaltet.", "Reminder Notification turned OFF": "Erinnerung-Benachrichtigung ist ausgeschaltet. \n Wählen Sie Ja aus, um Erinnerungen einzuschalten.",
"Reminder Notification turned ON": "Erinnerung-Benachrichtigung ist {onoff}",
"Phone": "Telefon", "Phone": "Telefon",
"Email": "Email", "Email": "Email",
"URL": "URL", "URL": "URL",
@@ -150,6 +151,7 @@
"Shows": "SHOWS", "Shows": "SHOWS",
"SHOWS": "SHOWS", "SHOWS": "SHOWS",
"Items": "Artikel", "Items": "Artikel",
"ITEMS": "Artikel",
"Theme Menu": "(need for transfer) Theme Menu", "Theme Menu": "(need for transfer) Theme Menu",
"Your coupon download is complete.": "(need for transfer) Your coupon download is complete.", "Your coupon download is complete.": "(need for transfer) Your coupon download is complete.",
"Puschase over": "Kaufen Sie über", "Puschase over": "Kaufen Sie über",

View File

@@ -131,7 +131,8 @@
"view order details": "view order details", "view order details": "view order details",
"You have not any recently viewed pages": "You have not any recently viewed pages", "You have not any recently viewed pages": "You have not any recently viewed pages",
"No Alerts Yet": "No Alerts Yet", "No Alerts Yet": "No Alerts Yet",
"Reminder Notification turned 'OFF'": "Reminder Notification turned 'OFF'", "Reminder Notification turned OFF": "Reminder Notification turned \"OFF\"",
"Reminder Notification turned ON": "Reminder Notification turned \"ON\"",
"Phone": "Phone", "Phone": "Phone",
"Email": "Email", "Email": "Email",
"URL": "URL", "URL": "URL",
@@ -150,6 +151,7 @@
"Shows": "Shows", "Shows": "Shows",
"SHOWS": "SHOWS", "SHOWS": "SHOWS",
"Items": "Items", "Items": "Items",
"ITEMS": "ITEMS",
"Theme Menu": "Theme Menu", "Theme Menu": "Theme Menu",
"Your coupon download is complete.": "Your coupon download is complete.", "Your coupon download is complete.": "Your coupon download is complete.",
"Puschase over": "Puschase over", "Puschase over": "Puschase over",

View File

@@ -131,7 +131,9 @@
"view order details": "Смотреть детали", "view order details": "Смотреть детали",
"You have not any recently viewed pages": "Нет информации в категории История просмотров", "You have not any recently viewed pages": "Нет информации в категории История просмотров",
"No Alerts Yet": "Нет установленных напоминаний", "No Alerts Yet": "Нет установленных напоминаний",
"Reminder Notification turned 'OFF'": "Функция Напоминания выключена. Нажмите клавишу Да для включения функции.", "Reminder Notification turned OFF": "Функция Напоминания выключена. Нажмите клавишу Да для включения функции.",
"Reminder Notification turned ON": "Напоминания {onoff}",
"Reminder Notification turned 'OFF'": "",
"Phone": "Телефон", "Phone": "Телефон",
"Email": "Имейл-адрес", "Email": "Имейл-адрес",
"URL": "Сайт", "URL": "Сайт",
@@ -150,6 +152,7 @@
"Shows": "ШОУ", "Shows": "ШОУ",
"SHOWS": "ШОУ", "SHOWS": "ШОУ",
"Items": "Товар", "Items": "Товар",
"ITEMS": "Товар",
"Theme Menu": "(need for transfer) Theme Menu", "Theme Menu": "(need for transfer) Theme Menu",
"Your coupon download is complete.": "(need for transfer) Your coupon download is complete.", "Your coupon download is complete.": "(need for transfer) Your coupon download is complete.",
"Puschase over": "Покупка на сумму свыше", "Puschase over": "Покупка на сумму свыше",

View File

@@ -9,6 +9,7 @@ import { Marquee, MarqueeController } from "@enact/ui/Marquee";
import IcProfile from "../../../assets/images/icons/ic-profile@3x.png"; import IcProfile from "../../../assets/images/icons/ic-profile@3x.png";
import CustomImage from "../CustomImage/CustomImage"; import CustomImage from "../CustomImage/CustomImage";
import css from "./TButton.module.less"; import css from "./TButton.module.less";
import { $L } from "../../utils/helperMethods";
const SIZES = { const SIZES = {
small: "small", small: "small",
@@ -114,7 +115,7 @@ function TButtonBase({
> >
{withMarquee ? ( {withMarquee ? (
<Marquee className={css.marquee} marqueeOn="focus"> <Marquee className={css.marquee} marqueeOn="focus">
{children} {$L(children)}
</Marquee> </Marquee>
) : ( ) : (
<div className={css.text}> <div className={css.text}>
@@ -125,7 +126,7 @@ function TButtonBase({
fallbackSrc={IcProfile} fallbackSrc={IcProfile}
/> />
)} )}
{children} {$L(children)}
</div> </div>
)} )}
</SpottableComponent> </SpottableComponent>

View File

@@ -7,6 +7,7 @@ import SpotlightContainerDecorator from "@enact/spotlight/SpotlightContainerDeco
import useScrollReset from "../../hooks/useScrollReset"; import useScrollReset from "../../hooks/useScrollReset";
import css from "./TButtonTab.module.less"; import css from "./TButtonTab.module.less";
import TButtonTabItem from "./TButtonTabItem"; import TButtonTabItem from "./TButtonTabItem";
import { $L } from "../../utils/helperMethods";
const Container = SpotlightContainerDecorator( const Container = SpotlightContainerDecorator(
{ enterTo: "last-focused" }, { enterTo: "last-focused" },
@@ -79,7 +80,7 @@ export default function TButtonTab({
onFocus={handleScrollReset} onFocus={handleScrollReset}
onBlur={handleStopScrolling} onBlur={handleStopScrolling}
> >
{item} {$L(item)}
</TButtonTabItem> </TButtonTabItem>
); );
})} })}

View File

@@ -9,6 +9,7 @@ import SpotlightContainerDecorator, {
import Spottable from "@enact/spotlight/Spottable"; import Spottable from "@enact/spotlight/Spottable";
import css from "./THeader.module.less"; import css from "./THeader.module.less";
import { $L } from "../../utils/helperMethods";
const Container = SpotlightContainerDecorator( const Container = SpotlightContainerDecorator(
{ enterTo: "last-focused" }, { enterTo: "last-focused" },
@@ -63,7 +64,7 @@ export default function THeader({
className={css.title} className={css.title}
marqueeDisabled={marqueeDisabled} marqueeDisabled={marqueeDisabled}
> >
{title} {$L(title)}
</Marquee> </Marquee>
{children} {children}
</Container> </Container>

View File

@@ -12,6 +12,7 @@
.elip(@clamp: 1); .elip(@clamp: 1);
padding-left: 12px !important; padding-left: 12px !important;
text-transform: none !important; text-transform: none !important;
letter-spacing: 0 !important;
} }
display: flex; display: flex;
width: 100%; width: 100%;

View File

@@ -31,9 +31,11 @@
.button { .button {
.flex(); .flex();
.size(@w: 324px,@h: 78px); min-width: 324px;
height: 78px;
font-weight: bold; font-weight: bold;
font-size: 30px; font-size: 30px;
padding: 0 30px;
.position(@position: absolute, @top: -41px, @left: 60px); .position(@position: absolute, @top: -41px, @left: 60px);
border-radius: 12px; border-radius: 12px;

View File

@@ -15,12 +15,16 @@
.ProductBadge { .ProductBadge {
margin-left: auto; margin-left: auto;
height: 42px; height: 42px;
> span {
height: 42px;
line-height: 42px;
padding: 0 10px;
}
.flex(@justifyCenter:flex-start); .flex(@justifyCenter:flex-start);
.specialValue { .specialValue {
.tag-default(@backgroundColor:@PRIMARY_COLOR_RED, @fontColor:@COLOR_WHITE); .tag-default(@backgroundColor:@PRIMARY_COLOR_RED, @fontColor:@COLOR_WHITE);
.size(@w: 66px, @h: 42px); .size(@w: 66px, @h: 42px);
line-height: 42px;
} }
.freeShipping { .freeShipping {
@@ -30,33 +34,26 @@
background-color: rgba(199, 8, 80, 0.1); background-color: rgba(199, 8, 80, 0.1);
color: @PRIMARY_COLOR_RED; color: @PRIMARY_COLOR_RED;
text-align: center; text-align: center;
line-height: 42px;
font-weight: bold; font-weight: bold;
font-size: 24px; font-size: 24px;
.size(@w: 120px, @h: 42px);
} }
.bigSale { .bigSale {
.tag-default(@backgroundColor:@COLOR_WHITE, @fontColor:@PRIMARY_COLOR_RED); .tag-default(@backgroundColor:@COLOR_WHITE, @fontColor:@PRIMARY_COLOR_RED);
.size(@w: 110px, @h: 42px);
.border-solid(@size:3px,@color:@PRIMARY_COLOR_RED); .border-solid(@size:3px,@color:@PRIMARY_COLOR_RED);
line-height: 36px; line-height: 36px;
} }
.shoptimePrice { .shoptimePrice {
.tag-default(@backgroundColor:#4f172c, @fontColor:@COLOR_WHITE); .tag-default(@backgroundColor:#4f172c, @fontColor:@COLOR_WHITE);
.size(@w: 200px, @h: 42px);
line-height: 42px;
} }
.coupon { .coupon {
background: #7a808d; background: #7a808d;
border-radius: 4px; border-radius: 4px;
.size(@w: 120px, @h: 42px);
color: @COLOR_WHITE; color: @COLOR_WHITE;
margin-left: 6px; margin-left: 6px;
text-align: center; text-align: center;
line-height: 42px;
font-weight: bold; font-weight: bold;
font-size: 24px; font-size: 24px;
} }

View File

@@ -78,6 +78,8 @@
top: 0; top: 0;
right: 0; right: 0;
font-size: 24px; font-size: 24px;
max-width: none;
margin-right: 0;
} }
} }

View File

@@ -28,9 +28,9 @@ export default function CouponTab() {
<h2 className={css.title}> <h2 className={css.title}>
{$L("COUPON")} {$L("COUPON")}
{couponDatas && couponDatas.length > 0 && ( {couponDatas && couponDatas.length > 0 && (
<span <span className={css.total}>
className={css.total} {`(${couponDatas[0].total})`} {$L("ITEMS")}
>{`(${couponDatas[0].total} items)`}</span> </span>
)} )}
</h2> </h2>

View File

@@ -346,12 +346,7 @@ export default function Reminders({ title, cbScrollTo }) {
hasButton hasButton
button1Text={$L("OK")} button1Text={$L("OK")}
hasText hasText
text={ text={<div>{$L("Reminder Notification turned OFF")}</div>}
<div>
{$L("Reminder Notification turned ")}
<strong>'{$L("OFF")}'</strong>
</div>
}
onClose={handleCancel} onClose={handleCancel}
/> />
)} )}
@@ -363,12 +358,7 @@ export default function Reminders({ title, cbScrollTo }) {
hasButton hasButton
button1Text={$L("OK")} button1Text={$L("OK")}
hasText hasText
text={ text={<div>{$L("Reminder Notification turned ON")}</div>}
<div>
{$L("Reminder Notification turned ")}
<strong>'{$L("ON")}'</strong>
</div>
}
onClose={handleCancel} onClose={handleCancel}
/> />
)} )}