Skip to content

Commit

Permalink
Add translations
Browse files Browse the repository at this point in the history
  • Loading branch information
selankon committed Nov 13, 2024
1 parent e09e7b6 commit 6dd199b
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 5 deletions.
14 changes: 9 additions & 5 deletions src/components/Process/ParitaryErc.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import { useElection } from '@vocdoni/react-providers'
import { ElectionResultsTypeNames, ElectionStatus, PublishedElection } from '@vocdoni/sdk'
import { useEffect, useMemo, useState } from 'react'
import { FieldValues, SubmitErrorHandler, ValidateResult } from 'react-hook-form'
import { useTranslation } from 'react-i18next'
import { Trans, useTranslation } from 'react-i18next'

/**
* File to store paritary erc project specific code
Expand Down Expand Up @@ -189,7 +189,9 @@ export const ParitaryErcQuestionsForm = () => {
<div />
<chakra.div __css={styles.question}>
<chakra.div __css={styles.header}>
<chakra.label __css={styles.title}>{`${BlankVoteTitle} `}</chakra.label>
<chakra.label __css={styles.title}>
<Trans i18nKey={'paritary_erc.blank_vote_title'}>{`${BlankVoteTitle} `}</Trans>
</chakra.label>
</chakra.div>
<chakra.div __css={styles.body}>
<chakra.div
Expand All @@ -199,8 +201,10 @@ export const ParitaryErcQuestionsForm = () => {
}}
>
<Markdown>
Si vols votar en blanc, trobaràs l'opció al final del formulari, si es tria aquesta opció, no es
tindran en compte les opcions previament seleccionades
{t('paritary_erc.blank_vote_description', {
defaultValue:
"Si vols votar en blanc, trobaràs l'opció al final del formulari, si es tria aquesta opció, no es tindran en compte les opcions previament seleccionades",
})}
</Markdown>
</chakra.div>
<Stack sx={styles.stack}>
Expand All @@ -211,7 +215,7 @@ export const ParitaryErcQuestionsForm = () => {
isDisabled={blankVoteDisabled}
>
<Box py={4} pl={4}>
Vota en blanc a les dos llistes
<Trans i18nKey={'paritary_erc.blank_vote_option'}>Vota en blanc a les dos llistes</Trans>
</Box>
</Checkbox>
</Stack>
Expand Down
5 changes: 5 additions & 0 deletions src/i18n/locales/ca.json
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,11 @@
"title": "La votació ha de ser paritària. ",
"description": "Selecciona el mateix número d’opcions de la primera llista i de la segona. Pots votar un mínim d’{{ min }} opció i un màxim de {{ max }} per llista."
},
"paritary_erc": {
"blank_vote_title": "Vot en blanc ",
"blank_vote_description": "Si vols votar en blanc, trobaràs l'opció al final del formulari, si es tria aquesta opció, no es\n tindran en compte les opcions previament seleccionades",
"blank_vote_option": "Vota en blanc a les dos llistes"
},
"footer": {
"company": "Empresa",
"demo": "Tipus de Votació",
Expand Down
5 changes: 5 additions & 0 deletions src/i18n/locales/es.json
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,11 @@
"error": {
"election_is_invalid": "Invalid election"
},
"paritary_erc": {
"blank_vote_title": "Voto en blanco",
"blank_vote_description": "Si deseas votar en blanco, encontrarás la opción al final del formulario. Si se elige esta opción, no se\n tendrán en cuenta las opciones previamente seleccionadas",
"blank_vote_option": "Vota en blanco en ambas listas"
},
"paritary_errors": {
"title": "La votación debe ser paritaria.",
"description": "Selecciona el mismo número de opciones de la primera lista y de la segunda. Puedes votar un mínimo de {{ min }} opción y un máximo de {{ max }} por lista."
Expand Down

2 comments on commit 6dd199b

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.