@dydxprotocol/v4-localization 1.1.350 → 1.1.351
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.
|
@@ -1878,6 +1878,7 @@
|
|
|
1878
1878
|
"ACCEPTED_ASSETS_AND_USDC": "{ASSETS}, USDC accepted",
|
|
1879
1879
|
"CHECK_EMAIL_DESCRIPTION": "Open the magic link in your email to complete your sign in",
|
|
1880
1880
|
"CHECK_EMAIL_TITLE": "Check your Email",
|
|
1881
|
+
"CONTINUE_PASSKEY": "Continue with Passkey",
|
|
1881
1882
|
"CONTINUE_SIGN_IN_DESCRIPTION": "Please wait",
|
|
1882
1883
|
"CONTINUE_SIGN_IN_TITLE": "Continue to sign in",
|
|
1883
1884
|
"DEPOSIT_AND_TRADE": "Deposit and start trading",
|
|
@@ -1891,6 +1892,7 @@
|
|
|
1891
1892
|
"LOGGING_IN": "Logging in...",
|
|
1892
1893
|
"OPEN_SENT_MAGIC_LINK": "Open the Magic link sent to {EMAIL} to complete your sign in",
|
|
1893
1894
|
"PLEASE_WAIT_LOGIN": "Please wait while we log you in...",
|
|
1895
|
+
"REGISTER_PASSKEY": "Register Passkey",
|
|
1894
1896
|
"RESEND": "Resend",
|
|
1895
1897
|
"SIGN_IN_DESCRIPTION": "To get started, sign in with your social accounts, email or connect your wallet.",
|
|
1896
1898
|
"SIGN_IN_DESKTOP": "Sign in with Desktop",
|
|
@@ -2485,16 +2487,21 @@
|
|
|
2485
2487
|
"EQUITY_TIERS_DESCRIPTION_LONG": "Equity tier limit defines the set of equity tiers to limit how many open orders a subaccount is allowed to have."
|
|
2486
2488
|
},
|
|
2487
2489
|
"FEE_TIERS": {
|
|
2490
|
+
"FEE_TIER": "Fee Tier",
|
|
2491
|
+
"FEE_TIER_N": "Fee Tier {TIER}",
|
|
2488
2492
|
"FEE_TIERS": "Fee Tiers",
|
|
2489
2493
|
"ADDITIONAL_CONDITION": "Additional Condition",
|
|
2490
2494
|
"AND_EXCHANGE_MARKET_SHARE": "and exchange market share",
|
|
2491
2495
|
"AND_MAKER_MARKET_SHARE": "and maker market share",
|
|
2496
|
+
"PERCENT_OFF_FEES": "{PERCENT} off fees",
|
|
2492
2497
|
"TRADING_VOLUME": "Trading Volume",
|
|
2493
2498
|
"YOUR_MAKER_FEE": "Your Maker Fee",
|
|
2494
2499
|
"YOUR_TAKER_FEE": "Your Taker Fee"
|
|
2495
2500
|
},
|
|
2496
2501
|
"STAKING_TIERS": {
|
|
2502
|
+
"LEVEL_N": "Level {LEVEL}",
|
|
2497
2503
|
"STAKE_MORE": "Stake more",
|
|
2504
|
+
"STAKE_REQUIREMENTS": "Stake Requirements",
|
|
2498
2505
|
"STAKED_DYDX": "Staked dYdX",
|
|
2499
2506
|
"STAKING_FEE_DISCOUNT": "Staking Fee Discount",
|
|
2500
2507
|
"STAKING_TIERS": "Staking Tiers",
|
|
@@ -160,6 +160,10 @@
|
|
|
160
160
|
"TITLE": "Maker Fee",
|
|
161
161
|
"BODY": "Limit orders that add liquidity to the book and are filled by another party will be filled as maker orders. Maker orders have a lower fee than taker orders."
|
|
162
162
|
},
|
|
163
|
+
"MAKER_FEE_DISCOUNT": {
|
|
164
|
+
"TITLE": "Maker Fee Discount",
|
|
165
|
+
"BODY": "The fee rate you pay per maker order with staking fee discounts applied"
|
|
166
|
+
},
|
|
163
167
|
"MARGIN_USAGE": {
|
|
164
168
|
"TITLE": "Margin Usage",
|
|
165
169
|
"BODY": "Percentage of your total margin used by open positions."
|
|
@@ -284,6 +288,10 @@
|
|
|
284
288
|
"TITLE": "Taker Fee",
|
|
285
289
|
"BODY": "Trades that take liquidity from the book (e.g. market or crossing limit orders) execute as taker orders. Taker orders have a higher fee than maker orders."
|
|
286
290
|
},
|
|
291
|
+
"TAKER_FEE_DISCOUNT": {
|
|
292
|
+
"TITLE": "Taker Fee Discount",
|
|
293
|
+
"BODY": "The fee rate you pay per taker order with staking fee discounts applied"
|
|
294
|
+
},
|
|
287
295
|
"TAKE_PROFIT": {
|
|
288
296
|
"TITLE": "Take Profit",
|
|
289
297
|
"BODY": "Allows traders to set targets and protects profits on positions by specifying a price at which to close an open position for profit."
|
package/package.json
CHANGED
package/scripts/generated/app.ts
CHANGED
|
@@ -373,7 +373,10 @@ export const APP_STRING_KEYS = {
|
|
|
373
373
|
ADDITIONAL_CONDITION: 'APP.FEE_TIERS.ADDITIONAL_CONDITION',
|
|
374
374
|
AND_EXCHANGE_MARKET_SHARE: 'APP.FEE_TIERS.AND_EXCHANGE_MARKET_SHARE',
|
|
375
375
|
AND_MAKER_MARKET_SHARE: 'APP.FEE_TIERS.AND_MAKER_MARKET_SHARE',
|
|
376
|
+
FEE_TIER: 'APP.FEE_TIERS.FEE_TIER',
|
|
376
377
|
FEE_TIERS: 'APP.FEE_TIERS.FEE_TIERS',
|
|
378
|
+
FEE_TIER_N: 'APP.FEE_TIERS.FEE_TIER_N',
|
|
379
|
+
PERCENT_OFF_FEES: 'APP.FEE_TIERS.PERCENT_OFF_FEES',
|
|
377
380
|
TRADING_VOLUME: 'APP.FEE_TIERS.TRADING_VOLUME',
|
|
378
381
|
YOUR_MAKER_FEE: 'APP.FEE_TIERS.YOUR_MAKER_FEE',
|
|
379
382
|
YOUR_TAKER_FEE: 'APP.FEE_TIERS.YOUR_TAKER_FEE',
|
|
@@ -1732,8 +1735,10 @@ export const APP_STRING_KEYS = {
|
|
|
1732
1735
|
|
|
1733
1736
|
// STAKING_TIERS
|
|
1734
1737
|
|
|
1738
|
+
LEVEL_N: 'APP.STAKING_TIERS.LEVEL_N',
|
|
1735
1739
|
STAKED_DYDX: 'APP.STAKING_TIERS.STAKED_DYDX',
|
|
1736
1740
|
STAKE_MORE: 'APP.STAKING_TIERS.STAKE_MORE',
|
|
1741
|
+
STAKE_REQUIREMENTS: 'APP.STAKING_TIERS.STAKE_REQUIREMENTS',
|
|
1737
1742
|
STAKING_FEE_DISCOUNT: 'APP.STAKING_TIERS.STAKING_FEE_DISCOUNT',
|
|
1738
1743
|
STAKING_TIER: 'APP.STAKING_TIERS.STAKING_TIER',
|
|
1739
1744
|
STAKING_TIERS: 'APP.STAKING_TIERS.STAKING_TIERS',
|
|
@@ -2177,6 +2182,7 @@ export const APP_STRING_KEYS = {
|
|
|
2177
2182
|
ACCEPTS_ONLY_USDC: 'APP.TURNKEY_ONBOARD.ACCEPTS_ONLY_USDC',
|
|
2178
2183
|
CHECK_EMAIL_DESCRIPTION: 'APP.TURNKEY_ONBOARD.CHECK_EMAIL_DESCRIPTION',
|
|
2179
2184
|
CHECK_EMAIL_TITLE: 'APP.TURNKEY_ONBOARD.CHECK_EMAIL_TITLE',
|
|
2185
|
+
CONTINUE_PASSKEY: 'APP.TURNKEY_ONBOARD.CONTINUE_PASSKEY',
|
|
2180
2186
|
CONTINUE_SIGN_IN_DESCRIPTION: 'APP.TURNKEY_ONBOARD.CONTINUE_SIGN_IN_DESCRIPTION',
|
|
2181
2187
|
CONTINUE_SIGN_IN_TITLE: 'APP.TURNKEY_ONBOARD.CONTINUE_SIGN_IN_TITLE',
|
|
2182
2188
|
DEPOSIT_AND_TRADE: 'APP.TURNKEY_ONBOARD.DEPOSIT_AND_TRADE',
|
|
@@ -2190,6 +2196,7 @@ export const APP_STRING_KEYS = {
|
|
|
2190
2196
|
LOGGING_IN: 'APP.TURNKEY_ONBOARD.LOGGING_IN',
|
|
2191
2197
|
OPEN_SENT_MAGIC_LINK: 'APP.TURNKEY_ONBOARD.OPEN_SENT_MAGIC_LINK',
|
|
2192
2198
|
PLEASE_WAIT_LOGIN: 'APP.TURNKEY_ONBOARD.PLEASE_WAIT_LOGIN',
|
|
2199
|
+
REGISTER_PASSKEY: 'APP.TURNKEY_ONBOARD.REGISTER_PASSKEY',
|
|
2193
2200
|
RESEND: 'APP.TURNKEY_ONBOARD.RESEND',
|
|
2194
2201
|
SIGN_IN_APPLE: 'APP.TURNKEY_ONBOARD.SIGN_IN_APPLE',
|
|
2195
2202
|
SIGN_IN_DESCRIPTION: 'APP.TURNKEY_ONBOARD.SIGN_IN_DESCRIPTION',
|
|
@@ -136,6 +136,8 @@ export const TOOLTIP_STRING_KEYS = {
|
|
|
136
136
|
MAINTENANCE_MARGIN_FRACTION_TITLE: 'TOOLTIPS.TRADE.MAINTENANCE_MARGIN_FRACTION.TITLE',
|
|
137
137
|
MAKER_FEE_BODY: 'TOOLTIPS.TRADE.MAKER_FEE.BODY',
|
|
138
138
|
MAKER_FEE_TITLE: 'TOOLTIPS.TRADE.MAKER_FEE.TITLE',
|
|
139
|
+
MAKER_FEE_DISCOUNT_BODY: 'TOOLTIPS.TRADE.MAKER_FEE_DISCOUNT.BODY',
|
|
140
|
+
MAKER_FEE_DISCOUNT_TITLE: 'TOOLTIPS.TRADE.MAKER_FEE_DISCOUNT.TITLE',
|
|
139
141
|
MARGIN_USAGE_BODY: 'TOOLTIPS.TRADE.MARGIN_USAGE.BODY',
|
|
140
142
|
MARGIN_USAGE_TITLE: 'TOOLTIPS.TRADE.MARGIN_USAGE.TITLE',
|
|
141
143
|
MARGIN_USED_BODY: 'TOOLTIPS.TRADE.MARGIN_USED.BODY',
|
|
@@ -199,6 +201,8 @@ export const TOOLTIP_STRING_KEYS = {
|
|
|
199
201
|
STOP_LOSS_BELOW_LIQUIDATION_PRICE_TITLE: 'TOOLTIPS.TRADE.STOP_LOSS_BELOW_LIQUIDATION_PRICE.TITLE',
|
|
200
202
|
TAKER_FEE_BODY: 'TOOLTIPS.TRADE.TAKER_FEE.BODY',
|
|
201
203
|
TAKER_FEE_TITLE: 'TOOLTIPS.TRADE.TAKER_FEE.TITLE',
|
|
204
|
+
TAKER_FEE_DISCOUNT_BODY: 'TOOLTIPS.TRADE.TAKER_FEE_DISCOUNT.BODY',
|
|
205
|
+
TAKER_FEE_DISCOUNT_TITLE: 'TOOLTIPS.TRADE.TAKER_FEE_DISCOUNT.TITLE',
|
|
202
206
|
TAKE_PROFIT_BODY: 'TOOLTIPS.TRADE.TAKE_PROFIT.BODY',
|
|
203
207
|
TAKE_PROFIT_TITLE: 'TOOLTIPS.TRADE.TAKE_PROFIT.TITLE',
|
|
204
208
|
TARGET_LEVERAGE_BODY: 'TOOLTIPS.TRADE.TARGET_LEVERAGE.BODY',
|