[SMSNumKeyPad,string.json] SHOPTIME-2751

- "clear" $L 적용, 다국어 추가
This commit is contained in:
jiwon93.son
2024-07-02 10:13:11 +09:00
parent 2abc6f1f75
commit f878de76ad
5 changed files with 6 additions and 1 deletions

View File

@@ -11,6 +11,7 @@
"Play": "Play",
"Pause": "Pause",
"Next": "Next",
"Clear": "Entfernen",
"Text Send": "SMS gesendet an",
"Send a purchase link for this item via SMS": "Einen Kauf-Link über SMS für diesen Artikel senden",
"You have exceeded the daily text limit.": "Sie haben das SMS-Tageslimit überstritten.",

View File

@@ -11,6 +11,7 @@
"Play": "Play",
"Pause": "Pause",
"Next": "Next",
"Clear": "Clear",
"Text Send to": "Text Send to",
"Send a purchase link for this item via SMS": "Send a purchase link for this item via SMS",
"You have exceeded the daily text limit.": "You have exceeded the daily text limit.",

View File

@@ -11,6 +11,7 @@
"Play": "Play",
"Pause": "Pause",
"Next": "Next",
"Clear": "Clear",
"Text Send to": "Text Send to",
"Send a purchase link for this item via SMS": "Send a purchase link for this item via SMS",
"You have exceeded the daily text limit.": "You have exceeded the daily text limit.",

View File

@@ -11,6 +11,7 @@
"Play": "Play",
"Pause": "Pause",
"Next": "Next",
"Clear": "Очистить",
"Text Send to": "Сообщение отправлено на",
"Send a purchase link for this item via SMS": "Отправить ссылку покупки этого товара по смс",
"You have exceeded the daily text limit.": "Вы превысили лимит текстовых сообщений в день.",

View File

@@ -5,6 +5,7 @@ import classNames from "classnames";
import { SpotlightContainerDecorator } from "@enact/spotlight/SpotlightContainerDecorator";
import Spottable from "@enact/spotlight/Spottable";
import { $L } from "../../utils/helperMethods";
import css from "./SMSNumKeyPad.module.less";
const Container = SpotlightContainerDecorator(
@@ -57,7 +58,7 @@ export default function SMSNumKeyPad({ onKeyDown }) {
onClick={_onKeyDown("clear")}
aria-label="Clear Key"
>
Clear
{$L("Clear")}
</SpottableComponent>
</Container>
);