@dydxprotocol/v4-localization 1.1.72 → 1.1.74
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.
|
@@ -43,6 +43,7 @@
|
|
|
43
43
|
"ACCOUNT": "Account",
|
|
44
44
|
"ACKNOWLEDGEMENT": "Acknowledgement",
|
|
45
45
|
"ACTION": "Action",
|
|
46
|
+
"ACTIONS": "Actions",
|
|
46
47
|
"ACTIVE": "Active",
|
|
47
48
|
"ADDING": "Adding",
|
|
48
49
|
"ADDRESS": "Address",
|
|
@@ -931,6 +932,7 @@
|
|
|
931
932
|
"GASLESS_DEPOSITS_SUBJECT_TO_RULES": "Gasless deposits are subject to these rules",
|
|
932
933
|
"GASLESS_DEPOSITS_TEMPORARILY_DISABLED": "Gasless deposits are temporarily unavailable. Don't worry, they'll be back soon!",
|
|
933
934
|
"GASLESS_ETH_DEPOSITS": "Gasless deposits are not available for ETH. You can convert your ETH to WETH on {1INCH_WETH_LINK} or {UNISWAP_WETH_LINK} and use WETH gasless deposits, or directly deposit ETH by paying your own gas costs.",
|
|
935
|
+
"LOWEST_FEE_DEPOSITS": "USDC deposits from {LOWEST_FEE_TOKENS_TOOLTIP} have the lowest fees. Other deposits may have additional third-party fees.",
|
|
934
936
|
"MAX_SLIPPAGE": "Max Slippage",
|
|
935
937
|
"MINIMUM_DEPOSIT_AMOUNT": "Minimum Deposit Amount",
|
|
936
938
|
"MINIMUM_DEPOSIT_MET": "Nice! Your deposit meets the gasless deposit minimum of {GASLESS_DEPOSIT_THRESHOLD} {SYMBOL}. dYdX will cover the gas fees for this deposit.",
|
|
@@ -256,6 +256,10 @@
|
|
|
256
256
|
"TITLE": "Unavailable",
|
|
257
257
|
"BODY": "Gasless deposits are temporarily unavailable. Don't worry, they'll be back soon!"
|
|
258
258
|
},
|
|
259
|
+
"GAS_FEES_DEPOSIT":{
|
|
260
|
+
"TITLE": "Gas Fees",
|
|
261
|
+
"BODY": "Gas fees are transaction fees on the source chain, in this case {SOURCE_CHAIN}."
|
|
262
|
+
},
|
|
259
263
|
"GASLESS_DEPOSITS": {
|
|
260
264
|
"TITLE": "Gasless Deposits",
|
|
261
265
|
"BODY": "dYdX will cover your gas fees if you deposit {GASLESS_DEPOSIT_THRESHOLD} {SYMBOL} or more. You are eligible for one gasless deposit every three days. Gasless deposits are subject to rules."
|
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
|
|
|
@@ -84,6 +84,7 @@ export const APP_STRING_KEYS = {
|
|
|
84
84
|
GASLESS_DEPOSITS_SUBJECT_TO_RULES: 'APP.DEPOSIT_MODAL.GASLESS_DEPOSITS_SUBJECT_TO_RULES',
|
|
85
85
|
GASLESS_DEPOSITS_TEMPORARILY_DISABLED: 'APP.DEPOSIT_MODAL.GASLESS_DEPOSITS_TEMPORARILY_DISABLED',
|
|
86
86
|
GASLESS_ETH_DEPOSITS: 'APP.DEPOSIT_MODAL.GASLESS_ETH_DEPOSITS',
|
|
87
|
+
LOWEST_FEE_DEPOSITS: 'APP.DEPOSIT_MODAL.LOWEST_FEE_DEPOSITS',
|
|
87
88
|
MAX_SLIPPAGE: 'APP.DEPOSIT_MODAL.MAX_SLIPPAGE',
|
|
88
89
|
MINIMUM_DEPOSIT_AMOUNT: 'APP.DEPOSIT_MODAL.MINIMUM_DEPOSIT_AMOUNT',
|
|
89
90
|
MINIMUM_DEPOSIT_MET: 'APP.DEPOSIT_MODAL.MINIMUM_DEPOSIT_MET',
|
|
@@ -246,6 +247,7 @@ export const APP_STRING_KEYS = {
|
|
|
246
247
|
ACCOUNT_LEVERAGE: 'APP.GENERAL.ACCOUNT_LEVERAGE',
|
|
247
248
|
ACKNOWLEDGEMENT: 'APP.GENERAL.ACKNOWLEDGEMENT',
|
|
248
249
|
ACTION: 'APP.GENERAL.ACTION',
|
|
250
|
+
ACTIONS: 'APP.GENERAL.ACTIONS',
|
|
249
251
|
ACTIVE: 'APP.GENERAL.ACTIVE',
|
|
250
252
|
ADDING: 'APP.GENERAL.ADDING',
|
|
251
253
|
ADDRESS: 'APP.GENERAL.ADDRESS',
|
|
@@ -12,6 +12,8 @@ export const TOOLTIP_STRING_KEYS = {
|
|
|
12
12
|
DISABLED_GASLESS_DEPOSITS_TITLE: 'TOOLTIPS.DEPOSIT.DISABLED_GASLESS_DEPOSITS.TITLE',
|
|
13
13
|
GASLESS_DEPOSITS_BODY: 'TOOLTIPS.DEPOSIT.GASLESS_DEPOSITS.BODY',
|
|
14
14
|
GASLESS_DEPOSITS_TITLE: 'TOOLTIPS.DEPOSIT.GASLESS_DEPOSITS.TITLE',
|
|
15
|
+
GAS_FEES_DEPOSIT_BODY: 'TOOLTIPS.DEPOSIT.GAS_FEES_DEPOSIT.BODY',
|
|
16
|
+
GAS_FEES_DEPOSIT_TITLE: 'TOOLTIPS.DEPOSIT.GAS_FEES_DEPOSIT.TITLE',
|
|
15
17
|
MINIMUM_DEPOSIT_AMOUNT_BODY: 'TOOLTIPS.DEPOSIT.MINIMUM_DEPOSIT_AMOUNT.BODY',
|
|
16
18
|
MINIMUM_DEPOSIT_AMOUNT_TITLE: 'TOOLTIPS.DEPOSIT.MINIMUM_DEPOSIT_AMOUNT.TITLE',
|
|
17
19
|
SWAP_BODY: 'TOOLTIPS.DEPOSIT.SWAP.BODY',
|