Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ohlc strings #622

Merged
merged 5 commits into from
Jul 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions config/localization/en/app.json
Original file line number Diff line number Diff line change
Expand Up @@ -1326,6 +1326,7 @@
"NEXT_IN": "Next in {TIME}",
"NOTIONAL_VALUE": "Notional Value",
"OFFSETTING": "Offsetting",
"OHLC_VIA_MID_PRICE": "OHLC (via mid-price)",
"OPEN_INTEREST": "Open Interest",
"OPEN_POSITIONS": "Open Positions",
"OPEN_STATUS": "Open",
Expand Down
6 changes: 6 additions & 0 deletions config/localization/en/tooltips.json
Original file line number Diff line number Diff line change
Expand Up @@ -353,6 +353,12 @@
"BODY": "To ensure the security of the protocol, dYdX Chain validators delay the settlement of dYdX Chain DYDX."
}
},
"TRADE_CHART": {
"OHLC": {
"TITLE": "OHLC",
"BODY": "Enable or disable OHLC data via mid-price. Disabling this will only display OHLC data from the orderbook."
}
},
"NEW_MARKET_WIDGET": {
"REFERENCE_PRICE": {
"TITLE": "Reference Price",
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dydxprotocol/v4-localization",
"version": "1.1.162",
"version": "1.1.163",
"description": "v4 localization",
"main": "index.ts",
"scripts": {
Expand Down
3 changes: 2 additions & 1 deletion scripts/generated/app.ts
Original file line number Diff line number Diff line change
@@ -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 = {

Expand Down Expand Up @@ -1479,6 +1479,7 @@ export const APP_STRING_KEYS = {
NEXT_IN: 'APP.TRADE.NEXT_IN',
NOTIONAL_VALUE: 'APP.TRADE.NOTIONAL_VALUE',
OFFSETTING: 'APP.TRADE.OFFSETTING',
OHLC_VIA_MID_PRICE: 'APP.TRADE.OHLC_VIA_MID_PRICE',
OPEN_INTEREST: 'APP.TRADE.OPEN_INTEREST',
OPEN_POSITIONS: 'APP.TRADE.OPEN_POSITIONS',
OPEN_STATUS: 'APP.TRADE.OPEN_STATUS',
Expand Down
5 changes: 5 additions & 0 deletions scripts/generated/tooltips.ts
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,11 @@ export const TOOLTIP_STRING_KEYS = {
UNREALIZED_PNL_BODY: 'TOOLTIPS.TRADE.UNREALIZED_PNL.BODY',
UNREALIZED_PNL_TITLE: 'TOOLTIPS.TRADE.UNREALIZED_PNL.TITLE',

// TRADE_CHART

OHLC_BODY: 'TOOLTIPS.TRADE_CHART.OHLC.BODY',
OHLC_TITLE: 'TOOLTIPS.TRADE_CHART.OHLC.TITLE',

// TRANSFER_AND_DEPOSIT

ALLOWANCE_AND_DEPOSIT_NETWORK_FEE_BODY: 'TOOLTIPS.TRANSFER_AND_DEPOSIT.ALLOWANCE_AND_DEPOSIT_NETWORK_FEE.BODY',
Expand Down
Loading