Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

LNDHub: Use 'Loading your account' while starting #1847

Merged
merged 1 commit into from
Nov 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -284,6 +284,7 @@
"views.Wallet.Wallet.closedChannels": "Closed Channels",
"views.Wallet.Wallet.startingUp": "Zeus is starting up.",
"views.Wallet.Wallet.connecting": "Zeus is connecting to your node.",
"views.Wallet.Wallet.loadingAccount": "Zeus is loading your account.",
"views.Wallet.Wallet.startingNode": "Zeus is starting your node.",
"views.Wallet.Wallet.expressGraphSync": "Zeus is running express graph sync. Hang tight.",
"views.Wallet.restart": "Restart",
Expand Down Expand Up @@ -896,7 +897,7 @@
"views.Settings.LightningAddressSettings.automaticallyAccept": "Automatically accept payments on startup",
"views.Settings.LightningAddressSettings.automaticallyAcceptAttestationLevel": "Attestation level for automatic acceptance",
"views.Settings.LightningAddressSettings.automaticallyAcceptAttestationLevel.successOnly": "Successful only",
"views.Settings.LightningAddressSettings.automaticallyAcceptAttestationLevel.successAndNotFound": "Successful and not found",
"views.Settings.LightningAddressSettings.automaticallyAcceptAttestationLevel.successAndNotFound": "Successful and not found",
"views.Settings.LightningAddressSettings.automaticallyRequestOlympusChannels": "Automatically request channels from OLYMPUS",
"views.Settings.LightningAddressSettings.automaticallyRequestOlympusChannelsExplainer1": "If enabled, OLYMPUS will automatically open up channels to you when it cannot find a route to you. This will ensure that you can continue to receive payments with ZEUS PAY.",
"views.Settings.LightningAddressSettings.automaticallyRequestOlympusChannelsExplainer2": "There is a 10,000 sat fee for each channel created. The minimum amount required to trigger a channel opening is 50,000 sats.",
Expand Down
4 changes: 4 additions & 0 deletions views/Wallet/Wallet.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -706,6 +706,10 @@ export default class Wallet extends React.Component<WalletProps, WalletState> {
: localeString(
'views.Wallet.Wallet.startingNode'
).replace('Zeus', 'ZEUS')
: implementation === 'lndhub'
? localeString(
'views.Wallet.Wallet.loadingAccount'
).replace('Zeus', 'ZEUS')
: localeString(
'views.Wallet.Wallet.connecting'
).replace('Zeus', 'ZEUS')
Expand Down