@dydxprotocol/v4-localization 1.1.2 → 1.1.4
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.
|
@@ -1635,6 +1635,8 @@
|
|
|
1635
1635
|
"TRIGGER_TOO_CLOSE_TO_LIQUIDATION_PRICE": "Your trigger price is too close to your liquidation price - this order may not execute fully before you get liquidated. Please update your trigger price or use a stop limit order.",
|
|
1636
1636
|
"USER_MAX_ORDERS": "This order would put you above the max limit of 20 open orders per market, per side.",
|
|
1637
1637
|
"USER_MAX_ORDERS_FOR_EQUITY_TIER": "This order would put you above the equity tier limit of {LIMIT} open orders",
|
|
1638
|
+
"USER_MAX_ORDERS_FOR_CURRENT_EQUITY_TIER": "This order would put you over the limit of {LIMIT} open orders for your equity tier. The next equity tier is at {EQUITY}.",
|
|
1639
|
+
"USER_MAX_ORDERS_FOR_TOP_EQUITY_TIER": "This order would put you over the limit of {LIMIT} open orders.",
|
|
1638
1640
|
"WOULD_NOT_REDUCE": "Your position would not be reduced if order is filled.",
|
|
1639
1641
|
"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.",
|
|
1640
1642
|
"INVALID_GOOD_TIL_MAX_90_DAYS": "Good Til exceeds the maximum 90 days."
|
|
@@ -1709,6 +1711,7 @@
|
|
|
1709
1711
|
"REGION_NOT_PERMITTED_SUBTITLE": "Because you appear to be a resident of, or trading from, a jurisdiction that violates our terms of use, or have engaged in activity that violates our terms of use, you have been blocked. You may withdraw your funds from the protocol at any time.",
|
|
1710
1712
|
"BANNED_USER": "Because you appear to be a resident of, or trading from, a jurisdiction that violates our terms of use, you have been permanently blocked from performing transfers within the protocol, making fast withdrawals to remove funds from the protocol, and placing orders other than market orders that reduce your positions. You may withdraw your funds from the protocol at any time.",
|
|
1711
1713
|
"COULD_NOT_CONNECT": "Couldn't connect to {WALLET}",
|
|
1714
|
+
"MAX_CCTP_TRANSFER_LIMIT_EXCEEDED": "Please try a smaller amount. The maximum CCTP transfer limit is currently {MAX_CCTP_TRANSFER_AMOUNT}.",
|
|
1712
1715
|
"INDETERMINISTIC_SIGNING": "Your wallet does not support deterministic signing. Please switch to a different wallet provider.",
|
|
1713
1716
|
"INVALID_EMAIL": "Please enter a valid email address.",
|
|
1714
1717
|
"INVALID_USERNAME": "Usernames must start with a letter, be less than 24 characters long, and contain only letters, numbers, and underscores.",
|
package/package.json
CHANGED
package/scripts/generated/app.ts
CHANGED
|
@@ -1398,6 +1398,7 @@ export const ERRORS_STRING_KEYS = {
|
|
|
1398
1398
|
INVALID_USERNAME: 'ERRORS.ONBOARDING.INVALID_USERNAME',
|
|
1399
1399
|
KEY_RECOVERY_FAILED: 'ERRORS.ONBOARDING.KEY_RECOVERY_FAILED',
|
|
1400
1400
|
LEDGER_U2F_REQUIRED: 'ERRORS.ONBOARDING.LEDGER_U2F_REQUIRED',
|
|
1401
|
+
MAX_CCTP_TRANSFER_LIMIT_EXCEEDED: 'ERRORS.ONBOARDING.MAX_CCTP_TRANSFER_LIMIT_EXCEEDED',
|
|
1401
1402
|
REGION_NOT_PERMITTED_SUBTITLE: 'ERRORS.ONBOARDING.REGION_NOT_PERMITTED_SUBTITLE',
|
|
1402
1403
|
REGION_NOT_PERMITTED_TITLE: 'ERRORS.ONBOARDING.REGION_NOT_PERMITTED_TITLE',
|
|
1403
1404
|
USERNAME_TAKEN: 'ERRORS.ONBOARDING.USERNAME_TAKEN',
|
|
@@ -1445,7 +1446,9 @@ export const ERRORS_STRING_KEYS = {
|
|
|
1445
1446
|
TRIGGER_MUST_BELOW_INDEX_PRICE: 'ERRORS.TRADE_BOX.TRIGGER_MUST_BELOW_INDEX_PRICE',
|
|
1446
1447
|
TRIGGER_TOO_CLOSE_TO_LIQUIDATION_PRICE: 'ERRORS.TRADE_BOX.TRIGGER_TOO_CLOSE_TO_LIQUIDATION_PRICE',
|
|
1447
1448
|
USER_MAX_ORDERS: 'ERRORS.TRADE_BOX.USER_MAX_ORDERS',
|
|
1449
|
+
USER_MAX_ORDERS_FOR_CURRENT_EQUITY_TIER: 'ERRORS.TRADE_BOX.USER_MAX_ORDERS_FOR_CURRENT_EQUITY_TIER',
|
|
1448
1450
|
USER_MAX_ORDERS_FOR_EQUITY_TIER: 'ERRORS.TRADE_BOX.USER_MAX_ORDERS_FOR_EQUITY_TIER',
|
|
1451
|
+
USER_MAX_ORDERS_FOR_TOP_EQUITY_TIER: 'ERRORS.TRADE_BOX.USER_MAX_ORDERS_FOR_TOP_EQUITY_TIER',
|
|
1449
1452
|
WOULD_NOT_REDUCE: 'ERRORS.TRADE_BOX.WOULD_NOT_REDUCE',
|
|
1450
1453
|
WOULD_NOT_REDUCE_UNCHECK: 'ERRORS.TRADE_BOX.WOULD_NOT_REDUCE_UNCHECK',
|
|
1451
1454
|
|