@dydxprotocol/v4-localization 1.1.132 → 1.1.134
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.
|
@@ -302,6 +302,7 @@
|
|
|
302
302
|
"SOURCE_ADDRESS": "Source Address",
|
|
303
303
|
"STAKE": "Stake",
|
|
304
304
|
"STAKED": "Staked",
|
|
305
|
+
"STAKE_NOW": "Stake now",
|
|
305
306
|
"START_TRADING": "Start trading",
|
|
306
307
|
"STARTED_FROM_DATE": "Started {FROM_DATE}",
|
|
307
308
|
"STATISTICS": "Statistics",
|
|
@@ -2082,7 +2083,7 @@
|
|
|
2082
2083
|
"V4_TESTNET_IMPERATOR": "V4 Testnet 3(Imperator)"
|
|
2083
2084
|
},
|
|
2084
2085
|
"ERRORS": {
|
|
2085
|
-
"BROADCAST_ERROR_SDK_5": "There is not enough balance in your chain wallet to cover the transaction fees, please deposit additional funds
|
|
2086
|
+
"BROADCAST_ERROR_SDK_5": "There is not enough balance in your chain wallet to cover the transaction fees, please deposit additional funds.",
|
|
2086
2087
|
"BROADCAST_ERROR_CLOB_2000": "Fill Or Kill order could not be fully filled.",
|
|
2087
2088
|
"BROADCAST_ERROR_CLOB_2001": "Reduce-only orders cannot increase the position size.",
|
|
2088
2089
|
"BROADCAST_ERROR_CLOB_2002": "Reduce-only orders cannot change the position side.",
|
|
@@ -20,6 +20,10 @@
|
|
|
20
20
|
"TITLE": "FOK orders deprecated",
|
|
21
21
|
"BODY": "Fill-or-Kill (FOK) orders have been deprecated. All other order types continue to be available."
|
|
22
22
|
},
|
|
23
|
+
"IN_APP_STAKING_LIVE": {
|
|
24
|
+
"TITLE": "You can now stake DYDX!",
|
|
25
|
+
"BODY": "Receive USDC rewards."
|
|
26
|
+
},
|
|
23
27
|
"INCENTIVES_SEASON_BEGUN": {
|
|
24
28
|
"TITLE": "Season {SEASON_NUMBER} launch incentives program has begun!",
|
|
25
29
|
"BODY": "In season {PREV_SEASON_NUMBER}, median rewards earned were {DYDX_AMOUNT} DYDX (~{USDC_AMOUNT} USDC)!"
|
package/package.json
CHANGED
package/scripts/generated/app.ts
CHANGED
|
@@ -363,6 +363,7 @@ export const APP_STRING_KEYS = {
|
|
|
363
363
|
ESTIMATED: 'APP.GENERAL.ESTIMATED',
|
|
364
364
|
EST_APR: 'APP.GENERAL.EST_APR',
|
|
365
365
|
EST_GAS: 'APP.GENERAL.EST_GAS',
|
|
366
|
+
EST_REWARDS: 'APP.GENERAL.EST_REWARDS',
|
|
366
367
|
EXPAND: 'APP.GENERAL.EXPAND',
|
|
367
368
|
EXPAND_SECTION: 'APP.GENERAL.EXPAND_SECTION',
|
|
368
369
|
FAST_WITHDRAW: 'APP.GENERAL.FAST_WITHDRAW',
|
|
@@ -524,6 +525,7 @@ export const APP_STRING_KEYS = {
|
|
|
524
525
|
SOURCE_ADDRESS: 'APP.GENERAL.SOURCE_ADDRESS',
|
|
525
526
|
STAKE: 'APP.GENERAL.STAKE',
|
|
526
527
|
STAKED: 'APP.GENERAL.STAKED',
|
|
528
|
+
STAKE_NOW: 'APP.GENERAL.STAKE_NOW',
|
|
527
529
|
STARTED_FROM_DATE: 'APP.GENERAL.STARTED_FROM_DATE',
|
|
528
530
|
START_TRADING: 'APP.GENERAL.START_TRADING',
|
|
529
531
|
STATISTICS: 'APP.GENERAL.STATISTICS',
|
|
@@ -19,6 +19,8 @@ export const NOTIFICATIONS_STRING_KEYS = {
|
|
|
19
19
|
FOK_DEPRECATION_TITLE: 'NOTIFICATIONS.FOK_DEPRECATION.TITLE',
|
|
20
20
|
INCENTIVES_SEASON_BEGUN_BODY: 'NOTIFICATIONS.INCENTIVES_SEASON_BEGUN.BODY',
|
|
21
21
|
INCENTIVES_SEASON_BEGUN_TITLE: 'NOTIFICATIONS.INCENTIVES_SEASON_BEGUN.TITLE',
|
|
22
|
+
IN_APP_STAKING_LIVE_BODY: 'NOTIFICATIONS.IN_APP_STAKING_LIVE.BODY',
|
|
23
|
+
IN_APP_STAKING_LIVE_TITLE: 'NOTIFICATIONS.IN_APP_STAKING_LIVE.TITLE',
|
|
22
24
|
ISOLATED_MARGIN_LIVE_BODY: 'NOTIFICATIONS.ISOLATED_MARGIN_LIVE.BODY',
|
|
23
25
|
ISOLATED_MARGIN_LIVE_TITLE: 'NOTIFICATIONS.ISOLATED_MARGIN_LIVE.TITLE',
|
|
24
26
|
LIQUIDATION_BODY: 'NOTIFICATIONS.LIQUIDATION.BODY',
|