mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-09-01 02:20:56 -07:00
Spanish changes from translation team (#1650)
* Add translation of 'email' on About page - Email to Correo electrónico * Add en ingles suffix and Spanish oridinals * Correct variable name in es.json * Add missing colon * Replace brackets with parens when using en ingles
This commit is contained in:
parent
85ffb1b6b9
commit
c398fe8737
8 changed files with 58 additions and 18 deletions
|
@ -9,7 +9,7 @@ interface AboutCardProps {
|
|||
imgSrc?: string;
|
||||
header: string;
|
||||
size: 'small' | 'large';
|
||||
linkText?: string;
|
||||
linkText?: string | JSX.Element;
|
||||
url?: string;
|
||||
openUrlNewTab?: boolean;
|
||||
className?: string;
|
||||
|
@ -62,7 +62,7 @@ const AboutCard = (props: React.PropsWithChildren<AboutCardProps>) => {
|
|||
<LinkTypeWrapper
|
||||
linkText={props.linkText}
|
||||
internal={props.internal}
|
||||
url={props.url}
|
||||
url={props.url ? props.url : ''}
|
||||
openUrlNewTab={props.openUrlNewTab}
|
||||
className={'j40-aboutcard-link'}
|
||||
/>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue