update 6 files

front
amir hosein gorji 2 years ago
parent c2ee360bc1
commit 53a5f9691c
  1. 2
      src/views/QR/SubjectsDropdown/index.js
  2. 2
      src/views/QR/index.js
  3. 2
      src/views/QRScan/index.js
  4. 8
      src/views/Sample/index.js
  5. 4
      src/views/Support/Upload/index.js
  6. 11
      src/views/Support/index.js

@ -33,7 +33,7 @@ export default function Dropdown(props) {
onClick={() => setDropdown(!dropdown)} onClick={() => setDropdown(!dropdown)}
> >
<h3 style={{ fontSize: fontSize.desktop.h3 }}> <h3 style={{ fontSize: fontSize.desktop.h3 }}>
مشاهده فهرست موضوعی کتاب {window.t("مشاهده فهرست موضوعی کتاب")}{" "}
</h3> </h3>
<div> <div>
{dropdown ? ( {dropdown ? (

@ -264,7 +264,7 @@ class QR extends Component {
</div> </div>
) : ( ) : (
<div className="mobile-qr__notAccess d-flex flex-column p-3"> <div className="mobile-qr__notAccess d-flex flex-column p-3">
<h1>محتوایی برای این صفحه در دسترس نیست.!</h1> <h1>{window.q("محتوایی برای این صفحه در دسترس نیست.!")}</h1>
<div className="mobile-qr-scan__back d-flex mb-2"> <div className="mobile-qr-scan__back d-flex mb-2">
<Link to="/">{window.t("بازگشت")}</Link> <Link to="/">{window.t("بازگشت")}</Link>
</div> </div>

@ -138,7 +138,7 @@ class QRScan extends Component {
)} )}
{localStorage.getItem("latestQr") ? ( {localStorage.getItem("latestQr") ? (
<section className="mobile-qr-scan__lasts d-flex flex-column"> <section className="mobile-qr-scan__lasts d-flex flex-column">
<h2>آخرین مشاهدات</h2> <h2>{window.t("آخرین مشاهدات")}</h2>
{data.map((item, i) => ( {data.map((item, i) => (
<LastQr <LastQr
data={JSON.parse(localStorage.getItem("latestQr"))} data={JSON.parse(localStorage.getItem("latestQr"))}

@ -35,11 +35,11 @@ export default function Sample({ fileId }) {
> >
<Page <Page
pageNumber={pageNumber} pageNumber={pageNumber}
noData={window.t("نمونه ای برای این محصول درج نشده است") noData={window.t("نمونه ای برای این محصول درج نشده است")}
/> />
</Document> </Document>
<p> <p>
صفجه {pageNumber} از {numPages} {window.t("صفجه")} {pageNumber} {window.t("از")} {numPages}
</p> </p>
<div <div
style={{ style={{
@ -50,7 +50,7 @@ export default function Sample({ fileId }) {
}} }}
onClick={() => setPageNumber(Math.max(1, pageNumber - 1))} onClick={() => setPageNumber(Math.max(1, pageNumber - 1))}
> >
قبل {window.t("قبل")}
</div> </div>
<div <div
@ -62,7 +62,7 @@ export default function Sample({ fileId }) {
cursor: "pointer", cursor: "pointer",
}} }}
> >
بعد {window.t("بعد")}
</div> </div>
</div> </div>
); );

@ -41,7 +41,7 @@ export default function Document(props) {
</span> </span>
) : ( ) : (
<span style={{ fontSize: fontSize.mobile.span }}> <span style={{ fontSize: fontSize.mobile.span }}>
در صورت نیاز تصویر مرتبط را انتخاب کنید. {window.t("در صورت نیاز تصویر مرتبط را انتخاب کنید.")}{" "}
</span> </span>
)} )}
</div> </div>
@ -75,7 +75,7 @@ export default function Document(props) {
margin: "auto", margin: "auto",
}} }}
> >
در صورت نیاز تصویر مرتبط را انتخاب کنید. {window.t("در صورت نیاز تصویر مرتبط را انتخاب کنید.")}{" "}
</span> </span>
)} )}
</div> </div>

@ -93,10 +93,13 @@ class Support extends Component {
<div className="mobile-support d-flex flex-column align-items-center"> <div className="mobile-support d-flex flex-column align-items-center">
<Navbar page={"support"} /> <Navbar page={"support"} />
<div className="mobile-support__form d-flex flex-column"> <div className="mobile-support__form d-flex flex-column">
<h1 style={{ fontSize: fontSize.mobile.h1 }}>پشتیبانی</h1> <h1 style={{ fontSize: fontSize.mobile.h1 }}>
{window.t("پشتیبانی")}
</h1>
<p> <p>
برای ارتباط با دنیای شگفت انگیز دانوین از فرم زیر استفاده کنید و {window.t(
پس از انتخاب دپارتمان مد نظر پیام خود را ارسال کنید. "برای ارتباط با دنیای شگفت انگیز دانوین از فرم زیر استفاده کنید و پس از انتخاب دپارتمان مد نظر پیام خود را ارسال کنید."
)}{" "}
</p> </p>
{status ? null : ( {status ? null : (
<> <>
@ -156,7 +159,7 @@ class Support extends Component {
name="file" name="file"
/> />
<button onClick={() => this.send()}>ارسال</button> <button onClick={() => this.send()}>{window.t("ارسال")}</button>
</div> </div>
</div> </div>
</> </>

Loading…
Cancel
Save