@dydxprotocol/v4-localization 1.1.297 → 1.1.299
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.
- package/config/localization/en/app.json +3 -0
- package/config/localization/en/tooltips.json +4 -0
- package/config/localization_notifications/en/app.json +4 -0
- package/package.json +1 -1
- package/scripts/generated/app.ts +3 -0
- package/scripts/generated/notifications.ts +2 -0
- package/scripts/generated/tooltips.ts +2 -0
|
@@ -782,6 +782,8 @@
|
|
|
782
782
|
}
|
|
783
783
|
},
|
|
784
784
|
"AFFILIATES": {
|
|
785
|
+
"AFFILIATE_BOOSTER_BODY": "Earn up to ${WEEKLY_AMOUNT} per week. Find out more {HERE_LINK}.",
|
|
786
|
+
"AFFILIATE_BOOSTER_LIVE": "Affiliate Booster Program is live - weekly rewards for eligible affiliates.",
|
|
785
787
|
"AFFILIATE_CHART_EMPTY_STATE": "There is no data available",
|
|
786
788
|
"AFFILIATE_CONNECT_WALLET": "Please connect your wallet to check your rankings",
|
|
787
789
|
"AFFILIATE_EARNINGS": "Affiliate Earnings",
|
|
@@ -814,6 +816,7 @@
|
|
|
814
816
|
"EARN_USDC_DISCRIPTION": "Take advantage of staking and other products to earn USDC.",
|
|
815
817
|
"EARN_USDC": "Earn USDC",
|
|
816
818
|
"FEES_REFERRED": "Fees Referred",
|
|
819
|
+
"GET_YOUR_AFFILIATE_LINK": "Get your affiliate link",
|
|
817
820
|
"HAS_REFERRED_YOU": "has referred you to start trading on the world's most powerful open exchange.",
|
|
818
821
|
"INVITE_FRIENDS": "Invite Friends",
|
|
819
822
|
"LIGHTNING_FAST_DISCRIPTION": "The most seamless and powerful experience in DeFi.",
|
|
@@ -116,6 +116,10 @@
|
|
|
116
116
|
"TITLE": "Limit Close",
|
|
117
117
|
"BODY": "A limit close may not happen instantly, and will only be filled once the entered price is hit. Monitor the Orders tab to check its status."
|
|
118
118
|
},
|
|
119
|
+
"IOC_LIMIT_CLOSE": {
|
|
120
|
+
"TITLE": "Limit Close",
|
|
121
|
+
"BODY": "A limit close will execute immediately or cancel the order. The limit price should be used to customize the amount of slippage tolerated for a close position order. If you would like to close a position when a price is reached, set take profit or stop loss orders instead."
|
|
122
|
+
},
|
|
119
123
|
"LIMIT_PRICE": {
|
|
120
124
|
"TITLE": "Limit Price",
|
|
121
125
|
"BODY": "This order can only be filled at the specified limit price or better. If your order crosses at the time of placement, your order will fill any crossing orders at the most favorable price."
|
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"NOTIFICATIONS": {
|
|
3
|
+
"AFFILIATE_BOOSTER": {
|
|
4
|
+
"TITLE": "Booster Program Now Live",
|
|
5
|
+
"BODY": "Affiliates can now participate in a new 4-week Booster Program offering weekly rewards based on new user referrals. Check your eligibility and see how it works {HERE_LINK}."
|
|
6
|
+
},
|
|
3
7
|
"BLOCK_REWARD": {
|
|
4
8
|
"TITLE": "Reward Earned",
|
|
5
9
|
"BODY": "You have earned {BLOCK_REWARD_AMOUNT} {TOKEN_NAME} trading reward."
|
package/package.json
CHANGED
package/scripts/generated/app.ts
CHANGED
|
@@ -9,6 +9,8 @@ export const APP_STRING_KEYS = {
|
|
|
9
9
|
AFFILIATES: 'APP.AFFILIATES.AFFILIATES',
|
|
10
10
|
AFFILIATES_LEADERBOARD: 'APP.AFFILIATES.AFFILIATES_LEADERBOARD',
|
|
11
11
|
AFFILIATES_PROGRAM: 'APP.AFFILIATES.AFFILIATES_PROGRAM',
|
|
12
|
+
AFFILIATE_BOOSTER_BODY: 'APP.AFFILIATES.AFFILIATE_BOOSTER_BODY',
|
|
13
|
+
AFFILIATE_BOOSTER_LIVE: 'APP.AFFILIATES.AFFILIATE_BOOSTER_LIVE',
|
|
12
14
|
AFFILIATE_CHART_EMPTY_STATE: 'APP.AFFILIATES.AFFILIATE_CHART_EMPTY_STATE',
|
|
13
15
|
AFFILIATE_CONNECT_WALLET: 'APP.AFFILIATES.AFFILIATE_CONNECT_WALLET',
|
|
14
16
|
AFFILIATE_EARNINGS: 'APP.AFFILIATES.AFFILIATE_EARNINGS',
|
|
@@ -38,6 +40,7 @@ export const APP_STRING_KEYS = {
|
|
|
38
40
|
EARN_USDC: 'APP.AFFILIATES.EARN_USDC',
|
|
39
41
|
EARN_USDC_DISCRIPTION: 'APP.AFFILIATES.EARN_USDC_DISCRIPTION',
|
|
40
42
|
FEES_REFERRED: 'APP.AFFILIATES.FEES_REFERRED',
|
|
43
|
+
GET_YOUR_AFFILIATE_LINK: 'APP.AFFILIATES.GET_YOUR_AFFILIATE_LINK',
|
|
41
44
|
HAS_REFERRED_YOU: 'APP.AFFILIATES.HAS_REFERRED_YOU',
|
|
42
45
|
INVITE_FRIENDS: 'APP.AFFILIATES.INVITE_FRIENDS',
|
|
43
46
|
LIGHTNING_FAST: 'APP.AFFILIATES.LIGHTNING_FAST',
|
|
@@ -3,6 +3,8 @@
|
|
|
3
3
|
// Generated from ../config/localization_notifications/en/app.json using ../config/localization_notifications/en/app.json
|
|
4
4
|
|
|
5
5
|
export const NOTIFICATIONS_STRING_KEYS = {
|
|
6
|
+
AFFILIATE_BOOSTER_BODY: 'NOTIFICATIONS.AFFILIATE_BOOSTER.BODY',
|
|
7
|
+
AFFILIATE_BOOSTER_TITLE: 'NOTIFICATIONS.AFFILIATE_BOOSTER.TITLE',
|
|
6
8
|
BLOCK_REWARD_BODY: 'NOTIFICATIONS.BLOCK_REWARD.BODY',
|
|
7
9
|
BLOCK_REWARD_TITLE: 'NOTIFICATIONS.BLOCK_REWARD.TITLE',
|
|
8
10
|
CANCEL_OLD_TRIGGERS_BODY: 'NOTIFICATIONS.CANCEL_OLD_TRIGGERS.BODY',
|
|
@@ -110,6 +110,8 @@ export const TOOLTIP_STRING_KEYS = {
|
|
|
110
110
|
INITIAL_MARGIN_FRACTION_TITLE: 'TOOLTIPS.TRADE.INITIAL_MARGIN_FRACTION.TITLE',
|
|
111
111
|
INITIAL_STOP_BODY: 'TOOLTIPS.TRADE.INITIAL_STOP.BODY',
|
|
112
112
|
INITIAL_STOP_TITLE: 'TOOLTIPS.TRADE.INITIAL_STOP.TITLE',
|
|
113
|
+
IOC_LIMIT_CLOSE_BODY: 'TOOLTIPS.TRADE.IOC_LIMIT_CLOSE.BODY',
|
|
114
|
+
IOC_LIMIT_CLOSE_TITLE: 'TOOLTIPS.TRADE.IOC_LIMIT_CLOSE.TITLE',
|
|
113
115
|
LEVERAGE_BODY: 'TOOLTIPS.TRADE.LEVERAGE.BODY',
|
|
114
116
|
LEVERAGE_TITLE: 'TOOLTIPS.TRADE.LEVERAGE.TITLE',
|
|
115
117
|
LIMIT_CLOSE_BODY: 'TOOLTIPS.TRADE.LIMIT_CLOSE.BODY',
|