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

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -150,10 +150,6 @@ export default function IntroPanel({
} }
}, [eventInfos, dispatch]); }, [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 ( return (
<> <>
<TPanel <TPanel
@@ -163,14 +159,20 @@ export default function IntroPanel({
> >
<Container {...rest} className={css.introLayout}> <Container {...rest} className={css.introLayout}>
<div className={css.title}> <div className={css.title}>
{$L(`Welcome to `)} {$L("Welcome to ")}
<span className={css.txtPoint}> <span className={css.txtPoint}>
{$L("Sh")} {$L("Sh")}
<span className={css.pointColor}>{$L("o")}</span> <span className={css.pointColor}>{$L("o")}</span>
{$L(`p Time !`)} {$L("p Time !")}
</span> </span>
</div> </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}> <div className={css.termsItemsLayer}>
<TButton <TButton
onClick={() => handleTermsClick("MST00402")} onClick={() => handleTermsClick("MST00402")}

View File

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