@orderly.network/i18n 2.10.2 → 2.11.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/dist/{constant-UZhfXyyb.d.mts → constant-BeXwHrGj.d.mts} +27 -0
- package/dist/{constant-UZhfXyyb.d.ts → constant-BeXwHrGj.d.ts} +27 -0
- package/dist/constant.d.mts +1 -1
- package/dist/constant.d.ts +1 -1
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +33 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +33 -4
- package/dist/index.mjs.map +1 -1
- package/dist/locale.csv +30 -3
- package/dist/locales/de.json +30 -3
- package/dist/locales/en.json +30 -3
- package/dist/locales/es.json +30 -3
- package/dist/locales/fr.json +30 -3
- package/dist/locales/id.json +30 -3
- package/dist/locales/it.json +30 -3
- package/dist/locales/ja.json +30 -3
- package/dist/locales/ko.json +30 -3
- package/dist/locales/nl.json +30 -3
- package/dist/locales/pl.json +30 -3
- package/dist/locales/pt.json +30 -3
- package/dist/locales/ru.json +30 -3
- package/dist/locales/tc.json +30 -3
- package/dist/locales/tr.json +30 -3
- package/dist/locales/uk.json +30 -3
- package/dist/locales/vi.json +30 -3
- package/dist/locales/zh.json +30 -3
- package/dist/utils.d.mts +1 -1
- package/dist/utils.d.ts +1 -1
- package/dist/utils.js +33 -4
- package/dist/utils.js.map +1 -1
- package/dist/utils.mjs +33 -4
- package/dist/utils.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.mjs
CHANGED
|
@@ -232,6 +232,7 @@ var chart = {
|
|
|
232
232
|
// src/locale/module/common.ts
|
|
233
233
|
var common = {
|
|
234
234
|
"common.cancel": "Cancel",
|
|
235
|
+
"common.close": "Close",
|
|
235
236
|
"common.confirm": "Confirm",
|
|
236
237
|
"common.ok": "OK",
|
|
237
238
|
"common.yes": "Yes",
|
|
@@ -614,6 +615,21 @@ var orderEntry = {
|
|
|
614
615
|
"orderEntry.slTriggerPrice.error.max": "SL Price must be less than {{value}}",
|
|
615
616
|
"orderEntry.total.error.min": "The order value should be greater or equal to {{value}} USDC",
|
|
616
617
|
"orderEntry.initialMarginTotal.error.min": "The initial margin should be greater or equal to {{value}} USDC",
|
|
618
|
+
// Margin mode (Cross / Isolated)
|
|
619
|
+
"marginMode.switchMarginMode": "Switch Margin Mode",
|
|
620
|
+
"marginMode.cross": "Cross",
|
|
621
|
+
"marginMode.isolated": "Isolated",
|
|
622
|
+
"marginMode.crossMargin": "Cross Margin",
|
|
623
|
+
"marginMode.isolatedMargin": "Isolated Margin",
|
|
624
|
+
"marginMode.crossMarginDescription": "Margin and PnL are shared across positions. You may lose all positions if liquidation occurs.",
|
|
625
|
+
"marginMode.isolatedMarginDescription": "Margin and PnL are independent for each position. You'll only lose the current position if liquidation occurs.",
|
|
626
|
+
"marginMode.current": "Current",
|
|
627
|
+
"marginMode.marginModeSettings": "Margin mode settings",
|
|
628
|
+
"marginMode.updatedSuccessfully": "Updated successfully",
|
|
629
|
+
"marginMode.perpetualFutures": "Perpetual futures",
|
|
630
|
+
"marginMode.searchPlaceholder": "Search",
|
|
631
|
+
"marginMode.selectAll": "Select all",
|
|
632
|
+
"marginMode.setAs": "Set as",
|
|
617
633
|
"orderEntry.startPrice.error.required": "Start price is required",
|
|
618
634
|
"orderEntry.startPrice.error.min": "Start price must be greater than {{value}}",
|
|
619
635
|
"orderEntry.startPrice.error.max": "Start price must be less than {{value}}",
|
|
@@ -808,9 +824,9 @@ var positions = {
|
|
|
808
824
|
"positions.column.liqPrice": "Liq. price",
|
|
809
825
|
"positions.column.unrealPnl.tooltip": "Current unrealized profit or loss on your open positions across all widgets calculated using Mark Price.",
|
|
810
826
|
"positions.column.unrealPnl.priceBasis": "Unrealized PnL Price Basis",
|
|
811
|
-
"positions.column.margin": "
|
|
812
|
-
"positions.column.margin.tooltip": "
|
|
813
|
-
"positions.column.margin.formula": "Margin = Position size *
|
|
827
|
+
"positions.column.margin": "Margin",
|
|
828
|
+
"positions.column.margin.tooltip": "Isolated margin locked in the position",
|
|
829
|
+
"positions.column.margin.formula": "Margin = Position size * Open price * IMR",
|
|
814
830
|
"positions.column.close": "Close",
|
|
815
831
|
"positions.limitClose": "Limit close",
|
|
816
832
|
"positions.limitClose.description": "You agree closing {{quantity}} {{base}} position at limit price.",
|
|
@@ -858,7 +874,19 @@ var positions = {
|
|
|
858
874
|
"positions.reverse.marketOpenLong": "Market Open Long",
|
|
859
875
|
"positions.reverse.marketOpenShort": "Market Open Short",
|
|
860
876
|
"positions.reverse.reverseToLong": "Reverse to Long",
|
|
861
|
-
"positions.reverse.reverseToShort": "Reverse to Short"
|
|
877
|
+
"positions.reverse.reverseToShort": "Reverse to Short",
|
|
878
|
+
// Adjust Margin
|
|
879
|
+
"positions.adjustMargin.title": "Adjust Margin",
|
|
880
|
+
"positions.adjustMargin.add": "Add Margin",
|
|
881
|
+
"positions.adjustMargin.reduce": "Reduce Margin",
|
|
882
|
+
"positions.adjustMargin.quantity": "Quantity",
|
|
883
|
+
"positions.adjustMargin.max": "Max",
|
|
884
|
+
"positions.adjustMargin.currentMargin": "Current margin:",
|
|
885
|
+
"positions.adjustMargin.liqPriceAfter": "Liquidation price after adjustment:",
|
|
886
|
+
"positions.adjustMargin.leverageAfter": "Effective leverage after adjustment:",
|
|
887
|
+
"positions.adjustMargin.success": "Margin adjusted successfully",
|
|
888
|
+
"positions.adjustMargin.failed": "Failed to adjust margin",
|
|
889
|
+
"positions.adjustMargin.marginCannotMoreThanMax": "Margin cannot be more than max"
|
|
862
890
|
};
|
|
863
891
|
|
|
864
892
|
// src/locale/module/scaffold.ts
|
|
@@ -1278,6 +1306,7 @@ var transfer = {
|
|
|
1278
1306
|
"transfer.LTV.description": `LTV (Loan-to-Value) is the ratio between your negative USDC and the current value of your collateral. If your LTV exceeds {{threshold}}, your collateral will be automatically converted to USDC.`,
|
|
1279
1307
|
"transfer.LTV.tooltip": `If your LTV exceeds {{threshold}}% or your USDC balance plus Unsettled PnL falls below {{usdcThreshold}}, your collateral will be automatically converted with a haircut. To avoid this, you can manually convert assets to USDC.`,
|
|
1280
1308
|
"transfer.LTV.currentLTV": "Current LTV",
|
|
1309
|
+
"transfer.LTV.isolatedModeUsdcOnly": "Only USDC can be used as margin in Isolated Mode.",
|
|
1281
1310
|
"transfer.convert": "Convert",
|
|
1282
1311
|
// "transfer.convert.note": "Please note that convert fees will be charged.",
|
|
1283
1312
|
"transfer.deposit.globalMaxQty.error": "Your deposit couldn't be processed because the global deposit cap for {{token}} on {{chain}} has been reached. This is typically resolved after rebalancing, which takes around 1 hour. Please try again later, or use a smaller amount or a different chain. <0>Learn more</0>",
|