fix a bunch of strings

pull/1023/head
Ryan ZHAO 7 months ago
parent 080ab386ad
commit 70f8d45a39

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

@ -600,12 +600,15 @@ public final class FullConversationCell: UITableViewCell, SwipeActionOptimisticC
if if
(cellViewModel.threadVariant == .legacyGroup || cellViewModel.threadVariant == .group || cellViewModel.threadVariant == .community) && (cellViewModel.threadVariant == .legacyGroup || cellViewModel.threadVariant == .group || cellViewModel.threadVariant == .community) &&
(cellViewModel.interactionVariant?.isGroupControlMessage == false) (cellViewModel.interactionVariant?.isInfoMessage == false)
{ {
let authorName: String = cellViewModel.authorName(for: cellViewModel.threadVariant) let authorName: String = cellViewModel.authorName(for: cellViewModel.threadVariant)
result.append(NSAttributedString( result.append(NSAttributedString(
string: "\(authorName): ", // stringlint:disable string: "messageSnippetGroup"
.put(key: "author", value: authorName)
.put(key: "message_snippet", value: "")
.localized(),
attributes: [ .foregroundColor: textColor ] attributes: [ .foregroundColor: textColor ]
)) ))
} }
@ -652,11 +655,18 @@ public final class FullConversationCell: UITableViewCell, SwipeActionOptimisticC
textColor: UIColor textColor: UIColor
) -> NSAttributedString { ) -> NSAttributedString {
guard !content.isEmpty, content != "noteToSelf".localized() else { guard !content.isEmpty, content != "noteToSelf".localized() else {
if let authorName: String = authorName, !authorName.isEmpty {
return NSMutableAttributedString( return NSMutableAttributedString(
string: (authorName != nil && authorName?.isEmpty != true ? string: "messageSnippetGroup"
"\(authorName ?? ""): \(content)" : // stringlint:disable .put(key: "author", value: authorName)
content .put(key: "message_snippet", value: content)
), .localized(),
attributes: [ .foregroundColor: textColor ]
)
}
return NSMutableAttributedString(
string: content,
attributes: [ .foregroundColor: textColor ] attributes: [ .foregroundColor: textColor ]
) )
} }
@ -732,7 +742,10 @@ public final class FullConversationCell: UITableViewCell, SwipeActionOptimisticC
guard !authorName.isEmpty else { return nil } guard !authorName.isEmpty else { return nil }
let authorPrefix: NSAttributedString = NSAttributedString( let authorPrefix: NSAttributedString = NSAttributedString(
string: "\(authorName): ", // stringlint:disable string: "messageSnippetGroup"
.put(key: "author", value: authorName)
.put(key: "message_snippet", value: "")
.localized(),
attributes: [ .foregroundColor: textColor ] attributes: [ .foregroundColor: textColor ]
) )

@ -271,11 +271,15 @@ extension Attachment: CustomStringConvertible {
descriptionInfo.sourceFilename == nil || descriptionInfo.sourceFilename == nil ||
(descriptionInfo.sourceFilename?.count ?? 0) == 0 (descriptionInfo.sourceFilename?.count ?? 0) == 0
{ {
return "🎙️ \("messageVoice".localized())" return "messageVoiceSnippet"
.put(key: "emoji", value: "🎙️")
.localized()
} }
} }
return "\(emoji(for: descriptionInfo.contentType)) \("attachment".localized())" return "attachmentsNotification"
.put(key: "emoji", value: emoji(for: descriptionInfo.contentType))
.localized()
} }
public static func emoji(for contentType: String) -> String { public static func emoji(for contentType: String) -> String {
@ -776,10 +780,7 @@ extension Attachment {
public var documentFileName: String { public var documentFileName: String {
if let sourceFilename: String = sourceFilename { return sourceFilename } if let sourceFilename: String = sourceFilename { return sourceFilename }
if isImage { return "image".localized() + " " + "file".localized() } return shortDescription
if isAudio { return "audio".localized() + " " + "file".localized() }
if isVideo { return "video".localized() + " " + "file".localized() }
return "file".localized()
} }
public var shortDescription: String { public var shortDescription: String {

@ -146,8 +146,13 @@ public extension DisappearingMessagesConfiguration {
var previewText: String { var previewText: String {
guard let senderName: String = senderName else { guard let senderName: String = senderName else {
guard isEnabled, durationSeconds > 0 else { guard isEnabled, durationSeconds > 0 else {
switch threadVariant {
case .legacyGroup, .group:
return "disappearingMessagesTurnedOffYou".localized() // TODO: replace with "disappearingMessagesTurnedOffYouGroup".localized()
default:
return "disappearingMessagesTurnedOffYou".localized() return "disappearingMessagesTurnedOffYou".localized()
} }
}
return "disappearingMessagesSetYou" return "disappearingMessagesSetYou"
.put(key: "time", value: floor(durationSeconds).formatted(format: .long)) .put(key: "time", value: floor(durationSeconds).formatted(format: .long))
@ -156,10 +161,17 @@ public extension DisappearingMessagesConfiguration {
} }
guard isEnabled, durationSeconds > 0 else { guard isEnabled, durationSeconds > 0 else {
switch threadVariant {
case .legacyGroup, .group:
return "disappearingMessagesTurnedOffGroup"
.put(key: "name", value: senderName)
.localized()
default:
return "disappearingMessagesTurnedOff" return "disappearingMessagesTurnedOff"
.put(key: "name", value: senderName) .put(key: "name", value: senderName)
.localized() .localized()
} }
}
return "disappearingMessagesSet" return "disappearingMessagesSet"
.put(key: "name", value: senderName) .put(key: "name", value: senderName)

@ -987,27 +987,14 @@ public extension Interaction {
count: attachmentCount count: attachmentCount
) )
if if let attachmentDescription: String = attachmentDescription, !attachmentDescription.isEmpty {
let attachmentDescription: String = attachmentDescription, return attachmentDescription
let body: String = body,
!attachmentDescription.isEmpty,
!body.isEmpty
{
if Singleton.hasAppContext && Singleton.appContext.isRTL {
return "\(body): \(attachmentDescription)"
}
return "\(attachmentDescription): \(body)"
} }
if let body: String = body, !body.isEmpty { if let body: String = body, !body.isEmpty {
return body return body
} }
if let attachmentDescription: String = attachmentDescription, !attachmentDescription.isEmpty {
return attachmentDescription
}
if isOpenGroupInvitation { if isOpenGroupInvitation {
return "communityInvitation".localized() return "communityInvitation".localized()
} }

Loading…
Cancel
Save