Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
I
interface
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
LuckySwap
interface
Commits
44ef9445
Commit
44ef9445
authored
Feb 06, 2019
by
haydenadams
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' into dev
parents
fcd6019f
f918c8c9
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
81 additions
and
0 deletions
+81
-0
zh-TW.json
public/locales/zh-TW.json
+75
-0
addresses.js
src/ducks/addresses.js
+6
-0
No files found.
public/locales/zh-TW.json
0 → 100644
View file @
44ef9445
{
"noWallet"
:
"未偵測到以太坊錢包"
,
"wrongNetwork"
:
"你位在錯誤的網路"
,
"switchNetwork"
:
"請切換到 {{ correctNetwork }}"
,
"installWeb3MobileBrowser"
:
"請安裝含有 web3 瀏覽器的手機錢包,如 Trust Wallet 或 Coinbase Wallet。"
,
"installMetamask"
:
"請使用 Chrome 或 Brave 瀏覽器安裝 Metamask。"
,
"disconnected"
:
"未連接"
,
"swap"
:
"兌換"
,
"send"
:
"發送"
,
"pool"
:
"資金池"
,
"betaWarning"
:
"本產品仍在測試階段。使用者需自負風險。"
,
"input"
:
"輸入"
,
"output"
:
"輸出"
,
"estimated"
:
"估計"
,
"balance"
:
"餘額: {{ balanceInput }}"
,
"unlock"
:
"解鎖"
,
"pending"
:
"處理中"
,
"selectToken"
:
"選擇代幣"
,
"searchOrPaste"
:
"選擇代幣或輸入地址"
,
"noExchange"
:
"找不到交易所"
,
"exchangeRate"
:
"匯率"
,
"enterValueCont"
:
"輸入 {{ missingCurrencyValue }} 以繼續。"
,
"selectTokenCont"
:
"選擇代幣以繼續。"
,
"noLiquidity"
:
"沒有流動性資金。"
,
"unlockTokenCont"
:
"解鎖代幣以繼續。"
,
"transactionDetails"
:
"交易明細"
,
"hideDetails"
:
"隱藏明細"
,
"youAreSelling"
:
"你正在出售"
,
"orTransFail"
:
"或交易失敗。"
,
"youWillReceive"
:
"你將至少收到"
,
"youAreBuying"
:
"你正在購買"
,
"itWillCost"
:
"這將花費至多"
,
"insufficientBalance"
:
"餘額不足"
,
"inputNotValid"
:
"無效的輸入值"
,
"differentToken"
:
"必須是不同的代幣。"
,
"noRecipient"
:
"請輸入收款人錢包地址。"
,
"invalidRecipient"
:
"請輸入有效的錢包地址。"
,
"recipientAddress"
:
"收款人錢包地址"
,
"youAreSending"
:
"你正在發送"
,
"willReceive"
:
"將至少收到"
,
"to"
:
"至"
,
"addLiquidity"
:
"增加流動性資金"
,
"deposit"
:
"存入"
,
"currentPoolSize"
:
"目前的資金池總量"
,
"yourPoolShare"
:
"你在資金池中的佔比"
,
"noZero"
:
"金額不能為零。"
,
"mustBeETH"
:
"輸入中必須包含 ETH。"
,
"enterCurrencyOrLabelCont"
:
"輸入 {{ inputCurrency }} 或 {{ label }} 以繼續。"
,
"youAreAdding"
:
"你將把"
,
"and"
:
"和"
,
"intoPool"
:
"加入資金池。"
,
"outPool"
:
"領出資金池。"
,
"youWillMint"
:
"你將產生"
,
"liquidityTokens"
:
"流動性代幣。"
,
"totalSupplyIs"
:
"目前流動性代幣供給總量為"
,
"youAreSettingExRate"
:
"初始的匯率將被設定為"
,
"totalSupplyIs0"
:
"目前流動性代幣供給為零。"
,
"tokenWorth"
:
"依據目前的匯率,每個流動性代幣價值"
,
"firstLiquidity"
:
"您是第一個提供流動性資金的人!"
,
"initialExchangeRate"
:
"初始的匯率將取決於你存入的資金。請確保存入的 ETH 和 {{ label }} 的價值相等。"
,
"removeLiquidity"
:
"領出流動性資金"
,
"poolTokens"
:
"資金池代幣"
,
"enterLabelCont"
:
"輸入 {{ label }} 以繼續。"
,
"youAreRemoving"
:
"您正在移除"
,
"youWillRemove"
:
"您即將移除"
,
"createExchange"
:
"創建交易所"
,
"invalidTokenAddress"
:
"無效的代幣地址"
,
"exchangeExists"
:
"{{ label }} 的交易所已經存在!"
,
"invalidSymbol"
:
"代幣符號錯誤"
,
"invalidDecimals"
:
"小數位數錯誤"
,
"tokenAddress"
:
"代幣地址"
,
"label"
:
"代幣符號"
,
"decimals"
:
"小數位數"
,
"enterTokenCont"
:
"輸入代幣地址"
}
src/ducks/addresses.js
View file @
44ef9445
...
@@ -48,8 +48,10 @@ const MAIN = {
...
@@ -48,8 +48,10 @@ const MAIN = {
[
'
NEXO
'
,
'
0x069C97DBA948175D10af4b2414969e0B88d44669
'
],
[
'
NEXO
'
,
'
0x069C97DBA948175D10af4b2414969e0B88d44669
'
],
[
'
PAX
'
,
'
0xC040d51b07Aea5d94a89Bc21E8078B77366Fc6C7
'
],
[
'
PAX
'
,
'
0xC040d51b07Aea5d94a89Bc21E8078B77366Fc6C7
'
],
[
'
QCH
'
,
'
0x755899F0540c3548b99E68C59AdB0f15d2695188
'
],
[
'
QCH
'
,
'
0x755899F0540c3548b99E68C59AdB0f15d2695188
'
],
[
'
RDN
'
,
'
0x7D03CeCb36820b4666F45E1b4cA2538724Db271C
'
],
[
'
REN
'
,
'
0x43892992B0b102459E895B88601Bb2C76736942c
'
],
[
'
REN
'
,
'
0x43892992B0b102459E895B88601Bb2C76736942c
'
],
[
'
REP
'
,
'
0x48B04d2A05B6B604d8d5223Fd1984f191DED51af
'
],
[
'
REP
'
,
'
0x48B04d2A05B6B604d8d5223Fd1984f191DED51af
'
],
[
'
RLC
'
,
'
0xA825CAE02B310E9901b4776806CE25db520c8642
'
],
[
'
RHOC
'
,
'
0x394e524b47A3AB3D3327f7fF6629dC378c1494a3
'
],
[
'
RHOC
'
,
'
0x394e524b47A3AB3D3327f7fF6629dC378c1494a3
'
],
[
'
SALT
'
,
'
0xC0C59cDe851bfcbdddD3377EC10ea54A18Efb937
'
],
[
'
SALT
'
,
'
0xC0C59cDe851bfcbdddD3377EC10ea54A18Efb937
'
],
[
'
SNT
'
,
'
0x1aEC8F11A7E78dC22477e91Ed924Fab46e3A88Fd
'
],
[
'
SNT
'
,
'
0x1aEC8F11A7E78dC22477e91Ed924Fab46e3A88Fd
'
],
...
@@ -80,8 +82,10 @@ const MAIN = {
...
@@ -80,8 +82,10 @@ const MAIN = {
'
0xB62132e35a6c13ee1EE0f84dC5d40bad8d815206
'
:
'
0x069C97DBA948175D10af4b2414969e0B88d44669
'
,
'
0xB62132e35a6c13ee1EE0f84dC5d40bad8d815206
'
:
'
0x069C97DBA948175D10af4b2414969e0B88d44669
'
,
'
0x8E870D67F660D95d5be530380D0eC0bd388289E1
'
:
'
0xC040d51b07Aea5d94a89Bc21E8078B77366Fc6C7
'
,
'
0x8E870D67F660D95d5be530380D0eC0bd388289E1
'
:
'
0xC040d51b07Aea5d94a89Bc21E8078B77366Fc6C7
'
,
'
0x687BfC3E73f6af55F0CccA8450114D107E781a0e
'
:
'
0x755899F0540c3548b99E68C59AdB0f15d2695188
'
,
'
0x687BfC3E73f6af55F0CccA8450114D107E781a0e
'
:
'
0x755899F0540c3548b99E68C59AdB0f15d2695188
'
,
'
0x255Aa6DF07540Cb5d3d297f0D0D4D84cb52bc8e6
'
:
'
0x7D03CeCb36820b4666F45E1b4cA2538724Db271C
'
,
'
0x408e41876cCCDC0F92210600ef50372656052a38
'
:
'
0x43892992B0b102459E895B88601Bb2C76736942c
'
,
'
0x408e41876cCCDC0F92210600ef50372656052a38
'
:
'
0x43892992B0b102459E895B88601Bb2C76736942c
'
,
'
0x1985365e9f78359a9B6AD760e32412f4a445E862
'
:
'
0x48B04d2A05B6B604d8d5223Fd1984f191DED51af
'
,
'
0x1985365e9f78359a9B6AD760e32412f4a445E862
'
:
'
0x48B04d2A05B6B604d8d5223Fd1984f191DED51af
'
,
'
0x607F4C5BB672230e8672085532f7e901544a7375
'
:
'
0xA825CAE02B310E9901b4776806CE25db520c8642
'
,
'
0x168296bb09e24A88805CB9c33356536B980D3fC5
'
:
'
0x394e524b47A3AB3D3327f7fF6629dC378c1494a3
'
,
'
0x168296bb09e24A88805CB9c33356536B980D3fC5
'
:
'
0x394e524b47A3AB3D3327f7fF6629dC378c1494a3
'
,
'
0x4156D3342D5c385a87D264F90653733592000581
'
:
'
0xC0C59cDe851bfcbdddD3377EC10ea54A18Efb937
'
,
'
0x4156D3342D5c385a87D264F90653733592000581
'
:
'
0xC0C59cDe851bfcbdddD3377EC10ea54A18Efb937
'
,
'
0x744d70FDBE2Ba4CF95131626614a1763DF805B9E
'
:
'
0x1aEC8F11A7E78dC22477e91Ed924Fab46e3A88Fd
'
,
'
0x744d70FDBE2Ba4CF95131626614a1763DF805B9E
'
:
'
0x1aEC8F11A7E78dC22477e91Ed924Fab46e3A88Fd
'
,
...
@@ -114,8 +118,10 @@ const MAIN = {
...
@@ -114,8 +118,10 @@ const MAIN = {
[
'
NEXO
'
,
'
0xB62132e35a6c13ee1EE0f84dC5d40bad8d815206
'
],
[
'
NEXO
'
,
'
0xB62132e35a6c13ee1EE0f84dC5d40bad8d815206
'
],
[
'
PAX
'
,
'
0x8E870D67F660D95d5be530380D0eC0bd388289E1
'
],
[
'
PAX
'
,
'
0x8E870D67F660D95d5be530380D0eC0bd388289E1
'
],
[
'
QCH
'
,
'
0x687BfC3E73f6af55F0CccA8450114D107E781a0e
'
],
[
'
QCH
'
,
'
0x687BfC3E73f6af55F0CccA8450114D107E781a0e
'
],
[
'
RDN
'
,
'
0x255Aa6DF07540Cb5d3d297f0D0D4D84cb52bc8e6
'
],
[
'
REN
'
,
'
0x408e41876cCCDC0F92210600ef50372656052a38
'
],
[
'
REN
'
,
'
0x408e41876cCCDC0F92210600ef50372656052a38
'
],
[
'
REP
'
,
'
0x1985365e9f78359a9B6AD760e32412f4a445E862
'
],
[
'
REP
'
,
'
0x1985365e9f78359a9B6AD760e32412f4a445E862
'
],
[
'
RLC
'
,
'
0x607F4C5BB672230e8672085532f7e901544a7375
'
],
[
'
RHOC
'
,
'
0x168296bb09e24A88805CB9c33356536B980D3fC5
'
],
[
'
RHOC
'
,
'
0x168296bb09e24A88805CB9c33356536B980D3fC5
'
],
[
'
SALT
'
,
'
0x4156D3342D5c385a87D264F90653733592000581
'
],
[
'
SALT
'
,
'
0x4156D3342D5c385a87D264F90653733592000581
'
],
[
'
SNT
'
,
'
0x744d70FDBE2Ba4CF95131626614a1763DF805B9E
'
],
[
'
SNT
'
,
'
0x744d70FDBE2Ba4CF95131626614a1763DF805B9E
'
],
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment