@dydxprotocol/v4-localization 1.1.224 → 1.1.226
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.
|
@@ -2247,8 +2247,8 @@
|
|
|
2247
2247
|
"LIST_A_NEW_MARKET": "List a new market",
|
|
2248
2248
|
"LISTINGS_DESCRIPTION": "Listings on dYdX are completely community-driven. This tool will help you submit a governance proposal to list a new market.",
|
|
2249
2249
|
"MARKET_LAUNCH_DETAILS": "Select the market you'd like to launch and deposit {DEPOSIT_AMOUNT} into MegaVault. Your deposit will earn an estimated {APR_PERCENTAGE} APR (based on the last {PAST_DAYS} days).",
|
|
2250
|
-
"MARKET_LAUNCH_DETAILS_2": "Immediately launch a new market on dYdX Chain by depositing {DEPOSIT_AMOUNT} into MegaVault.
|
|
2251
|
-
"MARKET_LAUNCH_DETAILS_3": "Select the market you'd like to launch and deposit {DEPOSIT_AMOUNT} into MegaVault for at least {PAST_DAYS} days.
|
|
2250
|
+
"MARKET_LAUNCH_DETAILS_2": "Immediately launch a new market on dYdX Chain by depositing {DEPOSIT_AMOUNT} into MegaVault. Deposits have earned an estimated {APR_PERCENTAGE} APR (based on the last {PAST_DAYS} days).",
|
|
2251
|
+
"MARKET_LAUNCH_DETAILS_3": "Select the market you'd like to launch and deposit {DEPOSIT_AMOUNT} into MegaVault for at least {PAST_DAYS} days. Deposits have earned an estimated {APR_PERCENTAGE} APR.",
|
|
2252
2252
|
"MARKET_LAUNCHED": "Market Launched!",
|
|
2253
2253
|
"MARKET_NOW_LIVE_TRADE": "{MARKET} is now live, start trading.",
|
|
2254
2254
|
"MARKET_TO_LAUNCH": "Market to Launch",
|
|
@@ -2619,6 +2619,7 @@
|
|
|
2619
2619
|
"ISOLATED_MARGIN_ADJUSTMENT_INVALID_AMOUNT": "Please enter a valid amount."
|
|
2620
2620
|
},
|
|
2621
2621
|
"NEW_MARKET_WIDGET": {
|
|
2622
|
+
"LAUNCHING_MARKET_REQUIRES_USDC": "Launching a market requires a minimum of {USDC_AMOUNT} USDC of cross free collateral",
|
|
2622
2623
|
"NOT_ENOUGH_BALANCE": "You need at least {NUM_TOKENS_REQUIRED} {NATIVE_TOKEN_DENOM} to add a market."
|
|
2623
2624
|
}
|
|
2624
2625
|
},
|
|
@@ -200,6 +200,14 @@
|
|
|
200
200
|
"TITLE": "Portfolio Value",
|
|
201
201
|
"BODY": "Total equity value of your account."
|
|
202
202
|
},
|
|
203
|
+
"POSITION_MARGIN": {
|
|
204
|
+
"TITLE": "Position Margin",
|
|
205
|
+
"BODY": "The amount of collateral backing the position."
|
|
206
|
+
},
|
|
207
|
+
"POSITION_LEVERAGE": {
|
|
208
|
+
"TITLE": "Position Leverage",
|
|
209
|
+
"BODY": "Leverage changes the multiplier on your gains or losses. Increasing your leverage increases how much you would gain / lose on a trade with the same price movement."
|
|
210
|
+
},
|
|
203
211
|
"POST_ONLY": {
|
|
204
212
|
"TITLE": "Post-Only",
|
|
205
213
|
"BODY": "Orders with post-only enabled can only be placed as maker orders. If the order crosses other orders at the time of placement, it will be automatically cancelled."
|
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
|
|
3
|
+
// Generated from ../config/localization/en/app.json using codegen_localization_app.swift
|
|
4
4
|
|
|
5
5
|
export const APP_STRING_KEYS = {
|
|
6
6
|
|
|
@@ -2079,6 +2079,7 @@ export const ERRORS_STRING_KEYS = {
|
|
|
2079
2079
|
|
|
2080
2080
|
// NEW_MARKET_WIDGET
|
|
2081
2081
|
|
|
2082
|
+
LAUNCHING_MARKET_REQUIRES_USDC: 'ERRORS.NEW_MARKET_WIDGET.LAUNCHING_MARKET_REQUIRES_USDC',
|
|
2082
2083
|
NOT_ENOUGH_BALANCE: 'ERRORS.NEW_MARKET_WIDGET.NOT_ENOUGH_BALANCE',
|
|
2083
2084
|
|
|
2084
2085
|
// ONBOARDING
|
|
@@ -151,6 +151,10 @@ export const TOOLTIP_STRING_KEYS = {
|
|
|
151
151
|
PARTIAL_CLOSE_TAKE_PROFIT_TITLE: 'TOOLTIPS.TRADE.PARTIAL_CLOSE_TAKE_PROFIT.TITLE',
|
|
152
152
|
PORTFOLIO_VALUE_BODY: 'TOOLTIPS.TRADE.PORTFOLIO_VALUE.BODY',
|
|
153
153
|
PORTFOLIO_VALUE_TITLE: 'TOOLTIPS.TRADE.PORTFOLIO_VALUE.TITLE',
|
|
154
|
+
POSITION_LEVERAGE_BODY: 'TOOLTIPS.TRADE.POSITION_LEVERAGE.BODY',
|
|
155
|
+
POSITION_LEVERAGE_TITLE: 'TOOLTIPS.TRADE.POSITION_LEVERAGE.TITLE',
|
|
156
|
+
POSITION_MARGIN_BODY: 'TOOLTIPS.TRADE.POSITION_MARGIN.BODY',
|
|
157
|
+
POSITION_MARGIN_TITLE: 'TOOLTIPS.TRADE.POSITION_MARGIN.TITLE',
|
|
154
158
|
POST_ONLY_BODY: 'TOOLTIPS.TRADE.POST_ONLY.BODY',
|
|
155
159
|
POST_ONLY_TITLE: 'TOOLTIPS.TRADE.POST_ONLY.TITLE',
|
|
156
160
|
POST_ONLY_TIMEINFORCE_GTT_BODY: 'TOOLTIPS.TRADE.POST_ONLY_TIMEINFORCE_GTT.BODY',
|