Merge pull request #244 from rjpeterson/update-translations
Update translations
This commit is contained in:
commit
c4984524a7
|
@ -107,7 +107,7 @@ export default function AccountInfo() {
|
||||||
} else {
|
} else {
|
||||||
notify({
|
notify({
|
||||||
title: t('redeem-failure'),
|
title: t('redeem-failure'),
|
||||||
description: 'Transaction failed',
|
description: t('transaction-failed'),
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
|
|
|
@ -131,7 +131,7 @@ const CloseAccountModal: FunctionComponent<CloseAccountModalProps> = ({
|
||||||
} else {
|
} else {
|
||||||
notify({
|
notify({
|
||||||
title: t('close-account:error-deleting-account'),
|
title: t('close-account:error-deleting-account'),
|
||||||
description: 'Transaction failed',
|
description: t('transaction-failed'),
|
||||||
type: 'error',
|
type: 'error',
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
|
@ -65,7 +65,7 @@ export const settlePosPnl = async (
|
||||||
} else {
|
} else {
|
||||||
notify({
|
notify({
|
||||||
title: t('pnl-error'),
|
title: t('pnl-error'),
|
||||||
description: 'Transaction failed',
|
description: t('transaction-failed'),
|
||||||
type: 'error',
|
type: 'error',
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
@ -125,7 +125,7 @@ export const settlePnl = async (
|
||||||
} else {
|
} else {
|
||||||
notify({
|
notify({
|
||||||
title: t('pnl-error'),
|
title: t('pnl-error'),
|
||||||
description: 'Transaction failed',
|
description: t('transaction-failed'),
|
||||||
type: 'error',
|
type: 'error',
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
|
@ -157,8 +157,21 @@ const TradeHistoryTable = ({
|
||||||
<div className="flex flex-col pb-3 sm:flex-row sm:items-center sm:justify-between">
|
<div className="flex flex-col pb-3 sm:flex-row sm:items-center sm:justify-between">
|
||||||
<div className="flex items-center">
|
<div className="flex items-center">
|
||||||
<h4 className="mb-0 flex items-center text-th-fgd-1">
|
<h4 className="mb-0 flex items-center text-th-fgd-1">
|
||||||
{!initialLoad ? <Loading className="mr-2" /> : data.length}{' '}
|
{data.length === 1
|
||||||
{data.length === 1 ? 'Trade' : 'Trades'}
|
? t('number-trade', {
|
||||||
|
number: !initialLoad ? (
|
||||||
|
<Loading className="mr-2" />
|
||||||
|
) : (
|
||||||
|
data.length
|
||||||
|
),
|
||||||
|
})
|
||||||
|
: t('number-trades', {
|
||||||
|
number: !initialLoad ? (
|
||||||
|
<Loading className="mr-2" />
|
||||||
|
) : (
|
||||||
|
data.length
|
||||||
|
),
|
||||||
|
})}
|
||||||
</h4>
|
</h4>
|
||||||
|
|
||||||
{mangoAccount ? (
|
{mangoAccount ? (
|
||||||
|
|
|
@ -211,8 +211,9 @@ const LiquidationHistoryTable = ({ history, view }) => {
|
||||||
<div className="flex items-center justify-between pb-3">
|
<div className="flex items-center justify-between pb-3">
|
||||||
<div className="flex items-center">
|
<div className="flex items-center">
|
||||||
<h4 className="mb-0 text-th-fgd-1">
|
<h4 className="mb-0 text-th-fgd-1">
|
||||||
{filteredHistory.length}{' '}
|
{filteredHistory.length === 1
|
||||||
{filteredHistory.length === 1 ? view : `${view}s`}
|
? t('number-liquidation', { number: filteredHistory.length })
|
||||||
|
: t('number-liquidations', { number: filteredHistory.length })}
|
||||||
</h4>
|
</h4>
|
||||||
<Tooltip
|
<Tooltip
|
||||||
content={
|
content={
|
||||||
|
@ -475,14 +476,13 @@ const HistoryTable = ({ history, view }) => {
|
||||||
<div className="flex items-center justify-between pb-3">
|
<div className="flex items-center justify-between pb-3">
|
||||||
<div className="flex items-center">
|
<div className="flex items-center">
|
||||||
<h4 className="mb-0 text-th-fgd-1">
|
<h4 className="mb-0 text-th-fgd-1">
|
||||||
{filteredHistory.length}{' '}
|
|
||||||
{filteredHistory.length === 1
|
{filteredHistory.length === 1
|
||||||
? view === 'Withdraw'
|
? view === 'Withdraw'
|
||||||
? 'Withdrawal'
|
? t('number-withdrawal', { number: filteredHistory.length })
|
||||||
: view
|
: t('number-deposit', { number: filteredHistory.length })
|
||||||
: view === 'Withdraw'
|
: view === 'Withdraw'
|
||||||
? 'Withdrawals'
|
? t('number-withdrawals', { number: filteredHistory.length })
|
||||||
: `${view}s`}
|
: t('number-deposits', { number: filteredHistory.length })}
|
||||||
</h4>
|
</h4>
|
||||||
<Tooltip
|
<Tooltip
|
||||||
content={
|
content={
|
||||||
|
|
|
@ -243,7 +243,7 @@ export default function Account() {
|
||||||
} else {
|
} else {
|
||||||
notify({
|
notify({
|
||||||
title: t('redeem-failure'),
|
title: t('redeem-failure'),
|
||||||
description: 'Transaction failed',
|
description: t('transaction-failed'),
|
||||||
type: 'error',
|
type: 'error',
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,3 @@
|
||||||
|
|
||||||
|
|
||||||
{
|
{
|
||||||
"about-to-withdraw": "You're about to withdraw",
|
"about-to-withdraw": "You're about to withdraw",
|
||||||
"above": "Above",
|
"above": "Above",
|
||||||
|
@ -142,11 +140,11 @@
|
||||||
"favorite": "Favorite",
|
"favorite": "Favorite",
|
||||||
"favorites": "Favorites",
|
"favorites": "Favorites",
|
||||||
"fee": "Fee",
|
"fee": "Fee",
|
||||||
"fees": "Fees",
|
|
||||||
"fee-discount": "Fee Discount",
|
"fee-discount": "Fee Discount",
|
||||||
|
"fees": "Fees",
|
||||||
"filter": "Filter",
|
"filter": "Filter",
|
||||||
"filters-selected": "{{selectedFilters}} selected",
|
|
||||||
"filter-trade-history": "Filter Trade History",
|
"filter-trade-history": "Filter Trade History",
|
||||||
|
"filters-selected": "{{selectedFilters}} selected",
|
||||||
"first-deposit-desc": "There is a one-time cost of 0.035 SOL when you make your first deposit. This covers the rent on the Solana Blockchain for your account.",
|
"first-deposit-desc": "There is a one-time cost of 0.035 SOL when you make your first deposit. This covers the rent on the Solana Blockchain for your account.",
|
||||||
"from": "From",
|
"from": "From",
|
||||||
"funding": "Funding",
|
"funding": "Funding",
|
||||||
|
@ -218,8 +216,6 @@
|
||||||
"mango-account-lookup-desc": "Enter a Mango account address to show account details",
|
"mango-account-lookup-desc": "Enter a Mango account address to show account details",
|
||||||
"mango-account-lookup-title": "View a Mango Account",
|
"mango-account-lookup-title": "View a Mango Account",
|
||||||
"mango-accounts": "Mango Accounts",
|
"mango-accounts": "Mango Accounts",
|
||||||
"mango-account-lookup-desc": "Enter a Mango account address to show account details",
|
|
||||||
"mango-account-lookup-title": "View a Mango Account",
|
|
||||||
"margin": "Margin",
|
"margin": "Margin",
|
||||||
"margin-available": "Margin Available",
|
"margin-available": "Margin Available",
|
||||||
"market": "Market",
|
"market": "Market",
|
||||||
|
@ -274,6 +270,14 @@
|
||||||
"not-enough-balance": "Insufficient wallet balance",
|
"not-enough-balance": "Insufficient wallet balance",
|
||||||
"not-enough-sol": "You may not have enough SOL for this transaction",
|
"not-enough-sol": "You may not have enough SOL for this transaction",
|
||||||
"notional-size": "Notional Size",
|
"notional-size": "Notional Size",
|
||||||
|
"number-deposit": "{{number}} Deposit",
|
||||||
|
"number-deposits": "{{number}} Deposits",
|
||||||
|
"number-liquidation": "{{number}} Liquidation",
|
||||||
|
"number-liquidations": "{{number}} Liquidations",
|
||||||
|
"number-trade": "{{number}} Trade",
|
||||||
|
"number-trades": "{{number}} Trades",
|
||||||
|
"number-withdrawal": "{{number}} Withdrawal",
|
||||||
|
"number-withdrawals": "{{number}} Withdrawals",
|
||||||
"open-interest": "Open Interest",
|
"open-interest": "Open Interest",
|
||||||
"open-orders": "Open Orders",
|
"open-orders": "Open Orders",
|
||||||
"optional": "(Optional)",
|
"optional": "(Optional)",
|
||||||
|
@ -422,6 +426,7 @@
|
||||||
"trade-history": "Trade History",
|
"trade-history": "Trade History",
|
||||||
"trades": "Trades",
|
"trades": "Trades",
|
||||||
"trades-history": "Trade History",
|
"trades-history": "Trade History",
|
||||||
|
"transaction-failed": "Transaction failed",
|
||||||
"transaction-sent": "Transaction sent",
|
"transaction-sent": "Transaction sent",
|
||||||
"trigger-price": "Trigger Price",
|
"trigger-price": "Trigger Price",
|
||||||
"try-again": "Try again",
|
"try-again": "Try again",
|
||||||
|
|
|
@ -1,5 +1,3 @@
|
||||||
|
|
||||||
|
|
||||||
{
|
{
|
||||||
"about-to-withdraw": "Estas a punto de retirar",
|
"about-to-withdraw": "Estas a punto de retirar",
|
||||||
"above": "Encima",
|
"above": "Encima",
|
||||||
|
@ -142,11 +140,11 @@
|
||||||
"favorite": "Favorito",
|
"favorite": "Favorito",
|
||||||
"favorites": "Favoritos",
|
"favorites": "Favoritos",
|
||||||
"fee": "Tarifa",
|
"fee": "Tarifa",
|
||||||
"fees": "Fees",
|
|
||||||
"fee-discount": "Comisiones",
|
"fee-discount": "Comisiones",
|
||||||
|
"fees": "Fees",
|
||||||
"filter": "Filter",
|
"filter": "Filter",
|
||||||
"filters-selected": "{{selectedFilters}} selected",
|
|
||||||
"filter-trade-history": "Filter Trade History",
|
"filter-trade-history": "Filter Trade History",
|
||||||
|
"filters-selected": "{{selectedFilters}} selected",
|
||||||
"first-deposit-desc": "Necesita 0.035 SOL para crear una cuenta de mango.",
|
"first-deposit-desc": "Necesita 0.035 SOL para crear una cuenta de mango.",
|
||||||
"from": "From",
|
"from": "From",
|
||||||
"funding": "Fondos",
|
"funding": "Fondos",
|
||||||
|
@ -272,6 +270,14 @@
|
||||||
"not-enough-balance": "Saldo de billetera insuficiente",
|
"not-enough-balance": "Saldo de billetera insuficiente",
|
||||||
"not-enough-sol": "Es posible que no tenga suficiente SOL para esta transacción",
|
"not-enough-sol": "Es posible que no tenga suficiente SOL para esta transacción",
|
||||||
"notional-size": "Tamaño nocional",
|
"notional-size": "Tamaño nocional",
|
||||||
|
"number-deposit": "{{number}} Deposit",
|
||||||
|
"number-deposits": "{{number}} Deposits",
|
||||||
|
"number-liquidation": "{{number}} Liquidation",
|
||||||
|
"number-liquidations": "{{number}} Liquidations",
|
||||||
|
"number-trade": "{{number}} Trade",
|
||||||
|
"number-trades": "{{number}} Trades",
|
||||||
|
"number-withdrawal": "{{number}} Withdrawal",
|
||||||
|
"number-withdrawals": "{{number}} Withdrawals",
|
||||||
"open-interest": "Interés abierto",
|
"open-interest": "Interés abierto",
|
||||||
"open-orders": "Órdenes abiertas",
|
"open-orders": "Órdenes abiertas",
|
||||||
"optional": "(Opcional)",
|
"optional": "(Opcional)",
|
||||||
|
@ -415,10 +421,11 @@
|
||||||
"total-srm": "SRM total en mango",
|
"total-srm": "SRM total en mango",
|
||||||
"totals": "Totales",
|
"totals": "Totales",
|
||||||
"trade": "Comercio",
|
"trade": "Comercio",
|
||||||
|
"trade-export-disclaimer": "Due to the nature of how trades are processed, it is not possible to guarantee that all trades will be exported. However, a best effort approach has been taken, combining several independent sources to reduce the likelihood of missing trades.",
|
||||||
"trade-history": "Historial comercial",
|
"trade-history": "Historial comercial",
|
||||||
"trades": "Trades",
|
"trades": "Trades",
|
||||||
"trade-export-disclaimer": "Due to the nature of how trades are processed, it is not possible to guarantee that all trades will be exported. However, a best effort approach has been taken, combining several independent sources to reduce the likelihood of missing trades.",
|
|
||||||
"trades-history": "Historial comercial",
|
"trades-history": "Historial comercial",
|
||||||
|
"transaction-failed": "Transaction failed",
|
||||||
"transaction-sent": "Transacción enviada",
|
"transaction-sent": "Transacción enviada",
|
||||||
"trigger-price": "Precio de activación",
|
"trigger-price": "Precio de activación",
|
||||||
"try-again": "Inténtalo de nuevo",
|
"try-again": "Inténtalo de nuevo",
|
||||||
|
|
|
@ -136,22 +136,22 @@
|
||||||
"export-data-empty": "无资料可导出",
|
"export-data-empty": "无资料可导出",
|
||||||
"export-data-success": "CSV导出成功",
|
"export-data-success": "CSV导出成功",
|
||||||
"export-pnl-csv": "导出盈亏CSV",
|
"export-pnl-csv": "导出盈亏CSV",
|
||||||
"export-trades-csv": "Export Trades CSV",
|
"export-trades-csv": "导出交易CSV",
|
||||||
"favorite": "喜爱",
|
"favorite": "喜爱",
|
||||||
"favorites": "喜爱",
|
"favorites": "喜爱",
|
||||||
"fee": "费率",
|
"fee": "费率",
|
||||||
"fees": "费用",
|
|
||||||
"fee-discount": "费率折扣",
|
"fee-discount": "费率折扣",
|
||||||
"filter": "Filter",
|
"fees": "费用",
|
||||||
"filters-selected": "{{selectedFilters}} selected",
|
"filter": "过滤",
|
||||||
"filter-trade-history": "Filter Trade History",
|
"filter-trade-history": "过滤交易历史",
|
||||||
|
"filters-selected": "{{selectedFilters}}个项目",
|
||||||
"first-deposit-desc": "创建Mango帐户最少需要0.035 SOL。",
|
"first-deposit-desc": "创建Mango帐户最少需要0.035 SOL。",
|
||||||
"from": "From",
|
"from": "从",
|
||||||
"funding": "资金费",
|
"funding": "资金费",
|
||||||
"funding-chart-title": "资金费 – 前30天(图表有点延迟)",
|
"funding-chart-title": "资金费 – 前30天(图表有点延迟)",
|
||||||
"futures": "永续合约",
|
"futures": "永续合约",
|
||||||
"get-started": "开始",
|
"get-started": "开始",
|
||||||
"governance": "Governance",
|
"governance": "治理",
|
||||||
"health": "健康度",
|
"health": "健康度",
|
||||||
"health-check": "帐户健康检查",
|
"health-check": "帐户健康检查",
|
||||||
"health-ratio": "健康比率",
|
"health-ratio": "健康比率",
|
||||||
|
@ -186,7 +186,7 @@
|
||||||
"intro-feature-4": "为了把握其他DeFi操作机会而将您的资产质押借贷",
|
"intro-feature-4": "为了把握其他DeFi操作机会而将您的资产质押借贷",
|
||||||
"invalid-address": "您输入的地址有问题",
|
"invalid-address": "您输入的地址有问题",
|
||||||
"ioc": "IOC",
|
"ioc": "IOC",
|
||||||
"language": "Language",
|
"language": "语言",
|
||||||
"languages-tip-desc": "在这里可选介面语言。更多选择将来...",
|
"languages-tip-desc": "在这里可选介面语言。更多选择将来...",
|
||||||
"languages-tip-title": "您会多种语言吗?",
|
"languages-tip-title": "您会多种语言吗?",
|
||||||
"layout-tip-desc": "解锁并根据您的喜好重新排列和调整交易面板的大小。",
|
"layout-tip-desc": "解锁并根据您的喜好重新排列和调整交易面板的大小。",
|
||||||
|
@ -263,13 +263,21 @@
|
||||||
"no-markets": "无市场",
|
"no-markets": "无市场",
|
||||||
"no-orders": "您没有订单",
|
"no-orders": "您没有订单",
|
||||||
"no-perp": "您没有永续合约持仓",
|
"no-perp": "您没有永续合约持仓",
|
||||||
"no-trades-found": "No trades found...",
|
"no-trades-found": "没找到交易历史...",
|
||||||
"no-unsettled": "您没有未结清金额",
|
"no-unsettled": "您没有未结清金额",
|
||||||
"no-wallet": "没有钱包地址",
|
"no-wallet": "没有钱包地址",
|
||||||
"node-url": "RPC终点URL",
|
"node-url": "RPC终点URL",
|
||||||
"not-enough-balance": "钱包余额不够",
|
"not-enough-balance": "钱包余额不够",
|
||||||
"not-enough-sol": "SOL余额也许不够下此订单",
|
"not-enough-sol": "SOL余额也许不够下此订单",
|
||||||
"notional-size": "合约面值",
|
"notional-size": "合约面值",
|
||||||
|
"number-deposit": "{{number}}个存款",
|
||||||
|
"number-deposits": "{{number}}个存款",
|
||||||
|
"number-liquidation": "{{number}}个清算",
|
||||||
|
"number-liquidations": "{{number}}个清算",
|
||||||
|
"number-trade": "{{number}}个交易",
|
||||||
|
"number-trades": "{{number}}个交易",
|
||||||
|
"number-withdrawal": "{{number}}个取款",
|
||||||
|
"number-withdrawals": "{{number}}个取款",
|
||||||
"open-interest": "持仓量",
|
"open-interest": "持仓量",
|
||||||
"open-orders": "订单",
|
"open-orders": "订单",
|
||||||
"optional": "(可选)",
|
"optional": "(可选)",
|
||||||
|
@ -278,7 +286,7 @@
|
||||||
"orderbook": "订单簿",
|
"orderbook": "订单簿",
|
||||||
"orderbook-animation": "订单动画",
|
"orderbook-animation": "订单动画",
|
||||||
"orders": "订单",
|
"orders": "订单",
|
||||||
"other": "Other",
|
"other": "其他",
|
||||||
"performance": "表现",
|
"performance": "表现",
|
||||||
"performance-insights": "表现分析",
|
"performance-insights": "表现分析",
|
||||||
"period-progress": "期间进度",
|
"period-progress": "期间进度",
|
||||||
|
@ -327,7 +335,7 @@
|
||||||
"repay-partial": "归还{{percentage}}%借贷",
|
"repay-partial": "归还{{percentage}}%借贷",
|
||||||
"reposition": "推动以重新定位",
|
"reposition": "推动以重新定位",
|
||||||
"reset": "重置",
|
"reset": "重置",
|
||||||
"reset-filters": "Reset Filters",
|
"reset-filters": "重置过滤",
|
||||||
"rolling-change": "24小时变动",
|
"rolling-change": "24小时变动",
|
||||||
"rpc-endpoint": "RPC终点",
|
"rpc-endpoint": "RPC终点",
|
||||||
"save": "保存",
|
"save": "保存",
|
||||||
|
@ -370,12 +378,12 @@
|
||||||
"taker": "吃单者",
|
"taker": "吃单者",
|
||||||
"taker-fee": "吃单费率",
|
"taker-fee": "吃单费率",
|
||||||
"target-period-length": "目标期间长度",
|
"target-period-length": "目标期间长度",
|
||||||
"theme": "Theme",
|
"theme": "模式",
|
||||||
"themes-tip-desc": "Mango,黑暗或明亮(看您偏向)。",
|
"themes-tip-desc": "Mango,黑暗或明亮(看您偏向)。",
|
||||||
"themes-tip-title": "颜色模式",
|
"themes-tip-title": "颜色模式",
|
||||||
"time": "时间",
|
"time": "时间",
|
||||||
"timeframe-desc": "前{{timeframe}}",
|
"timeframe-desc": "前{{timeframe}}",
|
||||||
"to": "To",
|
"to": "到",
|
||||||
"token": "币种",
|
"token": "币种",
|
||||||
"too-large": "数量太大",
|
"too-large": "数量太大",
|
||||||
"tooltip-account-liquidated": "若帐户健康度降到0%您的帐户会被清算直到初始健康度达到0以上了。",
|
"tooltip-account-liquidated": "若帐户健康度降到0%您的帐户会被清算直到初始健康度达到0以上了。",
|
||||||
|
@ -413,10 +421,11 @@
|
||||||
"total-srm": "在Mango裡的SRM总量",
|
"total-srm": "在Mango裡的SRM总量",
|
||||||
"totals": "总量",
|
"totals": "总量",
|
||||||
"trade": "交易",
|
"trade": "交易",
|
||||||
"trade-history": "交易纪录",
|
|
||||||
"trades": "成交",
|
|
||||||
"trade-export-disclaimer": "Mango尽量以几个独立的来源结合成完整交易历史,但由于交易处理方式,Mango无法保证所有交易都会导出。",
|
"trade-export-disclaimer": "Mango尽量以几个独立的来源结合成完整交易历史,但由于交易处理方式,Mango无法保证所有交易都会导出。",
|
||||||
|
"trade-history": "交易纪录",
|
||||||
|
"trades": "交易",
|
||||||
"trades-history": "交易纪录",
|
"trades-history": "交易纪录",
|
||||||
|
"transaction-failed": "交易失败",
|
||||||
"transaction-sent": "已下订单",
|
"transaction-sent": "已下订单",
|
||||||
"trigger-price": "触发价格",
|
"trigger-price": "触发价格",
|
||||||
"try-again": "请再试一次",
|
"try-again": "请再试一次",
|
||||||
|
@ -426,7 +435,7 @@
|
||||||
"unsettled-balance": "未实现盈亏",
|
"unsettled-balance": "未实现盈亏",
|
||||||
"unsettled-balances": "未结清余额",
|
"unsettled-balances": "未结清余额",
|
||||||
"unsettled-positions": "未结清持仓",
|
"unsettled-positions": "未结清持仓",
|
||||||
"update-filters": "Update Filters",
|
"update-filters": "更新过滤",
|
||||||
"use-explorer-one": "使用",
|
"use-explorer-one": "使用",
|
||||||
"use-explorer-three": "来验证延迟的交易",
|
"use-explorer-three": "来验证延迟的交易",
|
||||||
"use-explorer-two": "浏览器",
|
"use-explorer-two": "浏览器",
|
||||||
|
|
|
@ -136,22 +136,22 @@
|
||||||
"export-data-empty": "無資料可導出",
|
"export-data-empty": "無資料可導出",
|
||||||
"export-data-success": "CSV導出成功",
|
"export-data-success": "CSV導出成功",
|
||||||
"export-pnl-csv": "導出盈虧CSV",
|
"export-pnl-csv": "導出盈虧CSV",
|
||||||
"export-trades-csv": "Export Trades CSV",
|
"export-trades-csv": "導出交易CSV",
|
||||||
"favorite": "喜愛",
|
"favorite": "喜愛",
|
||||||
"favorites": "喜愛",
|
"favorites": "喜愛",
|
||||||
"fee": "費率",
|
"fee": "費率",
|
||||||
"fees": "費用",
|
|
||||||
"fee-discount": "費率折扣",
|
"fee-discount": "費率折扣",
|
||||||
"filter": "Filter",
|
"fees": "費用",
|
||||||
"filters-selected": "{{selectedFilters}} selected",
|
"filter": "過濾",
|
||||||
"filter-trade-history": "Filter Trade History",
|
"filter-trade-history": "過濾交易歷史",
|
||||||
|
"filters-selected": "{{selectedFilters}}個項目",
|
||||||
"first-deposit-desc": "創建Mango帳戶最少需要0.035 SOL。",
|
"first-deposit-desc": "創建Mango帳戶最少需要0.035 SOL。",
|
||||||
"from": "From",
|
"from": "從",
|
||||||
"funding": "資金費",
|
"funding": "資金費",
|
||||||
"funding-chart-title": "資金費 – 前30天(圖表有點延遲)",
|
"funding-chart-title": "資金費 – 前30天(圖表有點延遲)",
|
||||||
"futures": "永續合約",
|
"futures": "永續合約",
|
||||||
"get-started": "開始",
|
"get-started": "開始",
|
||||||
"governance": "Governance",
|
"governance": "治理",
|
||||||
"health": "健康度",
|
"health": "健康度",
|
||||||
"health-check": "帳戶健康檢查",
|
"health-check": "帳戶健康檢查",
|
||||||
"health-ratio": "健康比率",
|
"health-ratio": "健康比率",
|
||||||
|
@ -186,7 +186,7 @@
|
||||||
"intro-feature-4": "為了把握其他DeFi操作機會而將您的資產質押借貸",
|
"intro-feature-4": "為了把握其他DeFi操作機會而將您的資產質押借貸",
|
||||||
"invalid-address": "您輸入的地址有問題",
|
"invalid-address": "您輸入的地址有問題",
|
||||||
"ioc": "IOC",
|
"ioc": "IOC",
|
||||||
"language": "Language",
|
"language": "語言",
|
||||||
"languages-tip-desc": "在這裡可選介面語言。更多選擇將來...",
|
"languages-tip-desc": "在這裡可選介面語言。更多選擇將來...",
|
||||||
"languages-tip-title": "您會多種語言嗎?",
|
"languages-tip-title": "您會多種語言嗎?",
|
||||||
"layout-tip-desc": "解锁並根据您的喜好重新排列和调整交易面板的大小。",
|
"layout-tip-desc": "解锁並根据您的喜好重新排列和调整交易面板的大小。",
|
||||||
|
@ -263,13 +263,21 @@
|
||||||
"no-markets": "無市場",
|
"no-markets": "無市場",
|
||||||
"no-orders": "您沒有訂單",
|
"no-orders": "您沒有訂單",
|
||||||
"no-perp": "您沒有永續合約持倉",
|
"no-perp": "您沒有永續合約持倉",
|
||||||
"no-trades-found": "No trades found...",
|
"no-trades-found": "沒找到交易歷史...",
|
||||||
"no-unsettled": "您沒有未結清金額",
|
"no-unsettled": "您沒有未結清金額",
|
||||||
"no-wallet": "沒有錢包地址",
|
"no-wallet": "沒有錢包地址",
|
||||||
"node-url": "RPC終點URL",
|
"node-url": "RPC終點URL",
|
||||||
"not-enough-balance": "錢包餘額不夠",
|
"not-enough-balance": "錢包餘額不夠",
|
||||||
"not-enough-sol": "SOL餘額也許不夠下此訂單",
|
"not-enough-sol": "SOL餘額也許不夠下此訂單",
|
||||||
"notional-size": "合約面值",
|
"notional-size": "合約面值",
|
||||||
|
"number-deposit": "{{number}}個存款",
|
||||||
|
"number-deposits": "{{number}}個存款",
|
||||||
|
"number-liquidation": "{{number}}個清算",
|
||||||
|
"number-liquidations": "{{number}}個清算",
|
||||||
|
"number-trade": "{{number}}個交易",
|
||||||
|
"number-trades": "{{number}}個交易",
|
||||||
|
"number-withdrawal": "{{number}}個取款",
|
||||||
|
"number-withdrawals": "{{number}}個取款",
|
||||||
"open-interest": "持倉量",
|
"open-interest": "持倉量",
|
||||||
"open-orders": "訂單",
|
"open-orders": "訂單",
|
||||||
"optional": "(可選)",
|
"optional": "(可選)",
|
||||||
|
@ -278,7 +286,7 @@
|
||||||
"orderbook": "掛單簿",
|
"orderbook": "掛單簿",
|
||||||
"orderbook-animation": "訂單動畫",
|
"orderbook-animation": "訂單動畫",
|
||||||
"orders": "訂單",
|
"orders": "訂單",
|
||||||
"other": "Other",
|
"other": "其他",
|
||||||
"performance": "表現",
|
"performance": "表現",
|
||||||
"performance-insights": "表現分析",
|
"performance-insights": "表現分析",
|
||||||
"period-progress": "期間進度",
|
"period-progress": "期間進度",
|
||||||
|
@ -327,7 +335,7 @@
|
||||||
"repay-partial": "歸還{{percentage}}%借貸",
|
"repay-partial": "歸還{{percentage}}%借貸",
|
||||||
"reposition": "推動以重新定位",
|
"reposition": "推動以重新定位",
|
||||||
"reset": "重置",
|
"reset": "重置",
|
||||||
"reset-filters": "Reset Filters",
|
"reset-filters": "重置過濾",
|
||||||
"rolling-change": "24小時變動",
|
"rolling-change": "24小時變動",
|
||||||
"rpc-endpoint": "RPC終點",
|
"rpc-endpoint": "RPC終點",
|
||||||
"save": "保存",
|
"save": "保存",
|
||||||
|
@ -370,12 +378,12 @@
|
||||||
"taker": "吃單者",
|
"taker": "吃單者",
|
||||||
"taker-fee": "吃單費率",
|
"taker-fee": "吃單費率",
|
||||||
"target-period-length": "目標期間長度",
|
"target-period-length": "目標期間長度",
|
||||||
"theme": "Theme",
|
"theme": "模式",
|
||||||
"themes-tip-desc": "Mango,黑暗或明亮(看您偏向)。",
|
"themes-tip-desc": "Mango,黑暗或明亮(看您偏向)。",
|
||||||
"themes-tip-title": "顏色模式",
|
"themes-tip-title": "顏色模式",
|
||||||
"time": "時間",
|
"time": "時間",
|
||||||
"timeframe-desc": "前{{timeframe}}",
|
"timeframe-desc": "前{{timeframe}}",
|
||||||
"to": "To",
|
"to": "到",
|
||||||
"token": "幣種",
|
"token": "幣種",
|
||||||
"too-large": "數量太大",
|
"too-large": "數量太大",
|
||||||
"tooltip-account-liquidated": "若帳戶健康度降到0%您的帳戶會被清算直到初始健康度達到0以上了。",
|
"tooltip-account-liquidated": "若帳戶健康度降到0%您的帳戶會被清算直到初始健康度達到0以上了。",
|
||||||
|
@ -413,10 +421,11 @@
|
||||||
"total-srm": "在Mango裡的SRM總量",
|
"total-srm": "在Mango裡的SRM總量",
|
||||||
"totals": "總量",
|
"totals": "總量",
|
||||||
"trade": "交易",
|
"trade": "交易",
|
||||||
"trade-history": "交易紀錄",
|
|
||||||
"trades": "成交",
|
|
||||||
"trade-export-disclaimer": "Mango儘量以幾個獨立的來源結合成完整交易歷史,但由於交易處理方式,Mango無法保證所有交易都會導出。",
|
"trade-export-disclaimer": "Mango儘量以幾個獨立的來源結合成完整交易歷史,但由於交易處理方式,Mango無法保證所有交易都會導出。",
|
||||||
|
"trade-history": "交易紀錄",
|
||||||
|
"trades": "交易",
|
||||||
"trades-history": "交易紀錄",
|
"trades-history": "交易紀錄",
|
||||||
|
"transaction-failed": "交易失敗",
|
||||||
"transaction-sent": "已下訂單",
|
"transaction-sent": "已下訂單",
|
||||||
"trigger-price": "觸發價格",
|
"trigger-price": "觸發價格",
|
||||||
"try-again": "請再試一次",
|
"try-again": "請再試一次",
|
||||||
|
@ -426,7 +435,7 @@
|
||||||
"unsettled-balance": "未實現盈虧",
|
"unsettled-balance": "未實現盈虧",
|
||||||
"unsettled-balances": "未結清餘額",
|
"unsettled-balances": "未結清餘額",
|
||||||
"unsettled-positions": "未結清持倉",
|
"unsettled-positions": "未結清持倉",
|
||||||
"update-filters": "Update Filters",
|
"update-filters": "更新過濾",
|
||||||
"use-explorer-one": "使用",
|
"use-explorer-one": "使用",
|
||||||
"use-explorer-three": "來驗證延遲的交易",
|
"use-explorer-three": "來驗證延遲的交易",
|
||||||
"use-explorer-two": "瀏覽器",
|
"use-explorer-two": "瀏覽器",
|
||||||
|
|
Loading…
Reference in New Issue