diff --git a/src/components/Comments/index.js b/src/components/Comments/index.js index 381c33d..c7a5c13 100644 --- a/src/components/Comments/index.js +++ b/src/components/Comments/index.js @@ -46,7 +46,7 @@ export const Comments = ({ comments, indent }) => {
{comment.userId} - {comment?.userRoll || "خریدار محصول"} + {comment?.userRoll || `${window.t("خریدار محصول")}`}
@@ -80,7 +80,7 @@ export const Comments = ({ comments, indent }) => { <> - برای خرید توصیه می‌کنم + {window.t("برای خرید توصیه می‌کنم")} )} @@ -88,7 +88,7 @@ export const Comments = ({ comments, indent }) => { <> - برای خرید توصیه نمی‌کنم + {window.t("بازگشت بی چون و برای خرید توصیه نمی‌کنم")} )} diff --git a/src/components/CourseChapter/index.js b/src/components/CourseChapter/index.js index af3c8fe..86e7752 100644 --- a/src/components/CourseChapter/index.js +++ b/src/components/CourseChapter/index.js @@ -12,7 +12,7 @@ const CourseChapter = ({ selectedVideo, userId, setVideoActive, - isMobile + isMobile, }) => { const duration = (value) => { const minute = value % 60; @@ -30,19 +30,19 @@ const CourseChapter = ({ className={`bg-transparent lg:bg-green1 bg-opacity-10 lg:bg-opacity-10 lg:shadow-md lg:py-5 lg:pr-5 overflow-hidden flex flex-col rounded-md`} style={{ minWidth: "calc(100% / 12 * 3.5)", - height: isMobile ? "auto" :"calc(100vh - 300px)", + height: isMobile ? "auto" : "calc(100vh - 300px)", }} >

- سرفصل دوره + {window.t("سرفصل دوره")}

{book?.name} - {"پایه" + " " + grades[book?.gradeId]} + {`${window.t("پایه")}` + " " + grades[book?.gradeId]}
@@ -88,7 +88,10 @@ const CourseChapter = ({ >
{/* left div content */} -
+
video?.isFreeVod || +userId === 140 ? setVideoActive(video) - : toast.error("ابتدا محصول رو خریداری کن!") + : toast.error(`${window.t("ابتدا محصول رو خریداری کن!")}`) } disabled={true} > @@ -138,7 +141,9 @@ const CourseChapter = ({ : "text-blueC0" }`} > - {selectedVideo?.id === video?.id ? "در حال پخش" : "پخش"} + {selectedVideo?.id === video?.id + ? `${window.t("در حال پخش")}` + : `${window.t("پخش")}`}
@@ -157,7 +162,7 @@ const mapStateToProps = (state) => ({ grades: state.publicApi.grades, // vods: state.publicApi.bookSection?.vods, userId: state?.user?.status?.id, - isMobile: state.publicApi.isMobile + isMobile: state.publicApi.isMobile, }); const mapDispatchToProps = {