@dydxprotocol/v4-localization 1.1.118 → 1.1.119
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.
|
@@ -989,7 +989,8 @@
|
|
|
989
989
|
"AMOUNT_TO_STAKE": "Amount to Stake",
|
|
990
990
|
"SELECTED_VALIDATOR": "Selected Validator",
|
|
991
991
|
"ENTER_AMOUNT_TO_STAKE": "Enter amount to stake",
|
|
992
|
-
"STAKED_BALANCE": "Staked Balance"
|
|
992
|
+
"STAKED_BALANCE": "Staked Balance",
|
|
993
|
+
"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
994
|
},
|
|
994
995
|
"UNSTAKE_MODAL": {
|
|
995
996
|
"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
|
@@ -1277,6 +1277,7 @@ export const APP_STRING_KEYS = {
|
|
|
1277
1277
|
SELECTED_VALIDATOR: 'APP.STAKE_MODAL.SELECTED_VALIDATOR',
|
|
1278
1278
|
STAKED_BALANCE: 'APP.STAKE_MODAL.STAKED_BALANCE',
|
|
1279
1279
|
STAKE_DESCRIPTION: 'APP.STAKE_MODAL.STAKE_DESCRIPTION',
|
|
1280
|
+
STAKING_LEGAL_DISCLAIMER: 'APP.STAKE_MODAL.STAKING_LEGAL_DISCLAIMER',
|
|
1280
1281
|
|
|
1281
1282
|
// STAKING_REWARDS
|
|
1282
1283
|
|
|
@@ -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',
|