Skip to content

Commit

Permalink
Merge pull request polkadot-cloud#1426 from paritytech/ting-translation
Browse files Browse the repository at this point in the history
Translations
  • Loading branch information
Ross Bulat authored Sep 14, 2023
2 parents 200f0cd + 89f85a9 commit 1512285
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/locale/cn/modals.json
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@
"feedbackPage": "我们的反馈页面在",
"for": "委托人 {{who}}",
"forget": "清除",
"free": "可用余额",
"getAnotherAccount": "获取更多帐户",
"gettingAccount": "正在获取帐户",
"gettingAddress": "正在获取地址...",
Expand Down
1 change: 1 addition & 0 deletions src/locale/cn/pages.json
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@
"proxy": "代理账户",
"recentPayouts": "最近收益",
"reserve": "储备",
"reserveBalance": "预存金额",
"reserved": "己储备",
"start": "开始",
"subscanDisabled": "Subscan己断开",
Expand Down
1 change: 1 addition & 0 deletions src/locale/en/modals.json
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@
"feedbackPage": "We host a feedback page on",
"for": "For {{who}}",
"forget": "Forget",
"free": "可使用余额",
"getAnotherAccount": "Get Another Account",
"gettingAccount": "Getting Account",
"gettingAddress": "Getting Address...",
Expand Down
1 change: 1 addition & 0 deletions src/locale/en/pages.json
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@
"proxy": "Proxy",
"recentPayouts": "Recent Payouts",
"reserve": "Reserve",
"reserveBalance": "Reserve Balance",
"reserved": "Reserved",
"start": "Start",
"subscanDisabled": "Subscan Disabled",
Expand Down
2 changes: 1 addition & 1 deletion src/modals/Accounts/Account.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ export const AccountButton = ({
</section>
<section className="foot">
<span className="balance">
{`Free: ${planckToUnit(freeBalance, units)
{`${t('free')}: ${planckToUnit(freeBalance, units)
.decimalPlaces(3)
.toFormat()} ${unit}`}
</span>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Overview/BalanceChart.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ export const BalanceChart = () => {
label=""
button={
<ButtonTertiary
text="Reserve Balance"
text={t('overview.reserveBalance')}
onClick={() =>
openModal({ key: 'UpdateReserve', size: 'sm' })
}
Expand Down

0 comments on commit 1512285

Please sign in to comment.