From b39845f265d485be9a054555ba62407202cb7749 Mon Sep 17 00:00:00 2001 From: Ryan ZHAO <> Date: Mon, 2 Sep 2024 16:02:17 +1000 Subject: [PATCH] fix strings --- Session/Closed Groups/NewClosedGroupVC.swift | 2 +- .../New Conversation/InviteAFriendScreen.swift | 14 +++++++++----- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/Session/Closed Groups/NewClosedGroupVC.swift b/Session/Closed Groups/NewClosedGroupVC.swift index 16a21dd42..7620dc6a5 100644 --- a/Session/Closed Groups/NewClosedGroupVC.swift +++ b/Session/Closed Groups/NewClosedGroupVC.swift @@ -165,7 +165,7 @@ final class NewClosedGroupVC: BaseVC, UITableViewDataSource, UITableViewDelegate guard !contactProfiles.isEmpty else { let explanationLabel: UILabel = UILabel() explanationLabel.font = .systemFont(ofSize: Values.smallFontSize) - explanationLabel.text = "conversationsNone".localized() + explanationLabel.text = "contactNone".localized() explanationLabel.themeTextColor = .textSecondary explanationLabel.textAlignment = .center explanationLabel.lineBreakMode = .byWordWrapping diff --git a/Session/Home/New Conversation/InviteAFriendScreen.swift b/Session/Home/New Conversation/InviteAFriendScreen.swift index 6eba8e166..fd2773d0e 100644 --- a/Session/Home/New Conversation/InviteAFriendScreen.swift +++ b/Session/Home/New Conversation/InviteAFriendScreen.swift @@ -44,11 +44,15 @@ struct InviteAFriendScreen: View { .stroke(themeColor: .borderSeparator) ) - Text("shareAccountIdDescription".localized()) - .font(.system(size: Values.verySmallFontSize)) - .multilineTextAlignment(.center) - .foregroundColor(themeColor: .textSecondary) - .padding(.horizontal, Values.smallSpacing) + Text( + "shareAccountIdDescription" + .put(key: "app_name", value: Constants.app_name) + .localized() + ) + .font(.system(size: Values.verySmallFontSize)) + .multilineTextAlignment(.center) + .foregroundColor(themeColor: .textSecondary) + .padding(.horizontal, Values.smallSpacing) HStack( alignment: .center,