diff --git a/BlueComponents.js b/BlueComponents.js index f279446f6..5ae2cf6bb 100644 --- a/BlueComponents.js +++ b/BlueComponents.js @@ -559,7 +559,12 @@ export const BlueHeaderDefaultMain = props => { > {props.leftText} - + ); }; diff --git a/components/AmountInput.js b/components/AmountInput.js index 0cb59dae5..4f471e096 100644 --- a/components/AmountInput.js +++ b/components/AmountInput.js @@ -238,7 +238,7 @@ class AmountInput extends Component { }); return ( - this.textInput.focus()}> + this.textInput.focus()}> <> {!disabled && } @@ -289,6 +289,7 @@ class AmountInput extends Component { {!disabled && amount !== BitcoinUnit.MAX && ( { return ( { Keyboard.dismiss(); let newIndex = keyIndex; @@ -56,6 +58,8 @@ export const ArrowPicker = (props: ArrowPickerProps) => { {props.isItemUnknown ? loc.send.fee_custom : keys[keyIndex]} { Keyboard.dismiss(); let newIndex = keyIndex; diff --git a/components/Button.js b/components/Button.js index 262695cb5..ac2c1a82a 100644 --- a/components/Button.js +++ b/components/Button.js @@ -38,7 +38,7 @@ const Button = props => { const opacity = { opacity: disabled ? 0.5 : 1.0 }; return ( - + {text} diff --git a/components/LdkButton.js b/components/LdkButton.js index 500d06a57..f040a227c 100644 --- a/components/LdkButton.js +++ b/components/LdkButton.js @@ -7,7 +7,7 @@ import React from 'react'; export const LdkButton = props => { const { colors } = useTheme(); return ( - + { )} {!showActivityIndicator && props.rightButton && checked && ( - + { }} style={buttonStyle} > - {props.onPress ? {props.children} : props.children} + {props.onPress ? {props.children} : props.children} ) : ( { } : {})} > - {props.onPress ? {props.children} : props.children} + {props.onPress ? {props.children} : props.children} ); }; diff --git a/components/TransactionsNavigationHeader.js b/components/TransactionsNavigationHeader.js index aabfb8ebd..eb2270a78 100644 --- a/components/TransactionsNavigationHeader.js +++ b/components/TransactionsNavigationHeader.js @@ -260,7 +260,7 @@ export default class TransactionsNavigationHeader extends Component { )} {this.state.wallet.type === LightningLdkWallet.type && ( - + {loc.lnd.title} diff --git a/components/WalletsCarousel.js b/components/WalletsCarousel.js index 187e44404..4ba5b1478 100644 --- a/components/WalletsCarousel.js +++ b/components/WalletsCarousel.js @@ -203,6 +203,7 @@ const WalletCarouselItem = ({ item, index, onPress, handleLongPress, isSelectedW shadowRadius={8} > ( - + ); @@ -106,9 +108,7 @@ export const navigationStyleTx = (opts: NavigationOptions, formatter: OptionsFor headerBackTitleVisible: false, headerTintColor: theme.colors.foregroundColor, headerLeft: () => ( - { Keyboard.dismiss(); navigation.goBack(null); diff --git a/loc/en.json b/loc/en.json index 8b11d00a7..0ecdcd80d 100644 --- a/loc/en.json +++ b/loc/en.json @@ -18,7 +18,15 @@ "wallet_key": "Wallet key", "invalid_animated_qr_code_fragment": "Invalid animated QRCode fragment. Please try again.", "file_saved": "File {filePath} has been saved in your {destination}.", - "downloads_folder": "Downloads Folder" + "downloads_folder": "Downloads Folder", + "close": "Close", + "change_input_currency": "Change input currency", + "refresh": "Refresh", + "more": "More", + "pick_image": "Choose image from library", + "pick_file": "Choose a file", + "enter_amount": "Enter amount", + "qr_custom_input_button": "Tap 10 times to enter custom input" }, "alert": { "default": "Alert" diff --git a/screen/lnd/ldkInfo.tsx b/screen/lnd/ldkInfo.tsx index bef0dc6ca..681c64d18 100644 --- a/screen/lnd/ldkInfo.tsx +++ b/screen/lnd/ldkInfo.tsx @@ -296,7 +296,7 @@ const LdkInfo = () => { const channelData = channel.channel.item; return ( - showModal(channel)}> + showModal(channel)}> { )} - + - + {showFileImportButton && ( - + )} @@ -392,6 +392,8 @@ const ScanQRCode = () => { )} { diff --git a/screen/send/details.js b/screen/send/details.js index 23931294b..7570f3fc2 100644 --- a/screen/send/details.js +++ b/screen/send/details.js @@ -953,6 +953,7 @@ const SendDetails = () => { default: () => ( { @@ -1388,7 +1389,7 @@ const SendDetails = () => { /> {frozenBalance > 0 && ( - + {loc.formatString(loc.send.details_frozen, { amount: formatBalanceWithoutSuffix(frozenBalance, BitcoinUnit.BTC, true) })} diff --git a/screen/settings/SettingsPrivacy.js b/screen/settings/SettingsPrivacy.js index 4d43745bb..0b6cd4ace 100644 --- a/screen/settings/SettingsPrivacy.js +++ b/screen/settings/SettingsPrivacy.js @@ -103,7 +103,7 @@ const SettingsPrivacy = () => { return ( - + { return ( - + {loc.wallets.import_explanation} diff --git a/screen/wallets/ldkViewLogs.js b/screen/wallets/ldkViewLogs.js index 1e3328d40..ee2b06d89 100644 --- a/screen/wallets/ldkViewLogs.js +++ b/screen/wallets/ldkViewLogs.js @@ -39,7 +39,7 @@ const LdkViewLogs = () => { .finally(() => { setOptions({ headerRight: () => ( - + ), @@ -104,13 +104,13 @@ const LdkViewLogs = () => { return ( - + self test - + export logs to a file - + sync blockchain Identity pubkey: {getInfo.identityPubkey} diff --git a/screen/wallets/list.js b/screen/wallets/list.js index cb57d9ef7..a580d8bac 100644 --- a/screen/wallets/list.js +++ b/screen/wallets/list.js @@ -103,13 +103,13 @@ const WalletsList = () => { }, headerRight: () => I18nManager.isRTL ? null : ( - + ), headerLeft: () => I18nManager.isRTL ? ( - + ) : null, diff --git a/screen/wallets/reorderWallets.js b/screen/wallets/reorderWallets.js index 347938e0f..3ad413968 100644 --- a/screen/wallets/reorderWallets.js +++ b/screen/wallets/reorderWallets.js @@ -103,6 +103,7 @@ const ReorderWallets = () => { return ( navigateToWallet(item)}