mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-03-03 20:07:11 +01:00
FIX: Fix syntax issue
This commit is contained in:
parent
a61ed54612
commit
3cbc825281
2 changed files with 3 additions and 4 deletions
|
@ -179,10 +179,9 @@ module.exports = {
|
||||||
retype_password: 'Re-type password',
|
retype_password: 'Re-type password',
|
||||||
passwords_do_not_match: 'Passwords do not match',
|
passwords_do_not_match: 'Passwords do not match',
|
||||||
encrypt_storage: 'Encrypt storage',
|
encrypt_storage: 'Encrypt storage',
|
||||||
lightning_settings: 'Lightning settings',
|
lightning_settings: 'Lightning Settings',
|
||||||
lightning_settings_explain: 'To connect to your own LND node please install LndHub' +
|
lightning_settings_explain: 'To connect to your own LND node please install LndHub' +
|
||||||
' and put its URL here in settings. Leave blank to use default ' +
|
' and put its URL here in settings. Leave blank to use default LndHub (lndhub.io)',
|
||||||
'ndHub\n (lndhub.io)',
|
|
||||||
save: 'save',
|
save: 'save',
|
||||||
about: 'About',
|
about: 'About',
|
||||||
language: 'Language',
|
language: 'Language',
|
||||||
|
|
|
@ -53,7 +53,7 @@ export default class LightningSettings extends Component {
|
||||||
return (
|
return (
|
||||||
<SafeBlueArea forceInset={{ horizontal: 'always' }} style={{ flex: 1 }}>
|
<SafeBlueArea forceInset={{ horizontal: 'always' }} style={{ flex: 1 }}>
|
||||||
<BlueCard>
|
<BlueCard>
|
||||||
<BlueText {loc.settings.lightning_settings_explain} />
|
<BlueText>{loc.settings.lightning_settings_explain}</BlueText>
|
||||||
</BlueCard>
|
</BlueCard>
|
||||||
|
|
||||||
<BlueButton
|
<BlueButton
|
||||||
|
|
Loading…
Add table
Reference in a new issue