Skip to content

Commit

Permalink
fix translations
Browse files Browse the repository at this point in the history
  • Loading branch information
pettinarip committed Sep 30, 2024
1 parent a7ddc57 commit 86d0df1
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/components/BeaconChainActions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,18 @@ const BeaconChainActions = () => {

const datapoints: CardListItem[] = [
{
title: t("consensus-beaconscan-title"),
title: t("page-upgrades:consensus-beaconscan-title"),
image: beaconscan,
alt: "",
link: "https://beaconscan.com",
description: t("consensus-beaconscan-desc"),
description: t("page-upgrades:consensus-beaconscan-desc"),
},
{
title: t("consensus-beaconscan-in-title"),
title: t("page-upgrades:consensus-beaconscan-in-title"),
image: beaconchain,
alt: "",
link: "https://beaconcha.in",
description: t("consensus-beaconcha-in-desc"),
description: t("page-upgrades:consensus-beaconcha-in-desc"),
},
]

Expand Down Expand Up @@ -64,24 +64,24 @@ const BeaconChainActions = () => {
me={{ base: 0, md: 4 }}
mb={{ base: 8, md: 0 }}
emoji=":money_with_wings:"
title={t("consensus-become-staker")}
description={t("consensus-become-staker-desc")}
title={t("page-upgrades:consensus-become-staker")}
description={t("page-upgrades:consensus-become-staker-desc")}
>
<ButtonLink className="mb-3" href="https://launchpad.ethereum.org">
<Translation id="get-started" />
</ButtonLink>
<ButtonLink variant="outline" href="/staking/">
<Translation id="page-upgrades-index-staking-learn" />
<Translation id="page-upgrades-index:page-upgrades-index-staking-learn" />
</ButtonLink>
</Card>
</Flex>
<H3>
<Translation id="consensus-explore" />
<Translation id="page-upgrades:consensus-explore" />
</H3>

<CardList items={datapoints} />
<H3>
<Translation id="read-more" />
<Translation id="page-upgrades:read-more" />
</H3>
<CardList items={reads} />
</div>
Expand Down

0 comments on commit 86d0df1

Please sign in to comment.