fix some modals

pull/1023/head
Ryan ZHAO 7 months ago
parent 93e91e5d40
commit f8fb647752

@ -2273,9 +2273,10 @@ extension ConversationVC:
let modal: ConfirmationModal = ConfirmationModal(
targetView: self.view,
info: ConfirmationModal.Info(
title: Constants.app_name,
body: .text("This will ban the selected user from this room. It won't ban them from other rooms."),
confirmTitle: "okay".localized(),
title: "banUser".localized(),
body: .text("communityBanDescription".localized()),
confirmTitle: "theContinue".localized(),
confirmStyle: .danger,
cancelStyle: .alert_text,
onConfirm: { [weak self] _ in
Storage.shared
@ -2334,9 +2335,10 @@ extension ConversationVC:
let modal: ConfirmationModal = ConfirmationModal(
targetView: self.view,
info: ConfirmationModal.Info(
title: Constants.app_name,
body: .text("This will ban the selected user from this room and delete all messages sent by them. It won't ban them from other rooms or delete the messages they sent there."),
confirmTitle: "okay".localized(),
title: "banDeleteAll".localized(),
body: .text("communityBanDeleteDescription".localized()),
confirmTitle: "theContinue".localized(),
confirmStyle: .danger,
cancelStyle: .alert_text,
onConfirm: { [weak self] _ in
Storage.shared

@ -84939,6 +84939,28 @@
}
}
},
"communityBanDeleteDescription" : {
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "This will ban the selected user from this Community and delete all their messages. Are you sure you want to continue?"
}
}
}
},
"communityBanDescription" : {
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "This will ban the selected user from this Community. Are you sure you want to continue?"
}
}
}
},
"communityEnterUrl" : {
"extractionState" : "manual",
"localizations" : {

@ -298,7 +298,6 @@ public class SessionCell: UITableViewCell {
leftAccessoryView.alpha = 1
leftAccessoryFillConstraint.isActive = false
titleLabel.text = ""
titleLabel.textAlignment = .left
titleLabel.themeTextColor = .textPrimary
titleLabel.alpha = 1
titleTextField.text = ""

@ -204,7 +204,7 @@ public class ConfirmationModal: Modal, UITextFieldDelegate {
}
private func layoutExplanationLabel() {
let labelWidth = view.frame.width - 2 * Values.veryLargeSpacing
let labelWidth = view.frame.width - 4 * Values.veryLargeSpacing
let maxLabelSize = CGSize(width: labelWidth, height: CGFloat.greatestFiniteMagnitude)
let expectedLabelSize = explanationLabel.sizeThatFits(maxLabelSize)
let lineHeight = explanationLabel.font.lineHeight

Loading…
Cancel
Save