@dydxprotocol/v4-localization 1.1.133 → 1.1.135
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.
|
@@ -205,6 +205,7 @@
|
|
|
205
205
|
"MAKE_ONE_TRADE": "Make 1 trade",
|
|
206
206
|
"MANAGE_FUNDS": "Manage funds",
|
|
207
207
|
"MARGIN": "Margin",
|
|
208
|
+
"MARGIN_WITH_MODE": "Margin ({MODE})",
|
|
208
209
|
"MARGIN_MODE": "Margin Mode",
|
|
209
210
|
"MARGIN_USAGE": "Margin Usage",
|
|
210
211
|
"MARKET_NAME": "Market Name",
|
|
@@ -302,6 +303,7 @@
|
|
|
302
303
|
"SOURCE_ADDRESS": "Source Address",
|
|
303
304
|
"STAKE": "Stake",
|
|
304
305
|
"STAKED": "Staked",
|
|
306
|
+
"STAKE_NOW": "Stake now",
|
|
305
307
|
"START_TRADING": "Start trading",
|
|
306
308
|
"STARTED_FROM_DATE": "Started {FROM_DATE}",
|
|
307
309
|
"STATISTICS": "Statistics",
|
|
@@ -1226,6 +1228,7 @@
|
|
|
1226
1228
|
"CURRENTLY_TRADING_GOERLI": "You are trading on our Goerli testnet app with test funds. Create an account on our mainnet app to start trading with real funds",
|
|
1227
1229
|
"CURRENTLY_TRADING_ROPSTEN": "You are trading on our Ropsten testnet app with test funds. Create an account on our mainnet app to start trading with real funds",
|
|
1228
1230
|
"DELEVERAGED": "Deleveraged",
|
|
1231
|
+
"EDIT_MARGIN": "Edit margin",
|
|
1229
1232
|
"EDIT_STOP_LOSS": "Edit stop loss",
|
|
1230
1233
|
"EDIT_TAKE_PROFIT": "Edit take profit",
|
|
1231
1234
|
"EDIT_TAKE_PROFIT_STOP_LOSS_TRIGGERS": "Edit Take Profit / Stop Loss triggers",
|
|
@@ -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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// !! GENERATED FILE - DO NOT EDIT
|
|
2
2
|
|
|
3
|
-
// Generated from ../config/localization/en/app.json using codegen_localization_app.swift
|
|
3
|
+
// Generated from ../config/localization/en/app.json using ./codegen_localization_app.swift
|
|
4
4
|
|
|
5
5
|
export const APP_STRING_KEYS = {
|
|
6
6
|
|
|
@@ -525,6 +525,7 @@ export const APP_STRING_KEYS = {
|
|
|
525
525
|
SOURCE_ADDRESS: 'APP.GENERAL.SOURCE_ADDRESS',
|
|
526
526
|
STAKE: 'APP.GENERAL.STAKE',
|
|
527
527
|
STAKED: 'APP.GENERAL.STAKED',
|
|
528
|
+
STAKE_NOW: 'APP.GENERAL.STAKE_NOW',
|
|
528
529
|
STARTED_FROM_DATE: 'APP.GENERAL.STARTED_FROM_DATE',
|
|
529
530
|
START_TRADING: 'APP.GENERAL.START_TRADING',
|
|
530
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',
|