Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: i18next key warning #105

Merged
merged 1 commit into from
Nov 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions public/locales/en/common.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"en": "English",
"enterprise-solution": "Enterprise Solution",
"error": "There was an unexpected error",
"forboleLogo": "Forbole Logo",
"full tvl": "Total Value Locked",
"native-staking-service": "Native Staking Service",
"placeholder": "Your email",
Expand Down
1 change: 0 additions & 1 deletion public/locales/en/staking.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
"email": "Email",
"estimated earning": "Estimated earning",
"faq": "FAQs",
"forboleLogo": "Forbole Logo",
"FVH title": "Stake, earn and secure the networks with Forbole",
"general support": "General Support",
"get in touch!": "Get in touch!",
Expand Down
1 change: 1 addition & 0 deletions public/locales/zh-CN/common.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"en": "English",
"enterprise-solution": "企业解决方案",
"error": "发生意外错误",
"forboleLogo": "Forbole 标志",
"full tvl": "已质押通证的总值",
"native-staking-service": "原生通证质押服务",
"placeholder": "你的电邮地址",
Expand Down
1 change: 0 additions & 1 deletion public/locales/zh-CN/staking.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
"email": "Email",
"estimated earning": "Estimated earning",
"faq": "FAQs",
"forboleLogo": "Forbole Logo",
"FVH title": "Stake, earn and secure the networks with Forbole",
"general support": "General Support",
"get in touch!": "Get in touch!",
Expand Down
1 change: 1 addition & 0 deletions public/locales/zh-HK/common.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"en": "English",
"enterprise-solution": "企業解決方案",
"error": "發生意外錯誤",
"forboleLogo": "Forbole 標誌",
"full tvl": "已質押通證的總值",
"native-staking-service": "原生通證質押服務",
"placeholder": "你的電郵地址",
Expand Down
1 change: 0 additions & 1 deletion public/locales/zh-HK/staking.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
"email": "Email",
"estimated earning": "Estimated earning",
"faq": "FAQs",
"forboleLogo": "Forbole Logo",
"FVH title": "Stake, earn and secure the networks with Forbole",
"general support": "General Support",
"get in touch!": "Get in touch!",
Expand Down
2 changes: 1 addition & 1 deletion src/components/nav/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ const Nav = ({ staking, stakeNowRef, itemColor }: NavProps) => {
>
<Link href="/">
<a
aria-label={t("forboleLogo")}
aria-label={t("common:forboleLogo")}
style={{
display: "flex",
alignItems: "center",
Expand Down