Skip to content

Commit

Permalink
Fix translation keys
Browse files Browse the repository at this point in the history
Closes #356
  • Loading branch information
ewoerner committed Mar 27, 2024
1 parent 6b35b79 commit 9466a2c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/banner-info-card/BannerInfoCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ const getInGameTime = (banner: Banner, t: TFunction) => {
<div className="info-content">
{totalTimeInMS === 0 ? (
<Tooltip placement="right" title={i18n.t('banners.time.warning')}>
<span>{t('banners.missingData')}</span>
<span>{t('missingData')}</span>
</Tooltip>
) : (
<Duration durationMilliseconds={totalTimeInMS} />
Expand Down
2 changes: 1 addition & 1 deletion src/components/verify-account/VerifyAccount.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ const VerifyAccount: React.FC<VerifyAccountProps> = ({
{t('buttons.back')}
</Button>
<Button className="positive-action-button" onClick={onVerify}>
{t('buttons.verify')}
{t('account.linking.step4.action')}
</Button>
</div>
</div>
Expand Down
1 change: 1 addition & 0 deletions src/locales/es/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -284,6 +284,7 @@
"missing_other": "faltan {{count}}",
"markedOffline": "Misión marcada como no disponible",
"viewOnIntel": "Ver misión en el Intel de Ingress",
"viewInScanner": "View in Scanner",
"inBanner": "Misiones en el banner",
"placeholder": "Misión de relleno {{index}}",
"notFound": "No se han encontrado misiones",
Expand Down

0 comments on commit 9466a2c

Please sign in to comment.