@dydxprotocol/v4-localization 1.1.71 → 1.1.73
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.
|
@@ -43,6 +43,7 @@
|
|
|
43
43
|
"ACCOUNT": "Account",
|
|
44
44
|
"ACKNOWLEDGEMENT": "Acknowledgement",
|
|
45
45
|
"ACTION": "Action",
|
|
46
|
+
"ACTIONS": "Actions",
|
|
46
47
|
"ACTIVE": "Active",
|
|
47
48
|
"ADDING": "Adding",
|
|
48
49
|
"ADDRESS": "Address",
|
|
@@ -1249,6 +1250,7 @@
|
|
|
1249
1250
|
"ORDER_REMOVAL_REASON_UNDERCOLLATERALIZED": "The order was removed due to being undercollateralized.",
|
|
1250
1251
|
"ORDER_REMOVAL_REASON_UNSPECIFIED": "Unspecified error.",
|
|
1251
1252
|
"ORDER_REMOVAL_REASON_USER_CANCELED": "The order was canceled by a user.",
|
|
1253
|
+
"ORDER_REMOVAL_REASON_VIOLATES_ISOLATED_SUBACCOUNT_CONSTRAINTS": "The order has been removed since filling it would lead to the subaccount violating isolated subaccount constraints.",
|
|
1252
1254
|
"ORDER_TYPE": "Order type",
|
|
1253
1255
|
"ORDERBOOK": "Order book",
|
|
1254
1256
|
"ORDERBOOK_ASK_PRICE": "Ask Price",
|
|
@@ -1968,6 +1970,7 @@
|
|
|
1968
1970
|
"BROADCAST_ERROR_2001": "Reduce-only orders cannot increase the position size",
|
|
1969
1971
|
"BROADCAST_ERROR_2002": "Reduce-only orders cannot change the position side",
|
|
1970
1972
|
"BROADCAST_ERROR_2003": "Post-only order would cross one or more maker orders",
|
|
1973
|
+
"BROADCAST_ERROR_2005": "Order would violate isolated subaccount constraints",
|
|
1971
1974
|
"BROADCAST_ERROR_3000": "Invalid order flags",
|
|
1972
1975
|
"BROADCAST_ERROR_3001": "Invalid order goodTilBlockTime",
|
|
1973
1976
|
"BROADCAST_ERROR_3002": "Stateful orders cannot require immediate execution",
|
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
|
|
|
@@ -246,6 +246,7 @@ export const APP_STRING_KEYS = {
|
|
|
246
246
|
ACCOUNT_LEVERAGE: 'APP.GENERAL.ACCOUNT_LEVERAGE',
|
|
247
247
|
ACKNOWLEDGEMENT: 'APP.GENERAL.ACKNOWLEDGEMENT',
|
|
248
248
|
ACTION: 'APP.GENERAL.ACTION',
|
|
249
|
+
ACTIONS: 'APP.GENERAL.ACTIONS',
|
|
249
250
|
ACTIVE: 'APP.GENERAL.ACTIVE',
|
|
250
251
|
ADDING: 'APP.GENERAL.ADDING',
|
|
251
252
|
ADDRESS: 'APP.GENERAL.ADDRESS',
|
|
@@ -1406,6 +1407,7 @@ export const APP_STRING_KEYS = {
|
|
|
1406
1407
|
ORDER_REMOVAL_REASON_UNDERCOLLATERALIZED: 'APP.TRADE.ORDER_REMOVAL_REASON_UNDERCOLLATERALIZED',
|
|
1407
1408
|
ORDER_REMOVAL_REASON_UNSPECIFIED: 'APP.TRADE.ORDER_REMOVAL_REASON_UNSPECIFIED',
|
|
1408
1409
|
ORDER_REMOVAL_REASON_USER_CANCELED: 'APP.TRADE.ORDER_REMOVAL_REASON_USER_CANCELED',
|
|
1410
|
+
ORDER_REMOVAL_REASON_VIOLATES_ISOLATED_SUBACCOUNT_CONSTRAINTS: 'APP.TRADE.ORDER_REMOVAL_REASON_VIOLATES_ISOLATED_SUBACCOUNT_CONSTRAINTS',
|
|
1409
1411
|
ORDER_TYPE: 'APP.TRADE.ORDER_TYPE',
|
|
1410
1412
|
PARTIALLY_FILLED: 'APP.TRADE.PARTIALLY_FILLED',
|
|
1411
1413
|
PAYMENT: 'APP.TRADE.PAYMENT',
|
|
@@ -1613,6 +1615,7 @@ export const ERRORS_STRING_KEYS = {
|
|
|
1613
1615
|
BROADCAST_ERROR_2001: 'ERRORS.BROADCAST_ERROR_2001',
|
|
1614
1616
|
BROADCAST_ERROR_2002: 'ERRORS.BROADCAST_ERROR_2002',
|
|
1615
1617
|
BROADCAST_ERROR_2003: 'ERRORS.BROADCAST_ERROR_2003',
|
|
1618
|
+
BROADCAST_ERROR_2005: 'ERRORS.BROADCAST_ERROR_2005',
|
|
1616
1619
|
BROADCAST_ERROR_3000: 'ERRORS.BROADCAST_ERROR_3000',
|
|
1617
1620
|
BROADCAST_ERROR_3001: 'ERRORS.BROADCAST_ERROR_3001',
|
|
1618
1621
|
BROADCAST_ERROR_3002: 'ERRORS.BROADCAST_ERROR_3002',
|