fix strings

pull/1023/head
Ryan ZHAO 7 months ago
parent 9eca118d85
commit b39845f265

@ -165,7 +165,7 @@ final class NewClosedGroupVC: BaseVC, UITableViewDataSource, UITableViewDelegate
guard !contactProfiles.isEmpty else { guard !contactProfiles.isEmpty else {
let explanationLabel: UILabel = UILabel() let explanationLabel: UILabel = UILabel()
explanationLabel.font = .systemFont(ofSize: Values.smallFontSize) explanationLabel.font = .systemFont(ofSize: Values.smallFontSize)
explanationLabel.text = "conversationsNone".localized() explanationLabel.text = "contactNone".localized()
explanationLabel.themeTextColor = .textSecondary explanationLabel.themeTextColor = .textSecondary
explanationLabel.textAlignment = .center explanationLabel.textAlignment = .center
explanationLabel.lineBreakMode = .byWordWrapping explanationLabel.lineBreakMode = .byWordWrapping

@ -44,11 +44,15 @@ struct InviteAFriendScreen: View {
.stroke(themeColor: .borderSeparator) .stroke(themeColor: .borderSeparator)
) )
Text("shareAccountIdDescription".localized()) Text(
.font(.system(size: Values.verySmallFontSize)) "shareAccountIdDescription"
.multilineTextAlignment(.center) .put(key: "app_name", value: Constants.app_name)
.foregroundColor(themeColor: .textSecondary) .localized()
.padding(.horizontal, Values.smallSpacing) )
.font(.system(size: Values.verySmallFontSize))
.multilineTextAlignment(.center)
.foregroundColor(themeColor: .textSecondary)
.padding(.horizontal, Values.smallSpacing)
HStack( HStack(
alignment: .center, alignment: .center,

Loading…
Cancel
Save