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,461 +1,466 @@
|
||||||
|
|
||||||
|
|
||||||
{
|
{
|
||||||
"about-to-withdraw": "You're about to withdraw",
|
"about-to-withdraw": "You're about to withdraw",
|
||||||
"above": "Above",
|
"above": "Above",
|
||||||
"accept": "Accept",
|
"accept": "Accept",
|
||||||
"accept-terms": "I understand and accept the risks",
|
"accept-terms": "I understand and accept the risks",
|
||||||
"account": "Account",
|
"account": "Account",
|
||||||
"account-address-warning": "Do not send tokens directly to your account address.",
|
"account-address-warning": "Do not send tokens directly to your account address.",
|
||||||
"account-details-tip-desc": "When you make your first deposit we'll set you up with a Mango Account. You'll need at least 0.0035 SOL in your wallet to cover the rent/cost of creating the account.",
|
"account-details-tip-desc": "When you make your first deposit we'll set you up with a Mango Account. You'll need at least 0.0035 SOL in your wallet to cover the rent/cost of creating the account.",
|
||||||
"account-details-tip-title": "Account Details",
|
"account-details-tip-title": "Account Details",
|
||||||
"account-equity": "Account Equity",
|
"account-equity": "Account Equity",
|
||||||
"account-equity-chart-title": "Account Equity",
|
"account-equity-chart-title": "Account Equity",
|
||||||
"account-health": "Account Health",
|
"account-health": "Account Health",
|
||||||
"account-health-tip-desc": "To avoid liquidation you must keep your account health above 0%. To increase the health of your account, reduce borrows or deposit funds.",
|
"account-health-tip-desc": "To avoid liquidation you must keep your account health above 0%. To increase the health of your account, reduce borrows or deposit funds.",
|
||||||
"account-health-tip-title": "Account Health",
|
"account-health-tip-title": "Account Health",
|
||||||
"account-name": "Account Name",
|
"account-name": "Account Name",
|
||||||
"account-performance": "Account Performance",
|
"account-performance": "Account Performance",
|
||||||
"account-pnl": "Account PnL",
|
"account-pnl": "Account PnL",
|
||||||
"account-pnl-chart-title": "Account PnL",
|
"account-pnl-chart-title": "Account PnL",
|
||||||
"account-risk": "Account Risk",
|
"account-risk": "Account Risk",
|
||||||
"account-value": "Account Value",
|
"account-value": "Account Value",
|
||||||
"accounts": "Accounts",
|
"accounts": "Accounts",
|
||||||
"add-more-sol": "Add more SOL to your wallet to avoid failed transactions.",
|
"add-more-sol": "Add more SOL to your wallet to avoid failed transactions.",
|
||||||
"add-name": "Add Name",
|
"add-name": "Add Name",
|
||||||
"alerts": "Alerts",
|
"alerts": "Alerts",
|
||||||
"all-assets": "All Assets",
|
"all-assets": "All Assets",
|
||||||
"all-time": "All Time",
|
"all-time": "All Time",
|
||||||
"amount": "Amount",
|
"amount": "Amount",
|
||||||
"approximate-time": "Time",
|
"approximate-time": "Time",
|
||||||
"asset": "Asset",
|
"asset": "Asset",
|
||||||
"assets": "Assets",
|
"assets": "Assets",
|
||||||
"assets-liabilities": "Assets & Liabilities",
|
"assets-liabilities": "Assets & Liabilities",
|
||||||
"available-balance": "Available Balance",
|
"available-balance": "Available Balance",
|
||||||
"average-borrow": "Average Borrow Rates",
|
"average-borrow": "Average Borrow Rates",
|
||||||
"average-deposit": "Average Deposit Rates",
|
"average-deposit": "Average Deposit Rates",
|
||||||
"average-entry": "Avg Entry Price",
|
"average-entry": "Avg Entry Price",
|
||||||
"average-funding": "1h Funding Rate",
|
"average-funding": "1h Funding Rate",
|
||||||
"back": "Back",
|
"back": "Back",
|
||||||
"balance": "Balance",
|
"balance": "Balance",
|
||||||
"balances": "Balances",
|
"balances": "Balances",
|
||||||
"being-liquidated": "You are being liquidated!",
|
"being-liquidated": "You are being liquidated!",
|
||||||
"below": "Below",
|
"below": "Below",
|
||||||
"borrow": "Borrow",
|
"borrow": "Borrow",
|
||||||
"borrow-funds": "Borrow Funds",
|
"borrow-funds": "Borrow Funds",
|
||||||
"borrow-interest": "Borrow Interest",
|
"borrow-interest": "Borrow Interest",
|
||||||
"borrow-notification": "Borrowed funds are withdrawn to your connected wallet.",
|
"borrow-notification": "Borrowed funds are withdrawn to your connected wallet.",
|
||||||
"borrow-rate": "Borrow Rate",
|
"borrow-rate": "Borrow Rate",
|
||||||
"borrow-value": "Borrow Value",
|
"borrow-value": "Borrow Value",
|
||||||
"borrow-withdraw": "Borrow and Withdraw",
|
"borrow-withdraw": "Borrow and Withdraw",
|
||||||
"borrows": "Borrows",
|
"borrows": "Borrows",
|
||||||
"break-even": "Break-even Price",
|
"break-even": "Break-even Price",
|
||||||
"buy": "Buy",
|
"buy": "Buy",
|
||||||
"calculator": "Calculator",
|
"calculator": "Calculator",
|
||||||
"cancel": "Cancel",
|
"cancel": "Cancel",
|
||||||
"cancel-error": "Error cancelling order",
|
"cancel-error": "Error cancelling order",
|
||||||
"cancel-success": "Successfully cancelled order",
|
"cancel-success": "Successfully cancelled order",
|
||||||
"change-account": "Change Account",
|
"change-account": "Change Account",
|
||||||
"change-language": "Change Language",
|
"change-language": "Change Language",
|
||||||
"change-theme": "Change Theme",
|
"change-theme": "Change Theme",
|
||||||
"character-limit": "Account name must be 32 characters or less",
|
"character-limit": "Account name must be 32 characters or less",
|
||||||
"chinese": "简体中文",
|
"chinese": "简体中文",
|
||||||
"chinese-traditional": "繁體中文",
|
"chinese-traditional": "繁體中文",
|
||||||
"claim": "Claim",
|
"claim": "Claim",
|
||||||
"claim-reward": "Claim Reward",
|
"claim-reward": "Claim Reward",
|
||||||
"claim-x-mngo": "Claim {{amount}} MNGO",
|
"claim-x-mngo": "Claim {{amount}} MNGO",
|
||||||
"close": "Close",
|
"close": "Close",
|
||||||
"close-and-long": "Close position and open long",
|
"close-and-long": "Close position and open long",
|
||||||
"close-and-short": "Close position and open short",
|
"close-and-short": "Close position and open short",
|
||||||
"close-confirm": "Are you sure you want to market close your {{config_name}} position?",
|
"close-confirm": "Are you sure you want to market close your {{config_name}} position?",
|
||||||
"close-open-long": "100% close position and open {{size}} {{symbol}} long",
|
"close-open-long": "100% close position and open {{size}} {{symbol}} long",
|
||||||
"close-open-short": "100% close position and open {{size}} {{symbol}} short",
|
"close-open-short": "100% close position and open {{size}} {{symbol}} short",
|
||||||
"close-position": "Close Position",
|
"close-position": "Close Position",
|
||||||
"collateral-available": "Collateral Available",
|
"collateral-available": "Collateral Available",
|
||||||
"collateral-available-tip-desc": "The collateral value that can be used to take on leverage. Assets carry different collateral weights depending on the risk they present to the platform.",
|
"collateral-available-tip-desc": "The collateral value that can be used to take on leverage. Assets carry different collateral weights depending on the risk they present to the platform.",
|
||||||
"collateral-available-tip-title": "Collateral Available",
|
"collateral-available-tip-title": "Collateral Available",
|
||||||
"condition": "Condition",
|
"condition": "Condition",
|
||||||
"confirm": "Confirm",
|
"confirm": "Confirm",
|
||||||
"confirm-deposit": "Confirm Deposit",
|
"confirm-deposit": "Confirm Deposit",
|
||||||
"confirm-withdraw": "Confirm Withdraw",
|
"confirm-withdraw": "Confirm Withdraw",
|
||||||
"confirming-transaction": "Confirming Transaction",
|
"confirming-transaction": "Confirming Transaction",
|
||||||
"connect": "Connect",
|
"connect": "Connect",
|
||||||
"connect-view": "Connect a wallet to view your account",
|
"connect-view": "Connect a wallet to view your account",
|
||||||
"connect-wallet": "Connect Wallet",
|
"connect-wallet": "Connect Wallet",
|
||||||
"connect-wallet-tip-desc": "We'll show you around...",
|
"connect-wallet-tip-desc": "We'll show you around...",
|
||||||
"connect-wallet-tip-title": "Connect your wallet",
|
"connect-wallet-tip-title": "Connect your wallet",
|
||||||
"connected-to": "Connected to wallet ",
|
"connected-to": "Connected to wallet ",
|
||||||
"copy-address": "Copy address",
|
"copy-address": "Copy address",
|
||||||
"country-not-allowed": "Country Not Allowed",
|
"country-not-allowed": "Country Not Allowed",
|
||||||
"country-not-allowed-tooltip": "You are using an open-source frontend facilitated by the Mango DAO. As such, it restricts access to certain regions out of an abundance of caution, due to regulatory uncertainty.",
|
"country-not-allowed-tooltip": "You are using an open-source frontend facilitated by the Mango DAO. As such, it restricts access to certain regions out of an abundance of caution, due to regulatory uncertainty.",
|
||||||
"create-account": "Create Account",
|
"create-account": "Create Account",
|
||||||
"current-stats": "Current Stats",
|
"current-stats": "Current Stats",
|
||||||
"custom": "Custom",
|
"custom": "Custom",
|
||||||
"daily-change": "Daily Change",
|
"daily-change": "Daily Change",
|
||||||
"daily-high": "24hr High",
|
"daily-high": "24hr High",
|
||||||
"daily-low": "24hr Low",
|
"daily-low": "24hr Low",
|
||||||
"daily-range": "Daily Range",
|
"daily-range": "Daily Range",
|
||||||
"daily-volume": "24hr Volume",
|
"daily-volume": "24hr Volume",
|
||||||
"dark": "Dark",
|
"dark": "Dark",
|
||||||
"data-refresh-tip-desc": "Data is refreshed automatically but you can manually refresh it here.",
|
"data-refresh-tip-desc": "Data is refreshed automatically but you can manually refresh it here.",
|
||||||
"data-refresh-tip-title": "Manual Data Refresh",
|
"data-refresh-tip-title": "Manual Data Refresh",
|
||||||
"date": "Date",
|
"date": "Date",
|
||||||
"default-market": "Default Market",
|
"default-market": "Default Market",
|
||||||
"default-spot-margin": "Trade with margin by default",
|
"default-spot-margin": "Trade with margin by default",
|
||||||
"degraded-performance": "Solana network is experiencing degraded performance. Transactions may fail to send or confirm. (TPS: {{tps}})",
|
"degraded-performance": "Solana network is experiencing degraded performance. Transactions may fail to send or confirm. (TPS: {{tps}})",
|
||||||
"delay-displaying-recent": "There may be a delay in displaying the latest activity.",
|
"delay-displaying-recent": "There may be a delay in displaying the latest activity.",
|
||||||
"delayed-info": "Data updates hourly",
|
"delayed-info": "Data updates hourly",
|
||||||
"deposit": "Deposit",
|
"deposit": "Deposit",
|
||||||
"deposit-before": "You need more {{tokenSymbol}} in your wallet to fully repay your borrow",
|
"deposit-before": "You need more {{tokenSymbol}} in your wallet to fully repay your borrow",
|
||||||
"deposit-failed": "Deposit failed",
|
"deposit-failed": "Deposit failed",
|
||||||
"deposit-funds": "Deposit Funds",
|
"deposit-funds": "Deposit Funds",
|
||||||
"deposit-help": "Add {{tokenSymbol}} to your wallet and fund it with {{tokenSymbol}} to deposit.",
|
"deposit-help": "Add {{tokenSymbol}} to your wallet and fund it with {{tokenSymbol}} to deposit.",
|
||||||
"deposit-history": "Deposit History",
|
"deposit-history": "Deposit History",
|
||||||
"deposit-interest": "Deposit Interest",
|
"deposit-interest": "Deposit Interest",
|
||||||
"deposit-rate": "Deposit Rate",
|
"deposit-rate": "Deposit Rate",
|
||||||
"deposit-successful": "Deposit successful",
|
"deposit-successful": "Deposit successful",
|
||||||
"deposit-to-get-started": "Deposit funds to get started",
|
"deposit-to-get-started": "Deposit funds to get started",
|
||||||
"deposit-value": "Deposit Value",
|
"deposit-value": "Deposit Value",
|
||||||
"depositing": "You're about to deposit",
|
"depositing": "You're about to deposit",
|
||||||
"deposits": "Deposits",
|
"deposits": "Deposits",
|
||||||
"depth-rewarded": "Depth Rewarded",
|
"depth-rewarded": "Depth Rewarded",
|
||||||
"details": "Details",
|
"details": "Details",
|
||||||
"disconnect": "Disconnect",
|
"disconnect": "Disconnect",
|
||||||
"done": "Done",
|
"done": "Done",
|
||||||
"edit": "Edit",
|
"edit": "Edit",
|
||||||
"edit-name": "Edit Name",
|
"edit-name": "Edit Name",
|
||||||
"edit-nickname": "Edit the public nickname for your account",
|
"edit-nickname": "Edit the public nickname for your account",
|
||||||
"email-address": "Email Address",
|
"email-address": "Email Address",
|
||||||
"english": "English",
|
"english": "English",
|
||||||
"enter-amount": "Enter an amount to deposit",
|
"enter-amount": "Enter an amount to deposit",
|
||||||
"enter-name": "Enter an account name",
|
"enter-name": "Enter an account name",
|
||||||
"equity": "Equity",
|
"equity": "Equity",
|
||||||
"est-period-end": "Est Period End",
|
"est-period-end": "Est Period End",
|
||||||
"est-slippage": "Est. Slippage",
|
"est-slippage": "Est. Slippage",
|
||||||
"estimated-liq-price": "Est. Liq. Price",
|
"estimated-liq-price": "Est. Liq. Price",
|
||||||
"explorer": "Explorer",
|
"explorer": "Explorer",
|
||||||
"export-data": "Export CSV",
|
"export-data": "Export CSV",
|
||||||
"export-data-empty": "No data to export",
|
"export-data-empty": "No data to export",
|
||||||
"export-data-success": "CSV exported successfully",
|
"export-data-success": "CSV exported successfully",
|
||||||
"export-pnl-csv": "Export PnL CSV",
|
"export-pnl-csv": "Export PnL CSV",
|
||||||
"export-trades-csv": "Export Trades CSV",
|
"export-trades-csv": "Export Trades CSV",
|
||||||
"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",
|
||||||
"funding-chart-title": "Funding – Last 30 days (current bar is delayed)",
|
"funding-chart-title": "Funding – Last 30 days (current bar is delayed)",
|
||||||
"futures": "Futures",
|
"futures": "Futures",
|
||||||
"get-started": "Get Started",
|
"get-started": "Get Started",
|
||||||
"governance": "Governance",
|
"governance": "Governance",
|
||||||
"health": "Health",
|
"health": "Health",
|
||||||
"health-check": "Account Health Check",
|
"health-check": "Account Health Check",
|
||||||
"health-ratio": "Health Ratio",
|
"health-ratio": "Health Ratio",
|
||||||
"hide-all": "Hide all from Nav",
|
"hide-all": "Hide all from Nav",
|
||||||
"hide-dust": "Hide dust",
|
"hide-dust": "Hide dust",
|
||||||
"high": "High",
|
"high": "High",
|
||||||
"history": "History",
|
"history": "History",
|
||||||
"history-empty": "History empty.",
|
"history-empty": "History empty.",
|
||||||
"hourly-borrow-interest": "Hourly Borrow Interest",
|
"hourly-borrow-interest": "Hourly Borrow Interest",
|
||||||
"hourly-deposit-interest": "Hourly Deposit Interest",
|
"hourly-deposit-interest": "Hourly Deposit Interest",
|
||||||
"hourly-funding": "Hourly Funding",
|
"hourly-funding": "Hourly Funding",
|
||||||
"if-referred": "{{fee}} if referred or 10k MNGO",
|
"if-referred": "{{fee}} if referred or 10k MNGO",
|
||||||
"if-referred-tooltip": "If you create your Mango Account from a referral link or have 10k MNGO in your Mango Account you get a 0.04% discount off futures fees.",
|
"if-referred-tooltip": "If you create your Mango Account from a referral link or have 10k MNGO in your Mango Account you get a 0.04% discount off futures fees.",
|
||||||
"in-orders": "In Orders",
|
"in-orders": "In Orders",
|
||||||
"include-perp": "Include Perp",
|
"include-perp": "Include Perp",
|
||||||
"include-spot": "Include Spot",
|
"include-spot": "Include Spot",
|
||||||
"includes-borrow": "Includes borrow of",
|
"includes-borrow": "Includes borrow of",
|
||||||
"init-error": "Could not perform init mango account and deposit operation",
|
"init-error": "Could not perform init mango account and deposit operation",
|
||||||
"init-health": "Init Health",
|
"init-health": "Init Health",
|
||||||
"initial-deposit": "Initial Deposit",
|
"initial-deposit": "Initial Deposit",
|
||||||
"insufficient-balance-deposit": "Insufficient balance. Reduce the amount to deposit",
|
"insufficient-balance-deposit": "Insufficient balance. Reduce the amount to deposit",
|
||||||
"insufficient-balance-withdraw": "Insufficient balance. Borrow funds to withdraw",
|
"insufficient-balance-withdraw": "Insufficient balance. Borrow funds to withdraw",
|
||||||
"insufficient-sol": "There is a one-time cost of 0.035 SOL to create a Mango Account. This covers the rent on the Solana Blockchain.",
|
"insufficient-sol": "There is a one-time cost of 0.035 SOL to create a Mango Account. This covers the rent on the Solana Blockchain.",
|
||||||
"interest": "Interest",
|
"interest": "Interest",
|
||||||
"interest-chart-title": "{{symbol}} Interest – Last 30 days (current bar is delayed)",
|
"interest-chart-title": "{{symbol}} Interest – Last 30 days (current bar is delayed)",
|
||||||
"interest-chart-value-title": "{{symbol}} Interest Value – Last 30 days (current bar is delayed)",
|
"interest-chart-value-title": "{{symbol}} Interest Value – Last 30 days (current bar is delayed)",
|
||||||
"interest-earned": "Total Interest",
|
"interest-earned": "Total Interest",
|
||||||
"interest-info": "Interest is earned continuously on all deposits.",
|
"interest-info": "Interest is earned continuously on all deposits.",
|
||||||
"intro-feature-1": "Cross‑collateralized leverage trading",
|
"intro-feature-1": "Cross‑collateralized leverage trading",
|
||||||
"intro-feature-2": "All assets count as collateral to trade or borrow",
|
"intro-feature-2": "All assets count as collateral to trade or borrow",
|
||||||
"intro-feature-3": "Deposit any asset and earn interest automatically",
|
"intro-feature-3": "Deposit any asset and earn interest automatically",
|
||||||
"intro-feature-4": "Borrow against your assets for other DeFi activities",
|
"intro-feature-4": "Borrow against your assets for other DeFi activities",
|
||||||
"invalid-address": "The address is invalid",
|
"invalid-address": "The address is invalid",
|
||||||
"ioc": "IOC",
|
"ioc": "IOC",
|
||||||
"language": "Language",
|
"language": "Language",
|
||||||
"languages-tip-desc": "Choose another language here. More coming soon...",
|
"languages-tip-desc": "Choose another language here. More coming soon...",
|
||||||
"languages-tip-title": "Multilingual?",
|
"languages-tip-title": "Multilingual?",
|
||||||
"layout-tip-desc": "Unlock to re-arrange and re-size the trading panels to your liking.",
|
"layout-tip-desc": "Unlock to re-arrange and re-size the trading panels to your liking.",
|
||||||
"layout-tip-title": "Customize Layout",
|
"layout-tip-title": "Customize Layout",
|
||||||
"learn": "Documentation",
|
"learn": "Documentation",
|
||||||
"learn-more": "Learn more",
|
"learn-more": "Learn more",
|
||||||
"lend": "Lend",
|
"lend": "Lend",
|
||||||
"lets-go": "Let's Go",
|
"lets-go": "Let's Go",
|
||||||
"leverage": "Leverage",
|
"leverage": "Leverage",
|
||||||
"leverage-too-high": "Leverage too high. Reduce the amount to withdraw",
|
"leverage-too-high": "Leverage too high. Reduce the amount to withdraw",
|
||||||
"liabilities": "Liabilities",
|
"liabilities": "Liabilities",
|
||||||
"light": "Light",
|
"light": "Light",
|
||||||
"limit": "Limit",
|
"limit": "Limit",
|
||||||
"limit-order": "Limit",
|
"limit-order": "Limit",
|
||||||
"limit-price": "Limit Price",
|
"limit-price": "Limit Price",
|
||||||
"liquidation-history": "Liquidation History",
|
"liquidation-history": "Liquidation History",
|
||||||
"liquidations": "Liquidations",
|
"liquidations": "Liquidations",
|
||||||
"liquidity": "Liquidity",
|
"liquidity": "Liquidity",
|
||||||
"liquidity-mining": "Liquidity Mining",
|
"liquidity-mining": "Liquidity Mining",
|
||||||
"long": "long",
|
"long": "long",
|
||||||
"low": "Low",
|
"low": "Low",
|
||||||
"maint-health": "Maint Health",
|
"maint-health": "Maint Health",
|
||||||
"make-trade": "Make a trade",
|
"make-trade": "Make a trade",
|
||||||
"maker": "Maker",
|
"maker": "Maker",
|
||||||
"maker-fee": "Maker Fee",
|
"maker-fee": "Maker Fee",
|
||||||
"mango": "Mango",
|
"mango": "Mango",
|
||||||
"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",
|
"margin": "Margin",
|
||||||
"mango-account-lookup-title": "View a Mango Account",
|
"margin-available": "Margin Available",
|
||||||
"margin": "Margin",
|
"market": "Market",
|
||||||
"margin-available": "Margin Available",
|
"market-close": "Market Close",
|
||||||
"market": "Market",
|
"market-data": "Market Data",
|
||||||
"market-close": "Market Close",
|
"market-details": "Market Details",
|
||||||
"market-data": "Market Data",
|
"market-order": "Market",
|
||||||
"market-details": "Market Details",
|
"markets": "Markets",
|
||||||
"market-order": "Market",
|
"max": "Max",
|
||||||
"markets": "Markets",
|
"max-borrow": "Max Borrow Amount",
|
||||||
"max": "Max",
|
"max-depth-bps": "Max Depth Bps",
|
||||||
"max-borrow": "Max Borrow Amount",
|
"max-slippage": "Max Slippage",
|
||||||
"max-depth-bps": "Max Depth Bps",
|
"max-with-borrow": "Max With Borrow",
|
||||||
"max-slippage": "Max Slippage",
|
"minutes": "mins",
|
||||||
"max-with-borrow": "Max With Borrow",
|
"missing-price": "Missing price",
|
||||||
"minutes": "mins",
|
"missing-size": "Missing size",
|
||||||
"missing-price": "Missing price",
|
"missing-trigger": "Missing trigger price",
|
||||||
"missing-size": "Missing size",
|
"mngo-left-period": "MNGO Left In Period",
|
||||||
"missing-trigger": "Missing trigger price",
|
"mngo-per-period": "MNGO Per Period",
|
||||||
"mngo-left-period": "MNGO Left In Period",
|
"mngo-rewards": "MNGO Rewards",
|
||||||
"mngo-per-period": "MNGO Per Period",
|
"moderate": "Moderate",
|
||||||
"mngo-rewards": "MNGO Rewards",
|
"more": "More",
|
||||||
"moderate": "Moderate",
|
"msrm-deposit-error": "Error depositing MSRM",
|
||||||
"more": "More",
|
"msrm-deposited": "MSRM deposit successfull",
|
||||||
"msrm-deposit-error": "Error depositing MSRM",
|
"msrm-withdraw-error": "Error withdrawing MSRM",
|
||||||
"msrm-deposited": "MSRM deposit successfull",
|
"msrm-withdrawal": "MSRM withdraw successfull",
|
||||||
"msrm-withdraw-error": "Error withdrawing MSRM",
|
"name-error": "Could not set account name",
|
||||||
"msrm-withdrawal": "MSRM withdraw successfull",
|
"name-updated": "Account name updated",
|
||||||
"name-error": "Could not set account name",
|
"name-your-account": "Name Your Account",
|
||||||
"name-updated": "Account name updated",
|
"net": "Net",
|
||||||
"name-your-account": "Name Your Account",
|
"net-balance": "Net Balance",
|
||||||
"net": "Net",
|
"net-interest-value": "Net Interest Value",
|
||||||
"net-balance": "Net Balance",
|
"net-interest-value-desc": "Calculated at the time it was earned/paid. This might be useful at tax time.",
|
||||||
"net-interest-value": "Net Interest Value",
|
"new": "New",
|
||||||
"net-interest-value-desc": "Calculated at the time it was earned/paid. This might be useful at tax time.",
|
"new-account": "New",
|
||||||
"new": "New",
|
"next": "Next",
|
||||||
"new-account": "New",
|
"no-account-found": "No Account Found",
|
||||||
"next": "Next",
|
"no-address": "No {{tokenSymbol}} wallet address found",
|
||||||
"no-account-found": "No Account Found",
|
"no-balances": "No balances",
|
||||||
"no-address": "No {{tokenSymbol}} wallet address found",
|
"no-borrows": "No borrows found.",
|
||||||
"no-balances": "No balances",
|
"no-funding": "No funding earned or paid",
|
||||||
"no-borrows": "No borrows found.",
|
"no-history": "No trade history",
|
||||||
"no-funding": "No funding earned or paid",
|
"no-interest": "No interest earned or paid",
|
||||||
"no-history": "No trade history",
|
"no-margin": "No margin accounts found",
|
||||||
"no-interest": "No interest earned or paid",
|
"no-markets": "No markets found",
|
||||||
"no-margin": "No margin accounts found",
|
"no-orders": "No open orders",
|
||||||
"no-markets": "No markets found",
|
"no-perp": "No perp positions",
|
||||||
"no-orders": "No open orders",
|
"no-trades-found": "No trades found...",
|
||||||
"no-perp": "No perp positions",
|
"no-unsettled": "There are no unsettled funds",
|
||||||
"no-trades-found": "No trades found...",
|
"no-wallet": "No wallet address",
|
||||||
"no-unsettled": "There are no unsettled funds",
|
"node-url": "RPC Node URL",
|
||||||
"no-wallet": "No wallet address",
|
"not-enough-balance": "Insufficient wallet balance",
|
||||||
"node-url": "RPC Node URL",
|
"not-enough-sol": "You may not have enough SOL for this transaction",
|
||||||
"not-enough-balance": "Insufficient wallet balance",
|
"notional-size": "Notional Size",
|
||||||
"not-enough-sol": "You may not have enough SOL for this transaction",
|
"number-deposit": "{{number}} Deposit",
|
||||||
"notional-size": "Notional Size",
|
"number-deposits": "{{number}} Deposits",
|
||||||
"open-interest": "Open Interest",
|
"number-liquidation": "{{number}} Liquidation",
|
||||||
"open-orders": "Open Orders",
|
"number-liquidations": "{{number}} Liquidations",
|
||||||
"optional": "(Optional)",
|
"number-trade": "{{number}} Trade",
|
||||||
"oracle-price": "Oracle Price",
|
"number-trades": "{{number}} Trades",
|
||||||
"order-error": "Error placing order",
|
"number-withdrawal": "{{number}} Withdrawal",
|
||||||
"orderbook": "Orderbook",
|
"number-withdrawals": "{{number}} Withdrawals",
|
||||||
"orderbook-animation": "Orderbook Animation",
|
"open-interest": "Open Interest",
|
||||||
"orders": "Orders",
|
"open-orders": "Open Orders",
|
||||||
"other": "Other",
|
"optional": "(Optional)",
|
||||||
"performance": "Performance",
|
"oracle-price": "Oracle Price",
|
||||||
"performance-insights": "Performance Insights",
|
"order-error": "Error placing order",
|
||||||
"period-progress": "Period Progress",
|
"orderbook": "Orderbook",
|
||||||
"perp": "Perp",
|
"orderbook-animation": "Orderbook Animation",
|
||||||
"perp-desc": "Perpetual swaps settled in USDC",
|
"orders": "Orders",
|
||||||
"perp-fees": "Mango Perp Fees",
|
"other": "Other",
|
||||||
"perp-positions": "Perp Positions",
|
"performance": "Performance",
|
||||||
"perp-positions-tip-desc": "Perp positions accrue Unsettled PnL as price moves. Redeeming adds or removes that amount from your USDC balance.",
|
"performance-insights": "Performance Insights",
|
||||||
"perp-positions-tip-title": "Perp Position Details",
|
"period-progress": "Period Progress",
|
||||||
"perpetual-futures": "Perpetual Futures",
|
"perp": "Perp",
|
||||||
"perps": "Perps",
|
"perp-desc": "Perpetual swaps settled in USDC",
|
||||||
"pnl": "PnL",
|
"perp-fees": "Mango Perp Fees",
|
||||||
"pnl-error": "Error redeeming",
|
"perp-positions": "Perp Positions",
|
||||||
"pnl-help": "Redeeming will update your USDC balance to reflect the redeemed PnL amount.",
|
"perp-positions-tip-desc": "Perp positions accrue Unsettled PnL as price moves. Redeeming adds or removes that amount from your USDC balance.",
|
||||||
"pnl-success": "Successfully redeemed",
|
"perp-positions-tip-title": "Perp Position Details",
|
||||||
"portfolio": "Portfolio",
|
"perpetual-futures": "Perpetual Futures",
|
||||||
"position": "Position",
|
"perps": "Perps",
|
||||||
"position-size": "Position Size",
|
"pnl": "PnL",
|
||||||
"positions": "Positions",
|
"pnl-error": "Error redeeming",
|
||||||
"post": "Post",
|
"pnl-help": "Redeeming will update your USDC balance to reflect the redeemed PnL amount.",
|
||||||
"presets": "Presets",
|
"pnl-success": "Successfully redeemed",
|
||||||
"price": "Price",
|
"portfolio": "Portfolio",
|
||||||
"price-expect": "The price you receive may be worse than you expect and full execution is not guaranteed. Max slippage is 2.5% for your safety. The part of your position with slippage beyond 2.5% will not be closed.",
|
"position": "Position",
|
||||||
"price-impact": "Est. Price Impact",
|
"position-size": "Position Size",
|
||||||
"price-unavailable": "Price not available",
|
"positions": "Positions",
|
||||||
"prices-changed": "Prices have changed and increased your leverage. Reduce the withdrawal amount.",
|
"post": "Post",
|
||||||
"profile-menu-tip-desc": "Access your Mango Accounts, copy your wallet address and disconnect here.",
|
"presets": "Presets",
|
||||||
"profile-menu-tip-title": "Profile Menu",
|
"price": "Price",
|
||||||
"profit-price": "Profit Price",
|
"price-expect": "The price you receive may be worse than you expect and full execution is not guaranteed. Max slippage is 2.5% for your safety. The part of your position with slippage beyond 2.5% will not be closed.",
|
||||||
"quantity": "Quantity",
|
"price-impact": "Est. Price Impact",
|
||||||
"rates": "Deposit/Borrow Rates",
|
"price-unavailable": "Price not available",
|
||||||
"read-more": "Read More",
|
"prices-changed": "Prices have changed and increased your leverage. Reduce the withdrawal amount.",
|
||||||
"recent": "Recent",
|
"profile-menu-tip-desc": "Access your Mango Accounts, copy your wallet address and disconnect here.",
|
||||||
"recent-trades": "Recent Trades",
|
"profile-menu-tip-title": "Profile Menu",
|
||||||
"redeem-all": "Redeem All",
|
"profit-price": "Profit Price",
|
||||||
"redeem-failure": "Error redeeming MNGO",
|
"quantity": "Quantity",
|
||||||
"redeem-pnl": "Redeem",
|
"rates": "Deposit/Borrow Rates",
|
||||||
"redeem-positive": "Redeem positive",
|
"read-more": "Read More",
|
||||||
"redeem-success": "Successfully redeemed MNGO",
|
"recent": "Recent",
|
||||||
"referrals": "Referrals",
|
"recent-trades": "Recent Trades",
|
||||||
"refresh": "Refresh",
|
"redeem-all": "Redeem All",
|
||||||
"refresh-data": "Refresh Data",
|
"redeem-failure": "Error redeeming MNGO",
|
||||||
"repay": "Repay",
|
"redeem-pnl": "Redeem",
|
||||||
"repay-and-deposit": "100% repay borrow and deposit {{amount}} {{symbol}}",
|
"redeem-positive": "Redeem positive",
|
||||||
"repay-full": "100% repay borrow",
|
"redeem-success": "Successfully redeemed MNGO",
|
||||||
"repay-partial": "Repay {{percentage}}% of borrow",
|
"referrals": "Referrals",
|
||||||
"reposition": "Drag to reposition",
|
"refresh": "Refresh",
|
||||||
"reset": "Reset",
|
"refresh-data": "Refresh Data",
|
||||||
"reset-filters": "Reset Filters",
|
"repay": "Repay",
|
||||||
"rolling-change": "24hr Change",
|
"repay-and-deposit": "100% repay borrow and deposit {{amount}} {{symbol}}",
|
||||||
"rpc-endpoint": "RPC Endpoint",
|
"repay-full": "100% repay borrow",
|
||||||
"save": "Save",
|
"repay-partial": "Repay {{percentage}}% of borrow",
|
||||||
"save-name": "Save Name",
|
"reposition": "Drag to reposition",
|
||||||
"select-account": "Select a Mango Account",
|
"reset": "Reset",
|
||||||
"select-asset": "Select an asset",
|
"reset-filters": "Reset Filters",
|
||||||
"select-margin": "Select Margin Account",
|
"rolling-change": "24hr Change",
|
||||||
"sell": "Sell",
|
"rpc-endpoint": "RPC Endpoint",
|
||||||
"serum-fees": "Serum Spot Fees",
|
"save": "Save",
|
||||||
"set-stop-loss": "Set Stop Loss",
|
"save-name": "Save Name",
|
||||||
"set-take-profit": "Set Take Profit",
|
"select-account": "Select a Mango Account",
|
||||||
"settings": "Settings",
|
"select-asset": "Select an asset",
|
||||||
"settle": "Settle",
|
"select-margin": "Select Margin Account",
|
||||||
"settle-all": "Settle All",
|
"sell": "Sell",
|
||||||
"settle-error": "Error settling funds",
|
"serum-fees": "Serum Spot Fees",
|
||||||
"settle-success": "Successfully settled funds",
|
"set-stop-loss": "Set Stop Loss",
|
||||||
"short": "short",
|
"set-take-profit": "Set Take Profit",
|
||||||
"show-all": "Show all in Nav",
|
"settings": "Settings",
|
||||||
"show-less": "Show less",
|
"settle": "Settle",
|
||||||
"show-more": "Show more",
|
"settle-all": "Settle All",
|
||||||
"show-tips": "Show Tips",
|
"settle-error": "Error settling funds",
|
||||||
"show-zero": "Show zero balances",
|
"settle-success": "Successfully settled funds",
|
||||||
"side": "Side",
|
"short": "short",
|
||||||
"size": "Size",
|
"show-all": "Show all in Nav",
|
||||||
"slippage-warning": "This order will likely have extremely large slippage! Consider using Stop Limit or Take Profit Limit order instead.",
|
"show-less": "Show less",
|
||||||
"spanish": "Español",
|
"show-more": "Show more",
|
||||||
"spot": "Spot",
|
"show-tips": "Show Tips",
|
||||||
"spot-desc": "Spot margin quoted in USDC",
|
"show-zero": "Show zero balances",
|
||||||
"spread": "Spread",
|
"side": "Side",
|
||||||
"stats": "Stats",
|
"size": "Size",
|
||||||
"stop-limit": "Stop Limit",
|
"slippage-warning": "This order will likely have extremely large slippage! Consider using Stop Limit or Take Profit Limit order instead.",
|
||||||
"stop-loss": "Stop Loss",
|
"spanish": "Español",
|
||||||
"stop-price": "Stop Price",
|
"spot": "Spot",
|
||||||
"successfully-placed": "Successfully placed order",
|
"spot-desc": "Spot margin quoted in USDC",
|
||||||
"summary": "Summary",
|
"spread": "Spread",
|
||||||
"supported-assets": "Please fund wallet with one of the supported assets.",
|
"stats": "Stats",
|
||||||
"swap": "Swap",
|
"stop-limit": "Stop Limit",
|
||||||
"take-profit": "Take Profit",
|
"stop-loss": "Stop Loss",
|
||||||
"take-profit-limit": "Take Profit Limit",
|
"stop-price": "Stop Price",
|
||||||
"taker": "Taker",
|
"successfully-placed": "Successfully placed order",
|
||||||
"taker-fee": "Taker Fee",
|
"summary": "Summary",
|
||||||
"target-period-length": "Target Period Length",
|
"supported-assets": "Please fund wallet with one of the supported assets.",
|
||||||
"theme": "Theme",
|
"swap": "Swap",
|
||||||
"themes-tip-desc": "Mango, Dark or Light (if you're that way inclined).",
|
"take-profit": "Take Profit",
|
||||||
"themes-tip-title": "Color Themes",
|
"take-profit-limit": "Take Profit Limit",
|
||||||
"time": "Time",
|
"taker": "Taker",
|
||||||
"timeframe-desc": "Last {{timeframe}}",
|
"taker-fee": "Taker Fee",
|
||||||
"to": "To",
|
"target-period-length": "Target Period Length",
|
||||||
"token": "Token",
|
"theme": "Theme",
|
||||||
"too-large": "Size Too Large",
|
"themes-tip-desc": "Mango, Dark or Light (if you're that way inclined).",
|
||||||
"tooltip-account-liquidated": "Account will be liquidated if Health Ratio reaches 0% and will continue until Init Health is above 0.",
|
"themes-tip-title": "Color Themes",
|
||||||
"tooltip-after-withdrawal": "The details of your account after this withdrawal.",
|
"time": "Time",
|
||||||
"tooltip-apy-apr": "Deposit APY / Borrow APR",
|
"timeframe-desc": "Last {{timeframe}}",
|
||||||
"tooltip-available-after": "Available to withdraw after accounting for collateral and open orders",
|
"to": "To",
|
||||||
"tooltip-display-cumulative": "Display Cumulative Size",
|
"token": "Token",
|
||||||
"tooltip-display-step": "Display Step Size",
|
"too-large": "Size Too Large",
|
||||||
"tooltip-earn-mngo": "Earn MNGO by market making on Perp markets.",
|
"tooltip-account-liquidated": "Account will be liquidated if Health Ratio reaches 0% and will continue until Init Health is above 0.",
|
||||||
"tooltip-enable-margin": "Enable spot margin for this trade",
|
"tooltip-after-withdrawal": "The details of your account after this withdrawal.",
|
||||||
"tooltip-funding": "Funding is paid continuously. The 1hr rate displayed is a rolling average of the past 60 mins.",
|
"tooltip-apy-apr": "Deposit APY / Borrow APR",
|
||||||
"tooltip-gui-rebate": "Taker fee is {{taker_rate)}} before the 20% GUI hoster fee is rebated.",
|
"tooltip-available-after": "Available to withdraw after accounting for collateral and open orders",
|
||||||
"tooltip-interest-charged": "Interest is charged on your borrowed balance and is subject to change.",
|
"tooltip-display-cumulative": "Display Cumulative Size",
|
||||||
"tooltip-ioc": "Immediate or cancel orders are guaranteed to be the taker or it will be canceled.",
|
"tooltip-display-step": "Display Step Size",
|
||||||
"tooltip-lock-layout": "Lock Layout",
|
"tooltip-earn-mngo": "Earn MNGO by market making on Perp markets.",
|
||||||
"tooltip-name-onchain": "Account names are stored on-chain",
|
"tooltip-enable-margin": "Enable spot margin for this trade",
|
||||||
"tooltip-post": "Post only orders are guaranteed to be the maker order or else it will be canceled.",
|
"tooltip-funding": "Funding is paid continuously. The 1hr rate displayed is a rolling average of the past 60 mins.",
|
||||||
"tooltip-post-and-slide": "Post only slide is a type of limit order that will place your order one tick less than the opposite side of the book.",
|
"tooltip-gui-rebate": "Taker fee is {{taker_rate)}} before the 20% GUI hoster fee is rebated.",
|
||||||
"tooltip-projected-leverage": "Projected Leverage",
|
"tooltip-interest-charged": "Interest is charged on your borrowed balance and is subject to change.",
|
||||||
"tooltip-reduce": "Reduce only orders will only reduce your overall position.",
|
"tooltip-ioc": "Immediate or cancel orders are guaranteed to be the taker or it will be canceled.",
|
||||||
"tooltip-reset-layout": "Reset Layout",
|
"tooltip-lock-layout": "Lock Layout",
|
||||||
"tooltip-serum-rebate": "20% of net fees on Serum go to the GUI host. Mango rebates this fee to you. The taker fee before the GUI rebate is {{taker_percent}}",
|
"tooltip-name-onchain": "Account names are stored on-chain",
|
||||||
"tooltip-slippage": "If price slips more than your max slippage, your order will be partially filled up to that price.",
|
"tooltip-post": "Post only orders are guaranteed to be the maker order or else it will be canceled.",
|
||||||
"tooltip-switch-layout": "Switch Layout",
|
"tooltip-post-and-slide": "Post only slide is a type of limit order that will place your order one tick less than the opposite side of the book.",
|
||||||
"tooltip-unlock-layout": "Unlock Layout",
|
"tooltip-projected-leverage": "Projected Leverage",
|
||||||
"total-assets": "Total Assets Value",
|
"tooltip-reduce": "Reduce only orders will only reduce your overall position.",
|
||||||
"total-borrow-interest": "Total Borrow Interest",
|
"tooltip-reset-layout": "Reset Layout",
|
||||||
"total-borrow-value": "Total Borrow Value",
|
"tooltip-serum-rebate": "20% of net fees on Serum go to the GUI host. Mango rebates this fee to you. The taker fee before the GUI rebate is {{taker_percent}}",
|
||||||
"total-borrows": "Total Borrows",
|
"tooltip-slippage": "If price slips more than your max slippage, your order will be partially filled up to that price.",
|
||||||
"total-deposit-interest": "Total Deposit Interest",
|
"tooltip-switch-layout": "Switch Layout",
|
||||||
"total-deposit-value": "Total Deposit Value",
|
"tooltip-unlock-layout": "Unlock Layout",
|
||||||
"total-deposits": "Total Deposits",
|
"total-assets": "Total Assets Value",
|
||||||
"total-funding": "Total Funding",
|
"total-borrow-interest": "Total Borrow Interest",
|
||||||
"total-funding-stats": "Total Funding Earned/Paid",
|
"total-borrow-value": "Total Borrow Value",
|
||||||
"total-liabilities": "Total Liabilities Value",
|
"total-borrows": "Total Borrows",
|
||||||
"total-srm": "Total SRM in Mango",
|
"total-deposit-interest": "Total Deposit Interest",
|
||||||
"totals": "Totals",
|
"total-deposit-value": "Total Deposit Value",
|
||||||
"trade": "Trade",
|
"total-deposits": "Total Deposits",
|
||||||
"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.",
|
"total-funding": "Total Funding",
|
||||||
"trade-history": "Trade History",
|
"total-funding-stats": "Total Funding Earned/Paid",
|
||||||
"trades": "Trades",
|
"total-liabilities": "Total Liabilities Value",
|
||||||
"trades-history": "Trade History",
|
"total-srm": "Total SRM in Mango",
|
||||||
"transaction-sent": "Transaction sent",
|
"totals": "Totals",
|
||||||
"trigger-price": "Trigger Price",
|
"trade": "Trade",
|
||||||
"try-again": "Try again",
|
"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.",
|
||||||
"type": "Type",
|
"trade-history": "Trade History",
|
||||||
"unrealized-pnl": "Unrealized PnL",
|
"trades": "Trades",
|
||||||
"unsettled": "Unsettled",
|
"trades-history": "Trade History",
|
||||||
"unsettled-balance": "Redeemable Value",
|
"transaction-failed": "Transaction failed",
|
||||||
"unsettled-balances": "Unsettled Balances",
|
"transaction-sent": "Transaction sent",
|
||||||
"unsettled-positions": "Unsettled Positions",
|
"trigger-price": "Trigger Price",
|
||||||
"update-filters": "Update Filters",
|
"try-again": "Try again",
|
||||||
"use-explorer-one": "Use the ",
|
"type": "Type",
|
||||||
"use-explorer-three": "to verify any delayed transactions.",
|
"unrealized-pnl": "Unrealized PnL",
|
||||||
"use-explorer-two": "Explorer ",
|
"unsettled": "Unsettled",
|
||||||
"utilization": "Utilization",
|
"unsettled-balance": "Redeemable Value",
|
||||||
"v3-new": "V3 is a new and separate program from V2. You can access your V2 account in the 'More' section of the top bar or by using this link:",
|
"unsettled-balances": "Unsettled Balances",
|
||||||
"v3-unaudited": "The V3 protocol is in public beta. This is unaudited software, use it at your own risk.",
|
"unsettled-positions": "Unsettled Positions",
|
||||||
"v3-welcome": "Welcome to Mango",
|
"update-filters": "Update Filters",
|
||||||
"value": "Value",
|
"use-explorer-one": "Use the ",
|
||||||
"view": "View",
|
"use-explorer-three": "to verify any delayed transactions.",
|
||||||
"view-all-trades": "View all trades in the Account page",
|
"use-explorer-two": "Explorer ",
|
||||||
"view-counterparty": "View Counterparty",
|
"utilization": "Utilization",
|
||||||
"view-transaction": "View Transaction",
|
"v3-new": "V3 is a new and separate program from V2. You can access your V2 account in the 'More' section of the top bar or by using this link:",
|
||||||
"wallet": "Wallet",
|
"v3-unaudited": "The V3 protocol is in public beta. This is unaudited software, use it at your own risk.",
|
||||||
"wallet-connected": "Wallet connected",
|
"v3-welcome": "Welcome to Mango",
|
||||||
"wallet-disconnected": "Disconnected from wallet",
|
"value": "Value",
|
||||||
"withdraw": "Withdraw",
|
"view": "View",
|
||||||
"withdraw-error": "Could not perform withdraw",
|
"view-all-trades": "View all trades in the Account page",
|
||||||
"withdraw-funds": "Withdraw Funds",
|
"view-counterparty": "View Counterparty",
|
||||||
"withdraw-history": "Withdrawal History",
|
"view-transaction": "View Transaction",
|
||||||
"withdraw-success": "Withdraw successful",
|
"wallet": "Wallet",
|
||||||
"withdrawals": "Withdrawals",
|
"wallet-connected": "Wallet connected",
|
||||||
"you-must-leave-enough-sol": "You must leave enough SOL in your wallet to pay for the transaction",
|
"wallet-disconnected": "Disconnected from wallet",
|
||||||
"your-account": "Your Account",
|
"withdraw": "Withdraw",
|
||||||
"your-assets": "Your Assets",
|
"withdraw-error": "Could not perform withdraw",
|
||||||
"your-borrows": "Your Borrows",
|
"withdraw-funds": "Withdraw Funds",
|
||||||
"zero-mngo-rewards": "0 MNGO Rewards"
|
"withdraw-history": "Withdrawal History",
|
||||||
|
"withdraw-success": "Withdraw successful",
|
||||||
|
"withdrawals": "Withdrawals",
|
||||||
|
"you-must-leave-enough-sol": "You must leave enough SOL in your wallet to pay for the transaction",
|
||||||
|
"your-account": "Your Account",
|
||||||
|
"your-assets": "Your Assets",
|
||||||
|
"your-borrows": "Your Borrows",
|
||||||
|
"zero-mngo-rewards": "0 MNGO Rewards"
|
||||||
}
|
}
|
|
@ -1,458 +1,465 @@
|
||||||
|
|
||||||
|
|
||||||
{
|
{
|
||||||
"about-to-withdraw": "Estas a punto de retirar",
|
"about-to-withdraw": "Estas a punto de retirar",
|
||||||
"above": "Encima",
|
"above": "Encima",
|
||||||
"accept": "Aceptar",
|
"accept": "Aceptar",
|
||||||
"accept-terms": "Entiendo y acepto los riesgos",
|
"accept-terms": "Entiendo y acepto los riesgos",
|
||||||
"account": "Cuenta",
|
"account": "Cuenta",
|
||||||
"account-address-warning": "No envíes tokens directamente a la dirección de tu cuenta.",
|
"account-address-warning": "No envíes tokens directamente a la dirección de tu cuenta.",
|
||||||
"account-details-tip-desc": "Cuando haga su primer depósito, lo configuraremos con una Cuenta Mango. Necesitará al menos 0.0035 SOL en su billetera para cubrir el alquiler / costo de crear la cuenta.",
|
"account-details-tip-desc": "Cuando haga su primer depósito, lo configuraremos con una Cuenta Mango. Necesitará al menos 0.0035 SOL en su billetera para cubrir el alquiler / costo de crear la cuenta.",
|
||||||
"account-details-tip-title": "Detalles de la cuenta",
|
"account-details-tip-title": "Detalles de la cuenta",
|
||||||
"account-equity": "Patrimonio de la cuenta",
|
"account-equity": "Patrimonio de la cuenta",
|
||||||
"account-equity-chart-title": "Patrimonio de la cuenta",
|
"account-equity-chart-title": "Patrimonio de la cuenta",
|
||||||
"account-health": "Estado de la cuenta",
|
"account-health": "Estado de la cuenta",
|
||||||
"account-health-tip-desc": "Para evitar la liquidación, debe mantener el estado de su cuenta por encima del 0%. Para mejorar el estado de su cuenta, reduzca los préstamos o los fondos de depósito.",
|
"account-health-tip-desc": "Para evitar la liquidación, debe mantener el estado de su cuenta por encima del 0%. Para mejorar el estado de su cuenta, reduzca los préstamos o los fondos de depósito.",
|
||||||
"account-health-tip-title": "Estado de la cuenta",
|
"account-health-tip-title": "Estado de la cuenta",
|
||||||
"account-name": "Nombre de la cuenta",
|
"account-name": "Nombre de la cuenta",
|
||||||
"account-performance": "Rendimiento de la cuenta",
|
"account-performance": "Rendimiento de la cuenta",
|
||||||
"account-pnl": "Ganancia o pérdida de la cuenta",
|
"account-pnl": "Ganancia o pérdida de la cuenta",
|
||||||
"account-pnl-chart-title": "Ganancia o pérdida de la cuenta",
|
"account-pnl-chart-title": "Ganancia o pérdida de la cuenta",
|
||||||
"account-risk": "Riesgo de cuenta",
|
"account-risk": "Riesgo de cuenta",
|
||||||
"account-value": "Valor de la cuenta",
|
"account-value": "Valor de la cuenta",
|
||||||
"accounts": "Cuentas",
|
"accounts": "Cuentas",
|
||||||
"add-more-sol": "Agregue más SOL a su billetera para evitar transacciones fallidas.",
|
"add-more-sol": "Agregue más SOL a su billetera para evitar transacciones fallidas.",
|
||||||
"add-name": "Añadir nombre",
|
"add-name": "Añadir nombre",
|
||||||
"alerts": "Alertas",
|
"alerts": "Alertas",
|
||||||
"all-assets": "Todos los activos",
|
"all-assets": "Todos los activos",
|
||||||
"all-time": "All Time",
|
"all-time": "All Time",
|
||||||
"amount": "Monto",
|
"amount": "Monto",
|
||||||
"approximate-time": "Tiempo aproximado",
|
"approximate-time": "Tiempo aproximado",
|
||||||
"asset": "Activo",
|
"asset": "Activo",
|
||||||
"assets": "Activos",
|
"assets": "Activos",
|
||||||
"assets-liabilities": "Activos Pasivos",
|
"assets-liabilities": "Activos Pasivos",
|
||||||
"available-balance": "Saldo disponible",
|
"available-balance": "Saldo disponible",
|
||||||
"average-borrow": "Tasas de prestadas promedio",
|
"average-borrow": "Tasas de prestadas promedio",
|
||||||
"average-deposit": "Tasas de depósito promedio",
|
"average-deposit": "Tasas de depósito promedio",
|
||||||
"average-entry": "Precio de entrada promedio",
|
"average-entry": "Precio de entrada promedio",
|
||||||
"average-funding": "Tasa de financiamiento promedio de 1 hora",
|
"average-funding": "Tasa de financiamiento promedio de 1 hora",
|
||||||
"back": "Atrás",
|
"back": "Atrás",
|
||||||
"balance": "Equilibrio",
|
"balance": "Equilibrio",
|
||||||
"balances": "Saldos",
|
"balances": "Saldos",
|
||||||
"being-liquidated": "¡Estás siendo liquidada!",
|
"being-liquidated": "¡Estás siendo liquidada!",
|
||||||
"below": "Debajo",
|
"below": "Debajo",
|
||||||
"borrow": "Préstamo",
|
"borrow": "Préstamo",
|
||||||
"borrow-funds": "Fondos prestados",
|
"borrow-funds": "Fondos prestados",
|
||||||
"borrow-interest": "Intereses de préstamo",
|
"borrow-interest": "Intereses de préstamo",
|
||||||
"borrow-notification": "Los fondos prestados se retiran a su billetera conectada.",
|
"borrow-notification": "Los fondos prestados se retiran a su billetera conectada.",
|
||||||
"borrow-rate": "Tasa de préstamo",
|
"borrow-rate": "Tasa de préstamo",
|
||||||
"borrow-value": "Valor del préstamo",
|
"borrow-value": "Valor del préstamo",
|
||||||
"borrow-withdraw": "Retirar préstamo",
|
"borrow-withdraw": "Retirar préstamo",
|
||||||
"borrows": "Préstamos",
|
"borrows": "Préstamos",
|
||||||
"break-even": "Precio de equilibrio",
|
"break-even": "Precio de equilibrio",
|
||||||
"buy": "Comprar",
|
"buy": "Comprar",
|
||||||
"calculator": "Calculadora",
|
"calculator": "Calculadora",
|
||||||
"cancel": "Cancelar",
|
"cancel": "Cancelar",
|
||||||
"cancel-error": "Error al cancelar el pedido",
|
"cancel-error": "Error al cancelar el pedido",
|
||||||
"cancel-success": "Pedido cancelado con éxito",
|
"cancel-success": "Pedido cancelado con éxito",
|
||||||
"change-account": "Cambiar cuenta",
|
"change-account": "Cambiar cuenta",
|
||||||
"change-language": "Cambiar idioma",
|
"change-language": "Cambiar idioma",
|
||||||
"change-theme": "Cambiar de tema",
|
"change-theme": "Cambiar de tema",
|
||||||
"character-limit": "El nombre de la cuenta debe tener 32 caracteres o menos",
|
"character-limit": "El nombre de la cuenta debe tener 32 caracteres o menos",
|
||||||
"chinese": "简体中文",
|
"chinese": "简体中文",
|
||||||
"chinese-traditional": "繁體中文",
|
"chinese-traditional": "繁體中文",
|
||||||
"claim": "Reclamar",
|
"claim": "Reclamar",
|
||||||
"claim-reward": "Reclamar recompensa",
|
"claim-reward": "Reclamar recompensa",
|
||||||
"claim-x-mngo": "Claim {{amount}} MNGO",
|
"claim-x-mngo": "Claim {{amount}} MNGO",
|
||||||
"close": "Cerrar",
|
"close": "Cerrar",
|
||||||
"close-and-long": "Posición cerrada + Empezar a comprar",
|
"close-and-long": "Posición cerrada + Empezar a comprar",
|
||||||
"close-and-short": "Posición cerrada + Empezar a vender",
|
"close-and-short": "Posición cerrada + Empezar a vender",
|
||||||
"close-confirm": "¿Estás segura de que quieres comercializar cerca de tu {{config_name}} posición?",
|
"close-confirm": "¿Estás segura de que quieres comercializar cerca de tu {{config_name}} posición?",
|
||||||
"close-open-long": "Posición 100% cerrada + Abre un {{size}} {{symbol}} compra",
|
"close-open-long": "Posición 100% cerrada + Abre un {{size}} {{symbol}} compra",
|
||||||
"close-open-short": "Posición 100% cerrada + Abre un {{size}} {{symbol}} vende",
|
"close-open-short": "Posición 100% cerrada + Abre un {{size}} {{symbol}} vende",
|
||||||
"close-position": "Posición cerrada",
|
"close-position": "Posición cerrada",
|
||||||
"collateral-available": "Garantía disponible",
|
"collateral-available": "Garantía disponible",
|
||||||
"collateral-available-tip-desc": "El valor de la garantía que se puede utilizar para tomar apalancamiento. Los activos tienen diferentes pesos de garantía según el riesgo que presentan para la plataforma.",
|
"collateral-available-tip-desc": "El valor de la garantía que se puede utilizar para tomar apalancamiento. Los activos tienen diferentes pesos de garantía según el riesgo que presentan para la plataforma.",
|
||||||
"collateral-available-tip-title": "Garantía disponible",
|
"collateral-available-tip-title": "Garantía disponible",
|
||||||
"condition": "Condición",
|
"condition": "Condición",
|
||||||
"confirm": "Confirmar",
|
"confirm": "Confirmar",
|
||||||
"confirm-deposit": "Confirmar depósito",
|
"confirm-deposit": "Confirmar depósito",
|
||||||
"confirm-withdraw": "Confirmar retiro",
|
"confirm-withdraw": "Confirmar retiro",
|
||||||
"confirming-transaction": "Confirmando transacción",
|
"confirming-transaction": "Confirmando transacción",
|
||||||
"connect": "Conectar",
|
"connect": "Conectar",
|
||||||
"connect-view": "Conecte una billetera para ver su cuenta",
|
"connect-view": "Conecte una billetera para ver su cuenta",
|
||||||
"connect-wallet": "Conecte una billetera",
|
"connect-wallet": "Conecte una billetera",
|
||||||
"connect-wallet-tip-desc": "Te mostraremos los alrededores...",
|
"connect-wallet-tip-desc": "Te mostraremos los alrededores...",
|
||||||
"connect-wallet-tip-title": "Conecta tu billetera",
|
"connect-wallet-tip-title": "Conecta tu billetera",
|
||||||
"connected-to": "Conectado a billetera ",
|
"connected-to": "Conectado a billetera ",
|
||||||
"copy-address": "Copiar dirección",
|
"copy-address": "Copiar dirección",
|
||||||
"country-not-allowed": "País no permitido",
|
"country-not-allowed": "País no permitido",
|
||||||
"country-not-allowed-tooltip": "Está utilizando una interfaz de código abierto facilitada por Mango DAO. Como tal, restringe el acceso a ciertas regiones por precaución, debido a la incertidumbre regulatoria.",
|
"country-not-allowed-tooltip": "Está utilizando una interfaz de código abierto facilitada por Mango DAO. Como tal, restringe el acceso a ciertas regiones por precaución, debido a la incertidumbre regulatoria.",
|
||||||
"create-account": "Crear cuenta",
|
"create-account": "Crear cuenta",
|
||||||
"current-stats": "Estadísticas actuales",
|
"current-stats": "Estadísticas actuales",
|
||||||
"custom": "Personalizada",
|
"custom": "Personalizada",
|
||||||
"daily-change": "Cambio diario",
|
"daily-change": "Cambio diario",
|
||||||
"daily-high": "24hr máximo",
|
"daily-high": "24hr máximo",
|
||||||
"daily-low": "24hr mínimo",
|
"daily-low": "24hr mínimo",
|
||||||
"daily-range": "Rango diario",
|
"daily-range": "Rango diario",
|
||||||
"daily-volume": "Volumen de 24 horas",
|
"daily-volume": "Volumen de 24 horas",
|
||||||
"dark": "Oscura",
|
"dark": "Oscura",
|
||||||
"data-refresh-tip-desc": "Los datos se actualizan automáticamente, pero puedes actualizarlos manualmente aquí.",
|
"data-refresh-tip-desc": "Los datos se actualizan automáticamente, pero puedes actualizarlos manualmente aquí.",
|
||||||
"data-refresh-tip-title": "Actualización manual de datos",
|
"data-refresh-tip-title": "Actualización manual de datos",
|
||||||
"date": "Fecha",
|
"date": "Fecha",
|
||||||
"default-market": "Mercado predeterminado",
|
"default-market": "Mercado predeterminado",
|
||||||
"default-spot-margin": "Comercia con margen por defecto",
|
"default-spot-margin": "Comercia con margen por defecto",
|
||||||
"degraded-performance": "Solana network is experiencing degraded performance. Transactions may fail to send or confirm. (TPS: {{tps}})",
|
"degraded-performance": "Solana network is experiencing degraded performance. Transactions may fail to send or confirm. (TPS: {{tps}})",
|
||||||
"delay-displaying-recent": "Puede haber un retraso en la visualización de la última actividad.",
|
"delay-displaying-recent": "Puede haber un retraso en la visualización de la última actividad.",
|
||||||
"delayed-info": "Data updates hourly",
|
"delayed-info": "Data updates hourly",
|
||||||
"deposit": "Depositar",
|
"deposit": "Depositar",
|
||||||
"deposit-before": "Necesita más {{tokenSymbol}} en su billetera para pagar completamente su préstamo",
|
"deposit-before": "Necesita más {{tokenSymbol}} en su billetera para pagar completamente su préstamo",
|
||||||
"deposit-failed": "El depósito falló",
|
"deposit-failed": "El depósito falló",
|
||||||
"deposit-funds": "Fondos de depósito",
|
"deposit-funds": "Fondos de depósito",
|
||||||
"deposit-help": "Agregar {{tokenSymbol}} a su billetera y deposítelo con {{tokenSymbol}} para depositar.",
|
"deposit-help": "Agregar {{tokenSymbol}} a su billetera y deposítelo con {{tokenSymbol}} para depositar.",
|
||||||
"deposit-history": "Historial de depósitos",
|
"deposit-history": "Historial de depósitos",
|
||||||
"deposit-interest": "Interés de depósito",
|
"deposit-interest": "Interés de depósito",
|
||||||
"deposit-rate": "Tasa de depósito",
|
"deposit-rate": "Tasa de depósito",
|
||||||
"deposit-successful": "Depósito exitosa",
|
"deposit-successful": "Depósito exitosa",
|
||||||
"deposit-to-get-started": "Deposite fondos para comenzar",
|
"deposit-to-get-started": "Deposite fondos para comenzar",
|
||||||
"deposit-value": "Valor de depósito",
|
"deposit-value": "Valor de depósito",
|
||||||
"depositing": "Estás a punto de depositar",
|
"depositing": "Estás a punto de depositar",
|
||||||
"deposits": "Depósitos",
|
"deposits": "Depósitos",
|
||||||
"depth-rewarded": "Liquidez recompensada",
|
"depth-rewarded": "Liquidez recompensada",
|
||||||
"details": "Detalles",
|
"details": "Detalles",
|
||||||
"disconnect": "Desconectar",
|
"disconnect": "Desconectar",
|
||||||
"done": "Hecho",
|
"done": "Hecho",
|
||||||
"edit": "Editar",
|
"edit": "Editar",
|
||||||
"edit-name": "Actualizar nombre",
|
"edit-name": "Actualizar nombre",
|
||||||
"edit-nickname": "Edite el apodo público de su cuenta",
|
"edit-nickname": "Edite el apodo público de su cuenta",
|
||||||
"email-address": "Dirección de correo electrónico",
|
"email-address": "Dirección de correo electrónico",
|
||||||
"english": "English",
|
"english": "English",
|
||||||
"enter-amount": "Ingrese una cantidad para depositar",
|
"enter-amount": "Ingrese una cantidad para depositar",
|
||||||
"enter-name": "Ingrese un nombre de cuenta",
|
"enter-name": "Ingrese un nombre de cuenta",
|
||||||
"equity": "Capital",
|
"equity": "Capital",
|
||||||
"est-period-end": "Fin del período estimado",
|
"est-period-end": "Fin del período estimado",
|
||||||
"est-slippage": "Deslizamiento estimado",
|
"est-slippage": "Deslizamiento estimado",
|
||||||
"estimated-liq-price": "Precio líquido estimado",
|
"estimated-liq-price": "Precio líquido estimado",
|
||||||
"explorer": "Explorador",
|
"explorer": "Explorador",
|
||||||
"export-data": "Exportar a CSV",
|
"export-data": "Exportar a CSV",
|
||||||
"export-data-empty": "No hay datos para exportar",
|
"export-data-empty": "No hay datos para exportar",
|
||||||
"export-data-success": "CSV exportado con éxito",
|
"export-data-success": "CSV exportado con éxito",
|
||||||
"export-pnl-csv": "Export PnL CSV",
|
"export-pnl-csv": "Export PnL CSV",
|
||||||
"export-trades-csv": "Export Trades CSV",
|
"export-trades-csv": "Export Trades CSV",
|
||||||
"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",
|
||||||
"funding-chart-title": "Fondos (últimos 30 días)",
|
"funding-chart-title": "Fondos (últimos 30 días)",
|
||||||
"futures": "Futuros",
|
"futures": "Futuros",
|
||||||
"get-started": "Comenzar",
|
"get-started": "Comenzar",
|
||||||
"governance": "Governance",
|
"governance": "Governance",
|
||||||
"health": "Salud",
|
"health": "Salud",
|
||||||
"health-check": "Verificación del estado de la cuenta",
|
"health-check": "Verificación del estado de la cuenta",
|
||||||
"health-ratio": "Proporción de salud",
|
"health-ratio": "Proporción de salud",
|
||||||
"hide-all": "Ocultar toda la navegación",
|
"hide-all": "Ocultar toda la navegación",
|
||||||
"hide-dust": "Ocultar saldos pequeños",
|
"hide-dust": "Ocultar saldos pequeños",
|
||||||
"high": "Alta",
|
"high": "Alta",
|
||||||
"history": "Historial",
|
"history": "Historial",
|
||||||
"history-empty": "Historial vacío.",
|
"history-empty": "Historial vacío.",
|
||||||
"hourly-borrow-interest": "Interés por préstamo por hora",
|
"hourly-borrow-interest": "Interés por préstamo por hora",
|
||||||
"hourly-deposit-interest": "Interés por depósito por hora",
|
"hourly-deposit-interest": "Interés por depósito por hora",
|
||||||
"hourly-funding": "Financiamiento por hora",
|
"hourly-funding": "Financiamiento por hora",
|
||||||
"if-referred": "{{fee}} if referred or 10k MNGO",
|
"if-referred": "{{fee}} if referred or 10k MNGO",
|
||||||
"if-referred-tooltip": "If you create your Mango Account from a referral link or have 10k MNGO in your Mango Account you get a 0.04% discount off futures fees.",
|
"if-referred-tooltip": "If you create your Mango Account from a referral link or have 10k MNGO in your Mango Account you get a 0.04% discount off futures fees.",
|
||||||
"in-orders": "En órdenes",
|
"in-orders": "En órdenes",
|
||||||
"include-perp": "Include Perp",
|
"include-perp": "Include Perp",
|
||||||
"include-spot": "Include Spot",
|
"include-spot": "Include Spot",
|
||||||
"includes-borrow": "Incluye el préstamo",
|
"includes-borrow": "Incluye el préstamo",
|
||||||
"init-error": "No se pudo realizar la operación de depósito y cuenta de margen inicial",
|
"init-error": "No se pudo realizar la operación de depósito y cuenta de margen inicial",
|
||||||
"init-health": "Salud inicial",
|
"init-health": "Salud inicial",
|
||||||
"initial-deposit": "Depósito inicial",
|
"initial-deposit": "Depósito inicial",
|
||||||
"insufficient-balance-deposit": "Saldo insuficiente. Reducir la cantidad a depositar",
|
"insufficient-balance-deposit": "Saldo insuficiente. Reducir la cantidad a depositar",
|
||||||
"insufficient-balance-withdraw": "Saldo insuficiente. Pedir prestados fondos para retirar",
|
"insufficient-balance-withdraw": "Saldo insuficiente. Pedir prestados fondos para retirar",
|
||||||
"insufficient-sol": "Necesita 0.035 SOL para crear una cuenta de mango.",
|
"insufficient-sol": "Necesita 0.035 SOL para crear una cuenta de mango.",
|
||||||
"interest": "Interés",
|
"interest": "Interés",
|
||||||
"interest-chart-title": "{{symbol}} Interés (últimos 30 días)",
|
"interest-chart-title": "{{symbol}} Interés (últimos 30 días)",
|
||||||
"interest-chart-value-title": "{{symbol}} Valor de interés (últimos 30 días)",
|
"interest-chart-value-title": "{{symbol}} Valor de interés (últimos 30 días)",
|
||||||
"interest-earned": "Interés total devengado / pagado",
|
"interest-earned": "Interés total devengado / pagado",
|
||||||
"interest-info": "El interés se gana continuamente en todos los depósitos.",
|
"interest-info": "El interés se gana continuamente en todos los depósitos.",
|
||||||
"intro-feature-1": "Operaciones de apalancamiento con garantía cruzada",
|
"intro-feature-1": "Operaciones de apalancamiento con garantía cruzada",
|
||||||
"intro-feature-2": "Todos los activos cuentan como garantía para negociar o pedir prestado",
|
"intro-feature-2": "Todos los activos cuentan como garantía para negociar o pedir prestado",
|
||||||
"intro-feature-3": "Deposite cualquier activo y gane intereses automáticamente",
|
"intro-feature-3": "Deposite cualquier activo y gane intereses automáticamente",
|
||||||
"intro-feature-4": "Pida prestado contra sus activos para otras actividades de DeFi",
|
"intro-feature-4": "Pida prestado contra sus activos para otras actividades de DeFi",
|
||||||
"invalid-address": "The address is invalid",
|
"invalid-address": "The address is invalid",
|
||||||
"ioc": "IOC",
|
"ioc": "IOC",
|
||||||
"language": "Language",
|
"language": "Language",
|
||||||
"languages-tip-desc": "Elija otro idioma aquí. Más próximamente...",
|
"languages-tip-desc": "Elija otro idioma aquí. Más próximamente...",
|
||||||
"languages-tip-title": "Multilingüe?",
|
"languages-tip-title": "Multilingüe?",
|
||||||
"layout-tip-desc": "Desbloquee para reorganizar y cambiar el tamaño de los paneles comerciales a su gusto.",
|
"layout-tip-desc": "Desbloquee para reorganizar y cambiar el tamaño de los paneles comerciales a su gusto.",
|
||||||
"layout-tip-title": "Personalizar diseño",
|
"layout-tip-title": "Personalizar diseño",
|
||||||
"learn": "Aprender",
|
"learn": "Aprender",
|
||||||
"learn-more": "Aprender más",
|
"learn-more": "Aprender más",
|
||||||
"lend": "Lend",
|
"lend": "Lend",
|
||||||
"lets-go": "Vamos",
|
"lets-go": "Vamos",
|
||||||
"leverage": "Apalancamiento",
|
"leverage": "Apalancamiento",
|
||||||
"leverage-too-high": "Apalancamiento demasiado alto. Reducir la cantidad a retirar",
|
"leverage-too-high": "Apalancamiento demasiado alto. Reducir la cantidad a retirar",
|
||||||
"liabilities": "Pasivos",
|
"liabilities": "Pasivos",
|
||||||
"light": "Ligera",
|
"light": "Ligera",
|
||||||
"limit": "Límite",
|
"limit": "Límite",
|
||||||
"limit-order": "Orden de límite",
|
"limit-order": "Orden de límite",
|
||||||
"limit-price": "Precio límite",
|
"limit-price": "Precio límite",
|
||||||
"liquidation-history": "Historial de liquidación",
|
"liquidation-history": "Historial de liquidación",
|
||||||
"liquidations": "Liquidaciones",
|
"liquidations": "Liquidaciones",
|
||||||
"liquidity": "Liquidez",
|
"liquidity": "Liquidez",
|
||||||
"liquidity-mining": "Minería de liquidez",
|
"liquidity-mining": "Minería de liquidez",
|
||||||
"long": "Larga",
|
"long": "Larga",
|
||||||
"low": "Bajo",
|
"low": "Bajo",
|
||||||
"maint-health": "Salud de mantenimiento",
|
"maint-health": "Salud de mantenimiento",
|
||||||
"make-trade": "Hacer un trato",
|
"make-trade": "Hacer un trato",
|
||||||
"maker": "Maker",
|
"maker": "Maker",
|
||||||
"maker-fee": "Orden límite",
|
"maker-fee": "Orden límite",
|
||||||
"mango": "Mango",
|
"mango": "Mango",
|
||||||
"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": "Cuentas Mango",
|
"mango-accounts": "Cuentas Mango",
|
||||||
"margin": "Margen",
|
"margin": "Margen",
|
||||||
"margin-available": "Margen disponible",
|
"margin-available": "Margen disponible",
|
||||||
"market": "Mercado",
|
"market": "Mercado",
|
||||||
"market-close": "Cierre de mercado",
|
"market-close": "Cierre de mercado",
|
||||||
"market-data": "Datos del mercado",
|
"market-data": "Datos del mercado",
|
||||||
"market-details": "Detalles del mercado",
|
"market-details": "Detalles del mercado",
|
||||||
"market-order": "Orden de Mercado",
|
"market-order": "Orden de Mercado",
|
||||||
"markets": "Mercados",
|
"markets": "Mercados",
|
||||||
"max": "Máximo",
|
"max": "Máximo",
|
||||||
"max-borrow": "Monto máximo del préstamo",
|
"max-borrow": "Monto máximo del préstamo",
|
||||||
"max-depth-bps": "Profundidad máxima de Bps",
|
"max-depth-bps": "Profundidad máxima de Bps",
|
||||||
"max-slippage": "Deslizamiento máximo ",
|
"max-slippage": "Deslizamiento máximo ",
|
||||||
"max-with-borrow": "Máximo con préstamo",
|
"max-with-borrow": "Máximo con préstamo",
|
||||||
"minutes": "minutos",
|
"minutes": "minutos",
|
||||||
"missing-price": "Falta el precio",
|
"missing-price": "Falta el precio",
|
||||||
"missing-size": "Falta el tamaño",
|
"missing-size": "Falta el tamaño",
|
||||||
"missing-trigger": "Falta el precio de activación",
|
"missing-trigger": "Falta el precio de activación",
|
||||||
"mngo-left-period": "MNGO restante en el período",
|
"mngo-left-period": "MNGO restante en el período",
|
||||||
"mngo-per-period": "MNGO por Período",
|
"mngo-per-period": "MNGO por Período",
|
||||||
"mngo-rewards": "Recompensas en MNGO",
|
"mngo-rewards": "Recompensas en MNGO",
|
||||||
"moderate": "Moderada",
|
"moderate": "Moderada",
|
||||||
"more": "Más",
|
"more": "Más",
|
||||||
"msrm-deposit-error": "Error depositante MSRM",
|
"msrm-deposit-error": "Error depositante MSRM",
|
||||||
"msrm-deposited": "MSRM Depósito exitoso",
|
"msrm-deposited": "MSRM Depósito exitoso",
|
||||||
"msrm-withdraw-error": "Error al retirarse MSRM",
|
"msrm-withdraw-error": "Error al retirarse MSRM",
|
||||||
"msrm-withdrawal": "MSRM retiro exitoso",
|
"msrm-withdrawal": "MSRM retiro exitoso",
|
||||||
"name-error": "No se pudo establecer el nombre de la cuenta",
|
"name-error": "No se pudo establecer el nombre de la cuenta",
|
||||||
"name-updated": "Nombre de cuenta actualizado",
|
"name-updated": "Nombre de cuenta actualizado",
|
||||||
"name-your-account": "Nombra tu cuenta",
|
"name-your-account": "Nombra tu cuenta",
|
||||||
"net": "Neto",
|
"net": "Neto",
|
||||||
"net-balance": "Balance neto",
|
"net-balance": "Balance neto",
|
||||||
"net-interest-value": "Valor de interés neto",
|
"net-interest-value": "Valor de interés neto",
|
||||||
"net-interest-value-desc": "Calculado en el momento en que se ganó / pagó. Esto podría ser útil al momento de impuestos.",
|
"net-interest-value-desc": "Calculado en el momento en que se ganó / pagó. Esto podría ser útil al momento de impuestos.",
|
||||||
"new": "Nuevo",
|
"new": "Nuevo",
|
||||||
"new-account": "Nuevo",
|
"new-account": "Nuevo",
|
||||||
"next": "Próximo",
|
"next": "Próximo",
|
||||||
"no-account-found": "Cuenta no encontrada",
|
"no-account-found": "Cuenta no encontrada",
|
||||||
"no-address": "No ${tokenSymbol} dirección de billetera encontrada",
|
"no-address": "No ${tokenSymbol} dirección de billetera encontrada",
|
||||||
"no-balances": "Sin saldos",
|
"no-balances": "Sin saldos",
|
||||||
"no-borrows": "No se encontraron préstamos.",
|
"no-borrows": "No se encontraron préstamos.",
|
||||||
"no-funding": "Sin fondos ganados / pagados",
|
"no-funding": "Sin fondos ganados / pagados",
|
||||||
"no-history": "Sin historial comercial",
|
"no-history": "Sin historial comercial",
|
||||||
"no-interest": "Sin intereses ganados / pagados",
|
"no-interest": "Sin intereses ganados / pagados",
|
||||||
"no-margin": "No se encontraron cuentas de margen",
|
"no-margin": "No se encontraron cuentas de margen",
|
||||||
"no-markets": "No se encontraron mercados",
|
"no-markets": "No se encontraron mercados",
|
||||||
"no-orders": "No hay órdenes abiertas",
|
"no-orders": "No hay órdenes abiertas",
|
||||||
"no-perp": "No hay puestos de delincuentes",
|
"no-perp": "No hay puestos de delincuentes",
|
||||||
"no-trades-found": "No trades found...",
|
"no-trades-found": "No trades found...",
|
||||||
"no-unsettled": "No hay fondos pendientes",
|
"no-unsettled": "No hay fondos pendientes",
|
||||||
"no-wallet": "Sin dirección de billetera",
|
"no-wallet": "Sin dirección de billetera",
|
||||||
"node-url": "URL del nodo RPC",
|
"node-url": "URL del nodo RPC",
|
||||||
"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",
|
||||||
"open-interest": "Interés abierto",
|
"number-deposit": "{{number}} Deposit",
|
||||||
"open-orders": "Órdenes abiertas",
|
"number-deposits": "{{number}} Deposits",
|
||||||
"optional": "(Opcional)",
|
"number-liquidation": "{{number}} Liquidation",
|
||||||
"oracle-price": "Precio de Oracle",
|
"number-liquidations": "{{number}} Liquidations",
|
||||||
"order-error": "Error al realizar el pedido",
|
"number-trade": "{{number}} Trade",
|
||||||
"orderbook": "Libro de órdenes",
|
"number-trades": "{{number}} Trades",
|
||||||
"orderbook-animation": "Animación del libro de ordenes",
|
"number-withdrawal": "{{number}} Withdrawal",
|
||||||
"orders": "Órdenes",
|
"number-withdrawals": "{{number}} Withdrawals",
|
||||||
"other": "Other",
|
"open-interest": "Interés abierto",
|
||||||
"performance": "Performance",
|
"open-orders": "Órdenes abiertas",
|
||||||
"performance-insights": "Performance Insights",
|
"optional": "(Opcional)",
|
||||||
"period-progress": "Period Progress",
|
"oracle-price": "Precio de Oracle",
|
||||||
"perp": "perpetuo",
|
"order-error": "Error al realizar el pedido",
|
||||||
"perp-desc": "Canjeos perpetuos liquidados en USDC",
|
"orderbook": "Libro de órdenes",
|
||||||
"perp-fees": "Tarifas de Mango Perp",
|
"orderbook-animation": "Animación del libro de ordenes",
|
||||||
"perp-positions": "Posiciones perpetuas",
|
"orders": "Órdenes",
|
||||||
"perp-positions-tip-desc": "Las posiciones de perp acumulan PnL sin liquidar a medida que se mueve el precio. La liquidación de PnL agrega o elimina esa cantidad de su saldo en USDC.",
|
"other": "Other",
|
||||||
"perp-positions-tip-title": "Detalles de la posición de perp",
|
"performance": "Performance",
|
||||||
"perpetual-futures": "Futuros perpetuos",
|
"performance-insights": "Performance Insights",
|
||||||
"perps": "perpetuos",
|
"period-progress": "Period Progress",
|
||||||
"pnl": "PnL",
|
"perp": "perpetuo",
|
||||||
"pnl-error": "Solución de errores PNL",
|
"perp-desc": "Canjeos perpetuos liquidados en USDC",
|
||||||
"pnl-help": "La liquidación actualizará su saldo en USDC para reflejar el monto de PnL pendiente.",
|
"perp-fees": "Tarifas de Mango Perp",
|
||||||
"pnl-success": "PNL resuelto con éxito",
|
"perp-positions": "Posiciones perpetuas",
|
||||||
"portfolio": "Portafolio",
|
"perp-positions-tip-desc": "Las posiciones de perp acumulan PnL sin liquidar a medida que se mueve el precio. La liquidación de PnL agrega o elimina esa cantidad de su saldo en USDC.",
|
||||||
"position": "Posición",
|
"perp-positions-tip-title": "Detalles de la posición de perp",
|
||||||
"position-size": "Tamaño de la posición",
|
"perpetual-futures": "Futuros perpetuos",
|
||||||
"positions": "Posiciones",
|
"perps": "perpetuos",
|
||||||
"post": "Correo",
|
"pnl": "PnL",
|
||||||
"presets": "Preajustes",
|
"pnl-error": "Solución de errores PNL",
|
||||||
"price": "Precio",
|
"pnl-help": "La liquidación actualizará su saldo en USDC para reflejar el monto de PnL pendiente.",
|
||||||
"price-expect": "El precio que reciba puede ser mayor o menor de lo esperado.",
|
"pnl-success": "PNL resuelto con éxito",
|
||||||
"price-impact": "Est. Impacto en el precio:",
|
"portfolio": "Portafolio",
|
||||||
"price-unavailable": "Precio no disponible",
|
"position": "Posición",
|
||||||
"prices-changed": "Los precios han cambiado y han aumentado su apalancamiento. Reducir la cantidad de retiro.",
|
"position-size": "Tamaño de la posición",
|
||||||
"profile-menu-tip-desc": "Acceda a sus cuentas de Mango, copie la dirección de su billetera y desconéctese aquí.",
|
"positions": "Posiciones",
|
||||||
"profile-menu-tip-title": "Menú de perfil",
|
"post": "Correo",
|
||||||
"profit-price": "Precio de beneficio",
|
"presets": "Preajustes",
|
||||||
"quantity": "Cantidad",
|
"price": "Precio",
|
||||||
"rates": "Tasas de depósito / préstamo",
|
"price-expect": "El precio que reciba puede ser mayor o menor de lo esperado.",
|
||||||
"read-more": "Leer más",
|
"price-impact": "Est. Impacto en el precio:",
|
||||||
"recent": "Reciente",
|
"price-unavailable": "Precio no disponible",
|
||||||
"recent-trades": "Operaciones recientes",
|
"prices-changed": "Los precios han cambiado y han aumentado su apalancamiento. Reducir la cantidad de retiro.",
|
||||||
"redeem-all": "Redeem All",
|
"profile-menu-tip-desc": "Acceda a sus cuentas de Mango, copie la dirección de su billetera y desconéctese aquí.",
|
||||||
"redeem-failure": "Error al canjear MNGO",
|
"profile-menu-tip-title": "Menú de perfil",
|
||||||
"redeem-pnl": "Resolver",
|
"profit-price": "Precio de beneficio",
|
||||||
"redeem-positive": "Redeem positive",
|
"quantity": "Cantidad",
|
||||||
"redeem-success": "MNGO canjeado con éxito",
|
"rates": "Tasas de depósito / préstamo",
|
||||||
"referrals": "Referencias",
|
"read-more": "Leer más",
|
||||||
"refresh": "Actualizar",
|
"recent": "Reciente",
|
||||||
"refresh-data": "Actualizar datos",
|
"recent-trades": "Operaciones recientes",
|
||||||
"repay": "Pagar",
|
"redeem-all": "Redeem All",
|
||||||
"repay-and-deposit": "Pagar 100% lo prestado y depositar {{amount}} {{symbol}}",
|
"redeem-failure": "Error al canjear MNGO",
|
||||||
"repay-full": "Pagar 100% lo prestado",
|
"redeem-pnl": "Resolver",
|
||||||
"repay-partial": "Pagar el {{porcentaje}}% del préstamo",
|
"redeem-positive": "Redeem positive",
|
||||||
"reposition": "Arrastra para reposicionar",
|
"redeem-success": "MNGO canjeado con éxito",
|
||||||
"reset": "Reset",
|
"referrals": "Referencias",
|
||||||
"reset-filters": "Reset Filters",
|
"refresh": "Actualizar",
|
||||||
"rolling-change": "24hr Change",
|
"refresh-data": "Actualizar datos",
|
||||||
"rpc-endpoint": "Punto final de RPC",
|
"repay": "Pagar",
|
||||||
"save": "Ahorrar",
|
"repay-and-deposit": "Pagar 100% lo prestado y depositar {{amount}} {{symbol}}",
|
||||||
"save-name": "Guardar nombre",
|
"repay-full": "Pagar 100% lo prestado",
|
||||||
"select-account": "Seleccione una cuenta de Mango",
|
"repay-partial": "Pagar el {{porcentaje}}% del préstamo",
|
||||||
"select-asset": "Seleccione un activo",
|
"reposition": "Arrastra para reposicionar",
|
||||||
"select-margin": "Seleccionar cuenta de margen",
|
"reset": "Reset",
|
||||||
"sell": "Vender",
|
"reset-filters": "Reset Filters",
|
||||||
"serum-fees": "Tarifas de la bolsa decentralizada 'serum'",
|
"rolling-change": "24hr Change",
|
||||||
"set-stop-loss": "Establecer Detener Pérdidas",
|
"rpc-endpoint": "Punto final de RPC",
|
||||||
"set-take-profit": "Establecer Tomar Ganancias",
|
"save": "Ahorrar",
|
||||||
"settings": "Ajustes",
|
"save-name": "Guardar nombre",
|
||||||
"settle": "Resolver",
|
"select-account": "Seleccione una cuenta de Mango",
|
||||||
"settle-all": "Liquidar todo",
|
"select-asset": "Seleccione un activo",
|
||||||
"settle-error": "Error al liquidar fondos",
|
"select-margin": "Seleccionar cuenta de margen",
|
||||||
"settle-success": "Fondos liquidados con éxito",
|
"sell": "Vender",
|
||||||
"short": "Vender",
|
"serum-fees": "Tarifas de la bolsa decentralizada 'serum'",
|
||||||
"show-all": "Mostrar todo en Nav",
|
"set-stop-loss": "Establecer Detener Pérdidas",
|
||||||
"show-less": "Mostrar menos",
|
"set-take-profit": "Establecer Tomar Ganancias",
|
||||||
"show-more": "Mostrar más",
|
"settings": "Ajustes",
|
||||||
"show-tips": "Mostrar sugerencias",
|
"settle": "Resolver",
|
||||||
"show-zero": "Mostrar saldos cero",
|
"settle-all": "Liquidar todo",
|
||||||
"side": "Lado",
|
"settle-error": "Error al liquidar fondos",
|
||||||
"size": "Tamaño",
|
"settle-success": "Fondos liquidados con éxito",
|
||||||
"slippage-warning": "¡Esta orden probablemente tendrá un deslizamiento extremadamente grande! Considere usar la orden 'Límite de parada' o 'Tomar el límite de ganancias' en su lugar.",
|
"short": "Vender",
|
||||||
"spanish": "Español",
|
"show-all": "Mostrar todo en Nav",
|
||||||
"spot": "Al contado",
|
"show-less": "Mostrar menos",
|
||||||
"spot-desc": "Margen al contado cotizado en USDC",
|
"show-more": "Mostrar más",
|
||||||
"spread": "Propago",
|
"show-tips": "Mostrar sugerencias",
|
||||||
"stats": "Estadísticas",
|
"show-zero": "Mostrar saldos cero",
|
||||||
"stop-limit": "Límite de parada",
|
"side": "Lado",
|
||||||
"stop-loss": "Detener pérdida",
|
"size": "Tamaño",
|
||||||
"stop-price": "Precio de parada",
|
"slippage-warning": "¡Esta orden probablemente tendrá un deslizamiento extremadamente grande! Considere usar la orden 'Límite de parada' o 'Tomar el límite de ganancias' en su lugar.",
|
||||||
"successfully-placed": "Comercio colocado con éxito",
|
"spanish": "Español",
|
||||||
"summary": "Summary",
|
"spot": "Al contado",
|
||||||
"supported-assets": "Financie la billetera con uno de los activos admitidos.",
|
"spot-desc": "Margen al contado cotizado en USDC",
|
||||||
"swap": "Intercambio",
|
"spread": "Propago",
|
||||||
"take-profit": "Tomar ganancias",
|
"stats": "Estadísticas",
|
||||||
"take-profit-limit": "Tomar el límite de ganancias",
|
"stop-limit": "Límite de parada",
|
||||||
"taker": "Receptor",
|
"stop-loss": "Detener pérdida",
|
||||||
"taker-fee": "Tarifa del receptor",
|
"stop-price": "Precio de parada",
|
||||||
"target-period-length": "Duración del período objetivo",
|
"successfully-placed": "Comercio colocado con éxito",
|
||||||
"theme": "Theme",
|
"summary": "Summary",
|
||||||
"themes-tip-desc": "Mango, Oscuro o Claro (si te gusta eso).",
|
"supported-assets": "Financie la billetera con uno de los activos admitidos.",
|
||||||
"themes-tip-title": "Temas de color",
|
"swap": "Intercambio",
|
||||||
"time": "Tiempo",
|
"take-profit": "Tomar ganancias",
|
||||||
"timeframe-desc": "Last {{timeframe}}",
|
"take-profit-limit": "Tomar el límite de ganancias",
|
||||||
"to": "To",
|
"taker": "Receptor",
|
||||||
"token": "Simbólico",
|
"taker-fee": "Tarifa del receptor",
|
||||||
"too-large": "Tamaño demasiado grande",
|
"target-period-length": "Duración del período objetivo",
|
||||||
"tooltip-account-liquidated": "La cuenta se liquidará si la relación de salud alcanza el 0% y continuará hasta que la salud inicial sea superior a 0.",
|
"theme": "Theme",
|
||||||
"tooltip-after-withdrawal": "Los detalles de su cuenta después de este retiro.",
|
"themes-tip-desc": "Mango, Oscuro o Claro (si te gusta eso).",
|
||||||
"tooltip-apy-apr": "APY de depósito / APR de préstamo",
|
"themes-tip-title": "Temas de color",
|
||||||
"tooltip-available-after": "Disponible para retirar después de contabilizar la garantía y las órdenes abiertas",
|
"time": "Tiempo",
|
||||||
"tooltip-display-cumulative": "Mostrar tamaño acumulativo",
|
"timeframe-desc": "Last {{timeframe}}",
|
||||||
"tooltip-display-step": "Tamaño del paso de visualización",
|
"to": "To",
|
||||||
"tooltip-earn-mngo": "Gana MNGO por creación de mercado en los mercados perpetuos.",
|
"token": "Simbólico",
|
||||||
"tooltip-enable-margin": "Habilite el margen al contado para esta operación",
|
"too-large": "Tamaño demasiado grande",
|
||||||
"tooltip-funding": "Funding is paid continuously. The 1hr rate displayed is a rolling average of the past 60 mins.",
|
"tooltip-account-liquidated": "La cuenta se liquidará si la relación de salud alcanza el 0% y continuará hasta que la salud inicial sea superior a 0.",
|
||||||
"tooltip-gui-rebate": "La tarifa del receptor es {{taker_rate)}} antes de que se reembolse el 20% de la tarifa de hospedaje de GUI.",
|
"tooltip-after-withdrawal": "Los detalles de su cuenta después de este retiro.",
|
||||||
"tooltip-interest-charged": "Los intereses se cargan sobre el saldo prestado y están sujetos a cambios.",
|
"tooltip-apy-apr": "APY de depósito / APR de préstamo",
|
||||||
"tooltip-ioc": "Las ordenes inmediatas o canceladas están garantizados para ser el receptor o se cancelarán.",
|
"tooltip-available-after": "Disponible para retirar después de contabilizar la garantía y las órdenes abiertas",
|
||||||
"tooltip-lock-layout": "Diseño de bloqueo",
|
"tooltip-display-cumulative": "Mostrar tamaño acumulativo",
|
||||||
"tooltip-name-onchain": "Los nombres de las cuentas se almacenan en cadena",
|
"tooltip-display-step": "Tamaño del paso de visualización",
|
||||||
"tooltip-post": "Se garantiza que las órdenes de envío solo serán el pedido del fabricante o, de lo contrario, se cancelará.",
|
"tooltip-earn-mngo": "Gana MNGO por creación de mercado en los mercados perpetuos.",
|
||||||
"tooltip-projected-leverage": "Apalancamiento proyectado",
|
"tooltip-enable-margin": "Habilite el margen al contado para esta operación",
|
||||||
"tooltip-reduce": "Reducir solamente ordenes solo reducirá su posición general.",
|
"tooltip-funding": "Funding is paid continuously. The 1hr rate displayed is a rolling average of the past 60 mins.",
|
||||||
"tooltip-reset-layout": "Restablecer diseño",
|
"tooltip-gui-rebate": "La tarifa del receptor es {{taker_rate)}} antes de que se reembolse el 20% de la tarifa de hospedaje de GUI.",
|
||||||
"tooltip-serum-rebate": "El 20% de las tarifas netas de Serum van al host de la GUI. Mango le reembolsa esta tarifa. La tarifa del receptor antes del reembolso de la GUI es {{taker_percent}}",
|
"tooltip-interest-charged": "Los intereses se cargan sobre el saldo prestado y están sujetos a cambios.",
|
||||||
"tooltip-slippage": "Si el precio cae más que su deslizamiento máximo, su pedido se completará parcialmente hasta ese precio.",
|
"tooltip-ioc": "Las ordenes inmediatas o canceladas están garantizados para ser el receptor o se cancelarán.",
|
||||||
"tooltip-switch-layout": "Disposición del interruptor",
|
"tooltip-lock-layout": "Diseño de bloqueo",
|
||||||
"tooltip-unlock-layout": "Desbloquear diseño",
|
"tooltip-name-onchain": "Los nombres de las cuentas se almacenan en cadena",
|
||||||
"total-assets": "Valor de los activos totales",
|
"tooltip-post": "Se garantiza que las órdenes de envío solo serán el pedido del fabricante o, de lo contrario, se cancelará.",
|
||||||
"total-borrow-interest": "Interés total del préstamo",
|
"tooltip-projected-leverage": "Apalancamiento proyectado",
|
||||||
"total-borrow-value": "Valor total del préstamo",
|
"tooltip-reduce": "Reducir solamente ordenes solo reducirá su posición general.",
|
||||||
"total-borrows": "Total de préstamos",
|
"tooltip-reset-layout": "Restablecer diseño",
|
||||||
"total-deposit-interest": "Interés de depósito total",
|
"tooltip-serum-rebate": "El 20% de las tarifas netas de Serum van al host de la GUI. Mango le reembolsa esta tarifa. La tarifa del receptor antes del reembolso de la GUI es {{taker_percent}}",
|
||||||
"total-deposit-value": "Valor total del depósito",
|
"tooltip-slippage": "Si el precio cae más que su deslizamiento máximo, su pedido se completará parcialmente hasta ese precio.",
|
||||||
"total-deposits": "Depósitos totales",
|
"tooltip-switch-layout": "Disposición del interruptor",
|
||||||
"total-funding": "Financiamiento total",
|
"tooltip-unlock-layout": "Desbloquear diseño",
|
||||||
"total-funding-stats": "Financiamiento total ganado / pagado",
|
"total-assets": "Valor de los activos totales",
|
||||||
"total-liabilities": "Valor del pasivo total",
|
"total-borrow-interest": "Interés total del préstamo",
|
||||||
"total-srm": "SRM total en mango",
|
"total-borrow-value": "Valor total del préstamo",
|
||||||
"totals": "Totales",
|
"total-borrows": "Total de préstamos",
|
||||||
"trade": "Comercio",
|
"total-deposit-interest": "Interés de depósito total",
|
||||||
"trade-history": "Historial comercial",
|
"total-deposit-value": "Valor total del depósito",
|
||||||
"trades": "Trades",
|
"total-deposits": "Depósitos totales",
|
||||||
"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.",
|
"total-funding": "Financiamiento total",
|
||||||
"trades-history": "Historial comercial",
|
"total-funding-stats": "Financiamiento total ganado / pagado",
|
||||||
"transaction-sent": "Transacción enviada",
|
"total-liabilities": "Valor del pasivo total",
|
||||||
"trigger-price": "Precio de activación",
|
"total-srm": "SRM total en mango",
|
||||||
"try-again": "Inténtalo de nuevo",
|
"totals": "Totales",
|
||||||
"type": "Tipo",
|
"trade": "Comercio",
|
||||||
"unrealized-pnl": "PnL no realizado",
|
"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.",
|
||||||
"unsettled": "Inestable",
|
"trade-history": "Historial comercial",
|
||||||
"unsettled-balance": "Saldo pendiente",
|
"trades": "Trades",
|
||||||
"unsettled-balances": "Saldos pendientes",
|
"trades-history": "Historial comercial",
|
||||||
"unsettled-positions": "Posiciones sin saldar",
|
"transaction-failed": "Transaction failed",
|
||||||
"update-filters": "Update Filters",
|
"transaction-sent": "Transacción enviada",
|
||||||
"use-explorer-one": "Usar el ",
|
"trigger-price": "Precio de activación",
|
||||||
"use-explorer-three": "para verificar cualquier transacción retrasada.",
|
"try-again": "Inténtalo de nuevo",
|
||||||
"use-explorer-two": "Explorer ",
|
"type": "Tipo",
|
||||||
"utilization": "Utilización",
|
"unrealized-pnl": "PnL no realizado",
|
||||||
"v3-new": "V3 es un programa nuevo e independiente de V2. Puede acceder a su cuenta V2 en el 'More' sección de la barra superior o usando este enlace:",
|
"unsettled": "Inestable",
|
||||||
"v3-unaudited": "El protocolo V3 está en versión beta pública. Este es un software no auditado, utilícelo bajo su propio riesgo.",
|
"unsettled-balance": "Saldo pendiente",
|
||||||
"v3-welcome": "Bienvenido a Mango V3",
|
"unsettled-balances": "Saldos pendientes",
|
||||||
"value": "Valor",
|
"unsettled-positions": "Posiciones sin saldar",
|
||||||
"view": "View",
|
"update-filters": "Update Filters",
|
||||||
"view-all-trades": "Ver todas las operaciones en la página de la cuenta",
|
"use-explorer-one": "Usar el ",
|
||||||
"view-counterparty": "Ver contraparte",
|
"use-explorer-three": "para verificar cualquier transacción retrasada.",
|
||||||
"view-transaction": "Ver transacción",
|
"use-explorer-two": "Explorer ",
|
||||||
"wallet": "Billetera",
|
"utilization": "Utilización",
|
||||||
"wallet-connected": "Billetera conectada",
|
"v3-new": "V3 es un programa nuevo e independiente de V2. Puede acceder a su cuenta V2 en el 'More' sección de la barra superior o usando este enlace:",
|
||||||
"wallet-disconnected": "Billetera desconectada",
|
"v3-unaudited": "El protocolo V3 está en versión beta pública. Este es un software no auditado, utilícelo bajo su propio riesgo.",
|
||||||
"withdraw": "Retirar",
|
"v3-welcome": "Bienvenido a Mango V3",
|
||||||
"withdraw-error": "No se pudo realizar el retiro",
|
"value": "Valor",
|
||||||
"withdraw-funds": "Retirar Fondos",
|
"view": "View",
|
||||||
"withdraw-history": "Historial de retiros",
|
"view-all-trades": "Ver todas las operaciones en la página de la cuenta",
|
||||||
"withdraw-success": "Retirarse exitoso",
|
"view-counterparty": "Ver contraparte",
|
||||||
"withdrawals": "Retiros",
|
"view-transaction": "Ver transacción",
|
||||||
"you-must-leave-enough-sol": "You must leave enough SOL in your wallet to pay for the transaction",
|
"wallet": "Billetera",
|
||||||
"your-account": "Su cuenta",
|
"wallet-connected": "Billetera conectada",
|
||||||
"your-assets": "Sus activos",
|
"wallet-disconnected": "Billetera desconectada",
|
||||||
"your-borrows": "Sus préstamos",
|
"withdraw": "Retirar",
|
||||||
"zero-mngo-rewards": "0 MNGO Rewards"
|
"withdraw-error": "No se pudo realizar el retiro",
|
||||||
|
"withdraw-funds": "Retirar Fondos",
|
||||||
|
"withdraw-history": "Historial de retiros",
|
||||||
|
"withdraw-success": "Retirarse exitoso",
|
||||||
|
"withdrawals": "Retiros",
|
||||||
|
"you-must-leave-enough-sol": "You must leave enough SOL in your wallet to pay for the transaction",
|
||||||
|
"your-account": "Su cuenta",
|
||||||
|
"your-assets": "Sus activos",
|
||||||
|
"your-borrows": "Sus préstamos",
|
||||||
|
"zero-mngo-rewards": "0 MNGO Rewards"
|
||||||
}
|
}
|
|
@ -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