ios: more localized strings (#2377)

* ios: more localized strings

* translation comments

---------

Co-authored-by: Evgeny Poberezkin <2769109+epoberezkin@users.noreply.github.com>
This commit is contained in:
Stanislav Dmitrenko
2023-05-04 18:40:47 +03:00
committed by GitHub
parent af59178318
commit 41368c85bf

View File

@@ -190,14 +190,14 @@ struct SendAddressMailView: View {
var userAddress: UserContactLink
var body: some View {
let messageBody = """
let messageBody = String(format: NSLocalizedString("""
<p>Hi!</p>
<p><a href="\(userAddress.connReqContact)">Connect to me via SimpleX Chat</a></p>
"""
<p><a href="%@">Connect to me via SimpleX Chat</a></p>
""", comment: "email text"), userAddress.connReqContact)
MailView(
isShowing: self.$showMailView,
result: $mailViewResult,
subject: "Let's talk in SimpleX Chat",
subject: NSLocalizedString("Let's talk in SimpleX Chat", comment: "email subject"),
messageBody: messageBody
)
}