@dydxprotocol/v4-localization 1.1.190 → 1.1.191
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.
|
@@ -1199,6 +1199,7 @@
|
|
|
1199
1199
|
"LAUNCH_INCENTIVES_SEASON_NUM": "Season {SEASON_NUMBER}",
|
|
1200
1200
|
"LAUNCH_INCENTIVES_SEASON_REWARDS": "Season {SEASON_NUMBER} rewards",
|
|
1201
1201
|
"LAUNCH_INCENTIVES_SEASON_SUMMARY": "{NUM_POINTS} received during Season {SEASON_NUMBER}, which ended on {PAST_DATE}.",
|
|
1202
|
+
"LAUNCH_INCENTIVES_TOTAL_REWARDS": "Total Rewards",
|
|
1202
1203
|
"LEADERBOARD": "Leaderboard",
|
|
1203
1204
|
"LEARN_TO_EXPORT": "{STRONG_NO}, learn how to export my secret phrase.",
|
|
1204
1205
|
"MAKER_MARKET_SHARE": "maker market share",
|
|
@@ -32,6 +32,10 @@
|
|
|
32
32
|
"TITLE": "Season {SEASON_NUMBER} has begun!",
|
|
33
33
|
"BODY": "In season {PREV_SEASON_NUMBER}, median rewards earned were {DYDX_AMOUNT} DYDX (~{USDC_AMOUNT} USDC)!"
|
|
34
34
|
},
|
|
35
|
+
"INCENTIVES_SEASON_ENDED": {
|
|
36
|
+
"TITLE": "Season {SEASON_NUMBER} has ended!",
|
|
37
|
+
"BODY": "Thanks for participating in the launch incentives program. Stay tuned for updates on future reward programs!"
|
|
38
|
+
},
|
|
35
39
|
"ISOLATED_MARGIN_LIVE": {
|
|
36
40
|
"TITLE": "Isolated Margin is live",
|
|
37
41
|
"BODY": "Isolated Margin is now live! To learn more, head {LEARN_MORE}."
|
package/package.json
CHANGED
package/scripts/generated/app.ts
CHANGED
|
@@ -1161,6 +1161,7 @@ export const APP_STRING_KEYS = {
|
|
|
1161
1161
|
LAUNCH_INCENTIVES_SEASON_REWARDS: 'APP.PORTFOLIO.LAUNCH_INCENTIVES_SEASON_REWARDS',
|
|
1162
1162
|
LAUNCH_INCENTIVES_SEASON_SUMMARY: 'APP.PORTFOLIO.LAUNCH_INCENTIVES_SEASON_SUMMARY',
|
|
1163
1163
|
LAUNCH_INCENTIVES_TITLE: 'APP.PORTFOLIO.LAUNCH_INCENTIVES_TITLE',
|
|
1164
|
+
LAUNCH_INCENTIVES_TOTAL_REWARDS: 'APP.PORTFOLIO.LAUNCH_INCENTIVES_TOTAL_REWARDS',
|
|
1164
1165
|
LEADERBOARD: 'APP.PORTFOLIO.LEADERBOARD',
|
|
1165
1166
|
LEARN_TO_EXPORT: 'APP.PORTFOLIO.LEARN_TO_EXPORT',
|
|
1166
1167
|
MAKER_MARKET_SHARE: 'APP.PORTFOLIO.MAKER_MARKET_SHARE',
|
|
@@ -21,6 +21,8 @@ export const NOTIFICATIONS_STRING_KEYS = {
|
|
|
21
21
|
FOK_DEPRECATION_TITLE: 'NOTIFICATIONS.FOK_DEPRECATION.TITLE',
|
|
22
22
|
INCENTIVES_SEASON_BEGUN_BODY: 'NOTIFICATIONS.INCENTIVES_SEASON_BEGUN.BODY',
|
|
23
23
|
INCENTIVES_SEASON_BEGUN_TITLE: 'NOTIFICATIONS.INCENTIVES_SEASON_BEGUN.TITLE',
|
|
24
|
+
INCENTIVES_SEASON_ENDED_BODY: 'NOTIFICATIONS.INCENTIVES_SEASON_ENDED.BODY',
|
|
25
|
+
INCENTIVES_SEASON_ENDED_TITLE: 'NOTIFICATIONS.INCENTIVES_SEASON_ENDED.TITLE',
|
|
24
26
|
IN_APP_STAKING_LIVE_BODY: 'NOTIFICATIONS.IN_APP_STAKING_LIVE.BODY',
|
|
25
27
|
IN_APP_STAKING_LIVE_TITLE: 'NOTIFICATIONS.IN_APP_STAKING_LIVE.TITLE',
|
|
26
28
|
ISOLATED_MARGIN_LIVE_BODY: 'NOTIFICATIONS.ISOLATED_MARGIN_LIVE.BODY',
|