@dydxprotocol/v4-localization 1.1.36 → 1.1.38
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 +2 -1
- package/package.json +1 -1
- package/readme.md +8 -0
- package/scripts/generated/app.ts +1 -0
|
@@ -92,6 +92,7 @@
|
|
|
92
92
|
"DECREASED": "decreased",
|
|
93
93
|
"DECREASING": "Decreasing",
|
|
94
94
|
"DEFAULT": "Default",
|
|
95
|
+
"DEFAULT_TO_ALL_MARKETS_IN_POSITIONS": "Default to All markets in Positions / Orders / Fills",
|
|
95
96
|
"DEFI": "DeFi",
|
|
96
97
|
"DEGRADED": "Degraded",
|
|
97
98
|
"DEPOSIT_FUNDS": "Deposit funds",
|
|
@@ -353,7 +354,7 @@
|
|
|
353
354
|
},
|
|
354
355
|
"BTC": {
|
|
355
356
|
"PRIMARY": "Bitcoin is a decentralized digital currency, without a central bank or single administrator that can be sent from user to user on the peer-to-peer bitcoin network without the need for intermediaries.",
|
|
356
|
-
"SECONDARY": "Transactions are verified by a network nodes through cryptography and recorded in a public distributed ledger called a blockchain. Bitcoins are created as a reward for a process known as mining. They can be exchanged for other currencies, products, and services."
|
|
357
|
+
"SECONDARY": "Transactions are verified by a network of nodes through cryptography and recorded in a public distributed ledger called a blockchain. Bitcoins are created as a reward for a process known as mining. They can be exchanged for other currencies, products, and services."
|
|
357
358
|
},
|
|
358
359
|
"BLUR": {
|
|
359
360
|
"PRIMARY": "BLUR is a NFT marketplace.",
|
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -43,6 +43,14 @@ For example, if you are working on Spanish, and started the work on July 13th, 2
|
|
|
43
43
|
|
|
44
44
|
Once your PR is accepted and merged into "main", the branch is removed from the repo. Create a new branch for next batch of changes.
|
|
45
45
|
|
|
46
|
+
## Committing Changes
|
|
47
|
+
Before committing your changes to the repo, you need to run the following commands:
|
|
48
|
+
|
|
49
|
+
`npm run generate` to auto generate required code
|
|
50
|
+
|
|
51
|
+
`npm version patch` to update the package version number
|
|
52
|
+
|
|
53
|
+
|
|
46
54
|
# JSON Translations
|
|
47
55
|
|
|
48
56
|
Please translate each JSON entry, using the file in /en folder as the original, and translate into the same file name in other language files.
|
package/scripts/generated/app.ts
CHANGED
|
@@ -258,6 +258,7 @@ export const APP_STRING_KEYS = {
|
|
|
258
258
|
DECREASED: 'APP.GENERAL.DECREASED',
|
|
259
259
|
DECREASING: 'APP.GENERAL.DECREASING',
|
|
260
260
|
DEFAULT: 'APP.GENERAL.DEFAULT',
|
|
261
|
+
DEFAULT_TO_ALL_MARKETS_IN_POSITIONS: 'APP.GENERAL.DEFAULT_TO_ALL_MARKETS_IN_POSITIONS',
|
|
261
262
|
DEFI: 'APP.GENERAL.DEFI',
|
|
262
263
|
DEGRADED: 'APP.GENERAL.DEGRADED',
|
|
263
264
|
DEPOSIT: 'APP.GENERAL.DEPOSIT',
|