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

v1.1.177: Add buys/sells mark strings #653

Merged
merged 2 commits into from
Aug 15, 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
4 changes: 4 additions & 0 deletions config/localization/en/app.json
Original file line number Diff line number Diff line change
Expand Up @@ -1248,6 +1248,9 @@
"BRACKET_ORDER_LONG_TAKE_PROFIT_DESCRIPTION": "If {ASSET} increases by a given amount, trigger a {ACTION} to capture profits.",
"BRACKET_ORDER_SHORT_STOP_LOSS_DESCRIPTION": "If {ASSET} increases by a given amount, trigger a {ACTION} to prevent your losses.",
"BRACKET_ORDER_SHORT_TAKE_PROFIT_DESCRIPTION": "If {ASSET} falls to a fixed price, trigger a {ACTION} to capture profits.",
"BUY_MARK_TOOLTIP": "Bought {ASSET_SIZE} {ASSET} at {PRICE}",
"BUYS_SELLS_TOGGLE": "Buys/Sells",
"BUYS_SELLS_TOGGLE_TOOLTIP": "Display historical buys and sells",
"CANCEL_ALL": "Cancel all",
"CANCEL_ORDER": "Cancel order",
"CANCEL_ORDERS_COUNT": "Cancel {COUNT} orders",
Expand Down Expand Up @@ -1431,6 +1434,7 @@
"RETURN_TO_MARKET": "Return to market",
"RISK_REWARD": "Risk-Reward",
"SELECT_MARKET": "Select market",
"SELL_MARK_TOOLTIP": "Sold {ASSET_SIZE} {ASSET} at {PRICE}",
"SELF_TRADE": "Self-trade",
"SET_ORDER_SIZE": "Set order size",
"SET_PRICE_TRIGGERS": "Set price triggers",
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.176",
"version": "1.1.177",
"description": "v4 localization",
"main": "index.ts",
"scripts": {
Expand Down
4 changes: 4 additions & 0 deletions scripts/generated/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1401,6 +1401,9 @@ export const APP_STRING_KEYS = {
BRACKET_ORDER_LONG_TAKE_PROFIT_DESCRIPTION: 'APP.TRADE.BRACKET_ORDER_LONG_TAKE_PROFIT_DESCRIPTION',
BRACKET_ORDER_SHORT_STOP_LOSS_DESCRIPTION: 'APP.TRADE.BRACKET_ORDER_SHORT_STOP_LOSS_DESCRIPTION',
BRACKET_ORDER_SHORT_TAKE_PROFIT_DESCRIPTION: 'APP.TRADE.BRACKET_ORDER_SHORT_TAKE_PROFIT_DESCRIPTION',
BUYS_SELLS_TOGGLE: 'APP.TRADE.BUYS_SELLS_TOGGLE',
BUYS_SELLS_TOGGLE_TOOLTIP: 'APP.TRADE.BUYS_SELLS_TOGGLE_TOOLTIP',
BUY_MARK_TOOLTIP: 'APP.TRADE.BUY_MARK_TOOLTIP',
CANCELED_ON_CHAIN: 'APP.TRADE.CANCELED_ON_CHAIN',
CANCELING: 'APP.TRADE.CANCELING',
CANCELING_ORDERS_COUNT: 'APP.TRADE.CANCELING_ORDERS_COUNT',
Expand Down Expand Up @@ -1583,6 +1586,7 @@ export const APP_STRING_KEYS = {
RISK_REWARD: 'APP.TRADE.RISK_REWARD',
SELECT_MARKET: 'APP.TRADE.SELECT_MARKET',
SELF_TRADE: 'APP.TRADE.SELF_TRADE',
SELL_MARK_TOOLTIP: 'APP.TRADE.SELL_MARK_TOOLTIP',
SET_ORDER_SIZE: 'APP.TRADE.SET_ORDER_SIZE',
SET_PRICE_TRIGGERS: 'APP.TRADE.SET_PRICE_TRIGGERS',
SLIDER: 'APP.TRADE.SLIDER',
Expand Down
Loading