update 5 files

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

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

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

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

Loading…
Cancel
Save