[다국어] 백틱으로 처리된 내역들 수정

This commit is contained in:
jangheon Pyo
2024-05-15 22:06:51 +09:00
parent 2ffec78b7a
commit a57ee3da33
8 changed files with 19 additions and 14 deletions

View File

@@ -341,7 +341,7 @@ export default function SingleOption({
)}
</span>
<span className={classNames(css.content, css.date)}>
{$L(`${couponAplyStartDate}~${couponAplyEndDate}`)}
{couponAplyStartDate}~{couponAplyEndDate}
</span>
<div
className={classNames(
@@ -473,7 +473,9 @@ export default function SingleOption({
: css.discountedPriceLayer
}
>
<span>{$L(`${patncNm || productData.patncNm} Price`)}</span>
<span>
{patncNm || productData.patncNm} {$L("Price")}
</span>
<div className={css.priceWrapper}>
{discountedPrice !== originalPrice && (
<span className={css.discountRateTag}>{discountRate}</span>

View File

@@ -17,7 +17,7 @@ export default function ProductOption({ children, productInfo }) {
<div className={css.topLayer}>
<img src={patncLogoPath && patncLogoPath} alt="patncLogoPath" />
<div>
{$L(`ID`)} {`: ${prdtId}`}
{$L("ID")} : {prdtId}
</div>
</div>
<div className={css.title}>{prdtNm}</div>

View File

@@ -102,7 +102,7 @@ const BestSeller = ({ order, scrollTopBody, panelInfo }) => {
return (
<Container className={css.bestSellerWrap} style={orderStyle}>
<SectionTitle
title={$L(`BEST SELLER`)}
title={$L("BEST SELLER")}
data-title-index="homeBestSellerTitle"
/>

View File

@@ -78,7 +78,7 @@ const HomeOnSale = ({ order, scrollTopBody, ...rest }) => {
<div className={css.onSaleWrap}>
<SectionTitle
className={css.subTitle}
title={$L(`ON SALE`)}
title={$L("ON SALE")}
data-title-index="homeOnSale"
/>
<div className={css.onSaleItem}>

View File

@@ -54,7 +54,7 @@ export default function HomeOnSaleItem({ homeOnSaleInfos, itemData, ...rest }) {
<div className={css.onSaleItemListBoxTitle}>{itemData.catNm}</div>
{discountRate && (
<div className={css.onSaleItemListBoxSaleBox}>
{$L(`up to `)}
{$L("up to ")}
<span className={css.onSaleItemListBoxSaleBoxPer}>
{discountRate}
</span>

View File

@@ -103,7 +103,7 @@ const PopularShow = ({ homeChk = true, order, scrollTopBody, ...rest }) => {
<Container className={css.popularShow} style={orderStyle}>
<SectionTitle
className={css.subTitle}
title={$L(`POPULAR SHOW`)}
title={$L("POPULAR SHOW")}
data-title-index="homePopularShow"
/>
<TScroller

View File

@@ -150,10 +150,6 @@ export default function IntroPanel({
}
}, [eventInfos, dispatch]);
const description =
$L(`Check out more LIVE SHOWS and enjoy Shopping via your TV \n at Shop Times special prices by agreeing to the LG TV
Shopping Terms and Conditions`);
return (
<>
<TPanel
@@ -163,14 +159,20 @@ export default function IntroPanel({
>
<Container {...rest} className={css.introLayout}>
<div className={css.title}>
{$L(`Welcome to `)}
{$L("Welcome to ")}
<span className={css.txtPoint}>
{$L("Sh")}
<span className={css.pointColor}>{$L("o")}</span>
{$L(`p Time !`)}
{$L("p Time !")}
</span>
</div>
<div className={css.description}>{description}</div>
<div className={css.description}>
{$L("Check out more LIVE SHOWS and enjoy Shopping via your TV")}
<br />
{$L(
"at Shop Times special prices by agreeing to the LG TV Shopping Terms and Conditions"
)}
</div>
<div className={css.termsItemsLayer}>
<TButton
onClick={() => handleTermsClick("MST00402")}

View File

@@ -31,6 +31,7 @@
}
.description {
width: 1000px;
white-space: pre-wrap;
line-height: normal;
font-size: 36px;