summaryrefslogtreecommitdiff
path: root/client/src/pages/Update/UpdateSelect/UpdateSelect.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/pages/Update/UpdateSelect/UpdateSelect.jsx')
-rw-r--r--client/src/pages/Update/UpdateSelect/UpdateSelect.jsx13
1 files changed, 7 insertions, 6 deletions
diff --git a/client/src/pages/Update/UpdateSelect/UpdateSelect.jsx b/client/src/pages/Update/UpdateSelect/UpdateSelect.jsx
index a903704..e57587a 100644
--- a/client/src/pages/Update/UpdateSelect/UpdateSelect.jsx
+++ b/client/src/pages/Update/UpdateSelect/UpdateSelect.jsx
@@ -1,3 +1,4 @@
+import { t } from 'i18next'
import React from 'react'
import { Link } from 'react-router-dom'
@@ -9,22 +10,22 @@ import styles from './UpdateSelect.module.css'
const UpdateSelect = () => {
return (
<>
- <Header subheading="Mera Aadhaar Meri Pehchan" />
+ <Header subheading={t('MERA_AADHAAR_MERI_PEHCHAN')} />
<div className={styles.card__container}>
- <Link to="/update/demographic">
+ <Link to="/update/demographic">
<Card
- title="Demographic"
+ title={t('DEMOGRAPHIC')}
image={`${process.env.PUBLIC_URL}/assets/images/enrollment.svg`}
/>
- </Link>
+ </Link>
<Link to="/update/biometric">
<Card
- title="Biometric"
+ title={t('BIOMETRIC')}
image={`${process.env.PUBLIC_URL}/assets/images/update.svg`}
/>
</Link>
<Link to="/update/agreement">
- <SubmitButton />
+ <SubmitButton />
</Link>
</div>
</>