- {filterOptions?.productType === "دوره ویدئویی" && Items(2)}
- {filterOptions?.productType === "کتاب دیجیتال" && Items(0)}
- {filterOptions?.productType === "کتاب فیزیکی" && Items(1)}
+ {filterOptions?.productType === window.t("دوره ویدئویی") && Items(2)}
+ {filterOptions?.productType === window.t("کتاب دیجیتال") && Items(0)}
+ {filterOptions?.productType === window.t("کتاب فیزیکی") && Items(1)}
{!filterOptions?.productType && Items(0)}
{filterLoading && (
diff --git a/src/views/QR/Content/components/Links.js b/src/views/QR/Content/components/Links.js
index 867564f..c994a16 100644
--- a/src/views/QR/Content/components/Links.js
+++ b/src/views/QR/Content/components/Links.js
@@ -6,14 +6,20 @@ export default function Links({ data }) {
return (
- لینک ها
+
+ {window.t("لینک ها")}
+
{data.map((link, i) => (
{link}
))}
-
+
);
}
diff --git a/src/views/QR/Content/components/Tab.js b/src/views/QR/Content/components/Tab.js
index 5a129c2..b60ab43 100644
--- a/src/views/QR/Content/components/Tab.js
+++ b/src/views/QR/Content/components/Tab.js
@@ -21,7 +21,7 @@ export default function Tab({ data }) {
: "bg-white font-normal"
}`}
>
- تمامی محتوا
+ {window.t("تمامی محتوا")}
{dataType === "all" && (
<>
- {data.voice && (
-
- )}
- {data.video && (
-
- )}
+ {data.voice &&
}
+ {data.video &&
}
{data.ppt &&
}
{data.pdf &&
}
{data.links &&
}
@@ -93,7 +89,9 @@ export default function Tab({ data }) {
{data.voice ? (
) : (
-
فایل صدا یافت نشد.
+
+ {window.t("فایل صدا یافت نشد.")}
+
)}
>
)}
@@ -102,7 +100,9 @@ export default function Tab({ data }) {
{data.video ? (
) : (
-
فایل تصویری یافت نشد.
+
+ {window.t("فایل تصویری یافت نشد.")}
+
)}
>
)}
@@ -111,7 +111,9 @@ export default function Tab({ data }) {
{data.ppt ? (
) : (
-
فایل پاورپوینت یافت نشد.
+
+ {window.t("فایل پاورپوینت یافت نشد.")}
+
)}
>
)}
@@ -120,7 +122,9 @@ export default function Tab({ data }) {
{data.pdf ? (
) : (
-
فایل پی دی اف یافت نشد.
+
+ {window.t("فایل پی دی اف یافت نشد.")}
+
)}
>
)}
@@ -129,7 +133,9 @@ export default function Tab({ data }) {
{data.links ? (
) : (
-
لینکی پیدا نشد.
+
+ {window.t("لینکی پیدا نشد.")}
+
)}
>
)}
diff --git a/src/views/QR/Content/index.js b/src/views/QR/Content/index.js
index b0caa35..47e3f98 100644
--- a/src/views/QR/Content/index.js
+++ b/src/views/QR/Content/index.js
@@ -36,17 +36,19 @@ export const Content = ({
{grades[data?.book?.gradeId]}
-
{`شما در حال مشاهده صفحه ${data?.qr?.pageNumber} هستید.`}
+
{`${window.t(
+ "شما در حال مشاهده صفحه"
+ )} ${data?.qr?.pageNumber} ${window.t("هستید.")}`}