@dydxprotocol/v4-localization 1.1.285 → 1.1.287
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.
|
@@ -65,6 +65,7 @@
|
|
|
65
65
|
"ALL": "All",
|
|
66
66
|
"ALLOWED": "Allowed",
|
|
67
67
|
"AMOUNT": "Amount",
|
|
68
|
+
"AMOUNT_CLOSE": "Amount Close",
|
|
68
69
|
"AMOUNT_TO_ADD": "Amount to Add",
|
|
69
70
|
"AMOUNT_TO_REMOVE": "Amount to Remove",
|
|
70
71
|
"ANONYMOUS": "Anonymous",
|
|
@@ -1248,7 +1249,9 @@
|
|
|
1248
1249
|
"CANCEL_ORDERS_CONFIRMATION": "Are you sure you want to cancel {OPEN_ORDERS_TEXT} in {ASSET} ({MARKET})?",
|
|
1249
1250
|
"ONE_OPEN_ORDER": "1 open order",
|
|
1250
1251
|
"N_OPEN_ORDERS": "{COUNT} open orders",
|
|
1251
|
-
"
|
|
1252
|
+
"NO_CANCELABLE_ORDERS": "You have no open orders that need to be canceled.",
|
|
1253
|
+
"OPEN_ORDERS": "Open orders",
|
|
1254
|
+
"YOUR_OPEN_TRIGGER_ORDERS_NO_POSITION": "You have {NUM_ORDERS} open trigger order(s) across {NUM_MARKETS} market(s) with no associated position."
|
|
1252
1255
|
},
|
|
1253
1256
|
"CANCEL_ALL_ORDERS_MODAL": {
|
|
1254
1257
|
"CANCEL_ALL_ORDERS": "Cancel all orders",
|
|
@@ -2453,6 +2456,10 @@
|
|
|
2453
2456
|
"SUFFICIENT_GAS_BALANCE": "Sufficient for gas",
|
|
2454
2457
|
"WITHDRAW_TO_WALLET": "Withdraw to wallet",
|
|
2455
2458
|
"WITHDRAW_TO_WALLET_RECOMMENDATION": "We recommend your wallet balance remain between ${MIN_RANGE} - ${MAX_RANGE} to pay for gas fees on dYdX chain."
|
|
2459
|
+
},
|
|
2460
|
+
"RECLAIM_CHILD_SUBACCOUNT_FUNDS_MODAL": {
|
|
2461
|
+
"NO_FUNDS_TO_RECLAIM": "There are no funds available for you to reclaim at this time.",
|
|
2462
|
+
"RECLAIM_FUNDS_SIGNING": "Upon reclaiming, you will be prompted to sign {NUM_TRANSACTIONS} transaction(s) to return the funds previously used as collateral for isolated margin trading."
|
|
2456
2463
|
}
|
|
2457
2464
|
},
|
|
2458
2465
|
"TOKEN_MIGRATION": {
|
package/package.json
CHANGED
package/scripts/generated/app.ts
CHANGED
|
@@ -97,9 +97,11 @@ export const APP_STRING_KEYS = {
|
|
|
97
97
|
// CANCEL_ORDERS_MODAL
|
|
98
98
|
|
|
99
99
|
CANCEL_ORDERS_CONFIRMATION: 'APP.CANCEL_ORDERS_MODAL.CANCEL_ORDERS_CONFIRMATION',
|
|
100
|
+
NO_CANCELABLE_ORDERS: 'APP.CANCEL_ORDERS_MODAL.NO_CANCELABLE_ORDERS',
|
|
100
101
|
N_OPEN_ORDERS: 'APP.CANCEL_ORDERS_MODAL.N_OPEN_ORDERS',
|
|
101
102
|
ONE_OPEN_ORDER: 'APP.CANCEL_ORDERS_MODAL.ONE_OPEN_ORDER',
|
|
102
103
|
OPEN_ORDERS: 'APP.CANCEL_ORDERS_MODAL.OPEN_ORDERS',
|
|
104
|
+
YOUR_OPEN_TRIGGER_ORDERS_NO_POSITION: 'APP.CANCEL_ORDERS_MODAL.YOUR_OPEN_TRIGGER_ORDERS_NO_POSITION',
|
|
103
105
|
|
|
104
106
|
// CLOSE_POSITIONS_CONFIRMATION_TOAST
|
|
105
107
|
|
|
@@ -391,6 +393,7 @@ export const APP_STRING_KEYS = {
|
|
|
391
393
|
ALLOWED: 'APP.GENERAL.ALLOWED',
|
|
392
394
|
ALL_MARKETS: 'APP.GENERAL.ALL_MARKETS',
|
|
393
395
|
AMOUNT: 'APP.GENERAL.AMOUNT',
|
|
396
|
+
AMOUNT_CLOSE: 'APP.GENERAL.AMOUNT_CLOSE',
|
|
394
397
|
AMOUNT_TO_ADD: 'APP.GENERAL.AMOUNT_TO_ADD',
|
|
395
398
|
AMOUNT_TO_REMOVE: 'APP.GENERAL.AMOUNT_TO_REMOVE',
|
|
396
399
|
ANONYMOUS: 'APP.GENERAL.ANONYMOUS',
|
|
@@ -1496,6 +1499,11 @@ export const APP_STRING_KEYS = {
|
|
|
1496
1499
|
TRADE_TO_WIN: 'APP.PROFILES_PAGE.TRADE_TO_WIN',
|
|
1497
1500
|
YOU_CAN_WIN_THESE: 'APP.PROFILES_PAGE.YOU_CAN_WIN_THESE',
|
|
1498
1501
|
|
|
1502
|
+
// RECLAIM_CHILD_SUBACCOUNT_FUNDS_MODAL
|
|
1503
|
+
|
|
1504
|
+
NO_FUNDS_TO_RECLAIM: 'APP.RECLAIM_CHILD_SUBACCOUNT_FUNDS_MODAL.NO_FUNDS_TO_RECLAIM',
|
|
1505
|
+
RECLAIM_FUNDS_SIGNING: 'APP.RECLAIM_CHILD_SUBACCOUNT_FUNDS_MODAL.RECLAIM_FUNDS_SIGNING',
|
|
1506
|
+
|
|
1499
1507
|
// REDUCE_ONLY_SUPPORT_MODAL
|
|
1500
1508
|
|
|
1501
1509
|
REDUCE_ONLY_SUPPORT: 'APP.REDUCE_ONLY_SUPPORT_MODAL.REDUCE_ONLY_SUPPORT',
|