Skip to content
Open
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
39 changes: 39 additions & 0 deletions phoenix-ios/phoenix-ios/Localizable.xcstrings
Original file line number Diff line number Diff line change
Expand Up @@ -6916,6 +6916,9 @@
}
}
}
},
"Awaiting payment…" : {

},
"Back" : {
"localizations" : {
Expand Down Expand Up @@ -8737,6 +8740,9 @@
}
}
},
"card" : {
"comment" : "button label - try to make it short"
},
"Caused by" : {
"localizations" : {
"ar" : {
Expand Down Expand Up @@ -10567,6 +10573,9 @@
},
"Communicating with card reader." : {

},
"Communicating with card's host…" : {

},
"completed at" : {
"comment" : "Label in DetailsView_IncomingPayment",
Expand Down Expand Up @@ -12189,6 +12198,12 @@
}
}
},
"Could not communicate with card's wallet" : {
"comment" : "Error message - scanning lightning invoice"
},
"Could not connect to card's host" : {
"comment" : "Error message - processing bolt card payment"
},
"Could not connect to host:" : {
"localizations" : {
"ar" : {
Expand Down Expand Up @@ -12391,6 +12406,9 @@
}
}
}
},
"Cound not communicate with card's wallet" : {

},
"Create new contact" : {

Expand Down Expand Up @@ -15062,6 +15080,9 @@
}
}
}
},
"Does not appear to be a bolt card." : {

},
"Don't lose your funds:" : {
"localizations" : {
Expand Down Expand Up @@ -27596,6 +27617,9 @@
}
}
}
},
"No URI detected in NFC tag" : {

},
"No URI or text detected in NFC tag" : {

Expand Down Expand Up @@ -32384,6 +32408,9 @@
}
}
}
},
"Reading card…" : {

},
"Ready For Swap" : {
"localizations" : {
Expand Down Expand Up @@ -33231,6 +33258,9 @@
}
}
}
},
"Requesting payment…" : {

},
"Requesting Swap-In Address..." : {
"extractionState" : "manual",
Expand Down Expand Up @@ -38692,6 +38722,12 @@
}
}
},
"The card's host returned error code: %d" : {
"comment" : "Error message - processing bolt card payment"
},
"The card's host returned error message: %@" : {
"comment" : "Error message - processing bolt card payment"
},
"The closing transaction is in your transactions list." : {
"comment" : "label text",
"localizations" : {
Expand Down Expand Up @@ -43757,6 +43793,9 @@
}
}
},
"Unreadable response from card's host" : {
"comment" : "Error message - processing bolt card payment"
},
"Unreadable response from service: %@" : {
"comment" : "Error message - scanning lightning invoice",
"localizations" : {
Expand Down
6 changes: 5 additions & 1 deletion phoenix-ios/phoenix-ios/nfc/NfcReader.swift
Original file line number Diff line number Diff line change
Expand Up @@ -129,5 +129,9 @@ class NfcReader: NSObject, NFCNDEFReaderSessionDelegate {
finishWithSuccess(message)
}
}


/* Note: When this delegate function exists, it seems to break functionality on iOS 16.
func readerSession(_ session: NFCNDEFReaderSession, didDetect tags: [any NFCNDEFTag]) {
}
*/
}
Loading