mirror of
https://github.com/RoboSats/robosats.git
synced 2025-02-21 20:59:01 +00:00
Fix coordinator hosted web app
This commit is contained in:
parent
f7b504cea7
commit
5dcb6f0394
@ -21,6 +21,7 @@ import {
|
|||||||
AccordionDetails,
|
AccordionDetails,
|
||||||
AccordionSummary,
|
AccordionSummary,
|
||||||
AlertTitle,
|
AlertTitle,
|
||||||
|
ListItemButton,
|
||||||
} from '@mui/material';
|
} from '@mui/material';
|
||||||
|
|
||||||
import {
|
import {
|
||||||
@ -42,6 +43,7 @@ import {
|
|||||||
Language,
|
Language,
|
||||||
Send,
|
Send,
|
||||||
Tag,
|
Tag,
|
||||||
|
Web,
|
||||||
} from '@mui/icons-material';
|
} from '@mui/icons-material';
|
||||||
import LinkIcon from '@mui/icons-material/Link';
|
import LinkIcon from '@mui/icons-material/Link';
|
||||||
|
|
||||||
@ -440,43 +442,29 @@ const CoordinatorDialog = ({ open = false, onClose, network, shortAlias }: Props
|
|||||||
/>
|
/>
|
||||||
</ListItem>
|
</ListItem>
|
||||||
|
|
||||||
{coordinator?.mainnetNodesPubkeys?.[0] !== undefined && network === 'mainnet' ? (
|
<ListItemButton
|
||||||
<ListItem>
|
target='_blank'
|
||||||
<ListItemIcon>
|
href={coordinator?.[settings.network][settings.selfhostedClient ? 'onion' : origin]}
|
||||||
<AmbossIcon />
|
rel='noreferrer'
|
||||||
</ListItemIcon>
|
>
|
||||||
<ListItemText secondary={t('Mainnet LN Node')}>
|
<ListItemIcon>
|
||||||
<Link
|
<Web />
|
||||||
target='_blank'
|
</ListItemIcon>
|
||||||
href={`https://amboss.space/node/${coordinator?.mainnetNodesPubkeys[0]}`}
|
<ListItemText
|
||||||
rel='noreferrer'
|
secondary={t('Coordinator hosted web app')}
|
||||||
>
|
primaryTypographyProps={{
|
||||||
{`${coordinator?.mainnetNodesPubkeys?.[0].slice(0, 12)}... (AMBOSS)`}
|
style: {
|
||||||
</Link>
|
maxWidth: '20em',
|
||||||
</ListItemText>
|
wordWrap: 'break-word',
|
||||||
</ListItem>
|
overflowWrap: 'break-word',
|
||||||
) : (
|
},
|
||||||
<></>
|
}}
|
||||||
)}
|
>
|
||||||
|
{`${String(
|
||||||
{coordinator?.testnetNodesPubkeys?.[0] !== undefined && network === 'testnet' ? (
|
coordinator?.[settings.network][settings.selfhostedClient ? 'onion' : origin],
|
||||||
<ListItem>
|
)}`}
|
||||||
<ListItemIcon>
|
</ListItemText>
|
||||||
<Dns />
|
</ListItemButton>
|
||||||
</ListItemIcon>
|
|
||||||
<ListItemText secondary={t('Testnet LN Node')}>
|
|
||||||
<Link
|
|
||||||
target='_blank'
|
|
||||||
href={`https://1ml.com/testnet/node/${coordinator?.testnetNodesPubkeys[0]}`}
|
|
||||||
rel='noreferrer'
|
|
||||||
>
|
|
||||||
{`${coordinator?.testnetNodesPubkeys[0].slice(0, 12)}... (1ML)`}
|
|
||||||
</Link>
|
|
||||||
</ListItemText>
|
|
||||||
</ListItem>
|
|
||||||
) : (
|
|
||||||
<></>
|
|
||||||
)}
|
|
||||||
</List>
|
</List>
|
||||||
|
|
||||||
{coordinator?.loadingInfo ? (
|
{coordinator?.loadingInfo ? (
|
||||||
@ -631,40 +619,6 @@ const CoordinatorDialog = ({ open = false, onClose, network, shortAlias }: Props
|
|||||||
</AccordionSummary>
|
</AccordionSummary>
|
||||||
<AccordionDetails>
|
<AccordionDetails>
|
||||||
<List dense>
|
<List dense>
|
||||||
<ListItem {...listItemProps}>
|
|
||||||
<ListItemIcon>
|
|
||||||
<Dns />
|
|
||||||
</ListItemIcon>
|
|
||||||
<ListItemText
|
|
||||||
secondary={t('Coordinator domain')}
|
|
||||||
primaryTypographyProps={{
|
|
||||||
style: {
|
|
||||||
maxWidth: '20em',
|
|
||||||
wordWrap: 'break-word',
|
|
||||||
overflowWrap: 'break-word',
|
|
||||||
},
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<Link
|
|
||||||
target='_blank'
|
|
||||||
href={
|
|
||||||
coordinator?.[settings.network][
|
|
||||||
settings.selfhostedClient ? 'onion' : origin
|
|
||||||
]
|
|
||||||
}
|
|
||||||
rel='noreferrer'
|
|
||||||
>
|
|
||||||
{`${String(
|
|
||||||
coordinator?.[settings.network][
|
|
||||||
settings.selfhostedClient ? 'onion' : origin
|
|
||||||
],
|
|
||||||
)}`}
|
|
||||||
</Link>
|
|
||||||
</ListItemText>
|
|
||||||
</ListItem>
|
|
||||||
|
|
||||||
<Divider />
|
|
||||||
|
|
||||||
<ListItem {...listItemProps}>
|
<ListItem {...listItemProps}>
|
||||||
<ListItemIcon>
|
<ListItemIcon>
|
||||||
<RoboSatsNoTextIcon
|
<RoboSatsNoTextIcon
|
||||||
@ -778,7 +732,7 @@ const CoordinatorDialog = ({ open = false, onClose, network, shortAlias }: Props
|
|||||||
>
|
>
|
||||||
{pn(parseFloat(coordinator?.info?.last_day_volume).toFixed(8))}
|
{pn(parseFloat(coordinator?.info?.last_day_volume).toFixed(8))}
|
||||||
<BitcoinSignIcon
|
<BitcoinSignIcon
|
||||||
sx={{ width: '1em', height: '1em' }}
|
sx={{ width: '0.6em', height: '0.6em' }}
|
||||||
color={'text.secondary'}
|
color={'text.secondary'}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@ -802,7 +756,7 @@ const CoordinatorDialog = ({ open = false, onClose, network, shortAlias }: Props
|
|||||||
>
|
>
|
||||||
{pn(parseFloat(coordinator?.info?.lifetime_volume).toFixed(8))}
|
{pn(parseFloat(coordinator?.info?.lifetime_volume).toFixed(8))}
|
||||||
<BitcoinSignIcon
|
<BitcoinSignIcon
|
||||||
sx={{ width: '1em', height: '1em' }}
|
sx={{ width: '0.6em', height: '0.6em' }}
|
||||||
color={'text.secondary'}
|
color={'text.secondary'}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
@ -156,7 +156,7 @@ const ExchangeDialog = ({ open = false, onClose }: Props): JSX.Element => {
|
|||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
{pn(federation.exchange.info.last_day_volume)}
|
{pn(federation.exchange.info.last_day_volume)}
|
||||||
<BitcoinSignIcon sx={{ width: 14, height: 14 }} color='text.secondary' />
|
<BitcoinSignIcon sx={{ width: '0.6em', height: '0.6em' }} color='text.secondary' />
|
||||||
</div>
|
</div>
|
||||||
</ListItemText>
|
</ListItemText>
|
||||||
</ListItem>
|
</ListItem>
|
||||||
@ -177,7 +177,7 @@ const ExchangeDialog = ({ open = false, onClose }: Props): JSX.Element => {
|
|||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
{pn(federation.exchange.info.lifetime_volume)}
|
{pn(federation.exchange.info.lifetime_volume)}
|
||||||
<BitcoinSignIcon sx={{ width: 14, height: 14 }} color='text.secondary' />
|
<BitcoinSignIcon sx={{ width: '0.6em', height: '0.6em' }} color='text.secondary' />
|
||||||
</div>
|
</div>
|
||||||
</ListItemText>
|
</ListItemText>
|
||||||
</ListItem>
|
</ListItem>
|
||||||
|
@ -251,7 +251,7 @@
|
|||||||
"Coordinator Notice": "Coordinator Notice",
|
"Coordinator Notice": "Coordinator Notice",
|
||||||
"Coordinator commit hash": "Coordinator commit hash",
|
"Coordinator commit hash": "Coordinator commit hash",
|
||||||
"Coordinator description": "Coordinator description",
|
"Coordinator description": "Coordinator description",
|
||||||
"Coordinator domain": "Coordinator domain",
|
"Coordinator hosted web app": "Coordinator hosted web app",
|
||||||
"Coordinator offline": "Coordinator offline",
|
"Coordinator offline": "Coordinator offline",
|
||||||
"Current onchain payout fee": "Cost actual de rebre onchain",
|
"Current onchain payout fee": "Cost actual de rebre onchain",
|
||||||
"Development fund supporter: donates {{percent}}% to make RoboSats better.": "Development fund supporter: donates {{percent}}% to make RoboSats better.",
|
"Development fund supporter: donates {{percent}}% to make RoboSats better.": "Development fund supporter: donates {{percent}}% to make RoboSats better.",
|
||||||
@ -264,7 +264,6 @@
|
|||||||
"Large limits: the coordinator has large trade limits.": "Large limits: the coordinator has large trade limits.",
|
"Large limits: the coordinator has large trade limits.": "Large limits: the coordinator has large trade limits.",
|
||||||
"Lifetime contracted volume": "Volum contractat total",
|
"Lifetime contracted volume": "Volum contractat total",
|
||||||
"Loved by robots: receives positive comments by robots over the internet.": "Loved by robots: receives positive comments by robots over the internet.",
|
"Loved by robots: receives positive comments by robots over the internet.": "Loved by robots: receives positive comments by robots over the internet.",
|
||||||
"Mainnet LN Node": "Mainnet LN Node",
|
|
||||||
"Maker fee": "Comissió del creador",
|
"Maker fee": "Comissió del creador",
|
||||||
"Matrix channel copied! {{matrix}}": "Matrix channel copied! {{matrix}}",
|
"Matrix channel copied! {{matrix}}": "Matrix channel copied! {{matrix}}",
|
||||||
"Not a federation founder": "Not a federation founder",
|
"Not a federation founder": "Not a federation founder",
|
||||||
@ -279,7 +278,6 @@
|
|||||||
"Summary": "Summary",
|
"Summary": "Summary",
|
||||||
"Taker fee": "Comissió del prenedor",
|
"Taker fee": "Comissió del prenedor",
|
||||||
"Telegram": "Telegram",
|
"Telegram": "Telegram",
|
||||||
"Testnet LN Node": "Testnet LN Node",
|
|
||||||
"The coordinator does not seem to receive exceptional love from robots over the internet": "The coordinator does not seem to receive exceptional love from robots over the internet",
|
"The coordinator does not seem to receive exceptional love from robots over the internet": "The coordinator does not seem to receive exceptional love from robots over the internet",
|
||||||
"The privacy practices of this coordinator could improve": "The privacy practices of this coordinator could improve",
|
"The privacy practices of this coordinator could improve": "The privacy practices of this coordinator could improve",
|
||||||
"Today active robots": "Robots actius avui",
|
"Today active robots": "Robots actius avui",
|
||||||
|
@ -251,7 +251,7 @@
|
|||||||
"Coordinator Notice": "Coordinator Notice",
|
"Coordinator Notice": "Coordinator Notice",
|
||||||
"Coordinator commit hash": "Coordinator commit hash",
|
"Coordinator commit hash": "Coordinator commit hash",
|
||||||
"Coordinator description": "Coordinator description",
|
"Coordinator description": "Coordinator description",
|
||||||
"Coordinator domain": "Coordinator domain",
|
"Coordinator hosted web app": "Coordinator hosted web app",
|
||||||
"Coordinator offline": "Coordinator offline",
|
"Coordinator offline": "Coordinator offline",
|
||||||
"Current onchain payout fee": "Současný poplatek za vyplacení na onchain ",
|
"Current onchain payout fee": "Současný poplatek za vyplacení na onchain ",
|
||||||
"Development fund supporter: donates {{percent}}% to make RoboSats better.": "Development fund supporter: donates {{percent}}% to make RoboSats better.",
|
"Development fund supporter: donates {{percent}}% to make RoboSats better.": "Development fund supporter: donates {{percent}}% to make RoboSats better.",
|
||||||
@ -264,7 +264,6 @@
|
|||||||
"Large limits: the coordinator has large trade limits.": "Large limits: the coordinator has large trade limits.",
|
"Large limits: the coordinator has large trade limits.": "Large limits: the coordinator has large trade limits.",
|
||||||
"Lifetime contracted volume": "Zobchodované množství od spuštění",
|
"Lifetime contracted volume": "Zobchodované množství od spuštění",
|
||||||
"Loved by robots: receives positive comments by robots over the internet.": "Loved by robots: receives positive comments by robots over the internet.",
|
"Loved by robots: receives positive comments by robots over the internet.": "Loved by robots: receives positive comments by robots over the internet.",
|
||||||
"Mainnet LN Node": "Mainnet LN Node",
|
|
||||||
"Maker fee": "Poplatek tvůrce",
|
"Maker fee": "Poplatek tvůrce",
|
||||||
"Matrix channel copied! {{matrix}}": "Matrix channel copied! {{matrix}}",
|
"Matrix channel copied! {{matrix}}": "Matrix channel copied! {{matrix}}",
|
||||||
"Not a federation founder": "Not a federation founder",
|
"Not a federation founder": "Not a federation founder",
|
||||||
@ -279,7 +278,6 @@
|
|||||||
"Summary": "Summary",
|
"Summary": "Summary",
|
||||||
"Taker fee": "Poplatek příjemce",
|
"Taker fee": "Poplatek příjemce",
|
||||||
"Telegram": "Telegram",
|
"Telegram": "Telegram",
|
||||||
"Testnet LN Node": "Testnet LN Node",
|
|
||||||
"The coordinator does not seem to receive exceptional love from robots over the internet": "The coordinator does not seem to receive exceptional love from robots over the internet",
|
"The coordinator does not seem to receive exceptional love from robots over the internet": "The coordinator does not seem to receive exceptional love from robots over the internet",
|
||||||
"The privacy practices of this coordinator could improve": "The privacy practices of this coordinator could improve",
|
"The privacy practices of this coordinator could improve": "The privacy practices of this coordinator could improve",
|
||||||
"Today active robots": "Dnešní aktivní roboti",
|
"Today active robots": "Dnešní aktivní roboti",
|
||||||
|
@ -251,7 +251,7 @@
|
|||||||
"Coordinator Notice": "Coordinator Notice",
|
"Coordinator Notice": "Coordinator Notice",
|
||||||
"Coordinator commit hash": "Coordinator commit hash",
|
"Coordinator commit hash": "Coordinator commit hash",
|
||||||
"Coordinator description": "Coordinator description",
|
"Coordinator description": "Coordinator description",
|
||||||
"Coordinator domain": "Coordinator domain",
|
"Coordinator hosted web app": "Coordinator hosted web app",
|
||||||
"Coordinator offline": "Coordinator offline",
|
"Coordinator offline": "Coordinator offline",
|
||||||
"Current onchain payout fee": "Current onchain payout fee",
|
"Current onchain payout fee": "Current onchain payout fee",
|
||||||
"Development fund supporter: donates {{percent}}% to make RoboSats better.": "Development fund supporter: donates {{percent}}% to make RoboSats better.",
|
"Development fund supporter: donates {{percent}}% to make RoboSats better.": "Development fund supporter: donates {{percent}}% to make RoboSats better.",
|
||||||
@ -264,7 +264,6 @@
|
|||||||
"Large limits: the coordinator has large trade limits.": "Large limits: the coordinator has large trade limits.",
|
"Large limits: the coordinator has large trade limits.": "Large limits: the coordinator has large trade limits.",
|
||||||
"Lifetime contracted volume": "Handelsvolumen insgesamt",
|
"Lifetime contracted volume": "Handelsvolumen insgesamt",
|
||||||
"Loved by robots: receives positive comments by robots over the internet.": "Loved by robots: receives positive comments by robots over the internet.",
|
"Loved by robots: receives positive comments by robots over the internet.": "Loved by robots: receives positive comments by robots over the internet.",
|
||||||
"Mainnet LN Node": "Mainnet LN Node",
|
|
||||||
"Maker fee": "Makergebühr",
|
"Maker fee": "Makergebühr",
|
||||||
"Matrix channel copied! {{matrix}}": "Matrix channel copied! {{matrix}}",
|
"Matrix channel copied! {{matrix}}": "Matrix channel copied! {{matrix}}",
|
||||||
"Not a federation founder": "Not a federation founder",
|
"Not a federation founder": "Not a federation founder",
|
||||||
@ -279,7 +278,6 @@
|
|||||||
"Summary": "Summary",
|
"Summary": "Summary",
|
||||||
"Taker fee": "Takergebühr",
|
"Taker fee": "Takergebühr",
|
||||||
"Telegram": "Telegram",
|
"Telegram": "Telegram",
|
||||||
"Testnet LN Node": "Testnet LN Node",
|
|
||||||
"The coordinator does not seem to receive exceptional love from robots over the internet": "The coordinator does not seem to receive exceptional love from robots over the internet",
|
"The coordinator does not seem to receive exceptional love from robots over the internet": "The coordinator does not seem to receive exceptional love from robots over the internet",
|
||||||
"The privacy practices of this coordinator could improve": "The privacy practices of this coordinator could improve",
|
"The privacy practices of this coordinator could improve": "The privacy practices of this coordinator could improve",
|
||||||
"Today active robots": "Heute aktive Roboter",
|
"Today active robots": "Heute aktive Roboter",
|
||||||
|
@ -251,7 +251,7 @@
|
|||||||
"Coordinator Notice": "Coordinator Notice",
|
"Coordinator Notice": "Coordinator Notice",
|
||||||
"Coordinator commit hash": "Coordinator commit hash",
|
"Coordinator commit hash": "Coordinator commit hash",
|
||||||
"Coordinator description": "Coordinator description",
|
"Coordinator description": "Coordinator description",
|
||||||
"Coordinator domain": "Coordinator domain",
|
"Coordinator hosted web app": "Coordinator hosted web app",
|
||||||
"Coordinator offline": "Coordinator offline",
|
"Coordinator offline": "Coordinator offline",
|
||||||
"Current onchain payout fee": "Current onchain payout fee",
|
"Current onchain payout fee": "Current onchain payout fee",
|
||||||
"Development fund supporter: donates {{percent}}% to make RoboSats better.": "Development fund supporter: donates {{percent}}% to make RoboSats better.",
|
"Development fund supporter: donates {{percent}}% to make RoboSats better.": "Development fund supporter: donates {{percent}}% to make RoboSats better.",
|
||||||
@ -264,7 +264,6 @@
|
|||||||
"Large limits: the coordinator has large trade limits.": "Large limits: the coordinator has large trade limits.",
|
"Large limits: the coordinator has large trade limits.": "Large limits: the coordinator has large trade limits.",
|
||||||
"Lifetime contracted volume": "Lifetime contracted volume",
|
"Lifetime contracted volume": "Lifetime contracted volume",
|
||||||
"Loved by robots: receives positive comments by robots over the internet.": "Loved by robots: receives positive comments by robots over the internet.",
|
"Loved by robots: receives positive comments by robots over the internet.": "Loved by robots: receives positive comments by robots over the internet.",
|
||||||
"Mainnet LN Node": "Mainnet LN Node",
|
|
||||||
"Maker fee": "Maker fee",
|
"Maker fee": "Maker fee",
|
||||||
"Matrix channel copied! {{matrix}}": "Matrix channel copied! {{matrix}}",
|
"Matrix channel copied! {{matrix}}": "Matrix channel copied! {{matrix}}",
|
||||||
"Not a federation founder": "Not a federation founder",
|
"Not a federation founder": "Not a federation founder",
|
||||||
@ -279,7 +278,6 @@
|
|||||||
"Summary": "Summary",
|
"Summary": "Summary",
|
||||||
"Taker fee": "Taker fee",
|
"Taker fee": "Taker fee",
|
||||||
"Telegram": "Telegram",
|
"Telegram": "Telegram",
|
||||||
"Testnet LN Node": "Testnet LN Node",
|
|
||||||
"The coordinator does not seem to receive exceptional love from robots over the internet": "The coordinator does not seem to receive exceptional love from robots over the internet",
|
"The coordinator does not seem to receive exceptional love from robots over the internet": "The coordinator does not seem to receive exceptional love from robots over the internet",
|
||||||
"The privacy practices of this coordinator could improve": "The privacy practices of this coordinator could improve",
|
"The privacy practices of this coordinator could improve": "The privacy practices of this coordinator could improve",
|
||||||
"Today active robots": "Today active robots",
|
"Today active robots": "Today active robots",
|
||||||
|
@ -251,7 +251,7 @@
|
|||||||
"Coordinator Notice": "Coordinator Notice",
|
"Coordinator Notice": "Coordinator Notice",
|
||||||
"Coordinator commit hash": "Hash de confirmación del coordinador",
|
"Coordinator commit hash": "Hash de confirmación del coordinador",
|
||||||
"Coordinator description": "Coordinator description",
|
"Coordinator description": "Coordinator description",
|
||||||
"Coordinator domain": "Coordinator domain",
|
"Coordinator hosted web app": "Coordinator hosted web app",
|
||||||
"Coordinator offline": "Coordinator offline",
|
"Coordinator offline": "Coordinator offline",
|
||||||
"Current onchain payout fee": "Coste actual de recibir onchain",
|
"Current onchain payout fee": "Coste actual de recibir onchain",
|
||||||
"Development fund supporter: donates {{percent}}% to make RoboSats better.": "Development fund supporter: donates {{percent}}% to make RoboSats better.",
|
"Development fund supporter: donates {{percent}}% to make RoboSats better.": "Development fund supporter: donates {{percent}}% to make RoboSats better.",
|
||||||
@ -264,7 +264,6 @@
|
|||||||
"Large limits: the coordinator has large trade limits.": "Large limits: the coordinator has large trade limits.",
|
"Large limits: the coordinator has large trade limits.": "Large limits: the coordinator has large trade limits.",
|
||||||
"Lifetime contracted volume": "Volumen de los contratos total",
|
"Lifetime contracted volume": "Volumen de los contratos total",
|
||||||
"Loved by robots: receives positive comments by robots over the internet.": "Loved by robots: receives positive comments by robots over the internet.",
|
"Loved by robots: receives positive comments by robots over the internet.": "Loved by robots: receives positive comments by robots over the internet.",
|
||||||
"Mainnet LN Node": "Mainnet LN Node",
|
|
||||||
"Maker fee": "Comisión del creador",
|
"Maker fee": "Comisión del creador",
|
||||||
"Matrix channel copied! {{matrix}}": "Matrix channel copied! {{matrix}}",
|
"Matrix channel copied! {{matrix}}": "Matrix channel copied! {{matrix}}",
|
||||||
"Not a federation founder": "Not a federation founder",
|
"Not a federation founder": "Not a federation founder",
|
||||||
@ -279,7 +278,6 @@
|
|||||||
"Summary": "Summary",
|
"Summary": "Summary",
|
||||||
"Taker fee": "Comisión del tomador",
|
"Taker fee": "Comisión del tomador",
|
||||||
"Telegram": "Telegram",
|
"Telegram": "Telegram",
|
||||||
"Testnet LN Node": "Testnet LN Node",
|
|
||||||
"The coordinator does not seem to receive exceptional love from robots over the internet": "The coordinator does not seem to receive exceptional love from robots over the internet",
|
"The coordinator does not seem to receive exceptional love from robots over the internet": "The coordinator does not seem to receive exceptional love from robots over the internet",
|
||||||
"The privacy practices of this coordinator could improve": "The privacy practices of this coordinator could improve",
|
"The privacy practices of this coordinator could improve": "The privacy practices of this coordinator could improve",
|
||||||
"Today active robots": "Robots activos hoy",
|
"Today active robots": "Robots activos hoy",
|
||||||
|
@ -251,7 +251,7 @@
|
|||||||
"Coordinator Notice": "Coordinator Notice",
|
"Coordinator Notice": "Coordinator Notice",
|
||||||
"Coordinator commit hash": "Coordinator commit hash",
|
"Coordinator commit hash": "Coordinator commit hash",
|
||||||
"Coordinator description": "Coordinator description",
|
"Coordinator description": "Coordinator description",
|
||||||
"Coordinator domain": "Coordinator domain",
|
"Coordinator hosted web app": "Coordinator hosted web app",
|
||||||
"Coordinator offline": "Coordinator offline",
|
"Coordinator offline": "Coordinator offline",
|
||||||
"Current onchain payout fee": "Oraingo onchain jasotze-kuota",
|
"Current onchain payout fee": "Oraingo onchain jasotze-kuota",
|
||||||
"Development fund supporter: donates {{percent}}% to make RoboSats better.": "Development fund supporter: donates {{percent}}% to make RoboSats better.",
|
"Development fund supporter: donates {{percent}}% to make RoboSats better.": "Development fund supporter: donates {{percent}}% to make RoboSats better.",
|
||||||
@ -264,7 +264,6 @@
|
|||||||
"Large limits: the coordinator has large trade limits.": "Large limits: the coordinator has large trade limits.",
|
"Large limits: the coordinator has large trade limits.": "Large limits: the coordinator has large trade limits.",
|
||||||
"Lifetime contracted volume": "Guztira kontratatutako bolumena",
|
"Lifetime contracted volume": "Guztira kontratatutako bolumena",
|
||||||
"Loved by robots: receives positive comments by robots over the internet.": "Loved by robots: receives positive comments by robots over the internet.",
|
"Loved by robots: receives positive comments by robots over the internet.": "Loved by robots: receives positive comments by robots over the internet.",
|
||||||
"Mainnet LN Node": "Mainnet LN Node",
|
|
||||||
"Maker fee": "Egile kuota",
|
"Maker fee": "Egile kuota",
|
||||||
"Matrix channel copied! {{matrix}}": "Matrix channel copied! {{matrix}}",
|
"Matrix channel copied! {{matrix}}": "Matrix channel copied! {{matrix}}",
|
||||||
"Not a federation founder": "Not a federation founder",
|
"Not a federation founder": "Not a federation founder",
|
||||||
@ -279,7 +278,6 @@
|
|||||||
"Summary": "Summary",
|
"Summary": "Summary",
|
||||||
"Taker fee": "Hartzaile kuota",
|
"Taker fee": "Hartzaile kuota",
|
||||||
"Telegram": "Telegram",
|
"Telegram": "Telegram",
|
||||||
"Testnet LN Node": "Testnet LN Node",
|
|
||||||
"The coordinator does not seem to receive exceptional love from robots over the internet": "The coordinator does not seem to receive exceptional love from robots over the internet",
|
"The coordinator does not seem to receive exceptional love from robots over the internet": "The coordinator does not seem to receive exceptional love from robots over the internet",
|
||||||
"The privacy practices of this coordinator could improve": "The privacy practices of this coordinator could improve",
|
"The privacy practices of this coordinator could improve": "The privacy practices of this coordinator could improve",
|
||||||
"Today active robots": "Robot aktiboak gaur",
|
"Today active robots": "Robot aktiboak gaur",
|
||||||
|
@ -251,7 +251,7 @@
|
|||||||
"Coordinator Notice": "Coordinator Notice",
|
"Coordinator Notice": "Coordinator Notice",
|
||||||
"Coordinator commit hash": "Coordinateur commit hash",
|
"Coordinator commit hash": "Coordinateur commit hash",
|
||||||
"Coordinator description": "Coordinator description",
|
"Coordinator description": "Coordinator description",
|
||||||
"Coordinator domain": "Coordinator domain",
|
"Coordinator hosted web app": "Coordinator hosted web app",
|
||||||
"Coordinator offline": "Coordinator offline",
|
"Coordinator offline": "Coordinator offline",
|
||||||
"Current onchain payout fee": "Frais de paiement actuels de la chaîne",
|
"Current onchain payout fee": "Frais de paiement actuels de la chaîne",
|
||||||
"Development fund supporter: donates {{percent}}% to make RoboSats better.": "Development fund supporter: donates {{percent}}% to make RoboSats better.",
|
"Development fund supporter: donates {{percent}}% to make RoboSats better.": "Development fund supporter: donates {{percent}}% to make RoboSats better.",
|
||||||
@ -264,7 +264,6 @@
|
|||||||
"Large limits: the coordinator has large trade limits.": "Large limits: the coordinator has large trade limits.",
|
"Large limits: the coordinator has large trade limits.": "Large limits: the coordinator has large trade limits.",
|
||||||
"Lifetime contracted volume": "Volume contracté total",
|
"Lifetime contracted volume": "Volume contracté total",
|
||||||
"Loved by robots: receives positive comments by robots over the internet.": "Loved by robots: receives positive comments by robots over the internet.",
|
"Loved by robots: receives positive comments by robots over the internet.": "Loved by robots: receives positive comments by robots over the internet.",
|
||||||
"Mainnet LN Node": "Mainnet LN Node",
|
|
||||||
"Maker fee": "Frais du createur",
|
"Maker fee": "Frais du createur",
|
||||||
"Matrix channel copied! {{matrix}}": "Matrix channel copied! {{matrix}}",
|
"Matrix channel copied! {{matrix}}": "Matrix channel copied! {{matrix}}",
|
||||||
"Not a federation founder": "Not a federation founder",
|
"Not a federation founder": "Not a federation founder",
|
||||||
@ -279,7 +278,6 @@
|
|||||||
"Summary": "Summary",
|
"Summary": "Summary",
|
||||||
"Taker fee": "Frais du preneur",
|
"Taker fee": "Frais du preneur",
|
||||||
"Telegram": "Telegram",
|
"Telegram": "Telegram",
|
||||||
"Testnet LN Node": "Testnet LN Node",
|
|
||||||
"The coordinator does not seem to receive exceptional love from robots over the internet": "The coordinator does not seem to receive exceptional love from robots over the internet",
|
"The coordinator does not seem to receive exceptional love from robots over the internet": "The coordinator does not seem to receive exceptional love from robots over the internet",
|
||||||
"The privacy practices of this coordinator could improve": "The privacy practices of this coordinator could improve",
|
"The privacy practices of this coordinator could improve": "The privacy practices of this coordinator could improve",
|
||||||
"Today active robots": "Robots actifs aujourd'hui",
|
"Today active robots": "Robots actifs aujourd'hui",
|
||||||
|
@ -251,7 +251,7 @@
|
|||||||
"Coordinator Notice": "Coordinator Notice",
|
"Coordinator Notice": "Coordinator Notice",
|
||||||
"Coordinator commit hash": "Commit hash del coordinatore",
|
"Coordinator commit hash": "Commit hash del coordinatore",
|
||||||
"Coordinator description": "Coordinator description",
|
"Coordinator description": "Coordinator description",
|
||||||
"Coordinator domain": "Coordinator domain",
|
"Coordinator hosted web app": "Coordinator hosted web app",
|
||||||
"Coordinator offline": "Coordinator offline",
|
"Coordinator offline": "Coordinator offline",
|
||||||
"Current onchain payout fee": "Attuale tariffa di pagamento onchain",
|
"Current onchain payout fee": "Attuale tariffa di pagamento onchain",
|
||||||
"Development fund supporter: donates {{percent}}% to make RoboSats better.": "Development fund supporter: donates {{percent}}% to make RoboSats better.",
|
"Development fund supporter: donates {{percent}}% to make RoboSats better.": "Development fund supporter: donates {{percent}}% to make RoboSats better.",
|
||||||
@ -264,7 +264,6 @@
|
|||||||
"Large limits: the coordinator has large trade limits.": "Large limits: the coordinator has large trade limits.",
|
"Large limits: the coordinator has large trade limits.": "Large limits: the coordinator has large trade limits.",
|
||||||
"Lifetime contracted volume": "Volume scambiato in totale",
|
"Lifetime contracted volume": "Volume scambiato in totale",
|
||||||
"Loved by robots: receives positive comments by robots over the internet.": "Loved by robots: receives positive comments by robots over the internet.",
|
"Loved by robots: receives positive comments by robots over the internet.": "Loved by robots: receives positive comments by robots over the internet.",
|
||||||
"Mainnet LN Node": "Mainnet LN Node",
|
|
||||||
"Maker fee": "Commissione dell'offerente",
|
"Maker fee": "Commissione dell'offerente",
|
||||||
"Matrix channel copied! {{matrix}}": "Matrix channel copied! {{matrix}}",
|
"Matrix channel copied! {{matrix}}": "Matrix channel copied! {{matrix}}",
|
||||||
"Not a federation founder": "Not a federation founder",
|
"Not a federation founder": "Not a federation founder",
|
||||||
@ -279,7 +278,6 @@
|
|||||||
"Summary": "Summary",
|
"Summary": "Summary",
|
||||||
"Taker fee": "Commissione dell'acquirente",
|
"Taker fee": "Commissione dell'acquirente",
|
||||||
"Telegram": "Telegram",
|
"Telegram": "Telegram",
|
||||||
"Testnet LN Node": "Testnet LN Node",
|
|
||||||
"The coordinator does not seem to receive exceptional love from robots over the internet": "The coordinator does not seem to receive exceptional love from robots over the internet",
|
"The coordinator does not seem to receive exceptional love from robots over the internet": "The coordinator does not seem to receive exceptional love from robots over the internet",
|
||||||
"The privacy practices of this coordinator could improve": "The privacy practices of this coordinator could improve",
|
"The privacy practices of this coordinator could improve": "The privacy practices of this coordinator could improve",
|
||||||
"Today active robots": "I robots attivi oggi",
|
"Today active robots": "I robots attivi oggi",
|
||||||
|
@ -251,7 +251,7 @@
|
|||||||
"Coordinator Notice": "Coordinator Notice",
|
"Coordinator Notice": "Coordinator Notice",
|
||||||
"Coordinator commit hash": "コーディネーターコミットハッシュ",
|
"Coordinator commit hash": "コーディネーターコミットハッシュ",
|
||||||
"Coordinator description": "Coordinator description",
|
"Coordinator description": "Coordinator description",
|
||||||
"Coordinator domain": "Coordinator domain",
|
"Coordinator hosted web app": "Coordinator hosted web app",
|
||||||
"Coordinator offline": "Coordinator offline",
|
"Coordinator offline": "Coordinator offline",
|
||||||
"Current onchain payout fee": "現在のオンチェーン支払手数料",
|
"Current onchain payout fee": "現在のオンチェーン支払手数料",
|
||||||
"Development fund supporter: donates {{percent}}% to make RoboSats better.": "Development fund supporter: donates {{percent}}% to make RoboSats better.",
|
"Development fund supporter: donates {{percent}}% to make RoboSats better.": "Development fund supporter: donates {{percent}}% to make RoboSats better.",
|
||||||
@ -264,7 +264,6 @@
|
|||||||
"Large limits: the coordinator has large trade limits.": "Large limits: the coordinator has large trade limits.",
|
"Large limits: the coordinator has large trade limits.": "Large limits: the coordinator has large trade limits.",
|
||||||
"Lifetime contracted volume": "契約総額",
|
"Lifetime contracted volume": "契約総額",
|
||||||
"Loved by robots: receives positive comments by robots over the internet.": "Loved by robots: receives positive comments by robots over the internet.",
|
"Loved by robots: receives positive comments by robots over the internet.": "Loved by robots: receives positive comments by robots over the internet.",
|
||||||
"Mainnet LN Node": "Mainnet LN Node",
|
|
||||||
"Maker fee": "メーカー手数料",
|
"Maker fee": "メーカー手数料",
|
||||||
"Matrix channel copied! {{matrix}}": "Matrix channel copied! {{matrix}}",
|
"Matrix channel copied! {{matrix}}": "Matrix channel copied! {{matrix}}",
|
||||||
"Not a federation founder": "Not a federation founder",
|
"Not a federation founder": "Not a federation founder",
|
||||||
@ -279,7 +278,6 @@
|
|||||||
"Summary": "Summary",
|
"Summary": "Summary",
|
||||||
"Taker fee": "テイカー手数料",
|
"Taker fee": "テイカー手数料",
|
||||||
"Telegram": "Telegram",
|
"Telegram": "Telegram",
|
||||||
"Testnet LN Node": "Testnet LN Node",
|
|
||||||
"The coordinator does not seem to receive exceptional love from robots over the internet": "The coordinator does not seem to receive exceptional love from robots over the internet",
|
"The coordinator does not seem to receive exceptional love from robots over the internet": "The coordinator does not seem to receive exceptional love from robots over the internet",
|
||||||
"The privacy practices of this coordinator could improve": "The privacy practices of this coordinator could improve",
|
"The privacy practices of this coordinator could improve": "The privacy practices of this coordinator could improve",
|
||||||
"Today active robots": "本日アクティブなロボット",
|
"Today active robots": "本日アクティブなロボット",
|
||||||
|
@ -251,7 +251,7 @@
|
|||||||
"Coordinator Notice": "Coordinator Notice",
|
"Coordinator Notice": "Coordinator Notice",
|
||||||
"Coordinator commit hash": "Coordinator commit hash",
|
"Coordinator commit hash": "Coordinator commit hash",
|
||||||
"Coordinator description": "Coordinator description",
|
"Coordinator description": "Coordinator description",
|
||||||
"Coordinator domain": "Coordinator domain",
|
"Coordinator hosted web app": "Coordinator hosted web app",
|
||||||
"Coordinator offline": "Coordinator offline",
|
"Coordinator offline": "Coordinator offline",
|
||||||
"Current onchain payout fee": "Current onchain payout fee",
|
"Current onchain payout fee": "Current onchain payout fee",
|
||||||
"Development fund supporter: donates {{percent}}% to make RoboSats better.": "Development fund supporter: donates {{percent}}% to make RoboSats better.",
|
"Development fund supporter: donates {{percent}}% to make RoboSats better.": "Development fund supporter: donates {{percent}}% to make RoboSats better.",
|
||||||
@ -264,7 +264,6 @@
|
|||||||
"Large limits: the coordinator has large trade limits.": "Large limits: the coordinator has large trade limits.",
|
"Large limits: the coordinator has large trade limits.": "Large limits: the coordinator has large trade limits.",
|
||||||
"Lifetime contracted volume": "Zakontraktowana wielkość dożywotnia",
|
"Lifetime contracted volume": "Zakontraktowana wielkość dożywotnia",
|
||||||
"Loved by robots: receives positive comments by robots over the internet.": "Loved by robots: receives positive comments by robots over the internet.",
|
"Loved by robots: receives positive comments by robots over the internet.": "Loved by robots: receives positive comments by robots over the internet.",
|
||||||
"Mainnet LN Node": "Mainnet LN Node",
|
|
||||||
"Maker fee": "Opłata producenta",
|
"Maker fee": "Opłata producenta",
|
||||||
"Matrix channel copied! {{matrix}}": "Matrix channel copied! {{matrix}}",
|
"Matrix channel copied! {{matrix}}": "Matrix channel copied! {{matrix}}",
|
||||||
"Not a federation founder": "Not a federation founder",
|
"Not a federation founder": "Not a federation founder",
|
||||||
@ -279,7 +278,6 @@
|
|||||||
"Summary": "Summary",
|
"Summary": "Summary",
|
||||||
"Taker fee": "Opłata takera",
|
"Taker fee": "Opłata takera",
|
||||||
"Telegram": "Telegram",
|
"Telegram": "Telegram",
|
||||||
"Testnet LN Node": "Testnet LN Node",
|
|
||||||
"The coordinator does not seem to receive exceptional love from robots over the internet": "The coordinator does not seem to receive exceptional love from robots over the internet",
|
"The coordinator does not seem to receive exceptional love from robots over the internet": "The coordinator does not seem to receive exceptional love from robots over the internet",
|
||||||
"The privacy practices of this coordinator could improve": "The privacy practices of this coordinator could improve",
|
"The privacy practices of this coordinator could improve": "The privacy practices of this coordinator could improve",
|
||||||
"Today active robots": "Dziś aktywne roboty",
|
"Today active robots": "Dziś aktywne roboty",
|
||||||
|
@ -251,7 +251,7 @@
|
|||||||
"Coordinator Notice": "Coordinator Notice",
|
"Coordinator Notice": "Coordinator Notice",
|
||||||
"Coordinator commit hash": "Coordinator commit hash",
|
"Coordinator commit hash": "Coordinator commit hash",
|
||||||
"Coordinator description": "Coordinator description",
|
"Coordinator description": "Coordinator description",
|
||||||
"Coordinator domain": "Coordinator domain",
|
"Coordinator hosted web app": "Coordinator hosted web app",
|
||||||
"Coordinator offline": "Coordinator offline",
|
"Coordinator offline": "Coordinator offline",
|
||||||
"Current onchain payout fee": "Taxa de pagamento onchain atual",
|
"Current onchain payout fee": "Taxa de pagamento onchain atual",
|
||||||
"Development fund supporter: donates {{percent}}% to make RoboSats better.": "Development fund supporter: donates {{percent}}% to make RoboSats better.",
|
"Development fund supporter: donates {{percent}}% to make RoboSats better.": "Development fund supporter: donates {{percent}}% to make RoboSats better.",
|
||||||
@ -264,7 +264,6 @@
|
|||||||
"Large limits: the coordinator has large trade limits.": "Large limits: the coordinator has large trade limits.",
|
"Large limits: the coordinator has large trade limits.": "Large limits: the coordinator has large trade limits.",
|
||||||
"Lifetime contracted volume": "Volume contratado desde o princípio",
|
"Lifetime contracted volume": "Volume contratado desde o princípio",
|
||||||
"Loved by robots: receives positive comments by robots over the internet.": "Loved by robots: receives positive comments by robots over the internet.",
|
"Loved by robots: receives positive comments by robots over the internet.": "Loved by robots: receives positive comments by robots over the internet.",
|
||||||
"Mainnet LN Node": "Mainnet LN Node",
|
|
||||||
"Maker fee": "Taxa do criador",
|
"Maker fee": "Taxa do criador",
|
||||||
"Matrix channel copied! {{matrix}}": "Matrix channel copied! {{matrix}}",
|
"Matrix channel copied! {{matrix}}": "Matrix channel copied! {{matrix}}",
|
||||||
"Not a federation founder": "Not a federation founder",
|
"Not a federation founder": "Not a federation founder",
|
||||||
@ -279,7 +278,6 @@
|
|||||||
"Summary": "Summary",
|
"Summary": "Summary",
|
||||||
"Taker fee": "Taxa do tomador",
|
"Taker fee": "Taxa do tomador",
|
||||||
"Telegram": "Telegram",
|
"Telegram": "Telegram",
|
||||||
"Testnet LN Node": "Testnet LN Node",
|
|
||||||
"The coordinator does not seem to receive exceptional love from robots over the internet": "The coordinator does not seem to receive exceptional love from robots over the internet",
|
"The coordinator does not seem to receive exceptional love from robots over the internet": "The coordinator does not seem to receive exceptional love from robots over the internet",
|
||||||
"The privacy practices of this coordinator could improve": "The privacy practices of this coordinator could improve",
|
"The privacy practices of this coordinator could improve": "The privacy practices of this coordinator could improve",
|
||||||
"Today active robots": "Robôs ativos hoje",
|
"Today active robots": "Robôs ativos hoje",
|
||||||
|
@ -251,7 +251,7 @@
|
|||||||
"Coordinator Notice": "Уведомление координатора",
|
"Coordinator Notice": "Уведомление координатора",
|
||||||
"Coordinator commit hash": "Хеш коммита координатора",
|
"Coordinator commit hash": "Хеш коммита координатора",
|
||||||
"Coordinator description": "Coordinator description",
|
"Coordinator description": "Coordinator description",
|
||||||
"Coordinator domain": "Coordinator domain",
|
"Coordinator hosted web app": "Coordinator hosted web app",
|
||||||
"Coordinator offline": "Coordinator offline",
|
"Coordinator offline": "Coordinator offline",
|
||||||
"Current onchain payout fee": "Текущая комиссия за выплату ончейн",
|
"Current onchain payout fee": "Текущая комиссия за выплату ончейн",
|
||||||
"Development fund supporter: donates {{percent}}% to make RoboSats better.": "Development fund supporter: donates {{percent}}% to make RoboSats better.",
|
"Development fund supporter: donates {{percent}}% to make RoboSats better.": "Development fund supporter: donates {{percent}}% to make RoboSats better.",
|
||||||
@ -264,7 +264,6 @@
|
|||||||
"Large limits: the coordinator has large trade limits.": "Large limits: the coordinator has large trade limits.",
|
"Large limits: the coordinator has large trade limits.": "Large limits: the coordinator has large trade limits.",
|
||||||
"Lifetime contracted volume": "Объём контрактов за всё время",
|
"Lifetime contracted volume": "Объём контрактов за всё время",
|
||||||
"Loved by robots: receives positive comments by robots over the internet.": "Loved by robots: receives positive comments by robots over the internet.",
|
"Loved by robots: receives positive comments by robots over the internet.": "Loved by robots: receives positive comments by robots over the internet.",
|
||||||
"Mainnet LN Node": "Mainnet LN Node",
|
|
||||||
"Maker fee": "Комиссия мейкера",
|
"Maker fee": "Комиссия мейкера",
|
||||||
"Matrix channel copied! {{matrix}}": "Matrix channel copied! {{matrix}}",
|
"Matrix channel copied! {{matrix}}": "Matrix channel copied! {{matrix}}",
|
||||||
"Not a federation founder": "Not a federation founder",
|
"Not a federation founder": "Not a federation founder",
|
||||||
@ -279,7 +278,6 @@
|
|||||||
"Summary": "Summary",
|
"Summary": "Summary",
|
||||||
"Taker fee": "Комиссия тейкера",
|
"Taker fee": "Комиссия тейкера",
|
||||||
"Telegram": "Telegram",
|
"Telegram": "Telegram",
|
||||||
"Testnet LN Node": "Testnet LN Node",
|
|
||||||
"The coordinator does not seem to receive exceptional love from robots over the internet": "The coordinator does not seem to receive exceptional love from robots over the internet",
|
"The coordinator does not seem to receive exceptional love from robots over the internet": "The coordinator does not seem to receive exceptional love from robots over the internet",
|
||||||
"The privacy practices of this coordinator could improve": "The privacy practices of this coordinator could improve",
|
"The privacy practices of this coordinator could improve": "The privacy practices of this coordinator could improve",
|
||||||
"Today active robots": "Сегодня активных роботов",
|
"Today active robots": "Сегодня активных роботов",
|
||||||
|
@ -251,7 +251,7 @@
|
|||||||
"Coordinator Notice": "Coordinator Notice",
|
"Coordinator Notice": "Coordinator Notice",
|
||||||
"Coordinator commit hash": "Coordinator commit hash",
|
"Coordinator commit hash": "Coordinator commit hash",
|
||||||
"Coordinator description": "Coordinator description",
|
"Coordinator description": "Coordinator description",
|
||||||
"Coordinator domain": "Coordinator domain",
|
"Coordinator hosted web app": "Coordinator hosted web app",
|
||||||
"Coordinator offline": "Coordinator offline",
|
"Coordinator offline": "Coordinator offline",
|
||||||
"Current onchain payout fee": "Aktuell utbetalningsavgift (on-chain)",
|
"Current onchain payout fee": "Aktuell utbetalningsavgift (on-chain)",
|
||||||
"Development fund supporter: donates {{percent}}% to make RoboSats better.": "Development fund supporter: donates {{percent}}% to make RoboSats better.",
|
"Development fund supporter: donates {{percent}}% to make RoboSats better.": "Development fund supporter: donates {{percent}}% to make RoboSats better.",
|
||||||
@ -264,7 +264,6 @@
|
|||||||
"Large limits: the coordinator has large trade limits.": "Large limits: the coordinator has large trade limits.",
|
"Large limits: the coordinator has large trade limits.": "Large limits: the coordinator has large trade limits.",
|
||||||
"Lifetime contracted volume": "Total kontrakterad volym",
|
"Lifetime contracted volume": "Total kontrakterad volym",
|
||||||
"Loved by robots: receives positive comments by robots over the internet.": "Loved by robots: receives positive comments by robots over the internet.",
|
"Loved by robots: receives positive comments by robots over the internet.": "Loved by robots: receives positive comments by robots over the internet.",
|
||||||
"Mainnet LN Node": "Mainnet LN Node",
|
|
||||||
"Maker fee": "Makeravgift",
|
"Maker fee": "Makeravgift",
|
||||||
"Matrix channel copied! {{matrix}}": "Matrix channel copied! {{matrix}}",
|
"Matrix channel copied! {{matrix}}": "Matrix channel copied! {{matrix}}",
|
||||||
"Not a federation founder": "Not a federation founder",
|
"Not a federation founder": "Not a federation founder",
|
||||||
@ -279,7 +278,6 @@
|
|||||||
"Summary": "Summary",
|
"Summary": "Summary",
|
||||||
"Taker fee": "Takeravgift",
|
"Taker fee": "Takeravgift",
|
||||||
"Telegram": "Telegram",
|
"Telegram": "Telegram",
|
||||||
"Testnet LN Node": "Testnet LN Node",
|
|
||||||
"The coordinator does not seem to receive exceptional love from robots over the internet": "The coordinator does not seem to receive exceptional love from robots over the internet",
|
"The coordinator does not seem to receive exceptional love from robots over the internet": "The coordinator does not seem to receive exceptional love from robots over the internet",
|
||||||
"The privacy practices of this coordinator could improve": "The privacy practices of this coordinator could improve",
|
"The privacy practices of this coordinator could improve": "The privacy practices of this coordinator could improve",
|
||||||
"Today active robots": "Aktiva robotar idag",
|
"Today active robots": "Aktiva robotar idag",
|
||||||
|
@ -251,7 +251,7 @@
|
|||||||
"Coordinator Notice": "Coordinator Notice",
|
"Coordinator Notice": "Coordinator Notice",
|
||||||
"Coordinator commit hash": "Coordinator commit hash",
|
"Coordinator commit hash": "Coordinator commit hash",
|
||||||
"Coordinator description": "Coordinator description",
|
"Coordinator description": "Coordinator description",
|
||||||
"Coordinator domain": "Coordinator domain",
|
"Coordinator hosted web app": "Coordinator hosted web app",
|
||||||
"Coordinator offline": "Coordinator offline",
|
"Coordinator offline": "Coordinator offline",
|
||||||
"Current onchain payout fee": "Ada ya malipo ya sasa ya mtandao",
|
"Current onchain payout fee": "Ada ya malipo ya sasa ya mtandao",
|
||||||
"Development fund supporter: donates {{percent}}% to make RoboSats better.": "Development fund supporter: donates {{percent}}% to make RoboSats better.",
|
"Development fund supporter: donates {{percent}}% to make RoboSats better.": "Development fund supporter: donates {{percent}}% to make RoboSats better.",
|
||||||
@ -264,7 +264,6 @@
|
|||||||
"Large limits: the coordinator has large trade limits.": "Large limits: the coordinator has large trade limits.",
|
"Large limits: the coordinator has large trade limits.": "Large limits: the coordinator has large trade limits.",
|
||||||
"Lifetime contracted volume": "Kiasi cha maisha kilichoidhinishwa",
|
"Lifetime contracted volume": "Kiasi cha maisha kilichoidhinishwa",
|
||||||
"Loved by robots: receives positive comments by robots over the internet.": "Loved by robots: receives positive comments by robots over the internet.",
|
"Loved by robots: receives positive comments by robots over the internet.": "Loved by robots: receives positive comments by robots over the internet.",
|
||||||
"Mainnet LN Node": "Mainnet LN Node",
|
|
||||||
"Maker fee": "Ada ya Muunda",
|
"Maker fee": "Ada ya Muunda",
|
||||||
"Matrix channel copied! {{matrix}}": "Matrix channel copied! {{matrix}}",
|
"Matrix channel copied! {{matrix}}": "Matrix channel copied! {{matrix}}",
|
||||||
"Not a federation founder": "Not a federation founder",
|
"Not a federation founder": "Not a federation founder",
|
||||||
@ -279,7 +278,6 @@
|
|||||||
"Summary": "Summary",
|
"Summary": "Summary",
|
||||||
"Taker fee": "Ada ya Kuchukua",
|
"Taker fee": "Ada ya Kuchukua",
|
||||||
"Telegram": "Telegram",
|
"Telegram": "Telegram",
|
||||||
"Testnet LN Node": "Testnet LN Node",
|
|
||||||
"The coordinator does not seem to receive exceptional love from robots over the internet": "The coordinator does not seem to receive exceptional love from robots over the internet",
|
"The coordinator does not seem to receive exceptional love from robots over the internet": "The coordinator does not seem to receive exceptional love from robots over the internet",
|
||||||
"The privacy practices of this coordinator could improve": "The privacy practices of this coordinator could improve",
|
"The privacy practices of this coordinator could improve": "The privacy practices of this coordinator could improve",
|
||||||
"Today active robots": "Robots wenye shughuli leo",
|
"Today active robots": "Robots wenye shughuli leo",
|
||||||
|
@ -251,7 +251,7 @@
|
|||||||
"Coordinator Notice": "Coordinator Notice",
|
"Coordinator Notice": "Coordinator Notice",
|
||||||
"Coordinator commit hash": "Coordinator commit hash",
|
"Coordinator commit hash": "Coordinator commit hash",
|
||||||
"Coordinator description": "Coordinator description",
|
"Coordinator description": "Coordinator description",
|
||||||
"Coordinator domain": "Coordinator domain",
|
"Coordinator hosted web app": "Coordinator hosted web app",
|
||||||
"Coordinator offline": "Coordinator offline",
|
"Coordinator offline": "Coordinator offline",
|
||||||
"Current onchain payout fee": "ค่าธรรมเนียมการจ่าย On-chain ตอนนี้",
|
"Current onchain payout fee": "ค่าธรรมเนียมการจ่าย On-chain ตอนนี้",
|
||||||
"Development fund supporter: donates {{percent}}% to make RoboSats better.": "Development fund supporter: donates {{percent}}% to make RoboSats better.",
|
"Development fund supporter: donates {{percent}}% to make RoboSats better.": "Development fund supporter: donates {{percent}}% to make RoboSats better.",
|
||||||
@ -264,7 +264,6 @@
|
|||||||
"Large limits: the coordinator has large trade limits.": "Large limits: the coordinator has large trade limits.",
|
"Large limits: the coordinator has large trade limits.": "Large limits: the coordinator has large trade limits.",
|
||||||
"Lifetime contracted volume": "ปริมาณการซื้อขายตั้งแต่ก่อตั้งแพล้ตฟอร์ม",
|
"Lifetime contracted volume": "ปริมาณการซื้อขายตั้งแต่ก่อตั้งแพล้ตฟอร์ม",
|
||||||
"Loved by robots: receives positive comments by robots over the internet.": "Loved by robots: receives positive comments by robots over the internet.",
|
"Loved by robots: receives positive comments by robots over the internet.": "Loved by robots: receives positive comments by robots over the internet.",
|
||||||
"Mainnet LN Node": "Mainnet LN Node",
|
|
||||||
"Maker fee": "ค่าธรรมเนียม Maker",
|
"Maker fee": "ค่าธรรมเนียม Maker",
|
||||||
"Matrix channel copied! {{matrix}}": "Matrix channel copied! {{matrix}}",
|
"Matrix channel copied! {{matrix}}": "Matrix channel copied! {{matrix}}",
|
||||||
"Not a federation founder": "Not a federation founder",
|
"Not a federation founder": "Not a federation founder",
|
||||||
@ -279,7 +278,6 @@
|
|||||||
"Summary": "Summary",
|
"Summary": "Summary",
|
||||||
"Taker fee": "ค่าธรรมเนียม Taker",
|
"Taker fee": "ค่าธรรมเนียม Taker",
|
||||||
"Telegram": "Telegram",
|
"Telegram": "Telegram",
|
||||||
"Testnet LN Node": "Testnet LN Node",
|
|
||||||
"The coordinator does not seem to receive exceptional love from robots over the internet": "The coordinator does not seem to receive exceptional love from robots over the internet",
|
"The coordinator does not seem to receive exceptional love from robots over the internet": "The coordinator does not seem to receive exceptional love from robots over the internet",
|
||||||
"The privacy practices of this coordinator could improve": "The privacy practices of this coordinator could improve",
|
"The privacy practices of this coordinator could improve": "The privacy practices of this coordinator could improve",
|
||||||
"Today active robots": "จำนวนโรบอทที่ใช้งานในวันนี้",
|
"Today active robots": "จำนวนโรบอทที่ใช้งานในวันนี้",
|
||||||
|
@ -251,7 +251,7 @@
|
|||||||
"Coordinator Notice": "Coordinator Notice",
|
"Coordinator Notice": "Coordinator Notice",
|
||||||
"Coordinator commit hash": "协调器提交哈希",
|
"Coordinator commit hash": "协调器提交哈希",
|
||||||
"Coordinator description": "Coordinator description",
|
"Coordinator description": "Coordinator description",
|
||||||
"Coordinator domain": "Coordinator domain",
|
"Coordinator hosted web app": "Coordinator hosted web app",
|
||||||
"Coordinator offline": "Coordinator offline",
|
"Coordinator offline": "Coordinator offline",
|
||||||
"Current onchain payout fee": "当前链上支付费用",
|
"Current onchain payout fee": "当前链上支付费用",
|
||||||
"Development fund supporter: donates {{percent}}% to make RoboSats better.": "Development fund supporter: donates {{percent}}% to make RoboSats better.",
|
"Development fund supporter: donates {{percent}}% to make RoboSats better.": "Development fund supporter: donates {{percent}}% to make RoboSats better.",
|
||||||
@ -264,7 +264,6 @@
|
|||||||
"Large limits: the coordinator has large trade limits.": "Large limits: the coordinator has large trade limits.",
|
"Large limits: the coordinator has large trade limits.": "Large limits: the coordinator has large trade limits.",
|
||||||
"Lifetime contracted volume": "终身合约量",
|
"Lifetime contracted volume": "终身合约量",
|
||||||
"Loved by robots: receives positive comments by robots over the internet.": "Loved by robots: receives positive comments by robots over the internet.",
|
"Loved by robots: receives positive comments by robots over the internet.": "Loved by robots: receives positive comments by robots over the internet.",
|
||||||
"Mainnet LN Node": "Mainnet LN Node",
|
|
||||||
"Maker fee": "挂单方费用",
|
"Maker fee": "挂单方费用",
|
||||||
"Matrix channel copied! {{matrix}}": "Matrix channel copied! {{matrix}}",
|
"Matrix channel copied! {{matrix}}": "Matrix channel copied! {{matrix}}",
|
||||||
"Not a federation founder": "Not a federation founder",
|
"Not a federation founder": "Not a federation founder",
|
||||||
@ -279,7 +278,6 @@
|
|||||||
"Summary": "Summary",
|
"Summary": "Summary",
|
||||||
"Taker fee": "吃单方费用",
|
"Taker fee": "吃单方费用",
|
||||||
"Telegram": "Telegram",
|
"Telegram": "Telegram",
|
||||||
"Testnet LN Node": "Testnet LN Node",
|
|
||||||
"The coordinator does not seem to receive exceptional love from robots over the internet": "The coordinator does not seem to receive exceptional love from robots over the internet",
|
"The coordinator does not seem to receive exceptional love from robots over the internet": "The coordinator does not seem to receive exceptional love from robots over the internet",
|
||||||
"The privacy practices of this coordinator could improve": "The privacy practices of this coordinator could improve",
|
"The privacy practices of this coordinator could improve": "The privacy practices of this coordinator could improve",
|
||||||
"Today active robots": "今天活跃的机器人",
|
"Today active robots": "今天活跃的机器人",
|
||||||
|
@ -251,7 +251,7 @@
|
|||||||
"Coordinator Notice": "Coordinator Notice",
|
"Coordinator Notice": "Coordinator Notice",
|
||||||
"Coordinator commit hash": "協調器提交哈希",
|
"Coordinator commit hash": "協調器提交哈希",
|
||||||
"Coordinator description": "Coordinator description",
|
"Coordinator description": "Coordinator description",
|
||||||
"Coordinator domain": "Coordinator domain",
|
"Coordinator hosted web app": "Coordinator hosted web app",
|
||||||
"Coordinator offline": "Coordinator offline",
|
"Coordinator offline": "Coordinator offline",
|
||||||
"Current onchain payout fee": "當前鏈上支付費用",
|
"Current onchain payout fee": "當前鏈上支付費用",
|
||||||
"Development fund supporter: donates {{percent}}% to make RoboSats better.": "Development fund supporter: donates {{percent}}% to make RoboSats better.",
|
"Development fund supporter: donates {{percent}}% to make RoboSats better.": "Development fund supporter: donates {{percent}}% to make RoboSats better.",
|
||||||
@ -264,7 +264,6 @@
|
|||||||
"Large limits: the coordinator has large trade limits.": "Large limits: the coordinator has large trade limits.",
|
"Large limits: the coordinator has large trade limits.": "Large limits: the coordinator has large trade limits.",
|
||||||
"Lifetime contracted volume": "終身合約量",
|
"Lifetime contracted volume": "終身合約量",
|
||||||
"Loved by robots: receives positive comments by robots over the internet.": "Loved by robots: receives positive comments by robots over the internet.",
|
"Loved by robots: receives positive comments by robots over the internet.": "Loved by robots: receives positive comments by robots over the internet.",
|
||||||
"Mainnet LN Node": "Mainnet LN Node",
|
|
||||||
"Maker fee": "掛單方費用",
|
"Maker fee": "掛單方費用",
|
||||||
"Matrix channel copied! {{matrix}}": "Matrix channel copied! {{matrix}}",
|
"Matrix channel copied! {{matrix}}": "Matrix channel copied! {{matrix}}",
|
||||||
"Not a federation founder": "Not a federation founder",
|
"Not a federation founder": "Not a federation founder",
|
||||||
@ -279,7 +278,6 @@
|
|||||||
"Summary": "Summary",
|
"Summary": "Summary",
|
||||||
"Taker fee": "吃單方費用",
|
"Taker fee": "吃單方費用",
|
||||||
"Telegram": "Telegram",
|
"Telegram": "Telegram",
|
||||||
"Testnet LN Node": "Testnet LN Node",
|
|
||||||
"The coordinator does not seem to receive exceptional love from robots over the internet": "The coordinator does not seem to receive exceptional love from robots over the internet",
|
"The coordinator does not seem to receive exceptional love from robots over the internet": "The coordinator does not seem to receive exceptional love from robots over the internet",
|
||||||
"The privacy practices of this coordinator could improve": "The privacy practices of this coordinator could improve",
|
"The privacy practices of this coordinator could improve": "The privacy practices of this coordinator could improve",
|
||||||
"Today active robots": "今天活躍的機器人",
|
"Today active robots": "今天活躍的機器人",
|
||||||
|
Loading…
Reference in New Issue
Block a user