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,