@dydxprotocol/v4-localization 1.1.110 → 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",
@@ -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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dydxprotocol/v4-localization",
3
- "version": "1.1.110",
3
+ "version": "1.1.111",
4
4
  "description": "v4 localization",
5
5
  "main": "index.ts",
6
6
  "scripts": {
@@ -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