@dydxprotocol/v4-localization 1.1.118 → 1.1.120
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.
|
@@ -132,6 +132,7 @@
|
|
|
132
132
|
"EMAIL": "Email",
|
|
133
133
|
"ENDED": "Ended",
|
|
134
134
|
"EQUITY": "Equity",
|
|
135
|
+
"EST_APR": "Est. {PERCENTAGE} APR",
|
|
135
136
|
"EST_GAS": "Est. Gas",
|
|
136
137
|
"ESTIMATED": "Estimated",
|
|
137
138
|
"EXPAND_SECTION": "Expand section",
|
|
@@ -989,7 +990,9 @@
|
|
|
989
990
|
"AMOUNT_TO_STAKE": "Amount to Stake",
|
|
990
991
|
"SELECTED_VALIDATOR": "Selected Validator",
|
|
991
992
|
"ENTER_AMOUNT_TO_STAKE": "Enter amount to stake",
|
|
992
|
-
"
|
|
993
|
+
"KEPLR_DASHBOARD": "Keplr Dashboard",
|
|
994
|
+
"STAKED_BALANCE": "Staked Balance",
|
|
995
|
+
"STAKING_LEGAL_DISCLAIMER": "You are staking your assets to a validator node operated by a third party. The operator of this site is not responsible for such staking services provided by third parties. Stake to another validator with {KEPLR_DASHBOARD_LINK} or liquid stake with {STRIDE_LINK}."
|
|
993
996
|
},
|
|
994
997
|
"UNSTAKE_MODAL": {
|
|
995
998
|
"CURRENTLY_STAKING": "You're currently staking {AMOUNT}",
|
|
@@ -335,6 +335,12 @@
|
|
|
335
335
|
"BODY": "dYdX supports two types of withdraws from Layer 2. Fast withdraws carry a small fee but do not require gas and are sent immediately. Slow withdraws are free but require two steps, take much longer, and the user will have to pay their own gas fees."
|
|
336
336
|
}
|
|
337
337
|
},
|
|
338
|
+
"STAKE": {
|
|
339
|
+
"VALIDATOR_SELECTION": {
|
|
340
|
+
"TITLE": "Selected Validator",
|
|
341
|
+
"BODY": "Selection is based on lowest stake weight from a pre-configured set of validators."
|
|
342
|
+
}
|
|
343
|
+
},
|
|
338
344
|
"EMAIL_NOTIFICATIONS": {
|
|
339
345
|
"VERIFY_EMAIL": {
|
|
340
346
|
"TITLE": "Verify email address",
|
package/package.json
CHANGED
package/scripts/generated/app.ts
CHANGED
|
@@ -359,6 +359,7 @@ export const APP_STRING_KEYS = {
|
|
|
359
359
|
ENDED: 'APP.GENERAL.ENDED',
|
|
360
360
|
EQUITY: 'APP.GENERAL.EQUITY',
|
|
361
361
|
ESTIMATED: 'APP.GENERAL.ESTIMATED',
|
|
362
|
+
EST_APR: 'APP.GENERAL.EST_APR',
|
|
362
363
|
EST_GAS: 'APP.GENERAL.EST_GAS',
|
|
363
364
|
EXPAND: 'APP.GENERAL.EXPAND',
|
|
364
365
|
EXPAND_SECTION: 'APP.GENERAL.EXPAND_SECTION',
|
|
@@ -1274,9 +1275,11 @@ export const APP_STRING_KEYS = {
|
|
|
1274
1275
|
|
|
1275
1276
|
AMOUNT_TO_STAKE: 'APP.STAKE_MODAL.AMOUNT_TO_STAKE',
|
|
1276
1277
|
ENTER_AMOUNT_TO_STAKE: 'APP.STAKE_MODAL.ENTER_AMOUNT_TO_STAKE',
|
|
1278
|
+
KEPLR_DASHBOARD: 'APP.STAKE_MODAL.KEPLR_DASHBOARD',
|
|
1277
1279
|
SELECTED_VALIDATOR: 'APP.STAKE_MODAL.SELECTED_VALIDATOR',
|
|
1278
1280
|
STAKED_BALANCE: 'APP.STAKE_MODAL.STAKED_BALANCE',
|
|
1279
1281
|
STAKE_DESCRIPTION: 'APP.STAKE_MODAL.STAKE_DESCRIPTION',
|
|
1282
|
+
STAKING_LEGAL_DISCLAIMER: 'APP.STAKE_MODAL.STAKING_LEGAL_DISCLAIMER',
|
|
1280
1283
|
|
|
1281
1284
|
// STAKING_REWARDS
|
|
1282
1285
|
|
|
@@ -46,6 +46,11 @@ export const TOOLTIP_STRING_KEYS = {
|
|
|
46
46
|
HOLDING_HEDGIES_BODY: 'TOOLTIPS.PORTFOLIO.HOLDING_HEDGIES.BODY',
|
|
47
47
|
HOLDING_HEDGIES_TITLE: 'TOOLTIPS.PORTFOLIO.HOLDING_HEDGIES.TITLE',
|
|
48
48
|
|
|
49
|
+
// STAKE
|
|
50
|
+
|
|
51
|
+
VALIDATOR_SELECTION_BODY: 'TOOLTIPS.STAKE.VALIDATOR_SELECTION.BODY',
|
|
52
|
+
VALIDATOR_SELECTION_TITLE: 'TOOLTIPS.STAKE.VALIDATOR_SELECTION.TITLE',
|
|
53
|
+
|
|
49
54
|
// TOKEN_MIGRATION
|
|
50
55
|
|
|
51
56
|
DYDX_CHAIN_SETTLEMENT_BODY: 'TOOLTIPS.TOKEN_MIGRATION.DYDX_CHAIN_SETTLEMENT.BODY',
|