@dydxprotocol/v4-localization 1.1.245 → 1.1.246
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.
|
@@ -1713,6 +1713,8 @@
|
|
|
1713
1713
|
"YOUR_ALL_TIME_PNL": "Your All-time P&L",
|
|
1714
1714
|
"VAULT_THIRTY_DAY_APR": "30d APR",
|
|
1715
1715
|
"APR": "{PERCENT} APR",
|
|
1716
|
+
"EST_APR_PLAIN": "Est. APR",
|
|
1717
|
+
"APR_PLAIN": "APR",
|
|
1716
1718
|
"VAULT_THIRTY_DAY_PNL": "30d P&L",
|
|
1717
1719
|
"YOUR_VAULT_BALANCE": "Your Vault Balance",
|
|
1718
1720
|
"VIEW_VAULT": "View Vault",
|
|
@@ -428,6 +428,9 @@
|
|
|
428
428
|
},
|
|
429
429
|
"YOUR_ALL_TIME_PNL": {
|
|
430
430
|
"BODY": "The total PnL over time. This includes historical PnL of your vault deposits."
|
|
431
|
+
},
|
|
432
|
+
"VAULT_APR": {
|
|
433
|
+
"BODY": "Vault APR is the annualized return of the vault based on the P&L of the past 30 days."
|
|
431
434
|
}
|
|
432
435
|
}
|
|
433
436
|
}
|
package/package.json
CHANGED
package/scripts/generated/app.ts
CHANGED
|
@@ -1920,6 +1920,7 @@ export const APP_STRING_KEYS = {
|
|
|
1920
1920
|
AMOUNT_TO_DEPOSIT: 'APP.VAULTS.AMOUNT_TO_DEPOSIT',
|
|
1921
1921
|
AMOUNT_TO_WITHDRAW: 'APP.VAULTS.AMOUNT_TO_WITHDRAW',
|
|
1922
1922
|
APR: 'APP.VAULTS.APR',
|
|
1923
|
+
APR_PLAIN: 'APP.VAULTS.APR_PLAIN',
|
|
1923
1924
|
AVAILABLE_TO_WITHDRAW: 'APP.VAULTS.AVAILABLE_TO_WITHDRAW',
|
|
1924
1925
|
CONFIRM_DEPOSIT_CTA: 'APP.VAULTS.CONFIRM_DEPOSIT_CTA',
|
|
1925
1926
|
CONFIRM_WITHDRAW_CTA: 'APP.VAULTS.CONFIRM_WITHDRAW_CTA',
|
|
@@ -1930,6 +1931,7 @@ export const APP_STRING_KEYS = {
|
|
|
1930
1931
|
ENTER_AMOUNT_TO_WITHDRAW: 'APP.VAULTS.ENTER_AMOUNT_TO_WITHDRAW',
|
|
1931
1932
|
ESTIMATED_AMOUNT_RECEIVED: 'APP.VAULTS.ESTIMATED_AMOUNT_RECEIVED',
|
|
1932
1933
|
ESTIMATED_SLIPPAGE: 'APP.VAULTS.ESTIMATED_SLIPPAGE',
|
|
1934
|
+
EST_APR_PLAIN: 'APP.VAULTS.EST_APR_PLAIN',
|
|
1933
1935
|
EST_SLIPPAGE: 'APP.VAULTS.EST_SLIPPAGE',
|
|
1934
1936
|
HOLDINGS: 'APP.VAULTS.HOLDINGS',
|
|
1935
1937
|
LEARN_MORE_ABOUT_MEGAVAULT: 'APP.VAULTS.LEARN_MORE_ABOUT_MEGAVAULT',
|
|
@@ -225,6 +225,7 @@ export const TOOLTIP_STRING_KEYS = {
|
|
|
225
225
|
AVAILABLE_TO_WITHDRAW_BODY: 'TOOLTIPS.VAULT.AVAILABLE_TO_WITHDRAW.BODY',
|
|
226
226
|
ESTIMATED_AMOUNT_RECEIVED_BODY: 'TOOLTIPS.VAULT.ESTIMATED_AMOUNT_RECEIVED.BODY',
|
|
227
227
|
ESTIMATED_SLIPPAGE_BODY: 'TOOLTIPS.VAULT.ESTIMATED_SLIPPAGE.BODY',
|
|
228
|
+
VAULT_APR_BODY: 'TOOLTIPS.VAULT.VAULT_APR.BODY',
|
|
228
229
|
YOUR_ALL_TIME_PNL_BODY: 'TOOLTIPS.VAULT.YOUR_ALL_TIME_PNL.BODY',
|
|
229
230
|
YOUR_VAULT_BALANCE_BODY: 'TOOLTIPS.VAULT.YOUR_VAULT_BALANCE.BODY',
|
|
230
231
|
|