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

Update zh.json #3

Open
wants to merge 10 commits into
base: karthik-polygon
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion public/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@
"vestingContract": "Vesting Contract",
"virtualPrice": "Virtual price",
"virtualSwap": "Virtual Swap",
"virtualSwapSynthToSynthInfo": "This is a Synth-to-Synth Virtual Swap. You will see your swapped tokens in your wallet immediately after the swap executes, but must wait for up to 6 minutes before being able to transfer them.",
"virtualSwapSynthToSynthInfo": "This is a Synth to Synth Virtual Swap. You will see your swapped tokens in your wallet immediately after the swap executes, but must wait for up to 6 minutes before being able to transfer them.",
"volume": "Volume",
"whichAssetBucketDoYouWantToSwap": "Which asset bucket do you want to swap?",
"whichAssetPoolDoYouWantToChoose": "Which asset pool do you want to choose?",
Expand Down
8 changes: 4 additions & 4 deletions public/locales/zh.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
"liquidityUtilization": "流动性利用率",
"lossOfPeg": "永久丧失挂钩",
"lpAvailable": null,
"lpMustStakeForRewards": "流动性提供者们:您需要质押流动性通证(LP token)来获取KEEP代币奖励",
"lpMustStakeForRewards": "流动性提供者们:您需要质押流动性通证(LPtoken)来获取KEEP代币奖励",
"lpStaked": null,
"lpTokens": "资金池LP代币",
"max": "上限",
Expand Down Expand Up @@ -98,7 +98,7 @@
"reviewDeposit": "检查存款",
"reviewMigration": "检查迁移",
"reviewSwap": "检查交易",
"risk": "Risk",
"risk": "风险",
"riskAdminKeys": "The admin is capable of pausing new deposits and trades in case of technical emergencies. Users will always be able to withdraw their funds, regardless of new deposits being paused. The admin is also capable of changing the swap/admin fees, as well as the per pool/account deposit limits.",
"riskAudits": "Information can be found in our",
"riskAudits2": "Docs",
Expand Down Expand Up @@ -177,8 +177,8 @@
"virtualPrice": "虚拟价格",
"virtualSwap": "跨资产兑换",
"volume": "量",
"whichAssetBucketDoYouWantToSwap": "您想交易哪一种资产",
"whichAssetPoolDoYouWantToChoose": "您要选择哪一个资产池",
"whichAssetBucketDoYouWantToSwap": "您想交易哪一种资产",
"whichAssetPoolDoYouWantToChoose": "您要选择哪一个资产池",
"withdraw": "提款",
"withdrawal": "取款",
"withdrawFrom": "取出(tbd)",
Expand Down
2 changes: 1 addition & 1 deletion src/components/PoolOverview.scss
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ div.poolOverview {
vertical-align: sub;
height: 18px;
width: 18px;
background-color: white;
background-color: var(--primary-background);
border-radius: 50%;
}

Expand Down
4 changes: 3 additions & 1 deletion src/components/SiteSettingsMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,9 @@ function NetworkSection(): ReactElement {
const { t } = useTranslation()
const { chainId: activeChainId, library, account } = useActiveWeb3React()
const [isNetworkVisible, setIsNetworkVisible] = useState(false)
const networks = [...(IS_L2_SUPPORTED ? [ChainId.POLYGON] : [])]
const networks = [
...(IS_L2_SUPPORTED ? [ChainId.POLYGON, ChainId.MATICMUMBAI] : []),
]

return (
<div data-testid="networkMenuContainer" className={styles.section}>
Expand Down
12 changes: 6 additions & 6 deletions src/components/TokenClaimModal.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@
background: var(--primary-background);
background: linear-gradient(
0deg,
var(--emphasis-2) 0%,
var(--emphasis-1) 40%,
var(--primary-background) 100%
$primary-blue-light 0%,
$light-blue 40%,
white 100%
);
}

Expand All @@ -39,9 +39,9 @@
background: var(--primary-background);
background: linear-gradient(
0deg,
var(--emphasis-2) 0%,
var(--emphasis-1) 40%,
var(--primary-background) 100%
$primary-blue-light 0%,
$light-blue 40%,
white 100%
);
display: flex;
justify-content: center;
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Risk.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ function Risk(): ReactElement {
return (
<div className="riskpage">
<div className="content">
<h3 className="title">Risk</h3>
<h3 className="title"> </h3>
<p data-testid="risk-intro">
{t("riskIntro")}{" "}
<a href="https://github.com/MuneFinance/MuneFinance">
Expand Down
4 changes: 2 additions & 2 deletions src/styles/theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ $indigo3: #121334;
$indigo4: #070713;
$sunset: #d96a3b;
$sunburn: #e6ad76;
$sand1: #e3d899;
$sand2: #faf3ce;
$sand1: #e8e5fb;
$sand2: #f5f2fd;
$sand3: #fdfdf8;

$divider-red: #fb5a5a;
Expand Down