@dydxprotocol/v4-localization 1.1.96 → 1.1.97
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.
|
@@ -342,6 +342,7 @@
|
|
|
342
342
|
"VIEW_MORE": "View more",
|
|
343
343
|
"VIEW_OPTIONS": "View options",
|
|
344
344
|
"VIEW_ORDER": "View order",
|
|
345
|
+
"VIEW_ORDERS_COUNT": "View {NUM_ORDERS} orders",
|
|
345
346
|
"VIEW": "View",
|
|
346
347
|
"VIEW_ALL": "View all →",
|
|
347
348
|
"VIEWS": "Views",
|
|
@@ -2256,7 +2257,8 @@
|
|
|
2256
2257
|
"MARKET_ORDER_WARNING_ORDERBOOK_SLIPPAGE": "This market order would result in {SLIPPAGE} of orderbook price impact given current liquidity.",
|
|
2257
2258
|
"MARKET_STATUS_CLOSE_ONLY": "{MARKET} is currently in close only mode. No new positions can be created.",
|
|
2258
2259
|
"STOP_MARKET_ORDER_MAY_NOT_EXECUTE": "Stop Market orders on dYdX are not guaranteed to fill depending on liquidity at time of triggering. For more control, try a Stop Limit order.",
|
|
2259
|
-
"TAKE_PROFIT_MARKET_ORDER_MAY_NOT_EXECUTE": "Take Profit Market orders on dYdX are not guaranteed to fill depending on liquidity at time of triggering. For more control, try a Take Profit Limit order."
|
|
2260
|
+
"TAKE_PROFIT_MARKET_ORDER_MAY_NOT_EXECUTE": "Take Profit Market orders on dYdX are not guaranteed to fill depending on liquidity at time of triggering. For more control, try a Take Profit Limit order.",
|
|
2261
|
+
"UNABLE_TO_CHANGE_MARGIN_MODE": "Unable to change margin mode for {MARKET} with an open position."
|
|
2260
2262
|
},
|
|
2261
2263
|
"TRADE_BOX_TITLE": {
|
|
2262
2264
|
"LIMIT_PRICE_TRIGGER_PRICE_SLIPPAGE_HIGHER": "Limit price",
|
|
@@ -231,6 +231,10 @@
|
|
|
231
231
|
"TITLE": "Take Profit",
|
|
232
232
|
"BODY": "Allows traders to set targets and protects profits on positions by specifying a price at which to close an open position for profit."
|
|
233
233
|
},
|
|
234
|
+
"TARGET_LEVERAGE": {
|
|
235
|
+
"TITLE": "Target Leverage",
|
|
236
|
+
"BODY": "Target Leverage set to {TARGET_LEVERAGE}×, which determines the amount of margin used for your next order."
|
|
237
|
+
},
|
|
234
238
|
"TICK_SIZE": {
|
|
235
239
|
"TITLE": "Tick Size",
|
|
236
240
|
"BODY": "Tick size is the minimum price movement on this market."
|
package/package.json
CHANGED
package/scripts/generated/app.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// !! GENERATED FILE - DO NOT EDIT
|
|
2
2
|
|
|
3
|
-
// Generated from ../config/localization/en/app.json using
|
|
3
|
+
// Generated from ../config/localization/en/app.json using codegen_localization_app.swift
|
|
4
4
|
|
|
5
5
|
export const APP_STRING_KEYS = {
|
|
6
6
|
|
|
@@ -595,6 +595,7 @@ export const APP_STRING_KEYS = {
|
|
|
595
595
|
VIEW_MORE: 'APP.GENERAL.VIEW_MORE',
|
|
596
596
|
VIEW_OPTIONS: 'APP.GENERAL.VIEW_OPTIONS',
|
|
597
597
|
VIEW_ORDER: 'APP.GENERAL.VIEW_ORDER',
|
|
598
|
+
VIEW_ORDERS_COUNT: 'APP.GENERAL.VIEW_ORDERS_COUNT',
|
|
598
599
|
VOLUME_30D: 'APP.GENERAL.VOLUME_30D',
|
|
599
600
|
VOTING_LIVE: 'APP.GENERAL.VOTING_LIVE',
|
|
600
601
|
WALLET: 'APP.GENERAL.WALLET',
|
|
@@ -1906,5 +1907,6 @@ export const WARNINGS_STRING_KEYS = {
|
|
|
1906
1907
|
MARKET_STATUS_CLOSE_ONLY: 'WARNINGS.TRADE_BOX.MARKET_STATUS_CLOSE_ONLY',
|
|
1907
1908
|
STOP_MARKET_ORDER_MAY_NOT_EXECUTE: 'WARNINGS.TRADE_BOX.STOP_MARKET_ORDER_MAY_NOT_EXECUTE',
|
|
1908
1909
|
TAKE_PROFIT_MARKET_ORDER_MAY_NOT_EXECUTE: 'WARNINGS.TRADE_BOX.TAKE_PROFIT_MARKET_ORDER_MAY_NOT_EXECUTE',
|
|
1910
|
+
UNABLE_TO_CHANGE_MARGIN_MODE: 'WARNINGS.TRADE_BOX.UNABLE_TO_CHANGE_MARGIN_MODE',
|
|
1909
1911
|
};
|
|
1910
1912
|
|
|
@@ -160,6 +160,8 @@ export const TOOLTIP_STRING_KEYS = {
|
|
|
160
160
|
TAKER_FEE_TITLE: 'TOOLTIPS.TRADE.TAKER_FEE.TITLE',
|
|
161
161
|
TAKE_PROFIT_BODY: 'TOOLTIPS.TRADE.TAKE_PROFIT.BODY',
|
|
162
162
|
TAKE_PROFIT_TITLE: 'TOOLTIPS.TRADE.TAKE_PROFIT.TITLE',
|
|
163
|
+
TARGET_LEVERAGE_BODY: 'TOOLTIPS.TRADE.TARGET_LEVERAGE.BODY',
|
|
164
|
+
TARGET_LEVERAGE_TITLE: 'TOOLTIPS.TRADE.TARGET_LEVERAGE.TITLE',
|
|
163
165
|
TICK_SIZE_BODY: 'TOOLTIPS.TRADE.TICK_SIZE.BODY',
|
|
164
166
|
TICK_SIZE_TITLE: 'TOOLTIPS.TRADE.TICK_SIZE.TITLE',
|
|
165
167
|
TIME_IN_FORCE_BODY: 'TOOLTIPS.TRADE.TIME_IN_FORCE.BODY',
|