@dydxprotocol/v4-localization 1.1.184 → 1.1.185
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.
|
@@ -2292,7 +2292,7 @@
|
|
|
2292
2292
|
"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.",
|
|
2293
2293
|
"INVALID_GOOD_TIL_MAX_90_DAYS": "Good Til exceeds the maximum 90 days.",
|
|
2294
2294
|
"POSITION_LEVERAGE_OVER_MAX": "Resulting position leverage would be over the maximum leverage for this market.",
|
|
2295
|
-
"ISOLATED_MARGIN_LIMIT_ORDER_BELOW_MINIMUM": "
|
|
2295
|
+
"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."
|
|
2296
2296
|
},
|
|
2297
2297
|
"TRADE_BOX_TITLE": {
|
|
2298
2298
|
"AMOUNT_INPUT_STEP_SIZE": "Step size",
|
|
@@ -173,6 +173,14 @@
|
|
|
173
173
|
"TITLE": "$20K giveaway",
|
|
174
174
|
"BODY": "To celebrate surpassing 200B in cumulative trading volume, dYdX is running a Twitter giveaway, where you have the opportunity to claim $200. 100 winners will be selected based on a random selection mechanism after August 16, 2024, 23:59 UTC {HERE_LINK}."
|
|
175
175
|
},
|
|
176
|
+
"MARKET_WIND_DOWN": {
|
|
177
|
+
"TITLE": "{MARKET} market wound down",
|
|
178
|
+
"BODY": "On {DATE}, the {MARKET} market went through final settlement. Existing positions have been closed and open orders have now been canceled. You can find more information regarding the final settlement {HERE_LINK}."
|
|
179
|
+
},
|
|
180
|
+
"MARKET_WIND_DOWN_PROPOSAL": {
|
|
181
|
+
"TITLE": "Live proposal to wind down {MARKET} market",
|
|
182
|
+
"BODY": "There is currently a live proposal to wind down the {MARKET} market. If passed, the {MARKET} market will enter final settlement on {DATE}. Existing positions will be closed and open orders will be canceled. You can find more information regarding the proposal {HERE_LINK}."
|
|
183
|
+
},
|
|
176
184
|
"TWO_MARKET_WIND_DOWN": {
|
|
177
185
|
"TITLE": "{MARKET_1} and {MARKET_2} markets wound down",
|
|
178
186
|
"BODY": "On {DATE}, the {MARKET_1} and {MARKET_2} markets went through final settlement. Existing positions have been closed and open orders have now been canceled. You can find more information regarding the final settlement {HERE_LINK}."
|
package/package.json
CHANGED
|
@@ -29,6 +29,10 @@ export const NOTIFICATIONS_STRING_KEYS = {
|
|
|
29
29
|
LIQUIDATION_TITLE: 'NOTIFICATIONS.LIQUIDATION.TITLE',
|
|
30
30
|
MARKET_PARAM_UPDATE_BODY: 'NOTIFICATIONS.MARKET_PARAM_UPDATE.BODY',
|
|
31
31
|
MARKET_PARAM_UPDATE_TITLE: 'NOTIFICATIONS.MARKET_PARAM_UPDATE.TITLE',
|
|
32
|
+
MARKET_WIND_DOWN_BODY: 'NOTIFICATIONS.MARKET_WIND_DOWN.BODY',
|
|
33
|
+
MARKET_WIND_DOWN_TITLE: 'NOTIFICATIONS.MARKET_WIND_DOWN.TITLE',
|
|
34
|
+
MARKET_WIND_DOWN_PROPOSAL_BODY: 'NOTIFICATIONS.MARKET_WIND_DOWN_PROPOSAL.BODY',
|
|
35
|
+
MARKET_WIND_DOWN_PROPOSAL_TITLE: 'NOTIFICATIONS.MARKET_WIND_DOWN_PROPOSAL.TITLE',
|
|
32
36
|
OFFSETTING_BODY: 'NOTIFICATIONS.OFFSETTING.BODY',
|
|
33
37
|
OFFSETTING_TITLE: 'NOTIFICATIONS.OFFSETTING.TITLE',
|
|
34
38
|
ORDER_CANCEL_BODY: 'NOTIFICATIONS.ORDER_CANCEL.BODY',
|