@dydxprotocol/v4-localization 1.1.161 → 1.1.163
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.
|
@@ -1326,6 +1326,7 @@
|
|
|
1326
1326
|
"NEXT_IN": "Next in {TIME}",
|
|
1327
1327
|
"NOTIONAL_VALUE": "Notional Value",
|
|
1328
1328
|
"OFFSETTING": "Offsetting",
|
|
1329
|
+
"OHLC_VIA_MID_PRICE": "OHLC (via mid-price)",
|
|
1329
1330
|
"OPEN_INTEREST": "Open Interest",
|
|
1330
1331
|
"OPEN_POSITIONS": "Open Positions",
|
|
1331
1332
|
"OPEN_STATUS": "Open",
|
|
@@ -2240,6 +2241,7 @@
|
|
|
2240
2241
|
"MARKET_ORDER_ERROR_INDEX_PRICE_SLIPPAGE": "Too much slippage",
|
|
2241
2242
|
"MARKET_ORDER_ERROR_ORDERBOOK_SLIPPAGE": "Too much slippage",
|
|
2242
2243
|
"MARKET_ORDER_NOT_ENOUGH_LIQUIDITY": "Not enough liquidity",
|
|
2244
|
+
"MARKET_ORDER_ONE_SIDED_LIQUIDITY": "One-sided liquidity",
|
|
2243
2245
|
"MARKET_ORDER_PRICE_IMPACT_AT_MAX_LEVERAGE": "Potentally invalid leverage",
|
|
2244
2246
|
"MARKET_ORDER_WARNING_INDEX_PRICE_SLIPPAGE": "Too much slippage",
|
|
2245
2247
|
"NEW_POSITION_SIZE_OVER_MAX": "Max position size",
|
|
@@ -353,6 +353,12 @@
|
|
|
353
353
|
"BODY": "To ensure the security of the protocol, dYdX Chain validators delay the settlement of dYdX Chain DYDX."
|
|
354
354
|
}
|
|
355
355
|
},
|
|
356
|
+
"TRADE_CHART": {
|
|
357
|
+
"OHLC": {
|
|
358
|
+
"TITLE": "OHLC",
|
|
359
|
+
"BODY": "Enable or disable OHLC data via mid-price. Disabling this will only display OHLC data from the orderbook."
|
|
360
|
+
}
|
|
361
|
+
},
|
|
356
362
|
"NEW_MARKET_WIDGET": {
|
|
357
363
|
"REFERENCE_PRICE": {
|
|
358
364
|
"TITLE": "Reference Price",
|
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 codegen_localization_app.swift
|
|
3
|
+
// Generated from ../config/localization/en/app.json using ./codegen_localization_app.swift
|
|
4
4
|
|
|
5
5
|
export const APP_STRING_KEYS = {
|
|
6
6
|
|
|
@@ -1479,6 +1479,7 @@ export const APP_STRING_KEYS = {
|
|
|
1479
1479
|
NEXT_IN: 'APP.TRADE.NEXT_IN',
|
|
1480
1480
|
NOTIONAL_VALUE: 'APP.TRADE.NOTIONAL_VALUE',
|
|
1481
1481
|
OFFSETTING: 'APP.TRADE.OFFSETTING',
|
|
1482
|
+
OHLC_VIA_MID_PRICE: 'APP.TRADE.OHLC_VIA_MID_PRICE',
|
|
1482
1483
|
OPEN_INTEREST: 'APP.TRADE.OPEN_INTEREST',
|
|
1483
1484
|
OPEN_POSITIONS: 'APP.TRADE.OPEN_POSITIONS',
|
|
1484
1485
|
OPEN_STATUS: 'APP.TRADE.OPEN_STATUS',
|
|
@@ -178,6 +178,11 @@ export const TOOLTIP_STRING_KEYS = {
|
|
|
178
178
|
UNREALIZED_PNL_BODY: 'TOOLTIPS.TRADE.UNREALIZED_PNL.BODY',
|
|
179
179
|
UNREALIZED_PNL_TITLE: 'TOOLTIPS.TRADE.UNREALIZED_PNL.TITLE',
|
|
180
180
|
|
|
181
|
+
// TRADE_CHART
|
|
182
|
+
|
|
183
|
+
OHLC_BODY: 'TOOLTIPS.TRADE_CHART.OHLC.BODY',
|
|
184
|
+
OHLC_TITLE: 'TOOLTIPS.TRADE_CHART.OHLC.TITLE',
|
|
185
|
+
|
|
181
186
|
// TRANSFER_AND_DEPOSIT
|
|
182
187
|
|
|
183
188
|
ALLOWANCE_AND_DEPOSIT_NETWORK_FEE_BODY: 'TOOLTIPS.TRANSFER_AND_DEPOSIT.ALLOWANCE_AND_DEPOSIT_NETWORK_FEE.BODY',
|