@dydxprotocol/v4-localization 1.1.109 → 1.1.111
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.
|
@@ -45,6 +45,7 @@
|
|
|
45
45
|
"ACTION": "Action",
|
|
46
46
|
"ACTIONS": "Actions",
|
|
47
47
|
"ACTIVE": "Active",
|
|
48
|
+
"ADD": "Add →",
|
|
48
49
|
"ADDING": "Adding",
|
|
49
50
|
"ADDRESS": "Address",
|
|
50
51
|
"ADVANCED": "Advanced",
|
|
@@ -2260,7 +2261,7 @@
|
|
|
2260
2261
|
"TRANSFER_MORE_THAN_FREE": "You cannot transfer more than your free collateral.",
|
|
2261
2262
|
"TRANSFER_TO_YOURSELF": "You cannot complete a direct transfer to your own wallet address.",
|
|
2262
2263
|
"TRANSFER_INSUFFICIENT_GAS": "The USDC balance {USDC_BALANCE} in your chain wallet may not cover the transaction fees. Please deposit additional funds.",
|
|
2263
|
-
"TRANSFER_WITHOUT_MEMO": "Transferring to a centralized exchange without
|
|
2264
|
+
"TRANSFER_WITHOUT_MEMO": "Transferring to a centralized exchange without the memo they have provided you can result in a loss of funds."
|
|
2264
2265
|
},
|
|
2265
2266
|
"ADJUST_ISOLATED_MARGIN": {
|
|
2266
2267
|
"ISOLATED_MARGIN_ADJUSTMENT_MORE_THAN_FREE": "You cannot transfer more than your free collateral.",
|
|
@@ -147,6 +147,14 @@
|
|
|
147
147
|
"TAKE_PROFIT_TRIGGER_REMOVED": {
|
|
148
148
|
"TITLE": "Take Profit",
|
|
149
149
|
"BODY": "Your take profit trigger at {OLD_VALUE} has been removed."
|
|
150
|
+
},
|
|
151
|
+
"TWO_MARKET_WIND_DOWN": {
|
|
152
|
+
"TITLE": "{MARKET_1} and {MARKET_2} markets wound down",
|
|
153
|
+
"BODY": "At block {BLOCK_NUMBER} {DATE}, the {MARKET_1} and {MARKET_2} markets went through final settlement. Existing positions have been closed and open orders have now been canceled. You can find more information regarding the final settlement {HERE_LINK}."
|
|
154
|
+
},
|
|
155
|
+
"TWO_MARKET_WIND_DOWN_PROPOSAL": {
|
|
156
|
+
"TITLE": "Live proposal to wind down {MARKET_1} and {MARKET_2} markets",
|
|
157
|
+
"BODY": "There is currently a live proposal to wind down the {MARKET_1} and {MARKET_2} markets. If passed, the {MARKET_1} and {MARKET_2} markets will enter final settlement at block {BLOCK_NUMBER} {DATE}. Existing positions will be closed and open orders will be canceled. You can find more information regarding the proposal {HERE_LINK}."
|
|
150
158
|
}
|
|
151
159
|
}
|
|
152
160
|
}
|
|
@@ -344,7 +344,8 @@
|
|
|
344
344
|
},
|
|
345
345
|
"DIRECT_TRANSFER_MODAL": {
|
|
346
346
|
"ENTER_ETH_ADDRESS": "Enter wallet address",
|
|
347
|
-
"ENTER_TRANSFER_AMOUNT": "Enter transfer amount"
|
|
347
|
+
"ENTER_TRANSFER_AMOUNT": "Enter transfer amount",
|
|
348
|
+
"REQUIRED_FOR_CEX": "Required for Centralized Exchanges"
|
|
348
349
|
},
|
|
349
350
|
"FIAT_ONRAMP": {
|
|
350
351
|
"NEW": "New!",
|
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
|
|
|
@@ -267,6 +267,7 @@ export const APP_STRING_KEYS = {
|
|
|
267
267
|
ACTION: 'APP.GENERAL.ACTION',
|
|
268
268
|
ACTIONS: 'APP.GENERAL.ACTIONS',
|
|
269
269
|
ACTIVE: 'APP.GENERAL.ACTIVE',
|
|
270
|
+
ADD: 'APP.GENERAL.ADD',
|
|
270
271
|
ADDING: 'APP.GENERAL.ADDING',
|
|
271
272
|
ADDRESS: 'APP.GENERAL.ADDRESS',
|
|
272
273
|
ADD_NEW_MARKET: 'APP.GENERAL.ADD_NEW_MARKET',
|
|
@@ -77,5 +77,9 @@ export const NOTIFICATIONS_STRING_KEYS = {
|
|
|
77
77
|
TAKE_PROFIT_TRIGGER_UPDATING_TITLE: 'NOTIFICATIONS.TAKE_PROFIT_TRIGGER_UPDATING.TITLE',
|
|
78
78
|
TAKE_PROFIT_TRIGGER_UPDATING_ERROR_BODY: 'NOTIFICATIONS.TAKE_PROFIT_TRIGGER_UPDATING_ERROR.BODY',
|
|
79
79
|
TAKE_PROFIT_TRIGGER_UPDATING_ERROR_TITLE: 'NOTIFICATIONS.TAKE_PROFIT_TRIGGER_UPDATING_ERROR.TITLE',
|
|
80
|
+
TWO_MARKET_WIND_DOWN_BODY: 'NOTIFICATIONS.TWO_MARKET_WIND_DOWN.BODY',
|
|
81
|
+
TWO_MARKET_WIND_DOWN_TITLE: 'NOTIFICATIONS.TWO_MARKET_WIND_DOWN.TITLE',
|
|
82
|
+
TWO_MARKET_WIND_DOWN_PROPOSAL_BODY: 'NOTIFICATIONS.TWO_MARKET_WIND_DOWN_PROPOSAL.BODY',
|
|
83
|
+
TWO_MARKET_WIND_DOWN_PROPOSAL_TITLE: 'NOTIFICATIONS.TWO_MARKET_WIND_DOWN_PROPOSAL.TITLE',
|
|
80
84
|
};
|
|
81
85
|
|