@dydxprotocol/v4-localization 1.1.239 → 1.1.240
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.
|
@@ -1347,6 +1347,7 @@
|
|
|
1347
1347
|
"UNTIL_NEXT_EPOCH_ON_DATE": "until the next epoch on {NEXT_EPOCH_DATE}",
|
|
1348
1348
|
"VIEW_FEES": "View fees",
|
|
1349
1349
|
"VIEW_FEE_STRUCTURE": "View fee structure",
|
|
1350
|
+
"VIEW_FILLS": "View fills",
|
|
1350
1351
|
"VIEW_REWARDS": "View rewards"
|
|
1351
1352
|
},
|
|
1352
1353
|
"TRADE": {
|
|
@@ -2318,9 +2319,13 @@
|
|
|
2318
2319
|
"LEVERAGE_TRADE_EVENTS": "Leverage Trade Event Outcomes",
|
|
2319
2320
|
"LEVERAGE_TRADE_EVENTS_CONTINUATION": "On a wide range of topics, including politics, sports, pop culture, and more.",
|
|
2320
2321
|
"LEVERAGE_TRADE_US_ELECTION": "Leverage trade the outcome of the U.S. Election",
|
|
2322
|
+
"PREDICTION_MARKET_CONCLUDED": "{MARKET} has concluded",
|
|
2323
|
+
"PREDICTION_MARKET_CONCLUDED_DESC": "The {MARKET} Prediction Market has reached a conclusion and has settled.",
|
|
2321
2324
|
"PREDICTION_MARKET_DESC": "Prediction Markets will settle at $1 if the event occurs as predicted. Otherwise, they will settle at $0.",
|
|
2322
2325
|
"PREDICTION_MARKETS": "Prediction Markets",
|
|
2323
2326
|
"PREDICTION_MARKET_DISCLAIMER": "Prediction markets have a higher risk of volatility and may result in deleveraging. Read more about prediction markets {HERE}",
|
|
2327
|
+
"PREDICTION_MARKET_WIN": "You have correctly predicted the outcome of {MARKET}!",
|
|
2328
|
+
"PREDICTION_MARKET_LOSS": "You have incorrectly predicted the outcome of {MARKET}.",
|
|
2324
2329
|
"TRADE_US_PRESIDENTIAL_ELECTION": "Trade the U.S. Presidential Election",
|
|
2325
2330
|
"TRUMPWIN_DESC": "This is a Prediction Market and will settle at $1 if Donald J. Trump wins the 2024 U.S. Presidential Election. Otherwise, it will settle at $0. {LEARN_MORE} or {DISMISS}."
|
|
2326
2331
|
}
|
package/package.json
CHANGED
package/scripts/generated/app.ts
CHANGED
|
@@ -1340,6 +1340,7 @@ export const APP_STRING_KEYS = {
|
|
|
1340
1340
|
UNTIL_NEXT_EPOCH_ON_DATE: 'APP.PORTFOLIO.UNTIL_NEXT_EPOCH_ON_DATE',
|
|
1341
1341
|
VIEW_FEES: 'APP.PORTFOLIO.VIEW_FEES',
|
|
1342
1342
|
VIEW_FEE_STRUCTURE: 'APP.PORTFOLIO.VIEW_FEE_STRUCTURE',
|
|
1343
|
+
VIEW_FILLS: 'APP.PORTFOLIO.VIEW_FILLS',
|
|
1343
1344
|
VIEW_REWARDS: 'APP.PORTFOLIO.VIEW_REWARDS',
|
|
1344
1345
|
|
|
1345
1346
|
// PREDICTION_MARKET
|
|
@@ -1350,8 +1351,12 @@ export const APP_STRING_KEYS = {
|
|
|
1350
1351
|
LEVERAGE_TRADE_EVENTS_CONTINUATION: 'APP.PREDICTION_MARKET.LEVERAGE_TRADE_EVENTS_CONTINUATION',
|
|
1351
1352
|
LEVERAGE_TRADE_US_ELECTION: 'APP.PREDICTION_MARKET.LEVERAGE_TRADE_US_ELECTION',
|
|
1352
1353
|
PREDICTION_MARKETS: 'APP.PREDICTION_MARKET.PREDICTION_MARKETS',
|
|
1354
|
+
PREDICTION_MARKET_CONCLUDED: 'APP.PREDICTION_MARKET.PREDICTION_MARKET_CONCLUDED',
|
|
1355
|
+
PREDICTION_MARKET_CONCLUDED_DESC: 'APP.PREDICTION_MARKET.PREDICTION_MARKET_CONCLUDED_DESC',
|
|
1353
1356
|
PREDICTION_MARKET_DESC: 'APP.PREDICTION_MARKET.PREDICTION_MARKET_DESC',
|
|
1354
1357
|
PREDICTION_MARKET_DISCLAIMER: 'APP.PREDICTION_MARKET.PREDICTION_MARKET_DISCLAIMER',
|
|
1358
|
+
PREDICTION_MARKET_LOSS: 'APP.PREDICTION_MARKET.PREDICTION_MARKET_LOSS',
|
|
1359
|
+
PREDICTION_MARKET_WIN: 'APP.PREDICTION_MARKET.PREDICTION_MARKET_WIN',
|
|
1355
1360
|
TRADE_US_PRESIDENTIAL_ELECTION: 'APP.PREDICTION_MARKET.TRADE_US_PRESIDENTIAL_ELECTION',
|
|
1356
1361
|
TRUMPWIN_DESC: 'APP.PREDICTION_MARKET.TRUMPWIN_DESC',
|
|
1357
1362
|
|