Skip to content

Commit

Permalink
fix: update translation keys (fedimint#601)
Browse files Browse the repository at this point in the history
  • Loading branch information
tsmith123 authored Jan 24, 2025
1 parent f8f5e6f commit e23e0c6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions apps/router/src/home/NoConnectedServices.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ export const NoConnectedServices: React.FC = () => {
<Text fontSize='xl' fontWeight='bold' textAlign='center'>
{t('router.title', 'No services connected yet.')}
</Text>
<Text>{t('router.services-title')}</Text>
<Text>{t('router.services-description')}</Text>
<UnorderedList spacing={4} paddingLeft={6}>
<ListItem>
<Text fontWeight='bold'>{t('router.guardians')}</Text>
<Text>{t('router.services-description')}</Text>
<Text>{t('router.guardians-description')}</Text>
</ListItem>
<ListItem>
<Text fontWeight='bold'>{t('router.gateways')}</Text>
Expand Down
5 changes: 3 additions & 2 deletions apps/router/src/languages/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,9 @@
},
"router": {
"title": "No services connected yet.",
"services-title": "A Fedimint federation consists of two types of services:",
"services-description": "Responsible for running the Fedimint protocol, custodying funds, and managing the minting and redemption of eCash notes. They use distributed consensus to secure the federation.",
"services-description": "A Fedimint federation consists of two types of services:",
"guardians": "Guardians:",
"guardians-description": "Responsible for running the Fedimint protocol, custodying funds, and managing the minting and redemption of eCash notes. They use distributed consensus to secure the federation.",
"gateways": "Gateways (Lightning Service Providers):",
"gateways-description": "Bridge between the Fedimint and the Lightning Network, allowing users to send and receive Lightning payments. They can be run by the federation or independent providers.",
"learn-more": "You can learn more about how to set up Fedimint services here:",
Expand Down

0 comments on commit e23e0c6

Please sign in to comment.