diff --git a/api/views.py b/api/views.py
index 79647084..53e15292 100644
--- a/api/views.py
+++ b/api/views.py
@@ -799,7 +799,7 @@ class InfoView(viewsets.ViewSet):
context["min_order_size"] = config("MIN_ORDER_SIZE", cast=int, default=20000)
context["max_order_size"] = config("MAX_ORDER_SIZE", cast=int, default=250000)
context["swap_enabled"] = not config("DISABLE_ONCHAIN", cast=bool, default=True)
- context["max_swap"] = config("MAX_SWAP_ALLOWED", cast=int, default=0)
+ context["max_swap"] = config("MAX_SWAP_AMOUNT", cast=int, default=0)
try:
context["current_swap_fee_rate"] = Logics.compute_swap_fee_rate(
diff --git a/frontend/src/components/Dialogs/Coordinator.tsx b/frontend/src/components/Dialogs/Coordinator.tsx
index e8bb63f2..46c548b2 100644
--- a/frontend/src/components/Dialogs/Coordinator.tsx
+++ b/frontend/src/components/Dialogs/Coordinator.tsx
@@ -45,6 +45,7 @@ import {
Tag,
Web,
VolunteerActivism,
+ Circle,
} from '@mui/icons-material';
import LinkIcon from '@mui/icons-material/Link';
@@ -244,9 +245,10 @@ const ContactButtons = ({
interface BadgesProps {
badges: Badges | undefined;
+ size_limit: number | undefined;
}
-const BadgesHall = ({ badges }: BadgesProps): JSX.Element => {
+const BadgesHall = ({ badges, size_limit }: BadgesProps): JSX.Element => {
const { t } = useTranslation();
const sxProps = {
width: '3em',
@@ -327,13 +329,13 @@ const BadgesHall = ({ badges }: BadgesProps): JSX.Element => {
{...tooltipProps}
title={
- {badges?.hasLargeLimits === true
+ {size_limit > 3000000
? t('Large limits: the coordinator has large trade limits.')
: t('Does not have large trade limits.')}
}
>
-
+ 3000000 ? undefined : 'grayscale(100%)' }}>
@@ -428,7 +430,7 @@ const CoordinatorDialog = ({ open = false, onClose, network, shortAlias }: Props
)}
-
+
@@ -507,6 +509,19 @@ const CoordinatorDialog = ({ open = false, onClose, network, shortAlias }: Props
+
+
+
+
+
+
+
+
@@ -530,16 +545,47 @@ const CoordinatorDialog = ({ open = false, onClose, network, shortAlias }: Props
-
-
-
-
+ {coordinator?.info?.swap_enabled === false ? (
+
+
+
+
-
-
+
+
+ ) : (
+ <>
+
+
+
+
+
+
+
+
+
+
+
+
+
+ >
+ )}
diff --git a/frontend/src/models/Coordinator.model.ts b/frontend/src/models/Coordinator.model.ts
index 2de297ab..2e659170 100644
--- a/frontend/src/models/Coordinator.model.ts
+++ b/frontend/src/models/Coordinator.model.ts
@@ -58,6 +58,10 @@ export interface Info {
maker_fee: number;
taker_fee: number;
bond_size: number;
+ min_order_size: number;
+ max_order_size: number;
+ swap_enabled: boolean;
+ max_swap: number;
current_swap_fee_rate: number;
network: 'mainnet' | 'testnet' | undefined;
openUpdateClient: boolean;
diff --git a/frontend/static/locales/ca.json b/frontend/static/locales/ca.json
index e65a3d76..a5b84f65 100644
--- a/frontend/static/locales/ca.json
+++ b/frontend/static/locales/ca.json
@@ -256,6 +256,7 @@
"Coordinator hosted web app": "Coordinator hosted web app",
"Coordinator offline": "Coordinator offline",
"Current onchain payout fee": "Cost actual de rebre onchain",
+ "Current onchain payout status": "Current onchain payout status",
"Development fund supporter: donates {{percent}}% to make RoboSats better.": "Development fund supporter: donates {{percent}}% to make RoboSats better.",
"Does not have large trade limits.": "Does not have large trade limits.",
"Download PGP Pubkey. Fingerprint: ": "Download PGP Pubkey. Fingerprint: ",
@@ -268,7 +269,10 @@
"Loved by robots: receives positive comments by robots over the internet.": "Loved by robots: receives positive comments by robots over the internet.",
"Maker fee": "Comissió del creador",
"Matrix channel copied! {{matrix}}": "Matrix channel copied! {{matrix}}",
+ "Maximum onchain swap size": "Maximum onchain swap size",
+ "Maximum order size": "Maximum order size",
"Not a federation founder": "Not a federation founder",
+ "Onchain payouts disabled": "Onchain payouts disabled",
"Policies": "Policies",
"Public buy orders": "Ordres de compra públiques",
"Public sell orders": "Ordres de venta públiques",
diff --git a/frontend/static/locales/cs.json b/frontend/static/locales/cs.json
index e40806e3..307481d9 100644
--- a/frontend/static/locales/cs.json
+++ b/frontend/static/locales/cs.json
@@ -256,6 +256,7 @@
"Coordinator hosted web app": "Coordinator hosted web app",
"Coordinator offline": "Coordinator offline",
"Current onchain payout fee": "Současný poplatek za vyplacení na onchain ",
+ "Current onchain payout status": "Current onchain payout status",
"Development fund supporter: donates {{percent}}% to make RoboSats better.": "Development fund supporter: donates {{percent}}% to make RoboSats better.",
"Does not have large trade limits.": "Does not have large trade limits.",
"Download PGP Pubkey. Fingerprint: ": "Download PGP Pubkey. Fingerprint: ",
@@ -268,7 +269,10 @@
"Loved by robots: receives positive comments by robots over the internet.": "Loved by robots: receives positive comments by robots over the internet.",
"Maker fee": "Poplatek tvůrce",
"Matrix channel copied! {{matrix}}": "Matrix channel copied! {{matrix}}",
+ "Maximum onchain swap size": "Maximum onchain swap size",
+ "Maximum order size": "Maximum order size",
"Not a federation founder": "Not a federation founder",
+ "Onchain payouts disabled": "Onchain payouts disabled",
"Policies": "Policies",
"Public buy orders": "Veřejné nákupní nabídky",
"Public sell orders": "Veřejné prodejní nabídky",
diff --git a/frontend/static/locales/de.json b/frontend/static/locales/de.json
index 42b46e4b..e1f1cbd0 100644
--- a/frontend/static/locales/de.json
+++ b/frontend/static/locales/de.json
@@ -256,6 +256,7 @@
"Coordinator hosted web app": "Coordinator hosted web app",
"Coordinator offline": "Coordinator offline",
"Current onchain payout fee": "Current onchain payout fee",
+ "Current onchain payout status": "Current onchain payout status",
"Development fund supporter: donates {{percent}}% to make RoboSats better.": "Development fund supporter: donates {{percent}}% to make RoboSats better.",
"Does not have large trade limits.": "Does not have large trade limits.",
"Download PGP Pubkey. Fingerprint: ": "Download PGP Pubkey. Fingerprint: ",
@@ -268,7 +269,10 @@
"Loved by robots: receives positive comments by robots over the internet.": "Loved by robots: receives positive comments by robots over the internet.",
"Maker fee": "Makergebühr",
"Matrix channel copied! {{matrix}}": "Matrix channel copied! {{matrix}}",
+ "Maximum onchain swap size": "Maximum onchain swap size",
+ "Maximum order size": "Maximum order size",
"Not a federation founder": "Not a federation founder",
+ "Onchain payouts disabled": "Onchain payouts disabled",
"Policies": "Policies",
"Public buy orders": "Öffentliche Kaufangebote",
"Public sell orders": "Öffentliche Verkaufsangebote",
diff --git a/frontend/static/locales/en.json b/frontend/static/locales/en.json
index 004ce92b..dcfab9bb 100644
--- a/frontend/static/locales/en.json
+++ b/frontend/static/locales/en.json
@@ -256,6 +256,7 @@
"Coordinator hosted web app": "Coordinator hosted web app",
"Coordinator offline": "Coordinator offline",
"Current onchain payout fee": "Current onchain payout fee",
+ "Current onchain payout status": "Current onchain payout status",
"Development fund supporter: donates {{percent}}% to make RoboSats better.": "Development fund supporter: donates {{percent}}% to make RoboSats better.",
"Does not have large trade limits.": "Does not have large trade limits.",
"Download PGP Pubkey. Fingerprint: ": "Download PGP Pubkey. Fingerprint: ",
@@ -268,7 +269,10 @@
"Loved by robots: receives positive comments by robots over the internet.": "Loved by robots: receives positive comments by robots over the internet.",
"Maker fee": "Maker fee",
"Matrix channel copied! {{matrix}}": "Matrix channel copied! {{matrix}}",
+ "Maximum onchain swap size": "Maximum onchain swap size",
+ "Maximum order size": "Maximum order size",
"Not a federation founder": "Not a federation founder",
+ "Onchain payouts disabled": "Onchain payouts disabled",
"Policies": "Policies",
"Public buy orders": "Public buy orders",
"Public sell orders": "Public sell orders",
diff --git a/frontend/static/locales/es.json b/frontend/static/locales/es.json
index 9c663b80..21da4ad9 100644
--- a/frontend/static/locales/es.json
+++ b/frontend/static/locales/es.json
@@ -256,6 +256,7 @@
"Coordinator hosted web app": "Coordinator hosted web app",
"Coordinator offline": "Coordinator offline",
"Current onchain payout fee": "Coste actual de recibir onchain",
+ "Current onchain payout status": "Current onchain payout status",
"Development fund supporter: donates {{percent}}% to make RoboSats better.": "Development fund supporter: donates {{percent}}% to make RoboSats better.",
"Does not have large trade limits.": "Does not have large trade limits.",
"Download PGP Pubkey. Fingerprint: ": "Download PGP Pubkey. Fingerprint: ",
@@ -268,7 +269,10 @@
"Loved by robots: receives positive comments by robots over the internet.": "Loved by robots: receives positive comments by robots over the internet.",
"Maker fee": "Comisión del creador",
"Matrix channel copied! {{matrix}}": "Matrix channel copied! {{matrix}}",
+ "Maximum onchain swap size": "Maximum onchain swap size",
+ "Maximum order size": "Maximum order size",
"Not a federation founder": "Not a federation founder",
+ "Onchain payouts disabled": "Onchain payouts disabled",
"Policies": "Policies",
"Public buy orders": "Órdenes de compra públicas",
"Public sell orders": "Órdenes de venta públicas",
diff --git a/frontend/static/locales/eu.json b/frontend/static/locales/eu.json
index 9db43104..693f8451 100644
--- a/frontend/static/locales/eu.json
+++ b/frontend/static/locales/eu.json
@@ -256,6 +256,7 @@
"Coordinator hosted web app": "Coordinator hosted web app",
"Coordinator offline": "Coordinator offline",
"Current onchain payout fee": "Oraingo onchain jasotze-kuota",
+ "Current onchain payout status": "Current onchain payout status",
"Development fund supporter: donates {{percent}}% to make RoboSats better.": "Development fund supporter: donates {{percent}}% to make RoboSats better.",
"Does not have large trade limits.": "Does not have large trade limits.",
"Download PGP Pubkey. Fingerprint: ": "Download PGP Pubkey. Fingerprint: ",
@@ -268,7 +269,10 @@
"Loved by robots: receives positive comments by robots over the internet.": "Loved by robots: receives positive comments by robots over the internet.",
"Maker fee": "Egile kuota",
"Matrix channel copied! {{matrix}}": "Matrix channel copied! {{matrix}}",
+ "Maximum onchain swap size": "Maximum onchain swap size",
+ "Maximum order size": "Maximum order size",
"Not a federation founder": "Not a federation founder",
+ "Onchain payouts disabled": "Onchain payouts disabled",
"Policies": "Policies",
"Public buy orders": "Erosketa eskaera publikoak",
"Public sell orders": "Salmenta eskaera publikoak",
diff --git a/frontend/static/locales/fr.json b/frontend/static/locales/fr.json
index 0f32c30b..0b8d5b76 100644
--- a/frontend/static/locales/fr.json
+++ b/frontend/static/locales/fr.json
@@ -256,6 +256,7 @@
"Coordinator hosted web app": "Coordinator hosted web app",
"Coordinator offline": "Coordinator offline",
"Current onchain payout fee": "Frais de paiement actuels de la chaîne",
+ "Current onchain payout status": "Current onchain payout status",
"Development fund supporter: donates {{percent}}% to make RoboSats better.": "Development fund supporter: donates {{percent}}% to make RoboSats better.",
"Does not have large trade limits.": "Does not have large trade limits.",
"Download PGP Pubkey. Fingerprint: ": "Download PGP Pubkey. Fingerprint: ",
@@ -268,7 +269,10 @@
"Loved by robots: receives positive comments by robots over the internet.": "Loved by robots: receives positive comments by robots over the internet.",
"Maker fee": "Frais du createur",
"Matrix channel copied! {{matrix}}": "Matrix channel copied! {{matrix}}",
+ "Maximum onchain swap size": "Maximum onchain swap size",
+ "Maximum order size": "Maximum order size",
"Not a federation founder": "Not a federation founder",
+ "Onchain payouts disabled": "Onchain payouts disabled",
"Policies": "Policies",
"Public buy orders": "Ordres d'achat publics",
"Public sell orders": "Ordres de vente publics",
diff --git a/frontend/static/locales/it.json b/frontend/static/locales/it.json
index 492c62ac..67555bf1 100644
--- a/frontend/static/locales/it.json
+++ b/frontend/static/locales/it.json
@@ -256,6 +256,7 @@
"Coordinator hosted web app": "Coordinator hosted web app",
"Coordinator offline": "Coordinator offline",
"Current onchain payout fee": "Attuale tariffa di pagamento onchain",
+ "Current onchain payout status": "Current onchain payout status",
"Development fund supporter: donates {{percent}}% to make RoboSats better.": "Development fund supporter: donates {{percent}}% to make RoboSats better.",
"Does not have large trade limits.": "Does not have large trade limits.",
"Download PGP Pubkey. Fingerprint: ": "Download PGP Pubkey. Fingerprint: ",
@@ -268,7 +269,10 @@
"Loved by robots: receives positive comments by robots over the internet.": "Loved by robots: receives positive comments by robots over the internet.",
"Maker fee": "Commissione dell'offerente",
"Matrix channel copied! {{matrix}}": "Matrix channel copied! {{matrix}}",
+ "Maximum onchain swap size": "Maximum onchain swap size",
+ "Maximum order size": "Maximum order size",
"Not a federation founder": "Not a federation founder",
+ "Onchain payouts disabled": "Onchain payouts disabled",
"Policies": "Policies",
"Public buy orders": "Ordini di acquisto pubblici",
"Public sell orders": "Ordini di vendita pubblici",
diff --git a/frontend/static/locales/ja.json b/frontend/static/locales/ja.json
index 620831e5..0d42d1d1 100644
--- a/frontend/static/locales/ja.json
+++ b/frontend/static/locales/ja.json
@@ -256,6 +256,7 @@
"Coordinator hosted web app": "Coordinator hosted web app",
"Coordinator offline": "Coordinator offline",
"Current onchain payout fee": "現在のオンチェーン支払手数料",
+ "Current onchain payout status": "Current onchain payout status",
"Development fund supporter: donates {{percent}}% to make RoboSats better.": "Development fund supporter: donates {{percent}}% to make RoboSats better.",
"Does not have large trade limits.": "Does not have large trade limits.",
"Download PGP Pubkey. Fingerprint: ": "Download PGP Pubkey. Fingerprint: ",
@@ -268,7 +269,10 @@
"Loved by robots: receives positive comments by robots over the internet.": "Loved by robots: receives positive comments by robots over the internet.",
"Maker fee": "メーカー手数料",
"Matrix channel copied! {{matrix}}": "Matrix channel copied! {{matrix}}",
+ "Maximum onchain swap size": "Maximum onchain swap size",
+ "Maximum order size": "Maximum order size",
"Not a federation founder": "Not a federation founder",
+ "Onchain payouts disabled": "Onchain payouts disabled",
"Policies": "Policies",
"Public buy orders": "公開買い注文",
"Public sell orders": "公開売り注文",
diff --git a/frontend/static/locales/pl.json b/frontend/static/locales/pl.json
index a84efdac..31b91145 100644
--- a/frontend/static/locales/pl.json
+++ b/frontend/static/locales/pl.json
@@ -256,6 +256,7 @@
"Coordinator hosted web app": "Coordinator hosted web app",
"Coordinator offline": "Coordinator offline",
"Current onchain payout fee": "Current onchain payout fee",
+ "Current onchain payout status": "Current onchain payout status",
"Development fund supporter: donates {{percent}}% to make RoboSats better.": "Development fund supporter: donates {{percent}}% to make RoboSats better.",
"Does not have large trade limits.": "Does not have large trade limits.",
"Download PGP Pubkey. Fingerprint: ": "Download PGP Pubkey. Fingerprint: ",
@@ -268,7 +269,10 @@
"Loved by robots: receives positive comments by robots over the internet.": "Loved by robots: receives positive comments by robots over the internet.",
"Maker fee": "Opłata producenta",
"Matrix channel copied! {{matrix}}": "Matrix channel copied! {{matrix}}",
+ "Maximum onchain swap size": "Maximum onchain swap size",
+ "Maximum order size": "Maximum order size",
"Not a federation founder": "Not a federation founder",
+ "Onchain payouts disabled": "Onchain payouts disabled",
"Policies": "Policies",
"Public buy orders": "Publiczne zamówienia kupna",
"Public sell orders": "Zlecenia sprzedaży publicznej",
diff --git a/frontend/static/locales/pt.json b/frontend/static/locales/pt.json
index 7603e2ab..4a031768 100644
--- a/frontend/static/locales/pt.json
+++ b/frontend/static/locales/pt.json
@@ -256,6 +256,7 @@
"Coordinator hosted web app": "Coordinator hosted web app",
"Coordinator offline": "Coordinator offline",
"Current onchain payout fee": "Taxa de pagamento onchain atual",
+ "Current onchain payout status": "Current onchain payout status",
"Development fund supporter: donates {{percent}}% to make RoboSats better.": "Development fund supporter: donates {{percent}}% to make RoboSats better.",
"Does not have large trade limits.": "Does not have large trade limits.",
"Download PGP Pubkey. Fingerprint: ": "Download PGP Pubkey. Fingerprint: ",
@@ -268,7 +269,10 @@
"Loved by robots: receives positive comments by robots over the internet.": "Loved by robots: receives positive comments by robots over the internet.",
"Maker fee": "Taxa do criador",
"Matrix channel copied! {{matrix}}": "Matrix channel copied! {{matrix}}",
+ "Maximum onchain swap size": "Maximum onchain swap size",
+ "Maximum order size": "Maximum order size",
"Not a federation founder": "Not a federation founder",
+ "Onchain payouts disabled": "Onchain payouts disabled",
"Policies": "Policies",
"Public buy orders": "Ordens de compra públicas",
"Public sell orders": "Ordens de venda públicss",
diff --git a/frontend/static/locales/ru.json b/frontend/static/locales/ru.json
index 988cdb6c..864d99e7 100644
--- a/frontend/static/locales/ru.json
+++ b/frontend/static/locales/ru.json
@@ -256,6 +256,7 @@
"Coordinator hosted web app": "Coordinator hosted web app",
"Coordinator offline": "Coordinator offline",
"Current onchain payout fee": "Текущая комиссия за выплату ончейн",
+ "Current onchain payout status": "Current onchain payout status",
"Development fund supporter: donates {{percent}}% to make RoboSats better.": "Development fund supporter: donates {{percent}}% to make RoboSats better.",
"Does not have large trade limits.": "Does not have large trade limits.",
"Download PGP Pubkey. Fingerprint: ": "Download PGP Pubkey. Fingerprint: ",
@@ -268,7 +269,10 @@
"Loved by robots: receives positive comments by robots over the internet.": "Loved by robots: receives positive comments by robots over the internet.",
"Maker fee": "Комиссия мейкера",
"Matrix channel copied! {{matrix}}": "Matrix channel copied! {{matrix}}",
+ "Maximum onchain swap size": "Maximum onchain swap size",
+ "Maximum order size": "Maximum order size",
"Not a federation founder": "Not a federation founder",
+ "Onchain payouts disabled": "Onchain payouts disabled",
"Policies": "Policies",
"Public buy orders": "Ордера на покупку",
"Public sell orders": "Ордера на продажу",
diff --git a/frontend/static/locales/sv.json b/frontend/static/locales/sv.json
index a7cd0162..9ba78cb5 100644
--- a/frontend/static/locales/sv.json
+++ b/frontend/static/locales/sv.json
@@ -256,6 +256,7 @@
"Coordinator hosted web app": "Coordinator hosted web app",
"Coordinator offline": "Coordinator offline",
"Current onchain payout fee": "Aktuell utbetalningsavgift (on-chain)",
+ "Current onchain payout status": "Current onchain payout status",
"Development fund supporter: donates {{percent}}% to make RoboSats better.": "Development fund supporter: donates {{percent}}% to make RoboSats better.",
"Does not have large trade limits.": "Does not have large trade limits.",
"Download PGP Pubkey. Fingerprint: ": "Download PGP Pubkey. Fingerprint: ",
@@ -268,7 +269,10 @@
"Loved by robots: receives positive comments by robots over the internet.": "Loved by robots: receives positive comments by robots over the internet.",
"Maker fee": "Makeravgift",
"Matrix channel copied! {{matrix}}": "Matrix channel copied! {{matrix}}",
+ "Maximum onchain swap size": "Maximum onchain swap size",
+ "Maximum order size": "Maximum order size",
"Not a federation founder": "Not a federation founder",
+ "Onchain payouts disabled": "Onchain payouts disabled",
"Policies": "Policies",
"Public buy orders": "Publika köpordrar",
"Public sell orders": "Publika säljordrar",
diff --git a/frontend/static/locales/sw.json b/frontend/static/locales/sw.json
index e1562de9..0a35fa3a 100644
--- a/frontend/static/locales/sw.json
+++ b/frontend/static/locales/sw.json
@@ -256,6 +256,7 @@
"Coordinator hosted web app": "Coordinator hosted web app",
"Coordinator offline": "Coordinator offline",
"Current onchain payout fee": "Ada ya malipo ya sasa ya mtandao",
+ "Current onchain payout status": "Current onchain payout status",
"Development fund supporter: donates {{percent}}% to make RoboSats better.": "Development fund supporter: donates {{percent}}% to make RoboSats better.",
"Does not have large trade limits.": "Does not have large trade limits.",
"Download PGP Pubkey. Fingerprint: ": "Download PGP Pubkey. Fingerprint: ",
@@ -268,7 +269,10 @@
"Loved by robots: receives positive comments by robots over the internet.": "Loved by robots: receives positive comments by robots over the internet.",
"Maker fee": "Ada ya Muunda",
"Matrix channel copied! {{matrix}}": "Matrix channel copied! {{matrix}}",
+ "Maximum onchain swap size": "Maximum onchain swap size",
+ "Maximum order size": "Maximum order size",
"Not a federation founder": "Not a federation founder",
+ "Onchain payouts disabled": "Onchain payouts disabled",
"Policies": "Policies",
"Public buy orders": "Amri za kununua za Umma",
"Public sell orders": "Amri za kuuza za Umma",
diff --git a/frontend/static/locales/th.json b/frontend/static/locales/th.json
index f56161f6..f16eeba5 100644
--- a/frontend/static/locales/th.json
+++ b/frontend/static/locales/th.json
@@ -256,6 +256,7 @@
"Coordinator hosted web app": "Coordinator hosted web app",
"Coordinator offline": "Coordinator offline",
"Current onchain payout fee": "ค่าธรรมเนียมการจ่าย On-chain ตอนนี้",
+ "Current onchain payout status": "Current onchain payout status",
"Development fund supporter: donates {{percent}}% to make RoboSats better.": "Development fund supporter: donates {{percent}}% to make RoboSats better.",
"Does not have large trade limits.": "Does not have large trade limits.",
"Download PGP Pubkey. Fingerprint: ": "Download PGP Pubkey. Fingerprint: ",
@@ -268,7 +269,10 @@
"Loved by robots: receives positive comments by robots over the internet.": "Loved by robots: receives positive comments by robots over the internet.",
"Maker fee": "ค่าธรรมเนียม Maker",
"Matrix channel copied! {{matrix}}": "Matrix channel copied! {{matrix}}",
+ "Maximum onchain swap size": "Maximum onchain swap size",
+ "Maximum order size": "Maximum order size",
"Not a federation founder": "Not a federation founder",
+ "Onchain payouts disabled": "Onchain payouts disabled",
"Policies": "Policies",
"Public buy orders": "จำนวนรายการซื้อ",
"Public sell orders": "จำนวนรายการขาย",
diff --git a/frontend/static/locales/zh-SI.json b/frontend/static/locales/zh-SI.json
index f82e224e..5179b9de 100644
--- a/frontend/static/locales/zh-SI.json
+++ b/frontend/static/locales/zh-SI.json
@@ -256,6 +256,7 @@
"Coordinator hosted web app": "Coordinator hosted web app",
"Coordinator offline": "Coordinator offline",
"Current onchain payout fee": "当前链上支付费用",
+ "Current onchain payout status": "Current onchain payout status",
"Development fund supporter: donates {{percent}}% to make RoboSats better.": "Development fund supporter: donates {{percent}}% to make RoboSats better.",
"Does not have large trade limits.": "Does not have large trade limits.",
"Download PGP Pubkey. Fingerprint: ": "Download PGP Pubkey. Fingerprint: ",
@@ -268,7 +269,10 @@
"Loved by robots: receives positive comments by robots over the internet.": "Loved by robots: receives positive comments by robots over the internet.",
"Maker fee": "挂单方费用",
"Matrix channel copied! {{matrix}}": "Matrix channel copied! {{matrix}}",
+ "Maximum onchain swap size": "Maximum onchain swap size",
+ "Maximum order size": "Maximum order size",
"Not a federation founder": "Not a federation founder",
+ "Onchain payouts disabled": "Onchain payouts disabled",
"Policies": "Policies",
"Public buy orders": "公开购买订单",
"Public sell orders": "公开出售订单",
diff --git a/frontend/static/locales/zh-TR.json b/frontend/static/locales/zh-TR.json
index a8016dc4..5922052d 100644
--- a/frontend/static/locales/zh-TR.json
+++ b/frontend/static/locales/zh-TR.json
@@ -256,6 +256,7 @@
"Coordinator hosted web app": "Coordinator hosted web app",
"Coordinator offline": "Coordinator offline",
"Current onchain payout fee": "當前鏈上支付費用",
+ "Current onchain payout status": "Current onchain payout status",
"Development fund supporter: donates {{percent}}% to make RoboSats better.": "Development fund supporter: donates {{percent}}% to make RoboSats better.",
"Does not have large trade limits.": "Does not have large trade limits.",
"Download PGP Pubkey. Fingerprint: ": "Download PGP Pubkey. Fingerprint: ",
@@ -268,7 +269,10 @@
"Loved by robots: receives positive comments by robots over the internet.": "Loved by robots: receives positive comments by robots over the internet.",
"Maker fee": "掛單方費用",
"Matrix channel copied! {{matrix}}": "Matrix channel copied! {{matrix}}",
+ "Maximum onchain swap size": "Maximum onchain swap size",
+ "Maximum order size": "Maximum order size",
"Not a federation founder": "Not a federation founder",
+ "Onchain payouts disabled": "Onchain payouts disabled",
"Policies": "Policies",
"Public buy orders": "公開購買訂單",
"Public sell orders": "公開出售訂單",