@dydxprotocol/v4-localization 1.1.386 → 1.1.387
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.
|
@@ -1810,6 +1810,16 @@
|
|
|
1810
1810
|
"YOUR_MARKET_POSITION": "Your {MARKET} position",
|
|
1811
1811
|
"YOUR_POSITION_WAS_LIQUIDATED": "Your position was liquidated."
|
|
1812
1812
|
},
|
|
1813
|
+
"TRADE_HISTORY": {
|
|
1814
|
+
"OPEN_LONG": "Open Long",
|
|
1815
|
+
"OPEN_SHORT": "Open Short",
|
|
1816
|
+
"CLOSE_LONG": "Close Long",
|
|
1817
|
+
"CLOSE_SHORT": "Close Short",
|
|
1818
|
+
"PARTIAL_CLOSE_LONG": "Partial Close Long",
|
|
1819
|
+
"PARTIAL_CLOSE_SHORT": "Partial Close Short",
|
|
1820
|
+
"ADD_TO_LONG": "Add to Long",
|
|
1821
|
+
"ADD_TO_SHORT": "Add to Short"
|
|
1822
|
+
},
|
|
1813
1823
|
"TRADING_VIEW": {
|
|
1814
1824
|
"DRAFT_LIMIT_SELL": "Draft Limit Sell at {PRICE}",
|
|
1815
1825
|
"DRAFT_LIMIT_BUY": "Draft Limit Buy at {PRICE}"
|
package/package.json
CHANGED
package/scripts/generated/app.ts
CHANGED
|
@@ -2174,6 +2174,17 @@ export const APP_STRING_KEYS = {
|
|
|
2174
2174
|
STOP_AND_PROFIT_LIMIT_BODY: 'APP.TRADE_BOX_CARDS.STOP_AND_PROFIT_LIMIT_BODY',
|
|
2175
2175
|
STOP_AND_PROFIT_LIMIT_TITLE: 'APP.TRADE_BOX_CARDS.STOP_AND_PROFIT_LIMIT_TITLE',
|
|
2176
2176
|
|
|
2177
|
+
// TRADE_HISTORY
|
|
2178
|
+
|
|
2179
|
+
ADD_TO_LONG: 'APP.TRADE_HISTORY.ADD_TO_LONG',
|
|
2180
|
+
ADD_TO_SHORT: 'APP.TRADE_HISTORY.ADD_TO_SHORT',
|
|
2181
|
+
CLOSE_LONG: 'APP.TRADE_HISTORY.CLOSE_LONG',
|
|
2182
|
+
CLOSE_SHORT: 'APP.TRADE_HISTORY.CLOSE_SHORT',
|
|
2183
|
+
OPEN_LONG: 'APP.TRADE_HISTORY.OPEN_LONG',
|
|
2184
|
+
OPEN_SHORT: 'APP.TRADE_HISTORY.OPEN_SHORT',
|
|
2185
|
+
PARTIAL_CLOSE_LONG: 'APP.TRADE_HISTORY.PARTIAL_CLOSE_LONG',
|
|
2186
|
+
PARTIAL_CLOSE_SHORT: 'APP.TRADE_HISTORY.PARTIAL_CLOSE_SHORT',
|
|
2187
|
+
|
|
2177
2188
|
// TRADING_KEYS
|
|
2178
2189
|
|
|
2179
2190
|
API_KEY_AUTHORIZATION_ACKNOWLEDGMENT: 'APP.TRADING_KEYS.API_KEY_AUTHORIZATION_ACKNOWLEDGMENT',
|