@dydxprotocol/v4-localization 1.1.212 → 1.1.214
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.
|
@@ -388,6 +388,7 @@
|
|
|
388
388
|
"TRADING_REWARDS_SUMMARY": "Trading Rewards Summary",
|
|
389
389
|
"TRADING": "Trading",
|
|
390
390
|
"TRADING_ACCOUNT": "Trading Account",
|
|
391
|
+
"TRADING_ACCOUNT_BALANCE": "Trading Account Balance",
|
|
391
392
|
"TRAILING_STOP_SHORT": "Trailing",
|
|
392
393
|
"TRANSFER_IN": "Transfer In",
|
|
393
394
|
"TRANSFER_OUT": "Transfer Out",
|
|
@@ -1675,6 +1676,16 @@
|
|
|
1675
1676
|
"VIEW_MEGAVAULT": "View MegaVault",
|
|
1676
1677
|
"VAULT_EQUITY": "Vault Equity",
|
|
1677
1678
|
"VAULT_PNL": "Vault P&L",
|
|
1679
|
+
"MEGAVAULT_CANT_SUBMIT": "Unable to submit MegaVault transaction",
|
|
1680
|
+
"MEGAVAULT_CANT_SUBMIT_BODY": "Please adjust the amount and try again.",
|
|
1681
|
+
"MEGAVAULT_DEPOSIT_SUCCESSFUL": "MegaVault deposit successful",
|
|
1682
|
+
"MEGAVAULT_DEPOSIT_SUCCESSFUL_BODY": "You deposited {AMOUNT} in the MegaVault.",
|
|
1683
|
+
"MEGAVAULT_WITHDRAWAL_SUCCESSFUL": "MegaVault withdrawal successful",
|
|
1684
|
+
"MEGAVAULT_WITHDRAWAL_SUCCESSFUL_BODY": "You withdrew {AMOUNT} from the MegaVault.",
|
|
1685
|
+
"MEGAVAULT_DEPOSIT_FAILED": "MegaVault deposit failed",
|
|
1686
|
+
"MEGAVAULT_DEPOSIT_FAILED_BODY": "There was an error executing your deposit request.",
|
|
1687
|
+
"MEGAVAULT_WITHDRAWAL_FAILED": "MegaVault withdrawal failed",
|
|
1688
|
+
"MEGAVAULT_WITHDRAWAL_FAILED_BODY": "There was an error executing your withdrawal request.",
|
|
1678
1689
|
"YOUR_DEPOSITS_AND_WITHDRAWALS": "Your Deposits & Withdrawals",
|
|
1679
1690
|
"YOU_HAVE_NO_VAULT_DEPOSITS": "You have no vault deposits.",
|
|
1680
1691
|
"SLIPPAGE_ACK": "I understand that withdrawing now will result in {AMOUNT} slippage.",
|
package/package.json
CHANGED
package/scripts/generated/app.ts
CHANGED
|
@@ -680,6 +680,7 @@ export const APP_STRING_KEYS = {
|
|
|
680
680
|
TRADE_NOW: 'APP.GENERAL.TRADE_NOW',
|
|
681
681
|
TRADING: 'APP.GENERAL.TRADING',
|
|
682
682
|
TRADING_ACCOUNT: 'APP.GENERAL.TRADING_ACCOUNT',
|
|
683
|
+
TRADING_ACCOUNT_BALANCE: 'APP.GENERAL.TRADING_ACCOUNT_BALANCE',
|
|
683
684
|
TRADING_FEE_REDUCTION: 'APP.GENERAL.TRADING_FEE_REDUCTION',
|
|
684
685
|
TRADING_FEE_REDUCTION_DESCRIPTION_2: 'APP.GENERAL.TRADING_FEE_REDUCTION_DESCRIPTION_2',
|
|
685
686
|
TRADING_REWARDS: 'APP.GENERAL.TRADING_REWARDS',
|
|
@@ -1854,9 +1855,19 @@ export const APP_STRING_KEYS = {
|
|
|
1854
1855
|
EST_SLIPPAGE: 'APP.VAULTS.EST_SLIPPAGE',
|
|
1855
1856
|
LOCKED_BALANCE: 'APP.VAULTS.LOCKED_BALANCE',
|
|
1856
1857
|
MEGAVAULT: 'APP.VAULTS.MEGAVAULT',
|
|
1858
|
+
MEGAVAULT_CANT_SUBMIT: 'APP.VAULTS.MEGAVAULT_CANT_SUBMIT',
|
|
1859
|
+
MEGAVAULT_CANT_SUBMIT_BODY: 'APP.VAULTS.MEGAVAULT_CANT_SUBMIT_BODY',
|
|
1860
|
+
MEGAVAULT_DEPOSIT_FAILED: 'APP.VAULTS.MEGAVAULT_DEPOSIT_FAILED',
|
|
1861
|
+
MEGAVAULT_DEPOSIT_FAILED_BODY: 'APP.VAULTS.MEGAVAULT_DEPOSIT_FAILED_BODY',
|
|
1862
|
+
MEGAVAULT_DEPOSIT_SUCCESSFUL: 'APP.VAULTS.MEGAVAULT_DEPOSIT_SUCCESSFUL',
|
|
1863
|
+
MEGAVAULT_DEPOSIT_SUCCESSFUL_BODY: 'APP.VAULTS.MEGAVAULT_DEPOSIT_SUCCESSFUL_BODY',
|
|
1857
1864
|
MEGAVAULT_FAQS: 'APP.VAULTS.MEGAVAULT_FAQS',
|
|
1858
1865
|
MEGAVAULT_TRANSFERS: 'APP.VAULTS.MEGAVAULT_TRANSFERS',
|
|
1859
1866
|
MEGAVAULT_TRANSFERS_DESCRIPTION: 'APP.VAULTS.MEGAVAULT_TRANSFERS_DESCRIPTION',
|
|
1867
|
+
MEGAVAULT_WITHDRAWAL_FAILED: 'APP.VAULTS.MEGAVAULT_WITHDRAWAL_FAILED',
|
|
1868
|
+
MEGAVAULT_WITHDRAWAL_FAILED_BODY: 'APP.VAULTS.MEGAVAULT_WITHDRAWAL_FAILED_BODY',
|
|
1869
|
+
MEGAVAULT_WITHDRAWAL_SUCCESSFUL: 'APP.VAULTS.MEGAVAULT_WITHDRAWAL_SUCCESSFUL',
|
|
1870
|
+
MEGAVAULT_WITHDRAWAL_SUCCESSFUL_BODY: 'APP.VAULTS.MEGAVAULT_WITHDRAWAL_SUCCESSFUL_BODY',
|
|
1860
1871
|
PREVIEW_DEPOSIT: 'APP.VAULTS.PREVIEW_DEPOSIT',
|
|
1861
1872
|
PREVIEW_WITHDRAW: 'APP.VAULTS.PREVIEW_WITHDRAW',
|
|
1862
1873
|
PROTOCOL_VAULT: 'APP.VAULTS.PROTOCOL_VAULT',
|