diff --git a/client/webserver/jsintl.go b/client/webserver/jsintl.go
index 22555a8e87..072b03393e 100644
--- a/client/webserver/jsintl.go
+++ b/client/webserver/jsintl.go
@@ -218,7 +218,7 @@ const (
idCEXBalances = "CEX_BALANCES"
idCausesSelfMatch = "CAUSES_SELF_MATCH"
idCexNotConnected = "CEX_NOT_CONNECTED"
- idRemovingBotConfig = "REMOVING_BOT_CONFIG"
+ idDeleteBot = "DELETE_BOT"
)
var enUS = map[string]*intl.Translation{
@@ -436,7 +436,7 @@ var enUS = map[string]*intl.Translation{
idCEXBalances: {T: "{{ cexName }} Balances"},
idCausesSelfMatch: {T: "This order would cause a self-match"},
idCexNotConnected: {T: "{{ cexName }} not connected"},
- idRemovingBotConfig: {T: "Are you sure you want to remove the config for the {{ baseSymbol }}-{{ quoteSymbol }} market on {{ host }}?"},
+ idDeleteBot: {T: "Are you sure you want to delete this bot for the {{ baseTicker }}-{{ quoteTicker }} market on {{ host }}?"},
}
var ptBR = map[string]*intl.Translation{
diff --git a/client/webserver/locales/en-us.go b/client/webserver/locales/en-us.go
index b8c996d1a1..8d15eef0cc 100644
--- a/client/webserver/locales/en-us.go
+++ b/client/webserver/locales/en-us.go
@@ -678,5 +678,5 @@ var EnUS = map[string]*intl.Translation{
"Priority": {T: "Priority"},
"Wallet Balances": {T: "Wallet Balances"},
"Placements": {T: "Placements"},
- "removing_bot_config": {T: "Removing Bot Config"},
+ "delete_bot": {T: "Delete Bot"},
}
diff --git a/client/webserver/site/src/html/mm.tmpl b/client/webserver/site/src/html/mm.tmpl
index 03abf8e128..cad9f4e4bb 100644
--- a/client/webserver/site/src/html/mm.tmpl
+++ b/client/webserver/site/src/html/mm.tmpl
@@ -151,9 +151,6 @@
-
@@ -410,6 +407,12 @@
+
+
+
+ delete this bot
+
+
{{- /* NO FIAT RATES */ -}}
@@ -616,14 +619,10 @@
{{- /* END FORMS */ -}}
diff --git a/client/webserver/site/src/js/locales.ts b/client/webserver/site/src/js/locales.ts
index 11521164c2..ff7b927234 100644
--- a/client/webserver/site/src/js/locales.ts
+++ b/client/webserver/site/src/js/locales.ts
@@ -218,7 +218,7 @@ export const ID_ORDER_REPORT_TITLE = 'ORDER_REPORT_TITLE'
export const ID_CEX_BALANCES = 'CEX_BALANCES'
export const ID_CAUSES_SELF_MATCH = 'CAUSES_SELF_MATCH'
export const ID_CEX_NOT_CONNECTED = 'CEX_NOT_CONNECTED'
-export const ID_REMOVING_BOT_CONFIG = 'REMOVING_BOT_CONFIG'
+export const ID_DELETE_BOT = 'DELETE_BOT'
let locale: Locale
diff --git a/client/webserver/site/src/js/mm.ts b/client/webserver/site/src/js/mm.ts
index df5f68fcfd..08b2c76a48 100644
--- a/client/webserver/site/src/js/mm.ts
+++ b/client/webserver/site/src/js/mm.ts
@@ -325,11 +325,9 @@ export default class MarketMakerPage extends BasePage {
const page = this.page
this.removingCfg = mwh
Doc.hide(page.removeCfgErr)
- const baseAsset = app().assets[mwh.baseID]
- const quoteAsset = app().assets[mwh.quoteID]
- const baseSymbol = baseAsset.symbol.toUpperCase()
- const quoteSymbol = quoteAsset.symbol.toUpperCase()
- page.confirmRemoveCfgMsg.textContent = intl.prep(intl.ID_REMOVING_BOT_CONFIG, { host: mwh.host, baseSymbol, quoteSymbol })
+ const { unitInfo: { conventional: { unit: baseTicker } } } = app().assets[mwh.baseID]
+ const { unitInfo: { conventional: { unit: quoteTicker } } } = app().assets[mwh.quoteID]
+ page.confirmRemoveCfgMsg.textContent = intl.prep(intl.ID_DELETE_BOT, { host: mwh.host, baseTicker, quoteTicker })
this.forms.show(this.page.confirmRemoveForm)
}