@dydxprotocol/v4-localization 1.1.394 → 1.1.396
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
|
},
|
|
@@ -1767,6 +1769,7 @@
|
|
|
1767
1769
|
"SET_TAKE_PROFIT_STOP_LOSS_TRIGGERS": "Set Take Profit / Stop Loss triggers",
|
|
1768
1770
|
"SKEW": "Skew",
|
|
1769
1771
|
"SKEW_MUST_BE_WITHIN_RANGE": "Skew must be within {MIN} and {MAX}",
|
|
1772
|
+
"SKEW_TOOLTIP": "Skew: amount of distribution to first or last orders ({MIN} - {MAX})",
|
|
1770
1773
|
"SLIDER": "Slider",
|
|
1771
1774
|
"SOLD": "Sold",
|
|
1772
1775
|
"SPOT": "Spot",
|
|
@@ -1805,6 +1808,7 @@
|
|
|
1805
1808
|
"TOTAL": "Total",
|
|
1806
1809
|
"TOTAL_ORDERS": "Total orders",
|
|
1807
1810
|
"TOTAL_ORDERS_MUST_BE_WITHIN_RANGE": "Total orders must be within {MIN} and {MAX}",
|
|
1811
|
+
"TOTAL_ORDERS_TOOLTIP": "Total orders: amount of suborders your total size gets split into ({MIN} - {MAX})",
|
|
1808
1812
|
"TRADE_CONFIRMED": "Trade Confirmed",
|
|
1809
1813
|
"TRADES_24H": "24h Trades",
|
|
1810
1814
|
"TRADES_EMPTY_STATE": "You have no trade history.",
|
|
@@ -1826,9 +1830,11 @@
|
|
|
1826
1830
|
"TRIGGERS": "Triggers",
|
|
1827
1831
|
"TRANSACTION_HASH": "Transaction hash {TX_HASH}",
|
|
1828
1832
|
"TWAP": "TWAP",
|
|
1829
|
-
"TWAP_ACTIVE_ORDERS": "TWAP Active Orders",
|
|
1833
|
+
"TWAP_ACTIVE_ORDERS": "TWAP Active Orders",
|
|
1830
1834
|
"TWAP_FILLS": "TWAP Fills",
|
|
1835
|
+
"TWAP_FREQUENCY": "Frequency",
|
|
1831
1836
|
"TWAP_ORDER_HISTORY": "TWAP Order History",
|
|
1837
|
+
"TWAP_RUNNING_TIME": "Running Time (5m - 24h)",
|
|
1832
1838
|
"UNDERCOLLATERALIZED": "Undercollateralized",
|
|
1833
1839
|
"UNOPENED_ISOLATED_POSITIONS": "Unopened Isolated Positions",
|
|
1834
1840
|
"UNREALIZED_PNL": "Unrealized P&L",
|
|
@@ -3003,6 +3009,10 @@
|
|
|
3003
3009
|
"USER_MAX_ORDERS_FOR_TOP_EQUITY_TIER": "This order would put you over the limit of {LIMIT} open orders.",
|
|
3004
3010
|
"WOULD_NOT_REDUCE": "Your position would not be reduced if order is filled.",
|
|
3005
3011
|
"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.",
|
|
3012
|
+
"DURATION_TOO_SHORT": "Duration is too short.",
|
|
3013
|
+
"DURATION_TOO_LONG": "Duration is too long.",
|
|
3014
|
+
"FREQUENCY_NOT_INTERVAL_OF_DURATION": "Frequency must evenly divide the total duration.",
|
|
3015
|
+
"FREQUENCY_REQUIRED": "Frequency is required.",
|
|
3006
3016
|
"INVALID_GOOD_TIL_MAX_90_DAYS": "Good Til exceeds the maximum 90 days.",
|
|
3007
3017
|
"POSITION_LEVERAGE_OVER_MAX": "Resulting position leverage would be over the maximum leverage for this market.",
|
|
3008
3018
|
"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',
|
|
@@ -2138,6 +2140,7 @@ export const APP_STRING_KEYS = {
|
|
|
2138
2140
|
SET_TAKE_PROFIT_STOP_LOSS_TRIGGERS: 'APP.TRADE.SET_TAKE_PROFIT_STOP_LOSS_TRIGGERS',
|
|
2139
2141
|
SKEW: 'APP.TRADE.SKEW',
|
|
2140
2142
|
SKEW_MUST_BE_WITHIN_RANGE: 'APP.TRADE.SKEW_MUST_BE_WITHIN_RANGE',
|
|
2143
|
+
SKEW_TOOLTIP: 'APP.TRADE.SKEW_TOOLTIP',
|
|
2141
2144
|
SLIDER: 'APP.TRADE.SLIDER',
|
|
2142
2145
|
SOLD: 'APP.TRADE.SOLD',
|
|
2143
2146
|
SPOT: 'APP.TRADE.SPOT',
|
|
@@ -2175,6 +2178,7 @@ export const APP_STRING_KEYS = {
|
|
|
2175
2178
|
TOTAL_COST: 'APP.TRADE.TOTAL_COST',
|
|
2176
2179
|
TOTAL_ORDERS: 'APP.TRADE.TOTAL_ORDERS',
|
|
2177
2180
|
TOTAL_ORDERS_MUST_BE_WITHIN_RANGE: 'APP.TRADE.TOTAL_ORDERS_MUST_BE_WITHIN_RANGE',
|
|
2181
|
+
TOTAL_ORDERS_TOOLTIP: 'APP.TRADE.TOTAL_ORDERS_TOOLTIP',
|
|
2178
2182
|
TOTAL_SIZE: 'APP.TRADE.TOTAL_SIZE',
|
|
2179
2183
|
TRADES_24H: 'APP.TRADE.TRADES_24H',
|
|
2180
2184
|
TRADES_EMPTY_STATE: 'APP.TRADE.TRADES_EMPTY_STATE',
|
|
@@ -2198,7 +2202,9 @@ export const APP_STRING_KEYS = {
|
|
|
2198
2202
|
TWAP: 'APP.TRADE.TWAP',
|
|
2199
2203
|
TWAP_ACTIVE_ORDERS: 'APP.TRADE.TWAP_ACTIVE_ORDERS',
|
|
2200
2204
|
TWAP_FILLS: 'APP.TRADE.TWAP_FILLS',
|
|
2205
|
+
TWAP_FREQUENCY: 'APP.TRADE.TWAP_FREQUENCY',
|
|
2201
2206
|
TWAP_ORDER_HISTORY: 'APP.TRADE.TWAP_ORDER_HISTORY',
|
|
2207
|
+
TWAP_RUNNING_TIME: 'APP.TRADE.TWAP_RUNNING_TIME',
|
|
2202
2208
|
UNDERCOLLATERALIZED: 'APP.TRADE.UNDERCOLLATERALIZED',
|
|
2203
2209
|
UNOPENED_ISOLATED_POSITIONS: 'APP.TRADE.UNOPENED_ISOLATED_POSITIONS',
|
|
2204
2210
|
UNREALIZED_PNL: 'APP.TRADE.UNREALIZED_PNL',
|
|
@@ -2675,6 +2681,10 @@ export const ERRORS_STRING_KEYS = {
|
|
|
2675
2681
|
BRACKET_ORDER_TAKE_PROFIT_BELOW_EXPECTED_PRICE: 'ERRORS.TRADE_BOX.BRACKET_ORDER_TAKE_PROFIT_BELOW_EXPECTED_PRICE',
|
|
2676
2682
|
BRACKET_ORDER_TAKE_PROFIT_BELOW_LIQUIDATION_PRICE: 'ERRORS.TRADE_BOX.BRACKET_ORDER_TAKE_PROFIT_BELOW_LIQUIDATION_PRICE',
|
|
2677
2683
|
BUY_TRIGGER_TOO_CLOSE_TO_LIQUIDATION_PRICE: 'ERRORS.TRADE_BOX.BUY_TRIGGER_TOO_CLOSE_TO_LIQUIDATION_PRICE',
|
|
2684
|
+
DURATION_TOO_LONG: 'ERRORS.TRADE_BOX.DURATION_TOO_LONG',
|
|
2685
|
+
DURATION_TOO_SHORT: 'ERRORS.TRADE_BOX.DURATION_TOO_SHORT',
|
|
2686
|
+
FREQUENCY_NOT_INTERVAL_OF_DURATION: 'ERRORS.TRADE_BOX.FREQUENCY_NOT_INTERVAL_OF_DURATION',
|
|
2687
|
+
FREQUENCY_REQUIRED: 'ERRORS.TRADE_BOX.FREQUENCY_REQUIRED',
|
|
2678
2688
|
INVALID_GOOD_TIL_MAX_90_DAYS: 'ERRORS.TRADE_BOX.INVALID_GOOD_TIL_MAX_90_DAYS',
|
|
2679
2689
|
INVALID_LARGE_POSITION_LEVERAGE: 'ERRORS.TRADE_BOX.INVALID_LARGE_POSITION_LEVERAGE',
|
|
2680
2690
|
INVALID_NEW_ACCOUNT_MARGIN_USAGE: 'ERRORS.TRADE_BOX.INVALID_NEW_ACCOUNT_MARGIN_USAGE',
|