From 41368c85bf7fdff05779545411c3bd6dc661cb13 Mon Sep 17 00:00:00 2001 From: Stanislav Dmitrenko <7953703+avently@users.noreply.github.com> Date: Thu, 4 May 2023 18:40:47 +0300 Subject: [PATCH] ios: more localized strings (#2377) * ios: more localized strings * translation comments --------- Co-authored-by: Evgeny Poberezkin <2769109+epoberezkin@users.noreply.github.com> --- .../Shared/Views/Onboarding/CreateSimpleXAddress.swift | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/ios/Shared/Views/Onboarding/CreateSimpleXAddress.swift b/apps/ios/Shared/Views/Onboarding/CreateSimpleXAddress.swift index 0962813d60..7cf4f3b065 100644 --- a/apps/ios/Shared/Views/Onboarding/CreateSimpleXAddress.swift +++ b/apps/ios/Shared/Views/Onboarding/CreateSimpleXAddress.swift @@ -190,14 +190,14 @@ struct SendAddressMailView: View { var userAddress: UserContactLink var body: some View { - let messageBody = """ + let messageBody = String(format: NSLocalizedString("""
Hi!
- - """ + + """, 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 ) }