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