Merge branch 'main' into patch-2
This commit is contained in:
commit
0af16f5bfa
|
@ -41,7 +41,7 @@ import useMangoAccount from '../hooks/useMangoAccount'
|
|||
export async function getStaticProps({ locale }) {
|
||||
return {
|
||||
props: {
|
||||
...(await serverSideTranslations(locale, ['common'])),
|
||||
...(await serverSideTranslations(locale, ['common', 'referrals'])),
|
||||
// Will be passed to the page component as props
|
||||
},
|
||||
}
|
||||
|
@ -70,33 +70,22 @@ const referralHistory = []
|
|||
// ]
|
||||
|
||||
const ProgramDetails = () => {
|
||||
const { t } = useTranslation('referrals')
|
||||
return (
|
||||
<>
|
||||
<h2 className="mb-4">Program Details</h2>
|
||||
<h2 className="mb-4">{t('referrals:program-details')}</h2>
|
||||
<ul className="list-disc pl-3">
|
||||
<li>
|
||||
Your referral code is automatically applied when a user creates a
|
||||
Mango Account using your link.
|
||||
</li>
|
||||
<li>
|
||||
When any of your referrals trade Mango Perps, you earn 16% of their
|
||||
trade fees.
|
||||
</li>
|
||||
<li>
|
||||
Plus, for using your link they get a 4% discount off their Mango Perp
|
||||
fees.
|
||||
</li>
|
||||
<li>
|
||||
You must have at least 10,000 MNGO in your Mango Account to qualify
|
||||
for generating referrals and earning referral rewards.
|
||||
</li>
|
||||
<li>{t('referrals:program-details-1')}</li>
|
||||
<li>{t('referrals:program-details-2')}</li>
|
||||
<li>{t('referrals:program-details-3')}</li>
|
||||
<li>{t('referrals:program-details-4')}</li>
|
||||
</ul>
|
||||
</>
|
||||
)
|
||||
}
|
||||
|
||||
export default function Referral() {
|
||||
const { t } = useTranslation('common')
|
||||
const { t } = useTranslation(['common', 'referrals'])
|
||||
const mangoGroup = useMangoStore(mangoGroupSelector)
|
||||
const mangoCache = useMangoStore(mangoCacheSelector)
|
||||
const { mangoAccount } = useMangoAccount()
|
||||
|
@ -145,7 +134,7 @@ export default function Referral() {
|
|||
const id = value.replace(/ /g, '')
|
||||
setCustomRefLinkInput(id)
|
||||
if (id.length > 32) {
|
||||
setInputError('Referral IDs must be less then 33 characters')
|
||||
setInputError(t('referrals:too-long-error'))
|
||||
} else {
|
||||
setInputError('')
|
||||
}
|
||||
|
@ -153,10 +142,10 @@ export default function Referral() {
|
|||
|
||||
const validateRefIdInput = () => {
|
||||
if (customRefLinkInput.length >= 33) {
|
||||
setInputError('Referral IDs must be less then 33 characters')
|
||||
setInputError(t('referrals:too-long-error'))
|
||||
}
|
||||
if (customRefLinkInput.length === 0) {
|
||||
setInputError('Enter a referral ID')
|
||||
setInputError(t('referrals:enter-referral-id'))
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -171,13 +160,13 @@ export default function Referral() {
|
|||
)
|
||||
notify({
|
||||
txid,
|
||||
title: 'Custom referral link created',
|
||||
title: t('referrals:link-created'),
|
||||
})
|
||||
fetchCustomReferralLinks()
|
||||
} catch (e) {
|
||||
notify({
|
||||
type: 'error',
|
||||
title: 'Unable to create referral link',
|
||||
title: t('referrals:link-not-created'),
|
||||
description: e.message,
|
||||
txid: e.txid,
|
||||
})
|
||||
|
@ -210,11 +199,10 @@ export default function Referral() {
|
|||
<TopBar />
|
||||
<PageBodyContainer>
|
||||
<div className="py-4 md:pb-4 md:pt-10">
|
||||
<h1 className={`mb-1`}>Sow the Mango Seed</h1>
|
||||
<h1 className={`mb-1`}>{t('referrals:sow-seed')}</h1>
|
||||
<div className="flex flex-col sm:flex-row items-start">
|
||||
<p className="mb-0 mr-2">
|
||||
Earn 16% of the perp fees paid by anyone you refer. Plus, they get
|
||||
a 4% perp fee discount.
|
||||
{t('referrals:earn-16')}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -224,11 +212,11 @@ export default function Referral() {
|
|||
<>
|
||||
{/* {hasReferrals ? (
|
||||
<div className="col-span-12">
|
||||
<h2 className="mb-4">Your Referrals</h2>
|
||||
<h2 className="mb-4">{t('referrals:your-referrals')}</h2>
|
||||
<div className="border-b border-th-bkg-4 sm:border-b-0 grid grid-cols-2 grid-row-flow sm:gap-6">
|
||||
<div className="sm:border-b border-t border-th-bkg-4 col-span-2 sm:col-span-1 p-3 sm:p-4">
|
||||
<div className="pb-0.5 text-th-fgd-3 text-xs sm:text-sm">
|
||||
Total Earnings
|
||||
{t('referrals:total-earnings')}
|
||||
</div>
|
||||
<div className="font-bold text-th-fgd-1 text-xl sm:text-2xl">
|
||||
$150.50
|
||||
|
@ -236,7 +224,7 @@ export default function Referral() {
|
|||
</div>
|
||||
<div className="sm:border-b border-t border-th-bkg-4 col-span-2 sm:col-span-1 p-3 sm:p-4">
|
||||
<div className="pb-0.5 text-th-fgd-3 text-xs sm:text-sm">
|
||||
Total referrals
|
||||
{t('referrals:total-referrals')}
|
||||
</div>
|
||||
<div className="font-bold text-th-fgd-1 text-xl sm:text-2xl">
|
||||
15
|
||||
|
@ -253,14 +241,14 @@ export default function Referral() {
|
|||
<div className="flex flex-col w-full">
|
||||
{hasRequiredMngo ? (
|
||||
<div className="bg-th-bkg-3 flex-1 p-6 rounded-md">
|
||||
<h2 className="mb-4">Your Links</h2>
|
||||
<h2 className="mb-4">{t('referrals:your-links')}</h2>
|
||||
{!loading ? (
|
||||
!hasCustomRefLinks ? (
|
||||
<Table>
|
||||
<thead>
|
||||
<TrHead>
|
||||
<Th>Link</Th>
|
||||
<Th>Copy Link</Th>
|
||||
<Th>{t('referrlals:link')}</Th>
|
||||
<Th>{t('referrlals:copy-link')}</Th>
|
||||
</TrHead>
|
||||
</thead>
|
||||
<tbody>
|
||||
|
@ -306,10 +294,10 @@ export default function Referral() {
|
|||
<Table>
|
||||
<thead>
|
||||
<TrHead>
|
||||
<Th>Link</Th>
|
||||
<Th>{t('referrals:link')}</Th>
|
||||
<Th>
|
||||
<div className="flex justify-end">
|
||||
Copy Link
|
||||
{t('referrals:copy-link')}
|
||||
</div>
|
||||
</Th>
|
||||
</TrHead>
|
||||
|
@ -368,13 +356,11 @@ export default function Referral() {
|
|||
) : (
|
||||
<div className="bg-th-bkg-3 flex flex-col flex-1 items-center justify-center px-4 py-8 rounded-md text-center">
|
||||
<MngoMonoIcon className="h-6 mb-2 text-th-fgd-2 w-6" />
|
||||
<p className="mb-0">
|
||||
You need 10,000 MNGO in your Mango Account
|
||||
</p>
|
||||
<p className="mb-0">{t('referrals:10k-mngo')}</p>
|
||||
|
||||
<Link href={'/?name=MNGO/USDC'} shallow={true}>
|
||||
<a className="mt-4 px-6 py-2 bg-th-bkg-button font-bold rounded-full text-th-fgd-1 hover:brightness-[1.15] hover:text-th-fgd-1 focus:outline-none">
|
||||
Buy MNGO
|
||||
{t('referrals:buy-mngo')}
|
||||
</a>
|
||||
</Link>
|
||||
</div>
|
||||
|
@ -382,13 +368,13 @@ export default function Referral() {
|
|||
</div>
|
||||
{hasRequiredMngo ? (
|
||||
<div className="min-w-[25%] bg-th-bkg-3 p-6 rounded-md w-full xl:w-1/3">
|
||||
<h2 className="mb-1">Custom Referral Links</h2>
|
||||
<h2 className="mb-1">{t('referrals:custom-links')}</h2>
|
||||
<p className="mb-4">
|
||||
You can generate up to 5 custom referral links.
|
||||
{t('referrals:custom-links-limit')}
|
||||
</p>
|
||||
<div className="pb-6">
|
||||
<label className="block mb-2 text-th-fgd-3 text-xs">
|
||||
Referral ID
|
||||
{t('referrals:referral-id')}
|
||||
</label>
|
||||
<Input
|
||||
className="bg-th-bkg-1 border border-th-fgd-4 default-transition font-bold pl-4 h-12 focus:outline-none rounded-md text-base tracking-wide w-full hover:border-th-primary focus:border-th-primary"
|
||||
|
@ -415,7 +401,7 @@ export default function Referral() {
|
|||
disabled={existingCustomRefLinks.length === 5}
|
||||
>
|
||||
<LinkIcon className="h-4 mr-1.5 w-4" />
|
||||
Generate Custom Link
|
||||
{t('referrals:generate-link')}
|
||||
</button>
|
||||
</div>
|
||||
) : null}
|
||||
|
@ -424,16 +410,18 @@ export default function Referral() {
|
|||
|
||||
{referralHistory.length > 0 ? (
|
||||
<div className="col-span-12">
|
||||
<h2 className="mb-4">Earnings History</h2>
|
||||
<h2 className="mb-4">{t('referrals:earnings-history')}</h2>
|
||||
{!isMobile ? (
|
||||
<Table>
|
||||
<thead>
|
||||
<TrHead>
|
||||
<Th>{t('date')}</Th>
|
||||
<Th>Referral ID</Th>
|
||||
<Th>Referee</Th>
|
||||
<Th>{t('referrals:referral-id')}</Th>
|
||||
<Th>{t('referrals:referee')}</Th>
|
||||
<Th>
|
||||
<div className="flex justify-end">Fee Earned</div>
|
||||
<div className="flex justify-end">
|
||||
{t('referrals:fee-earned')}
|
||||
</div>
|
||||
</Th>
|
||||
</TrHead>
|
||||
</thead>
|
||||
|
@ -465,7 +453,7 @@ export default function Referral() {
|
|||
<>
|
||||
<MobileTableHeader
|
||||
colOneHeader={t('date')}
|
||||
colTwoHeader="Fee Earned"
|
||||
colTwoHeader={t('referrals:fee-eanred')}
|
||||
/>
|
||||
{referralHistory.map((ref, index) => (
|
||||
<ExpandableRow
|
||||
|
@ -484,13 +472,13 @@ export default function Referral() {
|
|||
<div className="grid grid-cols-2 grid-flow-row gap-4 pb-4">
|
||||
<div className="text-left">
|
||||
<div className="pb-0.5 text-th-fgd-3 text-xs">
|
||||
Referral ID
|
||||
{t('referrals:referral-id')}
|
||||
</div>
|
||||
<div>{ref.referralLink}</div>
|
||||
</div>
|
||||
<div className="text-left">
|
||||
<div className="pb-0.5 text-th-fgd-3 text-xs">
|
||||
Referee
|
||||
{t('referrals:referee')}
|
||||
</div>
|
||||
<Link
|
||||
href={`/account?pubkey=${ref.referee}`}
|
||||
|
|
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
"10k-mngo": "You need 10,000 MNGO in your Mango Account",
|
||||
"buy-mngo": "Buy MNGO",
|
||||
"copy-link": "Copy Link",
|
||||
"custom-links": "Custom Referral Links",
|
||||
"custom-links-limit": "You can generate up to 5 custom referral links.",
|
||||
"earn-16": "Earn 16% of the perp fees paid by anyone you refer. Plus, they get a 4% perp fee discount.",
|
||||
"earnings-history": "Earnings History",
|
||||
"enter-referral-id": "Enter a referral ID",
|
||||
"fee-earned": "Fee Earned",
|
||||
"generate-link": "Generate Custom Link",
|
||||
"link": "Link",
|
||||
"link-created": "Custom referral link created",
|
||||
"link-not-created": "Unable to create referral link",
|
||||
"program-details": "Program Details",
|
||||
"program-details-1": "Your referral code is automatically applied when a user creates a Mango Account using your link.",
|
||||
"program-details-2": "When any of your referrals trade Mango Perps, you earn 16% of their trade fees.",
|
||||
"program-details-3": "Plus, for using your link they get a 4% discount off their Mango Perp fees.",
|
||||
"program-details-4": "You must have at least 10,000 MNGO in your Mango Account to qualify for generating referrals and earning referral rewards.",
|
||||
"referee": "Referee",
|
||||
"referral-id": "Referral ID",
|
||||
"sow-seed": "Sow the Mango Seed",
|
||||
"too-long-error": "Referral IDs must be less then 33 characters",
|
||||
"total-earnings": "Total Earnings",
|
||||
"total-referrals": "Total referrals",
|
||||
"your-links": "Your Links",
|
||||
"your-referrals": "Your Referrals"
|
||||
}
|
|
@ -4,29 +4,29 @@
|
|||
"accept": "Aceptar",
|
||||
"accept-terms": "Entiendo y acepto los riesgos",
|
||||
"account": "Cuenta",
|
||||
"account-address-warning": "Do not send tokens directly to your account address.",
|
||||
"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-title": "Detalles de la cuenta",
|
||||
"account-equity": "Account Equity",
|
||||
"account-equity-chart-title": "Account Equity",
|
||||
"account-health": "Account Health",
|
||||
"account-equity": "Patrimonio de la cuenta",
|
||||
"account-equity-chart-title": "Patrimonio 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-title": "Estado de la cuenta",
|
||||
"account-name": "Nombre de la cuenta",
|
||||
"account-performance": "Account Performance",
|
||||
"account-pnl": "Account PNL",
|
||||
"account-pnl-chart-title": "Account PNL",
|
||||
"account-performance": "Rendimiento de la cuenta",
|
||||
"account-pnl": "Ganancia o pérdida de la cuenta",
|
||||
"account-pnl-chart-title": "Ganancia o pérdida de la cuenta",
|
||||
"account-risk": "Riesgo de cuenta",
|
||||
"account-value": "Valor de la cuenta",
|
||||
"accounts": "Cuentas",
|
||||
"active-alerts": "Active Alerts",
|
||||
"add-more-sol": "Add more SOL to your wallet to avoid failed transactions.",
|
||||
"active-alerts": "Alertas activas",
|
||||
"add-more-sol": "Agregue más SOL a su billetera para evitar transacciones fallidas.",
|
||||
"add-name": "Añadir nombre",
|
||||
"alert-health": "Alert when health is below",
|
||||
"alert-info": "Email when health <= {{health}}%",
|
||||
"alerts": "Alerts",
|
||||
"alerts-disclaimer": "Do not rely solely on alerts to protect your account. We can't guarantee they will be delivered.",
|
||||
"alerts-max": "You've reached the maximum number of active alerts.",
|
||||
"alert-health": "Alerta cuando la salud de tu cuenta está baja",
|
||||
"alert-info": "Envía correo electrónico cuando la salud de tu cuenta es <= {{health}}%",
|
||||
"alerts": "Alertas",
|
||||
"alerts-disclaimer": "No confíe únicamente en las alertas para proteger su cuenta. No podemos garantizar que serán entregados.",
|
||||
"alerts-max": "Has alcanzado el número máximo de alertas activas.",
|
||||
"all-assets": "Todos los activos",
|
||||
"amount": "Monto",
|
||||
"approximate-time": "Tiempo aproximado",
|
||||
|
@ -36,9 +36,9 @@
|
|||
"available-balance": "Saldo disponible",
|
||||
"average-borrow": "Tasas de prestadas promedio",
|
||||
"average-deposit": "Tasas de depósito promedio",
|
||||
"average-entry": "Precio de entrada medio",
|
||||
"average-entry": "Precio de entrada promedio",
|
||||
"average-funding": "Tasa de financiamiento promedio de 1 hora",
|
||||
"back": "atrás",
|
||||
"back": "Atrás",
|
||||
"balance": "Equilibrio",
|
||||
"balances": "Saldos",
|
||||
"being-liquidated": "¡Estás siendo liquidada!",
|
||||
|
@ -63,7 +63,7 @@
|
|||
"character-limit": "El nombre de la cuenta debe tener 32 caracteres o menos",
|
||||
"chinese": "简体中文",
|
||||
"chinese-traditional": "繁體中文",
|
||||
"claim": "reclamar",
|
||||
"claim": "Reclamar",
|
||||
"claim-reward": "Reclamar recompensa",
|
||||
"close": "Cerrar",
|
||||
"close-and-long": "Posición cerrada + Empezar a comprar",
|
||||
|
@ -76,35 +76,35 @@
|
|||
"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",
|
||||
"condition": "Condición",
|
||||
"confirm": "Confirm",
|
||||
"confirm": "Confirmar",
|
||||
"confirm-deposit": "Confirmar depósito",
|
||||
"confirm-withdraw": "Confirmar retiro",
|
||||
"confirming-transaction": "Confirming Transaction",
|
||||
"confirming-transaction": "Confirmando transacción",
|
||||
"connect": "Conectar",
|
||||
"connect-view": "Conecte una billetera para ver su cuenta",
|
||||
"connect-wallet": "Conecte una billetera",
|
||||
"connect-wallet-tip-desc": "Te mostraremos los alrededores...",
|
||||
"connect-wallet-tip-title": "Conecta tu billetera",
|
||||
"connected-to": "Conectado a billetera ",
|
||||
"copy-address": "Copy address",
|
||||
"copy-address": "Copiar dirección",
|
||||
"country-not-allowed": "País no permitido",
|
||||
"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-alert": "Create Alert",
|
||||
"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-alert": "Crear alerta",
|
||||
"current-stats": "Estadísticas actuales",
|
||||
"custom": "Personalizada",
|
||||
"daily-change": "Cambio diario",
|
||||
"daily-high": "24hr High",
|
||||
"daily-low": "24hr Low",
|
||||
"daily-high": "24hr máximo",
|
||||
"daily-low": "24hr mínimo",
|
||||
"daily-range": "Rango diario",
|
||||
"daily-volume": "Volumen de 24 horas",
|
||||
"dark": "Oscura",
|
||||
"data-refresh-tip-desc": "Los datos se actualizan automáticamente, pero puede 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",
|
||||
"date": "Date",
|
||||
"date": "Fecha",
|
||||
"default-market": "Mercado predeterminado",
|
||||
"default-spot-margin": "Trade with margin by default",
|
||||
"delay-displaying-recent": "There may be a delay in displaying the latest activity.",
|
||||
"default-spot-margin": "Comercia con margen por defecto",
|
||||
"delay-displaying-recent": "Puede haber un retraso en la visualización de la última actividad.",
|
||||
"deposit": "Depositar",
|
||||
"deposit-before": "Necesita más {{tokenSymbol}} en su billetera para pagar completamente su préstamo",
|
||||
"deposit-failed": "El depósito falló",
|
||||
|
@ -118,27 +118,27 @@
|
|||
"deposit-value": "Valor de depósito",
|
||||
"depositing": "Estás a punto de depositar",
|
||||
"deposits": "Depósitos",
|
||||
"depth-rewarded": "Depth Rewarded",
|
||||
"depth-rewarded": "Liquidez recompensada",
|
||||
"details": "Detalles",
|
||||
"disconnect": "Disconnect",
|
||||
"done": "Done",
|
||||
"disconnect": "Desconectar",
|
||||
"done": "Hecho",
|
||||
"edit": "Editar",
|
||||
"edit-name": "Edit Name",
|
||||
"edit-name": "Actualizar nombre",
|
||||
"edit-nickname": "Edite el apodo público de su cuenta",
|
||||
"email-address": "Email Address",
|
||||
"english": "English",
|
||||
"email-address": "Dirección de correo electrónico",
|
||||
"english": "Inglés",
|
||||
"enter-amount": "Ingrese una cantidad para depositar",
|
||||
"enter-name": "Ingrese un nombre de cuenta",
|
||||
"equity": "Capital",
|
||||
"est-period-end": "Est Period End",
|
||||
"est-period-end": "Fin del período estimado",
|
||||
"est-slippage": "Deslizamiento estimado",
|
||||
"estimated-liq-price": "Est. Liq. Price",
|
||||
"estimated-liq-price": "Precio líquido estimado",
|
||||
"explorer": "Explorador",
|
||||
"export-data": "Export CSV",
|
||||
"export-data-empty": "No data to export",
|
||||
"export-data-success": "CSV exported successfully",
|
||||
"favorite": "Favorite",
|
||||
"favorites": "Favorites",
|
||||
"export-data": "Exportar a CSV",
|
||||
"export-data-empty": "No hay datos para exportar",
|
||||
"export-data-success": "CSV exportado con éxito",
|
||||
"favorite": "Favorito",
|
||||
"favorites": "Favoritos",
|
||||
"fee": "Tarifa",
|
||||
"fee-discount": "Comisiones",
|
||||
"first-deposit-desc": "Necesita 0.035 SOL para crear una cuenta de mango.",
|
||||
|
@ -147,19 +147,19 @@
|
|||
"get-started": "Comenzar",
|
||||
"health": "Salud",
|
||||
"health-check": "Verificación del estado de la cuenta",
|
||||
"health-ratio": "Relación de salud",
|
||||
"hide-all": "Ocultar todo de Nav",
|
||||
"health-ratio": "Proporción de salud",
|
||||
"hide-all": "Ocultar toda la navegación",
|
||||
"hide-dust": "Ocultar saldos pequeños",
|
||||
"high": "Alta",
|
||||
"history": "La Historia",
|
||||
"history-empty": "History empty.",
|
||||
"hourly-borrow-interest": "Préstamo prestado por hora",
|
||||
"history": "Historial",
|
||||
"history-empty": "Historial vacío.",
|
||||
"hourly-borrow-interest": "Interés por préstamo por hora",
|
||||
"hourly-deposit-interest": "Interés por depósito por hora",
|
||||
"hourly-funding": "Financiamiento por hora",
|
||||
"in-orders": "En ordenes",
|
||||
"includes-borrow": "Incluye el prestado de",
|
||||
"in-orders": "En órdenes",
|
||||
"includes-borrow": "Incluye el préstamo",
|
||||
"init-error": "No se pudo realizar la operación de depósito y cuenta de margen inicial",
|
||||
"init-health": "Salud Init",
|
||||
"init-health": "Salud inicial",
|
||||
"initial-deposit": "Depósito inicial",
|
||||
"insufficient-balance-deposit": "Saldo insuficiente. Reducir la cantidad a depositar",
|
||||
"insufficient-balance-withdraw": "Saldo insuficiente. Pedir prestados fondos para retirar",
|
||||
|
@ -185,24 +185,24 @@
|
|||
"leverage-too-high": "Apalancamiento demasiado alto. Reducir la cantidad a retirar",
|
||||
"liabilities": "Pasivos",
|
||||
"light": "Ligera",
|
||||
"limit": "Limite",
|
||||
"limit-order": "orden de límite",
|
||||
"limit-price": "Limit Price",
|
||||
"limit": "Límite",
|
||||
"limit-order": "Orden de límite",
|
||||
"limit-price": "Precio límite",
|
||||
"liquidation-history": "Historial de liquidación",
|
||||
"liquidations": "Liquidaciones",
|
||||
"liquidity": "Liquidez",
|
||||
"liquidity-mining": "Liquidity Mining",
|
||||
"long": "larga",
|
||||
"liquidity-mining": "Minería de liquidez",
|
||||
"long": "Larga",
|
||||
"low": "Bajo",
|
||||
"maint-health": "Salud de mantenimiento",
|
||||
"make-trade": "Hacer un trato",
|
||||
"maker": "Maker",
|
||||
"maker-fee": "orden límite",
|
||||
"maker-fee": "Orden límite",
|
||||
"mango": "Mango",
|
||||
"mango-accounts": "Cuentas Mango",
|
||||
"margin": "Margen",
|
||||
"margin-available": "Margen disponible",
|
||||
"market": "Merado",
|
||||
"market": "Mercado",
|
||||
"market-close": "Cierre de mercado",
|
||||
"market-data": "Datos del mercado",
|
||||
"market-details": "Detalles del mercado",
|
||||
|
@ -210,16 +210,16 @@
|
|||
"markets": "Mercados",
|
||||
"max": "Máximo",
|
||||
"max-borrow": "Monto máximo del préstamo",
|
||||
"max-depth-bps": "Max Depth Bps",
|
||||
"max-slippage": "Máximo deslizamiento",
|
||||
"max-depth-bps": "Profundidad máxima de Bps",
|
||||
"max-slippage": "Deslizamiento máximo ",
|
||||
"max-with-borrow": "Máximo con préstamo",
|
||||
"minutes": "mins",
|
||||
"minutes": "minutos",
|
||||
"missing-price": "Falta el precio",
|
||||
"missing-size": "Falta el tamaño",
|
||||
"missing-trigger": "Falta el precio de activación",
|
||||
"mngo-left-period": "MNGO Left In Period",
|
||||
"mngo-per-period": "MNGO Per Period",
|
||||
"mngo-rewards": "Recompensas MNGO",
|
||||
"mngo-left-period": "MNGO restante en el período",
|
||||
"mngo-per-period": "MNGO por Período",
|
||||
"mngo-rewards": "Recompensas en MNGO",
|
||||
"moderate": "Moderada",
|
||||
"more": "Más",
|
||||
"msrm-deposit-error": "Error depositante MSRM",
|
||||
|
@ -235,19 +235,19 @@
|
|||
"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-account": "Nuevo",
|
||||
"new-alert": "New Alert",
|
||||
"new-alert": "Alerta nueva",
|
||||
"next": "Próximo",
|
||||
"no-account-found": "No Account Found",
|
||||
"no-account-found": "Cuenta no encontrada",
|
||||
"no-address": "No ${tokenSymbol} dirección de billetera encontrada",
|
||||
"no-alerts": "No Active Alerts",
|
||||
"no-alerts-desc": "Create an alert to be notified when your account health is low.",
|
||||
"no-alerts": "No hay alertas activas",
|
||||
"no-alerts-desc": "Cree una alerta para recibir una notificación cuando el estado de su cuenta sea bajo.",
|
||||
"no-balances": "Sin saldos",
|
||||
"no-borrows": "No se encontraron préstamos.",
|
||||
"no-funding": "Sin fondos ganados / pagados",
|
||||
"no-history": "Sin historial comercial",
|
||||
"no-interest": "Sin intereses ganados / pagados",
|
||||
"no-margin": "No se encontraron cuentas de margen",
|
||||
"no-markets": "No markets found",
|
||||
"no-markets": "No se encontraron mercados",
|
||||
"no-orders": "No hay órdenes abiertas",
|
||||
"no-perp": "No hay puestos de delincuentes",
|
||||
"no-unsettled": "No hay fondos pendientes",
|
||||
|
@ -268,7 +268,7 @@
|
|||
"performance-insights": "Performance Insights",
|
||||
"period-progress": "Period Progress",
|
||||
"perp": "perpetuo",
|
||||
"perp-desc": "Perpetual swaps settled in USDC",
|
||||
"perp-desc": "Canjeos perpetuos liquidados en USDC",
|
||||
"perp-fees": "Tarifas de Mango Perp",
|
||||
"perp-positions": "Posiciones perpetuas",
|
||||
"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.",
|
||||
|
@ -316,9 +316,9 @@
|
|||
"select-asset": "Seleccione un activo",
|
||||
"select-margin": "Seleccionar cuenta de margen",
|
||||
"sell": "Vender",
|
||||
"serum-fees": "Tarifas de suero spot",
|
||||
"set-stop-loss": "Establecer Stop Loss",
|
||||
"set-take-profit": "Establecer Take Profit",
|
||||
"serum-fees": "Tarifas de la bolsa decentralizada 'serum'",
|
||||
"set-stop-loss": "Establecer Detener Pérdidas",
|
||||
"set-take-profit": "Establecer Tomar Ganancias",
|
||||
"settings": "Ajustes",
|
||||
"settle": "Resolver",
|
||||
"settle-all": "Liquidar todo",
|
||||
|
@ -326,30 +326,30 @@
|
|||
"settle-success": "Fondos liquidados con éxito",
|
||||
"short": "Vender",
|
||||
"show-all": "Mostrar todo en Nav",
|
||||
"show-less": "Show less",
|
||||
"show-more": "Show more",
|
||||
"show-less": "Mostrar menos",
|
||||
"show-more": "Mostrar más",
|
||||
"show-tips": "Mostrar sugerencias",
|
||||
"show-zero": "Mostrar saldos cero",
|
||||
"side": "Lado",
|
||||
"size": "Tamaño",
|
||||
"slippage-warning": "This order will likely have extremely large slippage! Consider using Stop Limit or Take Profit Limit order instead.",
|
||||
"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.",
|
||||
"spanish": "Español",
|
||||
"spot": "Spot",
|
||||
"spot-desc": "Spot margin quoted in USDC",
|
||||
"spot": "Al contado",
|
||||
"spot-desc": "Margen al contado cotizado en USDC",
|
||||
"spread": "Propago",
|
||||
"stats": "Estadísticas",
|
||||
"stop-limit": "Límite de parada",
|
||||
"stop-loss": "Detener la pérdida de",
|
||||
"stop-loss": "Detener pérdida",
|
||||
"stop-price": "Precio de parada",
|
||||
"successfully-placed": "Comercio colocado con éxito",
|
||||
"supported-assets": "Financie la billetera con uno de los activos admitidos.",
|
||||
"swap": "Intercambio",
|
||||
"take-profit": "Tomar ganancias",
|
||||
"take-profit-limit": "Tomar el límite de ganancias",
|
||||
"taker": "Taker",
|
||||
"taker-fee": "Orden mercado",
|
||||
"target-period-length": "Target Period Length",
|
||||
"themes-tip-desc": "Mango, Dark o Light (si te gusta eso).",
|
||||
"taker": "Receptor",
|
||||
"taker-fee": "Tarifa del receptor",
|
||||
"target-period-length": "Duración del período objetivo",
|
||||
"themes-tip-desc": "Mango, Oscuro o Claro (si te gusta eso).",
|
||||
"themes-tip-title": "Temas de color",
|
||||
"time": "Tiempo",
|
||||
"token": "Simbólico",
|
||||
|
@ -362,17 +362,17 @@
|
|||
"tooltip-display-step": "Tamaño del paso de visualización",
|
||||
"tooltip-earn-mngo": "Gana MNGO por creación de mercado en los mercados perpetuos.",
|
||||
"tooltip-enable-margin": "Habilite el margen al contado para esta operación",
|
||||
"tooltip-gui-rebate": "La tarifa del tomador es {{taker_rate)}} antes de que se reembolse el 20% de la tarifa de hospedaje de GUI.",
|
||||
"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-interest-charged": "Los intereses se cargan sobre el saldo prestado y están sujetos a cambios.",
|
||||
"tooltip-ioc": "Los ordenes inmediatos o cancelados están garantizados para ser el tomador o se cancelarán.",
|
||||
"tooltip-ioc": "Las ordenes inmediatas o canceladas están garantizados para ser el receptor o se cancelarán.",
|
||||
"tooltip-lock-layout": "Diseño de bloqueo",
|
||||
"tooltip-name-onchain": "Los nombres de las cuentas se almacenan en cadena",
|
||||
"tooltip-post": "Se garantiza que los ordenes de envío solo serán el pedido del fabricante o, de lo contrario, se cancelará.",
|
||||
"tooltip-post": "Se garantiza que las órdenes de envío solo serán el pedido del fabricante o, de lo contrario, se cancelará.",
|
||||
"tooltip-projected-leverage": "Apalancamiento proyectado",
|
||||
"tooltip-reduce": "Reducir solo los ordenes solo reducirá su posición general.",
|
||||
"tooltip-reduce": "Reducir solamente ordenes solo reducirá su posición general.",
|
||||
"tooltip-reset-layout": "Restablecer diseño",
|
||||
"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-slippage": "If price slips more than your max slippage, your order will be partially filled up to that price.",
|
||||
"tooltip-slippage": "Si el precio cae más que su deslizamiento máximo, su pedido se completará parcialmente hasta ese precio.",
|
||||
"tooltip-switch-layout": "Disposición del interruptor",
|
||||
"tooltip-unlock-layout": "Desbloquear diseño",
|
||||
"total-assets": "Valor de los activos totales",
|
||||
|
@ -397,11 +397,11 @@
|
|||
"type": "Tipo",
|
||||
"unrealized-pnl": "PnL no realizado",
|
||||
"unsettled": "Inestable",
|
||||
"unsettled-balance": "saldo pendiente",
|
||||
"unsettled-balance": "Saldo pendiente",
|
||||
"unsettled-balances": "Saldos pendientes",
|
||||
"unsettled-positions": "Posiciones sin saldar",
|
||||
"use-explorer-one": "Use the ",
|
||||
"use-explorer-three": "to verify any delayed transactions.",
|
||||
"use-explorer-one": "Usar el ",
|
||||
"use-explorer-three": "para verificar cualquier transacción retrasada.",
|
||||
"use-explorer-two": "Explorer ",
|
||||
"utilization": "Utilización",
|
||||
"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:",
|
||||
|
@ -409,11 +409,11 @@
|
|||
"v3-welcome": "Bienvenido a Mango V3",
|
||||
"value": "Valor",
|
||||
"view-all-trades": "Ver todas las operaciones en la página de la cuenta",
|
||||
"view-counterparty": "View Counterparty",
|
||||
"view-transaction": "View Transaction",
|
||||
"wallet": "Wallet",
|
||||
"wallet-connected": "Wallet connected",
|
||||
"wallet-disconnected": "Disconnected from wallet",
|
||||
"view-counterparty": "Ver contraparte",
|
||||
"view-transaction": "Ver transacción",
|
||||
"wallet": "Billetera",
|
||||
"wallet-connected": "Billetera conectada",
|
||||
"wallet-disconnected": "Billetera desconectada",
|
||||
"withdraw": "Retirar",
|
||||
"withdraw-error": "No se pudo realizar el retiro",
|
||||
"withdraw-funds": "Retirar Fondos",
|
||||
|
|
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
"10k-mngo": "You need 10,000 MNGO in your Mango Account",
|
||||
"buy-mngo": "Buy MNGO",
|
||||
"copy-link": "Copy Link",
|
||||
"custom-links": "Custom Referral Links",
|
||||
"custom-links-limit": "You can generate up to 5 custom referral links.",
|
||||
"earn-16": "Earn 16% of the perp fees paid by anyone you refer. Plus, they get a 4% perp fee discount.",
|
||||
"earnings-history": "Earnings History",
|
||||
"enter-referral-id": "Enter a referral ID",
|
||||
"fee-earned": "Fee Earned",
|
||||
"generate-link": "Generate Custom Link",
|
||||
"link": "Link",
|
||||
"link-created": "Custom referral link created",
|
||||
"link-not-created": "Unable to create referral link",
|
||||
"program-details": "Program Details",
|
||||
"program-details-1": "Your referral code is automatically applied when a user creates a Mango Account using your link.",
|
||||
"program-details-2": "When any of your referrals trade Mango Perps, you earn 16% of their trade fees.",
|
||||
"program-details-3": "Plus, for using your link they get a 4% discount off their Mango Perp fees.",
|
||||
"program-details-4": "You must have at least 10,000 MNGO in your Mango Account to qualify for generating referrals and earning referral rewards.",
|
||||
"referee": "Referee",
|
||||
"referral-id": "Referral ID",
|
||||
"sow-seed": "Sow the Mango Seed",
|
||||
"too-long-error": "Referral IDs must be less then 33 characters",
|
||||
"total-earnings": "Total Earnings",
|
||||
"total-referrals": "Total referrals",
|
||||
"your-links": "Your Links",
|
||||
"your-referrals": "Your Referrals"
|
||||
}
|
|
@ -1,426 +1,427 @@
|
|||
{
|
||||
"about-to-withdraw": "您正在存款",
|
||||
"above": "高于",
|
||||
"accept": "接受",
|
||||
"accept-terms": "我明白并接受使用此平台的风险",
|
||||
"account": "帐户",
|
||||
"account-address-warning": "千万不要将币种直接传送至帐户地址。",
|
||||
"account-details-tip-desc": "当您进行首次存款时,我们将为您设置一个Mango账户。您的钱包中至少需要0.0035 SOL才能支付创建帐户的押金。",
|
||||
"account-details-tip-title": "帐户细节",
|
||||
"account-equity": "帐户余额",
|
||||
"account-equity-chart-title": "帐户余额",
|
||||
"account-health": "帐户健康",
|
||||
"account-health-tip-desc": "为了避免被清算,您必须将帐户健康度保持在0%以上。为了提高健康度,请减少借贷或存入资产。",
|
||||
"account-health-tip-title": "帐户健康",
|
||||
"account-name": "帐户标签",
|
||||
"account-performance": "帐户表现",
|
||||
"account-pnl": "帐户盈亏",
|
||||
"account-pnl-chart-title": "帐户盈亏",
|
||||
"account-risk": "帐户风险度",
|
||||
"account-value": "帐户价值",
|
||||
"accounts": "帐户",
|
||||
"active-alerts": "活动警报",
|
||||
"add-more-sol": "为了避免交易出错请给被连结的钱包多存入一点SOL。",
|
||||
"add-name": "加标签",
|
||||
"alerts": "警报",
|
||||
"alert-health": "健康度低于此度发警报",
|
||||
"alert-info": "健康度在{{health}}%以下时发电子邮件",
|
||||
"alerts-disclaimer": "请别全靠警报来保护资产。我们无法保证会准时发出。",
|
||||
"alerts-max": "您以达到活动警报数量限制。",
|
||||
"all-assets": "所有资产",
|
||||
"amount": "数量",
|
||||
"approximate-time": "大概时间",
|
||||
"asset": "资产",
|
||||
"assets": "资产",
|
||||
"assets-liabilities": "资产和债务",
|
||||
"available-balance": "可用的金额",
|
||||
"average-borrow": "平均借贷率",
|
||||
"average-deposit": "平均存款率",
|
||||
"average-entry": "平均开仓价",
|
||||
"average-funding": "平均资金费率(1小时)",
|
||||
"back": "回去",
|
||||
"balance": "帐户余额",
|
||||
"balances": "帐户余额",
|
||||
"being-liquidated": "您的帐户正在被清算!",
|
||||
"below": "低于",
|
||||
"borrow": "借贷",
|
||||
"borrow-funds": "借贷",
|
||||
"borrow-interest": "借贷利息",
|
||||
"borrow-notification": "借贷时货币会提到您被连结的钱包。",
|
||||
"borrow-rate": "借贷利率",
|
||||
"borrow-value": "借贷价值",
|
||||
"borrow-withdraw": "借贷与取款",
|
||||
"borrows": "借贷",
|
||||
"break-even": "保本价格",
|
||||
"buy": "买入",
|
||||
"calculator": "计算器",
|
||||
"cancel": "取消",
|
||||
"cancel-error": "取消掛单出错",
|
||||
"cancel-success": "已取消掛单",
|
||||
"change-account": "切换帐户",
|
||||
"change-language": "切换语言",
|
||||
"change-theme": "切换模式",
|
||||
"character-limit": "帐户标签必须含有32以下个字符",
|
||||
"chinese": "简体中文",
|
||||
"chinese-traditional": "繁體中文",
|
||||
"claim": "收获",
|
||||
"claim-reward": "收获奖励",
|
||||
"close": "关",
|
||||
"close-and-long": "平仓和做多",
|
||||
"close-and-short": "平仓和做空",
|
||||
"close-confirm": "您确定要市场平仓您的{{config_name}}持仓吗?",
|
||||
"close-open-long": "100%平仓以及做多{{size}} {{symbol}}",
|
||||
"close-open-short": "100%平仓以及做空{{size}} {{symbol}}",
|
||||
"close-position": "平仓",
|
||||
"collateral-available": "可用质押品",
|
||||
"collateral-available-tip-desc": "可用于杠杆交易的质押品价值。资产具有不同的质押权重(根据资产给平台带来的风险)。",
|
||||
"collateral-available-tip-title": "可用质押品",
|
||||
"condition": "状态",
|
||||
"confirm": "确认",
|
||||
"confirm-deposit": "确认存款",
|
||||
"confirm-withdraw": "确认取款",
|
||||
"confirming-transaction": "正在确认交易...",
|
||||
"connect": "连结",
|
||||
"connect-view": "连结钱包而看帐户状态",
|
||||
"connect-wallet": "连结钱包",
|
||||
"connect-wallet-tip-desc": "我们会带你四处看看...",
|
||||
"connect-wallet-tip-title": "连结钱包",
|
||||
"connected-to": "连结钱包",
|
||||
"copy-address": "复制地址",
|
||||
"country-not-allowed": "您的国家不允许",
|
||||
"country-not-allowed-tooltip": "您正在使用MangoDAO提供的开源介面。由于监管的不确定性因此处于谋些地区的人的行动会受到限制。",
|
||||
"create-account": "创建帐户",
|
||||
"create-alert": "创建警报",
|
||||
"current-stats": "当前统计",
|
||||
"custom": "自定义",
|
||||
"daily-change": "24小时变动",
|
||||
"daily-high": "24hr High",
|
||||
"daily-low": "24hr Low",
|
||||
"daily-range": "24小时广度",
|
||||
"daily-volume": "24小时成交量",
|
||||
"dark": "黑暗",
|
||||
"data-refresh-tip-desc": "虽然数据会自动更新,但您还是可以点击手动更新。",
|
||||
"data-refresh-tip-title": "手动数据更新",
|
||||
"date": "日期",
|
||||
"default-market": "预设市场",
|
||||
"default-spot-margin": "预设开启杠杆交易",
|
||||
"delay-displaying-recent": "显示最近状态也许有所延误。",
|
||||
"deposit": "存款",
|
||||
"deposit-before": "归还全借贷前您得先多存入{{tokenSymbol}}",
|
||||
"deposit-failed": "存款失败",
|
||||
"deposit-funds": "存款",
|
||||
"deposit-help": "存入前请给钱包创建{{tokenSymbol}}地址以及存入{{tokenSymbol}}。",
|
||||
"deposit-history": "存款历史",
|
||||
"deposit-interest": "存款利息",
|
||||
"deposit-rate": "存款利率",
|
||||
"deposit-successful": "已存款",
|
||||
"deposit-to-get-started": "请先存款",
|
||||
"deposit-value": "存款价值",
|
||||
"depositing": "您正在存款",
|
||||
"deposits": "存款",
|
||||
"depth-rewarded": "奖励深度",
|
||||
"details": "细节",
|
||||
"disconnect": "断开连结",
|
||||
"done": "完成",
|
||||
"edit": "编辑",
|
||||
"edit-name": "编辑帐户标签",
|
||||
"edit-nickname": "编辑帐户标签",
|
||||
"email-address": "电子邮件地址",
|
||||
"english": "English",
|
||||
"enter-amount": "输入存款数量",
|
||||
"enter-name": "输入帐户标签",
|
||||
"equity": "余额",
|
||||
"est-period-end": "预计期末时间",
|
||||
"est-slippage": "预计下滑",
|
||||
"estimated-liq-price": "预计清算价格",
|
||||
"explorer": "浏览器",
|
||||
"export-data": "导出CSV",
|
||||
"export-data-empty": "无资料可导出",
|
||||
"export-data-success": "CSV导出成功",
|
||||
"favorite": "Favorite",
|
||||
"favorites": "Favorites",
|
||||
"fee": "费率",
|
||||
"fee-discount": "费率折扣",
|
||||
"first-deposit-desc": "创建Mango帐户最少需要0.035 SOL。",
|
||||
"funding": "资金费",
|
||||
"funding-chart-title": "资金费",
|
||||
"get-started": "开始",
|
||||
"health": "健康度",
|
||||
"health-check": "帐户健康检查",
|
||||
"health-ratio": "健康比率",
|
||||
"hide-all": "在导航栏中隐藏全部",
|
||||
"hide-dust": "隐藏尘土",
|
||||
"high": "高",
|
||||
"history": "历史",
|
||||
"history-empty": "没有历史",
|
||||
"hourly-borrow-interest": "1小时借贷利息",
|
||||
"hourly-deposit-interest": "1小时存款利息",
|
||||
"hourly-funding": "1小时资金费",
|
||||
"in-orders": "在掛单中",
|
||||
"includes-borrow": "包括存入",
|
||||
"init-error": "创建Mango帐户与存款出错了",
|
||||
"init-health": "初始健康度",
|
||||
"initial-deposit": "初始存款",
|
||||
"insufficient-balance-deposit": "帐户余额不够。请减少存入数量",
|
||||
"insufficient-balance-withdraw": "帐户余额不够。您得以借贷而前往",
|
||||
"insufficient-sol": "创建Mango帐户最少需要0.035 SOL。",
|
||||
"interest": "利息",
|
||||
"interest-chart-title": "{{symbol}} 利息",
|
||||
"interest-chart-value-title": "{{symbol}} 利息价值",
|
||||
"interest-earned": "存借利息",
|
||||
"interest-info": "您的存款会持续赚取利息。",
|
||||
"intro-feature-1": "交叉质押的杠杆交易",
|
||||
"intro-feature-2": "所有资产都可作为交易或借贷的质押品",
|
||||
"intro-feature-3": "将任何资产存入来自动赚取利息",
|
||||
"intro-feature-4": "为了把握其他DeFi操作机会而将您的资产质押借贷",
|
||||
"ioc": "IOC",
|
||||
"languages-tip-desc": "在这里可选介面语言。更多选择将来...",
|
||||
"languages-tip-title": "您会多种语言吗?",
|
||||
"layout-tip-desc": "解锁并根据您的喜好重新排列和调整交易面板的大小。",
|
||||
"layout-tip-title": "个人化页面布局",
|
||||
"learn": "学习",
|
||||
"learn-more": "学习",
|
||||
"lets-go": "前往",
|
||||
"leverage": "杠杆",
|
||||
"leverage-too-high": "杠杆太高。请减少取款数量",
|
||||
"liabilities": "债务",
|
||||
"light": "明亮",
|
||||
"limit": "限价",
|
||||
"limit-order": "限价",
|
||||
"limit-price": "限价价格",
|
||||
"liquidation-history": "清算历史",
|
||||
"liquidations": "清算历史",
|
||||
"liquidity": "流动性",
|
||||
"liquidity-mining": "流动性挖矿",
|
||||
"long": "做多",
|
||||
"low": "低",
|
||||
"maint-health": "维持健康度",
|
||||
"make-trade": "下订单",
|
||||
"maker": "挂单者",
|
||||
"maker-fee": "挂单费率",
|
||||
"mango": "Mango",
|
||||
"mango-accounts": "Mango帐户",
|
||||
"margin": "杠杆",
|
||||
"margin-available": "可用保证金",
|
||||
"market": "市场",
|
||||
"market-close": "市价平仓",
|
||||
"market-data": "Market Data",
|
||||
"market-details": "市场细节",
|
||||
"market-order": "市价",
|
||||
"markets": "市场",
|
||||
"max": "最多",
|
||||
"max-borrow": "最多借贷数量",
|
||||
"max-depth-bps": "最大深度Bps",
|
||||
"max-slippage": "最多滑移",
|
||||
"max-with-borrow": "借用最大值",
|
||||
"minutes": "分钟",
|
||||
"missing-price": "没有价格",
|
||||
"missing-size": "没有数量",
|
||||
"missing-trigger": "没有触发价格",
|
||||
"mngo-left-period": "期间剩余的MNGO",
|
||||
"mngo-per-period": "每期MNGO",
|
||||
"mngo-rewards": "MNGO奖励",
|
||||
"moderate": "中",
|
||||
"more": "更多",
|
||||
"msrm-deposit-error": "存入MSRM出错了",
|
||||
"msrm-deposited": "成功存入MSRM",
|
||||
"msrm-withdraw-error": "取出MSRM出错了",
|
||||
"msrm-withdrawal": "成功取出MSRM",
|
||||
"name-error": "无法更新帐户标籤",
|
||||
"name-updated": "帐户标签已更新",
|
||||
"name-your-account": "给帐户标签",
|
||||
"net": "净",
|
||||
"net-balance": "净余额",
|
||||
"net-interest-value": "利息净价值",
|
||||
"net-interest-value-desc": "利息是以获取/付出时价值来计算的。纳税时这也许会有用。",
|
||||
"new": "新子帐户",
|
||||
"new-account": "新子帐户",
|
||||
"new-alert": "创建警报",
|
||||
"next": "前往",
|
||||
"no-account-found": "您没有帐户",
|
||||
"no-address": "没有{{tokenSymbol}}钱包地址",
|
||||
"no-alerts": "您没有活动警报",
|
||||
"no-alerts-desc": "创建警报而健康度低时被通知到。",
|
||||
"no-balances": "您没有余额",
|
||||
"no-borrows": "您没有借贷。",
|
||||
"no-funding": "您未收/付过资金费",
|
||||
"no-history": "您没有交易纪录",
|
||||
"no-interest": "您未收/付过利息",
|
||||
"no-margin": "查不到保证金帐户",
|
||||
"no-markets": "No markets found",
|
||||
"no-orders": "您没有订单",
|
||||
"no-perp": "您没有永续合约持仓",
|
||||
"no-unsettled": "您没有未结清金额",
|
||||
"no-wallet": "没有钱包地址",
|
||||
"node-url": "RPC终点URL",
|
||||
"not-enough-balance": "钱包余额不够",
|
||||
"not-enough-sol": "SOL余额也许不够下此订单",
|
||||
"notional-size": "合约面值",
|
||||
"open-interest": "持仓量",
|
||||
"open-orders": "订单",
|
||||
"optional": "(可选)",
|
||||
"oracle-price": "预言机价格",
|
||||
"order-error": "下订单出错了",
|
||||
"orderbook": "订单簿",
|
||||
"orderbook-animation": "订单动画",
|
||||
"orders": "订单",
|
||||
"performance": "表现",
|
||||
"performance-insights": "表现分析",
|
||||
"period-progress": "期间进度",
|
||||
"perp": "Perp",
|
||||
"perp-desc": "Perpetual swaps settled in USDC",
|
||||
"perp-fees": "Mango永续合约费率",
|
||||
"perp-positions": "合约当前持仓",
|
||||
"perp-positions-tip-desc": "永续合约当前持仓随着价格波动而累积未结清盈亏。结清盈亏会给您的USDC余额增加或减少。",
|
||||
"perp-positions-tip-title": "永续合约当前持仓细节",
|
||||
"perpetual-futures": "永续合约",
|
||||
"perps": "永续合约",
|
||||
"pnl-error": "结清盈亏出错了",
|
||||
"pnl-help": "结清会更新USDC余额来处理尚未结清的盈亏量。",
|
||||
"pnl-success": "已结清盈亏",
|
||||
"portfolio": "资产组合",
|
||||
"position": "当前持仓",
|
||||
"position-size": "当前持仓数量",
|
||||
"positions": "当前持仓",
|
||||
"post": "Post",
|
||||
"presets": "预设",
|
||||
"price": "价格",
|
||||
"price-expect": "您收到的价格可能与您预期有差异,并且无法保证完全执行。为了您的安全,最大滑点保持为 2.5%。超过 2.5%滑点的部分不会被平仓。",
|
||||
"price-impact": "预计价格影响",
|
||||
"price-unavailable": "无法取价格",
|
||||
"prices-changed": "价格波动导致您的杠杆增加了。请减少取款数量。",
|
||||
"profile-menu-tip-desc": "在这里可以看看您的Mango帐户,复制钱包地址以及断开钱包连结。",
|
||||
"profile-menu-tip-title": "个人资料菜单",
|
||||
"profit-price": "止盈价格",
|
||||
"quantity": "数量",
|
||||
"rates": "存款/借贷利率",
|
||||
"read-more": "看更多资料",
|
||||
"recent": "最近",
|
||||
"recent-trades": "最近成交",
|
||||
"redeem-failure": "收获MNGO奖励出错了",
|
||||
"redeem-pnl": "结清",
|
||||
"redeem-success": "已收获MNGO奖励了",
|
||||
"refresh": "更新",
|
||||
"refresh-data": "更新资料",
|
||||
"repay": "归还",
|
||||
"repay-and-deposit": "归还100%借贷及存入{{amount}} {{symbol}}",
|
||||
"repay-full": "归还100%借贷",
|
||||
"repay-partial": "归还{{percentage}}%借贷",
|
||||
"reposition": "推动以重新定位",
|
||||
"reset": "重置",
|
||||
"rpc-endpoint": "RPC终点",
|
||||
"save": "保存",
|
||||
"save-name": "保存标签",
|
||||
"select-account": "请选Mango帐户",
|
||||
"select-asset": "选择币种",
|
||||
"select-margin": "选择保证金帐户",
|
||||
"sell": "卖出",
|
||||
"serum-fees": "Serum市场费率",
|
||||
"set-stop-loss": "下止损单",
|
||||
"set-take-profit": "下止盈单",
|
||||
"settings": "设定",
|
||||
"settle": "结清",
|
||||
"settle-all": "结清全部",
|
||||
"settle-error": "结清出错",
|
||||
"settle-success": "已结清好",
|
||||
"short": "做空",
|
||||
"show-all": "在导航栏中显示全部",
|
||||
"show-less": "显示较少",
|
||||
"show-more": "显示更多",
|
||||
"show-tips": "显示提示",
|
||||
"show-zero": "显示零余额",
|
||||
"side": "方向",
|
||||
"size": "数量",
|
||||
"slippage-warning": "此订单也许会遭受大量滑点!使用限价止损或限价止盈可能比较适合。",
|
||||
"spanish": "Español",
|
||||
"spot-desc": "Spot margin quoted in USDC",
|
||||
"spot": "现货",
|
||||
"spread": "点差",
|
||||
"stats": "统计",
|
||||
"stop-limit": "限价止损",
|
||||
"stop-loss": "市场止损",
|
||||
"stop-price": "止损价格",
|
||||
"successfully-placed": "已下单了",
|
||||
"supported-assets": "请给钱包存入已被支持的币种。",
|
||||
"swap": "换币",
|
||||
"take-profit": "止盈",
|
||||
"take-profit-limit": "限价止盈",
|
||||
"taker": "吃单者",
|
||||
"taker-fee": "吃单费率",
|
||||
"target-period-length": "目标期间长度",
|
||||
"themes-tip-desc": "Mango,黑暗或明亮(看您偏向)。",
|
||||
"themes-tip-title": "颜色模式",
|
||||
"time": "时间",
|
||||
"token": "币种",
|
||||
"too-large": "数量太大",
|
||||
"tooltip-account-liquidated": "若帐户健康度降到0%您的帐户会被清算直到初始健康度达到0以上了。",
|
||||
"tooltip-after-withdrawal": "取款后的帐户状态。",
|
||||
"tooltip-apy-apr": "存款APY/借贷APR",
|
||||
"tooltip-available-after": "算保证金与掛单后可取款数量",
|
||||
"tooltip-display-cumulative": "显示总计",
|
||||
"tooltip-display-step": "显示梯计",
|
||||
"tooltip-earn-mngo": "以做永续合约市商而获得MNGO奖励。",
|
||||
"tooltip-enable-margin": "为此交易啟用保证金",
|
||||
"tooltip-gui-rebate": "吃单费率是{{taker_rate}}再减20%介面费率折扣.",
|
||||
"tooltip-interest-charged": "利率以借贷餘额计算而可波动。",
|
||||
"tooltip-ioc": "IOC交易若不吃单就会被取消。",
|
||||
"tooltip-lock-layout": "锁定页面布局",
|
||||
"tooltip-name-onchain": "帐户标签是在区块链上存保的",
|
||||
"tooltip-post": "Post交易若不挂单就会被取消。",
|
||||
"tooltip-projected-leverage": "预计杠杆",
|
||||
"tooltip-reduce": "Reduce交易只能减少您的持仓。",
|
||||
"tooltip-reset-layout": "重置页面布局",
|
||||
"tooltip-serum-rebate": "Serum的20%费率是交给介面提供者。Mango将此费率退还给您。退还前的吃单费率是{{taker_percent}}",
|
||||
"tooltip-slippage": "若价格滑点多于您设定的最多滑点,您订单就会部分成交至该价格。",
|
||||
"tooltip-switch-layout": "换页面布局",
|
||||
"tooltip-unlock-layout": "解锁页面布局",
|
||||
"total-assets": "总资产价值",
|
||||
"total-borrow-interest": "借贷总利息",
|
||||
"total-borrow-value": "借贷总价值",
|
||||
"total-borrows": "借贷总数量",
|
||||
"total-deposit-interest": "存款总利息",
|
||||
"total-deposit-value": "存款总价值",
|
||||
"total-deposits": "存款总数量",
|
||||
"total-funding": "资金费总数量",
|
||||
"total-funding-stats": "资金费收/付统计",
|
||||
"total-liabilities": "总债务价值",
|
||||
"total-srm": "在Mango裡的SRM总量",
|
||||
"totals": "总量",
|
||||
"trade": "交易",
|
||||
"trade-history": "交易纪录",
|
||||
"trades": "成交",
|
||||
"trades-history": "交易纪录",
|
||||
"transaction-sent": "已下订单",
|
||||
"trigger-price": "触发价格",
|
||||
"try-again": "请再试一次",
|
||||
"type": "类型",
|
||||
"unrealized-pnl": "未实现盈亏",
|
||||
"unsettled": "未结清",
|
||||
"unsettled-balance": "未实现盈亏",
|
||||
"unsettled-balances": "未结清余额",
|
||||
"unsettled-positions": "未结清持仓",
|
||||
"use-explorer-one": "使用",
|
||||
"use-explorer-three": "来验证延迟的交易",
|
||||
"use-explorer-two": "浏览器",
|
||||
"utilization": "利用率",
|
||||
"v3-new": "V3与V2完全不一样。仍要登录V2的人可以在导航栏点「更多」或此链接:",
|
||||
"v3-unaudited": "Mango V3目前还是测试版。此软体未经过审计。风险自负。",
|
||||
"v3-welcome": "欢迎到Mango V3",
|
||||
"value": "价值",
|
||||
"view-all-trades": "在帐户页面查看所以交易",
|
||||
"view-counterparty": "查看交易对方",
|
||||
"view-transaction": "查看交易",
|
||||
"wallet": "钱包",
|
||||
"wallet-connected": "已连结钱包",
|
||||
"wallet-disconnected": "断开钱包连结",
|
||||
"withdraw": "取款",
|
||||
"withdraw-error": "无法取款",
|
||||
"withdraw-funds": "取款",
|
||||
"withdraw-history": "提款记录",
|
||||
"withdraw-success": "已取款",
|
||||
"withdrawals": "取款",
|
||||
"you-must-leave-enough-sol": "您必须在钱包中保留足够的 SOL 来支付交易费用",
|
||||
"your-account": "您的帐户",
|
||||
"your-assets": "您的资产",
|
||||
"your-borrows": "您的借入"
|
||||
{
|
||||
"about-to-withdraw": "您正在存款",
|
||||
"above": "高于",
|
||||
"accept": "接受",
|
||||
"accept-terms": "我明白并接受使用此平台的风险",
|
||||
"account": "帐户",
|
||||
"account-address-warning": "千万不要将币种直接传送至帐户地址。",
|
||||
"account-details-tip-desc": "当您进行首次存款时,我们将为您设置一个Mango账户。您的钱包中至少需要0.0035 SOL才能支付创建帐户的押金。",
|
||||
"account-details-tip-title": "帐户细节",
|
||||
"account-equity": "帐户余额",
|
||||
"account-equity-chart-title": "帐户余额",
|
||||
"account-health": "帐户健康",
|
||||
"account-health-tip-desc": "为了避免被清算,您必须将帐户健康度保持在0%以上。为了提高健康度,请减少借贷或存入资产。",
|
||||
"account-health-tip-title": "帐户健康",
|
||||
"account-name": "帐户标签",
|
||||
"account-performance": "帐户表现",
|
||||
"account-pnl": "帐户盈亏",
|
||||
"account-pnl-chart-title": "帐户盈亏",
|
||||
"account-risk": "帐户风险度",
|
||||
"account-value": "帐户价值",
|
||||
"accounts": "帐户",
|
||||
"active-alerts": "活动警报",
|
||||
"add-more-sol": "为了避免交易出错请给被连结的钱包多存入一点SOL。",
|
||||
"add-name": "加标签",
|
||||
"alert-health": "健康度低于此度发警报",
|
||||
"alert-info": "健康度在{{health}}%以下时发电子邮件",
|
||||
"alerts": "警报",
|
||||
"alerts-disclaimer": "请别全靠警报来保护资产。我们无法保证会准时发出。",
|
||||
"alerts-max": "您以达到活动警报数量限制。",
|
||||
"all-assets": "所有资产",
|
||||
"amount": "数量",
|
||||
"approximate-time": "大概时间",
|
||||
"asset": "资产",
|
||||
"assets": "资产",
|
||||
"assets-liabilities": "资产和债务",
|
||||
"available-balance": "可用的金额",
|
||||
"average-borrow": "平均借贷率",
|
||||
"average-deposit": "平均存款率",
|
||||
"average-entry": "平均开仓价",
|
||||
"average-funding": "平均资金费率(1小时)",
|
||||
"back": "回去",
|
||||
"balance": "帐户余额",
|
||||
"balances": "帐户余额",
|
||||
"being-liquidated": "您的帐户正在被清算!",
|
||||
"below": "低于",
|
||||
"borrow": "借贷",
|
||||
"borrow-funds": "借贷",
|
||||
"borrow-interest": "借贷利息",
|
||||
"borrow-notification": "借贷时货币会提到您被连结的钱包。",
|
||||
"borrow-rate": "借贷利率",
|
||||
"borrow-value": "借贷价值",
|
||||
"borrow-withdraw": "借贷与取款",
|
||||
"borrows": "借贷",
|
||||
"break-even": "保本价格",
|
||||
"buy": "买入",
|
||||
"calculator": "计算器",
|
||||
"cancel": "取消",
|
||||
"cancel-error": "取消掛单出错",
|
||||
"cancel-success": "已取消掛单",
|
||||
"change-account": "切换帐户",
|
||||
"change-language": "切换语言",
|
||||
"change-theme": "切换模式",
|
||||
"character-limit": "帐户标签必须含有32以下个字符",
|
||||
"chinese": "简体中文",
|
||||
"chinese-traditional": "繁體中文",
|
||||
"claim": "收获",
|
||||
"claim-reward": "收获奖励",
|
||||
"close": "关",
|
||||
"close-and-long": "平仓和做多",
|
||||
"close-and-short": "平仓和做空",
|
||||
"close-confirm": "您确定要市场平仓您的{{config_name}}持仓吗?",
|
||||
"close-open-long": "100%平仓以及做多{{size}} {{symbol}}",
|
||||
"close-open-short": "100%平仓以及做空{{size}} {{symbol}}",
|
||||
"close-position": "平仓",
|
||||
"collateral-available": "可用质押品",
|
||||
"collateral-available-tip-desc": "可用于杠杆交易的质押品价值。资产具有不同的质押权重(根据资产给平台带来的风险)。",
|
||||
"collateral-available-tip-title": "可用质押品",
|
||||
"condition": "状态",
|
||||
"confirm": "确认",
|
||||
"confirm-deposit": "确认存款",
|
||||
"confirm-withdraw": "确认取款",
|
||||
"confirming-transaction": "正在确认交易...",
|
||||
"connect": "连结",
|
||||
"connect-view": "连结钱包而看帐户状态",
|
||||
"connect-wallet": "连结钱包",
|
||||
"connect-wallet-tip-desc": "我们会带你四处看看...",
|
||||
"connect-wallet-tip-title": "连结钱包",
|
||||
"connected-to": "连结钱包",
|
||||
"copy-address": "复制地址",
|
||||
"country-not-allowed": "您的国家不允许",
|
||||
"country-not-allowed-tooltip": "您正在使用MangoDAO提供的开源介面。由于监管的不确定性因此处于谋些地区的人的行动会受到限制。",
|
||||
"create-account": "创建帐户",
|
||||
"create-alert": "创建警报",
|
||||
"current-stats": "当前统计",
|
||||
"custom": "自定义",
|
||||
"daily-change": "24小时变动",
|
||||
"daily-high": "24hr High",
|
||||
"daily-low": "24hr Low",
|
||||
"daily-range": "24小时广度",
|
||||
"daily-volume": "24小时成交量",
|
||||
"dark": "黑暗",
|
||||
"data-refresh-tip-desc": "虽然数据会自动更新,但您还是可以点击手动更新。",
|
||||
"data-refresh-tip-title": "手动数据更新",
|
||||
"date": "日期",
|
||||
"default-market": "预设市场",
|
||||
"default-spot-margin": "预设开启杠杆交易",
|
||||
"delay-displaying-recent": "显示最近状态也许有所延误。",
|
||||
"deposit": "存款",
|
||||
"deposit-before": "归还全借贷前您得先多存入{{tokenSymbol}}",
|
||||
"deposit-failed": "存款失败",
|
||||
"deposit-funds": "存款",
|
||||
"deposit-help": "存入前请给钱包创建{{tokenSymbol}}地址以及存入{{tokenSymbol}}。",
|
||||
"deposit-history": "存款历史",
|
||||
"deposit-interest": "存款利息",
|
||||
"deposit-rate": "存款利率",
|
||||
"deposit-successful": "已存款",
|
||||
"deposit-to-get-started": "请先存款",
|
||||
"deposit-value": "存款价值",
|
||||
"depositing": "您正在存款",
|
||||
"deposits": "存款",
|
||||
"depth-rewarded": "奖励深度",
|
||||
"details": "细节",
|
||||
"disconnect": "断开连结",
|
||||
"done": "完成",
|
||||
"edit": "编辑",
|
||||
"edit-name": "编辑帐户标签",
|
||||
"edit-nickname": "编辑帐户标签",
|
||||
"email-address": "电子邮件地址",
|
||||
"english": "English",
|
||||
"enter-amount": "输入存款数量",
|
||||
"enter-name": "输入帐户标签",
|
||||
"equity": "余额",
|
||||
"est-period-end": "预计期末时间",
|
||||
"est-slippage": "预计下滑",
|
||||
"estimated-liq-price": "预计清算价格",
|
||||
"explorer": "浏览器",
|
||||
"export-data": "导出CSV",
|
||||
"export-data-empty": "无资料可导出",
|
||||
"export-data-success": "CSV导出成功",
|
||||
"favorite": "Favorite",
|
||||
"favorites": "Favorites",
|
||||
"fee": "费率",
|
||||
"fee-discount": "费率折扣",
|
||||
"first-deposit-desc": "创建Mango帐户最少需要0.035 SOL。",
|
||||
"funding": "资金费",
|
||||
"funding-chart-title": "资金费",
|
||||
"get-started": "开始",
|
||||
"health": "健康度",
|
||||
"health-check": "帐户健康检查",
|
||||
"health-ratio": "健康比率",
|
||||
"hide-all": "在导航栏中隐藏全部",
|
||||
"hide-dust": "隐藏尘土",
|
||||
"high": "高",
|
||||
"history": "历史",
|
||||
"history-empty": "没有历史",
|
||||
"hourly-borrow-interest": "1小时借贷利息",
|
||||
"hourly-deposit-interest": "1小时存款利息",
|
||||
"hourly-funding": "1小时资金费",
|
||||
"in-orders": "在掛单中",
|
||||
"includes-borrow": "包括存入",
|
||||
"init-error": "创建Mango帐户与存款出错了",
|
||||
"init-health": "初始健康度",
|
||||
"initial-deposit": "初始存款",
|
||||
"insufficient-balance-deposit": "帐户余额不够。请减少存入数量",
|
||||
"insufficient-balance-withdraw": "帐户余额不够。您得以借贷而前往",
|
||||
"insufficient-sol": "创建Mango帐户最少需要0.035 SOL。",
|
||||
"interest": "利息",
|
||||
"interest-chart-title": "{{symbol}} 利息",
|
||||
"interest-chart-value-title": "{{symbol}} 利息价值",
|
||||
"interest-earned": "存借利息",
|
||||
"interest-info": "您的存款会持续赚取利息。",
|
||||
"intro-feature-1": "交叉质押的杠杆交易",
|
||||
"intro-feature-2": "所有资产都可作为交易或借贷的质押品",
|
||||
"intro-feature-3": "将任何资产存入来自动赚取利息",
|
||||
"intro-feature-4": "为了把握其他DeFi操作机会而将您的资产质押借贷",
|
||||
"ioc": "IOC",
|
||||
"languages-tip-desc": "在这里可选介面语言。更多选择将来...",
|
||||
"languages-tip-title": "您会多种语言吗?",
|
||||
"layout-tip-desc": "解锁并根据您的喜好重新排列和调整交易面板的大小。",
|
||||
"layout-tip-title": "个人化页面布局",
|
||||
"learn": "学习",
|
||||
"learn-more": "学习",
|
||||
"lets-go": "前往",
|
||||
"leverage": "杠杆",
|
||||
"leverage-too-high": "杠杆太高。请减少取款数量",
|
||||
"liabilities": "债务",
|
||||
"light": "明亮",
|
||||
"limit": "限价",
|
||||
"limit-order": "限价",
|
||||
"limit-price": "限价价格",
|
||||
"liquidation-history": "清算历史",
|
||||
"liquidations": "清算历史",
|
||||
"liquidity": "流动性",
|
||||
"liquidity-mining": "流动性挖矿",
|
||||
"long": "做多",
|
||||
"low": "低",
|
||||
"maint-health": "维持健康度",
|
||||
"make-trade": "下订单",
|
||||
"maker": "挂单者",
|
||||
"maker-fee": "挂单费率",
|
||||
"mango": "Mango",
|
||||
"mango-accounts": "Mango帐户",
|
||||
"margin": "杠杆",
|
||||
"margin-available": "可用保证金",
|
||||
"market": "市场",
|
||||
"market-close": "市价平仓",
|
||||
"market-data": "Market Data",
|
||||
"market-details": "市场细节",
|
||||
"market-order": "市价",
|
||||
"markets": "市场",
|
||||
"max": "最多",
|
||||
"max-borrow": "最多借贷数量",
|
||||
"max-depth-bps": "最大深度Bps",
|
||||
"max-slippage": "最多滑移",
|
||||
"max-with-borrow": "借用最大值",
|
||||
"minutes": "分钟",
|
||||
"missing-price": "没有价格",
|
||||
"missing-size": "没有数量",
|
||||
"missing-trigger": "没有触发价格",
|
||||
"mngo-left-period": "期间剩余的MNGO",
|
||||
"mngo-per-period": "每期MNGO",
|
||||
"mngo-rewards": "MNGO奖励",
|
||||
"moderate": "中",
|
||||
"more": "更多",
|
||||
"msrm-deposit-error": "存入MSRM出错了",
|
||||
"msrm-deposited": "成功存入MSRM",
|
||||
"msrm-withdraw-error": "取出MSRM出错了",
|
||||
"msrm-withdrawal": "成功取出MSRM",
|
||||
"name-error": "无法更新帐户标籤",
|
||||
"name-updated": "帐户标签已更新",
|
||||
"name-your-account": "给帐户标签",
|
||||
"net": "净",
|
||||
"net-balance": "净余额",
|
||||
"net-interest-value": "利息净价值",
|
||||
"net-interest-value-desc": "利息是以获取/付出时价值来计算的。纳税时这也许会有用。",
|
||||
"new": "新子帐户",
|
||||
"new-account": "新子帐户",
|
||||
"new-alert": "创建警报",
|
||||
"next": "前往",
|
||||
"no-account-found": "您没有帐户",
|
||||
"no-address": "没有{{tokenSymbol}}钱包地址",
|
||||
"no-alerts": "您没有活动警报",
|
||||
"no-alerts-desc": "创建警报而健康度低时被通知到。",
|
||||
"no-balances": "您没有余额",
|
||||
"no-borrows": "您没有借贷。",
|
||||
"no-funding": "您未收/付过资金费",
|
||||
"no-history": "您没有交易纪录",
|
||||
"no-interest": "您未收/付过利息",
|
||||
"no-margin": "查不到保证金帐户",
|
||||
"no-markets": "No markets found",
|
||||
"no-orders": "您没有订单",
|
||||
"no-perp": "您没有永续合约持仓",
|
||||
"no-unsettled": "您没有未结清金额",
|
||||
"no-wallet": "没有钱包地址",
|
||||
"node-url": "RPC终点URL",
|
||||
"not-enough-balance": "钱包余额不够",
|
||||
"not-enough-sol": "SOL余额也许不够下此订单",
|
||||
"notional-size": "合约面值",
|
||||
"open-interest": "持仓量",
|
||||
"open-orders": "订单",
|
||||
"optional": "(可选)",
|
||||
"oracle-price": "预言机价格",
|
||||
"order-error": "下订单出错了",
|
||||
"orderbook": "订单簿",
|
||||
"orderbook-animation": "订单动画",
|
||||
"orders": "订单",
|
||||
"performance": "表现",
|
||||
"performance-insights": "表现分析",
|
||||
"period-progress": "期间进度",
|
||||
"perp": "Perp",
|
||||
"perp-desc": "Perpetual swaps settled in USDC",
|
||||
"perp-fees": "Mango永续合约费率",
|
||||
"perp-positions": "合约当前持仓",
|
||||
"perp-positions-tip-desc": "永续合约当前持仓随着价格波动而累积未结清盈亏。结清盈亏会给您的USDC余额增加或减少。",
|
||||
"perp-positions-tip-title": "永续合约当前持仓细节",
|
||||
"perpetual-futures": "永续合约",
|
||||
"perps": "永续合约",
|
||||
"pnl-error": "结清盈亏出错了",
|
||||
"pnl-help": "结清会更新USDC余额来处理尚未结清的盈亏量。",
|
||||
"pnl-success": "已结清盈亏",
|
||||
"portfolio": "资产组合",
|
||||
"position": "当前持仓",
|
||||
"position-size": "当前持仓数量",
|
||||
"positions": "当前持仓",
|
||||
"post": "Post",
|
||||
"presets": "预设",
|
||||
"price": "价格",
|
||||
"price-expect": "您收到的价格可能与您预期有差异,并且无法保证完全执行。为了您的安全,最大滑点保持为 2.5%。超过 2.5%滑点的部分不会被平仓。",
|
||||
"price-impact": "预计价格影响",
|
||||
"price-unavailable": "无法取价格",
|
||||
"prices-changed": "价格波动导致您的杠杆增加了。请减少取款数量。",
|
||||
"profile-menu-tip-desc": "在这里可以看看您的Mango帐户,复制钱包地址以及断开钱包连结。",
|
||||
"profile-menu-tip-title": "个人资料菜单",
|
||||
"profit-price": "止盈价格",
|
||||
"quantity": "数量",
|
||||
"rates": "存款/借贷利率",
|
||||
"read-more": "看更多资料",
|
||||
"recent": "最近",
|
||||
"recent-trades": "最近成交",
|
||||
"redeem-failure": "收获MNGO奖励出错了",
|
||||
"redeem-pnl": "结清",
|
||||
"redeem-success": "已收获MNGO奖励了",
|
||||
"referrals": "推荐码",
|
||||
"refresh": "更新",
|
||||
"refresh-data": "更新资料",
|
||||
"repay": "归还",
|
||||
"repay-and-deposit": "归还100%借贷及存入{{amount}} {{symbol}}",
|
||||
"repay-full": "归还100%借贷",
|
||||
"repay-partial": "归还{{percentage}}%借贷",
|
||||
"reposition": "推动以重新定位",
|
||||
"reset": "重置",
|
||||
"rpc-endpoint": "RPC终点",
|
||||
"save": "保存",
|
||||
"save-name": "保存标签",
|
||||
"select-account": "请选Mango帐户",
|
||||
"select-asset": "选择币种",
|
||||
"select-margin": "选择保证金帐户",
|
||||
"sell": "卖出",
|
||||
"serum-fees": "Serum市场费率",
|
||||
"set-stop-loss": "下止损单",
|
||||
"set-take-profit": "下止盈单",
|
||||
"settings": "设定",
|
||||
"settle": "结清",
|
||||
"settle-all": "结清全部",
|
||||
"settle-error": "结清出错",
|
||||
"settle-success": "已结清好",
|
||||
"short": "做空",
|
||||
"show-all": "在导航栏中显示全部",
|
||||
"show-less": "显示较少",
|
||||
"show-more": "显示更多",
|
||||
"show-tips": "显示提示",
|
||||
"show-zero": "显示零余额",
|
||||
"side": "方向",
|
||||
"size": "数量",
|
||||
"slippage-warning": "此订单也许会遭受大量滑点!使用限价止损或限价止盈可能比较适合。",
|
||||
"spanish": "Español",
|
||||
"spot": "现货",
|
||||
"spot-desc": "Spot margin quoted in USDC",
|
||||
"spread": "点差",
|
||||
"stats": "统计",
|
||||
"stop-limit": "限价止损",
|
||||
"stop-loss": "市场止损",
|
||||
"stop-price": "止损价格",
|
||||
"successfully-placed": "已下单了",
|
||||
"supported-assets": "请给钱包存入已被支持的币种。",
|
||||
"swap": "换币",
|
||||
"take-profit": "止盈",
|
||||
"take-profit-limit": "限价止盈",
|
||||
"taker": "吃单者",
|
||||
"taker-fee": "吃单费率",
|
||||
"target-period-length": "目标期间长度",
|
||||
"themes-tip-desc": "Mango,黑暗或明亮(看您偏向)。",
|
||||
"themes-tip-title": "颜色模式",
|
||||
"time": "时间",
|
||||
"token": "币种",
|
||||
"too-large": "数量太大",
|
||||
"tooltip-account-liquidated": "若帐户健康度降到0%您的帐户会被清算直到初始健康度达到0以上了。",
|
||||
"tooltip-after-withdrawal": "取款后的帐户状态。",
|
||||
"tooltip-apy-apr": "存款APY/借贷APR",
|
||||
"tooltip-available-after": "算保证金与掛单后可取款数量",
|
||||
"tooltip-display-cumulative": "显示总计",
|
||||
"tooltip-display-step": "显示梯计",
|
||||
"tooltip-earn-mngo": "以做永续合约市商而获得MNGO奖励。",
|
||||
"tooltip-enable-margin": "为此交易啟用保证金",
|
||||
"tooltip-gui-rebate": "吃单费率是{{taker_rate}}再减20%介面费率折扣.",
|
||||
"tooltip-interest-charged": "利率以借贷餘额计算而可波动。",
|
||||
"tooltip-ioc": "IOC交易若不吃单就会被取消。",
|
||||
"tooltip-lock-layout": "锁定页面布局",
|
||||
"tooltip-name-onchain": "帐户标签是在区块链上存保的",
|
||||
"tooltip-post": "Post交易若不挂单就会被取消。",
|
||||
"tooltip-projected-leverage": "预计杠杆",
|
||||
"tooltip-reduce": "Reduce交易只能减少您的持仓。",
|
||||
"tooltip-reset-layout": "重置页面布局",
|
||||
"tooltip-serum-rebate": "Serum的20%费率是交给介面提供者。Mango将此费率退还给您。退还前的吃单费率是{{taker_percent}}",
|
||||
"tooltip-slippage": "若价格滑点多于您设定的最多滑点,您订单就会部分成交至该价格。",
|
||||
"tooltip-switch-layout": "换页面布局",
|
||||
"tooltip-unlock-layout": "解锁页面布局",
|
||||
"total-assets": "总资产价值",
|
||||
"total-borrow-interest": "借贷总利息",
|
||||
"total-borrow-value": "借贷总价值",
|
||||
"total-borrows": "借贷总数量",
|
||||
"total-deposit-interest": "存款总利息",
|
||||
"total-deposit-value": "存款总价值",
|
||||
"total-deposits": "存款总数量",
|
||||
"total-funding": "资金费总数量",
|
||||
"total-funding-stats": "资金费收/付统计",
|
||||
"total-liabilities": "总债务价值",
|
||||
"total-srm": "在Mango裡的SRM总量",
|
||||
"totals": "总量",
|
||||
"trade": "交易",
|
||||
"trade-history": "交易纪录",
|
||||
"trades": "成交",
|
||||
"trades-history": "交易纪录",
|
||||
"transaction-sent": "已下订单",
|
||||
"trigger-price": "触发价格",
|
||||
"try-again": "请再试一次",
|
||||
"type": "类型",
|
||||
"unrealized-pnl": "未实现盈亏",
|
||||
"unsettled": "未结清",
|
||||
"unsettled-balance": "未实现盈亏",
|
||||
"unsettled-balances": "未结清余额",
|
||||
"unsettled-positions": "未结清持仓",
|
||||
"use-explorer-one": "使用",
|
||||
"use-explorer-three": "来验证延迟的交易",
|
||||
"use-explorer-two": "浏览器",
|
||||
"utilization": "利用率",
|
||||
"v3-new": "V3与V2完全不一样。仍要登录V2的人可以在导航栏点「更多」或此链接:",
|
||||
"v3-unaudited": "Mango V3目前还是测试版。此软体未经过审计。风险自负。",
|
||||
"v3-welcome": "欢迎到Mango V3",
|
||||
"value": "价值",
|
||||
"view-all-trades": "在帐户页面查看所以交易",
|
||||
"view-counterparty": "查看交易对方",
|
||||
"view-transaction": "查看交易",
|
||||
"wallet": "钱包",
|
||||
"wallet-connected": "已连结钱包",
|
||||
"wallet-disconnected": "断开钱包连结",
|
||||
"withdraw": "取款",
|
||||
"withdraw-error": "无法取款",
|
||||
"withdraw-funds": "取款",
|
||||
"withdraw-history": "提款记录",
|
||||
"withdraw-success": "已取款",
|
||||
"withdrawals": "取款",
|
||||
"you-must-leave-enough-sol": "您必须在钱包中保留足够的 SOL 来支付交易费用",
|
||||
"your-account": "您的帐户",
|
||||
"your-assets": "您的资产",
|
||||
"your-borrows": "您的借入"
|
||||
}
|
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
"10k-mngo": "您的Mango帐户必须含有一万MNGO",
|
||||
"buy-mngo": "买MNGO",
|
||||
"copy-link": "复制连结",
|
||||
"custom-links": "自定连结",
|
||||
"custom-links-limit": "您可创建的推荐码数量限制于5。",
|
||||
"earn-16": "收获荐友PERP市场费用的16%,再加上荐友也获得4%折扣。",
|
||||
"earnings-history": "盈利历史",
|
||||
"enter-referral-id": "输入推荐码",
|
||||
"fee-earned": "收获费用",
|
||||
"generate-link": "创建自定连结",
|
||||
"link": "连结",
|
||||
"link-created": "已创建自定连结",
|
||||
"link-not-created": "无法创建自定连结",
|
||||
"program-details": "活动细节",
|
||||
"program-details-1": "朋友以您的连结创建Mango帐户时您的推荐码会自动实施。",
|
||||
"program-details-2": "荐友买卖PERPs的时候您会收获他们缴的费用的16%。",
|
||||
"program-details-3": "再加上荐友会获得PERP费用的4%折扣。",
|
||||
"program-details-4": "您的Mango帐户至少必须含有一万MNGO才能收获推荐码带来的盈利。",
|
||||
"referee": "荐友",
|
||||
"referral-id": "推荐码",
|
||||
"sow-seed": "播种芒果",
|
||||
"too-long-error": "推荐码长度必须少于33个字母",
|
||||
"total-earnings": "总收入",
|
||||
"total-referrals": "总推荐",
|
||||
"your-links": "您的连结",
|
||||
"your-referrals": "您的推荐"
|
||||
}
|
|
@ -1,426 +1,427 @@
|
|||
{
|
||||
"about-to-withdraw": "您正在存款",
|
||||
"above": "高於",
|
||||
"accept": "接受",
|
||||
"accept-terms": "我明白並接受使用此平台的風險",
|
||||
"account": "帳戶",
|
||||
"account-address-warning": "千萬不要將幣種直接傳送至帳戶地址。",
|
||||
"account-details-tip-desc": "當您進行首次存款時,我們將為您設置一個Mango賬戶。您的錢包中至少需要0.0035 SOL才能支付創建帳戶的押金。",
|
||||
"account-details-tip-title": "帳戶細節",
|
||||
"account-equity": "帳戶餘額",
|
||||
"account-equity-chart-title": "帳戶餘額",
|
||||
"account-health": "帳戶健康",
|
||||
"account-health-tip-desc": "為了避免被清算,您必須將帳戶健康度保持在0%以上。為了提高健康度,請減少借貸或存入資產。",
|
||||
"account-health-tip-title": "帳戶健康",
|
||||
"account-name": "帳戶標籤",
|
||||
"account-performance": "帳戶表現",
|
||||
"account-pnl": "帳戶盈虧",
|
||||
"account-pnl-chart-title": "帳戶盈虧",
|
||||
"account-risk": "帳戶風險度",
|
||||
"account-value": "帳戶價值",
|
||||
"accounts": "帳戶",
|
||||
"active-alerts": "活動警報",
|
||||
"add-more-sol": "為了避免交易出錯請給被連結的錢包多存入一點SOL。",
|
||||
"add-name": "加標籤",
|
||||
"alerts": "警報",
|
||||
"alert-health": "健康度低於此度發警報",
|
||||
"alert-info": "健康度在{{health}}%以下時發電子郵件",
|
||||
"alerts-disclaimer": "請別全靠警報來保護資產。我們無法保證會準時發出。",
|
||||
"alerts-max": "您以達到活動警報數量限制。",
|
||||
"all-assets": "所有資產",
|
||||
"amount": "數量",
|
||||
"approximate-time": "大概時間",
|
||||
"asset": "資產",
|
||||
"assets": "資產",
|
||||
"assets-liabilities": "資產和債務",
|
||||
"available-balance": "可用的金額",
|
||||
"average-borrow": "平均借貸率",
|
||||
"average-deposit": "平均存款率",
|
||||
"average-entry": "平均開倉價",
|
||||
"average-funding": "平均資金費率(1小時)",
|
||||
"back": "回去",
|
||||
"balance": "帳戶餘額",
|
||||
"balances": "帳戶餘額",
|
||||
"being-liquidated": "您的帳戶正在被清算!",
|
||||
"below": "低於",
|
||||
"borrow": "借貸",
|
||||
"borrow-funds": "借貸",
|
||||
"borrow-interest": "借貸利息",
|
||||
"borrow-notification": "借貸時貨幣會提到您被連結的錢包。",
|
||||
"borrow-rate": "借貸利率",
|
||||
"borrow-value": "借貸價值",
|
||||
"borrow-withdraw": "借貸與取款",
|
||||
"borrows": "借貸",
|
||||
"break-even": "保本價格",
|
||||
"buy": "買入",
|
||||
"calculator": "計算器",
|
||||
"cancel": "取消",
|
||||
"cancel-error": "取消掛單出錯",
|
||||
"cancel-success": "已取消掛單",
|
||||
"change-account": "切換帳戶",
|
||||
"change-language": "切換語言",
|
||||
"change-theme": "切換模式",
|
||||
"character-limit": "帳戶標籤必須含有32以下個字符",
|
||||
"chinese": "简体中文",
|
||||
"chinese-traditional": "繁體中文",
|
||||
"claim": "收穫",
|
||||
"claim-reward": "收穫獎勵",
|
||||
"close": "關",
|
||||
"close-and-long": "平倉和做多",
|
||||
"close-and-short": "平倉和做空",
|
||||
"close-confirm": "您確定要市場平倉您的{{config_name}}持倉嗎?",
|
||||
"close-open-long": "100%平倉以及做多{{size}} {{symbol}}",
|
||||
"close-open-short": "100%平倉以及做空{{size}} {{symbol}}",
|
||||
"close-position": "平倉",
|
||||
"collateral-available": "可用質押品",
|
||||
"collateral-available-tip-desc": "可用於槓桿交易的質押品價值。資產具有不同的質押權重(根據資產給平台帶來的風險)。",
|
||||
"collateral-available-tip-title": "可用質押品",
|
||||
"condition": "狀態",
|
||||
"confirm": "確認",
|
||||
"confirm-deposit": "確認存款",
|
||||
"confirm-withdraw": "確認取款",
|
||||
"confirming-transaction": "正在確認交易...",
|
||||
"connect": "連結",
|
||||
"connect-view": "連結錢包而看帳戶狀態",
|
||||
"connect-wallet": "連結錢包",
|
||||
"connect-wallet-tip-desc": "我們會帶你四處看看...",
|
||||
"connect-wallet-tip-title": "連結錢包",
|
||||
"connected-to": "連結錢包",
|
||||
"copy-address": "複製地址",
|
||||
"country-not-allowed": "您的國家不允許",
|
||||
"country-not-allowed-tooltip": "您正在使用MangoDAO提供的開源介面。由於監管的不確定性因此處於謀些地區的人的行動會受到限制。",
|
||||
"create-account": "創建帳戶",
|
||||
"create-alert": "創建警報",
|
||||
"current-stats": "當前統計",
|
||||
"custom": "自定義",
|
||||
"daily-change": "24小時變動",
|
||||
"daily-high": "24hr High",
|
||||
"daily-low": "24hr Low",
|
||||
"daily-range": "24小時廣度",
|
||||
"daily-volume": "24小時成交量",
|
||||
"dark": "黑暗",
|
||||
"data-refresh-tip-desc": "雖然數據會自動更新,但您還是可以點擊手動更新。",
|
||||
"data-refresh-tip-title": "手動數據更新",
|
||||
"date": "日期",
|
||||
"default-market": "預設市場",
|
||||
"default-spot-margin": "預設開啟槓桿交易",
|
||||
"delay-displaying-recent": "顯示最近狀態也許有所延誤。",
|
||||
"deposit": "存款",
|
||||
"deposit-before": "歸還全借貸前您得先多存入{{tokenSymbol}}",
|
||||
"deposit-failed": "存款失敗",
|
||||
"deposit-funds": "存款",
|
||||
"deposit-help": "存入前請給錢包創建{{tokenSymbol}}地址以及存入{{tokenSymbol}}。",
|
||||
"deposit-history": "存款歷史",
|
||||
"deposit-interest": "存款利息",
|
||||
"deposit-rate": "存款利率",
|
||||
"deposit-successful": "成功存款",
|
||||
"deposit-to-get-started": "請先存款",
|
||||
"deposit-value": "存款價值",
|
||||
"depositing": "您正在存款",
|
||||
"deposits": "存款",
|
||||
"depth-rewarded": "獎勵深度",
|
||||
"details": "細節",
|
||||
"disconnect": "斷開連結",
|
||||
"done": "完成",
|
||||
"edit": "編輯",
|
||||
"edit-name": "編輯帳戶標籤",
|
||||
"edit-nickname": "編輯帳戶標籤",
|
||||
"email-address": "電子郵件地址",
|
||||
"english": "English",
|
||||
"enter-amount": "輸入存款數量",
|
||||
"enter-name": "輸入帳戶標籤",
|
||||
"equity": "餘額",
|
||||
"est-period-end": "預計期末時間",
|
||||
"est-slippage": "預計下滑",
|
||||
"estimated-liq-price": "預計清算價格",
|
||||
"explorer": "瀏覽器",
|
||||
"export-data": "導出CSV",
|
||||
"export-data-empty": "無資料可導出",
|
||||
"export-data-success": "CSV導出成功",
|
||||
"favorite": "Favorite",
|
||||
"favorites": "Favorites",
|
||||
"fee": "費率",
|
||||
"fee-discount": "費率折扣",
|
||||
"first-deposit-desc": "創建Mango帳戶最少需要0.035 SOL。",
|
||||
"funding": "資金費",
|
||||
"funding-chart-title": "資金費",
|
||||
"get-started": "開始",
|
||||
"health": "健康度",
|
||||
"health-check": "帳戶健康檢查",
|
||||
"health-ratio": "健康比率",
|
||||
"hide-all": "在導航欄中隱藏全部",
|
||||
"hide-dust": "隱藏塵土",
|
||||
"high": "高",
|
||||
"history": "歷史",
|
||||
"history-empty": "沒有歷史",
|
||||
"hourly-borrow-interest": "1小時借貸利息",
|
||||
"hourly-deposit-interest": "1小時存款利息",
|
||||
"hourly-funding": "1小時資金費",
|
||||
"in-orders": "在掛單中",
|
||||
"includes-borrow": "包括存入",
|
||||
"init-error": "創建Mango帳戶與存款出錯了",
|
||||
"init-health": "初始健康度",
|
||||
"initial-deposit": "初始存款",
|
||||
"insufficient-balance-deposit": "帳戶餘額不夠。請減少存入數量",
|
||||
"insufficient-balance-withdraw": "帳戶餘額不夠。您得以借貸而前往",
|
||||
"insufficient-sol": "創建Mango帳戶最少需要0.035 SOL。",
|
||||
"interest": "利息",
|
||||
"interest-chart-title": "{{symbol}} 利息",
|
||||
"interest-chart-value-title": "{{symbol}} 利息價值",
|
||||
"interest-earned": "存借利息",
|
||||
"interest-info": "您的存款會持續賺取利息。",
|
||||
"intro-feature-1": "交叉質押的槓桿交易",
|
||||
"intro-feature-2": "所有資產都可作為交易或借貸的質押品",
|
||||
"intro-feature-3": "將任何資產存入來自動賺取利息",
|
||||
"intro-feature-4": "為了把握其他DeFi操作機會而將您的資產質押借貸",
|
||||
"ioc": "IOC",
|
||||
"languages-tip-desc": "在這裡可選介面語言。更多選擇將來...",
|
||||
"languages-tip-title": "您會多種語言嗎?",
|
||||
"layout-tip-desc": "解锁並根据您的喜好重新排列和调整交易面板的大小。",
|
||||
"layout-tip-title": "個人化頁面佈局",
|
||||
"learn": "學習",
|
||||
"learn-more": "學習",
|
||||
"lets-go": "前往",
|
||||
"leverage": "槓桿",
|
||||
"leverage-too-high": "槓桿太高。請減少取款數量",
|
||||
"liabilities": "債務",
|
||||
"light": "明亮",
|
||||
"limit": "限價",
|
||||
"limit-order": "限價",
|
||||
"limit-price": "限價價格",
|
||||
"liquidation-history": "清算歷史",
|
||||
"liquidations": "清算歷史",
|
||||
"liquidity": "流動性",
|
||||
"liquidity-mining": "流動性挖礦",
|
||||
"long": "做多",
|
||||
"low": "低",
|
||||
"maint-health": "維持健康度",
|
||||
"make-trade": "下訂單",
|
||||
"maker": "掛單者",
|
||||
"maker-fee": "掛單費率",
|
||||
"mango": "Mango",
|
||||
"mango-accounts": "Mango帳戶",
|
||||
"margin": "槓桿",
|
||||
"margin-available": "可用保證金",
|
||||
"market": "市場",
|
||||
"market-close": "市價平倉",
|
||||
"market-data": "市場現況",
|
||||
"market-details": "市場細節",
|
||||
"market-order": "市價",
|
||||
"markets": "市場",
|
||||
"max": "最多",
|
||||
"max-borrow": "最多借貸數量",
|
||||
"max-depth-bps": "最大深度Bps",
|
||||
"max-slippage": "最多滑移",
|
||||
"max-with-borrow": "借用最大值",
|
||||
"minutes": "分鐘",
|
||||
"missing-price": "沒有價格",
|
||||
"missing-size": "沒有數量",
|
||||
"missing-trigger": "沒有觸發價格",
|
||||
"mngo-left-period": "期間剩餘的MNGO",
|
||||
"mngo-per-period": "每期MNGO",
|
||||
"mngo-rewards": "MNGO獎勵",
|
||||
"moderate": "中",
|
||||
"more": "更多",
|
||||
"msrm-deposit-error": "存入MSRM出錯了",
|
||||
"msrm-deposited": "成功存入MSRM",
|
||||
"msrm-withdraw-error": "取出MSRM出錯了",
|
||||
"msrm-withdrawal": "成功取出MSRM",
|
||||
"name-error": "無法更新帳戶標籤",
|
||||
"name-updated": "帳戶標籤已更新",
|
||||
"name-your-account": "給帳戶標籤",
|
||||
"net": "淨",
|
||||
"net-balance": "淨餘額",
|
||||
"net-interest-value": "利息淨價值",
|
||||
"net-interest-value-desc": "利息是以獲取/付出時價值來計算的。納稅時這也許會有用。",
|
||||
"new": "新子帳戶",
|
||||
"new-account": "新子帳戶",
|
||||
"new-alert": "創建警報",
|
||||
"next": "前往",
|
||||
"no-account-found": "您沒有帳戶",
|
||||
"no-address": "沒有{{tokenSymbol}}錢包地址",
|
||||
"no-alerts": "您沒有活動警報",
|
||||
"no-alerts-desc": "創建警報而健康度低時被通知到。",
|
||||
"no-balances": "您沒有餘額",
|
||||
"no-borrows": "您沒有借貸。",
|
||||
"no-funding": "您未收/付過資金費",
|
||||
"no-history": "您沒有交易紀錄",
|
||||
"no-interest": "您未收/付過利息",
|
||||
"no-margin": "查不到保證金帳戶",
|
||||
"no-markets": "No markets found",
|
||||
"no-orders": "您沒有訂單",
|
||||
"no-perp": "您沒有永續合約持倉",
|
||||
"no-unsettled": "您沒有未結清金額",
|
||||
"no-wallet": "沒有錢包地址",
|
||||
"node-url": "RPC終點URL",
|
||||
"not-enough-balance": "錢包餘額不夠",
|
||||
"not-enough-sol": "SOL餘額也許不夠下此訂單",
|
||||
"notional-size": "合約面值",
|
||||
"open-interest": "持倉量",
|
||||
"open-orders": "訂單",
|
||||
"optional": "(可選)",
|
||||
"oracle-price": "預言機價格",
|
||||
"order-error": "下訂單出錯了",
|
||||
"orderbook": "掛單簿",
|
||||
"orderbook-animation": "訂單動畫",
|
||||
"orders": "訂單",
|
||||
"performance": "表現",
|
||||
"performance-insights": "表現分析",
|
||||
"period-progress": "期間進度",
|
||||
"perp": "Perp",
|
||||
"perp-desc": "Perpetual swaps settled in USDC",
|
||||
"perp-fees": "Mango永續合約費率",
|
||||
"perp-positions": "合約當前持倉",
|
||||
"perp-positions-tip-desc": "永續合約當前持倉隨著價格波動而累積未結清盈虧。結清盈虧會給您的USDC餘額增加或減少。",
|
||||
"perp-positions-tip-title": "永續合約當前持倉細節",
|
||||
"perpetual-futures": "永續合約",
|
||||
"perps": "永續合約",
|
||||
"pnl-error": "實現盈虧出錯了",
|
||||
"pnl-help": "實現會更新USDC餘額來處理尚未實現的盈虧。",
|
||||
"pnl-success": "實現盈虧成功",
|
||||
"portfolio": "資產組合",
|
||||
"position": "當前持倉",
|
||||
"position-size": "當前持倉數量",
|
||||
"positions": "當前持倉",
|
||||
"post": "Post",
|
||||
"presets": "預設",
|
||||
"price": "價格",
|
||||
"price-expect": "您收到的價格可能與您預期有差異,並且無法保證完全執行。為了您的安全,最大滑點保持為 2.5%。超過 2.5%滑點的部分不會被平倉。",
|
||||
"price-impact": "預計價格影響",
|
||||
"price-unavailable": "無法取價格",
|
||||
"prices-changed": "價格波動導致您的槓桿增加了。請減少取款數量。",
|
||||
"profile-menu-tip-desc": "在這裡可以看看您的Mango帳戶,複製錢包地址以及斷開錢包連結。",
|
||||
"profile-menu-tip-title": "個人資料菜單",
|
||||
"profit-price": "止盈價格",
|
||||
"quantity": "數量",
|
||||
"rates": "存款/借貸利率",
|
||||
"read-more": "看更多資料",
|
||||
"recent": "最近",
|
||||
"recent-trades": "最近成交",
|
||||
"redeem-failure": "收穫MNGO獎勵出錯了",
|
||||
"redeem-pnl": "實現盈虧",
|
||||
"redeem-success": "已收穫MNGO獎勵了",
|
||||
"refresh": "更新",
|
||||
"refresh-data": "更新資料",
|
||||
"repay": "歸還",
|
||||
"repay-and-deposit": "歸還100%借貸及存入{{amount}} {{symbol}}",
|
||||
"repay-full": "歸還100%借貸",
|
||||
"repay-partial": "歸還{{percentage}}%借貸",
|
||||
"reposition": "推動以重新定位",
|
||||
"reset": "重置",
|
||||
"rpc-endpoint": "RPC終點",
|
||||
"save": "保存",
|
||||
"save-name": "保存標籤",
|
||||
"select-account": "請選Mango帳戶",
|
||||
"select-asset": "選擇幣種",
|
||||
"select-margin": "選擇保證金帳戶",
|
||||
"sell": "賣出",
|
||||
"serum-fees": "Serum市場費率",
|
||||
"set-stop-loss": "下止損單",
|
||||
"set-take-profit": "下止盈單",
|
||||
"settings": "設定",
|
||||
"settle": "結清",
|
||||
"settle-all": "結清全部",
|
||||
"settle-error": "結清出錯",
|
||||
"settle-success": "已結清好",
|
||||
"short": "做空",
|
||||
"show-all": "在導航欄中顯示全部",
|
||||
"show-less": "顯示較少",
|
||||
"show-more": "顯示更多",
|
||||
"show-tips": "顯示提示",
|
||||
"show-zero": "顯示零餘額",
|
||||
"side": "方向",
|
||||
"size": "數量",
|
||||
"slippage-warning": "此訂單也許會遭受大量滑點!使用限價止損或限價止盈可能比較適合。",
|
||||
"spanish": "Español",
|
||||
"spot-desc": "Spot margin quoted in USDC",
|
||||
"spot": "現貨",
|
||||
"spread": "點差",
|
||||
"stats": "統計",
|
||||
"stop-limit": "限價止損",
|
||||
"stop-loss": "市場止損",
|
||||
"stop-price": "止損價格",
|
||||
"successfully-placed": "已下單了",
|
||||
"supported-assets": "請給錢包存入已被支持的幣種。",
|
||||
"swap": "換幣",
|
||||
"take-profit": "止盈",
|
||||
"take-profit-limit": "限價止盈",
|
||||
"taker": "吃單者",
|
||||
"taker-fee": "吃單費率",
|
||||
"target-period-length": "目標期間長度",
|
||||
"themes-tip-desc": "Mango,黑暗或明亮(看您偏向)。",
|
||||
"themes-tip-title": "顏色模式",
|
||||
"time": "時間",
|
||||
"token": "幣種",
|
||||
"too-large": "數量太大",
|
||||
"tooltip-account-liquidated": "若帳戶健康度降到0%您的帳戶會被清算直到初始健康度達到0以上了。",
|
||||
"tooltip-after-withdrawal": "取款後的帳戶狀態。",
|
||||
"tooltip-apy-apr": "存款APY/借貸APR",
|
||||
"tooltip-available-after": "算保證金與掛單後可取款數量",
|
||||
"tooltip-display-cumulative": "顯示總計",
|
||||
"tooltip-display-step": "顯示梯計",
|
||||
"tooltip-earn-mngo": "以做永續合約市商而獲得MNGO獎勵。",
|
||||
"tooltip-enable-margin": "為此交易啟用保證金",
|
||||
"tooltip-gui-rebate": "吃單費率是{{taker_rate}}再減20%介面費率折扣.",
|
||||
"tooltip-interest-charged": "利率以借貸餘額計算而可波動。",
|
||||
"tooltip-ioc": "IOC交易若不吃單就會被取消。",
|
||||
"tooltip-lock-layout": "鎖定頁面佈局",
|
||||
"tooltip-name-onchain": "帳戶標籤是在區塊鏈上存保的",
|
||||
"tooltip-post": "Post交易若不掛單就會被取消。",
|
||||
"tooltip-projected-leverage": "預計槓桿",
|
||||
"tooltip-reduce": "Reduce交易只能減少您的持倉。",
|
||||
"tooltip-reset-layout": "重置頁面佈局",
|
||||
"tooltip-serum-rebate": "Serum的20%費率是交給介面提供者。Mango將此費率退還給您。退還前的吃單費率是{{taker_percent}}",
|
||||
"tooltip-slippage": "若價格滑點多於您設定的最多滑點,您訂單就會部分成交至該價格。",
|
||||
"tooltip-switch-layout": "換頁面佈局",
|
||||
"tooltip-unlock-layout": "解鎖頁面佈局",
|
||||
"total-assets": "總資產價值",
|
||||
"total-borrow-interest": "借貸總利息",
|
||||
"total-borrow-value": "借貸總價值",
|
||||
"total-borrows": "借貸總數量",
|
||||
"total-deposit-interest": "存款總利息",
|
||||
"total-deposit-value": "存款總價值",
|
||||
"total-deposits": "存款總數量",
|
||||
"total-funding": "資金費總數量",
|
||||
"total-funding-stats": "資金費收/付統計",
|
||||
"total-liabilities": "總債務價值",
|
||||
"total-srm": "在Mango裡的SRM總量",
|
||||
"totals": "總量",
|
||||
"trade": "交易",
|
||||
"trade-history": "交易紀錄",
|
||||
"trades": "成交",
|
||||
"trades-history": "交易紀錄",
|
||||
"transaction-sent": "已下訂單",
|
||||
"trigger-price": "觸發價格",
|
||||
"try-again": "請再試一次",
|
||||
"type": "類型",
|
||||
"unrealized-pnl": "未實現盈虧",
|
||||
"unsettled": "未結清",
|
||||
"unsettled-balance": "未實現盈虧",
|
||||
"unsettled-balances": "未結清餘額",
|
||||
"unsettled-positions": "未結清持倉",
|
||||
"use-explorer-one": "使用",
|
||||
"use-explorer-three": "來驗證延遲的交易",
|
||||
"use-explorer-two": "瀏覽器",
|
||||
"utilization": "利用率",
|
||||
"v3-new": "V3與V2完全不一樣。仍要登錄V2的人可以在導航欄點「更多」或此鏈接:",
|
||||
"v3-unaudited": "Mango V3目前還是測試版。此軟體未經過審計。風險自負。",
|
||||
"v3-welcome": "歡迎到Mango V3",
|
||||
"value": "價值",
|
||||
"view-all-trades": "在帳戶頁面查看所以交易",
|
||||
"view-counterparty": "查看交易對方",
|
||||
"view-transaction": "查看交易",
|
||||
"wallet": "錢包",
|
||||
"wallet-connected": "已連結錢包",
|
||||
"wallet-disconnected": "斷開錢包連結",
|
||||
"withdraw": "取款",
|
||||
"withdraw-error": "無法取款",
|
||||
"withdraw-funds": "取款",
|
||||
"withdraw-history": "提款記錄",
|
||||
"withdraw-success": "已取款",
|
||||
"withdrawals": "取款",
|
||||
"you-must-leave-enough-sol": "您必須在錢包中保留足夠的 SOL 來支付交易費用",
|
||||
"your-account": "您的帳戶",
|
||||
"your-assets": "您的資產",
|
||||
"your-borrows": "您的借入"
|
||||
{
|
||||
"about-to-withdraw": "您正在存款",
|
||||
"above": "高於",
|
||||
"accept": "接受",
|
||||
"accept-terms": "我明白並接受使用此平台的風險",
|
||||
"account": "帳戶",
|
||||
"account-address-warning": "千萬不要將幣種直接傳送至帳戶地址。",
|
||||
"account-details-tip-desc": "當您進行首次存款時,我們將為您設置一個Mango賬戶。您的錢包中至少需要0.0035 SOL才能支付創建帳戶的押金。",
|
||||
"account-details-tip-title": "帳戶細節",
|
||||
"account-equity": "帳戶餘額",
|
||||
"account-equity-chart-title": "帳戶餘額",
|
||||
"account-health": "帳戶健康",
|
||||
"account-health-tip-desc": "為了避免被清算,您必須將帳戶健康度保持在0%以上。為了提高健康度,請減少借貸或存入資產。",
|
||||
"account-health-tip-title": "帳戶健康",
|
||||
"account-name": "帳戶標籤",
|
||||
"account-performance": "帳戶表現",
|
||||
"account-pnl": "帳戶盈虧",
|
||||
"account-pnl-chart-title": "帳戶盈虧",
|
||||
"account-risk": "帳戶風險度",
|
||||
"account-value": "帳戶價值",
|
||||
"accounts": "帳戶",
|
||||
"active-alerts": "活動警報",
|
||||
"add-more-sol": "為了避免交易出錯請給被連結的錢包多存入一點SOL。",
|
||||
"add-name": "加標籤",
|
||||
"alert-health": "健康度低於此度發警報",
|
||||
"alert-info": "健康度在{{health}}%以下時發電子郵件",
|
||||
"alerts": "警報",
|
||||
"alerts-disclaimer": "請別全靠警報來保護資產。我們無法保證會準時發出。",
|
||||
"alerts-max": "您以達到活動警報數量限制。",
|
||||
"all-assets": "所有資產",
|
||||
"amount": "數量",
|
||||
"approximate-time": "大概時間",
|
||||
"asset": "資產",
|
||||
"assets": "資產",
|
||||
"assets-liabilities": "資產和債務",
|
||||
"available-balance": "可用的金額",
|
||||
"average-borrow": "平均借貸率",
|
||||
"average-deposit": "平均存款率",
|
||||
"average-entry": "平均開倉價",
|
||||
"average-funding": "平均資金費率(1小時)",
|
||||
"back": "回去",
|
||||
"balance": "帳戶餘額",
|
||||
"balances": "帳戶餘額",
|
||||
"being-liquidated": "您的帳戶正在被清算!",
|
||||
"below": "低於",
|
||||
"borrow": "借貸",
|
||||
"borrow-funds": "借貸",
|
||||
"borrow-interest": "借貸利息",
|
||||
"borrow-notification": "借貸時貨幣會提到您被連結的錢包。",
|
||||
"borrow-rate": "借貸利率",
|
||||
"borrow-value": "借貸價值",
|
||||
"borrow-withdraw": "借貸與取款",
|
||||
"borrows": "借貸",
|
||||
"break-even": "保本價格",
|
||||
"buy": "買入",
|
||||
"calculator": "計算器",
|
||||
"cancel": "取消",
|
||||
"cancel-error": "取消掛單出錯",
|
||||
"cancel-success": "已取消掛單",
|
||||
"change-account": "切換帳戶",
|
||||
"change-language": "切換語言",
|
||||
"change-theme": "切換模式",
|
||||
"character-limit": "帳戶標籤必須含有32以下個字符",
|
||||
"chinese": "简体中文",
|
||||
"chinese-traditional": "繁體中文",
|
||||
"claim": "收穫",
|
||||
"claim-reward": "收穫獎勵",
|
||||
"close": "關",
|
||||
"close-and-long": "平倉和做多",
|
||||
"close-and-short": "平倉和做空",
|
||||
"close-confirm": "您確定要市場平倉您的{{config_name}}持倉嗎?",
|
||||
"close-open-long": "100%平倉以及做多{{size}} {{symbol}}",
|
||||
"close-open-short": "100%平倉以及做空{{size}} {{symbol}}",
|
||||
"close-position": "平倉",
|
||||
"collateral-available": "可用質押品",
|
||||
"collateral-available-tip-desc": "可用於槓桿交易的質押品價值。資產具有不同的質押權重(根據資產給平台帶來的風險)。",
|
||||
"collateral-available-tip-title": "可用質押品",
|
||||
"condition": "狀態",
|
||||
"confirm": "確認",
|
||||
"confirm-deposit": "確認存款",
|
||||
"confirm-withdraw": "確認取款",
|
||||
"confirming-transaction": "正在確認交易...",
|
||||
"connect": "連結",
|
||||
"connect-view": "連結錢包而看帳戶狀態",
|
||||
"connect-wallet": "連結錢包",
|
||||
"connect-wallet-tip-desc": "我們會帶你四處看看...",
|
||||
"connect-wallet-tip-title": "連結錢包",
|
||||
"connected-to": "連結錢包",
|
||||
"copy-address": "複製地址",
|
||||
"country-not-allowed": "您的國家不允許",
|
||||
"country-not-allowed-tooltip": "您正在使用MangoDAO提供的開源介面。由於監管的不確定性因此處於謀些地區的人的行動會受到限制。",
|
||||
"create-account": "創建帳戶",
|
||||
"create-alert": "創建警報",
|
||||
"current-stats": "當前統計",
|
||||
"custom": "自定義",
|
||||
"daily-change": "24小時變動",
|
||||
"daily-high": "24hr High",
|
||||
"daily-low": "24hr Low",
|
||||
"daily-range": "24小時廣度",
|
||||
"daily-volume": "24小時成交量",
|
||||
"dark": "黑暗",
|
||||
"data-refresh-tip-desc": "雖然數據會自動更新,但您還是可以點擊手動更新。",
|
||||
"data-refresh-tip-title": "手動數據更新",
|
||||
"date": "日期",
|
||||
"default-market": "預設市場",
|
||||
"default-spot-margin": "預設開啟槓桿交易",
|
||||
"delay-displaying-recent": "顯示最近狀態也許有所延誤。",
|
||||
"deposit": "存款",
|
||||
"deposit-before": "歸還全借貸前您得先多存入{{tokenSymbol}}",
|
||||
"deposit-failed": "存款失敗",
|
||||
"deposit-funds": "存款",
|
||||
"deposit-help": "存入前請給錢包創建{{tokenSymbol}}地址以及存入{{tokenSymbol}}。",
|
||||
"deposit-history": "存款歷史",
|
||||
"deposit-interest": "存款利息",
|
||||
"deposit-rate": "存款利率",
|
||||
"deposit-successful": "成功存款",
|
||||
"deposit-to-get-started": "請先存款",
|
||||
"deposit-value": "存款價值",
|
||||
"depositing": "您正在存款",
|
||||
"deposits": "存款",
|
||||
"depth-rewarded": "獎勵深度",
|
||||
"details": "細節",
|
||||
"disconnect": "斷開連結",
|
||||
"done": "完成",
|
||||
"edit": "編輯",
|
||||
"edit-name": "編輯帳戶標籤",
|
||||
"edit-nickname": "編輯帳戶標籤",
|
||||
"email-address": "電子郵件地址",
|
||||
"english": "English",
|
||||
"enter-amount": "輸入存款數量",
|
||||
"enter-name": "輸入帳戶標籤",
|
||||
"equity": "餘額",
|
||||
"est-period-end": "預計期末時間",
|
||||
"est-slippage": "預計下滑",
|
||||
"estimated-liq-price": "預計清算價格",
|
||||
"explorer": "瀏覽器",
|
||||
"export-data": "導出CSV",
|
||||
"export-data-empty": "無資料可導出",
|
||||
"export-data-success": "CSV導出成功",
|
||||
"favorite": "Favorite",
|
||||
"favorites": "Favorites",
|
||||
"fee": "費率",
|
||||
"fee-discount": "費率折扣",
|
||||
"first-deposit-desc": "創建Mango帳戶最少需要0.035 SOL。",
|
||||
"funding": "資金費",
|
||||
"funding-chart-title": "資金費",
|
||||
"get-started": "開始",
|
||||
"health": "健康度",
|
||||
"health-check": "帳戶健康檢查",
|
||||
"health-ratio": "健康比率",
|
||||
"hide-all": "在導航欄中隱藏全部",
|
||||
"hide-dust": "隱藏塵土",
|
||||
"high": "高",
|
||||
"history": "歷史",
|
||||
"history-empty": "沒有歷史",
|
||||
"hourly-borrow-interest": "1小時借貸利息",
|
||||
"hourly-deposit-interest": "1小時存款利息",
|
||||
"hourly-funding": "1小時資金費",
|
||||
"in-orders": "在掛單中",
|
||||
"includes-borrow": "包括存入",
|
||||
"init-error": "創建Mango帳戶與存款出錯了",
|
||||
"init-health": "初始健康度",
|
||||
"initial-deposit": "初始存款",
|
||||
"insufficient-balance-deposit": "帳戶餘額不夠。請減少存入數量",
|
||||
"insufficient-balance-withdraw": "帳戶餘額不夠。您得以借貸而前往",
|
||||
"insufficient-sol": "創建Mango帳戶最少需要0.035 SOL。",
|
||||
"interest": "利息",
|
||||
"interest-chart-title": "{{symbol}} 利息",
|
||||
"interest-chart-value-title": "{{symbol}} 利息價值",
|
||||
"interest-earned": "存借利息",
|
||||
"interest-info": "您的存款會持續賺取利息。",
|
||||
"intro-feature-1": "交叉質押的槓桿交易",
|
||||
"intro-feature-2": "所有資產都可作為交易或借貸的質押品",
|
||||
"intro-feature-3": "將任何資產存入來自動賺取利息",
|
||||
"intro-feature-4": "為了把握其他DeFi操作機會而將您的資產質押借貸",
|
||||
"ioc": "IOC",
|
||||
"languages-tip-desc": "在這裡可選介面語言。更多選擇將來...",
|
||||
"languages-tip-title": "您會多種語言嗎?",
|
||||
"layout-tip-desc": "解锁並根据您的喜好重新排列和调整交易面板的大小。",
|
||||
"layout-tip-title": "個人化頁面佈局",
|
||||
"learn": "學習",
|
||||
"learn-more": "學習",
|
||||
"lets-go": "前往",
|
||||
"leverage": "槓桿",
|
||||
"leverage-too-high": "槓桿太高。請減少取款數量",
|
||||
"liabilities": "債務",
|
||||
"light": "明亮",
|
||||
"limit": "限價",
|
||||
"limit-order": "限價",
|
||||
"limit-price": "限價價格",
|
||||
"liquidation-history": "清算歷史",
|
||||
"liquidations": "清算歷史",
|
||||
"liquidity": "流動性",
|
||||
"liquidity-mining": "流動性挖礦",
|
||||
"long": "做多",
|
||||
"low": "低",
|
||||
"maint-health": "維持健康度",
|
||||
"make-trade": "下訂單",
|
||||
"maker": "掛單者",
|
||||
"maker-fee": "掛單費率",
|
||||
"mango": "Mango",
|
||||
"mango-accounts": "Mango帳戶",
|
||||
"margin": "槓桿",
|
||||
"margin-available": "可用保證金",
|
||||
"market": "市場",
|
||||
"market-close": "市價平倉",
|
||||
"market-data": "市場現況",
|
||||
"market-details": "市場細節",
|
||||
"market-order": "市價",
|
||||
"markets": "市場",
|
||||
"max": "最多",
|
||||
"max-borrow": "最多借貸數量",
|
||||
"max-depth-bps": "最大深度Bps",
|
||||
"max-slippage": "最多滑移",
|
||||
"max-with-borrow": "借用最大值",
|
||||
"minutes": "分鐘",
|
||||
"missing-price": "沒有價格",
|
||||
"missing-size": "沒有數量",
|
||||
"missing-trigger": "沒有觸發價格",
|
||||
"mngo-left-period": "期間剩餘的MNGO",
|
||||
"mngo-per-period": "每期MNGO",
|
||||
"mngo-rewards": "MNGO獎勵",
|
||||
"moderate": "中",
|
||||
"more": "更多",
|
||||
"msrm-deposit-error": "存入MSRM出錯了",
|
||||
"msrm-deposited": "成功存入MSRM",
|
||||
"msrm-withdraw-error": "取出MSRM出錯了",
|
||||
"msrm-withdrawal": "成功取出MSRM",
|
||||
"name-error": "無法更新帳戶標籤",
|
||||
"name-updated": "帳戶標籤已更新",
|
||||
"name-your-account": "給帳戶標籤",
|
||||
"net": "淨",
|
||||
"net-balance": "淨餘額",
|
||||
"net-interest-value": "利息淨價值",
|
||||
"net-interest-value-desc": "利息是以獲取/付出時價值來計算的。納稅時這也許會有用。",
|
||||
"new": "新子帳戶",
|
||||
"new-account": "新子帳戶",
|
||||
"new-alert": "創建警報",
|
||||
"next": "前往",
|
||||
"no-account-found": "您沒有帳戶",
|
||||
"no-address": "沒有{{tokenSymbol}}錢包地址",
|
||||
"no-alerts": "您沒有活動警報",
|
||||
"no-alerts-desc": "創建警報而健康度低時被通知到。",
|
||||
"no-balances": "您沒有餘額",
|
||||
"no-borrows": "您沒有借貸。",
|
||||
"no-funding": "您未收/付過資金費",
|
||||
"no-history": "您沒有交易紀錄",
|
||||
"no-interest": "您未收/付過利息",
|
||||
"no-margin": "查不到保證金帳戶",
|
||||
"no-markets": "No markets found",
|
||||
"no-orders": "您沒有訂單",
|
||||
"no-perp": "您沒有永續合約持倉",
|
||||
"no-unsettled": "您沒有未結清金額",
|
||||
"no-wallet": "沒有錢包地址",
|
||||
"node-url": "RPC終點URL",
|
||||
"not-enough-balance": "錢包餘額不夠",
|
||||
"not-enough-sol": "SOL餘額也許不夠下此訂單",
|
||||
"notional-size": "合約面值",
|
||||
"open-interest": "持倉量",
|
||||
"open-orders": "訂單",
|
||||
"optional": "(可選)",
|
||||
"oracle-price": "預言機價格",
|
||||
"order-error": "下訂單出錯了",
|
||||
"orderbook": "掛單簿",
|
||||
"orderbook-animation": "訂單動畫",
|
||||
"orders": "訂單",
|
||||
"performance": "表現",
|
||||
"performance-insights": "表現分析",
|
||||
"period-progress": "期間進度",
|
||||
"perp": "Perp",
|
||||
"perp-desc": "Perpetual swaps settled in USDC",
|
||||
"perp-fees": "Mango永續合約費率",
|
||||
"perp-positions": "合約當前持倉",
|
||||
"perp-positions-tip-desc": "永續合約當前持倉隨著價格波動而累積未結清盈虧。結清盈虧會給您的USDC餘額增加或減少。",
|
||||
"perp-positions-tip-title": "永續合約當前持倉細節",
|
||||
"perpetual-futures": "永續合約",
|
||||
"perps": "永續合約",
|
||||
"pnl-error": "實現盈虧出錯了",
|
||||
"pnl-help": "實現會更新USDC餘額來處理尚未實現的盈虧。",
|
||||
"pnl-success": "實現盈虧成功",
|
||||
"portfolio": "資產組合",
|
||||
"position": "當前持倉",
|
||||
"position-size": "當前持倉數量",
|
||||
"positions": "當前持倉",
|
||||
"post": "Post",
|
||||
"presets": "預設",
|
||||
"price": "價格",
|
||||
"price-expect": "您收到的價格可能與您預期有差異,並且無法保證完全執行。為了您的安全,最大滑點保持為 2.5%。超過 2.5%滑點的部分不會被平倉。",
|
||||
"price-impact": "預計價格影響",
|
||||
"price-unavailable": "無法取價格",
|
||||
"prices-changed": "價格波動導致您的槓桿增加了。請減少取款數量。",
|
||||
"profile-menu-tip-desc": "在這裡可以看看您的Mango帳戶,複製錢包地址以及斷開錢包連結。",
|
||||
"profile-menu-tip-title": "個人資料菜單",
|
||||
"profit-price": "止盈價格",
|
||||
"quantity": "數量",
|
||||
"rates": "存款/借貸利率",
|
||||
"read-more": "看更多資料",
|
||||
"recent": "最近",
|
||||
"recent-trades": "最近成交",
|
||||
"redeem-failure": "收穫MNGO獎勵出錯了",
|
||||
"redeem-pnl": "實現盈虧",
|
||||
"redeem-success": "已收穫MNGO獎勵了",
|
||||
"referrals": "推薦碼",
|
||||
"refresh": "更新",
|
||||
"refresh-data": "更新資料",
|
||||
"repay": "歸還",
|
||||
"repay-and-deposit": "歸還100%借貸及存入{{amount}} {{symbol}}",
|
||||
"repay-full": "歸還100%借貸",
|
||||
"repay-partial": "歸還{{percentage}}%借貸",
|
||||
"reposition": "推動以重新定位",
|
||||
"reset": "重置",
|
||||
"rpc-endpoint": "RPC終點",
|
||||
"save": "保存",
|
||||
"save-name": "保存標籤",
|
||||
"select-account": "請選Mango帳戶",
|
||||
"select-asset": "選擇幣種",
|
||||
"select-margin": "選擇保證金帳戶",
|
||||
"sell": "賣出",
|
||||
"serum-fees": "Serum市場費率",
|
||||
"set-stop-loss": "下止損單",
|
||||
"set-take-profit": "下止盈單",
|
||||
"settings": "設定",
|
||||
"settle": "結清",
|
||||
"settle-all": "結清全部",
|
||||
"settle-error": "結清出錯",
|
||||
"settle-success": "已結清好",
|
||||
"short": "做空",
|
||||
"show-all": "在導航欄中顯示全部",
|
||||
"show-less": "顯示較少",
|
||||
"show-more": "顯示更多",
|
||||
"show-tips": "顯示提示",
|
||||
"show-zero": "顯示零餘額",
|
||||
"side": "方向",
|
||||
"size": "數量",
|
||||
"slippage-warning": "此訂單也許會遭受大量滑點!使用限價止損或限價止盈可能比較適合。",
|
||||
"spanish": "Español",
|
||||
"spot": "現貨",
|
||||
"spot-desc": "Spot margin quoted in USDC",
|
||||
"spread": "點差",
|
||||
"stats": "統計",
|
||||
"stop-limit": "限價止損",
|
||||
"stop-loss": "市場止損",
|
||||
"stop-price": "止損價格",
|
||||
"successfully-placed": "已下單了",
|
||||
"supported-assets": "請給錢包存入已被支持的幣種。",
|
||||
"swap": "換幣",
|
||||
"take-profit": "止盈",
|
||||
"take-profit-limit": "限價止盈",
|
||||
"taker": "吃單者",
|
||||
"taker-fee": "吃單費率",
|
||||
"target-period-length": "目標期間長度",
|
||||
"themes-tip-desc": "Mango,黑暗或明亮(看您偏向)。",
|
||||
"themes-tip-title": "顏色模式",
|
||||
"time": "時間",
|
||||
"token": "幣種",
|
||||
"too-large": "數量太大",
|
||||
"tooltip-account-liquidated": "若帳戶健康度降到0%您的帳戶會被清算直到初始健康度達到0以上了。",
|
||||
"tooltip-after-withdrawal": "取款後的帳戶狀態。",
|
||||
"tooltip-apy-apr": "存款APY/借貸APR",
|
||||
"tooltip-available-after": "算保證金與掛單後可取款數量",
|
||||
"tooltip-display-cumulative": "顯示總計",
|
||||
"tooltip-display-step": "顯示梯計",
|
||||
"tooltip-earn-mngo": "以做永續合約市商而獲得MNGO獎勵。",
|
||||
"tooltip-enable-margin": "為此交易啟用保證金",
|
||||
"tooltip-gui-rebate": "吃單費率是{{taker_rate}}再減20%介面費率折扣.",
|
||||
"tooltip-interest-charged": "利率以借貸餘額計算而可波動。",
|
||||
"tooltip-ioc": "IOC交易若不吃單就會被取消。",
|
||||
"tooltip-lock-layout": "鎖定頁面佈局",
|
||||
"tooltip-name-onchain": "帳戶標籤是在區塊鏈上存保的",
|
||||
"tooltip-post": "Post交易若不掛單就會被取消。",
|
||||
"tooltip-projected-leverage": "預計槓桿",
|
||||
"tooltip-reduce": "Reduce交易只能減少您的持倉。",
|
||||
"tooltip-reset-layout": "重置頁面佈局",
|
||||
"tooltip-serum-rebate": "Serum的20%費率是交給介面提供者。Mango將此費率退還給您。退還前的吃單費率是{{taker_percent}}",
|
||||
"tooltip-slippage": "若價格滑點多於您設定的最多滑點,您訂單就會部分成交至該價格。",
|
||||
"tooltip-switch-layout": "換頁面佈局",
|
||||
"tooltip-unlock-layout": "解鎖頁面佈局",
|
||||
"total-assets": "總資產價值",
|
||||
"total-borrow-interest": "借貸總利息",
|
||||
"total-borrow-value": "借貸總價值",
|
||||
"total-borrows": "借貸總數量",
|
||||
"total-deposit-interest": "存款總利息",
|
||||
"total-deposit-value": "存款總價值",
|
||||
"total-deposits": "存款總數量",
|
||||
"total-funding": "資金費總數量",
|
||||
"total-funding-stats": "資金費收/付統計",
|
||||
"total-liabilities": "總債務價值",
|
||||
"total-srm": "在Mango裡的SRM總量",
|
||||
"totals": "總量",
|
||||
"trade": "交易",
|
||||
"trade-history": "交易紀錄",
|
||||
"trades": "成交",
|
||||
"trades-history": "交易紀錄",
|
||||
"transaction-sent": "已下訂單",
|
||||
"trigger-price": "觸發價格",
|
||||
"try-again": "請再試一次",
|
||||
"type": "類型",
|
||||
"unrealized-pnl": "未實現盈虧",
|
||||
"unsettled": "未結清",
|
||||
"unsettled-balance": "未實現盈虧",
|
||||
"unsettled-balances": "未結清餘額",
|
||||
"unsettled-positions": "未結清持倉",
|
||||
"use-explorer-one": "使用",
|
||||
"use-explorer-three": "來驗證延遲的交易",
|
||||
"use-explorer-two": "瀏覽器",
|
||||
"utilization": "利用率",
|
||||
"v3-new": "V3與V2完全不一樣。仍要登錄V2的人可以在導航欄點「更多」或此鏈接:",
|
||||
"v3-unaudited": "Mango V3目前還是測試版。此軟體未經過審計。風險自負。",
|
||||
"v3-welcome": "歡迎到Mango V3",
|
||||
"value": "價值",
|
||||
"view-all-trades": "在帳戶頁面查看所以交易",
|
||||
"view-counterparty": "查看交易對方",
|
||||
"view-transaction": "查看交易",
|
||||
"wallet": "錢包",
|
||||
"wallet-connected": "已連結錢包",
|
||||
"wallet-disconnected": "斷開錢包連結",
|
||||
"withdraw": "取款",
|
||||
"withdraw-error": "無法取款",
|
||||
"withdraw-funds": "取款",
|
||||
"withdraw-history": "提款記錄",
|
||||
"withdraw-success": "已取款",
|
||||
"withdrawals": "取款",
|
||||
"you-must-leave-enough-sol": "您必須在錢包中保留足夠的 SOL 來支付交易費用",
|
||||
"your-account": "您的帳戶",
|
||||
"your-assets": "您的資產",
|
||||
"your-borrows": "您的借入"
|
||||
}
|
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
"10k-mngo": "您的Mango帳戶必須含有一萬MNGO",
|
||||
"buy-mngo": "買MNGO",
|
||||
"copy-link": "複製連結",
|
||||
"custom-links": "自定連結",
|
||||
"custom-links-limit": "您可創建的推薦碼數量限制於5。",
|
||||
"earn-16": "收穫薦友PERP市場費用的16%,再加上薦友也獲得4%折扣。",
|
||||
"earnings-history": "盈利歷史",
|
||||
"enter-referral-id": "輸入推薦碼",
|
||||
"fee-earned": "收穫費用",
|
||||
"generate-link": "創建自定連結",
|
||||
"link": "連結",
|
||||
"link-created": "已創建自定連結",
|
||||
"link-not-created": "無法創建自定連結",
|
||||
"program-details": "活動細節",
|
||||
"program-details-1": "朋友以您的連結創建Mango帳戶時您的推薦碼會自動實施。",
|
||||
"program-details-2": "薦友買賣PERPs的時候您會收穫他們繳的費用的16%。",
|
||||
"program-details-3": "再加上薦友會獲得PERP費用的4%折扣。",
|
||||
"program-details-4": "您的Mango帳戶至少必須含有一萬MNGO才能收穫推薦碼帶來的盈利。",
|
||||
"referee": "薦友",
|
||||
"referral-id": "推薦碼",
|
||||
"sow-seed": "播種芒果",
|
||||
"too-long-error": "推薦碼長度必須少於33個字母",
|
||||
"total-earnings": "總收入",
|
||||
"total-referrals": "總推薦",
|
||||
"your-links": "您的連結",
|
||||
"your-referrals": "您的推薦"
|
||||
}
|
Loading…
Reference in New Issue