mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-03-31 22:46:13 +00:00
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:
committed by
GitHub
parent
af59178318
commit
41368c85bf
@@ -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
|
||||
)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user