diff --git a/com.twin.app.shoptime/resources/de/strings.json b/com.twin.app.shoptime/resources/de/strings.json
index 90a3bf23..58c9c3b0 100644
--- a/com.twin.app.shoptime/resources/de/strings.json
+++ b/com.twin.app.shoptime/resources/de/strings.json
@@ -229,5 +229,6 @@
"The ShopTime service will no longer be available on your current TV starting September 1st. To continue using the service, please access ShopTime on 2018 and later TV models (webOS 4.0 or higher).": "Der ShopTime-Dienst wird ab dem 1. September auf Ihrem aktuellen TV nicht mehr verfügbar sein.
Um den Dienst weiterhin zu nutzen, greifen Sie auf TV-Modellen (webOS4.0 oder höher) ab 2018 auf ShopTime zu.",
"SHOPTIME": "EXKLUSIVES",
"EXCLUSIVE": "ANGEBOT",
- "OPTION": "(need for transfer)OPTION"
+ "OPTION": "(need for transfer)OPTION",
+ "There are no themes available": "Es sind keine Artikel verfügbar"
}
diff --git a/com.twin.app.shoptime/resources/en/strings.json b/com.twin.app.shoptime/resources/en/strings.json
index b2df9cf1..59b19201 100644
--- a/com.twin.app.shoptime/resources/en/strings.json
+++ b/com.twin.app.shoptime/resources/en/strings.json
@@ -229,5 +229,6 @@
"The ShopTime service will no longer be available on your current TV starting September 1st. To continue using the service, please access ShopTime on 2018 and later TV models (webOS 4.0 or higher).": "The ShopTime service will no longer be available on your current TV starting September 1st.
To continue using the service, please access ShopTime on 2018 and later TV models (webOS 4.0 or higher).",
"SHOPTIME": "SHOPTIME",
"EXCLUSIVE": "EXCLUSIVE",
- "OPTION": "OPTION"
+ "OPTION": "OPTION",
+ "There are no themes available": "There are no themes available"
}
diff --git a/com.twin.app.shoptime/resources/gb/strings.json b/com.twin.app.shoptime/resources/gb/strings.json
index 1a76d0e9..894eeef9 100644
--- a/com.twin.app.shoptime/resources/gb/strings.json
+++ b/com.twin.app.shoptime/resources/gb/strings.json
@@ -229,5 +229,6 @@
"The ShopTime service will no longer be available on your current TV starting September 1st. To continue using the service, please access ShopTime on 2018 and later TV models (webOS 4.0 or higher).": "The ShopTime service will no longer be available on your current TV starting September 1st.
To continue using the service, please access ShopTime on 2018 and later TV models (webOS 4.0 or higher).",
"SHOPTIME": "SHOPTIME",
"EXCLUSIVE": "EXCLUSIVE",
- "OPTION": "OPTION"
+ "OPTION": "OPTION",
+ "There are no themes available": "There are no themes available"
}
diff --git a/com.twin.app.shoptime/resources/ru/strings.json b/com.twin.app.shoptime/resources/ru/strings.json
index 416a3999..f808f2af 100644
--- a/com.twin.app.shoptime/resources/ru/strings.json
+++ b/com.twin.app.shoptime/resources/ru/strings.json
@@ -229,5 +229,6 @@
"The ShopTime service will no longer be available on your current TV starting September 1st. To continue using the service, please access ShopTime on 2018 and later TV models (webOS 4.0 or higher).": "С 1 сентября услуга ShopTime больше не будет доступна на модели вашего телевизора.
Продолжить пользоваться сервисом ShopTime можно на телевизорах 2018 года и более поздних моделей (webOS 4.0 или выше).",
"SHOPTIME": "SHOPTIME",
"EXCLUSIVE": "EXCLUSIVE",
- "OPTION": "(need for transfer)OPTION"
+ "OPTION": "(need for transfer)OPTION",
+ "There are no themes available": "Нет доступных товаров"
}
diff --git a/com.twin.app.shoptime/src/views/HotPicksPanel/Type/NoDataType/NoDataType.jsx b/com.twin.app.shoptime/src/views/HotPicksPanel/Type/NoDataType/NoDataType.jsx
index 30f089f5..b619ecc2 100644
--- a/com.twin.app.shoptime/src/views/HotPicksPanel/Type/NoDataType/NoDataType.jsx
+++ b/com.twin.app.shoptime/src/views/HotPicksPanel/Type/NoDataType/NoDataType.jsx
@@ -5,13 +5,14 @@ import Spottable from "@enact/spotlight/Spottable";
import NoDataImg from "../../../../../assets/images/img-my-info-billing@3x.png";
import CustomImage from "../../../../components/CustomImage/CustomImage";
import css from "../NoDataType/NoDataType.module.less";
+import { $L } from "../../../../utils/helperMethods";
export default function NoDataType() {
const SpottableComponent = Spottable("div");
return (
- There are no themes available
+ {$L("There are no themes available")}
);
}