diff --git a/config/localization/en/app.json b/config/localization/en/app.json index 65a2cba42..37861573c 100644 --- a/config/localization/en/app.json +++ b/config/localization/en/app.json @@ -45,6 +45,7 @@ "ACTION": "Action", "ACTIONS": "Actions", "ACTIVE": "Active", + "ADD": "Add →", "ADDING": "Adding", "ADDRESS": "Address", "ADVANCED": "Advanced", diff --git a/config/localization_notifications/en/app.json b/config/localization_notifications/en/app.json index 87336a7ec..f6160f40b 100644 --- a/config/localization_notifications/en/app.json +++ b/config/localization_notifications/en/app.json @@ -147,6 +147,14 @@ "TAKE_PROFIT_TRIGGER_REMOVED": { "TITLE": "Take Profit", "BODY": "Your take profit trigger at {OLD_VALUE} has been removed." + }, + "TWO_MARKET_WIND_DOWN": { + "TITLE": "{MARKET_1} and {MARKET_2} markets wound down", + "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}." + }, + "TWO_MARKET_WIND_DOWN_PROPOSAL": { + "TITLE": "Live proposal to wind down {MARKET_1} and {MARKET_2} markets", + "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}." } } } diff --git a/package-lock.json b/package-lock.json index f61283ed4..d13e56a2c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@dydxprotocol/v4-localization", - "version": "1.1.110", + "version": "1.1.111", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@dydxprotocol/v4-localization", - "version": "1.1.110", + "version": "1.1.111", "license": "AGPL-3.0", "devDependencies": { "@types/node": "^20.1.7" diff --git a/package.json b/package.json index a86ed1d12..a6fbe3988 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@dydxprotocol/v4-localization", - "version": "1.1.110", + "version": "1.1.111", "description": "v4 localization", "main": "index.ts", "scripts": { diff --git a/scripts/generated/app.ts b/scripts/generated/app.ts index 8379d4c12..22297e443 100644 --- a/scripts/generated/app.ts +++ b/scripts/generated/app.ts @@ -1,6 +1,6 @@ // !! GENERATED FILE - DO NOT EDIT -// Generated from ../config/localization/en/app.json using codegen_localization_app.swift +// Generated from ../config/localization/en/app.json using ./codegen_localization_app.swift export const APP_STRING_KEYS = { @@ -267,6 +267,7 @@ export const APP_STRING_KEYS = { ACTION: 'APP.GENERAL.ACTION', ACTIONS: 'APP.GENERAL.ACTIONS', ACTIVE: 'APP.GENERAL.ACTIVE', + ADD: 'APP.GENERAL.ADD', ADDING: 'APP.GENERAL.ADDING', ADDRESS: 'APP.GENERAL.ADDRESS', ADD_NEW_MARKET: 'APP.GENERAL.ADD_NEW_MARKET', diff --git a/scripts/generated/notifications.ts b/scripts/generated/notifications.ts index 56651c9e4..0a19dc969 100644 --- a/scripts/generated/notifications.ts +++ b/scripts/generated/notifications.ts @@ -77,5 +77,9 @@ export const NOTIFICATIONS_STRING_KEYS = { TAKE_PROFIT_TRIGGER_UPDATING_TITLE: 'NOTIFICATIONS.TAKE_PROFIT_TRIGGER_UPDATING.TITLE', TAKE_PROFIT_TRIGGER_UPDATING_ERROR_BODY: 'NOTIFICATIONS.TAKE_PROFIT_TRIGGER_UPDATING_ERROR.BODY', TAKE_PROFIT_TRIGGER_UPDATING_ERROR_TITLE: 'NOTIFICATIONS.TAKE_PROFIT_TRIGGER_UPDATING_ERROR.TITLE', + TWO_MARKET_WIND_DOWN_BODY: 'NOTIFICATIONS.TWO_MARKET_WIND_DOWN.BODY', + TWO_MARKET_WIND_DOWN_TITLE: 'NOTIFICATIONS.TWO_MARKET_WIND_DOWN.TITLE', + TWO_MARKET_WIND_DOWN_PROPOSAL_BODY: 'NOTIFICATIONS.TWO_MARKET_WIND_DOWN_PROPOSAL.BODY', + TWO_MARKET_WIND_DOWN_PROPOSAL_TITLE: 'NOTIFICATIONS.TWO_MARKET_WIND_DOWN_PROPOSAL.TITLE', };