From 5287ea0bb2079e15fbeb77b4fb29f49e78303f44 Mon Sep 17 00:00:00 2001 From: Yongfeng LI Date: Sat, 30 Dec 2017 14:43:22 +0800 Subject: [PATCH] change Chinese word to English --- src/features/app/components/Navigation/Navigation.jsx | 10 +++++----- src/features/shared/components/BaseList/BaseList.jsx | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/features/app/components/Navigation/Navigation.jsx b/src/features/app/components/Navigation/Navigation.jsx index 2ad8654..75b0c53 100644 --- a/src/features/app/components/Navigation/Navigation.jsx +++ b/src/features/app/components/Navigation/Navigation.jsx @@ -23,31 +23,31 @@ class Navigation extends React.Component {
  • {navIcon('transaction', styles)} - 交易 + Transactions
  • {navIcon('account', styles)} - 账户 + Accounts
  • {navIcon('asset', styles)} - 资产 + Assets
  • {navIcon('balance', styles)} - 账单 + Balances
  • {navIcon('unspent', styles)} - UTXO + Unspent outputs
  • diff --git a/src/features/shared/components/BaseList/BaseList.jsx b/src/features/shared/components/BaseList/BaseList.jsx index 414402a..d9a99ad 100644 --- a/src/features/shared/components/BaseList/BaseList.jsx +++ b/src/features/shared/components/BaseList/BaseList.jsx @@ -13,16 +13,16 @@ class ItemList extends React.Component { const actions = [...(this.props.actions || [])] const labelTitleMap = { - transactions: '交易', - accounts: '账户', - assets: '资产', - balances: '账单', + transactions: 'Transactions', + accounts: 'Accounts', + assets: 'Assets', + balances: 'Balances', 'unspent outputs': 'UTXO' } const title = labelTitleMap[label] || capitalize(label) const newButton = if (!this.props.skipCreate) { actions.push(newButton) -- 2.11.0