diff --git a/com.twin.app.shoptime/resources/de/strings.json b/com.twin.app.shoptime/resources/de/strings.json index e8480c93..b9aa6ba2 100644 --- a/com.twin.app.shoptime/resources/de/strings.json +++ b/com.twin.app.shoptime/resources/de/strings.json @@ -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.", diff --git a/com.twin.app.shoptime/resources/en/strings.json b/com.twin.app.shoptime/resources/en/strings.json index 55e2ecab..e4a187f4 100644 --- a/com.twin.app.shoptime/resources/en/strings.json +++ b/com.twin.app.shoptime/resources/en/strings.json @@ -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.", diff --git a/com.twin.app.shoptime/resources/gb/strings.json b/com.twin.app.shoptime/resources/gb/strings.json index 4e7d0132..b627dc41 100644 --- a/com.twin.app.shoptime/resources/gb/strings.json +++ b/com.twin.app.shoptime/resources/gb/strings.json @@ -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.", diff --git a/com.twin.app.shoptime/resources/ru/strings.json b/com.twin.app.shoptime/resources/ru/strings.json index 1c6c3c40..5c8c395e 100644 --- a/com.twin.app.shoptime/resources/ru/strings.json +++ b/com.twin.app.shoptime/resources/ru/strings.json @@ -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.": "Вы превысили лимит текстовых сообщений в день.", diff --git a/com.twin.app.shoptime/src/components/MobileSend/SMSNumKeyPad.jsx b/com.twin.app.shoptime/src/components/MobileSend/SMSNumKeyPad.jsx index 278f15ec..34ed3f59 100644 --- a/com.twin.app.shoptime/src/components/MobileSend/SMSNumKeyPad.jsx +++ b/com.twin.app.shoptime/src/components/MobileSend/SMSNumKeyPad.jsx @@ -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")} );