@dydxprotocol/v4-localization 1.1.393 → 1.1.395
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.
|
@@ -21,6 +21,7 @@
|
|
|
21
21
|
"LAST_24H": "Last 24H",
|
|
22
22
|
"LAST_WEEK": "Last week",
|
|
23
23
|
"MONTHLY": "Monthly",
|
|
24
|
+
"MINUTES": "Minutes",
|
|
24
25
|
"MINUTES_ABBREVIATED": "m",
|
|
25
26
|
"MINUTES_SHORT": "Mins",
|
|
26
27
|
"MONTHS_ABBREVIATED": "M",
|
|
@@ -42,6 +43,7 @@
|
|
|
42
43
|
"X_HOURS_LOWERCASED": "{X} hours",
|
|
43
44
|
"X_MINUTES_LOWERCASED": "{X} minutes",
|
|
44
45
|
"X_MINUTES": "{X} Minutes",
|
|
46
|
+
"SECONDS": "Seconds",
|
|
45
47
|
"X_SECONDS_LOWERCASED": "{X} seconds",
|
|
46
48
|
"PERIOD": "{START} → {END}"
|
|
47
49
|
},
|
|
@@ -1826,9 +1828,11 @@
|
|
|
1826
1828
|
"TRIGGERS": "Triggers",
|
|
1827
1829
|
"TRANSACTION_HASH": "Transaction hash {TX_HASH}",
|
|
1828
1830
|
"TWAP": "TWAP",
|
|
1829
|
-
"TWAP_ACTIVE_ORDERS": "TWAP Active Orders",
|
|
1831
|
+
"TWAP_ACTIVE_ORDERS": "TWAP Active Orders",
|
|
1830
1832
|
"TWAP_FILLS": "TWAP Fills",
|
|
1833
|
+
"TWAP_FREQUENCY": "Frequency",
|
|
1831
1834
|
"TWAP_ORDER_HISTORY": "TWAP Order History",
|
|
1835
|
+
"TWAP_RUNNING_TIME": "Running Time (5m - 24h)",
|
|
1832
1836
|
"UNDERCOLLATERALIZED": "Undercollateralized",
|
|
1833
1837
|
"UNOPENED_ISOLATED_POSITIONS": "Unopened Isolated Positions",
|
|
1834
1838
|
"UNREALIZED_PNL": "Unrealized P&L",
|
|
@@ -2375,7 +2379,7 @@
|
|
|
2375
2379
|
"COMPETITION_BODY_1_DEC_2025_LINK_TEXT": "Loss Rebate Pilot Program",
|
|
2376
2380
|
"COMPETITION_BODY_2_DEC_2025": "Eligible loss rebates for December are available to claim through January 31st. Check eligibility {HERE_LINK}.",
|
|
2377
2381
|
"LIQUIDATION_REBATES_HEADLINE": "Up to {REBATE_AMOUNT} in Liquidation Rebates",
|
|
2378
|
-
"LIQUIDATION_REBATES_BODY": "With the
|
|
2382
|
+
"LIQUIDATION_REBATES_BODY": "With the Liquidation Rebate Program, eligible traders liquidated on non-BTC perpetual pairs have the opportunity to earn DYDX rebates on a portion of their losses.",
|
|
2379
2383
|
"LIQUIDATION_REBATES_SUB_BODY": "Reminder to claim previous {LOSS_REBATES_LINK} and check eligibility {CHECK_ELIGIBILITY_LINK}.",
|
|
2380
2384
|
"LOSS_REBATES": "loss rebates",
|
|
2381
2385
|
"LIQUIDATION_LOSSES": "Liquidation Losses",
|
|
@@ -3003,6 +3007,10 @@
|
|
|
3003
3007
|
"USER_MAX_ORDERS_FOR_TOP_EQUITY_TIER": "This order would put you over the limit of {LIMIT} open orders.",
|
|
3004
3008
|
"WOULD_NOT_REDUCE": "Your position would not be reduced if order is filled.",
|
|
3005
3009
|
"WOULD_NOT_REDUCE_UNCHECK": "Your position would not be reduced with this order. Please uncheck Reduce-Only if you would like to place your order.",
|
|
3010
|
+
"DURATION_TOO_SHORT": "Duration is too short.",
|
|
3011
|
+
"DURATION_TOO_LONG": "Duration is too long.",
|
|
3012
|
+
"FREQUENCY_NOT_INTERVAL_OF_DURATION": "Frequency must evenly divide the total duration.",
|
|
3013
|
+
"FREQUENCY_REQUIRED": "Frequency is required.",
|
|
3006
3014
|
"INVALID_GOOD_TIL_MAX_90_DAYS": "Good Til exceeds the maximum 90 days.",
|
|
3007
3015
|
"POSITION_LEVERAGE_OVER_MAX": "Resulting position leverage would be over the maximum leverage for this market.",
|
|
3008
3016
|
"ISOLATED_MARGIN_LIMIT_ORDER_BELOW_MINIMUM": "Your order is below the minimum collateral requirement for isolated margin orders. Isolated margin orders require at least {MIN_VALUE} of collateral."
|
package/package.json
CHANGED
package/scripts/generated/app.ts
CHANGED
|
@@ -780,6 +780,7 @@ export const APP_STRING_KEYS = {
|
|
|
780
780
|
JUST_NOW: 'APP.GENERAL.TIME_STRINGS.JUST_NOW',
|
|
781
781
|
LAST_24H: 'APP.GENERAL.TIME_STRINGS.LAST_24H',
|
|
782
782
|
LAST_WEEK: 'APP.GENERAL.TIME_STRINGS.LAST_WEEK',
|
|
783
|
+
MINUTES: 'APP.GENERAL.TIME_STRINGS.MINUTES',
|
|
783
784
|
MINUTES_ABBREVIATED: 'APP.GENERAL.TIME_STRINGS.MINUTES_ABBREVIATED',
|
|
784
785
|
MINUTES_SHORT: 'APP.GENERAL.TIME_STRINGS.MINUTES_SHORT',
|
|
785
786
|
MONTHLY: 'APP.GENERAL.TIME_STRINGS.MONTHLY',
|
|
@@ -790,6 +791,7 @@ export const APP_STRING_KEYS = {
|
|
|
790
791
|
PAST_THREE_MONTHS: 'APP.GENERAL.TIME_STRINGS.PAST_THREE_MONTHS',
|
|
791
792
|
PAST_WEEK: 'APP.GENERAL.TIME_STRINGS.PAST_WEEK',
|
|
792
793
|
PERIOD: 'APP.GENERAL.TIME_STRINGS.PERIOD',
|
|
794
|
+
SECONDS: 'APP.GENERAL.TIME_STRINGS.SECONDS',
|
|
793
795
|
THIS_MONTH_LOWERCASED: 'APP.GENERAL.TIME_STRINGS.THIS_MONTH_LOWERCASED',
|
|
794
796
|
THIS_QUARTER_LOWERCASED: 'APP.GENERAL.TIME_STRINGS.THIS_QUARTER_LOWERCASED',
|
|
795
797
|
THIS_WEEK: 'APP.GENERAL.TIME_STRINGS.THIS_WEEK',
|
|
@@ -2198,7 +2200,9 @@ export const APP_STRING_KEYS = {
|
|
|
2198
2200
|
TWAP: 'APP.TRADE.TWAP',
|
|
2199
2201
|
TWAP_ACTIVE_ORDERS: 'APP.TRADE.TWAP_ACTIVE_ORDERS',
|
|
2200
2202
|
TWAP_FILLS: 'APP.TRADE.TWAP_FILLS',
|
|
2203
|
+
TWAP_FREQUENCY: 'APP.TRADE.TWAP_FREQUENCY',
|
|
2201
2204
|
TWAP_ORDER_HISTORY: 'APP.TRADE.TWAP_ORDER_HISTORY',
|
|
2205
|
+
TWAP_RUNNING_TIME: 'APP.TRADE.TWAP_RUNNING_TIME',
|
|
2202
2206
|
UNDERCOLLATERALIZED: 'APP.TRADE.UNDERCOLLATERALIZED',
|
|
2203
2207
|
UNOPENED_ISOLATED_POSITIONS: 'APP.TRADE.UNOPENED_ISOLATED_POSITIONS',
|
|
2204
2208
|
UNREALIZED_PNL: 'APP.TRADE.UNREALIZED_PNL',
|
|
@@ -2675,6 +2679,10 @@ export const ERRORS_STRING_KEYS = {
|
|
|
2675
2679
|
BRACKET_ORDER_TAKE_PROFIT_BELOW_EXPECTED_PRICE: 'ERRORS.TRADE_BOX.BRACKET_ORDER_TAKE_PROFIT_BELOW_EXPECTED_PRICE',
|
|
2676
2680
|
BRACKET_ORDER_TAKE_PROFIT_BELOW_LIQUIDATION_PRICE: 'ERRORS.TRADE_BOX.BRACKET_ORDER_TAKE_PROFIT_BELOW_LIQUIDATION_PRICE',
|
|
2677
2681
|
BUY_TRIGGER_TOO_CLOSE_TO_LIQUIDATION_PRICE: 'ERRORS.TRADE_BOX.BUY_TRIGGER_TOO_CLOSE_TO_LIQUIDATION_PRICE',
|
|
2682
|
+
DURATION_TOO_LONG: 'ERRORS.TRADE_BOX.DURATION_TOO_LONG',
|
|
2683
|
+
DURATION_TOO_SHORT: 'ERRORS.TRADE_BOX.DURATION_TOO_SHORT',
|
|
2684
|
+
FREQUENCY_NOT_INTERVAL_OF_DURATION: 'ERRORS.TRADE_BOX.FREQUENCY_NOT_INTERVAL_OF_DURATION',
|
|
2685
|
+
FREQUENCY_REQUIRED: 'ERRORS.TRADE_BOX.FREQUENCY_REQUIRED',
|
|
2678
2686
|
INVALID_GOOD_TIL_MAX_90_DAYS: 'ERRORS.TRADE_BOX.INVALID_GOOD_TIL_MAX_90_DAYS',
|
|
2679
2687
|
INVALID_LARGE_POSITION_LEVERAGE: 'ERRORS.TRADE_BOX.INVALID_LARGE_POSITION_LEVERAGE',
|
|
2680
2688
|
INVALID_NEW_ACCOUNT_MARGIN_USAGE: 'ERRORS.TRADE_BOX.INVALID_NEW_ACCOUNT_MARGIN_USAGE',
|