mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-13 02:46:28 +00:00
Display coordinator info on create (#1622)
* Display coordinator info on create * Better info
This commit is contained in:
parent
4b002e5f6c
commit
2645c9eb20
@ -86,6 +86,10 @@ const MakerForm = ({
|
||||
const minRangeAmountMultiple = 1.6;
|
||||
const amountSafeThresholds = [1.03, 0.98];
|
||||
|
||||
useEffect(() => {
|
||||
federation.loadInfo();
|
||||
}, []);
|
||||
|
||||
useEffect(() => {
|
||||
setCurrencyCode(currencyDict[fav.currency === 0 ? 1 : fav.currency]);
|
||||
}, [federationUpdatedAt]);
|
||||
|
@ -8,8 +8,9 @@ import {
|
||||
Typography,
|
||||
type SelectChangeEvent,
|
||||
CircularProgress,
|
||||
Stack,
|
||||
} from '@mui/material';
|
||||
|
||||
import { Bolt, Link, Info } from '@mui/icons-material';
|
||||
import RobotAvatar from '../RobotAvatar';
|
||||
import { AppContext, type UseAppStoreType } from '../../contexts/AppContext';
|
||||
import { useTheme } from '@emotion/react';
|
||||
@ -44,35 +45,37 @@ const SelectCoordinator: React.FC<SelectCoordinatorProps> = ({
|
||||
|
||||
return (
|
||||
<Grid item>
|
||||
<Tooltip
|
||||
placement='top'
|
||||
enterTouchDelay={500}
|
||||
enterDelay={700}
|
||||
enterNextDelay={2000}
|
||||
title={t(
|
||||
'The provider the lightning and communication infrastructure. The host will be in charge of providing support and solving disputes. The trade fees are set by the host. Make sure to only select order hosts that you trust!',
|
||||
)}
|
||||
<Box
|
||||
sx={{
|
||||
backgroundColor: 'background.paper',
|
||||
border: '1px solid',
|
||||
borderRadius: '4px',
|
||||
borderColor: theme.palette.mode === 'dark' ? '#434343' : '#c4c4c4',
|
||||
'&:hover': {
|
||||
borderColor: theme.palette.mode === 'dark' ? '#ffffff' : '#2f2f2f',
|
||||
},
|
||||
}}
|
||||
>
|
||||
<Box
|
||||
sx={{
|
||||
backgroundColor: 'background.paper',
|
||||
border: '1px solid',
|
||||
borderRadius: '4px',
|
||||
borderColor: theme.palette.mode === 'dark' ? '#434343' : '#c4c4c4',
|
||||
'&:hover': {
|
||||
borderColor: theme.palette.mode === 'dark' ? '#ffffff' : '#2f2f2f',
|
||||
},
|
||||
}}
|
||||
<Tooltip
|
||||
placement='top'
|
||||
enterTouchDelay={500}
|
||||
enterDelay={700}
|
||||
enterNextDelay={2000}
|
||||
title={t(
|
||||
'The provider the lightning and communication infrastructure. The host will be in charge of providing support and solving disputes. The trade fees are set by the host. Make sure to only select order hosts that you trust!',
|
||||
)}
|
||||
>
|
||||
<Typography variant='caption' color='text.secondary'>
|
||||
{t('Order Host')}
|
||||
</Typography>
|
||||
|
||||
<Grid container>
|
||||
<Grid container style={{ marginTop: 10 }}>
|
||||
<Grid
|
||||
item
|
||||
xs={3}
|
||||
sx={{ cursor: 'pointer', position: 'relative', left: '0.3em', bottom: '0.1em' }}
|
||||
sx={{
|
||||
cursor: 'pointer',
|
||||
position: 'relative',
|
||||
left: '0.3em',
|
||||
bottom: '0.1em',
|
||||
marginBottom: 1,
|
||||
}}
|
||||
onClick={() => {
|
||||
onClickCurrentCoordinator(coordinatorAlias);
|
||||
}}
|
||||
@ -126,8 +129,81 @@ const SelectCoordinator: React.FC<SelectCoordinatorProps> = ({
|
||||
</Select>
|
||||
</Grid>
|
||||
</Grid>
|
||||
</Box>
|
||||
</Tooltip>
|
||||
</Tooltip>
|
||||
<Grid container>
|
||||
<Grid item>
|
||||
<Stack direction='row' alignContent='center' spacing={2} style={{ flexGrow: 1 }}>
|
||||
<Grid item>
|
||||
<Tooltip
|
||||
placement='top'
|
||||
enterTouchDelay={500}
|
||||
enterDelay={700}
|
||||
enterNextDelay={2000}
|
||||
title={t('Maker fee')}
|
||||
>
|
||||
<Typography
|
||||
color='text.secondary'
|
||||
variant='caption'
|
||||
style={{
|
||||
display: 'flex',
|
||||
alignItems: 'center',
|
||||
}}
|
||||
>
|
||||
{t('Maker')[0]} {((coordinator?.info?.maker_fee ?? 0) * 100).toFixed(3)}%
|
||||
</Typography>
|
||||
</Tooltip>
|
||||
</Grid>
|
||||
<Grid item>
|
||||
<Tooltip
|
||||
placement='top'
|
||||
enterTouchDelay={500}
|
||||
enterDelay={700}
|
||||
enterNextDelay={2000}
|
||||
title={t('Taker fee')}
|
||||
>
|
||||
<Typography
|
||||
color='text.secondary'
|
||||
variant='caption'
|
||||
style={{
|
||||
display: 'flex',
|
||||
alignItems: 'center',
|
||||
}}
|
||||
>
|
||||
{t('Taker')[0]} {((coordinator?.info?.taker_fee ?? 0) * 100).toFixed(3)}%
|
||||
</Typography>
|
||||
</Tooltip>
|
||||
</Grid>
|
||||
<Grid item>
|
||||
<Tooltip
|
||||
placement='top'
|
||||
enterTouchDelay={500}
|
||||
enterDelay={700}
|
||||
enterNextDelay={2000}
|
||||
title={
|
||||
coordinator?.info?.swap_enabled
|
||||
? t('Onchain payouts enabled')
|
||||
: t('Onchain payouts disabled')
|
||||
}
|
||||
>
|
||||
<Typography
|
||||
color={coordinator?.info?.swap_enabled ? 'primary' : 'text.secondary'}
|
||||
variant='caption'
|
||||
style={{
|
||||
display: 'flex',
|
||||
alignItems: 'center',
|
||||
}}
|
||||
>
|
||||
<Link sx={{ height: 16 }} />{' '}
|
||||
{coordinator?.info?.swap_enabled
|
||||
? `${(coordinator?.info?.current_swap_fee_rate ?? 0).toFixed(1)}%`
|
||||
: t('Disabled')}
|
||||
</Typography>
|
||||
</Tooltip>
|
||||
</Grid>
|
||||
</Stack>
|
||||
</Grid>
|
||||
</Grid>
|
||||
</Box>
|
||||
</Grid>
|
||||
);
|
||||
};
|
||||
|
@ -406,7 +406,10 @@
|
||||
"You send approx {{swapSats}} LN Sats (fees might vary)": "Envies aprox. {{swapSats}} LN Sats (les taxes poden variar)",
|
||||
"Your order fixed exchange rate": "La tasa de canvi fixa de la teva ordre",
|
||||
"#38": "Phrases in components/MakerForm/SelectCoordinator.tsx",
|
||||
"Order Host": "Amfitrió de l'ordre",
|
||||
"Disabled": "Disabled",
|
||||
"Maker": "Creador",
|
||||
"Onchain payouts enabled": "Onchain payouts enabled",
|
||||
"Taker": "Prenedor",
|
||||
"The provider the lightning and communication infrastructure. The host will be in charge of providing support and solving disputes. The trade fees are set by the host. Make sure to only select order hosts that you trust!": "El proveïdor de la infraestructura LN i comunicacions. L'amfitrió serà l'encarregat de donar suport i resoldre disputes. LEs comissions de les transaccions són fixades per l'amfitrió. Assegureu-vos de seleccionar només els amfitrions en què confieu!",
|
||||
"#39": "Phrases in components/Notifications/index.tsx",
|
||||
"Lightning routing failed": "L'enrutament Lightning ha fallat",
|
||||
@ -492,7 +495,6 @@
|
||||
"API": "API",
|
||||
"Build-in": "Build-in",
|
||||
"Dark": "Fosc",
|
||||
"Disabled": "Disabled",
|
||||
"Light": "Clar",
|
||||
"Mainnet": "Mainnet",
|
||||
"Testnet": "Testnet",
|
||||
@ -516,7 +518,6 @@
|
||||
"Contract exchange rate": "Taxa de canvi del contracte",
|
||||
"Coordinator trade revenue": "Ingressos pel coordinador de l'intercanvi",
|
||||
"Export trade summary": "Exportar el resumen d'intercanvi",
|
||||
"Maker": "Creador",
|
||||
"Maker bond": "Fiança de creador",
|
||||
"Mining fee": "Comissió minera",
|
||||
"Onchain swap fee": "Taxa de swap onchain",
|
||||
@ -524,7 +525,6 @@
|
||||
"Routing budget": "Pressupost d'enrutament",
|
||||
"Seller": "Venda",
|
||||
"Sent": "Enviat",
|
||||
"Taker": "Prenedor",
|
||||
"Taker bond": "Fiança de prenedor",
|
||||
"Timestamp": "Marca d'hora",
|
||||
"Trade Summary": "Resum de l'intercanvi",
|
||||
|
@ -406,7 +406,10 @@
|
||||
"You send approx {{swapSats}} LN Sats (fees might vary)": "You send approx {{swapSats}} LN Sats (fees might vary)",
|
||||
"Your order fixed exchange rate": "Pevný směnný kurz tvé nabídky",
|
||||
"#38": "Phrases in components/MakerForm/SelectCoordinator.tsx",
|
||||
"Order Host": "Order Host",
|
||||
"Disabled": "Disabled",
|
||||
"Maker": "Tvůrce",
|
||||
"Onchain payouts enabled": "Onchain payouts enabled",
|
||||
"Taker": "Příjemce",
|
||||
"The provider the lightning and communication infrastructure. The host will be in charge of providing support and solving disputes. The trade fees are set by the host. Make sure to only select order hosts that you trust!": "The provider the lightning and communication infrastructure. The host will be in charge of providing support and solving disputes. The trade fees are set by the host. Make sure to only select order hosts that you trust!",
|
||||
"#39": "Phrases in components/Notifications/index.tsx",
|
||||
"Lightning routing failed": "Lightning routing failed",
|
||||
@ -492,7 +495,6 @@
|
||||
"API": "API",
|
||||
"Build-in": "Build-in",
|
||||
"Dark": "Dark",
|
||||
"Disabled": "Disabled",
|
||||
"Light": "Light",
|
||||
"Mainnet": "Mainnet",
|
||||
"Testnet": "Testnet",
|
||||
@ -516,7 +518,6 @@
|
||||
"Contract exchange rate": "Contract exchange rate",
|
||||
"Coordinator trade revenue": "Coordinator trade revenue",
|
||||
"Export trade summary": "Export trade summary",
|
||||
"Maker": "Tvůrce",
|
||||
"Maker bond": "Kauce tvůrce",
|
||||
"Mining fee": "Těžební poplatek",
|
||||
"Onchain swap fee": "Onchain swap poplatek",
|
||||
@ -524,7 +525,6 @@
|
||||
"Routing budget": "Routing budget",
|
||||
"Seller": "Prodavající",
|
||||
"Sent": "Odesláno",
|
||||
"Taker": "Příjemce",
|
||||
"Taker bond": "Kauce příjemce",
|
||||
"Timestamp": "Timestamp",
|
||||
"Trade Summary": "Shrnutí obchodu",
|
||||
|
@ -406,7 +406,10 @@
|
||||
"You send approx {{swapSats}} LN Sats (fees might vary)": "You send approx {{swapSats}} LN Sats (fees might vary)",
|
||||
"Your order fixed exchange rate": "Dein fixierter Order-Kurs",
|
||||
"#38": "Phrases in components/MakerForm/SelectCoordinator.tsx",
|
||||
"Order Host": "Order Host",
|
||||
"Disabled": "Disabled",
|
||||
"Maker": "Maker",
|
||||
"Onchain payouts enabled": "Onchain payouts enabled",
|
||||
"Taker": "Taker",
|
||||
"The provider the lightning and communication infrastructure. The host will be in charge of providing support and solving disputes. The trade fees are set by the host. Make sure to only select order hosts that you trust!": "The provider the lightning and communication infrastructure. The host will be in charge of providing support and solving disputes. The trade fees are set by the host. Make sure to only select order hosts that you trust!",
|
||||
"#39": "Phrases in components/Notifications/index.tsx",
|
||||
"Lightning routing failed": "Lightning routing failed",
|
||||
@ -492,7 +495,6 @@
|
||||
"API": "API",
|
||||
"Build-in": "Build-in",
|
||||
"Dark": "Dark",
|
||||
"Disabled": "Disabled",
|
||||
"Light": "Light",
|
||||
"Mainnet": "Mainnet",
|
||||
"Testnet": "Testnet",
|
||||
@ -516,7 +518,6 @@
|
||||
"Contract exchange rate": "Contract exchange rate",
|
||||
"Coordinator trade revenue": "Coordinator trade revenue",
|
||||
"Export trade summary": "Export trade summary",
|
||||
"Maker": "Maker",
|
||||
"Maker bond": "Maker bond",
|
||||
"Mining fee": "Mining fee",
|
||||
"Onchain swap fee": "Onchain swap fee",
|
||||
@ -524,7 +525,6 @@
|
||||
"Routing budget": "Routing budget",
|
||||
"Seller": "Verkäufer",
|
||||
"Sent": "Sent",
|
||||
"Taker": "Taker",
|
||||
"Taker bond": "Taker bond",
|
||||
"Timestamp": "Timestamp",
|
||||
"Trade Summary": "Trade Summary",
|
||||
|
@ -406,7 +406,10 @@
|
||||
"You send approx {{swapSats}} LN Sats (fees might vary)": "You send approx {{swapSats}} LN Sats (fees might vary)",
|
||||
"Your order fixed exchange rate": "Your order fixed exchange rate",
|
||||
"#38": "Phrases in components/MakerForm/SelectCoordinator.tsx",
|
||||
"Order Host": "Order Host",
|
||||
"Disabled": "Disabled",
|
||||
"Maker": "Maker",
|
||||
"Onchain payouts enabled": "Onchain payouts enabled",
|
||||
"Taker": "Taker",
|
||||
"The provider the lightning and communication infrastructure. The host will be in charge of providing support and solving disputes. The trade fees are set by the host. Make sure to only select order hosts that you trust!": "The provider the lightning and communication infrastructure. The host will be in charge of providing support and solving disputes. The trade fees are set by the host. Make sure to only select order hosts that you trust!",
|
||||
"#39": "Phrases in components/Notifications/index.tsx",
|
||||
"Lightning routing failed": "Lightning routing failed",
|
||||
@ -492,7 +495,6 @@
|
||||
"API": "API",
|
||||
"Build-in": "Build-in",
|
||||
"Dark": "Dark",
|
||||
"Disabled": "Disabled",
|
||||
"Light": "Light",
|
||||
"Mainnet": "Mainnet",
|
||||
"Testnet": "Testnet",
|
||||
@ -516,7 +518,6 @@
|
||||
"Contract exchange rate": "Contract exchange rate",
|
||||
"Coordinator trade revenue": "Coordinator trade revenue",
|
||||
"Export trade summary": "Export trade summary",
|
||||
"Maker": "Maker",
|
||||
"Maker bond": "Maker bond",
|
||||
"Mining fee": "Mining fee",
|
||||
"Onchain swap fee": "Onchain swap fee",
|
||||
@ -524,7 +525,6 @@
|
||||
"Routing budget": "Routing budget",
|
||||
"Seller": "Seller",
|
||||
"Sent": "Sent",
|
||||
"Taker": "Taker",
|
||||
"Taker bond": "Taker bond",
|
||||
"Timestamp": "Timestamp",
|
||||
"Trade Summary": "Trade Summary",
|
||||
|
@ -406,7 +406,10 @@
|
||||
"You send approx {{swapSats}} LN Sats (fees might vary)": "Envías aproximadamente {{swapSats}} LN Sats (la comisión puede variar)",
|
||||
"Your order fixed exchange rate": "La tasa de cambio fija de tu orden",
|
||||
"#38": "Phrases in components/MakerForm/SelectCoordinator.tsx",
|
||||
"Order Host": "Order Host",
|
||||
"Disabled": "Disabled",
|
||||
"Maker": "Creador",
|
||||
"Onchain payouts enabled": "Onchain payouts enabled",
|
||||
"Taker": "Tomador",
|
||||
"The provider the lightning and communication infrastructure. The host will be in charge of providing support and solving disputes. The trade fees are set by the host. Make sure to only select order hosts that you trust!": "The provider the lightning and communication infrastructure. The host will be in charge of providing support and solving disputes. The trade fees are set by the host. Make sure to only select order hosts that you trust!",
|
||||
"#39": "Phrases in components/Notifications/index.tsx",
|
||||
"Lightning routing failed": "Enrutado Lightning fallido",
|
||||
@ -492,7 +495,6 @@
|
||||
"API": "API",
|
||||
"Build-in": "Build-in",
|
||||
"Dark": "Oscuro",
|
||||
"Disabled": "Disabled",
|
||||
"Light": "Claro",
|
||||
"Mainnet": "Mainnet",
|
||||
"Testnet": "Testnet",
|
||||
@ -516,7 +518,6 @@
|
||||
"Contract exchange rate": "Tasa de cambio del contrato",
|
||||
"Coordinator trade revenue": "Recompensa para el coordinador del intercambio",
|
||||
"Export trade summary": "Exportar el resumen de la transacción",
|
||||
"Maker": "Creador",
|
||||
"Maker bond": "Fianza de creador",
|
||||
"Mining fee": "Comisión minera",
|
||||
"Onchain swap fee": "Comisión swap onchain",
|
||||
@ -524,7 +525,6 @@
|
||||
"Routing budget": "Presupuesto de enrutado",
|
||||
"Seller": "Vende",
|
||||
"Sent": "Enviado",
|
||||
"Taker": "Tomador",
|
||||
"Taker bond": "Fianza de tomador",
|
||||
"Timestamp": "Marca de tiempo",
|
||||
"Trade Summary": "Resumen del intercambio",
|
||||
|
@ -406,7 +406,10 @@
|
||||
"You send approx {{swapSats}} LN Sats (fees might vary)": "You send approx {{swapSats}} LN Sats (fees might vary)",
|
||||
"Your order fixed exchange rate": "Zure eskaeraren kanbio-tasa finkoa",
|
||||
"#38": "Phrases in components/MakerForm/SelectCoordinator.tsx",
|
||||
"Order Host": "Order Host",
|
||||
"Disabled": "Disabled",
|
||||
"Maker": "Egile",
|
||||
"Onchain payouts enabled": "Onchain payouts enabled",
|
||||
"Taker": "Hartzaile",
|
||||
"The provider the lightning and communication infrastructure. The host will be in charge of providing support and solving disputes. The trade fees are set by the host. Make sure to only select order hosts that you trust!": "The provider the lightning and communication infrastructure. The host will be in charge of providing support and solving disputes. The trade fees are set by the host. Make sure to only select order hosts that you trust!",
|
||||
"#39": "Phrases in components/Notifications/index.tsx",
|
||||
"Lightning routing failed": "Lightning routing failed",
|
||||
@ -492,7 +495,6 @@
|
||||
"API": "API",
|
||||
"Build-in": "Build-in",
|
||||
"Dark": "Dark",
|
||||
"Disabled": "Disabled",
|
||||
"Light": "Light",
|
||||
"Mainnet": "Mainnet",
|
||||
"Testnet": "Testnet",
|
||||
@ -516,7 +518,6 @@
|
||||
"Contract exchange rate": "Kontratuaren truke-tasa",
|
||||
"Coordinator trade revenue": "Coordinator trade revenue",
|
||||
"Export trade summary": "Export trade summary",
|
||||
"Maker": "Egile",
|
||||
"Maker bond": "Egile fidantza",
|
||||
"Mining fee": "Meatzaritza kuota",
|
||||
"Onchain swap fee": "Onchain swap kuota",
|
||||
@ -524,7 +525,6 @@
|
||||
"Routing budget": "Routing budget",
|
||||
"Seller": "Saltzaile",
|
||||
"Sent": "Bidalita",
|
||||
"Taker": "Hartzaile",
|
||||
"Taker bond": "Hartzaile fidantza",
|
||||
"Timestamp": "Amaiera ordua",
|
||||
"Trade Summary": "Salerosketaren laburpena",
|
||||
|
@ -406,7 +406,10 @@
|
||||
"You send approx {{swapSats}} LN Sats (fees might vary)": "Vous envoyez environ {{swapSats}} LN Sats (les frais peuvent varier)",
|
||||
"Your order fixed exchange rate": "Taux de change fixe de votre commande",
|
||||
"#38": "Phrases in components/MakerForm/SelectCoordinator.tsx",
|
||||
"Order Host": "Order Host",
|
||||
"Disabled": "Disabled",
|
||||
"Maker": "Auteur",
|
||||
"Onchain payouts enabled": "Onchain payouts enabled",
|
||||
"Taker": "Preneur",
|
||||
"The provider the lightning and communication infrastructure. The host will be in charge of providing support and solving disputes. The trade fees are set by the host. Make sure to only select order hosts that you trust!": "The provider the lightning and communication infrastructure. The host will be in charge of providing support and solving disputes. The trade fees are set by the host. Make sure to only select order hosts that you trust!",
|
||||
"#39": "Phrases in components/Notifications/index.tsx",
|
||||
"Lightning routing failed": "Échec routage Lightning",
|
||||
@ -492,7 +495,6 @@
|
||||
"API": "API",
|
||||
"Build-in": "Build-in",
|
||||
"Dark": "Sombre",
|
||||
"Disabled": "Disabled",
|
||||
"Light": "Light",
|
||||
"Mainnet": "Mainnet",
|
||||
"Testnet": "Testnet",
|
||||
@ -516,7 +518,6 @@
|
||||
"Contract exchange rate": "Taux de change du contrat",
|
||||
"Coordinator trade revenue": "Revenue transaction coordinateur",
|
||||
"Export trade summary": "Export résumé transaction",
|
||||
"Maker": "Auteur",
|
||||
"Maker bond": "Caution de l'auteur",
|
||||
"Mining fee": "Frais du minage",
|
||||
"Onchain swap fee": "Frais des échanges Onchain",
|
||||
@ -524,7 +525,6 @@
|
||||
"Routing budget": "Budget de routage",
|
||||
"Seller": "Vendeur",
|
||||
"Sent": "Envoyé",
|
||||
"Taker": "Preneur",
|
||||
"Taker bond": "Preneur de la caution",
|
||||
"Timestamp": "Horodatage",
|
||||
"Trade Summary": "Résumé transaction",
|
||||
|
@ -406,7 +406,10 @@
|
||||
"You send approx {{swapSats}} LN Sats (fees might vary)": "Invierai circa {{swapSats}} LN Sats (le commissioni possono variare)",
|
||||
"Your order fixed exchange rate": "Il tasso di cambio fisso del tuo ordine",
|
||||
"#38": "Phrases in components/MakerForm/SelectCoordinator.tsx",
|
||||
"Order Host": "Order Host",
|
||||
"Disabled": "Disabled",
|
||||
"Maker": "Maker",
|
||||
"Onchain payouts enabled": "Onchain payouts enabled",
|
||||
"Taker": "Taker",
|
||||
"The provider the lightning and communication infrastructure. The host will be in charge of providing support and solving disputes. The trade fees are set by the host. Make sure to only select order hosts that you trust!": "The provider the lightning and communication infrastructure. The host will be in charge of providing support and solving disputes. The trade fees are set by the host. Make sure to only select order hosts that you trust!",
|
||||
"#39": "Phrases in components/Notifications/index.tsx",
|
||||
"Lightning routing failed": "Routing Lightning fallito",
|
||||
@ -492,7 +495,6 @@
|
||||
"API": "API",
|
||||
"Build-in": "Build-in",
|
||||
"Dark": "Scuro",
|
||||
"Disabled": "Disabled",
|
||||
"Light": "Chiaro",
|
||||
"Mainnet": "Mainnet",
|
||||
"Testnet": "Testnet",
|
||||
@ -516,7 +518,6 @@
|
||||
"Contract exchange rate": "Tasso di cambio contrattuale",
|
||||
"Coordinator trade revenue": "Guadagno del coordinatore",
|
||||
"Export trade summary": "Esporta riepilogo dello scambio",
|
||||
"Maker": "Maker",
|
||||
"Maker bond": "Cauzione del maker",
|
||||
"Mining fee": "Commissione di mining",
|
||||
"Onchain swap fee": "Commissione di swap onchain",
|
||||
@ -524,7 +525,6 @@
|
||||
"Routing budget": "Budget di routing",
|
||||
"Seller": "Offerente",
|
||||
"Sent": "Inviato",
|
||||
"Taker": "Taker",
|
||||
"Taker bond": "Cauzione del taker",
|
||||
"Timestamp": "Timestamp",
|
||||
"Trade Summary": "Riepilogo dello scambio",
|
||||
|
@ -406,7 +406,10 @@
|
||||
"You send approx {{swapSats}} LN Sats (fees might vary)": "約{{swapSats}} ライトニングSatsを送信します(手数料は異なる場合があります)",
|
||||
"Your order fixed exchange rate": "注文の固定為替レート",
|
||||
"#38": "Phrases in components/MakerForm/SelectCoordinator.tsx",
|
||||
"Order Host": "Order Host",
|
||||
"Disabled": "Disabled",
|
||||
"Maker": "メーカー",
|
||||
"Onchain payouts enabled": "Onchain payouts enabled",
|
||||
"Taker": "テイカー",
|
||||
"The provider the lightning and communication infrastructure. The host will be in charge of providing support and solving disputes. The trade fees are set by the host. Make sure to only select order hosts that you trust!": "The provider the lightning and communication infrastructure. The host will be in charge of providing support and solving disputes. The trade fees are set by the host. Make sure to only select order hosts that you trust!",
|
||||
"#39": "Phrases in components/Notifications/index.tsx",
|
||||
"Lightning routing failed": "ライトニングのルーティングに失敗しました",
|
||||
@ -492,7 +495,6 @@
|
||||
"API": "API",
|
||||
"Build-in": "Build-in",
|
||||
"Dark": "ダーク",
|
||||
"Disabled": "Disabled",
|
||||
"Light": "ライト",
|
||||
"Mainnet": "メインネット",
|
||||
"Testnet": "テストネット",
|
||||
@ -516,7 +518,6 @@
|
||||
"Contract exchange rate": "契約為替レート",
|
||||
"Coordinator trade revenue": "取引コーディネーターの収益",
|
||||
"Export trade summary": "取引概要をエクスポートする",
|
||||
"Maker": "メーカー",
|
||||
"Maker bond": "メーカーの担保金",
|
||||
"Mining fee": "マイニング手数料",
|
||||
"Onchain swap fee": "オンチェーンスワップ手数料",
|
||||
@ -524,7 +525,6 @@
|
||||
"Routing budget": "ルーティング予算",
|
||||
"Seller": "売り手",
|
||||
"Sent": "送信",
|
||||
"Taker": "テイカー",
|
||||
"Taker bond": "テイカーの担保金",
|
||||
"Timestamp": "タイムスタンプ",
|
||||
"Trade Summary": "取引概要",
|
||||
|
@ -406,7 +406,10 @@
|
||||
"You send approx {{swapSats}} LN Sats (fees might vary)": "You send approx {{swapSats}} LN Sats (fees might vary)",
|
||||
"Your order fixed exchange rate": "Your order fixed exchange rate",
|
||||
"#38": "Phrases in components/MakerForm/SelectCoordinator.tsx",
|
||||
"Order Host": "Order Host",
|
||||
"Disabled": "Disabled",
|
||||
"Maker": "Maker",
|
||||
"Onchain payouts enabled": "Onchain payouts enabled",
|
||||
"Taker": "Taker",
|
||||
"The provider the lightning and communication infrastructure. The host will be in charge of providing support and solving disputes. The trade fees are set by the host. Make sure to only select order hosts that you trust!": "The provider the lightning and communication infrastructure. The host will be in charge of providing support and solving disputes. The trade fees are set by the host. Make sure to only select order hosts that you trust!",
|
||||
"#39": "Phrases in components/Notifications/index.tsx",
|
||||
"Lightning routing failed": "Lightning routing failed",
|
||||
@ -492,7 +495,6 @@
|
||||
"API": "API",
|
||||
"Build-in": "Build-in",
|
||||
"Dark": "Dark",
|
||||
"Disabled": "Disabled",
|
||||
"Light": "Light",
|
||||
"Mainnet": "Mainnet",
|
||||
"Testnet": "Testnet",
|
||||
@ -516,7 +518,6 @@
|
||||
"Contract exchange rate": "Contract exchange rate",
|
||||
"Coordinator trade revenue": "Coordinator trade revenue",
|
||||
"Export trade summary": "Export trade summary",
|
||||
"Maker": "Maker",
|
||||
"Maker bond": "Maker bond",
|
||||
"Mining fee": "Mining fee",
|
||||
"Onchain swap fee": "Onchain swap fee",
|
||||
@ -524,7 +525,6 @@
|
||||
"Routing budget": "Routing budget",
|
||||
"Seller": "Sprzedawca",
|
||||
"Sent": "Sent",
|
||||
"Taker": "Taker",
|
||||
"Taker bond": "Taker bond",
|
||||
"Timestamp": "Timestamp",
|
||||
"Trade Summary": "Trade Summary",
|
||||
|
@ -406,7 +406,10 @@
|
||||
"You send approx {{swapSats}} LN Sats (fees might vary)": "Você envia aprox {{swapSats}} LN Sats (as taxas podem variar)",
|
||||
"Your order fixed exchange rate": "Taxa de câmbio fixa do seu pedido",
|
||||
"#38": "Phrases in components/MakerForm/SelectCoordinator.tsx",
|
||||
"Order Host": "Order Host",
|
||||
"Disabled": "Disabled",
|
||||
"Maker": "Maker",
|
||||
"Onchain payouts enabled": "Onchain payouts enabled",
|
||||
"Taker": "Taker",
|
||||
"The provider the lightning and communication infrastructure. The host will be in charge of providing support and solving disputes. The trade fees are set by the host. Make sure to only select order hosts that you trust!": "The provider the lightning and communication infrastructure. The host will be in charge of providing support and solving disputes. The trade fees are set by the host. Make sure to only select order hosts that you trust!",
|
||||
"#39": "Phrases in components/Notifications/index.tsx",
|
||||
"Lightning routing failed": "Lightning routing failed",
|
||||
@ -492,7 +495,6 @@
|
||||
"API": "API",
|
||||
"Build-in": "Build-in",
|
||||
"Dark": "Dark",
|
||||
"Disabled": "Disabled",
|
||||
"Light": "Light",
|
||||
"Mainnet": "Mainnet",
|
||||
"Testnet": "Testnet",
|
||||
@ -516,7 +518,6 @@
|
||||
"Contract exchange rate": "Contract exchange rate",
|
||||
"Coordinator trade revenue": "Coordinator trade revenue",
|
||||
"Export trade summary": "Export trade summary",
|
||||
"Maker": "Maker",
|
||||
"Maker bond": "Maker bond",
|
||||
"Mining fee": "Taxa de mineração",
|
||||
"Onchain swap fee": "Onchain swap fee",
|
||||
@ -524,7 +525,6 @@
|
||||
"Routing budget": "Routing budget",
|
||||
"Seller": "Vedendor",
|
||||
"Sent": "Sent",
|
||||
"Taker": "Taker",
|
||||
"Taker bond": "Taker bond",
|
||||
"Timestamp": "Timestamp",
|
||||
"Trade Summary": "Trade Summary",
|
||||
|
@ -406,7 +406,10 @@
|
||||
"You send approx {{swapSats}} LN Sats (fees might vary)": "Вы отправляете примерно {{swapSats}} спутников LN (комиссия может различаться)",
|
||||
"Your order fixed exchange rate": "Фиксированный курс обмена Вашего ордера",
|
||||
"#38": "Phrases in components/MakerForm/SelectCoordinator.tsx",
|
||||
"Order Host": "Order Host",
|
||||
"Disabled": "Disabled",
|
||||
"Maker": "Мейкер",
|
||||
"Onchain payouts enabled": "Onchain payouts enabled",
|
||||
"Taker": "Тейкер",
|
||||
"The provider the lightning and communication infrastructure. The host will be in charge of providing support and solving disputes. The trade fees are set by the host. Make sure to only select order hosts that you trust!": "The provider the lightning and communication infrastructure. The host will be in charge of providing support and solving disputes. The trade fees are set by the host. Make sure to only select order hosts that you trust!",
|
||||
"#39": "Phrases in components/Notifications/index.tsx",
|
||||
"Lightning routing failed": "Маршрутизация Lightning не удалась",
|
||||
@ -492,7 +495,6 @@
|
||||
"API": "API",
|
||||
"Build-in": "Build-in",
|
||||
"Dark": "Темный",
|
||||
"Disabled": "Disabled",
|
||||
"Light": "Светлый",
|
||||
"Mainnet": "Основная сеть",
|
||||
"Testnet": "Тестовая сеть",
|
||||
@ -516,7 +518,6 @@
|
||||
"Contract exchange rate": "Курс обмена контракта",
|
||||
"Coordinator trade revenue": "Доход координатора сделки",
|
||||
"Export trade summary": "Экспортировать сводку торговли",
|
||||
"Maker": "Мейкер",
|
||||
"Maker bond": "Залог мейкера",
|
||||
"Mining fee": "Комиссия майнерам",
|
||||
"Onchain swap fee": "Комиссия за ончйн обмен",
|
||||
@ -524,7 +525,6 @@
|
||||
"Routing budget": "Бюджет маршрутизации",
|
||||
"Seller": "Продавец",
|
||||
"Sent": "Отправлено",
|
||||
"Taker": "Тейкер",
|
||||
"Taker bond": "Залог тейкера",
|
||||
"Timestamp": "Временная метка",
|
||||
"Trade Summary": "Сводка Сделки",
|
||||
|
@ -406,7 +406,10 @@
|
||||
"You send approx {{swapSats}} LN Sats (fees might vary)": "You send approx {{swapSats}} LN Sats (fees might vary)",
|
||||
"Your order fixed exchange rate": "Din orders fasta växelkurs",
|
||||
"#38": "Phrases in components/MakerForm/SelectCoordinator.tsx",
|
||||
"Order Host": "Order Host",
|
||||
"Disabled": "Disabled",
|
||||
"Maker": "Maker",
|
||||
"Onchain payouts enabled": "Onchain payouts enabled",
|
||||
"Taker": "Taker",
|
||||
"The provider the lightning and communication infrastructure. The host will be in charge of providing support and solving disputes. The trade fees are set by the host. Make sure to only select order hosts that you trust!": "The provider the lightning and communication infrastructure. The host will be in charge of providing support and solving disputes. The trade fees are set by the host. Make sure to only select order hosts that you trust!",
|
||||
"#39": "Phrases in components/Notifications/index.tsx",
|
||||
"Lightning routing failed": "Lightning routing failed",
|
||||
@ -492,7 +495,6 @@
|
||||
"API": "API",
|
||||
"Build-in": "Build-in",
|
||||
"Dark": "Dark",
|
||||
"Disabled": "Disabled",
|
||||
"Light": "Light",
|
||||
"Mainnet": "Mainnet",
|
||||
"Testnet": "Testnet",
|
||||
@ -516,7 +518,6 @@
|
||||
"Contract exchange rate": "Contract exchange rate",
|
||||
"Coordinator trade revenue": "Coordinator trade revenue",
|
||||
"Export trade summary": "Export trade summary",
|
||||
"Maker": "Maker",
|
||||
"Maker bond": "Maker bond",
|
||||
"Mining fee": "Miningavgift",
|
||||
"Onchain swap fee": "Onchain swap fee",
|
||||
@ -524,7 +525,6 @@
|
||||
"Routing budget": "Routing budget",
|
||||
"Seller": "Säljare",
|
||||
"Sent": "Sent",
|
||||
"Taker": "Taker",
|
||||
"Taker bond": "Taker bond",
|
||||
"Timestamp": "Timestamp",
|
||||
"Trade Summary": "Trade Summary",
|
||||
|
@ -406,7 +406,10 @@
|
||||
"You send approx {{swapSats}} LN Sats (fees might vary)": "Unatuma takribani {{swapSats}} LN Sats (ada inaweza kutofautiana)",
|
||||
"Your order fixed exchange rate": "Kiwango chako cha kubadilisha cha amri",
|
||||
"#38": "Phrases in components/MakerForm/SelectCoordinator.tsx",
|
||||
"Order Host": "Order Host",
|
||||
"Disabled": "Disabled",
|
||||
"Maker": "Muumba",
|
||||
"Onchain payouts enabled": "Onchain payouts enabled",
|
||||
"Taker": "Mpokeaji",
|
||||
"The provider the lightning and communication infrastructure. The host will be in charge of providing support and solving disputes. The trade fees are set by the host. Make sure to only select order hosts that you trust!": "The provider the lightning and communication infrastructure. The host will be in charge of providing support and solving disputes. The trade fees are set by the host. Make sure to only select order hosts that you trust!",
|
||||
"#39": "Phrases in components/Notifications/index.tsx",
|
||||
"Lightning routing failed": "Uhamishaji wa Lightning umeshindwa",
|
||||
@ -492,7 +495,6 @@
|
||||
"API": "API",
|
||||
"Build-in": "Build-in",
|
||||
"Dark": "Giza",
|
||||
"Disabled": "Disabled",
|
||||
"Light": "Nuru",
|
||||
"Mainnet": "Mainnet",
|
||||
"Testnet": "Testnet",
|
||||
@ -516,7 +518,6 @@
|
||||
"Contract exchange rate": "Kiwango cha ubadilishaji wa mkataba",
|
||||
"Coordinator trade revenue": "Mapato ya biashara ya mratibu",
|
||||
"Export trade summary": "Hamisha muhtasari wa biashara",
|
||||
"Maker": "Muumba",
|
||||
"Maker bond": "Dhamana ya Muumba",
|
||||
"Mining fee": "Ada ya uchimbaji madini",
|
||||
"Onchain swap fee": "Ada ya kubadilisha sarafu kwenye mnyororo",
|
||||
@ -524,7 +525,6 @@
|
||||
"Routing budget": "Bajeti ya urudishaji",
|
||||
"Seller": "Muuzaji",
|
||||
"Sent": "Imetumwa",
|
||||
"Taker": "Mpokeaji",
|
||||
"Taker bond": "Dhamana ya Mpokeaji",
|
||||
"Timestamp": "Timestamp",
|
||||
"Trade Summary": "Muhtasari wa Biashara",
|
||||
|
@ -406,7 +406,10 @@
|
||||
"You send approx {{swapSats}} LN Sats (fees might vary)": "You send approx {{swapSats}} LN Sats (fees might vary)",
|
||||
"Your order fixed exchange rate": "คุณกำหนดอัตราแลกเปลี่ยนคงที่",
|
||||
"#38": "Phrases in components/MakerForm/SelectCoordinator.tsx",
|
||||
"Order Host": "Order Host",
|
||||
"Disabled": "Disabled",
|
||||
"Maker": "Maker",
|
||||
"Onchain payouts enabled": "Onchain payouts enabled",
|
||||
"Taker": "Taker",
|
||||
"The provider the lightning and communication infrastructure. The host will be in charge of providing support and solving disputes. The trade fees are set by the host. Make sure to only select order hosts that you trust!": "The provider the lightning and communication infrastructure. The host will be in charge of providing support and solving disputes. The trade fees are set by the host. Make sure to only select order hosts that you trust!",
|
||||
"#39": "Phrases in components/Notifications/index.tsx",
|
||||
"Lightning routing failed": "Lightning routing failed",
|
||||
@ -492,7 +495,6 @@
|
||||
"API": "API",
|
||||
"Build-in": "Build-in",
|
||||
"Dark": "Dark",
|
||||
"Disabled": "Disabled",
|
||||
"Light": "Light",
|
||||
"Mainnet": "Mainnet",
|
||||
"Testnet": "Testnet",
|
||||
@ -516,7 +518,6 @@
|
||||
"Contract exchange rate": "อัตราแลกเปลี่ยน",
|
||||
"Coordinator trade revenue": "Coordinator trade revenue",
|
||||
"Export trade summary": "Export trade summary",
|
||||
"Maker": "Maker",
|
||||
"Maker bond": "Maker bond",
|
||||
"Mining fee": "ค่าธรรมเนียมการขุด",
|
||||
"Onchain swap fee": "ค่าธรรมเนียมการสลับ Onchain",
|
||||
@ -524,7 +525,6 @@
|
||||
"Routing budget": "Routing budget",
|
||||
"Seller": "ผู้ขาย",
|
||||
"Sent": "ส่งแล้ว",
|
||||
"Taker": "Taker",
|
||||
"Taker bond": "Taker bond",
|
||||
"Timestamp": "ประทับเวลา",
|
||||
"Trade Summary": "สรุปการซื้อขาย",
|
||||
|
@ -406,7 +406,10 @@
|
||||
"You send approx {{swapSats}} LN Sats (fees might vary)": "你将发送大约{{swapSats}}闪电聪(费用会造成有所差异)",
|
||||
"Your order fixed exchange rate": "你的订单的固定汇率",
|
||||
"#38": "Phrases in components/MakerForm/SelectCoordinator.tsx",
|
||||
"Order Host": "Order Host",
|
||||
"Disabled": "Disabled",
|
||||
"Maker": "挂单方",
|
||||
"Onchain payouts enabled": "Onchain payouts enabled",
|
||||
"Taker": "吃单方",
|
||||
"The provider the lightning and communication infrastructure. The host will be in charge of providing support and solving disputes. The trade fees are set by the host. Make sure to only select order hosts that you trust!": "The provider the lightning and communication infrastructure. The host will be in charge of providing support and solving disputes. The trade fees are set by the host. Make sure to only select order hosts that you trust!",
|
||||
"#39": "Phrases in components/Notifications/index.tsx",
|
||||
"Lightning routing failed": "闪电路由失败",
|
||||
@ -492,7 +495,6 @@
|
||||
"API": "API",
|
||||
"Build-in": "Build-in",
|
||||
"Dark": "深色",
|
||||
"Disabled": "Disabled",
|
||||
"Light": "浅色",
|
||||
"Mainnet": "主网",
|
||||
"Testnet": "测试网",
|
||||
@ -516,7 +518,6 @@
|
||||
"Contract exchange rate": "合约交易率",
|
||||
"Coordinator trade revenue": "协调器交易收入",
|
||||
"Export trade summary": "导出交易概要",
|
||||
"Maker": "挂单方",
|
||||
"Maker bond": "挂单方保证金",
|
||||
"Mining fee": "挖矿费",
|
||||
"Onchain swap fee": "链上交换费",
|
||||
@ -524,7 +525,6 @@
|
||||
"Routing budget": "路由预算",
|
||||
"Seller": "卖方",
|
||||
"Sent": "已发送",
|
||||
"Taker": "吃单方",
|
||||
"Taker bond": "吃单方保证金",
|
||||
"Timestamp": "时间戳",
|
||||
"Trade Summary": "交易概括",
|
||||
|
@ -406,7 +406,10 @@
|
||||
"You send approx {{swapSats}} LN Sats (fees might vary)": "你將發送大約{{swapSats}}閃電聰(費用會造成有所差異)",
|
||||
"Your order fixed exchange rate": "你的訂單的固定匯率",
|
||||
"#38": "Phrases in components/MakerForm/SelectCoordinator.tsx",
|
||||
"Order Host": "Order Host",
|
||||
"Disabled": "Disabled",
|
||||
"Maker": "掛單方",
|
||||
"Onchain payouts enabled": "Onchain payouts enabled",
|
||||
"Taker": "吃單方",
|
||||
"The provider the lightning and communication infrastructure. The host will be in charge of providing support and solving disputes. The trade fees are set by the host. Make sure to only select order hosts that you trust!": "The provider the lightning and communication infrastructure. The host will be in charge of providing support and solving disputes. The trade fees are set by the host. Make sure to only select order hosts that you trust!",
|
||||
"#39": "Phrases in components/Notifications/index.tsx",
|
||||
"Lightning routing failed": "閃電路由失敗",
|
||||
@ -492,7 +495,6 @@
|
||||
"API": "API",
|
||||
"Build-in": "Build-in",
|
||||
"Dark": "深色",
|
||||
"Disabled": "Disabled",
|
||||
"Light": "淺色",
|
||||
"Mainnet": "主網",
|
||||
"Testnet": "測試網",
|
||||
@ -516,7 +518,6 @@
|
||||
"Contract exchange rate": "合約交易率",
|
||||
"Coordinator trade revenue": "協調器交易收入",
|
||||
"Export trade summary": "導出交易概要",
|
||||
"Maker": "掛單方",
|
||||
"Maker bond": "掛單方保證金",
|
||||
"Mining fee": "挖礦費",
|
||||
"Onchain swap fee": "鏈上交換費",
|
||||
@ -524,7 +525,6 @@
|
||||
"Routing budget": "路由預算",
|
||||
"Seller": "賣方",
|
||||
"Sent": "已發送",
|
||||
"Taker": "吃單方",
|
||||
"Taker bond": "吃單方保證金",
|
||||
"Timestamp": "時間戳",
|
||||
"Trade Summary": "交易概括",
|
||||
|
Loading…
Reference in New Issue
Block a user