@orderly.network/i18n 2.0.8-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +219 -0
- package/bin/cli.js +172 -0
- package/dist/index.d.mts +1298 -0
- package/dist/index.d.ts +1298 -0
- package/dist/index.js +45 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +13 -0
- package/dist/index.mjs.map +1 -0
- package/dist/locale.csv +603 -0
- package/package.json +56 -0
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,1298 @@
|
|
|
1
|
+
import * as react_i18next from 'react-i18next';
|
|
2
|
+
import { I18nextProviderProps, FallbackNs, UseTranslationOptions } from 'react-i18next';
|
|
3
|
+
export * from 'react-i18next';
|
|
4
|
+
import * as i18next from 'i18next';
|
|
5
|
+
import { FlatNamespace, KeyPrefix } from 'i18next';
|
|
6
|
+
export { createInstance, default as i18next } from 'i18next';
|
|
7
|
+
import { FC, ReactNode } from 'react';
|
|
8
|
+
import { $Tuple } from 'react-i18next/helpers';
|
|
9
|
+
|
|
10
|
+
type Language = {
|
|
11
|
+
localCode: LocaleCode;
|
|
12
|
+
displayName: string;
|
|
13
|
+
};
|
|
14
|
+
type LocaleContextState = {
|
|
15
|
+
languages: Language[];
|
|
16
|
+
};
|
|
17
|
+
declare const useLocaleContext: () => LocaleContextState;
|
|
18
|
+
|
|
19
|
+
declare enum LocaleEnum {
|
|
20
|
+
/** English */
|
|
21
|
+
en = "en",
|
|
22
|
+
/** Chinese */
|
|
23
|
+
zh = "zh",
|
|
24
|
+
/** Japanese */
|
|
25
|
+
ja = "ja",
|
|
26
|
+
/** Spanish */
|
|
27
|
+
es = "es",
|
|
28
|
+
/** Korean */
|
|
29
|
+
ko = "ko",
|
|
30
|
+
/** Vietnamese */
|
|
31
|
+
vi = "vi",
|
|
32
|
+
/** German */
|
|
33
|
+
de = "de",
|
|
34
|
+
/** French */
|
|
35
|
+
fr = "fr",
|
|
36
|
+
/** Dutch */
|
|
37
|
+
nl = "nl",
|
|
38
|
+
/** Indonesian */
|
|
39
|
+
id = "id"
|
|
40
|
+
}
|
|
41
|
+
declare const defaultLng = LocaleEnum.en;
|
|
42
|
+
declare const defaultNS = "translation";
|
|
43
|
+
declare const defaultLanguages: Language[];
|
|
44
|
+
declare const i18nLocalStorageKey = "orderly_i18nLng";
|
|
45
|
+
|
|
46
|
+
declare const en: {
|
|
47
|
+
"tradingLeaderboard.leaderboard": string;
|
|
48
|
+
"tradingLeaderboard.campaigns": string;
|
|
49
|
+
"tradingLeaderboard.ongoing": string;
|
|
50
|
+
"tradingLeaderboard.past": string;
|
|
51
|
+
"tradingLeaderboard.future": string;
|
|
52
|
+
"tradingLeaderboard.learnMore": string;
|
|
53
|
+
"tradingLeaderboard.tradeNow": string;
|
|
54
|
+
"tradingLeaderboard.tradingVolume": string;
|
|
55
|
+
"tradingLeaderboard.rank": string;
|
|
56
|
+
"ui.pagination.morePages": string;
|
|
57
|
+
"ui.pagination.rowsPerPage": string;
|
|
58
|
+
"ui.picker.selectDate": string;
|
|
59
|
+
"ui.empty.description": string;
|
|
60
|
+
"affiliate.referral": string;
|
|
61
|
+
"affiliate.trader": string;
|
|
62
|
+
"affiliate.enter": string;
|
|
63
|
+
"affiliate.statistics": string;
|
|
64
|
+
"affiliate.connectWallet.tooltip": string;
|
|
65
|
+
"affiliate.page.title": string;
|
|
66
|
+
"affiliate.page.subTitle": string;
|
|
67
|
+
"affiliate.page.learnMore": string;
|
|
68
|
+
"affiliate.asAffiliate.title": string;
|
|
69
|
+
"affiliate.asAffiliate.description": string;
|
|
70
|
+
"affiliate.asAffiliate.button": string;
|
|
71
|
+
"affiliate.asTrader.title": string;
|
|
72
|
+
"affiliate.asTrader.description": string;
|
|
73
|
+
"affiliate.asTrader.button": string;
|
|
74
|
+
"affiliate.referralCode": string;
|
|
75
|
+
"affiliate.referralCode.dialog.title": string;
|
|
76
|
+
"affiliate.referralCode.dialog.description": string;
|
|
77
|
+
"affiliate.referralCode.label": string;
|
|
78
|
+
"affiliate.referralCode.bound": string;
|
|
79
|
+
"affiliate.referralCode.notExist": string;
|
|
80
|
+
"affiliate.process.title": string;
|
|
81
|
+
"affiliate.process.step1.title.title": string;
|
|
82
|
+
"affiliate.process.step1.description": string;
|
|
83
|
+
"affiliate.process.step2.title": string;
|
|
84
|
+
"affiliate.process.step2.description": string;
|
|
85
|
+
"affiliate.process.step3.title": string;
|
|
86
|
+
"affiliate.process.step3.description": string;
|
|
87
|
+
"affiliate.summary": string;
|
|
88
|
+
"affiliate.summary.refereesTraded": string;
|
|
89
|
+
"affiliate.referralLink": string;
|
|
90
|
+
"affiliate.referralLink.earn": string;
|
|
91
|
+
"affiliate.referralLink.earn.tooltip": string;
|
|
92
|
+
"affiliate.referralLink.share": string;
|
|
93
|
+
"affiliate.referralLink.share.tooltip": string;
|
|
94
|
+
"affiliate.referralVol": string;
|
|
95
|
+
"affiliate.referralCodes": string;
|
|
96
|
+
"affiliate.referralCodes.remaining": string;
|
|
97
|
+
"affiliate.referralCodes.column.you&Referee": string;
|
|
98
|
+
"affiliate.referralCodes.column.traders": string;
|
|
99
|
+
"affiliate.referralCodes.column.referees&Traders": string;
|
|
100
|
+
"affiliate.referralCodes.copyLink": string;
|
|
101
|
+
"affiliate.commission": string;
|
|
102
|
+
"affiliate.commission.30d": string;
|
|
103
|
+
"affiliate.commission.column.activeUsers": string;
|
|
104
|
+
"affiliate.myReferees": string;
|
|
105
|
+
"affiliate.referees": string;
|
|
106
|
+
"affiliate.referees.column.refereeAddress": string;
|
|
107
|
+
"affiliate.referees.column.totalCommission": string;
|
|
108
|
+
"affiliate.referees.column.totalVol": string;
|
|
109
|
+
"affiliate.referees.column.invitationTime": string;
|
|
110
|
+
"affiliate.trader.yourReferrer": string;
|
|
111
|
+
"affiliate.trader.rebate": string;
|
|
112
|
+
"affiliate.trader.rebates": string;
|
|
113
|
+
"affiliate.trader.myRebates": string;
|
|
114
|
+
"affiliate.trader.tradingVol": string;
|
|
115
|
+
"transfer.network": string;
|
|
116
|
+
"transfer.lowestFee": string;
|
|
117
|
+
"transfer.web3Wallet": string;
|
|
118
|
+
"transfer.brokerAccount": string;
|
|
119
|
+
"transfer.quantity.invalid": string;
|
|
120
|
+
"transfer.insufficientBalance": string;
|
|
121
|
+
"transfer.rejectTransaction": string;
|
|
122
|
+
"transfer.deposit.approve.symbol": string;
|
|
123
|
+
"transfer.deposit.approve.success": string;
|
|
124
|
+
"transfer.deposit.approve.failed": string;
|
|
125
|
+
"transfer.deposit.increase.symbol": string;
|
|
126
|
+
"transfer.deposit.requested": string;
|
|
127
|
+
"transfer.deposit.completed": string;
|
|
128
|
+
"transfer.deposit.failed": string;
|
|
129
|
+
"transfer.deposit.destinationGasFee": string;
|
|
130
|
+
"transfer.deposit.destinationGasFee.description": string;
|
|
131
|
+
"transfer.withdraw.unsupported.chain": string;
|
|
132
|
+
"transfer.withdraw.unsupported.networkName": string;
|
|
133
|
+
"transfer.withdraw.crossChain.confirmWithdraw": string;
|
|
134
|
+
"transfer.withdraw.crossChain.recipientAddress": string;
|
|
135
|
+
"transfer.withdraw.crossChain.recipientNetwork": string;
|
|
136
|
+
"transfer.withdraw.crossChain.withdrawAmount": string;
|
|
137
|
+
"transfer.withdraw.crossChain.process": string;
|
|
138
|
+
"transfer.withdraw.crossChain.warning": string;
|
|
139
|
+
"transfer.withdraw.crossChain.vaultWarning": string;
|
|
140
|
+
"transfer.withdraw.minAmount.error": string;
|
|
141
|
+
"transfer.withdraw.requested": string;
|
|
142
|
+
"transfer.withdraw.completed": string;
|
|
143
|
+
"transfer.withdraw.failed": string;
|
|
144
|
+
"connector.testnet": string;
|
|
145
|
+
"connector.mainnet": string;
|
|
146
|
+
"connector.disconnect": string;
|
|
147
|
+
"connector.connectWallet": string;
|
|
148
|
+
"connector.signIn": string;
|
|
149
|
+
"connector.signIn.description": string;
|
|
150
|
+
"connector.enableTrading": string;
|
|
151
|
+
"connector.enableTrading.description": string;
|
|
152
|
+
"connector.switchNetwork": string;
|
|
153
|
+
"connector.wrongNetwork": string;
|
|
154
|
+
"connector.wrongNetwork.tooltip": string;
|
|
155
|
+
"connector.expired": string;
|
|
156
|
+
"connector.rememberMe": string;
|
|
157
|
+
"connector.rememberMe.description": string;
|
|
158
|
+
"connector.referralCode.placeholder": string;
|
|
159
|
+
"connector.referralCode.invalid": string;
|
|
160
|
+
"connector.referralCode.notExist": string;
|
|
161
|
+
"connector.somethingWentWrong": string;
|
|
162
|
+
"connector.userRejected": string;
|
|
163
|
+
"connector.walletConnected": string;
|
|
164
|
+
"connector.networkSwitched": string;
|
|
165
|
+
"connector.switchChain.failed": string;
|
|
166
|
+
"connector.trade.connectWallet.tooltip": string;
|
|
167
|
+
"connector.trade.signIn.tooltip": string;
|
|
168
|
+
"connector.trade.enableTrading.tooltip": string;
|
|
169
|
+
"connector.setUp.connectWallet.tooltip": string;
|
|
170
|
+
"connector.setUp.signIn.tooltip": string;
|
|
171
|
+
"connector.setUp.enableTrading.tooltip": string;
|
|
172
|
+
"connector.ledger.signMessageFailed": string;
|
|
173
|
+
"connector.ledger.signMessageFailed.description": string;
|
|
174
|
+
"connector.loginIn": string;
|
|
175
|
+
"connector.logout": string;
|
|
176
|
+
"connector.email": string;
|
|
177
|
+
"connector.google": string;
|
|
178
|
+
"connector.twitter": string;
|
|
179
|
+
"connector.myWallet": string;
|
|
180
|
+
"connector.addEvmWallet": string;
|
|
181
|
+
"connector.addSolanaWallet": string;
|
|
182
|
+
"connector.createEvmWallet": string;
|
|
183
|
+
"connector.createSolanaWallet": string;
|
|
184
|
+
"connector.termsOfUse": string;
|
|
185
|
+
"connector.supportedEvmChain": string;
|
|
186
|
+
"connector.supportedSolanaChain": string;
|
|
187
|
+
"connector.noWallet": string;
|
|
188
|
+
"connector.noWallet.description": string;
|
|
189
|
+
"tradingView.timeInterval.1m": string;
|
|
190
|
+
"tradingView.timeInterval.3m": string;
|
|
191
|
+
"tradingView.timeInterval.5m": string;
|
|
192
|
+
"tradingView.timeInterval.15m": string;
|
|
193
|
+
"tradingView.timeInterval.30m": string;
|
|
194
|
+
"tradingView.timeInterval.1h": string;
|
|
195
|
+
"tradingView.timeInterval.2h": string;
|
|
196
|
+
"tradingView.timeInterval.4h": string;
|
|
197
|
+
"tradingView.timeInterval.6h": string;
|
|
198
|
+
"tradingView.timeInterval.12h": string;
|
|
199
|
+
"tradingView.timeInterval.1d": string;
|
|
200
|
+
"tradingView.timeInterval.3d": string;
|
|
201
|
+
"tradingView.timeInterval.1w": string;
|
|
202
|
+
"tradingView.timeInterval.1M": string;
|
|
203
|
+
"tradingView.timeInterval.more": string;
|
|
204
|
+
"tradingView.lineType.bars": string;
|
|
205
|
+
"tradingView.lineType.candles": string;
|
|
206
|
+
"tradingView.lineType.hollowCandles": string;
|
|
207
|
+
"tradingView.lineType.line": string;
|
|
208
|
+
"tradingView.lineType.area": string;
|
|
209
|
+
"tradingView.lineType.baseline": string;
|
|
210
|
+
"tradingView.displayControl.buySell": string;
|
|
211
|
+
"tradingView.displayControl.limitOrders": string;
|
|
212
|
+
"tradingView.displayControl.stopOrders": string;
|
|
213
|
+
"tradingView.noScriptSrc": string;
|
|
214
|
+
"tradingView.noScriptSrc.1": string;
|
|
215
|
+
"tradingView.noScriptSrc.2": string;
|
|
216
|
+
"tradingRewards.rewards": string;
|
|
217
|
+
"tradingRewards.subtitle": string;
|
|
218
|
+
"tradingRewards.learnMore": string;
|
|
219
|
+
"tradingRewards.myEstRewards": string;
|
|
220
|
+
"tradingRewards.epoch": string;
|
|
221
|
+
"tradingRewards.epochRewards": string;
|
|
222
|
+
"tradingRewards.otherOrderlyDex": string;
|
|
223
|
+
"tradingRewards.claim": string;
|
|
224
|
+
"tradingRewards.availableClaim": string;
|
|
225
|
+
"tradingRewards.stake": string;
|
|
226
|
+
"tradingRewards.booster": string;
|
|
227
|
+
"tradingRewards.stakeBooster": string;
|
|
228
|
+
"tradingRewards.avgStakedAmount": string;
|
|
229
|
+
"tradingRewards.rewardHistory": string;
|
|
230
|
+
"tradingRewards.rewardsEarned": string;
|
|
231
|
+
"tradingRewards.rewardHistory.column.start&EndDate": string;
|
|
232
|
+
"tradingRewards.rewardHistory.column.startDate": string;
|
|
233
|
+
"tradingRewards.rewardHistory.column.endDate": string;
|
|
234
|
+
"scaffold.footer.operational": string;
|
|
235
|
+
"scaffold.footer.joinCommunity": string;
|
|
236
|
+
"scaffold.footer.poweredBy": string;
|
|
237
|
+
"scaffold.maintenance.dialog.title": string;
|
|
238
|
+
"scaffold.maintenance.dialog.description": string;
|
|
239
|
+
"scaffold.maintenance.tips.description": string;
|
|
240
|
+
"scaffold.restrictedInfo.description.default": string;
|
|
241
|
+
"leverage.maxAccountLeverage": string;
|
|
242
|
+
"leverage.accountLeverage": string;
|
|
243
|
+
"leverage.currentLeverage": string;
|
|
244
|
+
"leverage.maxLeverage": string;
|
|
245
|
+
"leverage.updated": string;
|
|
246
|
+
"orderEntry.buyLong": string;
|
|
247
|
+
"orderEntry.sellShort": string;
|
|
248
|
+
"orderEntry.reduceOnly": string;
|
|
249
|
+
"orderEntry.orderType.limit": string;
|
|
250
|
+
"orderEntry.orderType.market": string;
|
|
251
|
+
"orderEntry.orderType.limitOrder": string;
|
|
252
|
+
"orderEntry.orderType.marketOrder": string;
|
|
253
|
+
"orderEntry.orderType.stopLimit": string;
|
|
254
|
+
"orderEntry.orderType.stopMarket": string;
|
|
255
|
+
"orderEntry.orderType.postOnly": string;
|
|
256
|
+
"orderEntry.orderType.ioc": string;
|
|
257
|
+
"orderEntry.orderType.fok": string;
|
|
258
|
+
"orderEntry.bbo": string;
|
|
259
|
+
"orderEntry.bbo.counterparty1": string;
|
|
260
|
+
"orderEntry.bbo.counterparty5": string;
|
|
261
|
+
"orderEntry.bbo.queue1": string;
|
|
262
|
+
"orderEntry.bbo.queue5": string;
|
|
263
|
+
"orderEntry.bbo.disabled.tips": string;
|
|
264
|
+
"orderEntry.estLiqPrice": string;
|
|
265
|
+
"orderEntry.disableOrderConfirm": string;
|
|
266
|
+
"orderEntry.orderConfirm": string;
|
|
267
|
+
"orderEntry.hidden": string;
|
|
268
|
+
"orderEntry.keepVisible": string;
|
|
269
|
+
"orderEntry.maxBuy": string;
|
|
270
|
+
"orderEntry.maxSell": string;
|
|
271
|
+
"orderEntry.tpMarkPrice": string;
|
|
272
|
+
"orderEntry.slMarkPrice": string;
|
|
273
|
+
"orderEntry.tpsl.trigger.description": string;
|
|
274
|
+
"orderEntry.estRoi": string;
|
|
275
|
+
"orderEntry.estPnL": string;
|
|
276
|
+
"orderEntry.tpsl.tips": string;
|
|
277
|
+
"orderEntry.orderQuantity.error.required": string;
|
|
278
|
+
"orderEntry.orderQuantity.error.min": string;
|
|
279
|
+
"orderEntry.orderQuantity.error.max": string;
|
|
280
|
+
"orderEntry.orderPrice.error.required": string;
|
|
281
|
+
"orderEntry.orderPrice.error.min": string;
|
|
282
|
+
"orderEntry.orderPrice.error.max": string;
|
|
283
|
+
"orderEntry.triggerPrice.error.required": string;
|
|
284
|
+
"orderEntry.triggerPrice.error.min": string;
|
|
285
|
+
"orderEntry.triggerPrice.error.max": string;
|
|
286
|
+
"orderEntry.tpTriggerPrice.error.min": string;
|
|
287
|
+
"orderEntry.tpTriggerPrice.error.max": string;
|
|
288
|
+
"orderEntry.slTriggerPrice.error.min": string;
|
|
289
|
+
"orderEntry.slTriggerPrice.error.max": string;
|
|
290
|
+
"orderEntry.total.error.min": string;
|
|
291
|
+
"share.pnl.sharePnl": string;
|
|
292
|
+
"share.pnl.share.long": string;
|
|
293
|
+
"share.pnl.share.short": string;
|
|
294
|
+
"share.pnl.displayFormat": string;
|
|
295
|
+
"share.pnl.displayFormat.roi&Pnl": string;
|
|
296
|
+
"share.pnl.displayFormat.roi": string;
|
|
297
|
+
"share.pnl.displayFormat.pnl": string;
|
|
298
|
+
"share.pnl.optionalInfo": string;
|
|
299
|
+
"share.pnl.optionalInfo.openPrice": string;
|
|
300
|
+
"share.pnl.optionalInfo.closePrice": string;
|
|
301
|
+
"share.pnl.optionalInfo.openTime": string;
|
|
302
|
+
"share.pnl.optionalInfo.closeTime": string;
|
|
303
|
+
"share.pnl.optionalInfo.message": string;
|
|
304
|
+
"share.pnl.optionalInfo.message.placeholder": string;
|
|
305
|
+
"share.pnl.optionalInfo.message.maxLength": string;
|
|
306
|
+
"share.pnl.image.copied": string;
|
|
307
|
+
"share.pnl.copy.failed.description": string;
|
|
308
|
+
"tpsl.tp": string;
|
|
309
|
+
"tpsl.sl": string;
|
|
310
|
+
"tpsl.tpPrice": string;
|
|
311
|
+
"tpsl.slPrice": string;
|
|
312
|
+
"tpsl.tpPnl": string;
|
|
313
|
+
"tpsl.slPnl": string;
|
|
314
|
+
"tpsl.tpTrigger": string;
|
|
315
|
+
"tpsl.slTrigger": string;
|
|
316
|
+
"tpsl.pnl": string;
|
|
317
|
+
"tpsl.offset": string;
|
|
318
|
+
"tpsl.positionTpsl": string;
|
|
319
|
+
"tpsl.entirePosition": string;
|
|
320
|
+
"tpsl.estPnl": string;
|
|
321
|
+
"tpsl.takeProfit": string;
|
|
322
|
+
"tpsl.stopLoss": string;
|
|
323
|
+
"tpsl.cancelOrder.description": string;
|
|
324
|
+
"tpsl.confirmOrder": string;
|
|
325
|
+
"orders.orderHistory": string;
|
|
326
|
+
"orders.status.pending": string;
|
|
327
|
+
"orders.status.filled": string;
|
|
328
|
+
"orders.status.partialFilled": string;
|
|
329
|
+
"orders.status.canceled": string;
|
|
330
|
+
"orders.status.rejected": string;
|
|
331
|
+
"orders.status.incomplete": string;
|
|
332
|
+
"orders.status.completed": string;
|
|
333
|
+
"orders.status.opened.toast.title": string;
|
|
334
|
+
"orders.status.filled.toast.title": string;
|
|
335
|
+
"orders.status.canceled.toast.title": string;
|
|
336
|
+
"orders.status.rejected.toast.title": string;
|
|
337
|
+
"orders.status.replaced.toast.title": string;
|
|
338
|
+
"orders.column.orderPrice": string;
|
|
339
|
+
"orders.column.fill&Quantity": string;
|
|
340
|
+
"orders.column.triggerPrice": string;
|
|
341
|
+
"orders.column.orderTime": string;
|
|
342
|
+
"orders.column.hidden": string;
|
|
343
|
+
"orders.editOrder": string;
|
|
344
|
+
"order.edit.confirm.quantity": string;
|
|
345
|
+
"order.edit.confirm.price": string;
|
|
346
|
+
"order.edit.confirm.triggerPrice": string;
|
|
347
|
+
"orders.cancelOrder": string;
|
|
348
|
+
"orders.cancelOrder.description": string;
|
|
349
|
+
"orders.cancelAll": string;
|
|
350
|
+
"orders.pending.cancelAll": string;
|
|
351
|
+
"orders.pending.cancelAll.description": string;
|
|
352
|
+
"orders.tpsl.cancelAll": string;
|
|
353
|
+
"orders.tpsl.cancelAll.description": string;
|
|
354
|
+
"orders.price.greaterThan": string;
|
|
355
|
+
"orders.price.lessThan": string;
|
|
356
|
+
"orders.quantity.lessThan": string;
|
|
357
|
+
"orders.quantity.lessThanPosition": string;
|
|
358
|
+
"orders.history.renew": string;
|
|
359
|
+
"orders.download.tooltip": string;
|
|
360
|
+
"positions.positionHistory": string;
|
|
361
|
+
"positions.liquidation": string;
|
|
362
|
+
"positions.closePosition": string;
|
|
363
|
+
"positions.column.liqPrice": string;
|
|
364
|
+
"positions.column.liqPrice.tooltip": string;
|
|
365
|
+
"positions.column.unrealPnl.tooltip": string;
|
|
366
|
+
"positions.column.unrealPnl.priceBasis": string;
|
|
367
|
+
"positions.column.margin": string;
|
|
368
|
+
"positions.column.margin.tooltip": string;
|
|
369
|
+
"positions.column.margin.formula": string;
|
|
370
|
+
"positions.column.close": string;
|
|
371
|
+
"positions.limitClose": string;
|
|
372
|
+
"positions.limitClose.description": string;
|
|
373
|
+
"positions.marketClose": string;
|
|
374
|
+
"positions.marketClose.description": string;
|
|
375
|
+
"positions.history.status.closed": string;
|
|
376
|
+
"positions.history.status.partialClosed": string;
|
|
377
|
+
"positions.history.type.adl": string;
|
|
378
|
+
"positions.history.type.liquidated": string;
|
|
379
|
+
"positions.history.liquidated.liquidationId": string;
|
|
380
|
+
"positions.history.liquidated.liquidatorFee": string;
|
|
381
|
+
"positions.history.liquidated.insFundFee": string;
|
|
382
|
+
"positions.history.column.closed": string;
|
|
383
|
+
"positions.history.column.maxClosed": string;
|
|
384
|
+
"positions.history.column.closed&maxClosed": string;
|
|
385
|
+
"positions.history.column.netPnl": string;
|
|
386
|
+
"positions.history.column.timeOpened": string;
|
|
387
|
+
"positions.history.column.timeClosed": string;
|
|
388
|
+
"positions.history.column.updatedTime": string;
|
|
389
|
+
"positions.history.netPnl.fundingFee": string;
|
|
390
|
+
"positions.history.netPnl.tradingFee": string;
|
|
391
|
+
"positions.Liquidation.column.liquidationId": string;
|
|
392
|
+
"positions.Liquidation.column.insFundTransfer": string;
|
|
393
|
+
"positions.Liquidation.column.liquidationFee": string;
|
|
394
|
+
"chart.now": string;
|
|
395
|
+
"trading.layout": string;
|
|
396
|
+
"trading.layout.right": string;
|
|
397
|
+
"trading.layout.left": string;
|
|
398
|
+
"trading.orders.closeAll": string;
|
|
399
|
+
"trading.hideOtherSymbols": string;
|
|
400
|
+
"trading.history": string;
|
|
401
|
+
"trading.portfolioSettings": string;
|
|
402
|
+
"trading.portfolioSettings.decimalPrecision": string;
|
|
403
|
+
"trading.portfolioSettings.unrealPnlPriceBasis": string;
|
|
404
|
+
"trading.orderBook": string;
|
|
405
|
+
"trading.lastTrades": string;
|
|
406
|
+
"trading.orderBook.column.value": string;
|
|
407
|
+
"trading.tabs.chart": string;
|
|
408
|
+
"trading.tabs.trades": string;
|
|
409
|
+
"trading.tabs.data": string;
|
|
410
|
+
"trading.column.24High": string;
|
|
411
|
+
"trading.column.24Low": string;
|
|
412
|
+
"trading.orderBook.sum": string;
|
|
413
|
+
"trading.orderBook.markPrice.tooltip": string;
|
|
414
|
+
"trading.orderBook.spreadRatio.tooltip": string;
|
|
415
|
+
"trading.faucet.getTestUSDC": string;
|
|
416
|
+
"trading.faucet.getTestUSDC.success": string;
|
|
417
|
+
"trading.asset.startTrading": string;
|
|
418
|
+
"trading.asset.startTrading.description": string;
|
|
419
|
+
"trading.asset.myAssets": string;
|
|
420
|
+
"trading.asset.freeCollateral": string;
|
|
421
|
+
"trading.asset.freeCollateral.tooltip": string;
|
|
422
|
+
"trading.asset.freeCollateral.formula": string;
|
|
423
|
+
"trading.asset.marginRatio": string;
|
|
424
|
+
"trading.asset.marginRatio.tooltip": string;
|
|
425
|
+
"trading.asset.marginRatio.formula": string;
|
|
426
|
+
"trading.asset.unsettledPnl": string;
|
|
427
|
+
"trading.asset.free&TotalCollateral": string;
|
|
428
|
+
"trading.asset.availableBalance": string;
|
|
429
|
+
"trading.asset.maintenanceMarginRatio": string;
|
|
430
|
+
"trading.asset.maintenanceMarginRatio.tooltip": string;
|
|
431
|
+
"trading.asset.maintenanceMarginRatio.formula": string;
|
|
432
|
+
"trading.riskRate": string;
|
|
433
|
+
"trading.riskRate.tooltip": string;
|
|
434
|
+
"trading.riskRate.formula": string;
|
|
435
|
+
"trading.asset&Margin": string;
|
|
436
|
+
"trading.fundingRate.predFundingRate": string;
|
|
437
|
+
"portfolio.feeTier": string;
|
|
438
|
+
"portfolio.apiKeys": string;
|
|
439
|
+
"portfolio.setting": string;
|
|
440
|
+
"portfolio.overview.availableWithdraw": string;
|
|
441
|
+
"portfolio.overview.performance": string;
|
|
442
|
+
"portfolio.overview.performance.roi": string;
|
|
443
|
+
"portfolio.overview.performance.pnl": string;
|
|
444
|
+
"portfolio.overview.performance.volume": string;
|
|
445
|
+
"portfolio.overview.performance.dailyPnl": string;
|
|
446
|
+
"portfolio.overview.performance.cumulativePnl": string;
|
|
447
|
+
"portfolio.overview.deposits&Withdrawals": string;
|
|
448
|
+
"portfolio.overview.distribution": string;
|
|
449
|
+
"portfolio.overview.column.txId": string;
|
|
450
|
+
"portfolio.overview.column.funding&AnnualRate": string;
|
|
451
|
+
"portfolio.overview.column.paymentType": string;
|
|
452
|
+
"portfolio.overview.column.paymentType.paid": string;
|
|
453
|
+
"portfolio.overview.column.paymentType.received": string;
|
|
454
|
+
"portfolio.overview.column.fundingFee": string;
|
|
455
|
+
"portfolio.overview.distribution.type.referralCommission": string;
|
|
456
|
+
"portfolio.overview.distribution.type.refereeRebate": string;
|
|
457
|
+
"portfolio.overview.distribution.type.brokerFee": string;
|
|
458
|
+
"portfolio.feeTier.updatedDailyBy": string;
|
|
459
|
+
"portfolio.feeTier.header.yourTier": string;
|
|
460
|
+
"portfolio.feeTier.header.30dVolume": string;
|
|
461
|
+
"portfolio.feeTier.header.takerFeeRate": string;
|
|
462
|
+
"portfolio.feeTier.header.makerFeeRate": string;
|
|
463
|
+
"portfolio.feeTier.column.tier": string;
|
|
464
|
+
"portfolio.feeTier.column.30dVolume": string;
|
|
465
|
+
"portfolio.feeTier.column.30dVolume.above": string;
|
|
466
|
+
"portfolio.feeTier.column.maker": string;
|
|
467
|
+
"portfolio.feeTier.column.taker": string;
|
|
468
|
+
"portfolio.apiKey.accountId": string;
|
|
469
|
+
"portfolio.apiKey.accountId.copied": string;
|
|
470
|
+
"portfolio.apiKey.uid": string;
|
|
471
|
+
"portfolio.apiKey.secretKey": string;
|
|
472
|
+
"portfolio.apiKey.secretKey.copied": string;
|
|
473
|
+
"portfolio.apiKey.ip": string;
|
|
474
|
+
"portfolio.apiKey.permissions": string;
|
|
475
|
+
"portfolio.apiKey.permissions.read": string;
|
|
476
|
+
"portfolio.apiKey.permissions.trading": string;
|
|
477
|
+
"portfolio.apiKey.description": string;
|
|
478
|
+
"portfolio.apiKey.readApiGuide": string;
|
|
479
|
+
"portfolio.apiKey.column.apiKey": string;
|
|
480
|
+
"portfolio.apiKey.column.apiKey.copy": string;
|
|
481
|
+
"portfolio.apiKey.column.permissionType": string;
|
|
482
|
+
"portfolio.apiKey.column.restrictedIP": string;
|
|
483
|
+
"portfolio.apiKey.column.restrictedIP.copy": string;
|
|
484
|
+
"portfolio.apiKey.column.expirationDate": string;
|
|
485
|
+
"portfolio.apiKey.create.dialog.title": string;
|
|
486
|
+
"portfolio.apiKey.create.connectWallet.tooltip": string;
|
|
487
|
+
"portfolio.apiKey.create.signIn.tooltip": string;
|
|
488
|
+
"portfolio.apiKey.create.enableTrading.tooltip": string;
|
|
489
|
+
"portfolio.apiKey.create.wrongNetwork.tooltip": string;
|
|
490
|
+
"portfolio.apiKey.create.ipRestriction": string;
|
|
491
|
+
"portfolio.apiKey.create.ipRestriction.placeholder": string;
|
|
492
|
+
"portfolio.apiKey.created.warning": string;
|
|
493
|
+
"portfolio.apiKey.created.button.copyApiInfo": string;
|
|
494
|
+
"portfolio.apiKey.apiInfo.copied": string;
|
|
495
|
+
"portfolio.apiKey.created": string;
|
|
496
|
+
"portfolio.apiKey.deleted": string;
|
|
497
|
+
"portfolio.apiKey.updated": string;
|
|
498
|
+
"portfolio.apiKey.edit.dialog.title": string;
|
|
499
|
+
"portfolio.apiKey.delete.dialog.title": string;
|
|
500
|
+
"portfolio.apiKey.delete.dialog.description": string;
|
|
501
|
+
"portfolio.setting.systemUpgrade": string;
|
|
502
|
+
"portfolio.setting.cancelOpenOrders": string;
|
|
503
|
+
"portfolio.setting.cancelOpenOrders.description": string;
|
|
504
|
+
"markets.favorites": string;
|
|
505
|
+
"markets.recent": string;
|
|
506
|
+
"markets.newListings": string;
|
|
507
|
+
"markets.allMarkets": string;
|
|
508
|
+
"markets.openInterest": string;
|
|
509
|
+
"markets.openInterest.tooltip": string;
|
|
510
|
+
"markets.topGainers": string;
|
|
511
|
+
"markets.topLosers": string;
|
|
512
|
+
"markets.search.placeholder": string;
|
|
513
|
+
"markets.dataList.favorites.empty": string;
|
|
514
|
+
"markets.dataList.column.8hFunding": string;
|
|
515
|
+
"markets.dataList.column.moveTop": string;
|
|
516
|
+
"markets.favorites.dropdown.title": string;
|
|
517
|
+
"markets.favorites.dropdown.addPlaceholder": string;
|
|
518
|
+
"markets.favorites.tabs.maxList": string;
|
|
519
|
+
"markets.favorites.tabs.maxName": string;
|
|
520
|
+
"markets.favorites.tabs.delete.dialog.title": string;
|
|
521
|
+
"markets.favorites.tabs.delete.dialog.description": string;
|
|
522
|
+
"markets.column.market": string;
|
|
523
|
+
"markets.column.24hChange": string;
|
|
524
|
+
"markets.column.24hVolume": string;
|
|
525
|
+
"markets.column.market&Volume": string;
|
|
526
|
+
"markets.column.price&Change": string;
|
|
527
|
+
"markets.column.last": string;
|
|
528
|
+
"markets.column.24hPercentage": string;
|
|
529
|
+
"markets.funding.comparison": string;
|
|
530
|
+
"markets.funding.column.estFunding": string;
|
|
531
|
+
"markets.funding.column.lastFunding": string;
|
|
532
|
+
"markets.funding.column.1dAvg": string;
|
|
533
|
+
"markets.funding.column.3dAvg": string;
|
|
534
|
+
"markets.funding.column.7dAvg": string;
|
|
535
|
+
"markets.funding.column.14dAvg": string;
|
|
536
|
+
"markets.funding.column.30dAvg": string;
|
|
537
|
+
"markets.funding.column.90dAvg": string;
|
|
538
|
+
"markets.funding.column.positiveRate": string;
|
|
539
|
+
"markets.symbolInfoBar.Mark": string;
|
|
540
|
+
"markets.symbolInfoBar.Mark.tooltip": string;
|
|
541
|
+
"markets.symbolInfoBar.Index": string;
|
|
542
|
+
"markets.symbolInfoBar.Index.tooltip": string;
|
|
543
|
+
"markets.symbolInfoBar.24hVolume": string;
|
|
544
|
+
"markets.symbolInfoBar.24hVolume.tooltip": string;
|
|
545
|
+
"markets.symbolInfoBar.predFundingRate": string;
|
|
546
|
+
"markets.symbolInfoBar.predFundingRate.tooltip": string;
|
|
547
|
+
"common.cancel": string;
|
|
548
|
+
"common.confirm": string;
|
|
549
|
+
"common.ok": string;
|
|
550
|
+
"common.yes": string;
|
|
551
|
+
"common.no": string;
|
|
552
|
+
"common.all": string;
|
|
553
|
+
"common.buy": string;
|
|
554
|
+
"common.sell": string;
|
|
555
|
+
"common.edit": string;
|
|
556
|
+
"common.save": string;
|
|
557
|
+
"common.add": string;
|
|
558
|
+
"common.delete": string;
|
|
559
|
+
"common.tips": string;
|
|
560
|
+
"common.max": string;
|
|
561
|
+
"common.download": string;
|
|
562
|
+
"common.copy": string;
|
|
563
|
+
"common.copy.failed": string;
|
|
564
|
+
"common.copy.copied": string;
|
|
565
|
+
"common.share": string;
|
|
566
|
+
"common.export": string;
|
|
567
|
+
"common.select.1d": string;
|
|
568
|
+
"common.select.3d": string;
|
|
569
|
+
"common.select.7d": string;
|
|
570
|
+
"common.select.14d": string;
|
|
571
|
+
"common.select.30d": string;
|
|
572
|
+
"common.select.90d": string;
|
|
573
|
+
"common.price": string;
|
|
574
|
+
"common.quantity": string;
|
|
575
|
+
"common.qty": string;
|
|
576
|
+
"common.status": string;
|
|
577
|
+
"common.status.all": string;
|
|
578
|
+
"common.date": string;
|
|
579
|
+
"common.time": string;
|
|
580
|
+
"common.volume": string;
|
|
581
|
+
"common.total": string;
|
|
582
|
+
"common.symbol": string;
|
|
583
|
+
"common.token": string;
|
|
584
|
+
"common.amount": string;
|
|
585
|
+
"common.side": string;
|
|
586
|
+
"common.side.all": string;
|
|
587
|
+
"common.type": string;
|
|
588
|
+
"common.notional": string;
|
|
589
|
+
"common.fee": string;
|
|
590
|
+
"common.avgPrice": string;
|
|
591
|
+
"common.avgOpen": string;
|
|
592
|
+
"common.avgClose": string;
|
|
593
|
+
"common.trigger": string;
|
|
594
|
+
"common.lastPrice": string;
|
|
595
|
+
"common.indexPrice": string;
|
|
596
|
+
"common.markPrice": string;
|
|
597
|
+
"common.limitPrice": string;
|
|
598
|
+
"common.marketPrice": string;
|
|
599
|
+
"common.unrealizedPnl": string;
|
|
600
|
+
"common.realizedPnl": string;
|
|
601
|
+
"common.totalValue": string;
|
|
602
|
+
"common.address": string;
|
|
603
|
+
"common.address.search.placeholder": string;
|
|
604
|
+
"common.available": string;
|
|
605
|
+
"common.overview": string;
|
|
606
|
+
"common.funding": string;
|
|
607
|
+
"common.assets": string;
|
|
608
|
+
"common.countdown": string;
|
|
609
|
+
"common.current": string;
|
|
610
|
+
"common.account": string;
|
|
611
|
+
"common.deposit": string;
|
|
612
|
+
"common.withdraw": string;
|
|
613
|
+
"common.settle": string;
|
|
614
|
+
"common.markets": string;
|
|
615
|
+
"common.portfolio": string;
|
|
616
|
+
"common.positions": string;
|
|
617
|
+
"common.position": string;
|
|
618
|
+
"common.orders": string;
|
|
619
|
+
"common.tpsl": string;
|
|
620
|
+
"common.leverage": string;
|
|
621
|
+
"common.affiliate": string;
|
|
622
|
+
"common.tradingRewards": string;
|
|
623
|
+
"common.trading": string;
|
|
624
|
+
"common.language": string;
|
|
625
|
+
"assetHistory.status.pending": string;
|
|
626
|
+
"assetHistory.status.confirm": string;
|
|
627
|
+
"assetHistory.status.processing": string;
|
|
628
|
+
"assetHistory.status.completed": string;
|
|
629
|
+
"assetHistory.status.failed": string;
|
|
630
|
+
"assetHistory.status.pendingRebalance": string;
|
|
631
|
+
/** linkDevice */
|
|
632
|
+
"linkDevice.createQRCode.loading.description": string;
|
|
633
|
+
"linkDevice.createQRCode.linkMobileDevice": string;
|
|
634
|
+
"linkDevice.createQRCode.linkMobileDevice.description": string;
|
|
635
|
+
"linkDevice.createQRCode.success.description": string;
|
|
636
|
+
"linkDevice.createQRCode.success.copyUrl": string;
|
|
637
|
+
"linkDevice.scanQRCode": string;
|
|
638
|
+
"linkDevice.scanQRCode.description": string;
|
|
639
|
+
"linkDevice.scanQRCode.tooltip": string;
|
|
640
|
+
"linkDevice.scanQRCode.connected.description": string;
|
|
641
|
+
/** settle */
|
|
642
|
+
"settle.settlePnl": string;
|
|
643
|
+
"settle.settlePnl.warning": string;
|
|
644
|
+
"settle.settlePnl.description": string;
|
|
645
|
+
"settle.unsettled": string;
|
|
646
|
+
"settle.unsettled.tooltip": string;
|
|
647
|
+
"settle.settlement.requested": string;
|
|
648
|
+
"settle.settlement.completed": string;
|
|
649
|
+
"settle.settlement.failed": string;
|
|
650
|
+
"settle.settlement.error": string;
|
|
651
|
+
};
|
|
652
|
+
|
|
653
|
+
type LocaleCode = keyof typeof LocaleEnum | (string & {});
|
|
654
|
+
type LocaleMessages = typeof en;
|
|
655
|
+
type Resources<T extends {} = {}> = {
|
|
656
|
+
[key in LocaleCode]?: Partial<LocaleMessages & T>;
|
|
657
|
+
};
|
|
658
|
+
declare module "i18next" {
|
|
659
|
+
interface CustomTypeOptions {
|
|
660
|
+
resources: {
|
|
661
|
+
[defaultNS]: typeof en;
|
|
662
|
+
};
|
|
663
|
+
}
|
|
664
|
+
}
|
|
665
|
+
|
|
666
|
+
declare const i18n: i18next.i18n;
|
|
667
|
+
|
|
668
|
+
type I18nProviderProps = Partial<I18nextProviderProps>;
|
|
669
|
+
declare const I18nProvider: FC<I18nProviderProps>;
|
|
670
|
+
type LocaleProviderProps = {
|
|
671
|
+
children: ReactNode;
|
|
672
|
+
locale?: LocaleCode;
|
|
673
|
+
resource?: Record<string, string>;
|
|
674
|
+
resources?: Resources;
|
|
675
|
+
/**
|
|
676
|
+
* custom languages
|
|
677
|
+
*/
|
|
678
|
+
languages?: Language[];
|
|
679
|
+
/**
|
|
680
|
+
* supported languages, you can select supported languages from default languages
|
|
681
|
+
*/
|
|
682
|
+
supportedLanguages?: LocaleCode[];
|
|
683
|
+
onLocaleChange?: (locale: LocaleCode) => void;
|
|
684
|
+
};
|
|
685
|
+
declare const LocaleProvider: FC<LocaleProviderProps>;
|
|
686
|
+
|
|
687
|
+
declare function useTranslation<Ns extends FlatNamespace | $Tuple<FlatNamespace> | undefined, KPrefix extends KeyPrefix<FallbackNs<Ns>> = undefined>(ns?: Ns, options?: UseTranslationOptions<KPrefix>): react_i18next.UseTranslationResponse<FallbackNs<Ns>, KPrefix>;
|
|
688
|
+
|
|
689
|
+
declare function useLocaleCode(): LocaleCode;
|
|
690
|
+
|
|
691
|
+
var zh = {
|
|
692
|
+
"common.cancel": "取消",
|
|
693
|
+
"common.confirm": "确认",
|
|
694
|
+
"common.ok": "好的",
|
|
695
|
+
"common.yes": "是",
|
|
696
|
+
"common.no": "否",
|
|
697
|
+
"common.all": "全部",
|
|
698
|
+
"common.buy": "购买",
|
|
699
|
+
"common.sell": "出售",
|
|
700
|
+
"common.edit": "编辑",
|
|
701
|
+
"common.save": "保存",
|
|
702
|
+
"common.add": "添加",
|
|
703
|
+
"common.delete": "删除",
|
|
704
|
+
"common.tips": "提示",
|
|
705
|
+
"common.max": "最大",
|
|
706
|
+
"common.download": "下载",
|
|
707
|
+
"common.copy": "复制",
|
|
708
|
+
"common.copy.failed": "复制失败",
|
|
709
|
+
"common.copy.copied": "已复制",
|
|
710
|
+
"common.share": "分享",
|
|
711
|
+
"common.export": "导出",
|
|
712
|
+
"common.select.1d": "1天",
|
|
713
|
+
"common.select.3d": "3天",
|
|
714
|
+
"common.select.7d": "7天",
|
|
715
|
+
"common.select.14d": "14天",
|
|
716
|
+
"common.select.30d": "30天",
|
|
717
|
+
"common.select.90d": "90天",
|
|
718
|
+
"common.price": "价格",
|
|
719
|
+
"common.quantity": "数量",
|
|
720
|
+
"common.qty": "数量",
|
|
721
|
+
"common.status": "状态",
|
|
722
|
+
"common.status.all": "所有状态",
|
|
723
|
+
"common.date": "日期",
|
|
724
|
+
"common.time": "时间",
|
|
725
|
+
"common.volume": "成交量",
|
|
726
|
+
"common.total": "总计",
|
|
727
|
+
"common.symbol": "符号",
|
|
728
|
+
"common.token": "代币",
|
|
729
|
+
"common.amount": "金额",
|
|
730
|
+
"common.side": "方向",
|
|
731
|
+
"common.side.all": "所有方向",
|
|
732
|
+
"common.type": "类型",
|
|
733
|
+
"common.notional": "名义",
|
|
734
|
+
"common.fee": "费用",
|
|
735
|
+
"common.avgPrice": "平均价格",
|
|
736
|
+
"common.avgOpen": "平均开盘",
|
|
737
|
+
"common.avgClose": "平均收盘",
|
|
738
|
+
"common.trigger": "触发",
|
|
739
|
+
"common.lastPrice": "最新价格",
|
|
740
|
+
"common.indexPrice": "指数价格",
|
|
741
|
+
"common.markPrice": "标记价格",
|
|
742
|
+
"common.limitPrice": "限价",
|
|
743
|
+
"common.marketPrice": "市价",
|
|
744
|
+
"common.unrealizedPnl": "未实现盈亏",
|
|
745
|
+
"common.realizedPnl": "已实现盈亏",
|
|
746
|
+
"common.totalValue": "总价值",
|
|
747
|
+
"common.address": "地址",
|
|
748
|
+
"common.address.search.placeholder": "搜索地址",
|
|
749
|
+
"common.available": "可用",
|
|
750
|
+
"common.overview": "概览",
|
|
751
|
+
"common.funding": "资金",
|
|
752
|
+
"common.assets": "资产",
|
|
753
|
+
"common.countdown": "倒计时",
|
|
754
|
+
"common.current": "当前",
|
|
755
|
+
"common.account": "账户",
|
|
756
|
+
"common.deposit": "存款",
|
|
757
|
+
"common.withdraw": "取款",
|
|
758
|
+
"common.settle": "结算",
|
|
759
|
+
"common.markets": "市场",
|
|
760
|
+
"common.portfolio": "投资组合",
|
|
761
|
+
"common.positions": "持仓",
|
|
762
|
+
"common.position": "持仓",
|
|
763
|
+
"common.orders": "订单",
|
|
764
|
+
"common.tpsl": "止盈止损",
|
|
765
|
+
"common.leverage": "杠杆",
|
|
766
|
+
"common.affiliate": "联盟",
|
|
767
|
+
"common.tradingRewards": "交易奖励",
|
|
768
|
+
"common.trading": "交易",
|
|
769
|
+
"common.language": "语言",
|
|
770
|
+
"assetHistory.status.pending": "待处理",
|
|
771
|
+
"assetHistory.status.confirm": "确认",
|
|
772
|
+
"assetHistory.status.processing": "处理中",
|
|
773
|
+
"assetHistory.status.completed": "已完成",
|
|
774
|
+
"assetHistory.status.failed": "失败",
|
|
775
|
+
"assetHistory.status.pendingRebalance": "待重新平衡",
|
|
776
|
+
"linkDevice.createQRCode.loading.description": "使用钱包批准二维码...",
|
|
777
|
+
"linkDevice.createQRCode.linkMobileDevice": "链接移动设备",
|
|
778
|
+
"linkDevice.createQRCode.linkMobileDevice.description": "在您的移动设备上打开{{hostname}}并扫描二维码以链接此钱包。为了安全,二维码将在60秒后过期。<br/>二维码允许移动交易,但不支持提款。确保您没有共享屏幕或二维码的任何截图。",
|
|
779
|
+
"linkDevice.createQRCode.success.description": "扫描二维码或将URL粘贴到其他浏览器/<br/>设备以继续。",
|
|
780
|
+
"linkDevice.createQRCode.success.copyUrl": "复制URL",
|
|
781
|
+
"linkDevice.scanQRCode": "扫描二维码",
|
|
782
|
+
"linkDevice.scanQRCode.description": "点击桌面右上角的<0/>图标以生成二维码进行扫描。",
|
|
783
|
+
"linkDevice.scanQRCode.tooltip": "通过二维码链接到桌面",
|
|
784
|
+
"linkDevice.scanQRCode.connected.description": "您已通过其他设备连接。此模式仅用于交易。要切换网络、存款或取款资产,请断开连接并在此设备上重新连接您的钱包。",
|
|
785
|
+
"settle.settlePnl": "结算盈亏",
|
|
786
|
+
"settle.settlePnl.warning": "请结算您的余额",
|
|
787
|
+
"settle.settlePnl.description": "您确定要结算您的盈亏吗?<br/>结算将在1分钟内完成,然后您可以提取可用余额。",
|
|
788
|
+
"settle.unsettled": "未结算",
|
|
789
|
+
"settle.unsettled.tooltip": "未结算的余额无法提取。要提取,请先结算您的余额。",
|
|
790
|
+
"settle.settlement.requested": "结算请求",
|
|
791
|
+
"settle.settlement.completed": "结算完成",
|
|
792
|
+
"settle.settlement.failed": "结算失败",
|
|
793
|
+
"settle.settlement.error": "每10分钟只允许一次结算。请稍后再试。",
|
|
794
|
+
"markets.favorites": "收藏",
|
|
795
|
+
"markets.recent": "最近",
|
|
796
|
+
"markets.newListings": "新上市",
|
|
797
|
+
"markets.allMarkets": "所有市场",
|
|
798
|
+
"markets.openInterest": "未平仓合约",
|
|
799
|
+
"markets.openInterest.tooltip": "每边持仓的总规模。",
|
|
800
|
+
"markets.topGainers": "涨幅榜",
|
|
801
|
+
"markets.topLosers": "跌幅榜",
|
|
802
|
+
"markets.search.placeholder": "搜索市场",
|
|
803
|
+
"markets.dataList.favorites.empty": "点击市场旁边的<0/>图标将其添加到您的列表中。",
|
|
804
|
+
"markets.dataList.column.8hFunding": "8小时资金",
|
|
805
|
+
"markets.dataList.column.moveTop": "移至顶部",
|
|
806
|
+
"markets.favorites.dropdown.title": "选择列表",
|
|
807
|
+
"markets.favorites.dropdown.addPlaceholder": "添加新的观察列表",
|
|
808
|
+
"markets.favorites.tabs.maxList": "收藏列表中最多10组",
|
|
809
|
+
"markets.favorites.tabs.maxName": "列表名称不能超过15个字符",
|
|
810
|
+
"markets.favorites.tabs.delete.dialog.title": "删除列表",
|
|
811
|
+
"markets.favorites.tabs.delete.dialog.description": "您确定要删除{{name}}吗?",
|
|
812
|
+
"markets.column.market": "市场",
|
|
813
|
+
"markets.column.24hChange": "24小时变化",
|
|
814
|
+
"markets.column.24hVolume": "24小时成交量",
|
|
815
|
+
"markets.column.market&Volume": "市场/成交量",
|
|
816
|
+
"markets.column.price&Change": "价格/变化",
|
|
817
|
+
"markets.column.last": "最新",
|
|
818
|
+
"markets.column.24hPercentage": "24小时%",
|
|
819
|
+
"markets.funding.comparison": "比较",
|
|
820
|
+
"markets.funding.column.estFunding": "预计资金",
|
|
821
|
+
"markets.funding.column.lastFunding": "最后资金",
|
|
822
|
+
"markets.funding.column.1dAvg": "1天平均",
|
|
823
|
+
"markets.funding.column.3dAvg": "3天平均",
|
|
824
|
+
"markets.funding.column.7dAvg": "7天平均",
|
|
825
|
+
"markets.funding.column.14dAvg": "14天平均",
|
|
826
|
+
"markets.funding.column.30dAvg": "30天平均",
|
|
827
|
+
"markets.funding.column.90dAvg": "90天平均",
|
|
828
|
+
"markets.funding.column.positiveRate": "正利率",
|
|
829
|
+
"markets.symbolInfoBar.Mark": "标记",
|
|
830
|
+
"markets.symbolInfoBar.Mark.tooltip": "用于计算未实现盈亏和清算的价格。",
|
|
831
|
+
"markets.symbolInfoBar.Index": "指数",
|
|
832
|
+
"markets.symbolInfoBar.Index.tooltip": "其他交易所最新价格的平均值。",
|
|
833
|
+
"markets.symbolInfoBar.24hVolume": "24小时成交量",
|
|
834
|
+
"markets.symbolInfoBar.24hVolume.tooltip": "Orderly Network上的24小时总交易量。",
|
|
835
|
+
"markets.symbolInfoBar.predFundingRate": "预计资金利率",
|
|
836
|
+
"markets.symbolInfoBar.predFundingRate.tooltip": "资金利率是多头和空头交易者之间的支付。当为正时,多头支付空头资金。当为负时,空头支付多头资金。",
|
|
837
|
+
"portfolio.feeTier": "费用等级",
|
|
838
|
+
"portfolio.apiKeys": "API密钥",
|
|
839
|
+
"portfolio.setting": "设置",
|
|
840
|
+
"portfolio.overview.availableWithdraw": "可提取",
|
|
841
|
+
"portfolio.overview.performance": "表现",
|
|
842
|
+
"portfolio.overview.performance.roi": "{{period}} 投资回报率",
|
|
843
|
+
"portfolio.overview.performance.pnl": "{{period}} 盈亏",
|
|
844
|
+
"portfolio.overview.performance.volume": "{{period}} 成交量 (USDC)",
|
|
845
|
+
"portfolio.overview.performance.dailyPnl": "每日盈亏",
|
|
846
|
+
"portfolio.overview.performance.cumulativePnl": "累计盈亏",
|
|
847
|
+
"portfolio.overview.deposits&Withdrawals": "存款与取款",
|
|
848
|
+
"portfolio.overview.distribution": "分配",
|
|
849
|
+
"portfolio.overview.column.txId": "交易ID",
|
|
850
|
+
"portfolio.overview.column.funding&AnnualRate": "资金利率/年利率",
|
|
851
|
+
"portfolio.overview.column.paymentType": "支付类型",
|
|
852
|
+
"portfolio.overview.column.paymentType.paid": "已支付",
|
|
853
|
+
"portfolio.overview.column.paymentType.received": "已接收",
|
|
854
|
+
"portfolio.overview.column.fundingFee": "资金费用",
|
|
855
|
+
"portfolio.overview.distribution.type.referralCommission": "推荐佣金",
|
|
856
|
+
"portfolio.overview.distribution.type.refereeRebate": "被推荐人返利",
|
|
857
|
+
"portfolio.overview.distribution.type.brokerFee": "经纪人费用",
|
|
858
|
+
"portfolio.feeTier.updatedDailyBy": "每日更新",
|
|
859
|
+
"portfolio.feeTier.header.yourTier": "您的等级",
|
|
860
|
+
"portfolio.feeTier.header.30dVolume": "30天交易量",
|
|
861
|
+
"portfolio.feeTier.header.takerFeeRate": "吃单费率",
|
|
862
|
+
"portfolio.feeTier.header.makerFeeRate": "挂单费率",
|
|
863
|
+
"portfolio.feeTier.column.tier": "等级",
|
|
864
|
+
"portfolio.feeTier.column.30dVolume": "30天交易量",
|
|
865
|
+
"portfolio.feeTier.column.30dVolume.above": "高于{{volume}}",
|
|
866
|
+
"portfolio.feeTier.column.maker": "挂单",
|
|
867
|
+
"portfolio.feeTier.column.taker": "吃单",
|
|
868
|
+
"portfolio.apiKey.accountId": "账户ID",
|
|
869
|
+
"portfolio.apiKey.accountId.copied": "账户ID已复制",
|
|
870
|
+
"portfolio.apiKey.uid": "用户ID",
|
|
871
|
+
"portfolio.apiKey.secretKey": "密钥",
|
|
872
|
+
"portfolio.apiKey.secretKey.copied": "密钥已复制",
|
|
873
|
+
"portfolio.apiKey.ip": "IP",
|
|
874
|
+
"portfolio.apiKey.permissions": "权限",
|
|
875
|
+
"portfolio.apiKey.permissions.read": "读取",
|
|
876
|
+
"portfolio.apiKey.permissions.trading": "交易",
|
|
877
|
+
"portfolio.apiKey.description": "创建适合您交易需求的API密钥。为了您的安全,请不要与任何人分享您的API密钥。",
|
|
878
|
+
"portfolio.apiKey.readApiGuide": "阅读API指南",
|
|
879
|
+
"portfolio.apiKey.column.apiKey": "API密钥",
|
|
880
|
+
"portfolio.apiKey.column.apiKey.copy": "API密钥已复制",
|
|
881
|
+
"portfolio.apiKey.column.permissionType": "权限类型",
|
|
882
|
+
"portfolio.apiKey.column.restrictedIP": "受限IP",
|
|
883
|
+
"portfolio.apiKey.column.restrictedIP.copy": "受限IP已复制",
|
|
884
|
+
"portfolio.apiKey.column.expirationDate": "到期日期",
|
|
885
|
+
"portfolio.apiKey.create.dialog.title": "创建API密钥",
|
|
886
|
+
"portfolio.apiKey.create.connectWallet.tooltip": "请连接钱包后再创建API密钥",
|
|
887
|
+
"portfolio.apiKey.create.signIn.tooltip": "请登录后再创建API密钥",
|
|
888
|
+
"portfolio.apiKey.create.enableTrading.tooltip": "请启用交易后再创建API密钥",
|
|
889
|
+
"portfolio.apiKey.create.wrongNetwork.tooltip": "请切换到支持的网络以创建API密钥",
|
|
890
|
+
"portfolio.apiKey.create.ipRestriction": "IP限制(可选)",
|
|
891
|
+
"portfolio.apiKey.create.ipRestriction.placeholder": "添加IP地址,用逗号分隔。",
|
|
892
|
+
"portfolio.apiKey.created.warning": "请复制API密钥。一旦关闭此弹出窗口,API密钥将被加密。",
|
|
893
|
+
"portfolio.apiKey.created.button.copyApiInfo": "复制API信息",
|
|
894
|
+
"portfolio.apiKey.apiInfo.copied": "API信息已复制",
|
|
895
|
+
"portfolio.apiKey.created": "API密钥已创建",
|
|
896
|
+
"portfolio.apiKey.deleted": "API密钥已删除",
|
|
897
|
+
"portfolio.apiKey.updated": "API密钥已更新",
|
|
898
|
+
"portfolio.apiKey.edit.dialog.title": "编辑API密钥",
|
|
899
|
+
"portfolio.apiKey.delete.dialog.title": "删除API密钥",
|
|
900
|
+
"portfolio.apiKey.delete.dialog.description": "删除您的API密钥<0>{{apiKey}}</0>?",
|
|
901
|
+
"portfolio.setting.systemUpgrade": "系统升级",
|
|
902
|
+
"portfolio.setting.cancelOpenOrders": "系统升级期间取消未完成订单",
|
|
903
|
+
"portfolio.setting.cancelOpenOrders.description": "在升级期间,所有未完成的订单将被取消,以便在市场波动较大时管理您的风险。",
|
|
904
|
+
"trading.layout": "布局",
|
|
905
|
+
"trading.layout.right": "高级(右)",
|
|
906
|
+
"trading.layout.left": "高级(左)",
|
|
907
|
+
"trading.orders.closeAll": "全部关闭",
|
|
908
|
+
"trading.hideOtherSymbols": "隐藏其他符号",
|
|
909
|
+
"trading.history": "历史",
|
|
910
|
+
"trading.portfolioSettings": "投资组合设置",
|
|
911
|
+
"trading.portfolioSettings.decimalPrecision": "盈亏和名义的十进制精度",
|
|
912
|
+
"trading.portfolioSettings.unrealPnlPriceBasis": "未实现盈亏价格基础",
|
|
913
|
+
"trading.orderBook": "订单簿",
|
|
914
|
+
"trading.lastTrades": "最新交易",
|
|
915
|
+
"trading.orderBook.column.value": "价值",
|
|
916
|
+
"trading.tabs.chart": "图表",
|
|
917
|
+
"trading.tabs.trades": "交易",
|
|
918
|
+
"trading.tabs.data": "数据",
|
|
919
|
+
"trading.column.24High": "24小时最高",
|
|
920
|
+
"trading.column.24Low": "24小时最低",
|
|
921
|
+
"trading.orderBook.sum": "总和",
|
|
922
|
+
"trading.orderBook.markPrice.tooltip": "从第三方预言机获取,标记价格是三个价格的中位数:最新价格、基于资金利率基础的公平价格和基于订单簿的公平价格。",
|
|
923
|
+
"trading.orderBook.spreadRatio.tooltip": "买一和卖一的价差比率。",
|
|
924
|
+
"trading.faucet.getTestUSDC": "获取测试USDC",
|
|
925
|
+
"trading.faucet.getTestUSDC.success": "{{quantity}} USDC将被添加到您的余额中。请注意,这可能需要长达3分钟的时间。请稍后再查看。",
|
|
926
|
+
"trading.asset.startTrading": "开始交易",
|
|
927
|
+
"trading.asset.startTrading.description": "您可以从各种网络存入资产",
|
|
928
|
+
"trading.asset.myAssets": "我的资产",
|
|
929
|
+
"trading.asset.freeCollateral": "自由抵押品",
|
|
930
|
+
"trading.asset.freeCollateral.tooltip": "用于下新订单的自由抵押品。",
|
|
931
|
+
"trading.asset.freeCollateral.formula": "自由抵押品 = 总余额 + 总未结盈亏 - 总持仓初始保证金",
|
|
932
|
+
"trading.asset.marginRatio": "保证金比率",
|
|
933
|
+
"trading.asset.marginRatio.tooltip": "保证金比率表示抵押品相对于总持仓价值的比例。",
|
|
934
|
+
"trading.asset.marginRatio.formula": "账户保证金比率 = (总抵押品价值 / 总持仓名义) * 100%",
|
|
935
|
+
"trading.asset.unsettledPnl": "未结盈亏",
|
|
936
|
+
"trading.asset.free&TotalCollateral": "自由/总抵押品",
|
|
937
|
+
"trading.asset.availableBalance": "可用余额",
|
|
938
|
+
"trading.asset.maintenanceMarginRatio": "维持保证金比率",
|
|
939
|
+
"trading.asset.maintenanceMarginRatio.tooltip": "保护您的持仓不被清算的最低保证金比率。如果保证金比率低于维持保证金比率,账户将被清算。",
|
|
940
|
+
"trading.asset.maintenanceMarginRatio.formula": "账户维持保证金比率 = 总和(持仓名义 * 符号维持保证金比率) / 总持仓名义 * 100%",
|
|
941
|
+
"trading.riskRate": "风险率",
|
|
942
|
+
"trading.riskRate.tooltip": "风险率用于评估账户的风险水平。当风险率达到100%时,账户将被清算",
|
|
943
|
+
"trading.riskRate.formula": "风险率 = 维持保证金比率 / 保证金比率 * 100%",
|
|
944
|
+
"trading.asset&Margin": "资产和保证金",
|
|
945
|
+
"trading.fundingRate.predFundingRate": "预计资金利率",
|
|
946
|
+
"chart.now": "现在",
|
|
947
|
+
"positions.positionHistory": "持仓历史",
|
|
948
|
+
"positions.liquidation": "清算",
|
|
949
|
+
"positions.closePosition": "关闭持仓",
|
|
950
|
+
"positions.column.liqPrice": "清算价格",
|
|
951
|
+
"positions.column.liqPrice.tooltip": "估计的清算价格。价格是估计的,取决于所有持仓的多个因素。",
|
|
952
|
+
"positions.column.unrealPnl.tooltip": "使用标记价格计算的所有小部件上未平仓头寸的当前未实现利润或损失。",
|
|
953
|
+
"positions.column.unrealPnl.priceBasis": "未实现盈亏价格基础",
|
|
954
|
+
"positions.column.margin": "保证金",
|
|
955
|
+
"positions.column.margin.tooltip": "保持您的持仓的最低权益。",
|
|
956
|
+
"positions.column.margin.formula": "保证金 = 持仓规模 * 标记价格 * MMR",
|
|
957
|
+
"positions.column.close": "关闭",
|
|
958
|
+
"positions.limitClose": "限价关闭",
|
|
959
|
+
"positions.limitClose.description": "您同意以限价关闭{{quantity}} {{base}}持仓。",
|
|
960
|
+
"positions.marketClose": "市价关闭",
|
|
961
|
+
"positions.marketClose.description": "您同意以市价关闭{{quantity}} {{base}}持仓。",
|
|
962
|
+
"positions.history.status.closed": "已关闭",
|
|
963
|
+
"positions.history.status.partialClosed": "部分关闭",
|
|
964
|
+
"positions.history.type.adl": "自动减仓",
|
|
965
|
+
"positions.history.type.liquidated": "已清算",
|
|
966
|
+
"positions.history.liquidated.liquidationId": "清算ID",
|
|
967
|
+
"positions.history.liquidated.liquidatorFee": "清算人费用",
|
|
968
|
+
"positions.history.liquidated.insFundFee": "保险基金费用",
|
|
969
|
+
"positions.history.column.closed": "已关闭",
|
|
970
|
+
"positions.history.column.maxClosed": "最大关闭",
|
|
971
|
+
"positions.history.column.closed&maxClosed": "已关闭/最大关闭",
|
|
972
|
+
"positions.history.column.netPnl": "净盈亏",
|
|
973
|
+
"positions.history.column.timeOpened": "开仓时间",
|
|
974
|
+
"positions.history.column.timeClosed": "平仓时间",
|
|
975
|
+
"positions.history.column.updatedTime": "更新时间",
|
|
976
|
+
"positions.history.netPnl.fundingFee": "资金费用",
|
|
977
|
+
"positions.history.netPnl.tradingFee": "交易费用",
|
|
978
|
+
"positions.Liquidation.column.liquidationId": "清算ID",
|
|
979
|
+
"positions.Liquidation.column.insFundTransfer": "保险基金转账",
|
|
980
|
+
"positions.Liquidation.column.liquidationFee": "清算费用",
|
|
981
|
+
"orders.orderHistory": "订单历史",
|
|
982
|
+
"orders.status.pending": "待处理",
|
|
983
|
+
"orders.status.filled": "已成交",
|
|
984
|
+
"orders.status.partialFilled": "部分成交",
|
|
985
|
+
"orders.status.canceled": "已取消",
|
|
986
|
+
"orders.status.rejected": "已拒绝",
|
|
987
|
+
"orders.status.incomplete": "未完成",
|
|
988
|
+
"orders.status.completed": "已完成",
|
|
989
|
+
"orders.status.opened.toast.title": "订单已打开",
|
|
990
|
+
"orders.status.filled.toast.title": "订单已成交",
|
|
991
|
+
"orders.status.canceled.toast.title": "订单已取消",
|
|
992
|
+
"orders.status.rejected.toast.title": "订单已拒绝",
|
|
993
|
+
"orders.status.replaced.toast.title": "订单已编辑",
|
|
994
|
+
"orders.column.orderPrice": "订单价格",
|
|
995
|
+
"orders.column.fill&Quantity": "已成交/数量",
|
|
996
|
+
"orders.column.triggerPrice": "触发价格",
|
|
997
|
+
"orders.column.orderTime": "订单时间",
|
|
998
|
+
"orders.column.hidden": "隐藏",
|
|
999
|
+
"orders.editOrder": "编辑订单",
|
|
1000
|
+
"order.edit.confirm.quantity": "您同意将{{base}}-PERP订单的数量更改为<0>{{value}}</0>。",
|
|
1001
|
+
"order.edit.confirm.price": "您同意将{{base}}-PERP订单的价格更改为<0>{{value}}</0>。",
|
|
1002
|
+
"order.edit.confirm.triggerPrice": "您同意将{{base}}-PERP订单的触发价格更改为<0>{{value}}</0>。",
|
|
1003
|
+
"orders.cancelOrder": "取消订单",
|
|
1004
|
+
"orders.cancelOrder.description": "您确定要取消您的待处理订单吗?",
|
|
1005
|
+
"orders.cancelAll": "全部取消",
|
|
1006
|
+
"orders.pending.cancelAll": "取消所有待处理订单",
|
|
1007
|
+
"orders.pending.cancelAll.description": "您确定要取消所有待处理订单吗?",
|
|
1008
|
+
"orders.tpsl.cancelAll": "取消所有止盈止损订单",
|
|
1009
|
+
"orders.tpsl.cancelAll.description": "您确定要取消所有止盈止损订单吗?",
|
|
1010
|
+
"orders.price.greaterThan": "价格不能大于{{max}} USDC。",
|
|
1011
|
+
"orders.price.lessThan": "价格不能小于{{min}} USDC。",
|
|
1012
|
+
"orders.quantity.lessThan": "数量应小于{{quantity}}",
|
|
1013
|
+
"orders.quantity.lessThanPosition": "数量应小于持仓数量:{{quantity}}",
|
|
1014
|
+
"orders.history.renew": "更新",
|
|
1015
|
+
"orders.download.tooltip": "下载的数据将仅反映应用的过滤器(例如,状态、时间、方向和分页),可能不包括所有记录。",
|
|
1016
|
+
"tpsl.tp": "止盈",
|
|
1017
|
+
"tpsl.sl": "止损",
|
|
1018
|
+
"tpsl.tpPrice": "止盈价格",
|
|
1019
|
+
"tpsl.slPrice": "止损价格",
|
|
1020
|
+
"tpsl.tpPnl": "止盈盈亏",
|
|
1021
|
+
"tpsl.slPnl": "止损盈亏",
|
|
1022
|
+
"tpsl.tpTrigger": "止盈触发",
|
|
1023
|
+
"tpsl.slTrigger": "止损触发",
|
|
1024
|
+
"tpsl.pnl": "盈亏",
|
|
1025
|
+
"tpsl.offset": "偏移",
|
|
1026
|
+
"tpsl.positionTpsl": "持仓止盈止损",
|
|
1027
|
+
"tpsl.entirePosition": "整个持仓",
|
|
1028
|
+
"tpsl.estPnl": "预计盈亏",
|
|
1029
|
+
"tpsl.takeProfit": "止盈",
|
|
1030
|
+
"tpsl.stopLoss": "止损",
|
|
1031
|
+
"tpsl.cancelOrder.description": "您确定要取消此止盈止损订单吗?",
|
|
1032
|
+
"tpsl.confirmOrder": "确认订单",
|
|
1033
|
+
"share.pnl.sharePnl": "分享盈亏",
|
|
1034
|
+
"share.pnl.share.long": "多头",
|
|
1035
|
+
"share.pnl.share.short": "空头",
|
|
1036
|
+
"share.pnl.displayFormat": "盈亏显示格式",
|
|
1037
|
+
"share.pnl.displayFormat.roi&Pnl": "投资回报率和盈亏",
|
|
1038
|
+
"share.pnl.displayFormat.roi": "投资回报率",
|
|
1039
|
+
"share.pnl.displayFormat.pnl": "盈亏",
|
|
1040
|
+
"share.pnl.optionalInfo": "可选信息分享",
|
|
1041
|
+
"share.pnl.optionalInfo.openPrice": "开盘价",
|
|
1042
|
+
"share.pnl.optionalInfo.closePrice": "收盘价",
|
|
1043
|
+
"share.pnl.optionalInfo.openTime": "开盘时间",
|
|
1044
|
+
"share.pnl.optionalInfo.closeTime": "收盘时间",
|
|
1045
|
+
"share.pnl.optionalInfo.message": "您的信息",
|
|
1046
|
+
"share.pnl.optionalInfo.message.placeholder": "最多25个字符",
|
|
1047
|
+
"share.pnl.optionalInfo.message.maxLength": "最多支持25个字符",
|
|
1048
|
+
"share.pnl.image.copied": "图片已复制",
|
|
1049
|
+
"share.pnl.copy.failed.description": "浏览器版本过旧,请更新以便将图片复制到剪贴板。",
|
|
1050
|
+
"orderEntry.buyLong": "买入/多头",
|
|
1051
|
+
"orderEntry.sellShort": "卖出/空头",
|
|
1052
|
+
"orderEntry.reduceOnly": "仅减少",
|
|
1053
|
+
"orderEntry.orderType.limit": "限价",
|
|
1054
|
+
"orderEntry.orderType.market": "市价",
|
|
1055
|
+
"orderEntry.orderType.limitOrder": "限价订单",
|
|
1056
|
+
"orderEntry.orderType.marketOrder": "市价订单",
|
|
1057
|
+
"orderEntry.orderType.stopLimit": "止损限价",
|
|
1058
|
+
"orderEntry.orderType.stopMarket": "止损市价",
|
|
1059
|
+
"orderEntry.orderType.postOnly": "仅挂单",
|
|
1060
|
+
"orderEntry.orderType.ioc": "立即成交或取消",
|
|
1061
|
+
"orderEntry.orderType.fok": "全部成交或取消",
|
|
1062
|
+
"orderEntry.bbo": "最佳买卖报价",
|
|
1063
|
+
"orderEntry.bbo.counterparty1": "对手方1",
|
|
1064
|
+
"orderEntry.bbo.counterparty5": "对手方5",
|
|
1065
|
+
"orderEntry.bbo.queue1": "队列1",
|
|
1066
|
+
"orderEntry.bbo.queue5": "队列5",
|
|
1067
|
+
"orderEntry.bbo.disabled.tips": "选择止盈止损、仅挂单、立即成交或取消、全部成交或取消时不支持最佳买卖报价。",
|
|
1068
|
+
"orderEntry.estLiqPrice": "预计清算价格",
|
|
1069
|
+
"orderEntry.disableOrderConfirm": "禁用订单确认",
|
|
1070
|
+
"orderEntry.orderConfirm": "订单确认",
|
|
1071
|
+
"orderEntry.hidden": "隐藏",
|
|
1072
|
+
"orderEntry.keepVisible": "保持可见",
|
|
1073
|
+
"orderEntry.maxBuy": "最大买入",
|
|
1074
|
+
"orderEntry.maxSell": "最大卖出",
|
|
1075
|
+
"orderEntry.tpMarkPrice": "止盈价格(标记)",
|
|
1076
|
+
"orderEntry.slMarkPrice": "止损价格(标记)",
|
|
1077
|
+
"orderEntry.tpsl.trigger.description": "止盈止损在指定的标记价格触发,并作为市价订单执行。",
|
|
1078
|
+
"orderEntry.estRoi": "预计投资回报率",
|
|
1079
|
+
"orderEntry.estPnL": "预计盈亏",
|
|
1080
|
+
"orderEntry.tpsl.tips": "止盈止损在指定的标记价格触发,并作为市价订单执行。默认情况下,它适用于整个持仓。调整持仓中的设置以进行部分止盈止损。",
|
|
1081
|
+
"orderEntry.orderQuantity.error.required": "数量是必需的",
|
|
1082
|
+
"orderEntry.orderQuantity.error.min": "数量必须大于{{value}}",
|
|
1083
|
+
"orderEntry.orderQuantity.error.max": "数量必须小于{{value}}",
|
|
1084
|
+
"orderEntry.orderPrice.error.required": "价格是必需的",
|
|
1085
|
+
"orderEntry.orderPrice.error.min": "价格必须大于{{value}}",
|
|
1086
|
+
"orderEntry.orderPrice.error.max": "价格必须小于{{value}}",
|
|
1087
|
+
"orderEntry.triggerPrice.error.required": "触发价格是必需的",
|
|
1088
|
+
"orderEntry.triggerPrice.error.min": "触发价格必须大于{{value}}",
|
|
1089
|
+
"orderEntry.triggerPrice.error.max": "触发价格必须小于{{value}}",
|
|
1090
|
+
"orderEntry.tpTriggerPrice.error.min": "止盈价格必须大于{{value}}",
|
|
1091
|
+
"orderEntry.tpTriggerPrice.error.max": "止盈价格必须小于{{value}}",
|
|
1092
|
+
"orderEntry.slTriggerPrice.error.min": "止损价格必须大于{{value}}",
|
|
1093
|
+
"orderEntry.slTriggerPrice.error.max": "止损价格必须小于{{value}}",
|
|
1094
|
+
"orderEntry.total.error.min": "订单价值应大于或等于{{value}} USDC",
|
|
1095
|
+
"leverage.maxAccountLeverage": "最大账户杠杆",
|
|
1096
|
+
"leverage.accountLeverage": "账户杠杆",
|
|
1097
|
+
"leverage.currentLeverage": "当前杠杆",
|
|
1098
|
+
"leverage.maxLeverage": "最大杠杆",
|
|
1099
|
+
"leverage.updated": "杠杆已更新",
|
|
1100
|
+
"scaffold.footer.operational": "运营中",
|
|
1101
|
+
"scaffold.footer.joinCommunity": "加入我们的社区",
|
|
1102
|
+
"scaffold.footer.poweredBy": "技术支持",
|
|
1103
|
+
"scaffold.maintenance.dialog.title": "系统升级进行中",
|
|
1104
|
+
"scaffold.maintenance.dialog.description": "抱歉,由于计划中的升级,{{brokerName}}暂时不可用。服务预计将在{{endDate}}恢复。",
|
|
1105
|
+
"scaffold.maintenance.tips.description": "{{brokerName}}将因计划中的升级从{{startDate}}到{{endDate}}暂时不可用。",
|
|
1106
|
+
"scaffold.restrictedInfo.description.default": "您正在从与受限国家相关的IP地址({{ip}})访问{{brokerName}}。",
|
|
1107
|
+
"tradingRewards.rewards": "奖励",
|
|
1108
|
+
"tradingRewards.subtitle": "与{{brokerName}}交易以赚取esORDER。",
|
|
1109
|
+
"tradingRewards.learnMore": "在这里了解更多",
|
|
1110
|
+
"tradingRewards.myEstRewards": "我的预计奖励",
|
|
1111
|
+
"tradingRewards.epoch": "周期",
|
|
1112
|
+
"tradingRewards.epochRewards": "周期奖励",
|
|
1113
|
+
"tradingRewards.otherOrderlyDex": "其他Orderly DEX",
|
|
1114
|
+
"tradingRewards.claim": "领取",
|
|
1115
|
+
"tradingRewards.availableClaim": "可领取",
|
|
1116
|
+
"tradingRewards.stake": "质押",
|
|
1117
|
+
"tradingRewards.booster": "加速器",
|
|
1118
|
+
"tradingRewards.stakeBooster": "质押加速器",
|
|
1119
|
+
"tradingRewards.avgStakedAmount": "平均质押金额",
|
|
1120
|
+
"tradingRewards.rewardHistory": "奖励历史",
|
|
1121
|
+
"tradingRewards.rewardsEarned": "已赚取奖励",
|
|
1122
|
+
"tradingRewards.rewardHistory.column.start&EndDate": "开始/结束日期",
|
|
1123
|
+
"tradingRewards.rewardHistory.column.startDate": "开始",
|
|
1124
|
+
"tradingRewards.rewardHistory.column.endDate": "结束日期",
|
|
1125
|
+
"tradingView.timeInterval.1m": "1分",
|
|
1126
|
+
"tradingView.timeInterval.3m": "3分",
|
|
1127
|
+
"tradingView.timeInterval.5m": "5分",
|
|
1128
|
+
"tradingView.timeInterval.15m": "15分",
|
|
1129
|
+
"tradingView.timeInterval.30m": "30分",
|
|
1130
|
+
"tradingView.timeInterval.1h": "1时",
|
|
1131
|
+
"tradingView.timeInterval.2h": "2时",
|
|
1132
|
+
"tradingView.timeInterval.4h": "4时",
|
|
1133
|
+
"tradingView.timeInterval.6h": "6时",
|
|
1134
|
+
"tradingView.timeInterval.12h": "12时",
|
|
1135
|
+
"tradingView.timeInterval.1d": "1天",
|
|
1136
|
+
"tradingView.timeInterval.3d": "3天",
|
|
1137
|
+
"tradingView.timeInterval.1w": "1周",
|
|
1138
|
+
"tradingView.timeInterval.1M": "1月",
|
|
1139
|
+
"tradingView.timeInterval.more": "更多",
|
|
1140
|
+
"tradingView.lineType.bars": "条形图",
|
|
1141
|
+
"tradingView.lineType.candles": "蜡烛图",
|
|
1142
|
+
"tradingView.lineType.hollowCandles": "空心蜡烛图",
|
|
1143
|
+
"tradingView.lineType.line": "线形图",
|
|
1144
|
+
"tradingView.lineType.area": "面积图",
|
|
1145
|
+
"tradingView.lineType.baseline": "基线图",
|
|
1146
|
+
"tradingView.displayControl.buySell": "买入/卖出",
|
|
1147
|
+
"tradingView.displayControl.limitOrders": "限价订单",
|
|
1148
|
+
"tradingView.displayControl.stopOrders": "止损订单",
|
|
1149
|
+
"tradingView.noScriptSrc": "由于TradingView的政策,您需要申请自己的许可证。",
|
|
1150
|
+
"tradingView.noScriptSrc.1": "1. 请在<0>这里</0>申请您的TradingView高级图表许可证",
|
|
1151
|
+
"tradingView.noScriptSrc.2": "2. 按照<0>orderly.network</0>上的说明进行设置。",
|
|
1152
|
+
"connector.testnet": "测试网",
|
|
1153
|
+
"connector.mainnet": "主网",
|
|
1154
|
+
"connector.disconnect": "断开连接",
|
|
1155
|
+
"connector.connectWallet": "连接钱包",
|
|
1156
|
+
"connector.signIn": "登录",
|
|
1157
|
+
"connector.signIn.description": "确认您是此钱包的所有者",
|
|
1158
|
+
"connector.enableTrading": "启用交易",
|
|
1159
|
+
"connector.enableTrading.description": "启用对我们API的安全访问,以实现快速交易",
|
|
1160
|
+
"connector.switchNetwork": "切换网络",
|
|
1161
|
+
"connector.wrongNetwork": "错误的网络",
|
|
1162
|
+
"connector.wrongNetwork.tooltip": "请切换到支持的网络以继续。",
|
|
1163
|
+
"connector.expired": "您的先前访问已过期,您将收到一个签名请求以启用交易。签名是免费的,不会发送交易。",
|
|
1164
|
+
"connector.rememberMe": "记住我",
|
|
1165
|
+
"connector.rememberMe.description": "切换此选项以在下次交易时跳过这些步骤。",
|
|
1166
|
+
"connector.referralCode.placeholder": "推荐码(可选)",
|
|
1167
|
+
"connector.referralCode.invalid": "推荐码必须为4到10个字符,只接受大写罗马字符和数字",
|
|
1168
|
+
"connector.referralCode.notExist": "此推荐码不存在。",
|
|
1169
|
+
"connector.somethingWentWrong": "出了点问题",
|
|
1170
|
+
"connector.userRejected": "用户拒绝了请求。",
|
|
1171
|
+
"connector.walletConnected": "钱包已连接",
|
|
1172
|
+
"connector.networkSwitched": "网络已切换",
|
|
1173
|
+
"connector.switchChain.failed": "切换链失败",
|
|
1174
|
+
"connector.trade.connectWallet.tooltip": "请在开始交易前连接钱包",
|
|
1175
|
+
"connector.trade.signIn.tooltip": "请在开始交易前登录",
|
|
1176
|
+
"connector.trade.enableTrading.tooltip": "请在开始交易前启用交易",
|
|
1177
|
+
"connector.setUp.connectWallet.tooltip": "请在设置前连接钱包",
|
|
1178
|
+
"connector.setUp.signIn.tooltip": "请在设置前登录",
|
|
1179
|
+
"connector.setUp.enableTrading.tooltip": "请在设置前启用交易",
|
|
1180
|
+
"connector.ledger.signMessageFailed": "签名消息失败",
|
|
1181
|
+
"connector.ledger.signMessageFailed.description": "您在使用Ledger钱包吗?",
|
|
1182
|
+
"connector.loginIn": "登录中",
|
|
1183
|
+
"connector.logout": "登出",
|
|
1184
|
+
"connector.email": "电子邮件",
|
|
1185
|
+
"connector.google": "谷歌",
|
|
1186
|
+
"connector.twitter": "X / 推特",
|
|
1187
|
+
"connector.myWallet": "我的钱包",
|
|
1188
|
+
"connector.addEvmWallet": "添加Evm钱包",
|
|
1189
|
+
"connector.addSolanaWallet": "添加Solana钱包",
|
|
1190
|
+
"connector.createEvmWallet": "创建EVM钱包",
|
|
1191
|
+
"connector.createSolanaWallet": "创建Solana钱包",
|
|
1192
|
+
"connector.termsOfUse": "通过连接您的钱包,您确认并同意<0>使用条款</0>。",
|
|
1193
|
+
"connector.supportedEvmChain": "支持的Evm链",
|
|
1194
|
+
"connector.supportedSolanaChain": "支持的Solana链",
|
|
1195
|
+
"connector.noWallet": "没有钱包",
|
|
1196
|
+
"connector.noWallet.description": "请创建钱包以继续。只有您可以访问私钥。您可以随时导出私钥,并将钱包导入到其他钱包客户端,如 MetaMask 或 Phantom。",
|
|
1197
|
+
"transfer.network": "网络",
|
|
1198
|
+
"transfer.lowestFee": "最低费用",
|
|
1199
|
+
"transfer.web3Wallet": "您的Web3钱包",
|
|
1200
|
+
"transfer.brokerAccount": "您的{{brokerName}}账户",
|
|
1201
|
+
"transfer.quantity.invalid": "请输入有效的数字",
|
|
1202
|
+
"transfer.insufficientBalance": "余额不足",
|
|
1203
|
+
"transfer.rejectTransaction": "交易被拒绝",
|
|
1204
|
+
"transfer.deposit.approve.symbol": "批准{{symbol}}",
|
|
1205
|
+
"transfer.deposit.approve.success": "批准成功",
|
|
1206
|
+
"transfer.deposit.approve.failed": "批准失败",
|
|
1207
|
+
"transfer.deposit.increase.symbol": "增加{{symbol}}授权金额",
|
|
1208
|
+
"transfer.deposit.requested": "存款请求",
|
|
1209
|
+
"transfer.deposit.completed": "存款完成",
|
|
1210
|
+
"transfer.deposit.failed": "存款失败",
|
|
1211
|
+
"transfer.deposit.destinationGasFee": "目的地燃气费",
|
|
1212
|
+
"transfer.deposit.destinationGasFee.description": "需要额外的燃气代币来支付目的地链上的操作。",
|
|
1213
|
+
"transfer.withdraw.unsupported.chain": "此链不支持提款。请切换到任何无桥接网络。",
|
|
1214
|
+
"transfer.withdraw.unsupported.networkName": "{{networkName}}不支持提款。请切换到任何无桥接网络。",
|
|
1215
|
+
"transfer.withdraw.crossChain.confirmWithdraw": "确认提款",
|
|
1216
|
+
"transfer.withdraw.crossChain.recipientAddress": "接收地址",
|
|
1217
|
+
"transfer.withdraw.crossChain.recipientNetwork": "接收网络",
|
|
1218
|
+
"transfer.withdraw.crossChain.withdrawAmount": "提款金额",
|
|
1219
|
+
"transfer.withdraw.crossChain.process": "您的跨链提款正在处理中...",
|
|
1220
|
+
"transfer.withdraw.crossChain.warning": "需要跨链重新平衡的提款无法取消或在处理完成之前进行更多提款。",
|
|
1221
|
+
"transfer.withdraw.crossChain.vaultWarning": "提款超过{{networkName}}金库的余额({{chainVaultBalance}} USDC)。跨链重新平衡费用将被收取以提款到{{networkName}}。",
|
|
1222
|
+
"transfer.withdraw.minAmount.error": "数量必须大于{{minAmount}}",
|
|
1223
|
+
"transfer.withdraw.requested": "提款请求",
|
|
1224
|
+
"transfer.withdraw.completed": "提款完成",
|
|
1225
|
+
"transfer.withdraw.failed": "提款失败",
|
|
1226
|
+
"affiliate.referral": "推荐",
|
|
1227
|
+
"affiliate.trader": "交易员",
|
|
1228
|
+
"affiliate.enter": "输入",
|
|
1229
|
+
"affiliate.statistics": "统计",
|
|
1230
|
+
"affiliate.connectWallet.tooltip": "请连接您的钱包以使用此功能",
|
|
1231
|
+
"affiliate.page.title": "作为<0>{{shortBrokerName}}</0>联盟赚取更多",
|
|
1232
|
+
"affiliate.page.subTitle": "发展您的品牌 | 获得40%佣金 | 解锁独家福利",
|
|
1233
|
+
"affiliate.page.learnMore": "了解它是如何工作的",
|
|
1234
|
+
"affiliate.asAffiliate.title": "作为联盟",
|
|
1235
|
+
"affiliate.asAffiliate.description": "招募交易员以赚取被动收入",
|
|
1236
|
+
"affiliate.asAffiliate.button": "成为联盟",
|
|
1237
|
+
"affiliate.asTrader.title": "作为交易员",
|
|
1238
|
+
"affiliate.asTrader.description": "招募交易员以赚取被动收入",
|
|
1239
|
+
"affiliate.asTrader.button": "输入代码",
|
|
1240
|
+
"affiliate.referralCode": "推荐码",
|
|
1241
|
+
"affiliate.referralCode.dialog.title": "绑定推荐码",
|
|
1242
|
+
"affiliate.referralCode.dialog.description": "绑定推荐码以赚取交易费用返利。",
|
|
1243
|
+
"affiliate.referralCode.label": "输入推荐码",
|
|
1244
|
+
"affiliate.referralCode.bound": "推荐码已绑定",
|
|
1245
|
+
"affiliate.referralCode.notExist": "此推荐码不存在。",
|
|
1246
|
+
"affiliate.process.title": "成为联盟很简单",
|
|
1247
|
+
"affiliate.process.step1.title.title": "申请",
|
|
1248
|
+
"affiliate.process.step1.description": "填写申请表",
|
|
1249
|
+
"affiliate.process.step2.title": "分享",
|
|
1250
|
+
"affiliate.process.step2.description": "解锁您的联盟链接并与您的社区分享",
|
|
1251
|
+
"affiliate.process.step3.title": "赚取",
|
|
1252
|
+
"affiliate.process.step3.description": "获得报酬并享受24/7、365天的特别待遇",
|
|
1253
|
+
"affiliate.summary": "总结",
|
|
1254
|
+
"affiliate.summary.refereesTraded": "已交易的被推荐人",
|
|
1255
|
+
"affiliate.referralLink": "推荐链接",
|
|
1256
|
+
"affiliate.referralLink.earn": "赚取",
|
|
1257
|
+
"affiliate.referralLink.earn.tooltip": "{{brokerName}}净费用扣除Orderly费用。",
|
|
1258
|
+
"affiliate.referralLink.share": "分享",
|
|
1259
|
+
"affiliate.referralLink.share.tooltip": "您的被推荐人获得<0>{{value}}</0>的{{brokerName}}净费用",
|
|
1260
|
+
"affiliate.referralVol": "推荐量",
|
|
1261
|
+
"affiliate.referralCodes": "推荐码",
|
|
1262
|
+
"affiliate.referralCodes.remaining": "剩余推荐码",
|
|
1263
|
+
"affiliate.referralCodes.column.you&Referee": "您/被推荐人",
|
|
1264
|
+
"affiliate.referralCodes.column.traders": "交易员",
|
|
1265
|
+
"affiliate.referralCodes.column.referees&Traders": "被推荐人/交易员",
|
|
1266
|
+
"affiliate.referralCodes.copyLink": "复制链接",
|
|
1267
|
+
"affiliate.commission": "佣金",
|
|
1268
|
+
"affiliate.commission.30d": "30天佣金",
|
|
1269
|
+
"affiliate.commission.column.activeUsers": "推荐活跃用户",
|
|
1270
|
+
"affiliate.myReferees": "我的被推荐人",
|
|
1271
|
+
"affiliate.referees": "被推荐人",
|
|
1272
|
+
"affiliate.referees.column.refereeAddress": "被推荐人地址",
|
|
1273
|
+
"affiliate.referees.column.totalCommission": "总佣金",
|
|
1274
|
+
"affiliate.referees.column.totalVol": "总量",
|
|
1275
|
+
"affiliate.referees.column.invitationTime": "邀请时间",
|
|
1276
|
+
"affiliate.trader.yourReferrer": "您的推荐人",
|
|
1277
|
+
"affiliate.trader.rebate": "返利",
|
|
1278
|
+
"affiliate.trader.rebates": "返利",
|
|
1279
|
+
"affiliate.trader.myRebates": "我的返利",
|
|
1280
|
+
"affiliate.trader.tradingVol": "交易量",
|
|
1281
|
+
"ui.pagination.morePages": "更多页面",
|
|
1282
|
+
"ui.pagination.rowsPerPage": "每页行数",
|
|
1283
|
+
"ui.picker.selectDate": "选择日期",
|
|
1284
|
+
"ui.empty.description": "未找到结果。",
|
|
1285
|
+
"tradingLeaderboard.leaderboard": "排行榜",
|
|
1286
|
+
"tradingLeaderboard.campaigns": "活动",
|
|
1287
|
+
"tradingLeaderboard.ongoing": "进行中",
|
|
1288
|
+
"tradingLeaderboard.past": "已结束",
|
|
1289
|
+
"tradingLeaderboard.future": "即将开始",
|
|
1290
|
+
"tradingLeaderboard.learnMore": "了解更多",
|
|
1291
|
+
"tradingLeaderboard.tradeNow": "立即交易",
|
|
1292
|
+
"tradingLeaderboard.tradingVolume": "交易量",
|
|
1293
|
+
"tradingLeaderboard.rank": "排名"
|
|
1294
|
+
};
|
|
1295
|
+
|
|
1296
|
+
declare const allResources: Resources;
|
|
1297
|
+
|
|
1298
|
+
export { I18nProvider, type I18nProviderProps, type Language, type LocaleCode, LocaleEnum, type LocaleMessages, LocaleProvider, type LocaleProviderProps, type Resources, allResources, defaultLanguages, defaultLng, defaultNS, en, i18n, i18nLocalStorageKey, useLocaleCode, useLocaleContext, useTranslation, zh };
|