@dydxprotocol/v4-localization 1.1.195 → 1.1.196
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.
|
@@ -1359,6 +1359,7 @@
|
|
|
1359
1359
|
"INITIAL_STOP": "Initial Stop",
|
|
1360
1360
|
"LIMIT_ORDER_DESCRIPTION": "Buy or sell {SYMBOL} at a specific price (or better) and fine tune your order with advanced trade options.",
|
|
1361
1361
|
"LIMIT_ORDER_SHORT": "Limit",
|
|
1362
|
+
"LIMIT_CLOSE": "Limit Close",
|
|
1362
1363
|
"LIMIT_ORDER": "Limit Order",
|
|
1363
1364
|
"LIMIT_PRICE": "Limit Price",
|
|
1364
1365
|
"LIQUIDATED": "Liquidated",
|
|
@@ -2383,7 +2384,8 @@
|
|
|
2383
2384
|
"ISOLATED_MARGIN_LIMIT_ORDER_BELOW_MINIMUM": "Below minimum size"
|
|
2384
2385
|
},
|
|
2385
2386
|
"TRADING_VIEW": {
|
|
2386
|
-
"ORDER_MODIFICATION_ERROR_LIMIT_PRICE_CROSS": "Dragging limit orders across current price is not allowed.
|
|
2387
|
+
"ORDER_MODIFICATION_ERROR_LIMIT_PRICE_CROSS": "Dragging limit orders across current price is not allowed.",
|
|
2388
|
+
"ORDER_MODIFICATION_ERROR_USE_TRADE_FORM": "To execute an order immediately, use the trade form.",
|
|
2387
2389
|
"ORDER_MODIFICATION_ERROR_SL_PRICE_HIGHER": "Stop Loss price must be higher than current price.",
|
|
2388
2390
|
"ORDER_MODIFICATION_ERROR_SL_PRICE_LOWER": "Stop Loss price must be lower than current price.",
|
|
2389
2391
|
"ORDER_MODIFICATION_ERROR_TP_PRICE_HIGHER": "Take Profit price must be higher than current price.",
|
|
@@ -103,6 +103,10 @@
|
|
|
103
103
|
"TITLE": "Leverage",
|
|
104
104
|
"BODY": "Leverage changes the multiplier on your gains or losses. Increasing your leverage increases how much you would gain / lose on a trade with the same price movement."
|
|
105
105
|
},
|
|
106
|
+
"LIMIT_CLOSE": {
|
|
107
|
+
"TITLE": "Limit Close",
|
|
108
|
+
"BODY": "A limit close may not happen instantly, and will only be filled once the entered price is hit. Monitor the Orders tab to check its status."
|
|
109
|
+
},
|
|
106
110
|
"LIMIT_PRICE": {
|
|
107
111
|
"TITLE": "Limit Price",
|
|
108
112
|
"BODY": "This order can only be filled at the specified limit price or better. If your order crosses at the time of placement, your order will fill any crossing orders at the most favorable price."
|
package/package.json
CHANGED
package/scripts/generated/app.ts
CHANGED
|
@@ -1523,6 +1523,7 @@ export const APP_STRING_KEYS = {
|
|
|
1523
1523
|
INDEX_PRICE: 'APP.TRADE.INDEX_PRICE',
|
|
1524
1524
|
INDEX_PRICE_ABBREVIATED: 'APP.TRADE.INDEX_PRICE_ABBREVIATED',
|
|
1525
1525
|
INITIAL_STOP: 'APP.TRADE.INITIAL_STOP',
|
|
1526
|
+
LIMIT_CLOSE: 'APP.TRADE.LIMIT_CLOSE',
|
|
1526
1527
|
LIMIT_ORDER: 'APP.TRADE.LIMIT_ORDER',
|
|
1527
1528
|
LIMIT_ORDER_DESCRIPTION: 'APP.TRADE.LIMIT_ORDER_DESCRIPTION',
|
|
1528
1529
|
LIMIT_ORDER_SHORT: 'APP.TRADE.LIMIT_ORDER_SHORT',
|
|
@@ -2018,6 +2019,7 @@ export const ERRORS_STRING_KEYS = {
|
|
|
2018
2019
|
ORDER_MODIFICATION_ERROR_SL_PRICE_LOWER: 'ERRORS.TRADING_VIEW.ORDER_MODIFICATION_ERROR_SL_PRICE_LOWER',
|
|
2019
2020
|
ORDER_MODIFICATION_ERROR_TP_PRICE_HIGHER: 'ERRORS.TRADING_VIEW.ORDER_MODIFICATION_ERROR_TP_PRICE_HIGHER',
|
|
2020
2021
|
ORDER_MODIFICATION_ERROR_TP_PRICE_LOWER: 'ERRORS.TRADING_VIEW.ORDER_MODIFICATION_ERROR_TP_PRICE_LOWER',
|
|
2022
|
+
ORDER_MODIFICATION_ERROR_USE_TRADE_FORM: 'ERRORS.TRADING_VIEW.ORDER_MODIFICATION_ERROR_USE_TRADE_FORM',
|
|
2021
2023
|
|
|
2022
2024
|
// TRANSFER_MODAL
|
|
2023
2025
|
|
|
@@ -100,6 +100,8 @@ export const TOOLTIP_STRING_KEYS = {
|
|
|
100
100
|
INITIAL_STOP_TITLE: 'TOOLTIPS.TRADE.INITIAL_STOP.TITLE',
|
|
101
101
|
LEVERAGE_BODY: 'TOOLTIPS.TRADE.LEVERAGE.BODY',
|
|
102
102
|
LEVERAGE_TITLE: 'TOOLTIPS.TRADE.LEVERAGE.TITLE',
|
|
103
|
+
LIMIT_CLOSE_BODY: 'TOOLTIPS.TRADE.LIMIT_CLOSE.BODY',
|
|
104
|
+
LIMIT_CLOSE_TITLE: 'TOOLTIPS.TRADE.LIMIT_CLOSE.TITLE',
|
|
103
105
|
LIMIT_PRICE_BODY: 'TOOLTIPS.TRADE.LIMIT_PRICE.BODY',
|
|
104
106
|
LIMIT_PRICE_TITLE: 'TOOLTIPS.TRADE.LIMIT_PRICE.TITLE',
|
|
105
107
|
LIMIT_PRICE_LEARN_MORE_BODY: 'TOOLTIPS.TRADE.LIMIT_PRICE_LEARN_MORE.BODY',
|