@kodiak-finance/orderly-i18n 2.8.18 → 2.8.19
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/dist/constant.d.mts +1 -1
- package/dist/constant.d.ts +1 -1
- package/dist/constant.js +64 -7
- package/dist/constant.js.map +1 -1
- package/dist/constant.mjs +59 -2
- package/dist/constant.mjs.map +1 -1
- package/dist/index.d.mts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +1561 -29
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1536 -4
- package/dist/index.mjs.map +1 -1
- package/dist/locale.csv +1115 -1013
- package/dist/locales/de.json +142 -40
- package/dist/locales/en.json +133 -31
- package/dist/locales/es.json +145 -43
- package/dist/locales/fr.json +138 -36
- package/dist/locales/id.json +139 -37
- package/dist/locales/it.json +139 -37
- package/dist/locales/ja.json +147 -45
- package/dist/locales/ko.json +143 -41
- package/dist/locales/nl.json +136 -34
- package/dist/locales/pl.json +142 -40
- package/dist/locales/pt.json +141 -39
- package/dist/locales/ru.json +155 -53
- package/dist/locales/tc.json +1116 -0
- package/dist/locales/tr.json +140 -38
- package/dist/locales/uk.json +154 -52
- package/dist/locales/vi.json +160 -58
- package/dist/locales/zh.json +142 -40
- package/dist/{types-ohsqGqqq.d.ts → types-78lNM5Vi.d.ts} +125 -23
- package/dist/utils.d.mts +1 -1
- package/dist/utils.d.ts +1 -1
- package/dist/utils.js +1343 -7
- package/dist/utils.js.map +1 -1
- package/dist/utils.mjs +1339 -3
- package/dist/utils.mjs.map +1 -1
- package/package.json +2 -2
- package/script/mergeJson.js +6 -1
|
@@ -81,19 +81,48 @@ declare const i18nLocalStorageKey = "orderly_i18nLng";
|
|
|
81
81
|
declare const i18nCookieKey = "orderly_i18nLng";
|
|
82
82
|
|
|
83
83
|
declare const en: {
|
|
84
|
+
"notification.campaign": string;
|
|
85
|
+
"notification.delisting": string;
|
|
86
|
+
"notification.general": string;
|
|
87
|
+
"notification.joinNow": string;
|
|
88
|
+
"notification.listing": string;
|
|
89
|
+
"notification.maintenance": string;
|
|
90
|
+
"notification.maintenanceDuration.hours": string;
|
|
91
|
+
"notification.maintenanceDuration.minutes": string;
|
|
92
|
+
"notification.recentlyUpdated": string;
|
|
93
|
+
"notification.title": string;
|
|
94
|
+
"notification.centerTitle": string;
|
|
95
|
+
"notification.closeAll": string;
|
|
96
|
+
"notification.delistingTitle": string;
|
|
97
|
+
"notification.generalTitle": string;
|
|
98
|
+
"notification.maintenanceTitle": string;
|
|
99
|
+
"notification.empty": string;
|
|
84
100
|
"vaults.availableOn": string;
|
|
85
101
|
"vaults.header.title": string;
|
|
86
102
|
"vaults.header.description": string;
|
|
87
103
|
"vaults.introduction.tvl": string;
|
|
88
104
|
"vaults.introduction.depositors": string;
|
|
89
105
|
"vaults.allVaults": string;
|
|
106
|
+
"vaults.list.poolName": string;
|
|
107
|
+
"vaults.list.myDeposits": string;
|
|
108
|
+
"vaults.list.allTimePnl": string;
|
|
109
|
+
"vaults.list.operate": string;
|
|
90
110
|
"vaults.card.orderly.title": string;
|
|
91
111
|
"vaults.card.orderly.description": string;
|
|
92
112
|
"vaults.card.tvl": string;
|
|
93
113
|
"vaults.card.apy": string;
|
|
114
|
+
"vaults.card.allTimeReturn": string;
|
|
115
|
+
"vaults.card.allTimeReturnTooltip": string;
|
|
94
116
|
"vaults.card.myDeposits": string;
|
|
95
117
|
"vaults.card.myEarnings": string;
|
|
96
118
|
"vaults.card.accountBalance": string;
|
|
119
|
+
"vaults.card.more": string;
|
|
120
|
+
"vaults.card.less": string;
|
|
121
|
+
"vaults.card.launchingSoon": string;
|
|
122
|
+
"vaults.card.viewMore": string;
|
|
123
|
+
"vaults.card.status.active": string;
|
|
124
|
+
"vaults.card.status.closing": string;
|
|
125
|
+
"vaults.card.status.closed": string;
|
|
97
126
|
"vaults.deposit.estShares": string;
|
|
98
127
|
"vaults.deposit.shares": string;
|
|
99
128
|
"vaults.deposit.lockupDuration": string;
|
|
@@ -176,6 +205,11 @@ declare const en: {
|
|
|
176
205
|
"funding.paymentType.paid": string;
|
|
177
206
|
"funding.paymentType.received": string;
|
|
178
207
|
"leftNav.feedback": string;
|
|
208
|
+
"errorBoundary.title": string;
|
|
209
|
+
"errorBoundary.description": string;
|
|
210
|
+
"errorBoundary.refresh": string;
|
|
211
|
+
"dmm.maker": string;
|
|
212
|
+
"dmm.taker": string;
|
|
179
213
|
"tradingLeaderboard.leaderboard": string;
|
|
180
214
|
"tradingLeaderboard.campaigns": string;
|
|
181
215
|
"tradingLeaderboard.ongoing": string;
|
|
@@ -187,6 +221,7 @@ declare const en: {
|
|
|
187
221
|
"tradingLeaderboard.tradingVolume": string;
|
|
188
222
|
"tradingLeaderboard.rank": string;
|
|
189
223
|
"tradingLeaderboard.estimatedRewards": string;
|
|
224
|
+
"tradingLeaderboard.points": string;
|
|
190
225
|
"tradingLeaderboard.lastUpdate": string;
|
|
191
226
|
"tradingLeaderboard.estimatedTicketsEarned": string;
|
|
192
227
|
"tradingLeaderboard.ticketPrizePool": string;
|
|
@@ -206,15 +241,20 @@ declare const en: {
|
|
|
206
241
|
"tradingLeaderboard.maxTicketsAchieved": string;
|
|
207
242
|
"tradingLeaderboard.termsAndConditions": string;
|
|
208
243
|
"tradingLeaderboard.rules": string;
|
|
244
|
+
"tradingLeaderboard.pnl.tooltip": string;
|
|
245
|
+
"tradingLeaderboard.realizedPnl.tooltip": string;
|
|
246
|
+
"tradingLeaderboard.tradingVolume.tooltip": string;
|
|
247
|
+
"ui.empty.description": string;
|
|
248
|
+
"ui.messageCenter.tooltip": string;
|
|
209
249
|
"ui.pagination.morePages": string;
|
|
210
250
|
"ui.pagination.rowsPerPage": string;
|
|
211
251
|
"ui.picker.selectDate": string;
|
|
212
|
-
"ui.empty.description": string;
|
|
213
252
|
"affiliate.referral": string;
|
|
214
253
|
"affiliate.trader": string;
|
|
215
254
|
"affiliate.enter": string;
|
|
216
255
|
"affiliate.statistics": string;
|
|
217
256
|
"affiliate.connectWallet.tooltip": string;
|
|
257
|
+
"affiliate.createAccount.tooltip": string;
|
|
218
258
|
"affiliate.page.title": string;
|
|
219
259
|
"affiliate.page.subTitle": string;
|
|
220
260
|
"affiliate.page.learnMore": string;
|
|
@@ -302,10 +342,15 @@ declare const en: {
|
|
|
302
342
|
"transfer.deposit.requested": string;
|
|
303
343
|
"transfer.deposit.completed": string;
|
|
304
344
|
"transfer.deposit.failed": string;
|
|
345
|
+
"transfer.deposit.feeUnavailable": string;
|
|
346
|
+
"transfer.deposit.notEnoughGas": string;
|
|
347
|
+
"transfer.deposit.exceedCap": string;
|
|
348
|
+
"transfer.deposit.estGasFee": string;
|
|
305
349
|
"transfer.deposit.destinationGasFee": string;
|
|
306
350
|
"transfer.deposit.destinationGasFee.description": string;
|
|
307
351
|
"transfer.withdraw.unsupported.chain": string;
|
|
308
352
|
"transfer.withdraw.unsupported.networkName": string;
|
|
353
|
+
"transfer.withdraw.unsupported.token": string;
|
|
309
354
|
"transfer.withdraw.crossChain.confirmWithdraw": string;
|
|
310
355
|
"transfer.withdraw.crossChain.recipientAddress": string;
|
|
311
356
|
"transfer.withdraw.crossChain.recipientNetwork": string;
|
|
@@ -322,6 +367,7 @@ declare const en: {
|
|
|
322
367
|
"transfer.withdraw.otherAccount": string;
|
|
323
368
|
"transfer.withdraw.accountId.tips": string;
|
|
324
369
|
"transfer.withdraw.accountId.invalid": string;
|
|
370
|
+
"transfer.withdraw.available.tooltip": string;
|
|
325
371
|
"transfer.internalTransfer.from": string;
|
|
326
372
|
"transfer.internalTransfer.to": string;
|
|
327
373
|
"transfer.internalTransfer.currentAssetValue": string;
|
|
@@ -359,6 +405,8 @@ declare const en: {
|
|
|
359
405
|
"transfer.swapDeposit.notEnoughLiquidity": string;
|
|
360
406
|
"transfer.convert.completed": string;
|
|
361
407
|
"transfer.convert.failed": string;
|
|
408
|
+
"transfer.depositCap": string;
|
|
409
|
+
"transfer.depositCap.tooltip": string;
|
|
362
410
|
"transfer.deposit.convertRate": string;
|
|
363
411
|
"transfer.convert.convertAssets": string;
|
|
364
412
|
"transfer.deposit.collateralContribution": string;
|
|
@@ -374,6 +422,10 @@ declare const en: {
|
|
|
374
422
|
"transfer.deposit.status.pending.multiple": string;
|
|
375
423
|
"transfer.deposit.status.completed.one": string;
|
|
376
424
|
"transfer.deposit.status.completed.multiple": string;
|
|
425
|
+
"transfer.deposit.yieldReminder.earnAPY": string;
|
|
426
|
+
"transfer.deposit.yieldReminder.earnRewards": string;
|
|
427
|
+
"transfer.deposit.yieldReminder.distribution": string;
|
|
428
|
+
"transfer.deposit.yieldReminder.disclaimer": string;
|
|
377
429
|
"connector.testnet": string;
|
|
378
430
|
"connector.mainnet": string;
|
|
379
431
|
"connector.connect": string;
|
|
@@ -413,6 +465,7 @@ declare const en: {
|
|
|
413
465
|
"connector.privy.email": string;
|
|
414
466
|
"connector.privy.google": string;
|
|
415
467
|
"connector.privy.twitter": string;
|
|
468
|
+
"connector.privy.telegram": string;
|
|
416
469
|
"connector.privy.myWallet": string;
|
|
417
470
|
"connector.privy.addEvmWallet": string;
|
|
418
471
|
"connector.privy.addSolanaWallet": string;
|
|
@@ -485,8 +538,9 @@ declare const en: {
|
|
|
485
538
|
"tradingRewards.eopchStatus.pause": string;
|
|
486
539
|
"tradingRewards.eopchStatus.ended": string;
|
|
487
540
|
"tradingRewards.eopchStatus.linkDescription": string;
|
|
488
|
-
"scaffold.
|
|
541
|
+
"scaffold.announcement.campaign": string;
|
|
489
542
|
"scaffold.footer.joinCommunity": string;
|
|
543
|
+
"scaffold.footer.operational": string;
|
|
490
544
|
"scaffold.footer.poweredBy": string;
|
|
491
545
|
"leverage.maxAccountLeverage": string;
|
|
492
546
|
"leverage.accountLeverage": string;
|
|
@@ -505,7 +559,6 @@ declare const en: {
|
|
|
505
559
|
"orderEntry.buyLong": string;
|
|
506
560
|
"orderEntry.sellShort": string;
|
|
507
561
|
"orderEntry.reduceOnly": string;
|
|
508
|
-
"orderEntry.soundAlerts": string;
|
|
509
562
|
"orderEntry.orderType.limit": string;
|
|
510
563
|
"orderEntry.orderType.market": string;
|
|
511
564
|
"orderEntry.orderType.limitOrder": string;
|
|
@@ -517,6 +570,8 @@ declare const en: {
|
|
|
517
570
|
"orderEntry.orderType.fok": string;
|
|
518
571
|
"orderEntry.orderType.scaledOrder": string;
|
|
519
572
|
"orderEntry.orderType.trailingStop": string;
|
|
573
|
+
"orderEntry.orderSize": string;
|
|
574
|
+
"orderEntry.initialMargin": string;
|
|
520
575
|
"orderEntry.startPrice": string;
|
|
521
576
|
"orderEntry.endPrice": string;
|
|
522
577
|
"orderEntry.skew": string;
|
|
@@ -571,6 +626,7 @@ declare const en: {
|
|
|
571
626
|
"orderEntry.slTriggerPrice.error.min": string;
|
|
572
627
|
"orderEntry.slTriggerPrice.error.max": string;
|
|
573
628
|
"orderEntry.total.error.min": string;
|
|
629
|
+
"orderEntry.initialMarginTotal.error.min": string;
|
|
574
630
|
"orderEntry.startPrice.error.required": string;
|
|
575
631
|
"orderEntry.startPrice.error.min": string;
|
|
576
632
|
"orderEntry.startPrice.error.max": string;
|
|
@@ -599,6 +655,7 @@ declare const en: {
|
|
|
599
655
|
"orderEntry.reduceOnly.reminder": string;
|
|
600
656
|
"orderEntry.reduceOnly.reminder.content": string;
|
|
601
657
|
"orderEntry.placeOrderNow": string;
|
|
658
|
+
"orderEntry.maxQty.reminder.content": string;
|
|
602
659
|
"share.pnl.sharePnl": string;
|
|
603
660
|
"share.pnl.share.long": string;
|
|
604
661
|
"share.pnl.share.short": string;
|
|
@@ -651,19 +708,7 @@ declare const en: {
|
|
|
651
708
|
"tpsl.positionType.partial": string;
|
|
652
709
|
"tpsl.positionType.full.tips": string;
|
|
653
710
|
"tpsl.positionType.partial.tips": string;
|
|
654
|
-
"tpsl.advanced.title": string;
|
|
655
|
-
"tpsl.advanced.quantity": string;
|
|
656
|
-
"tpsl.advanced.lastPrice": string;
|
|
657
|
-
"tpsl.advanced.orderPrice": string;
|
|
658
|
-
"tpsl.advanced.triggerPrice": string;
|
|
659
|
-
"tpsl.advanced.pnl": string;
|
|
660
|
-
"tpsl.advanced.offset": string;
|
|
661
|
-
"tpsl.advanced.offsetPercentage": string;
|
|
662
711
|
"tpsl.positionType.full.tips.market": string;
|
|
663
|
-
"tpsl.advanced.TP.label": string;
|
|
664
|
-
"tpsl.advanced.SL.label": string;
|
|
665
|
-
"tpsl.advanced.limit": string;
|
|
666
|
-
"tpsl.advanced.market": string;
|
|
667
712
|
"tpsl.advanced.ROI": string;
|
|
668
713
|
"tpsl.advanced.submit": string;
|
|
669
714
|
"tpsl.totalEstTpPnl": string;
|
|
@@ -681,10 +726,9 @@ declare const en: {
|
|
|
681
726
|
"tpsl.validate.slTriggerPrice.error.priceErrorMax": string;
|
|
682
727
|
"tpsl.validate.tpTriggerPrice.error.required": string;
|
|
683
728
|
"tpsl.validate.slTriggerPrice.error.required": string;
|
|
729
|
+
"tpsl.validate.slTriggerPrice.warning.closeToLiqPrice": string;
|
|
730
|
+
"tpsl.validate.slTriggerPrice.error.crossLiqPrice": string;
|
|
684
731
|
"tpsl.tpslDetail.qty": string;
|
|
685
|
-
"tpsl.tpslDetail.type": string;
|
|
686
|
-
"tpsl.tpslDetail.trigger": string;
|
|
687
|
-
"tpsl.tpslDetail.price": string;
|
|
688
732
|
"tpsl.tpslDetail.estPnl": string;
|
|
689
733
|
"tpsl.tpslDetail.estPnl.tooltip": string;
|
|
690
734
|
"tpsl.agreement": string;
|
|
@@ -719,15 +763,27 @@ declare const en: {
|
|
|
719
763
|
"orders.pending.cancelAll.description": string;
|
|
720
764
|
"orders.tpsl.cancelAll": string;
|
|
721
765
|
"orders.tpsl.cancelAll.description": string;
|
|
766
|
+
"orders.cancelAll.ofSymbol": string;
|
|
767
|
+
"orders.pending.cancelAll.forSymbol": string;
|
|
768
|
+
"orders.pending.cancelAll.forSymbol.description": string;
|
|
769
|
+
"orders.tpsl.cancelAll.forSymbol": string;
|
|
770
|
+
"orders.tpsl.cancelAll.forSymbol.description": string;
|
|
722
771
|
"orders.price.greaterThan": string;
|
|
723
772
|
"orders.price.lessThan": string;
|
|
724
773
|
"orders.quantity.lessThan": string;
|
|
725
774
|
"orders.quantity.lessThanPosition": string;
|
|
726
775
|
"orders.history.renew": string;
|
|
727
776
|
"orders.download.tooltip": string;
|
|
728
|
-
"positions.positionHistory": string;
|
|
729
|
-
"positions.liquidation": string;
|
|
730
777
|
"positions.closePosition": string;
|
|
778
|
+
"positions.fundingFee.title": string;
|
|
779
|
+
"positions.fundingFee.tooltip": string;
|
|
780
|
+
"positions.fundingRate.tooltip": string;
|
|
781
|
+
"positions.liquidation": string;
|
|
782
|
+
"positions.positionHistory": string;
|
|
783
|
+
"positions.closeAll": string;
|
|
784
|
+
"positions.closeAll.ofSymbol": string;
|
|
785
|
+
"positions.closeAll.description": string;
|
|
786
|
+
"positions.closeAll.success": string;
|
|
731
787
|
"positions.column.liqPrice": string;
|
|
732
788
|
"positions.column.liqPrice.tooltip": string;
|
|
733
789
|
"positions.column.unrealPnl.tooltip": string;
|
|
@@ -774,6 +830,14 @@ declare const en: {
|
|
|
774
830
|
"positions.Liquidation.expand.tooltip.mmr": string;
|
|
775
831
|
"positions.Liquidation.expand.tooltip.collateral": string;
|
|
776
832
|
"positions.Liquidation.expand.tooltip.notional": string;
|
|
833
|
+
"positions.reverse.title": string;
|
|
834
|
+
"positions.reverse.description": string;
|
|
835
|
+
"positions.reverse.marketCloseLong": string;
|
|
836
|
+
"positions.reverse.marketCloseShort": string;
|
|
837
|
+
"positions.reverse.marketOpenLong": string;
|
|
838
|
+
"positions.reverse.marketOpenShort": string;
|
|
839
|
+
"positions.reverse.reverseToLong": string;
|
|
840
|
+
"positions.reverse.reverseToShort": string;
|
|
777
841
|
"chart.now": string;
|
|
778
842
|
"trading.layout": string;
|
|
779
843
|
"trading.layout.advanced": string;
|
|
@@ -790,6 +854,8 @@ declare const en: {
|
|
|
790
854
|
"trading.portfolioSettings": string;
|
|
791
855
|
"trading.portfolioSettings.decimalPrecision": string;
|
|
792
856
|
"trading.portfolioSettings.unrealPnlPriceBasis": string;
|
|
857
|
+
"trading.portfolioSettings.reversePosition": string;
|
|
858
|
+
"trading.portfolioSettings.reversePosition.tooltip": string;
|
|
793
859
|
"trading.orderBook": string;
|
|
794
860
|
"trading.lastTrades": string;
|
|
795
861
|
"trading.orderBook.column.value": string;
|
|
@@ -826,11 +892,24 @@ declare const en: {
|
|
|
826
892
|
"trading.fundingRate.predFundingRate.interval": string;
|
|
827
893
|
"trading.fundingRate.predFundingRate.cap": string;
|
|
828
894
|
"trading.fundingRate.predFundingRate.floor": string;
|
|
829
|
-
"trading.fundingRate.
|
|
895
|
+
"trading.fundingRate.lastFundingRate": string;
|
|
896
|
+
"trading.fundingRate.estimatedFundingRate": string;
|
|
897
|
+
"trading.fundingRate.estimatedFundingFee": string;
|
|
898
|
+
"trading.fundingRate.annualized": string;
|
|
899
|
+
"trading.rwa.marketHours": string;
|
|
900
|
+
"trading.rwa.outsideMarketHours": string;
|
|
901
|
+
"trading.rwa.tooltip.description.open": string;
|
|
902
|
+
"trading.rwa.tooltip.description.close": string;
|
|
903
|
+
"trading.rwa.tooltip.closeIn": string;
|
|
904
|
+
"trading.rwa.tooltip.openIn": string;
|
|
905
|
+
"trading.rwa.tooltip.checkDetailRules": string;
|
|
906
|
+
"trading.rwa.countdown.title": string;
|
|
907
|
+
"trading.rwa.outsideMarketHours.notify": string;
|
|
908
|
+
"trading.rwa.mWeb.outsideMarketHours.desc": string;
|
|
909
|
+
"trading.rwa.mWeb.insideMarketHours.desc": string;
|
|
830
910
|
"portfolio.feeTier": string;
|
|
831
911
|
"portfolio.apiKeys": string;
|
|
832
912
|
"portfolio.setting": string;
|
|
833
|
-
"portfolio.symbolPerformance": string;
|
|
834
913
|
"portfolio.overview.availableWithdraw": string;
|
|
835
914
|
"portfolio.overview.handle.title": string;
|
|
836
915
|
"portfolio.overview.performance": string;
|
|
@@ -879,6 +958,7 @@ declare const en: {
|
|
|
879
958
|
"portfolio.feeTier.column.maker": string;
|
|
880
959
|
"portfolio.feeTier.column.taker": string;
|
|
881
960
|
"portfolio.feeTier.effectiveFee.tooltip": string;
|
|
961
|
+
"portfolio.feeTier.effectiveFee.tooltipLink": string;
|
|
882
962
|
"portfolio.apiKey.accountId.copied": string;
|
|
883
963
|
"portfolio.apiKey.uid": string;
|
|
884
964
|
"portfolio.apiKey.secretKey": string;
|
|
@@ -914,6 +994,9 @@ declare const en: {
|
|
|
914
994
|
"portfolio.setting.systemUpgrade": string;
|
|
915
995
|
"portfolio.setting.cancelOpenOrders": string;
|
|
916
996
|
"portfolio.setting.cancelOpenOrders.description": string;
|
|
997
|
+
"portfolio.setting.soundAlerts": string;
|
|
998
|
+
"portfolio.setting.soundAlerts.description": string;
|
|
999
|
+
"portfolio.symbolPerformance": string;
|
|
917
1000
|
"portfolio.symbolPerformance.selectSymbol": string;
|
|
918
1001
|
"portfolio.symbolPerformance.noData": string;
|
|
919
1002
|
"portfolio.symbolPerformance.totalPnL": string;
|
|
@@ -1051,7 +1134,6 @@ declare const en: {
|
|
|
1051
1134
|
"common.unrealizedPnl": string;
|
|
1052
1135
|
"common.realizedPnl": string;
|
|
1053
1136
|
"common.pnl": string;
|
|
1054
|
-
"common.points": string;
|
|
1055
1137
|
"common.totalValue": string;
|
|
1056
1138
|
"common.address": string;
|
|
1057
1139
|
"common.address.search.placeholder": string;
|
|
@@ -1059,6 +1141,7 @@ declare const en: {
|
|
|
1059
1141
|
"common.overview": string;
|
|
1060
1142
|
"common.funding": string;
|
|
1061
1143
|
"common.assets": string;
|
|
1144
|
+
"common.allAssets": string;
|
|
1062
1145
|
"common.countdown": string;
|
|
1063
1146
|
"common.current": string;
|
|
1064
1147
|
"common.account": string;
|
|
@@ -1067,6 +1150,8 @@ declare const en: {
|
|
|
1067
1150
|
"common.deposits": string;
|
|
1068
1151
|
"common.withdrawals": string;
|
|
1069
1152
|
"common.transfer": string;
|
|
1153
|
+
"common.inflow": string;
|
|
1154
|
+
"common.outflow": string;
|
|
1070
1155
|
"common.settle": string;
|
|
1071
1156
|
"common.markets": string;
|
|
1072
1157
|
"common.portfolio": string;
|
|
@@ -1078,6 +1163,10 @@ declare const en: {
|
|
|
1078
1163
|
"common.affiliate": string;
|
|
1079
1164
|
"common.tradingRewards": string;
|
|
1080
1165
|
"common.trading": string;
|
|
1166
|
+
"common.spot": string;
|
|
1167
|
+
"common.earn": string;
|
|
1168
|
+
"common.stake": string;
|
|
1169
|
+
"common.perps": string;
|
|
1081
1170
|
"common.allAccount": string;
|
|
1082
1171
|
"common.mainAccount": string;
|
|
1083
1172
|
"common.subAccount": string;
|
|
@@ -1093,6 +1182,19 @@ declare const en: {
|
|
|
1093
1182
|
"common.partialTPSL": string;
|
|
1094
1183
|
"common.vaults": string;
|
|
1095
1184
|
"common.optional": string;
|
|
1185
|
+
"common.learnMore": string;
|
|
1186
|
+
"common.switch": string;
|
|
1187
|
+
"common.notSupported": string;
|
|
1188
|
+
"common.details": string;
|
|
1189
|
+
"common.somethingWentWrong": string;
|
|
1190
|
+
"common.rwa": string;
|
|
1191
|
+
"common.new": string;
|
|
1192
|
+
"common.dayShort": string;
|
|
1193
|
+
"common.hourShort": string;
|
|
1194
|
+
"common.minuteShort": string;
|
|
1195
|
+
"common.secondShort": string;
|
|
1196
|
+
"common.offlineDescription": string;
|
|
1197
|
+
"common.refresh": string;
|
|
1096
1198
|
};
|
|
1097
1199
|
|
|
1098
1200
|
type LocaleCode = keyof typeof LocaleEnum | (string & {});
|
package/dist/utils.d.mts
CHANGED
package/dist/utils.d.ts
CHANGED