plurals and fix some strings

pull/1023/head
Ryan ZHAO 8 months ago
parent 770a770e8c
commit 5ee048330b

@ -495,7 +495,7 @@ final class EditClosedGroupVC: BaseVC, UITableViewDataSource, UITableViewDelegat
case .finished: popToConversationVC(self)
case .failure(let error):
self?.showError(
title: "GROUP_UPDATE_ERROR_TITLE".localized(),
title: "deleteAfterLegacyGroupsGroupUpdateErrorTitle".localized(),
message: error.localizedDescription
)
}

@ -328,7 +328,7 @@ final class NewClosedGroupVC: BaseVC, UITableViewDataSource, UITableViewDelegate
return showError(title: "groupAddMemberMaximum".localized())
}
let selectedContacts = self.selectedContacts
let message: String? = (selectedContacts.count > 20 ? "GROUP_CREATION_PLEASE_WAIT".localized() : nil)
let message: String? = (selectedContacts.count > 20 ? "deleteAfterLegacyGroupsGroupCreation".localized() : nil)
ModalActivityIndicatorViewController.present(fromViewController: navigationController!, message: message) { [weak self] _ in
MessageSender
.createClosedGroup(name: name, members: selectedContacts)

@ -904,7 +904,7 @@ extension ConversationVC:
.localized()
}
}()
let modalConfirmTitle: String = messageDisappearingConfig.isEnabled ? "set".localized() : "CONFIRM_BUTTON_TITLE".localized()
let modalConfirmTitle: String = messageDisappearingConfig.isEnabled ? "set".localized() : "confirm".localized()
let confirmationModal: ConfirmationModal = ConfirmationModal(
info: ConfirmationModal.Info(
title: "disappearingMessagesFollowSetting".localized(),

@ -198,7 +198,7 @@ final class ConversationTitleView: UIView {
labelInfos.append(
SessionLabelCarouselView.LabelInfo(
attributedText: "members"
.put(key: "count", value: userCount)
.putNumber(userCount)
.localizedFormatted(baseFont: .systemFont(ofSize: Values.miniFontSize)),
accessibility: nil, // TODO: Add accessibility
type: .userCount
@ -209,7 +209,7 @@ final class ConversationTitleView: UIView {
labelInfos.append(
SessionLabelCarouselView.LabelInfo(
attributedText: "membersActive"
.put(key: "count", value: userCount)
.putNumber(userCount)
.localizedFormatted(baseFont: .systemFont(ofSize: Values.miniFontSize)),
accessibility: nil, // TODO: Add accessibility
type: .userCount

@ -591,13 +591,10 @@ extension ReactionListSheet {
}
func update(moreReactorCount: Int, emoji: String) {
label.text = (moreReactorCount == 1 ?
String(format: "EMOJI_REACTS_MORE_REACTORS_ONE".localized(), "\(emoji)") :
"emojiReactsCountOthers"
.put(key: "count", value: moreReactorCount)
.put(key: "emoji", value: emoji)
.localized()
)
label.text = "emojiReactsCountOthers"
.putNumber(moreReactorCount)
.put(key: "emoji", value: emoji)
.localized()
}
}
}

@ -50,7 +50,7 @@ final class HomeVC: BaseVC, LibSessionRespondingViewController, UITableViewDataS
private lazy var seedReminderView: SeedReminderView = {
let result = SeedReminderView()
result.accessibilityLabel = "Recovery phrase reminder"
result.title = NSAttributedString(string: "recoveryPasswordBannerTittle".localized())
result.title = NSAttributedString(string: "recoveryPasswordBannerTitle".localized())
result.subtitle = "recoveryPasswordBannerDescription".localized()
result.setProgress(1, animated: false)
result.delegate = self

@ -148,7 +148,7 @@ struct EnterAccountIdScreen: View {
)
) {
ZStack {
Text("\("messageNewDescription".localized())\(Image(systemName: "questionmark.circle"))")
Text("\("messageNewDescriptionMobile".localized())\(Image(systemName: "questionmark.circle"))")
.font(.system(size: Values.verySmallFontSize))
.foregroundColor(themeColor: .textSecondary)
.multilineTextAlignment(.center)

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

@ -153,7 +153,9 @@ public class NotificationPresenter: NotificationsProtocol {
}
switch previewType {
case .noNameNoPreview, .nameNoPreview: notificationBody = "messageNewYouveGotA".localized()
case .noNameNoPreview, .nameNoPreview: notificationBody = "messageNewYouveGot"
.putNumber(1)
.localized()
case .nameAndPreview: notificationBody = messageText
}
@ -324,7 +326,9 @@ public class NotificationPresenter: NotificationsProtocol {
switch previewType {
case .nameAndPreview: break
default: notificationBody = "messageNewYouveGotA".localized()
default: notificationBody = "messageNewYouveGot"
.putNumber(1)
.localized()
}
let category = AppNotificationCategory.incomingMessage

@ -153,8 +153,8 @@ extension UserNotificationPresenterAdaptee: NotificationPresenterAdaptee {
content.title :
threadName
)
content.body = "messageNewYouveGotMany"
.put(key: "count", value: numberOfNotifications)
content.body = "messageNewYouveGot"
.putNumber(numberOfNotifications)
.localized()
}

@ -162,7 +162,7 @@ struct EnterRecoveryPasswordScreen: View{
Spacer(minLength: 0)
.frame(maxHeight: 2 * Values.mediumSpacing)
Text("onboardingRecoveryPassword".localized())
Text("recoveryPasswordRestoreDescription".localized())
.font(.system(size: Values.smallFontSize))
.foregroundColor(themeColor: .textPrimary)
.fixedSize(horizontal: false, vertical: true)

@ -174,12 +174,14 @@ public class BlockedContactsViewModel: SessionTableViewModel, NavigatableStateHo
.first(where: { section in section.model == .contacts }),
let info: SessionCell.Info<TableItem> = section.elements
.first(where: { info in info.id.id == contactId })
else { return contactId }
else {
return Profile.truncated(id: contactId, truncating: .middle)
}
return info.title?.text
}
let confirmationTitle: String = {
let name: String = contactNames.first ?? "CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_FALLBACK".localized()
let name: String = contactNames.first ?? ""
switch contactNames.count {
case 1:
return "blockUnblockDescription"

@ -108,10 +108,7 @@ class NotificationSoundViewModel: SessionTableViewModel, NavigationItemSource, N
id: sound,
title: {
guard sound != .note else {
return String(
format: "SETTINGS_AUDIO_DEFAULT_TONE_LABEL_FORMAT".localized(),
sound.displayName
)
return "\(sound.displayName) (default)"
}
return sound.displayName

@ -244,18 +244,10 @@ final class NukeDataModal: Modal {
return
}
let message: String
if potentiallyMaliciousSnodes.count == 1 {
message = "clearDataErrorDescription1"
.put(key: "service_node_id", value: potentiallyMaliciousSnodes[0])
.localized()
}
else {
message = "clearDataErrorDescription2"
.put(key: "count", value: potentiallyMaliciousSnodes.count)
.put(key: "service_node_id", value: potentiallyMaliciousSnodes.joined(separator: ", "))
.localized()
}
let message: String = "clearDataErrorDescription"
.putNumber(potentiallyMaliciousSnodes.count)
.put(key: "service_node_id", value: potentiallyMaliciousSnodes.joined(separator: ", "))
.localized()
let modal: ConfirmationModal = ConfirmationModal(
targetView: self?.view,

@ -148,7 +148,7 @@ class PrivacySettingsViewModel: SessionTableViewModel, NavigationItemSource, Nav
SessionCell.Info(
id: .communityMessageRequests,
title: "messageRequestsCommunities".localized(),
subtitle: "messageReqeuestsCommunitiesDescription".localized(),
subtitle: "messageRequestsCommunitiesDescription".localized(),
rightAccessory: .toggle(
.boolValue(
key: .checkForCommunityMessageRequests,

@ -69,7 +69,9 @@ public enum Permissions {
info: ConfirmationModal.Info(
title: "permissionsRequired".localized(),
body: .text(
"permissionsMicrophoneAccessRequired".localized()
"permissionsMicrophoneAccessRequiredDesktop"
.put(key: "app_name", value: Singleton.appName)
.localized()
),
confirmTitle: "sessionSettings".localized(),
dismissOnConfirm: false,

@ -40,24 +40,14 @@ extension String {
extension SignalAttachmentError: LocalizedError {
public var errorDescription: String? {
switch self {
case .missingData:
return "ATTACHMENT_ERROR_MISSING_DATA".localized()
case .fileSizeTooLarge:
return "attachmentsErrorSize".localized()
case .invalidData:
case .invalidData, .missingData, .invalidFileFormat:
return "attachmentsErrorNotSupported".localized()
case .couldNotParseImage:
return "ATTACHMENT_ERROR_COULD_NOT_PARSE_IMAGE".localized()
case .couldNotConvertToJpeg:
case .couldNotConvertToJpeg, .couldNotParseImage, .couldNotConvertToMpeg4, .couldNotResizeImage:
return "attachmentsErrorOpen".localized()
case .invalidFileFormat:
return "attachmentsErrorNotSupported".localized()
case .couldNotConvertToMpeg4:
return "ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_MP4".localized()
case .couldNotRemoveMetadata:
return "attachmentsImageErrorMetadata".localized()
case .couldNotResizeImage:
return "ATTACHMENT_ERROR_COULD_NOT_RESIZE_IMAGE".localized()
}
}
}

@ -43,7 +43,10 @@ public class NSENotificationPresenter: NSObject, NotificationsProtocol {
let snippet: String = (interaction.previewText(db)
.filterForDisplay?
.replacingMentions(for: thread.id))
.defaulting(to: "messageNewYouveGotA".localized())
.defaulting(to: "messageNewYouveGot"
.putNumber(1)
.localized()
)
let userInfo: [String: Any] = [
NotificationServiceExtension.isFromRemoteKey: true,
@ -71,11 +74,15 @@ public class NSENotificationPresenter: NSObject, NotificationsProtocol {
case .nameNoPreview:
notificationContent.title = notificationTitle
notificationContent.body = "messageNewYouveGotA".localized()
notificationContent.body = "messageNewYouveGot"
.putNumber(1)
.localized()
case .noNameNoPreview:
notificationContent.title = Singleton.appName
notificationContent.body = "messageNewYouveGotA".localized()
notificationContent.body = "messageNewYouveGot"
.putNumber(1)
.localized()
}
// If it's a message request then overwrite the body to be something generic (only show a notification
@ -110,8 +117,8 @@ public class NSENotificationPresenter: NSObject, NotificationsProtocol {
notificationContent.title :
groupName
)
notificationContent.body = "messageNewYouveGotMany"
.put(key: "count", value: numberOfNotifications)
notificationContent.body = "messageNewYouveGot"
.putNumber(numberOfNotifications)
.localized()
}
@ -203,7 +210,9 @@ public class NSENotificationPresenter: NSObject, NotificationsProtocol {
switch previewType {
case .nameAndPreview: break
default: notificationBody = "messageNewYouveGotA".localized()
default: notificationBody = "messageNewYouveGot"
.putNumber(1)
.localized()
}
let userInfo: [String: Any] = [

@ -501,7 +501,9 @@ public final class NotificationServiceExtension: UNNotificationServiceExtension
Log.flush()
content.title = Singleton.appName
content.body = "messageNewYouveGotA".localized()
content.body = "messageNewYouveGot"
.putNumber(1)
.localized()
let userInfo: [String: Any] = [ NotificationServiceExtension.isFromRemoteKey: true ]
content.userInfo = userInfo
contentHandler!(content)

@ -181,6 +181,7 @@ private extension Collection where Element == NSAttributedString.HTMLTag {
final public class LocalizationHelper: CustomStringConvertible {
private let template: String
private var replacements: [String : String] = [:]
private var numbers: [Int] = []
// MARK: - Initialization
@ -194,11 +195,16 @@ final public class LocalizationHelper: CustomStringConvertible {
replacements[key] = value.description
return self
}
public func putNumber(_ number: Int, index: Int) -> LocalizationHelper {
self.numbers.insert(number, at: index)
return self
}
public func localized() -> String {
// If the localized string matches the key provided then the localisation failed
var localizedString: String = NSLocalizedString(template, comment: "")
for (key, value) in replacements {
localizedString = localizedString.replacingOccurrences(of: tokenize(key), with: value)
}
@ -206,6 +212,15 @@ final public class LocalizationHelper: CustomStringConvertible {
// Replace html tag "<br/>" with "\n"
localizedString = localizedString.replacingOccurrences(of: "<br/>", with: "\n")
// Deal with plurals
if !self.numbers.isEmpty {
localizedString = String(
format: localizedString,
locale: .current,
arguments: self.numbers
)
}
return localizedString
}
@ -260,6 +275,10 @@ public extension String {
func put(key: String, value: CustomStringConvertible) -> LocalizationHelper {
return LocalizationHelper(template: self).put(key: key, value: value)
}
func putNumber(_ number: Int, index: Int = 0) -> LocalizationHelper {
return LocalizationHelper(template: self).putNumber(number, index: index)
}
func localized() -> String {
return LocalizationHelper(template: self).localized()

Loading…
Cancel
Save