update 5 files

front
Reza_ashrafi 2 years ago
parent 95d883d427
commit af1005e5f0
  1. 14
      src/views/Product/AddToCart/index.js
  2. 4
      src/views/Product/BreadCrumb/index.js
  3. 4
      src/views/Products/BreadCrumb/index.js
  4. 8
      src/views/Products/Product/index.js

@ -71,13 +71,13 @@ function AddToCart(props) {
<strong style={{ fontSize: fontSize.desktop.strong }}>
{price}
</strong>{" "}
تومان")}
{window.t("تومان")}
</div>
</div>
{off ? (
<span style={{ fontSize: fontSize.desktop.span }}>
{off} تومان تخفیف")}
{off} {window.t("تومان تخفیف")}
</span>
) : null}
</div>
@ -89,7 +89,7 @@ function AddToCart(props) {
style={{ fontSize: fontSize.desktop.button }}
className="product-addtocart__box--sampleButton"
>
مشاهده نمونه کتاب")} <img src={document_red} alt="" />
{window.t("مشاهده نمونه کتاب")} <img src={document_red} alt="" />
</Link>
<Link
// to={`/products/${
@ -135,7 +135,7 @@ function AddToCart(props) {
}
}}
>
افزودن به سبد خرید")} <img src={basket_white} alt="" />
{window.t("افزودن به سبد خرید")} <img src={basket_white} alt="" />
</button>
<div className="product-addtocart__box--accept d-flex">
<input type="checkbox" checked={true} />
@ -143,7 +143,9 @@ function AddToCart(props) {
to="/page/privacy"
style={{ fontSize: "13px", margin: 0, padding: 0 }}
>
شرایط استفاده از دانوین و حریم خصوصی را مطالعه کرده ام")}
{window.t(
"شرایط استفاده از دانوین و حریم خصوصی را مطالعه کرده ام"
)}
</Link>
</div>
<div className="product-addtocart__box--accept d-flex">
@ -152,7 +154,7 @@ function AddToCart(props) {
to="/page/returning"
style={{ fontSize: "13px", margin: 0, padding: 0 }}
>
شرایط مرجوع کردن کالا در دانوین")}
{window.t("شرایط مرجوع کردن کالا در دانوین")}
</Link>
</div>
</div>

@ -22,7 +22,7 @@ export default function ActiveLastBreadcrumb(props) {
}}
to={"/"}
>
صفحه اصلی")}{" "}
{window.t("صفحه اصلی")}{" "}
</Link>
<Link
style={{
@ -31,7 +31,7 @@ export default function ActiveLastBreadcrumb(props) {
}}
to={"/products"}
>
محصولات")}{" "}
{window.t("محصولات")}{" "}
</Link>
<Link
style={{

@ -22,7 +22,7 @@ export default function ActiveLastBreadcrumb() {
}}
// onClick={handleClick}
>
صفحه اصلی")}{" "}
{window.t("صفحه اصلی")}{" "}
</Link>
<Link
to={"/products"}
@ -33,7 +33,7 @@ export default function ActiveLastBreadcrumb() {
}}
// onClick={handleClick}
>
محصولات")}{" "}
{window.t("محصولات")}{" "}
</Link>
</Breadcrumbs>
);

@ -66,8 +66,10 @@ function Product(props) {
to={`/products/physical/${product.id}`}
className="mobile-products-product__links--physical d-flex justify-content-between align-items-center"
>
<h2> نسخه چاپی")}</h2>
<span>{product.product[0].price} تومان")}</span>
<h2> {window.t("نسخه چاپی")}</h2>
<span>
{product.product[0].price} {window.t("تومان")}
</span>
</Link>
<div
className="mobile-products-product__links--basket d-flex"
@ -143,7 +145,7 @@ function Product(props) {
>
<h2 style={{ fontSize: 12 }}>{window.t("نسخه چاپی")}</h2>
<span style={{ fontSize: 12 }}>
{product.product[0].price} تومان")}
{product.product[0].price} {window.t("تومان")}
</span>
</Link>
<div

Loading…
Cancel
Save