mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-20 02:09:10 +01:00
Merge branch 'master' into isitmyaddressdesktop
This commit is contained in:
commit
13e44c203c
6
App.js
6
App.js
@ -43,7 +43,7 @@ const App = () => {
|
||||
const appState = useRef(AppState.currentState);
|
||||
const [isClipboardContentModalVisible, setIsClipboardContentModalVisible] = useState(false);
|
||||
const [clipboardContentType, setClipboardContentType] = useState();
|
||||
const [clipboardContent, setClipboardContent] = useState('');
|
||||
const clipboardContent = useRef();
|
||||
const colorScheme = useColorScheme();
|
||||
const stylesHook = StyleSheet.create({
|
||||
modalContent: {
|
||||
@ -217,7 +217,7 @@ const App = () => {
|
||||
const isBothBitcoinAndLightning = DeeplinkSchemaMatch.isBothBitcoinAndLightning(clipboard);
|
||||
if (
|
||||
!isAddressFromStoredWallet &&
|
||||
clipboardContent !== clipboard &&
|
||||
clipboardContent.current !== clipboard &&
|
||||
(isBitcoinAddress || isLightningInvoice || isLNURL || isBothBitcoinAndLightning)
|
||||
) {
|
||||
if (isBitcoinAddress) {
|
||||
@ -229,7 +229,7 @@ const App = () => {
|
||||
}
|
||||
setIsClipboardContentModalVisible(true);
|
||||
}
|
||||
setClipboardContent(clipboard);
|
||||
clipboardContent.current = clipboard;
|
||||
}
|
||||
if (nextAppState) {
|
||||
appState.current = nextAppState;
|
||||
|
@ -232,7 +232,8 @@
|
||||
"about_review": "برای ما یک بررسی بگذارید",
|
||||
"about_selftest": "اجرای خودآزمایی",
|
||||
"about_sm_github": "گیتهاب",
|
||||
"about_sm_telegram": "گروه تلگرام",
|
||||
"about_sm_discord": "سرور دیسکورد",
|
||||
"about_sm_telegram": "کانال تلگرام",
|
||||
"about_sm_twitter": "ما را در توئیتر دنبال کنید",
|
||||
"advanced_options": "گزینههای پیشرفته",
|
||||
"currency": "واحد پول",
|
||||
@ -402,6 +403,7 @@
|
||||
"list_tryagain": "دوباره امتحان کنید",
|
||||
"looks_like_bip38": "این به کلید خصوصی محافظتشده با گذرواژه (BIP38) شباهت دارد.",
|
||||
"reorder_title": "بازچینی کیف پولها",
|
||||
"please_continue_scanning": "لطفاً به اسکنکردن ادامه دهید",
|
||||
"select_no_bitcoin": "هیچ کیف پول بیتکوینی درحالحاضر دردسترس نیست.",
|
||||
"select_no_bitcoin_exp": "یک کیف پول بیتکوین برای پرکردن کیف پولهای لایتنینگ نیاز است. لطفاً یکی بسازید یا وارد کنید.",
|
||||
"select_wallet": "انتخاب کیف پول",
|
||||
|
Loading…
Reference in New Issue
Block a user