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 {
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

@ -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,

Loading…
Cancel
Save