From dbd72b3523adbc5e5ed5fec09a3897a3318bb4d7 Mon Sep 17 00:00:00 2001 From: NanoSector Date: Sun, 30 Oct 2022 17:50:15 +0100 Subject: [PATCH 001/598] feat: handle paste event and insert images on the clipboard Signed-off-by: NanoSector --- .../Scene/Compose/ComposeViewController.swift | 29 +++++++++++++++++++ .../View/MetaTextView+PasteExtensions.swift | 29 +++++++++++++++++++ 2 files changed, 58 insertions(+) create mode 100644 Mastodon/Scene/Compose/View/MetaTextView+PasteExtensions.swift diff --git a/Mastodon/Scene/Compose/ComposeViewController.swift b/Mastodon/Scene/Compose/ComposeViewController.swift index f5dfc8ba3..6ca09eba0 100644 --- a/Mastodon/Scene/Compose/ComposeViewController.swift +++ b/Mastodon/Scene/Compose/ComposeViewController.swift @@ -1449,3 +1449,32 @@ extension ComposeViewController { } } + +extension ComposeViewController { + public override func canPerformAction(_ action: Selector, withSender sender: Any?) -> Bool { + + // Enable pasting images + if (action == #selector(UIResponderStandardEditActions.paste(_:))) { + return UIPasteboard.general.hasStrings || UIPasteboard.general.hasImages; + } + + return super.canPerformAction(action, withSender: sender); + } + + override func paste(_ sender: Any?) { + logger.debug("Paste event received") + + // Look for images on the clipboard + if (UIPasteboard.general.hasImages) { + if let images = UIPasteboard.general.images { + viewModel.attachmentServices = viewModel.attachmentServices + images.map({ image in + MastodonAttachmentService( + context: context, + image: image, + initialAuthenticationBox: viewModel.authenticationBox + ) + }) + } + } + } +} diff --git a/Mastodon/Scene/Compose/View/MetaTextView+PasteExtensions.swift b/Mastodon/Scene/Compose/View/MetaTextView+PasteExtensions.swift new file mode 100644 index 000000000..8fe1949af --- /dev/null +++ b/Mastodon/Scene/Compose/View/MetaTextView+PasteExtensions.swift @@ -0,0 +1,29 @@ +// +// MetaTextView+PasteExtensions.swift +// Mastodon +// +// Created by Rick Kerkhof on 30/10/2022. +// + +import Foundation +import MetaTextKit +import UIKit + +extension MetaTextView { + public override func paste(_ sender: Any?) { + super.paste(sender) + + var nextResponder = self.next; + + // Force the event to bubble through ALL responders + // This is a workaround as somewhere down the chain the paste event gets eaten + while (nextResponder != nil) { + if let nextResponder = nextResponder { + if (nextResponder.responds(to: #selector(UIResponderStandardEditActions.paste(_:)))) { + nextResponder.perform(#selector(UIResponderStandardEditActions.paste(_:)), with: sender) + } + } + nextResponder = nextResponder?.next; + } + } +} From 2c2ca419dd1d6bde108bd212a302a49f06ecd017 Mon Sep 17 00:00:00 2001 From: NanoSector Date: Sun, 30 Oct 2022 18:00:45 +0100 Subject: [PATCH 002/598] chore: add project entries Signed-off-by: NanoSector --- Mastodon.xcodeproj/project.pbxproj | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Mastodon.xcodeproj/project.pbxproj b/Mastodon.xcodeproj/project.pbxproj index 4106af7de..9f0a8f44c 100644 --- a/Mastodon.xcodeproj/project.pbxproj +++ b/Mastodon.xcodeproj/project.pbxproj @@ -115,6 +115,7 @@ 62FD27D32893707B00B205C5 /* BookmarkViewController+DataSourceProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 62FD27D22893707B00B205C5 /* BookmarkViewController+DataSourceProvider.swift */; }; 62FD27D52893708A00B205C5 /* BookmarkViewModel+Diffable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 62FD27D42893708A00B205C5 /* BookmarkViewModel+Diffable.swift */; }; 87FFDA5D898A5C42ADCB35E7 /* Pods_Mastodon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A4ABE34829701A4496C5BB64 /* Pods_Mastodon.framework */; }; + CD91FB31290EDA6F00BB9463 /* MetaTextView+PasteExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD91FB30290EDA6F00BB9463 /* MetaTextView+PasteExtensions.swift */; }; DB0009A626AEE5DC009B9D2D /* Intents.intentdefinition in Sources */ = {isa = PBXBuildFile; fileRef = DB0009A926AEE5DC009B9D2D /* Intents.intentdefinition */; settings = {ATTRIBUTES = (codegen, ); }; }; DB0009A726AEE5DC009B9D2D /* Intents.intentdefinition in Sources */ = {isa = PBXBuildFile; fileRef = DB0009A926AEE5DC009B9D2D /* Intents.intentdefinition */; }; DB0140CF25C42AEE00F9F3CF /* OSLog.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB0140CE25C42AEE00F9F3CF /* OSLog.swift */; }; @@ -858,6 +859,7 @@ BB482D32A7B9825BF5327C4F /* Pods-Mastodon-MastodonUITests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Mastodon-MastodonUITests.release.xcconfig"; path = "Target Support Files/Pods-Mastodon-MastodonUITests/Pods-Mastodon-MastodonUITests.release.xcconfig"; sourceTree = ""; }; BD7598A87F4497045EDEF252 /* Pods-Mastodon.asdk - release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Mastodon.asdk - release.xcconfig"; path = "Target Support Files/Pods-Mastodon/Pods-Mastodon.asdk - release.xcconfig"; sourceTree = ""; }; C3789232A52F43529CA67E95 /* Pods-MastodonIntent.asdk - debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MastodonIntent.asdk - debug.xcconfig"; path = "Target Support Files/Pods-MastodonIntent/Pods-MastodonIntent.asdk - debug.xcconfig"; sourceTree = ""; }; + CD91FB30290EDA6F00BB9463 /* MetaTextView+PasteExtensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "MetaTextView+PasteExtensions.swift"; sourceTree = ""; }; CD92E0F10BDE4FE7C4B999F2 /* Pods_MastodonTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_MastodonTests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; D7D7CF93E262178800077512 /* Pods-Mastodon-AppShared.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Mastodon-AppShared.debug.xcconfig"; path = "Target Support Files/Pods-Mastodon-AppShared/Pods-Mastodon-AppShared.debug.xcconfig"; sourceTree = ""; }; DB0009A826AEE5DC009B9D2D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.intentdefinition; name = Base; path = Base.lproj/Intents.intentdefinition; sourceTree = ""; }; @@ -2493,6 +2495,7 @@ DB44767A260B3B8C00B66B82 /* CustomEmojiPickerInputView.swift */, DB221B15260C395900AEFE46 /* CustomEmojiPickerInputViewModel.swift */, DBC7A671260C897100E57475 /* StatusContentWarningEditorView.swift */, + CD91FB30290EDA6F00BB9463 /* MetaTextView+PasteExtensions.swift */, ); path = View; sourceTree = ""; @@ -4203,6 +4206,7 @@ DB49A61F25FF32AA00B98345 /* EmojiService+CustomEmojiViewModel.swift in Sources */, 6213AF5A28939C8400BCADB6 /* BookmarkViewModel.swift in Sources */, 5B24BBDB262DB14800A9381B /* ReportStatusViewModel+Diffable.swift in Sources */, + CD91FB31290EDA6F00BB9463 /* MetaTextView+PasteExtensions.swift in Sources */, DB4F0968269ED8AD00D62E92 /* SearchHistoryTableHeaderView.swift in Sources */, 0FB3D2FE25E4CB6400AAD544 /* OnboardingHeadlineTableViewCell.swift in Sources */, 5DA732CC2629CEF500A92342 /* UIView+Remove.swift in Sources */, From 9d7614a4037f98f26cb1bc0c5bf461c501b9cb2f Mon Sep 17 00:00:00 2001 From: NanoSector Date: Tue, 1 Nov 2022 19:55:51 +0100 Subject: [PATCH 003/598] feat: partially restore image paste handler functionality after SwiftUI rewrite Signed-off-by: NanoSector --- .../Scene/Compose/ComposeViewController.swift | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/Mastodon/Scene/Compose/ComposeViewController.swift b/Mastodon/Scene/Compose/ComposeViewController.swift index bf9145d6c..42945514d 100644 --- a/Mastodon/Scene/Compose/ComposeViewController.swift +++ b/Mastodon/Scene/Compose/ComposeViewController.swift @@ -1212,3 +1212,33 @@ extension ComposeViewController: UIAdaptivePresentationControllerDelegate { // } // //} + +extension ComposeViewController { + public override func canPerformAction(_ action: Selector, withSender sender: Any?) -> Bool { + + // Enable pasting images + if (action == #selector(UIResponderStandardEditActions.paste(_:))) { + return UIPasteboard.general.hasStrings || UIPasteboard.general.hasImages; + } + + return super.canPerformAction(action, withSender: sender); + } + + override func paste(_ sender: Any?) { + logger.debug("Paste event received") + + // Look for images on the clipboard + if (UIPasteboard.general.hasImages) { + if let images = UIPasteboard.general.images { + logger.warning("Got image paste event, however attachments are not yet re-implemented."); +// viewModel.attachmentServices = viewModel.attachmentServices + images.map({ image in +// MastodonAttachmentService( +// context: context, +// image: image, +// initialAuthenticationBox: viewModel.authenticationBox +// ) +// }) + } + } + } +} From fe98dfe4cae898558e5cc007457333170b09c69a Mon Sep 17 00:00:00 2001 From: Jed Fox Date: Sun, 6 Nov 2022 20:01:30 -0500 Subject: [PATCH 004/598] DragIndicatorView now handles a11y itself MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit …and also gains the button trait …also the escape gesture now works! --- .../Scene/Account/AccountViewController.swift | 17 ++++++----------- .../Scene/Account/View/DragIndicatorView.swift | 18 +++++++++++++----- 2 files changed, 19 insertions(+), 16 deletions(-) diff --git a/Mastodon/Scene/Account/AccountViewController.swift b/Mastodon/Scene/Account/AccountViewController.swift index e25c75b01..7a0e529cc 100644 --- a/Mastodon/Scene/Account/AccountViewController.swift +++ b/Mastodon/Scene/Account/AccountViewController.swift @@ -34,7 +34,9 @@ final class AccountListViewController: UIViewController, NeedsDependency { return barButtonItem }() - let dragIndicatorView = DragIndicatorView() + lazy var dragIndicatorView = DragIndicatorView { [weak self] in + self?.dismiss(animated: true, completion: nil) + } var hasLoaded = false private(set) lazy var tableView: UITableView = { @@ -130,14 +132,6 @@ extension AccountListViewController { self.panModalTransition(to: .shortForm) } .store(in: &disposeBag) - - if UIAccessibility.isVoiceOverRunning { - let dragIndicatorTapGestureRecognizer = UITapGestureRecognizer.singleTapGestureRecognizer - dragIndicatorView.addGestureRecognizer(dragIndicatorTapGestureRecognizer) - dragIndicatorTapGestureRecognizer.addTarget(self, action: #selector(AccountListViewController.dragIndicatorTapGestureRecognizerHandler(_:))) - dragIndicatorView.isAccessibilityElement = true - dragIndicatorView.accessibilityLabel = L10n.Scene.AccountList.dismissAccountSwitcher - } } private func setupBackgroundColor(theme: Theme) { @@ -160,10 +154,11 @@ extension AccountListViewController { logger.debug("\((#file as NSString).lastPathComponent, privacy: .public)[\(#line, privacy: .public)], \(#function, privacy: .public)") _ = coordinator.present(scene: .welcome, from: self, transition: .modal(animated: true, completion: nil)) } - - @objc private func dragIndicatorTapGestureRecognizerHandler(_ sender: UITapGestureRecognizer) { + + override func accessibilityPerformEscape() -> Bool { logger.log(level: .debug, "\((#file as NSString).lastPathComponent, privacy: .public)[\(#line, privacy: .public)], \(#function, privacy: .public)") dismiss(animated: true, completion: nil) + return true } } diff --git a/Mastodon/Scene/Account/View/DragIndicatorView.swift b/Mastodon/Scene/Account/View/DragIndicatorView.swift index 9e0ab77d5..a04d9cd8c 100644 --- a/Mastodon/Scene/Account/View/DragIndicatorView.swift +++ b/Mastodon/Scene/Account/View/DragIndicatorView.swift @@ -15,17 +15,17 @@ final class DragIndicatorView: UIView { let barView = UIView() let separatorLine = UIView.separatorLine + let onDismiss: () -> Void - override init(frame: CGRect) { - super.init(frame: frame) + init(onDismiss: @escaping () -> Void) { + self.onDismiss = onDismiss + super.init(frame: .zero) _init() } required init?(coder: NSCoder) { - super.init(coder: coder) - _init() + fatalError("init(coder:) is not supported") } - } extension DragIndicatorView { @@ -52,6 +52,14 @@ extension DragIndicatorView { separatorLine.bottomAnchor.constraint(equalTo: bottomAnchor), separatorLine.heightAnchor.constraint(equalToConstant: UIView.separatorLineHeight(of: self)), ]) + + isAccessibilityElement = true + accessibilityTraits = .button + accessibilityLabel = L10n.Scene.AccountList.dismissAccountSwitcher } + override func accessibilityActivate() -> Bool { + self.onDismiss() + return true + } } From 547129ec95a04cf1c5d75ba1bdfab594a8d22208 Mon Sep 17 00:00:00 2001 From: Jed Fox Date: Sun, 6 Nov 2022 20:09:55 -0500 Subject: [PATCH 005/598] Hide the avatars in the account list from VO --- Mastodon/Scene/Account/Cell/AccountListTableViewCell.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/Mastodon/Scene/Account/Cell/AccountListTableViewCell.swift b/Mastodon/Scene/Account/Cell/AccountListTableViewCell.swift index 66f49efe8..f0673293a 100644 --- a/Mastodon/Scene/Account/Cell/AccountListTableViewCell.swift +++ b/Mastodon/Scene/Account/Cell/AccountListTableViewCell.swift @@ -69,6 +69,7 @@ extension AccountListTableViewCell { ]) avatarButton.setContentHuggingPriority(.defaultLow, for: .horizontal) avatarButton.setContentHuggingPriority(.defaultLow, for: .vertical) + avatarButton.isAccessibilityElement = false let labelContainerStackView = UIStackView() labelContainerStackView.axis = .vertical From 6c6508cdfb9920fbfeca1ec84216b12421d62795 Mon Sep 17 00:00:00 2001 From: Jed Fox Date: Sun, 6 Nov 2022 20:10:10 -0500 Subject: [PATCH 006/598] Mark account list rows as buttons --- Mastodon/Scene/Account/Cell/AccountListTableViewCell.swift | 2 ++ Mastodon/Scene/Account/Cell/AddAccountTableViewCell.swift | 2 ++ 2 files changed, 4 insertions(+) diff --git a/Mastodon/Scene/Account/Cell/AccountListTableViewCell.swift b/Mastodon/Scene/Account/Cell/AccountListTableViewCell.swift index f0673293a..cd214f2c7 100644 --- a/Mastodon/Scene/Account/Cell/AccountListTableViewCell.swift +++ b/Mastodon/Scene/Account/Cell/AccountListTableViewCell.swift @@ -125,6 +125,8 @@ extension AccountListTableViewCell { badgeButton.setBadge(number: 0) checkmarkImageView.isHidden = true + + accessibilityTraits.insert(.button) } } diff --git a/Mastodon/Scene/Account/Cell/AddAccountTableViewCell.swift b/Mastodon/Scene/Account/Cell/AddAccountTableViewCell.swift index 3ff3066a2..bc47aef43 100644 --- a/Mastodon/Scene/Account/Cell/AddAccountTableViewCell.swift +++ b/Mastodon/Scene/Account/Cell/AddAccountTableViewCell.swift @@ -108,6 +108,8 @@ extension AddAccountTableViewCell { separatorLine.bottomAnchor.constraint(equalTo: contentView.bottomAnchor), separatorLine.heightAnchor.constraint(equalToConstant: UIView.separatorLineHeight(of: contentView)), ]) + + accessibilityTraits.insert(.button) } } From c3d7357456af98a54e642042bb8d7da1be96db00 Mon Sep 17 00:00:00 2001 From: Jed Fox Date: Sun, 6 Nov 2022 20:14:52 -0500 Subject: [PATCH 007/598] Try to fix strings for a11y.plural.count.unread.notification --- Localization/Localizable.stringsdict | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Localization/Localizable.stringsdict b/Localization/Localizable.stringsdict index 051bb50ef..93d566f70 100644 --- a/Localization/Localizable.stringsdict +++ b/Localization/Localizable.stringsdict @@ -13,15 +13,15 @@ NSStringFormatValueTypeKey ld zero - no unread notification + no unread notifications one 1 unread notification few %ld unread notifications many - %ld unread notification + %ld unread notifications other - %ld unread notification + %ld unread notifications a11y.plural.count.input_limit_exceeds From fd31e08089141493094ae7f00790fc144a086f5f Mon Sep 17 00:00:00 2001 From: Jed Fox Date: Sun, 6 Nov 2022 20:15:09 -0500 Subject: [PATCH 008/598] Clarify separation between name/username/badge --- Mastodon/Scene/Account/AccountListViewModel.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mastodon/Scene/Account/AccountListViewModel.swift b/Mastodon/Scene/Account/AccountListViewModel.swift index e0aaf97fc..75797fd47 100644 --- a/Mastodon/Scene/Account/AccountListViewModel.swift +++ b/Mastodon/Scene/Account/AccountListViewModel.swift @@ -166,7 +166,7 @@ extension AccountListViewModel { cell.badgeButton.accessibilityLabel ] .compactMap { $0 } - .joined(separator: " ") + .joined(separator: ", ") } } From d489943b45991025a6e3f4b78613f629294e0493 Mon Sep 17 00:00:00 2001 From: Jed Fox Date: Sun, 6 Nov 2022 20:22:06 -0500 Subject: [PATCH 009/598] Improve ComposeContentView.avatarView label --- .../Scene/ComposeContent/View/ComposeContentView.swift | 3 +++ 1 file changed, 3 insertions(+) diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentView.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentView.swift index 25584848a..56ddbbb7f 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentView.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentView.swift @@ -147,6 +147,9 @@ extension ComposeContentView { } Spacer() } + .accessibilityElement(children: .ignore) + // TODO: i18n + .accessibilityLabel("Posting as \(viewModel.name.string), \(viewModel.username)") } } From 7a3b9205e5f242a3ed69b11ba0399eea7d9896e5 Mon Sep 17 00:00:00 2001 From: Jed Fox Date: Sun, 6 Nov 2022 20:49:12 -0500 Subject: [PATCH 010/598] Add missing labels to compose toolbar --- .../ComposeContentToolbarView+ViewModel.swift | 15 +++++++++++++++ .../View/ComposeContentToolbarView.swift | 2 ++ 2 files changed, 17 insertions(+) diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentToolbarView+ViewModel.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentToolbarView+ViewModel.swift index 4a34c77d4..fefc0821f 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentToolbarView+ViewModel.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentToolbarView+ViewModel.swift @@ -120,4 +120,19 @@ extension ComposeContentToolbarView.ViewModel { return action.inactiveImage } } + + func label(for action: Action) -> String { + switch action { + case .attachment: + return L10n.Scene.Compose.Accessibility.appendAttachment + case .poll: + return isPollActive ? L10n.Scene.Compose.Accessibility.removePoll : L10n.Scene.Compose.Accessibility.appendPoll + case .emoji: + return L10n.Scene.Compose.Accessibility.customEmojiPicker + case .contentWarning: + return isContentWarningActive ? L10n.Scene.Compose.Accessibility.disableContentWarning : L10n.Scene.Compose.Accessibility.enableContentWarning + case .visibility: + return L10n.Scene.Compose.Accessibility.postVisibilityMenu + } + } } diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentToolbarView.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentToolbarView.swift index 52026c636..aba52ff9a 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentToolbarView.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentToolbarView.swift @@ -61,6 +61,7 @@ struct ComposeContentToolbarView: View { } } label: { label(for: viewModel.visibility.image) + .accessibilityLabel(L10n.Scene.Compose.Keyboard.selectVisibilityEntry(viewModel.visibility.title)) } .frame(width: 48, height: 48) default: @@ -100,6 +101,7 @@ extension ComposeContentToolbarView { Image(uiImage: viewModel.image(for: action)) .foregroundColor(Color(Asset.Scene.Compose.buttonTint.color)) .frame(width: 24, height: 24, alignment: .center) + .accessibilityLabel(viewModel.label(for: action)) } func label(for image: UIImage) -> some View { From 7ac9e7c564095eb82b69e166e332452e12449a97 Mon Sep 17 00:00:00 2001 From: Jed Fox Date: Sun, 6 Nov 2022 20:51:13 -0500 Subject: [PATCH 011/598] Add description to compose content toolbar container --- .../Scene/ComposeContent/View/ComposeContentToolbarView.swift | 3 +++ 1 file changed, 3 insertions(+) diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentToolbarView.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentToolbarView.swift index aba52ff9a..53058cc12 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentToolbarView.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentToolbarView.swift @@ -92,6 +92,9 @@ struct ComposeContentToolbarView: View { .padding(.trailing, 16) .frame(height: ComposeContentToolbarView.toolbarHeight) .background(Color(viewModel.backgroundColor)) + .accessibilityElement(children: .contain) + // TODO: i18n + .accessibilityLabel("Post Options") } } From 022f8c11151801ea3faf2e77eddf60d4a6ee23dc Mon Sep 17 00:00:00 2001 From: Jed Fox Date: Sun, 6 Nov 2022 20:51:43 -0500 Subject: [PATCH 012/598] Clarify meaning of character counter --- .../Scene/ComposeContent/View/ComposeContentToolbarView.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentToolbarView.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentToolbarView.swift index 53058cc12..8c6d84a28 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentToolbarView.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentToolbarView.swift @@ -87,6 +87,8 @@ struct ComposeContentToolbarView: View { Text("\(remains)") .foregroundColor(Color(isOverflow ? UIColor.systemRed : UIColor.secondaryLabel)) .font(.system(size: isOverflow ? 18 : 16, weight: isOverflow ? .medium : .regular)) + // TODO: i18n + .accessibilityLabel("\(remains) characters left") } .padding(.leading, 4) // 4 + 12 = 16 .padding(.trailing, 16) From 549739b6cb50433878ef4586508ae6f52007b7ee Mon Sep 17 00:00:00 2001 From: Jed Fox Date: Mon, 7 Nov 2022 06:26:20 -0500 Subject: [PATCH 013/598] Add new strings to Localization folder --- Localization/Localizable.stringsdict | 20 +++++++++++++++++++ Localization/app.json | 6 ++++-- .../View/ComposeContentToolbarView.swift | 4 ++-- .../View/ComposeContentView.swift | 4 ++-- 4 files changed, 28 insertions(+), 6 deletions(-) diff --git a/Localization/Localizable.stringsdict b/Localization/Localizable.stringsdict index 051bb50ef..46b79deb2 100644 --- a/Localization/Localizable.stringsdict +++ b/Localization/Localizable.stringsdict @@ -68,6 +68,26 @@ %ld characters + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + %#@character_count@ + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + zero + no characters left + one + 1 character left + few + %ld characters left + many + %ld characters left + other + %ld characters left + + plural.count.followed_by_and_mutual NSStringLocalizedFormatKey diff --git a/Localization/app.json b/Localization/app.json index a965b23ae..45ff94363 100644 --- a/Localization/app.json +++ b/Localization/app.json @@ -405,7 +405,9 @@ "custom_emoji_picker": "Custom Emoji Picker", "enable_content_warning": "Enable Content Warning", "disable_content_warning": "Disable Content Warning", - "post_visibility_menu": "Post Visibility Menu" + "post_visibility_menu": "Post Visibility Menu", + "post_options": "Post Options", + "posting_as": "Posting as %s" }, "keyboard": { "discard_post": "Discard Post", @@ -686,4 +688,4 @@ "accessibility_hint": "Double tap to dismiss this wizard" } } -} \ No newline at end of file +} diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentToolbarView.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentToolbarView.swift index 8c6d84a28..ac1a56b20 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentToolbarView.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentToolbarView.swift @@ -87,7 +87,7 @@ struct ComposeContentToolbarView: View { Text("\(remains)") .foregroundColor(Color(isOverflow ? UIColor.systemRed : UIColor.secondaryLabel)) .font(.system(size: isOverflow ? 18 : 16, weight: isOverflow ? .medium : .regular)) - // TODO: i18n + // TODO: i18n (a11y.plural.count.characters_left) .accessibilityLabel("\(remains) characters left") } .padding(.leading, 4) // 4 + 12 = 16 @@ -95,7 +95,7 @@ struct ComposeContentToolbarView: View { .frame(height: ComposeContentToolbarView.toolbarHeight) .background(Color(viewModel.backgroundColor)) .accessibilityElement(children: .contain) - // TODO: i18n + // TODO: i18n (scene.compose.accessibility.post_options) .accessibilityLabel("Post Options") } diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentView.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentView.swift index 56ddbbb7f..b48f4e060 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentView.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentView.swift @@ -148,8 +148,8 @@ extension ComposeContentView { Spacer() } .accessibilityElement(children: .ignore) - // TODO: i18n - .accessibilityLabel("Posting as \(viewModel.name.string), \(viewModel.username)") + // TODO: i18n (scene.compose.accessibility.posting_as) + .accessibilityLabel("Posting as \([viewModel.name.string, viewModel.username].joined(separator: ", "))") } } From 39e8c286e936c4b1fbd2473ac1aa64769f03b170 Mon Sep 17 00:00:00 2001 From: Jordan Kay Date: Mon, 7 Nov 2022 10:52:32 -0500 Subject: [PATCH 014/598] Fix spelling of directory name Diffiable > Diffable --- Mastodon.xcodeproj/project.pbxproj | 6 +++--- .../Account/SelectedAccountItem.swift | 0 .../Account/SelectedAccountSection.swift | 0 .../{Diffiable => Diffable}/Discovery/DiscoveryItem.swift | 0 .../Discovery/DiscoverySection.swift | 0 .../Notification/NotificationItem.swift | 0 .../Notification/NotificationSection.swift | 0 .../Onboarding/CategoryPickerItem.swift | 0 .../Onboarding/CategoryPickerSection.swift | 0 .../{Diffiable => Diffable}/Onboarding/PickServerItem.swift | 0 .../Onboarding/PickServerSection.swift | 0 .../{Diffiable => Diffable}/Onboarding/RegisterItem.swift | 0 .../Onboarding/RegisterSection.swift | 0 .../{Diffiable => Diffable}/Onboarding/ServerRuleItem.swift | 0 .../Onboarding/ServerRuleSection.swift | 0 .../{Diffiable => Diffable}/Profile/ProfileFieldItem.swift | 0 .../Profile/ProfileFieldSection.swift | 0 .../RecommandAccount/RecommendAccountItem.swift | 0 .../RecommandAccount/RecommendAccountSection.swift | 0 Mastodon/{Diffiable => Diffable}/Report/ReportItem.swift | 0 Mastodon/{Diffiable => Diffable}/Report/ReportSection.swift | 0 .../{Diffiable => Diffable}/Search/SearchHistoryItem.swift | 0 .../Search/SearchHistorySection.swift | 0 Mastodon/{Diffiable => Diffable}/Search/SearchItem.swift | 0 .../{Diffiable => Diffable}/Search/SearchResultItem.swift | 0 .../Search/SearchResultSection.swift | 0 Mastodon/{Diffiable => Diffable}/Search/SearchSection.swift | 0 .../{Diffiable => Diffable}/Settings/SettingsItem.swift | 0 .../{Diffiable => Diffable}/Settings/SettingsSection.swift | 0 Mastodon/{Diffiable => Diffable}/Status/StatusItem.swift | 0 Mastodon/{Diffiable => Diffable}/Status/StatusSection.swift | 0 Mastodon/{Diffiable => Diffable}/User/UserItem.swift | 0 Mastodon/{Diffiable => Diffable}/User/UserSection.swift | 0 33 files changed, 3 insertions(+), 3 deletions(-) rename Mastodon/{Diffiable => Diffable}/Account/SelectedAccountItem.swift (100%) rename Mastodon/{Diffiable => Diffable}/Account/SelectedAccountSection.swift (100%) rename Mastodon/{Diffiable => Diffable}/Discovery/DiscoveryItem.swift (100%) rename Mastodon/{Diffiable => Diffable}/Discovery/DiscoverySection.swift (100%) rename Mastodon/{Diffiable => Diffable}/Notification/NotificationItem.swift (100%) rename Mastodon/{Diffiable => Diffable}/Notification/NotificationSection.swift (100%) rename Mastodon/{Diffiable => Diffable}/Onboarding/CategoryPickerItem.swift (100%) rename Mastodon/{Diffiable => Diffable}/Onboarding/CategoryPickerSection.swift (100%) rename Mastodon/{Diffiable => Diffable}/Onboarding/PickServerItem.swift (100%) rename Mastodon/{Diffiable => Diffable}/Onboarding/PickServerSection.swift (100%) rename Mastodon/{Diffiable => Diffable}/Onboarding/RegisterItem.swift (100%) rename Mastodon/{Diffiable => Diffable}/Onboarding/RegisterSection.swift (100%) rename Mastodon/{Diffiable => Diffable}/Onboarding/ServerRuleItem.swift (100%) rename Mastodon/{Diffiable => Diffable}/Onboarding/ServerRuleSection.swift (100%) rename Mastodon/{Diffiable => Diffable}/Profile/ProfileFieldItem.swift (100%) rename Mastodon/{Diffiable => Diffable}/Profile/ProfileFieldSection.swift (100%) rename Mastodon/{Diffiable => Diffable}/RecommandAccount/RecommendAccountItem.swift (100%) rename Mastodon/{Diffiable => Diffable}/RecommandAccount/RecommendAccountSection.swift (100%) rename Mastodon/{Diffiable => Diffable}/Report/ReportItem.swift (100%) rename Mastodon/{Diffiable => Diffable}/Report/ReportSection.swift (100%) rename Mastodon/{Diffiable => Diffable}/Search/SearchHistoryItem.swift (100%) rename Mastodon/{Diffiable => Diffable}/Search/SearchHistorySection.swift (100%) rename Mastodon/{Diffiable => Diffable}/Search/SearchItem.swift (100%) rename Mastodon/{Diffiable => Diffable}/Search/SearchResultItem.swift (100%) rename Mastodon/{Diffiable => Diffable}/Search/SearchResultSection.swift (100%) rename Mastodon/{Diffiable => Diffable}/Search/SearchSection.swift (100%) rename Mastodon/{Diffiable => Diffable}/Settings/SettingsItem.swift (100%) rename Mastodon/{Diffiable => Diffable}/Settings/SettingsSection.swift (100%) rename Mastodon/{Diffiable => Diffable}/Status/StatusItem.swift (100%) rename Mastodon/{Diffiable => Diffable}/Status/StatusSection.swift (100%) rename Mastodon/{Diffiable => Diffable}/User/UserItem.swift (100%) rename Mastodon/{Diffiable => Diffable}/User/UserSection.swift (100%) diff --git a/Mastodon.xcodeproj/project.pbxproj b/Mastodon.xcodeproj/project.pbxproj index 68aae2d4e..d9a0cb96f 100644 --- a/Mastodon.xcodeproj/project.pbxproj +++ b/Mastodon.xcodeproj/project.pbxproj @@ -1342,7 +1342,7 @@ path = Protocol; sourceTree = ""; }; - 2D76319C25C151DE00929FB9 /* Diffiable */ = { + 2D76319C25C151DE00929FB9 /* Diffable */ = { isa = PBXGroup; children = ( DB4F097826A039B400D62E92 /* Onboarding */, @@ -1357,7 +1357,7 @@ DB3E6FE52806A5BA00B035AE /* Discovery */, DB0617FA27855B660030EE79 /* Settings */, ); - path = Diffiable; + path = Diffable; sourceTree = ""; }; 2D7631A425C1532200929FB9 /* Share */ = { @@ -1762,7 +1762,7 @@ children = ( DB89BA1025C10FF5008580ED /* Mastodon.entitlements */, DB427DE325BAA00100D1B89D /* Info.plist */, - 2D76319C25C151DE00929FB9 /* Diffiable */, + 2D76319C25C151DE00929FB9 /* Diffable */, DB8AF55525C1379F002E6C99 /* Scene */, DB8AF54125C13647002E6C99 /* Coordinator */, DB8AF56225C138BC002E6C99 /* Extension */, diff --git a/Mastodon/Diffiable/Account/SelectedAccountItem.swift b/Mastodon/Diffable/Account/SelectedAccountItem.swift similarity index 100% rename from Mastodon/Diffiable/Account/SelectedAccountItem.swift rename to Mastodon/Diffable/Account/SelectedAccountItem.swift diff --git a/Mastodon/Diffiable/Account/SelectedAccountSection.swift b/Mastodon/Diffable/Account/SelectedAccountSection.swift similarity index 100% rename from Mastodon/Diffiable/Account/SelectedAccountSection.swift rename to Mastodon/Diffable/Account/SelectedAccountSection.swift diff --git a/Mastodon/Diffiable/Discovery/DiscoveryItem.swift b/Mastodon/Diffable/Discovery/DiscoveryItem.swift similarity index 100% rename from Mastodon/Diffiable/Discovery/DiscoveryItem.swift rename to Mastodon/Diffable/Discovery/DiscoveryItem.swift diff --git a/Mastodon/Diffiable/Discovery/DiscoverySection.swift b/Mastodon/Diffable/Discovery/DiscoverySection.swift similarity index 100% rename from Mastodon/Diffiable/Discovery/DiscoverySection.swift rename to Mastodon/Diffable/Discovery/DiscoverySection.swift diff --git a/Mastodon/Diffiable/Notification/NotificationItem.swift b/Mastodon/Diffable/Notification/NotificationItem.swift similarity index 100% rename from Mastodon/Diffiable/Notification/NotificationItem.swift rename to Mastodon/Diffable/Notification/NotificationItem.swift diff --git a/Mastodon/Diffiable/Notification/NotificationSection.swift b/Mastodon/Diffable/Notification/NotificationSection.swift similarity index 100% rename from Mastodon/Diffiable/Notification/NotificationSection.swift rename to Mastodon/Diffable/Notification/NotificationSection.swift diff --git a/Mastodon/Diffiable/Onboarding/CategoryPickerItem.swift b/Mastodon/Diffable/Onboarding/CategoryPickerItem.swift similarity index 100% rename from Mastodon/Diffiable/Onboarding/CategoryPickerItem.swift rename to Mastodon/Diffable/Onboarding/CategoryPickerItem.swift diff --git a/Mastodon/Diffiable/Onboarding/CategoryPickerSection.swift b/Mastodon/Diffable/Onboarding/CategoryPickerSection.swift similarity index 100% rename from Mastodon/Diffiable/Onboarding/CategoryPickerSection.swift rename to Mastodon/Diffable/Onboarding/CategoryPickerSection.swift diff --git a/Mastodon/Diffiable/Onboarding/PickServerItem.swift b/Mastodon/Diffable/Onboarding/PickServerItem.swift similarity index 100% rename from Mastodon/Diffiable/Onboarding/PickServerItem.swift rename to Mastodon/Diffable/Onboarding/PickServerItem.swift diff --git a/Mastodon/Diffiable/Onboarding/PickServerSection.swift b/Mastodon/Diffable/Onboarding/PickServerSection.swift similarity index 100% rename from Mastodon/Diffiable/Onboarding/PickServerSection.swift rename to Mastodon/Diffable/Onboarding/PickServerSection.swift diff --git a/Mastodon/Diffiable/Onboarding/RegisterItem.swift b/Mastodon/Diffable/Onboarding/RegisterItem.swift similarity index 100% rename from Mastodon/Diffiable/Onboarding/RegisterItem.swift rename to Mastodon/Diffable/Onboarding/RegisterItem.swift diff --git a/Mastodon/Diffiable/Onboarding/RegisterSection.swift b/Mastodon/Diffable/Onboarding/RegisterSection.swift similarity index 100% rename from Mastodon/Diffiable/Onboarding/RegisterSection.swift rename to Mastodon/Diffable/Onboarding/RegisterSection.swift diff --git a/Mastodon/Diffiable/Onboarding/ServerRuleItem.swift b/Mastodon/Diffable/Onboarding/ServerRuleItem.swift similarity index 100% rename from Mastodon/Diffiable/Onboarding/ServerRuleItem.swift rename to Mastodon/Diffable/Onboarding/ServerRuleItem.swift diff --git a/Mastodon/Diffiable/Onboarding/ServerRuleSection.swift b/Mastodon/Diffable/Onboarding/ServerRuleSection.swift similarity index 100% rename from Mastodon/Diffiable/Onboarding/ServerRuleSection.swift rename to Mastodon/Diffable/Onboarding/ServerRuleSection.swift diff --git a/Mastodon/Diffiable/Profile/ProfileFieldItem.swift b/Mastodon/Diffable/Profile/ProfileFieldItem.swift similarity index 100% rename from Mastodon/Diffiable/Profile/ProfileFieldItem.swift rename to Mastodon/Diffable/Profile/ProfileFieldItem.swift diff --git a/Mastodon/Diffiable/Profile/ProfileFieldSection.swift b/Mastodon/Diffable/Profile/ProfileFieldSection.swift similarity index 100% rename from Mastodon/Diffiable/Profile/ProfileFieldSection.swift rename to Mastodon/Diffable/Profile/ProfileFieldSection.swift diff --git a/Mastodon/Diffiable/RecommandAccount/RecommendAccountItem.swift b/Mastodon/Diffable/RecommandAccount/RecommendAccountItem.swift similarity index 100% rename from Mastodon/Diffiable/RecommandAccount/RecommendAccountItem.swift rename to Mastodon/Diffable/RecommandAccount/RecommendAccountItem.swift diff --git a/Mastodon/Diffiable/RecommandAccount/RecommendAccountSection.swift b/Mastodon/Diffable/RecommandAccount/RecommendAccountSection.swift similarity index 100% rename from Mastodon/Diffiable/RecommandAccount/RecommendAccountSection.swift rename to Mastodon/Diffable/RecommandAccount/RecommendAccountSection.swift diff --git a/Mastodon/Diffiable/Report/ReportItem.swift b/Mastodon/Diffable/Report/ReportItem.swift similarity index 100% rename from Mastodon/Diffiable/Report/ReportItem.swift rename to Mastodon/Diffable/Report/ReportItem.swift diff --git a/Mastodon/Diffiable/Report/ReportSection.swift b/Mastodon/Diffable/Report/ReportSection.swift similarity index 100% rename from Mastodon/Diffiable/Report/ReportSection.swift rename to Mastodon/Diffable/Report/ReportSection.swift diff --git a/Mastodon/Diffiable/Search/SearchHistoryItem.swift b/Mastodon/Diffable/Search/SearchHistoryItem.swift similarity index 100% rename from Mastodon/Diffiable/Search/SearchHistoryItem.swift rename to Mastodon/Diffable/Search/SearchHistoryItem.swift diff --git a/Mastodon/Diffiable/Search/SearchHistorySection.swift b/Mastodon/Diffable/Search/SearchHistorySection.swift similarity index 100% rename from Mastodon/Diffiable/Search/SearchHistorySection.swift rename to Mastodon/Diffable/Search/SearchHistorySection.swift diff --git a/Mastodon/Diffiable/Search/SearchItem.swift b/Mastodon/Diffable/Search/SearchItem.swift similarity index 100% rename from Mastodon/Diffiable/Search/SearchItem.swift rename to Mastodon/Diffable/Search/SearchItem.swift diff --git a/Mastodon/Diffiable/Search/SearchResultItem.swift b/Mastodon/Diffable/Search/SearchResultItem.swift similarity index 100% rename from Mastodon/Diffiable/Search/SearchResultItem.swift rename to Mastodon/Diffable/Search/SearchResultItem.swift diff --git a/Mastodon/Diffiable/Search/SearchResultSection.swift b/Mastodon/Diffable/Search/SearchResultSection.swift similarity index 100% rename from Mastodon/Diffiable/Search/SearchResultSection.swift rename to Mastodon/Diffable/Search/SearchResultSection.swift diff --git a/Mastodon/Diffiable/Search/SearchSection.swift b/Mastodon/Diffable/Search/SearchSection.swift similarity index 100% rename from Mastodon/Diffiable/Search/SearchSection.swift rename to Mastodon/Diffable/Search/SearchSection.swift diff --git a/Mastodon/Diffiable/Settings/SettingsItem.swift b/Mastodon/Diffable/Settings/SettingsItem.swift similarity index 100% rename from Mastodon/Diffiable/Settings/SettingsItem.swift rename to Mastodon/Diffable/Settings/SettingsItem.swift diff --git a/Mastodon/Diffiable/Settings/SettingsSection.swift b/Mastodon/Diffable/Settings/SettingsSection.swift similarity index 100% rename from Mastodon/Diffiable/Settings/SettingsSection.swift rename to Mastodon/Diffable/Settings/SettingsSection.swift diff --git a/Mastodon/Diffiable/Status/StatusItem.swift b/Mastodon/Diffable/Status/StatusItem.swift similarity index 100% rename from Mastodon/Diffiable/Status/StatusItem.swift rename to Mastodon/Diffable/Status/StatusItem.swift diff --git a/Mastodon/Diffiable/Status/StatusSection.swift b/Mastodon/Diffable/Status/StatusSection.swift similarity index 100% rename from Mastodon/Diffiable/Status/StatusSection.swift rename to Mastodon/Diffable/Status/StatusSection.swift diff --git a/Mastodon/Diffiable/User/UserItem.swift b/Mastodon/Diffable/User/UserItem.swift similarity index 100% rename from Mastodon/Diffiable/User/UserItem.swift rename to Mastodon/Diffable/User/UserItem.swift diff --git a/Mastodon/Diffiable/User/UserSection.swift b/Mastodon/Diffable/User/UserSection.swift similarity index 100% rename from Mastodon/Diffiable/User/UserSection.swift rename to Mastodon/Diffable/User/UserSection.swift From f9daeea4d3ad66a5387493b67682c4e27396d2bf Mon Sep 17 00:00:00 2001 From: Jed Fox Date: Mon, 7 Nov 2022 13:32:15 -0500 Subject: [PATCH 015/598] =?UTF-8?q?Add=20a=20custom=20action=20for=20?= =?UTF-8?q?=E2=80=9Cswitch=20accounts=E2=80=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Localization/app.json | 6 ++-- .../Root/ContentSplitViewController.swift | 1 + .../Root/MainTab/MainTabBarController.swift | 30 ++++++++++++------- .../Root/Sidebar/SidebarViewController.swift | 13 ++++++++ .../Scene/Root/Sidebar/SidebarViewModel.swift | 21 +++++++++++-- 5 files changed, 55 insertions(+), 16 deletions(-) diff --git a/Localization/app.json b/Localization/app.json index a965b23ae..47d0e63a5 100644 --- a/Localization/app.json +++ b/Localization/app.json @@ -676,9 +676,9 @@ } }, "account_list": { - "tab_bar_hint": "Current selected profile: %s. Double tap then hold to show account switcher", "dismiss_account_switcher": "Dismiss Account Switcher", - "add_account": "Add Account" + "add_account": "Add Account", + "switch_accounts": "Switch Accounts" }, "wizard": { "new_in_mastodon": "New in Mastodon", @@ -686,4 +686,4 @@ "accessibility_hint": "Double tap to dismiss this wizard" } } -} \ No newline at end of file +} diff --git a/Mastodon/Scene/Root/ContentSplitViewController.swift b/Mastodon/Scene/Root/ContentSplitViewController.swift index 3f4758e8e..4ae7204ca 100644 --- a/Mastodon/Scene/Root/ContentSplitViewController.swift +++ b/Mastodon/Scene/Root/ContentSplitViewController.swift @@ -33,6 +33,7 @@ final class ContentSplitViewController: UIViewController, NeedsDependency { sidebarViewController.context = context sidebarViewController.coordinator = coordinator sidebarViewController.viewModel = SidebarViewModel(context: context, authContext: authContext) + sidebarViewController.viewModel.delegate = sidebarViewController sidebarViewController.delegate = self return sidebarViewController }() diff --git a/Mastodon/Scene/Root/MainTab/MainTabBarController.swift b/Mastodon/Scene/Root/MainTab/MainTabBarController.swift index c49dcc1a1..d56a18aed 100644 --- a/Mastodon/Scene/Root/MainTab/MainTabBarController.swift +++ b/Mastodon/Scene/Root/MainTab/MainTabBarController.swift @@ -298,6 +298,7 @@ extension MainTabBarController { } .store(in: &disposeBag) + let profileTabItem = self.tabBar.items?.first { item in item.tag == Tab.me.tag } if let user = authContext?.mastodonAuthenticationBox.authenticationRecord.object(in: context.managedObjectContext)?.user { self.avatarURLObserver = user.publisher(for: \.avatar) .sink { [weak self, weak user] _ in @@ -306,15 +307,20 @@ extension MainTabBarController { guard user.managedObjectContext != nil else { return } self.avatarURL = user.avatarImageURL() } - - // a11y - let _profileTabItem = self.tabBar.items?.first { item in item.tag == Tab.me.tag } - guard let profileTabItem = _profileTabItem else { return } - let currentUserDisplayName = user.displayNameWithFallback ?? "no user" - profileTabItem.accessibilityHint = L10n.Scene.AccountList.tabBarHint(currentUserDisplayName) - + if let profileTabItem { + profileTabItem.accessibilityCustomActions = [ + // TODO: i18n (scene.account_list.switch_accounts) + UIAccessibilityCustomAction(name: "Switch Accounts") { [weak self] _ in + self?.showAccountSwitcher() + return true + } + ] + } } else { self.avatarURLObserver = nil + if let profileTabItem { + profileTabItem.accessibilityCustomActions = [] + } } let tabBarLongPressGestureRecognizer = UILongPressGestureRecognizer() @@ -390,13 +396,17 @@ extension MainTabBarController { switch tab { case .me: - guard let authContext = self.authContext else { return } - let accountListViewModel = AccountListViewModel(context: context, authContext: authContext) - _ = coordinator.present(scene: .accountList(viewModel: accountListViewModel), from: self, transition: .panModal) + showAccountSwitcher() default: break } } + + private func showAccountSwitcher() { + guard let authContext = self.authContext else { return } + let accountListViewModel = AccountListViewModel(context: context, authContext: authContext) + _ = coordinator.present(scene: .accountList(viewModel: accountListViewModel), from: self, transition: .panModal) + } } extension MainTabBarController { diff --git a/Mastodon/Scene/Root/Sidebar/SidebarViewController.swift b/Mastodon/Scene/Root/Sidebar/SidebarViewController.swift index 70e1239b6..28e205047 100644 --- a/Mastodon/Scene/Root/Sidebar/SidebarViewController.swift +++ b/Mastodon/Scene/Root/Sidebar/SidebarViewController.swift @@ -162,6 +162,19 @@ extension SidebarViewController { } +extension SidebarViewController: SidebarViewModelDelegate { + func sidebarViewModelDidSwitchAccounts(_ sidebarViewModel: SidebarViewModel) { + guard let diffableDataSource = viewModel.diffableDataSource else { return } + guard let indexPath = diffableDataSource.indexPath(for: .tab(.me)) else { return } + guard let cell = collectionView.cellForItem(at: indexPath) else { return } + delegate?.sidebarViewController( + self, + didLongPressItem: .tab(.me), + sourceView: cell + ) + } +} + extension SidebarViewController { @objc private func sidebarLongPressGestureRecognizerHandler(_ sender: UILongPressGestureRecognizer) { guard sender.state == .began else { return } diff --git a/Mastodon/Scene/Root/Sidebar/SidebarViewModel.swift b/Mastodon/Scene/Root/Sidebar/SidebarViewModel.swift index 9f0eb1899..22be9e6e0 100644 --- a/Mastodon/Scene/Root/Sidebar/SidebarViewModel.swift +++ b/Mastodon/Scene/Root/Sidebar/SidebarViewModel.swift @@ -15,6 +15,10 @@ import MastodonAsset import MastodonCore import MastodonLocalization +protocol SidebarViewModelDelegate: AnyObject { + func sidebarViewModelDidSwitchAccounts(_ sidebarViewModel: SidebarViewModel) +} + final class SidebarViewModel { var disposeBag = Set() @@ -31,6 +35,8 @@ final class SidebarViewModel { var secondaryDiffableDataSource: UICollectionViewDiffableDataSource? @Published private(set) var isReadyForWizardAvatarButton = false + weak var delegate: SidebarViewModelDelegate? + init(context: AppContext, authContext: AuthContext?) { self.context = context self.authContext = authContext @@ -127,9 +133,18 @@ extension SidebarViewModel { } .store(in: &cell.disposeBag) case .me: - guard let user = self.authContext?.mastodonAuthenticationBox.authenticationRecord.object(in: self.context.managedObjectContext)?.user else { return } - let currentUserDisplayName = user.displayNameWithFallback - cell.accessibilityHint = L10n.Scene.AccountList.tabBarHint(currentUserDisplayName) + if self.authContext?.mastodonAuthenticationBox.authenticationRecord.object(in: self.context.managedObjectContext)?.user != nil { + cell.accessibilityCustomActions = [ + // TODO: i18n (scene.account_list.switch_accounts) + UIAccessibilityCustomAction(name: "Switch Accounts") { [weak self] _ in + guard let self, let delegate = self.delegate else { return false } + delegate.sidebarViewModelDidSwitchAccounts(self) + return true + } + ] + } else { + cell.accessibilityCustomActions = [] + } default: break } From fc3750c377d3f1db91fdc01b0526d1f30da02b36 Mon Sep 17 00:00:00 2001 From: CMK Date: Tue, 8 Nov 2022 16:39:19 +0800 Subject: [PATCH 016/598] feat: add mediaView for compose scene --- .../Sources/MastodonUI/Extension/View.swift | 21 ++++++ .../Attachment/AttachmentView.swift | 13 ++-- .../Attachment/AttachmentViewModel.swift | 72 ++++++++----------- .../ComposeContentViewController.swift | 14 ++-- .../View/ComposeContentView.swift | 27 +++++++ .../Scene/View/StatusAttachmentView.swift | 13 ---- 6 files changed, 89 insertions(+), 71 deletions(-) create mode 100644 MastodonSDK/Sources/MastodonUI/Extension/View.swift diff --git a/MastodonSDK/Sources/MastodonUI/Extension/View.swift b/MastodonSDK/Sources/MastodonUI/Extension/View.swift new file mode 100644 index 000000000..756e51b64 --- /dev/null +++ b/MastodonSDK/Sources/MastodonUI/Extension/View.swift @@ -0,0 +1,21 @@ +// +// View.swift +// +// +// Created by MainasuK on 2022/11/8. +// + +import SwiftUI + +extension View { + public func badgeView(_ content: Content) -> some View where Content: View { + overlay( + ZStack { + content + } + .alignmentGuide(.top) { $0.height / 2 } + .alignmentGuide(.trailing) { $0.width / 2 } + .frame(maxWidth: .infinity, maxHeight: .infinity, alignment: .topTrailing) + ) + } +} diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentView.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentView.swift index f4d1397a9..f67745849 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentView.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentView.swift @@ -13,18 +13,17 @@ import AVKit public struct AttachmentView: View { - static let size = CGSize(width: 56, height: 56) - static let cornerRadius: CGFloat = 8 - @ObservedObject var viewModel: AttachmentViewModel let action: (Action) -> Void - - @State var isCaptionEditorPresented = false - @State var caption = "" public var body: some View { - Text("Hello") + ZStack { + let image = viewModel.thumbnail ?? .placeholder(color: .secondarySystemFill) + Image(uiImage: image) + .resizable() + .aspectRatio(contentMode: .fill) + } // Menu { // menu // } label: { diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel.swift index 7d0e8c859..f2c7e76e7 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel.swift @@ -22,6 +22,7 @@ final public class AttachmentViewModel: NSObject, ObservableObject, Identifiable var observations = Set() // input + public let authContext: AuthContext public let input: Input @Published var caption = "" @Published var sizeLimit = SizeLimit() @@ -33,13 +34,19 @@ final public class AttachmentViewModel: NSObject, ObservableObject, Identifiable @Published var error: Error? let progress = Progress() // upload progress - public init(input: Input) { + public init( + authContext: AuthContext, + input: Input + ) { + self.authContext = authContext self.input = input super.init() // end init defer { - load(input: input) + Task { + await load(input: input) + } } $output @@ -53,6 +60,7 @@ final public class AttachmentViewModel: NSObject, ObservableObject, Identifiable return nil } } + .receive(on: DispatchQueue.main) .assign(to: &$thumbnail) } @@ -86,13 +94,6 @@ extension AttachmentViewModel { case png case jpg } - - public var twitterMediaCategory: TwitterMediaCategory { - switch self { - case .image: return .image - case .video: return .amplifyVideo - } - } } public struct SizeLimit { @@ -115,18 +116,13 @@ extension AttachmentViewModel { case invalidAttachmentType case attachmentTooLarge } - - public enum TwitterMediaCategory: String { - case image = "TWEET_IMAGE" - case GIF = "TWEET_GIF" - case video = "TWEET_VIDEO" - case amplifyVideo = "AMPLIFY_VIDEO" - } + } extension AttachmentViewModel { - private func load(input: Input) { + @MainActor + private func load(input: Input) async { switch input { case .image(let image): guard let data = image.pngData() else { @@ -135,32 +131,26 @@ extension AttachmentViewModel { } output = .image(data, imageKind: .png) case .url(let url): - Task { @MainActor in - do { - let output = try await AttachmentViewModel.load(url: url) - self.output = output - } catch { - self.error = error - } - } // end Task + do { + let output = try await AttachmentViewModel.load(url: url) + self.output = output + } catch { + self.error = error + } case .pickerResult(let pickerResult): - Task { @MainActor in - do { - let output = try await AttachmentViewModel.load(itemProvider: pickerResult.itemProvider) - self.output = output - } catch { - self.error = error - } - } // end Task + do { + let output = try await AttachmentViewModel.load(itemProvider: pickerResult.itemProvider) + self.output = output + } catch { + self.error = error + } case .itemProvider(let itemProvider): - Task { @MainActor in - do { - let output = try await AttachmentViewModel.load(itemProvider: itemProvider) - self.output = output - } catch { - self.error = error - } - } // end Task + do { + let output = try await AttachmentViewModel.load(itemProvider: itemProvider) + self.output = output + } catch { + self.error = error + } } } diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewController.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewController.swift index 3417ed935..38efe8feb 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewController.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewController.swift @@ -325,16 +325,10 @@ extension ComposeContentViewController: PHPickerViewControllerDelegate { public func picker(_ picker: PHPickerViewController, didFinishPicking results: [PHPickerResult]) { picker.dismiss(animated: true, completion: nil) - // TODO: -// let attachmentServices: [MastodonAttachmentService] = results.map { result in -// let service = MastodonAttachmentService( -// context: context, -// pickerResult: result, -// initialAuthenticationBox: viewModel.authenticationBox -// ) -// return service -// } -// viewModel.attachmentServices = viewModel.attachmentServices + attachmentServices + let attachmentViewModels: [AttachmentViewModel] = results.map { result in + AttachmentViewModel(authContext: viewModel.authContext, input: .pickerResult(result)) + } + viewModel.attachmentViewModels += attachmentViewModels } } diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentView.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentView.swift index 25584848a..ffc92c01e 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentView.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentView.swift @@ -11,6 +11,7 @@ import MastodonAsset import MastodonCore import MastodonLocalization import Stripes +import Kingfisher public struct ComposeContentView: View { @@ -108,6 +109,9 @@ public struct ComposeContentView: View { // poll pollView .padding(.horizontal, ComposeContentView.margin) + // media + mediaView + .padding(.horizontal, ComposeContentView.margin) } .background( GeometryReader { proxy in @@ -194,6 +198,29 @@ extension ComposeContentView { } } // end VStack } + + // MARK: - media + var mediaView: some View { + VStack(spacing: 16) { + ForEach(viewModel.attachmentViewModels, id: \.self) { attachmentViewModel in + Color.clear.aspectRatio(358.0/232.0, contentMode: .fill) + .overlay( + AttachmentView(viewModel: attachmentViewModel) { action in + + } + ) + .clipShape(Rectangle()) + .badgeView( + Button { + viewModel.attachmentViewModels.removeAll(where: { $0 === attachmentViewModel }) + } label: { + Image(systemName: "minus.circle.fill") + .foregroundColor(.red) + } + ) + } // end ForEach + } // end VStack + } } //private struct ScrollOffsetPreferenceKey: PreferenceKey { diff --git a/ShareActionExtension/Scene/View/StatusAttachmentView.swift b/ShareActionExtension/Scene/View/StatusAttachmentView.swift index 90b8aceeb..8540b95f1 100644 --- a/ShareActionExtension/Scene/View/StatusAttachmentView.swift +++ b/ShareActionExtension/Scene/View/StatusAttachmentView.swift @@ -77,19 +77,6 @@ struct StatusAttachmentView: View { } } -extension View { - func badgeView(_ content: Content) -> some View where Content: View { - overlay( - ZStack { - content - } - .alignmentGuide(.top) { $0.height / 2 } - .alignmentGuide(.trailing) { $0.width / 2 } - .frame(maxWidth: .infinity, maxHeight: .infinity, alignment: .topTrailing) - ) - } -} - /// ref: https://stackoverflow.com/a/57715771/3797903 extension View { func placeholder( From bdedd54318e245b21942610b5aaa593809a07b06 Mon Sep 17 00:00:00 2001 From: CMK Date: Tue, 8 Nov 2022 19:40:58 +0800 Subject: [PATCH 017/598] feat: bind the thumbnail and trigger media upload task --- Localization/app.json | 6 +- .../Scene/Compose/Attachment/Contents.json | 9 + .../Contents.json | 38 +++ .../retry.imageset/Arrow Clockwise.pdf | 91 +++++ .../Attachment/retry.imageset/Contents.json | 15 + .../Attachment/stop.imageset/Contents.json | 15 + .../Attachment/stop.imageset/Dismiss.pdf | 89 +++++ .../MastodonAsset/Generated/Assets.swift | 5 + .../API/Mastodon+API+V2+Media.swift | 14 + .../MastodonSDK/Query/MediaAttachment.swift | 2 +- .../Attachment/AttachmentView.swift | 283 ++++----------- .../AttachmentViewModel+DragAndDrop.swift | 144 ++++++++ .../Attachment/AttachmentViewModel+Load.swift | 148 ++++++++ .../AttachmentViewModel+Upload.swift | 142 +------- .../Attachment/AttachmentViewModel.swift | 323 +++--------------- .../ComposeContentViewController.swift | 6 +- .../Publisher/MastodonStatusPublisher.swift | 15 +- .../MastodonUI/Vendor/VisualEffectView.swift | 15 + 18 files changed, 735 insertions(+), 625 deletions(-) create mode 100644 MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Compose/Attachment/Contents.json create mode 100644 MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Compose/Attachment/indicator.button.background.colorset/Contents.json create mode 100644 MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Compose/Attachment/retry.imageset/Arrow Clockwise.pdf create mode 100644 MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Compose/Attachment/retry.imageset/Contents.json create mode 100644 MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Compose/Attachment/stop.imageset/Contents.json create mode 100644 MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Compose/Attachment/stop.imageset/Dismiss.pdf create mode 100644 MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel+DragAndDrop.swift create mode 100644 MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel+Load.swift create mode 100644 MastodonSDK/Sources/MastodonUI/Vendor/VisualEffectView.swift diff --git a/Localization/app.json b/Localization/app.json index a965b23ae..650aff30e 100644 --- a/Localization/app.json +++ b/Localization/app.json @@ -374,7 +374,11 @@ "video": "video", "attachment_broken": "This %s is broken and can’t be\nuploaded to Mastodon.", "description_photo": "Describe the photo for the visually-impaired...", - "description_video": "Describe the video for the visually-impaired..." + "description_video": "Describe the video for the visually-impaired...", + "load_failed": "Load Failed", + "upload_failed": "Upload Failed", + "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", + "attachment_too_large": "Attachment too large" }, "poll": { "duration_time": "Duration: %s", diff --git a/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Compose/Attachment/Contents.json b/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Compose/Attachment/Contents.json new file mode 100644 index 000000000..6e965652d --- /dev/null +++ b/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Compose/Attachment/Contents.json @@ -0,0 +1,9 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + }, + "properties" : { + "provides-namespace" : true + } +} diff --git a/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Compose/Attachment/indicator.button.background.colorset/Contents.json b/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Compose/Attachment/indicator.button.background.colorset/Contents.json new file mode 100644 index 000000000..7a1c8d9e2 --- /dev/null +++ b/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Compose/Attachment/indicator.button.background.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0.400", + "green" : "0.275", + "red" : "0.275" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0.400", + "green" : "0.275", + "red" : "0.275" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Compose/Attachment/retry.imageset/Arrow Clockwise.pdf b/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Compose/Attachment/retry.imageset/Arrow Clockwise.pdf new file mode 100644 index 000000000..a15c522d8 --- /dev/null +++ b/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Compose/Attachment/retry.imageset/Arrow Clockwise.pdf @@ -0,0 +1,91 @@ +%PDF-1.7 + +1 0 obj + << >> +endobj + +2 0 obj + << /Length 3 0 R >> +stream +/DeviceRGB CS +/DeviceRGB cs +q +1.000000 0.000000 -0.000000 1.000000 2.750000 2.750000 cm +0.000000 0.000000 0.000000 scn +9.250000 16.500000 m +5.245935 16.500000 2.000000 13.254065 2.000000 9.250000 c +2.000000 5.245935 5.245935 2.000000 9.250000 2.000000 c +13.254065 2.000000 16.500000 5.245935 16.500000 9.250000 c +16.500000 9.535608 16.483484 9.817360 16.451357 10.094351 c +16.383255 10.681498 16.809317 11.250000 17.400400 11.250000 c +17.916018 11.250000 18.369314 10.891933 18.431660 10.380100 c +18.476776 10.009713 18.500000 9.632568 18.500000 9.250000 c +18.500000 4.141366 14.358634 0.000000 9.250000 0.000000 c +4.141366 0.000000 0.000000 4.141366 0.000000 9.250000 c +0.000000 14.358634 4.141366 18.500000 9.250000 18.500000 c +11.423139 18.500000 13.421247 17.750608 15.000000 16.496151 c +15.000000 17.000000 l +15.000000 17.552284 15.447716 18.000000 16.000000 18.000000 c +16.552284 18.000000 17.000000 17.552284 17.000000 17.000000 c +17.000000 14.301708 l +17.011232 14.284512 17.022409 14.267276 17.033529 14.250000 c +17.000000 14.250000 l +17.000000 14.000000 l +17.000000 13.447716 16.552284 13.000000 16.000000 13.000000 c +13.000000 13.000000 l +12.447715 13.000000 12.000000 13.447716 12.000000 14.000000 c +12.000000 14.552284 12.447715 15.000000 13.000000 15.000000 c +13.666476 15.000000 l +12.443584 15.940684 10.912110 16.500000 9.250000 16.500000 c +h +f +n +Q + +endstream +endobj + +3 0 obj + 1365 +endobj + +4 0 obj + << /Annots [] + /Type /Page + /MediaBox [ 0.000000 0.000000 24.000000 24.000000 ] + /Resources 1 0 R + /Contents 2 0 R + /Parent 5 0 R + >> +endobj + +5 0 obj + << /Kids [ 4 0 R ] + /Count 1 + /Type /Pages + >> +endobj + +6 0 obj + << /Pages 5 0 R + /Type /Catalog + >> +endobj + +xref +0 7 +0000000000 65535 f +0000000010 00000 n +0000000034 00000 n +0000001455 00000 n +0000001478 00000 n +0000001651 00000 n +0000001725 00000 n +trailer +<< /ID [ (some) (id) ] + /Root 6 0 R + /Size 7 +>> +startxref +1784 +%%EOF \ No newline at end of file diff --git a/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Compose/Attachment/retry.imageset/Contents.json b/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Compose/Attachment/retry.imageset/Contents.json new file mode 100644 index 000000000..92bff3aca --- /dev/null +++ b/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Compose/Attachment/retry.imageset/Contents.json @@ -0,0 +1,15 @@ +{ + "images" : [ + { + "filename" : "Arrow Clockwise.pdf", + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + }, + "properties" : { + "preserves-vector-representation" : true + } +} diff --git a/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Compose/Attachment/stop.imageset/Contents.json b/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Compose/Attachment/stop.imageset/Contents.json new file mode 100644 index 000000000..b2b588d4d --- /dev/null +++ b/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Compose/Attachment/stop.imageset/Contents.json @@ -0,0 +1,15 @@ +{ + "images" : [ + { + "filename" : "Dismiss.pdf", + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + }, + "properties" : { + "preserves-vector-representation" : true + } +} diff --git a/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Compose/Attachment/stop.imageset/Dismiss.pdf b/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Compose/Attachment/stop.imageset/Dismiss.pdf new file mode 100644 index 000000000..0616f6275 --- /dev/null +++ b/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Compose/Attachment/stop.imageset/Dismiss.pdf @@ -0,0 +1,89 @@ +%PDF-1.7 + +1 0 obj + << >> +endobj + +2 0 obj + << /Length 3 0 R >> +stream +/DeviceRGB CS +/DeviceRGB cs +q +1.000000 0.000000 -0.000000 1.000000 4.000000 3.804749 cm +0.000000 0.000000 0.000000 scn +0.209704 15.808150 m +0.292893 15.902358 l +0.653377 16.262842 1.220608 16.290571 1.612899 15.985547 c +1.707107 15.902358 l +8.000000 9.610251 l +14.292892 15.902358 l +14.683416 16.292883 15.316584 16.292883 15.707108 15.902358 c +16.097631 15.511834 16.097631 14.878669 15.707108 14.488145 c +9.415000 8.195251 l +15.707108 1.902359 l +16.067591 1.541875 16.095320 0.974643 15.790295 0.582352 c +15.707108 0.488144 l +15.346623 0.127661 14.779391 0.099932 14.387100 0.404957 c +14.292892 0.488144 l +8.000000 6.780252 l +1.707107 0.488144 l +1.316582 0.097620 0.683418 0.097620 0.292893 0.488144 c +-0.097631 0.878668 -0.097631 1.511835 0.292893 1.902359 c +6.585000 8.195251 l +0.292893 14.488145 l +-0.067591 14.848629 -0.095320 15.415859 0.209704 15.808150 c +0.292893 15.902358 l +0.209704 15.808150 l +h +f +n +Q + +endstream +endobj + +3 0 obj + 914 +endobj + +4 0 obj + << /Annots [] + /Type /Page + /MediaBox [ 0.000000 0.000000 24.000000 24.000000 ] + /Resources 1 0 R + /Contents 2 0 R + /Parent 5 0 R + >> +endobj + +5 0 obj + << /Kids [ 4 0 R ] + /Count 1 + /Type /Pages + >> +endobj + +6 0 obj + << /Pages 5 0 R + /Type /Catalog + >> +endobj + +xref +0 7 +0000000000 65535 f +0000000010 00000 n +0000000034 00000 n +0000001004 00000 n +0000001026 00000 n +0000001199 00000 n +0000001273 00000 n +trailer +<< /ID [ (some) (id) ] + /Root 6 0 R + /Size 7 +>> +startxref +1332 +%%EOF \ No newline at end of file diff --git a/MastodonSDK/Sources/MastodonAsset/Generated/Assets.swift b/MastodonSDK/Sources/MastodonAsset/Generated/Assets.swift index 5cd0059d8..fc47acdfd 100644 --- a/MastodonSDK/Sources/MastodonAsset/Generated/Assets.swift +++ b/MastodonSDK/Sources/MastodonAsset/Generated/Assets.swift @@ -130,6 +130,11 @@ public enum Asset { } public enum Scene { public enum Compose { + public enum Attachment { + public static let indicatorButtonBackground = ColorAsset(name: "Scene/Compose/Attachment/indicator.button.background") + public static let retry = ImageAsset(name: "Scene/Compose/Attachment/retry") + public static let stop = ImageAsset(name: "Scene/Compose/Attachment/stop") + } public static let earth = ImageAsset(name: "Scene/Compose/Earth") public static let mention = ImageAsset(name: "Scene/Compose/Mention") public static let more = ImageAsset(name: "Scene/Compose/More") diff --git a/MastodonSDK/Sources/MastodonSDK/API/Mastodon+API+V2+Media.swift b/MastodonSDK/Sources/MastodonSDK/API/Mastodon+API+V2+Media.swift index 4f8ac71d5..6c905438c 100644 --- a/MastodonSDK/Sources/MastodonSDK/API/Mastodon+API+V2+Media.swift +++ b/MastodonSDK/Sources/MastodonSDK/API/Mastodon+API+V2+Media.swift @@ -43,6 +43,20 @@ extension Mastodon.API.V2.Media { request.timeoutInterval = 180 // should > 200 Kb/s for 40 MiB media attachment let serialStream = query.serialStream request.httpBodyStream = serialStream.boundStreams.input + + // total unit count in bytes count + // will small than actally count due to multipart protocol meta + serialStream.progress.totalUnitCount = { + var size = 0 + size += query.file?.sizeInByte ?? 0 + size += query.thumbnail?.sizeInByte ?? 0 + return Int64(size) + }() + query.progress.addChild( + serialStream.progress, + withPendingUnitCount: query.progress.totalUnitCount + ) + return session.dataTaskPublisher(for: request) .tryMap { data, response in let value = try Mastodon.API.decode(type: Mastodon.Entity.Attachment.self, from: data, response: response) diff --git a/MastodonSDK/Sources/MastodonSDK/Query/MediaAttachment.swift b/MastodonSDK/Sources/MastodonSDK/Query/MediaAttachment.swift index f1fdac8bb..05639964e 100644 --- a/MastodonSDK/Sources/MastodonSDK/Query/MediaAttachment.swift +++ b/MastodonSDK/Sources/MastodonSDK/Query/MediaAttachment.swift @@ -54,7 +54,7 @@ extension Mastodon.Query.MediaAttachment { return data.map { "data:" + mimeType + ";base64," + $0.base64EncodedString() } } - var sizeInByte: Int? { + public var sizeInByte: Int? { switch self { case .jpeg(let data), .gif(let data), .png(let data): return data?.count diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentView.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentView.swift index f67745849..c3ca6fc67 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentView.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentView.swift @@ -10,12 +10,17 @@ import UIKit import SwiftUI import Introspect import AVKit +import MastodonAsset public struct AttachmentView: View { @ObservedObject var viewModel: AttachmentViewModel let action: (Action) -> Void + + var blurEffect: UIBlurEffect { + UIBlurEffect(style: .systemUltraThinMaterialDark) + } public var body: some View { ZStack { @@ -23,223 +28,81 @@ public struct AttachmentView: View { Image(uiImage: image) .resizable() .aspectRatio(contentMode: .fill) + + // loading… + if viewModel.output == nil, viewModel.error == nil { + ProgressView() + .progressViewStyle(.circular) + } + + // load failed + // cannot re-entry + if viewModel.output == nil, let error = viewModel.error { + VisualEffectView(effect: blurEffect) + VStack { + Text("Load Failed") // TODO: i18n + .font(.system(size: 13, weight: .semibold)) + Text(error.localizedDescription) + .font(.system(size: 12, weight: .regular)) + } + } + + // loaded + // uploading… or upload failed + // could retry upload when error emit + if viewModel.output != nil { + VisualEffectView(effect: blurEffect) + VStack { + let image: UIImage = { + if let _ = viewModel.error { + return Asset.Scene.Compose.Attachment.retry.image.withRenderingMode(.alwaysTemplate) + } else { + return Asset.Scene.Compose.Attachment.stop.image.withRenderingMode(.alwaysTemplate) + } + }() + Image(uiImage: image) + .foregroundColor(.white) + .padding() + .background(Color(Asset.Scene.Compose.Attachment.indicatorButtonBackground.color)) + .clipShape(Circle()) + .padding() + let title: String = { + if let _ = viewModel.error { + return "Upload Failed" // TODO: i18n + } else { + let total = ByteCountFormatter.string(fromByteCount: Int64(viewModel.outputSizeInByte), countStyle: .memory) + return "…/\(total)" + } + }() + let subtitle: String = { + if let error = viewModel.error { + return error.localizedDescription + } else { + return "… remaining" + } + }() + Text(title) + .font(.system(size: 13, weight: .semibold)) + .foregroundColor(.white) + .padding(.horizontal) + Text(subtitle) + .font(.system(size: 12, weight: .regular)) + .foregroundColor(.white) + .padding(.horizontal) + } + } + } // end ZStack + .onChange(of: viewModel.progress) { progress in + // not works… + print(progress.completedUnitCount) } -// Menu { -// menu -// } label: { -// let image = viewModel.thumbnail ?? .placeholder(color: .systemGray3) -// Image(uiImage: image) -// .resizable() -// .aspectRatio(contentMode: .fill) -// .frame(width: AttachmentView.size.width, height: AttachmentView.size.height) -// .overlay { -// ZStack { -// // spinner -// if viewModel.output == nil { -// Color.clear -// .background(.ultraThinMaterial) -// ProgressView() -// .progressViewStyle(CircularProgressViewStyle()) -// .foregroundStyle(.regularMaterial) -// } -// // border -// RoundedRectangle(cornerRadius: AttachmentView.cornerRadius) -// .stroke(Color.black.opacity(0.05)) -// } -// .transition(.opacity) -// } -// .overlay(alignment: .bottom) { -// HStack(alignment: .bottom) { -// // alt -// VStack(spacing: 2) { -// switch viewModel.output { -// case .video: -// Image(uiImage: Asset.Media.playerRectangle.image) -// .resizable() -// .frame(width: 16, height: 12) -// default: -// EmptyView() -// } -// if !viewModel.caption.isEmpty { -// Image(uiImage: Asset.Media.altRectangle.image) -// .resizable() -// .frame(width: 16, height: 12) -// } -// } -// Spacer() -// // option -// Image(systemName: "ellipsis") -// .resizable() -// .frame(width: 12, height: 12) -// .symbolVariant(.circle) -// .symbolVariant(.fill) -// .symbolRenderingMode(.palette) -// .foregroundStyle(.white, .black) -// } -// .padding(6) -// } -// .cornerRadius(AttachmentView.cornerRadius) -// } // end Menu -// .sheet(isPresented: $isCaptionEditorPresented) { -// captionSheet -// } // end caption sheet -// .sheet(isPresented: $viewModel.isPreviewPresented) { -// previewSheet -// } // end preview sheet - } // end body -// var menu: some View { -// Group { -// Button( -// action: { -// action(.preview) -// }, -// label: { -// Label(L10n.Scene.Compose.Media.preview, systemImage: "photo") -// } -// ) -// // caption -// let canAddCaption: Bool = { -// switch viewModel.output { -// case .image: return true -// case .video: return false -// case .none: return false -// } -// }() -// if canAddCaption { -// Button( -// action: { -// action(.caption) -// caption = viewModel.caption -// isCaptionEditorPresented.toggle() -// }, -// label: { -// let title = viewModel.caption.isEmpty ? L10n.Scene.Compose.Media.Caption.add : L10n.Scene.Compose.Media.Caption.update -// Label(title, systemImage: "text.bubble") -// // FIXME: https://stackoverflow.com/questions/72318730/how-to-customize-swiftui-menu -// // add caption subtitle -// } -// ) -// } -// Divider() -// // remove -// Button( -// role: .destructive, -// action: { -// action(.remove) -// }, -// label: { -// Label(L10n.Scene.Compose.Media.remove, systemImage: "minus.circle") -// } -// ) -// } -// } - -// var captionSheet: some View { -// NavigationView { -// ScrollView(.vertical) { -// VStack { -// // preview -// switch viewModel.output { -// case .image: -// let image = viewModel.thumbnail ?? .placeholder(color: .systemGray3) -// Image(uiImage: image) -// .resizable() -// .aspectRatio(contentMode: .fill) -// case .video(let url, _): -// let player = AVPlayer(url: url) -// VideoPlayer(player: player) -// .frame(height: 300) -// case .none: -// EmptyView() -// } -// // caption textField -// TextField( -// text: $caption, -// prompt: Text(L10n.Scene.Compose.Media.Caption.addADescriptionForThisImage) -// ) { -// Text(L10n.Scene.Compose.Media.Caption.update) -// } -// .padding() -// .introspectTextField { textField in -// textField.becomeFirstResponder() -// } -// } -// } -// .navigationTitle(L10n.Scene.Compose.Media.Caption.update) -// .navigationBarTitleDisplayMode(.inline) -// .toolbar { -// ToolbarItem(placement: .navigationBarLeading) { -// Button { -// isCaptionEditorPresented.toggle() -// } label: { -// Image(systemName: "xmark.circle.fill") -// .resizable() -// .frame(width: 30, height: 30, alignment: .center) -// .symbolRenderingMode(.hierarchical) -// .foregroundStyle(Color(uiColor: .secondaryLabel), Color(uiColor: .tertiaryLabel)) -// } -// } -// ToolbarItem(placement: .navigationBarTrailing) { -// Button { -// viewModel.caption = caption.trimmingCharacters(in: .whitespacesAndNewlines) -// isCaptionEditorPresented.toggle() -// } label: { -// Text(L10n.Common.Controls.Actions.save) -// } -// } -// } -// } // end NavigationView -// } - - // design for share extension - // preferred UIKit preview in app -// var previewSheet: some View { -// NavigationView { -// ScrollView(.vertical) { -// VStack { -// // preview -// switch viewModel.output { -// case .image: -// let image = viewModel.thumbnail ?? .placeholder(color: .systemGray3) -// Image(uiImage: image) -// .resizable() -// .aspectRatio(contentMode: .fill) -// case .video(let url, _): -// let player = AVPlayer(url: url) -// VideoPlayer(player: player) -// .frame(height: 300) -// case .none: -// EmptyView() -// } -// Spacer() -// } -// } -// .navigationTitle(L10n.Scene.Compose.Media.preview) -// .navigationBarTitleDisplayMode(.inline) -// .toolbar { -// ToolbarItem(placement: .navigationBarLeading) { -// Button { -// viewModel.isPreviewPresented.toggle() -// } label: { -// Image(systemName: "xmark.circle.fill") -// .resizable() -// .frame(width: 30, height: 30, alignment: .center) -// .symbolRenderingMode(.hierarchical) -// .foregroundStyle(Color(uiColor: .secondaryLabel), Color(uiColor: .tertiaryLabel)) -// } -// } -// } -// } // end NavigationView -// } - } extension AttachmentView { public enum Action: Hashable { - case preview - case caption case remove + case retry } } diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel+DragAndDrop.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel+DragAndDrop.swift new file mode 100644 index 000000000..269b836bc --- /dev/null +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel+DragAndDrop.swift @@ -0,0 +1,144 @@ +// +// AttachmentViewModel+DragAndDrop.swift +// +// +// Created by MainasuK on 2022/11/8. +// + +import os.log +import UIKit +import Combine +import UniformTypeIdentifiers + +// MARK: - TypeIdentifiedItemProvider +extension AttachmentViewModel: TypeIdentifiedItemProvider { + public static var typeIdentifier: String { + // must in UTI format + // https://developer.apple.com/library/archive/qa/qa1796/_index.html + return "org.joinmastodon.app.AttachmentViewModel" + } +} + +// MARK: - NSItemProviderWriting +extension AttachmentViewModel: NSItemProviderWriting { + + + /// Attachment uniform type idendifiers + /// + /// The latest one for in-app drag and drop. + /// And use generic `image` and `movie` type to + /// allows transformable media in different formats + public static var writableTypeIdentifiersForItemProvider: [String] { + return [ + UTType.image.identifier, + UTType.movie.identifier, + AttachmentViewModel.typeIdentifier, + ] + } + + public var writableTypeIdentifiersForItemProvider: [String] { + // should append elements in priority order from high to low + var typeIdentifiers: [String] = [] + + // FIXME: check jpg or png + switch input { + case .image: + typeIdentifiers.append(UTType.png.identifier) + case .url(let url): + let _uti = UTType(filenameExtension: url.pathExtension) + if let uti = _uti { + if uti.conforms(to: .image) { + typeIdentifiers.append(UTType.png.identifier) + } else if uti.conforms(to: .movie) { + typeIdentifiers.append(UTType.mpeg4Movie.identifier) + } + } + case .pickerResult(let item): + if item.itemProvider.isImage() { + typeIdentifiers.append(UTType.png.identifier) + } else if item.itemProvider.isMovie() { + typeIdentifiers.append(UTType.mpeg4Movie.identifier) + } + case .itemProvider(let itemProvider): + if itemProvider.isImage() { + typeIdentifiers.append(UTType.png.identifier) + } else if itemProvider.isMovie() { + typeIdentifiers.append(UTType.mpeg4Movie.identifier) + } + } + + typeIdentifiers.append(AttachmentViewModel.typeIdentifier) + + return typeIdentifiers + } + + public func loadData( + withTypeIdentifier typeIdentifier: String, + forItemProviderCompletionHandler completionHandler: @escaping (Data?, Error?) -> Void + ) -> Progress? { + switch typeIdentifier { + case AttachmentViewModel.typeIdentifier: + do { + let archiver = NSKeyedArchiver(requiringSecureCoding: false) + try archiver.encodeEncodable(id, forKey: NSKeyedArchiveRootObjectKey) + archiver.finishEncoding() + let data = archiver.encodedData + completionHandler(data, nil) + } catch { + assertionFailure() + completionHandler(nil, nil) + } + default: + break + } + + let loadingProgress = Progress(totalUnitCount: 100) + + Publishers.CombineLatest( + $output, + $error + ) + .sink { [weak self] output, error in + guard let self = self else { return } + + // continue when load completed + guard output != nil || error != nil else { return } + + switch output { + case .image(let data, _): + switch typeIdentifier { + case UTType.png.identifier: + loadingProgress.completedUnitCount = 100 + completionHandler(data, nil) + default: + completionHandler(nil, nil) + } + case .video(let url, _): + switch typeIdentifier { + case UTType.png.identifier: + let _image = AttachmentViewModel.createThumbnailForVideo(url: url) + let _data = _image?.pngData() + loadingProgress.completedUnitCount = 100 + completionHandler(_data, nil) + case UTType.mpeg4Movie.identifier: + let task = URLSession.shared.dataTask(with: url) { data, response, error in + completionHandler(data, error) + } + task.progress.observe(\.fractionCompleted) { progress, change in + loadingProgress.completedUnitCount = Int64(100 * progress.fractionCompleted) + } + .store(in: &self.observations) + task.resume() + default: + completionHandler(nil, nil) + } + case nil: + completionHandler(nil, error) + } + } + .store(in: &disposeBag) + + return loadingProgress + } + +} diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel+Load.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel+Load.swift new file mode 100644 index 000000000..a259485f1 --- /dev/null +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel+Load.swift @@ -0,0 +1,148 @@ +// +// AttachmentViewModel+Load.swift +// +// +// Created by MainasuK on 2022/11/8. +// + +import os.log +import UIKit +import AVKit +import UniformTypeIdentifiers + +extension AttachmentViewModel { + + @MainActor + func load(input: Input) async throws -> Output { + switch input { + case .image(let image): + guard let data = image.pngData() else { + throw AttachmentError.invalidAttachmentType + } + return .image(data, imageKind: .png) + case .url(let url): + do { + let output = try await AttachmentViewModel.load(url: url) + return output + } catch { + throw error + } + case .pickerResult(let pickerResult): + do { + let output = try await AttachmentViewModel.load(itemProvider: pickerResult.itemProvider) + return output + } catch { + throw error + } + case .itemProvider(let itemProvider): + do { + let output = try await AttachmentViewModel.load(itemProvider: itemProvider) + return output + } catch { + throw error + } + } + } + + private static func load(url: URL) async throws -> Output { + guard let uti = UTType(filenameExtension: url.pathExtension) else { + throw AttachmentError.invalidAttachmentType + } + + if uti.conforms(to: .image) { + guard url.startAccessingSecurityScopedResource() else { + throw AttachmentError.invalidAttachmentType + } + defer { url.stopAccessingSecurityScopedResource() } + let imageData = try Data(contentsOf: url) + return .image(imageData, imageKind: imageData.kf.imageFormat == .PNG ? .png : .jpg) + } else if uti.conforms(to: .movie) { + guard url.startAccessingSecurityScopedResource() else { + throw AttachmentError.invalidAttachmentType + } + defer { url.stopAccessingSecurityScopedResource() } + + let fileName = UUID().uuidString + let tempDirectoryURL = FileManager.default.temporaryDirectory + let fileURL = tempDirectoryURL.appendingPathComponent(fileName).appendingPathExtension(url.pathExtension) + try FileManager.default.createDirectory(at: tempDirectoryURL, withIntermediateDirectories: true, attributes: nil) + try FileManager.default.copyItem(at: url, to: fileURL) + return .video(fileURL, mimeType: UTType.movie.preferredMIMEType ?? "video/mp4") + } else { + throw AttachmentError.invalidAttachmentType + } + } + + private static func load(itemProvider: NSItemProvider) async throws -> Output { + if itemProvider.isImage() { + guard let result = try await itemProvider.loadImageData() else { + throw AttachmentError.invalidAttachmentType + } + let imageKind: Output.ImageKind = { + if let type = result.type { + if type == UTType.png { + return .png + } + if type == UTType.jpeg { + return .jpg + } + } + + let imageData = result.data + + if imageData.kf.imageFormat == .PNG { + return .png + } + if imageData.kf.imageFormat == .JPEG { + return .jpg + } + + assertionFailure("unknown image kind") + return .jpg + }() + return .image(result.data, imageKind: imageKind) + } else if itemProvider.isMovie() { + guard let result = try await itemProvider.loadVideoData() else { + throw AttachmentError.invalidAttachmentType + } + return .video(result.url, mimeType: "video/mp4") + } else { + assertionFailure() + throw AttachmentError.invalidAttachmentType + } + } + +} + +extension AttachmentViewModel { + static func createThumbnailForVideo(url: URL) -> UIImage? { + guard FileManager.default.fileExists(atPath: url.path) else { return nil } + let asset = AVURLAsset(url: url) + let assetImageGenerator = AVAssetImageGenerator(asset: asset) + assetImageGenerator.appliesPreferredTrackTransform = true // fix orientation + do { + let cgImage = try assetImageGenerator.copyCGImage(at: CMTimeMake(value: 0, timescale: 1), actualTime: nil) + let image = UIImage(cgImage: cgImage) + return image + } catch { + AttachmentViewModel.logger.log(level: .debug, "\((#file as NSString).lastPathComponent, privacy: .public)[\(#line, privacy: .public)], \(#function, privacy: .public): thumbnail generate fail: \(error.localizedDescription)") + return nil + } + } +} + +extension NSItemProvider { + func isImage() -> Bool { + return hasRepresentationConforming( + toTypeIdentifier: UTType.image.identifier, + fileOptions: [] + ) + } + + func isMovie() -> Bool { + return hasRepresentationConforming( + toTypeIdentifier: UTType.movie.identifier, + fileOptions: [] + ) + } +} diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel+Upload.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel+Upload.swift index 0a4aadec3..fcb30d954 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel+Upload.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel+Upload.swift @@ -52,153 +52,25 @@ extension Data { } } -// Twitter Only -//extension AttachmentViewModel { -// class SliceResult { -// -// let fileURL: URL -// let chunks: Chunked -// let chunkCount: Int -// let type: UTType -// let sizeInBytes: UInt64 -// -// public init?( -// url: URL, -// type: UTType -// ) { -// guard let chunks = try? FileHandle(forReadingFrom: url).bytes.chunked else { return nil } -// let _sizeInBytes: UInt64? = { -// let attribute = try? FileManager.default.attributesOfItem(atPath: url.path) -// return attribute?[.size] as? UInt64 -// }() -// guard let sizeInBytes = _sizeInBytes else { return nil } -// -// self.fileURL = url -// self.chunks = chunks -// self.chunkCount = SliceResult.chunkCount(chunkSize: UInt64(chunks.chunkSize), sizeInBytes: sizeInBytes) -// self.type = type -// self.sizeInBytes = sizeInBytes -// } -// -// public init?( -// imageData: Data, -// type: UTType -// ) { -// let _fileURL = try? FileManager.default.createTemporaryFileURL( -// filename: UUID().uuidString, -// pathExtension: imageData.kf.imageFormat == .PNG ? "png" : "jpeg" -// ) -// guard let fileURL = _fileURL else { return nil } -// -// do { -// try imageData.write(to: fileURL) -// } catch { -// return nil -// } -// -// guard let chunks = try? FileHandle(forReadingFrom: fileURL).bytes.chunked else { -// return nil -// } -// let sizeInBytes = UInt64(imageData.count) -// -// self.fileURL = fileURL -// self.chunks = chunks -// self.chunkCount = SliceResult.chunkCount(chunkSize: UInt64(chunks.chunkSize), sizeInBytes: sizeInBytes) -// self.type = type -// self.sizeInBytes = sizeInBytes -// } -// -// static func chunkCount(chunkSize: UInt64, sizeInBytes: UInt64) -> Int { -// guard sizeInBytes > 0 else { return 0 } -// let count = sizeInBytes / chunkSize -// let remains = sizeInBytes % chunkSize -// let result = remains > 0 ? count + 1 : count -// return Int(result) -// } -// -// } -// -// static func slice(output: Output, sizeLimit: SizeLimit) -> SliceResult? { -// // needs execute in background -// assert(!Thread.isMainThread) -// -// // try png then use JPEG compress with Q=0.8 -// // then slice into 1MiB chunks -// switch output { -// case .image(let data, _): -// let maxPayloadSizeInBytes = sizeLimit.image -// -// // use processed imageData to remove EXIF -// guard let image = UIImage(data: data), -// var imageData = image.pngData() -// else { return nil } -// -// var didRemoveEXIF = false -// repeat { -// guard let image = KFCrossPlatformImage(data: imageData) else { return nil } -// if imageData.kf.imageFormat == .PNG { -// // A. png image -// guard let pngData = image.pngData() else { return nil } -// didRemoveEXIF = true -// if pngData.count > maxPayloadSizeInBytes { -// guard let compressedJpegData = image.jpegData(compressionQuality: 0.8) else { return nil } -// os_log("%{public}s[%{public}ld], %{public}s: compress png %.2fMiB -> jpeg %.2fMiB", ((#file as NSString).lastPathComponent), #line, #function, Double(imageData.count) / 1024 / 1024, Double(compressedJpegData.count) / 1024 / 1024) -// imageData = compressedJpegData -// } else { -// os_log("%{public}s[%{public}ld], %{public}s: png %.2fMiB", ((#file as NSString).lastPathComponent), #line, #function, Double(pngData.count) / 1024 / 1024) -// imageData = pngData -// } -// } else { -// // B. other image -// if !didRemoveEXIF { -// guard let jpegData = image.jpegData(compressionQuality: 0.8) else { return nil } -// os_log("%{public}s[%{public}ld], %{public}s: compress jpeg %.2fMiB -> jpeg %.2fMiB", ((#file as NSString).lastPathComponent), #line, #function, Double(imageData.count) / 1024 / 1024, Double(jpegData.count) / 1024 / 1024) -// imageData = jpegData -// didRemoveEXIF = true -// } else { -// let targetSize = CGSize(width: image.size.width * 0.8, height: image.size.height * 0.8) -// let scaledImage = image.af.imageScaled(to: targetSize) -// guard let compressedJpegData = scaledImage.jpegData(compressionQuality: 0.8) else { return nil } -// os_log("%{public}s[%{public}ld], %{public}s: compress jpeg %.2fMiB -> jpeg %.2fMiB", ((#file as NSString).lastPathComponent), #line, #function, Double(imageData.count) / 1024 / 1024, Double(compressedJpegData.count) / 1024 / 1024) -// imageData = compressedJpegData -// } -// } -// } while (imageData.count > maxPayloadSizeInBytes) -// -// return SliceResult( -// imageData: imageData, -// type: imageData.kf.imageFormat == .PNG ? UTType.png : UTType.jpeg -// ) -// -//// case .gif(let url): -//// fatalError() -// case .video(let url, _): -// return SliceResult( -// url: url, -// type: .movie -// ) -// } -// } -//} - extension AttachmentViewModel { struct UploadContext { let apiService: APIService let authContext: AuthContext } - enum UploadResult { - case mastodon(Mastodon.Response.Content) - } + public typealias UploadResult = Mastodon.Entity.Attachment } extension AttachmentViewModel { - func upload(context: UploadContext) async throws -> UploadResult { + func upload(context: UploadContext) async throws -> UploadResult { return try await uploadMastodonMedia( context: context ) } + + // MainActor is required here to trigger stream upload task + @MainActor private func uploadMastodonMedia( context: UploadContext ) async throws -> UploadResult { @@ -283,7 +155,7 @@ extension AttachmentViewModel { // escape here progress.completedUnitCount = progress.totalUnitCount - return .mastodon(attachmentStatusResponse) + return attachmentStatusResponse.value } else { AttachmentViewModel.logger.log(level: .debug, "\((#file as NSString).lastPathComponent, privacy: .public)[\(#line, privacy: .public)], \(#function, privacy: .public): attachment processing. Retry \(waitProcessRetryCount)/\(waitProcessRetryLimit)") @@ -296,7 +168,7 @@ extension AttachmentViewModel { } else { AttachmentViewModel.logger.log(level: .debug, "\((#file as NSString).lastPathComponent, privacy: .public)[\(#line, privacy: .public)], \(#function, privacy: .public): upload attachment success: \(attachmentUploadResponse.value.url ?? "")") - return .mastodon(attachmentUploadResponse) + return attachmentUploadResponse.value } } } diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel.swift index f2c7e76e7..20e8186ad 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel.swift @@ -15,6 +15,7 @@ import MastodonCore final public class AttachmentViewModel: NSObject, ObservableObject, Identifiable { static let logger = Logger(subsystem: "AttachmentViewModel", category: "ViewModel") + let logger = Logger(subsystem: "AttachmentViewModel", category: "ViewModel") public let id = UUID() @@ -22,32 +23,52 @@ final public class AttachmentViewModel: NSObject, ObservableObject, Identifiable var observations = Set() // input + public let api: APIService public let authContext: AuthContext public let input: Input @Published var caption = "" @Published var sizeLimit = SizeLimit() - @Published public var isPreviewPresented = false // output @Published public private(set) var output: Output? @Published public private(set) var thumbnail: UIImage? // original size image thumbnail + @Published public private(set) var outputSizeInByte: Int = 0 + + @Published public var uploadResult: UploadResult? @Published var error: Error? + let progress = Progress() // upload progress public init( + api: APIService, authContext: AuthContext, input: Input ) { + self.api = api self.authContext = authContext self.input = input super.init() // end init - - defer { - Task { - await load(input: input) + + progress + .observe(\.fractionCompleted, options: [.initial, .new]) { [weak self] progress, _ in + guard let self = self else { return } + self.logger.log(level: .debug, "\((#file as NSString).lastPathComponent, privacy: .public)[\(#line, privacy: .public)], \(#function, privacy: .public): publish progress \(progress.fractionCompleted)") + DispatchQueue.main.async { + self.objectWillChange.send() + } } - } + .store(in: &observations) + + progress + .observe(\.isFinished, options: [.initial, .new]) { [weak self] progress, _ in + guard let self = self else { return } + self.logger.log(level: .debug, "\((#file as NSString).lastPathComponent, privacy: .public)[\(#line, privacy: .public)], \(#function, privacy: .public): publish progress \(progress.fractionCompleted)") + DispatchQueue.main.async { + self.objectWillChange.send() + } + } + .store(in: &observations) $output .map { output -> UIImage? in @@ -62,6 +83,23 @@ final public class AttachmentViewModel: NSObject, ObservableObject, Identifiable } .receive(on: DispatchQueue.main) .assign(to: &$thumbnail) + + defer { + Task { @MainActor in + do { + let output = try await load(input: input) + self.output = output + self.outputSizeInByte = output.asAttachment.sizeInByte ?? 0 + let uploadResult = try await self.upload(context: .init( + apiService: self.api, + authContext: self.authContext + )) + self.uploadResult = uploadResult + } catch { + self.error = error + } + } // end Task + } } deinit { @@ -112,280 +150,23 @@ extension AttachmentViewModel { } } - public enum AttachmentError: Error { + public enum AttachmentError: Error, LocalizedError { case invalidAttachmentType case attachmentTooLarge - } - -} - -extension AttachmentViewModel { - - @MainActor - private func load(input: Input) async { - switch input { - case .image(let image): - guard let data = image.pngData() else { - error = AttachmentError.invalidAttachmentType - return - } - output = .image(data, imageKind: .png) - case .url(let url): - do { - let output = try await AttachmentViewModel.load(url: url) - self.output = output - } catch { - self.error = error - } - case .pickerResult(let pickerResult): - do { - let output = try await AttachmentViewModel.load(itemProvider: pickerResult.itemProvider) - self.output = output - } catch { - self.error = error - } - case .itemProvider(let itemProvider): - do { - let output = try await AttachmentViewModel.load(itemProvider: itemProvider) - self.output = output - } catch { - self.error = error - } - } - } - - private static func load(url: URL) async throws -> Output { - guard let uti = UTType(filenameExtension: url.pathExtension) else { - throw AttachmentError.invalidAttachmentType - } - if uti.conforms(to: .image) { - guard url.startAccessingSecurityScopedResource() else { - throw AttachmentError.invalidAttachmentType + public var errorDescription: String? { + switch self { + case .invalidAttachmentType: + return "Can not regonize this media attachment" // TODO: i18n + case .attachmentTooLarge: + return "Attachment too large" } - defer { url.stopAccessingSecurityScopedResource() } - let imageData = try Data(contentsOf: url) - return .image(imageData, imageKind: imageData.kf.imageFormat == .PNG ? .png : .jpg) - } else if uti.conforms(to: .movie) { - guard url.startAccessingSecurityScopedResource() else { - throw AttachmentError.invalidAttachmentType - } - defer { url.stopAccessingSecurityScopedResource() } - - let fileName = UUID().uuidString - let tempDirectoryURL = FileManager.default.temporaryDirectory - let fileURL = tempDirectoryURL.appendingPathComponent(fileName).appendingPathExtension(url.pathExtension) - try FileManager.default.createDirectory(at: tempDirectoryURL, withIntermediateDirectories: true, attributes: nil) - try FileManager.default.copyItem(at: url, to: fileURL) - return .video(fileURL, mimeType: UTType.movie.preferredMIMEType ?? "video/mp4") - } else { - throw AttachmentError.invalidAttachmentType - } - } - - private static func load(itemProvider: NSItemProvider) async throws -> Output { - if itemProvider.isImage() { - guard let result = try await itemProvider.loadImageData() else { - throw AttachmentError.invalidAttachmentType - } - let imageKind: Output.ImageKind = { - if let type = result.type { - if type == UTType.png { - return .png - } - if type == UTType.jpeg { - return .jpg - } - } - - let imageData = result.data - - if imageData.kf.imageFormat == .PNG { - return .png - } - if imageData.kf.imageFormat == .JPEG { - return .jpg - } - - assertionFailure("unknown image kind") - return .jpg - }() - return .image(result.data, imageKind: imageKind) - } else if itemProvider.isMovie() { - guard let result = try await itemProvider.loadVideoData() else { - throw AttachmentError.invalidAttachmentType - } - return .video(result.url, mimeType: "video/mp4") - } else { - assertionFailure() - throw AttachmentError.invalidAttachmentType } } } -extension AttachmentViewModel { - static func createThumbnailForVideo(url: URL) -> UIImage? { - guard FileManager.default.fileExists(atPath: url.path) else { return nil } - let asset = AVURLAsset(url: url) - let assetImageGenerator = AVAssetImageGenerator(asset: asset) - assetImageGenerator.appliesPreferredTrackTransform = true // fix orientation - do { - let cgImage = try assetImageGenerator.copyCGImage(at: CMTimeMake(value: 0, timescale: 1), actualTime: nil) - let image = UIImage(cgImage: cgImage) - return image - } catch { - AttachmentViewModel.logger.log(level: .debug, "\((#file as NSString).lastPathComponent, privacy: .public)[\(#line, privacy: .public)], \(#function, privacy: .public): thumbnail generate fail: \(error.localizedDescription)") - return nil - } - } -} -// MARK: - TypeIdentifiedItemProvider -extension AttachmentViewModel: TypeIdentifiedItemProvider { - public static var typeIdentifier: String { - // must in UTI format - // https://developer.apple.com/library/archive/qa/qa1796/_index.html - return "com.twidere.AttachmentViewModel" - } -} -// MARK: - NSItemProviderWriting -extension AttachmentViewModel: NSItemProviderWriting { - - - /// Attachment uniform type idendifiers - /// - /// The latest one for in-app drag and drop. - /// And use generic `image` and `movie` type to - /// allows transformable media in different formats - public static var writableTypeIdentifiersForItemProvider: [String] { - return [ - UTType.image.identifier, - UTType.movie.identifier, - AttachmentViewModel.typeIdentifier, - ] - } - - public var writableTypeIdentifiersForItemProvider: [String] { - // should append elements in priority order from high to low - var typeIdentifiers: [String] = [] - - // FIXME: check jpg or png - switch input { - case .image: - typeIdentifiers.append(UTType.png.identifier) - case .url(let url): - let _uti = UTType(filenameExtension: url.pathExtension) - if let uti = _uti { - if uti.conforms(to: .image) { - typeIdentifiers.append(UTType.png.identifier) - } else if uti.conforms(to: .movie) { - typeIdentifiers.append(UTType.mpeg4Movie.identifier) - } - } - case .pickerResult(let item): - if item.itemProvider.isImage() { - typeIdentifiers.append(UTType.png.identifier) - } else if item.itemProvider.isMovie() { - typeIdentifiers.append(UTType.mpeg4Movie.identifier) - } - case .itemProvider(let itemProvider): - if itemProvider.isImage() { - typeIdentifiers.append(UTType.png.identifier) - } else if itemProvider.isMovie() { - typeIdentifiers.append(UTType.mpeg4Movie.identifier) - } - } - - typeIdentifiers.append(AttachmentViewModel.typeIdentifier) - - return typeIdentifiers - } - - public func loadData( - withTypeIdentifier typeIdentifier: String, - forItemProviderCompletionHandler completionHandler: @escaping (Data?, Error?) -> Void - ) -> Progress? { - switch typeIdentifier { - case AttachmentViewModel.typeIdentifier: - do { - let archiver = NSKeyedArchiver(requiringSecureCoding: false) - try archiver.encodeEncodable(id, forKey: NSKeyedArchiveRootObjectKey) - archiver.finishEncoding() - let data = archiver.encodedData - completionHandler(data, nil) - } catch { - assertionFailure() - completionHandler(nil, nil) - } - default: - break - } - - let loadingProgress = Progress(totalUnitCount: 100) - - Publishers.CombineLatest( - $output, - $error - ) - .sink { [weak self] output, error in - guard let self = self else { return } - - // continue when load completed - guard output != nil || error != nil else { return } - - switch output { - case .image(let data, _): - switch typeIdentifier { - case UTType.png.identifier: - loadingProgress.completedUnitCount = 100 - completionHandler(data, nil) - default: - completionHandler(nil, nil) - } - case .video(let url, _): - switch typeIdentifier { - case UTType.png.identifier: - let _image = AttachmentViewModel.createThumbnailForVideo(url: url) - let _data = _image?.pngData() - loadingProgress.completedUnitCount = 100 - completionHandler(_data, nil) - case UTType.mpeg4Movie.identifier: - let task = URLSession.shared.dataTask(with: url) { data, response, error in - completionHandler(data, error) - } - task.progress.observe(\.fractionCompleted) { progress, change in - loadingProgress.completedUnitCount = Int64(100 * progress.fractionCompleted) - } - .store(in: &self.observations) - task.resume() - default: - completionHandler(nil, nil) - } - case nil: - completionHandler(nil, error) - } - } - .store(in: &disposeBag) - - return loadingProgress - } - -} -extension NSItemProvider { - fileprivate func isImage() -> Bool { - return hasRepresentationConforming( - toTypeIdentifier: UTType.image.identifier, - fileOptions: [] - ) - } - - fileprivate func isMovie() -> Bool { - return hasRepresentationConforming( - toTypeIdentifier: UTType.movie.identifier, - fileOptions: [] - ) - } -} + diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewController.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewController.swift index 38efe8feb..b9fbab856 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewController.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewController.swift @@ -326,7 +326,11 @@ extension ComposeContentViewController: PHPickerViewControllerDelegate { picker.dismiss(animated: true, completion: nil) let attachmentViewModels: [AttachmentViewModel] = results.map { result in - AttachmentViewModel(authContext: viewModel.authContext, input: .pickerResult(result)) + AttachmentViewModel( + api: viewModel.context.apiService, + authContext: viewModel.authContext, + input: .pickerResult(result) + ) } viewModel.attachmentViewModels += attachmentViewModels } diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Publisher/MastodonStatusPublisher.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Publisher/MastodonStatusPublisher.swift index ea3be18a8..31568552c 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Publisher/MastodonStatusPublisher.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Publisher/MastodonStatusPublisher.swift @@ -119,13 +119,16 @@ extension MastodonStatusPublisher: StatusPublisher { progress.addChild(attachmentViewModel.progress, withPendingUnitCount: publishAttachmentTaskWeight) // upload media do { - let result = try await attachmentViewModel.upload(context: uploadContext) - guard case let .mastodon(response) = result else { - assertionFailure() - continue + guard let attachment = attachmentViewModel.uploadResult else { + // precondition: all media uploaded + throw AppError.badRequest } - let attachmentID = response.value.id - attachmentIDs.append(attachmentID) + attachmentIDs.append(attachment.id) + + // TODO: allow background upload + // let attachment = try await attachmentViewModel.upload(context: uploadContext) + // let attachmentID = attachment.id + // attachmentIDs.append(attachmentID) } catch { logger.log(level: .debug, "\((#file as NSString).lastPathComponent, privacy: .public)[\(#line, privacy: .public)], \(#function, privacy: .public): upload attachment fail: \(error.localizedDescription)") _state = .failure(error) diff --git a/MastodonSDK/Sources/MastodonUI/Vendor/VisualEffectView.swift b/MastodonSDK/Sources/MastodonUI/Vendor/VisualEffectView.swift new file mode 100644 index 000000000..fe89b0457 --- /dev/null +++ b/MastodonSDK/Sources/MastodonUI/Vendor/VisualEffectView.swift @@ -0,0 +1,15 @@ +// +// VisualEffectView.swift +// +// +// Created by MainasuK on 2022/11/8. +// + +import SwiftUI + +// ref: https://stackoverflow.com/a/59111492/3797903 +public struct VisualEffectView: UIViewRepresentable { + public var effect: UIVisualEffect? + public func makeUIView(context: UIViewRepresentableContext) -> UIVisualEffectView { UIVisualEffectView() } + public func updateUIView(_ uiView: UIVisualEffectView, context: UIViewRepresentableContext) { uiView.effect = effect } +} From b2d26078c10aaf9780e0ce05b3fa868c229e1ed2 Mon Sep 17 00:00:00 2001 From: Jed Fox Date: Tue, 8 Nov 2022 13:37:11 -0500 Subject: [PATCH 018/598] Update localization --- Localization/StringsConvertor/input/en.lproj/app.json | 4 ++-- Mastodon/Scene/Root/MainTab/MainTabBarController.swift | 3 +-- Mastodon/Scene/Root/Sidebar/SidebarViewModel.swift | 3 +-- .../Sources/MastodonLocalization/Generated/Strings.swift | 6 ++---- .../Resources/en.lproj/Localizable.strings | 2 +- 5 files changed, 7 insertions(+), 11 deletions(-) diff --git a/Localization/StringsConvertor/input/en.lproj/app.json b/Localization/StringsConvertor/input/en.lproj/app.json index a965b23ae..21c8ab481 100644 --- a/Localization/StringsConvertor/input/en.lproj/app.json +++ b/Localization/StringsConvertor/input/en.lproj/app.json @@ -676,9 +676,9 @@ } }, "account_list": { - "tab_bar_hint": "Current selected profile: %s. Double tap then hold to show account switcher", "dismiss_account_switcher": "Dismiss Account Switcher", - "add_account": "Add Account" + "add_account": "Add Account", + "switch_accounts": "Switch Accounts" }, "wizard": { "new_in_mastodon": "New in Mastodon", diff --git a/Mastodon/Scene/Root/MainTab/MainTabBarController.swift b/Mastodon/Scene/Root/MainTab/MainTabBarController.swift index d56a18aed..0eea7288e 100644 --- a/Mastodon/Scene/Root/MainTab/MainTabBarController.swift +++ b/Mastodon/Scene/Root/MainTab/MainTabBarController.swift @@ -309,8 +309,7 @@ extension MainTabBarController { } if let profileTabItem { profileTabItem.accessibilityCustomActions = [ - // TODO: i18n (scene.account_list.switch_accounts) - UIAccessibilityCustomAction(name: "Switch Accounts") { [weak self] _ in + UIAccessibilityCustomAction(name: L10n.Scene.AccountList.switchAccounts) { [weak self] _ in self?.showAccountSwitcher() return true } diff --git a/Mastodon/Scene/Root/Sidebar/SidebarViewModel.swift b/Mastodon/Scene/Root/Sidebar/SidebarViewModel.swift index 97284e7b8..2a8082e47 100644 --- a/Mastodon/Scene/Root/Sidebar/SidebarViewModel.swift +++ b/Mastodon/Scene/Root/Sidebar/SidebarViewModel.swift @@ -136,8 +136,7 @@ extension SidebarViewModel { case .me: if self.authContext?.mastodonAuthenticationBox.authenticationRecord.object(in: self.context.managedObjectContext)?.user != nil { cell.accessibilityCustomActions = [ - // TODO: i18n (scene.account_list.switch_accounts) - UIAccessibilityCustomAction(name: "Switch Accounts") { [weak self] _ in + UIAccessibilityCustomAction(name: L10n.Scene.AccountList.switchAccounts) { [weak self] _ in guard let self, let delegate = self.delegate else { return false } delegate.sidebarViewModelDidSwitchAccounts(self) return true diff --git a/MastodonSDK/Sources/MastodonLocalization/Generated/Strings.swift b/MastodonSDK/Sources/MastodonLocalization/Generated/Strings.swift index 52ed59c09..00c3747d7 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Generated/Strings.swift +++ b/MastodonSDK/Sources/MastodonLocalization/Generated/Strings.swift @@ -406,10 +406,8 @@ public enum L10n { public static let addAccount = L10n.tr("Localizable", "Scene.AccountList.AddAccount") /// Dismiss Account Switcher public static let dismissAccountSwitcher = L10n.tr("Localizable", "Scene.AccountList.DismissAccountSwitcher") - /// Current selected profile: %@. Double tap then hold to show account switcher - public static func tabBarHint(_ p1: Any) -> String { - return L10n.tr("Localizable", "Scene.AccountList.TabBarHint", String(describing: p1)) - } + /// Switch Accounts + public static let switchAccounts = L10n.tr("Localizable", "Scene.AccountList.SwitchAccounts") } public enum Bookmark { /// Your Bookmarks diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/en.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/en.lproj/Localizable.strings index 6917eb0c7..f54ea8442 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/en.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/en.lproj/Localizable.strings @@ -153,7 +153,7 @@ Your profile looks like this to them."; "Common.Controls.Timeline.Timestamp.Now" = "Now"; "Scene.AccountList.AddAccount" = "Add Account"; "Scene.AccountList.DismissAccountSwitcher" = "Dismiss Account Switcher"; -"Scene.AccountList.TabBarHint" = "Current selected profile: %@. Double tap then hold to show account switcher"; +"Scene.AccountList.SwitchAccounts" = "Switch Accounts"; "Scene.Bookmark.Title" = "Your Bookmarks"; "Scene.Compose.Accessibility.AppendAttachment" = "Add Attachment"; "Scene.Compose.Accessibility.AppendPoll" = "Add Poll"; From 60b69ca2e539a86d0e8f6ffee40655f0e74c57e3 Mon Sep 17 00:00:00 2001 From: Jed Fox Date: Tue, 8 Nov 2022 13:50:23 -0500 Subject: [PATCH 019/598] Add real localization keys --- Localization/Localizable.stringsdict | 14 +++++++----- .../input/en.lproj/Localizable.stringsdict | 22 +++++++++++++++++++ .../StringsConvertor/input/en.lproj/app.json | 4 +++- .../Generated/Strings.swift | 10 +++++++++ .../Resources/en.lproj/Localizable.strings | 2 ++ .../en.lproj/Localizable.stringsdict | 22 +++++++++++++++++++ .../View/ComposeContentToolbarView.swift | 6 ++--- .../View/ComposeContentView.swift | 3 +-- 8 files changed, 70 insertions(+), 13 deletions(-) diff --git a/Localization/Localizable.stringsdict b/Localization/Localizable.stringsdict index 46b79deb2..cd97825f4 100644 --- a/Localization/Localizable.stringsdict +++ b/Localization/Localizable.stringsdict @@ -71,21 +71,23 @@ a11y.plural.count.characters_left NSStringLocalizedFormatKey - %#@character_count@ + %#@character_count@ left character_count NSStringFormatSpecTypeKey NSStringPluralRuleType + NSStringFormatValueTypeKey + ld zero - no characters left + no characters one - 1 character left + 1 character few - %ld characters left + %ld characters many - %ld characters left + %ld characters other - %ld characters left + %ld characters plural.count.followed_by_and_mutual diff --git a/Localization/StringsConvertor/input/en.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/en.lproj/Localizable.stringsdict index bdcae6ac9..297e6675a 100644 --- a/Localization/StringsConvertor/input/en.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/en.lproj/Localizable.stringsdict @@ -50,6 +50,28 @@ %ld characters + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + %#@character_count@ left + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + zero + no characters + one + 1 character + few + %ld characters + many + %ld characters + other + %ld characters + + plural.count.followed_by_and_mutual NSStringLocalizedFormatKey diff --git a/Localization/StringsConvertor/input/en.lproj/app.json b/Localization/StringsConvertor/input/en.lproj/app.json index a965b23ae..69b71b0e9 100644 --- a/Localization/StringsConvertor/input/en.lproj/app.json +++ b/Localization/StringsConvertor/input/en.lproj/app.json @@ -405,7 +405,9 @@ "custom_emoji_picker": "Custom Emoji Picker", "enable_content_warning": "Enable Content Warning", "disable_content_warning": "Disable Content Warning", - "post_visibility_menu": "Post Visibility Menu" + "post_visibility_menu": "Post Visibility Menu", + "post_options": "Post Options", + "posting_as": "Posting as %s" }, "keyboard": { "discard_post": "Discard Post", diff --git a/MastodonSDK/Sources/MastodonLocalization/Generated/Strings.swift b/MastodonSDK/Sources/MastodonLocalization/Generated/Strings.swift index 52ed59c09..d6a2d2579 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Generated/Strings.swift +++ b/MastodonSDK/Sources/MastodonLocalization/Generated/Strings.swift @@ -435,6 +435,12 @@ public enum L10n { public static let disableContentWarning = L10n.tr("Localizable", "Scene.Compose.Accessibility.DisableContentWarning") /// Enable Content Warning public static let enableContentWarning = L10n.tr("Localizable", "Scene.Compose.Accessibility.EnableContentWarning") + /// Posting as %@ + public static func postingAs(_ p1: Any) -> String { + return L10n.tr("Localizable", "Scene.Compose.Accessibility.PostingAs", String(describing: p1)) + } + /// Post Options + public static let postOptions = L10n.tr("Localizable", "Scene.Compose.Accessibility.PostOptions") /// Post Visibility Menu public static let postVisibilityMenu = L10n.tr("Localizable", "Scene.Compose.Accessibility.PostVisibilityMenu") /// Remove Poll @@ -1262,6 +1268,10 @@ public enum L10n { public enum A11y { public enum Plural { public enum Count { + /// Plural format key: "%#@character_count@ left" + public static func charactersLeft(_ p1: Int) -> String { + return L10n.tr("Localizable", "a11y.plural.count.characters_left", p1) + } /// Plural format key: "Input limit exceeds %#@character_count@" public static func inputLimitExceeds(_ p1: Int) -> String { return L10n.tr("Localizable", "a11y.plural.count.input_limit_exceeds", p1) diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/en.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/en.lproj/Localizable.strings index 6917eb0c7..494d49fdc 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/en.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/en.lproj/Localizable.strings @@ -160,7 +160,9 @@ Your profile looks like this to them."; "Scene.Compose.Accessibility.CustomEmojiPicker" = "Custom Emoji Picker"; "Scene.Compose.Accessibility.DisableContentWarning" = "Disable Content Warning"; "Scene.Compose.Accessibility.EnableContentWarning" = "Enable Content Warning"; +"Scene.Compose.Accessibility.PostOptions" = "Post Options"; "Scene.Compose.Accessibility.PostVisibilityMenu" = "Post Visibility Menu"; +"Scene.Compose.Accessibility.PostingAs" = "Posting as %@"; "Scene.Compose.Accessibility.RemovePoll" = "Remove Poll"; "Scene.Compose.Attachment.AttachmentBroken" = "This %@ is broken and can’t be uploaded to Mastodon."; diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/en.lproj/Localizable.stringsdict b/MastodonSDK/Sources/MastodonLocalization/Resources/en.lproj/Localizable.stringsdict index bdcae6ac9..297e6675a 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/en.lproj/Localizable.stringsdict +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/en.lproj/Localizable.stringsdict @@ -50,6 +50,28 @@ %ld characters + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + %#@character_count@ left + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + zero + no characters + one + 1 character + few + %ld characters + many + %ld characters + other + %ld characters + + plural.count.followed_by_and_mutual NSStringLocalizedFormatKey diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentToolbarView.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentToolbarView.swift index ac1a56b20..b7f01e64a 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentToolbarView.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentToolbarView.swift @@ -87,16 +87,14 @@ struct ComposeContentToolbarView: View { Text("\(remains)") .foregroundColor(Color(isOverflow ? UIColor.systemRed : UIColor.secondaryLabel)) .font(.system(size: isOverflow ? 18 : 16, weight: isOverflow ? .medium : .regular)) - // TODO: i18n (a11y.plural.count.characters_left) - .accessibilityLabel("\(remains) characters left") + .accessibilityLabel(L10n.A11y.Plural.Count.charactersLeft(remains)) } .padding(.leading, 4) // 4 + 12 = 16 .padding(.trailing, 16) .frame(height: ComposeContentToolbarView.toolbarHeight) .background(Color(viewModel.backgroundColor)) .accessibilityElement(children: .contain) - // TODO: i18n (scene.compose.accessibility.post_options) - .accessibilityLabel("Post Options") + .accessibilityLabel(L10n.Scene.Compose.Accessibility.postOptions) } } diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentView.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentView.swift index b48f4e060..98b55018f 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentView.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentView.swift @@ -148,8 +148,7 @@ extension ComposeContentView { Spacer() } .accessibilityElement(children: .ignore) - // TODO: i18n (scene.compose.accessibility.posting_as) - .accessibilityLabel("Posting as \([viewModel.name.string, viewModel.username].joined(separator: ", "))") + .accessibilityLabel(L10n.Scene.Compose.Accessibility.postingAs([viewModel.name.string, viewModel.username].joined(separator: ", "))) } } From 1a4f8b795eb1376033e58296edb3d8ca08621086 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 08:27:54 +0100 Subject: [PATCH 020/598] New translations app.json (Catalan) --- Localization/StringsConvertor/input/ca.lproj/app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/ca.lproj/app.json b/Localization/StringsConvertor/input/ca.lproj/app.json index 4766eb31b..79ec14f07 100644 --- a/Localization/StringsConvertor/input/ca.lproj/app.json +++ b/Localization/StringsConvertor/input/ca.lproj/app.json @@ -696,7 +696,7 @@ "accessibility_hint": "Toca dues vegades per descartar l'assistent" }, "bookmark": { - "title": "Bookmarks" + "title": "Marcadors" } } } From 015698dcd677e3ab2fed0d20aac6675296b49dc8 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 09:28:19 +0100 Subject: [PATCH 021/598] New translations app.json (Italian) --- Localization/StringsConvertor/input/it.lproj/app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/it.lproj/app.json b/Localization/StringsConvertor/input/it.lproj/app.json index 269d299ec..be98dfda8 100644 --- a/Localization/StringsConvertor/input/it.lproj/app.json +++ b/Localization/StringsConvertor/input/it.lproj/app.json @@ -696,7 +696,7 @@ "accessibility_hint": "Doppio tocco per eliminare questa procedura guidata" }, "bookmark": { - "title": "Bookmarks" + "title": "Segnalibri" } } } From 953b28bdc63f7ec4ecbe982b78c7c8c85b0ba77a Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 10:34:00 +0100 Subject: [PATCH 022/598] New translations app.json (Chinese Traditional) --- Localization/StringsConvertor/input/zh-Hant.lproj/app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/zh-Hant.lproj/app.json b/Localization/StringsConvertor/input/zh-Hant.lproj/app.json index ae497109e..b8e124a5e 100644 --- a/Localization/StringsConvertor/input/zh-Hant.lproj/app.json +++ b/Localization/StringsConvertor/input/zh-Hant.lproj/app.json @@ -696,7 +696,7 @@ "accessibility_hint": "點兩下以關閉此設定精靈" }, "bookmark": { - "title": "Bookmarks" + "title": "書籤" } } } From 4a07cc8a5060fd7fdacaa8113b873a54f39241bb Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 12:23:33 +0100 Subject: [PATCH 023/598] New translations app.json (Galician) --- .../StringsConvertor/input/gl.lproj/app.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Localization/StringsConvertor/input/gl.lproj/app.json b/Localization/StringsConvertor/input/gl.lproj/app.json index 513573f79..8385e6c4a 100644 --- a/Localization/StringsConvertor/input/gl.lproj/app.json +++ b/Localization/StringsConvertor/input/gl.lproj/app.json @@ -181,8 +181,8 @@ "unmute_user": "Deixar de acalar a @%s", "muted": "Acalada", "edit_info": "Editar info", - "show_reblogs": "Show Reblogs", - "hide_reblogs": "Hide Reblogs" + "show_reblogs": "Mostrar Promocións", + "hide_reblogs": "Agochar Promocións" }, "timeline": { "filtered": "Filtrado", @@ -459,12 +459,12 @@ "message": "Confirma o desbloqueo de %s" }, "confirm_show_reblogs": { - "title": "Show Reblogs", - "message": "Confirm to show reblogs" + "title": "Mostrar Promocións", + "message": "Confirma para ver promocións" }, "confirm_hide_reblogs": { - "title": "Hide Reblogs", - "message": "Confirm to hide reblogs" + "title": "Agochar Promocións", + "message": "Confirma para agochar promocións" } }, "accessibility": { @@ -696,7 +696,7 @@ "accessibility_hint": "Dobre toque para desbotar este asistente" }, "bookmark": { - "title": "Bookmarks" + "title": "Marcadores" } } } From 1425f348283de31e5bb8b2ca715944fc7b0d54b7 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 15:19:18 +0100 Subject: [PATCH 024/598] New translations app.json (Vietnamese) --- Localization/StringsConvertor/input/vi.lproj/app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/vi.lproj/app.json b/Localization/StringsConvertor/input/vi.lproj/app.json index b857399b3..082091a4c 100644 --- a/Localization/StringsConvertor/input/vi.lproj/app.json +++ b/Localization/StringsConvertor/input/vi.lproj/app.json @@ -696,7 +696,7 @@ "accessibility_hint": "Nhấn hai lần để bỏ qua" }, "bookmark": { - "title": "Bookmarks" + "title": "Tút đã lưu" } } } From d173ceb8c3f80b3ea7cf55693163bc0c4237ba76 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 15:19:19 +0100 Subject: [PATCH 025/598] New translations app.json (Swedish) --- Localization/StringsConvertor/input/sv.lproj/app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/sv.lproj/app.json b/Localization/StringsConvertor/input/sv.lproj/app.json index 85f243b03..f1c2bf0ff 100644 --- a/Localization/StringsConvertor/input/sv.lproj/app.json +++ b/Localization/StringsConvertor/input/sv.lproj/app.json @@ -696,7 +696,7 @@ "accessibility_hint": "Dubbeltryck för att avvisa den här guiden" }, "bookmark": { - "title": "Bookmarks" + "title": "Bokmärken" } } } From 02ceccf33be169e6ba231805826aa8c749ad99ae Mon Sep 17 00:00:00 2001 From: Jed Fox Date: Wed, 9 Nov 2022 09:45:55 -0500 Subject: [PATCH 026/598] Add accessibility labels to the profile navigation bar --- Mastodon/Scene/Profile/ProfileViewController.swift | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Mastodon/Scene/Profile/ProfileViewController.swift b/Mastodon/Scene/Profile/ProfileViewController.swift index 3ce1fd33a..b1cc573aa 100644 --- a/Mastodon/Scene/Profile/ProfileViewController.swift +++ b/Mastodon/Scene/Profile/ProfileViewController.swift @@ -51,6 +51,7 @@ final class ProfileViewController: UIViewController, NeedsDependency, MediaPrevi action: #selector(ProfileViewController.settingBarButtonItemPressed(_:)) ) barButtonItem.tintColor = .white + barButtonItem.accessibilityLabel = L10n.Common.Controls.Actions.settings return barButtonItem }() @@ -62,6 +63,7 @@ final class ProfileViewController: UIViewController, NeedsDependency, MediaPrevi action: #selector(ProfileViewController.shareBarButtonItemPressed(_:)) ) barButtonItem.tintColor = .white + barButtonItem.accessibilityLabel = L10n.Common.Controls.Actions.share return barButtonItem }() @@ -73,6 +75,7 @@ final class ProfileViewController: UIViewController, NeedsDependency, MediaPrevi action: #selector(ProfileViewController.favoriteBarButtonItemPressed(_:)) ) barButtonItem.tintColor = .white + barButtonItem.accessibilityLabel = L10n.Scene.Favorite.title return barButtonItem }() @@ -84,18 +87,21 @@ final class ProfileViewController: UIViewController, NeedsDependency, MediaPrevi action: #selector(ProfileViewController.bookmarkBarButtonItemPressed(_:)) ) barButtonItem.tintColor = .white + barButtonItem.accessibilityLabel = L10n.Scene.Bookmark.title return barButtonItem }() private(set) lazy var replyBarButtonItem: UIBarButtonItem = { let barButtonItem = UIBarButtonItem(image: UIImage(systemName: "arrowshape.turn.up.left"), style: .plain, target: self, action: #selector(ProfileViewController.replyBarButtonItemPressed(_:))) barButtonItem.tintColor = .white + barButtonItem.accessibilityLabel = L10n.Common.Controls.Actions.reply return barButtonItem }() let moreMenuBarButtonItem: UIBarButtonItem = { let barButtonItem = UIBarButtonItem(image: UIImage(systemName: "ellipsis.circle"), style: .plain, target: nil, action: nil) barButtonItem.tintColor = .white + barButtonItem.accessibilityLabel = L10n.Common.Controls.Actions.seeMore return barButtonItem }() From 1aaa0e827e5564f7ad399c962fe51121e4c4a97b Mon Sep 17 00:00:00 2001 From: treeshateorcs Date: Wed, 9 Nov 2022 20:20:16 +0500 Subject: [PATCH 027/598] make sure you have rosetta installed on m1 mac --- Documentation/Setup.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/Setup.md b/Documentation/Setup.md index ecb518a59..c7130a091 100644 --- a/Documentation/Setup.md +++ b/Documentation/Setup.md @@ -12,7 +12,7 @@ Install the latest version of Xcode from the App Store or Apple Developer Downlo This guide may not suit your machine and actually setup procedure may change in the future. Please file the issue or Pull Request if there are any problems. ## CocoaPods -The app use [CocoaPods]() and [Arkana](https://github.com/rogerluan/arkana). Ruby Gems are managed through Bundler. The M1 Mac needs virtual ruby env to workaround compatibility issues. +The app use [CocoaPods]() and [Arkana](https://github.com/rogerluan/arkana). Ruby Gems are managed through Bundler. The M1 Mac needs virtual ruby env to workaround compatibility issues. Make sure you have Rosetta installed if you are on the M1 Mac. #### Intel Mac From a4f6fea0bf24b16b4b4f897e864d2605814a8f49 Mon Sep 17 00:00:00 2001 From: treeshateorcs Date: Wed, 9 Nov 2022 20:23:45 +0500 Subject: [PATCH 028/598] edit grammar --- Documentation/Setup.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/Setup.md b/Documentation/Setup.md index c7130a091..bb41f2c02 100644 --- a/Documentation/Setup.md +++ b/Documentation/Setup.md @@ -12,7 +12,7 @@ Install the latest version of Xcode from the App Store or Apple Developer Downlo This guide may not suit your machine and actually setup procedure may change in the future. Please file the issue or Pull Request if there are any problems. ## CocoaPods -The app use [CocoaPods]() and [Arkana](https://github.com/rogerluan/arkana). Ruby Gems are managed through Bundler. The M1 Mac needs virtual ruby env to workaround compatibility issues. Make sure you have Rosetta installed if you are on the M1 Mac. +The app use [CocoaPods]() and [Arkana](https://github.com/rogerluan/arkana). Ruby Gems are managed through Bundler. The M1 Mac needs virtual ruby env to workaround compatibility issues. Make sure you have Rosetta installed if you are using the M1 Mac. #### Intel Mac From 306b611887dff07da804b1274685a73f9d9cfd9d Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 16:35:57 +0100 Subject: [PATCH 029/598] New translations app.json (Slovenian) --- Localization/StringsConvertor/input/sl.lproj/app.json | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/sl.lproj/app.json b/Localization/StringsConvertor/input/sl.lproj/app.json index 99a823feb..d5b594032 100644 --- a/Localization/StringsConvertor/input/sl.lproj/app.json +++ b/Localization/StringsConvertor/input/sl.lproj/app.json @@ -136,6 +136,12 @@ "vote": "Glasuj", "closed": "Zaprto" }, + "meta_entity": { + "url": "Link: %s", + "hashtag": "Hastag %s", + "mention": "Show Profile: %s", + "email": "Email address: %s" + }, "actions": { "reply": "Odgovori", "reblog": "Poobjavi", @@ -696,7 +702,7 @@ "accessibility_hint": "Dvakrat tapnite, da zapustite tega čarovnika" }, "bookmark": { - "title": "Bookmarks" + "title": "Zaznamki" } } } From bb5384ee0a6897be5121ff473b22d4002e5c37f6 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 16:36:00 +0100 Subject: [PATCH 030/598] New translations app.json (Indonesian) --- Localization/StringsConvertor/input/id.lproj/app.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Localization/StringsConvertor/input/id.lproj/app.json b/Localization/StringsConvertor/input/id.lproj/app.json index 607e9a638..b0c8aaa4d 100644 --- a/Localization/StringsConvertor/input/id.lproj/app.json +++ b/Localization/StringsConvertor/input/id.lproj/app.json @@ -136,6 +136,12 @@ "vote": "Vote", "closed": "Ditutup" }, + "meta_entity": { + "url": "Link: %s", + "hashtag": "Hastag %s", + "mention": "Show Profile: %s", + "email": "Email address: %s" + }, "actions": { "reply": "Balas", "reblog": "Reblog", From 199191f49b1aab800670b139ce485e5df289b133 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 16:36:01 +0100 Subject: [PATCH 031/598] New translations app.json (Portuguese) --- Localization/StringsConvertor/input/pt.lproj/app.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Localization/StringsConvertor/input/pt.lproj/app.json b/Localization/StringsConvertor/input/pt.lproj/app.json index 80b0882d9..8867385e2 100644 --- a/Localization/StringsConvertor/input/pt.lproj/app.json +++ b/Localization/StringsConvertor/input/pt.lproj/app.json @@ -136,6 +136,12 @@ "vote": "Vote", "closed": "Closed" }, + "meta_entity": { + "url": "Link: %s", + "hashtag": "Hastag %s", + "mention": "Show Profile: %s", + "email": "Email address: %s" + }, "actions": { "reply": "Reply", "reblog": "Reblog", From 51687dd60071423aa0d301637bcda57c586fc705 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 16:36:02 +0100 Subject: [PATCH 032/598] New translations app.json (Russian) --- Localization/StringsConvertor/input/ru.lproj/app.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Localization/StringsConvertor/input/ru.lproj/app.json b/Localization/StringsConvertor/input/ru.lproj/app.json index 7a4833554..da7ac82b0 100644 --- a/Localization/StringsConvertor/input/ru.lproj/app.json +++ b/Localization/StringsConvertor/input/ru.lproj/app.json @@ -136,6 +136,12 @@ "vote": "Проголосовать", "closed": "Завершён" }, + "meta_entity": { + "url": "Link: %s", + "hashtag": "Hastag %s", + "mention": "Show Profile: %s", + "email": "Email address: %s" + }, "actions": { "reply": "Ответить", "reblog": "Продвинуть", From 5e16710cd89043a71fc023165bba4bf5b8680eb0 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 16:36:03 +0100 Subject: [PATCH 033/598] New translations app.json (Chinese Simplified) --- Localization/StringsConvertor/input/zh-Hans.lproj/app.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Localization/StringsConvertor/input/zh-Hans.lproj/app.json b/Localization/StringsConvertor/input/zh-Hans.lproj/app.json index 7f3703b8a..36e3925b7 100644 --- a/Localization/StringsConvertor/input/zh-Hans.lproj/app.json +++ b/Localization/StringsConvertor/input/zh-Hans.lproj/app.json @@ -136,6 +136,12 @@ "vote": "投票", "closed": "已关闭" }, + "meta_entity": { + "url": "Link: %s", + "hashtag": "Hastag %s", + "mention": "Show Profile: %s", + "email": "Email address: %s" + }, "actions": { "reply": "回复", "reblog": "转发", From c709ae0b8a3c7dd8ad6797d15d5c173582f03182 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 16:36:04 +0100 Subject: [PATCH 034/598] New translations app.json (English) --- Localization/StringsConvertor/input/en.lproj/app.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Localization/StringsConvertor/input/en.lproj/app.json b/Localization/StringsConvertor/input/en.lproj/app.json index 80b0882d9..8867385e2 100644 --- a/Localization/StringsConvertor/input/en.lproj/app.json +++ b/Localization/StringsConvertor/input/en.lproj/app.json @@ -136,6 +136,12 @@ "vote": "Vote", "closed": "Closed" }, + "meta_entity": { + "url": "Link: %s", + "hashtag": "Hastag %s", + "mention": "Show Profile: %s", + "email": "Email address: %s" + }, "actions": { "reply": "Reply", "reblog": "Reblog", From a055cffd5212f338b94503dea49ea4867f8300e4 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 16:36:06 +0100 Subject: [PATCH 035/598] New translations app.json (Galician) --- Localization/StringsConvertor/input/gl.lproj/app.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Localization/StringsConvertor/input/gl.lproj/app.json b/Localization/StringsConvertor/input/gl.lproj/app.json index 8385e6c4a..9c5e737d8 100644 --- a/Localization/StringsConvertor/input/gl.lproj/app.json +++ b/Localization/StringsConvertor/input/gl.lproj/app.json @@ -136,6 +136,12 @@ "vote": "Votar", "closed": "Pechada" }, + "meta_entity": { + "url": "Link: %s", + "hashtag": "Hastag %s", + "mention": "Show Profile: %s", + "email": "Email address: %s" + }, "actions": { "reply": "Responder", "reblog": "Promover", From d1c384fc4e12c370e7f21a8383168208098492b3 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 16:36:07 +0100 Subject: [PATCH 036/598] New translations app.json (Portuguese, Brazilian) --- Localization/StringsConvertor/input/pt-BR.lproj/app.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Localization/StringsConvertor/input/pt-BR.lproj/app.json b/Localization/StringsConvertor/input/pt-BR.lproj/app.json index 063ed346c..56656321c 100644 --- a/Localization/StringsConvertor/input/pt-BR.lproj/app.json +++ b/Localization/StringsConvertor/input/pt-BR.lproj/app.json @@ -136,6 +136,12 @@ "vote": "Vote", "closed": "Closed" }, + "meta_entity": { + "url": "Link: %s", + "hashtag": "Hastag %s", + "mention": "Show Profile: %s", + "email": "Email address: %s" + }, "actions": { "reply": "Responder", "reblog": "Reblog", From 25054e3c318ec684f80a55f56deeb3f682f501a6 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 16:36:08 +0100 Subject: [PATCH 037/598] New translations app.json (Spanish, Argentina) --- Localization/StringsConvertor/input/es-AR.lproj/app.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Localization/StringsConvertor/input/es-AR.lproj/app.json b/Localization/StringsConvertor/input/es-AR.lproj/app.json index 62d439a3c..deedf1933 100644 --- a/Localization/StringsConvertor/input/es-AR.lproj/app.json +++ b/Localization/StringsConvertor/input/es-AR.lproj/app.json @@ -136,6 +136,12 @@ "vote": "Votar", "closed": "Cerrada" }, + "meta_entity": { + "url": "Link: %s", + "hashtag": "Hastag %s", + "mention": "Show Profile: %s", + "email": "Email address: %s" + }, "actions": { "reply": "Responder", "reblog": "Adherir", From a39159605fd059a01ff90eb82018367ad1077c2b Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 16:36:09 +0100 Subject: [PATCH 038/598] New translations app.json (Japanese) --- Localization/StringsConvertor/input/ja.lproj/app.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Localization/StringsConvertor/input/ja.lproj/app.json b/Localization/StringsConvertor/input/ja.lproj/app.json index b7615abf3..1be96cb77 100644 --- a/Localization/StringsConvertor/input/ja.lproj/app.json +++ b/Localization/StringsConvertor/input/ja.lproj/app.json @@ -136,6 +136,12 @@ "vote": "投票", "closed": "終了" }, + "meta_entity": { + "url": "Link: %s", + "hashtag": "Hastag %s", + "mention": "Show Profile: %s", + "email": "Email address: %s" + }, "actions": { "reply": "返信", "reblog": "ブースト", From 04bd669fb6b4767e66bd0148e52c3083b57096b8 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 16:36:10 +0100 Subject: [PATCH 039/598] New translations app.json (Thai) --- Localization/StringsConvertor/input/th.lproj/app.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Localization/StringsConvertor/input/th.lproj/app.json b/Localization/StringsConvertor/input/th.lproj/app.json index 763b827cd..ee0e6e8b2 100644 --- a/Localization/StringsConvertor/input/th.lproj/app.json +++ b/Localization/StringsConvertor/input/th.lproj/app.json @@ -136,6 +136,12 @@ "vote": "ลงคะแนน", "closed": "ปิดแล้ว" }, + "meta_entity": { + "url": "Link: %s", + "hashtag": "Hastag %s", + "mention": "Show Profile: %s", + "email": "Email address: %s" + }, "actions": { "reply": "ตอบกลับ", "reblog": "ดัน", From d68266688cd548f2f965311c29178130687701ce Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 16:36:12 +0100 Subject: [PATCH 040/598] New translations app.json (Latvian) --- Localization/StringsConvertor/input/lv.lproj/app.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Localization/StringsConvertor/input/lv.lproj/app.json b/Localization/StringsConvertor/input/lv.lproj/app.json index 0051383db..5a854d5c4 100644 --- a/Localization/StringsConvertor/input/lv.lproj/app.json +++ b/Localization/StringsConvertor/input/lv.lproj/app.json @@ -136,6 +136,12 @@ "vote": "Balsot", "closed": "Aizvērts" }, + "meta_entity": { + "url": "Link: %s", + "hashtag": "Hastag %s", + "mention": "Show Profile: %s", + "email": "Email address: %s" + }, "actions": { "reply": "Atbildēt", "reblog": "Reblogot", From 659ec2fe1d7426ad2001c6ef78bb2cf02298c023 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 16:36:14 +0100 Subject: [PATCH 041/598] New translations app.json (Hindi) --- Localization/StringsConvertor/input/hi.lproj/app.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Localization/StringsConvertor/input/hi.lproj/app.json b/Localization/StringsConvertor/input/hi.lproj/app.json index d9ef32b3a..514961a44 100644 --- a/Localization/StringsConvertor/input/hi.lproj/app.json +++ b/Localization/StringsConvertor/input/hi.lproj/app.json @@ -136,6 +136,12 @@ "vote": "Vote", "closed": "Closed" }, + "meta_entity": { + "url": "Link: %s", + "hashtag": "Hastag %s", + "mention": "Show Profile: %s", + "email": "Email address: %s" + }, "actions": { "reply": "Reply", "reblog": "Reblog", From ca900401bcd9630d0b4c86aa76199eb865377d5e Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 16:36:15 +0100 Subject: [PATCH 042/598] New translations app.json (English, United States) --- Localization/StringsConvertor/input/en-US.lproj/app.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Localization/StringsConvertor/input/en-US.lproj/app.json b/Localization/StringsConvertor/input/en-US.lproj/app.json index 80b0882d9..8867385e2 100644 --- a/Localization/StringsConvertor/input/en-US.lproj/app.json +++ b/Localization/StringsConvertor/input/en-US.lproj/app.json @@ -136,6 +136,12 @@ "vote": "Vote", "closed": "Closed" }, + "meta_entity": { + "url": "Link: %s", + "hashtag": "Hastag %s", + "mention": "Show Profile: %s", + "email": "Email address: %s" + }, "actions": { "reply": "Reply", "reblog": "Reblog", From 666b655485f76bb6633abfaa8cef13133fbbb134 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 16:36:16 +0100 Subject: [PATCH 043/598] New translations app.json (Welsh) --- Localization/StringsConvertor/input/cy.lproj/app.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Localization/StringsConvertor/input/cy.lproj/app.json b/Localization/StringsConvertor/input/cy.lproj/app.json index bc7f75d96..00f09eca9 100644 --- a/Localization/StringsConvertor/input/cy.lproj/app.json +++ b/Localization/StringsConvertor/input/cy.lproj/app.json @@ -136,6 +136,12 @@ "vote": "Vote", "closed": "Closed" }, + "meta_entity": { + "url": "Link: %s", + "hashtag": "Hastag %s", + "mention": "Show Profile: %s", + "email": "Email address: %s" + }, "actions": { "reply": "Reply", "reblog": "Hybwch", From b7508792ec851ac7ff22b7aaf0b5f3c8ce8a8688 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 16:36:18 +0100 Subject: [PATCH 044/598] New translations app.json (Sinhala) --- Localization/StringsConvertor/input/si.lproj/app.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Localization/StringsConvertor/input/si.lproj/app.json b/Localization/StringsConvertor/input/si.lproj/app.json index f42e91ae1..c70c0f722 100644 --- a/Localization/StringsConvertor/input/si.lproj/app.json +++ b/Localization/StringsConvertor/input/si.lproj/app.json @@ -136,6 +136,12 @@ "vote": "ඡන්දය", "closed": "වසා ඇත" }, + "meta_entity": { + "url": "Link: %s", + "hashtag": "Hastag %s", + "mention": "Show Profile: %s", + "email": "Email address: %s" + }, "actions": { "reply": "පිළිතුරු", "reblog": "Reblog", From 85d953249237684c87451c310a94f964658c5063 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 16:36:19 +0100 Subject: [PATCH 045/598] New translations app.json (Kurmanji (Kurdish)) --- Localization/StringsConvertor/input/kmr.lproj/app.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Localization/StringsConvertor/input/kmr.lproj/app.json b/Localization/StringsConvertor/input/kmr.lproj/app.json index d48edf3ae..33c283fc7 100644 --- a/Localization/StringsConvertor/input/kmr.lproj/app.json +++ b/Localization/StringsConvertor/input/kmr.lproj/app.json @@ -136,6 +136,12 @@ "vote": "Deng bide", "closed": "Girtî" }, + "meta_entity": { + "url": "Link: %s", + "hashtag": "Hastag %s", + "mention": "Show Profile: %s", + "email": "Email address: %s" + }, "actions": { "reply": "Bersivê bide", "reblog": "Ji nû ve nivîsandin", From 4caa1b85da8bf93700e7ed03f72cadf2c384d93b Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 16:36:20 +0100 Subject: [PATCH 046/598] New translations app.json (Dutch) --- Localization/StringsConvertor/input/nl.lproj/app.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Localization/StringsConvertor/input/nl.lproj/app.json b/Localization/StringsConvertor/input/nl.lproj/app.json index 649fe5064..a94129fef 100644 --- a/Localization/StringsConvertor/input/nl.lproj/app.json +++ b/Localization/StringsConvertor/input/nl.lproj/app.json @@ -136,6 +136,12 @@ "vote": "Stemmen", "closed": "Gesloten" }, + "meta_entity": { + "url": "Link: %s", + "hashtag": "Hastag %s", + "mention": "Show Profile: %s", + "email": "Email address: %s" + }, "actions": { "reply": "Reageren", "reblog": "Delen", From 3a460fe5a1b73275ab092fb1193f56402224c910 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 16:36:21 +0100 Subject: [PATCH 047/598] New translations app.json (Italian) --- Localization/StringsConvertor/input/it.lproj/app.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Localization/StringsConvertor/input/it.lproj/app.json b/Localization/StringsConvertor/input/it.lproj/app.json index be98dfda8..dfbb2e9f9 100644 --- a/Localization/StringsConvertor/input/it.lproj/app.json +++ b/Localization/StringsConvertor/input/it.lproj/app.json @@ -136,6 +136,12 @@ "vote": "Vota", "closed": "Chiuso" }, + "meta_entity": { + "url": "Link: %s", + "hashtag": "Hastag %s", + "mention": "Show Profile: %s", + "email": "Email address: %s" + }, "actions": { "reply": "Rispondi", "reblog": "Condivisione", From d8773a4f4111e6a0f67ed99b611a8356f79d52f4 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 16:36:22 +0100 Subject: [PATCH 048/598] New translations app.json (Chinese Traditional) --- Localization/StringsConvertor/input/zh-Hant.lproj/app.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Localization/StringsConvertor/input/zh-Hant.lproj/app.json b/Localization/StringsConvertor/input/zh-Hant.lproj/app.json index b8e124a5e..041d0677c 100644 --- a/Localization/StringsConvertor/input/zh-Hant.lproj/app.json +++ b/Localization/StringsConvertor/input/zh-Hant.lproj/app.json @@ -136,6 +136,12 @@ "vote": "投票", "closed": "已關閉" }, + "meta_entity": { + "url": "Link: %s", + "hashtag": "Hastag %s", + "mention": "Show Profile: %s", + "email": "Email address: %s" + }, "actions": { "reply": "回覆", "reblog": "轉嘟", From def1c940b361fff06b58c333b8a3b473dd0fb4c2 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 16:36:24 +0100 Subject: [PATCH 049/598] New translations app.json (Ukrainian) --- Localization/StringsConvertor/input/uk.lproj/app.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Localization/StringsConvertor/input/uk.lproj/app.json b/Localization/StringsConvertor/input/uk.lproj/app.json index 80b0882d9..8867385e2 100644 --- a/Localization/StringsConvertor/input/uk.lproj/app.json +++ b/Localization/StringsConvertor/input/uk.lproj/app.json @@ -136,6 +136,12 @@ "vote": "Vote", "closed": "Closed" }, + "meta_entity": { + "url": "Link: %s", + "hashtag": "Hastag %s", + "mention": "Show Profile: %s", + "email": "Email address: %s" + }, "actions": { "reply": "Reply", "reblog": "Reblog", From 77a5d8e81df5131b7605430ee7e96bb972a8eb3f Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 16:36:25 +0100 Subject: [PATCH 050/598] New translations app.json (Vietnamese) --- Localization/StringsConvertor/input/vi.lproj/app.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Localization/StringsConvertor/input/vi.lproj/app.json b/Localization/StringsConvertor/input/vi.lproj/app.json index 082091a4c..0ae436884 100644 --- a/Localization/StringsConvertor/input/vi.lproj/app.json +++ b/Localization/StringsConvertor/input/vi.lproj/app.json @@ -136,6 +136,12 @@ "vote": "Bình chọn", "closed": "Kết thúc" }, + "meta_entity": { + "url": "Link: %s", + "hashtag": "Hastag %s", + "mention": "Show Profile: %s", + "email": "Email address: %s" + }, "actions": { "reply": "Trả lời", "reblog": "Đăng lại", From a1c6e815ae7564dbf3080e6a062086c0de13def7 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 16:36:26 +0100 Subject: [PATCH 051/598] New translations app.json (Kabyle) --- Localization/StringsConvertor/input/kab.lproj/app.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Localization/StringsConvertor/input/kab.lproj/app.json b/Localization/StringsConvertor/input/kab.lproj/app.json index 2cff3d68d..8fefef724 100644 --- a/Localization/StringsConvertor/input/kab.lproj/app.json +++ b/Localization/StringsConvertor/input/kab.lproj/app.json @@ -136,6 +136,12 @@ "vote": "Dɣeṛ", "closed": "Ifukk" }, + "meta_entity": { + "url": "Link: %s", + "hashtag": "Hastag %s", + "mention": "Show Profile: %s", + "email": "Email address: %s" + }, "actions": { "reply": "Err", "reblog": "Aɛiwed n usuffeɣ", From 952004e94938b69514c5146b27bec01fe50bd47e Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 16:36:28 +0100 Subject: [PATCH 052/598] New translations app.json (Korean) --- Localization/StringsConvertor/input/ko.lproj/app.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Localization/StringsConvertor/input/ko.lproj/app.json b/Localization/StringsConvertor/input/ko.lproj/app.json index bbb4d1dea..917487705 100644 --- a/Localization/StringsConvertor/input/ko.lproj/app.json +++ b/Localization/StringsConvertor/input/ko.lproj/app.json @@ -136,6 +136,12 @@ "vote": "투표", "closed": "마감" }, + "meta_entity": { + "url": "Link: %s", + "hashtag": "Hastag %s", + "mention": "Show Profile: %s", + "email": "Email address: %s" + }, "actions": { "reply": "답글", "reblog": "리블로그", From 8afa8bc7a22e2659b21c1ce15b7fd565afcfd2e2 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 16:36:29 +0100 Subject: [PATCH 053/598] New translations app.json (Swedish) --- Localization/StringsConvertor/input/sv.lproj/app.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Localization/StringsConvertor/input/sv.lproj/app.json b/Localization/StringsConvertor/input/sv.lproj/app.json index f1c2bf0ff..7451ab2f6 100644 --- a/Localization/StringsConvertor/input/sv.lproj/app.json +++ b/Localization/StringsConvertor/input/sv.lproj/app.json @@ -136,6 +136,12 @@ "vote": "Rösta", "closed": "Stängd" }, + "meta_entity": { + "url": "Länk: %s", + "hashtag": "Hashtagg %s", + "mention": "Visa profil: %s", + "email": "E-postadress: %s" + }, "actions": { "reply": "Svara", "reblog": "Puffa", From 3c654f0fb1ea04c9b8a38d4b941e79ee19484694 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 16:36:31 +0100 Subject: [PATCH 054/598] New translations app.json (French) --- Localization/StringsConvertor/input/fr.lproj/app.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Localization/StringsConvertor/input/fr.lproj/app.json b/Localization/StringsConvertor/input/fr.lproj/app.json index ed53d1096..dcd1d97ce 100644 --- a/Localization/StringsConvertor/input/fr.lproj/app.json +++ b/Localization/StringsConvertor/input/fr.lproj/app.json @@ -136,6 +136,12 @@ "vote": "Voter", "closed": "Fermé" }, + "meta_entity": { + "url": "Link: %s", + "hashtag": "Hastag %s", + "mention": "Show Profile: %s", + "email": "Email address: %s" + }, "actions": { "reply": "Répondre", "reblog": "Rebloguer", From 518b057feb367323d7829ea9091d9c0dcfeb9d56 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 16:36:32 +0100 Subject: [PATCH 055/598] New translations app.json (Turkish) --- Localization/StringsConvertor/input/tr.lproj/app.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Localization/StringsConvertor/input/tr.lproj/app.json b/Localization/StringsConvertor/input/tr.lproj/app.json index cef7fd7f4..ffe46c14e 100644 --- a/Localization/StringsConvertor/input/tr.lproj/app.json +++ b/Localization/StringsConvertor/input/tr.lproj/app.json @@ -136,6 +136,12 @@ "vote": "Oy ver", "closed": "Kapandı" }, + "meta_entity": { + "url": "Link: %s", + "hashtag": "Hastag %s", + "mention": "Show Profile: %s", + "email": "Email address: %s" + }, "actions": { "reply": "Yanıtla", "reblog": "Yeniden paylaş", From f44b3d5f3d0fe713611539eb2ff3c367478558e3 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 16:36:33 +0100 Subject: [PATCH 056/598] New translations app.json (Czech) --- Localization/StringsConvertor/input/cs.lproj/app.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Localization/StringsConvertor/input/cs.lproj/app.json b/Localization/StringsConvertor/input/cs.lproj/app.json index 550f71808..d4076758d 100644 --- a/Localization/StringsConvertor/input/cs.lproj/app.json +++ b/Localization/StringsConvertor/input/cs.lproj/app.json @@ -136,6 +136,12 @@ "vote": "Hlasovat", "closed": "Uzavřeno" }, + "meta_entity": { + "url": "Link: %s", + "hashtag": "Hastag %s", + "mention": "Show Profile: %s", + "email": "Email address: %s" + }, "actions": { "reply": "Odpovědět", "reblog": "Boostnout", From d98cf9a1b23ac673f8bfd221baef152da672a33f Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 16:36:34 +0100 Subject: [PATCH 057/598] New translations app.json (Scottish Gaelic) --- Localization/StringsConvertor/input/gd.lproj/app.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Localization/StringsConvertor/input/gd.lproj/app.json b/Localization/StringsConvertor/input/gd.lproj/app.json index a2062a89b..5d1611d6b 100644 --- a/Localization/StringsConvertor/input/gd.lproj/app.json +++ b/Localization/StringsConvertor/input/gd.lproj/app.json @@ -136,6 +136,12 @@ "vote": "Cuir bhòt", "closed": "Dùinte" }, + "meta_entity": { + "url": "Link: %s", + "hashtag": "Hastag %s", + "mention": "Show Profile: %s", + "email": "Email address: %s" + }, "actions": { "reply": "Freagair", "reblog": "Brosnaich", From 7053ff8eaa66b27410ae100884c688061341dadd Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 16:36:35 +0100 Subject: [PATCH 058/598] New translations app.json (Finnish) --- Localization/StringsConvertor/input/fi.lproj/app.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Localization/StringsConvertor/input/fi.lproj/app.json b/Localization/StringsConvertor/input/fi.lproj/app.json index d6210c4d5..383c5f0fe 100644 --- a/Localization/StringsConvertor/input/fi.lproj/app.json +++ b/Localization/StringsConvertor/input/fi.lproj/app.json @@ -136,6 +136,12 @@ "vote": "Vote", "closed": "Suljettu" }, + "meta_entity": { + "url": "Link: %s", + "hashtag": "Hastag %s", + "mention": "Show Profile: %s", + "email": "Email address: %s" + }, "actions": { "reply": "Vastaa", "reblog": "Jaa edelleen", From bbc73ffaabfcf6ca0f611386a50cb2be79cd2a80 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 16:36:36 +0100 Subject: [PATCH 059/598] New translations app.json (Romanian) --- Localization/StringsConvertor/input/ro.lproj/app.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Localization/StringsConvertor/input/ro.lproj/app.json b/Localization/StringsConvertor/input/ro.lproj/app.json index 8b9da0903..7173bfac9 100644 --- a/Localization/StringsConvertor/input/ro.lproj/app.json +++ b/Localization/StringsConvertor/input/ro.lproj/app.json @@ -136,6 +136,12 @@ "vote": "Vote", "closed": "Closed" }, + "meta_entity": { + "url": "Link: %s", + "hashtag": "Hastag %s", + "mention": "Show Profile: %s", + "email": "Email address: %s" + }, "actions": { "reply": "Reply", "reblog": "Reblog", From 5d3f62046a6affb078b24140f7cd44681cc0df7b Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 16:36:38 +0100 Subject: [PATCH 060/598] New translations app.json (Spanish) --- Localization/StringsConvertor/input/es.lproj/app.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Localization/StringsConvertor/input/es.lproj/app.json b/Localization/StringsConvertor/input/es.lproj/app.json index 39e0f37d1..48683a18e 100644 --- a/Localization/StringsConvertor/input/es.lproj/app.json +++ b/Localization/StringsConvertor/input/es.lproj/app.json @@ -136,6 +136,12 @@ "vote": "Vota", "closed": "Cerrado" }, + "meta_entity": { + "url": "Link: %s", + "hashtag": "Hastag %s", + "mention": "Show Profile: %s", + "email": "Email address: %s" + }, "actions": { "reply": "Responder", "reblog": "Rebloguear", From e4be7965936a8614d07709c7663515076b101910 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 16:36:39 +0100 Subject: [PATCH 061/598] New translations app.json (Arabic) --- Localization/StringsConvertor/input/ar.lproj/app.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Localization/StringsConvertor/input/ar.lproj/app.json b/Localization/StringsConvertor/input/ar.lproj/app.json index ce68229ac..aed90c72d 100644 --- a/Localization/StringsConvertor/input/ar.lproj/app.json +++ b/Localization/StringsConvertor/input/ar.lproj/app.json @@ -136,6 +136,12 @@ "vote": "صَوِّت", "closed": "انتهى" }, + "meta_entity": { + "url": "Link: %s", + "hashtag": "Hastag %s", + "mention": "Show Profile: %s", + "email": "Email address: %s" + }, "actions": { "reply": "الرَّد", "reblog": "إعادة النشر", From dd772a9bc8dad5bb9c801d2119e313edf6f510be Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 16:36:40 +0100 Subject: [PATCH 062/598] New translations app.json (Catalan) --- Localization/StringsConvertor/input/ca.lproj/app.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Localization/StringsConvertor/input/ca.lproj/app.json b/Localization/StringsConvertor/input/ca.lproj/app.json index 79ec14f07..b2915dec5 100644 --- a/Localization/StringsConvertor/input/ca.lproj/app.json +++ b/Localization/StringsConvertor/input/ca.lproj/app.json @@ -136,6 +136,12 @@ "vote": "Vota", "closed": "Finalitzada" }, + "meta_entity": { + "url": "Link: %s", + "hashtag": "Hastag %s", + "mention": "Show Profile: %s", + "email": "Email address: %s" + }, "actions": { "reply": "Respon", "reblog": "Impuls", From 248ff57f696be40773d89d9a4283bbf860e0e89e Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 16:36:41 +0100 Subject: [PATCH 063/598] New translations app.json (Danish) --- Localization/StringsConvertor/input/da.lproj/app.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Localization/StringsConvertor/input/da.lproj/app.json b/Localization/StringsConvertor/input/da.lproj/app.json index 80b0882d9..8867385e2 100644 --- a/Localization/StringsConvertor/input/da.lproj/app.json +++ b/Localization/StringsConvertor/input/da.lproj/app.json @@ -136,6 +136,12 @@ "vote": "Vote", "closed": "Closed" }, + "meta_entity": { + "url": "Link: %s", + "hashtag": "Hastag %s", + "mention": "Show Profile: %s", + "email": "Email address: %s" + }, "actions": { "reply": "Reply", "reblog": "Reblog", From 94a6fae5662aabb3cffd2c876745332a9521a678 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 16:36:43 +0100 Subject: [PATCH 064/598] New translations app.json (German) --- Localization/StringsConvertor/input/de.lproj/app.json | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/Localization/StringsConvertor/input/de.lproj/app.json b/Localization/StringsConvertor/input/de.lproj/app.json index 355bfcc1b..3643d89ba 100644 --- a/Localization/StringsConvertor/input/de.lproj/app.json +++ b/Localization/StringsConvertor/input/de.lproj/app.json @@ -136,6 +136,12 @@ "vote": "Abstimmen", "closed": "Beendet" }, + "meta_entity": { + "url": "Link: %s", + "hashtag": "Hastag %s", + "mention": "Show Profile: %s", + "email": "Email address: %s" + }, "actions": { "reply": "Antworten", "reblog": "Teilen", @@ -460,7 +466,7 @@ }, "confirm_show_reblogs": { "title": "Reblogs anzeigen", - "message": "Confirm to show reblogs" + "message": "Bestätigen um Reblogs anzuzeigen" }, "confirm_hide_reblogs": { "title": "Reblogs ausblenden", @@ -696,7 +702,7 @@ "accessibility_hint": "Doppeltippen, um diesen Assistenten zu schließen" }, "bookmark": { - "title": "Bookmarks" + "title": "Lesezeichen" } } } From a99c4d9a422c533a184f9163a8d1edd70b34e5ca Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 16:36:44 +0100 Subject: [PATCH 065/598] New translations app.json (Basque) --- Localization/StringsConvertor/input/eu.lproj/app.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Localization/StringsConvertor/input/eu.lproj/app.json b/Localization/StringsConvertor/input/eu.lproj/app.json index 5c2e16601..118c6a2ed 100644 --- a/Localization/StringsConvertor/input/eu.lproj/app.json +++ b/Localization/StringsConvertor/input/eu.lproj/app.json @@ -136,6 +136,12 @@ "vote": "Bozkatu", "closed": "Itxita" }, + "meta_entity": { + "url": "Link: %s", + "hashtag": "Hastag %s", + "mention": "Show Profile: %s", + "email": "Email address: %s" + }, "actions": { "reply": "Erantzun", "reblog": "Bultzada", From 14e32ce4864360a88d6e8bc1f3c15e6654b0c77a Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 16:36:46 +0100 Subject: [PATCH 066/598] New translations app.json (Sorani (Kurdish)) --- Localization/StringsConvertor/input/ckb.lproj/app.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Localization/StringsConvertor/input/ckb.lproj/app.json b/Localization/StringsConvertor/input/ckb.lproj/app.json index 49f72d7a3..312d4d1d0 100644 --- a/Localization/StringsConvertor/input/ckb.lproj/app.json +++ b/Localization/StringsConvertor/input/ckb.lproj/app.json @@ -136,6 +136,12 @@ "vote": "دەنگ بدە", "closed": "داخراوە" }, + "meta_entity": { + "url": "Link: %s", + "hashtag": "Hastag %s", + "mention": "Show Profile: %s", + "email": "Email address: %s" + }, "actions": { "reply": "وەڵامی بدەوە", "reblog": "پۆستی بکەوە", From d1bf623c7636371e02633dcf4bf6dd69c91f7668 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 18:02:06 +0100 Subject: [PATCH 067/598] New translations app.json (Slovenian) --- Localization/StringsConvertor/input/sl.lproj/app.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Localization/StringsConvertor/input/sl.lproj/app.json b/Localization/StringsConvertor/input/sl.lproj/app.json index d5b594032..d6c914dc7 100644 --- a/Localization/StringsConvertor/input/sl.lproj/app.json +++ b/Localization/StringsConvertor/input/sl.lproj/app.json @@ -137,10 +137,10 @@ "closed": "Zaprto" }, "meta_entity": { - "url": "Link: %s", - "hashtag": "Hastag %s", - "mention": "Show Profile: %s", - "email": "Email address: %s" + "url": "Povezava: %s", + "hashtag": "Ključnik %s", + "mention": "Pokaži profil: %s", + "email": "E-naslov: %s" }, "actions": { "reply": "Odgovori", From f98f1a1e7b37ccb10a1393bc82c445792183b902 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 18:02:07 +0100 Subject: [PATCH 068/598] New translations app.json (Chinese Traditional) --- .../StringsConvertor/input/zh-Hant.lproj/app.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Localization/StringsConvertor/input/zh-Hant.lproj/app.json b/Localization/StringsConvertor/input/zh-Hant.lproj/app.json index 041d0677c..6d154d039 100644 --- a/Localization/StringsConvertor/input/zh-Hant.lproj/app.json +++ b/Localization/StringsConvertor/input/zh-Hant.lproj/app.json @@ -137,10 +137,10 @@ "closed": "已關閉" }, "meta_entity": { - "url": "Link: %s", - "hashtag": "Hastag %s", - "mention": "Show Profile: %s", - "email": "Email address: %s" + "url": "連結:%s", + "hashtag": "主題標籤 %s", + "mention": "顯示個人檔案:%s", + "email": "電子郵件地址:%s" }, "actions": { "reply": "回覆", From 2fe0db17103a045f4e25aaaa7a615b763545b3f4 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 18:02:08 +0100 Subject: [PATCH 069/598] New translations app.json (Italian) --- Localization/StringsConvertor/input/it.lproj/app.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Localization/StringsConvertor/input/it.lproj/app.json b/Localization/StringsConvertor/input/it.lproj/app.json index dfbb2e9f9..601dff8b2 100644 --- a/Localization/StringsConvertor/input/it.lproj/app.json +++ b/Localization/StringsConvertor/input/it.lproj/app.json @@ -137,10 +137,10 @@ "closed": "Chiuso" }, "meta_entity": { - "url": "Link: %s", + "url": "Collegamento: %s", "hashtag": "Hastag %s", - "mention": "Show Profile: %s", - "email": "Email address: %s" + "mention": "Mostra il profilo: %s", + "email": "Indirizzo email: %s" }, "actions": { "reply": "Rispondi", From 5dc3eb2fb187f60bf8f25c206df905db50d81d35 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 19:16:33 +0100 Subject: [PATCH 070/598] New translations app.json (Catalan) --- Localization/StringsConvertor/input/ca.lproj/app.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Localization/StringsConvertor/input/ca.lproj/app.json b/Localization/StringsConvertor/input/ca.lproj/app.json index b2915dec5..45497e67d 100644 --- a/Localization/StringsConvertor/input/ca.lproj/app.json +++ b/Localization/StringsConvertor/input/ca.lproj/app.json @@ -137,10 +137,10 @@ "closed": "Finalitzada" }, "meta_entity": { - "url": "Link: %s", - "hashtag": "Hastag %s", - "mention": "Show Profile: %s", - "email": "Email address: %s" + "url": "Enllaç: %s", + "hashtag": "Etiqueta %s", + "mention": "Mostra el Perfil: %s", + "email": "Correu electrònic: %s" }, "actions": { "reply": "Respon", From 19af7d2a0b47dc3ac0a8e9cdc517746477714599 Mon Sep 17 00:00:00 2001 From: treeshateorcs Date: Wed, 9 Nov 2022 23:28:07 +0500 Subject: [PATCH 071/598] add link to apple documentation --- Documentation/Setup.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/Setup.md b/Documentation/Setup.md index bb41f2c02..4da3c41ca 100644 --- a/Documentation/Setup.md +++ b/Documentation/Setup.md @@ -12,7 +12,7 @@ Install the latest version of Xcode from the App Store or Apple Developer Downlo This guide may not suit your machine and actually setup procedure may change in the future. Please file the issue or Pull Request if there are any problems. ## CocoaPods -The app use [CocoaPods]() and [Arkana](https://github.com/rogerluan/arkana). Ruby Gems are managed through Bundler. The M1 Mac needs virtual ruby env to workaround compatibility issues. Make sure you have Rosetta installed if you are using the M1 Mac. +The app use [CocoaPods]() and [Arkana](https://github.com/rogerluan/arkana). Ruby Gems are managed through Bundler. The M1 Mac needs virtual ruby env to workaround compatibility issues. Make sure you have [Rosetta](https://support.apple.com/en-us/HT211861) installed if you are using the M1 Mac. #### Intel Mac From 8e7bdd4aec9ad020395f0c45ce9ee683249da46c Mon Sep 17 00:00:00 2001 From: Jed Fox Date: Wed, 9 Nov 2022 14:01:49 -0500 Subject: [PATCH 072/598] Allow content warning descriptions to be on multiple lines --- MastodonSDK/Sources/MastodonUI/Extension/MetaLabel.swift | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/MastodonSDK/Sources/MastodonUI/Extension/MetaLabel.swift b/MastodonSDK/Sources/MastodonUI/Extension/MetaLabel.swift index 22c05a969..3e2c6853c 100644 --- a/MastodonSDK/Sources/MastodonUI/Extension/MetaLabel.swift +++ b/MastodonSDK/Sources/MastodonUI/Extension/MetaLabel.swift @@ -66,7 +66,9 @@ extension MetaLabel { textColor = Asset.Colors.Label.primary.color textAlignment = .center paragraphStyle.alignment = .center - + numberOfLines = 0 + textContainer.maximumNumberOfLines = 0 + case .statusSpoilerBanner: font = UIFontMetrics(forTextStyle: .headline).scaledFont(for: .systemFont(ofSize: 17, weight: .regular)) textColor = Asset.Colors.Label.primary.color From baf62ec2004f30b9c1b0cebdc368af048d5a56be Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 20:14:08 +0100 Subject: [PATCH 073/598] New translations app.json (Thai) --- .../StringsConvertor/input/th.lproj/app.json | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/Localization/StringsConvertor/input/th.lproj/app.json b/Localization/StringsConvertor/input/th.lproj/app.json index ee0e6e8b2..d79534b38 100644 --- a/Localization/StringsConvertor/input/th.lproj/app.json +++ b/Localization/StringsConvertor/input/th.lproj/app.json @@ -137,10 +137,10 @@ "closed": "ปิดแล้ว" }, "meta_entity": { - "url": "Link: %s", + "url": "ลิงก์: %s", "hashtag": "Hastag %s", - "mention": "Show Profile: %s", - "email": "Email address: %s" + "mention": "โปรไฟล์ที่แสดง: %s", + "email": "ที่อยู่อีเมล: %s" }, "actions": { "reply": "ตอบกลับ", @@ -187,8 +187,8 @@ "unmute_user": "เลิกซ่อน %s", "muted": "ซ่อนอยู่", "edit_info": "แก้ไขข้อมูล", - "show_reblogs": "Show Reblogs", - "hide_reblogs": "Hide Reblogs" + "show_reblogs": "แสดงการดัน", + "hide_reblogs": "ซ่อนการดัน" }, "timeline": { "filtered": "กรองอยู่", @@ -465,12 +465,12 @@ "message": "ยืนยันเพื่อเลิกปิดกั้น %s" }, "confirm_show_reblogs": { - "title": "Show Reblogs", - "message": "Confirm to show reblogs" + "title": "แสดงการดัน", + "message": "ยืนยันเพื่อแสดงการดัน" }, "confirm_hide_reblogs": { - "title": "Hide Reblogs", - "message": "Confirm to hide reblogs" + "title": "ซ่อนการดัน", + "message": "ยืนยันเพื่อซ่อนการดัน" } }, "accessibility": { @@ -702,7 +702,7 @@ "accessibility_hint": "แตะสองครั้งเพื่อปิดตัวช่วยสร้างนี้" }, "bookmark": { - "title": "Bookmarks" + "title": "ที่คั่นหน้า" } } } From b22ea07bea81b6264cc30fd6f41956f4b979dede Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 21:10:16 +0100 Subject: [PATCH 074/598] New translations app.json (Italian) --- Localization/StringsConvertor/input/it.lproj/app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/it.lproj/app.json b/Localization/StringsConvertor/input/it.lproj/app.json index 601dff8b2..096deb444 100644 --- a/Localization/StringsConvertor/input/it.lproj/app.json +++ b/Localization/StringsConvertor/input/it.lproj/app.json @@ -138,7 +138,7 @@ }, "meta_entity": { "url": "Collegamento: %s", - "hashtag": "Hastag %s", + "hashtag": "Hashtag: %s", "mention": "Mostra il profilo: %s", "email": "Indirizzo email: %s" }, From 3af257d25ea15a2c74c339b4af1fa883c07b2ca9 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 21:10:17 +0100 Subject: [PATCH 075/598] New translations app.json (Thai) --- Localization/StringsConvertor/input/th.lproj/app.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Localization/StringsConvertor/input/th.lproj/app.json b/Localization/StringsConvertor/input/th.lproj/app.json index d79534b38..aa39586da 100644 --- a/Localization/StringsConvertor/input/th.lproj/app.json +++ b/Localization/StringsConvertor/input/th.lproj/app.json @@ -138,7 +138,7 @@ }, "meta_entity": { "url": "ลิงก์: %s", - "hashtag": "Hastag %s", + "hashtag": "แฮชแท็ก %s", "mention": "โปรไฟล์ที่แสดง: %s", "email": "ที่อยู่อีเมล: %s" }, @@ -221,7 +221,7 @@ "server_picker": { "title": "Mastodon ประกอบด้วยผู้ใช้ในเซิร์ฟเวอร์ต่าง ๆ", "subtitle": "เลือกเซิร์ฟเวอร์ตามความสนใจ, ภูมิภาค หรือวัตถุประสงค์ทั่วไปของคุณ", - "subtitle_extend": "เลือกเซิร์ฟเวอร์ตามความสนใจ, ภูมิภาค หรือวัตถุประสงค์ทั่วไปของคุณ แต่ละเซิร์ฟเวอร์ดำเนินการโดยองค์กรหรือบุคคลที่เป็นอิสระโดยสิ้นเชิง", + "subtitle_extend": "เลือกเซิร์ฟเวอร์ตามความสนใจ, ภูมิภาค หรือวัตถุประสงค์ทั่วไปของคุณ แต่ละเซิร์ฟเวอร์ได้รับการดำเนินงานโดยองค์กรหรือบุคคลที่เป็นอิสระโดยสิ้นเชิง", "button": { "category": { "all": "ทั้งหมด", From b3bc6dc273995d3e57d96c4c4624447a3099b907 Mon Sep 17 00:00:00 2001 From: Jed Fox Date: Wed, 9 Nov 2022 15:50:36 -0500 Subject: [PATCH 076/598] Add accessibility labels to notifications, only have 1 element per notification --- .../Content/NotificationView+ViewModel.swift | 46 +++++++++++++------ .../View/Content/NotificationView.swift | 9 ++++ .../View/Content/StatusView+ViewModel.swift | 14 +++--- 3 files changed, 49 insertions(+), 20 deletions(-) diff --git a/MastodonSDK/Sources/MastodonUI/View/Content/NotificationView+ViewModel.swift b/MastodonSDK/Sources/MastodonUI/View/Content/NotificationView+ViewModel.swift index d7ba51e17..524c92146 100644 --- a/MastodonSDK/Sources/MastodonUI/View/Content/NotificationView+ViewModel.swift +++ b/MastodonSDK/Sources/MastodonUI/View/Content/NotificationView+ViewModel.swift @@ -54,7 +54,7 @@ extension NotificationView.ViewModel { bindAuthor(notificationView: notificationView) bindAuthorMenu(notificationView: notificationView) bindFollowRequest(notificationView: notificationView) - + $authContext .assign(to: \.authContext, on: notificationView.statusView.viewModel) .store(in: &disposeBag) @@ -100,21 +100,20 @@ extension NotificationView.ViewModel { } .store(in: &disposeBag) // timestamp - Publishers.CombineLatest( + let formattedTimestamp = Publishers.CombineLatest( $timestamp, timestampUpdatePublisher.prepend(Date()).eraseToAnyPublisher() ) - .sink { [weak self] timestamp, _ in - guard let self = self else { return } - guard let timestamp = timestamp else { - notificationView.dateLabel.configure(content: PlaintextMetaContent(string: "")) - return - } - - let text = timestamp.localizedTimeAgoSinceNow - notificationView.dateLabel.configure(content: PlaintextMetaContent(string: text)) + .map { timestamp, _ in + timestamp?.localizedTimeAgoSinceNow ?? "" } - .store(in: &disposeBag) + + formattedTimestamp + .sink { timestamp in + notificationView.dateLabel.configure(content: PlaintextMetaContent(string: timestamp)) + } + .store(in: &disposeBag) + // notification type indicator $notificationIndicatorText .sink { text in @@ -125,6 +124,27 @@ extension NotificationView.ViewModel { } } .store(in: &disposeBag) + + Publishers.CombineLatest4( + $authorName, + $authorUsername, + $notificationIndicatorText, + formattedTimestamp + ) + .sink { name, username, type, timestamp in + notificationView.accessibilityLabel = [ + "\(name?.string ?? "") \(type?.string ?? "")", + username.map { "@\($0)" } ?? "", + timestamp + ].joined(separator: ", ") + if !notificationView.statusView.isHidden { + notificationView.accessibilityLabel! += ", " + (notificationView.statusView.accessibilityLabel ?? "") + } + if !notificationView.quoteStatusViewContainerView.isHidden { + notificationView.accessibilityLabel! += ", " + (notificationView.quoteStatusView.accessibilityLabel ?? "") + } + } + .store(in: &disposeBag) } private func bindAuthorMenu(notificationView: NotificationView) { @@ -207,5 +227,5 @@ extension NotificationView.ViewModel { } .store(in: &disposeBag) } - + } diff --git a/MastodonSDK/Sources/MastodonUI/View/Content/NotificationView.swift b/MastodonSDK/Sources/MastodonUI/View/Content/NotificationView.swift index e52422770..f6821dec7 100644 --- a/MastodonSDK/Sources/MastodonUI/View/Content/NotificationView.swift +++ b/MastodonSDK/Sources/MastodonUI/View/Content/NotificationView.swift @@ -382,6 +382,15 @@ extension NotificationView { statusView.delegate = self quoteStatusView.delegate = self + + isAccessibilityElement = true + } +} + +extension NotificationView { + public override var accessibilityElements: [Any]? { + get { [] } + set {} } } diff --git a/MastodonSDK/Sources/MastodonUI/View/Content/StatusView+ViewModel.swift b/MastodonSDK/Sources/MastodonUI/View/Content/StatusView+ViewModel.swift index 416226cbb..530294ea7 100644 --- a/MastodonSDK/Sources/MastodonUI/View/Content/StatusView+ViewModel.swift +++ b/MastodonSDK/Sources/MastodonUI/View/Content/StatusView+ViewModel.swift @@ -709,13 +709,13 @@ extension StatusView.ViewModel { meidaAccessibilityLabel ) .map { author, content, media in - let group = [ - author, - content, - media - ] - - return group + var labels: [String?] = [content, media] + + if statusView.style != .notification { + labels.insert(author, at: 0) + } + + return labels .compactMap { $0 } .joined(separator: ", ") } From ad3e8b46ea63438f3eaa3b3a64c3ee0469cd78f6 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 22:06:23 +0100 Subject: [PATCH 077/598] New translations app.json (French) --- Localization/StringsConvertor/input/fr.lproj/app.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Localization/StringsConvertor/input/fr.lproj/app.json b/Localization/StringsConvertor/input/fr.lproj/app.json index dcd1d97ce..ebc654e11 100644 --- a/Localization/StringsConvertor/input/fr.lproj/app.json +++ b/Localization/StringsConvertor/input/fr.lproj/app.json @@ -137,10 +137,10 @@ "closed": "Fermé" }, "meta_entity": { - "url": "Link: %s", - "hashtag": "Hastag %s", - "mention": "Show Profile: %s", - "email": "Email address: %s" + "url": "Lien : %s", + "hashtag": "Hastag : %s", + "mention": "Afficher le profile : %s", + "email": "Adresse e-mail : %s" }, "actions": { "reply": "Répondre", @@ -702,7 +702,7 @@ "accessibility_hint": "Tapotez deux fois pour fermer cet assistant" }, "bookmark": { - "title": "Bookmarks" + "title": "Favoris" } } } From 393e4632da334fa2fc79686ffb7d3acf929fdcf5 Mon Sep 17 00:00:00 2001 From: Jed Fox Date: Wed, 9 Nov 2022 16:33:54 -0500 Subject: [PATCH 078/598] Add secondary actions to notifications --- .../NotificationView+Configuration.swift | 1 + .../Transient/MastodonNotificationType.swift | 2 +- .../Content/NotificationView+ViewModel.swift | 56 ++++++++++++++++++- .../View/Content/NotificationView.swift | 31 ++++++++-- 4 files changed, 83 insertions(+), 7 deletions(-) diff --git a/Mastodon/Scene/Share/View/Content/NotificationView+Configuration.swift b/Mastodon/Scene/Share/View/Content/NotificationView+Configuration.swift index 98d06fd92..daa37a93b 100644 --- a/Mastodon/Scene/Share/View/Content/NotificationView+Configuration.swift +++ b/Mastodon/Scene/Share/View/Content/NotificationView+Configuration.swift @@ -111,6 +111,7 @@ extension NotificationView { self.viewModel.notificationIndicatorText = nil return } + self.viewModel.type = type func createMetaContent(text: String, emojis: MastodonContent.Emojis) -> MetaContent { let content = MastodonContent(content: text, emojis: emojis) diff --git a/MastodonSDK/Sources/CoreDataStack/Entity/Transient/MastodonNotificationType.swift b/MastodonSDK/Sources/CoreDataStack/Entity/Transient/MastodonNotificationType.swift index 9e3029f26..455230d5e 100644 --- a/MastodonSDK/Sources/CoreDataStack/Entity/Transient/MastodonNotificationType.swift +++ b/MastodonSDK/Sources/CoreDataStack/Entity/Transient/MastodonNotificationType.swift @@ -7,7 +7,7 @@ import Foundation -public enum MastodonNotificationType: RawRepresentable { +public enum MastodonNotificationType: RawRepresentable, Equatable { case follow case followRequest case mention diff --git a/MastodonSDK/Sources/MastodonUI/View/Content/NotificationView+ViewModel.swift b/MastodonSDK/Sources/MastodonUI/View/Content/NotificationView+ViewModel.swift index 524c92146..b80486e14 100644 --- a/MastodonSDK/Sources/MastodonUI/View/Content/NotificationView+ViewModel.swift +++ b/MastodonSDK/Sources/MastodonUI/View/Content/NotificationView+ViewModel.swift @@ -25,7 +25,8 @@ extension NotificationView { let logger = Logger(subsystem: "NotificationView", category: "ViewModel") @Published public var authContext: AuthContext? - + + @Published public var type: MastodonNotificationType? @Published public var notificationIndicatorText: MetaContent? @Published public var authorAvatarImage: UIImage? @@ -145,6 +146,55 @@ extension NotificationView.ViewModel { } } .store(in: &disposeBag) + + Publishers.CombineLatest( + $authorAvatarImage, + $type + ) + .sink { avatarImage, type in + var actions = [UIAccessibilityCustomAction]() + + // these notifications can be directly actioned to view the profile + if type != .follow, type != .followRequest { + actions.append( + UIAccessibilityCustomAction( + name: L10n.Common.Controls.Status.showUserProfile, + image: avatarImage + ) { [weak notificationView] _ in + guard let notificationView = notificationView, let delegate = notificationView.delegate else { return false } + delegate.notificationView(notificationView, authorAvatarButtonDidPressed: notificationView.avatarButton) + return true + } + ) + } + + if type == .followRequest { + actions.append( + UIAccessibilityCustomAction( + name: L10n.Common.Controls.Actions.confirm, + image: Asset.Editing.checkmark20.image + ) { [weak notificationView] _ in + guard let notificationView = notificationView, let delegate = notificationView.delegate else { return false } + delegate.notificationView(notificationView, acceptFollowRequestButtonDidPressed: notificationView.acceptFollowRequestButton) + return true + } + ) + + actions.append( + UIAccessibilityCustomAction( + name: L10n.Common.Controls.Actions.delete, + image: Asset.Circles.forbidden20.image + ) { [weak notificationView] _ in + guard let notificationView = notificationView, let delegate = notificationView.delegate else { return false } + delegate.notificationView(notificationView, rejectFollowRequestButtonDidPressed: notificationView.rejectFollowRequestButton) + return true + } + ) + } + + notificationView.notificationActions = actions + } + .store(in: &disposeBag) } private func bindAuthorMenu(notificationView: NotificationView) { @@ -167,7 +217,9 @@ extension NotificationView.ViewModel { isMyself: isMyself, isBookmarking: false // no bookmark action display for notification item ) - notificationView.menuButton.menu = notificationView.setupAuthorMenu(menuContext: menuContext) + let (menu, actions) = notificationView.setupAuthorMenu(menuContext: menuContext) + notificationView.menuButton.menu = menu + notificationView.authorActions = actions notificationView.menuButton.showsMenuAsPrimaryAction = true notificationView.menuButton.isHidden = menuContext.isMyself diff --git a/MastodonSDK/Sources/MastodonUI/View/Content/NotificationView.swift b/MastodonSDK/Sources/MastodonUI/View/Content/NotificationView.swift index f6821dec7..d4828875b 100644 --- a/MastodonSDK/Sources/MastodonUI/View/Content/NotificationView.swift +++ b/MastodonSDK/Sources/MastodonUI/View/Content/NotificationView.swift @@ -46,7 +46,10 @@ public final class NotificationView: UIView { var _disposeBag = Set() public var disposeBag = Set() - + + var notificationActions = [UIAccessibilityCustomAction]() + var authorActions = [UIAccessibilityCustomAction]() + public private(set) lazy var viewModel: ViewModel = { let viewModel = ViewModel() viewModel.bind(notificationView: self) @@ -392,6 +395,21 @@ extension NotificationView { get { [] } set {} } + + public override var accessibilityCustomActions: [UIAccessibilityCustomAction]? { + get { + var actions = notificationActions + actions += authorActions + if !statusView.isHidden { + actions += statusView.accessibilityCustomActions ?? [] + } + if !quoteStatusViewContainerView.isHidden { + actions += quoteStatusView.accessibilityCustomActions ?? [] + } + return actions + } + set {} + } } extension NotificationView { @@ -449,7 +467,7 @@ extension NotificationView: AdaptiveContainerView { extension NotificationView { public typealias AuthorMenuContext = StatusAuthorView.AuthorMenuContext - public func setupAuthorMenu(menuContext: AuthorMenuContext) -> UIMenu { + public func setupAuthorMenu(menuContext: AuthorMenuContext) -> (UIMenu, [UIAccessibilityCustomAction]) { var actions: [MastodonMenu.Action] = [] actions = [ @@ -475,8 +493,13 @@ extension NotificationView { actions: actions, delegate: self ) - - return menu + + let accessibilityActions = MastodonMenu.setupAccessibilityActions( + actions: actions, + delegate: self + ) + + return (menu, accessibilityActions) } } From c2232a596d207be0cf1be1a7091bedd1e1a51618 Mon Sep 17 00:00:00 2001 From: Jed Fox Date: Wed, 9 Nov 2022 16:59:02 -0500 Subject: [PATCH 079/598] Improve accessibility labels for reply/reblog posts --- .../StatusThreadRootTableViewCell.swift | 1 - .../View/Content/StatusView+ViewModel.swift | 68 +++++++++++++------ .../MastodonUI/View/Content/StatusView.swift | 1 + 3 files changed, 47 insertions(+), 23 deletions(-) diff --git a/Mastodon/Scene/Share/View/TableviewCell/StatusThreadRootTableViewCell.swift b/Mastodon/Scene/Share/View/TableviewCell/StatusThreadRootTableViewCell.swift index 64f3456b5..350bf8660 100644 --- a/Mastodon/Scene/Share/View/TableviewCell/StatusThreadRootTableViewCell.swift +++ b/Mastodon/Scene/Share/View/TableviewCell/StatusThreadRootTableViewCell.swift @@ -96,7 +96,6 @@ extension StatusThreadRootTableViewCell { override var accessibilityElements: [Any]? { get { var elements = [ - statusView.headerContainerView, statusView.authorView, statusView.viewModel.isContentReveal ? statusView.contentMetaText.textView diff --git a/MastodonSDK/Sources/MastodonUI/View/Content/StatusView+ViewModel.swift b/MastodonSDK/Sources/MastodonUI/View/Content/StatusView+ViewModel.swift index 530294ea7..66994f2a9 100644 --- a/MastodonSDK/Sources/MastodonUI/View/Content/StatusView+ViewModel.swift +++ b/MastodonSDK/Sources/MastodonUI/View/Content/StatusView+ViewModel.swift @@ -238,12 +238,11 @@ extension StatusView.ViewModel { } .store(in: &disposeBag) // username - let usernamePublisher = $authorUsername + $authorUsername .map { text -> String in guard let text = text else { return "" } return "@\(text)" } - usernamePublisher .sink { username in let metaContent = PlaintextMetaContent(string: username) authorView.authorUsernameLabel.configure(content: metaContent) @@ -270,18 +269,6 @@ extension StatusView.ViewModel { authorView.dateLabel.configure(content: PlaintextMetaContent(string: text)) } .store(in: &disposeBag) - - // accessibility label - Publishers.CombineLatest4($authorName, usernamePublisher, $timestampText, $timestamp) - .map { name, username, timestampText, timestamp in - let formatter = DateFormatter() - formatter.dateStyle = .medium - formatter.timeStyle = .short - let longTimestamp = timestamp.map { formatter.string(from: $0) } ?? "" - return "\(name?.string ?? "") \(username), \(timestampText). \(longTimestamp)" - } - .assign(to: \.accessibilityLabel, on: authorView) - .store(in: &disposeBag) } private func bindContent(statusView: StatusView) { @@ -634,7 +621,7 @@ extension StatusView.ViewModel { } private func bindAccessibility(statusView: StatusView) { - let authorAccessibilityLabel = Publishers.CombineLatest3( + let shortAuthorAccessibilityLabel = Publishers.CombineLatest3( $header, $authorName, $timestampText @@ -644,19 +631,56 @@ extension StatusView.ViewModel { switch header { case .none: - break + strings.append(authorName?.string) case .reply(let info): + strings.append(authorName?.string) strings.append(info.header.string) case .repost(let info): strings.append(info.header.string) + strings.append(authorName?.string) } - strings.append(authorName?.string) strings.append(timestamp) return strings.compactMap { $0 }.joined(separator: ", ") } - + + let longTimestampFormatter = DateFormatter() + longTimestampFormatter.dateStyle = .medium + longTimestampFormatter.timeStyle = .short + let longTimestampLabel = Publishers.CombineLatest( + $timestampText, + $timestamp.map { timestamp in + if let timestamp { + return longTimestampFormatter.string(from: timestamp) + } + return "" + } + ) + .map { timestampText, longTimestamp in + "\(timestampText). \(longTimestamp)" + } + + Publishers.CombineLatest4( + $header, + $authorName, + $authorUsername, + longTimestampLabel + ) + .map { header, name, username, timestamp in + let nameAndUsername = "\(name?.string ?? "") @\(username ?? "")" + switch header { + case .none: + return "\(nameAndUsername), \(timestamp)" + case .repost(info: let info): + return "\(info.header.string) \(nameAndUsername), \(timestamp)" + case .reply(info: let info): + return "\(nameAndUsername) \(info.header.string), \(timestamp)" + } + } + .assign(to: \.accessibilityLabel, on: statusView.authorView) + .store(in: &disposeBag) + let contentAccessibilityLabel = Publishers.CombineLatest3( $isContentReveal, $spoilerContent, @@ -694,8 +718,8 @@ extension StatusView.ViewModel { statusView.spoilerOverlayView.accessibilityLabel = contentAccessibilityLabel } .store(in: &disposeBag) - - let meidaAccessibilityLabel = $mediaViewConfigurations + + let mediaAccessibilityLabel = $mediaViewConfigurations .map { configurations -> String? in let count = configurations.count return L10n.Plural.Count.media(count) @@ -704,9 +728,9 @@ extension StatusView.ViewModel { // TODO: Toolbar Publishers.CombineLatest3( - authorAccessibilityLabel, + shortAuthorAccessibilityLabel, contentAccessibilityLabel, - meidaAccessibilityLabel + mediaAccessibilityLabel ) .map { author, content, media in var labels: [String?] = [content, media] diff --git a/MastodonSDK/Sources/MastodonUI/View/Content/StatusView.swift b/MastodonSDK/Sources/MastodonUI/View/Content/StatusView.swift index 563bc7e3d..21410b9e2 100644 --- a/MastodonSDK/Sources/MastodonUI/View/Content/StatusView.swift +++ b/MastodonSDK/Sources/MastodonUI/View/Content/StatusView.swift @@ -246,6 +246,7 @@ extension StatusView { // header headerIconImageView.isUserInteractionEnabled = false headerInfoLabel.isUserInteractionEnabled = false + headerInfoLabel.isAccessibilityElement = false let headerTapGestureRecognizer = UITapGestureRecognizer.singleTapGestureRecognizer headerTapGestureRecognizer.addTarget(self, action: #selector(StatusView.headerDidPressed(_:))) headerContainerView.addGestureRecognizer(headerTapGestureRecognizer) From b70491a338993b68420803e505f388d0fa44c566 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 23:23:41 +0100 Subject: [PATCH 080/598] New translations app.json (Slovenian) --- Localization/StringsConvertor/input/sl.lproj/app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/sl.lproj/app.json b/Localization/StringsConvertor/input/sl.lproj/app.json index d6c914dc7..c4df31a4a 100644 --- a/Localization/StringsConvertor/input/sl.lproj/app.json +++ b/Localization/StringsConvertor/input/sl.lproj/app.json @@ -138,7 +138,7 @@ }, "meta_entity": { "url": "Povezava: %s", - "hashtag": "Ključnik %s", + "hashtag": "Hashtag: %s", "mention": "Pokaži profil: %s", "email": "E-naslov: %s" }, From f73ae9c723d6e84321f9f9afa359386320ee07eb Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 23:23:43 +0100 Subject: [PATCH 081/598] New translations app.json (Indonesian) --- Localization/StringsConvertor/input/id.lproj/app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/id.lproj/app.json b/Localization/StringsConvertor/input/id.lproj/app.json index b0c8aaa4d..fe678e75c 100644 --- a/Localization/StringsConvertor/input/id.lproj/app.json +++ b/Localization/StringsConvertor/input/id.lproj/app.json @@ -138,7 +138,7 @@ }, "meta_entity": { "url": "Link: %s", - "hashtag": "Hastag %s", + "hashtag": "Hashtag: %s", "mention": "Show Profile: %s", "email": "Email address: %s" }, From 4a431ddf5a5d0bb30d83936be43d5ce545ed48cf Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 23:23:44 +0100 Subject: [PATCH 082/598] New translations app.json (Portuguese) --- Localization/StringsConvertor/input/pt.lproj/app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/pt.lproj/app.json b/Localization/StringsConvertor/input/pt.lproj/app.json index 8867385e2..c5a3dac74 100644 --- a/Localization/StringsConvertor/input/pt.lproj/app.json +++ b/Localization/StringsConvertor/input/pt.lproj/app.json @@ -138,7 +138,7 @@ }, "meta_entity": { "url": "Link: %s", - "hashtag": "Hastag %s", + "hashtag": "Hashtag: %s", "mention": "Show Profile: %s", "email": "Email address: %s" }, From 7df3102569ac372145b58a14a41f39590a542970 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 23:23:45 +0100 Subject: [PATCH 083/598] New translations app.json (Russian) --- Localization/StringsConvertor/input/ru.lproj/app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/ru.lproj/app.json b/Localization/StringsConvertor/input/ru.lproj/app.json index da7ac82b0..c7d721aea 100644 --- a/Localization/StringsConvertor/input/ru.lproj/app.json +++ b/Localization/StringsConvertor/input/ru.lproj/app.json @@ -138,7 +138,7 @@ }, "meta_entity": { "url": "Link: %s", - "hashtag": "Hastag %s", + "hashtag": "Hashtag: %s", "mention": "Show Profile: %s", "email": "Email address: %s" }, From cded21162b5ee0971a6063ed9edfa78360d27d5b Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 23:23:46 +0100 Subject: [PATCH 084/598] New translations app.json (Chinese Simplified) --- Localization/StringsConvertor/input/zh-Hans.lproj/app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/zh-Hans.lproj/app.json b/Localization/StringsConvertor/input/zh-Hans.lproj/app.json index 36e3925b7..32d41e016 100644 --- a/Localization/StringsConvertor/input/zh-Hans.lproj/app.json +++ b/Localization/StringsConvertor/input/zh-Hans.lproj/app.json @@ -138,7 +138,7 @@ }, "meta_entity": { "url": "Link: %s", - "hashtag": "Hastag %s", + "hashtag": "Hashtag: %s", "mention": "Show Profile: %s", "email": "Email address: %s" }, From f3ec978e0e242bc99f2fca2c563683aa94a928bd Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 23:23:47 +0100 Subject: [PATCH 085/598] New translations app.json (English) --- Localization/StringsConvertor/input/en.lproj/app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/en.lproj/app.json b/Localization/StringsConvertor/input/en.lproj/app.json index 8867385e2..c5a3dac74 100644 --- a/Localization/StringsConvertor/input/en.lproj/app.json +++ b/Localization/StringsConvertor/input/en.lproj/app.json @@ -138,7 +138,7 @@ }, "meta_entity": { "url": "Link: %s", - "hashtag": "Hastag %s", + "hashtag": "Hashtag: %s", "mention": "Show Profile: %s", "email": "Email address: %s" }, From 6e626a5dc280386aae521839181db412908c8782 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 23:23:48 +0100 Subject: [PATCH 086/598] New translations app.json (Galician) --- Localization/StringsConvertor/input/gl.lproj/app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/gl.lproj/app.json b/Localization/StringsConvertor/input/gl.lproj/app.json index 9c5e737d8..ee3801a08 100644 --- a/Localization/StringsConvertor/input/gl.lproj/app.json +++ b/Localization/StringsConvertor/input/gl.lproj/app.json @@ -138,7 +138,7 @@ }, "meta_entity": { "url": "Link: %s", - "hashtag": "Hastag %s", + "hashtag": "Hashtag: %s", "mention": "Show Profile: %s", "email": "Email address: %s" }, From e59cd191e4ae459a02ccf03864acff52bd56300d Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 23:23:49 +0100 Subject: [PATCH 087/598] New translations app.json (Portuguese, Brazilian) --- Localization/StringsConvertor/input/pt-BR.lproj/app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/pt-BR.lproj/app.json b/Localization/StringsConvertor/input/pt-BR.lproj/app.json index 56656321c..d2653102b 100644 --- a/Localization/StringsConvertor/input/pt-BR.lproj/app.json +++ b/Localization/StringsConvertor/input/pt-BR.lproj/app.json @@ -138,7 +138,7 @@ }, "meta_entity": { "url": "Link: %s", - "hashtag": "Hastag %s", + "hashtag": "Hashtag: %s", "mention": "Show Profile: %s", "email": "Email address: %s" }, From 330c9bd39ad2c981506203954f293f6ab28d78f4 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 23:23:50 +0100 Subject: [PATCH 088/598] New translations app.json (Spanish, Argentina) --- Localization/StringsConvertor/input/es-AR.lproj/app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/es-AR.lproj/app.json b/Localization/StringsConvertor/input/es-AR.lproj/app.json index deedf1933..33f36134b 100644 --- a/Localization/StringsConvertor/input/es-AR.lproj/app.json +++ b/Localization/StringsConvertor/input/es-AR.lproj/app.json @@ -138,7 +138,7 @@ }, "meta_entity": { "url": "Link: %s", - "hashtag": "Hastag %s", + "hashtag": "Hashtag: %s", "mention": "Show Profile: %s", "email": "Email address: %s" }, From 29a057804baea3e225ead79253bba51111845c07 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 23:23:51 +0100 Subject: [PATCH 089/598] New translations app.json (Japanese) --- Localization/StringsConvertor/input/ja.lproj/app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/ja.lproj/app.json b/Localization/StringsConvertor/input/ja.lproj/app.json index 1be96cb77..098f49087 100644 --- a/Localization/StringsConvertor/input/ja.lproj/app.json +++ b/Localization/StringsConvertor/input/ja.lproj/app.json @@ -138,7 +138,7 @@ }, "meta_entity": { "url": "Link: %s", - "hashtag": "Hastag %s", + "hashtag": "Hashtag: %s", "mention": "Show Profile: %s", "email": "Email address: %s" }, From 762e4b7fbddbea1a417dda8649d02c88f3bfc2c9 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 23:23:52 +0100 Subject: [PATCH 090/598] New translations app.json (Thai) --- Localization/StringsConvertor/input/th.lproj/app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/th.lproj/app.json b/Localization/StringsConvertor/input/th.lproj/app.json index aa39586da..c8382bd80 100644 --- a/Localization/StringsConvertor/input/th.lproj/app.json +++ b/Localization/StringsConvertor/input/th.lproj/app.json @@ -138,7 +138,7 @@ }, "meta_entity": { "url": "ลิงก์: %s", - "hashtag": "แฮชแท็ก %s", + "hashtag": "Hashtag: %s", "mention": "โปรไฟล์ที่แสดง: %s", "email": "ที่อยู่อีเมล: %s" }, From 3c4404e5162c25c0e01348d5a82483f95e705dc8 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 23:23:53 +0100 Subject: [PATCH 091/598] New translations app.json (Latvian) --- Localization/StringsConvertor/input/lv.lproj/app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/lv.lproj/app.json b/Localization/StringsConvertor/input/lv.lproj/app.json index 5a854d5c4..ba50897ed 100644 --- a/Localization/StringsConvertor/input/lv.lproj/app.json +++ b/Localization/StringsConvertor/input/lv.lproj/app.json @@ -138,7 +138,7 @@ }, "meta_entity": { "url": "Link: %s", - "hashtag": "Hastag %s", + "hashtag": "Hashtag: %s", "mention": "Show Profile: %s", "email": "Email address: %s" }, From 76c4e6fec223440c1cc17ff755d4aeccd05303c5 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 23:23:54 +0100 Subject: [PATCH 092/598] New translations app.json (Hindi) --- Localization/StringsConvertor/input/hi.lproj/app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/hi.lproj/app.json b/Localization/StringsConvertor/input/hi.lproj/app.json index 514961a44..35cab7b5a 100644 --- a/Localization/StringsConvertor/input/hi.lproj/app.json +++ b/Localization/StringsConvertor/input/hi.lproj/app.json @@ -138,7 +138,7 @@ }, "meta_entity": { "url": "Link: %s", - "hashtag": "Hastag %s", + "hashtag": "Hashtag: %s", "mention": "Show Profile: %s", "email": "Email address: %s" }, From 53b520d0899df37e28f6caa608a21c186184fce4 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 23:23:56 +0100 Subject: [PATCH 093/598] New translations app.json (English, United States) --- Localization/StringsConvertor/input/en-US.lproj/app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/en-US.lproj/app.json b/Localization/StringsConvertor/input/en-US.lproj/app.json index 8867385e2..c5a3dac74 100644 --- a/Localization/StringsConvertor/input/en-US.lproj/app.json +++ b/Localization/StringsConvertor/input/en-US.lproj/app.json @@ -138,7 +138,7 @@ }, "meta_entity": { "url": "Link: %s", - "hashtag": "Hastag %s", + "hashtag": "Hashtag: %s", "mention": "Show Profile: %s", "email": "Email address: %s" }, From e008170559c69fa353aedf0327fd5dfb2b57d908 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 23:23:57 +0100 Subject: [PATCH 094/598] New translations app.json (Welsh) --- Localization/StringsConvertor/input/cy.lproj/app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/cy.lproj/app.json b/Localization/StringsConvertor/input/cy.lproj/app.json index 00f09eca9..de782cd98 100644 --- a/Localization/StringsConvertor/input/cy.lproj/app.json +++ b/Localization/StringsConvertor/input/cy.lproj/app.json @@ -138,7 +138,7 @@ }, "meta_entity": { "url": "Link: %s", - "hashtag": "Hastag %s", + "hashtag": "Hashtag: %s", "mention": "Show Profile: %s", "email": "Email address: %s" }, From d50547c3c71387524b2bf65f2688dd61be502baa Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 23:23:58 +0100 Subject: [PATCH 095/598] New translations app.json (Sinhala) --- Localization/StringsConvertor/input/si.lproj/app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/si.lproj/app.json b/Localization/StringsConvertor/input/si.lproj/app.json index c70c0f722..2428da902 100644 --- a/Localization/StringsConvertor/input/si.lproj/app.json +++ b/Localization/StringsConvertor/input/si.lproj/app.json @@ -138,7 +138,7 @@ }, "meta_entity": { "url": "Link: %s", - "hashtag": "Hastag %s", + "hashtag": "Hashtag: %s", "mention": "Show Profile: %s", "email": "Email address: %s" }, From f87ef855954173265281360e276ef05906faef62 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 23:23:59 +0100 Subject: [PATCH 096/598] New translations app.json (Kurmanji (Kurdish)) --- Localization/StringsConvertor/input/kmr.lproj/app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/kmr.lproj/app.json b/Localization/StringsConvertor/input/kmr.lproj/app.json index 33c283fc7..2b6c4a491 100644 --- a/Localization/StringsConvertor/input/kmr.lproj/app.json +++ b/Localization/StringsConvertor/input/kmr.lproj/app.json @@ -138,7 +138,7 @@ }, "meta_entity": { "url": "Link: %s", - "hashtag": "Hastag %s", + "hashtag": "Hashtag: %s", "mention": "Show Profile: %s", "email": "Email address: %s" }, From 39dd13be35976a5df97266b442a0483578281c75 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 23:24:00 +0100 Subject: [PATCH 097/598] New translations app.json (Dutch) --- Localization/StringsConvertor/input/nl.lproj/app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/nl.lproj/app.json b/Localization/StringsConvertor/input/nl.lproj/app.json index a94129fef..415327eaa 100644 --- a/Localization/StringsConvertor/input/nl.lproj/app.json +++ b/Localization/StringsConvertor/input/nl.lproj/app.json @@ -138,7 +138,7 @@ }, "meta_entity": { "url": "Link: %s", - "hashtag": "Hastag %s", + "hashtag": "Hashtag: %s", "mention": "Show Profile: %s", "email": "Email address: %s" }, From 6a8decde7824fafc50c8968d7aac245788f9db7b Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 23:24:01 +0100 Subject: [PATCH 098/598] New translations app.json (Chinese Traditional) --- Localization/StringsConvertor/input/zh-Hant.lproj/app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/zh-Hant.lproj/app.json b/Localization/StringsConvertor/input/zh-Hant.lproj/app.json index 6d154d039..9a7023220 100644 --- a/Localization/StringsConvertor/input/zh-Hant.lproj/app.json +++ b/Localization/StringsConvertor/input/zh-Hant.lproj/app.json @@ -138,7 +138,7 @@ }, "meta_entity": { "url": "連結:%s", - "hashtag": "主題標籤 %s", + "hashtag": "Hashtag: %s", "mention": "顯示個人檔案:%s", "email": "電子郵件地址:%s" }, From 220b9a9c2c47c4b409cd85520d50ce1437f3cd20 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 23:24:03 +0100 Subject: [PATCH 099/598] New translations app.json (Ukrainian) --- Localization/StringsConvertor/input/uk.lproj/app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/uk.lproj/app.json b/Localization/StringsConvertor/input/uk.lproj/app.json index 8867385e2..c5a3dac74 100644 --- a/Localization/StringsConvertor/input/uk.lproj/app.json +++ b/Localization/StringsConvertor/input/uk.lproj/app.json @@ -138,7 +138,7 @@ }, "meta_entity": { "url": "Link: %s", - "hashtag": "Hastag %s", + "hashtag": "Hashtag: %s", "mention": "Show Profile: %s", "email": "Email address: %s" }, From ff4253afa32f03918557fe1b17fc80e5fc48a595 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 23:24:04 +0100 Subject: [PATCH 100/598] New translations app.json (Vietnamese) --- Localization/StringsConvertor/input/vi.lproj/app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/vi.lproj/app.json b/Localization/StringsConvertor/input/vi.lproj/app.json index 0ae436884..4ab6a5799 100644 --- a/Localization/StringsConvertor/input/vi.lproj/app.json +++ b/Localization/StringsConvertor/input/vi.lproj/app.json @@ -138,7 +138,7 @@ }, "meta_entity": { "url": "Link: %s", - "hashtag": "Hastag %s", + "hashtag": "Hashtag: %s", "mention": "Show Profile: %s", "email": "Email address: %s" }, From d5a30c186728c1e95d9c22ff57cdc641adf8a371 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 23:24:05 +0100 Subject: [PATCH 101/598] New translations app.json (Kabyle) --- Localization/StringsConvertor/input/kab.lproj/app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/kab.lproj/app.json b/Localization/StringsConvertor/input/kab.lproj/app.json index 8fefef724..ac436b6e1 100644 --- a/Localization/StringsConvertor/input/kab.lproj/app.json +++ b/Localization/StringsConvertor/input/kab.lproj/app.json @@ -138,7 +138,7 @@ }, "meta_entity": { "url": "Link: %s", - "hashtag": "Hastag %s", + "hashtag": "Hashtag: %s", "mention": "Show Profile: %s", "email": "Email address: %s" }, From 9f057b233205794de50e74c9a5f3fd0448e954ed Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 23:24:06 +0100 Subject: [PATCH 102/598] New translations app.json (Korean) --- Localization/StringsConvertor/input/ko.lproj/app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/ko.lproj/app.json b/Localization/StringsConvertor/input/ko.lproj/app.json index 917487705..da1561cad 100644 --- a/Localization/StringsConvertor/input/ko.lproj/app.json +++ b/Localization/StringsConvertor/input/ko.lproj/app.json @@ -138,7 +138,7 @@ }, "meta_entity": { "url": "Link: %s", - "hashtag": "Hastag %s", + "hashtag": "Hashtag: %s", "mention": "Show Profile: %s", "email": "Email address: %s" }, From 1aa8c9640ffa59c663a571f8bb45e357b3ce4fcf Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 23:24:07 +0100 Subject: [PATCH 103/598] New translations app.json (Swedish) --- Localization/StringsConvertor/input/sv.lproj/app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/sv.lproj/app.json b/Localization/StringsConvertor/input/sv.lproj/app.json index 7451ab2f6..ab7ff5f24 100644 --- a/Localization/StringsConvertor/input/sv.lproj/app.json +++ b/Localization/StringsConvertor/input/sv.lproj/app.json @@ -138,7 +138,7 @@ }, "meta_entity": { "url": "Länk: %s", - "hashtag": "Hashtagg %s", + "hashtag": "Hashtag: %s", "mention": "Visa profil: %s", "email": "E-postadress: %s" }, From 0355f66a67f248d43e1f023951173422bba15208 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 23:24:08 +0100 Subject: [PATCH 104/598] New translations app.json (French) --- Localization/StringsConvertor/input/fr.lproj/app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/fr.lproj/app.json b/Localization/StringsConvertor/input/fr.lproj/app.json index ebc654e11..1e733db5f 100644 --- a/Localization/StringsConvertor/input/fr.lproj/app.json +++ b/Localization/StringsConvertor/input/fr.lproj/app.json @@ -138,7 +138,7 @@ }, "meta_entity": { "url": "Lien : %s", - "hashtag": "Hastag : %s", + "hashtag": "Hashtag: %s", "mention": "Afficher le profile : %s", "email": "Adresse e-mail : %s" }, From fc6a71f22607f40fff1936c9f1a9404c20d0423f Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 23:24:10 +0100 Subject: [PATCH 105/598] New translations app.json (Turkish) --- Localization/StringsConvertor/input/tr.lproj/app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/tr.lproj/app.json b/Localization/StringsConvertor/input/tr.lproj/app.json index ffe46c14e..4cae430f9 100644 --- a/Localization/StringsConvertor/input/tr.lproj/app.json +++ b/Localization/StringsConvertor/input/tr.lproj/app.json @@ -138,7 +138,7 @@ }, "meta_entity": { "url": "Link: %s", - "hashtag": "Hastag %s", + "hashtag": "Hashtag: %s", "mention": "Show Profile: %s", "email": "Email address: %s" }, From 3eaa97820fdaa651d1ec40395e9021536b9f9954 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 23:24:11 +0100 Subject: [PATCH 106/598] New translations app.json (Czech) --- Localization/StringsConvertor/input/cs.lproj/app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/cs.lproj/app.json b/Localization/StringsConvertor/input/cs.lproj/app.json index d4076758d..2be115e55 100644 --- a/Localization/StringsConvertor/input/cs.lproj/app.json +++ b/Localization/StringsConvertor/input/cs.lproj/app.json @@ -138,7 +138,7 @@ }, "meta_entity": { "url": "Link: %s", - "hashtag": "Hastag %s", + "hashtag": "Hashtag: %s", "mention": "Show Profile: %s", "email": "Email address: %s" }, From 77808d3a61e18bfc62877f7a30f57e4b0b6c4463 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 23:24:12 +0100 Subject: [PATCH 107/598] New translations app.json (Scottish Gaelic) --- Localization/StringsConvertor/input/gd.lproj/app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/gd.lproj/app.json b/Localization/StringsConvertor/input/gd.lproj/app.json index 5d1611d6b..65a666396 100644 --- a/Localization/StringsConvertor/input/gd.lproj/app.json +++ b/Localization/StringsConvertor/input/gd.lproj/app.json @@ -138,7 +138,7 @@ }, "meta_entity": { "url": "Link: %s", - "hashtag": "Hastag %s", + "hashtag": "Hashtag: %s", "mention": "Show Profile: %s", "email": "Email address: %s" }, From a643a7bf3b0531d6ffc7310cfe2b643e9504fc26 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 23:24:14 +0100 Subject: [PATCH 108/598] New translations app.json (Finnish) --- Localization/StringsConvertor/input/fi.lproj/app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/fi.lproj/app.json b/Localization/StringsConvertor/input/fi.lproj/app.json index 383c5f0fe..887c44a99 100644 --- a/Localization/StringsConvertor/input/fi.lproj/app.json +++ b/Localization/StringsConvertor/input/fi.lproj/app.json @@ -138,7 +138,7 @@ }, "meta_entity": { "url": "Link: %s", - "hashtag": "Hastag %s", + "hashtag": "Hashtag: %s", "mention": "Show Profile: %s", "email": "Email address: %s" }, From d4756e9feebe5cb617eaf42f31f0b1bd5a9e9215 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 23:24:15 +0100 Subject: [PATCH 109/598] New translations app.json (Romanian) --- Localization/StringsConvertor/input/ro.lproj/app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/ro.lproj/app.json b/Localization/StringsConvertor/input/ro.lproj/app.json index 7173bfac9..d0e2d0de0 100644 --- a/Localization/StringsConvertor/input/ro.lproj/app.json +++ b/Localization/StringsConvertor/input/ro.lproj/app.json @@ -138,7 +138,7 @@ }, "meta_entity": { "url": "Link: %s", - "hashtag": "Hastag %s", + "hashtag": "Hashtag: %s", "mention": "Show Profile: %s", "email": "Email address: %s" }, From 91db8e0a8bfc78380d2e4e1c78c60b986849a2fe Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 23:24:17 +0100 Subject: [PATCH 110/598] New translations app.json (Spanish) --- Localization/StringsConvertor/input/es.lproj/app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/es.lproj/app.json b/Localization/StringsConvertor/input/es.lproj/app.json index 48683a18e..2afb0cd9c 100644 --- a/Localization/StringsConvertor/input/es.lproj/app.json +++ b/Localization/StringsConvertor/input/es.lproj/app.json @@ -138,7 +138,7 @@ }, "meta_entity": { "url": "Link: %s", - "hashtag": "Hastag %s", + "hashtag": "Hashtag: %s", "mention": "Show Profile: %s", "email": "Email address: %s" }, From 5fce47cf30a15bf5b29329d396a7bd33c6ce036d Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 23:24:18 +0100 Subject: [PATCH 111/598] New translations app.json (Arabic) --- Localization/StringsConvertor/input/ar.lproj/app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/ar.lproj/app.json b/Localization/StringsConvertor/input/ar.lproj/app.json index aed90c72d..ea96af214 100644 --- a/Localization/StringsConvertor/input/ar.lproj/app.json +++ b/Localization/StringsConvertor/input/ar.lproj/app.json @@ -138,7 +138,7 @@ }, "meta_entity": { "url": "Link: %s", - "hashtag": "Hastag %s", + "hashtag": "Hashtag: %s", "mention": "Show Profile: %s", "email": "Email address: %s" }, From a24ee5ba6ec026b5b28d12053002c10cd93f525c Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 23:24:19 +0100 Subject: [PATCH 112/598] New translations app.json (Catalan) --- Localization/StringsConvertor/input/ca.lproj/app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/ca.lproj/app.json b/Localization/StringsConvertor/input/ca.lproj/app.json index 45497e67d..338d73599 100644 --- a/Localization/StringsConvertor/input/ca.lproj/app.json +++ b/Localization/StringsConvertor/input/ca.lproj/app.json @@ -138,7 +138,7 @@ }, "meta_entity": { "url": "Enllaç: %s", - "hashtag": "Etiqueta %s", + "hashtag": "Hashtag: %s", "mention": "Mostra el Perfil: %s", "email": "Correu electrònic: %s" }, From 611bb12ac840264648e8e33e7fdd1444fc0f3d4c Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 23:24:20 +0100 Subject: [PATCH 113/598] New translations app.json (Danish) --- Localization/StringsConvertor/input/da.lproj/app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/da.lproj/app.json b/Localization/StringsConvertor/input/da.lproj/app.json index 8867385e2..c5a3dac74 100644 --- a/Localization/StringsConvertor/input/da.lproj/app.json +++ b/Localization/StringsConvertor/input/da.lproj/app.json @@ -138,7 +138,7 @@ }, "meta_entity": { "url": "Link: %s", - "hashtag": "Hastag %s", + "hashtag": "Hashtag: %s", "mention": "Show Profile: %s", "email": "Email address: %s" }, From e08637c07980ed1ae5161d290c8c661892f1d145 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 23:24:21 +0100 Subject: [PATCH 114/598] New translations app.json (German) --- Localization/StringsConvertor/input/de.lproj/app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/de.lproj/app.json b/Localization/StringsConvertor/input/de.lproj/app.json index 3643d89ba..43fa4bc55 100644 --- a/Localization/StringsConvertor/input/de.lproj/app.json +++ b/Localization/StringsConvertor/input/de.lproj/app.json @@ -138,7 +138,7 @@ }, "meta_entity": { "url": "Link: %s", - "hashtag": "Hastag %s", + "hashtag": "Hashtag: %s", "mention": "Show Profile: %s", "email": "Email address: %s" }, From 4e13a5c8b39c33a3884a7794d343ed0237cc2d88 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 23:24:22 +0100 Subject: [PATCH 115/598] New translations app.json (Basque) --- Localization/StringsConvertor/input/eu.lproj/app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/eu.lproj/app.json b/Localization/StringsConvertor/input/eu.lproj/app.json index 118c6a2ed..94720218f 100644 --- a/Localization/StringsConvertor/input/eu.lproj/app.json +++ b/Localization/StringsConvertor/input/eu.lproj/app.json @@ -138,7 +138,7 @@ }, "meta_entity": { "url": "Link: %s", - "hashtag": "Hastag %s", + "hashtag": "Hashtag: %s", "mention": "Show Profile: %s", "email": "Email address: %s" }, From 034bb6b3f3ff3e41cc33adace1ad7fc7b8b491b5 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 9 Nov 2022 23:24:23 +0100 Subject: [PATCH 116/598] New translations app.json (Sorani (Kurdish)) --- Localization/StringsConvertor/input/ckb.lproj/app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/ckb.lproj/app.json b/Localization/StringsConvertor/input/ckb.lproj/app.json index 312d4d1d0..e3db76643 100644 --- a/Localization/StringsConvertor/input/ckb.lproj/app.json +++ b/Localization/StringsConvertor/input/ckb.lproj/app.json @@ -138,7 +138,7 @@ }, "meta_entity": { "url": "Link: %s", - "hashtag": "Hastag %s", + "hashtag": "Hashtag: %s", "mention": "Show Profile: %s", "email": "Email address: %s" }, From ed9911ca76b7d4e51901fbb5b47b76cea0f2732a Mon Sep 17 00:00:00 2001 From: Jed Fox Date: Wed, 9 Nov 2022 17:30:57 -0500 Subject: [PATCH 117/598] =?UTF-8?q?Rename=20tab=20to=20=E2=80=9CNotificati?= =?UTF-8?q?ons=E2=80=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../StringsConvertor/input/en.lproj/app.json | 2 +- Localization/app.json | 2 +- Mastodon/Coordinator/SceneCoordinator.swift | 4 ++-- .../Root/MainTab/MainTabBarController.swift | 18 +++++++++--------- .../Scene/Root/Sidebar/SidebarViewModel.swift | 6 +++--- Mastodon/Supporting Files/SceneDelegate.swift | 2 +- .../Generated/Strings.swift | 4 ++-- .../Resources/en.lproj/Localizable.strings | 2 +- 8 files changed, 20 insertions(+), 20 deletions(-) diff --git a/Localization/StringsConvertor/input/en.lproj/app.json b/Localization/StringsConvertor/input/en.lproj/app.json index 8867385e2..ff2926996 100644 --- a/Localization/StringsConvertor/input/en.lproj/app.json +++ b/Localization/StringsConvertor/input/en.lproj/app.json @@ -96,7 +96,7 @@ "tabs": { "home": "Home", "search": "Search", - "notification": "Notification", + "notifications": "Notifications", "profile": "Profile" }, "keyboard": { diff --git a/Localization/app.json b/Localization/app.json index 8867385e2..ff2926996 100644 --- a/Localization/app.json +++ b/Localization/app.json @@ -96,7 +96,7 @@ "tabs": { "home": "Home", "search": "Search", - "notification": "Notification", + "notifications": "Notifications", "profile": "Profile" }, "keyboard": { diff --git a/Mastodon/Coordinator/SceneCoordinator.swift b/Mastodon/Coordinator/SceneCoordinator.swift index 8a0825969..737d74d7e 100644 --- a/Mastodon/Coordinator/SceneCoordinator.swift +++ b/Mastodon/Coordinator/SceneCoordinator.swift @@ -71,8 +71,8 @@ final public class SceneCoordinator { self.setup() try await Task.sleep(nanoseconds: .second * 1) - // redirect to notification tab - self.switchToTabBar(tab: .notification) + // redirect to notifications tab + self.switchToTabBar(tab: .notifications) // Delay in next run loop DispatchQueue.main.async { [weak self] in diff --git a/Mastodon/Scene/Root/MainTab/MainTabBarController.swift b/Mastodon/Scene/Root/MainTab/MainTabBarController.swift index c49dcc1a1..4f6b21d96 100644 --- a/Mastodon/Scene/Root/MainTab/MainTabBarController.swift +++ b/Mastodon/Scene/Root/MainTab/MainTabBarController.swift @@ -49,7 +49,7 @@ class MainTabBarController: UITabBarController { case home case search case compose - case notification + case notifications case me var tag: Int { @@ -61,7 +61,7 @@ class MainTabBarController: UITabBarController { case .home: return L10n.Common.Controls.Tabs.home case .search: return L10n.Common.Controls.Tabs.search case .compose: return L10n.Common.Controls.Actions.compose - case .notification: return L10n.Common.Controls.Tabs.notification + case .notifications: return L10n.Common.Controls.Tabs.notifications case .me: return L10n.Common.Controls.Tabs.profile } } @@ -71,7 +71,7 @@ class MainTabBarController: UITabBarController { case .home: return Asset.ObjectsAndTools.house.image.withRenderingMode(.alwaysTemplate) case .search: return Asset.ObjectsAndTools.magnifyingglass.image.withRenderingMode(.alwaysTemplate) case .compose: return Asset.ObjectsAndTools.squareAndPencil.image.withRenderingMode(.alwaysTemplate) - case .notification: return Asset.ObjectsAndTools.bell.image.withRenderingMode(.alwaysTemplate) + case .notifications: return Asset.ObjectsAndTools.bell.image.withRenderingMode(.alwaysTemplate) case .me: return UIImage(systemName: "person")! } } @@ -81,7 +81,7 @@ class MainTabBarController: UITabBarController { case .home: return Asset.ObjectsAndTools.houseFill.image.withRenderingMode(.alwaysTemplate) case .search: return Asset.ObjectsAndTools.magnifyingglassFill.image.withRenderingMode(.alwaysTemplate) case .compose: return Asset.ObjectsAndTools.squareAndPencil.image.withRenderingMode(.alwaysTemplate) - case .notification: return Asset.ObjectsAndTools.bellFill.image.withRenderingMode(.alwaysTemplate) + case .notifications: return Asset.ObjectsAndTools.bellFill.image.withRenderingMode(.alwaysTemplate) case .me: return UIImage(systemName: "person.fill")! } } @@ -91,7 +91,7 @@ class MainTabBarController: UITabBarController { case .home: return Asset.ObjectsAndTools.house.image.withRenderingMode(.alwaysTemplate).resized(size: CGSize(width: 80, height: 80)) case .search: return Asset.ObjectsAndTools.magnifyingglass.image.withRenderingMode(.alwaysTemplate).resized(size: CGSize(width: 80, height: 80)) case .compose: return Asset.ObjectsAndTools.squareAndPencil.image.withRenderingMode(.alwaysTemplate).resized(size: CGSize(width: 80, height: 80)) - case .notification: return Asset.ObjectsAndTools.bell.image.withRenderingMode(.alwaysTemplate).resized(size: CGSize(width: 80, height: 80)) + case .notifications: return Asset.ObjectsAndTools.bell.image.withRenderingMode(.alwaysTemplate).resized(size: CGSize(width: 80, height: 80)) case .me: return UIImage(systemName: "person", withConfiguration: UIImage.SymbolConfiguration(pointSize: 80))! } } @@ -101,7 +101,7 @@ class MainTabBarController: UITabBarController { case .home: return Asset.ObjectsAndTools.house.image.withRenderingMode(.alwaysTemplate) case .search: return Asset.ObjectsAndTools.magnifyingglass.image.withRenderingMode(.alwaysTemplate) case .compose: return Asset.ObjectsAndTools.squareAndPencil.image.withRenderingMode(.alwaysTemplate) - case .notification: return Asset.ObjectsAndTools.bell.image.withRenderingMode(.alwaysTemplate) + case .notifications: return Asset.ObjectsAndTools.bell.image.withRenderingMode(.alwaysTemplate) case .me: return UIImage(systemName: "person")! } } @@ -127,7 +127,7 @@ class MainTabBarController: UITabBarController { viewController = _viewController case .compose: viewController = UIViewController() - case .notification: + case .notifications: let _viewController = NotificationViewController() _viewController.context = context _viewController.coordinator = coordinator @@ -272,7 +272,7 @@ extension MainTabBarController { } ?? false let image: UIImage = { - if currentTab == .notification { + if currentTab == .notifications { return hasUnreadPushNotification ? Asset.ObjectsAndTools.bellBadgeFill.image.withRenderingMode(.alwaysTemplate) : Asset.ObjectsAndTools.bellFill.image.withRenderingMode(.alwaysTemplate) } else { return hasUnreadPushNotification ? Asset.ObjectsAndTools.bellBadge.image.withRenderingMode(.alwaysTemplate) : Asset.ObjectsAndTools.bell.image.withRenderingMode(.alwaysTemplate) @@ -593,7 +593,7 @@ extension MainTabBarController { let tabs: [Tab] = [ .home, .search, - .notification, + .notifications, .me ] for (i, tab) in tabs.enumerated() { diff --git a/Mastodon/Scene/Root/Sidebar/SidebarViewModel.swift b/Mastodon/Scene/Root/Sidebar/SidebarViewModel.swift index c3f9e3e36..7c323bbca 100644 --- a/Mastodon/Scene/Root/Sidebar/SidebarViewModel.swift +++ b/Mastodon/Scene/Root/Sidebar/SidebarViewModel.swift @@ -100,7 +100,7 @@ extension SidebarViewModel { .store(in: &cell.disposeBag) switch item { - case .notification: + case .notifications: Publishers.CombineLatest( self.context.notificationService.unreadNotificationCountDidUpdate, self.$currentTab @@ -116,7 +116,7 @@ extension SidebarViewModel { }() let image: UIImage = { - if currentTab == .notification { + if currentTab == .notifications { return hasUnreadPushNotification ? Asset.ObjectsAndTools.bellBadgeFill.image.withRenderingMode(.alwaysTemplate) : Asset.ObjectsAndTools.bellFill.image.withRenderingMode(.alwaysTemplate) } else { return hasUnreadPushNotification ? Asset.ObjectsAndTools.bellBadge.image.withRenderingMode(.alwaysTemplate) : Asset.ObjectsAndTools.bell.image.withRenderingMode(.alwaysTemplate) @@ -192,7 +192,7 @@ extension SidebarViewModel { let items: [Item] = [ .tab(.home), .tab(.search), - .tab(.notification), + .tab(.notifications), .tab(.me), .setting, ] diff --git a/Mastodon/Supporting Files/SceneDelegate.swift b/Mastodon/Supporting Files/SceneDelegate.swift index 1e97fb179..b25f7c5eb 100644 --- a/Mastodon/Supporting Files/SceneDelegate.swift +++ b/Mastodon/Supporting Files/SceneDelegate.swift @@ -172,7 +172,7 @@ extension SceneDelegate { return false } - coordinator.switchToTabBar(tab: .notification) + coordinator.switchToTabBar(tab: .notifications) case "org.joinmastodon.app.new-post": if coordinator?.tabBarController.topMost is ComposeViewController { diff --git a/MastodonSDK/Sources/MastodonLocalization/Generated/Strings.swift b/MastodonSDK/Sources/MastodonLocalization/Generated/Strings.swift index 44ae29267..684ba439f 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Generated/Strings.swift +++ b/MastodonSDK/Sources/MastodonLocalization/Generated/Strings.swift @@ -366,8 +366,8 @@ public enum L10n { public enum Tabs { /// Home public static let home = L10n.tr("Localizable", "Common.Controls.Tabs.Home") - /// Notification - public static let notification = L10n.tr("Localizable", "Common.Controls.Tabs.Notification") + /// Notifications + public static let notifications = L10n.tr("Localizable", "Common.Controls.Tabs.Notifications") /// Profile public static let profile = L10n.tr("Localizable", "Common.Controls.Tabs.Profile") /// Search diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/en.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/en.lproj/Localizable.strings index 9114b96e5..ac09ab1f4 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/en.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/en.lproj/Localizable.strings @@ -131,7 +131,7 @@ Please check your internet connection."; "Common.Controls.Status.Visibility.PrivateFromMe" = "Only my followers can see this post."; "Common.Controls.Status.Visibility.Unlisted" = "Everyone can see this post but not display in the public timeline."; "Common.Controls.Tabs.Home" = "Home"; -"Common.Controls.Tabs.Notification" = "Notification"; +"Common.Controls.Tabs.Notifications" = "Notifications"; "Common.Controls.Tabs.Profile" = "Profile"; "Common.Controls.Tabs.Search" = "Search"; "Common.Controls.Timeline.Filtered" = "Filtered"; From 89d9700ecdd6c5f7df1023cd8ba964d008a33af7 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Thu, 10 Nov 2022 00:41:26 +0100 Subject: [PATCH 118/598] New translations app.json (Chinese Traditional) --- Localization/StringsConvertor/input/zh-Hant.lproj/app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/zh-Hant.lproj/app.json b/Localization/StringsConvertor/input/zh-Hant.lproj/app.json index 9a7023220..3700f0dd0 100644 --- a/Localization/StringsConvertor/input/zh-Hant.lproj/app.json +++ b/Localization/StringsConvertor/input/zh-Hant.lproj/app.json @@ -138,7 +138,7 @@ }, "meta_entity": { "url": "連結:%s", - "hashtag": "Hashtag: %s", + "hashtag": "主題標籤: %s", "mention": "顯示個人檔案:%s", "email": "電子郵件地址:%s" }, From b9efc57dd372e0c8407c2139d5451d1f8cf4f277 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Thu, 10 Nov 2022 00:41:27 +0100 Subject: [PATCH 119/598] New translations app.json (Catalan) --- Localization/StringsConvertor/input/ca.lproj/app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/ca.lproj/app.json b/Localization/StringsConvertor/input/ca.lproj/app.json index 338d73599..45497e67d 100644 --- a/Localization/StringsConvertor/input/ca.lproj/app.json +++ b/Localization/StringsConvertor/input/ca.lproj/app.json @@ -138,7 +138,7 @@ }, "meta_entity": { "url": "Enllaç: %s", - "hashtag": "Hashtag: %s", + "hashtag": "Etiqueta %s", "mention": "Mostra el Perfil: %s", "email": "Correu electrònic: %s" }, From 211fce1d8e10b032c66f845f9b1eb9c0282c8133 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Thu, 10 Nov 2022 01:37:20 +0100 Subject: [PATCH 120/598] New translations app.json (Arabic) --- .../StringsConvertor/input/ar.lproj/app.json | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/Localization/StringsConvertor/input/ar.lproj/app.json b/Localization/StringsConvertor/input/ar.lproj/app.json index ea96af214..02132355c 100644 --- a/Localization/StringsConvertor/input/ar.lproj/app.json +++ b/Localization/StringsConvertor/input/ar.lproj/app.json @@ -137,10 +137,10 @@ "closed": "انتهى" }, "meta_entity": { - "url": "Link: %s", - "hashtag": "Hashtag: %s", - "mention": "Show Profile: %s", - "email": "Email address: %s" + "url": "رابِط: %s", + "hashtag": "وَسْم: %s", + "mention": "إظهار المِلف التعريفي: %s", + "email": "عُنوان البريد الإلكتُروني: %s" }, "actions": { "reply": "الرَّد", @@ -187,8 +187,8 @@ "unmute_user": "رفع الكتم عن %s", "muted": "مكتوم", "edit_info": "تَحريرُ المَعلُومات", - "show_reblogs": "Show Reblogs", - "hide_reblogs": "Hide Reblogs" + "show_reblogs": "إظهار إعادات التدوين", + "hide_reblogs": "إخفاء إعادات التدوين" }, "timeline": { "filtered": "مُصفَّى", @@ -465,12 +465,12 @@ "message": "تأكيدُ رَفع الحَظرِ عَن %s" }, "confirm_show_reblogs": { - "title": "Show Reblogs", - "message": "Confirm to show reblogs" + "title": "إظهار إعادات التدوين", + "message": "التأكيد لِإظهار إعادات التدوين" }, "confirm_hide_reblogs": { - "title": "Hide Reblogs", - "message": "Confirm to hide reblogs" + "title": "إخفاء إعادات التدوين", + "message": "التأكيد لِإخفاء إعادات التدوين" } }, "accessibility": { @@ -702,7 +702,7 @@ "accessibility_hint": "انقر نقرًا مزدوجًا لتجاهُل النافذة المنبثقة" }, "bookmark": { - "title": "Bookmarks" + "title": "العَلاماتُ المَرجعيَّة" } } } From 7906ab5e6149fa9ce64ab7b103a0d68694ca26b2 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Thu, 10 Nov 2022 05:32:04 +0100 Subject: [PATCH 121/598] New translations app.json (Vietnamese) --- Localization/StringsConvertor/input/vi.lproj/app.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Localization/StringsConvertor/input/vi.lproj/app.json b/Localization/StringsConvertor/input/vi.lproj/app.json index 4ab6a5799..1c60b214b 100644 --- a/Localization/StringsConvertor/input/vi.lproj/app.json +++ b/Localization/StringsConvertor/input/vi.lproj/app.json @@ -139,8 +139,8 @@ "meta_entity": { "url": "Link: %s", "hashtag": "Hashtag: %s", - "mention": "Show Profile: %s", - "email": "Email address: %s" + "mention": "Hiện hồ sơ: %s", + "email": "Email: %s" }, "actions": { "reply": "Trả lời", From 1bf1b773173bdeb3f4bc3f5dbae88e27d65621e6 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Thu, 10 Nov 2022 08:52:43 +0100 Subject: [PATCH 122/598] New translations app.json (Slovenian) --- Localization/StringsConvertor/input/sl.lproj/app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/sl.lproj/app.json b/Localization/StringsConvertor/input/sl.lproj/app.json index c4df31a4a..3f2ddf1e1 100644 --- a/Localization/StringsConvertor/input/sl.lproj/app.json +++ b/Localization/StringsConvertor/input/sl.lproj/app.json @@ -138,7 +138,7 @@ }, "meta_entity": { "url": "Povezava: %s", - "hashtag": "Hashtag: %s", + "hashtag": "Ključnik: %s", "mention": "Pokaži profil: %s", "email": "E-naslov: %s" }, From 4a969e5136d6a4f3433fcd9e934ca8b940d2f314 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Thu, 10 Nov 2022 08:52:44 +0100 Subject: [PATCH 123/598] New translations app.json (Galician) --- Localization/StringsConvertor/input/gl.lproj/app.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Localization/StringsConvertor/input/gl.lproj/app.json b/Localization/StringsConvertor/input/gl.lproj/app.json index ee3801a08..a4aacbdc5 100644 --- a/Localization/StringsConvertor/input/gl.lproj/app.json +++ b/Localization/StringsConvertor/input/gl.lproj/app.json @@ -137,10 +137,10 @@ "closed": "Pechada" }, "meta_entity": { - "url": "Link: %s", - "hashtag": "Hashtag: %s", - "mention": "Show Profile: %s", - "email": "Email address: %s" + "url": "Ligazón: %s", + "hashtag": "Cancelo: %s", + "mention": "Mostrar Perfil: %s", + "email": "Enderezo de email: %s" }, "actions": { "reply": "Responder", From 786e06458d4f6dc2f83ec2f06ee85b73520f4be6 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Thu, 10 Nov 2022 11:17:45 +0100 Subject: [PATCH 124/598] New translations app.json (Romanian) --- Localization/StringsConvertor/input/ro.lproj/app.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Localization/StringsConvertor/input/ro.lproj/app.json b/Localization/StringsConvertor/input/ro.lproj/app.json index d0e2d0de0..11b25f687 100644 --- a/Localization/StringsConvertor/input/ro.lproj/app.json +++ b/Localization/StringsConvertor/input/ro.lproj/app.json @@ -32,9 +32,9 @@ "message": "Nu se poate edita profilul. Vă rugăm să încercaţi din nou." }, "sign_out": { - "title": "Deconectați-vă", + "title": "Deconectare", "message": "Sigur doriți să vă deconectați?", - "confirm": "Deconectați-vă" + "confirm": "Deconectare" }, "block_domain": { "title": "Are you really, really sure you want to block the entire %s? In most cases a few targeted blocks or mutes are sufficient and preferable. You will not see content from that domain and any of your followers from that domain will be removed.", From d6b90f40bddfd27edee57611491053194deab257 Mon Sep 17 00:00:00 2001 From: CMK Date: Thu, 10 Nov 2022 18:36:36 +0800 Subject: [PATCH 125/598] feat: add simple progress remain time estimate --- .../Attachment/AttachmentView.swift | 64 ++++++++----- .../Attachment/AttachmentViewModel.swift | 92 ++++++++++++++++--- .../ComposeContentViewModel.swift | 5 + .../Vendor/CircleProgressView.swift | 29 ++++++ 4 files changed, 158 insertions(+), 32 deletions(-) create mode 100644 MastodonSDK/Sources/MastodonUI/Vendor/CircleProgressView.swift diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentView.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentView.swift index c3ca6fc67..854b35f41 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentView.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentView.swift @@ -53,32 +53,58 @@ public struct AttachmentView: View { if viewModel.output != nil { VisualEffectView(effect: blurEffect) VStack { - let image: UIImage = { + let actionType: AttachmentView.Action = { if let _ = viewModel.error { - return Asset.Scene.Compose.Attachment.retry.image.withRenderingMode(.alwaysTemplate) + return .retry } else { - return Asset.Scene.Compose.Attachment.stop.image.withRenderingMode(.alwaysTemplate) + return .remove } }() - Image(uiImage: image) - .foregroundColor(.white) - .padding() - .background(Color(Asset.Scene.Compose.Attachment.indicatorButtonBackground.color)) - .clipShape(Circle()) - .padding() + Button { + action(actionType) + } label: { + let image: UIImage = { + switch actionType { + case .remove: + return Asset.Scene.Compose.Attachment.stop.image.withRenderingMode(.alwaysTemplate) + case .retry: + return Asset.Scene.Compose.Attachment.retry.image.withRenderingMode(.alwaysTemplate) + } + }() + Image(uiImage: image) + .foregroundColor(.white) + .padding() + .background(Color(Asset.Scene.Compose.Attachment.indicatorButtonBackground.color)) + .overlay( + CircleProgressView(progress: viewModel.fractionCompleted) + .animation(.default, value: viewModel.fractionCompleted) + ) + .clipShape(Circle()) + .padding() + } + let title: String = { - if let _ = viewModel.error { + switch actionType { + case .remove: + let totalSizeInByte = viewModel.outputSizeInByte + let uploadSizeInByte = Double(totalSizeInByte) * viewModel.progress.fractionCompleted + let total = ByteCountFormatter.string(fromByteCount: Int64(totalSizeInByte), countStyle: .memory) + let upload = ByteCountFormatter.string(fromByteCount: Int64(uploadSizeInByte), countStyle: .memory) + return "\(upload)/\(total)" + case .retry: return "Upload Failed" // TODO: i18n - } else { - let total = ByteCountFormatter.string(fromByteCount: Int64(viewModel.outputSizeInByte), countStyle: .memory) - return "…/\(total)" } }() let subtitle: String = { - if let error = viewModel.error { - return error.localizedDescription - } else { - return "… remaining" + switch actionType { + case .remove: + if viewModel.progress.fractionCompleted < 1 { + return viewModel.remainTimeLocalizedString ?? "" + } else { + return "" + } + case .retry: + return viewModel.error?.localizedDescription ?? "" } }() Text(title) @@ -92,10 +118,6 @@ public struct AttachmentView: View { } } } // end ZStack - .onChange(of: viewModel.progress) { progress in - // not works… - print(progress.completedUnitCount) - } } // end body } diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel.swift index 20e8186ad..276e19de7 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel.swift @@ -32,12 +32,19 @@ final public class AttachmentViewModel: NSObject, ObservableObject, Identifiable // output @Published public private(set) var output: Output? @Published public private(set) var thumbnail: UIImage? // original size image thumbnail - @Published public private(set) var outputSizeInByte: Int = 0 + @Published public private(set) var outputSizeInByte: Int64 = 0 @Published public var uploadResult: UploadResult? @Published var error: Error? let progress = Progress() // upload progress + @Published var fractionCompleted: Double = 0 + + var displayLink: CADisplayLink! + private var lastTimestamp: TimeInterval? + private var lastUploadSizeInByte: Int64 = 0 + private var averageUploadSpeedInByte: Int64 = 0 + @Published var remainTimeLocalizedString: String? public init( api: APIService, @@ -49,26 +56,34 @@ final public class AttachmentViewModel: NSObject, ObservableObject, Identifiable self.input = input super.init() // end init + + self.displayLink = CADisplayLink( + target: self, + selector: #selector(AttachmentViewModel.step(displayLink:)) + ) + displayLink.add(to: .current, forMode: .common) progress .observe(\.fractionCompleted, options: [.initial, .new]) { [weak self] progress, _ in guard let self = self else { return } self.logger.log(level: .debug, "\((#file as NSString).lastPathComponent, privacy: .public)[\(#line, privacy: .public)], \(#function, privacy: .public): publish progress \(progress.fractionCompleted)") + self.fractionCompleted = progress.fractionCompleted DispatchQueue.main.async { self.objectWillChange.send() } } .store(in: &observations) - progress - .observe(\.isFinished, options: [.initial, .new]) { [weak self] progress, _ in - guard let self = self else { return } - self.logger.log(level: .debug, "\((#file as NSString).lastPathComponent, privacy: .public)[\(#line, privacy: .public)], \(#function, privacy: .public): publish progress \(progress.fractionCompleted)") - DispatchQueue.main.async { - self.objectWillChange.send() - } - } - .store(in: &observations) + // Note: this observation is redundant if .fractionCompleted listener always emit event when reach 1.0 progress + // progress + // .observe(\.isFinished, options: [.initial, .new]) { [weak self] progress, _ in + // guard let self = self else { return } + // self.logger.log(level: .debug, "\((#file as NSString).lastPathComponent, privacy: .public)[\(#line, privacy: .public)], \(#function, privacy: .public): publish progress \(progress.fractionCompleted)") + // DispatchQueue.main.async { + // self.objectWillChange.send() + // } + // } + // .store(in: &observations) $output .map { output -> UIImage? in @@ -89,7 +104,7 @@ final public class AttachmentViewModel: NSObject, ObservableObject, Identifiable do { let output = try await load(input: input) self.output = output - self.outputSizeInByte = output.asAttachment.sizeInByte ?? 0 + self.outputSizeInByte = output.asAttachment.sizeInByte.flatMap { Int64($0) } ?? 0 let uploadResult = try await self.upload(context: .init( apiService: self.api, authContext: self.authContext @@ -103,6 +118,9 @@ final public class AttachmentViewModel: NSObject, ObservableObject, Identifiable } deinit { + displayLink.invalidate() + displayLink.remove(from: .current, forMode: .common) + switch output { case .image: // FIXME: @@ -115,6 +133,58 @@ final public class AttachmentViewModel: NSObject, ObservableObject, Identifiable } } +// calculate the upload speed +// ref: https://stackoverflow.com/a/3841706/3797903 +extension AttachmentViewModel { + + static var SpeedSmoothingFactor = 0.4 + static let remainsTimeFormatter: RelativeDateTimeFormatter = { + let formatter = RelativeDateTimeFormatter() + formatter.unitsStyle = .short + return formatter + }() + + @objc private func step(displayLink: CADisplayLink) { + guard let lastTimestamp = self.lastTimestamp else { + self.lastTimestamp = displayLink.timestamp + self.lastUploadSizeInByte = Int64(Double(outputSizeInByte) * progress.fractionCompleted) + return + } + + let duration = displayLink.timestamp - lastTimestamp + guard duration >= 1.0 else { return } // update every 1 sec + + let old = self.lastUploadSizeInByte + self.lastUploadSizeInByte = Int64(Double(outputSizeInByte) * progress.fractionCompleted) + + let newSpeed = self.lastUploadSizeInByte - old + let lastAverageSpeed = self.averageUploadSpeedInByte + let newAverageSpeed = Int64(AttachmentViewModel.SpeedSmoothingFactor * Double(newSpeed) + (1 - AttachmentViewModel.SpeedSmoothingFactor) * Double(lastAverageSpeed)) + + let remainSizeInByte = Double(outputSizeInByte) * (1 - progress.fractionCompleted) + + let speed = Double(newAverageSpeed) + if speed != .zero { + // estimate by speed + let uploadRemainTimeInSecond = remainSizeInByte / speed + // estimate by progress 1s for 10% + let remainPercentage = 1 - progress.fractionCompleted + let estimateRemainTimeByProgress = remainPercentage / 0.1 + // max estimate + let remainTimeInSecond = max(estimateRemainTimeByProgress, uploadRemainTimeInSecond) + + let string = AttachmentViewModel.remainsTimeFormatter.localizedString(fromTimeInterval: remainTimeInSecond) + remainTimeLocalizedString = string + // print("remains: \(remainSizeInByte), speed: \(newAverageSpeed), \(string)") + } else { + remainTimeLocalizedString = nil + } + + self.lastTimestamp = displayLink.timestamp + self.averageUploadSpeedInByte = newAverageSpeed + } +} + extension AttachmentViewModel { public enum Input: Hashable { case image(UIImage) diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel.swift index 73272b419..c758a397b 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel.swift @@ -278,6 +278,11 @@ extension ComposeContentViewModel { // MARK: - UITextViewDelegate extension ComposeContentViewModel: UITextViewDelegate { public func textViewDidBeginEditing(_ textView: UITextView) { + // Note: + // Xcode warning: + // Publishing changes from within view updates is not allowed, this will cause undefined behavior. + // + // Just ignore the warning and see what will happen… switch textView { case contentMetaText?.textView: isContentEditing = true diff --git a/MastodonSDK/Sources/MastodonUI/Vendor/CircleProgressView.swift b/MastodonSDK/Sources/MastodonUI/Vendor/CircleProgressView.swift new file mode 100644 index 000000000..f9b09e740 --- /dev/null +++ b/MastodonSDK/Sources/MastodonUI/Vendor/CircleProgressView.swift @@ -0,0 +1,29 @@ +// +// CircleProgressView.swift +// +// +// Created by MainasuK on 2022/11/10. +// + +import Foundation +import SwiftUI + +/// https://stackoverflow.com/a/71467536/3797903 +struct CircleProgressView: View { + + let progress: Double + + var body: some View { + let lineWidth: CGFloat = 4 + let tintColor = Color.white + ZStack { + Circle() + .trim(from: 0.0, to: CGFloat(progress)) + .stroke(style: StrokeStyle(lineWidth: lineWidth, lineCap: .butt, lineJoin: .bevel)) + .foregroundColor(tintColor) + .rotationEffect(Angle(degrees: 270.0)) + } + .padding(ceil(lineWidth / 2)) + } + +} From 0e8faddbe92703c9abd227bd9dcf4f972cafb83b Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Thu, 10 Nov 2022 13:09:53 +0100 Subject: [PATCH 126/598] New translations app.json (Swedish) --- .../StringsConvertor/input/sv.lproj/app.json | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/Localization/StringsConvertor/input/sv.lproj/app.json b/Localization/StringsConvertor/input/sv.lproj/app.json index ab7ff5f24..5025358fd 100644 --- a/Localization/StringsConvertor/input/sv.lproj/app.json +++ b/Localization/StringsConvertor/input/sv.lproj/app.json @@ -111,9 +111,9 @@ "next_status": "Nästa inlägg", "open_status": "Öppna inlägg", "open_author_profile": "Öppna författarens profil", - "open_reblogger_profile": "Öppna ompostarens profil", + "open_reblogger_profile": "Öppna boostarens profil", "reply_status": "Svara på inlägg", - "toggle_reblog": "Växla puff på inlägg", + "toggle_reblog": "Växla boost på inlägg", "toggle_favorite": "Växla favorit på inlägg", "toggle_content_warning": "Växla innehållsvarning", "preview_image": "Förhandsgranska bild" @@ -124,7 +124,7 @@ } }, "status": { - "user_reblogged": "%s puffade", + "user_reblogged": "%s boostade", "user_replied_to": "Svarade på %s", "show_post": "Visa inlägg", "show_user_profile": "Visa användarprofil", @@ -144,8 +144,8 @@ }, "actions": { "reply": "Svara", - "reblog": "Puffa", - "unreblog": "Ångra puff", + "reblog": "Boosta", + "unreblog": "Ångra boost", "favorite": "Favorit", "unfavorite": "Ta bort favorit", "menu": "Meny", @@ -187,8 +187,8 @@ "unmute_user": "Avtysta %s", "muted": "Tystad", "edit_info": "Redigera info", - "show_reblogs": "Visa knuffar", - "hide_reblogs": "Dölj puffar" + "show_reblogs": "Visa boostar", + "hide_reblogs": "Dölj boostar" }, "timeline": { "filtered": "Filtrerat", @@ -465,8 +465,8 @@ "message": "Bekräfta för att avblockera %s" }, "confirm_show_reblogs": { - "title": "Visa puffar", - "message": "Bekräfta för att visa puffar" + "title": "Visa boostar", + "message": "Bekräfta för att visa boostar" }, "confirm_hide_reblogs": { "title": "Dölj puffar", @@ -592,7 +592,7 @@ "title": "Notiser", "favorites": "Favoriserar mitt inlägg", "follows": "Följer mig", - "boosts": "Ompostar mitt inlägg", + "boosts": "Boostar mitt inlägg", "mentions": "Nämner mig", "trigger": { "anyone": "alla", From 323fcf1cc9961d1e5efab2c122e271946dc58da8 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Thu, 10 Nov 2022 14:10:52 +0100 Subject: [PATCH 127/598] New translations app.json (Swedish) --- Localization/StringsConvertor/input/sv.lproj/app.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Localization/StringsConvertor/input/sv.lproj/app.json b/Localization/StringsConvertor/input/sv.lproj/app.json index 5025358fd..0b04e01d7 100644 --- a/Localization/StringsConvertor/input/sv.lproj/app.json +++ b/Localization/StringsConvertor/input/sv.lproj/app.json @@ -469,8 +469,8 @@ "message": "Bekräfta för att visa boostar" }, "confirm_hide_reblogs": { - "title": "Dölj puffar", - "message": "Bekräfta för att dölja puffar" + "title": "Dölj boostar", + "message": "Bekräfta för att dölja boostar" } }, "accessibility": { @@ -496,7 +496,7 @@ "title": "Favoriserad av" }, "reblogged_by": { - "title": "Puffat av" + "title": "Boostat av" }, "search": { "title": "Sök", @@ -552,7 +552,7 @@ "notification_description": { "followed_you": "följde dig", "favorited_your_post": "favoriserade ditt inlägg", - "reblogged_your_post": "puffade ditt inlägg", + "reblogged_your_post": "boostade ditt inlägg", "mentioned_you": "nämnde dig", "request_to_follow_you": "begär att följa dig", "poll_has_ended": "omröstningen har avslutats" @@ -678,7 +678,7 @@ "unfollowed": "Slutade följa", "unfollow_user": "Avfölj %s", "mute_user": "Tysta %s", - "you_wont_see_their_posts_or_reblogs_in_your_home_feed_they_wont_know_they_ve_been_muted": "Du kommer inte att se deras inlägg eller ompostningar i ditt hemflöde. De kommer inte att veta att de har blivit tystade.", + "you_wont_see_their_posts_or_reblogs_in_your_home_feed_they_wont_know_they_ve_been_muted": "Du kommer inte att se deras inlägg eller boostar i ditt hemflöde. De kommer inte att veta att de har blivit tystade.", "block_user": "Blockera %s", "they_will_no_longer_be_able_to_follow_or_see_your_posts_but_they_can_see_if_theyve_been_blocked": "De kommer inte längre att kunna följa eller se dina inlägg, men de kan se om de har blockerats.", "while_we_review_this_you_can_take_action_against_user": "Medan vi granskar detta kan du vidta åtgärder mot %s" From 415bfedb223d43786c8417588bb3136f28a7a140 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Thu, 10 Nov 2022 14:10:53 +0100 Subject: [PATCH 128/598] New translations Localizable.stringsdict (Swedish) --- .../StringsConvertor/input/sv.lproj/Localizable.stringsdict | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Localization/StringsConvertor/input/sv.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/sv.lproj/Localizable.stringsdict index 048af4732..c7317903d 100644 --- a/Localization/StringsConvertor/input/sv.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/sv.lproj/Localizable.stringsdict @@ -152,9 +152,9 @@ NSStringFormatValueTypeKey ld one - %ld puff + %ld boost other - %ld puffar + %ld boostar plural.count.reply From 38221e059972776b666e9eb84ccf2d1bb686329a Mon Sep 17 00:00:00 2001 From: Natalia Ossipova Date: Thu, 10 Nov 2022 17:17:22 +0100 Subject: [PATCH 129/598] Remove mute/block/report from menu for own toots (#519) --- .../View/Content/StatusAuthorView.swift | 33 +++++++++++-------- 1 file changed, 19 insertions(+), 14 deletions(-) diff --git a/MastodonSDK/Sources/MastodonUI/View/Content/StatusAuthorView.swift b/MastodonSDK/Sources/MastodonUI/View/Content/StatusAuthorView.swift index e2879d1e8..0631875c0 100644 --- a/MastodonSDK/Sources/MastodonUI/View/Content/StatusAuthorView.swift +++ b/MastodonSDK/Sources/MastodonUI/View/Content/StatusAuthorView.swift @@ -152,25 +152,30 @@ extension StatusAuthorView { } public func setupAuthorMenu(menuContext: AuthorMenuContext) -> (UIMenu, [UIAccessibilityCustomAction]) { - var actions: [MastodonMenu.Action] = [] + var actions = [MastodonMenu.Action]() - actions = [ - .muteUser(.init( - name: menuContext.name, - isMuting: menuContext.isMuting - )), - .blockUser(.init( - name: menuContext.name, - isBlocking: menuContext.isBlocking - )), - .reportUser( - .init(name: menuContext.name) - ), + if !menuContext.isMyself { + actions.append(contentsOf: [ + .muteUser(.init( + name: menuContext.name, + isMuting: menuContext.isMuting + )), + .blockUser(.init( + name: menuContext.name, + isBlocking: menuContext.isBlocking + )), + .reportUser( + .init(name: menuContext.name) + ) + ]) + } + + actions.append(contentsOf: [ .bookmarkStatus( .init(isBookmarking: menuContext.isBookmarking) ), .shareStatus - ] + ]) if menuContext.isMyself { actions.append(.deleteStatus) From 002d2796e49d5057b12a32cc5403cf72633ffb2e Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Thu, 10 Nov 2022 17:23:29 +0100 Subject: [PATCH 130/598] New translations app.json (Thai) --- Localization/StringsConvertor/input/th.lproj/app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/th.lproj/app.json b/Localization/StringsConvertor/input/th.lproj/app.json index c8382bd80..fc88065d9 100644 --- a/Localization/StringsConvertor/input/th.lproj/app.json +++ b/Localization/StringsConvertor/input/th.lproj/app.json @@ -138,7 +138,7 @@ }, "meta_entity": { "url": "ลิงก์: %s", - "hashtag": "Hashtag: %s", + "hashtag": "แฮชแท็ก: %s", "mention": "โปรไฟล์ที่แสดง: %s", "email": "ที่อยู่อีเมล: %s" }, From cdb8d9e27f4c0da5f5009c295dbe10c351df3b4c Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Thu, 10 Nov 2022 18:55:18 +0100 Subject: [PATCH 131/598] New translations app.json (French) --- Localization/StringsConvertor/input/fr.lproj/app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/fr.lproj/app.json b/Localization/StringsConvertor/input/fr.lproj/app.json index 1e733db5f..f719f21a4 100644 --- a/Localization/StringsConvertor/input/fr.lproj/app.json +++ b/Localization/StringsConvertor/input/fr.lproj/app.json @@ -138,7 +138,7 @@ }, "meta_entity": { "url": "Lien : %s", - "hashtag": "Hashtag: %s", + "hashtag": "Hashtag : %s", "mention": "Afficher le profile : %s", "email": "Adresse e-mail : %s" }, From 3b19773ebecfc038f1e48cc2bb90b0ba864cc836 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Fri, 11 Nov 2022 08:28:14 +0100 Subject: [PATCH 132/598] New translations app.json (Indonesian) --- .../StringsConvertor/input/id.lproj/app.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Localization/StringsConvertor/input/id.lproj/app.json b/Localization/StringsConvertor/input/id.lproj/app.json index fe678e75c..987a1c0f4 100644 --- a/Localization/StringsConvertor/input/id.lproj/app.json +++ b/Localization/StringsConvertor/input/id.lproj/app.json @@ -6,29 +6,29 @@ "please_try_again_later": "Silakan coba lagi nanti." }, "sign_up_failure": { - "title": "Sign Up Failure" + "title": "Gagal Mendaftar" }, "server_error": { "title": "Kesalahan Server" }, "vote_failure": { - "title": "Vote Failure", + "title": "Gagal Voting", "poll_ended": "Japat telah berakhir" }, "discard_post_content": { "title": "Hapus Draf", - "message": "Confirm to discard composed post content." + "message": "Konfirmasi untuk mengabaikan postingan yang dibuat." }, "publish_post_failure": { - "title": "Publish Failure", - "message": "Failed to publish the post.\nPlease check your internet connection.", + "title": "Gagal Mempublikasikan", + "message": "Gagal mempublikasikan postingan.\nMohon periksa koneksi Internet Anda.", "attachments_message": { "video_attach_with_photo": "Tidak dapat melampirkan video di postingan yang sudah mengandung gambar.", "more_than_one_video": "Tidak dapat melampirkan lebih dari satu video." } }, "edit_profile_failure": { - "title": "Edit Profile Error", + "title": "Masalah dalam mengubah profil", "message": "Tidak dapat menyunting profil. Harap coba lagi." }, "sign_out": { From 5fb26a5eba5ee837cda75ddf63c33757e81792f3 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Fri, 11 Nov 2022 09:33:38 +0100 Subject: [PATCH 133/598] New translations app.json (Indonesian) --- .../StringsConvertor/input/id.lproj/app.json | 32 +++++++++---------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/Localization/StringsConvertor/input/id.lproj/app.json b/Localization/StringsConvertor/input/id.lproj/app.json index 987a1c0f4..689cd0995 100644 --- a/Localization/StringsConvertor/input/id.lproj/app.json +++ b/Localization/StringsConvertor/input/id.lproj/app.json @@ -37,16 +37,16 @@ "confirm": "Keluar" }, "block_domain": { - "title": "Are you really, really sure you want to block the entire %s? In most cases a few targeted blocks or mutes are sufficient and preferable. You will not see content from that domain and any of your followers from that domain will be removed.", + "title": "Apakah Anda benar, benar yakin ingin memblokir keseluruhan %s? Dalam kebanyakan kasus, beberapa pemblokiran atau pembisuan yang ditargetkan sudah cukup dan lebih disukai. Anda tidak akan melihat konten dari domain tersebut dan semua pengikut Anda dari domain itu akan dihapus.", "block_entire_domain": "Blokir Domain" }, "save_photo_failure": { - "title": "Save Photo Failure", - "message": "Please enable the photo library access permission to save the photo." + "title": "Gagal Menyimpan Foto", + "message": "Mohon aktifkan izin akses pustaka foto untuk menyimpan foto." }, "delete_post": { "title": "Apakah Anda yakin ingin menghapus postingan ini?", - "message": "Are you sure you want to delete this post?" + "message": "Apakah Anda yakin untuk menghapus kiriman ini?" }, "clean_cache": { "title": "Bersihkan Cache", @@ -67,11 +67,11 @@ "done": "Selesai", "confirm": "Konfirmasi", "continue": "Lanjut", - "compose": "Compose", + "compose": "Tulis", "cancel": "Batal", - "discard": "Discard", + "discard": "Buang", "try_again": "Coba Lagi", - "take_photo": "Take Photo", + "take_photo": "Ambil Foto", "save_photo": "Simpan Foto", "copy_photo": "Salin Foto", "sign_in": "Masuk", @@ -82,9 +82,9 @@ "share_user": "Bagikan %s", "share_post": "Bagikan Postingan", "open_in_safari": "Buka di Safari", - "open_in_browser": "Open in Browser", + "open_in_browser": "Buka di Peramban", "find_people": "Cari orang untuk diikuti", - "manually_search": "Manually search instead", + "manually_search": "Cari secara manual saja", "skip": "Lewati", "reply": "Balas", "report_user": "Laporkan %s", @@ -111,16 +111,16 @@ "next_status": "Postingan Selanjutnya", "open_status": "Buka Postingan", "open_author_profile": "Buka Profil Penulis", - "open_reblogger_profile": "Open Reblogger's Profile", + "open_reblogger_profile": "Buka Profil Reblogger", "reply_status": "Balas Postingan", - "toggle_reblog": "Toggle Reblog on Post", - "toggle_favorite": "Toggle Favorite on Post", - "toggle_content_warning": "Toggle Content Warning", - "preview_image": "Preview Image" + "toggle_reblog": "Nyalakan Reblog pada Postingan", + "toggle_favorite": "Nyalakan Favorit pada Postingan", + "toggle_content_warning": "Nyalakan Peringatan Konten", + "preview_image": "Pratinjau Gambar" }, "segmented_control": { - "previous_section": "Previous Section", - "next_section": "Next Section" + "previous_section": "Bagian Sebelumnya", + "next_section": "Bagian Selanjutnya" } }, "status": { From 088e6f05ec14eb9a09a9c305fd9833b21be88a5e Mon Sep 17 00:00:00 2001 From: CMK Date: Fri, 11 Nov 2022 18:10:13 +0800 Subject: [PATCH 134/598] feat: upload media in queue --- .../Attachment/AttachmentView.swift | 31 +++------ .../AttachmentViewModel+Upload.swift | 49 +++++++++++-- .../Attachment/AttachmentViewModel.swift | 68 +++++++++++++++---- .../ComposeContentViewController.swift | 3 +- .../ComposeContentViewModel.swift | 62 +++++++++++++++++ .../View/ComposeContentView.swift | 4 +- 6 files changed, 173 insertions(+), 44 deletions(-) diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentView.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentView.swift index 854b35f41..3fbccbbc7 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentView.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentView.swift @@ -15,9 +15,7 @@ import MastodonAsset public struct AttachmentView: View { @ObservedObject var viewModel: AttachmentViewModel - - let action: (Action) -> Void - + var blurEffect: UIBlurEffect { UIBlurEffect(style: .systemUltraThinMaterialDark) } @@ -53,7 +51,7 @@ public struct AttachmentView: View { if viewModel.output != nil { VisualEffectView(effect: blurEffect) VStack { - let actionType: AttachmentView.Action = { + let action: AttachmentViewModel.Action = { if let _ = viewModel.error { return .retry } else { @@ -61,10 +59,10 @@ public struct AttachmentView: View { } }() Button { - action(actionType) + viewModel.delegate?.attachmentViewModel(viewModel, actionButtonDidPressed: action) } label: { let image: UIImage = { - switch actionType { + switch action { case .remove: return Asset.Scene.Compose.Attachment.stop.image.withRenderingMode(.alwaysTemplate) case .retry: @@ -84,21 +82,21 @@ public struct AttachmentView: View { } let title: String = { - switch actionType { + switch action { case .remove: let totalSizeInByte = viewModel.outputSizeInByte - let uploadSizeInByte = Double(totalSizeInByte) * viewModel.progress.fractionCompleted - let total = ByteCountFormatter.string(fromByteCount: Int64(totalSizeInByte), countStyle: .memory) - let upload = ByteCountFormatter.string(fromByteCount: Int64(uploadSizeInByte), countStyle: .memory) - return "\(upload)/\(total)" + let uploadSizeInByte = Double(totalSizeInByte) * min(1.0, viewModel.fractionCompleted) + let total = viewModel.byteCountFormatter.string(fromByteCount: Int64(totalSizeInByte)) + let upload = viewModel.byteCountFormatter.string(fromByteCount: Int64(uploadSizeInByte)) + return "\(upload) / \(total)" case .retry: return "Upload Failed" // TODO: i18n } }() let subtitle: String = { - switch actionType { + switch action { case .remove: - if viewModel.progress.fractionCompleted < 1 { + if viewModel.progress.fractionCompleted < 1, viewModel.uploadState == .uploading { return viewModel.remainTimeLocalizedString ?? "" } else { return "" @@ -121,10 +119,3 @@ public struct AttachmentView: View { } // end body } - -extension AttachmentView { - public enum Action: Hashable { - case remove - case retry - } -} diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel+Upload.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel+Upload.swift index fcb30d954..67f0e71ed 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel+Upload.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel+Upload.swift @@ -53,6 +53,14 @@ extension Data { } extension AttachmentViewModel { + public enum UploadState { + case none + case ready + case uploading + case fail + case finish + } + struct UploadContext { let apiService: APIService let authContext: AuthContext @@ -62,12 +70,43 @@ extension AttachmentViewModel { } extension AttachmentViewModel { - func upload(context: UploadContext) async throws -> UploadResult { - return try await uploadMastodonMedia( - context: context - ) + @MainActor + func upload(isRetry: Bool = false) async throws { + do { + let result = try await upload( + context: .init( + apiService: self.api, + authContext: self.authContext + ), + isRetry: isRetry + ) + update(uploadResult: result) + } catch { + self.error = error + } } + @MainActor + private func upload(context: UploadContext, isRetry: Bool) async throws -> UploadResult { + if isRetry { + guard uploadState == .fail else { throw AppError.badRequest } + self.error = nil + self.fractionCompleted = 0 + } else { + guard uploadState == .ready else { throw AppError.badRequest } + } + do { + update(uploadState: .uploading) + let result = try await uploadMastodonMedia( + context: context + ) + update(uploadState: .finish) + return result + } catch { + update(uploadState: .fail) + throw error + } + } // MainActor is required here to trigger stream upload task @MainActor @@ -132,7 +171,7 @@ extension AttachmentViewModel { if attachmentUploadResponse.statusCode == 202 { // note: // the Mastodon server append the attachments in order by upload time - // can not upload concurrency + // can not upload parallels let waitProcessRetryLimit = checkUploadTaskRetryLimit var waitProcessRetryCount: Int64 = 0 diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel.swift index 276e19de7..9409e7380 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel.swift @@ -12,6 +12,11 @@ import PhotosUI import Kingfisher import MastodonCore +public protocol AttachmentViewModelDelegate: AnyObject { + func attachmentViewModel(_ viewModel: AttachmentViewModel, uploadStateValueDidChange state: AttachmentViewModel.UploadState) + func attachmentViewModel(_ viewModel: AttachmentViewModel, actionButtonDidPressed action: AttachmentViewModel.Action) +} + final public class AttachmentViewModel: NSObject, ObservableObject, Identifiable { static let logger = Logger(subsystem: "AttachmentViewModel", category: "ViewModel") @@ -21,6 +26,15 @@ final public class AttachmentViewModel: NSObject, ObservableObject, Identifiable var disposeBag = Set() var observations = Set() + + weak var delegate: AttachmentViewModelDelegate? + + let byteCountFormatter: ByteCountFormatter = { + let formatter = ByteCountFormatter() + formatter.allowsNonnumericFormatting = true + formatter.countStyle = .memory + return formatter + }() // input public let api: APIService @@ -34,7 +48,9 @@ final public class AttachmentViewModel: NSObject, ObservableObject, Identifiable @Published public private(set) var thumbnail: UIImage? // original size image thumbnail @Published public private(set) var outputSizeInByte: Int64 = 0 - @Published public var uploadResult: UploadResult? + @MainActor + @Published public private(set) var uploadState: UploadState = .none + @Published public private(set) var uploadResult: UploadResult? @Published var error: Error? let progress = Progress() // upload progress @@ -44,16 +60,19 @@ final public class AttachmentViewModel: NSObject, ObservableObject, Identifiable private var lastTimestamp: TimeInterval? private var lastUploadSizeInByte: Int64 = 0 private var averageUploadSpeedInByte: Int64 = 0 + private var remainTimeInterval: Double? @Published var remainTimeLocalizedString: String? public init( api: APIService, authContext: AuthContext, - input: Input + input: Input, + delegate: AttachmentViewModelDelegate ) { self.api = api self.authContext = authContext self.input = input + self.delegate = delegate super.init() // end init @@ -67,9 +86,8 @@ final public class AttachmentViewModel: NSObject, ObservableObject, Identifiable .observe(\.fractionCompleted, options: [.initial, .new]) { [weak self] progress, _ in guard let self = self else { return } self.logger.log(level: .debug, "\((#file as NSString).lastPathComponent, privacy: .public)[\(#line, privacy: .public)], \(#function, privacy: .public): publish progress \(progress.fractionCompleted)") - self.fractionCompleted = progress.fractionCompleted DispatchQueue.main.async { - self.objectWillChange.send() + self.fractionCompleted = progress.fractionCompleted } } .store(in: &observations) @@ -105,11 +123,8 @@ final public class AttachmentViewModel: NSObject, ObservableObject, Identifiable let output = try await load(input: input) self.output = output self.outputSizeInByte = output.asAttachment.sizeInByte.flatMap { Int64($0) } ?? 0 - let uploadResult = try await self.upload(context: .init( - apiService: self.api, - authContext: self.authContext - )) - self.uploadResult = uploadResult + self.update(uploadState: .ready) + self.delegate?.attachmentViewModel(self, uploadStateValueDidChange: self.uploadState) } catch { self.error = error } @@ -127,7 +142,7 @@ final public class AttachmentViewModel: NSObject, ObservableObject, Identifiable break case .video(let url, _): try? FileManager.default.removeItem(at: url) - case nil : + case nil: break } } @@ -140,7 +155,7 @@ extension AttachmentViewModel { static var SpeedSmoothingFactor = 0.4 static let remainsTimeFormatter: RelativeDateTimeFormatter = { let formatter = RelativeDateTimeFormatter() - formatter.unitsStyle = .short + formatter.unitsStyle = .full return formatter }() @@ -171,7 +186,15 @@ extension AttachmentViewModel { let remainPercentage = 1 - progress.fractionCompleted let estimateRemainTimeByProgress = remainPercentage / 0.1 // max estimate - let remainTimeInSecond = max(estimateRemainTimeByProgress, uploadRemainTimeInSecond) + var remainTimeInSecond = max(estimateRemainTimeByProgress, uploadRemainTimeInSecond) + + // do not increate timer when < 5 sec + if let remainTimeInterval = self.remainTimeInterval, remainTimeInSecond < 5 { + remainTimeInSecond = min(remainTimeInterval, remainTimeInSecond) + self.remainTimeInterval = remainTimeInSecond + } else { + self.remainTimeInterval = remainTimeInSecond + } let string = AttachmentViewModel.remainsTimeFormatter.localizedString(fromTimeInterval: remainTimeInSecond) remainTimeLocalizedString = string @@ -236,7 +259,22 @@ extension AttachmentViewModel { } +extension AttachmentViewModel { + public enum Action: Hashable { + case remove + case retry + } +} - - - +extension AttachmentViewModel { + @MainActor + func update(uploadState: UploadState) { + self.uploadState = uploadState + self.delegate?.attachmentViewModel(self, uploadStateValueDidChange: self.uploadState) + } + + @MainActor + func update(uploadResult: UploadResult) { + self.uploadResult = uploadResult + } +} diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewController.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewController.swift index b9fbab856..7dde9c8c0 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewController.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewController.swift @@ -329,7 +329,8 @@ extension ComposeContentViewController: PHPickerViewControllerDelegate { AttachmentViewModel( api: viewModel.context.apiService, authContext: viewModel.authContext, - input: .pickerResult(result) + input: .pickerResult(result), + delegate: viewModel ) } viewModel.attachmentViewModels += attachmentViewModels diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel.swift index c758a397b..03db3b010 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel.swift @@ -177,6 +177,17 @@ public final class ComposeContentViewModel: NSObject, ObservableObject { ) .map { $0 + $1 <= $2 } .assign(to: &$isContentValid) + + // bind attachment + $attachmentViewModels + .receive(on: DispatchQueue.main) + .sink { [weak self] _ in + guard let self = self else { return } + Task { + try await self.uploadMediaInQueue() + } + } + .store(in: &disposeBag) } deinit { @@ -397,3 +408,54 @@ extension ComposeContentViewModel: DeleteBackwardResponseTextFieldRelayDelegate } } + +// MARK: - AttachmentViewModelDelegate +extension ComposeContentViewModel: AttachmentViewModelDelegate { + + public func attachmentViewModel( + _ viewModel: AttachmentViewModel, + uploadStateValueDidChange state: AttachmentViewModel.UploadState + ) { + Task { + try await uploadMediaInQueue() + } + } + + @MainActor + func uploadMediaInQueue() async throws { + for (i, attachmentViewModel) in attachmentViewModels.enumerated() { + switch attachmentViewModel.uploadState { + case .none: + return + case .ready: + let count = self.attachmentViewModels.count + logger.log(level: .debug, "\((#file as NSString).lastPathComponent, privacy: .public)[\(#line, privacy: .public)], \(#function, privacy: .public): upload \(i)/\(count) attachment") + try await attachmentViewModel.upload() + return + case .uploading: + return + case .fail: + return + case .finish: + continue + } + } + } + + public func attachmentViewModel( + _ viewModel: AttachmentViewModel, + actionButtonDidPressed action: AttachmentViewModel.Action + ) { + switch action { + case .retry: + Task { + try await viewModel.upload(isRetry: true) + } + case .remove: + attachmentViewModels.removeAll(where: { $0 === viewModel }) + Task { + try await uploadMediaInQueue() + } + } + } +} diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentView.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentView.swift index ffc92c01e..e1954af04 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentView.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentView.swift @@ -205,9 +205,7 @@ extension ComposeContentView { ForEach(viewModel.attachmentViewModels, id: \.self) { attachmentViewModel in Color.clear.aspectRatio(358.0/232.0, contentMode: .fill) .overlay( - AttachmentView(viewModel: attachmentViewModel) { action in - - } + AttachmentView(viewModel: attachmentViewModel) ) .clipShape(Rectangle()) .badgeView( From 0100d8cbabfe7b22a0e8ee607e9ce0bd4ff00f6a Mon Sep 17 00:00:00 2001 From: CMK Date: Fri, 11 Nov 2022 19:02:44 +0800 Subject: [PATCH 135/598] feat: compress video before upload --- .../AttachmentViewModel+Compress.swift | 33 +++++++++++++++++++ .../Attachment/AttachmentViewModel.swift | 17 ++++++++-- 2 files changed, 48 insertions(+), 2 deletions(-) create mode 100644 MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel+Compress.swift diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel+Compress.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel+Compress.swift new file mode 100644 index 000000000..e9c1df676 --- /dev/null +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel+Compress.swift @@ -0,0 +1,33 @@ +// +// AttachmentViewModel+Compress.swift +// +// +// Created by MainasuK on 2022/11/11. +// + +import UIKit +import AVKit + +extension AttachmentViewModel { + func comporessVideo(url: URL) async throws -> URL { + let task = Task { () -> URL in + let urlAsset = AVURLAsset(url: url) + guard let exportSession = AVAssetExportSession(asset: urlAsset, presetName: AVAssetExportPresetMediumQuality) else { + throw AttachmentError.invalidAttachmentType + } + let outputURL = try FileManager.default.createTemporaryFileURL( + filename: UUID().uuidString, + pathExtension: url.pathExtension + ) + exportSession.outputURL = outputURL + exportSession.outputFileType = AVFileType.mp4 + exportSession.shouldOptimizeForNetworkUse = true + await exportSession.export() + return outputURL + } + + self.compressVideoTask = task + + return try await task.value + } +} diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel.swift index 9409e7380..7bbaaefaf 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel.swift @@ -43,6 +43,8 @@ final public class AttachmentViewModel: NSObject, ObservableObject, Identifiable @Published var caption = "" @Published var sizeLimit = SizeLimit() + var compressVideoTask: Task? + // output @Published public private(set) var output: Output? @Published public private(set) var thumbnail: UIImage? // original size image thumbnail @@ -120,9 +122,20 @@ final public class AttachmentViewModel: NSObject, ObservableObject, Identifiable defer { Task { @MainActor in do { - let output = try await load(input: input) - self.output = output + var output = try await load(input: input) + + switch output { + case .video(let fileURL, let mimeType): + let compressedFileURL = try await comporessVideo(url: fileURL) + output = .video(compressedFileURL, mimeType: mimeType) + try? FileManager.default.removeItem(at: fileURL) // remove old file + default: + break + } + self.outputSizeInByte = output.asAttachment.sizeInByte.flatMap { Int64($0) } ?? 0 + self.output = output + self.update(uploadState: .ready) self.delegate?.attachmentViewModel(self, uploadStateValueDidChange: self.uploadState) } catch { From f7d0186bf3bba6e5a2ae8620d4e5088bb819afb8 Mon Sep 17 00:00:00 2001 From: CMK Date: Fri, 11 Nov 2022 21:28:19 +0800 Subject: [PATCH 136/598] feat: add compress progress display. Set video compress config to 720p at 60 fps --- .../xcshareddata/swiftpm/Package.resolved | 9 ++ MastodonSDK/Package.swift | 2 + .../MastodonSDK/Query/SerialStream.swift | 4 + .../Attachment/AttachmentView.swift | 46 ++++++++-- .../AttachmentViewModel+Compress.swift | 86 +++++++++++++++---- .../AttachmentViewModel+Upload.swift | 1 + .../Attachment/AttachmentViewModel.swift | 60 +++++++++---- .../ComposeContentViewModel.swift | 2 + 8 files changed, 166 insertions(+), 44 deletions(-) diff --git a/Mastodon.xcworkspace/xcshareddata/swiftpm/Package.resolved b/Mastodon.xcworkspace/xcshareddata/swiftpm/Package.resolved index 64dc691bb..409b8820d 100644 --- a/Mastodon.xcworkspace/xcshareddata/swiftpm/Package.resolved +++ b/Mastodon.xcworkspace/xcshareddata/swiftpm/Package.resolved @@ -90,6 +90,15 @@ "version" : "2.2.5" } }, + { + "identity" : "nextlevelsessionexporter", + "kind" : "remoteSourceControl", + "location" : "https://github.com/NextLevel/NextLevelSessionExporter.git", + "state" : { + "revision" : "b6c0cce1aa37fe1547d694f958fac3c3524b74da", + "version" : "0.4.6" + } + }, { "identity" : "nuke", "kind" : "remoteSourceControl", diff --git a/MastodonSDK/Package.swift b/MastodonSDK/Package.swift index ca241038b..b364e6519 100644 --- a/MastodonSDK/Package.swift +++ b/MastodonSDK/Package.swift @@ -49,6 +49,7 @@ let package = Package( .package(url: "https://github.com/SDWebImage/SDWebImage.git", from: "5.12.0"), .package(url: "https://github.com/eneko/Stripes.git", from: "0.2.0"), .package(url: "https://github.com/onevcat/Kingfisher.git", from: "7.4.1"), + .package(url: "https://github.com/NextLevel/NextLevelSessionExporter.git", from: "0.4.6"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. @@ -124,6 +125,7 @@ let package = Package( .product(name: "PanModal", package: "PanModal"), .product(name: "Stripes", package: "Stripes"), .product(name: "Kingfisher", package: "Kingfisher"), + .product(name: "NextLevelSessionExporter", package: "NextLevelSessionExporter"), ] ), .testTarget( diff --git a/MastodonSDK/Sources/MastodonSDK/Query/SerialStream.swift b/MastodonSDK/Sources/MastodonSDK/Query/SerialStream.swift index 5d806b6ba..5808b9f6d 100644 --- a/MastodonSDK/Sources/MastodonSDK/Query/SerialStream.swift +++ b/MastodonSDK/Sources/MastodonSDK/Query/SerialStream.swift @@ -82,6 +82,10 @@ final class SerialStream: NSObject { self.progress.completedUnitCount += Int64(writeResult) self.logger.log(level: .debug, "\((#file as NSString).lastPathComponent, privacy: .public)[\(#line, privacy: .public)], \(#function, privacy: .public): estimate progress: \(self.progress.completedUnitCount)/\(self.progress.totalUnitCount)") + + if writeResult == -1 { + break + } } } diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentView.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentView.swift index 3fbccbbc7..2dc8bf12f 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentView.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentView.swift @@ -48,7 +48,7 @@ public struct AttachmentView: View { // loaded // uploading… or upload failed // could retry upload when error emit - if viewModel.output != nil { + if viewModel.output != nil, viewModel.uploadState != .finish { VisualEffectView(effect: blurEffect) VStack { let action: AttachmentViewModel.Action = { @@ -74,8 +74,18 @@ public struct AttachmentView: View { .padding() .background(Color(Asset.Scene.Compose.Attachment.indicatorButtonBackground.color)) .overlay( - CircleProgressView(progress: viewModel.fractionCompleted) - .animation(.default, value: viewModel.fractionCompleted) + Group { + switch viewModel.uploadState { + case .compressing: + CircleProgressView(progress: viewModel.videoCompressProgress) + .animation(.default, value: viewModel.videoCompressProgress) + case .uploading: + CircleProgressView(progress: viewModel.fractionCompleted) + .animation(.default, value: viewModel.fractionCompleted) + default: + EmptyView() + } + } ) .clipShape(Circle()) .padding() @@ -84,11 +94,20 @@ public struct AttachmentView: View { let title: String = { switch action { case .remove: - let totalSizeInByte = viewModel.outputSizeInByte - let uploadSizeInByte = Double(totalSizeInByte) * min(1.0, viewModel.fractionCompleted) - let total = viewModel.byteCountFormatter.string(fromByteCount: Int64(totalSizeInByte)) - let upload = viewModel.byteCountFormatter.string(fromByteCount: Int64(uploadSizeInByte)) - return "\(upload) / \(total)" + switch viewModel.uploadState { + case .compressing: + return "Comporessing..." // TODO: i18n + default: + if viewModel.fractionCompleted < 0.9 { + let totalSizeInByte = viewModel.outputSizeInByte + let uploadSizeInByte = Double(totalSizeInByte) * min(1.0, viewModel.fractionCompleted + 0.1) // 9:1 + let total = viewModel.byteCountFormatter.string(fromByteCount: Int64(totalSizeInByte)) + let upload = viewModel.byteCountFormatter.string(fromByteCount: Int64(uploadSizeInByte)) + return "\(upload) / \(total)" + } else { + return "Server Processing..." // TODO: i18n + } + } case .retry: return "Upload Failed" // TODO: i18n } @@ -97,7 +116,13 @@ public struct AttachmentView: View { switch action { case .remove: if viewModel.progress.fractionCompleted < 1, viewModel.uploadState == .uploading { - return viewModel.remainTimeLocalizedString ?? "" + if viewModel.progress.fractionCompleted < 0.9 { + return viewModel.remainTimeLocalizedString ?? "" + } else { + return "" + } + } else if viewModel.videoCompressProgress < 1, viewModel.uploadState == .compressing { + return viewModel.percentageFormatter.string(from: NSNumber(floatLiteral: viewModel.videoCompressProgress)) ?? "" } else { return "" } @@ -113,6 +138,9 @@ public struct AttachmentView: View { .font(.system(size: 12, weight: .regular)) .foregroundColor(.white) .padding(.horizontal) + .lineLimit(nil) + .multilineTextAlignment(.center) + .frame(maxWidth: 240) } } } // end ZStack diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel+Compress.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel+Compress.swift index e9c1df676..0fd0ab085 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel+Compress.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel+Compress.swift @@ -5,29 +5,81 @@ // Created by MainasuK on 2022/11/11. // +import os.log import UIKit import AVKit +import SessionExporter +import MastodonCore extension AttachmentViewModel { func comporessVideo(url: URL) async throws -> URL { - let task = Task { () -> URL in - let urlAsset = AVURLAsset(url: url) - guard let exportSession = AVAssetExportSession(asset: urlAsset, presetName: AVAssetExportPresetMediumQuality) else { - throw AttachmentError.invalidAttachmentType - } - let outputURL = try FileManager.default.createTemporaryFileURL( - filename: UUID().uuidString, - pathExtension: url.pathExtension - ) - exportSession.outputURL = outputURL - exportSession.outputFileType = AVFileType.mp4 - exportSession.shouldOptimizeForNetworkUse = true - await exportSession.export() - return outputURL + let urlAsset = AVURLAsset(url: url) + let exporter = NextLevelSessionExporter(withAsset: urlAsset) + exporter.outputFileType = .mp4 + + let outputURL = try FileManager.default.createTemporaryFileURL( + filename: UUID().uuidString, + pathExtension: url.pathExtension + ) + exporter.outputURL = outputURL + + let compressionDict: [String: Any] = [ + AVVideoAverageBitRateKey: NSNumber(integerLiteral: 3000000), // 3000k + AVVideoProfileLevelKey: AVVideoProfileLevelH264HighAutoLevel as String, + AVVideoAverageNonDroppableFrameRateKey: NSNumber(floatLiteral: 30), // 30 FPS + ] + exporter.videoOutputConfiguration = [ + AVVideoCodecKey: AVVideoCodecType.h264, + AVVideoWidthKey: NSNumber(integerLiteral: 1280), + AVVideoHeightKey: NSNumber(integerLiteral: 720), + AVVideoScalingModeKey: AVVideoScalingModeResizeAspectFill, + AVVideoCompressionPropertiesKey: compressionDict + ] + exporter.audioOutputConfiguration = [ + AVFormatIDKey: kAudioFormatMPEG4AAC, + AVEncoderBitRateKey: NSNumber(integerLiteral: 128000), // 128k + AVNumberOfChannelsKey: NSNumber(integerLiteral: 2), + AVSampleRateKey: NSNumber(value: Float(44100)) + ] + + // needs set to LOW priority to prevent priority inverse issue + let task = Task(priority: .utility) { + _ = try await exportVideo(by: exporter) } + _ = try await task.value - self.compressVideoTask = task - - return try await task.value + return outputURL } + + private func exportVideo(by exporter: NextLevelSessionExporter) async throws -> URL { + guard let outputURL = exporter.outputURL else { + throw AppError.badRequest + } + return try await withCheckedThrowingContinuation { continuation in + exporter.export(progressHandler: { progress in + DispatchQueue.main.async { [weak self] in + guard let self = self else { return } + self.videoCompressProgress = Double(progress) + os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s: export progress: %.2f", ((#file as NSString).lastPathComponent), #line, #function, progress) + } + }, completionHandler: { result in + switch result { + case .success(let status): + switch status { + case .completed: + print("NextLevelSessionExporter, export completed, \(exporter.outputURL?.description ?? "")") + continuation.resume(with: .success(outputURL)) + default: + if Task.isCancelled { + exporter.cancelExport() + os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s: cancel export", ((#file as NSString).lastPathComponent), #line, #function) + } + print("NextLevelSessionExporter, did not complete") + } + case .failure(let error): + continuation.resume(with: .failure(error)) + } + }) + } + } // end func } diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel+Upload.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel+Upload.swift index 67f0e71ed..e26e97d35 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel+Upload.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel+Upload.swift @@ -55,6 +55,7 @@ extension Data { extension AttachmentViewModel { public enum UploadState { case none + case compressing case ready case uploading case fail diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel.swift index 7bbaaefaf..57f1d6b95 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel.swift @@ -11,6 +11,7 @@ import Combine import PhotosUI import Kingfisher import MastodonCore +import func QuartzCore.CACurrentMediaTime public protocol AttachmentViewModelDelegate: AnyObject { func attachmentViewModel(_ viewModel: AttachmentViewModel, uploadStateValueDidChange state: AttachmentViewModel.UploadState) @@ -35,6 +36,12 @@ final public class AttachmentViewModel: NSObject, ObservableObject, Identifiable formatter.countStyle = .memory return formatter }() + + let percentageFormatter: NumberFormatter = { + let formatter = NumberFormatter() + formatter.numberStyle = .percent + return formatter + }() // input public let api: APIService @@ -43,7 +50,7 @@ final public class AttachmentViewModel: NSObject, ObservableObject, Identifiable @Published var caption = "" @Published var sizeLimit = SizeLimit() - var compressVideoTask: Task? + // var compressVideoTask: Task? // output @Published public private(set) var output: Output? @@ -54,11 +61,14 @@ final public class AttachmentViewModel: NSObject, ObservableObject, Identifiable @Published public private(set) var uploadState: UploadState = .none @Published public private(set) var uploadResult: UploadResult? @Published var error: Error? + + var uploadTask: Task<(), Never>? + @Published var videoCompressProgress: Double = 0 + let progress = Progress() // upload progress @Published var fractionCompleted: Double = 0 - var displayLink: CADisplayLink! private var lastTimestamp: TimeInterval? private var lastUploadSizeInByte: Int64 = 0 private var averageUploadSpeedInByte: Int64 = 0 @@ -78,11 +88,15 @@ final public class AttachmentViewModel: NSObject, ObservableObject, Identifiable super.init() // end init - self.displayLink = CADisplayLink( - target: self, - selector: #selector(AttachmentViewModel.step(displayLink:)) - ) - displayLink.add(to: .current, forMode: .common) + Timer.publish(every: 1.0 / 60.0, on: .main, in: .common) // 60 FPS + .autoconnect() + .share() + .receive(on: DispatchQueue.main) + .sink { [weak self] _ in + guard let self = self else { return } + self.step() + } + .store(in: &disposeBag) progress .observe(\.fractionCompleted, options: [.initial, .new]) { [weak self] progress, _ in @@ -120,12 +134,14 @@ final public class AttachmentViewModel: NSObject, ObservableObject, Identifiable .assign(to: &$thumbnail) defer { - Task { @MainActor in + let uploadTask = Task { @MainActor in do { var output = try await load(input: input) switch output { case .video(let fileURL, let mimeType): + self.output = output + self.update(uploadState: .compressing) let compressedFileURL = try await comporessVideo(url: fileURL) output = .video(compressedFileURL, mimeType: mimeType) try? FileManager.default.removeItem(at: fileURL) // remove old file @@ -142,12 +158,17 @@ final public class AttachmentViewModel: NSObject, ObservableObject, Identifiable self.error = error } } // end Task + self.uploadTask = uploadTask + Task { + await uploadTask.value + } } } deinit { - displayLink.invalidate() - displayLink.remove(from: .current, forMode: .common) + os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s", ((#file as NSString).lastPathComponent), #line, #function) + + uploadTask?.cancel() switch output { case .image: @@ -172,31 +193,34 @@ extension AttachmentViewModel { return formatter }() - @objc private func step(displayLink: CADisplayLink) { + @objc private func step() { + + let uploadProgress = min(progress.fractionCompleted + 0.1, 1) // the progress split into 9:1 blocks (download : waiting) + guard let lastTimestamp = self.lastTimestamp else { - self.lastTimestamp = displayLink.timestamp - self.lastUploadSizeInByte = Int64(Double(outputSizeInByte) * progress.fractionCompleted) + self.lastTimestamp = CACurrentMediaTime() + self.lastUploadSizeInByte = Int64(Double(outputSizeInByte) * uploadProgress) return } - let duration = displayLink.timestamp - lastTimestamp + let duration = CACurrentMediaTime() - lastTimestamp guard duration >= 1.0 else { return } // update every 1 sec let old = self.lastUploadSizeInByte - self.lastUploadSizeInByte = Int64(Double(outputSizeInByte) * progress.fractionCompleted) + self.lastUploadSizeInByte = Int64(Double(outputSizeInByte) * uploadProgress) let newSpeed = self.lastUploadSizeInByte - old let lastAverageSpeed = self.averageUploadSpeedInByte let newAverageSpeed = Int64(AttachmentViewModel.SpeedSmoothingFactor * Double(newSpeed) + (1 - AttachmentViewModel.SpeedSmoothingFactor) * Double(lastAverageSpeed)) - let remainSizeInByte = Double(outputSizeInByte) * (1 - progress.fractionCompleted) + let remainSizeInByte = Double(outputSizeInByte) * (1 - uploadProgress) let speed = Double(newAverageSpeed) if speed != .zero { // estimate by speed let uploadRemainTimeInSecond = remainSizeInByte / speed // estimate by progress 1s for 10% - let remainPercentage = 1 - progress.fractionCompleted + let remainPercentage = 1 - uploadProgress let estimateRemainTimeByProgress = remainPercentage / 0.1 // max estimate var remainTimeInSecond = max(estimateRemainTimeByProgress, uploadRemainTimeInSecond) @@ -216,7 +240,7 @@ extension AttachmentViewModel { remainTimeLocalizedString = nil } - self.lastTimestamp = displayLink.timestamp + self.lastTimestamp = CACurrentMediaTime() self.averageUploadSpeedInByte = newAverageSpeed } } diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel.swift index 03db3b010..9a12f5e84 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel.swift @@ -427,6 +427,8 @@ extension ComposeContentViewModel: AttachmentViewModelDelegate { switch attachmentViewModel.uploadState { case .none: return + case .compressing: + return case .ready: let count = self.attachmentViewModels.count logger.log(level: .debug, "\((#file as NSString).lastPathComponent, privacy: .public)[\(#line, privacy: .public)], \(#function, privacy: .public): upload \(i)/\(count) attachment") From 9322a0abc8d90fb2699a9ff25a23b27b5f5b45a1 Mon Sep 17 00:00:00 2001 From: woxtu Date: Sat, 12 Nov 2022 00:33:18 +0900 Subject: [PATCH 137/598] Replace a deprecated method --- MastodonSDK/Package.swift | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/MastodonSDK/Package.swift b/MastodonSDK/Package.swift index ca241038b..8db2a1ca5 100644 --- a/MastodonSDK/Package.swift +++ b/MastodonSDK/Package.swift @@ -25,9 +25,9 @@ let package = Package( ], dependencies: [ .package(name: "ArkanaKeys", path: "../dependencies/ArkanaKeys"), - .package(name: "FaviconFinder", url: "https://github.com/will-lumley/FaviconFinder.git", from: "3.2.2"), - .package(name: "Introspect", url: "https://github.com/siteline/SwiftUI-Introspect.git", from: "0.1.3"), - .package(name: "UITextView+Placeholder", url: "https://github.com/MainasuK/UITextView-Placeholder.git", from: "1.4.1"), + .package(url: "https://github.com/will-lumley/FaviconFinder.git", from: "3.2.2"), + .package(url: "https://github.com/siteline/SwiftUI-Introspect.git", from: "0.1.3"), + .package(url: "https://github.com/MainasuK/UITextView-Placeholder.git", from: "1.4.1"), .package(url: "https://github.com/Alamofire/Alamofire.git", from: "5.4.0"), .package(url: "https://github.com/Alamofire/AlamofireImage.git", from: "4.1.0"), .package(url: "https://github.com/apple/swift-collections.git", from: "1.0.3"), @@ -112,8 +112,8 @@ let package = Package( .product(name: "FLAnimatedImage", package: "FLAnimatedImage"), .product(name: "FaviconFinder", package: "FaviconFinder"), .product(name: "Nuke", package: "Nuke"), - .product(name: "Introspect", package: "Introspect"), - .product(name: "UITextView+Placeholder", package: "UITextView+Placeholder"), + .product(name: "Introspect", package: "SwiftUI-Introspect"), + .product(name: "UITextView+Placeholder", package: "UITextView-Placeholder"), .product(name: "UIHostingConfigurationBackport", package: "UIHostingConfigurationBackport"), .product(name: "TabBarPager", package: "TabBarPager"), .product(name: "ThirdPartyMailer", package: "ThirdPartyMailer"), From 34fc11bacef47eb676b2eadce7d2caafcd077952 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Fri, 11 Nov 2022 19:16:32 +0100 Subject: [PATCH 138/598] New translations app.json (Czech) --- .../StringsConvertor/input/cs.lproj/app.json | 26 +++++++++---------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/Localization/StringsConvertor/input/cs.lproj/app.json b/Localization/StringsConvertor/input/cs.lproj/app.json index 2be115e55..077315611 100644 --- a/Localization/StringsConvertor/input/cs.lproj/app.json +++ b/Localization/StringsConvertor/input/cs.lproj/app.json @@ -304,25 +304,25 @@ "reserved": "%s je rezervované klíčové slovo", "accepted": "%s musí být přijato", "blank": "%s je vyžadováno", - "invalid": "%s is invalid", - "too_long": "%s is too long", - "too_short": "%s is too short", - "inclusion": "%s is not a supported value" + "invalid": "%s je neplatné", + "too_long": "%s je příliš dlouhé", + "too_short": "%s je příliš krátké", + "inclusion": "%s není podporovaná hodnota" }, "special": { - "username_invalid": "Username must only contain alphanumeric characters and underscores", - "username_too_long": "Username is too long (can’t be longer than 30 characters)", + "username_invalid": "Uživatelské jméno musí obsahovat pouze alfanumerické znaky a podtržítka", + "username_too_long": "Uživatelské jméno je příliš dlouhé (nemůže být delší než 30 znaků)", "email_invalid": "Toto není platná e-mailová adresa", - "password_too_short": "Password is too short (must be at least 8 characters)" + "password_too_short": "Heslo je příliš krátké (musí mít alespoň 8 znaků)" } } }, "server_rules": { - "title": "Some ground rules.", - "subtitle": "These are set and enforced by the %s moderators.", - "prompt": "By continuing, you’re subject to the terms of service and privacy policy for %s.", - "terms_of_service": "terms of service", - "privacy_policy": "privacy policy", + "title": "Některá základní pravidla.", + "subtitle": "Ty nastavují a prosazují moderátoři %s.", + "prompt": "Pokračováním budete podléhat podmínkám služby a zásad ochrany osobních údajů pro uživatele %s.", + "terms_of_service": "podmínky služby", + "privacy_policy": "zásady ochrany osobních údajů", "button": { "confirm": "I Agree" } @@ -356,7 +356,7 @@ "Publishing": "Publikování příspěvku...", "accessibility": { "logo_label": "Logo Button", - "logo_hint": "Tap to scroll to top and tap again to previous location" + "logo_hint": "Klepnutím přejdete nahoru a znovu klepněte na předchozí místo" } } }, From c430e9855748c8e0e3a88d9ee183bfa4610f1dae Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Fri, 11 Nov 2022 20:14:23 +0100 Subject: [PATCH 139/598] New translations app.json (Czech) --- .../StringsConvertor/input/cs.lproj/app.json | 68 +++++++++---------- 1 file changed, 34 insertions(+), 34 deletions(-) diff --git a/Localization/StringsConvertor/input/cs.lproj/app.json b/Localization/StringsConvertor/input/cs.lproj/app.json index 077315611..0f4e9c297 100644 --- a/Localization/StringsConvertor/input/cs.lproj/app.json +++ b/Localization/StringsConvertor/input/cs.lproj/app.json @@ -361,31 +361,31 @@ } }, "suggestion_account": { - "title": "Find People to Follow", - "follow_explain": "When you follow someone, you’ll see their posts in your home feed." + "title": "Najít lidi pro sledování", + "follow_explain": "Když někoho sledujete, uvidíte jejich příspěvky ve vašem domovském kanálu." }, "compose": { "title": { "new_post": "Nový příspěvek", - "new_reply": "New Reply" + "new_reply": "Nová odpověď" }, "media_selection": { - "camera": "Take Photo", - "photo_library": "Photo Library", - "browse": "Browse" + "camera": "Vyfotit", + "photo_library": "Knihovna fotografií", + "browse": "Procházet" }, - "content_input_placeholder": "Type or paste what’s on your mind", - "compose_action": "Publish", - "replying_to_user": "replying to %s", + "content_input_placeholder": "Napište nebo vložte, co je na mysli", + "compose_action": "Zveřejnit", + "replying_to_user": "odpovídá na %s", "attachment": { - "photo": "photo", + "photo": "fotka", "video": "video", - "attachment_broken": "This %s is broken and can’t be\nuploaded to Mastodon.", - "description_photo": "Describe the photo for the visually-impaired...", - "description_video": "Describe the video for the visually-impaired..." + "attachment_broken": "Tento %s je poškozený a nemůže být\nnahrán do Mastodonu.", + "description_photo": "Popište fotografii pro zrakově postižené osoby...", + "description_video": "Popište video pro zrakově postižené..." }, "poll": { - "duration_time": "Duration: %s", + "duration_time": "Doba trvání: %s", "thirty_minutes": "30 minut", "one_hour": "1 hodina", "six_hours": "6 hodin", @@ -395,7 +395,7 @@ "option_number": "Možnost %ld" }, "content_warning": { - "placeholder": "Write an accurate warning here..." + "placeholder": "Zde napište přesné varování..." }, "visibility": { "public": "Veřejný", @@ -404,7 +404,7 @@ "direct": "Pouze lidé, které zmíním" }, "auto_complete": { - "space_to_add": "Space to add" + "space_to_add": "Mezera k přidání" }, "accessibility": { "append_attachment": "Přidat přílohu", @@ -419,7 +419,7 @@ "discard_post": "Zahodit příspěvek", "publish_post": "Publikovat příspěvek", "toggle_poll": "Přepnout anketu", - "toggle_content_warning": "Toggle Content Warning", + "toggle_content_warning": "Přepnout varování obsahu", "append_attachment_entry": "Přidat přílohu - %s", "select_visibility_entry": "Vyberte viditelnost - %s" } @@ -430,13 +430,13 @@ }, "dashboard": { "posts": "příspěvky", - "following": "following", + "following": "sledování", "followers": "sledující" }, "fields": { "add_row": "Přidat řádek", "placeholder": { - "label": "Label", + "label": "Označení", "content": "Obsah" } }, @@ -445,7 +445,7 @@ "replies": "Odpovědí", "posts_and_replies": "Příspěvky a odpovědi", "media": "Média", - "about": "About" + "about": "O uživateli" }, "relationship_action_alert": { "confirm_mute_user": { @@ -454,7 +454,7 @@ }, "confirm_unmute_user": { "title": "Zrušit skrytí účtu", - "message": "Confirm to unmute %s" + "message": "Potvrďte zrušení ztlumení %s" }, "confirm_block_user": { "title": "Blokovat účet", @@ -462,7 +462,7 @@ }, "confirm_unblock_user": { "title": "Odblokovat účet", - "message": "Confirm to unblock %s" + "message": "Potvrďte odblokování %s" }, "confirm_show_reblogs": { "title": "Show Reblogs", @@ -474,32 +474,32 @@ } }, "accessibility": { - "show_avatar_image": "Show avatar image", - "edit_avatar_image": "Edit avatar image", - "show_banner_image": "Show banner image", - "double_tap_to_open_the_list": "Double tap to open the list" + "show_avatar_image": "Zobrazit obrázek avataru", + "edit_avatar_image": "Upravit obrázek avataru", + "show_banner_image": "Zobrazit obrázek banneru", + "double_tap_to_open_the_list": "Dvojitým poklepáním otevřete seznam" } }, "follower": { - "title": "follower", - "footer": "Followers from other servers are not displayed." + "title": "sledující", + "footer": "Sledující z jiných serverů nejsou zobrazeni." }, "following": { - "title": "following", - "footer": "Follows from other servers are not displayed." + "title": "sledování", + "footer": "Sledování z jiných serverů není zobrazeno." }, "familiarFollowers": { - "title": "Followers you familiar", - "followed_by_names": "Followed by %s" + "title": "Sledující, které znáte", + "followed_by_names": "Sledován od %s" }, "favorited_by": { - "title": "Favorited By" + "title": "Oblíben" }, "reblogged_by": { "title": "Reblogged By" }, "search": { - "title": "Search", + "title": "Hledat", "search_bar": { "placeholder": "Search hashtags and users", "cancel": "Cancel" From c3009d60099e1435f6f885cfe4c0629e5597efe2 Mon Sep 17 00:00:00 2001 From: David Godfrey Date: Fri, 11 Nov 2022 20:34:26 +0000 Subject: [PATCH 140/598] Add visual indication that a url has been validated in a profile's fields --- .../Diffiable/Profile/ProfileFieldItem.swift | 4 ++ .../Profile/ProfileFieldSection.swift | 11 ++++++ .../Cell/ProfileFieldCollectionViewCell.swift | 15 +++++++- .../Profile/About/ProfileAboutViewModel.swift | 7 ++-- .../Scene/Profile/About/Contents.json | 9 +++++ .../Contents.json | 38 +++++++++++++++++++ .../Contents.json | 38 +++++++++++++++++++ .../MastodonAsset/Generated/Assets.swift | 4 ++ 8 files changed, 121 insertions(+), 5 deletions(-) create mode 100644 MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Profile/About/Contents.json create mode 100644 MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Profile/About/bio.about.field.validated.background.colorset/Contents.json create mode 100644 MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Profile/About/bio.about.field.validated.checkmark.colorset/Contents.json diff --git a/Mastodon/Diffiable/Profile/ProfileFieldItem.swift b/Mastodon/Diffiable/Profile/ProfileFieldItem.swift index 47848cc01..e33a2f883 100644 --- a/Mastodon/Diffiable/Profile/ProfileFieldItem.swift +++ b/Mastodon/Diffiable/Profile/ProfileFieldItem.swift @@ -23,6 +23,7 @@ extension ProfileFieldItem { var name: CurrentValueSubject var value: CurrentValueSubject + var verifiedAt: CurrentValueSubject let emojiMeta: MastodonContent.Emojis @@ -30,11 +31,13 @@ extension ProfileFieldItem { id: UUID = UUID(), name: String, value: String, + verifiedAt: Date?, emojiMeta: MastodonContent.Emojis ) { self.id = id self.name = CurrentValueSubject(name) self.value = CurrentValueSubject(value) + self.verifiedAt = CurrentValueSubject(verifiedAt) self.emojiMeta = emojiMeta } @@ -45,6 +48,7 @@ extension ProfileFieldItem { return lhs.id == rhs.id && lhs.name.value == rhs.name.value && lhs.value.value == rhs.value.value + && lhs.verifiedAt.value == rhs.verifiedAt.value && lhs.emojiMeta == rhs.emojiMeta } diff --git a/Mastodon/Diffiable/Profile/ProfileFieldSection.swift b/Mastodon/Diffiable/Profile/ProfileFieldSection.swift index 19771b5db..332916a02 100644 --- a/Mastodon/Diffiable/Profile/ProfileFieldSection.swift +++ b/Mastodon/Diffiable/Profile/ProfileFieldSection.swift @@ -8,6 +8,7 @@ import os import UIKit import Combine +import MastodonAsset import MastodonCore import MastodonMeta import MastodonLocalization @@ -57,7 +58,17 @@ extension ProfileFieldSection { // set background var backgroundConfiguration = UIBackgroundConfiguration.listPlainCell() backgroundConfiguration.backgroundColor = UIColor.secondarySystemBackground + if (field.verifiedAt.value != nil) { + backgroundConfiguration.backgroundColor = Asset.Scene.Profile.About.bioAboutFieldValidatedBackground.color + } cell.backgroundConfiguration = backgroundConfiguration + + // set checkmark + cell.checkmark.isHidden = true + if let verifiedAt = field.verifiedAt.value { + cell.checkmark.isHidden = false + cell.checkmark.accessibilityLabel = "Ownership of this link was checked on \(verifiedAt)" // TODO: I18N / L10N + } cell.delegate = configuration.profileFieldCollectionViewCellDelegate } diff --git a/Mastodon/Scene/Profile/About/Cell/ProfileFieldCollectionViewCell.swift b/Mastodon/Scene/Profile/About/Cell/ProfileFieldCollectionViewCell.swift index ed6f68fec..076b8373e 100644 --- a/Mastodon/Scene/Profile/About/Cell/ProfileFieldCollectionViewCell.swift +++ b/Mastodon/Scene/Profile/About/Cell/ProfileFieldCollectionViewCell.swift @@ -26,6 +26,8 @@ final class ProfileFieldCollectionViewCell: UICollectionViewCell { let keyMetaLabel = MetaLabel(style: .profileFieldName) let valueMetaLabel = MetaLabel(style: .profileFieldValue) + let checkmark = UIImageView(image: Asset.Editing.checkmark.image.withRenderingMode(.alwaysTemplate)) + override func prepareForReuse() { super.prepareForReuse() @@ -47,6 +49,8 @@ final class ProfileFieldCollectionViewCell: UICollectionViewCell { extension ProfileFieldCollectionViewCell { private func _init() { + checkmark.tintColor = Asset.Scene.Profile.About.bioAboutFieldValidatedCheckmark.color; + // containerStackView: V - [ metaContainer | plainContainer ] let containerStackView = UIStackView() containerStackView.axis = .vertical @@ -63,14 +67,21 @@ extension ProfileFieldCollectionViewCell { bottomAnchor.constraint(equalTo: containerStackView.bottomAnchor, constant: 11), ]) - // metaContainer: V - [ keyMetaLabel | valueMetaLabel ] + // metaContainer: V - [ keyMetaLabel | valueContainer ] let metaContainer = UIStackView() metaContainer.axis = .vertical metaContainer.spacing = 2 containerStackView.addArrangedSubview(metaContainer) + // valueContainer: H - [ valueMetaLabel | checkmark ] + let valueContainer = UIStackView() + valueContainer.axis = .horizontal + valueContainer.spacing = 2 + metaContainer.addArrangedSubview(keyMetaLabel) - metaContainer.addArrangedSubview(valueMetaLabel) + valueContainer.addArrangedSubview(valueMetaLabel) + valueContainer.addArrangedSubview(checkmark) + metaContainer.addArrangedSubview(valueContainer) keyMetaLabel.linkDelegate = self valueMetaLabel.linkDelegate = self diff --git a/Mastodon/Scene/Profile/About/ProfileAboutViewModel.swift b/Mastodon/Scene/Profile/About/ProfileAboutViewModel.swift index 68a3d0fea..044894b8a 100644 --- a/Mastodon/Scene/Profile/About/ProfileAboutViewModel.swift +++ b/Mastodon/Scene/Profile/About/ProfileAboutViewModel.swift @@ -52,7 +52,7 @@ final class ProfileAboutViewModel { $emojiMeta ) .map { fields, emojiMeta in - fields.map { ProfileFieldItem.FieldValue(name: $0.name, value: $0.value, emojiMeta: emojiMeta) } + fields.map { ProfileFieldItem.FieldValue(name: $0.name, value: $0.value, verifiedAt: $0.verifiedAt, emojiMeta: emojiMeta) } } .assign(to: &profileInfo.$fields) @@ -72,6 +72,7 @@ final class ProfileAboutViewModel { ProfileFieldItem.FieldValue( name: field.name, value: field.value, + verifiedAt: field.verifiedAt, emojiMeta: [:] // no use for editing ) } ?? [] @@ -92,7 +93,7 @@ extension ProfileAboutViewModel { func appendFieldItem() { var fields = profileInfoEditing.fields guard fields.count < ProfileHeaderViewModel.maxProfileFieldCount else { return } - fields.append(ProfileFieldItem.FieldValue(name: "", value: "", emojiMeta: [:])) + fields.append(ProfileFieldItem.FieldValue(name: "", value: "", verifiedAt: nil, emojiMeta: [:])) profileInfoEditing.fields = fields } @@ -112,7 +113,7 @@ extension ProfileAboutViewModel: ProfileViewModelEditable { let isFieldsEqual: Bool = { let originalFields = self.accountForEdit?.source?.fields?.compactMap { field in - ProfileFieldItem.FieldValue(name: field.name, value: field.value, emojiMeta: [:]) + ProfileFieldItem.FieldValue(name: field.name, value: field.value, verifiedAt: nil, emojiMeta: [:]) } ?? [] let editFields = profileInfoEditing.fields guard editFields.count == originalFields.count else { return false } diff --git a/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Profile/About/Contents.json b/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Profile/About/Contents.json new file mode 100644 index 000000000..6e965652d --- /dev/null +++ b/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Profile/About/Contents.json @@ -0,0 +1,9 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + }, + "properties" : { + "provides-namespace" : true + } +} diff --git a/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Profile/About/bio.about.field.validated.background.colorset/Contents.json b/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Profile/About/bio.about.field.validated.background.colorset/Contents.json new file mode 100644 index 000000000..86944ced3 --- /dev/null +++ b/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Profile/About/bio.about.field.validated.background.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0.852", + "green" : "0.894", + "red" : "0.835" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0.354", + "green" : "0.353", + "red" : "0.268" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Profile/About/bio.about.field.validated.checkmark.colorset/Contents.json b/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Profile/About/bio.about.field.validated.checkmark.colorset/Contents.json new file mode 100644 index 000000000..f5112f04f --- /dev/null +++ b/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Profile/About/bio.about.field.validated.checkmark.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0.371", + "green" : "0.565", + "red" : "0.290" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0.603", + "green" : "0.742", + "red" : "0.476" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/MastodonSDK/Sources/MastodonAsset/Generated/Assets.swift b/MastodonSDK/Sources/MastodonAsset/Generated/Assets.swift index 5cd0059d8..45861c583 100644 --- a/MastodonSDK/Sources/MastodonAsset/Generated/Assets.swift +++ b/MastodonSDK/Sources/MastodonAsset/Generated/Assets.swift @@ -163,6 +163,10 @@ public enum Asset { public static let textFieldBackground = ColorAsset(name: "Scene/Onboarding/textField.background") } public enum Profile { + public enum About { + public static let bioAboutFieldValidatedBackground = ColorAsset(name: "Scene/Profile/About/bio.about.field.validated.background") + public static let bioAboutFieldValidatedCheckmark = ColorAsset(name: "Scene/Profile/About/bio.about.field.validated.checkmark") + } public enum Banner { public static let bioEditBackgroundGray = ColorAsset(name: "Scene/Profile/Banner/bio.edit.background.gray") public static let nameEditBackgroundGray = ColorAsset(name: "Scene/Profile/Banner/name.edit.background.gray") From 25b1d23037ecd0713c25f8a15ad21a1bac78b483 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Fri, 11 Nov 2022 21:37:27 +0100 Subject: [PATCH 141/598] New translations app.json (Czech) --- .../StringsConvertor/input/cs.lproj/app.json | 322 +++++++++--------- 1 file changed, 161 insertions(+), 161 deletions(-) diff --git a/Localization/StringsConvertor/input/cs.lproj/app.json b/Localization/StringsConvertor/input/cs.lproj/app.json index 0f4e9c297..9ec6c0d56 100644 --- a/Localization/StringsConvertor/input/cs.lproj/app.json +++ b/Localization/StringsConvertor/input/cs.lproj/app.json @@ -37,12 +37,12 @@ "confirm": "Odhlásit se" }, "block_domain": { - "title": "Are you really, really sure you want to block the entire %s? In most cases a few targeted blocks or mutes are sufficient and preferable. You will not see content from that domain and any of your followers from that domain will be removed.", + "title": "Opravdu chcete blokovat celou doménu %s? Ve většině případů stačí zablokovat nebo skrýt pár konkrétních uživatelů, což také doporučujeme. Z této domény neuvidíte obsah v žádné veřejné časové ose ani v oznámeních. Vaši sledující z této domény budou odstraněni.", "block_entire_domain": "Blokovat doménu" }, "save_photo_failure": { "title": "Uložení fotografie se nezdařilo", - "message": "Please enable the photo library access permission to save the photo." + "message": "Pro uložení fotografie povolte přístup k knihovně fotografií." }, "delete_post": { "title": "Odstranit příspěvek", @@ -79,7 +79,7 @@ "see_more": "Zobrazit více", "preview": "Náhled", "share": "Sdílet", - "share_user": "Share %s", + "share_user": "Sdílet %s", "share_post": "Sdílet příspěvek", "open_in_safari": "Otevřít v Safari", "open_in_browser": "Otevřít v prohlížeči", @@ -137,23 +137,23 @@ "closed": "Uzavřeno" }, "meta_entity": { - "url": "Link: %s", + "url": "Odkaz: %s", "hashtag": "Hashtag: %s", - "mention": "Show Profile: %s", - "email": "Email address: %s" + "mention": "Zobrazit profil: %s", + "email": "E-mailová adresa: %s" }, "actions": { "reply": "Odpovědět", "reblog": "Boostnout", "unreblog": "Undo reblog", - "favorite": "Favorite", + "favorite": "Oblíbit", "unfavorite": "Odebrat z oblízených", "menu": "Nabídka", "hide": "Skrýt", "show_image": "Zobrazit obrázek", "show_gif": "Zobrazit GIF", "show_video_player": "Zobrazit video přehrávač", - "tap_then_hold_to_show_menu": "Tap then hold to show menu" + "tap_then_hold_to_show_menu": "Klepnutím podržte pro zobrazení nabídky" }, "tag": { "url": "URL", @@ -165,22 +165,22 @@ }, "visibility": { "unlisted": "Každý může vidět tento příspěvek, ale nezobrazovat ve veřejné časové ose.", - "private": "Only their followers can see this post.", - "private_from_me": "Only my followers can see this post.", - "direct": "Only mentioned user can see this post." + "private": "Pouze jejich sledující mohou vidět tento příspěvek.", + "private_from_me": "Pouze moji sledující mohou vidět tento příspěvek.", + "direct": "Pouze zmíněný uživatel může vidět tento příspěvek." } }, "friendship": { "follow": "Sledovat", - "following": "Following", - "request": "Request", + "following": "Sleduji", + "request": "Požadavek", "pending": "Čekající", "block": "Blokovat", "block_user": "Blokovat %s", "block_domain": "Blokovat %s", "unblock": "Odblokovat", "unblock_user": "Odblokovat %s", - "blocked": "Blocked", + "blocked": "Blokovaný", "mute": "Skrýt", "mute_user": "Skrýt %s", "unmute": "Odkrýt", @@ -191,7 +191,7 @@ "hide_reblogs": "Hide Reblogs" }, "timeline": { - "filtered": "Filtered", + "filtered": "Filtrováno", "timestamp": { "now": "Nyní" }, @@ -204,9 +204,9 @@ "no_status_found": "Nebyl nalezen žádný příspěvek", "blocking_warning": "You can’t view this user's profile\nuntil you unblock them.\nYour profile looks like this to them.", "user_blocking_warning": "You can’t view %s’s profile\nuntil you unblock them.\nYour profile looks like this to them.", - "blocked_warning": "You can’t view this user’s profile\nuntil they unblock you.", + "blocked_warning": "Nemůžeš zobrazit profil tohoto uživatele, dokud tě neodblokují.", "user_blocked_warning": "You can’t view %s’s profile\nuntil they unblock you.", - "suspended_warning": "This user has been suspended.", + "suspended_warning": "Tento uživatel byl pozastaven.", "user_suspended_warning": "%s’s account has been suspended." } } @@ -214,14 +214,14 @@ }, "scene": { "welcome": { - "slogan": "Social networking\nback in your hands.", + "slogan": "Sociální sítě opět ve vašich rukou.", "get_started": "Začínáme", "log_in": "Přihlásit se" }, "server_picker": { "title": "Mastodon tvoří uživatelé z různých serverů.", - "subtitle": "Pick a server based on your interests, region, or a general purpose one.", - "subtitle_extend": "Pick a server based on your interests, region, or a general purpose one. Each server is operated by an entirely independent organization or individual.", + "subtitle": "Vyberte server založený na vašich zájmech, regionu nebo obecném účelu.", + "subtitle_extend": "Vyberte server založený na vašich zájmech, regionu nebo obecném účelu. Každý server je provozován zcela nezávislou organizací nebo jednotlivcem.", "button": { "category": { "all": "Vše", @@ -230,7 +230,7 @@ "activism": "aktivismus", "food": "jídlo", "furry": "furry", - "games": "games", + "games": "hry", "general": "obecné", "journalism": "žurnalistika", "lgbt": "lgbt", @@ -258,8 +258,8 @@ } }, "register": { - "title": "Let’s get you set up on %s", - "lets_get_you_set_up_on_domain": "Let’s get you set up on %s", + "title": "Pojďme si nastavit %s", + "lets_get_you_set_up_on_domain": "Pojďme si nastavit %s", "input": { "avatar": { "delete": "Smazat" @@ -298,8 +298,8 @@ "reason": "Důvod" }, "reason": { - "blocked": "%s contains a disallowed email provider", - "unreachable": "%s does not seem to exist", + "blocked": "%s používá zakázanou e-mailovou službu", + "unreachable": "%s pravděpodobně neexistuje", "taken": "%s se již používá", "reserved": "%s je rezervované klíčové slovo", "accepted": "%s musí být přijato", @@ -324,25 +324,25 @@ "terms_of_service": "podmínky služby", "privacy_policy": "zásady ochrany osobních údajů", "button": { - "confirm": "I Agree" + "confirm": "Souhlasím" } }, "confirm_email": { - "title": "One last thing.", - "subtitle": "Tap the link we emailed to you to verify your account.", - "tap_the_link_we_emailed_to_you_to_verify_your_account": "Tap the link we emailed to you to verify your account", + "title": "Ještě jedna věc.", + "subtitle": "Klepněte na odkaz, který jsme vám poslali e-mailem, abyste ověřili Váš účet.", + "tap_the_link_we_emailed_to_you_to_verify_your_account": "Klepněte na odkaz, který jsme vám poslali e-mailem, abyste ověřili Váš účet", "button": { - "open_email_app": "Open Email App", - "resend": "Resend" + "open_email_app": "Otevřít e-mailovou aplikaci", + "resend": "Poslat znovu" }, "dont_receive_email": { - "title": "Check your email", - "description": "Check if your email address is correct as well as your junk folder if you haven’t.", - "resend_email": "Resend Email" + "title": "Zkontrolujte svůj e-mail", + "description": "Zkontrolujte, zda je vaše e-mailová adresa správná, stejně jako složka nevyžádané pošty, pokud ji máte.", + "resend_email": "Znovu odeslat e-mail" }, "open_email_app": { - "title": "Check your inbox.", - "description": "We just sent you an email. Check your junk folder if you haven’t.", + "title": "Zkontrolujte doručenou poštu.", + "description": "Právě jsme vám poslali e-mail. Zkontrolujte složku nevyžádané zprávy, pokud ji máte.", "mail": "Pošta", "open_email_client": "Otevřít e-mailového klienta" } @@ -355,7 +355,7 @@ "published": "Publikováno!", "Publishing": "Publikování příspěvku...", "accessibility": { - "logo_label": "Logo Button", + "logo_label": "Tlačítko s logem", "logo_hint": "Klepnutím přejdete nahoru a znovu klepněte na předchozí místo" } } @@ -501,208 +501,208 @@ "search": { "title": "Hledat", "search_bar": { - "placeholder": "Search hashtags and users", - "cancel": "Cancel" + "placeholder": "Hledat hashtagy a uživatele", + "cancel": "Zrušit" }, "recommend": { - "button_text": "See All", + "button_text": "Zobrazit vše", "hash_tag": { - "title": "Trending on Mastodon", - "description": "Hashtags that are getting quite a bit of attention", - "people_talking": "%s people are talking" + "title": "Populární na Mastodonu", + "description": "Hashtagy, kterým se dostává dosti pozornosti", + "people_talking": "%s lidí mluví" }, "accounts": { - "title": "Accounts you might like", - "description": "You may like to follow these accounts", - "follow": "Follow" + "title": "Účty, které by se vám mohly líbit", + "description": "Možná budete chtít sledovat tyto účty", + "follow": "Sledovat" } }, "searching": { "segment": { - "all": "All", - "people": "People", - "hashtags": "Hashtags", - "posts": "Posts" + "all": "Vše", + "people": "Lidé", + "hashtags": "Hashtagy", + "posts": "Příspěvky" }, "empty_state": { - "no_results": "No results" + "no_results": "Žádné výsledky" }, - "recent_search": "Recent searches", - "clear": "Clear" + "recent_search": "Nedávná hledání", + "clear": "Vymazat" } }, "discovery": { "tabs": { - "posts": "Posts", - "hashtags": "Hashtags", - "news": "News", - "community": "Community", - "for_you": "For You" + "posts": "Příspěvky", + "hashtags": "Hashtagy", + "news": "Zprávy", + "community": "Komunita", + "for_you": "Pro vás" }, - "intro": "These are the posts gaining traction in your corner of Mastodon." + "intro": "Toto jsou příspěvky, které získávají pozornost ve vašem koutu Mastodonu." }, "favorite": { - "title": "Your Favorites" + "title": "Vaše oblíbené" }, "notification": { "title": { - "Everything": "Everything", - "Mentions": "Mentions" + "Everything": "Všechno", + "Mentions": "Zmínky" }, "notification_description": { - "followed_you": "followed you", - "favorited_your_post": "favorited your post", - "reblogged_your_post": "reblogged your post", - "mentioned_you": "mentioned you", - "request_to_follow_you": "request to follow you", - "poll_has_ended": "poll has ended" + "followed_you": "vás sleduje", + "favorited_your_post": "si oblíbil váš příspěvek", + "reblogged_your_post": "boostnul váš příspěvek", + "mentioned_you": "vás zmínil/a", + "request_to_follow_you": "požádat vás o sledování", + "poll_has_ended": "anketa skončila" }, "keyobard": { - "show_everything": "Show Everything", - "show_mentions": "Show Mentions" + "show_everything": "Zobrazit vše", + "show_mentions": "Zobrazit zmínky" }, "follow_request": { - "accept": "Accept", - "accepted": "Accepted", - "reject": "reject", - "rejected": "Rejected" + "accept": "Přijmout", + "accepted": "Přijato", + "reject": "odmítnout", + "rejected": "Zamítnuto" } }, "thread": { - "back_title": "Post", - "title": "Post from %s" + "back_title": "Příspěvek", + "title": "Příspěvek od %s" }, "settings": { - "title": "Settings", + "title": "Nastavení", "section": { "appearance": { - "title": "Appearance", - "automatic": "Automatic", - "light": "Always Light", - "dark": "Always Dark" + "title": "Vzhled", + "automatic": "Automaticky", + "light": "Vždy světlý", + "dark": "Vždy tmavý" }, "look_and_feel": { - "title": "Look and Feel", - "use_system": "Use System", - "really_dark": "Really Dark", + "title": "Vzhled a chování", + "use_system": "Použít systém", + "really_dark": "Skutečně tmavý", "sorta_dark": "Sorta Dark", - "light": "Light" + "light": "Světlý" }, "notifications": { - "title": "Notifications", - "favorites": "Favorites my post", - "follows": "Follows me", - "boosts": "Reblogs my post", - "mentions": "Mentions me", + "title": "Upozornění", + "favorites": "Oblíbil si můj příspěvek", + "follows": "Sleduje mě", + "boosts": "Boostnul můj příspěvek", + "mentions": "Zmiňuje mě", "trigger": { - "anyone": "anyone", - "follower": "a follower", - "follow": "anyone I follow", - "noone": "no one", - "title": "Notify me when" + "anyone": "kdokoliv", + "follower": "sledující", + "follow": "kdokoli, koho sleduji", + "noone": "nikdo", + "title": "Upozornit, když" } }, "preference": { - "title": "Preferences", - "true_black_dark_mode": "True black dark mode", - "disable_avatar_animation": "Disable animated avatars", - "disable_emoji_animation": "Disable animated emojis", - "using_default_browser": "Use default browser to open links", - "open_links_in_mastodon": "Open links in Mastodon" + "title": "Předvolby", + "true_black_dark_mode": "Skutečný černý tmavý režim", + "disable_avatar_animation": "Zakázat animované avatary", + "disable_emoji_animation": "Zakázat animované emoji", + "using_default_browser": "Použít výchozí prohlížeč pro otevírání odkazů", + "open_links_in_mastodon": "Otevřít odkazy v Mastodonu" }, "boring_zone": { - "title": "The Boring Zone", - "account_settings": "Account Settings", - "terms": "Terms of Service", - "privacy": "Privacy Policy" + "title": "Nudná část", + "account_settings": "Nastavení účtu", + "terms": "Podmínky služby", + "privacy": "Zásady ochrany osobních údajů" }, "spicy_zone": { - "title": "The Spicy Zone", - "clear": "Clear Media Cache", - "signout": "Sign Out" + "title": "Ostrá část", + "clear": "Vymazat mezipaměť médií", + "signout": "Odhlásit se" } }, "footer": { - "mastodon_description": "Mastodon is open source software. You can report issues on GitHub at %s (%s)" + "mastodon_description": "Mastodon je open source software. Na GitHub můžete nahlásit problémy na %s (%s)" }, "keyboard": { - "close_settings_window": "Close Settings Window" + "close_settings_window": "Zavřít okno nastavení" } }, "report": { - "title_report": "Report", - "title": "Report %s", - "step1": "Step 1 of 2", - "step2": "Step 2 of 2", - "content1": "Are there any other posts you’d like to add to the report?", - "content2": "Is there anything the moderators should know about this report?", - "report_sent_title": "Thanks for reporting, we’ll look into this.", - "send": "Send Report", - "skip_to_send": "Send without comment", - "text_placeholder": "Type or paste additional comments", + "title_report": "Nahlásit", + "title": "Nahlásit %s", + "step1": "Krok 1 ze 2", + "step2": "Krok 2 ze 2", + "content1": "Existují nějaké další příspěvky, které byste chtěli přidat do zprávy?", + "content2": "Je o tomto hlášení něco, co by měli vědět moderátoři?", + "report_sent_title": "Děkujeme za nahlášení, podíváme se na to.", + "send": "Odeslat hlášení", + "skip_to_send": "Odeslat bez komentáře", + "text_placeholder": "Napište nebo vložte další komentáře", "reported": "REPORTED", "step_one": { - "step_1_of_4": "Step 1 of 4", - "whats_wrong_with_this_post": "What's wrong with this post?", - "whats_wrong_with_this_account": "What's wrong with this account?", - "whats_wrong_with_this_username": "What's wrong with %s?", - "select_the_best_match": "Select the best match", - "i_dont_like_it": "I don’t like it", - "it_is_not_something_you_want_to_see": "It is not something you want to see", - "its_spam": "It’s spam", - "malicious_links_fake_engagement_or_repetetive_replies": "Malicious links, fake engagement, or repetetive replies", - "it_violates_server_rules": "It violates server rules", - "you_are_aware_that_it_breaks_specific_rules": "You are aware that it breaks specific rules", - "its_something_else": "It’s something else", - "the_issue_does_not_fit_into_other_categories": "The issue does not fit into other categories" + "step_1_of_4": "Krok 1 ze 4", + "whats_wrong_with_this_post": "Co je na tomto příspěvku špatně?", + "whats_wrong_with_this_account": "Co je špatně s tímto účtem?", + "whats_wrong_with_this_username": "Co je špatně na %s?", + "select_the_best_match": "Vyberte nejbližší možnost", + "i_dont_like_it": "Nelíbí se mi", + "it_is_not_something_you_want_to_see": "Není to něco, co chcete vidět", + "its_spam": "Je to spam", + "malicious_links_fake_engagement_or_repetetive_replies": "Škodlivé odkazy, falešné zapojení nebo opakující se odpovědi", + "it_violates_server_rules": "Porušuje pravidla serveru", + "you_are_aware_that_it_breaks_specific_rules": "Máte za to, že porušuje konkrétní pravidla", + "its_something_else": "Jde o něco jiného", + "the_issue_does_not_fit_into_other_categories": "Problém neodpovídá ostatním kategoriím" }, "step_two": { - "step_2_of_4": "Step 2 of 4", - "which_rules_are_being_violated": "Which rules are being violated?", - "select_all_that_apply": "Select all that apply", - "i_just_don’t_like_it": "I just don’t like it" + "step_2_of_4": "Krok 2 ze 4", + "which_rules_are_being_violated": "Jaká pravidla jsou porušována?", + "select_all_that_apply": "Vyberte všechna relevantní", + "i_just_don’t_like_it": "Jen se mi to nelíbí" }, "step_three": { - "step_3_of_4": "Step 3 of 4", - "are_there_any_posts_that_back_up_this_report": "Are there any posts that back up this report?", - "select_all_that_apply": "Select all that apply" + "step_3_of_4": "Krok 3 ze 4", + "are_there_any_posts_that_back_up_this_report": "Existují příspěvky dokládající toto hlášení?", + "select_all_that_apply": "Vyberte všechna relevantní" }, "step_four": { - "step_4_of_4": "Step 4 of 4", - "is_there_anything_else_we_should_know": "Is there anything else we should know?" + "step_4_of_4": "Krok 4 ze 4", + "is_there_anything_else_we_should_know": "Je ještě něco jiného, co bychom měli vědět?" }, "step_final": { - "dont_want_to_see_this": "Don’t want to see this?", - "when_you_see_something_you_dont_like_on_mastodon_you_can_remove_the_person_from_your_experience.": "When you see something you don’t like on Mastodon, you can remove the person from your experience.", - "unfollow": "Unfollow", - "unfollowed": "Unfollowed", - "unfollow_user": "Unfollow %s", - "mute_user": "Mute %s", - "you_wont_see_their_posts_or_reblogs_in_your_home_feed_they_wont_know_they_ve_been_muted": "You won’t see their posts or reblogs in your home feed. They won’t know they’ve been muted.", - "block_user": "Block %s", + "dont_want_to_see_this": "Nechcete to vidět?", + "when_you_see_something_you_dont_like_on_mastodon_you_can_remove_the_person_from_your_experience.": "Když uvidíte něco, co se vám nelíbí na Mastodonu, můžete odstranit tuto osobu ze svého zážitku.", + "unfollow": "Přestat sledovat", + "unfollowed": "Už nesledujete", + "unfollow_user": "Přestat sledovat %s", + "mute_user": "Skrýt %s", + "you_wont_see_their_posts_or_reblogs_in_your_home_feed_they_wont_know_they_ve_been_muted": "Neuvidíte jejich příspěvky nebo boostnutí v domovském kanálu. Nebudou vědět, že jsou skrytí.", + "block_user": "Blokovat %s", "they_will_no_longer_be_able_to_follow_or_see_your_posts_but_they_can_see_if_theyve_been_blocked": "They will no longer be able to follow or see your posts, but they can see if they’ve been blocked.", - "while_we_review_this_you_can_take_action_against_user": "While we review this, you can take action against %s" + "while_we_review_this_you_can_take_action_against_user": "Zatímco to posuzujeme, můžete podniknout kroky proti %s" } }, "preview": { "keyboard": { - "close_preview": "Close Preview", - "show_next": "Show Next", - "show_previous": "Show Previous" + "close_preview": "Zavřít náhled", + "show_next": "Zobrazit další", + "show_previous": "Zobrazit předchozí" } }, "account_list": { - "tab_bar_hint": "Current selected profile: %s. Double tap then hold to show account switcher", - "dismiss_account_switcher": "Dismiss Account Switcher", - "add_account": "Add Account" + "tab_bar_hint": "Aktuální vybraný profil: %s. Dvojitým poklepáním zobrazíte přepínač účtů", + "dismiss_account_switcher": "Zrušit přepínač účtů", + "add_account": "Přidat účet" }, "wizard": { - "new_in_mastodon": "New in Mastodon", - "multiple_account_switch_intro_description": "Switch between multiple accounts by holding the profile button.", - "accessibility_hint": "Double tap to dismiss this wizard" + "new_in_mastodon": "Nový v Mastodonu", + "multiple_account_switch_intro_description": "Přepínání mezi více účty podržením tlačítka profilu.", + "accessibility_hint": "Dvojitým poklepáním tohoto průvodce odmítnete" }, "bookmark": { - "title": "Bookmarks" + "title": "Záložky" } } } From b19e272dab7edccacc819896ca1a660bb43ea367 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Fri, 11 Nov 2022 21:37:28 +0100 Subject: [PATCH 142/598] New translations ios-infoPlist.json (Czech) --- .../StringsConvertor/input/cs.lproj/ios-infoPlist.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Localization/StringsConvertor/input/cs.lproj/ios-infoPlist.json b/Localization/StringsConvertor/input/cs.lproj/ios-infoPlist.json index c6db73de0..88bbb346a 100644 --- a/Localization/StringsConvertor/input/cs.lproj/ios-infoPlist.json +++ b/Localization/StringsConvertor/input/cs.lproj/ios-infoPlist.json @@ -1,6 +1,6 @@ { - "NSCameraUsageDescription": "Used to take photo for post status", - "NSPhotoLibraryAddUsageDescription": "Used to save photo into the Photo Library", - "NewPostShortcutItemTitle": "New Post", - "SearchShortcutItemTitle": "Search" + "NSCameraUsageDescription": "Slouží k pořízení fotografie pro příspěvek", + "NSPhotoLibraryAddUsageDescription": "Slouží k uložení fotografie do knihovny fotografií", + "NewPostShortcutItemTitle": "Nový příspěvek", + "SearchShortcutItemTitle": "Hledat" } From a9fad73ae255e2840371156e67baa11e898ccc22 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Fri, 11 Nov 2022 21:37:29 +0100 Subject: [PATCH 143/598] New translations Intents.strings (Czech) --- .../Intents/input/cs.lproj/Intents.strings | 46 +++++++++---------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/Localization/StringsConvertor/Intents/input/cs.lproj/Intents.strings b/Localization/StringsConvertor/Intents/input/cs.lproj/Intents.strings index 6877490ba..accbdd58d 100644 --- a/Localization/StringsConvertor/Intents/input/cs.lproj/Intents.strings +++ b/Localization/StringsConvertor/Intents/input/cs.lproj/Intents.strings @@ -1,51 +1,51 @@ -"16wxgf" = "Post on Mastodon"; +"16wxgf" = "Příspěvek na Mastodon"; -"751xkl" = "Text Content"; +"751xkl" = "Textový obsah"; -"CsR7G2" = "Post on Mastodon"; +"CsR7G2" = "Příspěvek na Mastodon"; -"HZSGTr" = "What content to post?"; +"HZSGTr" = "Jaký obsah se má přidat?"; -"HdGikU" = "Posting failed"; +"HdGikU" = "Odeslání se nezdařilo"; -"KDNTJ4" = "Failure Reason"; +"KDNTJ4" = "Důvod selhání"; -"RHxKOw" = "Send Post with text content"; +"RHxKOw" = "Odeslat příspěvek s textovým obsahem"; -"RxSqsb" = "Post"; +"RxSqsb" = "Příspěvek"; -"WCIR3D" = "Post ${content} on Mastodon"; +"WCIR3D" = "Zveřejnit ${content} na Mastodon"; -"ZKJSNu" = "Post"; +"ZKJSNu" = "Příspěvek"; "ZS1XaK" = "${content}"; -"ZbSjzC" = "Visibility"; +"ZbSjzC" = "Viditelnost"; -"Zo4jgJ" = "Post Visibility"; +"Zo4jgJ" = "Viditelnost příspěvku"; -"apSxMG-dYQ5NN" = "There are ${count} options matching ‘Public’."; +"apSxMG-dYQ5NN" = "Existuje ${count} možností odpovídajících 'Veřejný'."; -"apSxMG-ehFLjY" = "There are ${count} options matching ‘Followers Only’."; +"apSxMG-ehFLjY" = "Existuje ${count} možností, které odpovídají „jen sledujícím“."; -"ayoYEb-dYQ5NN" = "${content}, Public"; +"ayoYEb-dYQ5NN" = "${content}, veřejné"; -"ayoYEb-ehFLjY" = "${content}, Followers Only"; +"ayoYEb-ehFLjY" = "${content}, pouze sledující"; -"dUyuGg" = "Post on Mastodon"; +"dUyuGg" = "Příspěvek na Mastodon"; -"dYQ5NN" = "Public"; +"dYQ5NN" = "Veřejný"; -"ehFLjY" = "Followers Only"; +"ehFLjY" = "Pouze sledující"; "gfePDu" = "Posting failed. ${failureReason}"; -"k7dbKQ" = "Post was sent successfully."; +"k7dbKQ" = "Příspěvek byl úspěšně odeslán."; -"oGiqmY-dYQ5NN" = "Just to confirm, you wanted ‘Public’?"; +"oGiqmY-dYQ5NN" = "Jen pro kontrolu, chtěli jste „Veřejný“?"; -"oGiqmY-ehFLjY" = "Just to confirm, you wanted ‘Followers Only’?"; +"oGiqmY-ehFLjY" = "Jen pro kontrolu, chtěli jste „Pouze sledující“?"; "rM6dvp" = "URL"; -"ryJLwG" = "Post was sent successfully. "; +"ryJLwG" = "Příspěvek byl úspěšně odeslán. "; From 407e0ae304e2c68c223781e5d8333a34e0263c3e Mon Sep 17 00:00:00 2001 From: Kyle Bashour Date: Fri, 11 Nov 2022 14:24:59 -0800 Subject: [PATCH 144/598] Update navigation bar appearance in SearchViewController --- .../Search/Search/SearchViewController.swift | 28 +++++++++++++++---- 1 file changed, 22 insertions(+), 6 deletions(-) diff --git a/Mastodon/Scene/Search/Search/SearchViewController.swift b/Mastodon/Scene/Search/Search/SearchViewController.swift index 7efef2c00..3b9496dab 100644 --- a/Mastodon/Scene/Search/Search/SearchViewController.swift +++ b/Mastodon/Scene/Search/Search/SearchViewController.swift @@ -23,15 +23,15 @@ final class HeightFixedSearchBar: UISearchBar { final class SearchViewController: UIViewController, NeedsDependency { let logger = Logger(subsystem: "SearchViewController", category: "ViewController") - + weak var context: AppContext! { willSet { precondition(!isViewLoaded) } } weak var coordinator: SceneCoordinator! { willSet { precondition(!isViewLoaded) } } var searchTransitionController = SearchTransitionController() - + var disposeBag = Set() var viewModel: SearchViewModel! - + // use AutoLayout could set search bar margin automatically to // layout alongside with split mode button (on iPad) let titleViewContainer = UIView() @@ -85,6 +85,7 @@ extension SearchViewController { title = L10n.Scene.Search.title setupSearchBar() + setupNavigationBarAppearance() // collectionView.translatesAutoresizingMaskIntoConstraints = false // view.addSubview(collectionView) @@ -101,7 +102,7 @@ extension SearchViewController { // ) guard let discoveryViewController = self.discoveryViewController else { return } - + addChild(discoveryViewController) discoveryViewController.view.translatesAutoresizingMaskIntoConstraints = false view.addSubview(discoveryViewController.view) @@ -111,15 +112,16 @@ extension SearchViewController { discoveryViewController.view.trailingAnchor.constraint(equalTo: view.trailingAnchor), discoveryViewController.view.bottomAnchor.constraint(equalTo: view.bottomAnchor), ]) - + // discoveryViewController.view.isHidden = true + } override func viewDidAppear(_ animated: Bool) { super.viewDidAppear(animated) viewModel.viewDidAppeared.send() - + // note: // need set alpha because (maybe) SDK forget set alpha back titleViewContainer.alpha = 1 @@ -164,6 +166,20 @@ extension SearchViewController { .store(in: &disposeBag) } + private func setupNavigationBarAppearance() { + let appearance = UINavigationBarAppearance() + appearance.configureWithOpaqueBackground() + appearance.shadowColor = nil + + navigationItem.standardAppearance = appearance + navigationItem.scrollEdgeAppearance = appearance + navigationItem.compactAppearance = appearance + + if #available(iOS 15, *) { + navigationItem.compactScrollEdgeAppearance = appearance + } + } + } // MARK: - UISearchBarDelegate From a5d61072c0182fd06c175c854c6d45ffa9bf8b3e Mon Sep 17 00:00:00 2001 From: Kyle Bashour Date: Fri, 11 Nov 2022 15:07:31 -0800 Subject: [PATCH 145/598] Fix background in dark mode --- .../Search/Search/SearchViewController.swift | 37 +++++++++---------- 1 file changed, 18 insertions(+), 19 deletions(-) diff --git a/Mastodon/Scene/Search/Search/SearchViewController.swift b/Mastodon/Scene/Search/Search/SearchViewController.swift index 3b9496dab..581fa08b3 100644 --- a/Mastodon/Scene/Search/Search/SearchViewController.swift +++ b/Mastodon/Scene/Search/Search/SearchViewController.swift @@ -73,20 +73,19 @@ extension SearchViewController { override func viewDidLoad() { super.viewDidLoad() - setupBackgroundColor(theme: ThemeService.shared.currentTheme.value) + setupAppearance(theme: ThemeService.shared.currentTheme.value) ThemeService.shared.currentTheme .receive(on: DispatchQueue.main) .sink { [weak self] theme in guard let self = self else { return } - self.setupBackgroundColor(theme: theme) + self.setupAppearance(theme: theme) } .store(in: &disposeBag) title = L10n.Scene.Search.title setupSearchBar() - setupNavigationBarAppearance() - + // collectionView.translatesAutoresizingMaskIntoConstraints = false // view.addSubview(collectionView) // NSLayoutConstraint.activate([ @@ -129,8 +128,22 @@ extension SearchViewController { } extension SearchViewController { - private func setupBackgroundColor(theme: Theme) { + private func setupAppearance(theme: Theme) { view.backgroundColor = theme.systemGroupedBackgroundColor + + // Match the DiscoveryViewController tab color and remove the double separator. + let navigationBarAppearance = UINavigationBarAppearance() + navigationBarAppearance.configureWithOpaqueBackground() + navigationBarAppearance.backgroundColor = theme.systemBackgroundColor + navigationBarAppearance.shadowColor = nil + + navigationItem.standardAppearance = navigationBarAppearance + navigationItem.scrollEdgeAppearance = navigationBarAppearance + navigationItem.compactAppearance = navigationBarAppearance + + if #available(iOS 15, *) { + navigationItem.compactScrollEdgeAppearance = navigationBarAppearance + } } private func setupSearchBar() { @@ -166,20 +179,6 @@ extension SearchViewController { .store(in: &disposeBag) } - private func setupNavigationBarAppearance() { - let appearance = UINavigationBarAppearance() - appearance.configureWithOpaqueBackground() - appearance.shadowColor = nil - - navigationItem.standardAppearance = appearance - navigationItem.scrollEdgeAppearance = appearance - navigationItem.compactAppearance = appearance - - if #available(iOS 15, *) { - navigationItem.compactScrollEdgeAppearance = appearance - } - } - } // MARK: - UISearchBarDelegate From 35775a5b4364d94998f3cc4890228e16b5beb5f8 Mon Sep 17 00:00:00 2001 From: David Godfrey Date: Sat, 12 Nov 2022 01:53:12 +0000 Subject: [PATCH 146/598] Alert validation time on tapping field checkmark, make validated field links green --- .../Profile/ProfileFieldSection.swift | 9 ++++- .../Cell/ProfileFieldCollectionViewCell.swift | 16 ++++++++ .../About/ProfileAboutViewController.swift | 16 ++++++++ .../Scene/Profile/ProfileViewController.swift | 16 ++++++++ .../Contents.json | 38 +++++++++++++++++++ .../MastodonAsset/Generated/Assets.swift | 1 + 6 files changed, 95 insertions(+), 1 deletion(-) create mode 100644 MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Profile/About/bio.about.field.validated.link.colorset/Contents.json diff --git a/Mastodon/Diffiable/Profile/ProfileFieldSection.swift b/Mastodon/Diffiable/Profile/ProfileFieldSection.swift index 332916a02..98acbb73c 100644 --- a/Mastodon/Diffiable/Profile/ProfileFieldSection.swift +++ b/Mastodon/Diffiable/Profile/ProfileFieldSection.swift @@ -49,6 +49,10 @@ extension ProfileFieldSection { do { let mastodonContent = MastodonContent(content: field.value.value, emojis: field.emojiMeta) let metaContent = try MastodonMetaContent.convert(document: mastodonContent) + cell.valueMetaLabel.linkAttributes[.foregroundColor] = Asset.Colors.brand.color + if field.verifiedAt.value != nil { + cell.valueMetaLabel.linkAttributes[.foregroundColor] = Asset.Scene.Profile.About.bioAboutFieldValidatedLink.color + } cell.valueMetaLabel.configure(content: metaContent) } catch { let content = PlaintextMetaContent(string: field.value.value) @@ -67,7 +71,10 @@ extension ProfileFieldSection { cell.checkmark.isHidden = true if let verifiedAt = field.verifiedAt.value { cell.checkmark.isHidden = false - cell.checkmark.accessibilityLabel = "Ownership of this link was checked on \(verifiedAt)" // TODO: I18N / L10N + let formatter = DateFormatter() + formatter.dateStyle = .medium + formatter.timeStyle = .short + cell.checkmark.accessibilityLabel = "Ownership of this link was checked on \(formatter.string(from: verifiedAt))" // TODO: I18N / L10N } cell.delegate = configuration.profileFieldCollectionViewCellDelegate diff --git a/Mastodon/Scene/Profile/About/Cell/ProfileFieldCollectionViewCell.swift b/Mastodon/Scene/Profile/About/Cell/ProfileFieldCollectionViewCell.swift index 076b8373e..2841ba664 100644 --- a/Mastodon/Scene/Profile/About/Cell/ProfileFieldCollectionViewCell.swift +++ b/Mastodon/Scene/Profile/About/Cell/ProfileFieldCollectionViewCell.swift @@ -14,6 +14,11 @@ import MastodonLocalization protocol ProfileFieldCollectionViewCellDelegate: AnyObject { func profileFieldCollectionViewCell(_ cell: ProfileFieldCollectionViewCell, metaLebel: MetaLabel, didSelectMeta meta: Meta) + func profileFieldCollectionViewCell(_ cell: ProfileFieldCollectionViewCell, didTapAction: ProfileFieldCollectionViewCellAction) +} + +enum ProfileFieldCollectionViewCellAction { + case Checkmark } final class ProfileFieldCollectionViewCell: UICollectionViewCell { @@ -27,6 +32,7 @@ final class ProfileFieldCollectionViewCell: UICollectionViewCell { let valueMetaLabel = MetaLabel(style: .profileFieldValue) let checkmark = UIImageView(image: Asset.Editing.checkmark.image.withRenderingMode(.alwaysTemplate)) + let tapGesture = UITapGestureRecognizer(); override func prepareForReuse() { super.prepareForReuse() @@ -49,8 +55,14 @@ final class ProfileFieldCollectionViewCell: UICollectionViewCell { extension ProfileFieldCollectionViewCell { private func _init() { + // Setup colors checkmark.tintColor = Asset.Scene.Profile.About.bioAboutFieldValidatedCheckmark.color; + // Setup gestures + tapGesture.addTarget(self, action: #selector(ProfileFieldCollectionViewCell.didTapCheckmark(_:))) + checkmark.addGestureRecognizer(tapGesture) + checkmark.isUserInteractionEnabled = true + // containerStackView: V - [ metaContainer | plainContainer ] let containerStackView = UIStackView() containerStackView.axis = .vertical @@ -87,6 +99,10 @@ extension ProfileFieldCollectionViewCell { valueMetaLabel.linkDelegate = self } + @objc public func didTapCheckmark(_: UITapGestureRecognizer) { + delegate?.profileFieldCollectionViewCell(self, didTapAction: .Checkmark) + } + } // MARK: - MetaLabelDelegate diff --git a/Mastodon/Scene/Profile/About/ProfileAboutViewController.swift b/Mastodon/Scene/Profile/About/ProfileAboutViewController.swift index eb1e6b39c..bf77c05b9 100644 --- a/Mastodon/Scene/Profile/About/ProfileAboutViewController.swift +++ b/Mastodon/Scene/Profile/About/ProfileAboutViewController.swift @@ -16,6 +16,7 @@ import MastodonCore protocol ProfileAboutViewControllerDelegate: AnyObject { func profileAboutViewController(_ viewController: ProfileAboutViewController, profileFieldCollectionViewCell: ProfileFieldCollectionViewCell, metaLabel: MetaLabel, didSelectMeta meta: Meta) + func profileAboutViewController(_ viewController: ProfileAboutViewController, didTapCheckmarkFor field: ProfileFieldItem.FieldValue) } final class ProfileAboutViewController: UIViewController { @@ -152,6 +153,21 @@ extension ProfileAboutViewController: ProfileFieldCollectionViewCellDelegate { func profileFieldCollectionViewCell(_ cell: ProfileFieldCollectionViewCell, metaLebel: MetaLabel, didSelectMeta meta: Meta) { delegate?.profileAboutViewController(self, profileFieldCollectionViewCell: cell, metaLabel: metaLebel, didSelectMeta: meta) } + + func profileFieldCollectionViewCell(_ cell: ProfileFieldCollectionViewCell, didTapAction action: ProfileFieldCollectionViewCellAction) { + guard let diffableDataSource = viewModel.diffableDataSource else { return } + guard let indexPath = collectionView.indexPath(for: cell) else { return } + guard let item = diffableDataSource.itemIdentifier(for: indexPath) else { return } + + switch item { + case .field(let field): + delegate?.profileAboutViewController(self, didTapCheckmarkFor: field) + case .addEntry: fallthrough + case .editField: fallthrough + case .noResult: + break + } + } } // MARK: - ProfileFieldEditCollectionViewCellDelegate diff --git a/Mastodon/Scene/Profile/ProfileViewController.swift b/Mastodon/Scene/Profile/ProfileViewController.swift index 3ce1fd33a..908725e43 100644 --- a/Mastodon/Scene/Profile/ProfileViewController.swift +++ b/Mastodon/Scene/Profile/ProfileViewController.swift @@ -854,6 +854,22 @@ extension ProfileViewController: ProfileAboutViewControllerDelegate { ) { handleMetaPress(meta) } + + func profileAboutViewController(_ viewController: ProfileAboutViewController, didTapCheckmarkFor field: ProfileFieldItem.FieldValue) { + guard let verifiedAt = field.verifiedAt.value else { + return + } + + let formatter = DateFormatter() + formatter.dateStyle = .medium + formatter.timeStyle = .short + let alert = UIAlertController(title: "Validated", message: "Ownership of this link was checked on \(formatter.string(from: verifiedAt))", preferredStyle: .alert) // TODO: I18N / L10N + alert.addAction(UIAlertAction(title: L10n.Common.Controls.Actions.ok, style: .default) { _ in + alert.dismiss(animated: true) + }) + + self.present(alert, animated: true) + } } // MARK: - MastodonMenuDelegate diff --git a/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Profile/About/bio.about.field.validated.link.colorset/Contents.json b/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Profile/About/bio.about.field.validated.link.colorset/Contents.json new file mode 100644 index 000000000..f5112f04f --- /dev/null +++ b/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Profile/About/bio.about.field.validated.link.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0.371", + "green" : "0.565", + "red" : "0.290" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0.603", + "green" : "0.742", + "red" : "0.476" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/MastodonSDK/Sources/MastodonAsset/Generated/Assets.swift b/MastodonSDK/Sources/MastodonAsset/Generated/Assets.swift index 45861c583..986215f5f 100644 --- a/MastodonSDK/Sources/MastodonAsset/Generated/Assets.swift +++ b/MastodonSDK/Sources/MastodonAsset/Generated/Assets.swift @@ -166,6 +166,7 @@ public enum Asset { public enum About { public static let bioAboutFieldValidatedBackground = ColorAsset(name: "Scene/Profile/About/bio.about.field.validated.background") public static let bioAboutFieldValidatedCheckmark = ColorAsset(name: "Scene/Profile/About/bio.about.field.validated.checkmark") + public static let bioAboutFieldValidatedLink = ColorAsset(name: "Scene/Profile/About/bio.about.field.validated.link") } public enum Banner { public static let bioEditBackgroundGray = ColorAsset(name: "Scene/Profile/Banner/bio.edit.background.gray") From b0a0aa268f59ae985f05f88e0fc6f4b7434b01a5 Mon Sep 17 00:00:00 2001 From: David Godfrey Date: Sat, 12 Nov 2022 02:10:16 +0000 Subject: [PATCH 147/598] Rename validated to verified in profile field code --- Mastodon/Diffiable/Profile/ProfileFieldSection.swift | 4 ++-- .../Profile/About/Cell/ProfileFieldCollectionViewCell.swift | 2 +- Mastodon/Scene/Profile/ProfileViewController.swift | 2 +- .../Contents.json | 0 .../Contents.json | 0 .../Contents.json | 0 MastodonSDK/Sources/MastodonAsset/Generated/Assets.swift | 6 +++--- 7 files changed, 7 insertions(+), 7 deletions(-) rename MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Profile/About/{bio.about.field.validated.background.colorset => bio.about.field.verified.background.colorset}/Contents.json (100%) rename MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Profile/About/{bio.about.field.validated.checkmark.colorset => bio.about.field.verified.checkmark.colorset}/Contents.json (100%) rename MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Profile/About/{bio.about.field.validated.link.colorset => bio.about.field.verified.link.colorset}/Contents.json (100%) diff --git a/Mastodon/Diffiable/Profile/ProfileFieldSection.swift b/Mastodon/Diffiable/Profile/ProfileFieldSection.swift index 98acbb73c..87f730fa8 100644 --- a/Mastodon/Diffiable/Profile/ProfileFieldSection.swift +++ b/Mastodon/Diffiable/Profile/ProfileFieldSection.swift @@ -51,7 +51,7 @@ extension ProfileFieldSection { let metaContent = try MastodonMetaContent.convert(document: mastodonContent) cell.valueMetaLabel.linkAttributes[.foregroundColor] = Asset.Colors.brand.color if field.verifiedAt.value != nil { - cell.valueMetaLabel.linkAttributes[.foregroundColor] = Asset.Scene.Profile.About.bioAboutFieldValidatedLink.color + cell.valueMetaLabel.linkAttributes[.foregroundColor] = Asset.Scene.Profile.About.bioAboutFieldVerifiedLink.color } cell.valueMetaLabel.configure(content: metaContent) } catch { @@ -63,7 +63,7 @@ extension ProfileFieldSection { var backgroundConfiguration = UIBackgroundConfiguration.listPlainCell() backgroundConfiguration.backgroundColor = UIColor.secondarySystemBackground if (field.verifiedAt.value != nil) { - backgroundConfiguration.backgroundColor = Asset.Scene.Profile.About.bioAboutFieldValidatedBackground.color + backgroundConfiguration.backgroundColor = Asset.Scene.Profile.About.bioAboutFieldVerifiedBackground.color } cell.backgroundConfiguration = backgroundConfiguration diff --git a/Mastodon/Scene/Profile/About/Cell/ProfileFieldCollectionViewCell.swift b/Mastodon/Scene/Profile/About/Cell/ProfileFieldCollectionViewCell.swift index 2841ba664..2d33b2afe 100644 --- a/Mastodon/Scene/Profile/About/Cell/ProfileFieldCollectionViewCell.swift +++ b/Mastodon/Scene/Profile/About/Cell/ProfileFieldCollectionViewCell.swift @@ -56,7 +56,7 @@ extension ProfileFieldCollectionViewCell { private func _init() { // Setup colors - checkmark.tintColor = Asset.Scene.Profile.About.bioAboutFieldValidatedCheckmark.color; + checkmark.tintColor = Asset.Scene.Profile.About.bioAboutFieldVerifiedCheckmark.color; // Setup gestures tapGesture.addTarget(self, action: #selector(ProfileFieldCollectionViewCell.didTapCheckmark(_:))) diff --git a/Mastodon/Scene/Profile/ProfileViewController.swift b/Mastodon/Scene/Profile/ProfileViewController.swift index 908725e43..70d11a823 100644 --- a/Mastodon/Scene/Profile/ProfileViewController.swift +++ b/Mastodon/Scene/Profile/ProfileViewController.swift @@ -863,7 +863,7 @@ extension ProfileViewController: ProfileAboutViewControllerDelegate { let formatter = DateFormatter() formatter.dateStyle = .medium formatter.timeStyle = .short - let alert = UIAlertController(title: "Validated", message: "Ownership of this link was checked on \(formatter.string(from: verifiedAt))", preferredStyle: .alert) // TODO: I18N / L10N + let alert = UIAlertController(title: "Verified", message: "Ownership of this link was checked on \(formatter.string(from: verifiedAt))", preferredStyle: .alert) // TODO: I18N / L10N alert.addAction(UIAlertAction(title: L10n.Common.Controls.Actions.ok, style: .default) { _ in alert.dismiss(animated: true) }) diff --git a/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Profile/About/bio.about.field.validated.background.colorset/Contents.json b/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Profile/About/bio.about.field.verified.background.colorset/Contents.json similarity index 100% rename from MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Profile/About/bio.about.field.validated.background.colorset/Contents.json rename to MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Profile/About/bio.about.field.verified.background.colorset/Contents.json diff --git a/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Profile/About/bio.about.field.validated.checkmark.colorset/Contents.json b/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Profile/About/bio.about.field.verified.checkmark.colorset/Contents.json similarity index 100% rename from MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Profile/About/bio.about.field.validated.checkmark.colorset/Contents.json rename to MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Profile/About/bio.about.field.verified.checkmark.colorset/Contents.json diff --git a/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Profile/About/bio.about.field.validated.link.colorset/Contents.json b/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Profile/About/bio.about.field.verified.link.colorset/Contents.json similarity index 100% rename from MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Profile/About/bio.about.field.validated.link.colorset/Contents.json rename to MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Profile/About/bio.about.field.verified.link.colorset/Contents.json diff --git a/MastodonSDK/Sources/MastodonAsset/Generated/Assets.swift b/MastodonSDK/Sources/MastodonAsset/Generated/Assets.swift index 986215f5f..dec04f142 100644 --- a/MastodonSDK/Sources/MastodonAsset/Generated/Assets.swift +++ b/MastodonSDK/Sources/MastodonAsset/Generated/Assets.swift @@ -164,9 +164,9 @@ public enum Asset { } public enum Profile { public enum About { - public static let bioAboutFieldValidatedBackground = ColorAsset(name: "Scene/Profile/About/bio.about.field.validated.background") - public static let bioAboutFieldValidatedCheckmark = ColorAsset(name: "Scene/Profile/About/bio.about.field.validated.checkmark") - public static let bioAboutFieldValidatedLink = ColorAsset(name: "Scene/Profile/About/bio.about.field.validated.link") + public static let bioAboutFieldVerifiedBackground = ColorAsset(name: "Scene/Profile/About/bio.about.field.verified.background") + public static let bioAboutFieldVerifiedCheckmark = ColorAsset(name: "Scene/Profile/About/bio.about.field.verified.checkmark") + public static let bioAboutFieldVerifiedLink = ColorAsset(name: "Scene/Profile/About/bio.about.field.verified.link") } public enum Banner { public static let bioEditBackgroundGray = ColorAsset(name: "Scene/Profile/Banner/bio.edit.background.gray") From 72873fbfc1d22ba86d3b1eb227164058a2c08e43 Mon Sep 17 00:00:00 2001 From: David Godfrey Date: Sat, 12 Nov 2022 02:40:19 +0000 Subject: [PATCH 148/598] Use localisable strings in verified modal --- Localization/app.json | 4 ++++ Mastodon/Diffiable/Profile/ProfileFieldSection.swift | 2 +- Mastodon/Scene/Profile/ProfileViewController.swift | 2 +- .../Sources/MastodonLocalization/Generated/Strings.swift | 8 ++++++++ .../Resources/en.lproj/Localizable.strings | 4 +++- 5 files changed, 17 insertions(+), 3 deletions(-) diff --git a/Localization/app.json b/Localization/app.json index c5a3dac74..6ca2cbea9 100644 --- a/Localization/app.json +++ b/Localization/app.json @@ -51,6 +51,10 @@ "clean_cache": { "title": "Clean Cache", "message": "Successfully cleaned %s cache." + }, + "verified": { + "title": "Verified", + "message": "Ownership of this link was checked on %s" } }, "controls": { diff --git a/Mastodon/Diffiable/Profile/ProfileFieldSection.swift b/Mastodon/Diffiable/Profile/ProfileFieldSection.swift index 87f730fa8..01e8d8a0a 100644 --- a/Mastodon/Diffiable/Profile/ProfileFieldSection.swift +++ b/Mastodon/Diffiable/Profile/ProfileFieldSection.swift @@ -74,7 +74,7 @@ extension ProfileFieldSection { let formatter = DateFormatter() formatter.dateStyle = .medium formatter.timeStyle = .short - cell.checkmark.accessibilityLabel = "Ownership of this link was checked on \(formatter.string(from: verifiedAt))" // TODO: I18N / L10N + cell.checkmark.accessibilityLabel = L10n.Common.Alerts.Verified.message(formatter.string(from: verifiedAt)) } cell.delegate = configuration.profileFieldCollectionViewCellDelegate diff --git a/Mastodon/Scene/Profile/ProfileViewController.swift b/Mastodon/Scene/Profile/ProfileViewController.swift index 70d11a823..1faf291f3 100644 --- a/Mastodon/Scene/Profile/ProfileViewController.swift +++ b/Mastodon/Scene/Profile/ProfileViewController.swift @@ -863,7 +863,7 @@ extension ProfileViewController: ProfileAboutViewControllerDelegate { let formatter = DateFormatter() formatter.dateStyle = .medium formatter.timeStyle = .short - let alert = UIAlertController(title: "Verified", message: "Ownership of this link was checked on \(formatter.string(from: verifiedAt))", preferredStyle: .alert) // TODO: I18N / L10N + let alert = UIAlertController(title: L10n.Common.Alerts.Verified.title, message: L10n.Common.Alerts.Verified.message(formatter.string(from: verifiedAt)), preferredStyle: .alert) alert.addAction(UIAlertAction(title: L10n.Common.Controls.Actions.ok, style: .default) { _ in alert.dismiss(animated: true) }) diff --git a/MastodonSDK/Sources/MastodonLocalization/Generated/Strings.swift b/MastodonSDK/Sources/MastodonLocalization/Generated/Strings.swift index 44ae29267..fce4d9733 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Generated/Strings.swift +++ b/MastodonSDK/Sources/MastodonLocalization/Generated/Strings.swift @@ -87,6 +87,14 @@ public enum L10n { /// Sign Up Failure public static let title = L10n.tr("Localizable", "Common.Alerts.SignUpFailure.Title") } + public enum Verified { + /// Ownership of this link was checked on %s + public static func message(_ p1: UnsafePointer) -> String { + return L10n.tr("Localizable", "Common.Alerts.Verified.Message", p1) + } + /// Verified + public static let title = L10n.tr("Localizable", "Common.Alerts.Verified.Title") + } public enum VoteFailure { /// The poll has ended public static let pollEnded = L10n.tr("Localizable", "Common.Alerts.VoteFailure.PollEnded") diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/en.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/en.lproj/Localizable.strings index 9114b96e5..fe9566b14 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/en.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/en.lproj/Localizable.strings @@ -22,6 +22,8 @@ Please check your internet connection."; "Common.Alerts.SignOut.Message" = "Are you sure you want to sign out?"; "Common.Alerts.SignOut.Title" = "Sign Out"; "Common.Alerts.SignUpFailure.Title" = "Sign Up Failure"; +"Common.Alerts.Verified.Title" = "Verified"; +"Common.Alerts.Verified.Message" = "Ownership of this link was checked on %s"; "Common.Alerts.VoteFailure.PollEnded" = "The poll has ended"; "Common.Alerts.VoteFailure.Title" = "Vote Failure"; "Common.Controls.Actions.Add" = "Add"; @@ -448,4 +450,4 @@ uploaded to Mastodon."; back in your hands."; "Scene.Wizard.AccessibilityHint" = "Double tap to dismiss this wizard"; "Scene.Wizard.MultipleAccountSwitchIntroDescription" = "Switch between multiple accounts by holding the profile button."; -"Scene.Wizard.NewInMastodon" = "New in Mastodon"; \ No newline at end of file +"Scene.Wizard.NewInMastodon" = "New in Mastodon"; From f264140e08d8afd94dbce4a35850c61a5ff47027 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sat, 12 Nov 2022 06:29:11 +0100 Subject: [PATCH 149/598] New translations app.json (Korean) --- Localization/StringsConvertor/input/ko.lproj/app.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Localization/StringsConvertor/input/ko.lproj/app.json b/Localization/StringsConvertor/input/ko.lproj/app.json index da1561cad..3d63b4368 100644 --- a/Localization/StringsConvertor/input/ko.lproj/app.json +++ b/Localization/StringsConvertor/input/ko.lproj/app.json @@ -137,10 +137,10 @@ "closed": "마감" }, "meta_entity": { - "url": "Link: %s", - "hashtag": "Hashtag: %s", - "mention": "Show Profile: %s", - "email": "Email address: %s" + "url": "링크: %s", + "hashtag": "해시태그: %s", + "mention": "프로필 보기: %s", + "email": "이메일 주소: %s" }, "actions": { "reply": "답글", From 0307bcd70b9878b2ef56b7fcfe406654c0f2583b Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sat, 12 Nov 2022 08:45:45 +0100 Subject: [PATCH 150/598] New translations app.json (Korean) --- Localization/StringsConvertor/input/ko.lproj/app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/ko.lproj/app.json b/Localization/StringsConvertor/input/ko.lproj/app.json index 3d63b4368..f67c7de5b 100644 --- a/Localization/StringsConvertor/input/ko.lproj/app.json +++ b/Localization/StringsConvertor/input/ko.lproj/app.json @@ -129,7 +129,7 @@ "show_post": "게시물 보기", "show_user_profile": "사용자 프로필 보기", "content_warning": "열람 주의", - "sensitive_content": "Sensitive Content", + "sensitive_content": "민감한 콘텐츠", "media_content_warning": "아무 곳이나 눌러서 보기", "tap_to_reveal": "눌러서 확인", "poll": { From 23902a44d60fc5b1a0c7f26dc80874149ddf9dd8 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sat, 12 Nov 2022 09:42:48 +0100 Subject: [PATCH 151/598] New translations app.json (Czech) --- .../StringsConvertor/input/cs.lproj/app.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Localization/StringsConvertor/input/cs.lproj/app.json b/Localization/StringsConvertor/input/cs.lproj/app.json index 9ec6c0d56..97d210179 100644 --- a/Localization/StringsConvertor/input/cs.lproj/app.json +++ b/Localization/StringsConvertor/input/cs.lproj/app.json @@ -125,7 +125,7 @@ }, "status": { "user_reblogged": "%s reblogged", - "user_replied_to": "Replied to %s", + "user_replied_to": "Odpověděl %s", "show_post": "Zobrazit příspěvek", "show_user_profile": "Zobrazit profil uživatele", "content_warning": "Varování o obsahu", @@ -202,12 +202,12 @@ }, "header": { "no_status_found": "Nebyl nalezen žádný příspěvek", - "blocking_warning": "You can’t view this user's profile\nuntil you unblock them.\nYour profile looks like this to them.", - "user_blocking_warning": "You can’t view %s’s profile\nuntil you unblock them.\nYour profile looks like this to them.", + "blocking_warning": "Nemůžete zobrazit profil tohoto uživatele, dokud ho neodblokujete.\nVáš profil pro něj vypadá takto.", + "user_blocking_warning": "Nemůžete zobrazit profil %s, dokud ho neodblokujete.\nVáš profil pro něj vypadá takto.", "blocked_warning": "Nemůžeš zobrazit profil tohoto uživatele, dokud tě neodblokují.", - "user_blocked_warning": "You can’t view %s’s profile\nuntil they unblock you.", + "user_blocked_warning": "Nemůžete zobrazit profil %s, dokud vás neodblokuje.", "suspended_warning": "Tento uživatel byl pozastaven.", - "user_suspended_warning": "%s’s account has been suspended." + "user_suspended_warning": "Účet %s byl pozastaven." } } } @@ -640,7 +640,7 @@ "send": "Odeslat hlášení", "skip_to_send": "Odeslat bez komentáře", "text_placeholder": "Napište nebo vložte další komentáře", - "reported": "REPORTED", + "reported": "NAHLÁŠEN", "step_one": { "step_1_of_4": "Krok 1 ze 4", "whats_wrong_with_this_post": "Co je na tomto příspěvku špatně?", @@ -680,7 +680,7 @@ "mute_user": "Skrýt %s", "you_wont_see_their_posts_or_reblogs_in_your_home_feed_they_wont_know_they_ve_been_muted": "Neuvidíte jejich příspěvky nebo boostnutí v domovském kanálu. Nebudou vědět, že jsou skrytí.", "block_user": "Blokovat %s", - "they_will_no_longer_be_able_to_follow_or_see_your_posts_but_they_can_see_if_theyve_been_blocked": "They will no longer be able to follow or see your posts, but they can see if they’ve been blocked.", + "they_will_no_longer_be_able_to_follow_or_see_your_posts_but_they_can_see_if_theyve_been_blocked": "Už nebudou moci sledovat nebo vidět vaše příspěvky, ale mohou vidět, zda byly zablokovány.", "while_we_review_this_you_can_take_action_against_user": "Zatímco to posuzujeme, můžete podniknout kroky proti %s" } }, From e8fe7852cf9e15480c6fdbb93b28232fcde0c018 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sat, 12 Nov 2022 09:42:49 +0100 Subject: [PATCH 152/598] New translations app.json (Kurmanji (Kurdish)) --- .../StringsConvertor/input/kmr.lproj/app.json | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/Localization/StringsConvertor/input/kmr.lproj/app.json b/Localization/StringsConvertor/input/kmr.lproj/app.json index 2b6c4a491..bfe22d89a 100644 --- a/Localization/StringsConvertor/input/kmr.lproj/app.json +++ b/Localization/StringsConvertor/input/kmr.lproj/app.json @@ -137,10 +137,10 @@ "closed": "Girtî" }, "meta_entity": { - "url": "Link: %s", - "hashtag": "Hashtag: %s", - "mention": "Show Profile: %s", - "email": "Email address: %s" + "url": "Girêdan: %s", + "hashtag": "Hashtagê: %s", + "mention": "Profîlê nîşan bide: %s", + "email": "Navnîşanên e-nameyê: %s" }, "actions": { "reply": "Bersivê bide", @@ -187,8 +187,8 @@ "unmute_user": "%s bêdeng neke", "muted": "Bêdengkirî", "edit_info": "Zanyariyan serrast bike", - "show_reblogs": "Show Reblogs", - "hide_reblogs": "Hide Reblogs" + "show_reblogs": "Bilindkirinan nîşan bide", + "hide_reblogs": "Bilindkirinan veşêre" }, "timeline": { "filtered": "Parzûnkirî", @@ -465,12 +465,12 @@ "message": "Ji bo rakirina astengkirinê %s bipejirîne" }, "confirm_show_reblogs": { - "title": "Show Reblogs", - "message": "Confirm to show reblogs" + "title": "Bilindkirinan nîşan bide", + "message": "Bo nîşandana bilindkirinan bipejirîne" }, "confirm_hide_reblogs": { - "title": "Hide Reblogs", - "message": "Confirm to hide reblogs" + "title": "Bilindkirinan veşêre", + "message": "Bo veşartina bilindkirinan bipejirîne" } }, "accessibility": { @@ -702,7 +702,7 @@ "accessibility_hint": "Du caran bitikîne da ku çarçoveyahilpekok ji holê rakî" }, "bookmark": { - "title": "Bookmarks" + "title": "Şûnpel" } } } From 71e5f6269f5686e6309b7e109698dbc9ab207a92 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sat, 12 Nov 2022 09:42:50 +0100 Subject: [PATCH 153/598] New translations Localizable.stringsdict (Czech) --- .../input/cs.lproj/Localizable.stringsdict | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Localization/StringsConvertor/input/cs.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/cs.lproj/Localizable.stringsdict index cdf35477e..d275025ad 100644 --- a/Localization/StringsConvertor/input/cs.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/cs.lproj/Localizable.stringsdict @@ -108,13 +108,13 @@ NSStringFormatValueTypeKey ld one - post + příspěvek few - posts + příspěvky many - posts + příspěvků other - posts + příspěvků plural.count.media From 7254d0e0b0a1e9ebf4b8555c747c77547db17553 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sat, 12 Nov 2022 09:42:51 +0100 Subject: [PATCH 154/598] New translations Intents.strings (Czech) --- .../StringsConvertor/Intents/input/cs.lproj/Intents.strings | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/Intents/input/cs.lproj/Intents.strings b/Localization/StringsConvertor/Intents/input/cs.lproj/Intents.strings index accbdd58d..6f29830a1 100644 --- a/Localization/StringsConvertor/Intents/input/cs.lproj/Intents.strings +++ b/Localization/StringsConvertor/Intents/input/cs.lproj/Intents.strings @@ -38,7 +38,7 @@ "ehFLjY" = "Pouze sledující"; -"gfePDu" = "Posting failed. ${failureReason}"; +"gfePDu" = "Odeslání se nezdařilo. ${failureReason}"; "k7dbKQ" = "Příspěvek byl úspěšně odeslán."; From 575e1c2fd831e32e52a3d1093a67570eff63aa22 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sat, 12 Nov 2022 09:42:52 +0100 Subject: [PATCH 155/598] New translations Intents.stringsdict (Czech) --- .../StringsConvertor/Intents/input/cs.lproj/Intents.stringsdict | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/Intents/input/cs.lproj/Intents.stringsdict b/Localization/StringsConvertor/Intents/input/cs.lproj/Intents.stringsdict index a739f778f..deea8db12 100644 --- a/Localization/StringsConvertor/Intents/input/cs.lproj/Intents.stringsdict +++ b/Localization/StringsConvertor/Intents/input/cs.lproj/Intents.stringsdict @@ -5,7 +5,7 @@ There are ${count} options matching ‘${content}’. - 2 NSStringLocalizedFormatKey - There are %#@count_option@ matching ‘${content}’. + Existuje %#@count_option@ odpovídající „${content}“. count_option NSStringFormatSpecTypeKey From 197e180ccdab95e834a9616e6bcb56541f76e085 Mon Sep 17 00:00:00 2001 From: David Godfrey Date: Sat, 12 Nov 2022 14:42:00 +0000 Subject: [PATCH 156/598] Refactor verified alert to use edit menu --- Localization/app.json | 8 +-- .../Profile/ProfileFieldSection.swift | 7 +- .../Cell/ProfileFieldCollectionViewCell.swift | 64 +++++++++++++++++-- .../About/ProfileAboutViewController.swift | 16 ----- .../Scene/Profile/ProfileViewController.swift | 16 ----- .../Generated/Strings.swift | 18 +++--- .../Resources/en.lproj/Localizable.strings | 4 +- 7 files changed, 78 insertions(+), 55 deletions(-) diff --git a/Localization/app.json b/Localization/app.json index 6ca2cbea9..dfb204d8c 100644 --- a/Localization/app.json +++ b/Localization/app.json @@ -51,10 +51,6 @@ "clean_cache": { "title": "Clean Cache", "message": "Successfully cleaned %s cache." - }, - "verified": { - "title": "Verified", - "message": "Ownership of this link was checked on %s" } }, "controls": { @@ -442,6 +438,10 @@ "placeholder": { "label": "Label", "content": "Content" + }, + "verified": { + "short": "Verified at %s", + "long": "Ownership of this link was checked on %s" } }, "segmented_control": { diff --git a/Mastodon/Diffiable/Profile/ProfileFieldSection.swift b/Mastodon/Diffiable/Profile/ProfileFieldSection.swift index 01e8d8a0a..6e57e6af9 100644 --- a/Mastodon/Diffiable/Profile/ProfileFieldSection.swift +++ b/Mastodon/Diffiable/Profile/ProfileFieldSection.swift @@ -67,14 +67,17 @@ extension ProfileFieldSection { } cell.backgroundConfiguration = backgroundConfiguration - // set checkmark + // set checkmark and edit menu label cell.checkmark.isHidden = true + cell.checkmarkPopoverString = nil if let verifiedAt = field.verifiedAt.value { cell.checkmark.isHidden = false let formatter = DateFormatter() formatter.dateStyle = .medium formatter.timeStyle = .short - cell.checkmark.accessibilityLabel = L10n.Common.Alerts.Verified.message(formatter.string(from: verifiedAt)) + let dateString = formatter.string(from: verifiedAt) + cell.checkmark.accessibilityLabel = L10n.Scene.Profile.Fields.Verified.long(dateString) + cell.checkmarkPopoverString = L10n.Scene.Profile.Fields.Verified.short(dateString) } cell.delegate = configuration.profileFieldCollectionViewCellDelegate diff --git a/Mastodon/Scene/Profile/About/Cell/ProfileFieldCollectionViewCell.swift b/Mastodon/Scene/Profile/About/Cell/ProfileFieldCollectionViewCell.swift index 2d33b2afe..1ed76a485 100644 --- a/Mastodon/Scene/Profile/About/Cell/ProfileFieldCollectionViewCell.swift +++ b/Mastodon/Scene/Profile/About/Cell/ProfileFieldCollectionViewCell.swift @@ -14,11 +14,6 @@ import MastodonLocalization protocol ProfileFieldCollectionViewCellDelegate: AnyObject { func profileFieldCollectionViewCell(_ cell: ProfileFieldCollectionViewCell, metaLebel: MetaLabel, didSelectMeta meta: Meta) - func profileFieldCollectionViewCell(_ cell: ProfileFieldCollectionViewCell, didTapAction: ProfileFieldCollectionViewCellAction) -} - -enum ProfileFieldCollectionViewCellAction { - case Checkmark } final class ProfileFieldCollectionViewCell: UICollectionViewCell { @@ -32,7 +27,14 @@ final class ProfileFieldCollectionViewCell: UICollectionViewCell { let valueMetaLabel = MetaLabel(style: .profileFieldValue) let checkmark = UIImageView(image: Asset.Editing.checkmark.image.withRenderingMode(.alwaysTemplate)) + var checkmarkPopoverString: String? = nil; let tapGesture = UITapGestureRecognizer(); + private var _editMenuInteraction: Any? = nil + @available(iOS 16, *) + fileprivate var editMenuInteraction: UIEditMenuInteraction { + _editMenuInteraction = _editMenuInteraction ?? UIEditMenuInteraction(delegate: self) + return _editMenuInteraction as! UIEditMenuInteraction + } override func prepareForReuse() { super.prepareForReuse() @@ -62,6 +64,9 @@ extension ProfileFieldCollectionViewCell { tapGesture.addTarget(self, action: #selector(ProfileFieldCollectionViewCell.didTapCheckmark(_:))) checkmark.addGestureRecognizer(tapGesture) checkmark.isUserInteractionEnabled = true + if #available(iOS 16, *) { + checkmark.addInteraction(editMenuInteraction) + } // containerStackView: V - [ metaContainer | plainContainer ] let containerStackView = UIStackView() @@ -99,10 +104,42 @@ extension ProfileFieldCollectionViewCell { valueMetaLabel.linkDelegate = self } - @objc public func didTapCheckmark(_: UITapGestureRecognizer) { - delegate?.profileFieldCollectionViewCell(self, didTapAction: .Checkmark) + @objc public func didTapCheckmark(_ recognizer: UITapGestureRecognizer) { + if #available(iOS 16, *) { + editMenuInteraction.presentEditMenu(with: UIEditMenuConfiguration(identifier: nil, sourcePoint: recognizer.location(in: checkmark))) + } else { + guard let editMenuLabel = checkmarkPopoverString else { return } + + self.isUserInteractionEnabled = true + self.becomeFirstResponder() + + UIMenuController.shared.menuItems = [ + UIMenuItem( + title: editMenuLabel, + action: #selector(dismissVerifiedMenu) + ) + ] + UIMenuController.shared.showMenu(from: checkmark, rect: checkmark.bounds) + } + } +} + +// UIMenuController boilerplate +@available(iOS, deprecated: 16, message: "Can be removed when target version is >=16 -- boilerplate to maintain compatibility with UIMenuController") +extension ProfileFieldCollectionViewCell { + override var canBecomeFirstResponder: Bool { true } + + override func canPerformAction(_ action: Selector, withSender sender: Any?) -> Bool { + if action == #selector(dismissVerifiedMenu) { + return true + } + + return super.canPerformAction(action, withSender: sender) } + @objc public func dismissVerifiedMenu() { + UIMenuController.shared.hideMenu() + } } // MARK: - MetaLabelDelegate @@ -112,3 +149,16 @@ extension ProfileFieldCollectionViewCell: MetaLabelDelegate { delegate?.profileFieldCollectionViewCell(self, metaLebel: metaLabel, didSelectMeta: meta) } } + +// MARK: UIEditMenuInteractionDelegate +@available(iOS 16.0, *) +extension ProfileFieldCollectionViewCell: UIEditMenuInteractionDelegate { + func editMenuInteraction(_ interaction: UIEditMenuInteraction, menuFor configuration: UIEditMenuConfiguration, suggestedActions: [UIMenuElement]) -> UIMenu? { + guard let editMenuLabel = checkmarkPopoverString else { return UIMenu(children: []) } + return UIMenu(children: [UIAction(title: editMenuLabel) { _ in return }]) + } + + func editMenuInteraction(_ interaction: UIEditMenuInteraction, targetRectFor configuration: UIEditMenuConfiguration) -> CGRect { + return checkmark.frame + } +} diff --git a/Mastodon/Scene/Profile/About/ProfileAboutViewController.swift b/Mastodon/Scene/Profile/About/ProfileAboutViewController.swift index bf77c05b9..eb1e6b39c 100644 --- a/Mastodon/Scene/Profile/About/ProfileAboutViewController.swift +++ b/Mastodon/Scene/Profile/About/ProfileAboutViewController.swift @@ -16,7 +16,6 @@ import MastodonCore protocol ProfileAboutViewControllerDelegate: AnyObject { func profileAboutViewController(_ viewController: ProfileAboutViewController, profileFieldCollectionViewCell: ProfileFieldCollectionViewCell, metaLabel: MetaLabel, didSelectMeta meta: Meta) - func profileAboutViewController(_ viewController: ProfileAboutViewController, didTapCheckmarkFor field: ProfileFieldItem.FieldValue) } final class ProfileAboutViewController: UIViewController { @@ -153,21 +152,6 @@ extension ProfileAboutViewController: ProfileFieldCollectionViewCellDelegate { func profileFieldCollectionViewCell(_ cell: ProfileFieldCollectionViewCell, metaLebel: MetaLabel, didSelectMeta meta: Meta) { delegate?.profileAboutViewController(self, profileFieldCollectionViewCell: cell, metaLabel: metaLebel, didSelectMeta: meta) } - - func profileFieldCollectionViewCell(_ cell: ProfileFieldCollectionViewCell, didTapAction action: ProfileFieldCollectionViewCellAction) { - guard let diffableDataSource = viewModel.diffableDataSource else { return } - guard let indexPath = collectionView.indexPath(for: cell) else { return } - guard let item = diffableDataSource.itemIdentifier(for: indexPath) else { return } - - switch item { - case .field(let field): - delegate?.profileAboutViewController(self, didTapCheckmarkFor: field) - case .addEntry: fallthrough - case .editField: fallthrough - case .noResult: - break - } - } } // MARK: - ProfileFieldEditCollectionViewCellDelegate diff --git a/Mastodon/Scene/Profile/ProfileViewController.swift b/Mastodon/Scene/Profile/ProfileViewController.swift index 1faf291f3..3ce1fd33a 100644 --- a/Mastodon/Scene/Profile/ProfileViewController.swift +++ b/Mastodon/Scene/Profile/ProfileViewController.swift @@ -854,22 +854,6 @@ extension ProfileViewController: ProfileAboutViewControllerDelegate { ) { handleMetaPress(meta) } - - func profileAboutViewController(_ viewController: ProfileAboutViewController, didTapCheckmarkFor field: ProfileFieldItem.FieldValue) { - guard let verifiedAt = field.verifiedAt.value else { - return - } - - let formatter = DateFormatter() - formatter.dateStyle = .medium - formatter.timeStyle = .short - let alert = UIAlertController(title: L10n.Common.Alerts.Verified.title, message: L10n.Common.Alerts.Verified.message(formatter.string(from: verifiedAt)), preferredStyle: .alert) - alert.addAction(UIAlertAction(title: L10n.Common.Controls.Actions.ok, style: .default) { _ in - alert.dismiss(animated: true) - }) - - self.present(alert, animated: true) - } } // MARK: - MastodonMenuDelegate diff --git a/MastodonSDK/Sources/MastodonLocalization/Generated/Strings.swift b/MastodonSDK/Sources/MastodonLocalization/Generated/Strings.swift index fce4d9733..794cd182e 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Generated/Strings.swift +++ b/MastodonSDK/Sources/MastodonLocalization/Generated/Strings.swift @@ -87,14 +87,6 @@ public enum L10n { /// Sign Up Failure public static let title = L10n.tr("Localizable", "Common.Alerts.SignUpFailure.Title") } - public enum Verified { - /// Ownership of this link was checked on %s - public static func message(_ p1: UnsafePointer) -> String { - return L10n.tr("Localizable", "Common.Alerts.Verified.Message", p1) - } - /// Verified - public static let title = L10n.tr("Localizable", "Common.Alerts.Verified.Title") - } public enum VoteFailure { /// The poll has ended public static let pollEnded = L10n.tr("Localizable", "Common.Alerts.VoteFailure.PollEnded") @@ -721,6 +713,16 @@ public enum L10n { /// Label public static let label = L10n.tr("Localizable", "Scene.Profile.Fields.Placeholder.Label") } + public enum Verified { + /// Ownership of this link was checked on %s + public static func long(_ p1: UnsafePointer) -> String { + return L10n.tr("Localizable", "Scene.Profile.Fields.Verified.Long", p1) + } + /// Verified at %s + public static func short(_ p1: UnsafePointer) -> String { + return L10n.tr("Localizable", "Scene.Profile.Fields.Verified.Short", p1) + } + } } public enum Header { /// Follows You diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/en.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/en.lproj/Localizable.strings index fe9566b14..2c9b71107 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/en.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/en.lproj/Localizable.strings @@ -22,8 +22,6 @@ Please check your internet connection."; "Common.Alerts.SignOut.Message" = "Are you sure you want to sign out?"; "Common.Alerts.SignOut.Title" = "Sign Out"; "Common.Alerts.SignUpFailure.Title" = "Sign Up Failure"; -"Common.Alerts.Verified.Title" = "Verified"; -"Common.Alerts.Verified.Message" = "Ownership of this link was checked on %s"; "Common.Alerts.VoteFailure.PollEnded" = "The poll has ended"; "Common.Alerts.VoteFailure.Title" = "Vote Failure"; "Common.Controls.Actions.Add" = "Add"; @@ -259,6 +257,8 @@ uploaded to Mastodon."; "Scene.Profile.Fields.AddRow" = "Add Row"; "Scene.Profile.Fields.Placeholder.Content" = "Content"; "Scene.Profile.Fields.Placeholder.Label" = "Label"; +"Scene.Profile.Fields.Verified.Short" = "Verified at %s"; +"Scene.Profile.Fields.Verified.Long" = "Ownership of this link was checked on %s"; "Scene.Profile.Header.FollowsYou" = "Follows You"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Confirm to block %@"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Block Account"; From 5fbba311e5b1a75da5eb03eaa36e7ec289f4f1eb Mon Sep 17 00:00:00 2001 From: woxtu Date: Sun, 13 Nov 2022 00:46:15 +0900 Subject: [PATCH 157/598] Remove an unused dependency --- Podfile | 1 - Podfile.lock | 6 +----- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/Podfile b/Podfile index 28757d528..596aec62b 100644 --- a/Podfile +++ b/Podfile @@ -8,7 +8,6 @@ target 'Mastodon' do # Pods for Mastodon # UI - pod 'UITextField+Shake', '~> 1.2' pod 'XLPagerTabStrip', '~> 9.0.0' # misc diff --git a/Podfile.lock b/Podfile.lock index 12680db21..e8785b512 100644 --- a/Podfile.lock +++ b/Podfile.lock @@ -6,7 +6,6 @@ PODS: - Sourcery/CLI-Only (= 1.6.1) - Sourcery/CLI-Only (1.6.1) - SwiftGen (6.4.0) - - "UITextField+Shake (1.2.1)" - XLPagerTabStrip (9.0.0) DEPENDENCIES: @@ -15,7 +14,6 @@ DEPENDENCIES: - Kanna (~> 5.2.2) - Sourcery (~> 1.6.1) - SwiftGen (~> 6.4.0) - - "UITextField+Shake (~> 1.2)" - XLPagerTabStrip (~> 9.0.0) SPEC REPOS: @@ -25,7 +23,6 @@ SPEC REPOS: - Kanna - Sourcery - SwiftGen - - "UITextField+Shake" - XLPagerTabStrip SPEC CHECKSUMS: @@ -34,9 +31,8 @@ SPEC CHECKSUMS: Kanna: 01cfbddc127f5ff0963692f285fcbc8a9d62d234 Sourcery: f3759f803bd0739f74fc92a4341eed0473ce61ac SwiftGen: 67860cc7c3cfc2ed25b9b74cfd55495fc89f9108 - "UITextField+Shake": 298ac5a0f239d731bdab999b19b628c956ca0ac3 XLPagerTabStrip: 61c57fd61f611ee5f01ff1495ad6fbee8bf496c5 -PODFILE CHECKSUM: 8b15fb6d4e801b7a7e7761a2e2fe40a89b1da4ff +PODFILE CHECKSUM: a60ecee06525582c010e270ac7a17024e441a0da COCOAPODS: 1.11.3 From a1919a19c97cf84d7819fe552289a5662a820a31 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sat, 12 Nov 2022 20:13:06 +0100 Subject: [PATCH 158/598] New translations app.json (German) --- Localization/StringsConvertor/input/de.lproj/app.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Localization/StringsConvertor/input/de.lproj/app.json b/Localization/StringsConvertor/input/de.lproj/app.json index 43fa4bc55..013efb393 100644 --- a/Localization/StringsConvertor/input/de.lproj/app.json +++ b/Localization/StringsConvertor/input/de.lproj/app.json @@ -431,7 +431,7 @@ "dashboard": { "posts": "Beiträge", "following": "Gefolgte", - "followers": "Folger" + "followers": "Folgende" }, "fields": { "add_row": "Zeile hinzufügen", @@ -486,7 +486,7 @@ }, "following": { "title": "Folgende", - "footer": "Wem das Konto folgt wird von anderen Servern werden nicht angezeigt." + "footer": "Gefolgte auf anderen Servern werden nicht angezeigt." }, "familiarFollowers": { "title": "Follower, die dir bekannt vorkommen", @@ -596,7 +596,7 @@ "mentions": "Mich erwähnt", "trigger": { "anyone": "jeder", - "follower": "ein Folger", + "follower": "ein Folgender", "follow": "ein von mir Gefolgter", "noone": "niemand", "title": "Benachrichtige mich, wenn" From a0e544bb90286caf0db187905ef7a4fcd939faef Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sat, 12 Nov 2022 20:13:07 +0100 Subject: [PATCH 159/598] New translations ios-infoPlist.json (German) --- .../StringsConvertor/input/de.lproj/ios-infoPlist.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Localization/StringsConvertor/input/de.lproj/ios-infoPlist.json b/Localization/StringsConvertor/input/de.lproj/ios-infoPlist.json index fe8fe1c1a..a571fba1c 100644 --- a/Localization/StringsConvertor/input/de.lproj/ios-infoPlist.json +++ b/Localization/StringsConvertor/input/de.lproj/ios-infoPlist.json @@ -1,6 +1,6 @@ { - "NSCameraUsageDescription": "Verwendet um Fotos für neue Beiträge aufzunehmen", - "NSPhotoLibraryAddUsageDescription": "Verwendet um Fotos zu speichern", + "NSCameraUsageDescription": "Wird verwendet, um Fotos für neue Beiträge aufzunehmen", + "NSPhotoLibraryAddUsageDescription": "Wird verwendet, um Foto in der Foto-Mediathek zu speichern", "NewPostShortcutItemTitle": "Neuer Beitrag", - "SearchShortcutItemTitle": "Suche" + "SearchShortcutItemTitle": "Suchen" } From ebb0afd8bc47f2ce3ce55427b212320190b9c139 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sat, 12 Nov 2022 21:13:21 +0100 Subject: [PATCH 160/598] New translations Localizable.stringsdict (Czech) --- .../input/cs.lproj/Localizable.stringsdict | 46 +++++++++---------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/Localization/StringsConvertor/input/cs.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/cs.lproj/Localizable.stringsdict index d275025ad..21832870a 100644 --- a/Localization/StringsConvertor/input/cs.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/cs.lproj/Localizable.stringsdict @@ -13,19 +13,19 @@ NSStringFormatValueTypeKey ld one - 1 unread notification + 1 nepřečtené oznámení few - %ld unread notification + %ld nepřečtené oznámení many - %ld unread notification + %ld nepřečtených oznámení other - %ld unread notification + %ld nepřečtených oznámení a11y.plural.count.input_limit_exceeds NSStringLocalizedFormatKey - Input limit exceeds %#@character_count@ + Vstupní limit přesahuje %#@character_count@ character_count NSStringFormatSpecTypeKey @@ -33,19 +33,19 @@ NSStringFormatValueTypeKey ld one - 1 character + 1 znak few - %ld characters + %ld znaky many - %ld characters + %ld znaků other - %ld characters + %ld znaků a11y.plural.count.input_limit_remains NSStringLocalizedFormatKey - Input limit remains %#@character_count@ + Vstupní limit zůstává %#@character_count@ character_count NSStringFormatSpecTypeKey @@ -53,13 +53,13 @@ NSStringFormatValueTypeKey ld one - 1 character + 1 znak few - %ld characters + %ld znaky many - %ld characters + %ld znaků other - %ld characters + %ld znaků plural.count.followed_by_and_mutual @@ -128,13 +128,13 @@ NSStringFormatValueTypeKey ld one - 1 media + 1 médium few - %ld media + %ld média many - %ld media + %ld médií other - %ld media + %ld médií plural.count.post @@ -148,13 +148,13 @@ NSStringFormatValueTypeKey ld one - 1 post + 1 příspěvek few - %ld posts + %ld příspěvky many - %ld posts + %ld příspěvků other - %ld posts + %ld příspěvků plural.count.favorite @@ -168,7 +168,7 @@ NSStringFormatValueTypeKey ld one - 1 favorite + 1 oblíbený few %ld favorites many From 5d9e2d217e1294b274b7bc4fb32020246b30337f Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sat, 12 Nov 2022 22:22:23 +0100 Subject: [PATCH 161/598] New translations app.json (German) --- Localization/StringsConvertor/input/de.lproj/app.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Localization/StringsConvertor/input/de.lproj/app.json b/Localization/StringsConvertor/input/de.lproj/app.json index 013efb393..aa5ea3b1b 100644 --- a/Localization/StringsConvertor/input/de.lproj/app.json +++ b/Localization/StringsConvertor/input/de.lproj/app.json @@ -482,11 +482,11 @@ }, "follower": { "title": "Follower", - "footer": "Follower von anderen Servern werden nicht angezeigt." + "footer": "Folger, die nicht auf deinem Server registriert sind, werden nicht angezeigt." }, "following": { "title": "Folgende", - "footer": "Gefolgte auf anderen Servern werden nicht angezeigt." + "footer": "Gefolgte, die nicht auf deinem Server registriert sind, werden nicht angezeigt." }, "familiarFollowers": { "title": "Follower, die dir bekannt vorkommen", From daedd2b5be132c7d035f27d598908ac9c421270d Mon Sep 17 00:00:00 2001 From: Jeff Verkoeyen Date: Sat, 12 Nov 2022 13:41:01 -0800 Subject: [PATCH 162/598] [Welcome] Allow buttons to grow with Dynamic Type. The buttons now have a minimum height rather than a constant height. Also made a couple minor improvements / bug fixes: - Both buttons now react to Dynamic Type settings changes (enabled `adjustsFontForContentSizeCategory`). - A layout pass is now enforced in traitCollectionDidChange to ensure that setupButtonShadowView is using the right bounds. - signUpButtonShadowView now uses signUpButtonShadowView's bounds. --- .../Onboarding/Welcome/WelcomeViewController.swift | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/Mastodon/Scene/Onboarding/Welcome/WelcomeViewController.swift b/Mastodon/Scene/Onboarding/Welcome/WelcomeViewController.swift index a2b8df83a..225f2f9ef 100644 --- a/Mastodon/Scene/Onboarding/Welcome/WelcomeViewController.swift +++ b/Mastodon/Scene/Onboarding/Welcome/WelcomeViewController.swift @@ -51,6 +51,7 @@ final class WelcomeViewController: UIViewController, NeedsDependency { private(set) lazy var signUpButton: PrimaryActionButton = { let button = PrimaryActionButton() button.adjustsBackgroundImageWhenUserInterfaceStyleChanges = false + button.titleLabel?.adjustsFontForContentSizeCategory = true button.titleLabel?.font = UIFontMetrics(forTextStyle: .headline).scaledFont(for: .systemFont(ofSize: 17, weight: .semibold)) button.setTitle(L10n.Common.Controls.Actions.signUp, for: .normal) let backgroundImageColor: UIColor = .white @@ -65,6 +66,7 @@ final class WelcomeViewController: UIViewController, NeedsDependency { private(set) lazy var signInButton: PrimaryActionButton = { let button = PrimaryActionButton() button.adjustsBackgroundImageWhenUserInterfaceStyleChanges = false + button.titleLabel?.adjustsFontForContentSizeCategory = true button.titleLabel?.font = UIFontMetrics(forTextStyle: .headline).scaledFont(for: .systemFont(ofSize: 17, weight: .semibold)) button.setTitle(L10n.Scene.Welcome.logIn, for: .normal) let backgroundImageColor = Asset.Scene.Welcome.signInButtonBackground.color @@ -113,12 +115,12 @@ extension WelcomeViewController { signUpButton.translatesAutoresizingMaskIntoConstraints = false buttonContainer.addArrangedSubview(signUpButton) NSLayoutConstraint.activate([ - signUpButton.heightAnchor.constraint(equalToConstant: WelcomeViewController.actionButtonHeight).priority(.required - 1), + signUpButton.heightAnchor.constraint(greaterThanOrEqualToConstant: WelcomeViewController.actionButtonHeight).priority(.required - 1), ]) signInButton.translatesAutoresizingMaskIntoConstraints = false buttonContainer.addArrangedSubview(signInButton) NSLayoutConstraint.activate([ - signInButton.heightAnchor.constraint(equalToConstant: WelcomeViewController.actionButtonHeight).priority(.required - 1), + signInButton.heightAnchor.constraint(greaterThanOrEqualToConstant: WelcomeViewController.actionButtonHeight).priority(.required - 1), ]) signUpButtonShadowView.translatesAutoresizingMaskIntoConstraints = false @@ -172,7 +174,9 @@ extension WelcomeViewController { override func traitCollectionDidChange(_ previousTraitCollection: UITraitCollection?) { super.traitCollectionDidChange(previousTraitCollection) - + + view.layoutIfNeeded() + setupIllustrationLayout() setupButtonShadowView() } @@ -189,7 +193,7 @@ extension WelcomeViewController { y: 1, blur: 2, spread: 0, - roundedRect: signInButtonShadowView.bounds, + roundedRect: signUpButtonShadowView.bounds, byRoundingCorners: .allCorners, cornerRadii: CGSize(width: 10, height: 10) ) From 337e221c206322a81346ef94c8dc4999cad18d0e Mon Sep 17 00:00:00 2001 From: Jeff Verkoeyen Date: Sat, 12 Nov 2022 19:36:22 -0800 Subject: [PATCH 163/598] Resolve build failure when running tests from Xcode. The build failure was: ``` MastodonTests/MastodonTests.swift:39:27: error build: Cannot find 'AppContext' in scope ``` --- MastodonTests/MastodonTests.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/MastodonTests/MastodonTests.swift b/MastodonTests/MastodonTests.swift index 7264dde64..ec572fd92 100644 --- a/MastodonTests/MastodonTests.swift +++ b/MastodonTests/MastodonTests.swift @@ -7,6 +7,7 @@ import XCTest @testable import Mastodon +import MastodonCore @MainActor class MastodonTests: XCTestCase { From 87df13987a6970f6b7d4a29e5445082141e25e79 Mon Sep 17 00:00:00 2001 From: Jeff Verkoeyen Date: Sat, 12 Nov 2022 20:30:57 -0800 Subject: [PATCH 164/598] Ensure that the welcome buttons have adequate padding at larger Dynamic Type configurations. --- .../Onboarding/Share/OnboardingViewControllerAppearance.swift | 4 ++++ Mastodon/Scene/Onboarding/Welcome/WelcomeViewController.swift | 2 ++ 2 files changed, 6 insertions(+) diff --git a/Mastodon/Scene/Onboarding/Share/OnboardingViewControllerAppearance.swift b/Mastodon/Scene/Onboarding/Share/OnboardingViewControllerAppearance.swift index ba1eecfc5..ee01b99e8 100644 --- a/Mastodon/Scene/Onboarding/Share/OnboardingViewControllerAppearance.swift +++ b/Mastodon/Scene/Onboarding/Share/OnboardingViewControllerAppearance.swift @@ -22,6 +22,10 @@ extension OnboardingViewControllerAppearance { static var actionButtonMarginExtend: CGFloat { return 80 } static var viewBottomPaddingHeight: CGFloat { return 11 } static var viewBottomPaddingHeightExtend: CGFloat { return 22 } + + // Typically assigned to the button's contentEdgeInsets. Ensures space around content, even when + // content is large due to Dynamic Type. + static var actionButtonPadding: UIEdgeInsets { return UIEdgeInsets(top: 8, left: 8, bottom: 8, right: 8) } static var largeTitleFont: UIFont { return UIFontMetrics(forTextStyle: .largeTitle).scaledFont(for: .systemFont(ofSize: 28, weight: .bold)) diff --git a/Mastodon/Scene/Onboarding/Welcome/WelcomeViewController.swift b/Mastodon/Scene/Onboarding/Welcome/WelcomeViewController.swift index 225f2f9ef..a7703bfaa 100644 --- a/Mastodon/Scene/Onboarding/Welcome/WelcomeViewController.swift +++ b/Mastodon/Scene/Onboarding/Welcome/WelcomeViewController.swift @@ -51,6 +51,7 @@ final class WelcomeViewController: UIViewController, NeedsDependency { private(set) lazy var signUpButton: PrimaryActionButton = { let button = PrimaryActionButton() button.adjustsBackgroundImageWhenUserInterfaceStyleChanges = false + button.contentEdgeInsets = WelcomeViewController.actionButtonPadding button.titleLabel?.adjustsFontForContentSizeCategory = true button.titleLabel?.font = UIFontMetrics(forTextStyle: .headline).scaledFont(for: .systemFont(ofSize: 17, weight: .semibold)) button.setTitle(L10n.Common.Controls.Actions.signUp, for: .normal) @@ -66,6 +67,7 @@ final class WelcomeViewController: UIViewController, NeedsDependency { private(set) lazy var signInButton: PrimaryActionButton = { let button = PrimaryActionButton() button.adjustsBackgroundImageWhenUserInterfaceStyleChanges = false + button.contentEdgeInsets = WelcomeViewController.actionButtonPadding button.titleLabel?.adjustsFontForContentSizeCategory = true button.titleLabel?.font = UIFontMetrics(forTextStyle: .headline).scaledFont(for: .systemFont(ofSize: 17, weight: .semibold)) button.setTitle(L10n.Scene.Welcome.logIn, for: .normal) From 0f495e17dd25747a4f3b7967e2ddf30ae3790577 Mon Sep 17 00:00:00 2001 From: Jeff Verkoeyen Date: Sat, 12 Nov 2022 20:22:57 -0800 Subject: [PATCH 165/598] Adjust the padding and layout of the NavigationActionView. --- .../Share/NavigationActionView.swift | 21 ++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/Mastodon/Scene/Onboarding/Share/NavigationActionView.swift b/Mastodon/Scene/Onboarding/Share/NavigationActionView.swift index c3236bdb4..47a1afbfc 100644 --- a/Mastodon/Scene/Onboarding/Share/NavigationActionView.swift +++ b/Mastodon/Scene/Onboarding/Share/NavigationActionView.swift @@ -13,6 +13,7 @@ import MastodonLocalization final class NavigationActionView: UIView { static let buttonHeight: CGFloat = 50 + static let minimumBackButtonWidth: CGFloat = 100 private var observations = Set() @@ -27,6 +28,8 @@ final class NavigationActionView: UIView { let backButton: PrimaryActionButton = { let button = PrimaryActionButton() button.action = .back + button.contentEdgeInsets = WelcomeViewController.actionButtonPadding + button.titleLabel?.adjustsFontForContentSizeCategory = true button.setTitle(L10n.Common.Controls.Actions.back, for: .normal) return button }() @@ -35,6 +38,8 @@ final class NavigationActionView: UIView { let nextButton: PrimaryActionButton = { let button = PrimaryActionButton() button.action = .next + button.contentEdgeInsets = WelcomeViewController.actionButtonPadding + button.titleLabel?.adjustsFontForContentSizeCategory = true button.setTitle(L10n.Common.Controls.Actions.next, for: .normal) return button }() @@ -77,9 +82,8 @@ extension NavigationActionView { nextButtonShadowContainer.translatesAutoresizingMaskIntoConstraints = false buttonContainer.addArrangedSubview(nextButtonShadowContainer) NSLayoutConstraint.activate([ - backButtonShadowContainer.heightAnchor.constraint(equalToConstant: NavigationActionView.buttonHeight).priority(.required - 1), - nextButtonShadowContainer.heightAnchor.constraint(equalToConstant: NavigationActionView.buttonHeight).priority(.required - 1), - nextButtonShadowContainer.widthAnchor.constraint(equalTo: backButtonShadowContainer.widthAnchor, multiplier: 2).priority(.required - 1), + backButtonShadowContainer.heightAnchor.constraint(greaterThanOrEqualToConstant: NavigationActionView.buttonHeight).priority(.required - 1), + nextButtonShadowContainer.heightAnchor.constraint(greaterThanOrEqualToConstant: NavigationActionView.buttonHeight).priority(.required - 1), ]) backButton.translatesAutoresizingMaskIntoConstraints = false @@ -99,6 +103,17 @@ extension NavigationActionView { nextButton.trailingAnchor.constraint(equalTo: nextButtonShadowContainer.trailingAnchor), nextButton.bottomAnchor.constraint(equalTo: nextButtonShadowContainer.bottomAnchor), ]) + + // We want the back button to be as small as possible, allowing the next button to take up + // any remaining space. .defaultLow is "the priority level at which a button hugs its + // contents horizontally". Setting this on backButton allows nextButton to eat up remaining + // space. Note that we have to set this on the backButton, not the container, because it's + // backButton's size that determines the compression amount. + backButton.setContentCompressionResistancePriority(.defaultLow, for: .horizontal) + // Ensure that the back button has a reasonable minimum tap area. + NSLayoutConstraint.activate([ + backButton.widthAnchor.constraint(greaterThanOrEqualToConstant: NavigationActionView.minimumBackButtonWidth).priority(.defaultLow - 1) + ]) } } From e7ef0f79c7020fc7cfbe7f99711a3c18e15d3d61 Mon Sep 17 00:00:00 2001 From: CMK Date: Sun, 13 Nov 2022 16:04:29 +0800 Subject: [PATCH 166/598] feat: restore auto-complete for compose scene content input --- Mastodon.xcodeproj/project.pbxproj | 4 - .../Scene/Compose/ComposeViewController.swift | 173 +-------------- Mastodon/Scene/Compose/ComposeViewModel.swift | 2 - .../AutoCompleteViewController.swift | 2 +- .../AutoCompleteViewModel+Diffable.swift | 19 +- .../ComposeContentViewController.swift | 60 ++++++ ...eContentViewModel+UITextViewDelegate.swift | 203 ++++++++++++++++++ .../ComposeContentViewModel.swift | 96 ++------- .../Helper/MastodonRegex.swift | 0 .../View/ComposeContentView.swift | 16 ++ 10 files changed, 317 insertions(+), 258 deletions(-) create mode 100644 MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel+UITextViewDelegate.swift rename {Mastodon => MastodonSDK/Sources/MastodonUI/Scene/ComposeContent}/Helper/MastodonRegex.swift (100%) diff --git a/Mastodon.xcodeproj/project.pbxproj b/Mastodon.xcodeproj/project.pbxproj index 380f21eac..c6dc27ac1 100644 --- a/Mastodon.xcodeproj/project.pbxproj +++ b/Mastodon.xcodeproj/project.pbxproj @@ -376,7 +376,6 @@ DBB8AB4626AECDE200F6D281 /* SendPostIntentHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = DBB8AB4526AECDE200F6D281 /* SendPostIntentHandler.swift */; }; DBB8AB4F26AED13F00F6D281 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = DB427DDE25BAA00100D1B89D /* Assets.xcassets */; }; DBB9759C262462E1004620BD /* ThreadMetaView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DBB9759B262462E1004620BD /* ThreadMetaView.swift */; }; - DBBC24DC26A54BCB00398BB9 /* MastodonRegex.swift in Sources */ = {isa = PBXBuildFile; fileRef = DBBC24D626A54BCB00398BB9 /* MastodonRegex.swift */; }; DBBE1B4525F3474B0081417A /* MastodonPickServerAppearance.swift in Sources */ = {isa = PBXBuildFile; fileRef = DBBE1B4425F3474B0081417A /* MastodonPickServerAppearance.swift */; }; DBC6461526A170AB00B0E31B /* ComposeViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = DBC6461426A170AB00B0E31B /* ComposeViewController.swift */; }; DBC6461826A170AB00B0E31B /* MainInterface.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = DBC6461626A170AB00B0E31B /* MainInterface.storyboard */; }; @@ -962,7 +961,6 @@ DBB8AB4526AECDE200F6D281 /* SendPostIntentHandler.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SendPostIntentHandler.swift; sourceTree = ""; }; DBB9759B262462E1004620BD /* ThreadMetaView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ThreadMetaView.swift; sourceTree = ""; }; DBBC24A726A52F9000398BB9 /* ComposeToolbarView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ComposeToolbarView.swift; sourceTree = ""; }; - DBBC24D626A54BCB00398BB9 /* MastodonRegex.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MastodonRegex.swift; sourceTree = ""; }; DBBE1B4425F3474B0081417A /* MastodonPickServerAppearance.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MastodonPickServerAppearance.swift; sourceTree = ""; }; DBC6461226A170AB00B0E31B /* ShareActionExtension.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = ShareActionExtension.appex; sourceTree = BUILT_PRODUCTS_DIR; }; DBC6461426A170AB00B0E31B /* ComposeViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ComposeViewController.swift; sourceTree = ""; }; @@ -2520,7 +2518,6 @@ DBBC24D526A54BCB00398BB9 /* Helper */ = { isa = PBXGroup; children = ( - DBBC24D626A54BCB00398BB9 /* MastodonRegex.swift */, DBF3B7402733EB9400E21627 /* MastodonLocalCode.swift */, ); path = Helper; @@ -3246,7 +3243,6 @@ DBFEEC9D279C12C1004F81DD /* ProfileFieldEditCollectionViewCell.swift in Sources */, DB3E6FEC2806D7F100B035AE /* DiscoveryNewsViewController.swift in Sources */, DB2FF510260B113300ADA9FE /* ComposeStatusPollExpiresOptionCollectionViewCell.swift in Sources */, - DBBC24DC26A54BCB00398BB9 /* MastodonRegex.swift in Sources */, DBCBED1726132DB500B49291 /* UserTimelineViewModel+Diffable.swift in Sources */, 2DE0FACE2615F7AD00CDF649 /* RecommendAccountSection.swift in Sources */, 2DAC9E3E262FC2400062E1A6 /* SuggestionAccountViewModel.swift in Sources */, diff --git a/Mastodon/Scene/Compose/ComposeViewController.swift b/Mastodon/Scene/Compose/ComposeViewController.swift index bf9145d6c..a2830edff 100644 --- a/Mastodon/Scene/Compose/ComposeViewController.swift +++ b/Mastodon/Scene/Compose/ComposeViewController.swift @@ -106,13 +106,7 @@ final class ComposeViewController: UIViewController, NeedsDependency { // let composeToolbarBackgroundView = UIView() // // -// private(set) lazy var autoCompleteViewController: AutoCompleteViewController = { -// let viewController = AutoCompleteViewController() -// viewController.viewModel = AutoCompleteViewModel(context: context, authContext: viewModel.authContext) -// viewController.delegate = self -// viewController.viewModel.customEmojiViewModel.value = viewModel.customEmojiViewModel -// return viewController -// }() + deinit { os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s", ((#file as NSString).lastPathComponent), #line, #function) @@ -243,33 +237,6 @@ extension ComposeViewController { // // update layout when keyboard show/dismiss // view.layoutIfNeeded() // - -// -// // bind auto-complete -// viewModel.$autoCompleteInfo -// .receive(on: DispatchQueue.main) -// .sink { [weak self] info in -// guard let self = self else { return } -// let textEditorView = self.textEditorView -// if self.autoCompleteViewController.view.superview == nil { -// self.autoCompleteViewController.view.frame = self.view.bounds -// // add to container view. seealso: `viewDidLayoutSubviews()` -// self.viewModel.composeStatusContentTableViewCell.textEditorViewContainerView.addSubview(self.autoCompleteViewController.view) -// self.addChild(self.autoCompleteViewController) -// self.autoCompleteViewController.didMove(toParent: self) -// self.autoCompleteViewController.view.isHidden = true -// self.tableView.autoCompleteViewController = self.autoCompleteViewController -// } -// self.updateAutoCompleteViewControllerLayout() -// self.autoCompleteViewController.view.isHidden = info == nil -// guard let info = info else { return } -// let symbolBoundingRectInContainer = textEditorView.textView.convert(info.symbolBoundingRect, to: self.autoCompleteViewController.chevronView) -// self.autoCompleteViewController.view.frame.origin.y = info.textBoundingRect.maxY -// self.autoCompleteViewController.viewModel.symbolBoundingRect.value = symbolBoundingRectInContainer -// self.autoCompleteViewController.viewModel.inputText.value = String(info.inputText) -// } -// .store(in: &disposeBag) -// // // bind publish bar button state // viewModel.$isPublishBarButtonItemEnabled // .receive(on: DispatchQueue.main) @@ -431,23 +398,6 @@ extension ComposeViewController { // viewModel.traitCollectionDidChangePublisher.send() } - override func viewDidLayoutSubviews() { - super.viewDidLayoutSubviews() - - updateAutoCompleteViewControllerLayout() - } - - private func updateAutoCompleteViewControllerLayout() { - // pin autoCompleteViewController frame to current view -// if let containerView = autoCompleteViewController.view.superview { -// let viewFrameInWindow = containerView.convert(autoCompleteViewController.view.frame, to: view) -// if viewFrameInWindow.origin.x != 0 { -// autoCompleteViewController.view.frame.origin.x = -viewFrameInWindow.origin.x -// } -// autoCompleteViewController.view.frame.size.width = view.frame.width -// } - } - } //extension ComposeViewController { @@ -661,126 +611,11 @@ extension ComposeViewController { // return true // } // -// func textViewDidChange(_ textView: UITextView) { -// switch textView { -// case textEditorView.textView: -// // update model -// let metaText = self.textEditorView -// let backedString = metaText.backedString -// viewModel.composeStatusAttribute.composeContent = backedString -// logger.debug("\((#file as NSString).lastPathComponent, privacy: .public)[\(#line, privacy: .public)], \(#function, privacy: .public): \(backedString)") -// -// // configure auto completion -// setupAutoComplete(for: textView) -// default: -// assertionFailure() -// } -// } + // -// struct AutoCompleteInfo { -// // model -// let inputText: Substring -// // range -// let symbolRange: Range -// let symbolString: Substring -// let toCursorRange: Range -// let toCursorString: Substring -// let toHighlightEndRange: Range -// let toHighlightEndString: Substring -// // geometry -// var textBoundingRect: CGRect = .zero -// var symbolBoundingRect: CGRect = .zero -// } + // -// private func setupAutoComplete(for textView: UITextView) { -// guard var autoCompletion = ComposeViewController.scanAutoCompleteInfo(textView: textView) else { -// viewModel.autoCompleteInfo = nil -// return -// } -// os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s: auto complete %s (%s)", ((#file as NSString).lastPathComponent), #line, #function, String(autoCompletion.toHighlightEndString), String(autoCompletion.toCursorString)) -// -// // get layout text bounding rect -// var glyphRange = NSRange() -// textView.layoutManager.characterRange(forGlyphRange: NSRange(autoCompletion.toCursorRange, in: textView.text), actualGlyphRange: &glyphRange) -// let textContainer = textView.layoutManager.textContainers[0] -// let textBoundingRect = textView.layoutManager.boundingRect(forGlyphRange: glyphRange, in: textContainer) -// -// let retryLayoutTimes = viewModel.autoCompleteRetryLayoutTimes -// guard textBoundingRect.size != .zero else { -// viewModel.autoCompleteRetryLayoutTimes += 1 -// // avoid infinite loop -// guard retryLayoutTimes < 3 else { return } -// // needs retry calculate layout when the rect position changing -// DispatchQueue.main.async { -// self.setupAutoComplete(for: textView) -// } -// return -// } -// viewModel.autoCompleteRetryLayoutTimes = 0 -// -// // get symbol bounding rect -// textView.layoutManager.characterRange(forGlyphRange: NSRange(autoCompletion.symbolRange, in: textView.text), actualGlyphRange: &glyphRange) -// let symbolBoundingRect = textView.layoutManager.boundingRect(forGlyphRange: glyphRange, in: textContainer) -// -// // set bounding rect and trigger layout -// autoCompletion.textBoundingRect = textBoundingRect -// autoCompletion.symbolBoundingRect = symbolBoundingRect -// viewModel.autoCompleteInfo = autoCompletion -// } -// -// private static func scanAutoCompleteInfo(textView: UITextView) -> AutoCompleteInfo? { -// guard let text = textView.text, -// textView.selectedRange.location > 0, !text.isEmpty, -// let selectedRange = Range(textView.selectedRange, in: text) else { -// return nil -// } -// let cursorIndex = selectedRange.upperBound -// let _highlightStartIndex: String.Index? = { -// var index = text.index(before: cursorIndex) -// while index > text.startIndex { -// let char = text[index] -// if char == "@" || char == "#" || char == ":" { -// return index -// } -// index = text.index(before: index) -// } -// assert(index == text.startIndex) -// let char = text[index] -// if char == "@" || char == "#" || char == ":" { -// return index -// } else { -// return nil -// } -// }() -// -// guard let highlightStartIndex = _highlightStartIndex else { return nil } -// let scanRange = NSRange(highlightStartIndex..= cursorIndex else { return nil } -// let symbolRange = highlightStartIndex.. Bool { // switch textView { diff --git a/Mastodon/Scene/Compose/ComposeViewModel.swift b/Mastodon/Scene/Compose/ComposeViewModel.swift index 45c9f1e93..df9f7b710 100644 --- a/Mastodon/Scene/Compose/ComposeViewModel.swift +++ b/Mastodon/Scene/Compose/ComposeViewModel.swift @@ -41,8 +41,6 @@ final class ComposeViewModel: NSObject { // // @Published var selectedStatusVisibility: ComposeToolbarView.VisibilitySelectionType // @Published var repliedToCellFrame: CGRect = .zero -// @Published var autoCompleteRetryLayoutTimes = 0 -// @Published var autoCompleteInfo: ComposeViewController.AutoCompleteInfo? = nil let traitCollectionDidChangePublisher = CurrentValueSubject(Void()) // use CurrentValueSubject to make initial event emit // var isViewAppeared = false diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/AutoComplete/AutoCompleteViewController.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/AutoComplete/AutoCompleteViewController.swift index aa21057d1..9af1ce9bf 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/AutoComplete/AutoCompleteViewController.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/AutoComplete/AutoCompleteViewController.swift @@ -88,7 +88,7 @@ extension AutoCompleteViewController { ]) tableView.delegate = self -// viewModel.setupDiffableDataSource(tableView: tableView) + viewModel.setupDiffableDataSource(tableView: tableView) // bind to layout chevron viewModel.symbolBoundingRect diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/AutoComplete/AutoCompleteViewModel+Diffable.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/AutoComplete/AutoCompleteViewModel+Diffable.swift index adbf6ac09..2dd815d0a 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/AutoComplete/AutoCompleteViewModel+Diffable.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/AutoComplete/AutoCompleteViewModel+Diffable.swift @@ -6,17 +6,18 @@ // import UIKit +import MastodonCore extension AutoCompleteViewModel { -// func setupDiffableDataSource( -// tableView: UITableView -// ) { -// diffableDataSource = AutoCompleteSection.tableViewDiffableDataSource(for: tableView) -// -// var snapshot = NSDiffableDataSourceSnapshot() -// snapshot.appendSections([.main]) -// diffableDataSource?.apply(snapshot) -// } + func setupDiffableDataSource( + tableView: UITableView + ) { + diffableDataSource = AutoCompleteSection.tableViewDiffableDataSource(tableView: tableView) + + var snapshot = NSDiffableDataSourceSnapshot() + snapshot.appendSections([.main]) + diffableDataSource?.apply(snapshot) + } } diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewController.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewController.swift index 7dde9c8c0..df7246fa7 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewController.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewController.swift @@ -20,6 +20,7 @@ public final class ComposeContentViewController: UIViewController { public var viewModel: ComposeContentViewModel! private(set) lazy var composeContentToolbarViewModel = ComposeContentToolbarView.ViewModel(delegate: self) + // tableView container let tableView: ComposeTableView = { let tableView = ComposeTableView() tableView.estimatedRowHeight = UITableView.automaticDimension @@ -29,6 +30,17 @@ public final class ComposeContentViewController: UIViewController { return tableView }() + // auto complete + private(set) lazy var autoCompleteViewController: AutoCompleteViewController = { + let viewController = AutoCompleteViewController() + viewController.viewModel = AutoCompleteViewModel(context: viewModel.context, authContext: viewModel.authContext) + viewController.delegate = self + // viewController.viewModel.customEmojiViewModel.value = viewModel.customEmojiViewModel + return viewController + }() + + // toolbar + lazy var composeContentToolbarView = ComposeContentToolbarView(viewModel: composeContentToolbarViewModel) var composeContentToolbarViewBottomLayoutConstraint: NSLayoutConstraint! let composeContentToolbarBackgroundView = UIView() @@ -218,6 +230,32 @@ extension ComposeContentViewController { } .store(in: &disposeBag) + // bind auto-complete + viewModel.$autoCompleteInfo + .receive(on: DispatchQueue.main) + .sink { [weak self] info in + guard let self = self else { return } + guard let textView = self.viewModel.contentMetaText?.textView else { return } + if self.autoCompleteViewController.view.superview == nil { + self.autoCompleteViewController.view.frame = self.view.bounds + // add to container view. seealso: `viewDidLayoutSubviews()` + self.viewModel.composeContentTableViewCell.contentView.addSubview(self.autoCompleteViewController.view) + self.addChild(self.autoCompleteViewController) + self.autoCompleteViewController.didMove(toParent: self) + self.autoCompleteViewController.view.isHidden = true + self.tableView.autoCompleteViewController = self.autoCompleteViewController + } + self.updateAutoCompleteViewControllerLayout() + self.autoCompleteViewController.view.isHidden = info == nil + guard let info = info else { return } + let symbolBoundingRectInContainer = textView.convert(info.symbolBoundingRect, to: self.autoCompleteViewController.chevronView) + print(info.symbolBoundingRect) + self.autoCompleteViewController.view.frame.origin.y = info.textBoundingRect.maxY + self.viewModel.contentTextViewFrame.minY + self.autoCompleteViewController.viewModel.symbolBoundingRect.value = symbolBoundingRectInContainer + self.autoCompleteViewController.viewModel.inputText.value = String(info.inputText) + } + .store(in: &disposeBag) + // bind toolbar bindToolbarViewModel() } @@ -226,6 +264,7 @@ extension ComposeContentViewController { super.viewDidLayoutSubviews() viewModel.viewLayoutFrame.update(view: view) + updateAutoCompleteViewControllerLayout() } public override func viewSafeAreaInsetsDidChange() { @@ -264,6 +303,17 @@ extension ComposeContentViewController { viewModel.$contentWeightedLength.assign(to: &composeContentToolbarViewModel.$contentWeightedLength) viewModel.$contentWarningWeightedLength.assign(to: &composeContentToolbarViewModel.$contentWarningWeightedLength) } + + private func updateAutoCompleteViewControllerLayout() { + // pin autoCompleteViewController frame to current view + if let containerView = autoCompleteViewController.view.superview { + let viewFrameInWindow = containerView.convert(autoCompleteViewController.view.frame, to: view) + if viewFrameInWindow.origin.x != 0 { + autoCompleteViewController.view.frame.origin.x = -viewFrameInWindow.origin.x + } + autoCompleteViewController.view.frame.size.width = view.frame.width + } + } } // MARK: - UIScrollViewDelegate @@ -427,3 +477,13 @@ extension ComposeContentViewController: ComposeContentToolbarViewDelegate { } } } + +// MARK: - AutoCompleteViewControllerDelegate +extension ComposeContentViewController: AutoCompleteViewControllerDelegate { + func autoCompleteViewController( + _ viewController: AutoCompleteViewController, + didSelectItem item: AutoCompleteItem + ) { + logger.log(level: .debug, "\((#file as NSString).lastPathComponent, privacy: .public)[\(#line, privacy: .public)], \(#function, privacy: .public): did select item: \(String(describing: item))") + } +} diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel+UITextViewDelegate.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel+UITextViewDelegate.swift new file mode 100644 index 000000000..5b5c018e2 --- /dev/null +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel+UITextViewDelegate.swift @@ -0,0 +1,203 @@ +// +// ComposeContentViewModel+UITextViewDelegate.swift +// +// +// Created by MainasuK on 2022/11/13. +// + +import os.log +import UIKit + +// MARK: - UITextViewDelegate +extension ComposeContentViewModel: UITextViewDelegate { + + public func textViewDidBeginEditing(_ textView: UITextView) { + // Note: + // Xcode warning: + // Publishing changes from within view updates is not allowed, this will cause undefined behavior. + // + // Just ignore the warning and see what will happen… + switch textView { + case contentMetaText?.textView: + isContentEditing = true + case contentWarningMetaText?.textView: + isContentWarningEditing = true + default: + assertionFailure() + break + } + } + + public func textViewDidChange(_ textView: UITextView) { + switch textView { + case contentMetaText?.textView: + // update model + guard let metaText = self.contentMetaText else { + assertionFailure() + return + } + let backedString = metaText.backedString + logger.debug("\((#file as NSString).lastPathComponent, privacy: .public)[\(#line, privacy: .public)], \(#function, privacy: .public): \(backedString)") + + // configure auto completion + setupAutoComplete(for: textView) + + case contentWarningMetaText?.textView: + break + default: + assertionFailure() + } + } + + public func textViewDidEndEditing(_ textView: UITextView) { + switch textView { + case contentMetaText?.textView: + isContentEditing = false + case contentWarningMetaText?.textView: + isContentWarningEditing = false + default: + assertionFailure() + break + } + } + + public func textView(_ textView: UITextView, shouldChangeTextIn range: NSRange, replacementText text: String) -> Bool { + switch textView { + case contentMetaText?.textView: + return true + case contentWarningMetaText?.textView: + let isReturn = text == "\n" + if isReturn { + setContentTextViewFirstResponderIfNeeds() + } + return !isReturn + default: + assertionFailure() + return true + } + } + +} + +extension ComposeContentViewModel { + + func insertContentText(text: String) { + guard let contentMetaText = self.contentMetaText else { return } + // FIXME: smart prefix and suffix + let string = contentMetaText.textStorage.string + let isEmpty = string.isEmpty + let hasPrefix = string.hasPrefix(" ") + if hasPrefix || isEmpty { + contentMetaText.textView.insertText(text) + } else { + contentMetaText.textView.insertText(" " + text) + } + } + + func setContentTextViewFirstResponderIfNeeds() { + guard let contentMetaText = self.contentMetaText else { return } + guard !contentMetaText.textView.isFirstResponder else { return } + contentMetaText.textView.becomeFirstResponder() + } + + func setContentWarningTextViewFirstResponderIfNeeds() { + guard let contentWarningMetaText = self.contentWarningMetaText else { return } + guard !contentWarningMetaText.textView.isFirstResponder else { return } + contentWarningMetaText.textView.becomeFirstResponder() + } + +} + +extension ComposeContentViewModel { + + private func setupAutoComplete(for textView: UITextView) { + guard var autoCompletion = ComposeContentViewModel.scanAutoCompleteInfo(textView: textView) else { + self.autoCompleteInfo = nil + return + } + os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s: auto complete %s (%s)", ((#file as NSString).lastPathComponent), #line, #function, String(autoCompletion.toHighlightEndString), String(autoCompletion.toCursorString)) + + // get layout text bounding rect + var glyphRange = NSRange() + textView.layoutManager.characterRange(forGlyphRange: NSRange(autoCompletion.toCursorRange, in: textView.text), actualGlyphRange: &glyphRange) + let textContainer = textView.layoutManager.textContainers[0] + let textBoundingRect = textView.layoutManager.boundingRect(forGlyphRange: glyphRange, in: textContainer) + + let retryLayoutTimes = autoCompleteRetryLayoutTimes + guard textBoundingRect.size != .zero else { + autoCompleteRetryLayoutTimes += 1 + // avoid infinite loop + guard retryLayoutTimes < 3 else { return } + // needs retry calculate layout when the rect position changing + DispatchQueue.main.async { + self.setupAutoComplete(for: textView) + } + return + } + autoCompleteRetryLayoutTimes = 0 + + // get symbol bounding rect + textView.layoutManager.characterRange(forGlyphRange: NSRange(autoCompletion.symbolRange, in: textView.text), actualGlyphRange: &glyphRange) + let symbolBoundingRect = textView.layoutManager.boundingRect(forGlyphRange: glyphRange, in: textContainer) + + // set bounding rect and trigger layout + autoCompletion.textBoundingRect = textBoundingRect + autoCompletion.symbolBoundingRect = symbolBoundingRect + autoCompleteInfo = autoCompletion + } + + private static func scanAutoCompleteInfo(textView: UITextView) -> AutoCompleteInfo? { + guard let text = textView.text, + textView.selectedRange.location > 0, !text.isEmpty, + let selectedRange = Range(textView.selectedRange, in: text) else { + return nil + } + let cursorIndex = selectedRange.upperBound + let _highlightStartIndex: String.Index? = { + var index = text.index(before: cursorIndex) + while index > text.startIndex { + let char = text[index] + if char == "@" || char == "#" || char == ":" { + return index + } + index = text.index(before: index) + } + assert(index == text.startIndex) + let char = text[index] + if char == "@" || char == "#" || char == ":" { + return index + } else { + return nil + } + }() + + guard let highlightStartIndex = _highlightStartIndex else { return nil } + let scanRange = NSRange(highlightStartIndex..= cursorIndex else { return nil } + let symbolRange = highlightStartIndex..) case reply(status: ManagedObjectRecord) } - + public enum ScrollViewState { case fold // snap to input case expand // snap to reply } } +extension ComposeContentViewModel { + struct AutoCompleteInfo { + // model + let inputText: Substring + // range + let symbolRange: Range + let symbolString: Substring + let toCursorRange: Range + let toCursorString: Substring + let toHighlightEndRange: Range + let toHighlightEndString: Substring + // geometry + var textBoundingRect: CGRect = .zero + var symbolBoundingRect: CGRect = .zero + } +} + extension ComposeContentViewModel { func createNewPollOptionIfCould() { logger.log(level: .debug, "\((#file as NSString).lastPathComponent, privacy: .public)[\(#line, privacy: .public)], \(#function, privacy: .public)") @@ -286,77 +307,6 @@ extension ComposeContentViewModel { } // end func publisher() } -// MARK: - UITextViewDelegate -extension ComposeContentViewModel: UITextViewDelegate { - public func textViewDidBeginEditing(_ textView: UITextView) { - // Note: - // Xcode warning: - // Publishing changes from within view updates is not allowed, this will cause undefined behavior. - // - // Just ignore the warning and see what will happen… - switch textView { - case contentMetaText?.textView: - isContentEditing = true - case contentWarningMetaText?.textView: - isContentWarningEditing = true - default: - break - } - } - - public func textViewDidEndEditing(_ textView: UITextView) { - switch textView { - case contentMetaText?.textView: - isContentEditing = false - case contentWarningMetaText?.textView: - isContentWarningEditing = false - default: - break - } - } - - public func textView(_ textView: UITextView, shouldChangeTextIn range: NSRange, replacementText text: String) -> Bool { - switch textView { - case contentMetaText?.textView: - return true - case contentWarningMetaText?.textView: - let isReturn = text == "\n" - if isReturn { - setContentTextViewFirstResponderIfNeeds() - } - return !isReturn - default: - assertionFailure() - return true - } - } - - func insertContentText(text: String) { - guard let contentMetaText = self.contentMetaText else { return } - // FIXME: smart prefix and suffix - let string = contentMetaText.textStorage.string - let isEmpty = string.isEmpty - let hasPrefix = string.hasPrefix(" ") - if hasPrefix || isEmpty { - contentMetaText.textView.insertText(text) - } else { - contentMetaText.textView.insertText(" " + text) - } - } - - func setContentTextViewFirstResponderIfNeeds() { - guard let contentMetaText = self.contentMetaText else { return } - guard !contentMetaText.textView.isFirstResponder else { return } - contentMetaText.textView.becomeFirstResponder() - } - - func setContentWarningTextViewFirstResponderIfNeeds() { - guard let contentWarningMetaText = self.contentWarningMetaText else { return } - guard !contentWarningMetaText.textView.isFirstResponder else { return } - contentWarningMetaText.textView.becomeFirstResponder() - } -} - // MARK: - DeleteBackwardResponseTextFieldRelayDelegate extension ComposeContentViewModel: DeleteBackwardResponseTextFieldRelayDelegate { diff --git a/Mastodon/Helper/MastodonRegex.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Helper/MastodonRegex.swift similarity index 100% rename from Mastodon/Helper/MastodonRegex.swift rename to MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Helper/MastodonRegex.swift diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentView.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentView.swift index e1954af04..6dad1e19b 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentView.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentView.swift @@ -18,9 +18,11 @@ public struct ComposeContentView: View { static let logger = Logger(subsystem: "ComposeContentView", category: "View") var logger: Logger { ComposeContentView.logger } + static let contentViewCoordinateSpace = "ComposeContentView.Content" static var margin: CGFloat = 16 @ObservedObject var viewModel: ComposeContentViewModel + public var body: some View { VStack(spacing: .zero) { @@ -106,6 +108,19 @@ public struct ComposeContentView: View { .frame(minHeight: 100) .fixedSize(horizontal: false, vertical: true) .padding(.horizontal, ComposeContentView.margin) + .background( + GeometryReader { proxy in + Color.clear.preference(key: ViewFramePreferenceKey.self, value: proxy.frame(in: .named(ComposeContentView.contentViewCoordinateSpace))) + } + .onPreferenceChange(ViewFramePreferenceKey.self) { frame in + logger.log(level: .debug, "\((#file as NSString).lastPathComponent, privacy: .public)[\(#line, privacy: .public)], \(#function, privacy: .public): content textView frame: \(frame.debugDescription)") + let rect = frame.standardized + viewModel.contentTextViewFrame = CGRect( + origin: frame.origin, + size: CGSize(width: floor(rect.width), height: floor(rect.height)) + ) + } + ) // poll pollView .padding(.horizontal, ComposeContentView.margin) @@ -128,6 +143,7 @@ public struct ComposeContentView: View { ) Spacer() } // end VStack + .coordinateSpace(name: ComposeContentView.contentViewCoordinateSpace) } // end body } From 70a59fd54104cccb021b08e8953ed6fa91cf84e7 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sun, 13 Nov 2022 10:53:45 +0100 Subject: [PATCH 167/598] New translations Localizable.stringsdict (German) --- .../StringsConvertor/input/de.lproj/Localizable.stringsdict | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Localization/StringsConvertor/input/de.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/de.lproj/Localizable.stringsdict index c6a8a4297..f60c6b0d7 100644 --- a/Localization/StringsConvertor/input/de.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/de.lproj/Localizable.stringsdict @@ -248,9 +248,9 @@ NSStringFormatValueTypeKey ld one - 1 Follower + 1 Folgender other - %ld Follower + %ld Folgende date.year.left From 88307057c0dd06c28ea2e5900cc4acebdafa00ad Mon Sep 17 00:00:00 2001 From: CMK Date: Sun, 13 Nov 2022 19:42:50 +0800 Subject: [PATCH 168/598] feat: restore emoji picker for post compose --- Mastodon.xcodeproj/project.pbxproj | 16 -- .../Scene/Compose/ComposeViewController.swift | 95 +----------- .../Compose/ComposeViewModel+DataSource.swift | 37 ----- Mastodon/Scene/Compose/ComposeViewModel.swift | 5 - .../Model/Compose/CustomEmojiPickerItem.swift | 14 +- .../CustomEmojiPickerSection+Diffable.swift | 96 ++++++------ .../AutoCompleteViewModel+State.swift | 2 +- .../AutoComplete/AutoCompleteViewModel.swift | 4 +- .../ComposeContentViewController.swift | 141 ++++++++++++++++++ .../ComposeContentViewModel+DataSource.swift | 40 +++++ ...oseContentViewModel+MetaTextDelegate.swift | 4 +- ...eContentViewModel+UITextViewDelegate.swift | 6 + .../ComposeContentViewModel.swift | 28 +++- ...jiPickerHeaderCollectionReusableView.swift | 0 .../CustomEmojiPickerInputView.swift | 0 .../CustomEmojiPickerInputViewModel.swift | 48 +++--- ...tomEmojiPickerItemCollectionViewCell.swift | 0 .../View/ComposeContentView.swift | 2 +- 18 files changed, 304 insertions(+), 234 deletions(-) rename {Mastodon/Scene/Compose/CollectionViewCell => MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/EmojiPicker}/CustomEmojiPickerHeaderCollectionReusableView.swift (100%) rename {Mastodon/Scene/Compose/View => MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/EmojiPicker}/CustomEmojiPickerInputView.swift (100%) rename {Mastodon/Scene/Compose/View => MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/EmojiPicker}/CustomEmojiPickerInputViewModel.swift (52%) rename {Mastodon/Scene/Compose/CollectionViewCell => MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/EmojiPicker}/CustomEmojiPickerItemCollectionViewCell.swift (100%) diff --git a/Mastodon.xcodeproj/project.pbxproj b/Mastodon.xcodeproj/project.pbxproj index c6dc27ac1..e3c3c58d3 100644 --- a/Mastodon.xcodeproj/project.pbxproj +++ b/Mastodon.xcodeproj/project.pbxproj @@ -151,7 +151,6 @@ DB1FD44425F26CCC004CFCFC /* PickServerSection.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB1FD44325F26CCC004CFCFC /* PickServerSection.swift */; }; DB1FD45025F26FA1004CFCFC /* MastodonPickServerViewModel+Diffable.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB1FD44F25F26FA1004CFCFC /* MastodonPickServerViewModel+Diffable.swift */; }; DB1FD45A25F27898004CFCFC /* CategoryPickerItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB1FD45925F27898004CFCFC /* CategoryPickerItem.swift */; }; - DB221B16260C395900AEFE46 /* CustomEmojiPickerInputViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB221B15260C395900AEFE46 /* CustomEmojiPickerInputViewModel.swift */; }; DB22C92228E700A10082A9E9 /* MastodonSDK in Frameworks */ = {isa = PBXBuildFile; productRef = DB22C92128E700A10082A9E9 /* MastodonSDK */; }; DB22C92428E700A80082A9E9 /* MastodonSDK in Frameworks */ = {isa = PBXBuildFile; productRef = DB22C92328E700A80082A9E9 /* MastodonSDK */; }; DB22C92628E700AF0082A9E9 /* MastodonSDK in Frameworks */ = {isa = PBXBuildFile; productRef = DB22C92528E700AF0082A9E9 /* MastodonSDK */; }; @@ -185,9 +184,6 @@ DB427DED25BAA00100D1B89D /* MastodonTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB427DEC25BAA00100D1B89D /* MastodonTests.swift */; }; DB427DF825BAA00100D1B89D /* MastodonUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB427DF725BAA00100D1B89D /* MastodonUITests.swift */; }; DB443CD42694627B00159B29 /* AppearanceView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB443CD32694627B00159B29 /* AppearanceView.swift */; }; - DB44767B260B3B8C00B66B82 /* CustomEmojiPickerInputView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB44767A260B3B8C00B66B82 /* CustomEmojiPickerInputView.swift */; }; - DB447691260B406600B66B82 /* CustomEmojiPickerItemCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB447690260B406600B66B82 /* CustomEmojiPickerItemCollectionViewCell.swift */; }; - DB447697260B439000B66B82 /* CustomEmojiPickerHeaderCollectionReusableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB447696260B439000B66B82 /* CustomEmojiPickerHeaderCollectionReusableView.swift */; }; DB4481B925EE289600BEFB67 /* UITableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB4481B825EE289600BEFB67 /* UITableView.swift */; }; DB45FAB625CA5485005A8AC7 /* UIAlertController.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB45FAB525CA5485005A8AC7 /* UIAlertController.swift */; }; DB45FAD725CA6C76005A8AC7 /* UIBarButtonItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB45FAD625CA6C76005A8AC7 /* UIBarButtonItem.swift */; }; @@ -680,7 +676,6 @@ DB1FD44F25F26FA1004CFCFC /* MastodonPickServerViewModel+Diffable.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "MastodonPickServerViewModel+Diffable.swift"; sourceTree = ""; }; DB1FD45925F27898004CFCFC /* CategoryPickerItem.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CategoryPickerItem.swift; sourceTree = ""; }; DB1FD45F25F278AF004CFCFC /* CategoryPickerSection.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CategoryPickerSection.swift; sourceTree = ""; }; - DB221B15260C395900AEFE46 /* CustomEmojiPickerInputViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CustomEmojiPickerInputViewModel.swift; sourceTree = ""; }; DB2B3ABD25E37E15007045F9 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; DB2F073325E8ECF000957B2D /* AuthenticationViewModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AuthenticationViewModel.swift; sourceTree = ""; }; DB2FF50F260B113300ADA9FE /* ComposeStatusPollExpiresOptionCollectionViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ComposeStatusPollExpiresOptionCollectionViewCell.swift; sourceTree = ""; }; @@ -717,9 +712,6 @@ DB427DF725BAA00100D1B89D /* MastodonUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MastodonUITests.swift; sourceTree = ""; }; DB427DF925BAA00100D1B89D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; DB443CD32694627B00159B29 /* AppearanceView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppearanceView.swift; sourceTree = ""; }; - DB44767A260B3B8C00B66B82 /* CustomEmojiPickerInputView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CustomEmojiPickerInputView.swift; sourceTree = ""; }; - DB447690260B406600B66B82 /* CustomEmojiPickerItemCollectionViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CustomEmojiPickerItemCollectionViewCell.swift; sourceTree = ""; }; - DB447696260B439000B66B82 /* CustomEmojiPickerHeaderCollectionReusableView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CustomEmojiPickerHeaderCollectionReusableView.swift; sourceTree = ""; }; DB4481B825EE289600BEFB67 /* UITableView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UITableView.swift; sourceTree = ""; }; DB45FAB525CA5485005A8AC7 /* UIAlertController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UIAlertController.swift; sourceTree = ""; }; DB45FAD625CA6C76005A8AC7 /* UIBarButtonItem.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UIBarButtonItem.swift; sourceTree = ""; }; @@ -1876,8 +1868,6 @@ DBA0A11225FB3FC10079C110 /* ComposeToolbarView.swift */, DB8190C52601FF0400020C08 /* AttachmentContainerView.swift */, DB9A486B26032AC1008B817C /* AttachmentContainerView+EmptyStateView.swift */, - DB44767A260B3B8C00B66B82 /* CustomEmojiPickerInputView.swift */, - DB221B15260C395900AEFE46 /* CustomEmojiPickerInputViewModel.swift */, DBC7A671260C897100E57475 /* StatusContentWarningEditorView.swift */, ); path = View; @@ -2157,8 +2147,6 @@ DB87D4442609BE0500D12C0D /* ComposeStatusPollOptionCollectionViewCell.swift */, DB87D4502609CF1E00D12C0D /* ComposeStatusPollOptionAppendEntryCollectionViewCell.swift */, DB2FF50F260B113300ADA9FE /* ComposeStatusPollExpiresOptionCollectionViewCell.swift */, - DB447690260B406600B66B82 /* CustomEmojiPickerItemCollectionViewCell.swift */, - DB447696260B439000B66B82 /* CustomEmojiPickerHeaderCollectionReusableView.swift */, ); path = CollectionViewCell; sourceTree = ""; @@ -3335,7 +3323,6 @@ DB98EB6227B215EB0082E365 /* ReportResultViewController.swift in Sources */, DB6B74F4272FBAE700C70B6E /* FollowerListViewModel+Diffable.swift in Sources */, DB6B74F2272FB67600C70B6E /* FollowerListViewModel.swift in Sources */, - DB44767B260B3B8C00B66B82 /* CustomEmojiPickerInputView.swift in Sources */, 0F20222D261457EE000C64BF /* HashtagTimelineViewModel+State.swift in Sources */, DB0009A626AEE5DC009B9D2D /* Intents.intentdefinition in Sources */, 5B90C462262599800002E742 /* SettingsSectionHeader.swift in Sources */, @@ -3349,7 +3336,6 @@ DBFEEC9B279BDDD9004F81DD /* ProfileAboutViewModel+Diffable.swift in Sources */, DBB525562611EDCA002F1F29 /* UserTimelineViewModel.swift in Sources */, DB0618012785732C0030EE79 /* ServerRulesTableViewCell.swift in Sources */, - DB221B16260C395900AEFE46 /* CustomEmojiPickerInputViewModel.swift in Sources */, DB98EB5C27B10A730082E365 /* ReportSupplementaryViewModel.swift in Sources */, DB0617EF277F12720030EE79 /* NavigationActionView.swift in Sources */, DB1FD43625F26899004CFCFC /* MastodonPickServerViewModel+LoadIndexedServerState.swift in Sources */, @@ -3433,7 +3419,6 @@ 2D35237A26256D920031AF25 /* NotificationSection.swift in Sources */, 2D4AD89C263165B500613EFC /* SuggestionAccountCollectionViewCell.swift in Sources */, DB98EB6927B21A7C0082E365 /* ReportResultActionTableViewCell.swift in Sources */, - DB447691260B406600B66B82 /* CustomEmojiPickerItemCollectionViewCell.swift in Sources */, DB9282B225F3222800823B15 /* PickServerEmptyStateView.swift in Sources */, DB697DDF278F524F004EF2F7 /* DataSourceFacade+Profile.swift in Sources */, DB1FD45025F26FA1004CFCFC /* MastodonPickServerViewModel+Diffable.swift in Sources */, @@ -3457,7 +3442,6 @@ DB63F74D27993F5B00455B82 /* SearchHistoryUserCollectionViewCell.swift in Sources */, DB8AF54425C13647002E6C99 /* SceneCoordinator.swift in Sources */, DB1D84382657B275000346B3 /* SegmentedControlNavigateable.swift in Sources */, - DB447697260B439000B66B82 /* CustomEmojiPickerHeaderCollectionReusableView.swift in Sources */, 0F20220726134DA4000C64BF /* HashtagTimelineViewModel+Diffable.swift in Sources */, DB7A9F932818F33C0016AF98 /* MastodonServerRulesViewController+Debug.swift in Sources */, 2D5A3D2825CF8BC9002347D6 /* HomeTimelineViewModel+Diffable.swift in Sources */, diff --git a/Mastodon/Scene/Compose/ComposeViewController.swift b/Mastodon/Scene/Compose/ComposeViewController.swift index a2830edff..f23e44e5f 100644 --- a/Mastodon/Scene/Compose/ComposeViewController.swift +++ b/Mastodon/Scene/Compose/ComposeViewController.swift @@ -95,11 +95,7 @@ final class ComposeViewController: UIViewController, NeedsDependency { // } // } // -// // CustomEmojiPickerView -// let customEmojiPickerInputView: CustomEmojiPickerInputView = { -// let view = CustomEmojiPickerInputView(frame: CGRect(x: 0, y: 0, width: 0, height: 300), inputViewStyle: .keyboard) -// return view -// }() + // // let composeToolbarView = ComposeToolbarView() // var composeToolbarViewBottomLayoutConstraint: NSLayoutConstraint! @@ -107,7 +103,6 @@ final class ComposeViewController: UIViewController, NeedsDependency { // // - deinit { os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s", ((#file as NSString).lastPathComponent), #line, #function) } @@ -225,13 +220,6 @@ extension ComposeViewController { // } // .store(in: &disposeBag) -// customEmojiPickerInputView.collectionView.delegate = self -// viewModel.customEmojiPickerInputViewModel.customEmojiPickerInputView = customEmojiPickerInputView -// viewModel.setupCustomEmojiPickerDiffableDataSource( -// for: customEmojiPickerInputView.collectionView, -// dependency: self -// ) - // viewModel.composeStatusContentTableViewCell.delegate = self // // // update layout when keyboard show/dismiss @@ -350,19 +338,6 @@ extension ComposeViewController { // } // .store(in: &disposeBag) // -// // bind custom emoji picker UI -// viewModel.customEmojiViewModel?.emojis -// .receive(on: DispatchQueue.main) -// .sink(receiveValue: { [weak self] emojis in -// guard let self = self else { return } -// if emojis.isEmpty { -// self.customEmojiPickerInputView.activityIndicatorView.startAnimating() -// } else { -// self.customEmojiPickerInputView.activityIndicatorView.stopAnimating() -// } -// }) -// .store(in: &disposeBag) -// // configureToolbarDisplay(keyboardHasShortcutBar: keyboardHasShortcutBar.value) // Publishers.CombineLatest( // keyboardHasShortcutBar, @@ -694,30 +669,6 @@ extension ComposeViewController { //// MARK: - UITableViewDelegate //extension ComposeViewController: UITableViewDelegate { } -// -//// MARK: - UICollectionViewDelegate -//extension ComposeViewController: UICollectionViewDelegate { -// -// func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) { -// os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s: select %s", ((#file as NSString).lastPathComponent), #line, #function, indexPath.debugDescription) -// -// if collectionView === customEmojiPickerInputView.collectionView { -// guard let diffableDataSource = viewModel.customEmojiPickerDiffableDataSource else { return } -// let item = diffableDataSource.itemIdentifier(for: indexPath) -// guard case let .emoji(attribute) = item else { return } -// let emoji = attribute.emoji -// -// // make click sound -// UIDevice.current.playInputClick() -// -// // retrieve active text input and insert emoji -// // the trailing space is REQUIRED to make regex happy -// _ = viewModel.customEmojiPickerInputViewModel.insertText(":\(emoji.shortcode): ") -// } else { -// // do nothing -// } -// } -//} // MARK: - UIAdaptivePresentationControllerDelegate extension ComposeViewController: UIAdaptivePresentationControllerDelegate { @@ -877,49 +828,7 @@ extension ComposeViewController: UIAdaptivePresentationControllerDelegate { // return true // } //} -// -//// MARK: - AutoCompleteViewControllerDelegate -//extension ComposeViewController: AutoCompleteViewControllerDelegate { -// func autoCompleteViewController(_ viewController: AutoCompleteViewController, didSelectItem item: AutoCompleteItem) { -// guard let info = viewModel.autoCompleteInfo else { return } -// let _replacedText: String? = { -// var text: String -// switch item { -// case .hashtag(let hashtag): -// text = "#" + hashtag.name -// case .hashtagV1(let hashtagName): -// text = "#" + hashtagName -// case .account(let account): -// text = "@" + account.acct -// case .emoji(let emoji): -// text = ":" + emoji.shortcode + ":" -// case .bottomLoader: -// return nil -// } -// return text -// }() -// guard let replacedText = _replacedText else { return } -// guard let text = textEditorView.textView.text else { return } -// -// let range = NSRange(info.toHighlightEndRange, in: text) -// textEditorView.textStorage.replaceCharacters(in: range, with: replacedText) -// DispatchQueue.main.async { -// self.textEditorView.textView.insertText(" ") // trigger textView delegate update -// } -// viewModel.autoCompleteInfo = nil -// -// switch item { -// case .emoji, .bottomLoader: -// break -// default: -// // set selected range except emoji -// let newRange = NSRange(location: range.location + (replacedText as NSString).length, length: 0) -// guard textEditorView.textStorage.length <= newRange.location else { return } -// textEditorView.textView.selectedRange = newRange -// } -// } -//} -// + //extension ComposeViewController { // override var keyCommands: [UIKeyCommand]? { // composeKeyCommands diff --git a/Mastodon/Scene/Compose/ComposeViewModel+DataSource.swift b/Mastodon/Scene/Compose/ComposeViewModel+DataSource.swift index b3d8f52dc..5ecba3791 100644 --- a/Mastodon/Scene/Compose/ComposeViewModel+DataSource.swift +++ b/Mastodon/Scene/Compose/ComposeViewModel+DataSource.swift @@ -51,43 +51,6 @@ extension ComposeViewModel { // // setup data source // tableView.dataSource = self // } -// -// func setupCustomEmojiPickerDiffableDataSource( -// for collectionView: UICollectionView, -// dependency: NeedsDependency -// ) { -// let diffableDataSource = CustomEmojiPickerSection.collectionViewDiffableDataSource( -// for: collectionView, -// dependency: dependency -// ) -// self.customEmojiPickerDiffableDataSource = diffableDataSource -// -// let _domain = customEmojiViewModel?.domain -// customEmojiViewModel?.emojis -// .receive(on: DispatchQueue.main) -// .sink { [weak self, weak diffableDataSource] emojis in -// guard let _ = self else { return } -// guard let diffableDataSource = diffableDataSource else { return } -// -// var snapshot = NSDiffableDataSourceSnapshot() -// let domain = _domain?.uppercased() ?? " " -// let customEmojiSection = CustomEmojiPickerSection.emoji(name: domain) -// snapshot.appendSections([customEmojiSection]) -// let items: [CustomEmojiPickerItem] = { -// var items = [CustomEmojiPickerItem]() -// for emoji in emojis where emoji.visibleInPicker { -// let attribute = CustomEmojiPickerItem.CustomEmojiAttribute(emoji: emoji) -// let item = CustomEmojiPickerItem.emoji(attribute: attribute) -// items.append(item) -// } -// return items -// }() -// snapshot.appendItems(items, toSection: customEmojiSection) -// -// diffableDataSource.apply(snapshot) -// } -// .store(in: &disposeBag) -// } } diff --git a/Mastodon/Scene/Compose/ComposeViewModel.swift b/Mastodon/Scene/Compose/ComposeViewModel.swift index df9f7b710..5e5fbb1c3 100644 --- a/Mastodon/Scene/Compose/ComposeViewModel.swift +++ b/Mastodon/Scene/Compose/ComposeViewModel.swift @@ -102,11 +102,6 @@ final class ComposeViewModel: NSObject { // // for mention: "@ " // var preInsertedContent: String? // -// // custom emojis -// let customEmojiViewModel: EmojiService.CustomEmojiViewModel? -// let customEmojiPickerInputViewModel = CustomEmojiPickerInputViewModel() -// @Published var isLoadingCustomEmoji = false -// // // attachment // @Published var attachmentServices: [MastodonAttachmentService] = [] // diff --git a/MastodonSDK/Sources/MastodonCore/Model/Compose/CustomEmojiPickerItem.swift b/MastodonSDK/Sources/MastodonCore/Model/Compose/CustomEmojiPickerItem.swift index 52f522703..6174f4687 100644 --- a/MastodonSDK/Sources/MastodonCore/Model/Compose/CustomEmojiPickerItem.swift +++ b/MastodonSDK/Sources/MastodonCore/Model/Compose/CustomEmojiPickerItem.swift @@ -8,28 +8,28 @@ import Foundation import MastodonSDK -enum CustomEmojiPickerItem { +public enum CustomEmojiPickerItem { case emoji(attribute: CustomEmojiAttribute) } extension CustomEmojiPickerItem: Equatable, Hashable { } extension CustomEmojiPickerItem { - final class CustomEmojiAttribute: Equatable, Hashable { - let id = UUID() + public final class CustomEmojiAttribute: Equatable, Hashable { + public let id = UUID() - let emoji: Mastodon.Entity.Emoji + public let emoji: Mastodon.Entity.Emoji - init(emoji: Mastodon.Entity.Emoji) { + public init(emoji: Mastodon.Entity.Emoji) { self.emoji = emoji } - static func == (lhs: CustomEmojiPickerItem.CustomEmojiAttribute, rhs: CustomEmojiPickerItem.CustomEmojiAttribute) -> Bool { + public static func == (lhs: CustomEmojiPickerItem.CustomEmojiAttribute, rhs: CustomEmojiPickerItem.CustomEmojiAttribute) -> Bool { return lhs.id == rhs.id && lhs.emoji.shortcode == rhs.emoji.shortcode } - func hash(into hasher: inout Hasher) { + public func hash(into hasher: inout Hasher) { hasher.combine(id) } } diff --git a/MastodonSDK/Sources/MastodonUI/DataSource/CustomEmojiPickerSection+Diffable.swift b/MastodonSDK/Sources/MastodonUI/DataSource/CustomEmojiPickerSection+Diffable.swift index ca3658e95..4c142b532 100644 --- a/MastodonSDK/Sources/MastodonUI/DataSource/CustomEmojiPickerSection+Diffable.swift +++ b/MastodonSDK/Sources/MastodonUI/DataSource/CustomEmojiPickerSection+Diffable.swift @@ -5,55 +5,55 @@ // Created by MainasuK on 22/10/10. // -import Foundation +import UIKit import MastodonCore extension CustomEmojiPickerSection { -// static func collectionViewDiffableDataSource( -// collectionView: UICollectionView, -// dependency: NeedsDependency -// ) -> UICollectionViewDiffableDataSource { -// let dataSource = UICollectionViewDiffableDataSource(collectionView: collectionView) { [weak dependency] collectionView, indexPath, item -> UICollectionViewCell? in -// guard let _ = dependency else { return nil } -// switch item { -// case .emoji(let attribute): -// let cell = collectionView.dequeueReusableCell(withReuseIdentifier: String(describing: CustomEmojiPickerItemCollectionViewCell.self), for: indexPath) as! CustomEmojiPickerItemCollectionViewCell -// let placeholder = UIImage.placeholder(size: CustomEmojiPickerItemCollectionViewCell.itemSize, color: .systemFill) -// .af.imageRounded(withCornerRadius: 4) -// -// let isAnimated = !UserDefaults.shared.preferredStaticEmoji -// let url = URL(string: isAnimated ? attribute.emoji.url : attribute.emoji.staticURL) -// cell.emojiImageView.sd_setImage( -// with: url, -// placeholderImage: placeholder, -// options: [], -// context: nil -// ) -// cell.accessibilityLabel = attribute.emoji.shortcode -// return cell -// } -// } -// -// dataSource.supplementaryViewProvider = { [weak dataSource] collectionView, kind, indexPath -> UICollectionReusableView? in -// guard let dataSource = dataSource else { return nil } -// let sections = dataSource.snapshot().sectionIdentifiers -// guard indexPath.section < sections.count else { return nil } -// let section = sections[indexPath.section] -// -// switch kind { -// case String(describing: CustomEmojiPickerHeaderCollectionReusableView.self): -// let header = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: String(describing: CustomEmojiPickerHeaderCollectionReusableView.self), for: indexPath) as! CustomEmojiPickerHeaderCollectionReusableView -// switch section { -// case .emoji(let name): -// header.titleLabel.text = name -// } -// return header -// default: -// assertionFailure() -// return nil -// } -// } -// -// return dataSource -// } + static func collectionViewDiffableDataSource( + collectionView: UICollectionView, + context: AppContext + ) -> UICollectionViewDiffableDataSource { + let dataSource = UICollectionViewDiffableDataSource(collectionView: collectionView) { [weak context] collectionView, indexPath, item -> UICollectionViewCell? in + guard let _ = context else { return nil } + switch item { + case .emoji(let attribute): + let cell = collectionView.dequeueReusableCell(withReuseIdentifier: String(describing: CustomEmojiPickerItemCollectionViewCell.self), for: indexPath) as! CustomEmojiPickerItemCollectionViewCell + let placeholder = UIImage.placeholder(size: CustomEmojiPickerItemCollectionViewCell.itemSize, color: .systemFill) + .af.imageRounded(withCornerRadius: 4) + + let isAnimated = !UserDefaults.shared.preferredStaticEmoji + let url = URL(string: isAnimated ? attribute.emoji.url : attribute.emoji.staticURL) + cell.emojiImageView.sd_setImage( + with: url, + placeholderImage: placeholder, + options: [], + context: nil + ) + cell.accessibilityLabel = attribute.emoji.shortcode + return cell + } + } + + dataSource.supplementaryViewProvider = { [weak dataSource] collectionView, kind, indexPath -> UICollectionReusableView? in + guard let dataSource = dataSource else { return nil } + let sections = dataSource.snapshot().sectionIdentifiers + guard indexPath.section < sections.count else { return nil } + let section = sections[indexPath.section] + + switch kind { + case String(describing: CustomEmojiPickerHeaderCollectionReusableView.self): + let header = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: String(describing: CustomEmojiPickerHeaderCollectionReusableView.self), for: indexPath) as! CustomEmojiPickerHeaderCollectionReusableView + switch section { + case .emoji(let name): + header.titleLabel.text = name + } + return header + default: + assertionFailure() + return nil + } + } + + return dataSource + } } diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/AutoComplete/AutoCompleteViewModel+State.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/AutoComplete/AutoCompleteViewModel+State.swift index b1f5f3187..7f93c4ba7 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/AutoComplete/AutoCompleteViewModel+State.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/AutoComplete/AutoCompleteViewModel+State.swift @@ -102,7 +102,7 @@ extension AutoCompleteViewModel.State { return } - guard let customEmojiViewModel = viewModel.customEmojiViewModel.value else { + guard let customEmojiViewModel = viewModel.customEmojiViewModel else { await enter(state: Fail.self) return } diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/AutoComplete/AutoCompleteViewModel.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/AutoComplete/AutoCompleteViewModel.swift index 61715cd63..7459f68d1 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/AutoComplete/AutoCompleteViewModel.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/AutoComplete/AutoCompleteViewModel.swift @@ -20,7 +20,7 @@ final class AutoCompleteViewModel { let authContext: AuthContext public let inputText = CurrentValueSubject("") // contains "@" or "#" prefix public let symbolBoundingRect = CurrentValueSubject(.zero) - public let customEmojiViewModel = CurrentValueSubject(nil) + public let customEmojiViewModel: EmojiService.CustomEmojiViewModel? // output public var autoCompleteItems = CurrentValueSubject<[AutoCompleteItem], Never>([]) @@ -40,6 +40,8 @@ final class AutoCompleteViewModel { init(context: AppContext, authContext: AuthContext) { self.context = context self.authContext = authContext + self.customEmojiViewModel = context.emojiService.dequeueCustomEmojiViewModel(for: authContext.mastodonAuthenticationBox.domain) + // end init autoCompleteItems .receive(on: DispatchQueue.main) diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewController.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewController.swift index df7246fa7..54fc6e67a 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewController.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewController.swift @@ -72,6 +72,15 @@ public final class ComposeContentViewController: UIViewController { documentPickerController.delegate = self return documentPickerController }() + + // emoji picker inputView + let customEmojiPickerInputView: CustomEmojiPickerInputView = { + let view = CustomEmojiPickerInputView( + frame: CGRect(x: 0, y: 0, width: 0, height: 300), + inputViewStyle: .keyboard + ) + return view + }() deinit { os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s", ((#file as NSString).lastPathComponent), #line, #function) @@ -83,6 +92,8 @@ extension ComposeContentViewController { public override func viewDidLoad() { super.viewDidLoad() + viewModel.delegate = self + // setup view self.setupBackgroundColor(theme: ThemeService.shared.currentTheme.value) ThemeService.shared.currentTheme @@ -106,6 +117,12 @@ extension ComposeContentViewController { tableView.delegate = self viewModel.setupDataSource(tableView: tableView) + // setup emoji picker + customEmojiPickerInputView.collectionView.delegate = self + viewModel.customEmojiPickerInputViewModel.customEmojiPickerInputView = customEmojiPickerInputView + viewModel.setupCustomEmojiPickerDiffableDataSource(collectionView: customEmojiPickerInputView.collectionView) + + // setup toolbar let toolbarHostingView = UIHostingController(rootView: composeContentToolbarView) toolbarHostingView.view.translatesAutoresizingMaskIntoConstraints = false view.addSubview(toolbarHostingView.view) @@ -128,6 +145,7 @@ extension ComposeContentViewController { view.bottomAnchor.constraint(equalTo: composeContentToolbarBackgroundView.bottomAnchor), ]) + // bind keyboard let keyboardHasShortcutBar = CurrentValueSubject(traitCollection.userInterfaceIdiom == .pad) // update default value later let keyboardEventPublishers = Publishers.CombineLatest3( KeyboardResponderService.shared.isShow, @@ -256,6 +274,19 @@ extension ComposeContentViewController { } .store(in: &disposeBag) + // bind emoji picker + viewModel.customEmojiViewModel?.emojis + .receive(on: DispatchQueue.main) + .sink(receiveValue: { [weak self] emojis in + guard let self = self else { return } + if emojis.isEmpty { + self.customEmojiPickerInputView.activityIndicatorView.startAnimating() + } else { + self.customEmojiPickerInputView.activityIndicatorView.stopAnimating() + } + }) + .store(in: &disposeBag) + // bind toolbar bindToolbarViewModel() } @@ -485,5 +516,115 @@ extension ComposeContentViewController: AutoCompleteViewControllerDelegate { didSelectItem item: AutoCompleteItem ) { logger.log(level: .debug, "\((#file as NSString).lastPathComponent, privacy: .public)[\(#line, privacy: .public)], \(#function, privacy: .public): did select item: \(String(describing: item))") + + guard let info = viewModel.autoCompleteInfo else { return } + guard let metaText = viewModel.contentMetaText else { return } + + let _replacedText: String? = { + var text: String + switch item { + case .hashtag(let hashtag): + text = "#" + hashtag.name + case .hashtagV1(let hashtagName): + text = "#" + hashtagName + case .account(let account): + text = "@" + account.acct + case .emoji(let emoji): + text = ":" + emoji.shortcode + ":" + case .bottomLoader: + return nil + } + return text + }() + guard let replacedText = _replacedText else { return } + guard let text = metaText.textView.text else { return } + + let range = NSRange(info.toHighlightEndRange, in: text) + metaText.textStorage.replaceCharacters(in: range, with: replacedText) + viewModel.autoCompleteInfo = nil + + // set selected range + let newRange = NSRange(location: range.location + (replacedText as NSString).length, length: 0) + guard metaText.textStorage.length <= newRange.location else { return } + metaText.textView.selectedRange = newRange + + // append a space and trigger textView delegate update + DispatchQueue.main.async { + metaText.textView.insertText(" ") + } + } +} + +// MARK: - UICollectionViewDelegate +extension ComposeContentViewController: UICollectionViewDelegate { + + public func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) { + os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s: select %s", ((#file as NSString).lastPathComponent), #line, #function, indexPath.debugDescription) + + switch collectionView { + case customEmojiPickerInputView.collectionView: + guard let diffableDataSource = viewModel.customEmojiPickerDiffableDataSource else { return } + let item = diffableDataSource.itemIdentifier(for: indexPath) + guard case let .emoji(attribute) = item else { return } + let emoji = attribute.emoji + + // make click sound + UIDevice.current.playInputClick() + + // retrieve active text input and insert emoji + // the trailing space is REQUIRED to make regex happy + _ = viewModel.customEmojiPickerInputViewModel.insertText(":\(emoji.shortcode): ") + default: + assertionFailure() + } + } // end func + +} + +// MARK: - ComposeContentViewModelDelegate +extension ComposeContentViewController: ComposeContentViewModelDelegate { + public func composeContentViewModel( + _ viewModel: ComposeContentViewModel, + handleAutoComplete info: ComposeContentViewModel.AutoCompleteInfo + ) -> Bool { + let snapshot = autoCompleteViewController.viewModel.diffableDataSource.snapshot() + guard let item = snapshot.itemIdentifiers.first else { return false } + + // FIXME: redundant code + guard let metaText = viewModel.contentMetaText else { return false } + guard let text = metaText.textView.text else { return false } + let _replacedText: String? = { + var text: String + switch item { + case .hashtag(let hashtag): + text = "#" + hashtag.name + case .hashtagV1(let hashtagName): + text = "#" + hashtagName + case .account(let account): + text = "@" + account.acct + case .emoji(let emoji): + text = ":" + emoji.shortcode + ":" + case .bottomLoader: + return nil + } + return text + }() + guard let replacedText = _replacedText else { return false } + + let range = NSRange(info.toHighlightEndRange, in: text) + metaText.textStorage.replaceCharacters(in: range, with: replacedText) + viewModel.autoCompleteInfo = nil + + // set selected range + let newRange = NSRange(location: range.location + (replacedText as NSString).length, length: 0) + guard metaText.textStorage.length <= newRange.location else { return true } + metaText.textView.selectedRange = newRange + + // append a space and trigger textView delegate update + DispatchQueue.main.async { + metaText.textView.insertText(" ") + } + + return true } } diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel+DataSource.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel+DataSource.swift index 3f6028b56..c8bf3ddc8 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel+DataSource.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel+DataSource.swift @@ -74,6 +74,7 @@ extension ComposeContentViewModel { } } +// MARK: - UITableViewDataSource extension ComposeContentViewModel: UITableViewDataSource { public func numberOfSections(in tableView: UITableView) -> Int { return Section.allCases.count @@ -99,3 +100,42 @@ extension ComposeContentViewModel: UITableViewDataSource { } } } + +extension ComposeContentViewModel { + + func setupCustomEmojiPickerDiffableDataSource( + collectionView: UICollectionView + ) { + let diffableDataSource = CustomEmojiPickerSection.collectionViewDiffableDataSource( + collectionView: collectionView, + context: context + ) + self.customEmojiPickerDiffableDataSource = diffableDataSource + + let domain = authContext.mastodonAuthenticationBox.domain.uppercased() + customEmojiViewModel?.emojis + .receive(on: DispatchQueue.main) + .sink { [weak self, weak diffableDataSource] emojis in + guard let _ = self else { return } + guard let diffableDataSource = diffableDataSource else { return } + + var snapshot = NSDiffableDataSourceSnapshot() + let customEmojiSection = CustomEmojiPickerSection.emoji(name: domain) + snapshot.appendSections([customEmojiSection]) + let items: [CustomEmojiPickerItem] = { + var items = [CustomEmojiPickerItem]() + for emoji in emojis where emoji.visibleInPicker { + let attribute = CustomEmojiPickerItem.CustomEmojiAttribute(emoji: emoji) + let item = CustomEmojiPickerItem.emoji(attribute: attribute) + items.append(item) + } + return items + }() + snapshot.appendItems(items, toSection: customEmojiSection) + + diffableDataSource.apply(snapshot) + } + .store(in: &disposeBag) + } + +} diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel+MetaTextDelegate.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel+MetaTextDelegate.swift index 80cc033e8..8a189739d 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel+MetaTextDelegate.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel+MetaTextDelegate.swift @@ -37,7 +37,7 @@ extension ComposeContentViewModel: MetaTextDelegate { let content = MastodonContent( content: textInput, - emojis: [:] // TODO: emojiViewModel?.emojis.asDictionary ?? [:] + emojis: [:] // customEmojiViewModel?.emojis.value.asDictionary ?? [:] ) let metaContent = MastodonMetaContent.convert(text: content) return metaContent @@ -48,7 +48,7 @@ extension ComposeContentViewModel: MetaTextDelegate { let content = MastodonContent( content: textInput, - emojis: [:] // emojiViewModel?.emojis.asDictionary ?? [:] + emojis: [:] // customEmojiViewModel?.emojis.value.asDictionary ?? [:] ) let metaContent = MastodonMetaContent.convert(text: content) return metaContent diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel+UITextViewDelegate.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel+UITextViewDelegate.swift index 5b5c018e2..cdf322a38 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel+UITextViewDelegate.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel+UITextViewDelegate.swift @@ -64,6 +64,12 @@ extension ComposeContentViewModel: UITextViewDelegate { public func textView(_ textView: UITextView, shouldChangeTextIn range: NSRange, replacementText text: String) -> Bool { switch textView { case contentMetaText?.textView: + if text == " ", let autoCompleteInfo = self.autoCompleteInfo { + assert(delegate != nil) + let isHandled = delegate?.composeContentViewModel(self, handleAutoComplete: autoCompleteInfo) ?? false + return !isHandled + } + return true case contentWarningMetaText?.textView: let isReturn = text == "\n" diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel.swift index bf5143fe2..ad9dfa1d8 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel.swift @@ -15,6 +15,10 @@ import MastodonMeta import MastodonCore import MastodonSDK +public protocol ComposeContentViewModelDelegate: AnyObject { + func composeContentViewModel(_ viewModel: ComposeContentViewModel, handleAutoComplete info: ComposeContentViewModel.AutoCompleteInfo) -> Bool +} + public final class ComposeContentViewModel: NSObject, ObservableObject { let logger = Logger(subsystem: "ComposeContentViewModel", category: "ViewModel") @@ -28,6 +32,7 @@ public final class ComposeContentViewModel: NSObject, ObservableObject { // input let context: AppContext let kind: Kind + weak var delegate: ComposeContentViewModelDelegate? @Published var viewLayoutFrame = ViewLayoutFrame() @@ -38,6 +43,9 @@ public final class ComposeContentViewModel: NSObject, ObservableObject { @Published var autoCompleteRetryLayoutTimes = 0 @Published var autoCompleteInfo: AutoCompleteInfo? = nil + // emoji + var customEmojiPickerDiffableDataSource: UICollectionViewDiffableDataSource? + // output // limit @@ -46,8 +54,8 @@ public final class ComposeContentViewModel: NSObject, ObservableObject { // content public weak var contentMetaText: MetaText? { didSet { -// guard let textView = contentMetaText?.textView else { return } -// customEmojiPickerInputViewModel.configure(textInput: textView) + guard let textView = contentMetaText?.textView else { return } + customEmojiPickerInputViewModel.configure(textInput: textView) } } @Published public var initialContent = "" @@ -60,8 +68,8 @@ public final class ComposeContentViewModel: NSObject, ObservableObject { // content warning weak var contentWarningMetaText: MetaText? { didSet { - //guard let textView = contentWarningMetaText?.textView else { return } - //customEmojiPickerInputViewModel.configure(textInput: textView) + guard let textView = contentWarningMetaText?.textView else { return } + customEmojiPickerInputViewModel.configure(textInput: textView) } } @Published public var isContentWarningActive = false @@ -95,6 +103,9 @@ public final class ComposeContentViewModel: NSObject, ObservableObject { // emoji @Published var isEmojiActive = false + let customEmojiViewModel: EmojiService.CustomEmojiViewModel? + let customEmojiPickerInputViewModel = CustomEmojiPickerInputViewModel() + @Published var isLoadingCustomEmoji = false // visibility @Published var visibility: Mastodon.Entity.Status.Visibility @@ -148,6 +159,9 @@ public final class ComposeContentViewModel: NSObject, ObservableObject { } return visibility }() + self.customEmojiViewModel = context.emojiService.dequeueCustomEmojiViewModel( + for: authContext.mastodonAuthenticationBox.domain + ) super.init() // end init @@ -192,6 +206,10 @@ public final class ComposeContentViewModel: NSObject, ObservableObject { } } .store(in: &disposeBag) + + // bind emoji inputView + $isEmojiActive.assign(to: &customEmojiPickerInputViewModel.$isCustomEmojiComposing) + } deinit { @@ -215,7 +233,7 @@ extension ComposeContentViewModel { } extension ComposeContentViewModel { - struct AutoCompleteInfo { + public struct AutoCompleteInfo { // model let inputText: Substring // range diff --git a/Mastodon/Scene/Compose/CollectionViewCell/CustomEmojiPickerHeaderCollectionReusableView.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/EmojiPicker/CustomEmojiPickerHeaderCollectionReusableView.swift similarity index 100% rename from Mastodon/Scene/Compose/CollectionViewCell/CustomEmojiPickerHeaderCollectionReusableView.swift rename to MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/EmojiPicker/CustomEmojiPickerHeaderCollectionReusableView.swift diff --git a/Mastodon/Scene/Compose/View/CustomEmojiPickerInputView.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/EmojiPicker/CustomEmojiPickerInputView.swift similarity index 100% rename from Mastodon/Scene/Compose/View/CustomEmojiPickerInputView.swift rename to MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/EmojiPicker/CustomEmojiPickerInputView.swift diff --git a/Mastodon/Scene/Compose/View/CustomEmojiPickerInputViewModel.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/EmojiPicker/CustomEmojiPickerInputViewModel.swift similarity index 52% rename from Mastodon/Scene/Compose/View/CustomEmojiPickerInputViewModel.swift rename to MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/EmojiPicker/CustomEmojiPickerInputViewModel.swift index 496c8191b..729524ce5 100644 --- a/Mastodon/Scene/Compose/View/CustomEmojiPickerInputViewModel.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/EmojiPicker/CustomEmojiPickerInputViewModel.swift @@ -9,7 +9,6 @@ import UIKit import Combine import MetaTextKit import MastodonCore -import MastodonUI final class CustomEmojiPickerInputViewModel { @@ -20,8 +19,7 @@ final class CustomEmojiPickerInputViewModel { // input weak var customEmojiPickerInputView: CustomEmojiPickerInputView? - // output - let isCustomEmojiComposing = CurrentValueSubject(false) + @Published var isCustomEmojiComposing = false } @@ -51,27 +49,28 @@ extension CustomEmojiPickerInputViewModel { for reference in customEmojiReplaceableTextInputReferences { guard let textInput = reference.value else { continue } guard textInput.isFirstResponder == true else { continue } - guard let selectedTextRange = textInput.selectedTextRange else { continue } + // guard let selectedTextRange = textInput.selectedTextRange else { continue } textInput.insertText(text) + // FIXME: inline emoji // due to insert text render as attachment // the cursor reset logic not works // hack with hard code +2 offset - assert(text.hasSuffix(": ")) - guard text.hasPrefix(":") && text.hasSuffix(": ") else { continue } - - if let _ = textInput as? MetaTextView { - if let newPosition = textInput.position(from: selectedTextRange.start, offset: 2) { - let newSelectedTextRange = textInput.textRange(from: newPosition, to: newPosition) - textInput.selectedTextRange = newSelectedTextRange - } - } else { - if let newPosition = textInput.position(from: selectedTextRange.start, offset: text.length) { - let newSelectedTextRange = textInput.textRange(from: newPosition, to: newPosition) - textInput.selectedTextRange = newSelectedTextRange - } - } + // assert(text.hasSuffix(": ")) + // guard text.hasPrefix(":") && text.hasSuffix(": ") else { continue } + // + // if let _ = textInput as? MetaTextView { + // if let newPosition = textInput.position(from: selectedTextRange.start, offset: 2) { + // let newSelectedTextRange = textInput.textRange(from: newPosition, to: newPosition) + // textInput.selectedTextRange = newSelectedTextRange + // } + // } else { + // if let newPosition = textInput.position(from: selectedTextRange.start, offset: text.length) { + // let newSelectedTextRange = textInput.textRange(from: newPosition, to: newPosition) + // textInput.selectedTextRange = newSelectedTextRange + // } + // } return reference } @@ -81,3 +80,16 @@ extension CustomEmojiPickerInputViewModel { } +extension CustomEmojiPickerInputViewModel { + public func configure(textInput: CustomEmojiReplaceableTextInput) { + $isCustomEmojiComposing + .receive(on: DispatchQueue.main) + .sink { [weak self] isCustomEmojiComposing in + guard let self = self else { return } + textInput.inputView = isCustomEmojiComposing ? self.customEmojiPickerInputView : nil + textInput.reloadInputViews() + self.append(customEmojiReplaceableTextInput: textInput) + } + .store(in: &disposeBag) + } +} diff --git a/Mastodon/Scene/Compose/CollectionViewCell/CustomEmojiPickerItemCollectionViewCell.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/EmojiPicker/CustomEmojiPickerItemCollectionViewCell.swift similarity index 100% rename from Mastodon/Scene/Compose/CollectionViewCell/CustomEmojiPickerItemCollectionViewCell.swift rename to MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/EmojiPicker/CustomEmojiPickerItemCollectionViewCell.swift diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentView.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentView.swift index 6dad1e19b..e5f9b56be 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentView.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentView.swift @@ -185,7 +185,7 @@ extension ComposeContentView { index: _index, deleteBackwardResponseTextFieldRelayDelegate: viewModel ) { textField in - // viewModel.customEmojiPickerInputViewModel.configure(textInput: textField) + viewModel.customEmojiPickerInputViewModel.configure(textInput: textField) } } if viewModel.maxPollOptionLimit != viewModel.pollOptions.count { From 929a27d572a8e33b913d3bd211628de51bc2499c Mon Sep 17 00:00:00 2001 From: CMK Date: Sun, 13 Nov 2022 22:08:26 +0800 Subject: [PATCH 169/598] feat: [WIP] restore publish button and compose pre-insert content --- Mastodon.xcodeproj/project.pbxproj | 8 - .../Scene/Compose/ComposeViewController.swift | 645 ++---------------- .../Compose/ComposeViewModel+DataSource.swift | 453 ------------ .../ComposeViewModel+PublishState.swift | 164 ----- Mastodon/Scene/Compose/ComposeViewModel.swift | 333 +-------- .../Attachment/AttachmentViewModel.swift | 1 - .../ComposeContentViewController.swift | 90 ++- .../ComposeContentViewModel.swift | 254 ++++++- .../Poll/PollOptionTextField.swift | 2 +- .../ComposeContentToolbarView+ViewModel.swift | 3 + .../ComposeContentToolbarView.swift | 12 + 11 files changed, 401 insertions(+), 1564 deletions(-) delete mode 100644 Mastodon/Scene/Compose/ComposeViewModel+DataSource.swift delete mode 100644 Mastodon/Scene/Compose/ComposeViewModel+PublishState.swift rename MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/{View => Toolbar}/ComposeContentToolbarView+ViewModel.swift (97%) rename MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/{View => Toolbar}/ComposeContentToolbarView.swift (87%) diff --git a/Mastodon.xcodeproj/project.pbxproj b/Mastodon.xcodeproj/project.pbxproj index e3c3c58d3..24d394497 100644 --- a/Mastodon.xcodeproj/project.pbxproj +++ b/Mastodon.xcodeproj/project.pbxproj @@ -253,7 +253,6 @@ DB64BA452851F23000ADF1B7 /* MastodonAuthentication+Fetch.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB64BA442851F23000ADF1B7 /* MastodonAuthentication+Fetch.swift */; }; DB64BA482851F29300ADF1B7 /* Account+Fetch.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB64BA472851F29300ADF1B7 /* Account+Fetch.swift */; }; DB65C63727A2AF6C008BAC2E /* ReportItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB65C63627A2AF6C008BAC2E /* ReportItem.swift */; }; - DB66728C25F9F8DC00D60309 /* ComposeViewModel+DataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB66728B25F9F8DC00D60309 /* ComposeViewModel+DataSource.swift */; }; DB6746EB278ED8B0008A6B94 /* PollOptionView+Configuration.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB6746EA278ED8B0008A6B94 /* PollOptionView+Configuration.swift */; }; DB6746ED278F45F0008A6B94 /* AutoGenerateProtocolRelayDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB6746EC278F45F0008A6B94 /* AutoGenerateProtocolRelayDelegate.swift */; }; DB6746F0278F463B008A6B94 /* AutoGenerateProtocolDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB6746EF278F463B008A6B94 /* AutoGenerateProtocolDelegate.swift */; }; @@ -333,7 +332,6 @@ DB98EB6927B21A7C0082E365 /* ReportResultActionTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB98EB6827B21A7C0082E365 /* ReportResultActionTableViewCell.swift */; }; DB98EB6B27B243470082E365 /* SettingsAppearanceTableViewCell+ViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB98EB6A27B243470082E365 /* SettingsAppearanceTableViewCell+ViewModel.swift */; }; DB9A486C26032AC1008B817C /* AttachmentContainerView+EmptyStateView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB9A486B26032AC1008B817C /* AttachmentContainerView+EmptyStateView.swift */; }; - DB9A488A26034D40008B817C /* ComposeViewModel+PublishState.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB9A488926034D40008B817C /* ComposeViewModel+PublishState.swift */; }; DB9D6BE925E4F5340051B173 /* SearchViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB9D6BE825E4F5340051B173 /* SearchViewController.swift */; }; DB9D6BF825E4F5690051B173 /* NotificationViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB9D6BF725E4F5690051B173 /* NotificationViewController.swift */; }; DB9D6BFF25E4F5940051B173 /* ProfileViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB9D6BFE25E4F5940051B173 /* ProfileViewController.swift */; }; @@ -811,7 +809,6 @@ DB64BA442851F23000ADF1B7 /* MastodonAuthentication+Fetch.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "MastodonAuthentication+Fetch.swift"; sourceTree = ""; }; DB64BA472851F29300ADF1B7 /* Account+Fetch.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Account+Fetch.swift"; sourceTree = ""; }; DB65C63627A2AF6C008BAC2E /* ReportItem.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ReportItem.swift; sourceTree = ""; }; - DB66728B25F9F8DC00D60309 /* ComposeViewModel+DataSource.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "ComposeViewModel+DataSource.swift"; sourceTree = ""; }; DB6746EA278ED8B0008A6B94 /* PollOptionView+Configuration.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "PollOptionView+Configuration.swift"; sourceTree = ""; }; DB6746EC278F45F0008A6B94 /* AutoGenerateProtocolRelayDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AutoGenerateProtocolRelayDelegate.swift; sourceTree = ""; }; DB6746EF278F463B008A6B94 /* AutoGenerateProtocolDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AutoGenerateProtocolDelegate.swift; sourceTree = ""; }; @@ -903,7 +900,6 @@ DB98EB6827B21A7C0082E365 /* ReportResultActionTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ReportResultActionTableViewCell.swift; sourceTree = ""; }; DB98EB6A27B243470082E365 /* SettingsAppearanceTableViewCell+ViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "SettingsAppearanceTableViewCell+ViewModel.swift"; sourceTree = ""; }; DB9A486B26032AC1008B817C /* AttachmentContainerView+EmptyStateView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "AttachmentContainerView+EmptyStateView.swift"; sourceTree = ""; }; - DB9A488926034D40008B817C /* ComposeViewModel+PublishState.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "ComposeViewModel+PublishState.swift"; sourceTree = ""; }; DB9D6BE825E4F5340051B173 /* SearchViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SearchViewController.swift; sourceTree = ""; }; DB9D6BF725E4F5690051B173 /* NotificationViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NotificationViewController.swift; sourceTree = ""; }; DB9D6BFE25E4F5940051B173 /* ProfileViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProfileViewController.swift; sourceTree = ""; }; @@ -2134,8 +2130,6 @@ DB789A2125F9F76D0071ACA0 /* CollectionViewCell */, DB789A0A25F9F2950071ACA0 /* ComposeViewController.swift */, DB789A1125F9F2CC0071ACA0 /* ComposeViewModel.swift */, - DB66728B25F9F8DC00D60309 /* ComposeViewModel+DataSource.swift */, - DB9A488926034D40008B817C /* ComposeViewModel+PublishState.swift */, ); path = Compose; sourceTree = ""; @@ -3183,7 +3177,6 @@ 0F1E2D0B2615C39400C38565 /* DoubleTitleLabelNavigationBarTitleView.swift in Sources */, DBDFF1902805543100557A48 /* DiscoveryPostsViewController.swift in Sources */, DB697DD9278F4CED004EF2F7 /* HomeTimelineViewController+DataSourceProvider.swift in Sources */, - DB9A488A26034D40008B817C /* ComposeViewModel+PublishState.swift in Sources */, DB45FAD725CA6C76005A8AC7 /* UIBarButtonItem.swift in Sources */, 2D8434F525FF465D00EECE90 /* HomeTimelineNavigationBarTitleViewModel.swift in Sources */, DB938F0F2624119800E5B6C1 /* ThreadViewModel+LoadThreadState.swift in Sources */, @@ -3285,7 +3278,6 @@ DB63F7492799126300455B82 /* FollowerListViewController+DataSourceProvider.swift in Sources */, 2D198643261BF09500F0B013 /* SearchResultItem.swift in Sources */, 2DAC9E38262FC2320062E1A6 /* SuggestionAccountViewController.swift in Sources */, - DB66728C25F9F8DC00D60309 /* ComposeViewModel+DataSource.swift in Sources */, DB6180E02639194B0018D199 /* MediaPreviewPagingViewController.swift in Sources */, DBE0822425CD3F1E00FD6BBD /* MastodonRegisterViewModel.swift in Sources */, 5B90C45E262599800002E742 /* SettingsViewModel.swift in Sources */, diff --git a/Mastodon/Scene/Compose/ComposeViewController.swift b/Mastodon/Scene/Compose/ComposeViewController.swift index f23e44e5f..33eabd721 100644 --- a/Mastodon/Scene/Compose/ComposeViewController.swift +++ b/Mastodon/Scene/Compose/ComposeViewController.swift @@ -86,22 +86,6 @@ final class ComposeViewController: UIViewController, NeedsDependency { publishButton.setBackgroundImage(.placeholder(color: Asset.Colors.Button.disabled.color), for: .disabled) publishButton.setTitleColor(Asset.Colors.Label.primaryReverse.color, for: .normal) } - -// var systemKeyboardHeight: CGFloat = .zero { -// didSet { -// // note: some system AutoLayout warning here -// let height = max(300, systemKeyboardHeight) -// customEmojiPickerInputView.frame.size.height = height -// } -// } -// - -// -// let composeToolbarView = ComposeToolbarView() -// var composeToolbarViewBottomLayoutConstraint: NSLayoutConstraint! -// let composeToolbarBackgroundView = UIView() -// -// deinit { os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s", ((#file as NSString).lastPathComponent), #line, #function) @@ -155,132 +139,30 @@ extension ComposeViewController { ]) composeContentViewController.didMove(toParent: self) -// configureNavigationBarTitleStyle() -// viewModel.traitCollectionDidChangePublisher -// .receive(on: DispatchQueue.main) -// .sink { [weak self] _ in -// guard let self = self else { return } -// self.configureNavigationBarTitleStyle() -// } -// .store(in: &disposeBag) -// -// viewModel.$title -// .receive(on: DispatchQueue.main) -// .sink { [weak self] title in -// guard let self = self else { return } -// self.title = title -// } -// .store(in: &disposeBag) -// -// composeToolbarView.translatesAutoresizingMaskIntoConstraints = false -// view.addSubview(composeToolbarView) -// composeToolbarViewBottomLayoutConstraint = view.bottomAnchor.constraint(equalTo: composeToolbarView.bottomAnchor) -// NSLayoutConstraint.activate([ -// composeToolbarView.leadingAnchor.constraint(equalTo: view.leadingAnchor), -// composeToolbarView.trailingAnchor.constraint(equalTo: view.trailingAnchor), -// composeToolbarViewBottomLayoutConstraint, -// composeToolbarView.heightAnchor.constraint(equalToConstant: ComposeToolbarView.toolbarHeight), -// ]) -// composeToolbarView.preservesSuperviewLayoutMargins = true -// composeToolbarView.delegate = self -// -// composeToolbarBackgroundView.translatesAutoresizingMaskIntoConstraints = false -// view.insertSubview(composeToolbarBackgroundView, belowSubview: composeToolbarView) -// NSLayoutConstraint.activate([ -// composeToolbarBackgroundView.topAnchor.constraint(equalTo: composeToolbarView.topAnchor), -// composeToolbarBackgroundView.leadingAnchor.constraint(equalTo: composeToolbarView.leadingAnchor), -// composeToolbarBackgroundView.trailingAnchor.constraint(equalTo: composeToolbarView.trailingAnchor), -// view.bottomAnchor.constraint(equalTo: composeToolbarBackgroundView.bottomAnchor), -// ]) + // bind navigation bar style + configureNavigationBarTitleStyle() + viewModel.traitCollectionDidChangePublisher + .receive(on: DispatchQueue.main) + .sink { [weak self] _ in + guard let self = self else { return } + self.configureNavigationBarTitleStyle() + } + .store(in: &disposeBag) -// tableView.delegate = self -// viewModel.setupDataSource( -// tableView: tableView, -// metaTextDelegate: self, -// metaTextViewDelegate: self, -// customEmojiPickerInputViewModel: viewModel.customEmojiPickerInputViewModel, -// composeStatusAttachmentCollectionViewCellDelegate: self, -// composeStatusPollOptionCollectionViewCellDelegate: self, -// composeStatusPollOptionAppendEntryCollectionViewCellDelegate: self, -// composeStatusPollExpiresOptionCollectionViewCellDelegate: self -// ) + // bind title + viewModel.$title + .receive(on: DispatchQueue.main) + .sink { [weak self] title in + guard let self = self else { return } + self.title = title + } + .store(in: &disposeBag) -// viewModel.composeStatusAttribute.$composeContent -// .removeDuplicates() -// .receive(on: DispatchQueue.main) -// .sink { [weak self] _ in -// guard let self = self else { return } -// guard self.view.window != nil else { return } -// UIView.performWithoutAnimation { -// self.tableView.beginUpdates() -// self.tableView.setNeedsLayout() -// self.tableView.layoutIfNeeded() -// self.tableView.endUpdates() -// } -// } -// .store(in: &disposeBag) - -// viewModel.composeStatusContentTableViewCell.delegate = self -// -// // update layout when keyboard show/dismiss -// view.layoutIfNeeded() -// -// // bind publish bar button state -// viewModel.$isPublishBarButtonItemEnabled -// .receive(on: DispatchQueue.main) -// .assign(to: \.isEnabled, on: publishButton) -// .store(in: &disposeBag) -// -// // bind media button toolbar state -// viewModel.$isMediaToolbarButtonEnabled -// .receive(on: DispatchQueue.main) -// .sink { [weak self] isMediaToolbarButtonEnabled in -// guard let self = self else { return } -// self.composeToolbarView.mediaBarButtonItem.isEnabled = isMediaToolbarButtonEnabled -// self.composeToolbarView.mediaButton.isEnabled = isMediaToolbarButtonEnabled -// } -// .store(in: &disposeBag) -// -// // bind poll button toolbar state -// viewModel.$isPollToolbarButtonEnabled -// .receive(on: DispatchQueue.main) -// .sink { [weak self] isPollToolbarButtonEnabled in -// guard let self = self else { return } -// self.composeToolbarView.pollBarButtonItem.isEnabled = isPollToolbarButtonEnabled -// self.composeToolbarView.pollButton.isEnabled = isPollToolbarButtonEnabled -// } -// .store(in: &disposeBag) -// -// Publishers.CombineLatest( -// viewModel.$isPollComposing, -// viewModel.$isPollToolbarButtonEnabled -// ) -// .receive(on: DispatchQueue.main) -// .sink { [weak self] isPollComposing, isPollToolbarButtonEnabled in -// guard let self = self else { return } -// guard isPollToolbarButtonEnabled else { -// let accessibilityLabel = L10n.Scene.Compose.Accessibility.appendPoll -// self.composeToolbarView.pollBarButtonItem.accessibilityLabel = accessibilityLabel -// self.composeToolbarView.pollButton.accessibilityLabel = accessibilityLabel -// return -// } -// let accessibilityLabel = isPollComposing ? L10n.Scene.Compose.Accessibility.removePoll : L10n.Scene.Compose.Accessibility.appendPoll -// self.composeToolbarView.pollBarButtonItem.accessibilityLabel = accessibilityLabel -// self.composeToolbarView.pollButton.accessibilityLabel = accessibilityLabel -// } -// .store(in: &disposeBag) -// -// // bind image picker toolbar state -// viewModel.$attachmentServices -// .receive(on: DispatchQueue.main) -// .sink { [weak self] attachmentServices in -// guard let self = self else { return } -// let isEnabled = attachmentServices.count < self.viewModel.maxMediaAttachments -// self.composeToolbarView.mediaBarButtonItem.isEnabled = isEnabled -// self.composeToolbarView.mediaButton.isEnabled = isEnabled -// self.resetImagePicker() -// } -// .store(in: &disposeBag) + // bind publish bar button state + composeContentViewModel.$isPublishBarButtonItemEnabled + .receive(on: DispatchQueue.main) + .assign(to: \.isEnabled, on: publishButton) + .store(in: &disposeBag) // // // bind content warning button state // viewModel.$isContentWarningComposing @@ -292,72 +174,7 @@ extension ComposeViewController { // self.composeToolbarView.contentWarningButton.accessibilityLabel = accessibilityLabel // } // .store(in: &disposeBag) -// -// // bind visibility toolbar UI -// Publishers.CombineLatest( -// viewModel.$selectedStatusVisibility, -// viewModel.traitCollectionDidChangePublisher -// ) -// .receive(on: DispatchQueue.main) -// .sink { [weak self] type, _ in -// guard let self = self else { return } -// let image = type.image(interfaceStyle: self.traitCollection.userInterfaceStyle) -// self.composeToolbarView.visibilityBarButtonItem.image = image -// self.composeToolbarView.visibilityButton.setImage(image, for: .normal) -// self.composeToolbarView.activeVisibilityType.value = type -// } -// .store(in: &disposeBag) -// -// viewModel.$characterCount -// .receive(on: DispatchQueue.main) -// .sink { [weak self] characterCount in -// guard let self = self else { return } -// let count = self.viewModel.composeContentLimit - characterCount -// self.composeToolbarView.characterCountLabel.text = "\(count)" -// self.characterCountLabel.text = "\(count)" -// let font: UIFont -// let textColor: UIColor -// let accessibilityLabel: String -// switch count { -// case _ where count < 0: -// font = .monospacedDigitSystemFont(ofSize: 24, weight: .bold) -// textColor = Asset.Colors.danger.color -// accessibilityLabel = L10n.A11y.Plural.Count.inputLimitExceeds(abs(count)) -// default: -// font = .monospacedDigitSystemFont(ofSize: 15, weight: .regular) -// textColor = Asset.Colors.Label.secondary.color -// accessibilityLabel = L10n.A11y.Plural.Count.inputLimitRemains(count) -// } -// self.composeToolbarView.characterCountLabel.font = font -// self.composeToolbarView.characterCountLabel.textColor = textColor -// self.composeToolbarView.characterCountLabel.accessibilityLabel = accessibilityLabel -// self.characterCountLabel.font = font -// self.characterCountLabel.textColor = textColor -// self.characterCountLabel.accessibilityLabel = accessibilityLabel -// self.characterCountLabel.sizeToFit() -// } -// .store(in: &disposeBag) -// -// configureToolbarDisplay(keyboardHasShortcutBar: keyboardHasShortcutBar.value) -// Publishers.CombineLatest( -// keyboardHasShortcutBar, -// viewModel.traitCollectionDidChangePublisher -// ) -// .receive(on: DispatchQueue.main) -// .sink { [weak self] keyboardHasShortcutBar, _ in -// guard let self = self else { return } -// self.configureToolbarDisplay(keyboardHasShortcutBar: keyboardHasShortcutBar) -// } -// .store(in: &disposeBag) - } - - override func viewWillAppear(_ animated: Bool) { - super.viewWillAppear(animated) - -// // update MetaText without trigger call underlaying `UITextStorage.processEditing` -// _ = textEditorView.processEditing(textEditorView.textStorage) - -// markTextEditorViewBecomeFirstResponser() + } override func viewDidAppear(_ animated: Bool) { @@ -369,102 +186,27 @@ extension ComposeViewController { override func traitCollectionDidChange(_ previousTraitCollection: UITraitCollection?) { super.traitCollectionDidChange(previousTraitCollection) -// configurePublishButtonApperance() -// viewModel.traitCollectionDidChangePublisher.send() + configurePublishButtonApperance() + viewModel.traitCollectionDidChangePublisher.send() } } -//extension ComposeViewController { -// -// private var textEditorView: MetaText { -// return viewModel.composeStatusContentTableViewCell.metaText -// } -// -// private func markTextEditorViewBecomeFirstResponser() { -// textEditorView.textView.becomeFirstResponder() -// } -// -// private func contentWarningEditorTextView() -> UITextView? { -// viewModel.composeStatusContentTableViewCell.statusContentWarningEditorView.textView -// } -// -// private func pollOptionCollectionViewCell(of item: ComposeStatusPollItem) -> ComposeStatusPollOptionCollectionViewCell? { -// guard case .pollOption = item else { return nil } -// guard let dataSource = viewModel.composeStatusPollTableViewCell.dataSource else { return nil } -// guard let indexPath = dataSource.indexPath(for: item), -// let cell = viewModel.composeStatusPollTableViewCell.collectionView.cellForItem(at: indexPath) as? ComposeStatusPollOptionCollectionViewCell else { -// return nil -// } -// -// return cell -// } -// -// private func firstPollOptionCollectionViewCell() -> ComposeStatusPollOptionCollectionViewCell? { -// guard let dataSource = viewModel.composeStatusPollTableViewCell.dataSource else { return nil } -// let items = dataSource.snapshot().itemIdentifiers(inSection: .main) -// let firstPollItem = items.first { item -> Bool in -// guard case .pollOption = item else { return false } -// return true -// } -// -// guard let item = firstPollItem else { -// return nil -// } -// -// return pollOptionCollectionViewCell(of: item) -// } -// -// private func lastPollOptionCollectionViewCell() -> ComposeStatusPollOptionCollectionViewCell? { -// guard let dataSource = viewModel.composeStatusPollTableViewCell.dataSource else { return nil } -// let items = dataSource.snapshot().itemIdentifiers(inSection: .main) -// let lastPollItem = items.last { item -> Bool in -// guard case .pollOption = item else { return false } -// return true -// } -// -// guard let item = lastPollItem else { -// return nil -// } -// -// return pollOptionCollectionViewCell(of: item) -// } -// -// private func markFirstPollOptionCollectionViewCellBecomeFirstResponser() { -// guard let cell = firstPollOptionCollectionViewCell() else { return } -// cell.pollOptionView.optionTextField.becomeFirstResponder() -// } -// -// private func markLastPollOptionCollectionViewCellBecomeFirstResponser() { -// guard let cell = lastPollOptionCollectionViewCell() else { return } -// cell.pollOptionView.optionTextField.becomeFirstResponder() -// } -// -// private func showDismissConfirmAlertController() { -// let alertController = UIAlertController(title: nil, message: nil, preferredStyle: .actionSheet) -// let discardAction = UIAlertAction(title: L10n.Common.Controls.Actions.discard, style: .destructive) { [weak self] _ in -// guard let self = self else { return } -// self.dismiss(animated: true, completion: nil) -// } -// alertController.addAction(discardAction) -// let cancelAction = UIAlertAction(title: L10n.Common.Controls.Actions.cancel, style: .cancel) -// alertController.addAction(cancelAction) -// alertController.popoverPresentationController?.barButtonItem = cancelBarButtonItem -// present(alertController, animated: true, completion: nil) -// } -// -// private func resetImagePicker() { -// let selectionLimit = max(1, viewModel.maxMediaAttachments - viewModel.attachmentServices.count) -// let configuration = ComposeViewController.createPhotoLibraryPickerConfiguration(selectionLimit: selectionLimit) -// photoLibraryPicker = createImagePicker(configuration: configuration) -// } -// -// private func createImagePicker(configuration: PHPickerConfiguration) -> PHPickerViewController { -// let imagePicker = PHPickerViewController(configuration: configuration) -// imagePicker.delegate = self -// return imagePicker -// } -// +extension ComposeViewController { + + private func showDismissConfirmAlertController() { + let alertController = UIAlertController(title: nil, message: nil, preferredStyle: .actionSheet) + let discardAction = UIAlertAction(title: L10n.Common.Controls.Actions.discard, style: .destructive) { [weak self] _ in + guard let self = self else { return } + self.dismiss(animated: true, completion: nil) + } + alertController.addAction(discardAction) + let cancelAction = UIAlertAction(title: L10n.Common.Controls.Actions.cancel, style: .cancel) + alertController.addAction(cancelAction) + alertController.popoverPresentationController?.barButtonItem = cancelBarButtonItem + present(alertController, animated: true, completion: nil) + } + // private func setupBackgroundColor(theme: Theme) { // let backgroundColor = UIColor(dynamicProvider: { traitCollection in // switch traitCollection.userInterfaceStyle { @@ -503,46 +245,40 @@ extension ComposeViewController { // } // } // -// private func configureNavigationBarTitleStyle() { -// switch traitCollection.userInterfaceIdiom { -// case .pad: -// navigationController?.navigationBar.prefersLargeTitles = traitCollection.horizontalSizeClass == .regular -// default: -// break -// } -// } -// -//} -// + private func configureNavigationBarTitleStyle() { + switch traitCollection.userInterfaceIdiom { + case .pad: + navigationController?.navigationBar.prefersLargeTitles = traitCollection.horizontalSizeClass == .regular + default: + break + } + } + +} + extension ComposeViewController { @objc private func cancelBarButtonItemPressed(_ sender: UIBarButtonItem) { logger.log(level: .debug, "\((#file as NSString).lastPathComponent, privacy: .public)[\(#line, privacy: .public)], \(#function, privacy: .public)") -// guard viewModel.shouldDismiss else { -// showDismissConfirmAlertController() -// return -// } + guard composeContentViewModel.shouldDismiss else { + showDismissConfirmAlertController() + return + } dismiss(animated: true, completion: nil) } @objc private func publishBarButtonItemPressed(_ sender: UIBarButtonItem) { os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s", ((#file as NSString).lastPathComponent), #line, #function) -// do { -// try viewModel.checkAttachmentPrecondition() -// } catch { -// let alertController = UIAlertController(for: error, title: nil, preferredStyle: .alert) -// let okAction = UIAlertAction(title: L10n.Common.Controls.Actions.ok, style: .default, handler: nil) -// alertController.addAction(okAction) -// coordinator.present(scene: .alertController(alertController: alertController), from: nil, transition: .alertController(animated: true, completion: nil)) -// return -// } -// guard viewModel.publishStateMachine.enter(ComposeViewModel.PublishState.Publishing.self) else { -// // TODO: handle error -// return -// } - - // context.statusPublishService.publish(composeViewModel: viewModel) + do { + try composeContentViewModel.checkAttachmentPrecondition() + } catch { + let alertController = UIAlertController(for: error, title: nil, preferredStyle: .alert) + let okAction = UIAlertAction(title: L10n.Common.Controls.Actions.ok, style: .default, handler: nil) + alertController.addAction(okAction) + coordinator.present(scene: .alertController(alertController: alertController), from: nil, transition: .alertController(animated: true, completion: nil)) + return + } do { let statusPublisher = try composeContentViewModel.statusPublisher() @@ -565,111 +301,6 @@ extension ComposeViewController { } -//// MARK: - MetaTextDelegate -//extension ComposeViewController: MetaTextDelegate { -// func metaText(_ metaText: MetaText, processEditing textStorage: MetaTextStorage) -> MetaContent? { -// let string = metaText.textStorage.string -// let content = MastodonContent( -// content: string, -// emojis: viewModel.customEmojiViewModel?.emojiMapping.value ?? [:] -// ) -// let metaContent = MastodonMetaContent.convert(text: content) -// return metaContent -// } -//} -// -//// MARK: - UITextViewDelegate -//extension ComposeViewController: UITextViewDelegate { -// -// func textViewShouldBeginEditing(_ textView: UITextView) -> Bool { -// setupInputAssistantItem(item: textView.inputAssistantItem) -// return true -// } -// - -// - -// - -// -// func textView(_ textView: UITextView, shouldInteractWith URL: URL, in characterRange: NSRange, interaction: UITextItemInteraction) -> Bool { -// switch textView { -// case textEditorView.textView: -// return false -// default: -// return true -// } -// } -// -// func textView(_ textView: UITextView, shouldInteractWith textAttachment: NSTextAttachment, in characterRange: NSRange, interaction: UITextItemInteraction) -> Bool { -// switch textView { -// case textEditorView.textView: -// return false -// default: -// return true -// } -// } -// -//} -// -//// MARK: - ComposeToolbarViewDelegate -//extension ComposeViewController: ComposeToolbarViewDelegate { - -// func composeToolbarView(_ composeToolbarView: ComposeToolbarView, pollButtonDidPressed sender: Any) { -// // toggle poll composing state -// viewModel.isPollComposing.toggle() -// -// // cancel custom picker input -// viewModel.isCustomEmojiComposing = false -// -// // setup initial poll option if needs -// if viewModel.isPollComposing, viewModel.pollOptionAttributes.isEmpty { -// viewModel.pollOptionAttributes = [ComposeStatusPollItem.PollOptionAttribute(), ComposeStatusPollItem.PollOptionAttribute()] -// } -// -// if viewModel.isPollComposing { -// // Magic RunLoop -// DispatchQueue.main.async { -// self.markFirstPollOptionCollectionViewCellBecomeFirstResponser() -// } -// } else { -// markTextEditorViewBecomeFirstResponser() -// } -// } -// -// func composeToolbarView(_ composeToolbarView: ComposeToolbarView, emojiButtonDidPressed sender: Any) { -// viewModel.isCustomEmojiComposing.toggle() -// } -// -// func composeToolbarView(_ composeToolbarView: ComposeToolbarView, contentWarningButtonDidPressed sender: Any) { -// // cancel custom picker input -// viewModel.isCustomEmojiComposing = false -// -// // restore first responder for text editor when content warning dismiss -// if viewModel.isContentWarningComposing { -// if contentWarningEditorTextView()?.isFirstResponder == true { -// markTextEditorViewBecomeFirstResponser() -// } -// } -// -// // toggle composing status -// viewModel.isContentWarningComposing.toggle() -// -// // active content warning after toggled -// if viewModel.isContentWarningComposing { -// contentWarningEditorTextView()?.becomeFirstResponder() -// } -// } -// -// func composeToolbarView(_ composeToolbarView: ComposeToolbarView, visibilityButtonDidPressed sender: Any, visibilitySelectionType type: ComposeToolbarView.VisibilitySelectionType) { -// viewModel.selectedStatusVisibility = type -// } -// -//} - -//// MARK: - UITableViewDelegate -//extension ComposeViewController: UITableViewDelegate { } - // MARK: - UIAdaptivePresentationControllerDelegate extension ComposeViewController: UIAdaptivePresentationControllerDelegate { @@ -681,15 +312,15 @@ extension ComposeViewController: UIAdaptivePresentationControllerDelegate { return .pageSheet } } - -// func presentationControllerShouldDismiss(_ presentationController: UIPresentationController) -> Bool { -// return viewModel.shouldDismiss -// } -// func presentationControllerDidAttemptToDismiss(_ presentationController: UIPresentationController) { -// os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s", ((#file as NSString).lastPathComponent), #line, #function) -// showDismissConfirmAlertController() -// } + func presentationControllerShouldDismiss(_ presentationController: UIPresentationController) -> Bool { + return composeContentViewModel.shouldDismiss + } + + func presentationControllerDidAttemptToDismiss(_ presentationController: UIPresentationController) { + os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s", ((#file as NSString).lastPathComponent), #line, #function) + showDismissConfirmAlertController() + } func presentationControllerDidDismiss(_ presentationController: UIPresentationController) { os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s", ((#file as NSString).lastPathComponent), #line, #function) @@ -697,138 +328,6 @@ extension ComposeViewController: UIAdaptivePresentationControllerDelegate { } -//// MARK: - ComposeStatusAttachmentTableViewCellDelegate -//extension ComposeViewController: ComposeStatusAttachmentCollectionViewCellDelegate { -// -// func composeStatusAttachmentCollectionViewCell(_ cell: ComposeStatusAttachmentCollectionViewCell, removeButtonDidPressed button: UIButton) { -// guard let diffableDataSource = viewModel.composeStatusAttachmentTableViewCell.dataSource else { return } -// guard let indexPath = viewModel.composeStatusAttachmentTableViewCell.collectionView.indexPath(for: cell) else { return } -// guard let item = diffableDataSource.itemIdentifier(for: indexPath) else { return } -// guard case let .attachment(attachmentService) = item else { return } -// -// var attachmentServices = viewModel.attachmentServices -// guard let index = attachmentServices.firstIndex(of: attachmentService) else { return } -// let removedItem = attachmentServices[index] -// attachmentServices.remove(at: index) -// viewModel.attachmentServices = attachmentServices -// -// // cancel task -// removedItem.disposeBag.removeAll() -// } -// -//} -// -//// MARK: - ComposeStatusPollOptionCollectionViewCellDelegate -//extension ComposeViewController: ComposeStatusPollOptionCollectionViewCellDelegate { -// -// func composeStatusPollOptionCollectionViewCell(_ cell: ComposeStatusPollOptionCollectionViewCell, textFieldDidBeginEditing textField: UITextField) { -// -// setupInputAssistantItem(item: textField.inputAssistantItem) -// -// // FIXME: make poll section visible -// // DispatchQueue.main.async { -// // self.collectionView.scroll(to: .bottom, animated: true) -// // } -// } -// -// -// // handle delete backward event for poll option input -// func composeStatusPollOptionCollectionViewCell(_ cell: ComposeStatusPollOptionCollectionViewCell, textBeforeDeleteBackward text: String?) { -// guard (text ?? "").isEmpty else { return } -// guard let dataSource = viewModel.composeStatusPollTableViewCell.dataSource else { return } -// guard let indexPath = viewModel.composeStatusPollTableViewCell.collectionView.indexPath(for: cell) else { return } -// guard let item = dataSource.itemIdentifier(for: indexPath) else { return } -// guard case let .pollOption(attribute) = item else { return } -// -// var pollAttributes = viewModel.pollOptionAttributes -// guard let index = pollAttributes.firstIndex(of: attribute) else { return } -// -// // mark previous (fallback to next) item of removed middle poll option become first responder -// let pollItems = dataSource.snapshot().itemIdentifiers(inSection: .main) -// if let indexOfItem = pollItems.firstIndex(of: item), index > 0 { -// func cellBeforeRemoved() -> ComposeStatusPollOptionCollectionViewCell? { -// guard index > 0 else { return nil } -// let indexBeforeRemoved = pollItems.index(before: indexOfItem) -// let itemBeforeRemoved = pollItems[indexBeforeRemoved] -// return pollOptionCollectionViewCell(of: itemBeforeRemoved) -// } -// -// func cellAfterRemoved() -> ComposeStatusPollOptionCollectionViewCell? { -// guard index < pollItems.count - 1 else { return nil } -// let indexAfterRemoved = pollItems.index(after: index) -// let itemAfterRemoved = pollItems[indexAfterRemoved] -// return pollOptionCollectionViewCell(of: itemAfterRemoved) -// } -// -// var cell: ComposeStatusPollOptionCollectionViewCell? = cellBeforeRemoved() -// if cell == nil { -// cell = cellAfterRemoved() -// } -// cell?.pollOptionView.optionTextField.becomeFirstResponder() -// } -// -// guard pollAttributes.count > 2 else { -// return -// } -// pollAttributes.remove(at: index) -// -// // update data source -// viewModel.pollOptionAttributes = pollAttributes -// } -// -// // handle keyboard return event for poll option input -// func composeStatusPollOptionCollectionViewCell(_ cell: ComposeStatusPollOptionCollectionViewCell, pollOptionTextFieldDidReturn: UITextField) { -// guard let dataSource = viewModel.composeStatusPollTableViewCell.dataSource else { return } -// guard let indexPath = viewModel.composeStatusPollTableViewCell.collectionView.indexPath(for: cell) else { return } -// let pollItems = dataSource.snapshot().itemIdentifiers(inSection: .main).filter { item in -// guard case .pollOption = item else { return false } -// return true -// } -// guard let item = dataSource.itemIdentifier(for: indexPath) else { return } -// guard let index = pollItems.firstIndex(of: item) else { return } -// -// if index == pollItems.count - 1 { -// // is the last -// viewModel.createNewPollOptionIfPossible() -// DispatchQueue.main.async { -// self.markLastPollOptionCollectionViewCellBecomeFirstResponser() -// } -// } else { -// // not the last -// let indexAfter = pollItems.index(after: index) -// let itemAfter = pollItems[indexAfter] -// let cell = pollOptionCollectionViewCell(of: itemAfter) -// cell?.pollOptionView.optionTextField.becomeFirstResponder() -// } -// } -// -//} -// -//// MARK: - ComposeStatusPollOptionAppendEntryCollectionViewCellDelegate -//extension ComposeViewController: ComposeStatusPollOptionAppendEntryCollectionViewCellDelegate { -// func composeStatusPollOptionAppendEntryCollectionViewCellDidPressed(_ cell: ComposeStatusPollOptionAppendEntryCollectionViewCell) { -// viewModel.createNewPollOptionIfPossible() -// DispatchQueue.main.async { -// self.markLastPollOptionCollectionViewCellBecomeFirstResponser() -// } -// } -//} -// -//// MARK: - ComposeStatusPollExpiresOptionCollectionViewCellDelegate -//extension ComposeViewController: ComposeStatusPollExpiresOptionCollectionViewCellDelegate { -// func composeStatusPollExpiresOptionCollectionViewCell(_ cell: ComposeStatusPollExpiresOptionCollectionViewCell, didSelectExpiresOption expiresOption: ComposeStatusPollItem.PollExpiresOptionAttribute.ExpiresOption) { -// viewModel.pollExpiresOptionAttribute.expiresOption.value = expiresOption -// } -//} -// -//// MARK: - ComposeStatusContentTableViewCellDelegate -//extension ComposeViewController: ComposeStatusContentTableViewCellDelegate { -// func composeStatusContentTableViewCell(_ cell: ComposeStatusContentTableViewCell, textViewShouldBeginEditing textView: UITextView) -> Bool { -// setupInputAssistantItem(item: textView.inputAssistantItem) -// return true -// } -//} - //extension ComposeViewController { // override var keyCommands: [UIKeyCommand]? { // composeKeyCommands diff --git a/Mastodon/Scene/Compose/ComposeViewModel+DataSource.swift b/Mastodon/Scene/Compose/ComposeViewModel+DataSource.swift deleted file mode 100644 index 5ecba3791..000000000 --- a/Mastodon/Scene/Compose/ComposeViewModel+DataSource.swift +++ /dev/null @@ -1,453 +0,0 @@ -// -// ComposeViewModel+Diffable.swift -// Mastodon -// -// Created by MainasuK Cirno on 2021-3-11. -// - -import os.log -import UIKit -import Combine -import CoreDataStack -import MetaTextKit -import MastodonMeta -import MastodonAsset -import MastodonCore -import MastodonLocalization -import MastodonSDK - -extension ComposeViewModel { - -// func setupDataSource( -// tableView: UITableView, -// metaTextDelegate: MetaTextDelegate, -// metaTextViewDelegate: UITextViewDelegate, -// customEmojiPickerInputViewModel: CustomEmojiPickerInputViewModel, -// composeStatusAttachmentCollectionViewCellDelegate: ComposeStatusAttachmentCollectionViewCellDelegate, -// composeStatusPollOptionCollectionViewCellDelegate: ComposeStatusPollOptionCollectionViewCellDelegate, -// composeStatusPollOptionAppendEntryCollectionViewCellDelegate: ComposeStatusPollOptionAppendEntryCollectionViewCellDelegate, -// composeStatusPollExpiresOptionCollectionViewCellDelegate: ComposeStatusPollExpiresOptionCollectionViewCellDelegate -// ) { -// // UI -// bind() -// -// // content -// bind(cell: composeStatusContentTableViewCell, tableView: tableView) -// composeStatusContentTableViewCell.metaText.delegate = metaTextDelegate -// composeStatusContentTableViewCell.metaText.textView.delegate = metaTextViewDelegate -// -// // attachment -// bind(cell: composeStatusAttachmentTableViewCell, tableView: tableView) -// composeStatusAttachmentTableViewCell.composeStatusAttachmentCollectionViewCellDelegate = composeStatusAttachmentCollectionViewCellDelegate -// -// // poll -// bind(cell: composeStatusPollTableViewCell, tableView: tableView) -// composeStatusPollTableViewCell.delegate = self -// composeStatusPollTableViewCell.customEmojiPickerInputViewModel = customEmojiPickerInputViewModel -// composeStatusPollTableViewCell.composeStatusPollOptionCollectionViewCellDelegate = composeStatusPollOptionCollectionViewCellDelegate -// composeStatusPollTableViewCell.composeStatusPollOptionAppendEntryCollectionViewCellDelegate = composeStatusPollOptionAppendEntryCollectionViewCellDelegate -// composeStatusPollTableViewCell.composeStatusPollExpiresOptionCollectionViewCellDelegate = composeStatusPollExpiresOptionCollectionViewCellDelegate -// -// // setup data source -// tableView.dataSource = self -// } - -} - -//// MARK: - UITableViewDataSource -//extension ComposeViewModel: UITableViewDataSource { - -// func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { -// switch Section.allCases[indexPath.section] { -// case .repliedTo: -// let cell = tableView.dequeueReusableCell(withIdentifier: String(describing: ComposeRepliedToStatusContentTableViewCell.self), for: indexPath) as! ComposeRepliedToStatusContentTableViewCell -// guard case let .reply(record) = composeKind else { return cell } -// -// // bind frame publisher -// cell.framePublisher -// .receive(on: DispatchQueue.main) -// .assign(to: \.repliedToCellFrame, on: self) -// .store(in: &cell.disposeBag) -// -// // set initial width -// if cell.statusView.frame.width == .zero { -// cell.statusView.frame.size.width = tableView.frame.width -// } -// -// // configure status -// context.managedObjectContext.performAndWait { -// guard let replyTo = record.object(in: context.managedObjectContext) else { return } -// cell.statusView.configure(status: replyTo) -// } -// -// return cell -// case .status: -// return composeStatusContentTableViewCell -// case .attachment: -// return composeStatusAttachmentTableViewCell -// case .poll: -// return composeStatusPollTableViewCell -// } -// } -//} - -//// MARK: - ComposeStatusPollTableViewCellDelegate -//extension ComposeViewModel: ComposeStatusPollTableViewCellDelegate { -// func composeStatusPollTableViewCell(_ cell: ComposeStatusPollTableViewCell, pollOptionAttributesDidReorder options: [ComposeStatusPollItem.PollOptionAttribute]) { -// os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s", ((#file as NSString).lastPathComponent), #line, #function) -// -// self.pollOptionAttributes = options -// } -//} -// -//extension ComposeViewModel { -// private func bind() { -// $isCustomEmojiComposing -// .assign(to: \.value, on: customEmojiPickerInputViewModel.isCustomEmojiComposing) -// .store(in: &disposeBag) -// -// $isContentWarningComposing -// .assign(to: \.isContentWarningComposing, on: composeStatusAttribute) -// .store(in: &disposeBag) -// -// // bind compose toolbar UI state -// Publishers.CombineLatest( -// $isPollComposing, -// $attachmentServices -// ) -// .receive(on: DispatchQueue.main) -// .sink(receiveValue: { [weak self] isPollComposing, attachmentServices in -// guard let self = self else { return } -// let shouldMediaDisable = isPollComposing || attachmentServices.count >= self.maxMediaAttachments -// let shouldPollDisable = attachmentServices.count > 0 -// -// self.isMediaToolbarButtonEnabled = !shouldMediaDisable -// self.isPollToolbarButtonEnabled = !shouldPollDisable -// }) -// .store(in: &disposeBag) -// -// // calculate `Idempotency-Key` -// let content = Publishers.CombineLatest3( -// composeStatusAttribute.$isContentWarningComposing, -// composeStatusAttribute.$contentWarningContent, -// composeStatusAttribute.$composeContent -// ) -// .map { isContentWarningComposing, contentWarningContent, composeContent -> String in -// if isContentWarningComposing { -// return contentWarningContent + (composeContent ?? "") -// } else { -// return composeContent ?? "" -// } -// } -// let attachmentIDs = $attachmentServices.map { attachments -> String in -// let attachmentIDs = attachments.compactMap { $0.attachment.value?.id } -// return attachmentIDs.joined(separator: ",") -// } -// let pollOptionsAndDuration = Publishers.CombineLatest3( -// $isPollComposing, -// $pollOptionAttributes, -// pollExpiresOptionAttribute.expiresOption -// ) -// .map { isPollComposing, pollOptionAttributes, expiresOption -> String in -// guard isPollComposing else { -// return "" -// } -// -// let pollOptions = pollOptionAttributes.map { $0.option.value }.joined(separator: ",") -// return pollOptions + expiresOption.rawValue -// } -// -// Publishers.CombineLatest4( -// content, -// attachmentIDs, -// pollOptionsAndDuration, -// $selectedStatusVisibility -// ) -// .map { content, attachmentIDs, pollOptionsAndDuration, selectedStatusVisibility -> String in -// var hasher = Hasher() -// hasher.combine(content) -// hasher.combine(attachmentIDs) -// hasher.combine(pollOptionsAndDuration) -// hasher.combine(selectedStatusVisibility.visibility.rawValue) -// let hashValue = hasher.finalize() -// return "\(hashValue)" -// } -// .assign(to: \.value, on: idempotencyKey) -// .store(in: &disposeBag) -// -// // bind modal dismiss state -// composeStatusAttribute.$composeContent -// .receive(on: DispatchQueue.main) -// .map { [weak self] content in -// let content = content ?? "" -// if content.isEmpty { -// return true -// } -// // if preInsertedContent plus a space is equal to the content, simply dismiss the modal -// if let preInsertedContent = self?.preInsertedContent { -// return content == preInsertedContent -// } -// return false -// } -// .assign(to: &$shouldDismiss) -// -// // bind compose bar button item UI state -// let isComposeContentEmpty = composeStatusAttribute.$composeContent -// .map { ($0 ?? "").isEmpty } -// let isComposeContentValid = $characterCount -// .compactMap { [weak self] characterCount -> Bool in -// guard let self = self else { return characterCount <= 500 } -// return characterCount <= self.composeContentLimit -// } -// let isMediaEmpty = $attachmentServices -// .map { $0.isEmpty } -// let isMediaUploadAllSuccess = $attachmentServices -// .map { services in -// services.allSatisfy { $0.uploadStateMachineSubject.value is MastodonAttachmentService.UploadState.Finish } -// } -// let isPollAttributeAllValid = $pollOptionAttributes -// .map { pollAttributes in -// pollAttributes.allSatisfy { attribute -> Bool in -// !attribute.option.value.trimmingCharacters(in: .whitespacesAndNewlines).isEmpty -// } -// } -// -// let isPublishBarButtonItemEnabledPrecondition1 = Publishers.CombineLatest4( -// isComposeContentEmpty, -// isComposeContentValid, -// isMediaEmpty, -// isMediaUploadAllSuccess -// ) -// .map { isComposeContentEmpty, isComposeContentValid, isMediaEmpty, isMediaUploadAllSuccess -> Bool in -// if isMediaEmpty { -// return isComposeContentValid && !isComposeContentEmpty -// } else { -// return isComposeContentValid && isMediaUploadAllSuccess -// } -// } -// .eraseToAnyPublisher() -// -// let isPublishBarButtonItemEnabledPrecondition2 = Publishers.CombineLatest4( -// isComposeContentEmpty, -// isComposeContentValid, -// $isPollComposing, -// isPollAttributeAllValid -// ) -// .map { isComposeContentEmpty, isComposeContentValid, isPollComposing, isPollAttributeAllValid -> Bool in -// if isPollComposing { -// return isComposeContentValid && !isComposeContentEmpty && isPollAttributeAllValid -// } else { -// return isComposeContentValid && !isComposeContentEmpty -// } -// } -// .eraseToAnyPublisher() -// -// Publishers.CombineLatest( -// isPublishBarButtonItemEnabledPrecondition1, -// isPublishBarButtonItemEnabledPrecondition2 -// ) -// .map { $0 && $1 } -// .assign(to: &$isPublishBarButtonItemEnabled) -// } -//} -// -//extension ComposeViewModel { -// private func bind( -// cell: ComposeStatusContentTableViewCell, -// tableView: UITableView -// ) { -// // bind status content character count -// Publishers.CombineLatest3( -// composeStatusAttribute.$composeContent, -// composeStatusAttribute.$isContentWarningComposing, -// composeStatusAttribute.$contentWarningContent -// ) -// .map { composeContent, isContentWarningComposing, contentWarningContent -> Int in -// let composeContent = composeContent ?? "" -// var count = composeContent.count -// if isContentWarningComposing { -// count += contentWarningContent.count -// } -// return count -// } -// .assign(to: &$characterCount) -// -// // bind content warning -// composeStatusAttribute.$isContentWarningComposing -// .receive(on: DispatchQueue.main) -// .sink { [weak cell, weak tableView] isContentWarningComposing in -// guard let cell = cell else { return } -// guard let tableView = tableView else { return } -// -// // self size input cell -// cell.statusContentWarningEditorView.isHidden = !isContentWarningComposing -// cell.statusContentWarningEditorView.alpha = 0 -// UIView.animate(withDuration: 0.33, delay: 0, options: [.curveEaseOut]) { -// cell.statusContentWarningEditorView.alpha = 1 -// tableView.beginUpdates() -// tableView.endUpdates() -// } completion: { _ in -// // do nothing -// } -// } -// .store(in: &disposeBag) -// -// cell.contentWarningContent -// .removeDuplicates() -// .receive(on: DispatchQueue.main) -// .sink { [weak tableView, weak self] text in -// guard let self = self else { return } -// // bind input data -// self.composeStatusAttribute.contentWarningContent = text -// -// // self size input cell -// guard let tableView = tableView else { return } -// UIView.performWithoutAnimation { -// tableView.beginUpdates() -// tableView.endUpdates() -// } -// } -// .store(in: &cell.disposeBag) -// -// // configure custom emoji picker -// ComposeStatusSection.configureCustomEmojiPicker( -// viewModel: customEmojiPickerInputViewModel, -// customEmojiReplaceableTextInput: cell.metaText.textView, -// disposeBag: &disposeBag -// ) -// ComposeStatusSection.configureCustomEmojiPicker( -// viewModel: customEmojiPickerInputViewModel, -// customEmojiReplaceableTextInput: cell.statusContentWarningEditorView.textView, -// disposeBag: &disposeBag -// ) -// } -//} -// -//extension ComposeViewModel { -// private func bind( -// cell: ComposeStatusPollTableViewCell, -// tableView: UITableView -// ) { -// Publishers.CombineLatest( -// $isPollComposing, -// $pollOptionAttributes -// ) -// .receive(on: DispatchQueue.main) -// .sink { [weak self] isPollComposing, pollOptionAttributes in -// guard let self = self else { return } -// guard self.isViewAppeared else { return } -// -// let cell = self.composeStatusPollTableViewCell -// guard let dataSource = cell.dataSource else { return } -// -// var snapshot = NSDiffableDataSourceSnapshot() -// snapshot.appendSections([.main]) -// var items: [ComposeStatusPollItem] = [] -// if isPollComposing { -// for attribute in pollOptionAttributes { -// items.append(.pollOption(attribute: attribute)) -// } -// if pollOptionAttributes.count < self.maxPollOptions { -// items.append(.pollOptionAppendEntry) -// } -// items.append(.pollExpiresOption(attribute: self.pollExpiresOptionAttribute)) -// } -// snapshot.appendItems(items, toSection: .main) -// -// tableView.performBatchUpdates { -// if #available(iOS 15.0, *) { -// dataSource.apply(snapshot, animatingDifferences: false) -// } else { -// dataSource.apply(snapshot, animatingDifferences: true) -// } -// } -// } -// .store(in: &disposeBag) -// -// // bind delegate -// $pollOptionAttributes -// .sink { [weak self] pollAttributes in -// guard let self = self else { return } -// pollAttributes.forEach { $0.delegate = self } -// } -// .store(in: &disposeBag) -// } -//} -// -//extension ComposeViewModel { -// private func bind( -// cell: ComposeStatusAttachmentTableViewCell, -// tableView: UITableView -// ) { -// cell.collectionViewHeightDidUpdate -// .receive(on: DispatchQueue.main) -// .sink { [weak self] _ in -// guard let _ = self else { return } -// tableView.beginUpdates() -// tableView.endUpdates() -// } -// .store(in: &disposeBag) -// -// $attachmentServices -// .removeDuplicates() -// .receive(on: DispatchQueue.main) -// .sink { [weak self] attachmentServices in -// guard let self = self else { return } -// guard self.isViewAppeared else { return } -// -// let cell = self.composeStatusAttachmentTableViewCell -// guard let dataSource = cell.dataSource else { return } -// -// var snapshot = NSDiffableDataSourceSnapshot() -// snapshot.appendSections([.main]) -// let items = attachmentServices.map { ComposeStatusAttachmentItem.attachment(attachmentService: $0) } -// snapshot.appendItems(items, toSection: .main) -// -// if #available(iOS 15.0, *) { -// dataSource.applySnapshotUsingReloadData(snapshot) -// } else { -// dataSource.apply(snapshot, animatingDifferences: false) -// } -// } -// .store(in: &disposeBag) -// -// // setup attribute updater -// $attachmentServices -// .receive(on: DispatchQueue.main) -// .debounce(for: 0.3, scheduler: DispatchQueue.main) -// .sink { attachmentServices in -// // drive service upload state -// // make image upload in the queue -// for attachmentService in attachmentServices { -// // skip when prefix N task when task finish OR fail OR uploading -// guard let currentState = attachmentService.uploadStateMachine.currentState else { break } -// if currentState is MastodonAttachmentService.UploadState.Fail { -// continue -// } -// if currentState is MastodonAttachmentService.UploadState.Finish { -// continue -// } -// if currentState is MastodonAttachmentService.UploadState.Processing { -// continue -// } -// if currentState is MastodonAttachmentService.UploadState.Uploading { -// break -// } -// // trigger uploading one by one -// if currentState is MastodonAttachmentService.UploadState.Initial { -// attachmentService.uploadStateMachine.enter(MastodonAttachmentService.UploadState.Uploading.self) -// break -// } -// } -// } -// .store(in: &disposeBag) -// -// // bind delegate -// $attachmentServices -// .sink { [weak self] attachmentServices in -// guard let self = self else { return } -// attachmentServices.forEach { $0.delegate = self } -// } -// .store(in: &disposeBag) -// } -//} diff --git a/Mastodon/Scene/Compose/ComposeViewModel+PublishState.swift b/Mastodon/Scene/Compose/ComposeViewModel+PublishState.swift deleted file mode 100644 index b9ed18c45..000000000 --- a/Mastodon/Scene/Compose/ComposeViewModel+PublishState.swift +++ /dev/null @@ -1,164 +0,0 @@ -// -// ComposeViewModel+PublishState.swift -// Mastodon -// -// Created by MainasuK Cirno on 2021-3-18. -// - -import os.log -import Foundation -import Combine -import CoreDataStack -import GameplayKit -import MastodonSDK - -//extension ComposeViewModel { -// class PublishState: GKState { -// weak var viewModel: ComposeViewModel? -// -// init(viewModel: ComposeViewModel) { -// self.viewModel = viewModel -// } -// -// override func didEnter(from previousState: GKState?) { -// os_log("%{public}s[%{public}ld], %{public}s: enter %s, previous: %s", ((#file as NSString).lastPathComponent), #line, #function, self.debugDescription, previousState.debugDescription) -// viewModel?.publishStateMachinePublisher.value = self -// } -// } -//} - -//extension ComposeViewModel.PublishState { -// class Initial: ComposeViewModel.PublishState { -// override func isValidNextState(_ stateClass: AnyClass) -> Bool { -// return stateClass == Publishing.self -// } -// } -// -// class Publishing: ComposeViewModel.PublishState { -// -// var publishingSubscription: AnyCancellable? -// -// override func isValidNextState(_ stateClass: AnyClass) -> Bool { -// return stateClass == Fail.self || stateClass == Finish.self -// } -// -// override func didEnter(from previousState: GKState?) { -// super.didEnter(from: previousState) -// guard let viewModel = viewModel, let stateMachine = stateMachine else { return } -// -// viewModel.updatePublishDate() -// -// let authenticationBox = viewModel.authenticationBox -// let domain = authenticationBox.domain -// let attachmentServices = viewModel.attachmentServices -// let mediaIDs = attachmentServices.compactMap { attachmentService in -// attachmentService.attachment.value?.id -// } -// let pollOptions: [String]? = { -// guard viewModel.isPollComposing else { return nil } -// return viewModel.pollOptionAttributes.map { attribute in attribute.option.value } -// }() -// let pollExpiresIn: Int? = { -// guard viewModel.isPollComposing else { return nil } -// return viewModel.pollExpiresOptionAttribute.expiresOption.value.seconds -// }() -// let inReplyToID: Mastodon.Entity.Status.ID? = { -// guard case let .reply(status) = viewModel.composeKind else { return nil } -// var id: Mastodon.Entity.Status.ID? -// viewModel.context.managedObjectContext.performAndWait { -// guard let replyTo = status.object(in: viewModel.context.managedObjectContext) else { return } -// id = replyTo.id -// } -// return id -// }() -// let sensitive: Bool = viewModel.isContentWarningComposing -// let spoilerText: String? = { -// let text = viewModel.composeStatusAttribute.contentWarningContent.trimmingCharacters(in: .whitespacesAndNewlines) -// guard !text.isEmpty else { -// return nil -// } -// return text -// }() -// let visibility = viewModel.selectedStatusVisibility.visibility -// -// let updateMediaQuerySubscriptions: [AnyPublisher, Error>] = { -// var subscriptions: [AnyPublisher, Error>] = [] -// for attachmentService in attachmentServices { -// guard let attachmentID = attachmentService.attachment.value?.id else { continue } -// let description = attachmentService.description.value?.trimmingCharacters(in: .whitespacesAndNewlines) ?? "" -// guard !description.isEmpty else { continue } -// let query = Mastodon.API.Media.UpdateMediaQuery( -// file: nil, -// thumbnail: nil, -// description: description, -// focus: nil -// ) -// let subscription = viewModel.context.apiService.updateMedia( -// domain: domain, -// attachmentID: attachmentID, -// query: query, -// mastodonAuthenticationBox: authenticationBox -// ) -// subscriptions.append(subscription) -// } -// return subscriptions -// }() -// -// let idempotencyKey = viewModel.idempotencyKey.value -// -// publishingSubscription = Publishers.MergeMany(updateMediaQuerySubscriptions) -// .collect() -// .asyncMap { attachments -> Mastodon.Response.Content in -// let query = Mastodon.API.Statuses.PublishStatusQuery( -// status: viewModel.composeStatusAttribute.composeContent, -// mediaIDs: mediaIDs.isEmpty ? nil : mediaIDs, -// pollOptions: pollOptions, -// pollExpiresIn: pollExpiresIn, -// inReplyToID: inReplyToID, -// sensitive: sensitive, -// spoilerText: spoilerText, -// visibility: visibility -// ) -// return try await viewModel.context.apiService.publishStatus( -// domain: domain, -// idempotencyKey: idempotencyKey, -// query: query, -// authenticationBox: authenticationBox -// ) -// } -// .receive(on: DispatchQueue.main) -// .sink { completion in -// switch completion { -// case .failure(let error): -// os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s: publish status %s", ((#file as NSString).lastPathComponent), #line, #function, error.localizedDescription) -// stateMachine.enter(Fail.self) -// case .finished: -// os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s: publish status success", ((#file as NSString).lastPathComponent), #line, #function) -// stateMachine.enter(Finish.self) -// } -// } receiveValue: { response in -// os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s: status %s published: %s", ((#file as NSString).lastPathComponent), #line, #function, response.value.id, response.value.uri) -// } -// } -// } -// -// class Fail: ComposeViewModel.PublishState { -// override func isValidNextState(_ stateClass: AnyClass) -> Bool { -// // allow discard publishing -// return stateClass == Publishing.self || stateClass == Discard.self -// } -// } -// -// class Discard: ComposeViewModel.PublishState { -// override func isValidNextState(_ stateClass: AnyClass) -> Bool { -// return false -// } -// } -// -// class Finish: ComposeViewModel.PublishState { -// override func isValidNextState(_ stateClass: AnyClass) -> Bool { -// return false -// } -// } -// -//} diff --git a/Mastodon/Scene/Compose/ComposeViewModel.swift b/Mastodon/Scene/Compose/ComposeViewModel.swift index 5e5fbb1c3..bf234b095 100644 --- a/Mastodon/Scene/Compose/ComposeViewModel.swift +++ b/Mastodon/Scene/Compose/ComposeViewModel.swift @@ -18,7 +18,7 @@ import MastodonLocalization import MastodonMeta import MastodonUI -final class ComposeViewModel: NSObject { +final class ComposeViewModel { let logger = Logger(subsystem: "ComposeViewModel", category: "ViewModel") @@ -30,84 +30,13 @@ final class ComposeViewModel: NSObject { let context: AppContext let authContext: AuthContext let kind: ComposeContentViewModel.Kind - -// var authenticationBox: MastodonAuthenticationBox { -// authContext.mastodonAuthenticationBox -// } -// -// @Published var isPollComposing = false -// @Published var isCustomEmojiComposing = false -// @Published var isContentWarningComposing = false -// -// @Published var selectedStatusVisibility: ComposeToolbarView.VisibilitySelectionType -// @Published var repliedToCellFrame: CGRect = .zero let traitCollectionDidChangePublisher = CurrentValueSubject(Void()) // use CurrentValueSubject to make initial event emit -// var isViewAppeared = false // output -// let instanceConfiguration: Mastodon.Entity.Instance.Configuration? -// var composeContentLimit: Int { -// guard let maxCharacters = instanceConfiguration?.statuses?.maxCharacters else { return 500 } -// return max(1, maxCharacters) -// } -// var maxMediaAttachments: Int { -// guard let maxMediaAttachments = instanceConfiguration?.statuses?.maxMediaAttachments else { -// return 4 -// } -// // FIXME: update timeline media preview UI -// return min(4, max(1, maxMediaAttachments)) -// // return max(1, maxMediaAttachments) -// } -// var maxPollOptions: Int { -// guard let maxOptions = instanceConfiguration?.polls?.maxOptions else { return 4 } -// return max(2, maxOptions) -// } -// -// let composeStatusAttribute = ComposeStatusItem.ComposeStatusAttribute() -// let composeStatusContentTableViewCell = ComposeStatusContentTableViewCell() -// let composeStatusAttachmentTableViewCell = ComposeStatusAttachmentTableViewCell() -// let composeStatusPollTableViewCell = ComposeStatusPollTableViewCell() -// -// // var dataSource: UITableViewDiffableDataSource? -// var customEmojiPickerDiffableDataSource: UICollectionViewDiffableDataSource? -// private(set) lazy var publishStateMachine: GKStateMachine = { -// // exclude timeline middle fetcher state -// let stateMachine = GKStateMachine(states: [ -// PublishState.Initial(viewModel: self), -// PublishState.Publishing(viewModel: self), -// PublishState.Fail(viewModel: self), -// PublishState.Discard(viewModel: self), -// PublishState.Finish(viewModel: self), -// ]) -// stateMachine.enter(PublishState.Initial.self) -// return stateMachine -// }() -// private(set) lazy var publishStateMachinePublisher = CurrentValueSubject(nil) -// private(set) var publishDate = Date() // update it when enter Publishing state -// -// // TODO: group post material into Hashable class -// var idempotencyKey = CurrentValueSubject(UUID().uuidString) -// -// // UI & UX -// @Published var title: String -// @Published var shouldDismiss = true -// @Published var isPublishBarButtonItemEnabled = false -// @Published var isMediaToolbarButtonEnabled = true -// @Published var isPollToolbarButtonEnabled = true -// @Published var characterCount = 0 -// @Published var collectionViewState: CollectionViewState = .fold -// -// // for hashtag: "# " -// // for mention: "@ " -// var preInsertedContent: String? -// -// // attachment -// @Published var attachmentServices: [MastodonAttachmentService] = [] -// -// // polls -// @Published var pollOptionAttributes: [ComposeStatusPollItem.PollOptionAttribute] = [] -// let pollExpiresOptionAttribute = ComposeStatusPollItem.PollExpiresOptionAttribute() + + // UI & UX + @Published var title: String init( context: AppContext, @@ -117,63 +46,14 @@ final class ComposeViewModel: NSObject { self.context = context self.authContext = authContext self.kind = kind + // end init -// self.title = { -// switch composeKind { -// case .post, .hashtag, .mention: return L10n.Scene.Compose.Title.newPost -// case .reply: return L10n.Scene.Compose.Title.newReply -// } -// }() -// self.selectedStatusVisibility = { -// // default private when user locked -// var visibility: ComposeToolbarView.VisibilitySelectionType = { -// guard let author = authContext.mastodonAuthenticationBox.authenticationRecord.object(in: context.managedObjectContext)?.user -// else { -// return .public -// } -// return author.locked ? .private : .public -// }() -// // set visibility for reply post -// switch composeKind { -// case .reply(let record): -// context.managedObjectContext.performAndWait { -// guard let status = record.object(in: context.managedObjectContext) else { -// assertionFailure() -// return -// } -// let repliedStatusVisibility = status.visibility -// switch repliedStatusVisibility { -// case .public, .unlisted: -// // keep default -// break -// case .private: -// visibility = .private -// case .direct: -// visibility = .direct -// case ._other: -// assertionFailure() -// break -// } -// } -// default: -// break -// } -// return visibility -// }() -// // set limit -// self.instanceConfiguration = { -// var configuration: Mastodon.Entity.Instance.Configuration? = nil -// context.managedObjectContext.performAndWait { -// guard let authentication = authContext.mastodonAuthenticationBox.authenticationRecord.object(in: context.managedObjectContext) else { return } -// configuration = authentication.instance?.configuration -// } -// return configuration -// }() -// self.customEmojiViewModel = context.emojiService.dequeueCustomEmojiViewModel(for: authContext.mastodonAuthenticationBox.domain) -// super.init() -// // end init -// -// setup(cell: composeStatusContentTableViewCell) + self.title = { + switch kind { + case .post, .hashtag, .mention: return L10n.Scene.Compose.Title.newPost + case .reply: return L10n.Scene.Compose.Title.newReply + } + }() } deinit { @@ -181,194 +61,3 @@ final class ComposeViewModel: NSObject { } } - -extension ComposeViewModel { -// func createNewPollOptionIfPossible() { -// guard pollOptionAttributes.count < maxPollOptions else { return } -// -// let attribute = ComposeStatusPollItem.PollOptionAttribute() -// pollOptionAttributes = pollOptionAttributes + [attribute] -// } -// -// func updatePublishDate() { -// publishDate = Date() -// } -} - -//extension ComposeViewModel { -// -// enum AttachmentPrecondition: Error, LocalizedError { -// case videoAttachWithPhoto -// case moreThanOneVideo -// -// var errorDescription: String? { -// return L10n.Common.Alerts.PublishPostFailure.title -// } -// -// var failureReason: String? { -// switch self { -// case .videoAttachWithPhoto: -// return L10n.Common.Alerts.PublishPostFailure.AttachmentsMessage.videoAttachWithPhoto -// case .moreThanOneVideo: -// return L10n.Common.Alerts.PublishPostFailure.AttachmentsMessage.moreThanOneVideo -// } -// } -// } -// -// // check exclusive limit: -// // - up to 1 video -// // - up to N photos -// func checkAttachmentPrecondition() throws { -// let attachmentServices = self.attachmentServices -// guard !attachmentServices.isEmpty else { return } -// var photoAttachmentServices: [MastodonAttachmentService] = [] -// var videoAttachmentServices: [MastodonAttachmentService] = [] -// attachmentServices.forEach { service in -// guard let file = service.file.value else { -// assertionFailure() -// return -// } -// switch file { -// case .jpeg, .png, .gif: -// photoAttachmentServices.append(service) -// case .other: -// videoAttachmentServices.append(service) -// } -// } -// -// if !videoAttachmentServices.isEmpty { -// guard videoAttachmentServices.count == 1 else { -// throw AttachmentPrecondition.moreThanOneVideo -// } -// guard photoAttachmentServices.isEmpty else { -// throw AttachmentPrecondition.videoAttachWithPhoto -// } -// } -// } -// -//} -// -//// MARK: - MastodonAttachmentServiceDelegate -//extension ComposeViewModel: MastodonAttachmentServiceDelegate { -// func mastodonAttachmentService(_ service: MastodonAttachmentService, uploadStateDidChange state: MastodonAttachmentService.UploadState?) { -// // trigger new output event -// attachmentServices = attachmentServices -// } -//} -// -//// MARK: - ComposePollAttributeDelegate -//extension ComposeViewModel: ComposePollAttributeDelegate { -// func composePollAttribute(_ attribute: ComposeStatusPollItem.PollOptionAttribute, pollOptionDidChange: String?) { -// // trigger update -// pollOptionAttributes = pollOptionAttributes -// } -//} -// -//extension ComposeViewModel { -// private func setup( -// cell: ComposeStatusContentTableViewCell -// ) { -// setupStatusHeader(cell: cell) -// setupStatusAuthor(cell: cell) -// setupStatusContent(cell: cell) -// } -// -// private func setupStatusHeader( -// cell: ComposeStatusContentTableViewCell -// ) { -// // configure header -// let managedObjectContext = context.managedObjectContext -// managedObjectContext.performAndWait { -// guard case let .reply(record) = self.composeKind, -// let replyTo = record.object(in: managedObjectContext) -// else { -// cell.statusView.viewModel.header = .none -// return -// } -// -// let info: StatusView.ViewModel.Header.ReplyInfo -// do { -// let content = MastodonContent( -// content: replyTo.author.displayNameWithFallback, -// emojis: replyTo.author.emojis.asDictionary -// ) -// let metaContent = try MastodonMetaContent.convert(document: content) -// info = .init(header: metaContent) -// } catch { -// let metaContent = PlaintextMetaContent(string: replyTo.author.displayNameWithFallback) -// info = .init(header: metaContent) -// } -// cell.statusView.viewModel.header = .reply(info: info) -// } -// } -// -// private func setupStatusAuthor( -// cell: ComposeStatusContentTableViewCell -// ) { -// self.context.managedObjectContext.performAndWait { -// guard let author = authenticationBox.authenticationRecord.object(in: self.context.managedObjectContext)?.user else { return } -// cell.statusView.configureAuthor(author: author) -// } -// } -// -// private func setupStatusContent( -// cell: ComposeStatusContentTableViewCell -// ) { -// switch composeKind { -// case .reply(let record): -// context.managedObjectContext.performAndWait { -// guard let status = record.object(in: context.managedObjectContext) else { return } -// let author = self.authenticationBox.authenticationRecord.object(in: context.managedObjectContext)?.user -// -// var mentionAccts: [String] = [] -// if author?.id != status.author.id { -// mentionAccts.append("@" + status.author.acct) -// } -// let mentions = status.mentions -// .filter { author?.id != $0.id } -// for mention in mentions { -// let acct = "@" + mention.acct -// guard !mentionAccts.contains(acct) else { continue } -// mentionAccts.append(acct) -// } -// for acct in mentionAccts { -// UITextChecker.learnWord(acct) -// } -// if let spoilerText = status.spoilerText, !spoilerText.isEmpty { -// self.isContentWarningComposing = true -// self.composeStatusAttribute.contentWarningContent = spoilerText -// } -// -// let initialComposeContent = mentionAccts.joined(separator: " ") -// let preInsertedContent: String? = initialComposeContent.isEmpty ? nil : initialComposeContent + " " -// self.preInsertedContent = preInsertedContent -// self.composeStatusAttribute.composeContent = preInsertedContent -// } -// case .hashtag(let hashtag): -// let initialComposeContent = "#" + hashtag -// UITextChecker.learnWord(initialComposeContent) -// let preInsertedContent = initialComposeContent + " " -// self.preInsertedContent = preInsertedContent -// self.composeStatusAttribute.composeContent = preInsertedContent -// case .mention(let record): -// context.managedObjectContext.performAndWait { -// guard let user = record.object(in: context.managedObjectContext) else { return } -// let initialComposeContent = "@" + user.acct -// UITextChecker.learnWord(initialComposeContent) -// let preInsertedContent = initialComposeContent + " " -// self.preInsertedContent = preInsertedContent -// self.composeStatusAttribute.composeContent = preInsertedContent -// } -// case .post: -// self.preInsertedContent = nil -// } -// -// // configure content warning -// if let composeContent = composeStatusAttribute.composeContent { -// cell.metaText.textView.text = composeContent -// } -// -// // configure content warning -// cell.statusContentWarningEditorView.textView.text = composeStatusAttribute.contentWarningContent -// } -//} diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel.swift index 57f1d6b95..9a0f58f47 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel.swift @@ -57,7 +57,6 @@ final public class AttachmentViewModel: NSObject, ObservableObject, Identifiable @Published public private(set) var thumbnail: UIImage? // original size image thumbnail @Published public private(set) var outputSizeInByte: Int64 = 0 - @MainActor @Published public private(set) var uploadState: UploadState = .none @Published public private(set) var uploadResult: UploadResult? @Published var error: Error? diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewController.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewController.swift index 54fc6e67a..bab22b7ba 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewController.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewController.swift @@ -14,6 +14,8 @@ import MastodonCore public final class ComposeContentViewController: UIViewController { + static let minAutoCompleteVisibleHeight: CGFloat = 100 + let logger = Logger(subsystem: "ComposeContentViewController", category: "ViewController") var disposeBag = Set() @@ -40,7 +42,6 @@ public final class ComposeContentViewController: UIViewController { }() // toolbar - lazy var composeContentToolbarView = ComposeContentToolbarView(viewModel: composeContentToolbarViewModel) var composeContentToolbarViewBottomLayoutConstraint: NSLayoutConstraint! let composeContentToolbarBackgroundView = UIView() @@ -146,49 +147,42 @@ extension ComposeContentViewController { ]) // bind keyboard - let keyboardHasShortcutBar = CurrentValueSubject(traitCollection.userInterfaceIdiom == .pad) // update default value later let keyboardEventPublishers = Publishers.CombineLatest3( KeyboardResponderService.shared.isShow, KeyboardResponderService.shared.state, KeyboardResponderService.shared.endFrame ) -// Publishers.CombineLatest3( -// viewModel.$isCustomEmojiComposing, -// ) - keyboardEventPublishers - .sink(receiveValue: { [weak self] keyboardEvents in + Publishers.CombineLatest3( + keyboardEventPublishers, + viewModel.$isEmojiActive, + viewModel.$autoCompleteInfo + ) + .sink(receiveValue: { [weak self] keyboardEvents, isEmojiActive, autoCompleteInfo in guard let self = self else { return } let (isShow, state, endFrame) = keyboardEvents - -// switch self.traitCollection.userInterfaceIdiom { -// case .pad: -// keyboardHasShortcutBar.value = state != .floating -// default: -// keyboardHasShortcutBar.value = false -// } -// + let extraMargin: CGFloat = { var margin = ComposeContentToolbarView.toolbarHeight -// if autoCompleteInfo != nil { -//// margin += ComposeViewController.minAutoCompleteVisibleHeight -// } + if autoCompleteInfo != nil { + margin += ComposeContentViewController.minAutoCompleteVisibleHeight + } return margin }() -// + guard isShow, state == .dock else { self.tableView.contentInset.bottom = extraMargin self.tableView.verticalScrollIndicatorInsets.bottom = extraMargin -// if let superView = self.autoCompleteViewController.tableView.superview { -// let autoCompleteTableViewBottomInset: CGFloat = { -// let tableViewFrameInWindow = superView.convert(self.autoCompleteViewController.tableView.frame, to: nil) -// let padding = tableViewFrameInWindow.maxY + self.composeToolbarView.frame.height + AutoCompleteViewController.chevronViewHeight - self.view.frame.maxY -// return max(0, padding) -// }() -// self.autoCompleteViewController.tableView.contentInset.bottom = autoCompleteTableViewBottomInset -// self.autoCompleteViewController.tableView.verticalScrollIndicatorInsets.bottom = autoCompleteTableViewBottomInset -// } + if let superView = self.autoCompleteViewController.tableView.superview { + let autoCompleteTableViewBottomInset: CGFloat = { + let tableViewFrameInWindow = superView.convert(self.autoCompleteViewController.tableView.frame, to: nil) + let padding = tableViewFrameInWindow.maxY + ComposeContentToolbarView.toolbarHeight + AutoCompleteViewController.chevronViewHeight - self.view.frame.maxY + return max(0, padding) + }() + self.autoCompleteViewController.tableView.contentInset.bottom = autoCompleteTableViewBottomInset + self.autoCompleteViewController.tableView.verticalScrollIndicatorInsets.bottom = autoCompleteTableViewBottomInset + } UIView.animate(withDuration: 0.3) { self.composeContentToolbarViewBottomLayoutConstraint.constant = self.view.safeAreaInsets.bottom @@ -199,17 +193,16 @@ extension ComposeContentViewController { return } // isShow AND dock state -// self.systemKeyboardHeight = endFrame.height // adjust inset for auto-complete -// let autoCompleteTableViewBottomInset: CGFloat = { -// guard let superview = self.autoCompleteViewController.tableView.superview else { return .zero } -// let tableViewFrameInWindow = superview.convert(self.autoCompleteViewController.tableView.frame, to: nil) -// let padding = tableViewFrameInWindow.maxY + self.composeToolbarView.frame.height + AutoCompleteViewController.chevronViewHeight - endFrame.minY -// return max(0, padding) -// }() -// self.autoCompleteViewController.tableView.contentInset.bottom = autoCompleteTableViewBottomInset -// self.autoCompleteViewController.tableView.verticalScrollIndicatorInsets.bottom = autoCompleteTableViewBottomInset + let autoCompleteTableViewBottomInset: CGFloat = { + guard let superview = self.autoCompleteViewController.tableView.superview else { return .zero } + let tableViewFrameInWindow = superview.convert(self.autoCompleteViewController.tableView.frame, to: nil) + let padding = tableViewFrameInWindow.maxY + ComposeContentToolbarView.toolbarHeight + AutoCompleteViewController.chevronViewHeight - endFrame.minY + return max(0, padding) + }() + self.autoCompleteViewController.tableView.contentInset.bottom = autoCompleteTableViewBottomInset + self.autoCompleteViewController.tableView.verticalScrollIndicatorInsets.bottom = autoCompleteTableViewBottomInset // adjust inset for tableView let contentFrame = self.view.convert(self.tableView.frame, to: nil) @@ -289,6 +282,15 @@ extension ComposeContentViewController { // bind toolbar bindToolbarViewModel() + + // bind attachment picker + viewModel.$attachmentViewModels + .receive(on: DispatchQueue.main) + .sink { [weak self] _ in + guard let self = self else { return } + self.resetImagePicker() + } + .store(in: &disposeBag) } public override func viewDidLayoutSubviews() { @@ -327,6 +329,8 @@ extension ComposeContentViewController { } private func bindToolbarViewModel() { + viewModel.$isAttachmentButtonEnabled.assign(to: &composeContentToolbarViewModel.$isAttachmentButtonEnabled) + viewModel.$isPollButtonEnabled.assign(to: &composeContentToolbarViewModel.$isPollButtonEnabled) viewModel.$isPollActive.assign(to: &composeContentToolbarViewModel.$isPollActive) viewModel.$isEmojiActive.assign(to: &composeContentToolbarViewModel.$isEmojiActive) viewModel.$isContentWarningActive.assign(to: &composeContentToolbarViewModel.$isContentWarningActive) @@ -345,6 +349,18 @@ extension ComposeContentViewController { autoCompleteViewController.view.frame.size.width = view.frame.width } } + + private func resetImagePicker() { + let selectionLimit = max(1, viewModel.maxMediaAttachmentLimit - viewModel.attachmentViewModels.count) + let configuration = ComposeContentViewController.createPhotoLibraryPickerConfiguration(selectionLimit: selectionLimit) + photoLibraryPicker = createImagePicker(configuration: configuration) + } + + private func createImagePicker(configuration: PHPickerConfiguration) -> PHPickerViewController { + let imagePicker = PHPickerViewController(configuration: configuration) + imagePicker.delegate = self + return imagePicker + } } // MARK: - UIScrollViewDelegate diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel.swift index ad9dfa1d8..cdf92ec26 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel.swift @@ -14,6 +14,7 @@ import MetaTextKit import MastodonMeta import MastodonCore import MastodonSDK +import MastodonLocalization public protocol ComposeContentViewModelDelegate: AnyObject { func composeContentViewModel(_ viewModel: ComposeContentViewModel, handleAutoComplete info: ComposeContentViewModel.AutoCompleteInfo) -> Bool @@ -58,6 +59,8 @@ public final class ComposeContentViewModel: NSObject, ObservableObject { customEmojiPickerInputViewModel.configure(textInput: textView) } } + // for hashtag: "# " + // for mention: "@ " @Published public var initialContent = "" @Published public var content = "" @Published public var contentWeightedLength = 0 @@ -115,6 +118,14 @@ public final class ComposeContentViewModel: NSObject, ObservableObject { @Published var contentCellFrame: CGRect = .zero @Published var contentTextViewFrame: CGRect = .zero @Published var scrollViewState: ScrollViewState = .fold + + @Published var characterCount: Int = 0 + + @Published public private(set) var isPublishBarButtonItemEnabled = true + @Published var isAttachmentButtonEnabled = false + @Published var isPollButtonEnabled = false + + @Published public private(set) var shouldDismiss = true public init( context: AppContext, @@ -165,6 +176,70 @@ public final class ComposeContentViewModel: NSObject, ObservableObject { super.init() // end init + // setup initial value + switch kind { + case .reply(let record): + context.managedObjectContext.performAndWait { + guard let status = record.object(in: context.managedObjectContext) else { + assertionFailure() + return + } + let author = authContext.mastodonAuthenticationBox.authenticationRecord.object(in: context.managedObjectContext)?.user + + var mentionAccts: [String] = [] + if author?.id != status.author.id { + mentionAccts.append("@" + status.author.acct) + } + let mentions = status.mentions + .filter { author?.id != $0.id } + for mention in mentions { + let acct = "@" + mention.acct + guard !mentionAccts.contains(acct) else { continue } + mentionAccts.append(acct) + } + for acct in mentionAccts { + UITextChecker.learnWord(acct) + } + if let spoilerText = status.spoilerText, !spoilerText.isEmpty { + self.isContentWarningActive = true + self.contentWarning = spoilerText + } + + let initialComposeContent = mentionAccts.joined(separator: " ") + let preInsertedContent: String? = initialComposeContent.isEmpty ? nil : initialComposeContent + " " + self.initialContent = preInsertedContent ?? "" + self.content = preInsertedContent ?? "" + } + case .hashtag(let hashtag): + let initialComposeContent = "#" + hashtag + UITextChecker.learnWord(initialComposeContent) + let preInsertedContent = initialComposeContent + " " + self.initialContent = preInsertedContent + self.content = preInsertedContent + case .mention(let record): + context.managedObjectContext.performAndWait { + guard let user = record.object(in: context.managedObjectContext) else { return } + let initialComposeContent = "@" + user.acct + UITextChecker.learnWord(initialComposeContent) + let preInsertedContent = initialComposeContent + " " + self.initialContent = preInsertedContent + self.content = preInsertedContent + } + case .post: + break + } + + bind() + } + + deinit { + os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s", ((#file as NSString).lastPathComponent), #line, #function) + } + +} + +extension ComposeContentViewModel { + private func bind() { // bind author $authContext .sink { [weak self] authContext in @@ -210,12 +285,129 @@ public final class ComposeContentViewModel: NSObject, ObservableObject { // bind emoji inputView $isEmojiActive.assign(to: &customEmojiPickerInputViewModel.$isCustomEmojiComposing) - } - - deinit { - os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s", ((#file as NSString).lastPathComponent), #line, #function) - } + // bind toolbar + Publishers.CombineLatest3( + $isPollActive, + $attachmentViewModels, + $maxMediaAttachmentLimit + ) + .receive(on: DispatchQueue.main) + .sink { [weak self] isPollActive, attachmentViewModels, maxMediaAttachmentLimit in + guard let self = self else { return } + let shouldMediaDisable = isPollActive || attachmentViewModels.count >= maxMediaAttachmentLimit + let shouldPollDisable = attachmentViewModels.count > 0 + + self.isAttachmentButtonEnabled = !shouldMediaDisable + self.isPollButtonEnabled = !shouldPollDisable + } + .store(in: &disposeBag) + + // bind status content character count + Publishers.CombineLatest3( + $contentWeightedLength, + $contentWarningWeightedLength, + $isContentWarningActive + ) + .map { contentWeightedLength, contentWarningWeightedLength, isContentWarningActive -> Int in + var count = contentWeightedLength + if isContentWarningActive { + count += contentWarningWeightedLength + } + return count + } + .assign(to: &$characterCount) + + // bind compose bar button item UI state + let isComposeContentEmpty = $content + .map { $0.isEmpty } + let isComposeContentValid = Publishers.CombineLatest( + $characterCount, + $maxTextInputLimit + ) + .map { characterCount, maxTextInputLimit in + characterCount <= maxTextInputLimit + } + let isMediaEmpty = $attachmentViewModels + .map { $0.isEmpty } + let isMediaUploadAllSuccess = $attachmentViewModels + .map { attachmentViewModels in + return Publishers.MergeMany(attachmentViewModels.map { $0.$uploadState }) + .delay(for: 0.5, scheduler: DispatchQueue.main) // convert to outputs with delay. Due to @Published emit before changes + .map { _ in attachmentViewModels.map { $0.uploadState } } + } + .switchToLatest() + .map { outputs in + guard outputs.allSatisfy({ $0 == .finish }) else { return false } + return true + } + + isMediaUploadAllSuccess.sink { result in + print(result) + } + .store(in: &disposeBag) + + let isPollOptionsAllValid = $pollOptions + .map { options in + return Publishers.MergeMany(options.map { $0.$text }) + .delay(for: 0.5, scheduler: DispatchQueue.main) // convert to outputs with delay. Due to @Published emit before changes + .map { _ in options.map { $0.text } } + } + .switchToLatest() + .map { outputs in + return outputs.allSatisfy { !$0.trimmingCharacters(in: .whitespacesAndNewlines).isEmpty } + } + + let isPublishBarButtonItemEnabledPrecondition1 = Publishers.CombineLatest4( + isComposeContentEmpty, + isComposeContentValid, + isMediaEmpty, + isMediaUploadAllSuccess + ) + .map { isComposeContentEmpty, isComposeContentValid, isMediaEmpty, isMediaUploadAllSuccess -> Bool in + if isMediaEmpty { + return isComposeContentValid && !isComposeContentEmpty + } else { + return isComposeContentValid && isMediaUploadAllSuccess + } + } + .eraseToAnyPublisher() + + let isPublishBarButtonItemEnabledPrecondition2 = Publishers.CombineLatest4( + isComposeContentEmpty, + isComposeContentValid, + $isPollActive, + isPollOptionsAllValid + ) + .map { isComposeContentEmpty, isComposeContentValid, isPollComposing, isPollOptionsAllValid -> Bool in + if isPollComposing { + return isComposeContentValid && !isComposeContentEmpty && isPollOptionsAllValid + } else { + return isComposeContentValid && !isComposeContentEmpty + } + } + .eraseToAnyPublisher() + + Publishers.CombineLatest( + isPublishBarButtonItemEnabledPrecondition1, + isPublishBarButtonItemEnabledPrecondition2 + ) + .map { $0 && $1 } + .assign(to: &$isPublishBarButtonItemEnabled) + + // bind modal dismiss state + $content + .receive(on: DispatchQueue.main) + .map { [weak self] content in + guard let self = self else { return } + if content.isEmpty { + return true + } + // if the trimmed content equal to initial content + return content.trimmingCharacters(in: .whitespacesAndNewlines) == self.initialContent + } + .assign(to: &$shouldDismiss) + } } extension ComposeContentViewModel { @@ -325,6 +517,58 @@ extension ComposeContentViewModel { } // end func publisher() } +extension ComposeContentViewModel { + public enum AttachmentPrecondition: Error, LocalizedError { + case videoAttachWithPhoto + case moreThanOneVideo + + public var errorDescription: String? { + return L10n.Common.Alerts.PublishPostFailure.title + } + + public var failureReason: String? { + switch self { + case .videoAttachWithPhoto: + return L10n.Common.Alerts.PublishPostFailure.AttachmentsMessage.videoAttachWithPhoto + case .moreThanOneVideo: + return L10n.Common.Alerts.PublishPostFailure.AttachmentsMessage.moreThanOneVideo + } + } + } + + // check exclusive limit: + // - up to 1 video + // - up to N photos + public func checkAttachmentPrecondition() throws { + let attachmentViewModels = self.attachmentViewModels + guard !attachmentViewModels.isEmpty else { return } + var photoAttachmentViewModels: [AttachmentViewModel] = [] + var videoAttachmentViewModels: [AttachmentViewModel] = [] + attachmentViewModels.forEach { attachmentViewModel in + guard let output = attachmentViewModel.output else { + assertionFailure() + return + } + switch output { + case .image: + photoAttachmentViewModels.append(attachmentViewModel) + case .video: + videoAttachmentViewModels.append(attachmentViewModel) + } + } + + if !videoAttachmentViewModels.isEmpty { + guard videoAttachmentViewModels.count == 1 else { + throw AttachmentPrecondition.moreThanOneVideo + } + guard photoAttachmentViewModels.isEmpty else { + throw AttachmentPrecondition.videoAttachWithPhoto + } + } + } + +} + // MARK: - DeleteBackwardResponseTextFieldRelayDelegate extension ComposeContentViewModel: DeleteBackwardResponseTextFieldRelayDelegate { diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Poll/PollOptionTextField.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Poll/PollOptionTextField.swift index 5143bea35..fa409c114 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Poll/PollOptionTextField.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Poll/PollOptionTextField.swift @@ -39,7 +39,7 @@ public struct PollOptionTextField: UIViewRepresentable { textField.text = text textField.placeholder = { if index >= 0 { - return L10n.Scene.Compose.Poll.optionNumber(index) + return L10n.Scene.Compose.Poll.optionNumber(index + 1) } else { assertionFailure() return "" diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentToolbarView+ViewModel.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Toolbar/ComposeContentToolbarView+ViewModel.swift similarity index 97% rename from MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentToolbarView+ViewModel.swift rename to MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Toolbar/ComposeContentToolbarView+ViewModel.swift index 4a34c77d4..ee58bace4 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentToolbarView+ViewModel.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Toolbar/ComposeContentToolbarView+ViewModel.swift @@ -27,6 +27,9 @@ extension ComposeContentToolbarView { @Published var isEmojiActive = false @Published var isContentWarningActive = false + @Published var isAttachmentButtonEnabled = false + @Published var isPollButtonEnabled = false + @Published public var maxTextInputLimit = 500 @Published public var contentWeightedLength = 0 @Published public var contentWarningWeightedLength = 0 diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentToolbarView.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Toolbar/ComposeContentToolbarView.swift similarity index 87% rename from MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentToolbarView.swift rename to MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Toolbar/ComposeContentToolbarView.swift index 52026c636..7efb15340 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentToolbarView.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Toolbar/ComposeContentToolbarView.swift @@ -44,7 +44,9 @@ struct ComposeContentToolbarView: View { } } label: { label(for: action) + .opacity(viewModel.isAttachmentButtonEnabled ? 1.0 : 0.5) } + .disabled(!viewModel.isAttachmentButtonEnabled) .frame(width: 48, height: 48) case .visibility: Menu { @@ -63,6 +65,16 @@ struct ComposeContentToolbarView: View { label(for: viewModel.visibility.image) } .frame(width: 48, height: 48) + case .poll: + Button { + logger.log(level: .debug, "\((#file as NSString).lastPathComponent, privacy: .public)[\(#line, privacy: .public)], \(#function, privacy: .public): \(String(describing: action))") + viewModel.delegate?.composeContentToolbarView(viewModel, toolbarItemDidPressed: action) + } label: { + label(for: action) + .opacity(viewModel.isPollButtonEnabled ? 1.0 : 0.5) + } + .disabled(!viewModel.isPollButtonEnabled) + .frame(width: 48, height: 48) default: Button { logger.log(level: .debug, "\((#file as NSString).lastPathComponent, privacy: .public)[\(#line, privacy: .public)], \(#function, privacy: .public): \(String(describing: action))") From f80b751d938a5f8f58eca7a49a6415ed5855e2d0 Mon Sep 17 00:00:00 2001 From: CMK Date: Sun, 13 Nov 2022 22:40:03 +0800 Subject: [PATCH 170/598] feat: camera and file attachment input --- .../ComposeContentViewController.swift | 26 ++++++++++--------- 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewController.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewController.swift index bab22b7ba..ea6a0136a 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewController.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewController.swift @@ -441,12 +441,13 @@ extension ComposeContentViewController: UIImagePickerControllerDelegate & UINavi guard let image = info[.originalImage] as? UIImage else { return } -// let attachmentService = MastodonAttachmentService( -// context: context, -// image: image, -// initialAuthenticationBox: viewModel.authenticationBox -// ) -// viewModel.attachmentServices = viewModel.attachmentServices + [attachmentService] + let attachmentViewModel = AttachmentViewModel( + api: viewModel.context.apiService, + authContext: viewModel.authContext, + input: .image(image), + delegate: viewModel + ) + viewModel.attachmentViewModels += [attachmentViewModel] } public func imagePickerControllerDidCancel(_ picker: UIImagePickerController) { @@ -460,12 +461,13 @@ extension ComposeContentViewController: UIDocumentPickerDelegate { public func documentPicker(_ controller: UIDocumentPickerViewController, didPickDocumentsAt urls: [URL]) { guard let url = urls.first else { return } -// let attachmentService = MastodonAttachmentService( -// context: context, -// documentURL: url, -// initialAuthenticationBox: viewModel.authenticationBox -// ) -// viewModel.attachmentServices = viewModel.attachmentServices + [attachmentService] + let attachmentViewModel = AttachmentViewModel( + api: viewModel.context.apiService, + authContext: viewModel.authContext, + input: .url(url), + delegate: viewModel + ) + viewModel.attachmentViewModels += [attachmentViewModel] } } From b47f8ead378077f8a50f8069a4ed3a4f82532693 Mon Sep 17 00:00:00 2001 From: CMK Date: Sun, 13 Nov 2022 22:40:26 +0800 Subject: [PATCH 171/598] fix: compile issue --- .../Scene/ComposeContent/ComposeContentViewModel.swift | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel.swift index cdf92ec26..ab3e25804 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel.swift @@ -398,8 +398,7 @@ extension ComposeContentViewModel { // bind modal dismiss state $content .receive(on: DispatchQueue.main) - .map { [weak self] content in - guard let self = self else { return } + .map { content in if content.isEmpty { return true } From 26c6b8f2eee64493c18d56efcde117e2d9ac0e28 Mon Sep 17 00:00:00 2001 From: CMK Date: Sun, 13 Nov 2022 22:40:36 +0800 Subject: [PATCH 172/598] chore: code clean up --- .../View/AutoCompleteTopChevronView.swift | 1 - .../ComposeContentViewModel+DataSource.swift | 4 +- .../ComposeContentViewModel.swift | 17 +- .../ComposeContentTableViewCell.swift | 135 ----------- ...ComposeStatusAttachmentTableViewCell.swift | 172 -------------- .../ComposeStatusPollTableViewCell.swift | 209 ------------------ 6 files changed, 9 insertions(+), 529 deletions(-) delete mode 100644 MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/TableViewCell/ComposeStatusAttachmentTableViewCell.swift delete mode 100644 MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/TableViewCell/ComposeStatusPollTableViewCell.swift diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/AutoComplete/View/AutoCompleteTopChevronView.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/AutoComplete/View/AutoCompleteTopChevronView.swift index ccc36b1df..6b842c9f1 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/AutoComplete/View/AutoCompleteTopChevronView.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/AutoComplete/View/AutoCompleteTopChevronView.swift @@ -8,7 +8,6 @@ import UIKit import Combine import MastodonCore -import MastodonUI final class AutoCompleteTopChevronView: UIView { diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel+DataSource.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel+DataSource.swift index c8bf3ddc8..abbfe0e61 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel+DataSource.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel+DataSource.swift @@ -66,9 +66,9 @@ extension ComposeContentViewModel { guard let replyTo = status.object(in: context.managedObjectContext) else { return } cell.statusView.configure(status: replyTo) } - case .hashtag(let hashtag): + case .hashtag: break - case .mention(let user): + case .mention: break } } diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel.swift index ab3e25804..2bf4e26ff 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel.swift @@ -185,7 +185,7 @@ public final class ComposeContentViewModel: NSObject, ObservableObject { return } let author = authContext.mastodonAuthenticationBox.authenticationRecord.object(in: context.managedObjectContext)?.user - + var mentionAccts: [String] = [] if author?.id != status.author.id { mentionAccts.append("@" + status.author.acct) @@ -204,7 +204,7 @@ public final class ComposeContentViewModel: NSObject, ObservableObject { self.isContentWarningActive = true self.contentWarning = spoilerText } - + let initialComposeContent = mentionAccts.joined(separator: " ") let preInsertedContent: String? = initialComposeContent.isEmpty ? nil : initialComposeContent + " " self.initialContent = preInsertedContent ?? "" @@ -342,11 +342,6 @@ extension ComposeContentViewModel { return true } - isMediaUploadAllSuccess.sink { result in - print(result) - } - .store(in: &disposeBag) - let isPollOptionsAllValid = $pollOptions .map { options in return Publishers.MergeMany(options.map { $0.$text }) @@ -517,14 +512,15 @@ extension ComposeContentViewModel { } extension ComposeContentViewModel { + public enum AttachmentPrecondition: Error, LocalizedError { case videoAttachWithPhoto case moreThanOneVideo - + public var errorDescription: String? { return L10n.Common.Alerts.PublishPostFailure.title } - + public var failureReason: String? { switch self { case .videoAttachWithPhoto: @@ -534,13 +530,14 @@ extension ComposeContentViewModel { } } } - + // check exclusive limit: // - up to 1 video // - up to N photos public func checkAttachmentPrecondition() throws { let attachmentViewModels = self.attachmentViewModels guard !attachmentViewModels.isEmpty else { return } + var photoAttachmentViewModels: [AttachmentViewModel] = [] var videoAttachmentViewModels: [AttachmentViewModel] = [] attachmentViewModels.forEach { attachmentViewModel in diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/TableViewCell/ComposeContentTableViewCell.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/TableViewCell/ComposeContentTableViewCell.swift index 3a646f1fc..90d432825 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/TableViewCell/ComposeContentTableViewCell.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/TableViewCell/ComposeContentTableViewCell.swift @@ -7,74 +7,12 @@ import os.log import UIKit -import Combine -import MetaTextKit -import UITextView_Placeholder -import MastodonAsset -import MastodonLocalization import UIHostingConfigurationBackport -//protocol ComposeStatusContentTableViewCellDelegate: AnyObject { -// func composeStatusContentTableViewCell(_ cell: ComposeStatusContentTableViewCell, textViewShouldBeginEditing textView: UITextView) -> Bool -//} - final class ComposeContentTableViewCell: UITableViewCell { let logger = Logger(subsystem: "ComposeContentTableViewCell", category: "View") -// var disposeBag = Set() -// weak var delegate: ComposeStatusContentTableViewCellDelegate? -// -// let statusView = StatusView() -// -// let statusContentWarningEditorView = StatusContentWarningEditorView() -// -// let textEditorViewContainerView = UIView() -// -// static let metaTextViewTag: Int = 333 -// let metaText: MetaText = { -// let metaText = MetaText() -// metaText.textView.backgroundColor = .clear -// metaText.textView.isScrollEnabled = false -// metaText.textView.keyboardType = .twitter -// metaText.textView.textDragInteraction?.isEnabled = false // disable drag for link and attachment -// metaText.textView.textContainer.lineFragmentPadding = 10 // leading inset -// metaText.textView.font = UIFontMetrics(forTextStyle: .body).scaledFont(for: .systemFont(ofSize: 17, weight: .regular)) -// metaText.textView.attributedPlaceholder = { -// var attributes = metaText.textAttributes -// attributes[.foregroundColor] = Asset.Colors.Label.secondary.color -// return NSAttributedString( -// string: L10n.Scene.Compose.contentInputPlaceholder, -// attributes: attributes -// ) -// }() -// metaText.paragraphStyle = { -// let style = NSMutableParagraphStyle() -// style.lineSpacing = 5 -// style.paragraphSpacing = 0 -// return style -// }() -// metaText.textAttributes = [ -// .font: UIFontMetrics(forTextStyle: .body).scaledFont(for: .systemFont(ofSize: 17, weight: .regular)), -// .foregroundColor: Asset.Colors.Label.primary.color, -// ] -// metaText.linkAttributes = [ -// .font: UIFontMetrics(forTextStyle: .body).scaledFont(for: .systemFont(ofSize: 17, weight: .semibold)), -// .foregroundColor: Asset.Colors.brand.color, -// ] -// return metaText -// }() -// -// // output -// let contentWarningContent = PassthroughSubject() -// -// override func prepareForReuse() { -// super.prepareForReuse() -// -// metaText.delegate = nil -// metaText.textView.delegate = nil -// } - override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) { super.init(style: style, reuseIdentifier: reuseIdentifier) _init() @@ -93,79 +31,6 @@ extension ComposeContentTableViewCell { selectionStyle = .none layer.zPosition = 999 backgroundColor = .clear - -// let containerStackView = UIStackView() -// containerStackView.axis = .vertical -// containerStackView.translatesAutoresizingMaskIntoConstraints = false -// contentView.addSubview(containerStackView) -// NSLayoutConstraint.activate([ -// containerStackView.topAnchor.constraint(equalTo: contentView.topAnchor), -// containerStackView.leadingAnchor.constraint(equalTo: contentView.leadingAnchor), -// containerStackView.trailingAnchor.constraint(equalTo: contentView.trailingAnchor), -// containerStackView.bottomAnchor.constraint(equalTo: contentView.bottomAnchor), -// ]) -// containerStackView.preservesSuperviewLayoutMargins = true -// -// containerStackView.addArrangedSubview(statusContentWarningEditorView) -// statusContentWarningEditorView.setContentHuggingPriority(.required - 1, for: .vertical) -// -// let statusContainerView = UIView() -// statusContainerView.preservesSuperviewLayoutMargins = true -// containerStackView.addArrangedSubview(statusContainerView) -// statusView.translatesAutoresizingMaskIntoConstraints = false -// statusContainerView.addSubview(statusView) -// NSLayoutConstraint.activate([ -// statusView.topAnchor.constraint(equalTo: statusContainerView.topAnchor, constant: 20), -// statusView.leadingAnchor.constraint(equalTo: statusContainerView.leadingAnchor), -// statusView.trailingAnchor.constraint(equalTo: statusContainerView.trailingAnchor), -// statusView.bottomAnchor.constraint(equalTo: statusContainerView.bottomAnchor), -// ]) -// statusView.setup(style: .composeStatusAuthor) -// -// containerStackView.addArrangedSubview(textEditorViewContainerView) -// metaText.textView.translatesAutoresizingMaskIntoConstraints = false -// textEditorViewContainerView.addSubview(metaText.textView) -// NSLayoutConstraint.activate([ -// metaText.textView.topAnchor.constraint(equalTo: textEditorViewContainerView.topAnchor), -// metaText.textView.leadingAnchor.constraint(equalTo: textEditorViewContainerView.layoutMarginsGuide.leadingAnchor), -// metaText.textView.trailingAnchor.constraint(equalTo: textEditorViewContainerView.layoutMarginsGuide.trailingAnchor), -// metaText.textView.bottomAnchor.constraint(equalTo: textEditorViewContainerView.bottomAnchor), -// metaText.textView.heightAnchor.constraint(greaterThanOrEqualToConstant: 64).priority(.defaultHigh), -// ]) -// statusContentWarningEditorView.textView.delegate = self } } - -// MARK: - UITextViewDelegate -//extension ComposeStatusContentTableViewCell: UITextViewDelegate { -// -// func textViewShouldBeginEditing(_ textView: UITextView) -> Bool { -// return delegate?.composeStatusContentTableViewCell(self, textViewShouldBeginEditing: textView) ?? true -// } -// -// func textView(_ textView: UITextView, shouldChangeTextIn range: NSRange, replacementText text: String) -> Bool { -// switch textView { -// case statusContentWarningEditorView.textView: -// // disable input line break -// guard text != "\n" else { return false } -// return true -// default: -// assertionFailure() -// return true -// } -// } -// -// func textViewDidChange(_ textView: UITextView) { -// logger.debug("\((#file as NSString).lastPathComponent, privacy: .public)[\(#line, privacy: .public)], \(#function, privacy: .public): text: \(textView.text ?? "")") -// guard textView === statusContentWarningEditorView.textView else { return } -// // replace line break with space -// // needs check input state to prevent break the IME -// if textView.markedTextRange == nil { -// textView.text = textView.text.replacingOccurrences(of: "\n", with: " ") -// } -// contentWarningContent.send(textView.text) -// } -// -//} - diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/TableViewCell/ComposeStatusAttachmentTableViewCell.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/TableViewCell/ComposeStatusAttachmentTableViewCell.swift deleted file mode 100644 index 42a851bf1..000000000 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/TableViewCell/ComposeStatusAttachmentTableViewCell.swift +++ /dev/null @@ -1,172 +0,0 @@ -// -// ComposeStatusAttachmentTableViewCell.swift -// Mastodon -// -// Created by MainasuK Cirno on 2021-6-29. -// - -import UIKit -import SwiftUI -import Combine -import AlamofireImage -import MastodonAsset -import MastodonCore -import MastodonLocalization -import UIHostingConfigurationBackport - -//final class ComposeStatusAttachmentTableViewCell: UITableViewCell { -// -// private(set) var dataSource: UICollectionViewDiffableDataSource! -// weak var composeStatusAttachmentCollectionViewCellDelegate: ComposeStatusAttachmentCollectionViewCellDelegate? -// var observations = Set() -// -// private static func createLayout() -> UICollectionViewLayout { -// let itemSize = NSCollectionLayoutSize(widthDimension: .fractionalWidth(1.0), heightDimension: .estimated(44)) -// let item = NSCollectionLayoutItem(layoutSize: itemSize) -// let groupSize = NSCollectionLayoutSize(widthDimension: .fractionalWidth(1.0), heightDimension: .estimated(44)) -// let group = NSCollectionLayoutGroup.vertical(layoutSize: groupSize, subitems: [item]) -// let section = NSCollectionLayoutSection(group: group) -// section.contentInsetsReference = .readableContent -// return UICollectionViewCompositionalLayout(section: section) -// } -// -// private(set) var collectionViewHeightLayoutConstraint: NSLayoutConstraint! -// let collectionView: UICollectionView = { -// let collectionViewLayout = ComposeStatusAttachmentTableViewCell.createLayout() -// let collectionView = UICollectionView(frame: .zero, collectionViewLayout: collectionViewLayout) -// collectionView.register(ComposeStatusAttachmentCollectionViewCell.self, forCellWithReuseIdentifier: String(describing: ComposeStatusAttachmentCollectionViewCell.self)) -// collectionView.backgroundColor = .clear -// collectionView.alwaysBounceVertical = true -// collectionView.isScrollEnabled = false -// return collectionView -// }() -// let collectionViewHeightDidUpdate = PassthroughSubject() -// -// override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) { -// super.init(style: style, reuseIdentifier: reuseIdentifier) -// _init() -// } -// -// required init?(coder: NSCoder) { -// super.init(coder: coder) -// _init() -// } -// -//} -// -//extension ComposeStatusAttachmentTableViewCell { -// -// private func _init() { -// backgroundColor = .clear -// contentView.backgroundColor = .clear -// -// collectionView.translatesAutoresizingMaskIntoConstraints = false -// contentView.addSubview(collectionView) -// collectionViewHeightLayoutConstraint = collectionView.heightAnchor.constraint(equalToConstant: 200).priority(.defaultHigh) -// NSLayoutConstraint.activate([ -// collectionView.topAnchor.constraint(equalTo: contentView.topAnchor), -// collectionView.leadingAnchor.constraint(equalTo: contentView.leadingAnchor), -// collectionView.trailingAnchor.constraint(equalTo: contentView.trailingAnchor), -// collectionView.bottomAnchor.constraint(equalTo: contentView.bottomAnchor), -// collectionViewHeightLayoutConstraint, -// ]) -// -// collectionView.observe(\.contentSize, options: [.initial, .new]) { [weak self] collectionView, _ in -// guard let self = self else { return } -// self.collectionViewHeightLayoutConstraint.constant = collectionView.contentSize.height -// self.collectionViewHeightDidUpdate.send() -// } -// .store(in: &observations) -// -// self.dataSource = UICollectionViewDiffableDataSource(collectionView: collectionView) { -// [weak self] collectionView, indexPath, item -> UICollectionViewCell? in -// guard let _ = self else { return UICollectionViewCell() } -// switch item { -// case .attachment: -// let cell = collectionView.dequeueReusableCell(withReuseIdentifier: String(describing: ComposeStatusAttachmentCollectionViewCell.self), for: indexPath) as! ComposeStatusAttachmentCollectionViewCell -// cell.contentConfiguration = UIHostingConfigurationBackport { -// HStack { -// Image(systemName: "star") -// Text("Favorites") -// Spacer() -// } -// } -//// cell.attachmentContainerView.descriptionTextView.text = attachmentService.description.value -//// cell.delegate = self.composeStatusAttachmentCollectionViewCellDelegate -//// attachmentService.thumbnailImage -//// .receive(on: DispatchQueue.main) -//// .sink { [weak cell] thumbnailImage in -//// guard let cell = cell else { return } -//// let size = cell.attachmentContainerView.previewImageView.frame.size != .zero ? cell.attachmentContainerView.previewImageView.frame.size : CGSize(width: 1, height: 1) -//// guard let image = thumbnailImage else { -//// let placeholder = UIImage.placeholder( -//// size: size, -//// color: ThemeService.shared.currentTheme.value.systemGroupedBackgroundColor -//// ) -//// .af.imageRounded( -//// withCornerRadius: AttachmentContainerView.containerViewCornerRadius -//// ) -//// cell.attachmentContainerView.previewImageView.image = placeholder -//// return -//// } -//// // cannot get correct size. set corner radius on layer -//// cell.attachmentContainerView.previewImageView.image = image -//// } -//// .store(in: &cell.disposeBag) -//// Publishers.CombineLatest( -//// attachmentService.uploadStateMachineSubject.eraseToAnyPublisher(), -//// attachmentService.error.eraseToAnyPublisher() -//// ) -//// .receive(on: DispatchQueue.main) -//// .sink { [weak cell, weak attachmentService] uploadState, error in -//// guard let cell = cell else { return } -//// guard let attachmentService = attachmentService else { return } -//// cell.attachmentContainerView.emptyStateView.isHidden = error == nil -//// cell.attachmentContainerView.descriptionBackgroundView.isHidden = error != nil -//// if let error = error { -//// cell.attachmentContainerView.activityIndicatorView.stopAnimating() -//// cell.attachmentContainerView.emptyStateView.label.text = error.localizedDescription -//// } else { -//// guard let uploadState = uploadState else { return } -//// switch uploadState { -//// case is MastodonAttachmentService.UploadState.Finish: -//// cell.attachmentContainerView.activityIndicatorView.stopAnimating() -//// case is MastodonAttachmentService.UploadState.Fail: -//// cell.attachmentContainerView.activityIndicatorView.stopAnimating() -//// // FIXME: not display -//// cell.attachmentContainerView.emptyStateView.label.text = { -//// if let file = attachmentService.file.value { -//// switch file { -//// case .jpeg, .png, .gif: -//// return L10n.Scene.Compose.Attachment.attachmentBroken(L10n.Scene.Compose.Attachment.photo) -//// case .other: -//// return L10n.Scene.Compose.Attachment.attachmentBroken(L10n.Scene.Compose.Attachment.video) -//// } -//// } else { -//// return L10n.Scene.Compose.Attachment.attachmentBroken(L10n.Scene.Compose.Attachment.photo) -//// } -//// }() -//// default: -//// break -//// } -//// } -//// } -//// .store(in: &cell.disposeBag) -//// NotificationCenter.default.publisher( -//// for: UITextView.textDidChangeNotification, -//// object: cell.attachmentContainerView.descriptionTextView -//// ) -//// .receive(on: DispatchQueue.main) -//// .sink { notification in -//// guard let textField = notification.object as? UITextView else { return } -//// let text = textField.text?.trimmingCharacters(in: .whitespacesAndNewlines) -//// attachmentService.description.value = text -//// } -//// .store(in: &cell.disposeBag) -// return cell -// } -// } -// } -// -//} -// diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/TableViewCell/ComposeStatusPollTableViewCell.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/TableViewCell/ComposeStatusPollTableViewCell.swift deleted file mode 100644 index 27b835a5a..000000000 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/TableViewCell/ComposeStatusPollTableViewCell.swift +++ /dev/null @@ -1,209 +0,0 @@ -// -// ComposeStatusPollTableViewCell.swift -// Mastodon -// -// Created by MainasuK Cirno on 2021-6-29. -// - -import os.log -import UIKit -import Combine -import MastodonAsset -import MastodonLocalization - -//protocol ComposeStatusPollTableViewCellDelegate: AnyObject { -// func composeStatusPollTableViewCell(_ cell: ComposeStatusPollTableViewCell, pollOptionAttributesDidReorder options: [ComposeStatusPollItem.PollOptionAttribute]) -//} -// -//final class ComposeStatusPollTableViewCell: UITableViewCell { -// -// let logger = Logger(subsystem: "ComposeStatusPollTableViewCell", category: "UI") -// -// private(set) var dataSource: UICollectionViewDiffableDataSource! -// var observations = Set() -// -// weak var customEmojiPickerInputViewModel: CustomEmojiPickerInputViewModel? -// weak var delegate: ComposeStatusPollTableViewCellDelegate? -// weak var composeStatusPollOptionCollectionViewCellDelegate: ComposeStatusPollOptionCollectionViewCellDelegate? -// weak var composeStatusPollOptionAppendEntryCollectionViewCellDelegate: ComposeStatusPollOptionAppendEntryCollectionViewCellDelegate? -// weak var composeStatusPollExpiresOptionCollectionViewCellDelegate: ComposeStatusPollExpiresOptionCollectionViewCellDelegate? -// -// private static func createLayout() -> UICollectionViewLayout { -// let itemSize = NSCollectionLayoutSize(widthDimension: .fractionalWidth(1.0), heightDimension: .estimated(44)) -// let item = NSCollectionLayoutItem(layoutSize: itemSize) -// let groupSize = NSCollectionLayoutSize(widthDimension: .fractionalWidth(1.0), heightDimension: .estimated(44)) -// let group = NSCollectionLayoutGroup.vertical(layoutSize: groupSize, subitems: [item]) -// let section = NSCollectionLayoutSection(group: group) -// section.contentInsetsReference = .readableContent -// return UICollectionViewCompositionalLayout(section: section) -// } -// -// private(set) var collectionViewHeightLayoutConstraint: NSLayoutConstraint! -// let collectionView: UICollectionView = { -// let collectionViewLayout = ComposeStatusPollTableViewCell.createLayout() -// let collectionView = UICollectionView(frame: .zero, collectionViewLayout: collectionViewLayout) -// collectionView.register(ComposeStatusPollOptionCollectionViewCell.self, forCellWithReuseIdentifier: String(describing: ComposeStatusPollOptionCollectionViewCell.self)) -// collectionView.register(ComposeStatusPollOptionAppendEntryCollectionViewCell.self, forCellWithReuseIdentifier: String(describing: ComposeStatusPollOptionAppendEntryCollectionViewCell.self)) -// collectionView.register(ComposeStatusPollExpiresOptionCollectionViewCell.self, forCellWithReuseIdentifier: String(describing: ComposeStatusPollExpiresOptionCollectionViewCell.self)) -// collectionView.backgroundColor = .clear -// collectionView.alwaysBounceVertical = true -// collectionView.isScrollEnabled = false -// collectionView.dragInteractionEnabled = true -// return collectionView -// }() -// let collectionViewHeightDidUpdate = PassthroughSubject() -// -// override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) { -// super.init(style: style, reuseIdentifier: reuseIdentifier) -// _init() -// } -// -// required init?(coder: NSCoder) { -// super.init(coder: coder) -// _init() -// } -// -//} -// -//extension ComposeStatusPollTableViewCell { -// -// private func _init() { -// backgroundColor = .clear -// contentView.backgroundColor = .clear -// -// collectionView.translatesAutoresizingMaskIntoConstraints = false -// contentView.addSubview(collectionView) -// collectionViewHeightLayoutConstraint = collectionView.heightAnchor.constraint(equalToConstant: 300).priority(.defaultHigh) -// NSLayoutConstraint.activate([ -// collectionView.topAnchor.constraint(equalTo: contentView.topAnchor), -// collectionView.leadingAnchor.constraint(equalTo: contentView.leadingAnchor), -// collectionView.trailingAnchor.constraint(equalTo: contentView.trailingAnchor), -// collectionView.bottomAnchor.constraint(equalTo: contentView.bottomAnchor), -// collectionViewHeightLayoutConstraint, -// ]) -// -// collectionView.observe(\.contentSize, options: [.initial, .new]) { [weak self] collectionView, _ in -// guard let self = self else { return } -// self.collectionViewHeightLayoutConstraint.constant = collectionView.contentSize.height -// self.collectionViewHeightDidUpdate.send() -// } -// .store(in: &observations) -// -// self.dataSource = UICollectionViewDiffableDataSource(collectionView: collectionView) { [ -// weak self -// ] collectionView, indexPath, item -> UICollectionViewCell? in -// guard let self = self else { return UICollectionViewCell() } -// -// switch item { -// case .pollOption(let attribute): -// let cell = collectionView.dequeueReusableCell(withReuseIdentifier: String(describing: ComposeStatusPollOptionCollectionViewCell.self), for: indexPath) as! ComposeStatusPollOptionCollectionViewCell -// cell.pollOptionView.optionTextField.text = attribute.option.value -// cell.pollOptionView.optionTextField.placeholder = L10n.Scene.Compose.Poll.optionNumber(indexPath.item + 1) -// cell.pollOption -// .receive(on: DispatchQueue.main) -// .assign(to: \.value, on: attribute.option) -// .store(in: &cell.disposeBag) -// cell.delegate = self.composeStatusPollOptionCollectionViewCellDelegate -// if let customEmojiPickerInputViewModel = self.customEmojiPickerInputViewModel { -// ComposeStatusSection.configureCustomEmojiPicker(viewModel: customEmojiPickerInputViewModel, customEmojiReplaceableTextInput: cell.pollOptionView.optionTextField, disposeBag: &cell.disposeBag) -// } -// return cell -// case .pollOptionAppendEntry: -// let cell = collectionView.dequeueReusableCell(withReuseIdentifier: String(describing: ComposeStatusPollOptionAppendEntryCollectionViewCell.self), for: indexPath) as! ComposeStatusPollOptionAppendEntryCollectionViewCell -// cell.delegate = self.composeStatusPollOptionAppendEntryCollectionViewCellDelegate -// return cell -// case .pollExpiresOption(let attribute): -// let cell = collectionView.dequeueReusableCell(withReuseIdentifier: String(describing: ComposeStatusPollExpiresOptionCollectionViewCell.self), for: indexPath) as! ComposeStatusPollExpiresOptionCollectionViewCell -// cell.durationButton.setTitle(L10n.Scene.Compose.Poll.durationTime(attribute.expiresOption.value.title), for: .normal) -// attribute.expiresOption -// .receive(on: DispatchQueue.main) -// .sink { [weak cell] expiresOption in -// guard let cell = cell else { return } -// cell.durationButton.setTitle(L10n.Scene.Compose.Poll.durationTime(expiresOption.title), for: .normal) -// } -// .store(in: &cell.disposeBag) -// cell.delegate = self.composeStatusPollExpiresOptionCollectionViewCellDelegate -// return cell -// } -// } -// -// collectionView.dragDelegate = self -// collectionView.dropDelegate = self -// } -// -//} -// -//// MARK: - UICollectionViewDragDelegate -//extension ComposeStatusPollTableViewCell: UICollectionViewDragDelegate { -// -// func collectionView(_ collectionView: UICollectionView, itemsForBeginning session: UIDragSession, at indexPath: IndexPath) -> [UIDragItem] { -// guard let item = dataSource.itemIdentifier(for: indexPath) else { return [] } -// switch item { -// case .pollOption: -// let itemProvider = NSItemProvider(object: String(item.hashValue) as NSString) -// let dragItem = UIDragItem(itemProvider: itemProvider) -// dragItem.localObject = item -// return [dragItem] -// default: -// return [] -// } -// } -// -// func collectionView(_ collectionView: UICollectionView, dragSessionIsRestrictedToDraggingApplication session: UIDragSession) -> Bool { -// // drag to app should be the same app -// return true -// } -//} -// -//// MARK: - UICollectionViewDropDelegate -//extension ComposeStatusPollTableViewCell: UICollectionViewDropDelegate { -// // didUpdate -// func collectionView(_ collectionView: UICollectionView, dropSessionDidUpdate session: UIDropSession, withDestinationIndexPath destinationIndexPath: IndexPath?) -> UICollectionViewDropProposal { -// guard collectionView.hasActiveDrag, -// let destinationIndexPath = destinationIndexPath, -// let item = dataSource.itemIdentifier(for: destinationIndexPath) -// else { -// return UICollectionViewDropProposal(operation: .forbidden) -// } -// -// switch item { -// case .pollOption: -// return UICollectionViewDropProposal(operation: .move, intent: .insertAtDestinationIndexPath) -// default: -// return UICollectionViewDropProposal(operation: .cancel) -// } -// } -// -// // performDrop -// func collectionView(_ collectionView: UICollectionView, performDropWith coordinator: UICollectionViewDropCoordinator) { -// guard let dropItem = coordinator.items.first, -// let item = dropItem.dragItem.localObject as? ComposeStatusPollItem, -// case .pollOption = item -// else { return } -// -// guard coordinator.proposal.operation == .move else { return } -// guard let destinationIndexPath = coordinator.destinationIndexPath, -// let _ = collectionView.cellForItem(at: destinationIndexPath) as? ComposeStatusPollOptionCollectionViewCell -// else { return } -// -// var snapshot = dataSource.snapshot() -// guard destinationIndexPath.row < snapshot.itemIdentifiers.count else { return } -// let anchorItem = snapshot.itemIdentifiers[destinationIndexPath.row] -// snapshot.moveItem(item, afterItem: anchorItem) -// dataSource.apply(snapshot) -// -// coordinator.drop(dropItem.dragItem, toItemAt: destinationIndexPath) -// } -//} -// -//extension ComposeStatusPollTableViewCell: UICollectionViewDelegate { -// func collectionView(_ collectionView: UICollectionView, targetIndexPathForMoveFromItemAt originalIndexPath: IndexPath, toProposedIndexPath proposedIndexPath: IndexPath) -> IndexPath { -// logger.log(level: .debug, "\((#file as NSString).lastPathComponent, privacy: .public)[\(#line, privacy: .public)], \(#function, privacy: .public): \(originalIndexPath.debugDescription) -> \(proposedIndexPath.debugDescription)") -// -// guard let _ = collectionView.cellForItem(at: proposedIndexPath) as? ComposeStatusPollOptionCollectionViewCell else { -// return originalIndexPath -// } -// -// return proposedIndexPath -// } -//} From 91bfc8ad5a374b820e74ecb4310cbd3d2b860944 Mon Sep 17 00:00:00 2001 From: CMK Date: Sun, 13 Nov 2022 22:57:35 +0800 Subject: [PATCH 173/598] feat: add paste image input for post compose scene --- Mastodon.xcodeproj/project.pbxproj | 4 -- .../Scene/Compose/ComposeViewController.swift | 60 +++++++++---------- .../MetaTextView+PasteExtensions.swift | 0 Podfile.lock | 2 +- 4 files changed, 31 insertions(+), 35 deletions(-) rename {Mastodon/Scene/Compose/View => MastodonSDK/Sources/MastodonUI/Vendor}/MetaTextView+PasteExtensions.swift (100%) diff --git a/Mastodon.xcodeproj/project.pbxproj b/Mastodon.xcodeproj/project.pbxproj index aa944bb84..0b7a5806a 100644 --- a/Mastodon.xcodeproj/project.pbxproj +++ b/Mastodon.xcodeproj/project.pbxproj @@ -87,7 +87,6 @@ 62FD27D32893707B00B205C5 /* BookmarkViewController+DataSourceProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 62FD27D22893707B00B205C5 /* BookmarkViewController+DataSourceProvider.swift */; }; 62FD27D52893708A00B205C5 /* BookmarkViewModel+Diffable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 62FD27D42893708A00B205C5 /* BookmarkViewModel+Diffable.swift */; }; 87FFDA5D898A5C42ADCB35E7 /* Pods_Mastodon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A4ABE34829701A4496C5BB64 /* Pods_Mastodon.framework */; }; - CD91FB31290EDA6F00BB9463 /* MetaTextView+PasteExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD91FB30290EDA6F00BB9463 /* MetaTextView+PasteExtensions.swift */; }; DB0009A626AEE5DC009B9D2D /* Intents.intentdefinition in Sources */ = {isa = PBXBuildFile; fileRef = DB0009A926AEE5DC009B9D2D /* Intents.intentdefinition */; settings = {ATTRIBUTES = (codegen, ); }; }; DB0009A726AEE5DC009B9D2D /* Intents.intentdefinition in Sources */ = {isa = PBXBuildFile; fileRef = DB0009A926AEE5DC009B9D2D /* Intents.intentdefinition */; }; DB0140CF25C42AEE00F9F3CF /* OSLog.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB0140CE25C42AEE00F9F3CF /* OSLog.swift */; }; @@ -605,7 +604,6 @@ BB482D32A7B9825BF5327C4F /* Pods-Mastodon-MastodonUITests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Mastodon-MastodonUITests.release.xcconfig"; path = "Target Support Files/Pods-Mastodon-MastodonUITests/Pods-Mastodon-MastodonUITests.release.xcconfig"; sourceTree = ""; }; BD7598A87F4497045EDEF252 /* Pods-Mastodon.asdk - release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Mastodon.asdk - release.xcconfig"; path = "Target Support Files/Pods-Mastodon/Pods-Mastodon.asdk - release.xcconfig"; sourceTree = ""; }; C3789232A52F43529CA67E95 /* Pods-MastodonIntent.asdk - debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MastodonIntent.asdk - debug.xcconfig"; path = "Target Support Files/Pods-MastodonIntent/Pods-MastodonIntent.asdk - debug.xcconfig"; sourceTree = ""; }; - CD91FB30290EDA6F00BB9463 /* MetaTextView+PasteExtensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "MetaTextView+PasteExtensions.swift"; sourceTree = ""; }; CD92E0F10BDE4FE7C4B999F2 /* Pods_MastodonTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_MastodonTests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; D7D7CF93E262178800077512 /* Pods-Mastodon-AppShared.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Mastodon-AppShared.debug.xcconfig"; path = "Target Support Files/Pods-Mastodon-AppShared/Pods-Mastodon-AppShared.debug.xcconfig"; sourceTree = ""; }; DB0009A826AEE5DC009B9D2D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.intentdefinition; name = Base; path = Base.lproj/Intents.intentdefinition; sourceTree = ""; }; @@ -1867,7 +1865,6 @@ DB8190C52601FF0400020C08 /* AttachmentContainerView.swift */, DB9A486B26032AC1008B817C /* AttachmentContainerView+EmptyStateView.swift */, DBC7A671260C897100E57475 /* StatusContentWarningEditorView.swift */, - CD91FB30290EDA6F00BB9463 /* MetaTextView+PasteExtensions.swift */, ); path = View; sourceTree = ""; @@ -3296,7 +3293,6 @@ 2D84350525FF858100EECE90 /* UIScrollView.swift in Sources */, 6213AF5A28939C8400BCADB6 /* BookmarkViewModel.swift in Sources */, 5B24BBDB262DB14800A9381B /* ReportStatusViewModel+Diffable.swift in Sources */, - CD91FB31290EDA6F00BB9463 /* MetaTextView+PasteExtensions.swift in Sources */, DB4F0968269ED8AD00D62E92 /* SearchHistoryTableHeaderView.swift in Sources */, 0FB3D2FE25E4CB6400AAD544 /* OnboardingHeadlineTableViewCell.swift in Sources */, 5DA732CC2629CEF500A92342 /* UIView+Remove.swift in Sources */, diff --git a/Mastodon/Scene/Compose/ComposeViewController.swift b/Mastodon/Scene/Compose/ComposeViewController.swift index fb6ee43f9..d2bc0a2cb 100644 --- a/Mastodon/Scene/Compose/ComposeViewController.swift +++ b/Mastodon/Scene/Compose/ComposeViewController.swift @@ -301,6 +301,36 @@ extension ComposeViewController { } +extension ComposeViewController { + public override func canPerformAction(_ action: Selector, withSender sender: Any?) -> Bool { + + // Enable pasting images + if (action == #selector(UIResponderStandardEditActions.paste(_:))) { + return UIPasteboard.general.hasStrings || UIPasteboard.general.hasImages; + } + + return super.canPerformAction(action, withSender: sender); + } + + override func paste(_ sender: Any?) { + logger.debug("Paste event received") + + // Look for images on the clipboard + if UIPasteboard.general.hasImages, let images = UIPasteboard.general.images { + logger.warning("Got image paste event, however attachments are not yet re-implemented."); + let attachmentViewModels = images.map { image in + return AttachmentViewModel( + api: viewModel.context.apiService, + authContext: viewModel.authContext, + input: .image(image), + delegate: composeContentViewModel + ) + } + composeContentViewModel.attachmentViewModels += attachmentViewModels + } + } +} + // MARK: - UIAdaptivePresentationControllerDelegate extension ComposeViewController: UIAdaptivePresentationControllerDelegate { @@ -455,33 +485,3 @@ extension ComposeViewController: UIAdaptivePresentationControllerDelegate { // } // //} - -extension ComposeViewController { - public override func canPerformAction(_ action: Selector, withSender sender: Any?) -> Bool { - - // Enable pasting images - if (action == #selector(UIResponderStandardEditActions.paste(_:))) { - return UIPasteboard.general.hasStrings || UIPasteboard.general.hasImages; - } - - return super.canPerformAction(action, withSender: sender); - } - - override func paste(_ sender: Any?) { - logger.debug("Paste event received") - - // Look for images on the clipboard - if (UIPasteboard.general.hasImages) { - if let images = UIPasteboard.general.images { - logger.warning("Got image paste event, however attachments are not yet re-implemented."); -// viewModel.attachmentServices = viewModel.attachmentServices + images.map({ image in -// MastodonAttachmentService( -// context: context, -// image: image, -// initialAuthenticationBox: viewModel.authenticationBox -// ) -// }) - } - } - } -} diff --git a/Mastodon/Scene/Compose/View/MetaTextView+PasteExtensions.swift b/MastodonSDK/Sources/MastodonUI/Vendor/MetaTextView+PasteExtensions.swift similarity index 100% rename from Mastodon/Scene/Compose/View/MetaTextView+PasteExtensions.swift rename to MastodonSDK/Sources/MastodonUI/Vendor/MetaTextView+PasteExtensions.swift diff --git a/Podfile.lock b/Podfile.lock index e8785b512..3b9928a0b 100644 --- a/Podfile.lock +++ b/Podfile.lock @@ -33,6 +33,6 @@ SPEC CHECKSUMS: SwiftGen: 67860cc7c3cfc2ed25b9b74cfd55495fc89f9108 XLPagerTabStrip: 61c57fd61f611ee5f01ff1495ad6fbee8bf496c5 -PODFILE CHECKSUM: a60ecee06525582c010e270ac7a17024e441a0da +PODFILE CHECKSUM: 8fddf46611e09d2eb1a5d67c464c236884a08e80 COCOAPODS: 1.11.3 From 939429aacc648a0c09b8e6f9a97e0fe2c48e6deb Mon Sep 17 00:00:00 2001 From: CMK Date: Mon, 14 Nov 2022 00:05:43 +0800 Subject: [PATCH 174/598] feat: restore share action extension --- Mastodon.xcodeproj/project.pbxproj | 16 +- .../xcschemes/xcschememanagement.plist | 2 +- .../Scene/Compose/ComposeViewController.swift | 26 +- .../Scene/ComposeViewController.swift | 326 -------------- .../Scene/ComposeViewModel.swift | 416 ------------------ .../Scene/ShareViewController.swift | 330 ++++++++++++++ .../Scene/ShareViewModel.swift | 43 ++ 7 files changed, 386 insertions(+), 773 deletions(-) delete mode 100644 ShareActionExtension/Scene/ComposeViewController.swift delete mode 100644 ShareActionExtension/Scene/ComposeViewModel.swift create mode 100644 ShareActionExtension/Scene/ShareViewController.swift create mode 100644 ShareActionExtension/Scene/ShareViewModel.swift diff --git a/Mastodon.xcodeproj/project.pbxproj b/Mastodon.xcodeproj/project.pbxproj index 0b7a5806a..fc8e6ff25 100644 --- a/Mastodon.xcodeproj/project.pbxproj +++ b/Mastodon.xcodeproj/project.pbxproj @@ -371,10 +371,10 @@ DBB8AB4F26AED13F00F6D281 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = DB427DDE25BAA00100D1B89D /* Assets.xcassets */; }; DBB9759C262462E1004620BD /* ThreadMetaView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DBB9759B262462E1004620BD /* ThreadMetaView.swift */; }; DBBE1B4525F3474B0081417A /* MastodonPickServerAppearance.swift in Sources */ = {isa = PBXBuildFile; fileRef = DBBE1B4425F3474B0081417A /* MastodonPickServerAppearance.swift */; }; - DBC6461526A170AB00B0E31B /* ComposeViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = DBC6461426A170AB00B0E31B /* ComposeViewController.swift */; }; + DBC3872429214121001EC0FD /* ShareViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = DBC3872329214121001EC0FD /* ShareViewController.swift */; }; DBC6461826A170AB00B0E31B /* MainInterface.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = DBC6461626A170AB00B0E31B /* MainInterface.storyboard */; }; DBC6461C26A170AB00B0E31B /* ShareActionExtension.appex in Embed Foundation Extensions */ = {isa = PBXBuildFile; fileRef = DBC6461226A170AB00B0E31B /* ShareActionExtension.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; }; - DBC6462326A1712000B0E31B /* ComposeViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = DBC6462226A1712000B0E31B /* ComposeViewModel.swift */; }; + DBC6462326A1712000B0E31B /* ShareViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = DBC6462226A1712000B0E31B /* ShareViewModel.swift */; }; DBC6462826A1736300B0E31B /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = DB427DDE25BAA00100D1B89D /* Assets.xcassets */; }; DBC7A672260C897100E57475 /* StatusContentWarningEditorView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DBC7A671260C897100E57475 /* StatusContentWarningEditorView.swift */; }; DBCA0EBC282BB38A0029E2B0 /* PageboyNavigateable.swift in Sources */ = {isa = PBXBuildFile; fileRef = DBCA0EBB282BB38A0029E2B0 /* PageboyNavigateable.swift */; }; @@ -950,11 +950,11 @@ DBB9759B262462E1004620BD /* ThreadMetaView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ThreadMetaView.swift; sourceTree = ""; }; DBBC24A726A52F9000398BB9 /* ComposeToolbarView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ComposeToolbarView.swift; sourceTree = ""; }; DBBE1B4425F3474B0081417A /* MastodonPickServerAppearance.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MastodonPickServerAppearance.swift; sourceTree = ""; }; + DBC3872329214121001EC0FD /* ShareViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShareViewController.swift; sourceTree = ""; }; DBC6461226A170AB00B0E31B /* ShareActionExtension.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = ShareActionExtension.appex; sourceTree = BUILT_PRODUCTS_DIR; }; - DBC6461426A170AB00B0E31B /* ComposeViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ComposeViewController.swift; sourceTree = ""; }; DBC6461726A170AB00B0E31B /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/MainInterface.storyboard; sourceTree = ""; }; DBC6461926A170AB00B0E31B /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - DBC6462226A1712000B0E31B /* ComposeViewModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ComposeViewModel.swift; sourceTree = ""; }; + DBC6462226A1712000B0E31B /* ShareViewModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ShareViewModel.swift; sourceTree = ""; }; DBC7A671260C897100E57475 /* StatusContentWarningEditorView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StatusContentWarningEditorView.swift; sourceTree = ""; }; DBC9E3A3282E13BB0063A4D9 /* eu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = eu; path = eu.lproj/Intents.strings; sourceTree = ""; }; DBC9E3A4282E13BB0063A4D9 /* eu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = eu; path = eu.lproj/InfoPlist.strings; sourceTree = ""; }; @@ -2686,8 +2686,8 @@ isa = PBXGroup; children = ( DBFEF05426A576EE006D7ED1 /* View */, - DBC6462226A1712000B0E31B /* ComposeViewModel.swift */, - DBC6461426A170AB00B0E31B /* ComposeViewController.swift */, + DBC6462226A1712000B0E31B /* ShareViewModel.swift */, + DBC3872329214121001EC0FD /* ShareViewController.swift */, ); path = Scene; sourceTree = ""; @@ -3539,9 +3539,9 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - DBC6462326A1712000B0E31B /* ComposeViewModel.swift in Sources */, + DBC6462326A1712000B0E31B /* ShareViewModel.swift in Sources */, DBB3BA2B26A81D060004F2D4 /* FLAnimatedImageView.swift in Sources */, - DBC6461526A170AB00B0E31B /* ComposeViewController.swift in Sources */, + DBC3872429214121001EC0FD /* ShareViewController.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; diff --git a/Mastodon.xcodeproj/xcuserdata/mainasuk.xcuserdatad/xcschemes/xcschememanagement.plist b/Mastodon.xcodeproj/xcuserdata/mainasuk.xcuserdatad/xcschemes/xcschememanagement.plist index 979c8c0e6..78a3a9e70 100644 --- a/Mastodon.xcodeproj/xcuserdata/mainasuk.xcuserdatad/xcschemes/xcschememanagement.plist +++ b/Mastodon.xcodeproj/xcuserdata/mainasuk.xcuserdatad/xcschemes/xcschememanagement.plist @@ -117,7 +117,7 @@ NotificationService.xcscheme_^#shared#^_ orderHint - 18 + 16 ShareActionExtension.xcscheme_^#shared#^_ diff --git a/Mastodon/Scene/Compose/ComposeViewController.swift b/Mastodon/Scene/Compose/ComposeViewController.swift index d2bc0a2cb..6de17e31f 100644 --- a/Mastodon/Scene/Compose/ComposeViewController.swift +++ b/Mastodon/Scene/Compose/ComposeViewController.swift @@ -120,9 +120,9 @@ extension ComposeViewController { guard let self = self else { return } guard self.traitCollection.userInterfaceIdiom == .pad else { return } var items = [self.publishBarButtonItem] - if self.traitCollection.horizontalSizeClass == .regular { - items.append(self.characterCountBarButtonItem) - } + // if self.traitCollection.horizontalSizeClass == .regular { + // items.append(self.characterCountBarButtonItem) + // } self.navigationItem.rightBarButtonItems = items } .store(in: &disposeBag) @@ -140,7 +140,7 @@ extension ComposeViewController { composeContentViewController.didMove(toParent: self) // bind navigation bar style - configureNavigationBarTitleStyle() + // configureNavigationBarTitleStyle() viewModel.traitCollectionDidChangePublisher .receive(on: DispatchQueue.main) .sink { [weak self] _ in @@ -163,24 +163,6 @@ extension ComposeViewController { .receive(on: DispatchQueue.main) .assign(to: \.isEnabled, on: publishButton) .store(in: &disposeBag) -// -// // bind content warning button state -// viewModel.$isContentWarningComposing -// .receive(on: DispatchQueue.main) -// .sink { [weak self] isContentWarningComposing in -// guard let self = self else { return } -// let accessibilityLabel = isContentWarningComposing ? L10n.Scene.Compose.Accessibility.disableContentWarning : L10n.Scene.Compose.Accessibility.enableContentWarning -// self.composeToolbarView.contentWarningBarButtonItem.accessibilityLabel = accessibilityLabel -// self.composeToolbarView.contentWarningButton.accessibilityLabel = accessibilityLabel -// } -// .store(in: &disposeBag) - - } - - override func viewDidAppear(_ animated: Bool) { - super.viewDidAppear(animated) - -// viewModel.isViewAppeared = true } override func traitCollectionDidChange(_ previousTraitCollection: UITraitCollection?) { diff --git a/ShareActionExtension/Scene/ComposeViewController.swift b/ShareActionExtension/Scene/ComposeViewController.swift deleted file mode 100644 index a7605da17..000000000 --- a/ShareActionExtension/Scene/ComposeViewController.swift +++ /dev/null @@ -1,326 +0,0 @@ -// -// ComposeViewController.swift -// MastodonShareAction -// -// Created by MainasuK Cirno on 2021-7-16. -// - -import os.log -import UIKit -import Combine -import SwiftUI -import MastodonAsset -import MastodonLocalization -import MastodonCore -import MastodonUI - -class ComposeViewController: UIViewController { - - let logger = Logger(subsystem: "ComposeViewController", category: "ViewController") - - let context = AppContext() - - var disposeBag = Set() - private(set) lazy var viewModel = ComposeViewModel(context: context) - - let publishButton: UIButton = { - let button = RoundedEdgesButton(type: .custom) - button.setTitle(L10n.Scene.Compose.composeAction, for: .normal) - button.titleLabel?.font = .systemFont(ofSize: 14, weight: .bold) - button.setBackgroundImage(.placeholder(color: Asset.Colors.brand.color), for: .normal) - button.setBackgroundImage(.placeholder(color: Asset.Colors.brand.color.withAlphaComponent(0.5)), for: .highlighted) - button.setBackgroundImage(.placeholder(color: Asset.Colors.Button.disabled.color), for: .disabled) - button.setTitleColor(.white, for: .normal) - button.contentEdgeInsets = UIEdgeInsets(top: 6, left: 16, bottom: 5, right: 16) // set 28pt height - button.adjustsImageWhenHighlighted = false - return button - }() - - private(set) lazy var cancelBarButtonItem = UIBarButtonItem(title: L10n.Common.Controls.Actions.cancel, style: .plain, target: self, action: #selector(ComposeViewController.cancelBarButtonItemPressed(_:))) - private(set) lazy var publishBarButtonItem: UIBarButtonItem = { - let barButtonItem = UIBarButtonItem(customView: publishButton) - publishButton.addTarget(self, action: #selector(ComposeViewController.publishBarButtonItemPressed(_:)), for: .touchUpInside) - return barButtonItem - }() - - let activityIndicatorBarButtonItem: UIBarButtonItem = { - let indicatorView = UIActivityIndicatorView(style: .medium) - let barButtonItem = UIBarButtonItem(customView: indicatorView) - indicatorView.startAnimating() - return barButtonItem - }() - - -// let viewSafeAreaDidChange = PassthroughSubject() -// let composeToolbarView = ComposeToolbarView() -// var composeToolbarViewBottomLayoutConstraint: NSLayoutConstraint! -// let composeToolbarBackgroundView = UIView() -} - -extension ComposeViewController { - - override func viewDidLoad() { - super.viewDidLoad() - -// navigationController?.presentationController?.delegate = self -// -// setupBackgroundColor(theme: ThemeService.shared.currentTheme.value) -// ThemeService.shared.currentTheme -// .receive(on: DispatchQueue.main) -// .sink { [weak self] theme in -// guard let self = self else { return } -// self.setupBackgroundColor(theme: theme) -// } -// .store(in: &disposeBag) -// -// navigationItem.leftBarButtonItem = cancelBarButtonItem -// viewModel.isBusy -// .receive(on: DispatchQueue.main) -// .sink { [weak self] isBusy in -// guard let self = self else { return } -// self.navigationItem.rightBarButtonItem = isBusy ? self.activityIndicatorBarButtonItem : self.publishBarButtonItem -// } -// .store(in: &disposeBag) -// -// let hostingViewController = UIHostingController( -// rootView: ComposeView().environmentObject(viewModel.composeViewModel) -// ) -// addChild(hostingViewController) -// view.addSubview(hostingViewController.view) -// hostingViewController.view.translatesAutoresizingMaskIntoConstraints = false -// view.addSubview(hostingViewController.view) -// NSLayoutConstraint.activate([ -// hostingViewController.view.topAnchor.constraint(equalTo: view.topAnchor), -// hostingViewController.view.leadingAnchor.constraint(equalTo: view.leadingAnchor), -// hostingViewController.view.trailingAnchor.constraint(equalTo: view.trailingAnchor), -// hostingViewController.view.bottomAnchor.constraint(equalTo: view.bottomAnchor), -// ]) -// hostingViewController.didMove(toParent: self) -// -// composeToolbarView.translatesAutoresizingMaskIntoConstraints = false -// view.addSubview(composeToolbarView) -// composeToolbarViewBottomLayoutConstraint = view.bottomAnchor.constraint(equalTo: composeToolbarView.bottomAnchor) -// NSLayoutConstraint.activate([ -// composeToolbarView.leadingAnchor.constraint(equalTo: view.leadingAnchor), -// composeToolbarView.trailingAnchor.constraint(equalTo: view.trailingAnchor), -// composeToolbarViewBottomLayoutConstraint, -// composeToolbarView.heightAnchor.constraint(equalToConstant: ComposeToolbarView.toolbarHeight), -// ]) -// composeToolbarView.preservesSuperviewLayoutMargins = true -// composeToolbarView.delegate = self -// -// composeToolbarBackgroundView.translatesAutoresizingMaskIntoConstraints = false -// view.insertSubview(composeToolbarBackgroundView, belowSubview: composeToolbarView) -// NSLayoutConstraint.activate([ -// composeToolbarBackgroundView.topAnchor.constraint(equalTo: composeToolbarView.topAnchor), -// composeToolbarBackgroundView.leadingAnchor.constraint(equalTo: composeToolbarView.leadingAnchor), -// composeToolbarBackgroundView.trailingAnchor.constraint(equalTo: composeToolbarView.trailingAnchor), -// view.bottomAnchor.constraint(equalTo: composeToolbarBackgroundView.bottomAnchor), -// ]) -// -// // FIXME: using iOS 15 toolbar for .keyboard placement -// let keyboardEventPublishers = Publishers.CombineLatest3( -// KeyboardResponderService.shared.isShow, -// KeyboardResponderService.shared.state, -// KeyboardResponderService.shared.endFrame -// ) -// -// Publishers.CombineLatest( -// keyboardEventPublishers, -// viewSafeAreaDidChange -// ) -// .sink(receiveValue: { [weak self] keyboardEvents, _ in -// guard let self = self else { return } -// -// let (isShow, state, endFrame) = keyboardEvents -// guard isShow, state == .dock else { -// UIView.animate(withDuration: 0.3) { -// self.composeToolbarViewBottomLayoutConstraint.constant = self.view.safeAreaInsets.bottom -// self.view.layoutIfNeeded() -// } -// return -// } -// // isShow AND dock state -// -// UIView.animate(withDuration: 0.3) { -// self.composeToolbarViewBottomLayoutConstraint.constant = endFrame.height -// self.view.layoutIfNeeded() -// } -// }) -// .store(in: &disposeBag) -// -// // bind visibility toolbar UI -// Publishers.CombineLatest( -// viewModel.selectedStatusVisibility, -// viewModel.traitCollectionDidChangePublisher -// ) -// .receive(on: DispatchQueue.main) -// .sink { [weak self] type, _ in -// guard let self = self else { return } -// let image = type.image(interfaceStyle: self.traitCollection.userInterfaceStyle) -// self.composeToolbarView.visibilityButton.setImage(image, for: .normal) -// self.composeToolbarView.activeVisibilityType.value = type -// } -// .store(in: &disposeBag) -// -// // bind counter -// viewModel.characterCount -// .receive(on: DispatchQueue.main) -// .sink { [weak self] characterCount in -// guard let self = self else { return } -// let count = ShareViewModel.composeContentLimit - characterCount -// self.composeToolbarView.characterCountLabel.text = "\(count)" -// switch count { -// case _ where count < 0: -// self.composeToolbarView.characterCountLabel.font = .monospacedDigitSystemFont(ofSize: 24, weight: .bold) -// self.composeToolbarView.characterCountLabel.textColor = Asset.Colors.danger.color -// self.composeToolbarView.characterCountLabel.accessibilityLabel = L10n.A11y.Plural.Count.inputLimitExceeds(abs(count)) -// default: -// self.composeToolbarView.characterCountLabel.font = .monospacedDigitSystemFont(ofSize: 15, weight: .regular) -// self.composeToolbarView.characterCountLabel.textColor = Asset.Colors.Label.secondary.color -// self.composeToolbarView.characterCountLabel.accessibilityLabel = L10n.A11y.Plural.Count.inputLimitRemains(count) -// } -// } -// .store(in: &disposeBag) -// -// // bind valid -// viewModel.isValid -// .receive(on: DispatchQueue.main) -// .assign(to: \.isEnabled, on: publishButton) -// .store(in: &disposeBag) - } - - override func viewDidAppear(_ animated: Bool) { - super.viewDidAppear(animated) - -// viewModel.viewDidAppear.value = true -// viewModel.inputItems.value = extensionContext?.inputItems.compactMap { $0 as? NSExtensionItem } ?? [] -// -// viewModel.composeViewModel.viewDidAppear = true - } - - override func viewSafeAreaInsetsDidChange() { - super.viewSafeAreaInsetsDidChange() - -// viewSafeAreaDidChange.send() - } - - override func traitCollectionDidChange(_ previousTraitCollection: UITraitCollection?) { - super.traitCollectionDidChange(previousTraitCollection) - -// viewModel.traitCollectionDidChangePublisher.send() - } - -} - -//extension ComposeViewController { -// private func setupBackgroundColor(theme: Theme) { -// view.backgroundColor = theme.systemElevatedBackgroundColor -// viewModel.composeViewModel.backgroundColor = theme.systemElevatedBackgroundColor -// composeToolbarBackgroundView.backgroundColor = theme.composeToolbarBackgroundColor -// -// let barAppearance = UINavigationBarAppearance() -// barAppearance.configureWithDefaultBackground() -// barAppearance.backgroundColor = theme.navigationBarBackgroundColor -// navigationItem.standardAppearance = barAppearance -// navigationItem.compactAppearance = barAppearance -// navigationItem.scrollEdgeAppearance = barAppearance -// } -// -// private func showDismissConfirmAlertController() { -// let alertController = UIAlertController(title: nil, message: nil, preferredStyle: .actionSheet) // can not use alert in extension -// let discardAction = UIAlertAction(title: L10n.Common.Controls.Actions.discard, style: .destructive) { _ in -// self.extensionContext?.cancelRequest(withError: ShareViewModel.ShareError.userCancelShare) -// } -// alertController.addAction(discardAction) -// let okAction = UIAlertAction(title: L10n.Common.Controls.Actions.ok, style: .cancel, handler: nil) -// alertController.addAction(okAction) -// self.present(alertController, animated: true, completion: nil) -// } -//} -// -extension ComposeViewController { - @objc private func cancelBarButtonItemPressed(_ sender: UIBarButtonItem) { - logger.debug("\((#file as NSString).lastPathComponent, privacy: .public)[\(#line, privacy: .public)], \(#function, privacy: .public)") - -// showDismissConfirmAlertController() - } - - @objc private func publishBarButtonItemPressed(_ sender: UIBarButtonItem) { - logger.debug("\((#file as NSString).lastPathComponent, privacy: .public)[\(#line, privacy: .public)], \(#function, privacy: .public)") - -// viewModel.isPublishing.value = true -// -// viewModel.publish() -// .delay(for: 2, scheduler: DispatchQueue.main) -// .receive(on: DispatchQueue.main) -// .sink { [weak self] completion in -// guard let self = self else { return } -// self.viewModel.isPublishing.value = false -// -// switch completion { -// case .failure: -// let alertController = UIAlertController( -// title: L10n.Common.Alerts.PublishPostFailure.title, -// message: L10n.Common.Alerts.PublishPostFailure.message, -// preferredStyle: .actionSheet // can not use alert in extension -// ) -// let okAction = UIAlertAction( -// title: L10n.Common.Controls.Actions.ok, -// style: .cancel, -// handler: nil -// ) -// alertController.addAction(okAction) -// self.present(alertController, animated: true, completion: nil) -// case .finished: -// self.publishButton.setTitle(L10n.Common.Controls.Actions.done, for: .normal) -// self.publishButton.isUserInteractionEnabled = false -// DispatchQueue.main.asyncAfter(deadline: .now() + 1) { [weak self] in -// guard let self = self else { return } -// self.extensionContext?.completeRequest(returningItems: nil, completionHandler: nil) -// } -// } -// } receiveValue: { response in -// // do nothing -// } -// .store(in: &disposeBag) - } -} - -//// MARK - ComposeToolbarViewDelegate -//extension ComposeViewController: ComposeToolbarViewDelegate { -// -// func composeToolbarView(_ composeToolbarView: ComposeToolbarView, contentWarningButtonDidPressed sender: UIButton) { -// logger.debug("\((#file as NSString).lastPathComponent, privacy: .public)[\(#line, privacy: .public)], \(#function, privacy: .public)") -// -// withAnimation { -// viewModel.composeViewModel.isContentWarningComposing.toggle() -// } -// } -// -// func composeToolbarView(_ composeToolbarView: ComposeToolbarView, visibilityButtonDidPressed sender: UIButton, visibilitySelectionType type: ComposeToolbarView.VisibilitySelectionType) { -// logger.debug("\((#file as NSString).lastPathComponent, privacy: .public)[\(#line, privacy: .public)], \(#function, privacy: .public)") -// -// viewModel.selectedStatusVisibility.value = type -// } -// -//} -// -//// MARK: - UIAdaptivePresentationControllerDelegate -//extension ComposeViewController: UIAdaptivePresentationControllerDelegate { -// -// func presentationControllerShouldDismiss(_ presentationController: UIPresentationController) -> Bool { -// return viewModel.shouldDismiss.value -// } -// -// func presentationControllerDidAttemptToDismiss(_ presentationController: UIPresentationController) { -// os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s", ((#file as NSString).lastPathComponent), #line, #function) -// showDismissConfirmAlertController() -// -// } -// -// func presentationControllerDidDismiss(_ presentationController: UIPresentationController) { -// os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s", ((#file as NSString).lastPathComponent), #line, #function) -// } -// -//} diff --git a/ShareActionExtension/Scene/ComposeViewModel.swift b/ShareActionExtension/Scene/ComposeViewModel.swift deleted file mode 100644 index 93515b7dc..000000000 --- a/ShareActionExtension/Scene/ComposeViewModel.swift +++ /dev/null @@ -1,416 +0,0 @@ -// -// ComposeViewModel.swift -// MastodonShareAction -// -// Created by MainasuK Cirno on 2021-7-16. -// - -import os.log -import Foundation -import Combine -import CoreData -import CoreDataStack -import MastodonSDK -import SwiftUI -import UniformTypeIdentifiers -import MastodonAsset -import MastodonLocalization -import MastodonUI -import MastodonCore - -final class ComposeViewModel { - - let logger = Logger(subsystem: "ComposeViewModel", category: "ViewModel") - - var disposeBag = Set() - - static let composeContentLimit: Int = 500 - - // input - let context: AppContext - -// private var coreDataStack: CoreDataStack? -// var managedObjectContext: NSManagedObjectContext? -// var api: APIService? -// -// var inputItems = CurrentValueSubject<[NSExtensionItem], Never>([]) -// let viewDidAppear = CurrentValueSubject(false) -// let traitCollectionDidChangePublisher = CurrentValueSubject(Void()) // use CurrentValueSubject to make initial event emit -// let selectedStatusVisibility = CurrentValueSubject(.public) -// -// // output -// let authentication = CurrentValueSubject?, Never>(nil) -// let isFetchAuthentication = CurrentValueSubject(true) -// let isPublishing = CurrentValueSubject(false) -// let isBusy = CurrentValueSubject(true) -// let isValid = CurrentValueSubject(false) -// let shouldDismiss = CurrentValueSubject(true) -// let composeViewModel = ComposeViewModel() -// let characterCount = CurrentValueSubject(0) - - init(context: AppContext) { - self.context = context - // end init - -// viewDidAppear.receive(on: DispatchQueue.main) -// .removeDuplicates() -// .sink { [weak self] viewDidAppear in -// guard let self = self else { return } -// guard viewDidAppear else { return } -// self.setupCoreData() -// } -// .store(in: &disposeBag) -// -// Publishers.CombineLatest( -// inputItems.removeDuplicates(), -// viewDidAppear.removeDuplicates() -// ) -// .receive(on: DispatchQueue.main) -// .sink { [weak self] inputItems, _ in -// guard let self = self else { return } -// self.parse(inputItems: inputItems) -// } -// .store(in: &disposeBag) -// -// // bind authentication loading state -// authentication -// .map { result in result == nil } -// .assign(to: \.value, on: isFetchAuthentication) -// .store(in: &disposeBag) -// -// // bind user locked state -// authentication -// .compactMap { result -> Bool? in -// guard let result = result else { return nil } -// switch result { -// case .success(let authentication): -// return authentication.user.locked -// case .failure: -// return nil -// } -// } -// .map { locked -> ComposeToolbarView.VisibilitySelectionType in -// locked ? .private : .public -// } -// .assign(to: \.value, on: selectedStatusVisibility) -// .store(in: &disposeBag) -// -// // bind author -// authentication -// .receive(on: DispatchQueue.main) -// .sink { [weak self] result in -// guard let self = self else { return } -// guard let result = result else { return } -// switch result { -// case .success(let authentication): -// self.composeViewModel.avatarImageURL = authentication.user.avatarImageURL() -// self.composeViewModel.authorName = authentication.user.displayNameWithFallback -// self.composeViewModel.authorUsername = "@" + authentication.user.username -// case .failure: -// self.composeViewModel.avatarImageURL = nil -// self.composeViewModel.authorName = " " -// self.composeViewModel.authorUsername = " " -// } -// } -// .store(in: &disposeBag) -// -// // bind authentication to compose view model -// authentication -// .map { result -> MastodonAuthentication? in -// guard let result = result else { return nil } -// switch result { -// case .success(let authentication): -// return authentication -// case .failure: -// return nil -// } -// } -// .assign(to: &composeViewModel.$authentication) -// -// // bind isBusy -// Publishers.CombineLatest( -// isFetchAuthentication, -// isPublishing -// ) -// .receive(on: DispatchQueue.main) -// .map { $0 || $1 } -// .assign(to: \.value, on: isBusy) -// .store(in: &disposeBag) -// -// // pass initial i18n string -// composeViewModel.statusPlaceholder = L10n.Scene.Compose.contentInputPlaceholder -// composeViewModel.contentWarningPlaceholder = L10n.Scene.Compose.ContentWarning.placeholder -// composeViewModel.toolbarHeight = ComposeToolbarView.toolbarHeight -// -// // bind compose bar button item UI state -// let isComposeContentEmpty = composeViewModel.$statusContent -// .map { $0.isEmpty } -// -// isComposeContentEmpty -// .assign(to: \.value, on: shouldDismiss) -// .store(in: &disposeBag) -// -// let isComposeContentValid = composeViewModel.$characterCount -// .map { characterCount -> Bool in -// return characterCount <= ShareViewModel.composeContentLimit -// } -// let isMediaEmpty = composeViewModel.$attachmentViewModels -// .map { $0.isEmpty } -// let isMediaUploadAllSuccess = composeViewModel.$attachmentViewModels -// .map { viewModels in -// viewModels.allSatisfy { $0.uploadStateMachineSubject.value is StatusAttachmentViewModel.UploadState.Finish } -// } -// -// let isPublishBarButtonItemEnabledPrecondition1 = Publishers.CombineLatest4( -// isComposeContentEmpty, -// isComposeContentValid, -// isMediaEmpty, -// isMediaUploadAllSuccess -// ) -// .map { isComposeContentEmpty, isComposeContentValid, isMediaEmpty, isMediaUploadAllSuccess -> Bool in -// if isMediaEmpty { -// return isComposeContentValid && !isComposeContentEmpty -// } else { -// return isComposeContentValid && isMediaUploadAllSuccess -// } -// } -// .eraseToAnyPublisher() -// -// let isPublishBarButtonItemEnabledPrecondition2 = Publishers.CombineLatest( -// isComposeContentEmpty, -// isComposeContentValid -// ) -// .map { isComposeContentEmpty, isComposeContentValid -> Bool in -// return isComposeContentValid && !isComposeContentEmpty -// } -// .eraseToAnyPublisher() -// -// Publishers.CombineLatest( -// isPublishBarButtonItemEnabledPrecondition1, -// isPublishBarButtonItemEnabledPrecondition2 -// ) -// .map { $0 && $1 } -// .assign(to: \.value, on: isValid) -// .store(in: &disposeBag) -// -// // bind counter -// composeViewModel.$characterCount -// .assign(to: \.value, on: characterCount) -// .store(in: &disposeBag) -// -// // setup theme -// setupBackgroundColor(theme: ThemeService.shared.currentTheme.value) -// ThemeService.shared.currentTheme -// .receive(on: DispatchQueue.main) -// .sink { [weak self] theme in -// guard let self = self else { return } -// self.setupBackgroundColor(theme: theme) -// } -// .store(in: &disposeBag) - } - - private func setupBackgroundColor(theme: Theme) { -// composeViewModel.contentWarningBackgroundColor = Color(theme.contentWarningOverlayBackgroundColor) - } - -} - -//extension ShareViewModel { -// enum ShareError: Error { -// case `internal`(error: Error) -// case userCancelShare -// case missingAuthentication -// } -//} - -extension ComposeViewModel { -// private func setupCoreData() { -// logger.debug("\((#file as NSString).lastPathComponent, privacy: .public)[\(#line, privacy: .public)], \(#function, privacy: .public)") -// DispatchQueue.global().async { -// let _coreDataStack = CoreDataStack() -// self.coreDataStack = _coreDataStack -// self.managedObjectContext = _coreDataStack.persistentContainer.viewContext -// -// _coreDataStack.didFinishLoad -// .receive(on: RunLoop.main) -// .sink { [weak self] didFinishLoad in -// guard let self = self else { return } -// guard didFinishLoad else { return } -// guard let managedObjectContext = self.managedObjectContext else { return } -// -// -// self.api = APIService(backgroundManagedObjectContext: _coreDataStack.newTaskContext()) -// -// self.logger.debug("\((#file as NSString).lastPathComponent, privacy: .public)[\(#line, privacy: .public)], \(#function, privacy: .public): fetch authentication…") -// managedObjectContext.perform { -// do { -// let request = MastodonAuthentication.sortedFetchRequest -// let authentications = try managedObjectContext.fetch(request) -// let authentication = authentications.sorted(by: { $0.activedAt > $1.activedAt }).first -// guard let activeAuthentication = authentication else { -// self.authentication.value = .failure(ShareError.missingAuthentication) -// return -// } -// self.authentication.value = .success(activeAuthentication) -// self.logger.debug("\((#file as NSString).lastPathComponent, privacy: .public)[\(#line, privacy: .public)], \(#function, privacy: .public): fetch authentication success \(activeAuthentication.userID)") -// } catch { -// self.authentication.value = .failure(ShareError.internal(error: error)) -// self.logger.debug("\((#file as NSString).lastPathComponent, privacy: .public)[\(#line, privacy: .public)], \(#function, privacy: .public): fetch authentication fail \(error.localizedDescription)") -// assertionFailure(error.localizedDescription) -// } -// } -// } -// .store(in: &self.disposeBag) -// } -// } -} - -//extension ShareViewModel { -// func parse(inputItems: [NSExtensionItem]) { -// var itemProviders: [NSItemProvider] = [] -// -// for item in inputItems { -// itemProviders.append(contentsOf: item.attachments ?? []) -// } -// -// let _textProvider = itemProviders.first { provider in -// return provider.hasRepresentationConforming(toTypeIdentifier: UTType.plainText.identifier, fileOptions: []) -// } -// -// let _urlProvider = itemProviders.first { provider in -// return provider.hasRepresentationConforming(toTypeIdentifier: UTType.url.identifier, fileOptions: []) -// } -// -// let _movieProvider = itemProviders.first { provider in -// return provider.hasRepresentationConforming(toTypeIdentifier: UTType.movie.identifier, fileOptions: []) -// } -// -// let imageProviders = itemProviders.filter { provider in -// return provider.hasRepresentationConforming(toTypeIdentifier: UTType.image.identifier, fileOptions: []) -// } -// -// Task { @MainActor in -// async let text = ShareViewModel.loadText(textProvider: _textProvider) -// async let url = ShareViewModel.loadURL(textProvider: _urlProvider) -// -// let content = await [text, url] -// .compactMap { $0 } -// .joined(separator: " ") -// self.composeViewModel.statusContent = content -// } -// -// guard let api = self.api else { return } -// -// if let movieProvider = _movieProvider { -// composeViewModel.setupAttachmentViewModels([ -// StatusAttachmentViewModel(api: api, itemProvider: movieProvider) -// ]) -// } else if !imageProviders.isEmpty { -// let viewModels = imageProviders.map { provider in -// StatusAttachmentViewModel(api: api, itemProvider: provider) -// } -// composeViewModel.setupAttachmentViewModels(viewModels) -// } -// -// } -// -// private static func loadText(textProvider: NSItemProvider?) async -> String? { -// guard let textProvider = textProvider else { return nil } -// do { -// let item = try await textProvider.loadItem(forTypeIdentifier: UTType.plainText.identifier) -// guard let text = item as? String else { return nil } -// return text -// } catch { -// return nil -// } -// } -// -// private static func loadURL(textProvider: NSItemProvider?) async -> String? { -// guard let textProvider = textProvider else { return nil } -// do { -// let item = try await textProvider.loadItem(forTypeIdentifier: UTType.url.identifier) -// guard let url = item as? URL else { return nil } -// return url.absoluteString -// } catch { -// return nil -// } -// } -// -//} -// -//extension ShareViewModel { -// func publish() -> AnyPublisher, Error> { -// guard let authentication = composeViewModel.authentication, -// let api = self.api -// else { -// return Fail(error: APIService.APIError.implicit(.authenticationMissing)).eraseToAnyPublisher() -// } -// let authenticationBox = MastodonAuthenticationBox( -// authenticationRecord: .init(objectID: authentication.objectID), -// domain: authentication.domain, -// userID: authentication.userID, -// appAuthorization: Mastodon.API.OAuth.Authorization(accessToken: authentication.appAccessToken), -// userAuthorization: Mastodon.API.OAuth.Authorization(accessToken: authentication.userAccessToken) -// ) -// -// let domain = authentication.domain -// let attachmentViewModels = composeViewModel.attachmentViewModels -// let mediaIDs = attachmentViewModels.compactMap { viewModel in -// viewModel.attachment.value?.id -// } -// let sensitive: Bool = composeViewModel.isContentWarningComposing -// let spoilerText: String? = { -// let text = composeViewModel.contentWarningContent -// guard !text.isEmpty else { return nil } -// return text -// }() -// let visibility = selectedStatusVisibility.value.visibility -// -// let updateMediaQuerySubscriptions: [AnyPublisher, Error>] = { -// var subscriptions: [AnyPublisher, Error>] = [] -// for attachmentViewModel in attachmentViewModels { -// guard let attachmentID = attachmentViewModel.attachment.value?.id else { continue } -// let description = attachmentViewModel.descriptionContent.trimmingCharacters(in: .whitespacesAndNewlines) -// guard !description.isEmpty else { continue } -// let query = Mastodon.API.Media.UpdateMediaQuery( -// file: nil, -// thumbnail: nil, -// description: description, -// focus: nil -// ) -// let subscription = api.updateMedia( -// domain: domain, -// attachmentID: attachmentID, -// query: query, -// mastodonAuthenticationBox: authenticationBox -// ) -// subscriptions.append(subscription) -// } -// return subscriptions -// }() -// -// let status = composeViewModel.statusContent -// -// return Publishers.MergeMany(updateMediaQuerySubscriptions) -// .collect() -// .asyncMap { attachments in -// let query = Mastodon.API.Statuses.PublishStatusQuery( -// status: status, -// mediaIDs: mediaIDs.isEmpty ? nil : mediaIDs, -// pollOptions: nil, -// pollExpiresIn: nil, -// inReplyToID: nil, -// sensitive: sensitive, -// spoilerText: spoilerText, -// visibility: visibility -// ) -// return try await api.publishStatus( -// domain: domain, -// idempotencyKey: nil, // FIXME: -// query: query, -// authenticationBox: authenticationBox -// ) -// } -// .eraseToAnyPublisher() -// } -//} diff --git a/ShareActionExtension/Scene/ShareViewController.swift b/ShareActionExtension/Scene/ShareViewController.swift new file mode 100644 index 000000000..7757452cd --- /dev/null +++ b/ShareActionExtension/Scene/ShareViewController.swift @@ -0,0 +1,330 @@ +// +// ShareViewController.swift +// ShareActionExtension +// +// Created by MainasuK on 2022/11/13. +// + +import os.log +import UIKit +import Combine +import CoreDataStack +import MastodonCore +import MastodonUI +import MastodonAsset +import MastodonLocalization +import UniformTypeIdentifiers + +final class ShareViewController: UIViewController { + + let logger = Logger(subsystem: "ShareViewController", category: "ViewController") + + var disposeBag = Set() + + let context = AppContext() + private(set) lazy var viewModel = ShareViewModel(context: context) + + let publishButton: UIButton = { + let button = RoundedEdgesButton(type: .custom) + button.cornerRadius = 10 + button.contentEdgeInsets = UIEdgeInsets(top: 6, left: 16, bottom: 5, right: 16) // set 28pt height + button.titleLabel?.font = .systemFont(ofSize: 14, weight: .bold) + button.setTitle(L10n.Scene.Compose.composeAction, for: .normal) + return button + }() + private func configurePublishButtonApperance() { + publishButton.adjustsImageWhenHighlighted = false + publishButton.setBackgroundImage(.placeholder(color: Asset.Colors.Label.primary.color), for: .normal) + publishButton.setBackgroundImage(.placeholder(color: Asset.Colors.Label.primary.color.withAlphaComponent(0.5)), for: .highlighted) + publishButton.setBackgroundImage(.placeholder(color: Asset.Colors.Button.disabled.color), for: .disabled) + publishButton.setTitleColor(Asset.Colors.Label.primaryReverse.color, for: .normal) + } + + private(set) lazy var cancelBarButtonItem = UIBarButtonItem(title: L10n.Common.Controls.Actions.cancel, style: .plain, target: self, action: #selector(ShareViewController.cancelBarButtonItemPressed(_:))) + private(set) lazy var publishBarButtonItem: UIBarButtonItem = { + let barButtonItem = UIBarButtonItem(customView: publishButton) + publishButton.addTarget(self, action: #selector(ShareViewController.publishBarButtonItemPressed(_:)), for: .touchUpInside) + return barButtonItem + }() + let activityIndicatorBarButtonItem: UIBarButtonItem = { + let indicatorView = UIActivityIndicatorView(style: .medium) + let barButtonItem = UIBarButtonItem(customView: indicatorView) + indicatorView.startAnimating() + return barButtonItem + }() + + private var composeContentViewModel: ComposeContentViewModel? + private var composeContentViewController: ComposeContentViewController? + + let notSignInLabel: UILabel = { + let label = UILabel() + label.font = .preferredFont(forTextStyle: .subheadline) + label.textColor = .secondaryLabel + label.text = "No Available Account" // TODO: i18n + return label + }() + +} + +extension ShareViewController { + override func viewDidLoad() { + super.viewDidLoad() + + setupTheme(theme: ThemeService.shared.currentTheme.value) + ThemeService.shared.apply(theme: ThemeService.shared.currentTheme.value) + ThemeService.shared.currentTheme + .receive(on: DispatchQueue.main) + .sink { [weak self] theme in + guard let self = self else { return } + self.setupTheme(theme: theme) + } + .store(in: &disposeBag) + + view.backgroundColor = .systemBackground + title = L10n.Scene.Compose.Title.newPost + + navigationItem.leftBarButtonItem = cancelBarButtonItem + navigationItem.rightBarButtonItem = publishBarButtonItem + + do { + guard let authContext = try setupAuthContext() else { + setupHintLabel() + return + } + viewModel.authContext = authContext + let composeContentViewModel = ComposeContentViewModel( + context: context, + authContext: authContext, + kind: .post + ) + let composeContentViewController = ComposeContentViewController() + composeContentViewController.viewModel = composeContentViewModel + addChild(composeContentViewController) + composeContentViewController.view.translatesAutoresizingMaskIntoConstraints = false + view.addSubview(composeContentViewController.view) + NSLayoutConstraint.activate([ + composeContentViewController.view.topAnchor.constraint(equalTo: view.topAnchor), + composeContentViewController.view.leadingAnchor.constraint(equalTo: view.leadingAnchor), + composeContentViewController.view.trailingAnchor.constraint(equalTo: view.trailingAnchor), + composeContentViewController.view.bottomAnchor.constraint(equalTo: view.bottomAnchor), + ]) + composeContentViewController.didMove(toParent: self) + + self.composeContentViewModel = composeContentViewModel + self.composeContentViewController = composeContentViewController + + Task { @MainActor in + let inputItems = self.extensionContext?.inputItems.compactMap { $0 as? NSExtensionItem } ?? [] + await load(inputItems: inputItems) + } // end Task + } catch { + logger.log(level: .debug, "\((#file as NSString).lastPathComponent, privacy: .public)[\(#line, privacy: .public)], \(#function, privacy: .public): error: \(error.localizedDescription)") + } + + viewModel.$isPublishing + .receive(on: DispatchQueue.main) + .sink { [weak self] isBusy in + guard let self = self else { return } + self.navigationItem.rightBarButtonItem = isBusy ? self.activityIndicatorBarButtonItem : self.publishBarButtonItem + } + .store(in: &disposeBag) + } + + override func traitCollectionDidChange(_ previousTraitCollection: UITraitCollection?) { + super.traitCollectionDidChange(previousTraitCollection) + + configurePublishButtonApperance() + } +} + +extension ShareViewController { + @objc private func cancelBarButtonItemPressed(_ sender: UIBarButtonItem) { + logger.debug("\((#file as NSString).lastPathComponent, privacy: .public)[\(#line, privacy: .public)], \(#function, privacy: .public)") + + extensionContext?.cancelRequest(withError: NSError(domain: "org.joinmastodon.app.ShareActionExtension", code: -1)) + } + + @objc private func publishBarButtonItemPressed(_ sender: UIBarButtonItem) { + logger.debug("\((#file as NSString).lastPathComponent, privacy: .public)[\(#line, privacy: .public)], \(#function, privacy: .public)") + + + Task { @MainActor in + viewModel.isPublishing = true + do { + guard let statusPublisher = try composeContentViewModel?.statusPublisher(), + let authContext = viewModel.authContext + else { + throw AppError.badRequest + } + + _ = try await statusPublisher.publish(api: context.apiService, authContext: authContext) + + self.publishButton.setTitle(L10n.Common.Controls.Actions.done, for: .normal) + try await Task.sleep(nanoseconds: 1 * .second) + + self.extensionContext?.completeRequest(returningItems: nil, completionHandler: nil) + + } catch { + let alertController = UIAlertController.standardAlert(of: error) + present(alertController, animated: true) + return + } + viewModel.isPublishing = false + + } + } +} + +extension ShareViewController { + private func setupAuthContext() throws -> AuthContext? { + let request = MastodonAuthentication.activeSortedFetchRequest // use active order + let _authentication = try context.managedObjectContext.fetch(request).first + let _authContext = _authentication.flatMap { AuthContext(authentication: $0) } + return _authContext + } + + private func setupHintLabel() { + notSignInLabel.translatesAutoresizingMaskIntoConstraints = false + view.addSubview(notSignInLabel) + NSLayoutConstraint.activate([ + notSignInLabel.centerXAnchor.constraint(equalTo: view.centerXAnchor), + notSignInLabel.centerYAnchor.constraint(equalTo: view.centerYAnchor), + ]) + } + + private func setupTheme(theme: Theme) { + view.backgroundColor = theme.systemElevatedBackgroundColor + + let barAppearance = UINavigationBarAppearance() + barAppearance.configureWithDefaultBackground() + barAppearance.backgroundColor = theme.navigationBarBackgroundColor + navigationItem.standardAppearance = barAppearance + navigationItem.compactAppearance = barAppearance + navigationItem.scrollEdgeAppearance = barAppearance + } + + private func showDismissConfirmAlertController() { + let alertController = UIAlertController(title: nil, message: nil, preferredStyle: .actionSheet) // can not use alert in extension + let discardAction = UIAlertAction(title: L10n.Common.Controls.Actions.discard, style: .destructive) { _ in + self.extensionContext?.cancelRequest(withError: ShareError.userCancelShare) + } + alertController.addAction(discardAction) + let okAction = UIAlertAction(title: L10n.Common.Controls.Actions.ok, style: .cancel, handler: nil) + alertController.addAction(okAction) + self.present(alertController, animated: true, completion: nil) + } +} + +// MARK: - UIAdaptivePresentationControllerDelegate +extension ShareViewController: UIAdaptivePresentationControllerDelegate { + + func presentationControllerShouldDismiss(_ presentationController: UIPresentationController) -> Bool { + return composeContentViewModel?.shouldDismiss ?? true + } + + func presentationControllerDidAttemptToDismiss(_ presentationController: UIPresentationController) { + os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s", ((#file as NSString).lastPathComponent), #line, #function) + showDismissConfirmAlertController() + } + + func presentationControllerDidDismiss(_ presentationController: UIPresentationController) { + os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s", ((#file as NSString).lastPathComponent), #line, #function) + } + +} + +extension ShareViewController { + + private func load(inputItems: [NSExtensionItem]) async { + guard let composeContentViewModel = self.composeContentViewModel, + let authContext = viewModel.authContext + else { + assertionFailure() + return + } + var itemProviders: [NSItemProvider] = [] + + for item in inputItems { + itemProviders.append(contentsOf: item.attachments ?? []) + } + + let _textProvider = itemProviders.first { provider in + return provider.hasRepresentationConforming(toTypeIdentifier: UTType.plainText.identifier, fileOptions: []) + } + + let _urlProvider = itemProviders.first { provider in + return provider.hasRepresentationConforming(toTypeIdentifier: UTType.url.identifier, fileOptions: []) + } + + let _movieProvider = itemProviders.first { provider in + return provider.hasRepresentationConforming(toTypeIdentifier: UTType.movie.identifier, fileOptions: []) + } + + let imageProviders = itemProviders.filter { provider in + return provider.hasRepresentationConforming(toTypeIdentifier: UTType.image.identifier, fileOptions: []) + } + + async let text = ShareViewController.loadText(textProvider: _textProvider) + async let url = ShareViewController.loadURL(textProvider: _urlProvider) + + let content = await [text, url] + .compactMap { $0 } + .joined(separator: " ") + // passby the viewModel `content` value + if !content.isEmpty { + composeContentViewModel.content = content + " " + composeContentViewModel.contentMetaText?.textView.insertText(content + " ") + } + + if let movieProvider = _movieProvider { + let attachmentViewModel = AttachmentViewModel( + api: context.apiService, + authContext: authContext, + input: .itemProvider(movieProvider), + delegate: composeContentViewModel + ) + composeContentViewModel.attachmentViewModels.append(attachmentViewModel) + } else if !imageProviders.isEmpty { + let attachmentViewModels = imageProviders.map { provider in + AttachmentViewModel( + api: context.apiService, + authContext: authContext, + input: .itemProvider(provider), + delegate: composeContentViewModel + ) + } + composeContentViewModel.attachmentViewModels.append(contentsOf: attachmentViewModels) + } + } + + private static func loadText(textProvider: NSItemProvider?) async -> String? { + guard let textProvider = textProvider else { return nil } + do { + let item = try await textProvider.loadItem(forTypeIdentifier: UTType.plainText.identifier) + guard let text = item as? String else { return nil } + return text + } catch { + return nil + } + } + + private static func loadURL(textProvider: NSItemProvider?) async -> String? { + guard let textProvider = textProvider else { return nil } + do { + let item = try await textProvider.loadItem(forTypeIdentifier: UTType.url.identifier) + guard let url = item as? URL else { return nil } + return url.absoluteString + } catch { + return nil + } + } + +} + +extension ShareViewController { + enum ShareError: Error { + case `internal`(error: Error) + case userCancelShare + case missingAuthentication + } +} diff --git a/ShareActionExtension/Scene/ShareViewModel.swift b/ShareActionExtension/Scene/ShareViewModel.swift new file mode 100644 index 000000000..ef8e200a6 --- /dev/null +++ b/ShareActionExtension/Scene/ShareViewModel.swift @@ -0,0 +1,43 @@ +// +// ShareViewModel.swift +// MastodonShareAction +// +// Created by MainasuK Cirno on 2021-7-16. +// + +import os.log +import Foundation +import Combine +import CoreData +import CoreDataStack +import MastodonSDK +import SwiftUI +import UniformTypeIdentifiers +import MastodonAsset +import MastodonLocalization +import MastodonUI +import MastodonCore + +final class ShareViewModel { + + let logger = Logger(subsystem: "ComposeViewModel", category: "ViewModel") + + var disposeBag = Set() + + // input + let context: AppContext + @Published var authContext: AuthContext? + + @Published var isPublishing = false + + // output + + init( + context: AppContext + ) { + self.context = context + // end init + + } + +} From 82abc68486eaac1977ba2f3fe02139e0b2a141a4 Mon Sep 17 00:00:00 2001 From: CMK Date: Mon, 14 Nov 2022 00:06:44 +0800 Subject: [PATCH 175/598] chore: code clean --- Mastodon.xcodeproj/project.pbxproj | 26 -- .../Scene/View/ComposeToolbarView.swift | 262 ------------------ .../Scene/View/ComposeView.swift | 151 ---------- .../Scene/View/ComposeViewModel.swift | 130 --------- .../Scene/View/ContentWarningEditorView.swift | 48 ---- .../Scene/View/StatusAttachmentView.swift | 113 -------- ...tatusAttachmentViewModel+UploadState.swift | 131 --------- .../View/StatusAttachmentViewModel.swift | 227 --------------- .../Scene/View/StatusAuthorView.swift | 45 --- .../Scene/View/StatusEditorView.swift | 105 ------- 10 files changed, 1238 deletions(-) delete mode 100644 ShareActionExtension/Scene/View/ComposeToolbarView.swift delete mode 100644 ShareActionExtension/Scene/View/ComposeView.swift delete mode 100644 ShareActionExtension/Scene/View/ComposeViewModel.swift delete mode 100644 ShareActionExtension/Scene/View/ContentWarningEditorView.swift delete mode 100644 ShareActionExtension/Scene/View/StatusAttachmentView.swift delete mode 100644 ShareActionExtension/Scene/View/StatusAttachmentViewModel+UploadState.swift delete mode 100644 ShareActionExtension/Scene/View/StatusAttachmentViewModel.swift delete mode 100644 ShareActionExtension/Scene/View/StatusAuthorView.swift delete mode 100644 ShareActionExtension/Scene/View/StatusEditorView.swift diff --git a/Mastodon.xcodeproj/project.pbxproj b/Mastodon.xcodeproj/project.pbxproj index fc8e6ff25..434926d94 100644 --- a/Mastodon.xcodeproj/project.pbxproj +++ b/Mastodon.xcodeproj/project.pbxproj @@ -948,7 +948,6 @@ DBB525632612C988002F1F29 /* MeProfileViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MeProfileViewModel.swift; sourceTree = ""; }; DBB8AB4526AECDE200F6D281 /* SendPostIntentHandler.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SendPostIntentHandler.swift; sourceTree = ""; }; DBB9759B262462E1004620BD /* ThreadMetaView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ThreadMetaView.swift; sourceTree = ""; }; - DBBC24A726A52F9000398BB9 /* ComposeToolbarView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ComposeToolbarView.swift; sourceTree = ""; }; DBBE1B4425F3474B0081417A /* MastodonPickServerAppearance.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MastodonPickServerAppearance.swift; sourceTree = ""; }; DBC3872329214121001EC0FD /* ShareViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShareViewController.swift; sourceTree = ""; }; DBC6461226A170AB00B0E31B /* ShareActionExtension.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = ShareActionExtension.appex; sourceTree = BUILT_PRODUCTS_DIR; }; @@ -1028,15 +1027,7 @@ DBFEEC98279BDCDE004F81DD /* ProfileAboutViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProfileAboutViewModel.swift; sourceTree = ""; }; DBFEEC9A279BDDD9004F81DD /* ProfileAboutViewModel+Diffable.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "ProfileAboutViewModel+Diffable.swift"; sourceTree = ""; }; DBFEEC9C279C12C1004F81DD /* ProfileFieldEditCollectionViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProfileFieldEditCollectionViewCell.swift; sourceTree = ""; }; - DBFEF05526A576EE006D7ED1 /* StatusEditorView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StatusEditorView.swift; sourceTree = ""; }; - DBFEF05626A576EE006D7ED1 /* ComposeView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ComposeView.swift; sourceTree = ""; }; - DBFEF05726A576EE006D7ED1 /* ComposeViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ComposeViewModel.swift; sourceTree = ""; }; - DBFEF05826A576EE006D7ED1 /* ContentWarningEditorView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContentWarningEditorView.swift; sourceTree = ""; }; - DBFEF05926A576EE006D7ED1 /* StatusAuthorView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StatusAuthorView.swift; sourceTree = ""; }; - DBFEF05A26A576EE006D7ED1 /* StatusAttachmentView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StatusAttachmentView.swift; sourceTree = ""; }; - DBFEF06226A577F2006D7ED1 /* StatusAttachmentViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StatusAttachmentViewModel.swift; sourceTree = ""; }; DBFEF06726A58D07006D7ED1 /* ShareActionExtension.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = ShareActionExtension.entitlements; sourceTree = ""; }; - DBFEF06C26A67FB7006D7ED1 /* StatusAttachmentViewModel+UploadState.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "StatusAttachmentViewModel+UploadState.swift"; sourceTree = ""; }; DDB1B139FA8EA26F510D58B6 /* Pods-AppShared.asdk - release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-AppShared.asdk - release.xcconfig"; path = "Target Support Files/Pods-AppShared/Pods-AppShared.asdk - release.xcconfig"; sourceTree = ""; }; DF65937EC1FF64462BC002EE /* Pods-MastodonTests.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MastodonTests.profile.xcconfig"; path = "Target Support Files/Pods-MastodonTests/Pods-MastodonTests.profile.xcconfig"; sourceTree = ""; }; E5C7236E58D14A0322FE00F2 /* Pods-Mastodon-MastodonUITests.asdk - debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Mastodon-MastodonUITests.asdk - debug.xcconfig"; path = "Target Support Files/Pods-Mastodon-MastodonUITests/Pods-Mastodon-MastodonUITests.asdk - debug.xcconfig"; sourceTree = ""; }; @@ -2666,26 +2657,9 @@ path = Cell; sourceTree = ""; }; - DBFEF05426A576EE006D7ED1 /* View */ = { - isa = PBXGroup; - children = ( - DBBC24A726A52F9000398BB9 /* ComposeToolbarView.swift */, - DBFEF05526A576EE006D7ED1 /* StatusEditorView.swift */, - DBFEF05626A576EE006D7ED1 /* ComposeView.swift */, - DBFEF05726A576EE006D7ED1 /* ComposeViewModel.swift */, - DBFEF05826A576EE006D7ED1 /* ContentWarningEditorView.swift */, - DBFEF05926A576EE006D7ED1 /* StatusAuthorView.swift */, - DBFEF05A26A576EE006D7ED1 /* StatusAttachmentView.swift */, - DBFEF06226A577F2006D7ED1 /* StatusAttachmentViewModel.swift */, - DBFEF06C26A67FB7006D7ED1 /* StatusAttachmentViewModel+UploadState.swift */, - ); - path = View; - sourceTree = ""; - }; DBFEF06126A57721006D7ED1 /* Scene */ = { isa = PBXGroup; children = ( - DBFEF05426A576EE006D7ED1 /* View */, DBC6462226A1712000B0E31B /* ShareViewModel.swift */, DBC3872329214121001EC0FD /* ShareViewController.swift */, ); diff --git a/ShareActionExtension/Scene/View/ComposeToolbarView.swift b/ShareActionExtension/Scene/View/ComposeToolbarView.swift deleted file mode 100644 index 07833ac90..000000000 --- a/ShareActionExtension/Scene/View/ComposeToolbarView.swift +++ /dev/null @@ -1,262 +0,0 @@ -// -// ComposeToolbarView.swift -// ShareActionExtension -// -// Created by MainasuK Cirno on 2021-7-19. -// - -import os.log -import UIKit -import Combine -import MastodonSDK -import MastodonAsset -import MastodonLocalization -import MastodonCore -import MastodonUI - -protocol ComposeToolbarViewDelegate: AnyObject { - func composeToolbarView(_ composeToolbarView: ComposeToolbarView, contentWarningButtonDidPressed sender: UIButton) - func composeToolbarView(_ composeToolbarView: ComposeToolbarView, visibilityButtonDidPressed sender: UIButton, visibilitySelectionType type: ComposeToolbarView.VisibilitySelectionType) -} - -final class ComposeToolbarView: UIView { - - var disposeBag = Set() - - static let toolbarButtonSize: CGSize = CGSize(width: 44, height: 44) - static let toolbarHeight: CGFloat = 44 - - weak var delegate: ComposeToolbarViewDelegate? - - let contentWarningButton: UIButton = { - let button = HighlightDimmableButton() - ComposeToolbarView.configureToolbarButtonAppearance(button: button) - button.setImage(UIImage(systemName: "exclamationmark.shield", withConfiguration: UIImage.SymbolConfiguration(pointSize: 20, weight: .regular)), for: .normal) - button.accessibilityLabel = L10n.Scene.Compose.Accessibility.enableContentWarning - return button - }() - - let visibilityButton: UIButton = { - let button = HighlightDimmableButton() - ComposeToolbarView.configureToolbarButtonAppearance(button: button) - button.setImage(UIImage(systemName: "person.3", withConfiguration: UIImage.SymbolConfiguration(pointSize: 15, weight: .medium)), for: .normal) - button.accessibilityLabel = L10n.Scene.Compose.Accessibility.postVisibilityMenu - return button - }() - - let characterCountLabel: UILabel = { - let label = UILabel() - label.font = .systemFont(ofSize: 15, weight: .regular) - label.text = "500" - label.textColor = Asset.Colors.Label.secondary.color - label.accessibilityLabel = L10n.A11y.Plural.Count.inputLimitRemains(500) - return label - }() - - let activeVisibilityType = CurrentValueSubject(.public) - - override init(frame: CGRect) { - super.init(frame: frame) - _init() - } - - required init?(coder: NSCoder) { - super.init(coder: coder) - _init() - } - -} - -extension ComposeToolbarView { - - private func _init() { - setupBackgroundColor(theme: ThemeService.shared.currentTheme.value) - ThemeService.shared.currentTheme - .receive(on: DispatchQueue.main) - .sink { [weak self] theme in - guard let self = self else { return } - self.setupBackgroundColor(theme: theme) - } - .store(in: &disposeBag) - - let stackView = UIStackView() - stackView.axis = .horizontal - stackView.spacing = 0 - stackView.distribution = .fillEqually - stackView.translatesAutoresizingMaskIntoConstraints = false - addSubview(stackView) - NSLayoutConstraint.activate([ - stackView.centerYAnchor.constraint(equalTo: centerYAnchor), - layoutMarginsGuide.leadingAnchor.constraint(equalTo: stackView.leadingAnchor, constant: 8), // tweak button margin offset - ]) - - let buttons = [ - contentWarningButton, - visibilityButton, - ] - buttons.forEach { button in - button.translatesAutoresizingMaskIntoConstraints = false - stackView.addArrangedSubview(button) - NSLayoutConstraint.activate([ - button.widthAnchor.constraint(equalToConstant: 44), - button.heightAnchor.constraint(equalToConstant: 44), - ]) - } - - characterCountLabel.translatesAutoresizingMaskIntoConstraints = false - addSubview(characterCountLabel) - NSLayoutConstraint.activate([ - characterCountLabel.topAnchor.constraint(equalTo: topAnchor), - characterCountLabel.leadingAnchor.constraint(greaterThanOrEqualTo: stackView.trailingAnchor, constant: 8), - characterCountLabel.trailingAnchor.constraint(equalTo: layoutMarginsGuide.trailingAnchor), - characterCountLabel.bottomAnchor.constraint(equalTo: bottomAnchor), - ]) - characterCountLabel.setContentHuggingPriority(.defaultHigh, for: .horizontal) - - contentWarningButton.addTarget(self, action: #selector(ComposeToolbarView.contentWarningButtonDidPressed(_:)), for: .touchUpInside) - visibilityButton.menu = createVisibilityContextMenu(interfaceStyle: traitCollection.userInterfaceStyle) - visibilityButton.showsMenuAsPrimaryAction = true - - updateToolbarButtonUserInterfaceStyle() - - // update menu when selected visibility type changed - activeVisibilityType - .receive(on: RunLoop.main) - .sink { [weak self] type in - guard let self = self else { return } - self.visibilityButton.menu = self.createVisibilityContextMenu(interfaceStyle: self.traitCollection.userInterfaceStyle) - } - .store(in: &disposeBag) - } - - override func traitCollectionDidChange(_ previousTraitCollection: UITraitCollection?) { - super.traitCollectionDidChange(previousTraitCollection) - - updateToolbarButtonUserInterfaceStyle() - } - -} - -extension ComposeToolbarView { - private func setupBackgroundColor(theme: Theme) { - backgroundColor = theme.composeToolbarBackgroundColor - } -} - -extension ComposeToolbarView { - enum MediaSelectionType: String { - case camera - case photoLibrary - case browse - } - - enum VisibilitySelectionType: String, CaseIterable { - case `public` - // TODO: remove unlisted option from codebase - // case unlisted - case `private` - case direct - - var title: String { - switch self { - case .public: return L10n.Scene.Compose.Visibility.public - // case .unlisted: return L10n.Scene.Compose.Visibility.unlisted - case .private: return L10n.Scene.Compose.Visibility.private - case .direct: return L10n.Scene.Compose.Visibility.direct - } - } - - func image(interfaceStyle: UIUserInterfaceStyle) -> UIImage { - switch self { - case .public: return UIImage(systemName: "globe", withConfiguration: UIImage.SymbolConfiguration(pointSize: 19, weight: .medium))! - // case .unlisted: return UIImage(systemName: "eye.slash", withConfiguration: UIImage.SymbolConfiguration(pointSize: 18, weight: .regular))! - case .private: - switch interfaceStyle { - case .light: return UIImage(systemName: "person.3", withConfiguration: UIImage.SymbolConfiguration(pointSize: 15, weight: .medium))! - default: return UIImage(systemName: "person.3.fill", withConfiguration: UIImage.SymbolConfiguration(pointSize: 15, weight: .medium))! - } - case .direct: return UIImage(systemName: "at", withConfiguration: UIImage.SymbolConfiguration(pointSize: 19, weight: .regular))! - } - } - - var visibility: Mastodon.Entity.Status.Visibility { - switch self { - case .public: return .public - // case .unlisted: return .unlisted - case .private: return .private - case .direct: return .direct - } - } - } -} - -extension ComposeToolbarView { - - private static func configureToolbarButtonAppearance(button: UIButton) { - button.tintColor = ThemeService.tintColor - button.setBackgroundImage(.placeholder(size: ComposeToolbarView.toolbarButtonSize, color: .systemFill), for: .highlighted) - button.layer.masksToBounds = true - button.layer.cornerRadius = 5 - button.layer.cornerCurve = .continuous - } - - private func updateToolbarButtonUserInterfaceStyle() { - switch traitCollection.userInterfaceStyle { - case .light: - contentWarningButton.setImage(UIImage(systemName: "exclamationmark.shield", withConfiguration: UIImage.SymbolConfiguration(pointSize: 20, weight: .regular))!, for: .normal) - - case .dark: - contentWarningButton.setImage(UIImage(systemName: "exclamationmark.shield.fill", withConfiguration: UIImage.SymbolConfiguration(pointSize: 20, weight: .regular))!, for: .normal) - - default: - assertionFailure() - } - - visibilityButton.menu = createVisibilityContextMenu(interfaceStyle: traitCollection.userInterfaceStyle) - } - - private func createVisibilityContextMenu(interfaceStyle: UIUserInterfaceStyle) -> UIMenu { - let children: [UIMenuElement] = VisibilitySelectionType.allCases.map { type in - let state: UIMenuElement.State = activeVisibilityType.value == type ? .on : .off - return UIAction(title: type.title, image: type.image(interfaceStyle: interfaceStyle), identifier: nil, discoverabilityTitle: nil, attributes: [], state: state) { [weak self] action in - guard let self = self else { return } - os_log(.info, "%{public}s[%{public}ld], %{public}s: visibilitySelectionType: %s", ((#file as NSString).lastPathComponent), #line, #function, type.rawValue) - self.delegate?.composeToolbarView(self, visibilityButtonDidPressed: self.visibilityButton, visibilitySelectionType: type) - } - } - return UIMenu(title: "", image: nil, identifier: nil, options: .displayInline, children: children) - } - -} - -extension ComposeToolbarView { - - @objc private func contentWarningButtonDidPressed(_ sender: UIButton) { - os_log(.info, "%{public}s[%{public}ld], %{public}s", ((#file as NSString).lastPathComponent), #line, #function) - delegate?.composeToolbarView(self, contentWarningButtonDidPressed: sender) - } - -} - -#if canImport(SwiftUI) && DEBUG -import SwiftUI - -struct ComposeToolbarView_Previews: PreviewProvider { - - static var previews: some View { - UIViewPreview(width: 375) { - let toolbarView = ComposeToolbarView() - toolbarView.translatesAutoresizingMaskIntoConstraints = false - NSLayoutConstraint.activate([ - toolbarView.widthAnchor.constraint(equalToConstant: 375).priority(.defaultHigh), - toolbarView.heightAnchor.constraint(equalToConstant: 64).priority(.defaultHigh), - ]) - return toolbarView - } - .previewLayout(.fixed(width: 375, height: 100)) - } - -} - -#endif - diff --git a/ShareActionExtension/Scene/View/ComposeView.swift b/ShareActionExtension/Scene/View/ComposeView.swift deleted file mode 100644 index a688d6492..000000000 --- a/ShareActionExtension/Scene/View/ComposeView.swift +++ /dev/null @@ -1,151 +0,0 @@ -// -// ComposeView.swift -// -// -// Created by MainasuK Cirno on 2021-7-16. -// - -import UIKit -import SwiftUI - -public struct ComposeView: View { - - @EnvironmentObject var viewModel: ComposeViewModel - @State var statusEditorViewWidth: CGFloat = .zero - - let horizontalMargin: CGFloat = 20 - - public init() { } - - public var body: some View { - GeometryReader { proxy in - List { - // Content Warning - if viewModel.isContentWarningComposing { - ContentWarningEditorView( - contentWarningContent: $viewModel.contentWarningContent, - placeholder: viewModel.contentWarningPlaceholder - ) - .padding(EdgeInsets(top: 6, leading: horizontalMargin, bottom: 6, trailing: horizontalMargin)) - .background(viewModel.contentWarningBackgroundColor) - .transition(.opacity) - .listRow(backgroundColor: Color(viewModel.backgroundColor)) - } - - // Author - StatusAuthorView( - avatarImageURL: viewModel.avatarImageURL, - name: viewModel.authorName, - username: viewModel.authorUsername - ) - .padding(EdgeInsets(top: 20, leading: horizontalMargin, bottom: 16, trailing: horizontalMargin)) - .listRow(backgroundColor: Color(viewModel.backgroundColor)) - - // Editor - StatusEditorView( - string: $viewModel.statusContent, - placeholder: viewModel.statusPlaceholder, - width: statusEditorViewWidth, - attributedString: viewModel.statusContentAttributedString, - keyboardType: .twitter, - viewDidAppear: $viewModel.viewDidAppear - ) - .frame(width: statusEditorViewWidth) - .frame(minHeight: 100) - .padding(EdgeInsets(top: 0, leading: horizontalMargin, bottom: 0, trailing: horizontalMargin)) - .listRow(backgroundColor: Color(viewModel.backgroundColor)) - - // Attachments - ForEach(viewModel.attachmentViewModels) { attachmentViewModel in - let descriptionBinding = Binding { - return attachmentViewModel.descriptionContent - } set: { newValue in - attachmentViewModel.descriptionContent = newValue - } - - StatusAttachmentView( - image: attachmentViewModel.thumbnailImage, - descriptionPlaceholder: attachmentViewModel.descriptionPlaceholder, - description: descriptionBinding, - errorPrompt: attachmentViewModel.errorPrompt, - errorPromptImage: attachmentViewModel.errorPromptImage, - isUploading: attachmentViewModel.isUploading, - progressViewTintColor: attachmentViewModel.progressViewTintColor, - removeButtonAction: { - self.viewModel.removeAttachmentViewModel(attachmentViewModel) - } - ) - } - .padding(EdgeInsets(top: 16, leading: horizontalMargin, bottom: 0, trailing: horizontalMargin)) - .fixedSize(horizontal: false, vertical: true) - .listRow(backgroundColor: Color(viewModel.backgroundColor)) - - // bottom padding - Color.clear - .frame(height: viewModel.toolbarHeight + 20) - .listRow(backgroundColor: Color(viewModel.backgroundColor)) - } // end List - .listStyle(.plain) - .introspectTableView(customize: { tableView in - // tableView.keyboardDismissMode = .onDrag - tableView.verticalScrollIndicatorInsets.bottom = viewModel.toolbarHeight - }) - .preference( - key: ComposeListViewFramePreferenceKey.self, - value: proxy.frame(in: .local) - ) - .onPreferenceChange(ComposeListViewFramePreferenceKey.self) { frame in - var frame = frame - frame.size.width = frame.width - 2 * horizontalMargin - statusEditorViewWidth = frame.width - } // end List - .introspectTableView(customize: { tableView in - tableView.backgroundColor = .clear - }) - .overrideBackground(color: Color(viewModel.backgroundColor)) - } // end GeometryReader - } // end body -} - -struct ComposeListViewFramePreferenceKey: PreferenceKey { - static var defaultValue: CGRect = .zero - static func reduce(value: inout CGRect, nextValue: () -> CGRect) { } -} - -extension View { - // hack for separator line - @ViewBuilder - func listRow(backgroundColor: Color) -> some View { - // expand list row to edge (set inset) - // then hide the separator - if #available(iOS 15, *) { - frame(maxWidth: .infinity, maxHeight: .infinity, alignment: .leading) - .listRowInsets(EdgeInsets(top: -1, leading: -1, bottom: -1, trailing: -1)) - .background(backgroundColor) - .listRowSeparator(.hidden) // new API - } else { - frame(maxWidth: .infinity, maxHeight: .infinity, alignment: .leading) - .listRowInsets(EdgeInsets(top: -1, leading: -1, bottom: -1, trailing: -1)) // separator line hidden magic - .background(backgroundColor) - } - } - - @ViewBuilder - func overrideBackground(color: Color) -> some View { - background(color.ignoresSafeArea()) - } -} - - -struct ComposeView_Previews: PreviewProvider { - - static let viewModel: ComposeViewModel = { - let viewModel = ComposeViewModel() - return viewModel - }() - - static var previews: some View { - ComposeView().environmentObject(viewModel) - } - -} diff --git a/ShareActionExtension/Scene/View/ComposeViewModel.swift b/ShareActionExtension/Scene/View/ComposeViewModel.swift deleted file mode 100644 index 88c2b896f..000000000 --- a/ShareActionExtension/Scene/View/ComposeViewModel.swift +++ /dev/null @@ -1,130 +0,0 @@ -// -// ComposeViewModel.swift -// ShareActionExtension -// -// Created by MainasuK Cirno on 2021-7-16. -// - -import Foundation -import SwiftUI -import Combine -import CoreDataStack - -class ComposeViewModel: ObservableObject { - - var disposeBag = Set() - - @Published var authentication: MastodonAuthentication? - - @Published var backgroundColor: UIColor = .clear - @Published var toolbarHeight: CGFloat = 0 - @Published var viewDidAppear = false - - @Published var avatarImageURL: URL? - @Published var authorName: String = "" - @Published var authorUsername: String = "" - - @Published var statusContent = "" - @Published var statusPlaceholder = "" - @Published var statusContentAttributedString = NSAttributedString() - - @Published var isContentWarningComposing = false - @Published var contentWarningBackgroundColor = Color.secondary - @Published var contentWarningPlaceholder = "" - @Published var contentWarningContent = "" - - @Published private(set) var attachmentViewModels: [StatusAttachmentViewModel] = [] - - @Published var characterCount = 0 - - public init() { - $statusContent - .map { NSAttributedString(string: $0) } - .assign(to: &$statusContentAttributedString) - - Publishers.CombineLatest3( - $statusContent, - $isContentWarningComposing, - $contentWarningContent - ) - .map { statusContent, isContentWarningComposing, contentWarningContent in - var count = statusContent.count - if isContentWarningComposing { - count += contentWarningContent.count - } - return count - } - .assign(to: &$characterCount) - - // setup attribute updater - $attachmentViewModels - .receive(on: DispatchQueue.main) - .debounce(for: 0.3, scheduler: DispatchQueue.main) - .sink { attachmentViewModels in - // drive upload state - // make image upload in the queue - for attachmentViewModel in attachmentViewModels { - // skip when prefix N task when task finish OR fail OR uploading - guard let currentState = attachmentViewModel.uploadStateMachine.currentState else { break } - if currentState is StatusAttachmentViewModel.UploadState.Fail { - continue - } - if currentState is StatusAttachmentViewModel.UploadState.Finish { - continue - } - if currentState is StatusAttachmentViewModel.UploadState.Uploading { - break - } - // trigger uploading one by one - if currentState is StatusAttachmentViewModel.UploadState.Initial { - attachmentViewModel.uploadStateMachine.enter(StatusAttachmentViewModel.UploadState.Uploading.self) - break - } - } - } - .store(in: &disposeBag) - - #if DEBUG - // avatarImageURL = URL(string: "https://upload.wikimedia.org/wikipedia/commons/2/2c/Rotating_earth_%28large%29.gif") - // authorName = "Alice" - // authorUsername = "alice" - #endif - } - -} - -extension ComposeViewModel { - func setupAttachmentViewModels(_ viewModels: [StatusAttachmentViewModel]) { - attachmentViewModels = viewModels - for viewModel in viewModels { - // set delegate - viewModel.delegate = self - // set observed - viewModel.objectWillChange.sink { [weak self] _ in - guard let self = self else { return } - self.objectWillChange.send() - } - .store(in: &viewModel.disposeBag) - // bind authentication - $authentication - .assign(to: \.value, on: viewModel.authentication) - .store(in: &viewModel.disposeBag) - } - } - - func removeAttachmentViewModel(_ viewModel: StatusAttachmentViewModel) { - if let index = attachmentViewModels.firstIndex(where: { $0 === viewModel }) { - attachmentViewModels.remove(at: index) - } - } -} - -// MARK: - StatusAttachmentViewModelDelegate -extension ComposeViewModel: StatusAttachmentViewModelDelegate { - func statusAttachmentViewModel(_ viewModel: StatusAttachmentViewModel, uploadStateDidChange state: StatusAttachmentViewModel.UploadState?) { - // trigger event update - DispatchQueue.main.async { - self.attachmentViewModels = self.attachmentViewModels - } - } -} diff --git a/ShareActionExtension/Scene/View/ContentWarningEditorView.swift b/ShareActionExtension/Scene/View/ContentWarningEditorView.swift deleted file mode 100644 index 833c919fc..000000000 --- a/ShareActionExtension/Scene/View/ContentWarningEditorView.swift +++ /dev/null @@ -1,48 +0,0 @@ -// -// ContentWarningEditorView.swift -// -// -// Created by MainasuK Cirno on 2021-7-19. -// - -import SwiftUI -import Introspect - -struct ContentWarningEditorView: View { - - @Binding var contentWarningContent: String - let placeholder: String - let spacing: CGFloat = 11 - - var body: some View { - HStack(alignment: .center, spacing: spacing) { - Image(systemName: "exclamationmark.shield") - .font(.system(size: 30, weight: .regular)) - Text(contentWarningContent.isEmpty ? " " : contentWarningContent) - .opacity(0) - .padding(.all, 8) - .frame(maxWidth: .infinity) - .overlay( - TextEditor(text: $contentWarningContent) - .introspectTextView { textView in - textView.backgroundColor = .clear - textView.placeholder = placeholder - } - ) - } - } -} - -struct ContentWarningEditorView_Previews: PreviewProvider { - - @State static var content = "" - - static var previews: some View { - ContentWarningEditorView( - contentWarningContent: $content, - placeholder: "Write an accurate warning here..." - ) - .previewLayout(.fixed(width: 375, height: 100)) - } -} - diff --git a/ShareActionExtension/Scene/View/StatusAttachmentView.swift b/ShareActionExtension/Scene/View/StatusAttachmentView.swift deleted file mode 100644 index 8540b95f1..000000000 --- a/ShareActionExtension/Scene/View/StatusAttachmentView.swift +++ /dev/null @@ -1,113 +0,0 @@ -// -// StatusAttachmentView.swift -// -// -// Created by MainasuK Cirno on 2021-7-19. -// - -import SwiftUI -import Introspect - -struct StatusAttachmentView: View { - - let image: UIImage? - let descriptionPlaceholder: String - @Binding var description: String - let errorPrompt: String? - let errorPromptImage: UIImage - let isUploading: Bool - let progressViewTintColor: UIColor - - let removeButtonAction: () -> Void - - var body: some View { - let image = image ?? UIImage.placeholder(color: .systemFill) - ZStack(alignment: .bottom) { - if let errorPrompt = errorPrompt { - Color.clear - .aspectRatio(CGSize(width: 16, height: 9), contentMode: .fill) - .overlay( - VStack(alignment: .center) { - Image(uiImage: errorPromptImage) - Text(errorPrompt) - .lineLimit(2) - } - ) - .background(Color.gray) - } else { - Color.clear - .aspectRatio(CGSize(width: 16, height: 9), contentMode: .fill) - .overlay( - Image(uiImage: image) - .resizable() - .aspectRatio(contentMode: .fill) - ) - .background(Color.gray) - LinearGradient(gradient: Gradient(colors: [Color(white: 0, opacity: 0.69), Color.clear]), startPoint: .bottom, endPoint: .top) - .frame(maxHeight: 71) - TextField("", text: $description) - .placeholder(when: description.isEmpty) { - Text(descriptionPlaceholder).foregroundColor(Color(white: 1, opacity: 0.6)) - .lineLimit(1) - } - .foregroundColor(.white) - .font(.system(size: 15, weight: .regular, design: .default)) - .padding(EdgeInsets(top: 0, leading: 8, bottom: 7, trailing: 8)) - } - } - .cornerRadius(4) - .badgeView( - Button(action: { - removeButtonAction() - }, label: { - Image(systemName: "minus.circle.fill") - .renderingMode(.original) - .font(.system(size: 22, weight: .bold, design: .default)) - }) - .buttonStyle(BorderlessButtonStyle()) - ) - .overlay( - Group { - if isUploading { - ProgressView() - .progressViewStyle(CircularProgressViewStyle(tint: Color(progressViewTintColor))) - } - } - ) - } -} - -/// ref: https://stackoverflow.com/a/57715771/3797903 -extension View { - func placeholder( - when shouldShow: Bool, - alignment: Alignment = .leading, - @ViewBuilder placeholder: () -> Content) -> some View { - - ZStack(alignment: alignment) { - placeholder().opacity(shouldShow ? 1 : 0) - self - } - } -} - - -//struct StatusAttachmentView_Previews: PreviewProvider { -// static var previews: some View { -// ScrollView { -// StatusAttachmentView( -// image: UIImage(systemName: "photo"), -// descriptionPlaceholder: "Describe photo", -// description: .constant(""), -// errorPrompt: nil, -// errorPromptImage: StatusAttachmentViewModel.photoFillSplitImage, -// isUploading: true, -// progressViewTintColor: .systemFill, -// removeButtonAction: { -// // do nothing -// } -// ) -// .padding(20) -// } -// } -//} diff --git a/ShareActionExtension/Scene/View/StatusAttachmentViewModel+UploadState.swift b/ShareActionExtension/Scene/View/StatusAttachmentViewModel+UploadState.swift deleted file mode 100644 index 56942cde0..000000000 --- a/ShareActionExtension/Scene/View/StatusAttachmentViewModel+UploadState.swift +++ /dev/null @@ -1,131 +0,0 @@ -// -// StatusAttachmentViewModel+UploadState.swift -// ShareActionExtension -// -// Created by MainasuK Cirno on 2021-7-20. -// - -import os.log -import Foundation -import Combine -import GameplayKit -import MastodonSDK -import MastodonCore - -extension StatusAttachmentViewModel { - class UploadState: GKState { - weak var viewModel: StatusAttachmentViewModel? - - init(viewModel: StatusAttachmentViewModel) { - self.viewModel = viewModel - } - - override func didEnter(from previousState: GKState?) { - os_log("%{public}s[%{public}ld], %{public}s: enter %s, previous: %s", ((#file as NSString).lastPathComponent), #line, #function, self.debugDescription, previousState.debugDescription) - viewModel?.uploadStateMachineSubject.send(self) - } - } -} - -extension StatusAttachmentViewModel.UploadState { - - class Initial: StatusAttachmentViewModel.UploadState { - override func isValidNextState(_ stateClass: AnyClass) -> Bool { - guard viewModel?.authentication.value != nil else { return false } - if stateClass == Initial.self { - return true - } - - if viewModel?.file.value != nil { - return stateClass == Uploading.self - } else { - return stateClass == Fail.self - } - } - } - - class Uploading: StatusAttachmentViewModel.UploadState { - let logger = Logger(subsystem: "StatusAttachmentViewModel.UploadState.Uploading", category: "logic") - var needsFallback = false - - override func isValidNextState(_ stateClass: AnyClass) -> Bool { - return stateClass == Fail.self || stateClass == Finish.self || stateClass == Uploading.self - } - - override func didEnter(from previousState: GKState?) { - super.didEnter(from: previousState) - - guard let viewModel = viewModel, let stateMachine = stateMachine else { return } - guard let authentication = viewModel.authentication.value else { return } - guard let file = viewModel.file.value else { return } - - let description = viewModel.descriptionContent - let query = Mastodon.API.Media.UploadMediaQuery( - file: file, - thumbnail: nil, - description: description, - focus: nil - ) - - let mastodonAuthenticationBox = MastodonAuthenticationBox( - authenticationRecord: .init(objectID: authentication.objectID), - domain: authentication.domain, - userID: authentication.userID, - appAuthorization: Mastodon.API.OAuth.Authorization(accessToken: authentication.appAccessToken), - userAuthorization: Mastodon.API.OAuth.Authorization(accessToken: authentication.userAccessToken) - ) - - // and needs clone the `query` if needs retry - viewModel.api.uploadMedia( - domain: mastodonAuthenticationBox.domain, - query: query, - mastodonAuthenticationBox: mastodonAuthenticationBox, - needsFallback: needsFallback - ) - .receive(on: DispatchQueue.main) - .sink { [weak self] completion in - guard let self = self else { return } - switch completion { - case .failure(let error): - if let apiError = error as? Mastodon.API.Error, - apiError.httpResponseStatus == .notFound, - self.needsFallback == false - { - self.needsFallback = true - stateMachine.enter(Uploading.self) - self.logger.debug("\((#file as NSString).lastPathComponent, privacy: .public)[\(#line, privacy: .public)], \(#function, privacy: .public): fallback to V1") - } else { - self.logger.debug("\((#file as NSString).lastPathComponent, privacy: .public)[\(#line, privacy: .public)], \(#function, privacy: .public): fail: \(error.localizedDescription)") - viewModel.error = error - stateMachine.enter(Fail.self) - } - case .finished: - self.logger.debug("\((#file as NSString).lastPathComponent, privacy: .public)[\(#line, privacy: .public)], \(#function, privacy: .public): upload attachment success") - break - } - } receiveValue: { [weak self] response in - guard let self = self else { return } - self.logger.debug("\((#file as NSString).lastPathComponent, privacy: .public)[\(#line, privacy: .public)], \(#function, privacy: .public): upload attachment \(response.value.id) success, \(response.value.url ?? "")") - viewModel.attachment.value = response.value - stateMachine.enter(Finish.self) - } - .store(in: &viewModel.disposeBag) - } - - } - - class Fail: StatusAttachmentViewModel.UploadState { - override func isValidNextState(_ stateClass: AnyClass) -> Bool { - // allow discard publishing - return stateClass == Uploading.self || stateClass == Finish.self - } - } - - class Finish: StatusAttachmentViewModel.UploadState { - override func isValidNextState(_ stateClass: AnyClass) -> Bool { - return false - } - } - -} - diff --git a/ShareActionExtension/Scene/View/StatusAttachmentViewModel.swift b/ShareActionExtension/Scene/View/StatusAttachmentViewModel.swift deleted file mode 100644 index 19251d0be..000000000 --- a/ShareActionExtension/Scene/View/StatusAttachmentViewModel.swift +++ /dev/null @@ -1,227 +0,0 @@ -// -// StatusAttachmentViewModel.swift -// ShareActionExtension -// -// Created by MainasuK Cirno on 2021-7-19. -// - -import os.log -import Foundation -import SwiftUI -import Combine -import CoreDataStack -import MastodonSDK -import MastodonUI -import AVFoundation -import GameplayKit -import MobileCoreServices -import UniformTypeIdentifiers -import MastodonAsset -import MastodonCore -import MastodonLocalization - -protocol StatusAttachmentViewModelDelegate: AnyObject { - func statusAttachmentViewModel(_ viewModel: StatusAttachmentViewModel, uploadStateDidChange state: StatusAttachmentViewModel.UploadState?) -} - -final class StatusAttachmentViewModel: ObservableObject, Identifiable { - - static let photoFillSplitImage = Asset.Connectivity.photoFillSplit.image.withRenderingMode(.alwaysTemplate) - static let videoSplashImage: UIImage = { - let image = UIImage(systemName: "video.slash")!.withConfiguration(UIImage.SymbolConfiguration(pointSize: 64)) - return image - }() - - let logger = Logger(subsystem: "StatusAttachmentViewModel", category: "logic") - - weak var delegate: StatusAttachmentViewModelDelegate? - var disposeBag = Set() - - let id = UUID() - let itemProvider: NSItemProvider - - // input - let api: APIService - let file = CurrentValueSubject(nil) - let authentication = CurrentValueSubject(nil) - @Published var descriptionContent = "" - - // output - let attachment = CurrentValueSubject(nil) - @Published var thumbnailImage: UIImage? - @Published var descriptionPlaceholder = "" - @Published var isUploading = true - @Published var progressViewTintColor = UIColor.systemFill - @Published var error: Error? - @Published var errorPrompt: String? - @Published var errorPromptImage: UIImage = StatusAttachmentViewModel.photoFillSplitImage - - private(set) lazy var uploadStateMachine: GKStateMachine = { - // exclude timeline middle fetcher state - let stateMachine = GKStateMachine(states: [ - UploadState.Initial(viewModel: self), - UploadState.Uploading(viewModel: self), - UploadState.Fail(viewModel: self), - UploadState.Finish(viewModel: self), - ]) - stateMachine.enter(UploadState.Initial.self) - return stateMachine - }() - lazy var uploadStateMachineSubject = CurrentValueSubject(nil) - - init( - api: APIService, - itemProvider: NSItemProvider - ) { - self.api = api - self.itemProvider = itemProvider - - // bind attachment from item provider - Just(itemProvider) - .receive(on: DispatchQueue.main) - .flatMap { result -> AnyPublisher in - if itemProvider.hasRepresentationConforming(toTypeIdentifier: UTType.image.identifier, fileOptions: []) { - return ItemProviderLoader.loadImageData(from: result).eraseToAnyPublisher() - } - if itemProvider.hasRepresentationConforming(toTypeIdentifier: UTType.movie.identifier, fileOptions: []) { - return ItemProviderLoader.loadVideoData(from: result).eraseToAnyPublisher() - } - return Fail(error: AttachmentError.invalidAttachmentType).eraseToAnyPublisher() - } - .sink { [weak self] completion in - guard let self = self else { return } - switch completion { - case .failure(let error): - self.error = error - self.uploadStateMachine.enter(UploadState.Fail.self) - case .finished: - break - } - } receiveValue: { [weak self] file in - guard let self = self else { return } - self.file.value = file - self.uploadStateMachine.enter(UploadState.Initial.self) - } - .store(in: &disposeBag) - - // bind progress view tint color - $thumbnailImage - .receive(on: DispatchQueue.main) - .map { image -> UIColor in - guard let image = image else { return .systemFill } - switch image.domainLumaCoefficientsStyle { - case .light: - return UIColor.black.withAlphaComponent(0.8) - default: - return UIColor.white.withAlphaComponent(0.8) - } - } - .assign(to: &$progressViewTintColor) - - // bind description placeholder and error prompt image - file - .receive(on: DispatchQueue.main) - .sink { [weak self] file in - guard let self = self else { return } - guard let file = file else { return } - switch file { - case .jpeg, .png, .gif: - self.descriptionPlaceholder = L10n.Scene.Compose.Attachment.descriptionPhoto - self.errorPromptImage = StatusAttachmentViewModel.photoFillSplitImage - case .other: - self.descriptionPlaceholder = L10n.Scene.Compose.Attachment.descriptionVideo - self.errorPromptImage = StatusAttachmentViewModel.videoSplashImage - } - } - .store(in: &disposeBag) - - // bind thumbnail image - file - .receive(on: DispatchQueue.main) - .map { file -> UIImage? in - guard let file = file else { - return nil - } - - switch file { - case .jpeg(let data), .png(let data): - return data.flatMap { UIImage(data: $0) } - case .gif: - // TODO: - return nil - case .other(let url, _, _): - guard let url = url, FileManager.default.fileExists(atPath: url.path) else { return nil } - let asset = AVURLAsset(url: url) - let assetImageGenerator = AVAssetImageGenerator(asset: asset) - assetImageGenerator.appliesPreferredTrackTransform = true // fix orientation - do { - let cgImage = try assetImageGenerator.copyCGImage(at: CMTimeMake(value: 0, timescale: 1), actualTime: nil) - let image = UIImage(cgImage: cgImage) - return image - } catch { - self.logger.debug("\((#file as NSString).lastPathComponent, privacy: .public)[\(#line, privacy: .public)], \(#function, privacy: .public): thumbnail generate fail: \(error.localizedDescription)") - return nil - } - } - } - .assign(to: &$thumbnailImage) - - // bind state and error - Publishers.CombineLatest( - uploadStateMachineSubject, - $error - ) - .sink { [weak self] state, error in - guard let self = self else { return } - // trigger delegate - self.delegate?.statusAttachmentViewModel(self, uploadStateDidChange: state) - - // set error prompt - if let error = error { - self.isUploading = false - self.errorPrompt = error.localizedDescription - } else { - guard let state = state else { return } - switch state { - case is UploadState.Finish: - self.isUploading = false - case is UploadState.Fail: - self.isUploading = false - // FIXME: not display - self.errorPrompt = { - guard let file = self.file.value else { - return L10n.Scene.Compose.Attachment.attachmentBroken(L10n.Scene.Compose.Attachment.photo) - } - switch file { - case .jpeg, .png, .gif: - return L10n.Scene.Compose.Attachment.attachmentBroken(L10n.Scene.Compose.Attachment.photo) - case .other: - return L10n.Scene.Compose.Attachment.attachmentBroken(L10n.Scene.Compose.Attachment.video) - } - }() - default: - break - } - } - } - .store(in: &disposeBag) - - // trigger delegate when authentication get new value - authentication - .receive(on: DispatchQueue.main) - .sink { [weak self] authentication in - guard let self = self else { return } - guard authentication != nil else { return } - self.delegate?.statusAttachmentViewModel(self, uploadStateDidChange: self.uploadStateMachineSubject.value) - } - .store(in: &disposeBag) - } - -} - -extension StatusAttachmentViewModel { - enum AttachmentError: Error { - case invalidAttachmentType - case attachmentTooLarge - } -} diff --git a/ShareActionExtension/Scene/View/StatusAuthorView.swift b/ShareActionExtension/Scene/View/StatusAuthorView.swift deleted file mode 100644 index 24453abe2..000000000 --- a/ShareActionExtension/Scene/View/StatusAuthorView.swift +++ /dev/null @@ -1,45 +0,0 @@ -// -// StatusAuthorView.swift -// -// -// Created by MainasuK Cirno on 2021-7-16. -// - -import SwiftUI -import MastodonUI -import Nuke -import FLAnimatedImage - -struct StatusAuthorView: View { - - let avatarImageURL: URL? - let name: String - let username: String - - var body: some View { - HStack(spacing: 5) { - AnimatedImage(imageURL: avatarImageURL) - .frame(width: 42, height: 42) - .background(Color(UIColor.systemFill)) - .cornerRadius(4) - VStack(alignment: .leading) { - Text(name) - .font(.headline) - Text(username) - .font(.subheadline) - .foregroundColor(.secondary) - } - Spacer() - } - } -} - -struct StatusAuthorView_Previews: PreviewProvider { - static var previews: some View { - StatusAuthorView( - avatarImageURL: URL(string: "https://upload.wikimedia.org/wikipedia/commons/2/2c/Rotating_earth_%28large%29.gif"), - name: "Alice", - username: "alice" - ) - } -} diff --git a/ShareActionExtension/Scene/View/StatusEditorView.swift b/ShareActionExtension/Scene/View/StatusEditorView.swift deleted file mode 100644 index f670f6601..000000000 --- a/ShareActionExtension/Scene/View/StatusEditorView.swift +++ /dev/null @@ -1,105 +0,0 @@ -// -// StatusEditorView.swift -// -// -// Created by MainasuK Cirno on 2021-7-16. -// - -import UIKit -import SwiftUI -import UITextView_Placeholder - -public struct StatusEditorView: UIViewRepresentable { - - @Binding var string: String - let placeholder: String - let width: CGFloat - let attributedString: NSAttributedString - let keyboardType: UIKeyboardType - @Binding var viewDidAppear: Bool - - public init( - string: Binding, - placeholder: String, - width: CGFloat, - attributedString: NSAttributedString, - keyboardType: UIKeyboardType, - viewDidAppear: Binding - ) { - self._string = string - self.placeholder = placeholder - self.width = width - self.attributedString = attributedString - self.keyboardType = keyboardType - self._viewDidAppear = viewDidAppear - } - - public func makeUIView(context: Context) -> UITextView { - let textView = UITextView(frame: .zero) - textView.placeholder = placeholder - - textView.isScrollEnabled = false - textView.font = .preferredFont(forTextStyle: .body) - textView.textColor = .label - textView.keyboardType = keyboardType - textView.delegate = context.coordinator - textView.backgroundColor = .clear - - textView.translatesAutoresizingMaskIntoConstraints = false - let widthLayoutConstraint = textView.widthAnchor.constraint(equalToConstant: 100) - widthLayoutConstraint.priority = .required - 1 - context.coordinator.widthLayoutConstraint = widthLayoutConstraint - - return textView - } - - public func updateUIView(_ textView: UITextView, context: Context) { - // preserve currently selected text range to prevent cursor jump - let currentlySelectedRange = textView.selectedRange - - // update content - // textView.attributedText = attributedString - textView.text = string - - // update layout - context.coordinator.updateLayout(width: width) - - // set becomeFirstResponder - if viewDidAppear { - viewDidAppear = false - textView.becomeFirstResponder() - } - - // restore selected text range - textView.selectedRange = currentlySelectedRange - } - - public func makeCoordinator() -> Coordinator { - Coordinator(self) - } - - public class Coordinator: NSObject, UITextViewDelegate { - var parent: StatusEditorView - var widthLayoutConstraint: NSLayoutConstraint? - - init(_ parent: StatusEditorView) { - self.parent = parent - } - - public func textViewDidChange(_ textView: UITextView) { - // prevent break IME input - if textView.markedTextRange == nil { - parent.string = textView.text - } - } - - func updateLayout(width: CGFloat) { - guard let widthLayoutConstraint = widthLayoutConstraint else { return } - widthLayoutConstraint.constant = width - widthLayoutConstraint.isActive = true - } - } - -} - - From 1e71f0c147a0ba4665e05a4e61ec6f18caf8b48b Mon Sep 17 00:00:00 2001 From: CMK Date: Mon, 14 Nov 2022 00:57:44 +0800 Subject: [PATCH 176/598] feat: restore media description text field --- .../Attachment/AttachmentView.swift | 282 +++++++++++------- .../Publisher/MastodonStatusPublisher.swift | 15 + .../View/ComposeContentView.swift | 5 +- 3 files changed, 183 insertions(+), 119 deletions(-) diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentView.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentView.swift index 2dc8bf12f..f55793591 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentView.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentView.swift @@ -11,6 +11,8 @@ import SwiftUI import Introspect import AVKit import MastodonAsset +import MastodonLocalization +import Introspect public struct AttachmentView: View { @@ -21,129 +23,179 @@ public struct AttachmentView: View { } public var body: some View { - ZStack { - let image = viewModel.thumbnail ?? .placeholder(color: .secondarySystemFill) - Image(uiImage: image) - .resizable() - .aspectRatio(contentMode: .fill) - - // loading… - if viewModel.output == nil, viewModel.error == nil { - ProgressView() - .progressViewStyle(.circular) - } - - // load failed - // cannot re-entry - if viewModel.output == nil, let error = viewModel.error { - VisualEffectView(effect: blurEffect) - VStack { - Text("Load Failed") // TODO: i18n - .font(.system(size: 13, weight: .semibold)) - Text(error.localizedDescription) - .font(.system(size: 12, weight: .regular)) + Color.clear.aspectRatio(358.0/232.0, contentMode: .fill) + .overlay( + ZStack { + let image = viewModel.thumbnail ?? .placeholder(color: .secondarySystemFill) + Image(uiImage: image) + .resizable() + .aspectRatio(contentMode: .fill) } - } - - // loaded - // uploading… or upload failed - // could retry upload when error emit - if viewModel.output != nil, viewModel.uploadState != .finish { - VisualEffectView(effect: blurEffect) - VStack { - let action: AttachmentViewModel.Action = { - if let _ = viewModel.error { - return .retry - } else { - return .remove - } - }() - Button { - viewModel.delegate?.attachmentViewModel(viewModel, actionButtonDidPressed: action) - } label: { - let image: UIImage = { - switch action { - case .remove: - return Asset.Scene.Compose.Attachment.stop.image.withRenderingMode(.alwaysTemplate) - case .retry: - return Asset.Scene.Compose.Attachment.retry.image.withRenderingMode(.alwaysTemplate) + ) + .overlay( + ZStack { + Color.clear + .overlay( + VStack(alignment: .leading) { + let placeholder: String = { + switch viewModel.output { + case .image: return L10n.Scene.Compose.Attachment.descriptionPhoto + case .video: return L10n.Scene.Compose.Attachment.descriptionVideo + case nil: return "" + } + }() + Spacer() + TextField(placeholder, text: $viewModel.caption) + .textFieldStyle(.plain) + .foregroundColor(.white) + .placeholder(placeholder, when: viewModel.caption.isEmpty) + .padding(8) } - }() - Image(uiImage: image) - .foregroundColor(.white) - .padding() - .background(Color(Asset.Scene.Compose.Attachment.indicatorButtonBackground.color)) - .overlay( - Group { + ) + + // loading… + if viewModel.output == nil, viewModel.error == nil { + ProgressView() + .progressViewStyle(.circular) + } + + // load failed + // cannot re-entry + if viewModel.output == nil, let error = viewModel.error { + VisualEffectView(effect: blurEffect) + VStack { + Text("Load Failed") // TODO: i18n + .font(.system(size: 13, weight: .semibold)) + Text(error.localizedDescription) + .font(.system(size: 12, weight: .regular)) + } + } + + // loaded + // uploading… or upload failed + // could retry upload when error emit + if viewModel.output != nil, viewModel.uploadState != .finish { + VisualEffectView(effect: blurEffect) + VStack { + let action: AttachmentViewModel.Action = { + if let _ = viewModel.error { + return .retry + } else { + return .remove + } + }() + Button { + viewModel.delegate?.attachmentViewModel(viewModel, actionButtonDidPressed: action) + } label: { + let image: UIImage = { + switch action { + case .remove: + return Asset.Scene.Compose.Attachment.stop.image.withRenderingMode(.alwaysTemplate) + case .retry: + return Asset.Scene.Compose.Attachment.retry.image.withRenderingMode(.alwaysTemplate) + } + }() + Image(uiImage: image) + .foregroundColor(.white) + .padding() + .background(Color(Asset.Scene.Compose.Attachment.indicatorButtonBackground.color)) + .overlay( + Group { + switch viewModel.uploadState { + case .compressing: + CircleProgressView(progress: viewModel.videoCompressProgress) + .animation(.default, value: viewModel.videoCompressProgress) + case .uploading: + CircleProgressView(progress: viewModel.fractionCompleted) + .animation(.default, value: viewModel.fractionCompleted) + default: + EmptyView() + } + } + ) + .clipShape(Circle()) + .padding() + } + + let title: String = { + switch action { + case .remove: switch viewModel.uploadState { case .compressing: - CircleProgressView(progress: viewModel.videoCompressProgress) - .animation(.default, value: viewModel.videoCompressProgress) - case .uploading: - CircleProgressView(progress: viewModel.fractionCompleted) - .animation(.default, value: viewModel.fractionCompleted) + return "Comporessing..." // TODO: i18n default: - EmptyView() + if viewModel.fractionCompleted < 0.9 { + let totalSizeInByte = viewModel.outputSizeInByte + let uploadSizeInByte = Double(totalSizeInByte) * min(1.0, viewModel.fractionCompleted + 0.1) // 9:1 + let total = viewModel.byteCountFormatter.string(fromByteCount: Int64(totalSizeInByte)) + let upload = viewModel.byteCountFormatter.string(fromByteCount: Int64(uploadSizeInByte)) + return "\(upload) / \(total)" + } else { + return "Server Processing..." // TODO: i18n + } } + case .retry: + return "Upload Failed" // TODO: i18n } - ) - .clipShape(Circle()) - .padding() + }() + let subtitle: String = { + switch action { + case .remove: + if viewModel.progress.fractionCompleted < 1, viewModel.uploadState == .uploading { + if viewModel.progress.fractionCompleted < 0.9 { + return viewModel.remainTimeLocalizedString ?? "" + } else { + return "" + } + } else if viewModel.videoCompressProgress < 1, viewModel.uploadState == .compressing { + return viewModel.percentageFormatter.string(from: NSNumber(floatLiteral: viewModel.videoCompressProgress)) ?? "" + } else { + return "" + } + case .retry: + return viewModel.error?.localizedDescription ?? "" + } + }() + Text(title) + .font(.system(size: 13, weight: .semibold)) + .foregroundColor(.white) + .padding(.horizontal) + Text(subtitle) + .font(.system(size: 12, weight: .regular)) + .foregroundColor(.white) + .padding(.horizontal) + .lineLimit(nil) + .multilineTextAlignment(.center) + .frame(maxWidth: 240) + } } - - let title: String = { - switch action { - case .remove: - switch viewModel.uploadState { - case .compressing: - return "Comporessing..." // TODO: i18n - default: - if viewModel.fractionCompleted < 0.9 { - let totalSizeInByte = viewModel.outputSizeInByte - let uploadSizeInByte = Double(totalSizeInByte) * min(1.0, viewModel.fractionCompleted + 0.1) // 9:1 - let total = viewModel.byteCountFormatter.string(fromByteCount: Int64(totalSizeInByte)) - let upload = viewModel.byteCountFormatter.string(fromByteCount: Int64(uploadSizeInByte)) - return "\(upload) / \(total)" - } else { - return "Server Processing..." // TODO: i18n - } - } - case .retry: - return "Upload Failed" // TODO: i18n - } - }() - let subtitle: String = { - switch action { - case .remove: - if viewModel.progress.fractionCompleted < 1, viewModel.uploadState == .uploading { - if viewModel.progress.fractionCompleted < 0.9 { - return viewModel.remainTimeLocalizedString ?? "" - } else { - return "" - } - } else if viewModel.videoCompressProgress < 1, viewModel.uploadState == .compressing { - return viewModel.percentageFormatter.string(from: NSNumber(floatLiteral: viewModel.videoCompressProgress)) ?? "" - } else { - return "" - } - case .retry: - return viewModel.error?.localizedDescription ?? "" - } - }() - Text(title) - .font(.system(size: 13, weight: .semibold)) - .foregroundColor(.white) - .padding(.horizontal) - Text(subtitle) - .font(.system(size: 12, weight: .regular)) - .foregroundColor(.white) - .padding(.horizontal) - .lineLimit(nil) - .multilineTextAlignment(.center) - .frame(maxWidth: 240) - } - } - } // end ZStack + } // end ZStack + ) } // end body } + +// https://stackoverflow.com/a/57715771/3797903 +extension View { + fileprivate func placeholder( + when shouldShow: Bool, + alignment: Alignment = .leading, + @ViewBuilder placeholder: () -> Content) -> some View { + + ZStack(alignment: alignment) { + placeholder().opacity(shouldShow ? 1 : 0) + self + } + } + + fileprivate func placeholder( + _ text: String, + when shouldShow: Bool, + alignment: Alignment = .leading) -> some View { + + placeholder(when: shouldShow, alignment: alignment) { + Text(text) + .foregroundColor(.white.opacity(0.7)) + } + } +} diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Publisher/MastodonStatusPublisher.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Publisher/MastodonStatusPublisher.swift index 31568552c..93f3dd3a1 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Publisher/MastodonStatusPublisher.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Publisher/MastodonStatusPublisher.swift @@ -125,6 +125,21 @@ extension MastodonStatusPublisher: StatusPublisher { } attachmentIDs.append(attachment.id) + let caption = attachmentViewModel.caption + guard !caption.isEmpty else { continue } + + _ = try await api.updateMedia( + domain: authContext.mastodonAuthenticationBox.domain, + attachmentID: attachment.id, + query: .init( + file: nil, + thumbnail: nil, + description: caption, + focus: nil + ), + mastodonAuthenticationBox: authContext.mastodonAuthenticationBox + ).singleOutput() + // TODO: allow background upload // let attachment = try await attachmentViewModel.upload(context: uploadContext) // let attachmentID = attachment.id diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentView.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentView.swift index e5f9b56be..456816d6d 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentView.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentView.swift @@ -219,10 +219,7 @@ extension ComposeContentView { var mediaView: some View { VStack(spacing: 16) { ForEach(viewModel.attachmentViewModels, id: \.self) { attachmentViewModel in - Color.clear.aspectRatio(358.0/232.0, contentMode: .fill) - .overlay( - AttachmentView(viewModel: attachmentViewModel) - ) + AttachmentView(viewModel: attachmentViewModel) .clipShape(Rectangle()) .badgeView( Button { From 81bc8eb662c847276c8817c6d07db52268b1898d Mon Sep 17 00:00:00 2001 From: CMK Date: Mon, 14 Nov 2022 01:19:39 +0800 Subject: [PATCH 177/598] fix: video may in portrait mode issue --- .../ComposeContent/Attachment/AttachmentView.swift | 2 ++ .../Attachment/AttachmentViewModel+Compress.swift | 13 +++++++++++-- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentView.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentView.swift index f55793591..a2567d0b6 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentView.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentView.swift @@ -46,6 +46,7 @@ public struct AttachmentView: View { }() Spacer() TextField(placeholder, text: $viewModel.caption) + .lineLimit(1) .textFieldStyle(.plain) .foregroundColor(.white) .placeholder(placeholder, when: viewModel.caption.isEmpty) @@ -196,6 +197,7 @@ extension View { placeholder(when: shouldShow, alignment: alignment) { Text(text) .foregroundColor(.white.opacity(0.7)) + .lineLimit(1) } } } diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel+Compress.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel+Compress.swift index 0fd0ab085..ac1811a06 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel+Compress.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel+Compress.swift @@ -17,6 +17,15 @@ extension AttachmentViewModel { let exporter = NextLevelSessionExporter(withAsset: urlAsset) exporter.outputFileType = .mp4 + var isLandscape: Bool = { + guard let track = urlAsset.tracks(withMediaType: .video).first else { + return true + } + + let size = track.naturalSize.applying(track.preferredTransform) + return abs(size.width) >= abs(size.height) + }() + let outputURL = try FileManager.default.createTemporaryFileURL( filename: UUID().uuidString, pathExtension: url.pathExtension @@ -30,8 +39,8 @@ extension AttachmentViewModel { ] exporter.videoOutputConfiguration = [ AVVideoCodecKey: AVVideoCodecType.h264, - AVVideoWidthKey: NSNumber(integerLiteral: 1280), - AVVideoHeightKey: NSNumber(integerLiteral: 720), + AVVideoWidthKey: NSNumber(integerLiteral: isLandscape ? 1280 : 720), + AVVideoHeightKey: NSNumber(integerLiteral: isLandscape ? 720 : 1280), AVVideoScalingModeKey: AVVideoScalingModeResizeAspectFill, AVVideoCompressionPropertiesKey: compressionDict ] From 4a519f5958a8c09e9d4367342b26c9793f167dc3 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sun, 13 Nov 2022 18:36:22 +0100 Subject: [PATCH 178/598] New translations app.json (Slovenian) --- Localization/StringsConvertor/input/sl.lproj/app.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/sl.lproj/app.json b/Localization/StringsConvertor/input/sl.lproj/app.json index 3f2ddf1e1..37b62a45d 100644 --- a/Localization/StringsConvertor/input/sl.lproj/app.json +++ b/Localization/StringsConvertor/input/sl.lproj/app.json @@ -382,7 +382,11 @@ "video": "video", "attachment_broken": "To %s je okvarjeno in ga ni\nmožno naložiti v Mastodon.", "description_photo": "Opiši fotografijo za slabovidne in osebe z okvaro vida ...", - "description_video": "Opiši video za slabovidne in osebe z okvaro vida ..." + "description_video": "Opiši video za slabovidne in osebe z okvaro vida ...", + "load_failed": "Load Failed", + "upload_failed": "Upload Failed", + "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", + "attachment_too_large": "Attachment too large" }, "poll": { "duration_time": "Trajanje: %s", From 91c63fb9d24d54431b196b1f0c2da2c86034ba56 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sun, 13 Nov 2022 18:36:23 +0100 Subject: [PATCH 179/598] New translations app.json (Indonesian) --- Localization/StringsConvertor/input/id.lproj/app.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/id.lproj/app.json b/Localization/StringsConvertor/input/id.lproj/app.json index 689cd0995..d942a22ad 100644 --- a/Localization/StringsConvertor/input/id.lproj/app.json +++ b/Localization/StringsConvertor/input/id.lproj/app.json @@ -382,7 +382,11 @@ "video": "video", "attachment_broken": "%s ini rusak dan tidak dapat diunggah ke Mastodon.", "description_photo": "Jelaskan fotonya untuk mereka yang tidak dapat melihat dengan jelas...", - "description_video": "Jelaskan videonya untuk mereka yang tidak dapat melihat dengan jelas..." + "description_video": "Jelaskan videonya untuk mereka yang tidak dapat melihat dengan jelas...", + "load_failed": "Load Failed", + "upload_failed": "Upload Failed", + "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", + "attachment_too_large": "Attachment too large" }, "poll": { "duration_time": "Durasi: %s", From 5a0a9830b9b090b3ff13f27cf5896055eb22b2a2 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sun, 13 Nov 2022 18:36:24 +0100 Subject: [PATCH 180/598] New translations app.json (Portuguese) --- Localization/StringsConvertor/input/pt.lproj/app.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/pt.lproj/app.json b/Localization/StringsConvertor/input/pt.lproj/app.json index c5a3dac74..a6a971860 100644 --- a/Localization/StringsConvertor/input/pt.lproj/app.json +++ b/Localization/StringsConvertor/input/pt.lproj/app.json @@ -382,7 +382,11 @@ "video": "video", "attachment_broken": "This %s is broken and can’t be\nuploaded to Mastodon.", "description_photo": "Describe the photo for the visually-impaired...", - "description_video": "Describe the video for the visually-impaired..." + "description_video": "Describe the video for the visually-impaired...", + "load_failed": "Load Failed", + "upload_failed": "Upload Failed", + "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", + "attachment_too_large": "Attachment too large" }, "poll": { "duration_time": "Duration: %s", From 8458d5f7341549afd0dd0896429e4cb963b3c2af Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sun, 13 Nov 2022 18:36:25 +0100 Subject: [PATCH 181/598] New translations app.json (Russian) --- Localization/StringsConvertor/input/ru.lproj/app.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/ru.lproj/app.json b/Localization/StringsConvertor/input/ru.lproj/app.json index c7d721aea..798cdb4c5 100644 --- a/Localization/StringsConvertor/input/ru.lproj/app.json +++ b/Localization/StringsConvertor/input/ru.lproj/app.json @@ -382,7 +382,11 @@ "video": "видео", "attachment_broken": "Это %s повреждено и не может\nбыть отправлено в Mastodon.", "description_photo": "Опишите фото для людей с нарушениями зрения...", - "description_video": "Опишите видео для людей с нарушениями зрения..." + "description_video": "Опишите видео для людей с нарушениями зрения...", + "load_failed": "Load Failed", + "upload_failed": "Upload Failed", + "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", + "attachment_too_large": "Attachment too large" }, "poll": { "duration_time": "Продолжительность: %s", From dff12fa346b6e9f56dce6fc350c470b53ab7ac25 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sun, 13 Nov 2022 18:36:26 +0100 Subject: [PATCH 182/598] New translations app.json (Chinese Simplified) --- Localization/StringsConvertor/input/zh-Hans.lproj/app.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/zh-Hans.lproj/app.json b/Localization/StringsConvertor/input/zh-Hans.lproj/app.json index 32d41e016..ddf89e159 100644 --- a/Localization/StringsConvertor/input/zh-Hans.lproj/app.json +++ b/Localization/StringsConvertor/input/zh-Hans.lproj/app.json @@ -382,7 +382,11 @@ "video": "视频", "attachment_broken": "%s已损坏\n无法上传到 Mastodon", "description_photo": "为视觉障碍人士添加照片的文字说明...", - "description_video": "为视觉障碍人士添加视频的文字说明..." + "description_video": "为视觉障碍人士添加视频的文字说明...", + "load_failed": "Load Failed", + "upload_failed": "Upload Failed", + "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", + "attachment_too_large": "Attachment too large" }, "poll": { "duration_time": "时长:%s", From 9a232e94351aaccb2cc2194c19b4afe676b18539 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sun, 13 Nov 2022 18:36:27 +0100 Subject: [PATCH 183/598] New translations app.json (English) --- Localization/StringsConvertor/input/en.lproj/app.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/en.lproj/app.json b/Localization/StringsConvertor/input/en.lproj/app.json index c5a3dac74..a6a971860 100644 --- a/Localization/StringsConvertor/input/en.lproj/app.json +++ b/Localization/StringsConvertor/input/en.lproj/app.json @@ -382,7 +382,11 @@ "video": "video", "attachment_broken": "This %s is broken and can’t be\nuploaded to Mastodon.", "description_photo": "Describe the photo for the visually-impaired...", - "description_video": "Describe the video for the visually-impaired..." + "description_video": "Describe the video for the visually-impaired...", + "load_failed": "Load Failed", + "upload_failed": "Upload Failed", + "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", + "attachment_too_large": "Attachment too large" }, "poll": { "duration_time": "Duration: %s", From 0f18d648d5f77f9b27265b487df7f87c034bae8e Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sun, 13 Nov 2022 18:36:28 +0100 Subject: [PATCH 184/598] New translations app.json (Galician) --- Localization/StringsConvertor/input/gl.lproj/app.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/gl.lproj/app.json b/Localization/StringsConvertor/input/gl.lproj/app.json index a4aacbdc5..d183c4cb9 100644 --- a/Localization/StringsConvertor/input/gl.lproj/app.json +++ b/Localization/StringsConvertor/input/gl.lproj/app.json @@ -382,7 +382,11 @@ "video": "vídeo", "attachment_broken": "Este %s está estragado e non pode\nser subido a Mastodon.", "description_photo": "Describe a foto para persoas con problemas visuais...", - "description_video": "Describe o vídeo para persoas con problemas visuais..." + "description_video": "Describe o vídeo para persoas con problemas visuais...", + "load_failed": "Load Failed", + "upload_failed": "Upload Failed", + "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", + "attachment_too_large": "Attachment too large" }, "poll": { "duration_time": "Duración: %s", From b790538da3baf1c496e7dc9b3509189ed34c28cc Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sun, 13 Nov 2022 18:36:29 +0100 Subject: [PATCH 185/598] New translations app.json (Portuguese, Brazilian) --- Localization/StringsConvertor/input/pt-BR.lproj/app.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/pt-BR.lproj/app.json b/Localization/StringsConvertor/input/pt-BR.lproj/app.json index d2653102b..1e0a60511 100644 --- a/Localization/StringsConvertor/input/pt-BR.lproj/app.json +++ b/Localization/StringsConvertor/input/pt-BR.lproj/app.json @@ -382,7 +382,11 @@ "video": "video", "attachment_broken": "This %s is broken and can’t be\nuploaded to Mastodon.", "description_photo": "Describe the photo for the visually-impaired...", - "description_video": "Describe the video for the visually-impaired..." + "description_video": "Describe the video for the visually-impaired...", + "load_failed": "Load Failed", + "upload_failed": "Upload Failed", + "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", + "attachment_too_large": "Attachment too large" }, "poll": { "duration_time": "Duration: %s", From 6550ddd45311b7610355003bf07d845317f82f45 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sun, 13 Nov 2022 18:36:30 +0100 Subject: [PATCH 186/598] New translations app.json (Spanish, Argentina) --- Localization/StringsConvertor/input/es-AR.lproj/app.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/es-AR.lproj/app.json b/Localization/StringsConvertor/input/es-AR.lproj/app.json index 33f36134b..9b8f9f522 100644 --- a/Localization/StringsConvertor/input/es-AR.lproj/app.json +++ b/Localization/StringsConvertor/input/es-AR.lproj/app.json @@ -382,7 +382,11 @@ "video": "video", "attachment_broken": "Este archivo de %s está roto\ny no se puede subir a Mastodon.", "description_photo": "Describí la imagen para personas con dificultades visuales…", - "description_video": "Describí el video para personas con dificultades visuales…" + "description_video": "Describí el video para personas con dificultades visuales…", + "load_failed": "Load Failed", + "upload_failed": "Upload Failed", + "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", + "attachment_too_large": "Attachment too large" }, "poll": { "duration_time": "Duración: %s", From 63d624f2988f158e931a0cedbf593b22a6a577f0 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sun, 13 Nov 2022 18:36:31 +0100 Subject: [PATCH 187/598] New translations app.json (Japanese) --- Localization/StringsConvertor/input/ja.lproj/app.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/ja.lproj/app.json b/Localization/StringsConvertor/input/ja.lproj/app.json index 098f49087..9ff2a60a6 100644 --- a/Localization/StringsConvertor/input/ja.lproj/app.json +++ b/Localization/StringsConvertor/input/ja.lproj/app.json @@ -382,7 +382,11 @@ "video": "動画", "attachment_broken": "%sは壊れていてMastodonにアップロードできません。", "description_photo": "閲覧が難しいユーザーへの画像説明", - "description_video": "閲覧が難しいユーザーへの映像説明" + "description_video": "閲覧が難しいユーザーへの映像説明", + "load_failed": "Load Failed", + "upload_failed": "Upload Failed", + "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", + "attachment_too_large": "Attachment too large" }, "poll": { "duration_time": "期間: %s", From 9188069b7ebc562126afaf21c21618b92fa16394 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sun, 13 Nov 2022 18:36:32 +0100 Subject: [PATCH 188/598] New translations app.json (Thai) --- Localization/StringsConvertor/input/th.lproj/app.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/th.lproj/app.json b/Localization/StringsConvertor/input/th.lproj/app.json index fc88065d9..ffdad5b75 100644 --- a/Localization/StringsConvertor/input/th.lproj/app.json +++ b/Localization/StringsConvertor/input/th.lproj/app.json @@ -382,7 +382,11 @@ "video": "วิดีโอ", "attachment_broken": "%s นี้เสียหายและไม่สามารถ\nอัปโหลดไปยัง Mastodon", "description_photo": "อธิบายรูปภาพสำหรับผู้บกพร่องทางการมองเห็น...", - "description_video": "อธิบายวิดีโอสำหรับผู้บกพร่องทางการมองเห็น..." + "description_video": "อธิบายวิดีโอสำหรับผู้บกพร่องทางการมองเห็น...", + "load_failed": "Load Failed", + "upload_failed": "Upload Failed", + "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", + "attachment_too_large": "Attachment too large" }, "poll": { "duration_time": "ระยะเวลา: %s", From 701d970bc98c3d2601498cd5023ba024cde1f18e Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sun, 13 Nov 2022 18:36:33 +0100 Subject: [PATCH 189/598] New translations app.json (Latvian) --- Localization/StringsConvertor/input/lv.lproj/app.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/lv.lproj/app.json b/Localization/StringsConvertor/input/lv.lproj/app.json index ba50897ed..2835f0887 100644 --- a/Localization/StringsConvertor/input/lv.lproj/app.json +++ b/Localization/StringsConvertor/input/lv.lproj/app.json @@ -382,7 +382,11 @@ "video": "video", "attachment_broken": "This %s is broken and can’t be\nuploaded to Mastodon.", "description_photo": "Describe the photo for the visually-impaired...", - "description_video": "Describe the video for the visually-impaired..." + "description_video": "Describe the video for the visually-impaired...", + "load_failed": "Load Failed", + "upload_failed": "Upload Failed", + "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", + "attachment_too_large": "Attachment too large" }, "poll": { "duration_time": "Duration: %s", From bad26066a4ef8e3659bd06037af78ed81765c005 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sun, 13 Nov 2022 18:36:34 +0100 Subject: [PATCH 190/598] New translations app.json (Hindi) --- Localization/StringsConvertor/input/hi.lproj/app.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/hi.lproj/app.json b/Localization/StringsConvertor/input/hi.lproj/app.json index 35cab7b5a..f0fedf75f 100644 --- a/Localization/StringsConvertor/input/hi.lproj/app.json +++ b/Localization/StringsConvertor/input/hi.lproj/app.json @@ -382,7 +382,11 @@ "video": "video", "attachment_broken": "This %s is broken and can’t be\nuploaded to Mastodon.", "description_photo": "Describe the photo for the visually-impaired...", - "description_video": "Describe the video for the visually-impaired..." + "description_video": "Describe the video for the visually-impaired...", + "load_failed": "Load Failed", + "upload_failed": "Upload Failed", + "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", + "attachment_too_large": "Attachment too large" }, "poll": { "duration_time": "Duration: %s", From ac03ea3991d31540ce28abbc75563a4db246e900 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sun, 13 Nov 2022 18:36:35 +0100 Subject: [PATCH 191/598] New translations app.json (English, United States) --- Localization/StringsConvertor/input/en-US.lproj/app.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/en-US.lproj/app.json b/Localization/StringsConvertor/input/en-US.lproj/app.json index c5a3dac74..a6a971860 100644 --- a/Localization/StringsConvertor/input/en-US.lproj/app.json +++ b/Localization/StringsConvertor/input/en-US.lproj/app.json @@ -382,7 +382,11 @@ "video": "video", "attachment_broken": "This %s is broken and can’t be\nuploaded to Mastodon.", "description_photo": "Describe the photo for the visually-impaired...", - "description_video": "Describe the video for the visually-impaired..." + "description_video": "Describe the video for the visually-impaired...", + "load_failed": "Load Failed", + "upload_failed": "Upload Failed", + "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", + "attachment_too_large": "Attachment too large" }, "poll": { "duration_time": "Duration: %s", From 6c85c9c6312db6a1f52bb103914e7df0eb002781 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sun, 13 Nov 2022 18:36:36 +0100 Subject: [PATCH 192/598] New translations app.json (Welsh) --- Localization/StringsConvertor/input/cy.lproj/app.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/cy.lproj/app.json b/Localization/StringsConvertor/input/cy.lproj/app.json index de782cd98..f36fe7d16 100644 --- a/Localization/StringsConvertor/input/cy.lproj/app.json +++ b/Localization/StringsConvertor/input/cy.lproj/app.json @@ -382,7 +382,11 @@ "video": "video", "attachment_broken": "This %s is broken and can’t be\nuploaded to Mastodon.", "description_photo": "Describe the photo for the visually-impaired...", - "description_video": "Describe the video for the visually-impaired..." + "description_video": "Describe the video for the visually-impaired...", + "load_failed": "Load Failed", + "upload_failed": "Upload Failed", + "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", + "attachment_too_large": "Attachment too large" }, "poll": { "duration_time": "Duration: %s", From 3ba643c6cc58975a62dece46cd8426e09a725bba Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sun, 13 Nov 2022 18:36:37 +0100 Subject: [PATCH 193/598] New translations app.json (Sinhala) --- Localization/StringsConvertor/input/si.lproj/app.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/si.lproj/app.json b/Localization/StringsConvertor/input/si.lproj/app.json index 2428da902..816536440 100644 --- a/Localization/StringsConvertor/input/si.lproj/app.json +++ b/Localization/StringsConvertor/input/si.lproj/app.json @@ -382,7 +382,11 @@ "video": "video", "attachment_broken": "This %s is broken and can’t be\nuploaded to Mastodon.", "description_photo": "Describe the photo for the visually-impaired...", - "description_video": "Describe the video for the visually-impaired..." + "description_video": "Describe the video for the visually-impaired...", + "load_failed": "Load Failed", + "upload_failed": "Upload Failed", + "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", + "attachment_too_large": "Attachment too large" }, "poll": { "duration_time": "Duration: %s", From 9f4e93b2c32f76a7163ba4a31e03a17dd7176c8a Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sun, 13 Nov 2022 18:36:38 +0100 Subject: [PATCH 194/598] New translations app.json (Kurmanji (Kurdish)) --- Localization/StringsConvertor/input/kmr.lproj/app.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/kmr.lproj/app.json b/Localization/StringsConvertor/input/kmr.lproj/app.json index bfe22d89a..9991169f4 100644 --- a/Localization/StringsConvertor/input/kmr.lproj/app.json +++ b/Localization/StringsConvertor/input/kmr.lproj/app.json @@ -382,7 +382,11 @@ "video": "vîdyo", "attachment_broken": "Ev %s naxebite û nayê barkirin\n li ser Mastodon.", "description_photo": "Wêneyê ji bo kêmbînên dîtbar bide nasîn...", - "description_video": "Vîdyoyê ji bo kêmbînên dîtbar bide nasîn..." + "description_video": "Vîdyoyê ji bo kêmbînên dîtbar bide nasîn...", + "load_failed": "Load Failed", + "upload_failed": "Upload Failed", + "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", + "attachment_too_large": "Attachment too large" }, "poll": { "duration_time": "Dirêjî: %s", From b9eec235f249643fe59d1574fb20ead7b922ecc1 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sun, 13 Nov 2022 18:36:39 +0100 Subject: [PATCH 195/598] New translations app.json (Dutch) --- Localization/StringsConvertor/input/nl.lproj/app.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/nl.lproj/app.json b/Localization/StringsConvertor/input/nl.lproj/app.json index 415327eaa..e0b2872fb 100644 --- a/Localization/StringsConvertor/input/nl.lproj/app.json +++ b/Localization/StringsConvertor/input/nl.lproj/app.json @@ -382,7 +382,11 @@ "video": "video", "attachment_broken": "Deze %s is corrupt en kan niet geüpload worden naar Mastodon.", "description_photo": "Omschrijf de foto voor mensen met een visuele beperking...", - "description_video": "Omschrijf de video voor mensen met een visuele beperking..." + "description_video": "Omschrijf de video voor mensen met een visuele beperking...", + "load_failed": "Load Failed", + "upload_failed": "Upload Failed", + "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", + "attachment_too_large": "Attachment too large" }, "poll": { "duration_time": "Duur: %s", From 9dc71080a6edf2a1397dab7d05df47bfa7a2ef85 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sun, 13 Nov 2022 18:36:40 +0100 Subject: [PATCH 196/598] New translations app.json (Italian) --- Localization/StringsConvertor/input/it.lproj/app.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/it.lproj/app.json b/Localization/StringsConvertor/input/it.lproj/app.json index 096deb444..b4c6aab70 100644 --- a/Localization/StringsConvertor/input/it.lproj/app.json +++ b/Localization/StringsConvertor/input/it.lproj/app.json @@ -382,7 +382,11 @@ "video": "filmato", "attachment_broken": "Questo %s è rotto e non può essere\ncaricato su Mastodon.", "description_photo": "Descrivi la foto per gli utenti ipovedenti...", - "description_video": "Descrivi il filmato per gli utenti ipovedenti..." + "description_video": "Descrivi il filmato per gli utenti ipovedenti...", + "load_failed": "Load Failed", + "upload_failed": "Upload Failed", + "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", + "attachment_too_large": "Attachment too large" }, "poll": { "duration_time": "Durata: %s", From 1f6b71e371bba5569146b1cee1ab5f0367f8f73e Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sun, 13 Nov 2022 18:36:41 +0100 Subject: [PATCH 197/598] New translations app.json (Chinese Traditional) --- Localization/StringsConvertor/input/zh-Hant.lproj/app.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/zh-Hant.lproj/app.json b/Localization/StringsConvertor/input/zh-Hant.lproj/app.json index 3700f0dd0..ab7343c99 100644 --- a/Localization/StringsConvertor/input/zh-Hant.lproj/app.json +++ b/Localization/StringsConvertor/input/zh-Hant.lproj/app.json @@ -382,7 +382,11 @@ "video": "影片", "attachment_broken": "此 %s 已損毀,並無法被上傳至 Mastodon。", "description_photo": "為視障人士提供圖片說明...", - "description_video": "為視障人士提供影片說明..." + "description_video": "為視障人士提供影片說明...", + "load_failed": "Load Failed", + "upload_failed": "Upload Failed", + "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", + "attachment_too_large": "Attachment too large" }, "poll": { "duration_time": "持續時間:%s", From 156565507b83bffa881a64c8b91fcdb0266b6c84 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sun, 13 Nov 2022 18:36:44 +0100 Subject: [PATCH 198/598] New translations app.json (Ukrainian) --- Localization/StringsConvertor/input/uk.lproj/app.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/uk.lproj/app.json b/Localization/StringsConvertor/input/uk.lproj/app.json index c5a3dac74..a6a971860 100644 --- a/Localization/StringsConvertor/input/uk.lproj/app.json +++ b/Localization/StringsConvertor/input/uk.lproj/app.json @@ -382,7 +382,11 @@ "video": "video", "attachment_broken": "This %s is broken and can’t be\nuploaded to Mastodon.", "description_photo": "Describe the photo for the visually-impaired...", - "description_video": "Describe the video for the visually-impaired..." + "description_video": "Describe the video for the visually-impaired...", + "load_failed": "Load Failed", + "upload_failed": "Upload Failed", + "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", + "attachment_too_large": "Attachment too large" }, "poll": { "duration_time": "Duration: %s", From c019bb2e277a00aef6184da4f8e44dd496f01a13 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sun, 13 Nov 2022 18:36:45 +0100 Subject: [PATCH 199/598] New translations app.json (Vietnamese) --- Localization/StringsConvertor/input/vi.lproj/app.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/vi.lproj/app.json b/Localization/StringsConvertor/input/vi.lproj/app.json index 1c60b214b..5b7696727 100644 --- a/Localization/StringsConvertor/input/vi.lproj/app.json +++ b/Localization/StringsConvertor/input/vi.lproj/app.json @@ -382,7 +382,11 @@ "video": "video", "attachment_broken": "%s này bị lỗi và không thể\ntải lên Mastodon.", "description_photo": "Mô tả hình ảnh cho người khiếm thị...", - "description_video": "Mô tả video cho người khiếm thị..." + "description_video": "Mô tả video cho người khiếm thị...", + "load_failed": "Load Failed", + "upload_failed": "Upload Failed", + "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", + "attachment_too_large": "Attachment too large" }, "poll": { "duration_time": "Thời hạn: %s", From 0204169bca80204796331ad2662d361f536c17c7 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sun, 13 Nov 2022 18:36:46 +0100 Subject: [PATCH 200/598] New translations app.json (Kabyle) --- Localization/StringsConvertor/input/kab.lproj/app.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/kab.lproj/app.json b/Localization/StringsConvertor/input/kab.lproj/app.json index ac436b6e1..9c5d7659a 100644 --- a/Localization/StringsConvertor/input/kab.lproj/app.json +++ b/Localization/StringsConvertor/input/kab.lproj/app.json @@ -382,7 +382,11 @@ "video": "tavidyutt", "attachment_broken": "%s-a yerreẓ, ur yezmir ara\nAd d-yettwasali ɣef Mastodon.", "description_photo": "Glem-d tawlaft i wid yesɛan ugur deg yiẓri...", - "description_video": "Glem-d tavidyut i wid yesɛan ugur deg yiẓri..." + "description_video": "Glem-d tavidyut i wid yesɛan ugur deg yiẓri...", + "load_failed": "Load Failed", + "upload_failed": "Upload Failed", + "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", + "attachment_too_large": "Attachment too large" }, "poll": { "duration_time": "Tangazt: %s", From a16a5e4f84aaa4b631096e4e1defddd1efeb1eae Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sun, 13 Nov 2022 18:36:47 +0100 Subject: [PATCH 201/598] New translations app.json (Korean) --- Localization/StringsConvertor/input/ko.lproj/app.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/ko.lproj/app.json b/Localization/StringsConvertor/input/ko.lproj/app.json index f67c7de5b..1d5019474 100644 --- a/Localization/StringsConvertor/input/ko.lproj/app.json +++ b/Localization/StringsConvertor/input/ko.lproj/app.json @@ -382,7 +382,11 @@ "video": "동영상", "attachment_broken": "This %s is broken and can’t be\nuploaded to Mastodon.", "description_photo": "시각장애인을 위한 사진 설명…", - "description_video": "시각장애인을 위한 영상 설명…" + "description_video": "시각장애인을 위한 영상 설명…", + "load_failed": "Load Failed", + "upload_failed": "Upload Failed", + "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", + "attachment_too_large": "Attachment too large" }, "poll": { "duration_time": "기간: %s", From a794358309334a6d550c6e90ffa9fe8617afe026 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sun, 13 Nov 2022 18:36:48 +0100 Subject: [PATCH 202/598] New translations app.json (Swedish) --- Localization/StringsConvertor/input/sv.lproj/app.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/sv.lproj/app.json b/Localization/StringsConvertor/input/sv.lproj/app.json index 0b04e01d7..14d670921 100644 --- a/Localization/StringsConvertor/input/sv.lproj/app.json +++ b/Localization/StringsConvertor/input/sv.lproj/app.json @@ -382,7 +382,11 @@ "video": "video", "attachment_broken": "Denna %s är trasig och kan inte\nladdas upp till Mastodon.", "description_photo": "Beskriv fotot för synskadade...", - "description_video": "Beskriv videon för de synskadade..." + "description_video": "Beskriv videon för de synskadade...", + "load_failed": "Load Failed", + "upload_failed": "Upload Failed", + "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", + "attachment_too_large": "Attachment too large" }, "poll": { "duration_time": "Längd: %s", From 8f1b4d335f54f79fafa4b21bd543a386ced33b24 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sun, 13 Nov 2022 18:36:49 +0100 Subject: [PATCH 203/598] New translations app.json (French) --- Localization/StringsConvertor/input/fr.lproj/app.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/fr.lproj/app.json b/Localization/StringsConvertor/input/fr.lproj/app.json index f719f21a4..25bb6e511 100644 --- a/Localization/StringsConvertor/input/fr.lproj/app.json +++ b/Localization/StringsConvertor/input/fr.lproj/app.json @@ -382,7 +382,11 @@ "video": "vidéo", "attachment_broken": "Ce %s est brisé et ne peut pas être\ntéléversé sur Mastodon.", "description_photo": "Décrire cette photo pour les personnes malvoyantes...", - "description_video": "Décrire cette vidéo pour les personnes malvoyantes..." + "description_video": "Décrire cette vidéo pour les personnes malvoyantes...", + "load_failed": "Load Failed", + "upload_failed": "Upload Failed", + "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", + "attachment_too_large": "Attachment too large" }, "poll": { "duration_time": "Durée: %s", From 26fc919459a4d9a72748bf0b107cc0c2dbcbe7be Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sun, 13 Nov 2022 18:36:50 +0100 Subject: [PATCH 204/598] New translations app.json (Turkish) --- Localization/StringsConvertor/input/tr.lproj/app.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/tr.lproj/app.json b/Localization/StringsConvertor/input/tr.lproj/app.json index 4cae430f9..2abb92845 100644 --- a/Localization/StringsConvertor/input/tr.lproj/app.json +++ b/Localization/StringsConvertor/input/tr.lproj/app.json @@ -382,7 +382,11 @@ "video": "video", "attachment_broken": "Bu %s bozuk ve Mastodon'a\nyüklenemiyor.", "description_photo": "Görme engelliler için fotoğrafı tarif edin...", - "description_video": "Görme engelliler için videoyu tarif edin..." + "description_video": "Görme engelliler için videoyu tarif edin...", + "load_failed": "Load Failed", + "upload_failed": "Upload Failed", + "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", + "attachment_too_large": "Attachment too large" }, "poll": { "duration_time": "Süre: %s", From 3186a54d7b6b7af013c28b1e570b8c89076383fd Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sun, 13 Nov 2022 18:36:51 +0100 Subject: [PATCH 205/598] New translations app.json (Czech) --- Localization/StringsConvertor/input/cs.lproj/app.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/cs.lproj/app.json b/Localization/StringsConvertor/input/cs.lproj/app.json index 97d210179..f916343fd 100644 --- a/Localization/StringsConvertor/input/cs.lproj/app.json +++ b/Localization/StringsConvertor/input/cs.lproj/app.json @@ -382,7 +382,11 @@ "video": "video", "attachment_broken": "Tento %s je poškozený a nemůže být\nnahrán do Mastodonu.", "description_photo": "Popište fotografii pro zrakově postižené osoby...", - "description_video": "Popište video pro zrakově postižené..." + "description_video": "Popište video pro zrakově postižené...", + "load_failed": "Load Failed", + "upload_failed": "Upload Failed", + "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", + "attachment_too_large": "Attachment too large" }, "poll": { "duration_time": "Doba trvání: %s", From 923bab23008ec45b3cf5e78aece80052d3715053 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sun, 13 Nov 2022 18:36:52 +0100 Subject: [PATCH 206/598] New translations app.json (Scottish Gaelic) --- Localization/StringsConvertor/input/gd.lproj/app.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/gd.lproj/app.json b/Localization/StringsConvertor/input/gd.lproj/app.json index 65a666396..c1d17f813 100644 --- a/Localization/StringsConvertor/input/gd.lproj/app.json +++ b/Localization/StringsConvertor/input/gd.lproj/app.json @@ -382,7 +382,11 @@ "video": "video", "attachment_broken": "Seo %s a tha briste is cha ghabh\na luchdadh suas gu Mastodon.", "description_photo": "Mìnich an dealbh dhan fheadhainn air a bheil cion-lèirsinne…", - "description_video": "Mìnich a’ video dhan fheadhainn air a bheil cion-lèirsinne…" + "description_video": "Mìnich a’ video dhan fheadhainn air a bheil cion-lèirsinne…", + "load_failed": "Load Failed", + "upload_failed": "Upload Failed", + "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", + "attachment_too_large": "Attachment too large" }, "poll": { "duration_time": "Faide: %s", From 03616dd0824f9905c70c11097cd708d8934fc1c8 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sun, 13 Nov 2022 18:36:53 +0100 Subject: [PATCH 207/598] New translations app.json (Finnish) --- Localization/StringsConvertor/input/fi.lproj/app.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/fi.lproj/app.json b/Localization/StringsConvertor/input/fi.lproj/app.json index 887c44a99..a42642786 100644 --- a/Localization/StringsConvertor/input/fi.lproj/app.json +++ b/Localization/StringsConvertor/input/fi.lproj/app.json @@ -382,7 +382,11 @@ "video": "video", "attachment_broken": "This %s is broken and can’t be\nuploaded to Mastodon.", "description_photo": "Kuvaile kuva näkövammaisille...", - "description_video": "Kuvaile video näkövammaisille..." + "description_video": "Kuvaile video näkövammaisille...", + "load_failed": "Load Failed", + "upload_failed": "Upload Failed", + "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", + "attachment_too_large": "Attachment too large" }, "poll": { "duration_time": "Kesto: %s", From 0009735485bad273b5daa8f44cfd4e3bfbe93fc6 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sun, 13 Nov 2022 18:36:54 +0100 Subject: [PATCH 208/598] New translations app.json (Romanian) --- Localization/StringsConvertor/input/ro.lproj/app.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/ro.lproj/app.json b/Localization/StringsConvertor/input/ro.lproj/app.json index 11b25f687..a9d3804fa 100644 --- a/Localization/StringsConvertor/input/ro.lproj/app.json +++ b/Localization/StringsConvertor/input/ro.lproj/app.json @@ -382,7 +382,11 @@ "video": "video", "attachment_broken": "This %s is broken and can’t be\nuploaded to Mastodon.", "description_photo": "Describe the photo for the visually-impaired...", - "description_video": "Describe the video for the visually-impaired..." + "description_video": "Describe the video for the visually-impaired...", + "load_failed": "Load Failed", + "upload_failed": "Upload Failed", + "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", + "attachment_too_large": "Attachment too large" }, "poll": { "duration_time": "Duration: %s", From 77761b58fbe32d4da7242a9cfb804318fc64a0c1 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sun, 13 Nov 2022 18:36:55 +0100 Subject: [PATCH 209/598] New translations app.json (Spanish) --- Localization/StringsConvertor/input/es.lproj/app.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/es.lproj/app.json b/Localization/StringsConvertor/input/es.lproj/app.json index 2afb0cd9c..7eaff340d 100644 --- a/Localization/StringsConvertor/input/es.lproj/app.json +++ b/Localization/StringsConvertor/input/es.lproj/app.json @@ -382,7 +382,11 @@ "video": "vídeo", "attachment_broken": "Este %s está roto y no puede\nsubirse a Mastodon.", "description_photo": "Describe la foto para los usuarios con dificultad visual...", - "description_video": "Describe el vídeo para los usuarios con dificultad visual..." + "description_video": "Describe el vídeo para los usuarios con dificultad visual...", + "load_failed": "Load Failed", + "upload_failed": "Upload Failed", + "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", + "attachment_too_large": "Attachment too large" }, "poll": { "duration_time": "Duración: %s", From cf4c05aea1ffd1c16ed4e4d0d7f045810ee121f9 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sun, 13 Nov 2022 18:36:56 +0100 Subject: [PATCH 210/598] New translations app.json (Arabic) --- Localization/StringsConvertor/input/ar.lproj/app.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/ar.lproj/app.json b/Localization/StringsConvertor/input/ar.lproj/app.json index 02132355c..4c5ac4c8b 100644 --- a/Localization/StringsConvertor/input/ar.lproj/app.json +++ b/Localization/StringsConvertor/input/ar.lproj/app.json @@ -382,7 +382,11 @@ "video": "مقطع مرئي", "attachment_broken": "هذا ال%s مُعطَّل\nويتعذَّرُ رفعُه إلى ماستودون.", "description_photo": "صِف الصورة للمَكفوفين...", - "description_video": "صِف المقطع المرئي للمَكفوفين..." + "description_video": "صِف المقطع المرئي للمَكفوفين...", + "load_failed": "Load Failed", + "upload_failed": "Upload Failed", + "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", + "attachment_too_large": "Attachment too large" }, "poll": { "duration_time": "المُدَّة: %s", From 60cfd3a1d4b8b412471a2b06b532431fc7500bd2 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sun, 13 Nov 2022 18:36:57 +0100 Subject: [PATCH 211/598] New translations app.json (Catalan) --- Localization/StringsConvertor/input/ca.lproj/app.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/ca.lproj/app.json b/Localization/StringsConvertor/input/ca.lproj/app.json index 45497e67d..a87870865 100644 --- a/Localization/StringsConvertor/input/ca.lproj/app.json +++ b/Localization/StringsConvertor/input/ca.lproj/app.json @@ -382,7 +382,11 @@ "video": "vídeo", "attachment_broken": "Aquest %s està trencat i no pot ser\ncarregat a Mastodon.", "description_photo": "Descriu la foto per als disminuïts visuals...", - "description_video": "Descriu el vídeo per als disminuïts visuals..." + "description_video": "Descriu el vídeo per als disminuïts visuals...", + "load_failed": "Load Failed", + "upload_failed": "Upload Failed", + "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", + "attachment_too_large": "Attachment too large" }, "poll": { "duration_time": "Durada: %s", From 3ba0638bece5ab1344302c7f3525edb7274ebf2a Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sun, 13 Nov 2022 18:36:58 +0100 Subject: [PATCH 212/598] New translations app.json (Danish) --- Localization/StringsConvertor/input/da.lproj/app.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/da.lproj/app.json b/Localization/StringsConvertor/input/da.lproj/app.json index c5a3dac74..a6a971860 100644 --- a/Localization/StringsConvertor/input/da.lproj/app.json +++ b/Localization/StringsConvertor/input/da.lproj/app.json @@ -382,7 +382,11 @@ "video": "video", "attachment_broken": "This %s is broken and can’t be\nuploaded to Mastodon.", "description_photo": "Describe the photo for the visually-impaired...", - "description_video": "Describe the video for the visually-impaired..." + "description_video": "Describe the video for the visually-impaired...", + "load_failed": "Load Failed", + "upload_failed": "Upload Failed", + "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", + "attachment_too_large": "Attachment too large" }, "poll": { "duration_time": "Duration: %s", From e51a4c7f286b09aa04bc4ce92286713ca1ac6a66 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sun, 13 Nov 2022 18:36:59 +0100 Subject: [PATCH 213/598] New translations app.json (German) --- Localization/StringsConvertor/input/de.lproj/app.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/de.lproj/app.json b/Localization/StringsConvertor/input/de.lproj/app.json index aa5ea3b1b..9cd262478 100644 --- a/Localization/StringsConvertor/input/de.lproj/app.json +++ b/Localization/StringsConvertor/input/de.lproj/app.json @@ -382,7 +382,11 @@ "video": "Video", "attachment_broken": "Dieses %s scheint defekt zu sein und\nkann nicht auf Mastodon hochgeladen werden.", "description_photo": "Für Menschen mit Sehbehinderung beschreiben...", - "description_video": "Für Menschen mit Sehbehinderung beschreiben..." + "description_video": "Für Menschen mit Sehbehinderung beschreiben...", + "load_failed": "Load Failed", + "upload_failed": "Upload Failed", + "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", + "attachment_too_large": "Attachment too large" }, "poll": { "duration_time": "Dauer: %s", From c1e15aa7f7ac5aa63b627e460edf225ca65b0e80 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sun, 13 Nov 2022 18:37:00 +0100 Subject: [PATCH 214/598] New translations app.json (Basque) --- Localization/StringsConvertor/input/eu.lproj/app.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/eu.lproj/app.json b/Localization/StringsConvertor/input/eu.lproj/app.json index 94720218f..3f58f522c 100644 --- a/Localization/StringsConvertor/input/eu.lproj/app.json +++ b/Localization/StringsConvertor/input/eu.lproj/app.json @@ -382,7 +382,11 @@ "video": "bideoa", "attachment_broken": "%s hondatuta dago eta ezin da\nMastodonera igo.", "description_photo": "Deskribatu argazkia ikusmen arazoak dituztenentzat...", - "description_video": "Deskribatu bideoa ikusmen arazoak dituztenentzat..." + "description_video": "Deskribatu bideoa ikusmen arazoak dituztenentzat...", + "load_failed": "Load Failed", + "upload_failed": "Upload Failed", + "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", + "attachment_too_large": "Attachment too large" }, "poll": { "duration_time": "Iraupena: %s", From 83a46304f2e8c8b6fda6f7edaaa61058a2cee574 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sun, 13 Nov 2022 18:37:01 +0100 Subject: [PATCH 215/598] New translations app.json (Sorani (Kurdish)) --- Localization/StringsConvertor/input/ckb.lproj/app.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/ckb.lproj/app.json b/Localization/StringsConvertor/input/ckb.lproj/app.json index e3db76643..25452f38b 100644 --- a/Localization/StringsConvertor/input/ckb.lproj/app.json +++ b/Localization/StringsConvertor/input/ckb.lproj/app.json @@ -382,7 +382,11 @@ "video": "ڤیدیۆ", "attachment_broken": "ئەم %sـە تێک چووە و ناتوانیت بەرزی بکەیتەوە.", "description_photo": "وێنەکەت بۆ نابیناکان باس بکە...", - "description_video": "ڤیدیۆکەت بۆ نابیناکان باس بکە..." + "description_video": "ڤیدیۆکەت بۆ نابیناکان باس بکە...", + "load_failed": "Load Failed", + "upload_failed": "Upload Failed", + "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", + "attachment_too_large": "Attachment too large" }, "poll": { "duration_time": "کات:‌ %s", From a36a303532e35b024d5990f3725a84700726e6c9 Mon Sep 17 00:00:00 2001 From: woxtu Date: Mon, 14 Nov 2022 02:53:59 +0900 Subject: [PATCH 216/598] Fix typos --- Mastodon/Scene/Account/AccountListViewModel.swift | 4 ++-- Mastodon/Scene/Profile/ProfileViewController.swift | 2 +- .../Sources/CoreDataStack/Utility/ManagedObjectRecord.swift | 2 +- .../Sources/MastodonCore/Service/AuthenticationService.swift | 4 ++-- .../Scene/ComposeContent/ComposeContentViewModel.swift | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Mastodon/Scene/Account/AccountListViewModel.swift b/Mastodon/Scene/Account/AccountListViewModel.swift index e0aaf97fc..c5bd93f07 100644 --- a/Mastodon/Scene/Account/AccountListViewModel.swift +++ b/Mastodon/Scene/Account/AccountListViewModel.swift @@ -52,7 +52,7 @@ final class AccountListViewModel: NSObject { mastodonAuthenticationFetchedResultsController.delegate = self do { try mastodonAuthenticationFetchedResultsController.performFetch() - authentications = mastodonAuthenticationFetchedResultsController.fetchedObjects?.compactMap { $0.asRecrod } ?? [] + authentications = mastodonAuthenticationFetchedResultsController.fetchedObjects?.compactMap { $0.asRecord } ?? [] } catch { assertionFailure(error.localizedDescription) } @@ -183,7 +183,7 @@ extension AccountListViewModel: NSFetchedResultsControllerDelegate { return } - authentications = mastodonAuthenticationFetchedResultsController.fetchedObjects?.compactMap { $0.asRecrod } ?? [] + authentications = mastodonAuthenticationFetchedResultsController.fetchedObjects?.compactMap { $0.asRecord } ?? [] } } diff --git a/Mastodon/Scene/Profile/ProfileViewController.swift b/Mastodon/Scene/Profile/ProfileViewController.swift index 3ce1fd33a..6c42f7643 100644 --- a/Mastodon/Scene/Profile/ProfileViewController.swift +++ b/Mastodon/Scene/Profile/ProfileViewController.swift @@ -540,7 +540,7 @@ extension ProfileViewController { let composeViewModel = ComposeViewModel( context: context, authContext: viewModel.authContext, - kind: .mention(user: mastodonUser.asRecrod) + kind: .mention(user: mastodonUser.asRecord) ) _ = coordinator.present(scene: .compose(viewModel: composeViewModel), from: self, transition: .modal(animated: true, completion: nil)) } diff --git a/MastodonSDK/Sources/CoreDataStack/Utility/ManagedObjectRecord.swift b/MastodonSDK/Sources/CoreDataStack/Utility/ManagedObjectRecord.swift index 4910145cf..88b08fc3c 100644 --- a/MastodonSDK/Sources/CoreDataStack/Utility/ManagedObjectRecord.swift +++ b/MastodonSDK/Sources/CoreDataStack/Utility/ManagedObjectRecord.swift @@ -32,7 +32,7 @@ public class ManagedObjectRecord: Hashable { } extension Managed where Self: NSManagedObject { - public var asRecrod: ManagedObjectRecord { + public var asRecord: ManagedObjectRecord { return .init(objectID: objectID) } } diff --git a/MastodonSDK/Sources/MastodonCore/Service/AuthenticationService.swift b/MastodonSDK/Sources/MastodonCore/Service/AuthenticationService.swift index 48da254c6..e8cb536ac 100644 --- a/MastodonSDK/Sources/MastodonCore/Service/AuthenticationService.swift +++ b/MastodonSDK/Sources/MastodonCore/Service/AuthenticationService.swift @@ -67,7 +67,7 @@ public final class AuthenticationService: NSObject { try mastodonAuthenticationFetchedResultsController.performFetch() mastodonAuthentications = mastodonAuthenticationFetchedResultsController.fetchedObjects? .sorted(by: { $0.activedAt > $1.activedAt }) - .compactMap { $0.asRecrod } ?? [] + .compactMap { $0.asRecord } ?? [] } catch { assertionFailure(error.localizedDescription) } @@ -148,7 +148,7 @@ extension AuthenticationService: NSFetchedResultsControllerDelegate { mastodonAuthentications = mastodonAuthenticationFetchedResultsController.fetchedObjects? .sorted(by: { $0.activedAt > $1.activedAt }) - .compactMap { $0.asRecrod } ?? [] + .compactMap { $0.asRecord } ?? [] } } diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel.swift index 2bf4e26ff..62159667f 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel.swift @@ -472,7 +472,7 @@ extension ComposeContentViewModel { let managedObjectContext = self.context.managedObjectContext var _author: ManagedObjectRecord? managedObjectContext.performAndWait { - _author = authContext.mastodonAuthenticationBox.authenticationRecord.object(in: managedObjectContext)?.user.asRecrod + _author = authContext.mastodonAuthenticationBox.authenticationRecord.object(in: managedObjectContext)?.user.asRecord } guard let author = _author else { throw AppError.badAuthentication From 88b54b2962fd9ebef957332e6198bbad8b7edb7c Mon Sep 17 00:00:00 2001 From: woxtu Date: Mon, 14 Nov 2022 02:56:20 +0900 Subject: [PATCH 217/598] Fix typos --- .../SearchResult/SearchResultViewModel+Diffable.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mastodon/Scene/Search/SearchDetail/SearchResult/SearchResultViewModel+Diffable.swift b/Mastodon/Scene/Search/SearchDetail/SearchResult/SearchResultViewModel+Diffable.swift index 7d243b1fa..b9eb5a9ae 100644 --- a/Mastodon/Scene/Search/SearchDetail/SearchResult/SearchResultViewModel+Diffable.swift +++ b/Mastodon/Scene/Search/SearchDetail/SearchResult/SearchResultViewModel+Diffable.swift @@ -33,7 +33,7 @@ extension SearchResultViewModel { userFetchedResultsController.$records, $hashtags ) - .map { statusRecrods, userRecords, hashtags in + .map { statusRecords, userRecords, hashtags in var items: [SearchResultItem] = [] let userItems = userRecords.map { SearchResultItem.user($0) } @@ -42,7 +42,7 @@ extension SearchResultViewModel { let hashtagItems = hashtags.map { SearchResultItem.hashtag(tag: $0) } items.append(contentsOf: hashtagItems) - let statusItems = statusRecrods.map { SearchResultItem.status($0) } + let statusItems = statusRecords.map { SearchResultItem.status($0) } items.append(contentsOf: statusItems) return items From 208870ebafea12b1ef87d8936fb670c1902de88a Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sun, 13 Nov 2022 19:45:40 +0100 Subject: [PATCH 218/598] New translations app.json (Catalan) --- Localization/StringsConvertor/input/ca.lproj/app.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Localization/StringsConvertor/input/ca.lproj/app.json b/Localization/StringsConvertor/input/ca.lproj/app.json index a87870865..7164d1d12 100644 --- a/Localization/StringsConvertor/input/ca.lproj/app.json +++ b/Localization/StringsConvertor/input/ca.lproj/app.json @@ -383,10 +383,10 @@ "attachment_broken": "Aquest %s està trencat i no pot ser\ncarregat a Mastodon.", "description_photo": "Descriu la foto per als disminuïts visuals...", "description_video": "Descriu el vídeo per als disminuïts visuals...", - "load_failed": "Load Failed", - "upload_failed": "Upload Failed", - "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", - "attachment_too_large": "Attachment too large" + "load_failed": "Ha fallat la càrrega", + "upload_failed": "Pujada fallida", + "can_not_recognize_this_media_attachment": "No es pot reconèixer l'adjunt multimèdia", + "attachment_too_large": "El fitxer adjunt és massa gran" }, "poll": { "duration_time": "Durada: %s", From f8f368023b595ca482cdd4f1bf1261844426cd43 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sun, 13 Nov 2022 19:45:41 +0100 Subject: [PATCH 219/598] New translations app.json (German) --- Localization/StringsConvertor/input/de.lproj/app.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Localization/StringsConvertor/input/de.lproj/app.json b/Localization/StringsConvertor/input/de.lproj/app.json index 9cd262478..481f07a4a 100644 --- a/Localization/StringsConvertor/input/de.lproj/app.json +++ b/Localization/StringsConvertor/input/de.lproj/app.json @@ -383,10 +383,10 @@ "attachment_broken": "Dieses %s scheint defekt zu sein und\nkann nicht auf Mastodon hochgeladen werden.", "description_photo": "Für Menschen mit Sehbehinderung beschreiben...", "description_video": "Für Menschen mit Sehbehinderung beschreiben...", - "load_failed": "Load Failed", - "upload_failed": "Upload Failed", - "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", - "attachment_too_large": "Attachment too large" + "load_failed": "Laden fehlgeschlagen", + "upload_failed": "Upload fehlgeschlagen", + "can_not_recognize_this_media_attachment": "Medienanhang wurde nicht erkannt", + "attachment_too_large": "Anhang zu groß" }, "poll": { "duration_time": "Dauer: %s", From 54211a90c1d6b75b8073c5b807c5ef4da92d6eaf Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sun, 13 Nov 2022 19:45:42 +0100 Subject: [PATCH 220/598] New translations app.json (Italian) --- Localization/StringsConvertor/input/it.lproj/app.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Localization/StringsConvertor/input/it.lproj/app.json b/Localization/StringsConvertor/input/it.lproj/app.json index b4c6aab70..73f42d1eb 100644 --- a/Localization/StringsConvertor/input/it.lproj/app.json +++ b/Localization/StringsConvertor/input/it.lproj/app.json @@ -383,10 +383,10 @@ "attachment_broken": "Questo %s è rotto e non può essere\ncaricato su Mastodon.", "description_photo": "Descrivi la foto per gli utenti ipovedenti...", "description_video": "Descrivi il filmato per gli utenti ipovedenti...", - "load_failed": "Load Failed", - "upload_failed": "Upload Failed", - "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", - "attachment_too_large": "Attachment too large" + "load_failed": "Caricamento fallito", + "upload_failed": "Caricamento fallito", + "can_not_recognize_this_media_attachment": "Impossibile riconoscere questo allegato multimediale", + "attachment_too_large": "Allegato troppo grande" }, "poll": { "duration_time": "Durata: %s", From 6782f228fc0164a01dbeda33cf2dc24c7b3561ca Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sun, 13 Nov 2022 19:45:43 +0100 Subject: [PATCH 221/598] New translations app.json (Spanish, Argentina) --- Localization/StringsConvertor/input/es-AR.lproj/app.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Localization/StringsConvertor/input/es-AR.lproj/app.json b/Localization/StringsConvertor/input/es-AR.lproj/app.json index 9b8f9f522..309cf4d34 100644 --- a/Localization/StringsConvertor/input/es-AR.lproj/app.json +++ b/Localization/StringsConvertor/input/es-AR.lproj/app.json @@ -383,10 +383,10 @@ "attachment_broken": "Este archivo de %s está roto\ny no se puede subir a Mastodon.", "description_photo": "Describí la imagen para personas con dificultades visuales…", "description_video": "Describí el video para personas con dificultades visuales…", - "load_failed": "Load Failed", - "upload_failed": "Upload Failed", - "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", - "attachment_too_large": "Attachment too large" + "load_failed": "Falló la descarga", + "upload_failed": "Falló la subida", + "can_not_recognize_this_media_attachment": "No se pudo reconocer este archivo adjunto", + "attachment_too_large": "Adjunto demasiado grande" }, "poll": { "duration_time": "Duración: %s", From d3607ea0f1f02c6a2906cb14a7a68f87e36c3be4 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sun, 13 Nov 2022 19:45:45 +0100 Subject: [PATCH 222/598] New translations app.json (Kurmanji (Kurdish)) --- Localization/StringsConvertor/input/kmr.lproj/app.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Localization/StringsConvertor/input/kmr.lproj/app.json b/Localization/StringsConvertor/input/kmr.lproj/app.json index 9991169f4..098f514ee 100644 --- a/Localization/StringsConvertor/input/kmr.lproj/app.json +++ b/Localization/StringsConvertor/input/kmr.lproj/app.json @@ -383,10 +383,10 @@ "attachment_broken": "Ev %s naxebite û nayê barkirin\n li ser Mastodon.", "description_photo": "Wêneyê ji bo kêmbînên dîtbar bide nasîn...", "description_video": "Vîdyoyê ji bo kêmbînên dîtbar bide nasîn...", - "load_failed": "Load Failed", - "upload_failed": "Upload Failed", - "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", - "attachment_too_large": "Attachment too large" + "load_failed": "Barkirin têk çû", + "upload_failed": "Barkirin têk çû", + "can_not_recognize_this_media_attachment": "Nikare ev pêveka medyayê nas bike", + "attachment_too_large": "Pêvek pir mezin e" }, "poll": { "duration_time": "Dirêjî: %s", From 0b04a423086bec96e79a5e5e8de885f2bfb1a6d9 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sun, 13 Nov 2022 20:56:34 +0100 Subject: [PATCH 223/598] New translations app.json (Czech) --- Localization/StringsConvertor/input/cs.lproj/app.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Localization/StringsConvertor/input/cs.lproj/app.json b/Localization/StringsConvertor/input/cs.lproj/app.json index f916343fd..4050352f4 100644 --- a/Localization/StringsConvertor/input/cs.lproj/app.json +++ b/Localization/StringsConvertor/input/cs.lproj/app.json @@ -383,10 +383,10 @@ "attachment_broken": "Tento %s je poškozený a nemůže být\nnahrán do Mastodonu.", "description_photo": "Popište fotografii pro zrakově postižené osoby...", "description_video": "Popište video pro zrakově postižené...", - "load_failed": "Load Failed", - "upload_failed": "Upload Failed", - "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", - "attachment_too_large": "Attachment too large" + "load_failed": "Načtení se nezdařilo", + "upload_failed": "Nahrání selhalo", + "can_not_recognize_this_media_attachment": "Nelze rozpoznat toto medium přílohy", + "attachment_too_large": "Příloha je příliš velká" }, "poll": { "duration_time": "Doba trvání: %s", From 8dcdd92cd69ff701c320878a0a1b12897d402cec Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sun, 13 Nov 2022 20:56:35 +0100 Subject: [PATCH 224/598] New translations app.json (Thai) --- Localization/StringsConvertor/input/th.lproj/app.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Localization/StringsConvertor/input/th.lproj/app.json b/Localization/StringsConvertor/input/th.lproj/app.json index ffdad5b75..9b4316025 100644 --- a/Localization/StringsConvertor/input/th.lproj/app.json +++ b/Localization/StringsConvertor/input/th.lproj/app.json @@ -383,10 +383,10 @@ "attachment_broken": "%s นี้เสียหายและไม่สามารถ\nอัปโหลดไปยัง Mastodon", "description_photo": "อธิบายรูปภาพสำหรับผู้บกพร่องทางการมองเห็น...", "description_video": "อธิบายวิดีโอสำหรับผู้บกพร่องทางการมองเห็น...", - "load_failed": "Load Failed", - "upload_failed": "Upload Failed", + "load_failed": "การโหลดล้มเหลว", + "upload_failed": "การอัปโหลดล้มเหลว", "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", - "attachment_too_large": "Attachment too large" + "attachment_too_large": "ไฟล์แนบใหญ่เกินไป" }, "poll": { "duration_time": "ระยะเวลา: %s", From 454e77e495be9526310af00008c105a42860cf91 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sun, 13 Nov 2022 20:56:36 +0100 Subject: [PATCH 225/598] New translations Localizable.stringsdict (Czech) --- .../input/cs.lproj/Localizable.stringsdict | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/Localization/StringsConvertor/input/cs.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/cs.lproj/Localizable.stringsdict index 21832870a..827bd79e6 100644 --- a/Localization/StringsConvertor/input/cs.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/cs.lproj/Localizable.stringsdict @@ -208,13 +208,13 @@ NSStringFormatValueTypeKey ld one - 1 reply + 1 odpověď few - %ld replies + %ld odpovědi many - %ld replies + %ld odpovědí other - %ld replies + %ld odpovědí plural.count.vote @@ -228,13 +228,13 @@ NSStringFormatValueTypeKey ld one - 1 vote + 1 hlas few - %ld votes + %ld hlasy many - %ld votes + %ld hlasů other - %ld votes + %ld hlasů plural.count.voter @@ -248,13 +248,13 @@ NSStringFormatValueTypeKey ld one - 1 voter + 1 hlasující few - %ld voters + %ld hlasující many - %ld voters + %ld hlasujících other - %ld voters + %ld hlasujících plural.people_talking From 1e7da6e82c21076c7783fb02a40648617d3b7926 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 01:00:34 +0100 Subject: [PATCH 226/598] New translations app.json (Swedish) --- Localization/StringsConvertor/input/sv.lproj/app.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Localization/StringsConvertor/input/sv.lproj/app.json b/Localization/StringsConvertor/input/sv.lproj/app.json index 14d670921..51e8f1c12 100644 --- a/Localization/StringsConvertor/input/sv.lproj/app.json +++ b/Localization/StringsConvertor/input/sv.lproj/app.json @@ -383,9 +383,9 @@ "attachment_broken": "Denna %s är trasig och kan inte\nladdas upp till Mastodon.", "description_photo": "Beskriv fotot för synskadade...", "description_video": "Beskriv videon för de synskadade...", - "load_failed": "Load Failed", - "upload_failed": "Upload Failed", - "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", + "load_failed": "Det gick inte att läsa in", + "upload_failed": "Uppladdning misslyckades", + "can_not_recognize_this_media_attachment": "Känner inte igen mediebilagan", "attachment_too_large": "Attachment too large" }, "poll": { From 28b3c25c1eee2d9d7efd4829ee045b696d7aafe5 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 01:58:05 +0100 Subject: [PATCH 227/598] New translations app.json (Swedish) --- Localization/StringsConvertor/input/sv.lproj/app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/sv.lproj/app.json b/Localization/StringsConvertor/input/sv.lproj/app.json index 51e8f1c12..c740609c9 100644 --- a/Localization/StringsConvertor/input/sv.lproj/app.json +++ b/Localization/StringsConvertor/input/sv.lproj/app.json @@ -386,7 +386,7 @@ "load_failed": "Det gick inte att läsa in", "upload_failed": "Uppladdning misslyckades", "can_not_recognize_this_media_attachment": "Känner inte igen mediebilagan", - "attachment_too_large": "Attachment too large" + "attachment_too_large": "Bilagan är för stor" }, "poll": { "duration_time": "Längd: %s", From a1ef060132bb9768ef79093b84a1db0776c6c614 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 04:37:02 +0100 Subject: [PATCH 228/598] New translations app.json (Korean) --- Localization/StringsConvertor/input/ko.lproj/app.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Localization/StringsConvertor/input/ko.lproj/app.json b/Localization/StringsConvertor/input/ko.lproj/app.json index 1d5019474..826ac389c 100644 --- a/Localization/StringsConvertor/input/ko.lproj/app.json +++ b/Localization/StringsConvertor/input/ko.lproj/app.json @@ -383,10 +383,10 @@ "attachment_broken": "This %s is broken and can’t be\nuploaded to Mastodon.", "description_photo": "시각장애인을 위한 사진 설명…", "description_video": "시각장애인을 위한 영상 설명…", - "load_failed": "Load Failed", - "upload_failed": "Upload Failed", - "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", - "attachment_too_large": "Attachment too large" + "load_failed": "불러오기 실패", + "upload_failed": "업로드 실패", + "can_not_recognize_this_media_attachment": "이 미디어 첨부파일을 인식할 수 없습니다", + "attachment_too_large": "첨부파일이 너무 큽니다" }, "poll": { "duration_time": "기간: %s", From 208cc3aa4d602430fe479caa17526a4912e8e7d3 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 05:49:38 +0100 Subject: [PATCH 229/598] New translations app.json (Portuguese, Brazilian) --- .../input/pt-BR.lproj/app.json | 196 +++++++++--------- 1 file changed, 98 insertions(+), 98 deletions(-) diff --git a/Localization/StringsConvertor/input/pt-BR.lproj/app.json b/Localization/StringsConvertor/input/pt-BR.lproj/app.json index 1e0a60511..dfcad6cf5 100644 --- a/Localization/StringsConvertor/input/pt-BR.lproj/app.json +++ b/Localization/StringsConvertor/input/pt-BR.lproj/app.json @@ -6,7 +6,7 @@ "please_try_again_later": "Tente novamente mais tarde." }, "sign_up_failure": { - "title": "Sign Up Failure" + "title": "Falha no cadastro" }, "server_error": { "title": "Erro do servidor" @@ -17,7 +17,7 @@ }, "discard_post_content": { "title": "Deletar Rascunho", - "message": "Confirm to discard composed post content." + "message": "Confirme para descartar o conteúdo da publicação composta." }, "publish_post_failure": { "title": "Falha ao publicar", @@ -42,7 +42,7 @@ }, "save_photo_failure": { "title": "Falha ao salvar foto", - "message": "Please enable the photo library access permission to save the photo." + "message": "Por favor, ative a permissão de acesso à galeria para salvar a foto." }, "delete_post": { "title": "Deletar Toot", @@ -71,137 +71,137 @@ "cancel": "Cancelar", "discard": "Descartar", "try_again": "Tente novamente", - "take_photo": "Take Photo", + "take_photo": "Tirar foto", "save_photo": "Salvar foto", "copy_photo": "Copiar foto", - "sign_in": "Sign In", - "sign_up": "Sign Up", - "see_more": "See More", - "preview": "Preview", + "sign_in": "Entrar", + "sign_up": "Criar conta", + "see_more": "Ver mais", + "preview": "Pré-visualização", "share": "Compartilhar", "share_user": "Compartilhar %s", - "share_post": "Share Post", - "open_in_safari": "Open in Safari", - "open_in_browser": "Open in Browser", - "find_people": "Find people to follow", - "manually_search": "Manually search instead", - "skip": "Skip", - "reply": "Reply", - "report_user": "Report %s", - "block_domain": "Block %s", - "unblock_domain": "Unblock %s", - "settings": "Settings", - "delete": "Delete" + "share_post": "Compartilhar postagem", + "open_in_safari": "Abrir no Safari", + "open_in_browser": "Abrir no navegador", + "find_people": "Encontre pessoas para seguir", + "manually_search": "Procure manualmente em vez disso", + "skip": "Pular", + "reply": "Responder", + "report_user": "Denunciar %s", + "block_domain": "Bloquear %s", + "unblock_domain": "Desbloquear %s", + "settings": "Configurações", + "delete": "Excluir" }, "tabs": { - "home": "Home", - "search": "Search", - "notification": "Notification", - "profile": "Profile" + "home": "Início", + "search": "Buscar", + "notification": "Notificação", + "profile": "Perfil" }, "keyboard": { "common": { - "switch_to_tab": "Switch to %s", - "compose_new_post": "Compose New Post", - "show_favorites": "Show Favorites", - "open_settings": "Open Settings" + "switch_to_tab": "Mudar para %s", + "compose_new_post": "Compor novo toot", + "show_favorites": "Mostrar favoritos", + "open_settings": "Abrir configurações" }, "timeline": { - "previous_status": "Previous Post", - "next_status": "Next Post", - "open_status": "Open Post", - "open_author_profile": "Open Author's Profile", - "open_reblogger_profile": "Open Reblogger's Profile", - "reply_status": "Reply to Post", - "toggle_reblog": "Toggle Reblog on Post", - "toggle_favorite": "Toggle Favorite on Post", - "toggle_content_warning": "Toggle Content Warning", - "preview_image": "Preview Image" + "previous_status": "Postagem anterior", + "next_status": "Próxima postagem", + "open_status": "Abrir toot", + "open_author_profile": "Abrir perfil do autor", + "open_reblogger_profile": "Abrir perfil do reblogger", + "reply_status": "Responder toot", + "toggle_reblog": "Ativar/desativar Reblog na postagem", + "toggle_favorite": "Ativar/desativar Favorito na postagem", + "toggle_content_warning": "Ativar/desativar Aviso de Conteúdo", + "preview_image": "Pré-visualizar imagem" }, "segmented_control": { - "previous_section": "Previous Section", - "next_section": "Next Section" + "previous_section": "Seção anterior", + "next_section": "Próxima seção" } }, "status": { - "user_reblogged": "%s reblogged", - "user_replied_to": "Replied to %s", - "show_post": "Show Post", - "show_user_profile": "Show user profile", - "content_warning": "Content Warning", - "sensitive_content": "Sensitive Content", - "media_content_warning": "Tap anywhere to reveal", - "tap_to_reveal": "Tap to reveal", + "user_reblogged": "%s reblogou", + "user_replied_to": "Em resposta a %s", + "show_post": "Mostrar postagem", + "show_user_profile": "Mostrar perfil de usuário", + "content_warning": "Aviso de Conteúdo", + "sensitive_content": "Conteúdo sensível", + "media_content_warning": "Toque em qualquer lugar para revelar", + "tap_to_reveal": "Toque para revelar", "poll": { - "vote": "Vote", - "closed": "Closed" + "vote": "Votar", + "closed": "Fechado" }, "meta_entity": { "url": "Link: %s", "hashtag": "Hashtag: %s", - "mention": "Show Profile: %s", - "email": "Email address: %s" + "mention": "Mostrar perfil: %s", + "email": "Endereço de e-mail: %s" }, "actions": { "reply": "Responder", - "reblog": "Reblog", - "unreblog": "Undo reblog", - "favorite": "Favorite", - "unfavorite": "Unfavorite", + "reblog": "Reblogar", + "unreblog": "Desfazer reblog", + "favorite": "Favoritar", + "unfavorite": "Remover favorito", "menu": "Menu", - "hide": "Hide", - "show_image": "Show image", - "show_gif": "Show GIF", - "show_video_player": "Show video player", - "tap_then_hold_to_show_menu": "Tap then hold to show menu" + "hide": "Ocultar", + "show_image": "Exibir imagem", + "show_gif": "Exibir GIF", + "show_video_player": "Mostrar reprodutor de vídeo", + "tap_then_hold_to_show_menu": "Toque e em seguida segure para exibir o menu" }, "tag": { "url": "URL", - "mention": "Mention", + "mention": "Mencionar", "link": "Link", "hashtag": "Hashtag", - "email": "Email", + "email": "E-mail", "emoji": "Emoji" }, "visibility": { "unlisted": "Everyone can see this post but not display in the public timeline.", - "private": "Only their followers can see this post.", - "private_from_me": "Only my followers can see this post.", - "direct": "Only mentioned user can see this post." + "private": "Somente seus seguidores podem ver essa postagem.", + "private_from_me": "Somente meus seguidores podem ver essa postagem.", + "direct": "Somente o usuário mencionado pode ver essa postagem." } }, "friendship": { - "follow": "Follow", - "following": "Following", - "request": "Request", - "pending": "Pending", - "block": "Block", - "block_user": "Block %s", - "block_domain": "Block %s", - "unblock": "Unblock", - "unblock_user": "Unblock %s", - "blocked": "Blocked", - "mute": "Mute", - "mute_user": "Mute %s", - "unmute": "Unmute", - "unmute_user": "Unmute %s", - "muted": "Muted", - "edit_info": "Edit Info", - "show_reblogs": "Show Reblogs", - "hide_reblogs": "Hide Reblogs" + "follow": "Seguir", + "following": "Seguindo", + "request": "Solicitação", + "pending": "Pendente", + "block": "Bloquear", + "block_user": "Bloquear %s", + "block_domain": "Bloquear %s", + "unblock": "Desbloquear", + "unblock_user": "Desbloquear %s", + "blocked": "Bloqueado", + "mute": "Silenciar", + "mute_user": "Silenciar %s", + "unmute": "Remover silenciado", + "unmute_user": "Remover silenciado %s", + "muted": "Silenciado", + "edit_info": "Editar informação", + "show_reblogs": "Mostrar Reblogs", + "hide_reblogs": "Ocultar Reblogs" }, "timeline": { - "filtered": "Filtered", + "filtered": "Filtrado", "timestamp": { - "now": "Now" + "now": "Agora" }, "loader": { - "load_missing_posts": "Load missing posts", - "loading_missing_posts": "Loading missing posts...", - "show_more_replies": "Show more replies" + "load_missing_posts": "Carregar postagens em falta", + "loading_missing_posts": "Carregando postagens em falta...", + "show_more_replies": "Exibir mais respostas" }, "header": { - "no_status_found": "No Post Found", + "no_status_found": "Nenhuma postagem encontrada", "blocking_warning": "You can’t view this user's profile\nuntil you unblock them.\nYour profile looks like this to them.", "user_blocking_warning": "You can’t view %s’s profile\nuntil you unblock them.\nYour profile looks like this to them.", "blocked_warning": "You can’t view this user’s profile\nuntil they unblock you.", @@ -290,17 +290,17 @@ }, "error": { "item": { - "username": "Username", - "email": "Email", - "password": "Password", - "agreement": "Agreement", - "locale": "Locale", - "reason": "Reason" + "username": "Nome de usuário", + "email": "E-mail", + "password": "Senha", + "agreement": "Termos de uso", + "locale": "Localidade", + "reason": "Motivo" }, "reason": { "blocked": "%s contains a disallowed email provider", - "unreachable": "%s does not seem to exist", - "taken": "%s is already in use", + "unreachable": "%s parece não existir", + "taken": "%s já está em uso", "reserved": "%s is a reserved keyword", "accepted": "%s must be accepted", "blank": "%s is required", From b730c3784d2c9078cad082df0dec4154ce1bbbe4 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 05:49:39 +0100 Subject: [PATCH 230/598] New translations ios-infoPlist.json (Portuguese, Brazilian) --- .../StringsConvertor/input/pt-BR.lproj/ios-infoPlist.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Localization/StringsConvertor/input/pt-BR.lproj/ios-infoPlist.json b/Localization/StringsConvertor/input/pt-BR.lproj/ios-infoPlist.json index c6db73de0..04b53a160 100644 --- a/Localization/StringsConvertor/input/pt-BR.lproj/ios-infoPlist.json +++ b/Localization/StringsConvertor/input/pt-BR.lproj/ios-infoPlist.json @@ -1,6 +1,6 @@ { - "NSCameraUsageDescription": "Used to take photo for post status", - "NSPhotoLibraryAddUsageDescription": "Used to save photo into the Photo Library", - "NewPostShortcutItemTitle": "New Post", - "SearchShortcutItemTitle": "Search" + "NSCameraUsageDescription": "Usado para tirar uma foto para postagem", + "NSPhotoLibraryAddUsageDescription": "Usado para salvar foto na Galeria", + "NewPostShortcutItemTitle": "Novo Toot", + "SearchShortcutItemTitle": "Buscar" } From ba1cc9ae6f748579c0cb5db8e5672eb3f3cc4bb4 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 05:49:41 +0100 Subject: [PATCH 231/598] New translations Intents.stringsdict (Portuguese, Brazilian) --- .../Intents/input/pt-BR.lproj/Intents.stringsdict | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Localization/StringsConvertor/Intents/input/pt-BR.lproj/Intents.stringsdict b/Localization/StringsConvertor/Intents/input/pt-BR.lproj/Intents.stringsdict index 18422c772..a48559b4a 100644 --- a/Localization/StringsConvertor/Intents/input/pt-BR.lproj/Intents.stringsdict +++ b/Localization/StringsConvertor/Intents/input/pt-BR.lproj/Intents.stringsdict @@ -5,7 +5,7 @@ There are ${count} options matching ‘${content}’. - 2 NSStringLocalizedFormatKey - There are %#@count_option@ matching ‘${content}’. + Existem %#@count_option@ opções correspondentes a ‘${content}’. count_option NSStringFormatSpecTypeKey @@ -13,15 +13,15 @@ NSStringFormatValueTypeKey %ld one - 1 option + 1 opção other - %ld options + %ld opções There are ${count} options matching ‘${visibility}’. NSStringLocalizedFormatKey - There are %#@count_option@ matching ‘${visibility}’. + Existem %#@count_option@ opções correspondentes a ‘${visibility}’. count_option NSStringFormatSpecTypeKey @@ -29,9 +29,9 @@ NSStringFormatValueTypeKey %ld one - 1 option + 1 opção other - %ld options + %ld opções From 906bad32d7c12dfb0b4776fcb6223d72298697dd Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 09:20:56 +0100 Subject: [PATCH 232/598] New translations app.json (Portuguese, Brazilian) --- .../input/pt-BR.lproj/app.json | 138 +++++++++--------- 1 file changed, 69 insertions(+), 69 deletions(-) diff --git a/Localization/StringsConvertor/input/pt-BR.lproj/app.json b/Localization/StringsConvertor/input/pt-BR.lproj/app.json index dfcad6cf5..26e6edb76 100644 --- a/Localization/StringsConvertor/input/pt-BR.lproj/app.json +++ b/Localization/StringsConvertor/input/pt-BR.lproj/app.json @@ -204,85 +204,85 @@ "no_status_found": "Nenhuma postagem encontrada", "blocking_warning": "You can’t view this user's profile\nuntil you unblock them.\nYour profile looks like this to them.", "user_blocking_warning": "You can’t view %s’s profile\nuntil you unblock them.\nYour profile looks like this to them.", - "blocked_warning": "You can’t view this user’s profile\nuntil they unblock you.", - "user_blocked_warning": "You can’t view %s’s profile\nuntil they unblock you.", - "suspended_warning": "This user has been suspended.", - "user_suspended_warning": "%s’s account has been suspended." + "blocked_warning": "Você não pode ver o perfil desse usuário até que ele o desbloqueie.", + "user_blocked_warning": "Você não pode ver o perfil de %s até que ele o desbloqueie.", + "suspended_warning": "Esse usuário foi suspenso.", + "user_suspended_warning": "A conta de %s foi suspensa." } } } }, "scene": { "welcome": { - "slogan": "Social networking\nback in your hands.", - "get_started": "Get Started", - "log_in": "Log In" + "slogan": "Você no controle de sua rede social.", + "get_started": "Comece já", + "log_in": "Entrar" }, "server_picker": { - "title": "Mastodon is made of users in different servers.", - "subtitle": "Pick a server based on your interests, region, or a general purpose one.", - "subtitle_extend": "Pick a server based on your interests, region, or a general purpose one. Each server is operated by an entirely independent organization or individual.", + "title": "Mastodon é feito de usuários em instâncias diferentes.", + "subtitle": "Escolha uma instância baseada nos seus interesses, região, ou em uma proposta geral.", + "subtitle_extend": "Escolha uma instância baseada nos seus interesses, região, ou em uma proposta geral. Cada instância é operada por um indivíduo ou uma organização totalmente independente.", "button": { "category": { - "all": "All", - "all_accessiblity_description": "Category: All", - "academia": "academia", - "activism": "activism", - "food": "food", + "all": "Todos", + "all_accessiblity_description": "Categoria: Todos", + "academia": "acadêmico", + "activism": "ativismo", + "food": "comida", "furry": "furry", - "games": "games", - "general": "general", - "journalism": "journalism", + "games": "jogos", + "general": "geral", + "journalism": "jornalismo", "lgbt": "lgbt", "regional": "regional", - "art": "art", - "music": "music", - "tech": "tech" + "art": "arte", + "music": "música", + "tech": "tecnologia" }, - "see_less": "See Less", - "see_more": "See More" + "see_less": "Ver menos", + "see_more": "Ver mais" }, "label": { - "language": "LANGUAGE", - "users": "USERS", - "category": "CATEGORY" + "language": "Idioma", + "users": "Usuários", + "category": "Categoria" }, "input": { - "placeholder": "Search servers", - "search_servers_or_enter_url": "Search servers or enter URL" + "placeholder": "Procurar instâncias", + "search_servers_or_enter_url": "Procurar instâncias ou inserir URL" }, "empty_state": { - "finding_servers": "Finding available servers...", - "bad_network": "Something went wrong while loading the data. Check your internet connection.", - "no_results": "No results" + "finding_servers": "Procurando instâncias disponíveis...", + "bad_network": "Algo deu errado ao carregar os dados. Verifique sua conexão com a internet.", + "no_results": "Sem resultados" } }, "register": { - "title": "Let’s get you set up on %s", + "title": "Vamos configurar você em %s", "lets_get_you_set_up_on_domain": "Let’s get you set up on %s", "input": { "avatar": { - "delete": "Delete" + "delete": "Excluir" }, "username": { - "placeholder": "username", - "duplicate_prompt": "This username is taken." + "placeholder": "nome de usuário", + "duplicate_prompt": "Esse nome de usuário já está sendo usado." }, "display_name": { - "placeholder": "display name" + "placeholder": "nome de exibição" }, "email": { - "placeholder": "email" + "placeholder": "e-mail" }, "password": { - "placeholder": "password", - "require": "Your password needs at least:", - "character_limit": "8 characters", + "placeholder": "senha", + "require": "Sua senha deve ter pelo menos:", + "character_limit": "8 carácteres", "accessibility": { "checked": "checked", "unchecked": "unchecked" }, - "hint": "Your password needs at least eight characters" + "hint": "Sua senha precisa ter pelo menos oito carácteres" }, "invite": { "registration_user_invite_request": "Why do you want to join?" @@ -372,14 +372,14 @@ "media_selection": { "camera": "Take Photo", "photo_library": "Photo Library", - "browse": "Browse" + "browse": "Navegar" }, - "content_input_placeholder": "Type or paste what’s on your mind", - "compose_action": "Publish", - "replying_to_user": "replying to %s", + "content_input_placeholder": "Digite ou cole o que está na sua mente", + "compose_action": "Publicar", + "replying_to_user": "em resposta a %s", "attachment": { - "photo": "photo", - "video": "video", + "photo": "foto", + "video": "vídeo", "attachment_broken": "This %s is broken and can’t be\nuploaded to Mastodon.", "description_photo": "Describe the photo for the visually-impaired...", "description_video": "Describe the video for the visually-impaired...", @@ -389,14 +389,14 @@ "attachment_too_large": "Attachment too large" }, "poll": { - "duration_time": "Duration: %s", - "thirty_minutes": "30 minutes", - "one_hour": "1 Hour", - "six_hours": "6 Hours", - "one_day": "1 Day", - "three_days": "3 Days", - "seven_days": "7 Days", - "option_number": "Option %ld" + "duration_time": "Duração: %s", + "thirty_minutes": "30 minutos", + "one_hour": "1 hora", + "six_hours": "6 horas", + "one_day": "1 dia", + "three_days": "3 dias", + "seven_days": "7 dias", + "option_number": "Opção %ld" }, "content_warning": { "placeholder": "Write an accurate warning here..." @@ -433,9 +433,9 @@ "follows_you": "Follows You" }, "dashboard": { - "posts": "posts", - "following": "following", - "followers": "followers" + "posts": "toots", + "following": "seguindo", + "followers": "seguidores" }, "fields": { "add_row": "Add Row", @@ -518,30 +518,30 @@ "accounts": { "title": "Accounts you might like", "description": "You may like to follow these accounts", - "follow": "Follow" + "follow": "Seguir" } }, "searching": { "segment": { - "all": "All", - "people": "People", + "all": "Todos", + "people": "Pessoas", "hashtags": "Hashtags", - "posts": "Posts" + "posts": "Toots" }, "empty_state": { - "no_results": "No results" + "no_results": "Sem resultados" }, - "recent_search": "Recent searches", - "clear": "Clear" + "recent_search": "Pesquisas recentes", + "clear": "Limpar" } }, "discovery": { "tabs": { - "posts": "Posts", + "posts": "Toots", "hashtags": "Hashtags", - "news": "News", - "community": "Community", - "for_you": "For You" + "news": "Notícias", + "community": "Comunidade", + "for_you": "Para você" }, "intro": "These are the posts gaining traction in your corner of Mastodon." }, From 12aa8ac09acb7396303c58c2d9b3d7411cf443ab Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 09:20:57 +0100 Subject: [PATCH 233/598] New translations Intents.strings (Portuguese, Brazilian) --- .../Intents/input/pt-BR.lproj/Intents.strings | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/Localization/StringsConvertor/Intents/input/pt-BR.lproj/Intents.strings b/Localization/StringsConvertor/Intents/input/pt-BR.lproj/Intents.strings index 6877490ba..4d4e426c6 100644 --- a/Localization/StringsConvertor/Intents/input/pt-BR.lproj/Intents.strings +++ b/Localization/StringsConvertor/Intents/input/pt-BR.lproj/Intents.strings @@ -1,26 +1,26 @@ -"16wxgf" = "Post on Mastodon"; +"16wxgf" = "Postar no Mastodon"; -"751xkl" = "Text Content"; +"751xkl" = "Conteúdo do texto"; -"CsR7G2" = "Post on Mastodon"; +"CsR7G2" = "Postar no Mastodon"; "HZSGTr" = "What content to post?"; "HdGikU" = "Posting failed"; -"KDNTJ4" = "Failure Reason"; +"KDNTJ4" = "Motivo da falha"; -"RHxKOw" = "Send Post with text content"; +"RHxKOw" = "Enviar postagem com conteúdo de texto"; -"RxSqsb" = "Post"; +"RxSqsb" = "Postagem"; -"WCIR3D" = "Post ${content} on Mastodon"; +"WCIR3D" = "Postar ${content} no Mastodon"; -"ZKJSNu" = "Post"; +"ZKJSNu" = "Postar"; "ZS1XaK" = "${content}"; -"ZbSjzC" = "Visibility"; +"ZbSjzC" = "Visibilidade"; "Zo4jgJ" = "Post Visibility"; From 2833771a8fb3c2c3f26a1ec49caf7bfe2d5a2015 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 10:22:03 +0100 Subject: [PATCH 234/598] New translations app.json (Galician) --- Localization/StringsConvertor/input/gl.lproj/app.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Localization/StringsConvertor/input/gl.lproj/app.json b/Localization/StringsConvertor/input/gl.lproj/app.json index d183c4cb9..3c394be95 100644 --- a/Localization/StringsConvertor/input/gl.lproj/app.json +++ b/Localization/StringsConvertor/input/gl.lproj/app.json @@ -383,10 +383,10 @@ "attachment_broken": "Este %s está estragado e non pode\nser subido a Mastodon.", "description_photo": "Describe a foto para persoas con problemas visuais...", "description_video": "Describe o vídeo para persoas con problemas visuais...", - "load_failed": "Load Failed", - "upload_failed": "Upload Failed", - "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", - "attachment_too_large": "Attachment too large" + "load_failed": "Fallou a carga", + "upload_failed": "Erro na subida", + "can_not_recognize_this_media_attachment": "Non se recoñece o tipo de multimedia", + "attachment_too_large": "Adxunto demasiado grande" }, "poll": { "duration_time": "Duración: %s", From 7b37d46c9b54f1484d76c35afb6df46eda3c52f0 Mon Sep 17 00:00:00 2001 From: David Godfrey Date: Mon, 14 Nov 2022 10:38:32 +0000 Subject: [PATCH 235/598] Update Localization/app.json Co-authored-by: Jed Fox --- Localization/app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Localization/app.json b/Localization/app.json index dfb204d8c..867e64aed 100644 --- a/Localization/app.json +++ b/Localization/app.json @@ -440,7 +440,7 @@ "content": "Content" }, "verified": { - "short": "Verified at %s", + "short": "Verified on %s", "long": "Ownership of this link was checked on %s" } }, From 7e7f41112e6b26b1f3f89998ecd835a8802979d7 Mon Sep 17 00:00:00 2001 From: CMK Date: Mon, 14 Nov 2022 18:41:54 +0800 Subject: [PATCH 236/598] fix: visibility missing bind back to source issue --- .../ComposeContentViewController.swift | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewController.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewController.swift index ea6a0136a..7034aeefb 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewController.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewController.swift @@ -334,9 +334,21 @@ extension ComposeContentViewController { viewModel.$isPollActive.assign(to: &composeContentToolbarViewModel.$isPollActive) viewModel.$isEmojiActive.assign(to: &composeContentToolbarViewModel.$isEmojiActive) viewModel.$isContentWarningActive.assign(to: &composeContentToolbarViewModel.$isContentWarningActive) + viewModel.$visibility.assign(to: &composeContentToolbarViewModel.$visibility) viewModel.$maxTextInputLimit.assign(to: &composeContentToolbarViewModel.$maxTextInputLimit) viewModel.$contentWeightedLength.assign(to: &composeContentToolbarViewModel.$contentWeightedLength) viewModel.$contentWarningWeightedLength.assign(to: &composeContentToolbarViewModel.$contentWarningWeightedLength) + + // bind back to source due to visibility not update via delegate + composeContentToolbarViewModel.$visibility + .dropFirst() + .sink { [weak self] visibility in + guard let self = self else { return } + if self.viewModel.visibility != visibility { + self.viewModel.visibility = visibility + } + } + .store(in: &disposeBag) } private func updateAutoCompleteViewControllerLayout() { From 2b2707c600d9a096b3bff5f3e30929e13d9bd328 Mon Sep 17 00:00:00 2001 From: CMK Date: Mon, 14 Nov 2022 18:53:09 +0800 Subject: [PATCH 237/598] feat: add throttle for post compose auto-complete query --- .../ComposeContent/AutoComplete/AutoCompleteViewModel.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/AutoComplete/AutoCompleteViewModel.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/AutoComplete/AutoCompleteViewModel.swift index 7459f68d1..d8fa06db6 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/AutoComplete/AutoCompleteViewModel.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/AutoComplete/AutoCompleteViewModel.swift @@ -73,7 +73,7 @@ final class AutoCompleteViewModel { inputText .removeDuplicates() - .receive(on: DispatchQueue.main) + .throttle(for: .milliseconds(200), scheduler: DispatchQueue.main, latest: true) .sink { [weak self] inputText in guard let self = self else { return } self.stateMachine.enter(State.Loading.self) From 4d03e114cac466616f1688192c62fa683d5fa63d Mon Sep 17 00:00:00 2001 From: CMK Date: Mon, 14 Nov 2022 19:14:13 +0800 Subject: [PATCH 238/598] fix: iPad navigation bar still could be large title issue --- .../Scene/Compose/ComposeViewController.swift | 46 ++++++------------- 1 file changed, 15 insertions(+), 31 deletions(-) diff --git a/Mastodon/Scene/Compose/ComposeViewController.swift b/Mastodon/Scene/Compose/ComposeViewController.swift index 6de17e31f..cc595d5bc 100644 --- a/Mastodon/Scene/Compose/ComposeViewController.swift +++ b/Mastodon/Scene/Compose/ComposeViewController.swift @@ -44,18 +44,20 @@ final class ComposeViewController: UIViewController, NeedsDependency { }() private(set) lazy var cancelBarButtonItem = UIBarButtonItem(title: L10n.Common.Controls.Actions.cancel, style: .plain, target: self, action: #selector(ComposeViewController.cancelBarButtonItemPressed(_:))) - let characterCountLabel: UILabel = { - let label = UILabel() - label.font = .systemFont(ofSize: 15, weight: .regular) - label.text = "500" - label.textColor = Asset.Colors.Label.secondary.color - label.accessibilityLabel = L10n.A11y.Plural.Count.inputLimitRemains(500) - return label - }() - private(set) lazy var characterCountBarButtonItem: UIBarButtonItem = { - let barButtonItem = UIBarButtonItem(customView: characterCountLabel) - return barButtonItem - }() + + // FIXME: deprecated + // let characterCountLabel: UILabel = { + // let label = UILabel() + // label.font = .systemFont(ofSize: 15, weight: .regular) + // label.text = "500" + // label.textColor = Asset.Colors.Label.secondary.color + // label.accessibilityLabel = L10n.A11y.Plural.Count.inputLimitRemains(500) + // return label + // }() + // private(set) lazy var characterCountBarButtonItem: UIBarButtonItem = { + // let barButtonItem = UIBarButtonItem(customView: characterCountLabel) + // return barButtonItem + // }() let publishButton: UIButton = { let button = RoundedEdgesButton(type: .custom) @@ -139,16 +141,6 @@ extension ComposeViewController { ]) composeContentViewController.didMove(toParent: self) - // bind navigation bar style - // configureNavigationBarTitleStyle() - viewModel.traitCollectionDidChangePublisher - .receive(on: DispatchQueue.main) - .sink { [weak self] _ in - guard let self = self else { return } - self.configureNavigationBarTitleStyle() - } - .store(in: &disposeBag) - // bind title viewModel.$title .receive(on: DispatchQueue.main) @@ -226,15 +218,7 @@ extension ComposeViewController { // break // } // } -// - private func configureNavigationBarTitleStyle() { - switch traitCollection.userInterfaceIdiom { - case .pad: - navigationController?.navigationBar.prefersLargeTitles = traitCollection.horizontalSizeClass == .regular - default: - break - } - } +// } From 25f4a6b082e9f454107b9a69201c41c58b38b496 Mon Sep 17 00:00:00 2001 From: CMK Date: Mon, 14 Nov 2022 19:14:46 +0800 Subject: [PATCH 239/598] feat: restore post compose limit --- .../ComposeContentViewModel.swift | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel.swift index 2bf4e26ff..91be96248 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel.swift @@ -229,6 +229,32 @@ public final class ComposeContentViewModel: NSObject, ObservableObject { break } + // set limit + let _configuration: Mastodon.Entity.Instance.Configuration? = { + var configuration: Mastodon.Entity.Instance.Configuration? = nil + context.managedObjectContext.performAndWait { + guard let authentication = authContext.mastodonAuthenticationBox.authenticationRecord.object(in: context.managedObjectContext) + else { return } + configuration = authentication.instance?.configuration + } + return configuration + }() + if let configuration = _configuration { + // set character limit + if let maxCharacters = configuration.statuses?.maxCharacters { + maxTextInputLimit = maxCharacters + } + // set media limit + if let maxMediaAttachments = configuration.statuses?.maxMediaAttachments { + maxMediaAttachmentLimit = maxMediaAttachments + } + // set poll option limit + if let maxOptions = configuration.polls?.maxOptions { + maxPollOptionLimit = maxOptions + } + // TODO: more limit + } + bind() } From bc428486ae1785664465c29056af6707377f4980 Mon Sep 17 00:00:00 2001 From: CMK Date: Mon, 14 Nov 2022 19:20:14 +0800 Subject: [PATCH 240/598] chore: update i18n resources --- .../Generated/Strings.swift | 10 ++++- .../Resources/ar.lproj/Localizable.strings | 22 ++++++---- .../Resources/ca.lproj/Localizable.strings | 10 ++++- .../Resources/ckb.lproj/Localizable.strings | 8 ++++ .../Resources/de.lproj/Localizable.strings | 20 +++++++--- .../de.lproj/Localizable.stringsdict | 4 +- .../Resources/en.lproj/Localizable.strings | 6 ++- .../Resources/es.lproj/Localizable.strings | 8 ++++ .../Resources/eu.lproj/Localizable.strings | 8 ++++ .../Resources/fi.lproj/Localizable.strings | 8 ++++ .../Resources/fr.lproj/Localizable.strings | 10 ++++- .../Resources/gd.lproj/Localizable.strings | 8 ++++ .../Resources/gl.lproj/Localizable.strings | 22 ++++++---- .../Resources/it.lproj/Localizable.strings | 10 ++++- .../Resources/ja.lproj/Localizable.strings | 8 ++++ .../Resources/kab.lproj/Localizable.strings | 8 ++++ .../Resources/ku.lproj/Localizable.strings | 22 ++++++---- .../Resources/nl.lproj/Localizable.strings | 8 ++++ .../Resources/ru.lproj/Localizable.strings | 8 ++++ .../Resources/sv.lproj/Localizable.strings | 40 +++++++++++-------- .../sv.lproj/Localizable.stringsdict | 4 +- .../Resources/th.lproj/Localizable.strings | 24 +++++++---- .../Resources/tr.lproj/Localizable.strings | 8 ++++ .../Resources/vi.lproj/Localizable.strings | 10 ++++- .../zh-Hans.lproj/Localizable.strings | 8 ++++ .../zh-Hant.lproj/Localizable.strings | 10 ++++- .../Attachment/AttachmentView.swift | 2 +- 27 files changed, 251 insertions(+), 63 deletions(-) diff --git a/MastodonSDK/Sources/MastodonLocalization/Generated/Strings.swift b/MastodonSDK/Sources/MastodonLocalization/Generated/Strings.swift index 44ae29267..41090ca48 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Generated/Strings.swift +++ b/MastodonSDK/Sources/MastodonLocalization/Generated/Strings.swift @@ -319,7 +319,7 @@ public enum L10n { public static func email(_ p1: Any) -> String { return L10n.tr("Localizable", "Common.Controls.Status.MetaEntity.Email", String(describing: p1)) } - /// Hastag %@ + /// Hashtag: %@ public static func hashtag(_ p1: Any) -> String { return L10n.tr("Localizable", "Common.Controls.Status.MetaEntity.Hashtag", String(describing: p1)) } @@ -459,12 +459,20 @@ public enum L10n { public static func attachmentBroken(_ p1: Any) -> String { return L10n.tr("Localizable", "Scene.Compose.Attachment.AttachmentBroken", String(describing: p1)) } + /// Attachment too large + public static let attachmentTooLarge = L10n.tr("Localizable", "Scene.Compose.Attachment.AttachmentTooLarge") + /// Can not regonize this media attachment + public static let canNotRecognizeThisMediaAttachment = L10n.tr("Localizable", "Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment") /// Describe the photo for the visually-impaired... public static let descriptionPhoto = L10n.tr("Localizable", "Scene.Compose.Attachment.DescriptionPhoto") /// Describe the video for the visually-impaired... public static let descriptionVideo = L10n.tr("Localizable", "Scene.Compose.Attachment.DescriptionVideo") + /// Load Failed + public static let loadFailed = L10n.tr("Localizable", "Scene.Compose.Attachment.LoadFailed") /// photo public static let photo = L10n.tr("Localizable", "Scene.Compose.Attachment.Photo") + /// Upload Failed + public static let uploadFailed = L10n.tr("Localizable", "Scene.Compose.Attachment.UploadFailed") /// video public static let video = L10n.tr("Localizable", "Scene.Compose.Attachment.Video") } diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/ar.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/ar.lproj/Localizable.strings index 9ecfa450e..943d56a9f 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/ar.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/ar.lproj/Localizable.strings @@ -68,13 +68,13 @@ "Common.Controls.Friendship.EditInfo" = "تَحريرُ المَعلُومات"; "Common.Controls.Friendship.Follow" = "مُتابَعَة"; "Common.Controls.Friendship.Following" = "مُتابَع"; -"Common.Controls.Friendship.HideReblogs" = "Hide Reblogs"; +"Common.Controls.Friendship.HideReblogs" = "إخفاء إعادات التدوين"; "Common.Controls.Friendship.Mute" = "كَتم"; "Common.Controls.Friendship.MuteUser" = "كَتمُ %@"; "Common.Controls.Friendship.Muted" = "مكتوم"; "Common.Controls.Friendship.Pending" = "قيد المُراجعة"; "Common.Controls.Friendship.Request" = "إرسال طَلَب"; -"Common.Controls.Friendship.ShowReblogs" = "Show Reblogs"; +"Common.Controls.Friendship.ShowReblogs" = "إظهار إعادات التدوين"; "Common.Controls.Friendship.Unblock" = "رفع الحَظر"; "Common.Controls.Friendship.UnblockUser" = "رفع الحَظر عن %@"; "Common.Controls.Friendship.Unmute" = "رفع الكتم"; @@ -108,6 +108,10 @@ "Common.Controls.Status.Actions.Unreblog" = "التراجُع عن إعادة النشر"; "Common.Controls.Status.ContentWarning" = "تحذير المُحتوى"; "Common.Controls.Status.MediaContentWarning" = "اُنقُر لِلكَشف"; +"Common.Controls.Status.MetaEntity.Email" = "عُنوان البريد الإلكتُروني: %@"; +"Common.Controls.Status.MetaEntity.Hashtag" = "وَسْم: %@"; +"Common.Controls.Status.MetaEntity.Mention" = "إظهار المِلف التعريفي: %@"; +"Common.Controls.Status.MetaEntity.Url" = "رابِط: %@"; "Common.Controls.Status.Poll.Closed" = "انتهى"; "Common.Controls.Status.Poll.Vote" = "صَوِّت"; "Common.Controls.Status.SensitiveContent" = "مُحتَوى حَسَّاس"; @@ -151,7 +155,7 @@ "Scene.AccountList.AddAccount" = "إضافَةُ حِساب"; "Scene.AccountList.DismissAccountSwitcher" = "تجاهُل مبدِّل الحِساب"; "Scene.AccountList.TabBarHint" = "المِلَفُّ المُحدَّدُ حالِيًّا: %@. اُنقُر نَقرًا مُزدَوَجًا مَعَ الاِستِمرارِ لِإظهارِ مُبدِّلِ الحِساب"; -"Scene.Bookmark.Title" = "Bookmarks"; +"Scene.Bookmark.Title" = "العَلاماتُ المَرجعيَّة"; "Scene.Compose.Accessibility.AppendAttachment" = "إضافة مُرفَق"; "Scene.Compose.Accessibility.AppendPoll" = "اضافة استطلاع رأي"; "Scene.Compose.Accessibility.CustomEmojiPicker" = "منتقي الرموز التعبيرية المُخصَّص"; @@ -161,9 +165,13 @@ "Scene.Compose.Accessibility.RemovePoll" = "إزالة الاستطلاع"; "Scene.Compose.Attachment.AttachmentBroken" = "هذا ال%@ مُعطَّل ويتعذَّرُ رفعُه إلى ماستودون."; +"Scene.Compose.Attachment.AttachmentTooLarge" = "Attachment too large"; +"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Can not regonize this media attachment"; "Scene.Compose.Attachment.DescriptionPhoto" = "صِف الصورة للمَكفوفين..."; "Scene.Compose.Attachment.DescriptionVideo" = "صِف المقطع المرئي للمَكفوفين..."; +"Scene.Compose.Attachment.LoadFailed" = "Load Failed"; "Scene.Compose.Attachment.Photo" = "صورة"; +"Scene.Compose.Attachment.UploadFailed" = "Upload Failed"; "Scene.Compose.Attachment.Video" = "مقطع مرئي"; "Scene.Compose.AutoComplete.SpaceToAdd" = "انقر على مساحة لإضافتِها"; "Scene.Compose.ComposeAction" = "نَشر"; @@ -256,12 +264,12 @@ "Scene.Profile.Header.FollowsYou" = "يُتابِعُك"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "تأكيدُ حَظر %@"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "حَظرُ الحِساب"; -"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "Confirm to hide reblogs"; -"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Title" = "Hide Reblogs"; +"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "التأكيد لِإخفاء إعادات التدوين"; +"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Title" = "إخفاء إعادات التدوين"; "Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Message" = "تأكيدُ كَتم %@"; "Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "كَتمُ الحِساب"; -"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Confirm to show reblogs"; -"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "Show Reblogs"; +"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "التأكيد لِإظهار إعادات التدوين"; +"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "إظهار إعادات التدوين"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "تأكيدُ رَفع الحَظرِ عَن %@"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "رَفعُ الحَظرِ عَنِ الحِساب"; "Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "أكِّد لرفع الكتمْ عن %@"; diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/ca.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/ca.lproj/Localizable.strings index 1e691f8a9..fca658aef 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/ca.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/ca.lproj/Localizable.strings @@ -108,6 +108,10 @@ Comprova la teva connexió a Internet."; "Common.Controls.Status.Actions.Unreblog" = "Desfer l'impuls"; "Common.Controls.Status.ContentWarning" = "Advertència de Contingut"; "Common.Controls.Status.MediaContentWarning" = "Toca qualsevol lloc per a mostrar"; +"Common.Controls.Status.MetaEntity.Email" = "Correu electrònic: %@"; +"Common.Controls.Status.MetaEntity.Hashtag" = "Etiqueta %@"; +"Common.Controls.Status.MetaEntity.Mention" = "Mostra el Perfil: %@"; +"Common.Controls.Status.MetaEntity.Url" = "Enllaç: %@"; "Common.Controls.Status.Poll.Closed" = "Finalitzada"; "Common.Controls.Status.Poll.Vote" = "Vota"; "Common.Controls.Status.SensitiveContent" = "Contingut sensible"; @@ -151,7 +155,7 @@ El teu perfil els sembla així."; "Scene.AccountList.AddAccount" = "Afegir compte"; "Scene.AccountList.DismissAccountSwitcher" = "Descartar el commutador de comptes"; "Scene.AccountList.TabBarHint" = "Perfil actual seleccionat: %@. Toca dues vegades i manté el dit per a mostrar el commutador de comptes"; -"Scene.Bookmark.Title" = "Bookmarks"; +"Scene.Bookmark.Title" = "Marcadors"; "Scene.Compose.Accessibility.AppendAttachment" = "Afegeix Adjunt"; "Scene.Compose.Accessibility.AppendPoll" = "Afegir enquesta"; "Scene.Compose.Accessibility.CustomEmojiPicker" = "Selector d'Emoji Personalitzat"; @@ -161,9 +165,13 @@ El teu perfil els sembla així."; "Scene.Compose.Accessibility.RemovePoll" = "Eliminar Enquesta"; "Scene.Compose.Attachment.AttachmentBroken" = "Aquest %@ està trencat i no pot ser carregat a Mastodon."; +"Scene.Compose.Attachment.AttachmentTooLarge" = "El fitxer adjunt és massa gran"; +"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "No es pot reconèixer l'adjunt multimèdia"; "Scene.Compose.Attachment.DescriptionPhoto" = "Descriu la foto per als disminuïts visuals..."; "Scene.Compose.Attachment.DescriptionVideo" = "Descriu el vídeo per als disminuïts visuals..."; +"Scene.Compose.Attachment.LoadFailed" = "Ha fallat la càrrega"; "Scene.Compose.Attachment.Photo" = "foto"; +"Scene.Compose.Attachment.UploadFailed" = "Pujada fallida"; "Scene.Compose.Attachment.Video" = "vídeo"; "Scene.Compose.AutoComplete.SpaceToAdd" = "Espai per afegir"; "Scene.Compose.ComposeAction" = "Publica"; diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/ckb.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/ckb.lproj/Localizable.strings index 053211f28..05c575520 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/ckb.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/ckb.lproj/Localizable.strings @@ -108,6 +108,10 @@ "Common.Controls.Status.Actions.Unreblog" = "پۆستکردنەکە بگەڕێنەوە"; "Common.Controls.Status.ContentWarning" = "ئاگاداریی ناوەڕۆک"; "Common.Controls.Status.MediaContentWarning" = "دەستی پیا بنێ بۆ نیشاندانی"; +"Common.Controls.Status.MetaEntity.Email" = "Email address: %@"; +"Common.Controls.Status.MetaEntity.Hashtag" = "Hashtag: %@"; +"Common.Controls.Status.MetaEntity.Mention" = "Show Profile: %@"; +"Common.Controls.Status.MetaEntity.Url" = "Link: %@"; "Common.Controls.Status.Poll.Closed" = "داخراوە"; "Common.Controls.Status.Poll.Vote" = "دەنگ بدە"; "Common.Controls.Status.SensitiveContent" = "ناوەڕۆکی هەستیار"; @@ -160,9 +164,13 @@ "Scene.Compose.Accessibility.PostVisibilityMenu" = "پێڕستی شێوازی دەرکەوتنی پۆست"; "Scene.Compose.Accessibility.RemovePoll" = "دانگدانەکە لابە"; "Scene.Compose.Attachment.AttachmentBroken" = "ئەم %@ـە تێک چووە و ناتوانیت بەرزی بکەیتەوە."; +"Scene.Compose.Attachment.AttachmentTooLarge" = "Attachment too large"; +"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Can not regonize this media attachment"; "Scene.Compose.Attachment.DescriptionPhoto" = "وێنەکەت بۆ نابیناکان باس بکە..."; "Scene.Compose.Attachment.DescriptionVideo" = "ڤیدیۆکەت بۆ نابیناکان باس بکە..."; +"Scene.Compose.Attachment.LoadFailed" = "Load Failed"; "Scene.Compose.Attachment.Photo" = "وێنە"; +"Scene.Compose.Attachment.UploadFailed" = "Upload Failed"; "Scene.Compose.Attachment.Video" = "ڤیدیۆ"; "Scene.Compose.AutoComplete.SpaceToAdd" = "بۆشایی دابنێ بۆ زیادکردن"; "Scene.Compose.ComposeAction" = "بڵاوی بکەوە"; diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/de.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/de.lproj/Localizable.strings index 0a78adc48..4f9a15906 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/de.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/de.lproj/Localizable.strings @@ -108,6 +108,10 @@ Bitte überprüfe deine Internetverbindung."; "Common.Controls.Status.Actions.Unreblog" = "Nicht mehr teilen"; "Common.Controls.Status.ContentWarning" = "Inhaltswarnung"; "Common.Controls.Status.MediaContentWarning" = "Tippe irgendwo zum Anzeigen"; +"Common.Controls.Status.MetaEntity.Email" = "Email address: %@"; +"Common.Controls.Status.MetaEntity.Hashtag" = "Hashtag: %@"; +"Common.Controls.Status.MetaEntity.Mention" = "Show Profile: %@"; +"Common.Controls.Status.MetaEntity.Url" = "Link: %@"; "Common.Controls.Status.Poll.Closed" = "Beendet"; "Common.Controls.Status.Poll.Vote" = "Abstimmen"; "Common.Controls.Status.SensitiveContent" = "NSFW-Inhalt"; @@ -151,7 +155,7 @@ Dein Profil sieht für diesen Benutzer auch so aus."; "Scene.AccountList.AddAccount" = "Konto hinzufügen"; "Scene.AccountList.DismissAccountSwitcher" = "Dialog zum Wechseln des Kontos schließen"; "Scene.AccountList.TabBarHint" = "Aktuell ausgewähltes Profil: %@. Doppeltippen dann gedrückt halten, um den Kontoschalter anzuzeigen"; -"Scene.Bookmark.Title" = "Bookmarks"; +"Scene.Bookmark.Title" = "Lesezeichen"; "Scene.Compose.Accessibility.AppendAttachment" = "Anhang hinzufügen"; "Scene.Compose.Accessibility.AppendPoll" = "Umfrage hinzufügen"; "Scene.Compose.Accessibility.CustomEmojiPicker" = "Benutzerdefinierter Emojiwähler"; @@ -161,9 +165,13 @@ Dein Profil sieht für diesen Benutzer auch so aus."; "Scene.Compose.Accessibility.RemovePoll" = "Umfrage entfernen"; "Scene.Compose.Attachment.AttachmentBroken" = "Dieses %@ scheint defekt zu sein und kann nicht auf Mastodon hochgeladen werden."; +"Scene.Compose.Attachment.AttachmentTooLarge" = "Anhang zu groß"; +"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Medienanhang wurde nicht erkannt"; "Scene.Compose.Attachment.DescriptionPhoto" = "Für Menschen mit Sehbehinderung beschreiben..."; "Scene.Compose.Attachment.DescriptionVideo" = "Für Menschen mit Sehbehinderung beschreiben..."; +"Scene.Compose.Attachment.LoadFailed" = "Laden fehlgeschlagen"; "Scene.Compose.Attachment.Photo" = "Foto"; +"Scene.Compose.Attachment.UploadFailed" = "Upload fehlgeschlagen"; "Scene.Compose.Attachment.Video" = "Video"; "Scene.Compose.AutoComplete.SpaceToAdd" = "Leerzeichen um hinzuzufügen"; "Scene.Compose.ComposeAction" = "Veröffentlichen"; @@ -215,9 +223,9 @@ kann nicht auf Mastodon hochgeladen werden."; "Scene.Familiarfollowers.Title" = "Follower, die dir bekannt vorkommen"; "Scene.Favorite.Title" = "Deine Favoriten"; "Scene.FavoritedBy.Title" = "Favorisiert von"; -"Scene.Follower.Footer" = "Follower von anderen Servern werden nicht angezeigt."; +"Scene.Follower.Footer" = "Folger, die nicht auf deinem Server registriert sind, werden nicht angezeigt."; "Scene.Follower.Title" = "Follower"; -"Scene.Following.Footer" = "Wem das Konto folgt wird von anderen Servern werden nicht angezeigt."; +"Scene.Following.Footer" = "Gefolgte, die nicht auf deinem Server registriert sind, werden nicht angezeigt."; "Scene.Following.Title" = "Folgende"; "Scene.HomeTimeline.NavigationBarState.Accessibility.LogoHint" = "Zum Scrollen nach oben tippen und zum vorherigen Ort erneut tippen"; "Scene.HomeTimeline.NavigationBarState.Accessibility.LogoLabel" = "Logo-Button"; @@ -247,7 +255,7 @@ kann nicht auf Mastodon hochgeladen werden."; "Scene.Profile.Accessibility.EditAvatarImage" = "Profilbild bearbeiten"; "Scene.Profile.Accessibility.ShowAvatarImage" = "Profilbild anzeigen"; "Scene.Profile.Accessibility.ShowBannerImage" = "Bannerbild anzeigen"; -"Scene.Profile.Dashboard.Followers" = "Folger"; +"Scene.Profile.Dashboard.Followers" = "Folgende"; "Scene.Profile.Dashboard.Following" = "Gefolgte"; "Scene.Profile.Dashboard.Posts" = "Beiträge"; "Scene.Profile.Fields.AddRow" = "Zeile hinzufügen"; @@ -260,7 +268,7 @@ kann nicht auf Mastodon hochgeladen werden."; "Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Title" = "Reblogs ausblenden"; "Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Message" = "Bestätige %@ stumm zu schalten"; "Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Konto stummschalten"; -"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Confirm to show reblogs"; +"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Bestätigen um Reblogs anzuzeigen"; "Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "Reblogs anzeigen"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Bestätige %@ zu entsperren"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Konto entsperren"; @@ -422,7 +430,7 @@ beliebigen Server."; "Scene.Settings.Section.Notifications.Title" = "Benachrichtigungen"; "Scene.Settings.Section.Notifications.Trigger.Anyone" = "jeder"; "Scene.Settings.Section.Notifications.Trigger.Follow" = "ein von mir Gefolgter"; -"Scene.Settings.Section.Notifications.Trigger.Follower" = "ein Folger"; +"Scene.Settings.Section.Notifications.Trigger.Follower" = "ein Folgender"; "Scene.Settings.Section.Notifications.Trigger.Noone" = "niemand"; "Scene.Settings.Section.Notifications.Trigger.Title" = "Benachrichtige mich, wenn"; "Scene.Settings.Section.Preference.DisableAvatarAnimation" = "Animierte Profilbilder deaktivieren"; diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/de.lproj/Localizable.stringsdict b/MastodonSDK/Sources/MastodonLocalization/Resources/de.lproj/Localizable.stringsdict index c6a8a4297..f60c6b0d7 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/de.lproj/Localizable.stringsdict +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/de.lproj/Localizable.stringsdict @@ -248,9 +248,9 @@ NSStringFormatValueTypeKey ld one - 1 Follower + 1 Folgender other - %ld Follower + %ld Folgende date.year.left diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/en.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/en.lproj/Localizable.strings index 9114b96e5..a5acb78d7 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/en.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/en.lproj/Localizable.strings @@ -109,7 +109,7 @@ Please check your internet connection."; "Common.Controls.Status.ContentWarning" = "Content Warning"; "Common.Controls.Status.MediaContentWarning" = "Tap anywhere to reveal"; "Common.Controls.Status.MetaEntity.Email" = "Email address: %@"; -"Common.Controls.Status.MetaEntity.Hashtag" = "Hastag %@"; +"Common.Controls.Status.MetaEntity.Hashtag" = "Hashtag: %@"; "Common.Controls.Status.MetaEntity.Mention" = "Show Profile: %@"; "Common.Controls.Status.MetaEntity.Url" = "Link: %@"; "Common.Controls.Status.Poll.Closed" = "Closed"; @@ -165,9 +165,13 @@ Your profile looks like this to them."; "Scene.Compose.Accessibility.RemovePoll" = "Remove Poll"; "Scene.Compose.Attachment.AttachmentBroken" = "This %@ is broken and can’t be uploaded to Mastodon."; +"Scene.Compose.Attachment.AttachmentTooLarge" = "Attachment too large"; +"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Can not regonize this media attachment"; "Scene.Compose.Attachment.DescriptionPhoto" = "Describe the photo for the visually-impaired..."; "Scene.Compose.Attachment.DescriptionVideo" = "Describe the video for the visually-impaired..."; +"Scene.Compose.Attachment.LoadFailed" = "Load Failed"; "Scene.Compose.Attachment.Photo" = "photo"; +"Scene.Compose.Attachment.UploadFailed" = "Upload Failed"; "Scene.Compose.Attachment.Video" = "video"; "Scene.Compose.AutoComplete.SpaceToAdd" = "Space to add"; "Scene.Compose.ComposeAction" = "Publish"; diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/es.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/es.lproj/Localizable.strings index 47ed11bb9..c16bec6cf 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/es.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/es.lproj/Localizable.strings @@ -108,6 +108,10 @@ Por favor, revise su conexión a internet."; "Common.Controls.Status.Actions.Unreblog" = "Deshacer reblogueo"; "Common.Controls.Status.ContentWarning" = "Advertencia de Contenido"; "Common.Controls.Status.MediaContentWarning" = "Pulsa en cualquier sitio para mostrar"; +"Common.Controls.Status.MetaEntity.Email" = "Email address: %@"; +"Common.Controls.Status.MetaEntity.Hashtag" = "Hashtag: %@"; +"Common.Controls.Status.MetaEntity.Mention" = "Show Profile: %@"; +"Common.Controls.Status.MetaEntity.Url" = "Link: %@"; "Common.Controls.Status.Poll.Closed" = "Cerrado"; "Common.Controls.Status.Poll.Vote" = "Vota"; "Common.Controls.Status.SensitiveContent" = "Contenido sensible"; @@ -161,9 +165,13 @@ Tu perfil se ve así para él."; "Scene.Compose.Accessibility.RemovePoll" = "Eliminar Encuesta"; "Scene.Compose.Attachment.AttachmentBroken" = "Este %@ está roto y no puede subirse a Mastodon."; +"Scene.Compose.Attachment.AttachmentTooLarge" = "Attachment too large"; +"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Can not regonize this media attachment"; "Scene.Compose.Attachment.DescriptionPhoto" = "Describe la foto para los usuarios con dificultad visual..."; "Scene.Compose.Attachment.DescriptionVideo" = "Describe el vídeo para los usuarios con dificultad visual..."; +"Scene.Compose.Attachment.LoadFailed" = "Load Failed"; "Scene.Compose.Attachment.Photo" = "foto"; +"Scene.Compose.Attachment.UploadFailed" = "Upload Failed"; "Scene.Compose.Attachment.Video" = "vídeo"; "Scene.Compose.AutoComplete.SpaceToAdd" = "Espacio para añadir"; "Scene.Compose.ComposeAction" = "Publicar"; diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/eu.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/eu.lproj/Localizable.strings index e2be3068d..aef7a7507 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/eu.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/eu.lproj/Localizable.strings @@ -108,6 +108,10 @@ Egiaztatu Interneteko konexioa."; "Common.Controls.Status.Actions.Unreblog" = "Desegin bultzada"; "Common.Controls.Status.ContentWarning" = "Edukiaren abisua"; "Common.Controls.Status.MediaContentWarning" = "Ukitu edonon bistaratzeko"; +"Common.Controls.Status.MetaEntity.Email" = "Email address: %@"; +"Common.Controls.Status.MetaEntity.Hashtag" = "Hashtag: %@"; +"Common.Controls.Status.MetaEntity.Mention" = "Show Profile: %@"; +"Common.Controls.Status.MetaEntity.Url" = "Link: %@"; "Common.Controls.Status.Poll.Closed" = "Itxita"; "Common.Controls.Status.Poll.Vote" = "Bozkatu"; "Common.Controls.Status.SensitiveContent" = "Sensitive Content"; @@ -161,9 +165,13 @@ Zure profilak itxura hau du berarentzat."; "Scene.Compose.Accessibility.RemovePoll" = "Kendu inkesta"; "Scene.Compose.Attachment.AttachmentBroken" = "%@ hondatuta dago eta ezin da Mastodonera igo."; +"Scene.Compose.Attachment.AttachmentTooLarge" = "Attachment too large"; +"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Can not regonize this media attachment"; "Scene.Compose.Attachment.DescriptionPhoto" = "Deskribatu argazkia ikusmen arazoak dituztenentzat..."; "Scene.Compose.Attachment.DescriptionVideo" = "Deskribatu bideoa ikusmen arazoak dituztenentzat..."; +"Scene.Compose.Attachment.LoadFailed" = "Load Failed"; "Scene.Compose.Attachment.Photo" = "argazkia"; +"Scene.Compose.Attachment.UploadFailed" = "Upload Failed"; "Scene.Compose.Attachment.Video" = "bideoa"; "Scene.Compose.AutoComplete.SpaceToAdd" = "Sakatu zuriunea gehitzeko"; "Scene.Compose.ComposeAction" = "Argitaratu"; diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/fi.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/fi.lproj/Localizable.strings index fbf48fa83..11259ace5 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/fi.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/fi.lproj/Localizable.strings @@ -108,6 +108,10 @@ Tarkista internet-yhteytesi."; "Common.Controls.Status.Actions.Unreblog" = "Peru edelleen jako"; "Common.Controls.Status.ContentWarning" = "Sisältövaroitus"; "Common.Controls.Status.MediaContentWarning" = "Napauta mistä tahansa paljastaaksesi"; +"Common.Controls.Status.MetaEntity.Email" = "Email address: %@"; +"Common.Controls.Status.MetaEntity.Hashtag" = "Hashtag: %@"; +"Common.Controls.Status.MetaEntity.Mention" = "Show Profile: %@"; +"Common.Controls.Status.MetaEntity.Url" = "Link: %@"; "Common.Controls.Status.Poll.Closed" = "Suljettu"; "Common.Controls.Status.Poll.Vote" = "Vote"; "Common.Controls.Status.SensitiveContent" = "Sensitive Content"; @@ -161,9 +165,13 @@ Profiilisi näyttää tältä hänelle."; "Scene.Compose.Accessibility.RemovePoll" = "Poista kysely"; "Scene.Compose.Attachment.AttachmentBroken" = "This %@ is broken and can’t be uploaded to Mastodon."; +"Scene.Compose.Attachment.AttachmentTooLarge" = "Attachment too large"; +"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Can not regonize this media attachment"; "Scene.Compose.Attachment.DescriptionPhoto" = "Kuvaile kuva näkövammaisille..."; "Scene.Compose.Attachment.DescriptionVideo" = "Kuvaile video näkövammaisille..."; +"Scene.Compose.Attachment.LoadFailed" = "Load Failed"; "Scene.Compose.Attachment.Photo" = "kuva"; +"Scene.Compose.Attachment.UploadFailed" = "Upload Failed"; "Scene.Compose.Attachment.Video" = "video"; "Scene.Compose.AutoComplete.SpaceToAdd" = "Space to add"; "Scene.Compose.ComposeAction" = "Julkaise"; diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/fr.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/fr.lproj/Localizable.strings index 03efc3549..931219c21 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/fr.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/fr.lproj/Localizable.strings @@ -108,6 +108,10 @@ Veuillez vérifier votre accès à Internet."; "Common.Controls.Status.Actions.Unreblog" = "Annuler le reblog"; "Common.Controls.Status.ContentWarning" = "Avertissement de contenu"; "Common.Controls.Status.MediaContentWarning" = "Tapotez n’importe où pour révéler la publication"; +"Common.Controls.Status.MetaEntity.Email" = "Adresse e-mail : %@"; +"Common.Controls.Status.MetaEntity.Hashtag" = "Hashtag : %@"; +"Common.Controls.Status.MetaEntity.Mention" = "Afficher le profile : %@"; +"Common.Controls.Status.MetaEntity.Url" = "Lien : %@"; "Common.Controls.Status.Poll.Closed" = "Fermé"; "Common.Controls.Status.Poll.Vote" = "Voter"; "Common.Controls.Status.SensitiveContent" = "Contenu sensible"; @@ -151,7 +155,7 @@ Votre profil ressemble à ça pour lui."; "Scene.AccountList.AddAccount" = "Ajouter un compte"; "Scene.AccountList.DismissAccountSwitcher" = "Rejeter le commutateur de compte"; "Scene.AccountList.TabBarHint" = "Profil sélectionné actuel: %@. Double appui puis maintenez enfoncé pour afficher le changement de compte"; -"Scene.Bookmark.Title" = "Bookmarks"; +"Scene.Bookmark.Title" = "Favoris"; "Scene.Compose.Accessibility.AppendAttachment" = "Joindre un document"; "Scene.Compose.Accessibility.AppendPoll" = "Ajouter un Sondage"; "Scene.Compose.Accessibility.CustomEmojiPicker" = "Sélecteur d’émojis personnalisés"; @@ -161,9 +165,13 @@ Votre profil ressemble à ça pour lui."; "Scene.Compose.Accessibility.RemovePoll" = "Retirer le sondage"; "Scene.Compose.Attachment.AttachmentBroken" = "Ce %@ est brisé et ne peut pas être téléversé sur Mastodon."; +"Scene.Compose.Attachment.AttachmentTooLarge" = "Attachment too large"; +"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Can not regonize this media attachment"; "Scene.Compose.Attachment.DescriptionPhoto" = "Décrire cette photo pour les personnes malvoyantes..."; "Scene.Compose.Attachment.DescriptionVideo" = "Décrire cette vidéo pour les personnes malvoyantes..."; +"Scene.Compose.Attachment.LoadFailed" = "Load Failed"; "Scene.Compose.Attachment.Photo" = "photo"; +"Scene.Compose.Attachment.UploadFailed" = "Upload Failed"; "Scene.Compose.Attachment.Video" = "vidéo"; "Scene.Compose.AutoComplete.SpaceToAdd" = "Espace à ajouter"; "Scene.Compose.ComposeAction" = "Publier"; diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/gd.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/gd.lproj/Localizable.strings index 2d1964d81..ce1764eac 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/gd.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/gd.lproj/Localizable.strings @@ -108,6 +108,10 @@ Thoir sùil air a’ cheangal agad ris an eadar-lìon."; "Common.Controls.Status.Actions.Unreblog" = "Na brosnaich tuilleadh"; "Common.Controls.Status.ContentWarning" = "Rabhadh susbainte"; "Common.Controls.Status.MediaContentWarning" = "Thoir gnogag àite sam bith gus a nochdadh"; +"Common.Controls.Status.MetaEntity.Email" = "Email address: %@"; +"Common.Controls.Status.MetaEntity.Hashtag" = "Hashtag: %@"; +"Common.Controls.Status.MetaEntity.Mention" = "Show Profile: %@"; +"Common.Controls.Status.MetaEntity.Url" = "Link: %@"; "Common.Controls.Status.Poll.Closed" = "Dùinte"; "Common.Controls.Status.Poll.Vote" = "Cuir bhòt"; "Common.Controls.Status.SensitiveContent" = "Susbaint fhrionasach"; @@ -161,9 +165,13 @@ Seo an coltas a th’ air a’ phròifil agad dhaibh-san."; "Scene.Compose.Accessibility.RemovePoll" = "Thoir air falbh an cunntas-bheachd"; "Scene.Compose.Attachment.AttachmentBroken" = "Seo %@ a tha briste is cha ghabh a luchdadh suas gu Mastodon."; +"Scene.Compose.Attachment.AttachmentTooLarge" = "Attachment too large"; +"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Can not regonize this media attachment"; "Scene.Compose.Attachment.DescriptionPhoto" = "Mìnich an dealbh dhan fheadhainn air a bheil cion-lèirsinne…"; "Scene.Compose.Attachment.DescriptionVideo" = "Mìnich a’ video dhan fheadhainn air a bheil cion-lèirsinne…"; +"Scene.Compose.Attachment.LoadFailed" = "Load Failed"; "Scene.Compose.Attachment.Photo" = "dealbh"; +"Scene.Compose.Attachment.UploadFailed" = "Upload Failed"; "Scene.Compose.Attachment.Video" = "video"; "Scene.Compose.AutoComplete.SpaceToAdd" = "Brùth air Space gus a chur ris"; "Scene.Compose.ComposeAction" = "Foillsich"; diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/gl.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/gl.lproj/Localizable.strings index c76089221..3087f33c5 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/gl.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/gl.lproj/Localizable.strings @@ -68,13 +68,13 @@ Comproba a conexión a internet."; "Common.Controls.Friendship.EditInfo" = "Editar info"; "Common.Controls.Friendship.Follow" = "Seguir"; "Common.Controls.Friendship.Following" = "Seguindo"; -"Common.Controls.Friendship.HideReblogs" = "Hide Reblogs"; +"Common.Controls.Friendship.HideReblogs" = "Agochar Promocións"; "Common.Controls.Friendship.Mute" = "Acalar"; "Common.Controls.Friendship.MuteUser" = "Acalar a %@"; "Common.Controls.Friendship.Muted" = "Acalada"; "Common.Controls.Friendship.Pending" = "Pendente"; "Common.Controls.Friendship.Request" = "Solicitar"; -"Common.Controls.Friendship.ShowReblogs" = "Show Reblogs"; +"Common.Controls.Friendship.ShowReblogs" = "Mostrar Promocións"; "Common.Controls.Friendship.Unblock" = "Desbloquear"; "Common.Controls.Friendship.UnblockUser" = "Desbloquear a %@"; "Common.Controls.Friendship.Unmute" = "Non Acalar"; @@ -108,6 +108,10 @@ Comproba a conexión a internet."; "Common.Controls.Status.Actions.Unreblog" = "Retirar promoción"; "Common.Controls.Status.ContentWarning" = "Aviso sobre o contido"; "Common.Controls.Status.MediaContentWarning" = "Toca nalgures para mostrar"; +"Common.Controls.Status.MetaEntity.Email" = "Enderezo de email: %@"; +"Common.Controls.Status.MetaEntity.Hashtag" = "Cancelo: %@"; +"Common.Controls.Status.MetaEntity.Mention" = "Mostrar Perfil: %@"; +"Common.Controls.Status.MetaEntity.Url" = "Ligazón: %@"; "Common.Controls.Status.Poll.Closed" = "Pechada"; "Common.Controls.Status.Poll.Vote" = "Votar"; "Common.Controls.Status.SensitiveContent" = "Contido sensible"; @@ -151,7 +155,7 @@ Así se ve o teu perfil."; "Scene.AccountList.AddAccount" = "Engadir conta"; "Scene.AccountList.DismissAccountSwitcher" = "Desbotar intercambiador de contas"; "Scene.AccountList.TabBarHint" = "Perfil seleccionado: %@. Dobre toque e manter para mostrar o intercambiador de contas"; -"Scene.Bookmark.Title" = "Bookmarks"; +"Scene.Bookmark.Title" = "Marcadores"; "Scene.Compose.Accessibility.AppendAttachment" = "Engadir anexo"; "Scene.Compose.Accessibility.AppendPoll" = "Engadir enquisa"; "Scene.Compose.Accessibility.CustomEmojiPicker" = "Selector emoji personalizado"; @@ -161,9 +165,13 @@ Así se ve o teu perfil."; "Scene.Compose.Accessibility.RemovePoll" = "Eliminar enquisa"; "Scene.Compose.Attachment.AttachmentBroken" = "Este %@ está estragado e non pode ser subido a Mastodon."; +"Scene.Compose.Attachment.AttachmentTooLarge" = "Adxunto demasiado grande"; +"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Non se recoñece o tipo de multimedia"; "Scene.Compose.Attachment.DescriptionPhoto" = "Describe a foto para persoas con problemas visuais..."; "Scene.Compose.Attachment.DescriptionVideo" = "Describe o vídeo para persoas con problemas visuais..."; +"Scene.Compose.Attachment.LoadFailed" = "Fallou a carga"; "Scene.Compose.Attachment.Photo" = "foto"; +"Scene.Compose.Attachment.UploadFailed" = "Erro na subida"; "Scene.Compose.Attachment.Video" = "vídeo"; "Scene.Compose.AutoComplete.SpaceToAdd" = "Barra de espazo engade"; "Scene.Compose.ComposeAction" = "Publicar"; @@ -256,12 +264,12 @@ ser subido a Mastodon."; "Scene.Profile.Header.FollowsYou" = "Séguete"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Confirma o bloqueo de %@"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Bloquear Conta"; -"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "Confirm to hide reblogs"; -"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Title" = "Hide Reblogs"; +"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "Confirma para agochar promocións"; +"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Title" = "Agochar Promocións"; "Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Message" = "Confirma Acalar a %@"; "Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Acalar conta"; -"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Confirm to show reblogs"; -"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "Show Reblogs"; +"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Confirma para ver promocións"; +"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "Mostrar Promocións"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Confirma o desbloqueo de %@"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Desbloquear Conta"; "Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Confirma restablecer a %@"; diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/it.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/it.lproj/Localizable.strings index c83cb7458..8f99028ed 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/it.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/it.lproj/Localizable.strings @@ -108,6 +108,10 @@ Per favore verifica la tua connessione internet."; "Common.Controls.Status.Actions.Unreblog" = "Annulla condivisione"; "Common.Controls.Status.ContentWarning" = "Avviso sul contenuto"; "Common.Controls.Status.MediaContentWarning" = "Tocca ovunque per rivelare"; +"Common.Controls.Status.MetaEntity.Email" = "Indirizzo email: %@"; +"Common.Controls.Status.MetaEntity.Hashtag" = "Hashtag: %@"; +"Common.Controls.Status.MetaEntity.Mention" = "Mostra il profilo: %@"; +"Common.Controls.Status.MetaEntity.Url" = "Collegamento: %@"; "Common.Controls.Status.Poll.Closed" = "Chiuso"; "Common.Controls.Status.Poll.Vote" = "Vota"; "Common.Controls.Status.SensitiveContent" = "Contenuto sensibile"; @@ -151,7 +155,7 @@ Il tuo profilo sembra questo per loro."; "Scene.AccountList.AddAccount" = "Aggiungi account"; "Scene.AccountList.DismissAccountSwitcher" = "Ignora il cambio account"; "Scene.AccountList.TabBarHint" = "Profilo corrente selezionato: %@. Doppio tocco e tieni premuto per mostrare il cambio account"; -"Scene.Bookmark.Title" = "Bookmarks"; +"Scene.Bookmark.Title" = "Segnalibri"; "Scene.Compose.Accessibility.AppendAttachment" = "Aggiungi allegato"; "Scene.Compose.Accessibility.AppendPoll" = "Aggiungi sondaggio"; "Scene.Compose.Accessibility.CustomEmojiPicker" = "Selettore Emoji personalizzato"; @@ -161,9 +165,13 @@ Il tuo profilo sembra questo per loro."; "Scene.Compose.Accessibility.RemovePoll" = "Elimina sondaggio"; "Scene.Compose.Attachment.AttachmentBroken" = "Questo %@ è rotto e non può essere caricato su Mastodon."; +"Scene.Compose.Attachment.AttachmentTooLarge" = "Allegato troppo grande"; +"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Impossibile riconoscere questo allegato multimediale"; "Scene.Compose.Attachment.DescriptionPhoto" = "Descrivi la foto per gli utenti ipovedenti..."; "Scene.Compose.Attachment.DescriptionVideo" = "Descrivi il filmato per gli utenti ipovedenti..."; +"Scene.Compose.Attachment.LoadFailed" = "Caricamento fallito"; "Scene.Compose.Attachment.Photo" = "foto"; +"Scene.Compose.Attachment.UploadFailed" = "Caricamento fallito"; "Scene.Compose.Attachment.Video" = "filmato"; "Scene.Compose.AutoComplete.SpaceToAdd" = "Spazio da aggiungere"; "Scene.Compose.ComposeAction" = "Pubblica"; diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/ja.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/ja.lproj/Localizable.strings index 080624f06..cad44f531 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/ja.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/ja.lproj/Localizable.strings @@ -108,6 +108,10 @@ "Common.Controls.Status.Actions.Unreblog" = "ブーストを戻す"; "Common.Controls.Status.ContentWarning" = "コンテンツ警告"; "Common.Controls.Status.MediaContentWarning" = "どこかをタップして表示"; +"Common.Controls.Status.MetaEntity.Email" = "Email address: %@"; +"Common.Controls.Status.MetaEntity.Hashtag" = "Hashtag: %@"; +"Common.Controls.Status.MetaEntity.Mention" = "Show Profile: %@"; +"Common.Controls.Status.MetaEntity.Url" = "Link: %@"; "Common.Controls.Status.Poll.Closed" = "終了"; "Common.Controls.Status.Poll.Vote" = "投票"; "Common.Controls.Status.SensitiveContent" = "閲覧注意"; @@ -156,9 +160,13 @@ "Scene.Compose.Accessibility.PostVisibilityMenu" = "投稿の表示メニュー"; "Scene.Compose.Accessibility.RemovePoll" = "投票を消去"; "Scene.Compose.Attachment.AttachmentBroken" = "%@は壊れていてMastodonにアップロードできません。"; +"Scene.Compose.Attachment.AttachmentTooLarge" = "Attachment too large"; +"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Can not regonize this media attachment"; "Scene.Compose.Attachment.DescriptionPhoto" = "閲覧が難しいユーザーへの画像説明"; "Scene.Compose.Attachment.DescriptionVideo" = "閲覧が難しいユーザーへの映像説明"; +"Scene.Compose.Attachment.LoadFailed" = "Load Failed"; "Scene.Compose.Attachment.Photo" = "写真"; +"Scene.Compose.Attachment.UploadFailed" = "Upload Failed"; "Scene.Compose.Attachment.Video" = "動画"; "Scene.Compose.AutoComplete.SpaceToAdd" = "スペースを追加"; "Scene.Compose.ComposeAction" = "投稿"; diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/kab.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/kab.lproj/Localizable.strings index 1339af4cf..03108a25a 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/kab.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/kab.lproj/Localizable.strings @@ -108,6 +108,10 @@ Ma ulac aɣilif, senqed tuqqna-inek internet."; "Common.Controls.Status.Actions.Unreblog" = "Sefsex allus n usuffeɣ"; "Common.Controls.Status.ContentWarning" = "Alɣu n ugbur"; "Common.Controls.Status.MediaContentWarning" = "Sit anida tebɣiḍ i wakken ad twaliḍ"; +"Common.Controls.Status.MetaEntity.Email" = "Email address: %@"; +"Common.Controls.Status.MetaEntity.Hashtag" = "Hashtag: %@"; +"Common.Controls.Status.MetaEntity.Mention" = "Show Profile: %@"; +"Common.Controls.Status.MetaEntity.Url" = "Link: %@"; "Common.Controls.Status.Poll.Closed" = "Ifukk"; "Common.Controls.Status.Poll.Vote" = "Dɣeṛ"; "Common.Controls.Status.SensitiveContent" = "Agbur amḥulfu"; @@ -161,9 +165,13 @@ Akka i as-d-yettban umaɣnu-inek."; "Scene.Compose.Accessibility.RemovePoll" = "Kkes asenqed"; "Scene.Compose.Attachment.AttachmentBroken" = "%@-a yerreẓ, ur yezmir ara Ad d-yettwasali ɣef Mastodon."; +"Scene.Compose.Attachment.AttachmentTooLarge" = "Attachment too large"; +"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Can not regonize this media attachment"; "Scene.Compose.Attachment.DescriptionPhoto" = "Glem-d tawlaft i wid yesɛan ugur deg yiẓri..."; "Scene.Compose.Attachment.DescriptionVideo" = "Glem-d tavidyut i wid yesɛan ugur deg yiẓri..."; +"Scene.Compose.Attachment.LoadFailed" = "Load Failed"; "Scene.Compose.Attachment.Photo" = "tawlaft"; +"Scene.Compose.Attachment.UploadFailed" = "Upload Failed"; "Scene.Compose.Attachment.Video" = "tavidyutt"; "Scene.Compose.AutoComplete.SpaceToAdd" = "Tallunt ara yettwarnun"; "Scene.Compose.ComposeAction" = "Sufeɣ"; diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/ku.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/ku.lproj/Localizable.strings index a72543a3e..10d88488a 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/ku.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/ku.lproj/Localizable.strings @@ -68,13 +68,13 @@ Jkx girêdana înternetê xwe kontrol bike."; "Common.Controls.Friendship.EditInfo" = "Zanyariyan serrast bike"; "Common.Controls.Friendship.Follow" = "Bişopîne"; "Common.Controls.Friendship.Following" = "Dişopîne"; -"Common.Controls.Friendship.HideReblogs" = "Hide Reblogs"; +"Common.Controls.Friendship.HideReblogs" = "Bilindkirinan veşêre"; "Common.Controls.Friendship.Mute" = "Bêdeng bike"; "Common.Controls.Friendship.MuteUser" = "%@ bêdeng bike"; "Common.Controls.Friendship.Muted" = "Bêdengkirî"; "Common.Controls.Friendship.Pending" = "Tê nirxandin"; "Common.Controls.Friendship.Request" = "Daxwaz bike"; -"Common.Controls.Friendship.ShowReblogs" = "Show Reblogs"; +"Common.Controls.Friendship.ShowReblogs" = "Bilindkirinan nîşan bide"; "Common.Controls.Friendship.Unblock" = "Astengiyê rake"; "Common.Controls.Friendship.UnblockUser" = "%@ asteng neke"; "Common.Controls.Friendship.Unmute" = "Bêdeng neke"; @@ -108,6 +108,10 @@ Jkx girêdana înternetê xwe kontrol bike."; "Common.Controls.Status.Actions.Unreblog" = "Ji nû ve nivîsandinê vegere"; "Common.Controls.Status.ContentWarning" = "Hişyariya naverokê"; "Common.Controls.Status.MediaContentWarning" = "Ji bo eşkerekirinê li derekî bitikîne"; +"Common.Controls.Status.MetaEntity.Email" = "Navnîşanên e-nameyê: %@"; +"Common.Controls.Status.MetaEntity.Hashtag" = "Hashtagê: %@"; +"Common.Controls.Status.MetaEntity.Mention" = "Profîlê nîşan bide: %@"; +"Common.Controls.Status.MetaEntity.Url" = "Girêdan: %@"; "Common.Controls.Status.Poll.Closed" = "Girtî"; "Common.Controls.Status.Poll.Vote" = "Deng bide"; "Common.Controls.Status.SensitiveContent" = "Naveroka hestiyarî"; @@ -151,7 +155,7 @@ Profîla te ji wan ra wiha xuya dike."; "Scene.AccountList.AddAccount" = "Ajimêr tevlî bike"; "Scene.AccountList.DismissAccountSwitcher" = "Guherkera ajimêrê paş guh bike"; "Scene.AccountList.TabBarHint" = "Profîla hilbijartî ya niha: %@. Du caran bitikîne û paşê dest bide ser da ku guhêrbara ajimêr were nîşandan"; -"Scene.Bookmark.Title" = "Bookmarks"; +"Scene.Bookmark.Title" = "Şûnpel"; "Scene.Compose.Accessibility.AppendAttachment" = "Pêvek tevlî bike"; "Scene.Compose.Accessibility.AppendPoll" = "Rapirsî tevlî bike"; "Scene.Compose.Accessibility.CustomEmojiPicker" = "Hilbijêrê emojî yên kesanekirî"; @@ -161,9 +165,13 @@ Profîla te ji wan ra wiha xuya dike."; "Scene.Compose.Accessibility.RemovePoll" = "Rapirsî rake"; "Scene.Compose.Attachment.AttachmentBroken" = "Ev %@ naxebite û nayê barkirin li ser Mastodon."; +"Scene.Compose.Attachment.AttachmentTooLarge" = "Pêvek pir mezin e"; +"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Nikare ev pêveka medyayê nas bike"; "Scene.Compose.Attachment.DescriptionPhoto" = "Wêneyê ji bo kêmbînên dîtbar bide nasîn..."; "Scene.Compose.Attachment.DescriptionVideo" = "Vîdyoyê ji bo kêmbînên dîtbar bide nasîn..."; +"Scene.Compose.Attachment.LoadFailed" = "Barkirin têk çû"; "Scene.Compose.Attachment.Photo" = "wêne"; +"Scene.Compose.Attachment.UploadFailed" = "Barkirin têk çû"; "Scene.Compose.Attachment.Video" = "vîdyo"; "Scene.Compose.AutoComplete.SpaceToAdd" = "Bicîhkirinê tevlî bike"; "Scene.Compose.ComposeAction" = "Biweşîne"; @@ -257,12 +265,12 @@ girêdanê bitikne da ku ajimêra xwe bidî piştrastkirin."; "Scene.Profile.Header.FollowsYou" = "Te dişopîne"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Ji bo rakirina astengkirinê %@ bipejirîne"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Ajimêr asteng bike"; -"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "Confirm to hide reblogs"; -"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Title" = "Hide Reblogs"; +"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "Bo veşartina bilindkirinan bipejirîne"; +"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Title" = "Bilindkirinan veşêre"; "Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Message" = "Ji bo bêdengkirina %@ bipejirîne"; "Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Ajimêrê bêdeng bike"; -"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Confirm to show reblogs"; -"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "Show Reblogs"; +"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Bo nîşandana bilindkirinan bipejirîne"; +"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "Bilindkirinan nîşan bide"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Ji bo rakirina astengkirinê %@ bipejirîne"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Astengiyê li ser ajimêr rake"; "Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Ji bo vekirina bêdengkirinê %@ bipejirîne"; diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/nl.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/nl.lproj/Localizable.strings index 3bcc33bf5..e719583aa 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/nl.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/nl.lproj/Localizable.strings @@ -107,6 +107,10 @@ "Common.Controls.Status.Actions.Unreblog" = "Delen ongedaan maken"; "Common.Controls.Status.ContentWarning" = "Inhoudswaarschuwing"; "Common.Controls.Status.MediaContentWarning" = "Tap hier om te tonen"; +"Common.Controls.Status.MetaEntity.Email" = "Email address: %@"; +"Common.Controls.Status.MetaEntity.Hashtag" = "Hashtag: %@"; +"Common.Controls.Status.MetaEntity.Mention" = "Show Profile: %@"; +"Common.Controls.Status.MetaEntity.Url" = "Link: %@"; "Common.Controls.Status.Poll.Closed" = "Gesloten"; "Common.Controls.Status.Poll.Vote" = "Stemmen"; "Common.Controls.Status.SensitiveContent" = "Gevoelige inhoud"; @@ -155,9 +159,13 @@ Uw profiel ziet er zo uit voor hen."; "Scene.Compose.Accessibility.PostVisibilityMenu" = "Berichtzichtbaarheidsmenu"; "Scene.Compose.Accessibility.RemovePoll" = "Peiling verwijderen"; "Scene.Compose.Attachment.AttachmentBroken" = "Deze %@ is corrupt en kan niet geüpload worden naar Mastodon."; +"Scene.Compose.Attachment.AttachmentTooLarge" = "Attachment too large"; +"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Can not regonize this media attachment"; "Scene.Compose.Attachment.DescriptionPhoto" = "Omschrijf de foto voor mensen met een visuele beperking..."; "Scene.Compose.Attachment.DescriptionVideo" = "Omschrijf de video voor mensen met een visuele beperking..."; +"Scene.Compose.Attachment.LoadFailed" = "Load Failed"; "Scene.Compose.Attachment.Photo" = "foto"; +"Scene.Compose.Attachment.UploadFailed" = "Upload Failed"; "Scene.Compose.Attachment.Video" = "video"; "Scene.Compose.AutoComplete.SpaceToAdd" = "Spaties toe te voegen"; "Scene.Compose.ComposeAction" = "Publiceren"; diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/ru.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/ru.lproj/Localizable.strings index 0513a955b..65d4fa65e 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/ru.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/ru.lproj/Localizable.strings @@ -108,6 +108,10 @@ "Common.Controls.Status.Actions.Unreblog" = "Убрать продвижение"; "Common.Controls.Status.ContentWarning" = "Предупреждение о содержании"; "Common.Controls.Status.MediaContentWarning" = "Нажмите в любом месте, чтобы показать"; +"Common.Controls.Status.MetaEntity.Email" = "Email address: %@"; +"Common.Controls.Status.MetaEntity.Hashtag" = "Hashtag: %@"; +"Common.Controls.Status.MetaEntity.Mention" = "Show Profile: %@"; +"Common.Controls.Status.MetaEntity.Url" = "Link: %@"; "Common.Controls.Status.Poll.Closed" = "Завершён"; "Common.Controls.Status.Poll.Vote" = "Проголосовать"; "Common.Controls.Status.SensitiveContent" = "Sensitive Content"; @@ -169,9 +173,13 @@ "Scene.Compose.Accessibility.RemovePoll" = "Убрать опрос"; "Scene.Compose.Attachment.AttachmentBroken" = "Это %@ повреждено и не может быть отправлено в Mastodon."; +"Scene.Compose.Attachment.AttachmentTooLarge" = "Attachment too large"; +"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Can not regonize this media attachment"; "Scene.Compose.Attachment.DescriptionPhoto" = "Опишите фото для людей с нарушениями зрения..."; "Scene.Compose.Attachment.DescriptionVideo" = "Опишите видео для людей с нарушениями зрения..."; +"Scene.Compose.Attachment.LoadFailed" = "Load Failed"; "Scene.Compose.Attachment.Photo" = "изображение"; +"Scene.Compose.Attachment.UploadFailed" = "Upload Failed"; "Scene.Compose.Attachment.Video" = "видео"; "Scene.Compose.AutoComplete.SpaceToAdd" = "Пробел, чтобы добавить"; "Scene.Compose.ComposeAction" = "Опубликовать"; diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/sv.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/sv.lproj/Localizable.strings index 849d88284..dbba5ddda 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/sv.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/sv.lproj/Localizable.strings @@ -68,13 +68,13 @@ Kontrollera din internetanslutning."; "Common.Controls.Friendship.EditInfo" = "Redigera info"; "Common.Controls.Friendship.Follow" = "Följ"; "Common.Controls.Friendship.Following" = "Följer"; -"Common.Controls.Friendship.HideReblogs" = "Dölj puffar"; +"Common.Controls.Friendship.HideReblogs" = "Dölj boostar"; "Common.Controls.Friendship.Mute" = "Tysta"; "Common.Controls.Friendship.MuteUser" = "Tysta %@"; "Common.Controls.Friendship.Muted" = "Tystad"; "Common.Controls.Friendship.Pending" = "Väntande"; "Common.Controls.Friendship.Request" = "Följ"; -"Common.Controls.Friendship.ShowReblogs" = "Visa knuffar"; +"Common.Controls.Friendship.ShowReblogs" = "Visa boostar"; "Common.Controls.Friendship.Unblock" = "Avblockera"; "Common.Controls.Friendship.UnblockUser" = "Avblockera %@"; "Common.Controls.Friendship.Unmute" = "Avtysta"; @@ -87,27 +87,31 @@ Kontrollera din internetanslutning."; "Common.Controls.Keyboard.SegmentedControl.PreviousSection" = "Föregående avsnitt"; "Common.Controls.Keyboard.Timeline.NextStatus" = "Nästa inlägg"; "Common.Controls.Keyboard.Timeline.OpenAuthorProfile" = "Öppna författarens profil"; -"Common.Controls.Keyboard.Timeline.OpenRebloggerProfile" = "Öppna ompostarens profil"; +"Common.Controls.Keyboard.Timeline.OpenRebloggerProfile" = "Öppna boostarens profil"; "Common.Controls.Keyboard.Timeline.OpenStatus" = "Öppna inlägg"; "Common.Controls.Keyboard.Timeline.PreviewImage" = "Förhandsgranska bild"; "Common.Controls.Keyboard.Timeline.PreviousStatus" = "Föregående inlägg"; "Common.Controls.Keyboard.Timeline.ReplyStatus" = "Svara på inlägg"; "Common.Controls.Keyboard.Timeline.ToggleContentWarning" = "Växla innehållsvarning"; "Common.Controls.Keyboard.Timeline.ToggleFavorite" = "Växla favorit på inlägg"; -"Common.Controls.Keyboard.Timeline.ToggleReblog" = "Växla puff på inlägg"; +"Common.Controls.Keyboard.Timeline.ToggleReblog" = "Växla boost på inlägg"; "Common.Controls.Status.Actions.Favorite" = "Favorit"; "Common.Controls.Status.Actions.Hide" = "Dölj"; "Common.Controls.Status.Actions.Menu" = "Meny"; -"Common.Controls.Status.Actions.Reblog" = "Puffa"; +"Common.Controls.Status.Actions.Reblog" = "Boosta"; "Common.Controls.Status.Actions.Reply" = "Svara"; "Common.Controls.Status.Actions.ShowGif" = "Visa GIF"; "Common.Controls.Status.Actions.ShowImage" = "Visa bild"; "Common.Controls.Status.Actions.ShowVideoPlayer" = "Visa videospelare"; "Common.Controls.Status.Actions.TapThenHoldToShowMenu" = "Tryck och håll ned för att visa menyn"; "Common.Controls.Status.Actions.Unfavorite" = "Ta bort favorit"; -"Common.Controls.Status.Actions.Unreblog" = "Ångra puff"; +"Common.Controls.Status.Actions.Unreblog" = "Ångra boost"; "Common.Controls.Status.ContentWarning" = "Innehållsvarning"; "Common.Controls.Status.MediaContentWarning" = "Tryck var som helst för att visa"; +"Common.Controls.Status.MetaEntity.Email" = "E-postadress: %@"; +"Common.Controls.Status.MetaEntity.Hashtag" = "Hashtag: %@"; +"Common.Controls.Status.MetaEntity.Mention" = "Visa profil: %@"; +"Common.Controls.Status.MetaEntity.Url" = "Länk: %@"; "Common.Controls.Status.Poll.Closed" = "Stängd"; "Common.Controls.Status.Poll.Vote" = "Rösta"; "Common.Controls.Status.SensitiveContent" = "Känsligt innehåll"; @@ -120,7 +124,7 @@ Kontrollera din internetanslutning."; "Common.Controls.Status.Tag.Mention" = "Omnämn"; "Common.Controls.Status.Tag.Url" = "URL"; "Common.Controls.Status.TapToReveal" = "Tryck för att visa"; -"Common.Controls.Status.UserReblogged" = "%@ puffade"; +"Common.Controls.Status.UserReblogged" = "%@ boostade"; "Common.Controls.Status.UserRepliedTo" = "Svarade på %@"; "Common.Controls.Status.Visibility.Direct" = "Endast omnämnda användare kan se detta inlägg."; "Common.Controls.Status.Visibility.Private" = "Endast deras följare kan se detta inlägg."; @@ -151,7 +155,7 @@ Din profil ser ut så här för dem."; "Scene.AccountList.AddAccount" = "Lägg till konto"; "Scene.AccountList.DismissAccountSwitcher" = "Stäng kontoväxlare"; "Scene.AccountList.TabBarHint" = "Nuvarande vald profil: %@. Dubbeltryck och håll för att visa kontoväxlare"; -"Scene.Bookmark.Title" = "Bookmarks"; +"Scene.Bookmark.Title" = "Bokmärken"; "Scene.Compose.Accessibility.AppendAttachment" = "Lägg till bilaga"; "Scene.Compose.Accessibility.AppendPoll" = "Lägg till omröstning"; "Scene.Compose.Accessibility.CustomEmojiPicker" = "Anpassad emoji-väljare"; @@ -161,9 +165,13 @@ Din profil ser ut så här för dem."; "Scene.Compose.Accessibility.RemovePoll" = "Ta bort omröstning"; "Scene.Compose.Attachment.AttachmentBroken" = "Denna %@ är trasig och kan inte laddas upp till Mastodon."; +"Scene.Compose.Attachment.AttachmentTooLarge" = "Bilagan är för stor"; +"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Känner inte igen mediebilagan"; "Scene.Compose.Attachment.DescriptionPhoto" = "Beskriv fotot för synskadade..."; "Scene.Compose.Attachment.DescriptionVideo" = "Beskriv videon för de synskadade..."; +"Scene.Compose.Attachment.LoadFailed" = "Det gick inte att läsa in"; "Scene.Compose.Attachment.Photo" = "foto"; +"Scene.Compose.Attachment.UploadFailed" = "Uppladdning misslyckades"; "Scene.Compose.Attachment.Video" = "video"; "Scene.Compose.AutoComplete.SpaceToAdd" = "Mellanslag för att lägga till"; "Scene.Compose.ComposeAction" = "Publicera"; @@ -236,7 +244,7 @@ laddas upp till Mastodon."; "Scene.Notification.NotificationDescription.FollowedYou" = "följde dig"; "Scene.Notification.NotificationDescription.MentionedYou" = "nämnde dig"; "Scene.Notification.NotificationDescription.PollHasEnded" = "omröstningen har avslutats"; -"Scene.Notification.NotificationDescription.RebloggedYourPost" = "puffade ditt inlägg"; +"Scene.Notification.NotificationDescription.RebloggedYourPost" = "boostade ditt inlägg"; "Scene.Notification.NotificationDescription.RequestToFollowYou" = "begär att följa dig"; "Scene.Notification.Title.Everything" = "Allting"; "Scene.Notification.Title.Mentions" = "Omnämningar"; @@ -256,12 +264,12 @@ laddas upp till Mastodon."; "Scene.Profile.Header.FollowsYou" = "Följer dig"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Bekräfta för att blockera %@"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Blockera konto"; -"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "Bekräfta för att dölja puffar"; -"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Title" = "Dölj puffar"; +"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "Bekräfta för att dölja boostar"; +"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Title" = "Dölj boostar"; "Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Message" = "Bekräfta för att tysta %@"; "Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Tysta konto"; -"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Bekräfta för att visa puffar"; -"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "Visa puffar"; +"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Bekräfta för att visa boostar"; +"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "Visa boostar"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Bekräfta för att avblockera %@"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Avblockera konto"; "Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Bekräfta för att avtysta %@"; @@ -271,7 +279,7 @@ laddas upp till Mastodon."; "Scene.Profile.SegmentedControl.Posts" = "Inlägg"; "Scene.Profile.SegmentedControl.PostsAndReplies" = "Inlägg och svar"; "Scene.Profile.SegmentedControl.Replies" = "Svar"; -"Scene.RebloggedBy.Title" = "Puffat av"; +"Scene.RebloggedBy.Title" = "Boostat av"; "Scene.Register.Error.Item.Agreement" = "Avtal"; "Scene.Register.Error.Item.Email" = "E-post"; "Scene.Register.Error.Item.Locale" = "Språk"; @@ -323,7 +331,7 @@ laddas upp till Mastodon."; "Scene.Report.StepFinal.Unfollowed" = "Slutade följa"; "Scene.Report.StepFinal.WhenYouSeeSomethingYouDontLikeOnMastodonYouCanRemoveThePersonFromYourExperience." = "När du ser något som du inte gillar på Mastodon kan du ta bort personen från din upplevelse."; "Scene.Report.StepFinal.WhileWeReviewThisYouCanTakeActionAgainstUser" = "Medan vi granskar detta kan du vidta åtgärder mot %@"; -"Scene.Report.StepFinal.YouWontSeeTheirPostsOrReblogsInYourHomeFeedTheyWontKnowTheyVeBeenMuted" = "Du kommer inte att se deras inlägg eller ompostningar i ditt hemflöde. De kommer inte att veta att de har blivit tystade."; +"Scene.Report.StepFinal.YouWontSeeTheirPostsOrReblogsInYourHomeFeedTheyWontKnowTheyVeBeenMuted" = "Du kommer inte att se deras inlägg eller boostar i ditt hemflöde. De kommer inte att veta att de har blivit tystade."; "Scene.Report.StepFour.IsThereAnythingElseWeShouldKnow" = "Finns det något annat vi borde veta?"; "Scene.Report.StepFour.Step4Of4" = "Steg 4 av 4"; "Scene.Report.StepOne.IDontLikeIt" = "Jag tycker inte om det"; @@ -414,7 +422,7 @@ laddas upp till Mastodon."; "Scene.Settings.Section.LookAndFeel.SortaDark" = "Ganska mörk"; "Scene.Settings.Section.LookAndFeel.Title" = "Utseende och känsla"; "Scene.Settings.Section.LookAndFeel.UseSystem" = "Följ systeminställningarna"; -"Scene.Settings.Section.Notifications.Boosts" = "Ompostar mitt inlägg"; +"Scene.Settings.Section.Notifications.Boosts" = "Boostar mitt inlägg"; "Scene.Settings.Section.Notifications.Favorites" = "Favoriserar mitt inlägg"; "Scene.Settings.Section.Notifications.Follows" = "Följer mig"; "Scene.Settings.Section.Notifications.Mentions" = "Nämner mig"; diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/sv.lproj/Localizable.stringsdict b/MastodonSDK/Sources/MastodonLocalization/Resources/sv.lproj/Localizable.stringsdict index 048af4732..c7317903d 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/sv.lproj/Localizable.stringsdict +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/sv.lproj/Localizable.stringsdict @@ -152,9 +152,9 @@ NSStringFormatValueTypeKey ld one - %ld puff + %ld boost other - %ld puffar + %ld boostar plural.count.reply diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/th.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/th.lproj/Localizable.strings index 15514928c..de982308d 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/th.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/th.lproj/Localizable.strings @@ -68,13 +68,13 @@ "Common.Controls.Friendship.EditInfo" = "แก้ไขข้อมูล"; "Common.Controls.Friendship.Follow" = "ติดตาม"; "Common.Controls.Friendship.Following" = "กำลังติดตาม"; -"Common.Controls.Friendship.HideReblogs" = "Hide Reblogs"; +"Common.Controls.Friendship.HideReblogs" = "ซ่อนการดัน"; "Common.Controls.Friendship.Mute" = "ซ่อน"; "Common.Controls.Friendship.MuteUser" = "ซ่อน %@"; "Common.Controls.Friendship.Muted" = "ซ่อนอยู่"; "Common.Controls.Friendship.Pending" = "รอดำเนินการ"; "Common.Controls.Friendship.Request" = "ขอ"; -"Common.Controls.Friendship.ShowReblogs" = "Show Reblogs"; +"Common.Controls.Friendship.ShowReblogs" = "แสดงการดัน"; "Common.Controls.Friendship.Unblock" = "เลิกปิดกั้น"; "Common.Controls.Friendship.UnblockUser" = "เลิกปิดกั้น %@"; "Common.Controls.Friendship.Unmute" = "เลิกซ่อน"; @@ -108,6 +108,10 @@ "Common.Controls.Status.Actions.Unreblog" = "เลิกทำการดัน"; "Common.Controls.Status.ContentWarning" = "คำเตือนเนื้อหา"; "Common.Controls.Status.MediaContentWarning" = "แตะที่ใดก็ตามเพื่อเปิดเผย"; +"Common.Controls.Status.MetaEntity.Email" = "ที่อยู่อีเมล: %@"; +"Common.Controls.Status.MetaEntity.Hashtag" = "แฮชแท็ก: %@"; +"Common.Controls.Status.MetaEntity.Mention" = "โปรไฟล์ที่แสดง: %@"; +"Common.Controls.Status.MetaEntity.Url" = "ลิงก์: %@"; "Common.Controls.Status.Poll.Closed" = "ปิดแล้ว"; "Common.Controls.Status.Poll.Vote" = "ลงคะแนน"; "Common.Controls.Status.SensitiveContent" = "เนื้อหาที่ละเอียดอ่อน"; @@ -151,7 +155,7 @@ "Scene.AccountList.AddAccount" = "เพิ่มบัญชี"; "Scene.AccountList.DismissAccountSwitcher" = "ปิดตัวสลับบัญชี"; "Scene.AccountList.TabBarHint" = "โปรไฟล์ที่เลือกในปัจจุบัน: %@ แตะสองครั้งแล้วกดค้างไว้เพื่อแสดงตัวสลับบัญชี"; -"Scene.Bookmark.Title" = "Bookmarks"; +"Scene.Bookmark.Title" = "ที่คั่นหน้า"; "Scene.Compose.Accessibility.AppendAttachment" = "เพิ่มไฟล์แนบ"; "Scene.Compose.Accessibility.AppendPoll" = "เพิ่มการสำรวจความคิดเห็น"; "Scene.Compose.Accessibility.CustomEmojiPicker" = "ตัวเลือกอีโมจิที่กำหนดเอง"; @@ -161,9 +165,13 @@ "Scene.Compose.Accessibility.RemovePoll" = "เอาการสำรวจความคิดเห็นออก"; "Scene.Compose.Attachment.AttachmentBroken" = "%@ นี้เสียหายและไม่สามารถ อัปโหลดไปยัง Mastodon"; +"Scene.Compose.Attachment.AttachmentTooLarge" = "ไฟล์แนบใหญ่เกินไป"; +"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Can not regonize this media attachment"; "Scene.Compose.Attachment.DescriptionPhoto" = "อธิบายรูปภาพสำหรับผู้บกพร่องทางการมองเห็น..."; "Scene.Compose.Attachment.DescriptionVideo" = "อธิบายวิดีโอสำหรับผู้บกพร่องทางการมองเห็น..."; +"Scene.Compose.Attachment.LoadFailed" = "การโหลดล้มเหลว"; "Scene.Compose.Attachment.Photo" = "รูปภาพ"; +"Scene.Compose.Attachment.UploadFailed" = "การอัปโหลดล้มเหลว"; "Scene.Compose.Attachment.Video" = "วิดีโอ"; "Scene.Compose.AutoComplete.SpaceToAdd" = "เว้นวรรคเพื่อเพิ่ม"; "Scene.Compose.ComposeAction" = "เผยแพร่"; @@ -256,12 +264,12 @@ "Scene.Profile.Header.FollowsYou" = "ติดตามคุณ"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "ยืนยันเพื่อปิดกั้น %@"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "ปิดกั้นบัญชี"; -"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "Confirm to hide reblogs"; -"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Title" = "Hide Reblogs"; +"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "ยืนยันเพื่อซ่อนการดัน"; +"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Title" = "ซ่อนการดัน"; "Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Message" = "ยืนยันเพื่อซ่อน %@"; "Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "ซ่อนบัญชี"; -"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Confirm to show reblogs"; -"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "Show Reblogs"; +"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "ยืนยันเพื่อแสดงการดัน"; +"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "แสดงการดัน"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "ยืนยันเพื่อเลิกปิดกั้น %@"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "เลิกปิดกั้นบัญชี"; "Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "ยืนยันเพื่อเลิกซ่อน %@"; @@ -391,7 +399,7 @@ "Scene.ServerPicker.Label.Language" = "ภาษา"; "Scene.ServerPicker.Label.Users" = "ผู้ใช้"; "Scene.ServerPicker.Subtitle" = "เลือกเซิร์ฟเวอร์ตามความสนใจ, ภูมิภาค หรือวัตถุประสงค์ทั่วไปของคุณ"; -"Scene.ServerPicker.SubtitleExtend" = "เลือกเซิร์ฟเวอร์ตามความสนใจ, ภูมิภาค หรือวัตถุประสงค์ทั่วไปของคุณ แต่ละเซิร์ฟเวอร์ดำเนินการโดยองค์กรหรือบุคคลที่เป็นอิสระโดยสิ้นเชิง"; +"Scene.ServerPicker.SubtitleExtend" = "เลือกเซิร์ฟเวอร์ตามความสนใจ, ภูมิภาค หรือวัตถุประสงค์ทั่วไปของคุณ แต่ละเซิร์ฟเวอร์ได้รับการดำเนินงานโดยองค์กรหรือบุคคลที่เป็นอิสระโดยสิ้นเชิง"; "Scene.ServerPicker.Title" = "Mastodon ประกอบด้วยผู้ใช้ในเซิร์ฟเวอร์ต่าง ๆ"; "Scene.ServerRules.Button.Confirm" = "ฉันเห็นด้วย"; "Scene.ServerRules.PrivacyPolicy" = "นโยบายความเป็นส่วนตัว"; diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/tr.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/tr.lproj/Localizable.strings index eec4a2940..614ea6dc5 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/tr.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/tr.lproj/Localizable.strings @@ -107,6 +107,10 @@ "Common.Controls.Status.Actions.Unreblog" = "Yeniden paylaşımı geri al"; "Common.Controls.Status.ContentWarning" = "İçerik Uyarısı"; "Common.Controls.Status.MediaContentWarning" = "Göstermek için herhangi bir yere basın"; +"Common.Controls.Status.MetaEntity.Email" = "Email address: %@"; +"Common.Controls.Status.MetaEntity.Hashtag" = "Hashtag: %@"; +"Common.Controls.Status.MetaEntity.Mention" = "Show Profile: %@"; +"Common.Controls.Status.MetaEntity.Url" = "Link: %@"; "Common.Controls.Status.Poll.Closed" = "Kapandı"; "Common.Controls.Status.Poll.Vote" = "Oy ver"; "Common.Controls.Status.SensitiveContent" = "Hassas İçerik"; @@ -160,9 +164,13 @@ Bu kişiye göre profiliniz böyle gözüküyor."; "Scene.Compose.Accessibility.RemovePoll" = "Anketi Kaldır"; "Scene.Compose.Attachment.AttachmentBroken" = "Bu %@ bozuk ve Mastodon'a yüklenemiyor."; +"Scene.Compose.Attachment.AttachmentTooLarge" = "Attachment too large"; +"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Can not regonize this media attachment"; "Scene.Compose.Attachment.DescriptionPhoto" = "Görme engelliler için fotoğrafı tarif edin..."; "Scene.Compose.Attachment.DescriptionVideo" = "Görme engelliler için videoyu tarif edin..."; +"Scene.Compose.Attachment.LoadFailed" = "Load Failed"; "Scene.Compose.Attachment.Photo" = "fotoğraf"; +"Scene.Compose.Attachment.UploadFailed" = "Upload Failed"; "Scene.Compose.Attachment.Video" = "video"; "Scene.Compose.AutoComplete.SpaceToAdd" = "Eklemek için boşluk tuşuna basın"; "Scene.Compose.ComposeAction" = "Yayınla"; diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/vi.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/vi.lproj/Localizable.strings index 14f36c7e7..41ac9aa20 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/vi.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/vi.lproj/Localizable.strings @@ -108,6 +108,10 @@ Vui lòng kiểm tra kết nối mạng."; "Common.Controls.Status.Actions.Unreblog" = "Hủy đăng lại"; "Common.Controls.Status.ContentWarning" = "Nội dung ẩn"; "Common.Controls.Status.MediaContentWarning" = "Nhấn để hiển thị"; +"Common.Controls.Status.MetaEntity.Email" = "Email: %@"; +"Common.Controls.Status.MetaEntity.Hashtag" = "Hashtag: %@"; +"Common.Controls.Status.MetaEntity.Mention" = "Hiện hồ sơ: %@"; +"Common.Controls.Status.MetaEntity.Url" = "Link: %@"; "Common.Controls.Status.Poll.Closed" = "Kết thúc"; "Common.Controls.Status.Poll.Vote" = "Bình chọn"; "Common.Controls.Status.SensitiveContent" = "Nội dung nhạy cảm"; @@ -151,7 +155,7 @@ Họ sẽ thấy trang của bạn như thế này."; "Scene.AccountList.AddAccount" = "Thêm tài khoản"; "Scene.AccountList.DismissAccountSwitcher" = "Bỏ qua chuyển đổi tài khoản"; "Scene.AccountList.TabBarHint" = "Đang dùng tài khoản: %@. Nhấn hai lần và giữ để đổi sang tài khoản khác"; -"Scene.Bookmark.Title" = "Bookmarks"; +"Scene.Bookmark.Title" = "Tút đã lưu"; "Scene.Compose.Accessibility.AppendAttachment" = "Thêm media"; "Scene.Compose.Accessibility.AppendPoll" = "Tạo bình chọn"; "Scene.Compose.Accessibility.CustomEmojiPicker" = "Chọn emoji"; @@ -161,9 +165,13 @@ Họ sẽ thấy trang của bạn như thế này."; "Scene.Compose.Accessibility.RemovePoll" = "Xóa bình chọn"; "Scene.Compose.Attachment.AttachmentBroken" = "%@ này bị lỗi và không thể tải lên Mastodon."; +"Scene.Compose.Attachment.AttachmentTooLarge" = "Attachment too large"; +"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Can not regonize this media attachment"; "Scene.Compose.Attachment.DescriptionPhoto" = "Mô tả hình ảnh cho người khiếm thị..."; "Scene.Compose.Attachment.DescriptionVideo" = "Mô tả video cho người khiếm thị..."; +"Scene.Compose.Attachment.LoadFailed" = "Load Failed"; "Scene.Compose.Attachment.Photo" = "ảnh"; +"Scene.Compose.Attachment.UploadFailed" = "Upload Failed"; "Scene.Compose.Attachment.Video" = "video"; "Scene.Compose.AutoComplete.SpaceToAdd" = "Khoảng cách để thêm"; "Scene.Compose.ComposeAction" = "Đăng"; diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/zh-Hans.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/zh-Hans.lproj/Localizable.strings index 8e5de6b52..3883e30df 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/zh-Hans.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/zh-Hans.lproj/Localizable.strings @@ -108,6 +108,10 @@ "Common.Controls.Status.Actions.Unreblog" = "取消转发"; "Common.Controls.Status.ContentWarning" = "内容警告"; "Common.Controls.Status.MediaContentWarning" = "点击任意位置显示"; +"Common.Controls.Status.MetaEntity.Email" = "Email address: %@"; +"Common.Controls.Status.MetaEntity.Hashtag" = "Hashtag: %@"; +"Common.Controls.Status.MetaEntity.Mention" = "Show Profile: %@"; +"Common.Controls.Status.MetaEntity.Url" = "Link: %@"; "Common.Controls.Status.Poll.Closed" = "已关闭"; "Common.Controls.Status.Poll.Vote" = "投票"; "Common.Controls.Status.SensitiveContent" = "敏感内容"; @@ -161,9 +165,13 @@ "Scene.Compose.Accessibility.RemovePoll" = "移除投票"; "Scene.Compose.Attachment.AttachmentBroken" = "%@已损坏 无法上传到 Mastodon"; +"Scene.Compose.Attachment.AttachmentTooLarge" = "Attachment too large"; +"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Can not regonize this media attachment"; "Scene.Compose.Attachment.DescriptionPhoto" = "为视觉障碍人士添加照片的文字说明..."; "Scene.Compose.Attachment.DescriptionVideo" = "为视觉障碍人士添加视频的文字说明..."; +"Scene.Compose.Attachment.LoadFailed" = "Load Failed"; "Scene.Compose.Attachment.Photo" = "照片"; +"Scene.Compose.Attachment.UploadFailed" = "Upload Failed"; "Scene.Compose.Attachment.Video" = "视频"; "Scene.Compose.AutoComplete.SpaceToAdd" = "输入空格键入"; "Scene.Compose.ComposeAction" = "发送"; diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/zh-Hant.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/zh-Hant.lproj/Localizable.strings index f97926795..34e59a582 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/zh-Hant.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/zh-Hant.lproj/Localizable.strings @@ -108,6 +108,10 @@ "Common.Controls.Status.Actions.Unreblog" = "取消轉嘟"; "Common.Controls.Status.ContentWarning" = "內容警告"; "Common.Controls.Status.MediaContentWarning" = "輕觸任何地方以顯示"; +"Common.Controls.Status.MetaEntity.Email" = "電子郵件地址:%@"; +"Common.Controls.Status.MetaEntity.Hashtag" = "主題標籤: %@"; +"Common.Controls.Status.MetaEntity.Mention" = "顯示個人檔案:%@"; +"Common.Controls.Status.MetaEntity.Url" = "連結:%@"; "Common.Controls.Status.Poll.Closed" = "已關閉"; "Common.Controls.Status.Poll.Vote" = "投票"; "Common.Controls.Status.SensitiveContent" = "敏感內容"; @@ -147,7 +151,7 @@ "Scene.AccountList.AddAccount" = "新增帳號"; "Scene.AccountList.DismissAccountSwitcher" = "關閉帳號切換器"; "Scene.AccountList.TabBarHint" = "目前已選擇的個人檔案:%@。點兩下然後按住以顯示帳號切換器"; -"Scene.Bookmark.Title" = "Bookmarks"; +"Scene.Bookmark.Title" = "書籤"; "Scene.Compose.Accessibility.AppendAttachment" = "新增附件"; "Scene.Compose.Accessibility.AppendPoll" = "新增投票"; "Scene.Compose.Accessibility.CustomEmojiPicker" = "自訂 emoji 選擇器"; @@ -156,9 +160,13 @@ "Scene.Compose.Accessibility.PostVisibilityMenu" = "嘟文可見性選單"; "Scene.Compose.Accessibility.RemovePoll" = "移除投票"; "Scene.Compose.Attachment.AttachmentBroken" = "此 %@ 已損毀,並無法被上傳至 Mastodon。"; +"Scene.Compose.Attachment.AttachmentTooLarge" = "Attachment too large"; +"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Can not regonize this media attachment"; "Scene.Compose.Attachment.DescriptionPhoto" = "為視障人士提供圖片說明..."; "Scene.Compose.Attachment.DescriptionVideo" = "為視障人士提供影片說明..."; +"Scene.Compose.Attachment.LoadFailed" = "Load Failed"; "Scene.Compose.Attachment.Photo" = "照片"; +"Scene.Compose.Attachment.UploadFailed" = "Upload Failed"; "Scene.Compose.Attachment.Video" = "影片"; "Scene.Compose.AutoComplete.SpaceToAdd" = "添加的空白"; "Scene.Compose.ComposeAction" = "嘟出去"; diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentView.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentView.swift index a2567d0b6..073ca7b10 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentView.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentView.swift @@ -65,7 +65,7 @@ public struct AttachmentView: View { if viewModel.output == nil, let error = viewModel.error { VisualEffectView(effect: blurEffect) VStack { - Text("Load Failed") // TODO: i18n + Text(L10n.Scene.Compose.Attachment) // TODO: i18n .font(.system(size: 13, weight: .semibold)) Text(error.localizedDescription) .font(.system(size: 12, weight: .regular)) From af0dc45d1bea6d7b36df2ffd8b3e18c3f76760b4 Mon Sep 17 00:00:00 2001 From: CMK Date: Mon, 14 Nov 2022 19:27:09 +0800 Subject: [PATCH 241/598] feat: update i18n string --- Localization/app.json | 10 +++++++--- .../Attachment/AttachmentView.swift | 6 +++--- .../Attachment/AttachmentViewModel.swift | 16 ++++++++-------- .../ComposeContent/ComposeContentViewModel.swift | 2 +- 4 files changed, 19 insertions(+), 15 deletions(-) diff --git a/Localization/app.json b/Localization/app.json index a6a971860..af3189e8b 100644 --- a/Localization/app.json +++ b/Localization/app.json @@ -386,7 +386,9 @@ "load_failed": "Load Failed", "upload_failed": "Upload Failed", "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", - "attachment_too_large": "Attachment too large" + "attachment_too_large": "Attachment too large", + "compressing_state": "Compressing...", + "server_processing_state": "Server Processing..." }, "poll": { "duration_time": "Duration: %s", @@ -396,7 +398,9 @@ "one_day": "1 Day", "three_days": "3 Days", "seven_days": "7 Days", - "option_number": "Option %ld" + "option_number": "Option %ld", + "the_poll_is_invalid": "The poll is invalid", + "the_poll_has_empty_option": "The poll has empty option" }, "content_warning": { "placeholder": "Write an accurate warning here..." @@ -709,4 +713,4 @@ "title": "Bookmarks" } } -} +} \ No newline at end of file diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentView.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentView.swift index 073ca7b10..d2baeed71 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentView.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentView.swift @@ -65,7 +65,7 @@ public struct AttachmentView: View { if viewModel.output == nil, let error = viewModel.error { VisualEffectView(effect: blurEffect) VStack { - Text(L10n.Scene.Compose.Attachment) // TODO: i18n + Text(L10n.Scene.Compose.Attachment.loadFailed) .font(.system(size: 13, weight: .semibold)) Text(error.localizedDescription) .font(.system(size: 12, weight: .regular)) @@ -123,7 +123,7 @@ public struct AttachmentView: View { case .remove: switch viewModel.uploadState { case .compressing: - return "Comporessing..." // TODO: i18n + return "Compressing..." // TODO: i18n default: if viewModel.fractionCompleted < 0.9 { let totalSizeInByte = viewModel.outputSizeInByte @@ -136,7 +136,7 @@ public struct AttachmentView: View { } } case .retry: - return "Upload Failed" // TODO: i18n + return L10n.Scene.Compose.Attachment.uploadFailed } }() let subtitle: String = { diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel.swift index 9a0f58f47..18da157c5 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel.swift @@ -11,6 +11,7 @@ import Combine import PhotosUI import Kingfisher import MastodonCore +import MastodonLocalization import func QuartzCore.CACurrentMediaTime public protocol AttachmentViewModelDelegate: AnyObject { @@ -48,9 +49,7 @@ final public class AttachmentViewModel: NSObject, ObservableObject, Identifiable public let authContext: AuthContext public let input: Input @Published var caption = "" - @Published var sizeLimit = SizeLimit() - - // var compressVideoTask: Task? + // @Published var sizeLimit = SizeLimit() // output @Published public private(set) var output: Output? @@ -263,15 +262,16 @@ extension AttachmentViewModel { } } + // not in using public struct SizeLimit { public let image: Int public let gif: Int public let video: Int public init( - image: Int = 5 * 1024 * 1024, // 5 MiB, - gif: Int = 15 * 1024 * 1024, // 15 MiB, - video: Int = 512 * 1024 * 1024 // 512 MiB + image: Int = 10 * 1024 * 1024, // 10 MiB + gif: Int = 40 * 1024 * 1024, // 40 MiB + video: Int = 40 * 1024 * 1024 // 40 MiB ) { self.image = image self.gif = gif @@ -286,9 +286,9 @@ extension AttachmentViewModel { public var errorDescription: String? { switch self { case .invalidAttachmentType: - return "Can not regonize this media attachment" // TODO: i18n + return L10n.Scene.Compose.Attachment.canNotRecognizeThisMediaAttachment case .attachmentTooLarge: - return "Attachment too large" + return L10n.Scene.Compose.Attachment.attachmentTooLarge } } } diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel.swift index 91be96248..37a6bdebf 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel.swift @@ -479,7 +479,7 @@ extension ComposeContentViewModel { public var errorDescription: String? { switch self { case .pollHasEmptyOption: - return "The post poll is invalid" // TODO: i18n + return "The poll is invalid" // TODO: i18n } } From 591acb4c2c72609c6579560d6d1f875af9e84e1a Mon Sep 17 00:00:00 2001 From: CMK Date: Mon, 14 Nov 2022 19:43:32 +0800 Subject: [PATCH 242/598] feat: restore keyboard shortcut for compose scene --- .../Scene/Compose/ComposeViewController.swift | 261 +++++++++--------- .../ComposeContentViewController.swift | 7 +- .../ComposeContentViewModel.swift | 4 +- 3 files changed, 140 insertions(+), 132 deletions(-) diff --git a/Mastodon/Scene/Compose/ComposeViewController.swift b/Mastodon/Scene/Compose/ComposeViewController.swift index cc595d5bc..414c53269 100644 --- a/Mastodon/Scene/Compose/ComposeViewController.swift +++ b/Mastodon/Scene/Compose/ComposeViewController.swift @@ -324,130 +324,137 @@ extension ComposeViewController: UIAdaptivePresentationControllerDelegate { } -//extension ComposeViewController { -// override var keyCommands: [UIKeyCommand]? { -// composeKeyCommands -// } -//} -// -//extension ComposeViewController { -// -// enum ComposeKeyCommand: String, CaseIterable { -// case discardPost -// case publishPost -// case mediaBrowse -// case mediaPhotoLibrary -// case mediaCamera -// case togglePoll -// case toggleContentWarning -// case selectVisibilityPublic -// // TODO: remove selectVisibilityUnlisted from codebase -// // case selectVisibilityUnlisted -// case selectVisibilityPrivate -// case selectVisibilityDirect -// -// var title: String { -// switch self { -// case .discardPost: return L10n.Scene.Compose.Keyboard.discardPost -// case .publishPost: return L10n.Scene.Compose.Keyboard.publishPost -// case .mediaBrowse: return L10n.Scene.Compose.Keyboard.appendAttachmentEntry(L10n.Scene.Compose.MediaSelection.browse) -// case .mediaPhotoLibrary: return L10n.Scene.Compose.Keyboard.appendAttachmentEntry(L10n.Scene.Compose.MediaSelection.photoLibrary) -// case .mediaCamera: return L10n.Scene.Compose.Keyboard.appendAttachmentEntry(L10n.Scene.Compose.MediaSelection.camera) -// case .togglePoll: return L10n.Scene.Compose.Keyboard.togglePoll -// case .toggleContentWarning: return L10n.Scene.Compose.Keyboard.toggleContentWarning -// case .selectVisibilityPublic: return L10n.Scene.Compose.Keyboard.selectVisibilityEntry(L10n.Scene.Compose.Visibility.public) -// // case .selectVisibilityUnlisted: return L10n.Scene.Compose.Keyboard.selectVisibilityEntry(L10n.Scene.Compose.Visibility.unlisted) -// case .selectVisibilityPrivate: return L10n.Scene.Compose.Keyboard.selectVisibilityEntry(L10n.Scene.Compose.Visibility.private) -// case .selectVisibilityDirect: return L10n.Scene.Compose.Keyboard.selectVisibilityEntry(L10n.Scene.Compose.Visibility.direct) -// } -// } -// -// // UIKeyCommand input -// var input: String { -// switch self { -// case .discardPost: return "w" // + command -// case .publishPost: return "\r" // (enter) + command -// case .mediaBrowse: return "b" // + option + command -// case .mediaPhotoLibrary: return "p" // + option + command -// case .mediaCamera: return "c" // + option + command -// case .togglePoll: return "p" // + shift + command -// case .toggleContentWarning: return "c" // + shift + command -// case .selectVisibilityPublic: return "1" // + command -// // case .selectVisibilityUnlisted: return "2" // + command -// case .selectVisibilityPrivate: return "2" // + command -// case .selectVisibilityDirect: return "3" // + command -// } -// } -// -// var modifierFlags: UIKeyModifierFlags { -// switch self { -// case .discardPost: return [.command] -// case .publishPost: return [.command] -// case .mediaBrowse: return [.alternate, .command] -// case .mediaPhotoLibrary: return [.alternate, .command] -// case .mediaCamera: return [.alternate, .command] -// case .togglePoll: return [.shift, .command] -// case .toggleContentWarning: return [.shift, .command] -// case .selectVisibilityPublic: return [.command] -// // case .selectVisibilityUnlisted: return [.command] -// case .selectVisibilityPrivate: return [.command] -// case .selectVisibilityDirect: return [.command] -// } -// } -// -// var propertyList: Any { -// return rawValue -// } -// } -// -// var composeKeyCommands: [UIKeyCommand]? { -// ComposeKeyCommand.allCases.map { command in -// UIKeyCommand( -// title: command.title, -// image: nil, -// action: #selector(Self.composeKeyCommandHandler(_:)), -// input: command.input, -// modifierFlags: command.modifierFlags, -// propertyList: command.propertyList, -// alternates: [], -// discoverabilityTitle: nil, -// attributes: [], -// state: .off -// ) -// } -// } -// -// @objc private func composeKeyCommandHandler(_ sender: UIKeyCommand) { -// guard let rawValue = sender.propertyList as? String, -// let command = ComposeKeyCommand(rawValue: rawValue) else { return } -// -// switch command { -// case .discardPost: -// cancelBarButtonItemPressed(cancelBarButtonItem) -// case .publishPost: -// publishBarButtonItemPressed(publishBarButtonItem) -// case .mediaBrowse: -// present(documentPickerController, animated: true, completion: nil) -// case .mediaPhotoLibrary: -// present(photoLibraryPicker, animated: true, completion: nil) -// case .mediaCamera: -// guard UIImagePickerController.isSourceTypeAvailable(.camera) else { -// return -// } -// present(imagePickerController, animated: true, completion: nil) -// case .togglePoll: -// composeToolbarView.pollButton.sendActions(for: .touchUpInside) -// case .toggleContentWarning: -// composeToolbarView.contentWarningButton.sendActions(for: .touchUpInside) -// case .selectVisibilityPublic: -// viewModel.selectedStatusVisibility = .public -// // case .selectVisibilityUnlisted: -// // viewModel.selectedStatusVisibility.value = .unlisted -// case .selectVisibilityPrivate: -// viewModel.selectedStatusVisibility = .private -// case .selectVisibilityDirect: -// viewModel.selectedStatusVisibility = .direct -// } -// } -// -//} +extension ComposeViewController { + override var keyCommands: [UIKeyCommand]? { + composeKeyCommands + } +} + +extension ComposeViewController { + + enum ComposeKeyCommand: String, CaseIterable { + case discardPost + case publishPost + case mediaBrowse + case mediaPhotoLibrary + case mediaCamera + case togglePoll + case toggleContentWarning + case selectVisibilityPublic + // TODO: remove selectVisibilityUnlisted from codebase + // case selectVisibilityUnlisted + case selectVisibilityPrivate + case selectVisibilityDirect + + var title: String { + switch self { + case .discardPost: return L10n.Scene.Compose.Keyboard.discardPost + case .publishPost: return L10n.Scene.Compose.Keyboard.publishPost + case .mediaBrowse: return L10n.Scene.Compose.Keyboard.appendAttachmentEntry(L10n.Scene.Compose.MediaSelection.browse) + case .mediaPhotoLibrary: return L10n.Scene.Compose.Keyboard.appendAttachmentEntry(L10n.Scene.Compose.MediaSelection.photoLibrary) + case .mediaCamera: return L10n.Scene.Compose.Keyboard.appendAttachmentEntry(L10n.Scene.Compose.MediaSelection.camera) + case .togglePoll: return L10n.Scene.Compose.Keyboard.togglePoll + case .toggleContentWarning: return L10n.Scene.Compose.Keyboard.toggleContentWarning + case .selectVisibilityPublic: return L10n.Scene.Compose.Keyboard.selectVisibilityEntry(L10n.Scene.Compose.Visibility.public) + // case .selectVisibilityUnlisted: return L10n.Scene.Compose.Keyboard.selectVisibilityEntry(L10n.Scene.Compose.Visibility.unlisted) + case .selectVisibilityPrivate: return L10n.Scene.Compose.Keyboard.selectVisibilityEntry(L10n.Scene.Compose.Visibility.private) + case .selectVisibilityDirect: return L10n.Scene.Compose.Keyboard.selectVisibilityEntry(L10n.Scene.Compose.Visibility.direct) + } + } + + // UIKeyCommand input + var input: String { + switch self { + case .discardPost: return "w" // + command + case .publishPost: return "\r" // (enter) + command + case .mediaBrowse: return "b" // + option + command + case .mediaPhotoLibrary: return "p" // + option + command + case .mediaCamera: return "c" // + option + command + case .togglePoll: return "p" // + shift + command + case .toggleContentWarning: return "c" // + shift + command + case .selectVisibilityPublic: return "1" // + command + // case .selectVisibilityUnlisted: return "2" // + command + case .selectVisibilityPrivate: return "2" // + command + case .selectVisibilityDirect: return "3" // + command + } + } + + var modifierFlags: UIKeyModifierFlags { + switch self { + case .discardPost: return [.command] + case .publishPost: return [.command] + case .mediaBrowse: return [.alternate, .command] + case .mediaPhotoLibrary: return [.alternate, .command] + case .mediaCamera: return [.alternate, .command] + case .togglePoll: return [.shift, .command] + case .toggleContentWarning: return [.shift, .command] + case .selectVisibilityPublic: return [.command] + // case .selectVisibilityUnlisted: return [.command] + case .selectVisibilityPrivate: return [.command] + case .selectVisibilityDirect: return [.command] + } + } + + var propertyList: Any { + return rawValue + } + } + + var composeKeyCommands: [UIKeyCommand]? { + ComposeKeyCommand.allCases.map { command in + UIKeyCommand( + title: command.title, + image: nil, + action: #selector(Self.composeKeyCommandHandler(_:)), + input: command.input, + modifierFlags: command.modifierFlags, + propertyList: command.propertyList, + alternates: [], + discoverabilityTitle: nil, + attributes: [], + state: .off + ) + } + } + + @objc private func composeKeyCommandHandler(_ sender: UIKeyCommand) { + guard let rawValue = sender.propertyList as? String, + let command = ComposeKeyCommand(rawValue: rawValue) else { return } + + switch command { + case .discardPost: + cancelBarButtonItemPressed(cancelBarButtonItem) + case .publishPost: + publishBarButtonItemPressed(publishBarButtonItem) + case .mediaBrowse: + guard !isViewControllerIsAlreadyModal(composeContentViewController.documentPickerController) else { return } + present(composeContentViewController.documentPickerController, animated: true, completion: nil) + case .mediaPhotoLibrary: + guard !isViewControllerIsAlreadyModal(composeContentViewController.photoLibraryPicker) else { return } + present(composeContentViewController.photoLibraryPicker, animated: true, completion: nil) + case .mediaCamera: + guard UIImagePickerController.isSourceTypeAvailable(.camera) else { + return + } + guard !isViewControllerIsAlreadyModal(composeContentViewController.imagePickerController) else { return } + present(composeContentViewController.imagePickerController, animated: true, completion: nil) + case .togglePoll: + composeContentViewModel.isPollActive.toggle() + case .toggleContentWarning: + composeContentViewModel.isContentWarningActive.toggle() + case .selectVisibilityPublic: + composeContentViewModel.visibility = .public + // case .selectVisibilityUnlisted: + // viewModel.selectedStatusVisibility.value = .unlisted + case .selectVisibilityPrivate: + composeContentViewModel.visibility = .private + case .selectVisibilityDirect: + composeContentViewModel.visibility = .direct + } + } + + private func isViewControllerIsAlreadyModal(_ viewController: UIViewController) -> Bool { + return viewController.presentingViewController != nil + } + +} diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewController.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewController.swift index 7034aeefb..b84b47385 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewController.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewController.swift @@ -55,20 +55,20 @@ public final class ComposeContentViewController: UIViewController { return configuration } - private(set) lazy var photoLibraryPicker: PHPickerViewController = { + public private(set) lazy var photoLibraryPicker: PHPickerViewController = { let imagePicker = PHPickerViewController(configuration: ComposeContentViewController.createPhotoLibraryPickerConfiguration()) imagePicker.delegate = self return imagePicker }() - private(set) lazy var imagePickerController: UIImagePickerController = { + public private(set) lazy var imagePickerController: UIImagePickerController = { let imagePickerController = UIImagePickerController() imagePickerController.sourceType = .camera imagePickerController.delegate = self return imagePickerController }() - private(set) lazy var documentPickerController: UIDocumentPickerViewController = { + public private(set) lazy var documentPickerController: UIDocumentPickerViewController = { let documentPickerController = UIDocumentPickerViewController(forOpeningContentTypes: [.image, .movie]) documentPickerController.delegate = self return documentPickerController @@ -342,6 +342,7 @@ extension ComposeContentViewController { // bind back to source due to visibility not update via delegate composeContentToolbarViewModel.$visibility .dropFirst() + .receive(on: DispatchQueue.main) .sink { [weak self] visibility in guard let self = self else { return } if self.viewModel.visibility != visibility { diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel.swift index 37a6bdebf..e840b53fd 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel.swift @@ -91,7 +91,7 @@ public final class ComposeContentViewModel: NSObject, ObservableObject { // @Published public internal(set) var isMediaValid = true // poll - @Published var isPollActive = false + @Published public var isPollActive = false @Published public var pollOptions: [PollComposeItem.Option] = { // initial with 2 options var options: [PollComposeItem.Option] = [] @@ -111,7 +111,7 @@ public final class ComposeContentViewModel: NSObject, ObservableObject { @Published var isLoadingCustomEmoji = false // visibility - @Published var visibility: Mastodon.Entity.Status.Visibility + @Published public var visibility: Mastodon.Entity.Status.Visibility // UI & UX @Published var replyToCellFrame: CGRect = .zero From a2f2fb83cdc433a411741c34964227941355b68f Mon Sep 17 00:00:00 2001 From: Marcus Kida Date: Mon, 14 Nov 2022 13:12:16 +0100 Subject: [PATCH 243/598] Fix authenticated user account not reloaded --- .../Scene/Profile/ProfileViewController.swift | 3 +++ .../Root/MainTab/MainTabBarController.swift | 27 ++++++++++++++++++- Mastodon/Supporting Files/SceneDelegate.swift | 3 +++ .../CoreDataStack/MastodonUser+Property.swift | 4 +++ .../Service/API/APIService+Account.swift | 9 +++++++ .../Service/InstanceService.swift | 3 ++- 6 files changed, 47 insertions(+), 2 deletions(-) diff --git a/Mastodon/Scene/Profile/ProfileViewController.swift b/Mastodon/Scene/Profile/ProfileViewController.swift index 3ce1fd33a..212e92d06 100644 --- a/Mastodon/Scene/Profile/ProfileViewController.swift +++ b/Mastodon/Scene/Profile/ProfileViewController.swift @@ -552,6 +552,9 @@ extension ProfileViewController { userTimelineViewController.viewModel.stateMachine.enter(UserTimelineViewModel.State.Reloading.self) } + // trigger authenticated user account update + viewModel.context.instanceService.updateActiveUserAccountPublisher.send() + DispatchQueue.main.asyncAfter(deadline: .now() + 0.3) { sender.endRefreshing() } diff --git a/Mastodon/Scene/Root/MainTab/MainTabBarController.swift b/Mastodon/Scene/Root/MainTab/MainTabBarController.swift index c49dcc1a1..64066746a 100644 --- a/Mastodon/Scene/Root/MainTab/MainTabBarController.swift +++ b/Mastodon/Scene/Root/MainTab/MainTabBarController.swift @@ -312,7 +312,12 @@ extension MainTabBarController { guard let profileTabItem = _profileTabItem else { return } let currentUserDisplayName = user.displayNameWithFallback ?? "no user" profileTabItem.accessibilityHint = L10n.Scene.AccountList.tabBarHint(currentUserDisplayName) - + + context.instanceService.updateActiveUserAccountPublisher + .sink { [weak self] in + self?.updateUserAccount() + } + .store(in: &disposeBag) } else { self.avatarURLObserver = nil } @@ -487,6 +492,26 @@ extension MainTabBarController { avatarButton.setNeedsLayout() } + private func updateUserAccount() { + guard let authContext = authContext else { return } + + Task { @MainActor in + let profileResponse = try await context.apiService.authenticatedUserInfo( + authenticationBox: authContext.mastodonAuthenticationBox + ) + + if let user = authContext.mastodonAuthenticationBox.authenticationRecord.object( + in: context.managedObjectContext + )?.user { + user.update( + property: .init( + entity: profileResponse.value, + domain: authContext.mastodonAuthenticationBox.domain + ) + ) + } + } + } } extension MainTabBarController { diff --git a/Mastodon/Supporting Files/SceneDelegate.swift b/Mastodon/Supporting Files/SceneDelegate.swift index 1e97fb179..fad0f0cd5 100644 --- a/Mastodon/Supporting Files/SceneDelegate.swift +++ b/Mastodon/Supporting Files/SceneDelegate.swift @@ -109,6 +109,9 @@ class SceneDelegate: UIResponder, UIWindowSceneDelegate { // trigger status filter update AppContext.shared.statusFilterService.filterUpdatePublisher.send() + + // trigger authenticated user account update + AppContext.shared.instanceService.updateActiveUserAccountPublisher.send() if let shortcutItem = savedShortCutItem { Task { diff --git a/MastodonSDK/Sources/MastodonCore/Extension/CoreDataStack/MastodonUser+Property.swift b/MastodonSDK/Sources/MastodonCore/Extension/CoreDataStack/MastodonUser+Property.swift index cebe7f8af..8d2f77ba7 100644 --- a/MastodonSDK/Sources/MastodonCore/Extension/CoreDataStack/MastodonUser+Property.swift +++ b/MastodonSDK/Sources/MastodonCore/Extension/CoreDataStack/MastodonUser+Property.swift @@ -10,6 +10,10 @@ import CoreDataStack import MastodonSDK extension MastodonUser.Property { + public init(entity: Mastodon.Entity.Account, domain: String) { + self.init(entity: entity, domain: domain, networkDate: Date()) + } + init(entity: Mastodon.Entity.Account, domain: String, networkDate: Date) { self.init( identifier: entity.id + "@" + domain, diff --git a/MastodonSDK/Sources/MastodonCore/Service/API/APIService+Account.swift b/MastodonSDK/Sources/MastodonCore/Service/API/APIService+Account.swift index 68649d24c..1b6a57a83 100644 --- a/MastodonSDK/Sources/MastodonCore/Service/API/APIService+Account.swift +++ b/MastodonSDK/Sources/MastodonCore/Service/API/APIService+Account.swift @@ -13,6 +13,15 @@ import MastodonCommon import MastodonSDK extension APIService { + public func authenticatedUserInfo( + authenticationBox: MastodonAuthenticationBox + ) async throws -> Mastodon.Response.Content { + try await accountInfo( + domain: authenticationBox.domain, + userID: authenticationBox.userID, + authorization: authenticationBox.userAuthorization + ) + } public func accountInfo( domain: String, diff --git a/MastodonSDK/Sources/MastodonCore/Service/InstanceService.swift b/MastodonSDK/Sources/MastodonCore/Service/InstanceService.swift index c63e965bd..7f6669250 100644 --- a/MastodonSDK/Sources/MastodonCore/Service/InstanceService.swift +++ b/MastodonSDK/Sources/MastodonCore/Service/InstanceService.swift @@ -24,7 +24,8 @@ public final class InstanceService { weak var authenticationService: AuthenticationService? // output - + public let updateActiveUserAccountPublisher = PassthroughSubject() + init( apiService: APIService, authenticationService: AuthenticationService From 37d77e9cf8773e2bc5cf69bdc5c9244d0bd8d2ca Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:40:32 +0100 Subject: [PATCH 244/598] New translations Localizable.stringsdict (Czech) --- .../input/cs.lproj/Localizable.stringsdict | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/Localization/StringsConvertor/input/cs.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/cs.lproj/Localizable.stringsdict index 827bd79e6..805ac70f2 100644 --- a/Localization/StringsConvertor/input/cs.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/cs.lproj/Localizable.stringsdict @@ -62,6 +62,26 @@ %ld znaků + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + %#@character_count@ left + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 character + few + %ld characters + many + %ld characters + other + %ld characters + + plural.count.followed_by_and_mutual NSStringLocalizedFormatKey From 96740d2e20e2a422d76d6cfd34b34f2e9d137f1c Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:40:33 +0100 Subject: [PATCH 245/598] New translations app.json (Romanian) --- Localization/StringsConvertor/input/ro.lproj/app.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/ro.lproj/app.json b/Localization/StringsConvertor/input/ro.lproj/app.json index a9d3804fa..e50c741b6 100644 --- a/Localization/StringsConvertor/input/ro.lproj/app.json +++ b/Localization/StringsConvertor/input/ro.lproj/app.json @@ -417,7 +417,9 @@ "custom_emoji_picker": "Custom Emoji Picker", "enable_content_warning": "Enable Content Warning", "disable_content_warning": "Disable Content Warning", - "post_visibility_menu": "Post Visibility Menu" + "post_visibility_menu": "Post Visibility Menu", + "post_options": "Post Options", + "posting_as": "Posting as %s" }, "keyboard": { "discard_post": "Discard Post", From 55e8cf845f35e059bf9fccabba11e5f63d2be833 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:40:34 +0100 Subject: [PATCH 246/598] New translations Localizable.stringsdict (Catalan) --- .../input/ca.lproj/Localizable.stringsdict | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/Localization/StringsConvertor/input/ca.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/ca.lproj/Localizable.stringsdict index cc28edbc6..06d1f0301 100644 --- a/Localization/StringsConvertor/input/ca.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/ca.lproj/Localizable.stringsdict @@ -50,6 +50,22 @@ %ld caràcters + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + %#@character_count@ left + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 character + other + %ld characters + + plural.count.followed_by_and_mutual NSStringLocalizedFormatKey From dd0685060a8722b006ac57c371e7589e3a17b981 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:40:35 +0100 Subject: [PATCH 247/598] New translations Localizable.stringsdict (Arabic) --- .../input/ar.lproj/Localizable.stringsdict | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/Localization/StringsConvertor/input/ar.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/ar.lproj/Localizable.stringsdict index 862d98184..a65082272 100644 --- a/Localization/StringsConvertor/input/ar.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/ar.lproj/Localizable.stringsdict @@ -74,6 +74,30 @@ %ld حَرف + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + %#@character_count@ left + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + zero + %ld characters + one + 1 character + two + %ld characters + few + %ld characters + many + %ld characters + other + %ld characters + + plural.count.followed_by_and_mutual NSStringLocalizedFormatKey From bde6bb0a7b83dc31bd2b5c1d5da6bf91493a5a42 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:40:36 +0100 Subject: [PATCH 248/598] New translations Localizable.stringsdict (Spanish) --- .../input/es.lproj/Localizable.stringsdict | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/Localization/StringsConvertor/input/es.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/es.lproj/Localizable.stringsdict index def3d7bba..ca07b6b28 100644 --- a/Localization/StringsConvertor/input/es.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/es.lproj/Localizable.stringsdict @@ -50,6 +50,22 @@ %ld caracteres + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + %#@character_count@ left + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 character + other + %ld characters + + plural.count.followed_by_and_mutual NSStringLocalizedFormatKey From bfa9b0294279340a94d7cd4429d475d18002124a Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:40:37 +0100 Subject: [PATCH 249/598] New translations Localizable.stringsdict (French) --- .../input/fr.lproj/Localizable.stringsdict | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/Localization/StringsConvertor/input/fr.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/fr.lproj/Localizable.stringsdict index d9d860a47..37f280de4 100644 --- a/Localization/StringsConvertor/input/fr.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/fr.lproj/Localizable.stringsdict @@ -50,6 +50,22 @@ %ld caractères + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + %#@character_count@ left + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 character + other + %ld characters + + plural.count.followed_by_and_mutual NSStringLocalizedFormatKey From 839816029a015e9b0a93f92fe71e30c9e0d1e045 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:40:38 +0100 Subject: [PATCH 250/598] New translations Localizable.stringsdict (Romanian) --- .../input/ro.lproj/Localizable.stringsdict | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/Localization/StringsConvertor/input/ro.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/ro.lproj/Localizable.stringsdict index 7ae5a1c79..9df2162b0 100644 --- a/Localization/StringsConvertor/input/ro.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/ro.lproj/Localizable.stringsdict @@ -56,6 +56,24 @@ %ld characters + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + %#@character_count@ left + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 character + few + %ld characters + other + %ld characters + + plural.count.followed_by_and_mutual NSStringLocalizedFormatKey From 8438fbf0f8d51774dc8fd5ab04a6224e0c6dc6a8 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:40:39 +0100 Subject: [PATCH 251/598] New translations app.json (Japanese) --- Localization/StringsConvertor/input/ja.lproj/app.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/ja.lproj/app.json b/Localization/StringsConvertor/input/ja.lproj/app.json index 9ff2a60a6..a18347581 100644 --- a/Localization/StringsConvertor/input/ja.lproj/app.json +++ b/Localization/StringsConvertor/input/ja.lproj/app.json @@ -417,7 +417,9 @@ "custom_emoji_picker": "カスタム絵文字ピッカー", "enable_content_warning": "閲覧注意を有効にする", "disable_content_warning": "閲覧注意を無効にする", - "post_visibility_menu": "投稿の表示メニュー" + "post_visibility_menu": "投稿の表示メニュー", + "post_options": "Post Options", + "posting_as": "Posting as %s" }, "keyboard": { "discard_post": "投稿を破棄", From 3241258fbff7e7c3cf27c04fec9604a4052c3162 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:40:40 +0100 Subject: [PATCH 252/598] New translations app.json (Finnish) --- Localization/StringsConvertor/input/fi.lproj/app.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/fi.lproj/app.json b/Localization/StringsConvertor/input/fi.lproj/app.json index a42642786..b98167c35 100644 --- a/Localization/StringsConvertor/input/fi.lproj/app.json +++ b/Localization/StringsConvertor/input/fi.lproj/app.json @@ -417,7 +417,9 @@ "custom_emoji_picker": "Mukautettu emojivalitsin", "enable_content_warning": "Ota sisältövaroitus käyttöön", "disable_content_warning": "Poista sisältövaroitus käytöstä", - "post_visibility_menu": "Julkaisun näkyvyysvalikko" + "post_visibility_menu": "Julkaisun näkyvyysvalikko", + "post_options": "Post Options", + "posting_as": "Posting as %s" }, "keyboard": { "discard_post": "Hylkää julkaisu", From ffbd2ba00a8568c3f8a49342ec60c405fd8cda86 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:40:41 +0100 Subject: [PATCH 253/598] New translations app.json (Basque) --- Localization/StringsConvertor/input/eu.lproj/app.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/eu.lproj/app.json b/Localization/StringsConvertor/input/eu.lproj/app.json index 3f58f522c..c4cecfe59 100644 --- a/Localization/StringsConvertor/input/eu.lproj/app.json +++ b/Localization/StringsConvertor/input/eu.lproj/app.json @@ -417,7 +417,9 @@ "custom_emoji_picker": "Emoji pertsonalizatuen hautatzailea", "enable_content_warning": "Gaitu edukiaren abisua", "disable_content_warning": "Desgaitu edukiaren abisua", - "post_visibility_menu": "Bidalketaren ikusgaitasunaren menua" + "post_visibility_menu": "Bidalketaren ikusgaitasunaren menua", + "post_options": "Post Options", + "posting_as": "Posting as %s" }, "keyboard": { "discard_post": "Baztertu bidalketa", From 6a80afbec6feeac8b7d75de4dfc3450513b15622 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:40:43 +0100 Subject: [PATCH 254/598] New translations app.json (German) --- Localization/StringsConvertor/input/de.lproj/app.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/de.lproj/app.json b/Localization/StringsConvertor/input/de.lproj/app.json index 481f07a4a..ce5dc4d3a 100644 --- a/Localization/StringsConvertor/input/de.lproj/app.json +++ b/Localization/StringsConvertor/input/de.lproj/app.json @@ -417,7 +417,9 @@ "custom_emoji_picker": "Benutzerdefinierter Emojiwähler", "enable_content_warning": "Inhaltswarnung einschalten", "disable_content_warning": "Inhaltswarnung ausschalten", - "post_visibility_menu": "Sichtbarkeitsmenü" + "post_visibility_menu": "Sichtbarkeitsmenü", + "post_options": "Post Options", + "posting_as": "Posting as %s" }, "keyboard": { "discard_post": "Beitrag verwerfen", From 7e9228e0469ab7d4e56c98d25140a56a8a2ab33a Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:40:43 +0100 Subject: [PATCH 255/598] New translations app.json (Danish) --- Localization/StringsConvertor/input/da.lproj/app.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/da.lproj/app.json b/Localization/StringsConvertor/input/da.lproj/app.json index a6a971860..25f06ad83 100644 --- a/Localization/StringsConvertor/input/da.lproj/app.json +++ b/Localization/StringsConvertor/input/da.lproj/app.json @@ -417,7 +417,9 @@ "custom_emoji_picker": "Custom Emoji Picker", "enable_content_warning": "Enable Content Warning", "disable_content_warning": "Disable Content Warning", - "post_visibility_menu": "Post Visibility Menu" + "post_visibility_menu": "Post Visibility Menu", + "post_options": "Post Options", + "posting_as": "Posting as %s" }, "keyboard": { "discard_post": "Discard Post", From 828ce82fb081d0fb3a309fb4b6eec2f3174ed27e Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:40:44 +0100 Subject: [PATCH 256/598] New translations app.json (Catalan) --- Localization/StringsConvertor/input/ca.lproj/app.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/ca.lproj/app.json b/Localization/StringsConvertor/input/ca.lproj/app.json index 7164d1d12..b27042d0f 100644 --- a/Localization/StringsConvertor/input/ca.lproj/app.json +++ b/Localization/StringsConvertor/input/ca.lproj/app.json @@ -417,7 +417,9 @@ "custom_emoji_picker": "Selector d'Emoji Personalitzat", "enable_content_warning": "Activa l'Avís de Contingut", "disable_content_warning": "Desactiva l'Avís de Contingut", - "post_visibility_menu": "Menú de Visibilitat de Publicació" + "post_visibility_menu": "Menú de Visibilitat de Publicació", + "post_options": "Post Options", + "posting_as": "Posting as %s" }, "keyboard": { "discard_post": "Descarta la Publicació", From 946b798abbefea71fb90f7aebd9bf90d47b82990 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:40:46 +0100 Subject: [PATCH 257/598] New translations app.json (Arabic) --- Localization/StringsConvertor/input/ar.lproj/app.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/ar.lproj/app.json b/Localization/StringsConvertor/input/ar.lproj/app.json index 4c5ac4c8b..ebea98b0c 100644 --- a/Localization/StringsConvertor/input/ar.lproj/app.json +++ b/Localization/StringsConvertor/input/ar.lproj/app.json @@ -417,7 +417,9 @@ "custom_emoji_picker": "منتقي الرموز التعبيرية المُخصَّص", "enable_content_warning": "تفعيل تحذير المُحتَوى", "disable_content_warning": "تعطيل تحذير المُحتَوى", - "post_visibility_menu": "قائمة ظهور المنشور" + "post_visibility_menu": "قائمة ظهور المنشور", + "post_options": "Post Options", + "posting_as": "Posting as %s" }, "keyboard": { "discard_post": "تجاهُل المنشور", From a62e16048aafbe192f61f67973b6c72ec3e5d893 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:40:47 +0100 Subject: [PATCH 258/598] New translations app.json (Spanish) --- Localization/StringsConvertor/input/es.lproj/app.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/es.lproj/app.json b/Localization/StringsConvertor/input/es.lproj/app.json index 7eaff340d..5398df49f 100644 --- a/Localization/StringsConvertor/input/es.lproj/app.json +++ b/Localization/StringsConvertor/input/es.lproj/app.json @@ -417,7 +417,9 @@ "custom_emoji_picker": "Selector de Emojis Personalizados", "enable_content_warning": "Activar Advertencia de Contenido", "disable_content_warning": "Desactivar Advertencia de Contenido", - "post_visibility_menu": "Menú de Visibilidad de la Publicación" + "post_visibility_menu": "Menú de Visibilidad de la Publicación", + "post_options": "Post Options", + "posting_as": "Posting as %s" }, "keyboard": { "discard_post": "Descartar Publicación", From 10a5a9905642eff7cbe06247f652a2bb70ec0d12 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:40:48 +0100 Subject: [PATCH 259/598] New translations app.json (Italian) --- Localization/StringsConvertor/input/it.lproj/app.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/it.lproj/app.json b/Localization/StringsConvertor/input/it.lproj/app.json index 73f42d1eb..bfd7811e2 100644 --- a/Localization/StringsConvertor/input/it.lproj/app.json +++ b/Localization/StringsConvertor/input/it.lproj/app.json @@ -417,7 +417,9 @@ "custom_emoji_picker": "Selettore Emoji personalizzato", "enable_content_warning": "Abilita avvertimento contenuti", "disable_content_warning": "Disabilita avviso di contenuti", - "post_visibility_menu": "Menu di visibilità del post" + "post_visibility_menu": "Menu di visibilità del post", + "post_options": "Post Options", + "posting_as": "Posting as %s" }, "keyboard": { "discard_post": "Scarta post", From 9fb3966f1e47d3d0c1927d5d9743a1d2d499fd1d Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:40:49 +0100 Subject: [PATCH 260/598] New translations app.json (French) --- Localization/StringsConvertor/input/fr.lproj/app.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/fr.lproj/app.json b/Localization/StringsConvertor/input/fr.lproj/app.json index 25bb6e511..674d0f8ca 100644 --- a/Localization/StringsConvertor/input/fr.lproj/app.json +++ b/Localization/StringsConvertor/input/fr.lproj/app.json @@ -417,7 +417,9 @@ "custom_emoji_picker": "Sélecteur d’émojis personnalisés", "enable_content_warning": "Basculer l’avertissement de contenu", "disable_content_warning": "Désactiver l'avertissement de contenu", - "post_visibility_menu": "Menu de Visibilité de la publication" + "post_visibility_menu": "Menu de Visibilité de la publication", + "post_options": "Post Options", + "posting_as": "Posting as %s" }, "keyboard": { "discard_post": "Rejeter la publication", From 43588148eca59129f47f2190bf3eca49663cf2ad Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:40:50 +0100 Subject: [PATCH 261/598] New translations app.json (Czech) --- Localization/StringsConvertor/input/cs.lproj/app.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/cs.lproj/app.json b/Localization/StringsConvertor/input/cs.lproj/app.json index 4050352f4..02e7f5cec 100644 --- a/Localization/StringsConvertor/input/cs.lproj/app.json +++ b/Localization/StringsConvertor/input/cs.lproj/app.json @@ -417,7 +417,9 @@ "custom_emoji_picker": "Vlastní výběr Emoji", "enable_content_warning": "Povolit upozornění na obsah", "disable_content_warning": "Vypnout upozornění na obsah", - "post_visibility_menu": "Menu viditelnosti příspěvku" + "post_visibility_menu": "Menu viditelnosti příspěvku", + "post_options": "Post Options", + "posting_as": "Posting as %s" }, "keyboard": { "discard_post": "Zahodit příspěvek", From 28bd2dc4c18e3c48eac7597d87d29d2e3bb8eb59 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:40:51 +0100 Subject: [PATCH 262/598] New translations Localizable.stringsdict (German) --- .../input/de.lproj/Localizable.stringsdict | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/Localization/StringsConvertor/input/de.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/de.lproj/Localizable.stringsdict index f60c6b0d7..1965fd02b 100644 --- a/Localization/StringsConvertor/input/de.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/de.lproj/Localizable.stringsdict @@ -50,6 +50,22 @@ %ld Zeichen + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + %#@character_count@ left + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 character + other + %ld characters + + plural.count.followed_by_and_mutual NSStringLocalizedFormatKey From d87959321ed0e79c66b117fa51fe3dc984c065e5 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:40:52 +0100 Subject: [PATCH 263/598] New translations Localizable.stringsdict (Scottish Gaelic) --- .../input/gd.lproj/Localizable.stringsdict | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/Localization/StringsConvertor/input/gd.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/gd.lproj/Localizable.stringsdict index d0ccb5f41..45ba1e156 100644 --- a/Localization/StringsConvertor/input/gd.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/gd.lproj/Localizable.stringsdict @@ -62,6 +62,26 @@ %ld caractar + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + %#@character_count@ left + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 character + two + %ld characters + few + %ld characters + other + %ld characters + + plural.count.followed_by_and_mutual NSStringLocalizedFormatKey From 70f42ac890147f72a4f93486794fd2bac60ea0f8 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:40:53 +0100 Subject: [PATCH 264/598] New translations app.json (Kurmanji (Kurdish)) --- Localization/StringsConvertor/input/kmr.lproj/app.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/kmr.lproj/app.json b/Localization/StringsConvertor/input/kmr.lproj/app.json index 098f514ee..1fa54d8ef 100644 --- a/Localization/StringsConvertor/input/kmr.lproj/app.json +++ b/Localization/StringsConvertor/input/kmr.lproj/app.json @@ -417,7 +417,9 @@ "custom_emoji_picker": "Hilbijêrê emojî yên kesanekirî", "enable_content_warning": "Hişyariya naverokê çalak bike", "disable_content_warning": "Hişyariya naverokê neçalak bike", - "post_visibility_menu": "Kulîna xuyabûna şandiyê" + "post_visibility_menu": "Kulîna xuyabûna şandiyê", + "post_options": "Post Options", + "posting_as": "Posting as %s" }, "keyboard": { "discard_post": "Şandî paşguh bike", From 77d753a2353b5acdb93615269fb2c87b59aaaaee Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:40:55 +0100 Subject: [PATCH 265/598] New translations app.json (Latvian) --- Localization/StringsConvertor/input/lv.lproj/app.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/lv.lproj/app.json b/Localization/StringsConvertor/input/lv.lproj/app.json index 2835f0887..8a4b3e921 100644 --- a/Localization/StringsConvertor/input/lv.lproj/app.json +++ b/Localization/StringsConvertor/input/lv.lproj/app.json @@ -417,7 +417,9 @@ "custom_emoji_picker": "Custom Emoji Picker", "enable_content_warning": "Enable Content Warning", "disable_content_warning": "Disable Content Warning", - "post_visibility_menu": "Post Visibility Menu" + "post_visibility_menu": "Post Visibility Menu", + "post_options": "Post Options", + "posting_as": "Posting as %s" }, "keyboard": { "discard_post": "Discard Post", From c74f062b27eac0a916c665834713b582ae129a57 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:40:56 +0100 Subject: [PATCH 266/598] New translations app.json (Hindi) --- Localization/StringsConvertor/input/hi.lproj/app.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/hi.lproj/app.json b/Localization/StringsConvertor/input/hi.lproj/app.json index f0fedf75f..2c46d023d 100644 --- a/Localization/StringsConvertor/input/hi.lproj/app.json +++ b/Localization/StringsConvertor/input/hi.lproj/app.json @@ -417,7 +417,9 @@ "custom_emoji_picker": "Custom Emoji Picker", "enable_content_warning": "Enable Content Warning", "disable_content_warning": "Disable Content Warning", - "post_visibility_menu": "Post Visibility Menu" + "post_visibility_menu": "Post Visibility Menu", + "post_options": "Post Options", + "posting_as": "Posting as %s" }, "keyboard": { "discard_post": "Discard Post", From c5dc8dafdfd8ca69d98bd81586227b7dd265ef45 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:40:57 +0100 Subject: [PATCH 267/598] New translations app.json (English, United States) --- Localization/StringsConvertor/input/en-US.lproj/app.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/en-US.lproj/app.json b/Localization/StringsConvertor/input/en-US.lproj/app.json index a6a971860..25f06ad83 100644 --- a/Localization/StringsConvertor/input/en-US.lproj/app.json +++ b/Localization/StringsConvertor/input/en-US.lproj/app.json @@ -417,7 +417,9 @@ "custom_emoji_picker": "Custom Emoji Picker", "enable_content_warning": "Enable Content Warning", "disable_content_warning": "Disable Content Warning", - "post_visibility_menu": "Post Visibility Menu" + "post_visibility_menu": "Post Visibility Menu", + "post_options": "Post Options", + "posting_as": "Posting as %s" }, "keyboard": { "discard_post": "Discard Post", From efdeab68c79099ddaca4cdedb730557aaf4d9adf Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:40:58 +0100 Subject: [PATCH 268/598] New translations app.json (Welsh) --- Localization/StringsConvertor/input/cy.lproj/app.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/cy.lproj/app.json b/Localization/StringsConvertor/input/cy.lproj/app.json index f36fe7d16..a5de5143a 100644 --- a/Localization/StringsConvertor/input/cy.lproj/app.json +++ b/Localization/StringsConvertor/input/cy.lproj/app.json @@ -417,7 +417,9 @@ "custom_emoji_picker": "Custom Emoji Picker", "enable_content_warning": "Enable Content Warning", "disable_content_warning": "Disable Content Warning", - "post_visibility_menu": "Post Visibility Menu" + "post_visibility_menu": "Post Visibility Menu", + "post_options": "Post Options", + "posting_as": "Posting as %s" }, "keyboard": { "discard_post": "Discard Post", From 5a624b491a645ac7fb779128907ff0684df7c759 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:40:59 +0100 Subject: [PATCH 269/598] New translations app.json (Sinhala) --- Localization/StringsConvertor/input/si.lproj/app.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/si.lproj/app.json b/Localization/StringsConvertor/input/si.lproj/app.json index 816536440..1bc8b3036 100644 --- a/Localization/StringsConvertor/input/si.lproj/app.json +++ b/Localization/StringsConvertor/input/si.lproj/app.json @@ -417,7 +417,9 @@ "custom_emoji_picker": "Custom Emoji Picker", "enable_content_warning": "Enable Content Warning", "disable_content_warning": "Disable Content Warning", - "post_visibility_menu": "Post Visibility Menu" + "post_visibility_menu": "Post Visibility Menu", + "post_options": "Post Options", + "posting_as": "Posting as %s" }, "keyboard": { "discard_post": "Discard Post", From c8db5833cd508613ff695604153b7669533f1784 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:41:00 +0100 Subject: [PATCH 270/598] New translations app.json (Swedish) --- Localization/StringsConvertor/input/sv.lproj/app.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/sv.lproj/app.json b/Localization/StringsConvertor/input/sv.lproj/app.json index c740609c9..938134eaa 100644 --- a/Localization/StringsConvertor/input/sv.lproj/app.json +++ b/Localization/StringsConvertor/input/sv.lproj/app.json @@ -417,7 +417,9 @@ "custom_emoji_picker": "Anpassad emoji-väljare", "enable_content_warning": "Aktivera innehållsvarning", "disable_content_warning": "Inaktivera innehållsvarning", - "post_visibility_menu": "Inläggssynlighetsmeny" + "post_visibility_menu": "Inläggssynlighetsmeny", + "post_options": "Inläggsalternativ", + "posting_as": "Postar som %s" }, "keyboard": { "discard_post": "Släng inlägget", From 8964159a7a1d97b6158ccbba2bf274d65420f64c Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:41:01 +0100 Subject: [PATCH 271/598] New translations app.json (Sorani (Kurdish)) --- Localization/StringsConvertor/input/ckb.lproj/app.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/ckb.lproj/app.json b/Localization/StringsConvertor/input/ckb.lproj/app.json index 25452f38b..b8cf48fbe 100644 --- a/Localization/StringsConvertor/input/ckb.lproj/app.json +++ b/Localization/StringsConvertor/input/ckb.lproj/app.json @@ -417,7 +417,9 @@ "custom_emoji_picker": "هەڵبژێری ئیمۆجی", "enable_content_warning": "ئاگاداریی ناوەڕۆک چالاک بکە", "disable_content_warning": "ئاگاداریی ناوەڕۆک ناچالاک بکە", - "post_visibility_menu": "پێڕستی شێوازی دەرکەوتنی پۆست" + "post_visibility_menu": "پێڕستی شێوازی دەرکەوتنی پۆست", + "post_options": "Post Options", + "posting_as": "Posting as %s" }, "keyboard": { "discard_post": "پۆستەکە هەڵوەشێنەوە", From c450c89e749f59108dadbe490c91ef4c4a67936a Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:41:03 +0100 Subject: [PATCH 272/598] New translations app.json (Spanish, Argentina) --- .../StringsConvertor/input/es-AR.lproj/app.json | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/Localization/StringsConvertor/input/es-AR.lproj/app.json b/Localization/StringsConvertor/input/es-AR.lproj/app.json index 309cf4d34..e54100c41 100644 --- a/Localization/StringsConvertor/input/es-AR.lproj/app.json +++ b/Localization/StringsConvertor/input/es-AR.lproj/app.json @@ -137,10 +137,10 @@ "closed": "Cerrada" }, "meta_entity": { - "url": "Link: %s", - "hashtag": "Hashtag: %s", - "mention": "Show Profile: %s", - "email": "Email address: %s" + "url": "Enlace: %s", + "hashtag": "Etiqueta: %s", + "mention": "Mostrar perfil: %s", + "email": "Dirección de correo electrónico: %s" }, "actions": { "reply": "Responder", @@ -417,7 +417,9 @@ "custom_emoji_picker": "Selector de emoji personalizado", "enable_content_warning": "Habilitar advertencia de contenido", "disable_content_warning": "Deshabilitar advertencia de contenido", - "post_visibility_menu": "Menú de visibilidad del mensaje" + "post_visibility_menu": "Menú de visibilidad del mensaje", + "post_options": "Opciones de mensaje", + "posting_as": "Enviar como %s" }, "keyboard": { "discard_post": "Descartar mensaje", @@ -706,7 +708,7 @@ "accessibility_hint": "Tocá dos veces para descartar este asistente" }, "bookmark": { - "title": "Bookmarks" + "title": "Marcadores" } } } From 8cf3f88e6a0bfc1dabf1c224e4f7dea413e1ce51 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:41:04 +0100 Subject: [PATCH 273/598] New translations Localizable.stringsdict (Korean) --- .../input/ko.lproj/Localizable.stringsdict | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/Localization/StringsConvertor/input/ko.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/ko.lproj/Localizable.stringsdict index 9628be614..644fd007a 100644 --- a/Localization/StringsConvertor/input/ko.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/ko.lproj/Localizable.stringsdict @@ -44,6 +44,20 @@ %ld 글자 + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + %#@character_count@ left + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + other + %ld characters + + plural.count.followed_by_and_mutual NSStringLocalizedFormatKey From cfca1ea5526f89058a697612af1e2bf19b7bd344 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:41:05 +0100 Subject: [PATCH 274/598] New translations app.json (Korean) --- Localization/StringsConvertor/input/ko.lproj/app.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/ko.lproj/app.json b/Localization/StringsConvertor/input/ko.lproj/app.json index 826ac389c..fa40d14a7 100644 --- a/Localization/StringsConvertor/input/ko.lproj/app.json +++ b/Localization/StringsConvertor/input/ko.lproj/app.json @@ -417,7 +417,9 @@ "custom_emoji_picker": "커스텀 에모지 선택기", "enable_content_warning": "열람 주의 설정", "disable_content_warning": "열람 주의 해제", - "post_visibility_menu": "게시물 공개범위 메뉴" + "post_visibility_menu": "게시물 공개범위 메뉴", + "post_options": "Post Options", + "posting_as": "Posting as %s" }, "keyboard": { "discard_post": "글 버리기", From 114cdae5f9083d73b960d2a3a4a4884c42ef4146 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:41:06 +0100 Subject: [PATCH 275/598] New translations app.json (Kabyle) --- Localization/StringsConvertor/input/kab.lproj/app.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/kab.lproj/app.json b/Localization/StringsConvertor/input/kab.lproj/app.json index 9c5d7659a..194a2c681 100644 --- a/Localization/StringsConvertor/input/kab.lproj/app.json +++ b/Localization/StringsConvertor/input/kab.lproj/app.json @@ -417,7 +417,9 @@ "custom_emoji_picker": "Amefran n yimujiten udmawanen", "enable_content_warning": "Rmed alɣu n ugbur", "disable_content_warning": "Sens alɣu n ugbur", - "post_visibility_menu": "Umuɣ n ubani n tsuffeɣt" + "post_visibility_menu": "Umuɣ n ubani n tsuffeɣt", + "post_options": "Post Options", + "posting_as": "Posting as %s" }, "keyboard": { "discard_post": "Sefsex tasuffeɣt", From 020e8add8d4153769c0a5b0126e262fca120db13 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:41:07 +0100 Subject: [PATCH 276/598] New translations app.json (Vietnamese) --- Localization/StringsConvertor/input/vi.lproj/app.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/vi.lproj/app.json b/Localization/StringsConvertor/input/vi.lproj/app.json index 5b7696727..cd20997c3 100644 --- a/Localization/StringsConvertor/input/vi.lproj/app.json +++ b/Localization/StringsConvertor/input/vi.lproj/app.json @@ -417,7 +417,9 @@ "custom_emoji_picker": "Chọn emoji", "enable_content_warning": "Bật nội dung ẩn", "disable_content_warning": "Tắt nội dung ẩn", - "post_visibility_menu": "Menu hiển thị tút" + "post_visibility_menu": "Menu hiển thị tút", + "post_options": "Post Options", + "posting_as": "Posting as %s" }, "keyboard": { "discard_post": "Hủy đăng tút", From 37e24a0eeacc8203f306ab0e3ae670716b39f1a4 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:41:08 +0100 Subject: [PATCH 277/598] New translations app.json (Thai) --- Localization/StringsConvertor/input/th.lproj/app.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/th.lproj/app.json b/Localization/StringsConvertor/input/th.lproj/app.json index 9b4316025..f9c30f01d 100644 --- a/Localization/StringsConvertor/input/th.lproj/app.json +++ b/Localization/StringsConvertor/input/th.lproj/app.json @@ -417,7 +417,9 @@ "custom_emoji_picker": "ตัวเลือกอีโมจิที่กำหนดเอง", "enable_content_warning": "เปิดใช้งานคำเตือนเนื้อหา", "disable_content_warning": "ปิดใช้งานคำเตือนเนื้อหา", - "post_visibility_menu": "เมนูการมองเห็นโพสต์" + "post_visibility_menu": "เมนูการมองเห็นโพสต์", + "post_options": "Post Options", + "posting_as": "Posting as %s" }, "keyboard": { "discard_post": "ละทิ้งโพสต์", From 16754b1048cdd912fe9bf6dfc32dec3394461732 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:41:09 +0100 Subject: [PATCH 278/598] New translations app.json (Portuguese, Brazilian) --- Localization/StringsConvertor/input/pt-BR.lproj/app.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/pt-BR.lproj/app.json b/Localization/StringsConvertor/input/pt-BR.lproj/app.json index 26e6edb76..c7abb1da1 100644 --- a/Localization/StringsConvertor/input/pt-BR.lproj/app.json +++ b/Localization/StringsConvertor/input/pt-BR.lproj/app.json @@ -417,7 +417,9 @@ "custom_emoji_picker": "Custom Emoji Picker", "enable_content_warning": "Enable Content Warning", "disable_content_warning": "Disable Content Warning", - "post_visibility_menu": "Post Visibility Menu" + "post_visibility_menu": "Post Visibility Menu", + "post_options": "Post Options", + "posting_as": "Posting as %s" }, "keyboard": { "discard_post": "Discard Post", From 40e505a8515f674a3e278e82bedd8ace450af884 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:41:10 +0100 Subject: [PATCH 279/598] New translations app.json (Indonesian) --- Localization/StringsConvertor/input/id.lproj/app.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/id.lproj/app.json b/Localization/StringsConvertor/input/id.lproj/app.json index d942a22ad..91d31071b 100644 --- a/Localization/StringsConvertor/input/id.lproj/app.json +++ b/Localization/StringsConvertor/input/id.lproj/app.json @@ -417,7 +417,9 @@ "custom_emoji_picker": "Custom Emoji Picker", "enable_content_warning": "Aktifkan Peringatan Konten", "disable_content_warning": "Nonaktifkan Peringatan Konten", - "post_visibility_menu": "Post Visibility Menu" + "post_visibility_menu": "Post Visibility Menu", + "post_options": "Post Options", + "posting_as": "Posting as %s" }, "keyboard": { "discard_post": "Discard Post", From 0da6df18e952eba0843b952747f400002d8428ad Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:41:11 +0100 Subject: [PATCH 280/598] New translations app.json (Scottish Gaelic) --- Localization/StringsConvertor/input/gd.lproj/app.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/gd.lproj/app.json b/Localization/StringsConvertor/input/gd.lproj/app.json index c1d17f813..214279887 100644 --- a/Localization/StringsConvertor/input/gd.lproj/app.json +++ b/Localization/StringsConvertor/input/gd.lproj/app.json @@ -417,7 +417,9 @@ "custom_emoji_picker": "Roghnaichear nan Emoji gnàthaichte", "enable_content_warning": "Cuir rabhadh susbainte an comas", "disable_content_warning": "Cuir rabhadh susbainte à comas", - "post_visibility_menu": "Clàr-taice faicsinneachd a’ phuist" + "post_visibility_menu": "Clàr-taice faicsinneachd a’ phuist", + "post_options": "Post Options", + "posting_as": "Posting as %s" }, "keyboard": { "discard_post": "Tilg air falbh am post", From 1a13afd692ed9246560002acc23670f12800b2a3 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:41:12 +0100 Subject: [PATCH 281/598] New translations app.json (Galician) --- Localization/StringsConvertor/input/gl.lproj/app.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/gl.lproj/app.json b/Localization/StringsConvertor/input/gl.lproj/app.json index 3c394be95..0eb82b142 100644 --- a/Localization/StringsConvertor/input/gl.lproj/app.json +++ b/Localization/StringsConvertor/input/gl.lproj/app.json @@ -417,7 +417,9 @@ "custom_emoji_picker": "Selector emoji personalizado", "enable_content_warning": "Marcar con Aviso sobre o contido", "disable_content_warning": "Retirar Aviso sobre o contido", - "post_visibility_menu": "Visibilidade da publicación" + "post_visibility_menu": "Visibilidade da publicación", + "post_options": "Post Options", + "posting_as": "Posting as %s" }, "keyboard": { "discard_post": "Descartar publicación", From 04ecfe47362c61a9ba0b5740d743c12d35b6d38e Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:41:13 +0100 Subject: [PATCH 282/598] New translations app.json (English) --- Localization/StringsConvertor/input/en.lproj/app.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/en.lproj/app.json b/Localization/StringsConvertor/input/en.lproj/app.json index a6a971860..25f06ad83 100644 --- a/Localization/StringsConvertor/input/en.lproj/app.json +++ b/Localization/StringsConvertor/input/en.lproj/app.json @@ -417,7 +417,9 @@ "custom_emoji_picker": "Custom Emoji Picker", "enable_content_warning": "Enable Content Warning", "disable_content_warning": "Disable Content Warning", - "post_visibility_menu": "Post Visibility Menu" + "post_visibility_menu": "Post Visibility Menu", + "post_options": "Post Options", + "posting_as": "Posting as %s" }, "keyboard": { "discard_post": "Discard Post", From 1a4b27835ec33dddb1629dd2bd75223be4b28e39 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:41:14 +0100 Subject: [PATCH 283/598] New translations app.json (Chinese Simplified) --- Localization/StringsConvertor/input/zh-Hans.lproj/app.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/zh-Hans.lproj/app.json b/Localization/StringsConvertor/input/zh-Hans.lproj/app.json index ddf89e159..2bfd04c8d 100644 --- a/Localization/StringsConvertor/input/zh-Hans.lproj/app.json +++ b/Localization/StringsConvertor/input/zh-Hans.lproj/app.json @@ -417,7 +417,9 @@ "custom_emoji_picker": "自定义表情选择器", "enable_content_warning": "启用内容警告", "disable_content_warning": "关闭内容警告", - "post_visibility_menu": "帖子可见性" + "post_visibility_menu": "帖子可见性", + "post_options": "Post Options", + "posting_as": "Posting as %s" }, "keyboard": { "discard_post": "丢弃帖子", From 0134aa8900c3c717c800dbab9961f008bdd2da29 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:41:15 +0100 Subject: [PATCH 284/598] New translations app.json (Russian) --- Localization/StringsConvertor/input/ru.lproj/app.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/ru.lproj/app.json b/Localization/StringsConvertor/input/ru.lproj/app.json index 798cdb4c5..1f82a35db 100644 --- a/Localization/StringsConvertor/input/ru.lproj/app.json +++ b/Localization/StringsConvertor/input/ru.lproj/app.json @@ -417,7 +417,9 @@ "custom_emoji_picker": "Меню пользовательских эмодзи", "enable_content_warning": "Добавить предупреждение о содержании", "disable_content_warning": "Убрать предупреждение о содержании", - "post_visibility_menu": "Меню видимости поста" + "post_visibility_menu": "Меню видимости поста", + "post_options": "Post Options", + "posting_as": "Posting as %s" }, "keyboard": { "discard_post": "Удалить пост", From 08d976d022c5b1d806620380e3355ae91ca4a25e Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:41:16 +0100 Subject: [PATCH 285/598] New translations app.json (Portuguese) --- Localization/StringsConvertor/input/pt.lproj/app.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/pt.lproj/app.json b/Localization/StringsConvertor/input/pt.lproj/app.json index a6a971860..25f06ad83 100644 --- a/Localization/StringsConvertor/input/pt.lproj/app.json +++ b/Localization/StringsConvertor/input/pt.lproj/app.json @@ -417,7 +417,9 @@ "custom_emoji_picker": "Custom Emoji Picker", "enable_content_warning": "Enable Content Warning", "disable_content_warning": "Disable Content Warning", - "post_visibility_menu": "Post Visibility Menu" + "post_visibility_menu": "Post Visibility Menu", + "post_options": "Post Options", + "posting_as": "Posting as %s" }, "keyboard": { "discard_post": "Discard Post", From 6bc7ce605018d1f1c20e8fcff446620381b8e75a Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:41:18 +0100 Subject: [PATCH 286/598] New translations app.json (Dutch) --- Localization/StringsConvertor/input/nl.lproj/app.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/nl.lproj/app.json b/Localization/StringsConvertor/input/nl.lproj/app.json index e0b2872fb..bc508d5b0 100644 --- a/Localization/StringsConvertor/input/nl.lproj/app.json +++ b/Localization/StringsConvertor/input/nl.lproj/app.json @@ -417,7 +417,9 @@ "custom_emoji_picker": "Eigen Emojikiezer", "enable_content_warning": "Inhoudswaarschuwing inschakelen", "disable_content_warning": "Inhoudswaarschuwing Uitschakelen", - "post_visibility_menu": "Berichtzichtbaarheidsmenu" + "post_visibility_menu": "Berichtzichtbaarheidsmenu", + "post_options": "Post Options", + "posting_as": "Posting as %s" }, "keyboard": { "discard_post": "Bericht Verwijderen", From 429b9b846477a9bf830500479559e01f2f776eb0 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:41:19 +0100 Subject: [PATCH 287/598] New translations Localizable.stringsdict (Swedish) --- .../input/sv.lproj/Localizable.stringsdict | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/Localization/StringsConvertor/input/sv.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/sv.lproj/Localizable.stringsdict index c7317903d..3cbfeae6d 100644 --- a/Localization/StringsConvertor/input/sv.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/sv.lproj/Localizable.stringsdict @@ -50,6 +50,22 @@ %ld tecken + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + %#@character_count@ kvar + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + %ld tecken + other + %ld tecken + + plural.count.followed_by_and_mutual NSStringLocalizedFormatKey From f284a699f34db1efa88f1cf6ef495e959f4ebb08 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:41:20 +0100 Subject: [PATCH 288/598] New translations app.json (Chinese Traditional) --- Localization/StringsConvertor/input/zh-Hant.lproj/app.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/zh-Hant.lproj/app.json b/Localization/StringsConvertor/input/zh-Hant.lproj/app.json index ab7343c99..4b2ea2f0f 100644 --- a/Localization/StringsConvertor/input/zh-Hant.lproj/app.json +++ b/Localization/StringsConvertor/input/zh-Hant.lproj/app.json @@ -417,7 +417,9 @@ "custom_emoji_picker": "自訂 emoji 選擇器", "enable_content_warning": "啟用內容警告", "disable_content_warning": "停用內容警告", - "post_visibility_menu": "嘟文可見性選單" + "post_visibility_menu": "嘟文可見性選單", + "post_options": "Post Options", + "posting_as": "Posting as %s" }, "keyboard": { "discard_post": "捨棄嘟文", From fe45e9ac251d3062062ab2e28910d2ddd44ac615 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:41:21 +0100 Subject: [PATCH 289/598] New translations Localizable.stringsdict (Slovenian) --- .../input/sl.lproj/Localizable.stringsdict | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/Localization/StringsConvertor/input/sl.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/sl.lproj/Localizable.stringsdict index 8f0bcb42b..742b78e87 100644 --- a/Localization/StringsConvertor/input/sl.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/sl.lproj/Localizable.stringsdict @@ -62,6 +62,26 @@ %ld znakov + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + %#@character_count@ left + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 character + two + %ld characters + few + %ld characters + other + %ld characters + + plural.count.followed_by_and_mutual NSStringLocalizedFormatKey From 1df93527843a46f2b5fa8bf6f04fecc3400ac9ba Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:41:22 +0100 Subject: [PATCH 290/598] New translations app.json (Turkish) --- Localization/StringsConvertor/input/tr.lproj/app.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/tr.lproj/app.json b/Localization/StringsConvertor/input/tr.lproj/app.json index 2abb92845..f363e3ab6 100644 --- a/Localization/StringsConvertor/input/tr.lproj/app.json +++ b/Localization/StringsConvertor/input/tr.lproj/app.json @@ -417,7 +417,9 @@ "custom_emoji_picker": "Özel Emoji Seçici", "enable_content_warning": "İçerik Uyarısını Etkinleştir", "disable_content_warning": "İçerik Uyarısını Kapat", - "post_visibility_menu": "Gönderi Görünürlüğü Menüsü" + "post_visibility_menu": "Gönderi Görünürlüğü Menüsü", + "post_options": "Post Options", + "posting_as": "Posting as %s" }, "keyboard": { "discard_post": "Gönderiyi İptal Et", From de0ed81d1e9186b1919cf4fbb5468cf8ddb08123 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:41:23 +0100 Subject: [PATCH 291/598] New translations app.json (Ukrainian) --- Localization/StringsConvertor/input/uk.lproj/app.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/uk.lproj/app.json b/Localization/StringsConvertor/input/uk.lproj/app.json index a6a971860..25f06ad83 100644 --- a/Localization/StringsConvertor/input/uk.lproj/app.json +++ b/Localization/StringsConvertor/input/uk.lproj/app.json @@ -417,7 +417,9 @@ "custom_emoji_picker": "Custom Emoji Picker", "enable_content_warning": "Enable Content Warning", "disable_content_warning": "Disable Content Warning", - "post_visibility_menu": "Post Visibility Menu" + "post_visibility_menu": "Post Visibility Menu", + "post_options": "Post Options", + "posting_as": "Posting as %s" }, "keyboard": { "discard_post": "Discard Post", From dfad727965514a5f72dbfaab54ee86a56e270427 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:41:24 +0100 Subject: [PATCH 292/598] New translations Localizable.stringsdict (Ukrainian) --- .../input/uk.lproj/Localizable.stringsdict | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/Localization/StringsConvertor/input/uk.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/uk.lproj/Localizable.stringsdict index cdf35477e..32e4cf9aa 100644 --- a/Localization/StringsConvertor/input/uk.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/uk.lproj/Localizable.stringsdict @@ -62,6 +62,26 @@ %ld characters + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + %#@character_count@ left + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 character + few + %ld characters + many + %ld characters + other + %ld characters + + plural.count.followed_by_and_mutual NSStringLocalizedFormatKey From 879211ac85c759b44eb7c22eb922b839ca058e80 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:41:25 +0100 Subject: [PATCH 293/598] New translations app.json (Slovenian) --- Localization/StringsConvertor/input/sl.lproj/app.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/sl.lproj/app.json b/Localization/StringsConvertor/input/sl.lproj/app.json index 37b62a45d..eb983b0fa 100644 --- a/Localization/StringsConvertor/input/sl.lproj/app.json +++ b/Localization/StringsConvertor/input/sl.lproj/app.json @@ -417,7 +417,9 @@ "custom_emoji_picker": "Izbirnik čustvenčkov po meri", "enable_content_warning": "Omogoči opozorilo o vsebini", "disable_content_warning": "Onemogoči opozorilo o vsebini", - "post_visibility_menu": "Meni vidnosti objave" + "post_visibility_menu": "Meni vidnosti objave", + "post_options": "Post Options", + "posting_as": "Posting as %s" }, "keyboard": { "discard_post": "Opusti objavo", From 144b83859ddf2aee63a807d1d8e7c407b9770d39 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:41:26 +0100 Subject: [PATCH 294/598] New translations Localizable.stringsdict (Danish) --- .../input/da.lproj/Localizable.stringsdict | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/Localization/StringsConvertor/input/da.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/da.lproj/Localizable.stringsdict index bdcae6ac9..eabdc3c32 100644 --- a/Localization/StringsConvertor/input/da.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/da.lproj/Localizable.stringsdict @@ -50,6 +50,22 @@ %ld characters + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + %#@character_count@ left + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 character + other + %ld characters + + plural.count.followed_by_and_mutual NSStringLocalizedFormatKey From 4f8c7fee1836573b821ea8b95c874bee3638dd36 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:41:27 +0100 Subject: [PATCH 295/598] New translations Localizable.stringsdict (Finnish) --- .../input/fi.lproj/Localizable.stringsdict | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/Localization/StringsConvertor/input/fi.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/fi.lproj/Localizable.stringsdict index 8048edf2d..ccfee35c9 100644 --- a/Localization/StringsConvertor/input/fi.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/fi.lproj/Localizable.stringsdict @@ -50,6 +50,22 @@ %ld merkkiä + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + %#@character_count@ left + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 character + other + %ld characters + + plural.count.followed_by_and_mutual NSStringLocalizedFormatKey From 29fc78a8d7d4bb4cb583fbcf909bf099e51aeaac Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:41:28 +0100 Subject: [PATCH 296/598] New translations Localizable.stringsdict (Italian) --- .../input/it.lproj/Localizable.stringsdict | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/Localization/StringsConvertor/input/it.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/it.lproj/Localizable.stringsdict index 38f986521..d4fc7d0ce 100644 --- a/Localization/StringsConvertor/input/it.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/it.lproj/Localizable.stringsdict @@ -50,6 +50,22 @@ %ld caratteri + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + %#@character_count@ left + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 character + other + %ld characters + + plural.count.followed_by_and_mutual NSStringLocalizedFormatKey From 1ccbdaeafa1acfb469d0584e6a9d9308850a251e Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:41:29 +0100 Subject: [PATCH 297/598] New translations Localizable.stringsdict (Basque) --- .../input/eu.lproj/Localizable.stringsdict | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/Localization/StringsConvertor/input/eu.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/eu.lproj/Localizable.stringsdict index 0159a7da9..057ca4010 100644 --- a/Localization/StringsConvertor/input/eu.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/eu.lproj/Localizable.stringsdict @@ -50,6 +50,22 @@ %ld karaktere + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + %#@character_count@ left + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 character + other + %ld characters + + plural.count.followed_by_and_mutual NSStringLocalizedFormatKey From 3f5688fe1a1e145722ee83c8d2d30c9292bd5ef8 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:41:30 +0100 Subject: [PATCH 298/598] New translations Localizable.stringsdict (Indonesian) --- .../input/id.lproj/Localizable.stringsdict | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/Localization/StringsConvertor/input/id.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/id.lproj/Localizable.stringsdict index 2635defb8..9b8aca01c 100644 --- a/Localization/StringsConvertor/input/id.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/id.lproj/Localizable.stringsdict @@ -44,6 +44,20 @@ %ld karakter + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + %#@character_count@ left + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + other + %ld characters + + plural.count.followed_by_and_mutual NSStringLocalizedFormatKey From 5825b90ac2ef230fc22c6791ab5395079bfb2526 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:41:31 +0100 Subject: [PATCH 299/598] New translations Localizable.stringsdict (Sorani (Kurdish)) --- .../input/ckb.lproj/Localizable.stringsdict | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/Localization/StringsConvertor/input/ckb.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/ckb.lproj/Localizable.stringsdict index 001a8a608..8116226ec 100644 --- a/Localization/StringsConvertor/input/ckb.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/ckb.lproj/Localizable.stringsdict @@ -50,6 +50,22 @@ %ld نووسە + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + %#@character_count@ left + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 character + other + %ld characters + + plural.count.followed_by_and_mutual NSStringLocalizedFormatKey From 134f8c4f73a450672d08c4b4cc5abee62baf1dd0 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:41:32 +0100 Subject: [PATCH 300/598] New translations Localizable.stringsdict (Kurmanji (Kurdish)) --- .../input/kmr.lproj/Localizable.stringsdict | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/Localization/StringsConvertor/input/kmr.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/kmr.lproj/Localizable.stringsdict index 77571439f..45d65bc71 100644 --- a/Localization/StringsConvertor/input/kmr.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/kmr.lproj/Localizable.stringsdict @@ -50,6 +50,22 @@ %ld tîp + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + %#@character_count@ left + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 character + other + %ld characters + + plural.count.followed_by_and_mutual NSStringLocalizedFormatKey From e33c81a1dcaf64ddb2bda7af5701228a5c9b9d82 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:41:33 +0100 Subject: [PATCH 301/598] New translations Localizable.stringsdict (Sinhala) --- .../input/si.lproj/Localizable.stringsdict | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/Localization/StringsConvertor/input/si.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/si.lproj/Localizable.stringsdict index bdcae6ac9..eabdc3c32 100644 --- a/Localization/StringsConvertor/input/si.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/si.lproj/Localizable.stringsdict @@ -50,6 +50,22 @@ %ld characters + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + %#@character_count@ left + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 character + other + %ld characters + + plural.count.followed_by_and_mutual NSStringLocalizedFormatKey From 0bdd2044474c13c52d8f508d630014b0ca74429f Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:41:34 +0100 Subject: [PATCH 302/598] New translations Localizable.stringsdict (Welsh) --- .../input/cy.lproj/Localizable.stringsdict | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/Localization/StringsConvertor/input/cy.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/cy.lproj/Localizable.stringsdict index 038eaffda..9e4c09959 100644 --- a/Localization/StringsConvertor/input/cy.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/cy.lproj/Localizable.stringsdict @@ -74,6 +74,30 @@ %ld characters + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + %#@character_count@ left + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + zero + %ld characters + one + 1 character + two + %ld characters + few + %ld characters + many + %ld characters + other + %ld characters + + plural.count.followed_by_and_mutual NSStringLocalizedFormatKey From 83822c96c2ed745d543cefa237b0c2c8a67f9e28 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:41:36 +0100 Subject: [PATCH 303/598] New translations Localizable.stringsdict (English, United States) --- .../input/en-US.lproj/Localizable.stringsdict | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/Localization/StringsConvertor/input/en-US.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/en-US.lproj/Localizable.stringsdict index bdcae6ac9..eabdc3c32 100644 --- a/Localization/StringsConvertor/input/en-US.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/en-US.lproj/Localizable.stringsdict @@ -50,6 +50,22 @@ %ld characters + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + %#@character_count@ left + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 character + other + %ld characters + + plural.count.followed_by_and_mutual NSStringLocalizedFormatKey From 8c2d1c74adbcf9ffbccd0600e136bfda00aff028 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:41:37 +0100 Subject: [PATCH 304/598] New translations Localizable.stringsdict (Hindi) --- .../input/hi.lproj/Localizable.stringsdict | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/Localization/StringsConvertor/input/hi.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/hi.lproj/Localizable.stringsdict index bdcae6ac9..eabdc3c32 100644 --- a/Localization/StringsConvertor/input/hi.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/hi.lproj/Localizable.stringsdict @@ -50,6 +50,22 @@ %ld characters + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + %#@character_count@ left + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 character + other + %ld characters + + plural.count.followed_by_and_mutual NSStringLocalizedFormatKey From 96e7fd24a46d3de752d2eac4327ed8529133a4a6 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:41:38 +0100 Subject: [PATCH 305/598] New translations Localizable.stringsdict (Latvian) --- .../input/lv.lproj/Localizable.stringsdict | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/Localization/StringsConvertor/input/lv.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/lv.lproj/Localizable.stringsdict index 25f32c98d..ac30b4f8b 100644 --- a/Localization/StringsConvertor/input/lv.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/lv.lproj/Localizable.stringsdict @@ -56,6 +56,24 @@ %ld characters + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + %#@character_count@ left + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + zero + %ld characters + one + 1 character + other + %ld characters + + plural.count.followed_by_and_mutual NSStringLocalizedFormatKey From fd9c040dbb7bc2ec07441e463cd2f2c14ac83866 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:41:39 +0100 Subject: [PATCH 306/598] New translations Localizable.stringsdict (Thai) --- .../input/th.lproj/Localizable.stringsdict | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/Localization/StringsConvertor/input/th.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/th.lproj/Localizable.stringsdict index 897d07eca..725e5c8a2 100644 --- a/Localization/StringsConvertor/input/th.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/th.lproj/Localizable.stringsdict @@ -44,6 +44,20 @@ %ld ตัวอักษร + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + %#@character_count@ left + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + other + %ld characters + + plural.count.followed_by_and_mutual NSStringLocalizedFormatKey From 3a8abf63a12765f76d8d2e48738968817212f1c0 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:41:40 +0100 Subject: [PATCH 307/598] New translations Localizable.stringsdict (Spanish, Argentina) --- .../input/es-AR.lproj/Localizable.stringsdict | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/Localization/StringsConvertor/input/es-AR.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/es-AR.lproj/Localizable.stringsdict index 2bd66395a..fb939a040 100644 --- a/Localization/StringsConvertor/input/es-AR.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/es-AR.lproj/Localizable.stringsdict @@ -50,6 +50,22 @@ %ld caracteres + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + Quedan %#@character_count@ + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 caracter + other + %ld caracteres + + plural.count.followed_by_and_mutual NSStringLocalizedFormatKey From b3503798b9dfa7a096b92e8f2b5052b72ae86b6c Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:41:41 +0100 Subject: [PATCH 308/598] New translations Localizable.stringsdict (Galician) --- .../input/gl.lproj/Localizable.stringsdict | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/Localization/StringsConvertor/input/gl.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/gl.lproj/Localizable.stringsdict index ff9d87c18..2224a13b3 100644 --- a/Localization/StringsConvertor/input/gl.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/gl.lproj/Localizable.stringsdict @@ -50,6 +50,22 @@ %ld caracteres + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + %#@character_count@ left + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 character + other + %ld characters + + plural.count.followed_by_and_mutual NSStringLocalizedFormatKey From ba4e2ad110accf239ae676ab8cab14d77439792e Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:41:41 +0100 Subject: [PATCH 309/598] New translations Localizable.stringsdict (Portuguese, Brazilian) --- .../input/pt-BR.lproj/Localizable.stringsdict | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/Localization/StringsConvertor/input/pt-BR.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/pt-BR.lproj/Localizable.stringsdict index ba1532740..982e25c0b 100644 --- a/Localization/StringsConvertor/input/pt-BR.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/pt-BR.lproj/Localizable.stringsdict @@ -50,6 +50,22 @@ %ld caracteres + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + %#@character_count@ left + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 character + other + %ld characters + + plural.count.followed_by_and_mutual NSStringLocalizedFormatKey From 8808905e035463b6e4360e5a63a6184d9fde5708 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:41:42 +0100 Subject: [PATCH 310/598] New translations Localizable.stringsdict (Vietnamese) --- .../input/vi.lproj/Localizable.stringsdict | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/Localization/StringsConvertor/input/vi.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/vi.lproj/Localizable.stringsdict index 6905b240e..d82694c21 100644 --- a/Localization/StringsConvertor/input/vi.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/vi.lproj/Localizable.stringsdict @@ -44,6 +44,20 @@ %ld ký tự + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + %#@character_count@ left + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + other + %ld characters + + plural.count.followed_by_and_mutual NSStringLocalizedFormatKey From c8c91ad892baeea3b6aa13cbf0577b48b4781ef2 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:41:44 +0100 Subject: [PATCH 311/598] New translations Localizable.stringsdict (English) --- .../input/en.lproj/Localizable.stringsdict | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/Localization/StringsConvertor/input/en.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/en.lproj/Localizable.stringsdict index bdcae6ac9..eabdc3c32 100644 --- a/Localization/StringsConvertor/input/en.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/en.lproj/Localizable.stringsdict @@ -50,6 +50,22 @@ %ld characters + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + %#@character_count@ left + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 character + other + %ld characters + + plural.count.followed_by_and_mutual NSStringLocalizedFormatKey From 519bc5935572d50fa7028ca1cd9d7cc1d6e33d32 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:41:45 +0100 Subject: [PATCH 312/598] New translations Localizable.stringsdict (Chinese Traditional) --- .../input/zh-Hant.lproj/Localizable.stringsdict | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/Localization/StringsConvertor/input/zh-Hant.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/zh-Hant.lproj/Localizable.stringsdict index c0ce0f9a2..936c2d48c 100644 --- a/Localization/StringsConvertor/input/zh-Hant.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/zh-Hant.lproj/Localizable.stringsdict @@ -44,6 +44,20 @@ %ld 個字 + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + %#@character_count@ left + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + other + %ld characters + + plural.count.followed_by_and_mutual NSStringLocalizedFormatKey From 02f159d52ad3d631e1fbd5761b9c2133a8d5d4d1 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:41:45 +0100 Subject: [PATCH 313/598] New translations Localizable.stringsdict (Chinese Simplified) --- .../input/zh-Hans.lproj/Localizable.stringsdict | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/Localization/StringsConvertor/input/zh-Hans.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/zh-Hans.lproj/Localizable.stringsdict index 5a7af3752..915a524b5 100644 --- a/Localization/StringsConvertor/input/zh-Hans.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/zh-Hans.lproj/Localizable.stringsdict @@ -44,6 +44,20 @@ %ld 个字符 + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + %#@character_count@ left + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + other + %ld characters + + plural.count.followed_by_and_mutual NSStringLocalizedFormatKey From cac5f0df860dee4b2af7eacf6d65d076c1ab9709 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:41:46 +0100 Subject: [PATCH 314/598] New translations Localizable.stringsdict (Turkish) --- .../input/tr.lproj/Localizable.stringsdict | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/Localization/StringsConvertor/input/tr.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/tr.lproj/Localizable.stringsdict index 29df92c2b..6ef7f4c75 100644 --- a/Localization/StringsConvertor/input/tr.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/tr.lproj/Localizable.stringsdict @@ -50,6 +50,22 @@ %ld karakter + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + %#@character_count@ left + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 character + other + %ld characters + + plural.count.followed_by_and_mutual NSStringLocalizedFormatKey From 532580bce79e170aecc681b9f73dc4292bcec52f Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:41:47 +0100 Subject: [PATCH 315/598] New translations Localizable.stringsdict (Russian) --- .../input/ru.lproj/Localizable.stringsdict | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/Localization/StringsConvertor/input/ru.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/ru.lproj/Localizable.stringsdict index afb29a6aa..c9552a9e4 100644 --- a/Localization/StringsConvertor/input/ru.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/ru.lproj/Localizable.stringsdict @@ -62,6 +62,26 @@ %ld символа осталось + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + %#@character_count@ left + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 character + few + %ld characters + many + %ld characters + other + %ld characters + + plural.count.followed_by_and_mutual NSStringLocalizedFormatKey From 1d422047e386fc1a77b7432be43c683bb13a0370 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:41:49 +0100 Subject: [PATCH 316/598] New translations Localizable.stringsdict (Portuguese) --- .../input/pt.lproj/Localizable.stringsdict | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/Localization/StringsConvertor/input/pt.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/pt.lproj/Localizable.stringsdict index bdcae6ac9..eabdc3c32 100644 --- a/Localization/StringsConvertor/input/pt.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/pt.lproj/Localizable.stringsdict @@ -50,6 +50,22 @@ %ld characters + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + %#@character_count@ left + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 character + other + %ld characters + + plural.count.followed_by_and_mutual NSStringLocalizedFormatKey From 8cba22bcf708caf429938bca30b578650d23874f Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:41:50 +0100 Subject: [PATCH 317/598] New translations Localizable.stringsdict (Dutch) --- .../input/nl.lproj/Localizable.stringsdict | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/Localization/StringsConvertor/input/nl.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/nl.lproj/Localizable.stringsdict index 314600ff7..84769b0c1 100644 --- a/Localization/StringsConvertor/input/nl.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/nl.lproj/Localizable.stringsdict @@ -50,6 +50,22 @@ %ld tekens + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + %#@character_count@ left + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 character + other + %ld characters + + plural.count.followed_by_and_mutual NSStringLocalizedFormatKey From 0efd014b3183790df496ff6c508977791ebf0cf4 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:41:50 +0100 Subject: [PATCH 318/598] New translations Localizable.stringsdict (Japanese) --- .../input/ja.lproj/Localizable.stringsdict | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/Localization/StringsConvertor/input/ja.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/ja.lproj/Localizable.stringsdict index cbc999738..795a971b7 100644 --- a/Localization/StringsConvertor/input/ja.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/ja.lproj/Localizable.stringsdict @@ -44,6 +44,20 @@ %ld 文字 + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + %#@character_count@ left + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + other + %ld characters + + plural.count.followed_by_and_mutual NSStringLocalizedFormatKey From bea62f6a67cbcf714ac3d64b7c75721453a0d539 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 13:41:51 +0100 Subject: [PATCH 319/598] New translations Localizable.stringsdict (Kabyle) --- .../input/kab.lproj/Localizable.stringsdict | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/Localization/StringsConvertor/input/kab.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/kab.lproj/Localizable.stringsdict index 7fc6a50bb..fd7cac605 100644 --- a/Localization/StringsConvertor/input/kab.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/kab.lproj/Localizable.stringsdict @@ -50,6 +50,22 @@ %ld yisekkilen + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + %#@character_count@ left + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 character + other + %ld characters + + plural.count.followed_by_and_mutual NSStringLocalizedFormatKey From 548543a8c0a0e70fa43a3d306721cf800ad4ddbe Mon Sep 17 00:00:00 2001 From: Marcus Kida Date: Mon, 14 Nov 2022 14:15:28 +0100 Subject: [PATCH 320/598] chore: Move updateActiveUserAccountPublisher to AuthenticationService --- Mastodon/Scene/Profile/ProfileViewController.swift | 2 +- Mastodon/Scene/Root/MainTab/MainTabBarController.swift | 2 +- Mastodon/Supporting Files/SceneDelegate.swift | 2 +- .../Sources/MastodonCore/Service/AuthenticationService.swift | 1 + MastodonSDK/Sources/MastodonCore/Service/InstanceService.swift | 1 - 5 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Mastodon/Scene/Profile/ProfileViewController.swift b/Mastodon/Scene/Profile/ProfileViewController.swift index 212e92d06..07d72c0b6 100644 --- a/Mastodon/Scene/Profile/ProfileViewController.swift +++ b/Mastodon/Scene/Profile/ProfileViewController.swift @@ -553,7 +553,7 @@ extension ProfileViewController { } // trigger authenticated user account update - viewModel.context.instanceService.updateActiveUserAccountPublisher.send() + viewModel.context.authenticationService.updateActiveUserAccountPublisher.send() DispatchQueue.main.asyncAfter(deadline: .now() + 0.3) { sender.endRefreshing() diff --git a/Mastodon/Scene/Root/MainTab/MainTabBarController.swift b/Mastodon/Scene/Root/MainTab/MainTabBarController.swift index 64066746a..987c1141b 100644 --- a/Mastodon/Scene/Root/MainTab/MainTabBarController.swift +++ b/Mastodon/Scene/Root/MainTab/MainTabBarController.swift @@ -313,7 +313,7 @@ extension MainTabBarController { let currentUserDisplayName = user.displayNameWithFallback ?? "no user" profileTabItem.accessibilityHint = L10n.Scene.AccountList.tabBarHint(currentUserDisplayName) - context.instanceService.updateActiveUserAccountPublisher + context.authenticationService.updateActiveUserAccountPublisher .sink { [weak self] in self?.updateUserAccount() } diff --git a/Mastodon/Supporting Files/SceneDelegate.swift b/Mastodon/Supporting Files/SceneDelegate.swift index fad0f0cd5..bf02b8031 100644 --- a/Mastodon/Supporting Files/SceneDelegate.swift +++ b/Mastodon/Supporting Files/SceneDelegate.swift @@ -111,7 +111,7 @@ class SceneDelegate: UIResponder, UIWindowSceneDelegate { AppContext.shared.statusFilterService.filterUpdatePublisher.send() // trigger authenticated user account update - AppContext.shared.instanceService.updateActiveUserAccountPublisher.send() + AppContext.shared.authenticationService.updateActiveUserAccountPublisher.send() if let shortcutItem = savedShortCutItem { Task { diff --git a/MastodonSDK/Sources/MastodonCore/Service/AuthenticationService.swift b/MastodonSDK/Sources/MastodonCore/Service/AuthenticationService.swift index 48da254c6..0e5160679 100644 --- a/MastodonSDK/Sources/MastodonCore/Service/AuthenticationService.swift +++ b/MastodonSDK/Sources/MastodonCore/Service/AuthenticationService.swift @@ -25,6 +25,7 @@ public final class AuthenticationService: NSObject { // output @Published public var mastodonAuthentications: [ManagedObjectRecord] = [] @Published public var mastodonAuthenticationBoxes: [MastodonAuthenticationBox] = [] + public let updateActiveUserAccountPublisher = PassthroughSubject() init( managedObjectContext: NSManagedObjectContext, diff --git a/MastodonSDK/Sources/MastodonCore/Service/InstanceService.swift b/MastodonSDK/Sources/MastodonCore/Service/InstanceService.swift index 7f6669250..4cd804036 100644 --- a/MastodonSDK/Sources/MastodonCore/Service/InstanceService.swift +++ b/MastodonSDK/Sources/MastodonCore/Service/InstanceService.swift @@ -24,7 +24,6 @@ public final class InstanceService { weak var authenticationService: AuthenticationService? // output - public let updateActiveUserAccountPublisher = PassthroughSubject() init( apiService: APIService, From 57003b0ca582beaa15d078a7eb6046a02af1883c Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 14:44:59 +0100 Subject: [PATCH 321/598] New translations app.json (Catalan) --- Localization/StringsConvertor/input/ca.lproj/app.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Localization/StringsConvertor/input/ca.lproj/app.json b/Localization/StringsConvertor/input/ca.lproj/app.json index b27042d0f..e75aa9ff8 100644 --- a/Localization/StringsConvertor/input/ca.lproj/app.json +++ b/Localization/StringsConvertor/input/ca.lproj/app.json @@ -418,8 +418,8 @@ "enable_content_warning": "Activa l'Avís de Contingut", "disable_content_warning": "Desactiva l'Avís de Contingut", "post_visibility_menu": "Menú de Visibilitat de Publicació", - "post_options": "Post Options", - "posting_as": "Posting as %s" + "post_options": "Opcions del tut", + "posting_as": "Publicant com a %s" }, "keyboard": { "discard_post": "Descarta la Publicació", From 2161f68da4ad3c738dcde5406ea2519a03728ce2 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 14:45:00 +0100 Subject: [PATCH 322/598] New translations app.json (Galician) --- Localization/StringsConvertor/input/gl.lproj/app.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Localization/StringsConvertor/input/gl.lproj/app.json b/Localization/StringsConvertor/input/gl.lproj/app.json index 0eb82b142..2c518c867 100644 --- a/Localization/StringsConvertor/input/gl.lproj/app.json +++ b/Localization/StringsConvertor/input/gl.lproj/app.json @@ -418,8 +418,8 @@ "enable_content_warning": "Marcar con Aviso sobre o contido", "disable_content_warning": "Retirar Aviso sobre o contido", "post_visibility_menu": "Visibilidade da publicación", - "post_options": "Post Options", - "posting_as": "Posting as %s" + "post_options": "Opcións da publicación", + "posting_as": "Publicando como %s" }, "keyboard": { "discard_post": "Descartar publicación", From aa59bef0b522280b2da00a7a0abf8296aed9316d Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 14:45:01 +0100 Subject: [PATCH 323/598] New translations Localizable.stringsdict (Catalan) --- .../StringsConvertor/input/ca.lproj/Localizable.stringsdict | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Localization/StringsConvertor/input/ca.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/ca.lproj/Localizable.stringsdict index 06d1f0301..947597417 100644 --- a/Localization/StringsConvertor/input/ca.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/ca.lproj/Localizable.stringsdict @@ -53,7 +53,7 @@ a11y.plural.count.characters_left NSStringLocalizedFormatKey - %#@character_count@ left + resten %#@character_count@ character_count NSStringFormatSpecTypeKey @@ -61,9 +61,9 @@ NSStringFormatValueTypeKey ld one - 1 character + 1 caràcter other - %ld characters + %ld caràcters plural.count.followed_by_and_mutual From 7e458ffb10895326ef59bee670d96268dc870e72 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 14:45:03 +0100 Subject: [PATCH 324/598] New translations Localizable.stringsdict (Galician) --- .../StringsConvertor/input/gl.lproj/Localizable.stringsdict | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Localization/StringsConvertor/input/gl.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/gl.lproj/Localizable.stringsdict index 2224a13b3..51b146ed4 100644 --- a/Localization/StringsConvertor/input/gl.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/gl.lproj/Localizable.stringsdict @@ -53,7 +53,7 @@ a11y.plural.count.characters_left NSStringLocalizedFormatKey - %#@character_count@ left + %#@character_count@ restantes character_count NSStringFormatSpecTypeKey @@ -61,9 +61,9 @@ NSStringFormatValueTypeKey ld one - 1 character + 1 caracter other - %ld characters + %ld caracteres plural.count.followed_by_and_mutual From 120065104ccbf0d4516af618adcab97e3f432759 Mon Sep 17 00:00:00 2001 From: Jed Fox Date: Mon, 14 Nov 2022 08:45:10 -0500 Subject: [PATCH 325/598] =?UTF-8?q?Revert=20=E2=80=9CAdd=20a=20custom=20ac?= =?UTF-8?q?tion=20for=20=E2=80=98switch=20accounts=E2=80=99=E2=80=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit f9daeea4d3ad66a5387493b67682c4e27396d2bf --- Localization/app.json | 6 ++--- .../Root/ContentSplitViewController.swift | 1 - .../Root/MainTab/MainTabBarController.swift | 27 ++++++------------- .../Root/Sidebar/SidebarViewController.swift | 13 --------- .../Scene/Root/Sidebar/SidebarViewModel.swift | 20 +++----------- 5 files changed, 14 insertions(+), 53 deletions(-) diff --git a/Localization/app.json b/Localization/app.json index 4c64d28f3..8fb7933c4 100644 --- a/Localization/app.json +++ b/Localization/app.json @@ -686,9 +686,9 @@ } }, "account_list": { + "tab_bar_hint": "Current selected profile: %s. Double tap then hold to show account switcher", "dismiss_account_switcher": "Dismiss Account Switcher", - "add_account": "Add Account", - "switch_accounts": "Switch Accounts" + "add_account": "Add Account" }, "wizard": { "new_in_mastodon": "New in Mastodon", @@ -699,4 +699,4 @@ "title": "Bookmarks" } } -} +} \ No newline at end of file diff --git a/Mastodon/Scene/Root/ContentSplitViewController.swift b/Mastodon/Scene/Root/ContentSplitViewController.swift index 4ae7204ca..3f4758e8e 100644 --- a/Mastodon/Scene/Root/ContentSplitViewController.swift +++ b/Mastodon/Scene/Root/ContentSplitViewController.swift @@ -33,7 +33,6 @@ final class ContentSplitViewController: UIViewController, NeedsDependency { sidebarViewController.context = context sidebarViewController.coordinator = coordinator sidebarViewController.viewModel = SidebarViewModel(context: context, authContext: authContext) - sidebarViewController.viewModel.delegate = sidebarViewController sidebarViewController.delegate = self return sidebarViewController }() diff --git a/Mastodon/Scene/Root/MainTab/MainTabBarController.swift b/Mastodon/Scene/Root/MainTab/MainTabBarController.swift index 0eea7288e..e2510071e 100644 --- a/Mastodon/Scene/Root/MainTab/MainTabBarController.swift +++ b/Mastodon/Scene/Root/MainTab/MainTabBarController.swift @@ -298,7 +298,6 @@ extension MainTabBarController { } .store(in: &disposeBag) - let profileTabItem = self.tabBar.items?.first { item in item.tag == Tab.me.tag } if let user = authContext?.mastodonAuthenticationBox.authenticationRecord.object(in: context.managedObjectContext)?.user { self.avatarURLObserver = user.publisher(for: \.avatar) .sink { [weak self, weak user] _ in @@ -307,19 +306,13 @@ extension MainTabBarController { guard user.managedObjectContext != nil else { return } self.avatarURL = user.avatarImageURL() } - if let profileTabItem { - profileTabItem.accessibilityCustomActions = [ - UIAccessibilityCustomAction(name: L10n.Scene.AccountList.switchAccounts) { [weak self] _ in - self?.showAccountSwitcher() - return true - } - ] - } + + // a11y + let _profileTabItem = self.tabBar.items?.first { item in item.tag == Tab.me.tag } + guard let profileTabItem = _profileTabItem else { return } + profileTabItem.accessibilityHint = L10n.Scene.AccountList.tabBarHint(user.displayNameWithFallback) } else { self.avatarURLObserver = nil - if let profileTabItem { - profileTabItem.accessibilityCustomActions = [] - } } let tabBarLongPressGestureRecognizer = UILongPressGestureRecognizer() @@ -395,17 +388,13 @@ extension MainTabBarController { switch tab { case .me: - showAccountSwitcher() + guard let authContext = self.authContext else { return } + let accountListViewModel = AccountListViewModel(context: context, authContext: authContext) + _ = coordinator.present(scene: .accountList(viewModel: accountListViewModel), from: self, transition: .panModal) default: break } } - - private func showAccountSwitcher() { - guard let authContext = self.authContext else { return } - let accountListViewModel = AccountListViewModel(context: context, authContext: authContext) - _ = coordinator.present(scene: .accountList(viewModel: accountListViewModel), from: self, transition: .panModal) - } } extension MainTabBarController { diff --git a/Mastodon/Scene/Root/Sidebar/SidebarViewController.swift b/Mastodon/Scene/Root/Sidebar/SidebarViewController.swift index 28e205047..70e1239b6 100644 --- a/Mastodon/Scene/Root/Sidebar/SidebarViewController.swift +++ b/Mastodon/Scene/Root/Sidebar/SidebarViewController.swift @@ -162,19 +162,6 @@ extension SidebarViewController { } -extension SidebarViewController: SidebarViewModelDelegate { - func sidebarViewModelDidSwitchAccounts(_ sidebarViewModel: SidebarViewModel) { - guard let diffableDataSource = viewModel.diffableDataSource else { return } - guard let indexPath = diffableDataSource.indexPath(for: .tab(.me)) else { return } - guard let cell = collectionView.cellForItem(at: indexPath) else { return } - delegate?.sidebarViewController( - self, - didLongPressItem: .tab(.me), - sourceView: cell - ) - } -} - extension SidebarViewController { @objc private func sidebarLongPressGestureRecognizerHandler(_ sender: UILongPressGestureRecognizer) { guard sender.state == .began else { return } diff --git a/Mastodon/Scene/Root/Sidebar/SidebarViewModel.swift b/Mastodon/Scene/Root/Sidebar/SidebarViewModel.swift index 2a8082e47..c3f9e3e36 100644 --- a/Mastodon/Scene/Root/Sidebar/SidebarViewModel.swift +++ b/Mastodon/Scene/Root/Sidebar/SidebarViewModel.swift @@ -15,10 +15,6 @@ import MastodonAsset import MastodonCore import MastodonLocalization -protocol SidebarViewModelDelegate: AnyObject { - func sidebarViewModelDidSwitchAccounts(_ sidebarViewModel: SidebarViewModel) -} - final class SidebarViewModel { var disposeBag = Set() @@ -35,8 +31,6 @@ final class SidebarViewModel { var secondaryDiffableDataSource: UICollectionViewDiffableDataSource? @Published private(set) var isReadyForWizardAvatarButton = false - weak var delegate: SidebarViewModelDelegate? - init(context: AppContext, authContext: AuthContext?) { self.context = context self.authContext = authContext @@ -134,17 +128,9 @@ extension SidebarViewModel { } .store(in: &cell.disposeBag) case .me: - if self.authContext?.mastodonAuthenticationBox.authenticationRecord.object(in: self.context.managedObjectContext)?.user != nil { - cell.accessibilityCustomActions = [ - UIAccessibilityCustomAction(name: L10n.Scene.AccountList.switchAccounts) { [weak self] _ in - guard let self, let delegate = self.delegate else { return false } - delegate.sidebarViewModelDidSwitchAccounts(self) - return true - } - ] - } else { - cell.accessibilityCustomActions = [] - } + guard let user = self.authContext?.mastodonAuthenticationBox.authenticationRecord.object(in: self.context.managedObjectContext)?.user else { return } + let currentUserDisplayName = user.displayNameWithFallback + cell.accessibilityHint = L10n.Scene.AccountList.tabBarHint(currentUserDisplayName) default: break } From 3aac00fa83af05d2fe1cbe631dc9216daedc4e34 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 15:40:15 +0100 Subject: [PATCH 326/598] New translations app.json (Italian) --- Localization/StringsConvertor/input/it.lproj/app.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Localization/StringsConvertor/input/it.lproj/app.json b/Localization/StringsConvertor/input/it.lproj/app.json index bfd7811e2..f5e8d9293 100644 --- a/Localization/StringsConvertor/input/it.lproj/app.json +++ b/Localization/StringsConvertor/input/it.lproj/app.json @@ -418,8 +418,8 @@ "enable_content_warning": "Abilita avvertimento contenuti", "disable_content_warning": "Disabilita avviso di contenuti", "post_visibility_menu": "Menu di visibilità del post", - "post_options": "Post Options", - "posting_as": "Posting as %s" + "post_options": "Opzioni del messaggio", + "posting_as": "Pubblicazione come %s" }, "keyboard": { "discard_post": "Scarta post", From 95e90a712d559401ee46434cbc914e3efcdbf8d0 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 15:40:16 +0100 Subject: [PATCH 327/598] New translations Localizable.stringsdict (Italian) --- .../StringsConvertor/input/it.lproj/Localizable.stringsdict | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Localization/StringsConvertor/input/it.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/it.lproj/Localizable.stringsdict index d4fc7d0ce..3a8549914 100644 --- a/Localization/StringsConvertor/input/it.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/it.lproj/Localizable.stringsdict @@ -53,7 +53,7 @@ a11y.plural.count.characters_left NSStringLocalizedFormatKey - %#@character_count@ left + %#@character_count@ rimanenti character_count NSStringFormatSpecTypeKey @@ -61,9 +61,9 @@ NSStringFormatValueTypeKey ld one - 1 character + 1 carattere other - %ld characters + %ld caratteri plural.count.followed_by_and_mutual From 82cc4f9feae01c07cb3ce5275463df70647a43d4 Mon Sep 17 00:00:00 2001 From: woxtu Date: Tue, 15 Nov 2022 00:36:50 +0900 Subject: [PATCH 328/598] Replace a deprecated property --- .../Scene/Search/SearchDetail/SearchDetailViewController.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mastodon/Scene/Search/SearchDetail/SearchDetailViewController.swift b/Mastodon/Scene/Search/SearchDetail/SearchDetailViewController.swift index 62dd1a2cc..cb879a922 100644 --- a/Mastodon/Scene/Search/SearchDetail/SearchDetailViewController.swift +++ b/Mastodon/Scene/Search/SearchDetail/SearchDetailViewController.swift @@ -60,7 +60,7 @@ final class SearchDetailViewController: PageboyViewController, NeedsDependency { let searchController: CustomSearchController = { let searchController = CustomSearchController() searchController.automaticallyShowsScopeBar = false - searchController.dimsBackgroundDuringPresentation = false + searchController.obscuresBackgroundDuringPresentation = false return searchController }() private(set) lazy var searchBar: UISearchBar = { From 1938af714693d98e6ffd19bcda7cceb399cd8240 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 16:44:33 +0100 Subject: [PATCH 329/598] New translations app.json (Slovenian) --- .../StringsConvertor/input/sl.lproj/app.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Localization/StringsConvertor/input/sl.lproj/app.json b/Localization/StringsConvertor/input/sl.lproj/app.json index eb983b0fa..1d63d2832 100644 --- a/Localization/StringsConvertor/input/sl.lproj/app.json +++ b/Localization/StringsConvertor/input/sl.lproj/app.json @@ -383,10 +383,10 @@ "attachment_broken": "To %s je okvarjeno in ga ni\nmožno naložiti v Mastodon.", "description_photo": "Opiši fotografijo za slabovidne in osebe z okvaro vida ...", "description_video": "Opiši video za slabovidne in osebe z okvaro vida ...", - "load_failed": "Load Failed", - "upload_failed": "Upload Failed", - "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", - "attachment_too_large": "Attachment too large" + "load_failed": "Nalaganje ni uspelo", + "upload_failed": "Nalaganje na strežnik ni uspelo", + "can_not_recognize_this_media_attachment": "Te medijske priponke ni mogoče prepoznati", + "attachment_too_large": "Priponka je prevelika" }, "poll": { "duration_time": "Trajanje: %s", @@ -418,8 +418,8 @@ "enable_content_warning": "Omogoči opozorilo o vsebini", "disable_content_warning": "Onemogoči opozorilo o vsebini", "post_visibility_menu": "Meni vidnosti objave", - "post_options": "Post Options", - "posting_as": "Posting as %s" + "post_options": "Možnosti objave", + "posting_as": "Objavljate kot %s" }, "keyboard": { "discard_post": "Opusti objavo", From 57d80a89975efc77193479aa75a03940668ccba8 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 16:44:34 +0100 Subject: [PATCH 330/598] New translations app.json (Vietnamese) --- .../StringsConvertor/input/vi.lproj/app.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Localization/StringsConvertor/input/vi.lproj/app.json b/Localization/StringsConvertor/input/vi.lproj/app.json index cd20997c3..eb1b1c52d 100644 --- a/Localization/StringsConvertor/input/vi.lproj/app.json +++ b/Localization/StringsConvertor/input/vi.lproj/app.json @@ -383,10 +383,10 @@ "attachment_broken": "%s này bị lỗi và không thể\ntải lên Mastodon.", "description_photo": "Mô tả hình ảnh cho người khiếm thị...", "description_video": "Mô tả video cho người khiếm thị...", - "load_failed": "Load Failed", - "upload_failed": "Upload Failed", - "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", - "attachment_too_large": "Attachment too large" + "load_failed": "Tải thất bại", + "upload_failed": "Tải lên thất bại", + "can_not_recognize_this_media_attachment": "Không xem được tập tin đính kèm", + "attachment_too_large": "Tập tin đính kèm quá lớn" }, "poll": { "duration_time": "Thời hạn: %s", @@ -418,8 +418,8 @@ "enable_content_warning": "Bật nội dung ẩn", "disable_content_warning": "Tắt nội dung ẩn", "post_visibility_menu": "Menu hiển thị tút", - "post_options": "Post Options", - "posting_as": "Posting as %s" + "post_options": "Tùy chọn đăng", + "posting_as": "Đăng dưới dạng %s" }, "keyboard": { "discard_post": "Hủy đăng tút", From d1d694717dced66a0bccc5e8b86bf5d071b3342f Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 16:44:35 +0100 Subject: [PATCH 331/598] New translations Localizable.stringsdict (Slovenian) --- .../input/sl.lproj/Localizable.stringsdict | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Localization/StringsConvertor/input/sl.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/sl.lproj/Localizable.stringsdict index 742b78e87..87cc42142 100644 --- a/Localization/StringsConvertor/input/sl.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/sl.lproj/Localizable.stringsdict @@ -65,7 +65,7 @@ a11y.plural.count.characters_left NSStringLocalizedFormatKey - %#@character_count@ left + preostaja %#@character_count@ character_count NSStringFormatSpecTypeKey @@ -73,13 +73,13 @@ NSStringFormatValueTypeKey ld one - 1 character + %ld znak two - %ld characters + %ld znaka few - %ld characters + %ld znaki other - %ld characters + %ld znakov plural.count.followed_by_and_mutual From dabb1a1502dfab09f179ca7cbd1fd622479ef8ab Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 16:44:36 +0100 Subject: [PATCH 332/598] New translations app.json (Thai) --- Localization/StringsConvertor/input/th.lproj/app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/th.lproj/app.json b/Localization/StringsConvertor/input/th.lproj/app.json index f9c30f01d..d90786149 100644 --- a/Localization/StringsConvertor/input/th.lproj/app.json +++ b/Localization/StringsConvertor/input/th.lproj/app.json @@ -418,7 +418,7 @@ "enable_content_warning": "เปิดใช้งานคำเตือนเนื้อหา", "disable_content_warning": "ปิดใช้งานคำเตือนเนื้อหา", "post_visibility_menu": "เมนูการมองเห็นโพสต์", - "post_options": "Post Options", + "post_options": "ตัวเลือกโพสต์", "posting_as": "Posting as %s" }, "keyboard": { From 8185adcdd099316f164a6e24376e10d84d3e2e3e Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 16:44:37 +0100 Subject: [PATCH 333/598] New translations Localizable.stringsdict (Vietnamese) --- .../StringsConvertor/input/vi.lproj/Localizable.stringsdict | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Localization/StringsConvertor/input/vi.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/vi.lproj/Localizable.stringsdict index d82694c21..4c772f014 100644 --- a/Localization/StringsConvertor/input/vi.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/vi.lproj/Localizable.stringsdict @@ -47,7 +47,7 @@ a11y.plural.count.characters_left NSStringLocalizedFormatKey - %#@character_count@ left + %#@character_count@ còn lại character_count NSStringFormatSpecTypeKey @@ -55,7 +55,7 @@ NSStringFormatValueTypeKey ld other - %ld characters + %ld ký tự plural.count.followed_by_and_mutual From 2ba82adac90c0c2648f555ea66c9af7294c26e10 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 16:44:38 +0100 Subject: [PATCH 334/598] New translations Localizable.stringsdict (Thai) --- .../StringsConvertor/input/th.lproj/Localizable.stringsdict | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Localization/StringsConvertor/input/th.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/th.lproj/Localizable.stringsdict index 725e5c8a2..f25561ad6 100644 --- a/Localization/StringsConvertor/input/th.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/th.lproj/Localizable.stringsdict @@ -47,7 +47,7 @@ a11y.plural.count.characters_left NSStringLocalizedFormatKey - %#@character_count@ left + เหลืออีก %#@character_count@ character_count NSStringFormatSpecTypeKey @@ -55,7 +55,7 @@ NSStringFormatValueTypeKey ld other - %ld characters + %ld ตัวอักษร plural.count.followed_by_and_mutual From abe6292696277c925dd5c467662ee237bbd9f731 Mon Sep 17 00:00:00 2001 From: CMK Date: Tue, 15 Nov 2022 00:59:04 +0800 Subject: [PATCH 335/598] chore: code clean --- .../Scene/Compose/ComposeViewController.swift | 67 ------------------- 1 file changed, 67 deletions(-) diff --git a/Mastodon/Scene/Compose/ComposeViewController.swift b/Mastodon/Scene/Compose/ComposeViewController.swift index 414c53269..fd5ed5817 100644 --- a/Mastodon/Scene/Compose/ComposeViewController.swift +++ b/Mastodon/Scene/Compose/ComposeViewController.swift @@ -44,20 +44,6 @@ final class ComposeViewController: UIViewController, NeedsDependency { }() private(set) lazy var cancelBarButtonItem = UIBarButtonItem(title: L10n.Common.Controls.Actions.cancel, style: .plain, target: self, action: #selector(ComposeViewController.cancelBarButtonItemPressed(_:))) - - // FIXME: deprecated - // let characterCountLabel: UILabel = { - // let label = UILabel() - // label.font = .systemFont(ofSize: 15, weight: .regular) - // label.text = "500" - // label.textColor = Asset.Colors.Label.secondary.color - // label.accessibilityLabel = L10n.A11y.Plural.Count.inputLimitRemains(500) - // return label - // }() - // private(set) lazy var characterCountBarButtonItem: UIBarButtonItem = { - // let barButtonItem = UIBarButtonItem(customView: characterCountLabel) - // return barButtonItem - // }() let publishButton: UIButton = { let button = RoundedEdgesButton(type: .custom) @@ -95,20 +81,6 @@ final class ComposeViewController: UIViewController, NeedsDependency { } -extension ComposeViewController { - private static func createLayout() -> UICollectionViewLayout { - let itemSize = NSCollectionLayoutSize(widthDimension: .fractionalWidth(1.0), heightDimension: .estimated(44)) - let item = NSCollectionLayoutItem(layoutSize: itemSize) - let groupSize = NSCollectionLayoutSize(widthDimension: .fractionalWidth(1.0), heightDimension: .estimated(44)) - let group = NSCollectionLayoutGroup.vertical(layoutSize: groupSize, subitems: [item]) - let section = NSCollectionLayoutSection(group: group) - section.contentInsetsReference = .readableContent - // section.interGroupSpacing = 10 - // section.contentInsets = NSDirectionalEdgeInsets(top: 10, leading: 10, bottom: 10, trailing: 10) - return UICollectionViewCompositionalLayout(section: section) - } -} - extension ComposeViewController { override func viewDidLoad() { @@ -181,45 +153,6 @@ extension ComposeViewController { present(alertController, animated: true, completion: nil) } -// private func setupBackgroundColor(theme: Theme) { -// let backgroundColor = UIColor(dynamicProvider: { traitCollection in -// switch traitCollection.userInterfaceStyle { -// case .light: -// return .systemBackground -// default: -// return theme.systemElevatedBackgroundColor -// } -// }) -// view.backgroundColor = backgroundColor -//// tableView.backgroundColor = backgroundColor -//// composeToolbarBackgroundView.backgroundColor = theme.composeToolbarBackgroundColor -// } -// -// // keyboard shortcutBar -// private func setupInputAssistantItem(item: UITextInputAssistantItem) { -// let barButtonItems = [ -// composeToolbarView.mediaBarButtonItem, -// composeToolbarView.pollBarButtonItem, -// composeToolbarView.contentWarningBarButtonItem, -// composeToolbarView.visibilityBarButtonItem, -// ] -// let group = UIBarButtonItemGroup(barButtonItems: barButtonItems, representativeItem: nil) -// -// item.trailingBarButtonGroups = [group] -// } -// -// private func configureToolbarDisplay(keyboardHasShortcutBar: Bool) { -// switch self.traitCollection.userInterfaceIdiom { -// case .pad: -// let shouldHideToolbar = keyboardHasShortcutBar && self.traitCollection.horizontalSizeClass == .regular -// self.composeToolbarView.alpha = shouldHideToolbar ? 0 : 1 -// self.composeToolbarBackgroundView.alpha = shouldHideToolbar ? 0 : 1 -// default: -// break -// } -// } -// - } extension ComposeViewController { From d9f24a0ad0784d7e0f069e9f672f674c8b0f3656 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 18:00:59 +0100 Subject: [PATCH 336/598] New translations app.json (Chinese Traditional) --- .../StringsConvertor/input/zh-Hant.lproj/app.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Localization/StringsConvertor/input/zh-Hant.lproj/app.json b/Localization/StringsConvertor/input/zh-Hant.lproj/app.json index 4b2ea2f0f..1c2e9b9ff 100644 --- a/Localization/StringsConvertor/input/zh-Hant.lproj/app.json +++ b/Localization/StringsConvertor/input/zh-Hant.lproj/app.json @@ -383,10 +383,10 @@ "attachment_broken": "此 %s 已損毀,並無法被上傳至 Mastodon。", "description_photo": "為視障人士提供圖片說明...", "description_video": "為視障人士提供影片說明...", - "load_failed": "Load Failed", - "upload_failed": "Upload Failed", - "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", - "attachment_too_large": "Attachment too large" + "load_failed": "讀取失敗", + "upload_failed": "上傳失敗", + "can_not_recognize_this_media_attachment": "無法識別此媒體附加檔案", + "attachment_too_large": "附加檔案大小過大" }, "poll": { "duration_time": "持續時間:%s", From 33383de85de8279f230009cbb9ef23213773e29a Mon Sep 17 00:00:00 2001 From: CMK Date: Tue, 15 Nov 2022 01:42:14 +0800 Subject: [PATCH 337/598] chore: update SwiftGen to the latest version --- Podfile | 2 +- Podfile.lock | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Podfile b/Podfile index 596aec62b..4df2d4d7c 100644 --- a/Podfile +++ b/Podfile @@ -11,7 +11,7 @@ target 'Mastodon' do pod 'XLPagerTabStrip', '~> 9.0.0' # misc - pod 'SwiftGen', '~> 6.4.0' + pod 'SwiftGen', '~> 6.6.2' pod 'DateToolsSwift', '~> 5.0.0' pod 'Kanna', '~> 5.2.2' pod 'Sourcery', '~> 1.6.1' diff --git a/Podfile.lock b/Podfile.lock index 3b9928a0b..c7220b00a 100644 --- a/Podfile.lock +++ b/Podfile.lock @@ -5,7 +5,7 @@ PODS: - Sourcery (1.6.1): - Sourcery/CLI-Only (= 1.6.1) - Sourcery/CLI-Only (1.6.1) - - SwiftGen (6.4.0) + - SwiftGen (6.6.2) - XLPagerTabStrip (9.0.0) DEPENDENCIES: @@ -13,7 +13,7 @@ DEPENDENCIES: - FLEX (~> 4.4.0) - Kanna (~> 5.2.2) - Sourcery (~> 1.6.1) - - SwiftGen (~> 6.4.0) + - SwiftGen (~> 6.6.2) - XLPagerTabStrip (~> 9.0.0) SPEC REPOS: @@ -30,9 +30,9 @@ SPEC CHECKSUMS: FLEX: 7ca2c8cd3a435ff501ff6d2f2141e9bdc934eaab Kanna: 01cfbddc127f5ff0963692f285fcbc8a9d62d234 Sourcery: f3759f803bd0739f74fc92a4341eed0473ce61ac - SwiftGen: 67860cc7c3cfc2ed25b9b74cfd55495fc89f9108 + SwiftGen: 1366a7f71aeef49954ca5a63ba4bef6b0f24138c XLPagerTabStrip: 61c57fd61f611ee5f01ff1495ad6fbee8bf496c5 -PODFILE CHECKSUM: 8fddf46611e09d2eb1a5d67c464c236884a08e80 +PODFILE CHECKSUM: 7499a197793f73c4dcf1d16a315434baaa688873 COCOAPODS: 1.11.3 From 220fd6ae02cfbd240a58bda002ea2d0a0fb91751 Mon Sep 17 00:00:00 2001 From: CMK Date: Tue, 15 Nov 2022 01:44:28 +0800 Subject: [PATCH 338/598] feat: improve the i18n workflow --- .../Sources/StringsConvertor/main.swift | 1 + .../input/Base.lproj/Localizable.stringsdict | 631 +++++++++++ .../input/Base.lproj/app.json | 718 +++++++++++++ .../input/Base.lproj/ios-infoPlist.json | 6 + Localization/app.json | 2 +- .../MastodonAsset/Generated/Assets.swift | 71 ++ .../MastodonAsset/Generated/Fonts.swift | 77 +- .../Generated/Strings.swift | 996 +++++++++--------- .../Resources/Base.lproj/Localizable.strings | 461 ++++++++ .../Base.lproj/Localizable.stringsdict | 631 +++++++++++ .../Attachment/AttachmentView.swift | 4 +- .../ComposeContentViewModel.swift | 4 +- swiftgen.yml | 4 +- update_localization.sh | 21 +- 14 files changed, 3110 insertions(+), 517 deletions(-) create mode 100644 Localization/StringsConvertor/input/Base.lproj/Localizable.stringsdict create mode 100644 Localization/StringsConvertor/input/Base.lproj/app.json create mode 100644 Localization/StringsConvertor/input/Base.lproj/ios-infoPlist.json create mode 100644 MastodonSDK/Sources/MastodonLocalization/Resources/Base.lproj/Localizable.strings create mode 100644 MastodonSDK/Sources/MastodonLocalization/Resources/Base.lproj/Localizable.stringsdict diff --git a/Localization/StringsConvertor/Sources/StringsConvertor/main.swift b/Localization/StringsConvertor/Sources/StringsConvertor/main.swift index 76dc722f6..beba6cb3f 100644 --- a/Localization/StringsConvertor/Sources/StringsConvertor/main.swift +++ b/Localization/StringsConvertor/Sources/StringsConvertor/main.swift @@ -47,6 +47,7 @@ private func convert(from inputDirectoryURL: URL, to outputDirectory: URL) { private func map(language: String) -> String? { switch language { + case "Base.lproj": return "Base" case "ar.lproj": return "ar" // Arabic case "eu.lproj": return "eu" // Basque case "ca.lproj": return "ca" // Catalan diff --git a/Localization/StringsConvertor/input/Base.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/Base.lproj/Localizable.stringsdict new file mode 100644 index 000000000..cd97825f4 --- /dev/null +++ b/Localization/StringsConvertor/input/Base.lproj/Localizable.stringsdict @@ -0,0 +1,631 @@ + + + + + a11y.plural.count.unread.notification + + NSStringLocalizedFormatKey + %#@notification_count_unread_notification@ + notification_count_unread_notification + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + zero + no unread notification + one + 1 unread notification + few + %ld unread notifications + many + %ld unread notification + other + %ld unread notification + + + a11y.plural.count.input_limit_exceeds + + NSStringLocalizedFormatKey + Input limit exceeds %#@character_count@ + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + zero + 0 characters + one + 1 character + few + %ld characters + many + %ld characters + other + %ld characters + + + a11y.plural.count.input_limit_remains + + NSStringLocalizedFormatKey + Input limit remains %#@character_count@ + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + zero + 0 characters + one + 1 character + few + %ld characters + many + %ld characters + other + %ld characters + + + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + %#@character_count@ left + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + zero + no characters + one + 1 character + few + %ld characters + many + %ld characters + other + %ld characters + + + plural.count.followed_by_and_mutual + + NSStringLocalizedFormatKey + %#@names@%#@count_mutual@ + names + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + other + + + count_mutual + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + zero + Followed by %1$@ + one + Followed by %1$@, and another mutual + few + Followed by %1$@, and %ld mutuals + many + Followed by %1$@, and %ld mutuals + other + Followed by %1$@, and %ld mutuals + + + plural.count.metric_formatted.post + + NSStringLocalizedFormatKey + %@ %#@post_count@ + post_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + zero + posts + one + post + few + posts + many + posts + other + posts + + + plural.count.media + + NSStringLocalizedFormatKey + %#@media_count@ + media_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + zero + 0 media + one + 1 media + few + %ld media + many + %ld media + other + %ld media + + + plural.count.post + + NSStringLocalizedFormatKey + %#@post_count@ + post_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + zero + 0 posts + one + 1 post + few + %ld posts + many + %ld posts + other + %ld posts + + + plural.count.favorite + + NSStringLocalizedFormatKey + %#@favorite_count@ + favorite_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + zero + 0 favorites + one + 1 favorite + few + %ld favorites + many + %ld favorites + other + %ld favorites + + + plural.count.reblog + + NSStringLocalizedFormatKey + %#@reblog_count@ + reblog_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + zero + 0 reblogs + one + 1 reblog + few + %ld reblogs + many + %ld reblogs + other + %ld reblogs + + + plural.count.reply + + NSStringLocalizedFormatKey + %#@reply_count@ + reply_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + zero + 0 replies + one + 1 reply + few + %ld replies + many + %ld replies + other + %ld replies + + + plural.count.vote + + NSStringLocalizedFormatKey + %#@vote_count@ + vote_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + zero + 0 votes + one + 1 vote + few + %ld votes + many + %ld votes + other + %ld votes + + + plural.count.voter + + NSStringLocalizedFormatKey + %#@voter_count@ + voter_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + zero + 0 voters + one + 1 voter + few + %ld voters + many + %ld voters + other + %ld voters + + + plural.people_talking + + NSStringLocalizedFormatKey + %#@count_people_talking@ + count_people_talking + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + zero + 0 people talking + one + 1 people talking + few + %ld people talking + many + %ld people talking + other + %ld people talking + + + plural.count.following + + NSStringLocalizedFormatKey + %#@count_following@ + count_following + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + zero + 0 following + one + 1 following + few + %ld following + many + %ld following + other + %ld following + + + plural.count.follower + + NSStringLocalizedFormatKey + %#@count_follower@ + count_follower + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + zero + 0 followers + one + 1 follower + few + %ld followers + many + %ld followers + other + %ld followers + + + date.year.left + + NSStringLocalizedFormatKey + %#@count_year_left@ + count_year_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + zero + 0 years left + one + 1 year left + few + %ld years left + many + %ld years left + other + %ld years left + + + date.month.left + + NSStringLocalizedFormatKey + %#@count_month_left@ + count_month_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + zero + 0 months left + one + 1 months left + few + %ld months left + many + %ld months left + other + %ld months left + + + date.day.left + + NSStringLocalizedFormatKey + %#@count_day_left@ + count_day_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + zero + 0 days left + one + 1 day left + few + %ld days left + many + %ld days left + other + %ld days left + + + date.hour.left + + NSStringLocalizedFormatKey + %#@count_hour_left@ + count_hour_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + zero + 0 hours left + one + 1 hour left + few + %ld hours left + many + %ld hours left + other + %ld hours left + + + date.minute.left + + NSStringLocalizedFormatKey + %#@count_minute_left@ + count_minute_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + zero + 0 minutes left + one + 1 minute left + few + %ld minutes left + many + %ld minutes left + other + %ld minutes left + + + date.second.left + + NSStringLocalizedFormatKey + %#@count_second_left@ + count_second_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + zero + 0 seconds left + one + 1 second left + few + %ld seconds left + many + %ld seconds left + other + %ld seconds left + + + date.year.ago.abbr + + NSStringLocalizedFormatKey + %#@count_year_ago_abbr@ + count_year_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + zero + 0y ago + one + 1y ago + few + %ldy ago + many + %ldy ago + other + %ldy ago + + + date.month.ago.abbr + + NSStringLocalizedFormatKey + %#@count_month_ago_abbr@ + count_month_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + zero + 0M ago + one + 1M ago + few + %ldM ago + many + %ldM ago + other + %ldM ago + + + date.day.ago.abbr + + NSStringLocalizedFormatKey + %#@count_day_ago_abbr@ + count_day_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + zero + 0d ago + one + 1d ago + few + %ldd ago + many + %ldd ago + other + %ldd ago + + + date.hour.ago.abbr + + NSStringLocalizedFormatKey + %#@count_hour_ago_abbr@ + count_hour_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + zero + 0h ago + one + 1h ago + few + %ldh ago + many + %ldh ago + other + %ldh ago + + + date.minute.ago.abbr + + NSStringLocalizedFormatKey + %#@count_minute_ago_abbr@ + count_minute_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + zero + 0m ago + one + 1m ago + few + %ldm ago + many + %ldm ago + other + %ldm ago + + + date.second.ago.abbr + + NSStringLocalizedFormatKey + %#@count_second_ago_abbr@ + count_second_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + zero + 0s ago + one + 1s ago + few + %lds ago + many + %lds ago + other + %lds ago + + + + diff --git a/Localization/StringsConvertor/input/Base.lproj/app.json b/Localization/StringsConvertor/input/Base.lproj/app.json new file mode 100644 index 000000000..c40c0a39e --- /dev/null +++ b/Localization/StringsConvertor/input/Base.lproj/app.json @@ -0,0 +1,718 @@ +{ + "common": { + "alerts": { + "common": { + "please_try_again": "Please try again.", + "please_try_again_later": "Please try again later." + }, + "sign_up_failure": { + "title": "Sign Up Failure" + }, + "server_error": { + "title": "Server Error" + }, + "vote_failure": { + "title": "Vote Failure", + "poll_ended": "The poll has ended" + }, + "discard_post_content": { + "title": "Discard Draft", + "message": "Confirm to discard composed post content." + }, + "publish_post_failure": { + "title": "Publish Failure", + "message": "Failed to publish the post.\nPlease check your internet connection.", + "attachments_message": { + "video_attach_with_photo": "Cannot attach a video to a post that already contains images.", + "more_than_one_video": "Cannot attach more than one video." + } + }, + "edit_profile_failure": { + "title": "Edit Profile Error", + "message": "Cannot edit profile. Please try again." + }, + "sign_out": { + "title": "Sign Out", + "message": "Are you sure you want to sign out?", + "confirm": "Sign Out" + }, + "block_domain": { + "title": "Are you really, really sure you want to block the entire %s? In most cases a few targeted blocks or mutes are sufficient and preferable. You will not see content from that domain and any of your followers from that domain will be removed.", + "block_entire_domain": "Block Domain" + }, + "save_photo_failure": { + "title": "Save Photo Failure", + "message": "Please enable the photo library access permission to save the photo." + }, + "delete_post": { + "title": "Delete Post", + "message": "Are you sure you want to delete this post?" + }, + "clean_cache": { + "title": "Clean Cache", + "message": "Successfully cleaned %s cache." + } + }, + "controls": { + "actions": { + "back": "Back", + "next": "Next", + "previous": "Previous", + "open": "Open", + "add": "Add", + "remove": "Remove", + "edit": "Edit", + "save": "Save", + "ok": "OK", + "done": "Done", + "confirm": "Confirm", + "continue": "Continue", + "compose": "Compose", + "cancel": "Cancel", + "discard": "Discard", + "try_again": "Try Again", + "take_photo": "Take Photo", + "save_photo": "Save Photo", + "copy_photo": "Copy Photo", + "sign_in": "Sign In", + "sign_up": "Sign Up", + "see_more": "See More", + "preview": "Preview", + "share": "Share", + "share_user": "Share %s", + "share_post": "Share Post", + "open_in_safari": "Open in Safari", + "open_in_browser": "Open in Browser", + "find_people": "Find people to follow", + "manually_search": "Manually search instead", + "skip": "Skip", + "reply": "Reply", + "report_user": "Report %s", + "block_domain": "Block %s", + "unblock_domain": "Unblock %s", + "settings": "Settings", + "delete": "Delete" + }, + "tabs": { + "home": "Home", + "search": "Search", + "notification": "Notification", + "profile": "Profile" + }, + "keyboard": { + "common": { + "switch_to_tab": "Switch to %s", + "compose_new_post": "Compose New Post", + "show_favorites": "Show Favorites", + "open_settings": "Open Settings" + }, + "timeline": { + "previous_status": "Previous Post", + "next_status": "Next Post", + "open_status": "Open Post", + "open_author_profile": "Open Author's Profile", + "open_reblogger_profile": "Open Reblogger's Profile", + "reply_status": "Reply to Post", + "toggle_reblog": "Toggle Reblog on Post", + "toggle_favorite": "Toggle Favorite on Post", + "toggle_content_warning": "Toggle Content Warning", + "preview_image": "Preview Image" + }, + "segmented_control": { + "previous_section": "Previous Section", + "next_section": "Next Section" + } + }, + "status": { + "user_reblogged": "%s reblogged", + "user_replied_to": "Replied to %s", + "show_post": "Show Post", + "show_user_profile": "Show user profile", + "content_warning": "Content Warning", + "sensitive_content": "Sensitive Content", + "media_content_warning": "Tap anywhere to reveal", + "tap_to_reveal": "Tap to reveal", + "poll": { + "vote": "Vote", + "closed": "Closed" + }, + "meta_entity": { + "url": "Link: %s", + "hashtag": "Hashtag: %s", + "mention": "Show Profile: %s", + "email": "Email address: %s" + }, + "actions": { + "reply": "Reply", + "reblog": "Reblog", + "unreblog": "Undo reblog", + "favorite": "Favorite", + "unfavorite": "Unfavorite", + "menu": "Menu", + "hide": "Hide", + "show_image": "Show image", + "show_gif": "Show GIF", + "show_video_player": "Show video player", + "tap_then_hold_to_show_menu": "Tap then hold to show menu" + }, + "tag": { + "url": "URL", + "mention": "Mention", + "link": "Link", + "hashtag": "Hashtag", + "email": "Email", + "emoji": "Emoji" + }, + "visibility": { + "unlisted": "Everyone can see this post but not display in the public timeline.", + "private": "Only their followers can see this post.", + "private_from_me": "Only my followers can see this post.", + "direct": "Only mentioned user can see this post." + } + }, + "friendship": { + "follow": "Follow", + "following": "Following", + "request": "Request", + "pending": "Pending", + "block": "Block", + "block_user": "Block %s", + "block_domain": "Block %s", + "unblock": "Unblock", + "unblock_user": "Unblock %s", + "blocked": "Blocked", + "mute": "Mute", + "mute_user": "Mute %s", + "unmute": "Unmute", + "unmute_user": "Unmute %s", + "muted": "Muted", + "edit_info": "Edit Info", + "show_reblogs": "Show Reblogs", + "hide_reblogs": "Hide Reblogs" + }, + "timeline": { + "filtered": "Filtered", + "timestamp": { + "now": "Now" + }, + "loader": { + "load_missing_posts": "Load missing posts", + "loading_missing_posts": "Loading missing posts...", + "show_more_replies": "Show more replies" + }, + "header": { + "no_status_found": "No Post Found", + "blocking_warning": "You can’t view this user's profile\nuntil you unblock them.\nYour profile looks like this to them.", + "user_blocking_warning": "You can’t view %s’s profile\nuntil you unblock them.\nYour profile looks like this to them.", + "blocked_warning": "You can’t view this user’s profile\nuntil they unblock you.", + "user_blocked_warning": "You can’t view %s’s profile\nuntil they unblock you.", + "suspended_warning": "This user has been suspended.", + "user_suspended_warning": "%s’s account has been suspended." + } + } + } + }, + "scene": { + "welcome": { + "slogan": "Social networking\nback in your hands.", + "get_started": "Get Started", + "log_in": "Log In" + }, + "server_picker": { + "title": "Mastodon is made of users in different servers.", + "subtitle": "Pick a server based on your interests, region, or a general purpose one.", + "subtitle_extend": "Pick a server based on your interests, region, or a general purpose one. Each server is operated by an entirely independent organization or individual.", + "button": { + "category": { + "all": "All", + "all_accessiblity_description": "Category: All", + "academia": "academia", + "activism": "activism", + "food": "food", + "furry": "furry", + "games": "games", + "general": "general", + "journalism": "journalism", + "lgbt": "lgbt", + "regional": "regional", + "art": "art", + "music": "music", + "tech": "tech" + }, + "see_less": "See Less", + "see_more": "See More" + }, + "label": { + "language": "LANGUAGE", + "users": "USERS", + "category": "CATEGORY" + }, + "input": { + "placeholder": "Search servers", + "search_servers_or_enter_url": "Search servers or enter URL" + }, + "empty_state": { + "finding_servers": "Finding available servers...", + "bad_network": "Something went wrong while loading the data. Check your internet connection.", + "no_results": "No results" + } + }, + "register": { + "title": "Let’s get you set up on %s", + "lets_get_you_set_up_on_domain": "Let’s get you set up on %s", + "input": { + "avatar": { + "delete": "Delete" + }, + "username": { + "placeholder": "username", + "duplicate_prompt": "This username is taken." + }, + "display_name": { + "placeholder": "display name" + }, + "email": { + "placeholder": "email" + }, + "password": { + "placeholder": "password", + "require": "Your password needs at least:", + "character_limit": "8 characters", + "accessibility": { + "checked": "checked", + "unchecked": "unchecked" + }, + "hint": "Your password needs at least eight characters" + }, + "invite": { + "registration_user_invite_request": "Why do you want to join?" + } + }, + "error": { + "item": { + "username": "Username", + "email": "Email", + "password": "Password", + "agreement": "Agreement", + "locale": "Locale", + "reason": "Reason" + }, + "reason": { + "blocked": "%s contains a disallowed email provider", + "unreachable": "%s does not seem to exist", + "taken": "%s is already in use", + "reserved": "%s is a reserved keyword", + "accepted": "%s must be accepted", + "blank": "%s is required", + "invalid": "%s is invalid", + "too_long": "%s is too long", + "too_short": "%s is too short", + "inclusion": "%s is not a supported value" + }, + "special": { + "username_invalid": "Username must only contain alphanumeric characters and underscores", + "username_too_long": "Username is too long (can’t be longer than 30 characters)", + "email_invalid": "This is not a valid email address", + "password_too_short": "Password is too short (must be at least 8 characters)" + } + } + }, + "server_rules": { + "title": "Some ground rules.", + "subtitle": "These are set and enforced by the %s moderators.", + "prompt": "By continuing, you’re subject to the terms of service and privacy policy for %s.", + "terms_of_service": "terms of service", + "privacy_policy": "privacy policy", + "button": { + "confirm": "I Agree" + } + }, + "confirm_email": { + "title": "One last thing.", + "subtitle": "Tap the link we emailed to you to verify your account.", + "tap_the_link_we_emailed_to_you_to_verify_your_account": "Tap the link we emailed to you to verify your account", + "button": { + "open_email_app": "Open Email App", + "resend": "Resend" + }, + "dont_receive_email": { + "title": "Check your email", + "description": "Check if your email address is correct as well as your junk folder if you haven’t.", + "resend_email": "Resend Email" + }, + "open_email_app": { + "title": "Check your inbox.", + "description": "We just sent you an email. Check your junk folder if you haven’t.", + "mail": "Mail", + "open_email_client": "Open Email Client" + } + }, + "home_timeline": { + "title": "Home", + "navigation_bar_state": { + "offline": "Offline", + "new_posts": "See new posts", + "published": "Published!", + "Publishing": "Publishing post...", + "accessibility": { + "logo_label": "Logo Button", + "logo_hint": "Tap to scroll to top and tap again to previous location" + } + } + }, + "suggestion_account": { + "title": "Find People to Follow", + "follow_explain": "When you follow someone, you’ll see their posts in your home feed." + }, + "compose": { + "title": { + "new_post": "New Post", + "new_reply": "New Reply" + }, + "media_selection": { + "camera": "Take Photo", + "photo_library": "Photo Library", + "browse": "Browse" + }, + "content_input_placeholder": "Type or paste what’s on your mind", + "compose_action": "Publish", + "replying_to_user": "replying to %s", + "attachment": { + "photo": "photo", + "video": "video", + "attachment_broken": "This %s is broken and can’t be\nuploaded to Mastodon.", + "description_photo": "Describe the photo for the visually-impaired...", + "description_video": "Describe the video for the visually-impaired...", + "load_failed": "Load Failed", + "upload_failed": "Upload Failed", + "can_not_recognize_this_media_attachment": "Can not recognize this media attachment", + "attachment_too_large": "Attachment too large", + "compressing_state": "Compressing...", + "server_processing_state": "Server Processing..." + }, + "poll": { + "duration_time": "Duration: %s", + "thirty_minutes": "30 minutes", + "one_hour": "1 Hour", + "six_hours": "6 Hours", + "one_day": "1 Day", + "three_days": "3 Days", + "seven_days": "7 Days", + "option_number": "Option %ld", + "the_poll_is_invalid": "The poll is invalid", + "the_poll_has_empty_option": "The poll has empty option" + }, + "content_warning": { + "placeholder": "Write an accurate warning here..." + }, + "visibility": { + "public": "Public", + "unlisted": "Unlisted", + "private": "Followers only", + "direct": "Only people I mention" + }, + "auto_complete": { + "space_to_add": "Space to add" + }, + "accessibility": { + "append_attachment": "Add Attachment", + "append_poll": "Add Poll", + "remove_poll": "Remove Poll", + "custom_emoji_picker": "Custom Emoji Picker", + "enable_content_warning": "Enable Content Warning", + "disable_content_warning": "Disable Content Warning", + "post_visibility_menu": "Post Visibility Menu", + "post_options": "Post Options", + "posting_as": "Posting as %s" + }, + "keyboard": { + "discard_post": "Discard Post", + "publish_post": "Publish Post", + "toggle_poll": "Toggle Poll", + "toggle_content_warning": "Toggle Content Warning", + "append_attachment_entry": "Add Attachment - %s", + "select_visibility_entry": "Select Visibility - %s" + } + }, + "profile": { + "header": { + "follows_you": "Follows You" + }, + "dashboard": { + "posts": "posts", + "following": "following", + "followers": "followers" + }, + "fields": { + "add_row": "Add Row", + "placeholder": { + "label": "Label", + "content": "Content" + } + }, + "segmented_control": { + "posts": "Posts", + "replies": "Replies", + "posts_and_replies": "Posts and Replies", + "media": "Media", + "about": "About" + }, + "relationship_action_alert": { + "confirm_mute_user": { + "title": "Mute Account", + "message": "Confirm to mute %s" + }, + "confirm_unmute_user": { + "title": "Unmute Account", + "message": "Confirm to unmute %s" + }, + "confirm_block_user": { + "title": "Block Account", + "message": "Confirm to block %s" + }, + "confirm_unblock_user": { + "title": "Unblock Account", + "message": "Confirm to unblock %s" + }, + "confirm_show_reblogs": { + "title": "Show Reblogs", + "message": "Confirm to show reblogs" + }, + "confirm_hide_reblogs": { + "title": "Hide Reblogs", + "message": "Confirm to hide reblogs" + } + }, + "accessibility": { + "show_avatar_image": "Show avatar image", + "edit_avatar_image": "Edit avatar image", + "show_banner_image": "Show banner image", + "double_tap_to_open_the_list": "Double tap to open the list" + } + }, + "follower": { + "title": "follower", + "footer": "Followers from other servers are not displayed." + }, + "following": { + "title": "following", + "footer": "Follows from other servers are not displayed." + }, + "familiarFollowers": { + "title": "Followers you familiar", + "followed_by_names": "Followed by %s" + }, + "favorited_by": { + "title": "Favorited By" + }, + "reblogged_by": { + "title": "Reblogged By" + }, + "search": { + "title": "Search", + "search_bar": { + "placeholder": "Search hashtags and users", + "cancel": "Cancel" + }, + "recommend": { + "button_text": "See All", + "hash_tag": { + "title": "Trending on Mastodon", + "description": "Hashtags that are getting quite a bit of attention", + "people_talking": "%s people are talking" + }, + "accounts": { + "title": "Accounts you might like", + "description": "You may like to follow these accounts", + "follow": "Follow" + } + }, + "searching": { + "segment": { + "all": "All", + "people": "People", + "hashtags": "Hashtags", + "posts": "Posts" + }, + "empty_state": { + "no_results": "No results" + }, + "recent_search": "Recent searches", + "clear": "Clear" + } + }, + "discovery": { + "tabs": { + "posts": "Posts", + "hashtags": "Hashtags", + "news": "News", + "community": "Community", + "for_you": "For You" + }, + "intro": "These are the posts gaining traction in your corner of Mastodon." + }, + "favorite": { + "title": "Your Favorites" + }, + "notification": { + "title": { + "Everything": "Everything", + "Mentions": "Mentions" + }, + "notification_description": { + "followed_you": "followed you", + "favorited_your_post": "favorited your post", + "reblogged_your_post": "reblogged your post", + "mentioned_you": "mentioned you", + "request_to_follow_you": "request to follow you", + "poll_has_ended": "poll has ended" + }, + "keyobard": { + "show_everything": "Show Everything", + "show_mentions": "Show Mentions" + }, + "follow_request": { + "accept": "Accept", + "accepted": "Accepted", + "reject": "reject", + "rejected": "Rejected" + } + }, + "thread": { + "back_title": "Post", + "title": "Post from %s" + }, + "settings": { + "title": "Settings", + "section": { + "appearance": { + "title": "Appearance", + "automatic": "Automatic", + "light": "Always Light", + "dark": "Always Dark" + }, + "look_and_feel": { + "title": "Look and Feel", + "use_system": "Use System", + "really_dark": "Really Dark", + "sorta_dark": "Sorta Dark", + "light": "Light" + }, + "notifications": { + "title": "Notifications", + "favorites": "Favorites my post", + "follows": "Follows me", + "boosts": "Reblogs my post", + "mentions": "Mentions me", + "trigger": { + "anyone": "anyone", + "follower": "a follower", + "follow": "anyone I follow", + "noone": "no one", + "title": "Notify me when" + } + }, + "preference": { + "title": "Preferences", + "true_black_dark_mode": "True black dark mode", + "disable_avatar_animation": "Disable animated avatars", + "disable_emoji_animation": "Disable animated emojis", + "using_default_browser": "Use default browser to open links", + "open_links_in_mastodon": "Open links in Mastodon" + }, + "boring_zone": { + "title": "The Boring Zone", + "account_settings": "Account Settings", + "terms": "Terms of Service", + "privacy": "Privacy Policy" + }, + "spicy_zone": { + "title": "The Spicy Zone", + "clear": "Clear Media Cache", + "signout": "Sign Out" + } + }, + "footer": { + "mastodon_description": "Mastodon is open source software. You can report issues on GitHub at %s (%s)" + }, + "keyboard": { + "close_settings_window": "Close Settings Window" + } + }, + "report": { + "title_report": "Report", + "title": "Report %s", + "step1": "Step 1 of 2", + "step2": "Step 2 of 2", + "content1": "Are there any other posts you’d like to add to the report?", + "content2": "Is there anything the moderators should know about this report?", + "report_sent_title": "Thanks for reporting, we’ll look into this.", + "send": "Send Report", + "skip_to_send": "Send without comment", + "text_placeholder": "Type or paste additional comments", + "reported": "REPORTED", + "step_one": { + "step_1_of_4": "Step 1 of 4", + "whats_wrong_with_this_post": "What's wrong with this post?", + "whats_wrong_with_this_account": "What's wrong with this account?", + "whats_wrong_with_this_username": "What's wrong with %s?", + "select_the_best_match": "Select the best match", + "i_dont_like_it": "I don’t like it", + "it_is_not_something_you_want_to_see": "It is not something you want to see", + "its_spam": "It’s spam", + "malicious_links_fake_engagement_or_repetetive_replies": "Malicious links, fake engagement, or repetetive replies", + "it_violates_server_rules": "It violates server rules", + "you_are_aware_that_it_breaks_specific_rules": "You are aware that it breaks specific rules", + "its_something_else": "It’s something else", + "the_issue_does_not_fit_into_other_categories": "The issue does not fit into other categories" + }, + "step_two": { + "step_2_of_4": "Step 2 of 4", + "which_rules_are_being_violated": "Which rules are being violated?", + "select_all_that_apply": "Select all that apply", + "i_just_don’t_like_it": "I just don’t like it" + }, + "step_three": { + "step_3_of_4": "Step 3 of 4", + "are_there_any_posts_that_back_up_this_report": "Are there any posts that back up this report?", + "select_all_that_apply": "Select all that apply" + }, + "step_four": { + "step_4_of_4": "Step 4 of 4", + "is_there_anything_else_we_should_know": "Is there anything else we should know?" + }, + "step_final": { + "dont_want_to_see_this": "Don’t want to see this?", + "when_you_see_something_you_dont_like_on_mastodon_you_can_remove_the_person_from_your_experience.": "When you see something you don’t like on Mastodon, you can remove the person from your experience.", + "unfollow": "Unfollow", + "unfollowed": "Unfollowed", + "unfollow_user": "Unfollow %s", + "mute_user": "Mute %s", + "you_wont_see_their_posts_or_reblogs_in_your_home_feed_they_wont_know_they_ve_been_muted": "You won’t see their posts or reblogs in your home feed. They won’t know they’ve been muted.", + "block_user": "Block %s", + "they_will_no_longer_be_able_to_follow_or_see_your_posts_but_they_can_see_if_theyve_been_blocked": "They will no longer be able to follow or see your posts, but they can see if they’ve been blocked.", + "while_we_review_this_you_can_take_action_against_user": "While we review this, you can take action against %s" + } + }, + "preview": { + "keyboard": { + "close_preview": "Close Preview", + "show_next": "Show Next", + "show_previous": "Show Previous" + } + }, + "account_list": { + "tab_bar_hint": "Current selected profile: %s. Double tap then hold to show account switcher", + "dismiss_account_switcher": "Dismiss Account Switcher", + "add_account": "Add Account" + }, + "wizard": { + "new_in_mastodon": "New in Mastodon", + "multiple_account_switch_intro_description": "Switch between multiple accounts by holding the profile button.", + "accessibility_hint": "Double tap to dismiss this wizard" + }, + "bookmark": { + "title": "Bookmarks" + } + } +} \ No newline at end of file diff --git a/Localization/StringsConvertor/input/Base.lproj/ios-infoPlist.json b/Localization/StringsConvertor/input/Base.lproj/ios-infoPlist.json new file mode 100644 index 000000000..c6db73de0 --- /dev/null +++ b/Localization/StringsConvertor/input/Base.lproj/ios-infoPlist.json @@ -0,0 +1,6 @@ +{ + "NSCameraUsageDescription": "Used to take photo for post status", + "NSPhotoLibraryAddUsageDescription": "Used to save photo into the Photo Library", + "NewPostShortcutItemTitle": "New Post", + "SearchShortcutItemTitle": "Search" +} diff --git a/Localization/app.json b/Localization/app.json index e06ca136c..c40c0a39e 100644 --- a/Localization/app.json +++ b/Localization/app.json @@ -385,7 +385,7 @@ "description_video": "Describe the video for the visually-impaired...", "load_failed": "Load Failed", "upload_failed": "Upload Failed", - "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", + "can_not_recognize_this_media_attachment": "Can not recognize this media attachment", "attachment_too_large": "Attachment too large", "compressing_state": "Compressing...", "server_processing_state": "Server Processing..." diff --git a/MastodonSDK/Sources/MastodonAsset/Generated/Assets.swift b/MastodonSDK/Sources/MastodonAsset/Generated/Assets.swift index fc47acdfd..53d81edb6 100644 --- a/MastodonSDK/Sources/MastodonAsset/Generated/Assets.swift +++ b/MastodonSDK/Sources/MastodonAsset/Generated/Assets.swift @@ -8,6 +8,9 @@ #elseif os(tvOS) || os(watchOS) import UIKit #endif +#if canImport(SwiftUI) + import SwiftUI +#endif // Deprecated typealiases @available(*, deprecated, renamed: "ColorAsset.Color", message: "This typealias will be removed in SwiftGen 7.0") @@ -279,6 +282,24 @@ public final class ColorAsset { return color }() + #if os(iOS) || os(tvOS) + @available(iOS 11.0, tvOS 11.0, *) + public func color(compatibleWith traitCollection: UITraitCollection) -> Color { + let bundle = Bundle.module + guard let color = Color(named: name, in: bundle, compatibleWith: traitCollection) else { + fatalError("Unable to load color asset named \(name).") + } + return color + } + #endif + + #if canImport(SwiftUI) + @available(iOS 13.0, tvOS 13.0, watchOS 6.0, macOS 10.15, *) + public private(set) lazy var swiftUIColor: SwiftUI.Color = { + SwiftUI.Color(asset: self) + }() + #endif + fileprivate init(name: String) { self.name = name } @@ -298,6 +319,16 @@ public extension ColorAsset.Color { } } +#if canImport(SwiftUI) +@available(iOS 13.0, tvOS 13.0, watchOS 6.0, macOS 10.15, *) +public extension SwiftUI.Color { + init(asset: ColorAsset) { + let bundle = Bundle.module + self.init(asset.name, bundle: bundle) + } +} +#endif + public struct ImageAsset { public fileprivate(set) var name: String @@ -307,6 +338,7 @@ public struct ImageAsset { public typealias Image = UIImage #endif + @available(iOS 8.0, tvOS 9.0, watchOS 2.0, macOS 10.7, *) public var image: Image { let bundle = Bundle.module #if os(iOS) || os(tvOS) @@ -322,9 +354,28 @@ public struct ImageAsset { } return result } + + #if os(iOS) || os(tvOS) + @available(iOS 8.0, tvOS 9.0, *) + public func image(compatibleWith traitCollection: UITraitCollection) -> Image { + let bundle = Bundle.module + guard let result = Image(named: name, in: bundle, compatibleWith: traitCollection) else { + fatalError("Unable to load image asset named \(name).") + } + return result + } + #endif + + #if canImport(SwiftUI) + @available(iOS 13.0, tvOS 13.0, watchOS 6.0, macOS 10.15, *) + public var swiftUIImage: SwiftUI.Image { + SwiftUI.Image(asset: self) + } + #endif } public extension ImageAsset.Image { + @available(iOS 8.0, tvOS 9.0, watchOS 2.0, *) @available(macOS, deprecated, message: "This initializer is unsafe on macOS, please use the ImageAsset.image property") convenience init?(asset: ImageAsset) { @@ -338,3 +389,23 @@ public extension ImageAsset.Image { #endif } } + +#if canImport(SwiftUI) +@available(iOS 13.0, tvOS 13.0, watchOS 6.0, macOS 10.15, *) +public extension SwiftUI.Image { + init(asset: ImageAsset) { + let bundle = Bundle.module + self.init(asset.name, bundle: bundle) + } + + init(asset: ImageAsset, label: Text) { + let bundle = Bundle.module + self.init(asset.name, bundle: bundle, label: label) + } + + init(decorative asset: ImageAsset) { + let bundle = Bundle.module + self.init(decorative: asset.name, bundle: bundle) + } +} +#endif diff --git a/MastodonSDK/Sources/MastodonAsset/Generated/Fonts.swift b/MastodonSDK/Sources/MastodonAsset/Generated/Fonts.swift index 22c6c9ed3..740c44bc9 100644 --- a/MastodonSDK/Sources/MastodonAsset/Generated/Fonts.swift +++ b/MastodonSDK/Sources/MastodonAsset/Generated/Fonts.swift @@ -1,18 +1,20 @@ // swiftlint:disable all // Generated using SwiftGen — https://github.com/SwiftGen/SwiftGen -#if os(OSX) +#if os(macOS) import AppKit.NSFont #elseif os(iOS) || os(tvOS) || os(watchOS) import UIKit.UIFont #endif +#if canImport(SwiftUI) + import SwiftUI +#endif // Deprecated typealiases @available(*, deprecated, renamed: "FontConvertible.Font", message: "This typealias will be removed in SwiftGen 7.0") public typealias Font = FontConvertible.Font -// swiftlint:disable superfluous_disable_command -// swiftlint:disable file_length +// swiftlint:disable superfluous_disable_command file_length implicit_return // MARK: - Fonts @@ -36,7 +38,7 @@ public struct FontConvertible { public let family: String public let path: String - #if os(OSX) + #if os(macOS) public typealias Font = NSFont #elseif os(iOS) || os(tvOS) || os(watchOS) public typealias Font = UIFont @@ -49,12 +51,41 @@ public struct FontConvertible { return font } + #if canImport(SwiftUI) + @available(iOS 13.0, tvOS 13.0, watchOS 6.0, macOS 10.15, *) + public func swiftUIFont(size: CGFloat) -> SwiftUI.Font { + return SwiftUI.Font.custom(self, size: size) + } + + @available(iOS 14.0, tvOS 14.0, watchOS 7.0, macOS 11.0, *) + public func swiftUIFont(fixedSize: CGFloat) -> SwiftUI.Font { + return SwiftUI.Font.custom(self, fixedSize: fixedSize) + } + + @available(iOS 14.0, tvOS 14.0, watchOS 7.0, macOS 11.0, *) + public func swiftUIFont(size: CGFloat, relativeTo textStyle: SwiftUI.Font.TextStyle) -> SwiftUI.Font { + return SwiftUI.Font.custom(self, size: size, relativeTo: textStyle) + } + #endif + public func register() { // swiftlint:disable:next conditional_returns_on_newline guard let url = url else { return } CTFontManagerRegisterFontsForURL(url as CFURL, .process, nil) } + fileprivate func registerIfNeeded() { + #if os(iOS) || os(tvOS) || os(watchOS) + if !UIFont.fontNames(forFamilyName: family).contains(name) { + register() + } + #elseif os(macOS) + if let url = url, CTFontManagerGetScopeForURL(url as CFURL) == .none { + register() + } + #endif + } + fileprivate var url: URL? { // swiftlint:disable:next implicit_return return Bundle.module.url(forResource: path, withExtension: nil) @@ -63,16 +94,34 @@ public struct FontConvertible { public extension FontConvertible.Font { convenience init?(font: FontConvertible, size: CGFloat) { - #if os(iOS) || os(tvOS) || os(watchOS) - if !UIFont.fontNames(forFamilyName: font.family).contains(font.name) { - font.register() - } - #elseif os(OSX) - if let url = font.url, CTFontManagerGetScopeForURL(url as CFURL) == .none { - font.register() - } - #endif - + font.registerIfNeeded() self.init(name: font.name, size: size) } } + +#if canImport(SwiftUI) +@available(iOS 13.0, tvOS 13.0, watchOS 6.0, macOS 10.15, *) +public extension SwiftUI.Font { + static func custom(_ font: FontConvertible, size: CGFloat) -> SwiftUI.Font { + font.registerIfNeeded() + return custom(font.name, size: size) + } +} + +@available(iOS 14.0, tvOS 14.0, watchOS 7.0, macOS 11.0, *) +public extension SwiftUI.Font { + static func custom(_ font: FontConvertible, fixedSize: CGFloat) -> SwiftUI.Font { + font.registerIfNeeded() + return custom(font.name, fixedSize: fixedSize) + } + + static func custom( + _ font: FontConvertible, + size: CGFloat, + relativeTo textStyle: SwiftUI.Font.TextStyle + ) -> SwiftUI.Font { + font.registerIfNeeded() + return custom(font.name, size: size, relativeTo: textStyle) + } +} +#endif diff --git a/MastodonSDK/Sources/MastodonLocalization/Generated/Strings.swift b/MastodonSDK/Sources/MastodonLocalization/Generated/Strings.swift index e9e213fa9..f3d69950e 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Generated/Strings.swift +++ b/MastodonSDK/Sources/MastodonLocalization/Generated/Strings.swift @@ -3,1440 +3,1452 @@ import Foundation -// swiftlint:disable superfluous_disable_command file_length implicit_return +// swiftlint:disable superfluous_disable_command file_length implicit_return prefer_self_in_static_references // MARK: - Strings // swiftlint:disable explicit_type_interface function_parameter_count identifier_name line_length // swiftlint:disable nesting type_body_length type_name vertical_whitespace_opening_braces public enum L10n { - public enum Common { public enum Alerts { public enum BlockDomain { /// Block Domain - public static let blockEntireDomain = L10n.tr("Localizable", "Common.Alerts.BlockDomain.BlockEntireDomain") + public static let blockEntireDomain = L10n.tr("Localizable", "Common.Alerts.BlockDomain.BlockEntireDomain", fallback: "Block Domain") /// Are you really, really sure you want to block the entire %@? In most cases a few targeted blocks or mutes are sufficient and preferable. You will not see content from that domain and any of your followers from that domain will be removed. public static func title(_ p1: Any) -> String { - return L10n.tr("Localizable", "Common.Alerts.BlockDomain.Title", String(describing: p1)) + return L10n.tr("Localizable", "Common.Alerts.BlockDomain.Title", String(describing: p1), fallback: "Are you really, really sure you want to block the entire %@? In most cases a few targeted blocks or mutes are sufficient and preferable. You will not see content from that domain and any of your followers from that domain will be removed.") } } public enum CleanCache { /// Successfully cleaned %@ cache. public static func message(_ p1: Any) -> String { - return L10n.tr("Localizable", "Common.Alerts.CleanCache.Message", String(describing: p1)) + return L10n.tr("Localizable", "Common.Alerts.CleanCache.Message", String(describing: p1), fallback: "Successfully cleaned %@ cache.") } /// Clean Cache - public static let title = L10n.tr("Localizable", "Common.Alerts.CleanCache.Title") + public static let title = L10n.tr("Localizable", "Common.Alerts.CleanCache.Title", fallback: "Clean Cache") } public enum Common { /// Please try again. - public static let pleaseTryAgain = L10n.tr("Localizable", "Common.Alerts.Common.PleaseTryAgain") + public static let pleaseTryAgain = L10n.tr("Localizable", "Common.Alerts.Common.PleaseTryAgain", fallback: "Please try again.") /// Please try again later. - public static let pleaseTryAgainLater = L10n.tr("Localizable", "Common.Alerts.Common.PleaseTryAgainLater") + public static let pleaseTryAgainLater = L10n.tr("Localizable", "Common.Alerts.Common.PleaseTryAgainLater", fallback: "Please try again later.") } public enum DeletePost { /// Are you sure you want to delete this post? - public static let message = L10n.tr("Localizable", "Common.Alerts.DeletePost.Message") + public static let message = L10n.tr("Localizable", "Common.Alerts.DeletePost.Message", fallback: "Are you sure you want to delete this post?") /// Delete Post - public static let title = L10n.tr("Localizable", "Common.Alerts.DeletePost.Title") + public static let title = L10n.tr("Localizable", "Common.Alerts.DeletePost.Title", fallback: "Delete Post") } public enum DiscardPostContent { /// Confirm to discard composed post content. - public static let message = L10n.tr("Localizable", "Common.Alerts.DiscardPostContent.Message") + public static let message = L10n.tr("Localizable", "Common.Alerts.DiscardPostContent.Message", fallback: "Confirm to discard composed post content.") /// Discard Draft - public static let title = L10n.tr("Localizable", "Common.Alerts.DiscardPostContent.Title") + public static let title = L10n.tr("Localizable", "Common.Alerts.DiscardPostContent.Title", fallback: "Discard Draft") } public enum EditProfileFailure { /// Cannot edit profile. Please try again. - public static let message = L10n.tr("Localizable", "Common.Alerts.EditProfileFailure.Message") + public static let message = L10n.tr("Localizable", "Common.Alerts.EditProfileFailure.Message", fallback: "Cannot edit profile. Please try again.") /// Edit Profile Error - public static let title = L10n.tr("Localizable", "Common.Alerts.EditProfileFailure.Title") + public static let title = L10n.tr("Localizable", "Common.Alerts.EditProfileFailure.Title", fallback: "Edit Profile Error") } public enum PublishPostFailure { - /// Failed to publish the post.\nPlease check your internet connection. - public static let message = L10n.tr("Localizable", "Common.Alerts.PublishPostFailure.Message") + /// Failed to publish the post. + /// Please check your internet connection. + public static let message = L10n.tr("Localizable", "Common.Alerts.PublishPostFailure.Message", fallback: "Failed to publish the post.\nPlease check your internet connection.") /// Publish Failure - public static let title = L10n.tr("Localizable", "Common.Alerts.PublishPostFailure.Title") + public static let title = L10n.tr("Localizable", "Common.Alerts.PublishPostFailure.Title", fallback: "Publish Failure") public enum AttachmentsMessage { /// Cannot attach more than one video. - public static let moreThanOneVideo = L10n.tr("Localizable", "Common.Alerts.PublishPostFailure.AttachmentsMessage.MoreThanOneVideo") + public static let moreThanOneVideo = L10n.tr("Localizable", "Common.Alerts.PublishPostFailure.AttachmentsMessage.MoreThanOneVideo", fallback: "Cannot attach more than one video.") /// Cannot attach a video to a post that already contains images. - public static let videoAttachWithPhoto = L10n.tr("Localizable", "Common.Alerts.PublishPostFailure.AttachmentsMessage.VideoAttachWithPhoto") + public static let videoAttachWithPhoto = L10n.tr("Localizable", "Common.Alerts.PublishPostFailure.AttachmentsMessage.VideoAttachWithPhoto", fallback: "Cannot attach a video to a post that already contains images.") } } public enum SavePhotoFailure { /// Please enable the photo library access permission to save the photo. - public static let message = L10n.tr("Localizable", "Common.Alerts.SavePhotoFailure.Message") + public static let message = L10n.tr("Localizable", "Common.Alerts.SavePhotoFailure.Message", fallback: "Please enable the photo library access permission to save the photo.") /// Save Photo Failure - public static let title = L10n.tr("Localizable", "Common.Alerts.SavePhotoFailure.Title") + public static let title = L10n.tr("Localizable", "Common.Alerts.SavePhotoFailure.Title", fallback: "Save Photo Failure") } public enum ServerError { /// Server Error - public static let title = L10n.tr("Localizable", "Common.Alerts.ServerError.Title") + public static let title = L10n.tr("Localizable", "Common.Alerts.ServerError.Title", fallback: "Server Error") } public enum SignOut { /// Sign Out - public static let confirm = L10n.tr("Localizable", "Common.Alerts.SignOut.Confirm") + public static let confirm = L10n.tr("Localizable", "Common.Alerts.SignOut.Confirm", fallback: "Sign Out") /// Are you sure you want to sign out? - public static let message = L10n.tr("Localizable", "Common.Alerts.SignOut.Message") + public static let message = L10n.tr("Localizable", "Common.Alerts.SignOut.Message", fallback: "Are you sure you want to sign out?") /// Sign Out - public static let title = L10n.tr("Localizable", "Common.Alerts.SignOut.Title") + public static let title = L10n.tr("Localizable", "Common.Alerts.SignOut.Title", fallback: "Sign Out") } public enum SignUpFailure { /// Sign Up Failure - public static let title = L10n.tr("Localizable", "Common.Alerts.SignUpFailure.Title") + public static let title = L10n.tr("Localizable", "Common.Alerts.SignUpFailure.Title", fallback: "Sign Up Failure") } public enum VoteFailure { /// The poll has ended - public static let pollEnded = L10n.tr("Localizable", "Common.Alerts.VoteFailure.PollEnded") + public static let pollEnded = L10n.tr("Localizable", "Common.Alerts.VoteFailure.PollEnded", fallback: "The poll has ended") /// Vote Failure - public static let title = L10n.tr("Localizable", "Common.Alerts.VoteFailure.Title") + public static let title = L10n.tr("Localizable", "Common.Alerts.VoteFailure.Title", fallback: "Vote Failure") } } public enum Controls { public enum Actions { /// Add - public static let add = L10n.tr("Localizable", "Common.Controls.Actions.Add") + public static let add = L10n.tr("Localizable", "Common.Controls.Actions.Add", fallback: "Add") /// Back - public static let back = L10n.tr("Localizable", "Common.Controls.Actions.Back") + public static let back = L10n.tr("Localizable", "Common.Controls.Actions.Back", fallback: "Back") /// Block %@ public static func blockDomain(_ p1: Any) -> String { - return L10n.tr("Localizable", "Common.Controls.Actions.BlockDomain", String(describing: p1)) + return L10n.tr("Localizable", "Common.Controls.Actions.BlockDomain", String(describing: p1), fallback: "Block %@") } /// Cancel - public static let cancel = L10n.tr("Localizable", "Common.Controls.Actions.Cancel") + public static let cancel = L10n.tr("Localizable", "Common.Controls.Actions.Cancel", fallback: "Cancel") /// Compose - public static let compose = L10n.tr("Localizable", "Common.Controls.Actions.Compose") + public static let compose = L10n.tr("Localizable", "Common.Controls.Actions.Compose", fallback: "Compose") /// Confirm - public static let confirm = L10n.tr("Localizable", "Common.Controls.Actions.Confirm") + public static let confirm = L10n.tr("Localizable", "Common.Controls.Actions.Confirm", fallback: "Confirm") /// Continue - public static let `continue` = L10n.tr("Localizable", "Common.Controls.Actions.Continue") + public static let `continue` = L10n.tr("Localizable", "Common.Controls.Actions.Continue", fallback: "Continue") /// Copy Photo - public static let copyPhoto = L10n.tr("Localizable", "Common.Controls.Actions.CopyPhoto") + public static let copyPhoto = L10n.tr("Localizable", "Common.Controls.Actions.CopyPhoto", fallback: "Copy Photo") /// Delete - public static let delete = L10n.tr("Localizable", "Common.Controls.Actions.Delete") + public static let delete = L10n.tr("Localizable", "Common.Controls.Actions.Delete", fallback: "Delete") /// Discard - public static let discard = L10n.tr("Localizable", "Common.Controls.Actions.Discard") + public static let discard = L10n.tr("Localizable", "Common.Controls.Actions.Discard", fallback: "Discard") /// Done - public static let done = L10n.tr("Localizable", "Common.Controls.Actions.Done") + public static let done = L10n.tr("Localizable", "Common.Controls.Actions.Done", fallback: "Done") /// Edit - public static let edit = L10n.tr("Localizable", "Common.Controls.Actions.Edit") + public static let edit = L10n.tr("Localizable", "Common.Controls.Actions.Edit", fallback: "Edit") /// Find people to follow - public static let findPeople = L10n.tr("Localizable", "Common.Controls.Actions.FindPeople") + public static let findPeople = L10n.tr("Localizable", "Common.Controls.Actions.FindPeople", fallback: "Find people to follow") /// Manually search instead - public static let manuallySearch = L10n.tr("Localizable", "Common.Controls.Actions.ManuallySearch") + public static let manuallySearch = L10n.tr("Localizable", "Common.Controls.Actions.ManuallySearch", fallback: "Manually search instead") /// Next - public static let next = L10n.tr("Localizable", "Common.Controls.Actions.Next") + public static let next = L10n.tr("Localizable", "Common.Controls.Actions.Next", fallback: "Next") /// OK - public static let ok = L10n.tr("Localizable", "Common.Controls.Actions.Ok") + public static let ok = L10n.tr("Localizable", "Common.Controls.Actions.Ok", fallback: "OK") /// Open - public static let `open` = L10n.tr("Localizable", "Common.Controls.Actions.Open") + public static let `open` = L10n.tr("Localizable", "Common.Controls.Actions.Open", fallback: "Open") /// Open in Browser - public static let openInBrowser = L10n.tr("Localizable", "Common.Controls.Actions.OpenInBrowser") + public static let openInBrowser = L10n.tr("Localizable", "Common.Controls.Actions.OpenInBrowser", fallback: "Open in Browser") /// Open in Safari - public static let openInSafari = L10n.tr("Localizable", "Common.Controls.Actions.OpenInSafari") + public static let openInSafari = L10n.tr("Localizable", "Common.Controls.Actions.OpenInSafari", fallback: "Open in Safari") /// Preview - public static let preview = L10n.tr("Localizable", "Common.Controls.Actions.Preview") + public static let preview = L10n.tr("Localizable", "Common.Controls.Actions.Preview", fallback: "Preview") /// Previous - public static let previous = L10n.tr("Localizable", "Common.Controls.Actions.Previous") + public static let previous = L10n.tr("Localizable", "Common.Controls.Actions.Previous", fallback: "Previous") /// Remove - public static let remove = L10n.tr("Localizable", "Common.Controls.Actions.Remove") + public static let remove = L10n.tr("Localizable", "Common.Controls.Actions.Remove", fallback: "Remove") /// Reply - public static let reply = L10n.tr("Localizable", "Common.Controls.Actions.Reply") + public static let reply = L10n.tr("Localizable", "Common.Controls.Actions.Reply", fallback: "Reply") /// Report %@ public static func reportUser(_ p1: Any) -> String { - return L10n.tr("Localizable", "Common.Controls.Actions.ReportUser", String(describing: p1)) + return L10n.tr("Localizable", "Common.Controls.Actions.ReportUser", String(describing: p1), fallback: "Report %@") } /// Save - public static let save = L10n.tr("Localizable", "Common.Controls.Actions.Save") + public static let save = L10n.tr("Localizable", "Common.Controls.Actions.Save", fallback: "Save") /// Save Photo - public static let savePhoto = L10n.tr("Localizable", "Common.Controls.Actions.SavePhoto") + public static let savePhoto = L10n.tr("Localizable", "Common.Controls.Actions.SavePhoto", fallback: "Save Photo") /// See More - public static let seeMore = L10n.tr("Localizable", "Common.Controls.Actions.SeeMore") + public static let seeMore = L10n.tr("Localizable", "Common.Controls.Actions.SeeMore", fallback: "See More") /// Settings - public static let settings = L10n.tr("Localizable", "Common.Controls.Actions.Settings") + public static let settings = L10n.tr("Localizable", "Common.Controls.Actions.Settings", fallback: "Settings") /// Share - public static let share = L10n.tr("Localizable", "Common.Controls.Actions.Share") + public static let share = L10n.tr("Localizable", "Common.Controls.Actions.Share", fallback: "Share") /// Share Post - public static let sharePost = L10n.tr("Localizable", "Common.Controls.Actions.SharePost") + public static let sharePost = L10n.tr("Localizable", "Common.Controls.Actions.SharePost", fallback: "Share Post") /// Share %@ public static func shareUser(_ p1: Any) -> String { - return L10n.tr("Localizable", "Common.Controls.Actions.ShareUser", String(describing: p1)) + return L10n.tr("Localizable", "Common.Controls.Actions.ShareUser", String(describing: p1), fallback: "Share %@") } /// Sign In - public static let signIn = L10n.tr("Localizable", "Common.Controls.Actions.SignIn") + public static let signIn = L10n.tr("Localizable", "Common.Controls.Actions.SignIn", fallback: "Sign In") /// Sign Up - public static let signUp = L10n.tr("Localizable", "Common.Controls.Actions.SignUp") + public static let signUp = L10n.tr("Localizable", "Common.Controls.Actions.SignUp", fallback: "Sign Up") /// Skip - public static let skip = L10n.tr("Localizable", "Common.Controls.Actions.Skip") + public static let skip = L10n.tr("Localizable", "Common.Controls.Actions.Skip", fallback: "Skip") /// Take Photo - public static let takePhoto = L10n.tr("Localizable", "Common.Controls.Actions.TakePhoto") + public static let takePhoto = L10n.tr("Localizable", "Common.Controls.Actions.TakePhoto", fallback: "Take Photo") /// Try Again - public static let tryAgain = L10n.tr("Localizable", "Common.Controls.Actions.TryAgain") + public static let tryAgain = L10n.tr("Localizable", "Common.Controls.Actions.TryAgain", fallback: "Try Again") /// Unblock %@ public static func unblockDomain(_ p1: Any) -> String { - return L10n.tr("Localizable", "Common.Controls.Actions.UnblockDomain", String(describing: p1)) + return L10n.tr("Localizable", "Common.Controls.Actions.UnblockDomain", String(describing: p1), fallback: "Unblock %@") } } public enum Friendship { /// Block - public static let block = L10n.tr("Localizable", "Common.Controls.Friendship.Block") + public static let block = L10n.tr("Localizable", "Common.Controls.Friendship.Block", fallback: "Block") /// Block %@ public static func blockDomain(_ p1: Any) -> String { - return L10n.tr("Localizable", "Common.Controls.Friendship.BlockDomain", String(describing: p1)) + return L10n.tr("Localizable", "Common.Controls.Friendship.BlockDomain", String(describing: p1), fallback: "Block %@") } /// Blocked - public static let blocked = L10n.tr("Localizable", "Common.Controls.Friendship.Blocked") + public static let blocked = L10n.tr("Localizable", "Common.Controls.Friendship.Blocked", fallback: "Blocked") /// Block %@ public static func blockUser(_ p1: Any) -> String { - return L10n.tr("Localizable", "Common.Controls.Friendship.BlockUser", String(describing: p1)) + return L10n.tr("Localizable", "Common.Controls.Friendship.BlockUser", String(describing: p1), fallback: "Block %@") } /// Edit Info - public static let editInfo = L10n.tr("Localizable", "Common.Controls.Friendship.EditInfo") + public static let editInfo = L10n.tr("Localizable", "Common.Controls.Friendship.EditInfo", fallback: "Edit Info") /// Follow - public static let follow = L10n.tr("Localizable", "Common.Controls.Friendship.Follow") + public static let follow = L10n.tr("Localizable", "Common.Controls.Friendship.Follow", fallback: "Follow") /// Following - public static let following = L10n.tr("Localizable", "Common.Controls.Friendship.Following") + public static let following = L10n.tr("Localizable", "Common.Controls.Friendship.Following", fallback: "Following") /// Hide Reblogs - public static let hideReblogs = L10n.tr("Localizable", "Common.Controls.Friendship.HideReblogs") + public static let hideReblogs = L10n.tr("Localizable", "Common.Controls.Friendship.HideReblogs", fallback: "Hide Reblogs") /// Mute - public static let mute = L10n.tr("Localizable", "Common.Controls.Friendship.Mute") + public static let mute = L10n.tr("Localizable", "Common.Controls.Friendship.Mute", fallback: "Mute") /// Muted - public static let muted = L10n.tr("Localizable", "Common.Controls.Friendship.Muted") + public static let muted = L10n.tr("Localizable", "Common.Controls.Friendship.Muted", fallback: "Muted") /// Mute %@ public static func muteUser(_ p1: Any) -> String { - return L10n.tr("Localizable", "Common.Controls.Friendship.MuteUser", String(describing: p1)) + return L10n.tr("Localizable", "Common.Controls.Friendship.MuteUser", String(describing: p1), fallback: "Mute %@") } /// Pending - public static let pending = L10n.tr("Localizable", "Common.Controls.Friendship.Pending") + public static let pending = L10n.tr("Localizable", "Common.Controls.Friendship.Pending", fallback: "Pending") /// Request - public static let request = L10n.tr("Localizable", "Common.Controls.Friendship.Request") + public static let request = L10n.tr("Localizable", "Common.Controls.Friendship.Request", fallback: "Request") /// Show Reblogs - public static let showReblogs = L10n.tr("Localizable", "Common.Controls.Friendship.ShowReblogs") + public static let showReblogs = L10n.tr("Localizable", "Common.Controls.Friendship.ShowReblogs", fallback: "Show Reblogs") /// Unblock - public static let unblock = L10n.tr("Localizable", "Common.Controls.Friendship.Unblock") + public static let unblock = L10n.tr("Localizable", "Common.Controls.Friendship.Unblock", fallback: "Unblock") /// Unblock %@ public static func unblockUser(_ p1: Any) -> String { - return L10n.tr("Localizable", "Common.Controls.Friendship.UnblockUser", String(describing: p1)) + return L10n.tr("Localizable", "Common.Controls.Friendship.UnblockUser", String(describing: p1), fallback: "Unblock %@") } /// Unmute - public static let unmute = L10n.tr("Localizable", "Common.Controls.Friendship.Unmute") + public static let unmute = L10n.tr("Localizable", "Common.Controls.Friendship.Unmute", fallback: "Unmute") /// Unmute %@ public static func unmuteUser(_ p1: Any) -> String { - return L10n.tr("Localizable", "Common.Controls.Friendship.UnmuteUser", String(describing: p1)) + return L10n.tr("Localizable", "Common.Controls.Friendship.UnmuteUser", String(describing: p1), fallback: "Unmute %@") } } public enum Keyboard { public enum Common { /// Compose New Post - public static let composeNewPost = L10n.tr("Localizable", "Common.Controls.Keyboard.Common.ComposeNewPost") + public static let composeNewPost = L10n.tr("Localizable", "Common.Controls.Keyboard.Common.ComposeNewPost", fallback: "Compose New Post") /// Open Settings - public static let openSettings = L10n.tr("Localizable", "Common.Controls.Keyboard.Common.OpenSettings") + public static let openSettings = L10n.tr("Localizable", "Common.Controls.Keyboard.Common.OpenSettings", fallback: "Open Settings") /// Show Favorites - public static let showFavorites = L10n.tr("Localizable", "Common.Controls.Keyboard.Common.ShowFavorites") + public static let showFavorites = L10n.tr("Localizable", "Common.Controls.Keyboard.Common.ShowFavorites", fallback: "Show Favorites") /// Switch to %@ public static func switchToTab(_ p1: Any) -> String { - return L10n.tr("Localizable", "Common.Controls.Keyboard.Common.SwitchToTab", String(describing: p1)) + return L10n.tr("Localizable", "Common.Controls.Keyboard.Common.SwitchToTab", String(describing: p1), fallback: "Switch to %@") } } public enum SegmentedControl { /// Next Section - public static let nextSection = L10n.tr("Localizable", "Common.Controls.Keyboard.SegmentedControl.NextSection") + public static let nextSection = L10n.tr("Localizable", "Common.Controls.Keyboard.SegmentedControl.NextSection", fallback: "Next Section") /// Previous Section - public static let previousSection = L10n.tr("Localizable", "Common.Controls.Keyboard.SegmentedControl.PreviousSection") + public static let previousSection = L10n.tr("Localizable", "Common.Controls.Keyboard.SegmentedControl.PreviousSection", fallback: "Previous Section") } public enum Timeline { /// Next Post - public static let nextStatus = L10n.tr("Localizable", "Common.Controls.Keyboard.Timeline.NextStatus") + public static let nextStatus = L10n.tr("Localizable", "Common.Controls.Keyboard.Timeline.NextStatus", fallback: "Next Post") /// Open Author's Profile - public static let openAuthorProfile = L10n.tr("Localizable", "Common.Controls.Keyboard.Timeline.OpenAuthorProfile") + public static let openAuthorProfile = L10n.tr("Localizable", "Common.Controls.Keyboard.Timeline.OpenAuthorProfile", fallback: "Open Author's Profile") /// Open Reblogger's Profile - public static let openRebloggerProfile = L10n.tr("Localizable", "Common.Controls.Keyboard.Timeline.OpenRebloggerProfile") + public static let openRebloggerProfile = L10n.tr("Localizable", "Common.Controls.Keyboard.Timeline.OpenRebloggerProfile", fallback: "Open Reblogger's Profile") /// Open Post - public static let openStatus = L10n.tr("Localizable", "Common.Controls.Keyboard.Timeline.OpenStatus") + public static let openStatus = L10n.tr("Localizable", "Common.Controls.Keyboard.Timeline.OpenStatus", fallback: "Open Post") /// Preview Image - public static let previewImage = L10n.tr("Localizable", "Common.Controls.Keyboard.Timeline.PreviewImage") + public static let previewImage = L10n.tr("Localizable", "Common.Controls.Keyboard.Timeline.PreviewImage", fallback: "Preview Image") /// Previous Post - public static let previousStatus = L10n.tr("Localizable", "Common.Controls.Keyboard.Timeline.PreviousStatus") + public static let previousStatus = L10n.tr("Localizable", "Common.Controls.Keyboard.Timeline.PreviousStatus", fallback: "Previous Post") /// Reply to Post - public static let replyStatus = L10n.tr("Localizable", "Common.Controls.Keyboard.Timeline.ReplyStatus") + public static let replyStatus = L10n.tr("Localizable", "Common.Controls.Keyboard.Timeline.ReplyStatus", fallback: "Reply to Post") /// Toggle Content Warning - public static let toggleContentWarning = L10n.tr("Localizable", "Common.Controls.Keyboard.Timeline.ToggleContentWarning") + public static let toggleContentWarning = L10n.tr("Localizable", "Common.Controls.Keyboard.Timeline.ToggleContentWarning", fallback: "Toggle Content Warning") /// Toggle Favorite on Post - public static let toggleFavorite = L10n.tr("Localizable", "Common.Controls.Keyboard.Timeline.ToggleFavorite") + public static let toggleFavorite = L10n.tr("Localizable", "Common.Controls.Keyboard.Timeline.ToggleFavorite", fallback: "Toggle Favorite on Post") /// Toggle Reblog on Post - public static let toggleReblog = L10n.tr("Localizable", "Common.Controls.Keyboard.Timeline.ToggleReblog") + public static let toggleReblog = L10n.tr("Localizable", "Common.Controls.Keyboard.Timeline.ToggleReblog", fallback: "Toggle Reblog on Post") } } public enum Status { /// Content Warning - public static let contentWarning = L10n.tr("Localizable", "Common.Controls.Status.ContentWarning") + public static let contentWarning = L10n.tr("Localizable", "Common.Controls.Status.ContentWarning", fallback: "Content Warning") /// Tap anywhere to reveal - public static let mediaContentWarning = L10n.tr("Localizable", "Common.Controls.Status.MediaContentWarning") + public static let mediaContentWarning = L10n.tr("Localizable", "Common.Controls.Status.MediaContentWarning", fallback: "Tap anywhere to reveal") /// Sensitive Content - public static let sensitiveContent = L10n.tr("Localizable", "Common.Controls.Status.SensitiveContent") + public static let sensitiveContent = L10n.tr("Localizable", "Common.Controls.Status.SensitiveContent", fallback: "Sensitive Content") /// Show Post - public static let showPost = L10n.tr("Localizable", "Common.Controls.Status.ShowPost") + public static let showPost = L10n.tr("Localizable", "Common.Controls.Status.ShowPost", fallback: "Show Post") /// Show user profile - public static let showUserProfile = L10n.tr("Localizable", "Common.Controls.Status.ShowUserProfile") + public static let showUserProfile = L10n.tr("Localizable", "Common.Controls.Status.ShowUserProfile", fallback: "Show user profile") /// Tap to reveal - public static let tapToReveal = L10n.tr("Localizable", "Common.Controls.Status.TapToReveal") + public static let tapToReveal = L10n.tr("Localizable", "Common.Controls.Status.TapToReveal", fallback: "Tap to reveal") /// %@ reblogged public static func userReblogged(_ p1: Any) -> String { - return L10n.tr("Localizable", "Common.Controls.Status.UserReblogged", String(describing: p1)) + return L10n.tr("Localizable", "Common.Controls.Status.UserReblogged", String(describing: p1), fallback: "%@ reblogged") } /// Replied to %@ public static func userRepliedTo(_ p1: Any) -> String { - return L10n.tr("Localizable", "Common.Controls.Status.UserRepliedTo", String(describing: p1)) + return L10n.tr("Localizable", "Common.Controls.Status.UserRepliedTo", String(describing: p1), fallback: "Replied to %@") } public enum Actions { /// Favorite - public static let favorite = L10n.tr("Localizable", "Common.Controls.Status.Actions.Favorite") + public static let favorite = L10n.tr("Localizable", "Common.Controls.Status.Actions.Favorite", fallback: "Favorite") /// Hide - public static let hide = L10n.tr("Localizable", "Common.Controls.Status.Actions.Hide") + public static let hide = L10n.tr("Localizable", "Common.Controls.Status.Actions.Hide", fallback: "Hide") /// Menu - public static let menu = L10n.tr("Localizable", "Common.Controls.Status.Actions.Menu") + public static let menu = L10n.tr("Localizable", "Common.Controls.Status.Actions.Menu", fallback: "Menu") /// Reblog - public static let reblog = L10n.tr("Localizable", "Common.Controls.Status.Actions.Reblog") + public static let reblog = L10n.tr("Localizable", "Common.Controls.Status.Actions.Reblog", fallback: "Reblog") /// Reply - public static let reply = L10n.tr("Localizable", "Common.Controls.Status.Actions.Reply") + public static let reply = L10n.tr("Localizable", "Common.Controls.Status.Actions.Reply", fallback: "Reply") /// Show GIF - public static let showGif = L10n.tr("Localizable", "Common.Controls.Status.Actions.ShowGif") + public static let showGif = L10n.tr("Localizable", "Common.Controls.Status.Actions.ShowGif", fallback: "Show GIF") /// Show image - public static let showImage = L10n.tr("Localizable", "Common.Controls.Status.Actions.ShowImage") + public static let showImage = L10n.tr("Localizable", "Common.Controls.Status.Actions.ShowImage", fallback: "Show image") /// Show video player - public static let showVideoPlayer = L10n.tr("Localizable", "Common.Controls.Status.Actions.ShowVideoPlayer") + public static let showVideoPlayer = L10n.tr("Localizable", "Common.Controls.Status.Actions.ShowVideoPlayer", fallback: "Show video player") /// Tap then hold to show menu - public static let tapThenHoldToShowMenu = L10n.tr("Localizable", "Common.Controls.Status.Actions.TapThenHoldToShowMenu") + public static let tapThenHoldToShowMenu = L10n.tr("Localizable", "Common.Controls.Status.Actions.TapThenHoldToShowMenu", fallback: "Tap then hold to show menu") /// Unfavorite - public static let unfavorite = L10n.tr("Localizable", "Common.Controls.Status.Actions.Unfavorite") + public static let unfavorite = L10n.tr("Localizable", "Common.Controls.Status.Actions.Unfavorite", fallback: "Unfavorite") /// Undo reblog - public static let unreblog = L10n.tr("Localizable", "Common.Controls.Status.Actions.Unreblog") + public static let unreblog = L10n.tr("Localizable", "Common.Controls.Status.Actions.Unreblog", fallback: "Undo reblog") } public enum MetaEntity { /// Email address: %@ public static func email(_ p1: Any) -> String { - return L10n.tr("Localizable", "Common.Controls.Status.MetaEntity.Email", String(describing: p1)) + return L10n.tr("Localizable", "Common.Controls.Status.MetaEntity.Email", String(describing: p1), fallback: "Email address: %@") } /// Hashtag: %@ public static func hashtag(_ p1: Any) -> String { - return L10n.tr("Localizable", "Common.Controls.Status.MetaEntity.Hashtag", String(describing: p1)) + return L10n.tr("Localizable", "Common.Controls.Status.MetaEntity.Hashtag", String(describing: p1), fallback: "Hashtag: %@") } /// Show Profile: %@ public static func mention(_ p1: Any) -> String { - return L10n.tr("Localizable", "Common.Controls.Status.MetaEntity.Mention", String(describing: p1)) + return L10n.tr("Localizable", "Common.Controls.Status.MetaEntity.Mention", String(describing: p1), fallback: "Show Profile: %@") } /// Link: %@ public static func url(_ p1: Any) -> String { - return L10n.tr("Localizable", "Common.Controls.Status.MetaEntity.Url", String(describing: p1)) + return L10n.tr("Localizable", "Common.Controls.Status.MetaEntity.Url", String(describing: p1), fallback: "Link: %@") } } public enum Poll { /// Closed - public static let closed = L10n.tr("Localizable", "Common.Controls.Status.Poll.Closed") + public static let closed = L10n.tr("Localizable", "Common.Controls.Status.Poll.Closed", fallback: "Closed") /// Vote - public static let vote = L10n.tr("Localizable", "Common.Controls.Status.Poll.Vote") + public static let vote = L10n.tr("Localizable", "Common.Controls.Status.Poll.Vote", fallback: "Vote") } public enum Tag { /// Email - public static let email = L10n.tr("Localizable", "Common.Controls.Status.Tag.Email") + public static let email = L10n.tr("Localizable", "Common.Controls.Status.Tag.Email", fallback: "Email") /// Emoji - public static let emoji = L10n.tr("Localizable", "Common.Controls.Status.Tag.Emoji") + public static let emoji = L10n.tr("Localizable", "Common.Controls.Status.Tag.Emoji", fallback: "Emoji") /// Hashtag - public static let hashtag = L10n.tr("Localizable", "Common.Controls.Status.Tag.Hashtag") + public static let hashtag = L10n.tr("Localizable", "Common.Controls.Status.Tag.Hashtag", fallback: "Hashtag") /// Link - public static let link = L10n.tr("Localizable", "Common.Controls.Status.Tag.Link") + public static let link = L10n.tr("Localizable", "Common.Controls.Status.Tag.Link", fallback: "Link") /// Mention - public static let mention = L10n.tr("Localizable", "Common.Controls.Status.Tag.Mention") + public static let mention = L10n.tr("Localizable", "Common.Controls.Status.Tag.Mention", fallback: "Mention") /// URL - public static let url = L10n.tr("Localizable", "Common.Controls.Status.Tag.Url") + public static let url = L10n.tr("Localizable", "Common.Controls.Status.Tag.Url", fallback: "URL") } public enum Visibility { /// Only mentioned user can see this post. - public static let direct = L10n.tr("Localizable", "Common.Controls.Status.Visibility.Direct") + public static let direct = L10n.tr("Localizable", "Common.Controls.Status.Visibility.Direct", fallback: "Only mentioned user can see this post.") /// Only their followers can see this post. - public static let `private` = L10n.tr("Localizable", "Common.Controls.Status.Visibility.Private") + public static let `private` = L10n.tr("Localizable", "Common.Controls.Status.Visibility.Private", fallback: "Only their followers can see this post.") /// Only my followers can see this post. - public static let privateFromMe = L10n.tr("Localizable", "Common.Controls.Status.Visibility.PrivateFromMe") + public static let privateFromMe = L10n.tr("Localizable", "Common.Controls.Status.Visibility.PrivateFromMe", fallback: "Only my followers can see this post.") /// Everyone can see this post but not display in the public timeline. - public static let unlisted = L10n.tr("Localizable", "Common.Controls.Status.Visibility.Unlisted") + public static let unlisted = L10n.tr("Localizable", "Common.Controls.Status.Visibility.Unlisted", fallback: "Everyone can see this post but not display in the public timeline.") } } public enum Tabs { /// Home - public static let home = L10n.tr("Localizable", "Common.Controls.Tabs.Home") + public static let home = L10n.tr("Localizable", "Common.Controls.Tabs.Home", fallback: "Home") /// Notification - public static let notification = L10n.tr("Localizable", "Common.Controls.Tabs.Notification") + public static let notification = L10n.tr("Localizable", "Common.Controls.Tabs.Notification", fallback: "Notification") /// Profile - public static let profile = L10n.tr("Localizable", "Common.Controls.Tabs.Profile") + public static let profile = L10n.tr("Localizable", "Common.Controls.Tabs.Profile", fallback: "Profile") /// Search - public static let search = L10n.tr("Localizable", "Common.Controls.Tabs.Search") + public static let search = L10n.tr("Localizable", "Common.Controls.Tabs.Search", fallback: "Search") } public enum Timeline { /// Filtered - public static let filtered = L10n.tr("Localizable", "Common.Controls.Timeline.Filtered") + public static let filtered = L10n.tr("Localizable", "Common.Controls.Timeline.Filtered", fallback: "Filtered") public enum Header { - /// You can’t view this user’s profile\nuntil they unblock you. - public static let blockedWarning = L10n.tr("Localizable", "Common.Controls.Timeline.Header.BlockedWarning") - /// You can’t view this user's profile\nuntil you unblock them.\nYour profile looks like this to them. - public static let blockingWarning = L10n.tr("Localizable", "Common.Controls.Timeline.Header.BlockingWarning") + /// You can’t view this user’s profile + /// until they unblock you. + public static let blockedWarning = L10n.tr("Localizable", "Common.Controls.Timeline.Header.BlockedWarning", fallback: "You can’t view this user’s profile\nuntil they unblock you.") + /// You can’t view this user's profile + /// until you unblock them. + /// Your profile looks like this to them. + public static let blockingWarning = L10n.tr("Localizable", "Common.Controls.Timeline.Header.BlockingWarning", fallback: "You can’t view this user's profile\nuntil you unblock them.\nYour profile looks like this to them.") /// No Post Found - public static let noStatusFound = L10n.tr("Localizable", "Common.Controls.Timeline.Header.NoStatusFound") + public static let noStatusFound = L10n.tr("Localizable", "Common.Controls.Timeline.Header.NoStatusFound", fallback: "No Post Found") /// This user has been suspended. - public static let suspendedWarning = L10n.tr("Localizable", "Common.Controls.Timeline.Header.SuspendedWarning") - /// You can’t view %@’s profile\nuntil they unblock you. + public static let suspendedWarning = L10n.tr("Localizable", "Common.Controls.Timeline.Header.SuspendedWarning", fallback: "This user has been suspended.") + /// You can’t view %@’s profile + /// until they unblock you. public static func userBlockedWarning(_ p1: Any) -> String { - return L10n.tr("Localizable", "Common.Controls.Timeline.Header.UserBlockedWarning", String(describing: p1)) + return L10n.tr("Localizable", "Common.Controls.Timeline.Header.UserBlockedWarning", String(describing: p1), fallback: "You can’t view %@’s profile\nuntil they unblock you.") } - /// You can’t view %@’s profile\nuntil you unblock them.\nYour profile looks like this to them. + /// You can’t view %@’s profile + /// until you unblock them. + /// Your profile looks like this to them. public static func userBlockingWarning(_ p1: Any) -> String { - return L10n.tr("Localizable", "Common.Controls.Timeline.Header.UserBlockingWarning", String(describing: p1)) + return L10n.tr("Localizable", "Common.Controls.Timeline.Header.UserBlockingWarning", String(describing: p1), fallback: "You can’t view %@’s profile\nuntil you unblock them.\nYour profile looks like this to them.") } /// %@’s account has been suspended. public static func userSuspendedWarning(_ p1: Any) -> String { - return L10n.tr("Localizable", "Common.Controls.Timeline.Header.UserSuspendedWarning", String(describing: p1)) + return L10n.tr("Localizable", "Common.Controls.Timeline.Header.UserSuspendedWarning", String(describing: p1), fallback: "%@’s account has been suspended.") } } public enum Loader { /// Loading missing posts... - public static let loadingMissingPosts = L10n.tr("Localizable", "Common.Controls.Timeline.Loader.LoadingMissingPosts") + public static let loadingMissingPosts = L10n.tr("Localizable", "Common.Controls.Timeline.Loader.LoadingMissingPosts", fallback: "Loading missing posts...") /// Load missing posts - public static let loadMissingPosts = L10n.tr("Localizable", "Common.Controls.Timeline.Loader.LoadMissingPosts") + public static let loadMissingPosts = L10n.tr("Localizable", "Common.Controls.Timeline.Loader.LoadMissingPosts", fallback: "Load missing posts") /// Show more replies - public static let showMoreReplies = L10n.tr("Localizable", "Common.Controls.Timeline.Loader.ShowMoreReplies") + public static let showMoreReplies = L10n.tr("Localizable", "Common.Controls.Timeline.Loader.ShowMoreReplies", fallback: "Show more replies") } public enum Timestamp { /// Now - public static let now = L10n.tr("Localizable", "Common.Controls.Timeline.Timestamp.Now") + public static let now = L10n.tr("Localizable", "Common.Controls.Timeline.Timestamp.Now", fallback: "Now") } } } } - public enum Scene { public enum AccountList { /// Add Account - public static let addAccount = L10n.tr("Localizable", "Scene.AccountList.AddAccount") + public static let addAccount = L10n.tr("Localizable", "Scene.AccountList.AddAccount", fallback: "Add Account") /// Dismiss Account Switcher - public static let dismissAccountSwitcher = L10n.tr("Localizable", "Scene.AccountList.DismissAccountSwitcher") + public static let dismissAccountSwitcher = L10n.tr("Localizable", "Scene.AccountList.DismissAccountSwitcher", fallback: "Dismiss Account Switcher") /// Current selected profile: %@. Double tap then hold to show account switcher public static func tabBarHint(_ p1: Any) -> String { - return L10n.tr("Localizable", "Scene.AccountList.TabBarHint", String(describing: p1)) + return L10n.tr("Localizable", "Scene.AccountList.TabBarHint", String(describing: p1), fallback: "Current selected profile: %@. Double tap then hold to show account switcher") } } public enum Bookmark { /// Bookmarks - public static let title = L10n.tr("Localizable", "Scene.Bookmark.Title") + public static let title = L10n.tr("Localizable", "Scene.Bookmark.Title", fallback: "Bookmarks") } public enum Compose { /// Publish - public static let composeAction = L10n.tr("Localizable", "Scene.Compose.ComposeAction") + public static let composeAction = L10n.tr("Localizable", "Scene.Compose.ComposeAction", fallback: "Publish") /// Type or paste what’s on your mind - public static let contentInputPlaceholder = L10n.tr("Localizable", "Scene.Compose.ContentInputPlaceholder") + public static let contentInputPlaceholder = L10n.tr("Localizable", "Scene.Compose.ContentInputPlaceholder", fallback: "Type or paste what’s on your mind") /// replying to %@ public static func replyingToUser(_ p1: Any) -> String { - return L10n.tr("Localizable", "Scene.Compose.ReplyingToUser", String(describing: p1)) + return L10n.tr("Localizable", "Scene.Compose.ReplyingToUser", String(describing: p1), fallback: "replying to %@") } public enum Accessibility { /// Add Attachment - public static let appendAttachment = L10n.tr("Localizable", "Scene.Compose.Accessibility.AppendAttachment") + public static let appendAttachment = L10n.tr("Localizable", "Scene.Compose.Accessibility.AppendAttachment", fallback: "Add Attachment") /// Add Poll - public static let appendPoll = L10n.tr("Localizable", "Scene.Compose.Accessibility.AppendPoll") + public static let appendPoll = L10n.tr("Localizable", "Scene.Compose.Accessibility.AppendPoll", fallback: "Add Poll") /// Custom Emoji Picker - public static let customEmojiPicker = L10n.tr("Localizable", "Scene.Compose.Accessibility.CustomEmojiPicker") + public static let customEmojiPicker = L10n.tr("Localizable", "Scene.Compose.Accessibility.CustomEmojiPicker", fallback: "Custom Emoji Picker") /// Disable Content Warning - public static let disableContentWarning = L10n.tr("Localizable", "Scene.Compose.Accessibility.DisableContentWarning") + public static let disableContentWarning = L10n.tr("Localizable", "Scene.Compose.Accessibility.DisableContentWarning", fallback: "Disable Content Warning") /// Enable Content Warning - public static let enableContentWarning = L10n.tr("Localizable", "Scene.Compose.Accessibility.EnableContentWarning") + public static let enableContentWarning = L10n.tr("Localizable", "Scene.Compose.Accessibility.EnableContentWarning", fallback: "Enable Content Warning") /// Posting as %@ public static func postingAs(_ p1: Any) -> String { - return L10n.tr("Localizable", "Scene.Compose.Accessibility.PostingAs", String(describing: p1)) + return L10n.tr("Localizable", "Scene.Compose.Accessibility.PostingAs", String(describing: p1), fallback: "Posting as %@") } /// Post Options - public static let postOptions = L10n.tr("Localizable", "Scene.Compose.Accessibility.PostOptions") + public static let postOptions = L10n.tr("Localizable", "Scene.Compose.Accessibility.PostOptions", fallback: "Post Options") /// Post Visibility Menu - public static let postVisibilityMenu = L10n.tr("Localizable", "Scene.Compose.Accessibility.PostVisibilityMenu") + public static let postVisibilityMenu = L10n.tr("Localizable", "Scene.Compose.Accessibility.PostVisibilityMenu", fallback: "Post Visibility Menu") /// Remove Poll - public static let removePoll = L10n.tr("Localizable", "Scene.Compose.Accessibility.RemovePoll") + public static let removePoll = L10n.tr("Localizable", "Scene.Compose.Accessibility.RemovePoll", fallback: "Remove Poll") } public enum Attachment { - /// This %@ is broken and can’t be\nuploaded to Mastodon. + /// This %@ is broken and can’t be + /// uploaded to Mastodon. public static func attachmentBroken(_ p1: Any) -> String { - return L10n.tr("Localizable", "Scene.Compose.Attachment.AttachmentBroken", String(describing: p1)) + return L10n.tr("Localizable", "Scene.Compose.Attachment.AttachmentBroken", String(describing: p1), fallback: "This %@ is broken and can’t be\nuploaded to Mastodon.") } /// Attachment too large - public static let attachmentTooLarge = L10n.tr("Localizable", "Scene.Compose.Attachment.AttachmentTooLarge") - /// Can not regonize this media attachment - public static let canNotRecognizeThisMediaAttachment = L10n.tr("Localizable", "Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment") + public static let attachmentTooLarge = L10n.tr("Localizable", "Scene.Compose.Attachment.AttachmentTooLarge", fallback: "Attachment too large") + /// Can not recognize this media attachment + public static let canNotRecognizeThisMediaAttachment = L10n.tr("Localizable", "Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment", fallback: "Can not recognize this media attachment") + /// Compressing... + public static let compressingState = L10n.tr("Localizable", "Scene.Compose.Attachment.CompressingState", fallback: "Compressing...") /// Describe the photo for the visually-impaired... - public static let descriptionPhoto = L10n.tr("Localizable", "Scene.Compose.Attachment.DescriptionPhoto") + public static let descriptionPhoto = L10n.tr("Localizable", "Scene.Compose.Attachment.DescriptionPhoto", fallback: "Describe the photo for the visually-impaired...") /// Describe the video for the visually-impaired... - public static let descriptionVideo = L10n.tr("Localizable", "Scene.Compose.Attachment.DescriptionVideo") + public static let descriptionVideo = L10n.tr("Localizable", "Scene.Compose.Attachment.DescriptionVideo", fallback: "Describe the video for the visually-impaired...") /// Load Failed - public static let loadFailed = L10n.tr("Localizable", "Scene.Compose.Attachment.LoadFailed") + public static let loadFailed = L10n.tr("Localizable", "Scene.Compose.Attachment.LoadFailed", fallback: "Load Failed") /// photo - public static let photo = L10n.tr("Localizable", "Scene.Compose.Attachment.Photo") + public static let photo = L10n.tr("Localizable", "Scene.Compose.Attachment.Photo", fallback: "photo") + /// Server Processing... + public static let serverProcessingState = L10n.tr("Localizable", "Scene.Compose.Attachment.ServerProcessingState", fallback: "Server Processing...") /// Upload Failed - public static let uploadFailed = L10n.tr("Localizable", "Scene.Compose.Attachment.UploadFailed") + public static let uploadFailed = L10n.tr("Localizable", "Scene.Compose.Attachment.UploadFailed", fallback: "Upload Failed") /// video - public static let video = L10n.tr("Localizable", "Scene.Compose.Attachment.Video") + public static let video = L10n.tr("Localizable", "Scene.Compose.Attachment.Video", fallback: "video") } public enum AutoComplete { /// Space to add - public static let spaceToAdd = L10n.tr("Localizable", "Scene.Compose.AutoComplete.SpaceToAdd") + public static let spaceToAdd = L10n.tr("Localizable", "Scene.Compose.AutoComplete.SpaceToAdd", fallback: "Space to add") } public enum ContentWarning { /// Write an accurate warning here... - public static let placeholder = L10n.tr("Localizable", "Scene.Compose.ContentWarning.Placeholder") + public static let placeholder = L10n.tr("Localizable", "Scene.Compose.ContentWarning.Placeholder", fallback: "Write an accurate warning here...") } public enum Keyboard { /// Add Attachment - %@ public static func appendAttachmentEntry(_ p1: Any) -> String { - return L10n.tr("Localizable", "Scene.Compose.Keyboard.AppendAttachmentEntry", String(describing: p1)) + return L10n.tr("Localizable", "Scene.Compose.Keyboard.AppendAttachmentEntry", String(describing: p1), fallback: "Add Attachment - %@") } /// Discard Post - public static let discardPost = L10n.tr("Localizable", "Scene.Compose.Keyboard.DiscardPost") + public static let discardPost = L10n.tr("Localizable", "Scene.Compose.Keyboard.DiscardPost", fallback: "Discard Post") /// Publish Post - public static let publishPost = L10n.tr("Localizable", "Scene.Compose.Keyboard.PublishPost") + public static let publishPost = L10n.tr("Localizable", "Scene.Compose.Keyboard.PublishPost", fallback: "Publish Post") /// Select Visibility - %@ public static func selectVisibilityEntry(_ p1: Any) -> String { - return L10n.tr("Localizable", "Scene.Compose.Keyboard.SelectVisibilityEntry", String(describing: p1)) + return L10n.tr("Localizable", "Scene.Compose.Keyboard.SelectVisibilityEntry", String(describing: p1), fallback: "Select Visibility - %@") } /// Toggle Content Warning - public static let toggleContentWarning = L10n.tr("Localizable", "Scene.Compose.Keyboard.ToggleContentWarning") + public static let toggleContentWarning = L10n.tr("Localizable", "Scene.Compose.Keyboard.ToggleContentWarning", fallback: "Toggle Content Warning") /// Toggle Poll - public static let togglePoll = L10n.tr("Localizable", "Scene.Compose.Keyboard.TogglePoll") + public static let togglePoll = L10n.tr("Localizable", "Scene.Compose.Keyboard.TogglePoll", fallback: "Toggle Poll") } public enum MediaSelection { /// Browse - public static let browse = L10n.tr("Localizable", "Scene.Compose.MediaSelection.Browse") + public static let browse = L10n.tr("Localizable", "Scene.Compose.MediaSelection.Browse", fallback: "Browse") /// Take Photo - public static let camera = L10n.tr("Localizable", "Scene.Compose.MediaSelection.Camera") + public static let camera = L10n.tr("Localizable", "Scene.Compose.MediaSelection.Camera", fallback: "Take Photo") /// Photo Library - public static let photoLibrary = L10n.tr("Localizable", "Scene.Compose.MediaSelection.PhotoLibrary") + public static let photoLibrary = L10n.tr("Localizable", "Scene.Compose.MediaSelection.PhotoLibrary", fallback: "Photo Library") } public enum Poll { /// Duration: %@ public static func durationTime(_ p1: Any) -> String { - return L10n.tr("Localizable", "Scene.Compose.Poll.DurationTime", String(describing: p1)) + return L10n.tr("Localizable", "Scene.Compose.Poll.DurationTime", String(describing: p1), fallback: "Duration: %@") } /// 1 Day - public static let oneDay = L10n.tr("Localizable", "Scene.Compose.Poll.OneDay") + public static let oneDay = L10n.tr("Localizable", "Scene.Compose.Poll.OneDay", fallback: "1 Day") /// 1 Hour - public static let oneHour = L10n.tr("Localizable", "Scene.Compose.Poll.OneHour") + public static let oneHour = L10n.tr("Localizable", "Scene.Compose.Poll.OneHour", fallback: "1 Hour") /// Option %ld public static func optionNumber(_ p1: Int) -> String { - return L10n.tr("Localizable", "Scene.Compose.Poll.OptionNumber", p1) + return L10n.tr("Localizable", "Scene.Compose.Poll.OptionNumber", p1, fallback: "Option %ld") } /// 7 Days - public static let sevenDays = L10n.tr("Localizable", "Scene.Compose.Poll.SevenDays") + public static let sevenDays = L10n.tr("Localizable", "Scene.Compose.Poll.SevenDays", fallback: "7 Days") /// 6 Hours - public static let sixHours = L10n.tr("Localizable", "Scene.Compose.Poll.SixHours") + public static let sixHours = L10n.tr("Localizable", "Scene.Compose.Poll.SixHours", fallback: "6 Hours") + /// The poll has empty option + public static let thePollHasEmptyOption = L10n.tr("Localizable", "Scene.Compose.Poll.ThePollHasEmptyOption", fallback: "The poll has empty option") + /// The poll is invalid + public static let thePollIsInvalid = L10n.tr("Localizable", "Scene.Compose.Poll.ThePollIsInvalid", fallback: "The poll is invalid") /// 30 minutes - public static let thirtyMinutes = L10n.tr("Localizable", "Scene.Compose.Poll.ThirtyMinutes") + public static let thirtyMinutes = L10n.tr("Localizable", "Scene.Compose.Poll.ThirtyMinutes", fallback: "30 minutes") /// 3 Days - public static let threeDays = L10n.tr("Localizable", "Scene.Compose.Poll.ThreeDays") + public static let threeDays = L10n.tr("Localizable", "Scene.Compose.Poll.ThreeDays", fallback: "3 Days") } public enum Title { /// New Post - public static let newPost = L10n.tr("Localizable", "Scene.Compose.Title.NewPost") + public static let newPost = L10n.tr("Localizable", "Scene.Compose.Title.NewPost", fallback: "New Post") /// New Reply - public static let newReply = L10n.tr("Localizable", "Scene.Compose.Title.NewReply") + public static let newReply = L10n.tr("Localizable", "Scene.Compose.Title.NewReply", fallback: "New Reply") } public enum Visibility { /// Only people I mention - public static let direct = L10n.tr("Localizable", "Scene.Compose.Visibility.Direct") + public static let direct = L10n.tr("Localizable", "Scene.Compose.Visibility.Direct", fallback: "Only people I mention") /// Followers only - public static let `private` = L10n.tr("Localizable", "Scene.Compose.Visibility.Private") + public static let `private` = L10n.tr("Localizable", "Scene.Compose.Visibility.Private", fallback: "Followers only") /// Public - public static let `public` = L10n.tr("Localizable", "Scene.Compose.Visibility.Public") + public static let `public` = L10n.tr("Localizable", "Scene.Compose.Visibility.Public", fallback: "Public") /// Unlisted - public static let unlisted = L10n.tr("Localizable", "Scene.Compose.Visibility.Unlisted") + public static let unlisted = L10n.tr("Localizable", "Scene.Compose.Visibility.Unlisted", fallback: "Unlisted") } } public enum ConfirmEmail { /// Tap the link we emailed to you to verify your account. - public static let subtitle = L10n.tr("Localizable", "Scene.ConfirmEmail.Subtitle") + public static let subtitle = L10n.tr("Localizable", "Scene.ConfirmEmail.Subtitle", fallback: "Tap the link we emailed to you to verify your account.") /// Tap the link we emailed to you to verify your account - public static let tapTheLinkWeEmailedToYouToVerifyYourAccount = L10n.tr("Localizable", "Scene.ConfirmEmail.TapTheLinkWeEmailedToYouToVerifyYourAccount") + public static let tapTheLinkWeEmailedToYouToVerifyYourAccount = L10n.tr("Localizable", "Scene.ConfirmEmail.TapTheLinkWeEmailedToYouToVerifyYourAccount", fallback: "Tap the link we emailed to you to verify your account") /// One last thing. - public static let title = L10n.tr("Localizable", "Scene.ConfirmEmail.Title") + public static let title = L10n.tr("Localizable", "Scene.ConfirmEmail.Title", fallback: "One last thing.") public enum Button { /// Open Email App - public static let openEmailApp = L10n.tr("Localizable", "Scene.ConfirmEmail.Button.OpenEmailApp") + public static let openEmailApp = L10n.tr("Localizable", "Scene.ConfirmEmail.Button.OpenEmailApp", fallback: "Open Email App") /// Resend - public static let resend = L10n.tr("Localizable", "Scene.ConfirmEmail.Button.Resend") + public static let resend = L10n.tr("Localizable", "Scene.ConfirmEmail.Button.Resend", fallback: "Resend") } public enum DontReceiveEmail { /// Check if your email address is correct as well as your junk folder if you haven’t. - public static let description = L10n.tr("Localizable", "Scene.ConfirmEmail.DontReceiveEmail.Description") + public static let description = L10n.tr("Localizable", "Scene.ConfirmEmail.DontReceiveEmail.Description", fallback: "Check if your email address is correct as well as your junk folder if you haven’t.") /// Resend Email - public static let resendEmail = L10n.tr("Localizable", "Scene.ConfirmEmail.DontReceiveEmail.ResendEmail") + public static let resendEmail = L10n.tr("Localizable", "Scene.ConfirmEmail.DontReceiveEmail.ResendEmail", fallback: "Resend Email") /// Check your email - public static let title = L10n.tr("Localizable", "Scene.ConfirmEmail.DontReceiveEmail.Title") + public static let title = L10n.tr("Localizable", "Scene.ConfirmEmail.DontReceiveEmail.Title", fallback: "Check your email") } public enum OpenEmailApp { /// We just sent you an email. Check your junk folder if you haven’t. - public static let description = L10n.tr("Localizable", "Scene.ConfirmEmail.OpenEmailApp.Description") + public static let description = L10n.tr("Localizable", "Scene.ConfirmEmail.OpenEmailApp.Description", fallback: "We just sent you an email. Check your junk folder if you haven’t.") /// Mail - public static let mail = L10n.tr("Localizable", "Scene.ConfirmEmail.OpenEmailApp.Mail") + public static let mail = L10n.tr("Localizable", "Scene.ConfirmEmail.OpenEmailApp.Mail", fallback: "Mail") /// Open Email Client - public static let openEmailClient = L10n.tr("Localizable", "Scene.ConfirmEmail.OpenEmailApp.OpenEmailClient") + public static let openEmailClient = L10n.tr("Localizable", "Scene.ConfirmEmail.OpenEmailApp.OpenEmailClient", fallback: "Open Email Client") /// Check your inbox. - public static let title = L10n.tr("Localizable", "Scene.ConfirmEmail.OpenEmailApp.Title") + public static let title = L10n.tr("Localizable", "Scene.ConfirmEmail.OpenEmailApp.Title", fallback: "Check your inbox.") } } public enum Discovery { /// These are the posts gaining traction in your corner of Mastodon. - public static let intro = L10n.tr("Localizable", "Scene.Discovery.Intro") + public static let intro = L10n.tr("Localizable", "Scene.Discovery.Intro", fallback: "These are the posts gaining traction in your corner of Mastodon.") public enum Tabs { /// Community - public static let community = L10n.tr("Localizable", "Scene.Discovery.Tabs.Community") + public static let community = L10n.tr("Localizable", "Scene.Discovery.Tabs.Community", fallback: "Community") /// For You - public static let forYou = L10n.tr("Localizable", "Scene.Discovery.Tabs.ForYou") + public static let forYou = L10n.tr("Localizable", "Scene.Discovery.Tabs.ForYou", fallback: "For You") /// Hashtags - public static let hashtags = L10n.tr("Localizable", "Scene.Discovery.Tabs.Hashtags") + public static let hashtags = L10n.tr("Localizable", "Scene.Discovery.Tabs.Hashtags", fallback: "Hashtags") /// News - public static let news = L10n.tr("Localizable", "Scene.Discovery.Tabs.News") + public static let news = L10n.tr("Localizable", "Scene.Discovery.Tabs.News", fallback: "News") /// Posts - public static let posts = L10n.tr("Localizable", "Scene.Discovery.Tabs.Posts") + public static let posts = L10n.tr("Localizable", "Scene.Discovery.Tabs.Posts", fallback: "Posts") } } public enum Familiarfollowers { /// Followed by %@ public static func followedByNames(_ p1: Any) -> String { - return L10n.tr("Localizable", "Scene.Familiarfollowers.FollowedByNames", String(describing: p1)) + return L10n.tr("Localizable", "Scene.Familiarfollowers.FollowedByNames", String(describing: p1), fallback: "Followed by %@") } /// Followers you familiar - public static let title = L10n.tr("Localizable", "Scene.Familiarfollowers.Title") + public static let title = L10n.tr("Localizable", "Scene.Familiarfollowers.Title", fallback: "Followers you familiar") } public enum Favorite { /// Your Favorites - public static let title = L10n.tr("Localizable", "Scene.Favorite.Title") + public static let title = L10n.tr("Localizable", "Scene.Favorite.Title", fallback: "Your Favorites") } public enum FavoritedBy { /// Favorited By - public static let title = L10n.tr("Localizable", "Scene.FavoritedBy.Title") + public static let title = L10n.tr("Localizable", "Scene.FavoritedBy.Title", fallback: "Favorited By") } public enum Follower { /// Followers from other servers are not displayed. - public static let footer = L10n.tr("Localizable", "Scene.Follower.Footer") + public static let footer = L10n.tr("Localizable", "Scene.Follower.Footer", fallback: "Followers from other servers are not displayed.") /// follower - public static let title = L10n.tr("Localizable", "Scene.Follower.Title") + public static let title = L10n.tr("Localizable", "Scene.Follower.Title", fallback: "follower") } public enum Following { /// Follows from other servers are not displayed. - public static let footer = L10n.tr("Localizable", "Scene.Following.Footer") + public static let footer = L10n.tr("Localizable", "Scene.Following.Footer", fallback: "Follows from other servers are not displayed.") /// following - public static let title = L10n.tr("Localizable", "Scene.Following.Title") + public static let title = L10n.tr("Localizable", "Scene.Following.Title", fallback: "following") } public enum HomeTimeline { /// Home - public static let title = L10n.tr("Localizable", "Scene.HomeTimeline.Title") + public static let title = L10n.tr("Localizable", "Scene.HomeTimeline.Title", fallback: "Home") public enum NavigationBarState { /// See new posts - public static let newPosts = L10n.tr("Localizable", "Scene.HomeTimeline.NavigationBarState.NewPosts") + public static let newPosts = L10n.tr("Localizable", "Scene.HomeTimeline.NavigationBarState.NewPosts", fallback: "See new posts") /// Offline - public static let offline = L10n.tr("Localizable", "Scene.HomeTimeline.NavigationBarState.Offline") + public static let offline = L10n.tr("Localizable", "Scene.HomeTimeline.NavigationBarState.Offline", fallback: "Offline") /// Published! - public static let published = L10n.tr("Localizable", "Scene.HomeTimeline.NavigationBarState.Published") + public static let published = L10n.tr("Localizable", "Scene.HomeTimeline.NavigationBarState.Published", fallback: "Published!") /// Publishing post... - public static let publishing = L10n.tr("Localizable", "Scene.HomeTimeline.NavigationBarState.Publishing") + public static let publishing = L10n.tr("Localizable", "Scene.HomeTimeline.NavigationBarState.Publishing", fallback: "Publishing post...") public enum Accessibility { /// Tap to scroll to top and tap again to previous location - public static let logoHint = L10n.tr("Localizable", "Scene.HomeTimeline.NavigationBarState.Accessibility.LogoHint") + public static let logoHint = L10n.tr("Localizable", "Scene.HomeTimeline.NavigationBarState.Accessibility.LogoHint", fallback: "Tap to scroll to top and tap again to previous location") /// Logo Button - public static let logoLabel = L10n.tr("Localizable", "Scene.HomeTimeline.NavigationBarState.Accessibility.LogoLabel") + public static let logoLabel = L10n.tr("Localizable", "Scene.HomeTimeline.NavigationBarState.Accessibility.LogoLabel", fallback: "Logo Button") } } } public enum Notification { public enum FollowRequest { /// Accept - public static let accept = L10n.tr("Localizable", "Scene.Notification.FollowRequest.Accept") + public static let accept = L10n.tr("Localizable", "Scene.Notification.FollowRequest.Accept", fallback: "Accept") /// Accepted - public static let accepted = L10n.tr("Localizable", "Scene.Notification.FollowRequest.Accepted") + public static let accepted = L10n.tr("Localizable", "Scene.Notification.FollowRequest.Accepted", fallback: "Accepted") /// reject - public static let reject = L10n.tr("Localizable", "Scene.Notification.FollowRequest.Reject") + public static let reject = L10n.tr("Localizable", "Scene.Notification.FollowRequest.Reject", fallback: "reject") /// Rejected - public static let rejected = L10n.tr("Localizable", "Scene.Notification.FollowRequest.Rejected") + public static let rejected = L10n.tr("Localizable", "Scene.Notification.FollowRequest.Rejected", fallback: "Rejected") } public enum Keyobard { /// Show Everything - public static let showEverything = L10n.tr("Localizable", "Scene.Notification.Keyobard.ShowEverything") + public static let showEverything = L10n.tr("Localizable", "Scene.Notification.Keyobard.ShowEverything", fallback: "Show Everything") /// Show Mentions - public static let showMentions = L10n.tr("Localizable", "Scene.Notification.Keyobard.ShowMentions") + public static let showMentions = L10n.tr("Localizable", "Scene.Notification.Keyobard.ShowMentions", fallback: "Show Mentions") } public enum NotificationDescription { /// favorited your post - public static let favoritedYourPost = L10n.tr("Localizable", "Scene.Notification.NotificationDescription.FavoritedYourPost") + public static let favoritedYourPost = L10n.tr("Localizable", "Scene.Notification.NotificationDescription.FavoritedYourPost", fallback: "favorited your post") /// followed you - public static let followedYou = L10n.tr("Localizable", "Scene.Notification.NotificationDescription.FollowedYou") + public static let followedYou = L10n.tr("Localizable", "Scene.Notification.NotificationDescription.FollowedYou", fallback: "followed you") /// mentioned you - public static let mentionedYou = L10n.tr("Localizable", "Scene.Notification.NotificationDescription.MentionedYou") + public static let mentionedYou = L10n.tr("Localizable", "Scene.Notification.NotificationDescription.MentionedYou", fallback: "mentioned you") /// poll has ended - public static let pollHasEnded = L10n.tr("Localizable", "Scene.Notification.NotificationDescription.PollHasEnded") + public static let pollHasEnded = L10n.tr("Localizable", "Scene.Notification.NotificationDescription.PollHasEnded", fallback: "poll has ended") /// reblogged your post - public static let rebloggedYourPost = L10n.tr("Localizable", "Scene.Notification.NotificationDescription.RebloggedYourPost") + public static let rebloggedYourPost = L10n.tr("Localizable", "Scene.Notification.NotificationDescription.RebloggedYourPost", fallback: "reblogged your post") /// request to follow you - public static let requestToFollowYou = L10n.tr("Localizable", "Scene.Notification.NotificationDescription.RequestToFollowYou") + public static let requestToFollowYou = L10n.tr("Localizable", "Scene.Notification.NotificationDescription.RequestToFollowYou", fallback: "request to follow you") } public enum Title { /// Everything - public static let everything = L10n.tr("Localizable", "Scene.Notification.Title.Everything") + public static let everything = L10n.tr("Localizable", "Scene.Notification.Title.Everything", fallback: "Everything") /// Mentions - public static let mentions = L10n.tr("Localizable", "Scene.Notification.Title.Mentions") + public static let mentions = L10n.tr("Localizable", "Scene.Notification.Title.Mentions", fallback: "Mentions") } } public enum Preview { public enum Keyboard { /// Close Preview - public static let closePreview = L10n.tr("Localizable", "Scene.Preview.Keyboard.ClosePreview") + public static let closePreview = L10n.tr("Localizable", "Scene.Preview.Keyboard.ClosePreview", fallback: "Close Preview") /// Show Next - public static let showNext = L10n.tr("Localizable", "Scene.Preview.Keyboard.ShowNext") + public static let showNext = L10n.tr("Localizable", "Scene.Preview.Keyboard.ShowNext", fallback: "Show Next") /// Show Previous - public static let showPrevious = L10n.tr("Localizable", "Scene.Preview.Keyboard.ShowPrevious") + public static let showPrevious = L10n.tr("Localizable", "Scene.Preview.Keyboard.ShowPrevious", fallback: "Show Previous") } } public enum Profile { public enum Accessibility { /// Double tap to open the list - public static let doubleTapToOpenTheList = L10n.tr("Localizable", "Scene.Profile.Accessibility.DoubleTapToOpenTheList") + public static let doubleTapToOpenTheList = L10n.tr("Localizable", "Scene.Profile.Accessibility.DoubleTapToOpenTheList", fallback: "Double tap to open the list") /// Edit avatar image - public static let editAvatarImage = L10n.tr("Localizable", "Scene.Profile.Accessibility.EditAvatarImage") + public static let editAvatarImage = L10n.tr("Localizable", "Scene.Profile.Accessibility.EditAvatarImage", fallback: "Edit avatar image") /// Show avatar image - public static let showAvatarImage = L10n.tr("Localizable", "Scene.Profile.Accessibility.ShowAvatarImage") + public static let showAvatarImage = L10n.tr("Localizable", "Scene.Profile.Accessibility.ShowAvatarImage", fallback: "Show avatar image") /// Show banner image - public static let showBannerImage = L10n.tr("Localizable", "Scene.Profile.Accessibility.ShowBannerImage") + public static let showBannerImage = L10n.tr("Localizable", "Scene.Profile.Accessibility.ShowBannerImage", fallback: "Show banner image") } public enum Dashboard { /// followers - public static let followers = L10n.tr("Localizable", "Scene.Profile.Dashboard.Followers") + public static let followers = L10n.tr("Localizable", "Scene.Profile.Dashboard.Followers", fallback: "followers") /// following - public static let following = L10n.tr("Localizable", "Scene.Profile.Dashboard.Following") + public static let following = L10n.tr("Localizable", "Scene.Profile.Dashboard.Following", fallback: "following") /// posts - public static let posts = L10n.tr("Localizable", "Scene.Profile.Dashboard.Posts") + public static let posts = L10n.tr("Localizable", "Scene.Profile.Dashboard.Posts", fallback: "posts") } public enum Fields { /// Add Row - public static let addRow = L10n.tr("Localizable", "Scene.Profile.Fields.AddRow") + public static let addRow = L10n.tr("Localizable", "Scene.Profile.Fields.AddRow", fallback: "Add Row") public enum Placeholder { /// Content - public static let content = L10n.tr("Localizable", "Scene.Profile.Fields.Placeholder.Content") + public static let content = L10n.tr("Localizable", "Scene.Profile.Fields.Placeholder.Content", fallback: "Content") /// Label - public static let label = L10n.tr("Localizable", "Scene.Profile.Fields.Placeholder.Label") + public static let label = L10n.tr("Localizable", "Scene.Profile.Fields.Placeholder.Label", fallback: "Label") } } public enum Header { /// Follows You - public static let followsYou = L10n.tr("Localizable", "Scene.Profile.Header.FollowsYou") + public static let followsYou = L10n.tr("Localizable", "Scene.Profile.Header.FollowsYou", fallback: "Follows You") } public enum RelationshipActionAlert { public enum ConfirmBlockUser { /// Confirm to block %@ public static func message(_ p1: Any) -> String { - return L10n.tr("Localizable", "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message", String(describing: p1)) + return L10n.tr("Localizable", "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message", String(describing: p1), fallback: "Confirm to block %@") } /// Block Account - public static let title = L10n.tr("Localizable", "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title") + public static let title = L10n.tr("Localizable", "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title", fallback: "Block Account") } public enum ConfirmHideReblogs { /// Confirm to hide reblogs - public static let message = L10n.tr("Localizable", "Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message") + public static let message = L10n.tr("Localizable", "Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message", fallback: "Confirm to hide reblogs") /// Hide Reblogs - public static let title = L10n.tr("Localizable", "Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Title") + public static let title = L10n.tr("Localizable", "Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Title", fallback: "Hide Reblogs") } public enum ConfirmMuteUser { /// Confirm to mute %@ public static func message(_ p1: Any) -> String { - return L10n.tr("Localizable", "Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Message", String(describing: p1)) + return L10n.tr("Localizable", "Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Message", String(describing: p1), fallback: "Confirm to mute %@") } /// Mute Account - public static let title = L10n.tr("Localizable", "Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title") + public static let title = L10n.tr("Localizable", "Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title", fallback: "Mute Account") } public enum ConfirmShowReblogs { /// Confirm to show reblogs - public static let message = L10n.tr("Localizable", "Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message") + public static let message = L10n.tr("Localizable", "Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message", fallback: "Confirm to show reblogs") /// Show Reblogs - public static let title = L10n.tr("Localizable", "Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title") + public static let title = L10n.tr("Localizable", "Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title", fallback: "Show Reblogs") } public enum ConfirmUnblockUser { /// Confirm to unblock %@ public static func message(_ p1: Any) -> String { - return L10n.tr("Localizable", "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message", String(describing: p1)) + return L10n.tr("Localizable", "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message", String(describing: p1), fallback: "Confirm to unblock %@") } /// Unblock Account - public static let title = L10n.tr("Localizable", "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title") + public static let title = L10n.tr("Localizable", "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title", fallback: "Unblock Account") } public enum ConfirmUnmuteUser { /// Confirm to unmute %@ public static func message(_ p1: Any) -> String { - return L10n.tr("Localizable", "Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message", String(describing: p1)) + return L10n.tr("Localizable", "Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message", String(describing: p1), fallback: "Confirm to unmute %@") } /// Unmute Account - public static let title = L10n.tr("Localizable", "Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Title") + public static let title = L10n.tr("Localizable", "Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Title", fallback: "Unmute Account") } } public enum SegmentedControl { /// About - public static let about = L10n.tr("Localizable", "Scene.Profile.SegmentedControl.About") + public static let about = L10n.tr("Localizable", "Scene.Profile.SegmentedControl.About", fallback: "About") /// Media - public static let media = L10n.tr("Localizable", "Scene.Profile.SegmentedControl.Media") + public static let media = L10n.tr("Localizable", "Scene.Profile.SegmentedControl.Media", fallback: "Media") /// Posts - public static let posts = L10n.tr("Localizable", "Scene.Profile.SegmentedControl.Posts") + public static let posts = L10n.tr("Localizable", "Scene.Profile.SegmentedControl.Posts", fallback: "Posts") /// Posts and Replies - public static let postsAndReplies = L10n.tr("Localizable", "Scene.Profile.SegmentedControl.PostsAndReplies") + public static let postsAndReplies = L10n.tr("Localizable", "Scene.Profile.SegmentedControl.PostsAndReplies", fallback: "Posts and Replies") /// Replies - public static let replies = L10n.tr("Localizable", "Scene.Profile.SegmentedControl.Replies") + public static let replies = L10n.tr("Localizable", "Scene.Profile.SegmentedControl.Replies", fallback: "Replies") } } public enum RebloggedBy { /// Reblogged By - public static let title = L10n.tr("Localizable", "Scene.RebloggedBy.Title") + public static let title = L10n.tr("Localizable", "Scene.RebloggedBy.Title", fallback: "Reblogged By") } public enum Register { /// Let’s get you set up on %@ public static func letsGetYouSetUpOnDomain(_ p1: Any) -> String { - return L10n.tr("Localizable", "Scene.Register.LetsGetYouSetUpOnDomain", String(describing: p1)) + return L10n.tr("Localizable", "Scene.Register.LetsGetYouSetUpOnDomain", String(describing: p1), fallback: "Let’s get you set up on %@") } /// Let’s get you set up on %@ public static func title(_ p1: Any) -> String { - return L10n.tr("Localizable", "Scene.Register.Title", String(describing: p1)) + return L10n.tr("Localizable", "Scene.Register.Title", String(describing: p1), fallback: "Let’s get you set up on %@") } public enum Error { public enum Item { /// Agreement - public static let agreement = L10n.tr("Localizable", "Scene.Register.Error.Item.Agreement") + public static let agreement = L10n.tr("Localizable", "Scene.Register.Error.Item.Agreement", fallback: "Agreement") /// Email - public static let email = L10n.tr("Localizable", "Scene.Register.Error.Item.Email") + public static let email = L10n.tr("Localizable", "Scene.Register.Error.Item.Email", fallback: "Email") /// Locale - public static let locale = L10n.tr("Localizable", "Scene.Register.Error.Item.Locale") + public static let locale = L10n.tr("Localizable", "Scene.Register.Error.Item.Locale", fallback: "Locale") /// Password - public static let password = L10n.tr("Localizable", "Scene.Register.Error.Item.Password") + public static let password = L10n.tr("Localizable", "Scene.Register.Error.Item.Password", fallback: "Password") /// Reason - public static let reason = L10n.tr("Localizable", "Scene.Register.Error.Item.Reason") + public static let reason = L10n.tr("Localizable", "Scene.Register.Error.Item.Reason", fallback: "Reason") /// Username - public static let username = L10n.tr("Localizable", "Scene.Register.Error.Item.Username") + public static let username = L10n.tr("Localizable", "Scene.Register.Error.Item.Username", fallback: "Username") } public enum Reason { /// %@ must be accepted public static func accepted(_ p1: Any) -> String { - return L10n.tr("Localizable", "Scene.Register.Error.Reason.Accepted", String(describing: p1)) + return L10n.tr("Localizable", "Scene.Register.Error.Reason.Accepted", String(describing: p1), fallback: "%@ must be accepted") } /// %@ is required public static func blank(_ p1: Any) -> String { - return L10n.tr("Localizable", "Scene.Register.Error.Reason.Blank", String(describing: p1)) + return L10n.tr("Localizable", "Scene.Register.Error.Reason.Blank", String(describing: p1), fallback: "%@ is required") } /// %@ contains a disallowed email provider public static func blocked(_ p1: Any) -> String { - return L10n.tr("Localizable", "Scene.Register.Error.Reason.Blocked", String(describing: p1)) + return L10n.tr("Localizable", "Scene.Register.Error.Reason.Blocked", String(describing: p1), fallback: "%@ contains a disallowed email provider") } /// %@ is not a supported value public static func inclusion(_ p1: Any) -> String { - return L10n.tr("Localizable", "Scene.Register.Error.Reason.Inclusion", String(describing: p1)) + return L10n.tr("Localizable", "Scene.Register.Error.Reason.Inclusion", String(describing: p1), fallback: "%@ is not a supported value") } /// %@ is invalid public static func invalid(_ p1: Any) -> String { - return L10n.tr("Localizable", "Scene.Register.Error.Reason.Invalid", String(describing: p1)) + return L10n.tr("Localizable", "Scene.Register.Error.Reason.Invalid", String(describing: p1), fallback: "%@ is invalid") } /// %@ is a reserved keyword public static func reserved(_ p1: Any) -> String { - return L10n.tr("Localizable", "Scene.Register.Error.Reason.Reserved", String(describing: p1)) + return L10n.tr("Localizable", "Scene.Register.Error.Reason.Reserved", String(describing: p1), fallback: "%@ is a reserved keyword") } /// %@ is already in use public static func taken(_ p1: Any) -> String { - return L10n.tr("Localizable", "Scene.Register.Error.Reason.Taken", String(describing: p1)) + return L10n.tr("Localizable", "Scene.Register.Error.Reason.Taken", String(describing: p1), fallback: "%@ is already in use") } /// %@ is too long public static func tooLong(_ p1: Any) -> String { - return L10n.tr("Localizable", "Scene.Register.Error.Reason.TooLong", String(describing: p1)) + return L10n.tr("Localizable", "Scene.Register.Error.Reason.TooLong", String(describing: p1), fallback: "%@ is too long") } /// %@ is too short public static func tooShort(_ p1: Any) -> String { - return L10n.tr("Localizable", "Scene.Register.Error.Reason.TooShort", String(describing: p1)) + return L10n.tr("Localizable", "Scene.Register.Error.Reason.TooShort", String(describing: p1), fallback: "%@ is too short") } /// %@ does not seem to exist public static func unreachable(_ p1: Any) -> String { - return L10n.tr("Localizable", "Scene.Register.Error.Reason.Unreachable", String(describing: p1)) + return L10n.tr("Localizable", "Scene.Register.Error.Reason.Unreachable", String(describing: p1), fallback: "%@ does not seem to exist") } } public enum Special { /// This is not a valid email address - public static let emailInvalid = L10n.tr("Localizable", "Scene.Register.Error.Special.EmailInvalid") + public static let emailInvalid = L10n.tr("Localizable", "Scene.Register.Error.Special.EmailInvalid", fallback: "This is not a valid email address") /// Password is too short (must be at least 8 characters) - public static let passwordTooShort = L10n.tr("Localizable", "Scene.Register.Error.Special.PasswordTooShort") + public static let passwordTooShort = L10n.tr("Localizable", "Scene.Register.Error.Special.PasswordTooShort", fallback: "Password is too short (must be at least 8 characters)") /// Username must only contain alphanumeric characters and underscores - public static let usernameInvalid = L10n.tr("Localizable", "Scene.Register.Error.Special.UsernameInvalid") + public static let usernameInvalid = L10n.tr("Localizable", "Scene.Register.Error.Special.UsernameInvalid", fallback: "Username must only contain alphanumeric characters and underscores") /// Username is too long (can’t be longer than 30 characters) - public static let usernameTooLong = L10n.tr("Localizable", "Scene.Register.Error.Special.UsernameTooLong") + public static let usernameTooLong = L10n.tr("Localizable", "Scene.Register.Error.Special.UsernameTooLong", fallback: "Username is too long (can’t be longer than 30 characters)") } } public enum Input { public enum Avatar { /// Delete - public static let delete = L10n.tr("Localizable", "Scene.Register.Input.Avatar.Delete") + public static let delete = L10n.tr("Localizable", "Scene.Register.Input.Avatar.Delete", fallback: "Delete") } public enum DisplayName { /// display name - public static let placeholder = L10n.tr("Localizable", "Scene.Register.Input.DisplayName.Placeholder") + public static let placeholder = L10n.tr("Localizable", "Scene.Register.Input.DisplayName.Placeholder", fallback: "display name") } public enum Email { /// email - public static let placeholder = L10n.tr("Localizable", "Scene.Register.Input.Email.Placeholder") + public static let placeholder = L10n.tr("Localizable", "Scene.Register.Input.Email.Placeholder", fallback: "email") } public enum Invite { /// Why do you want to join? - public static let registrationUserInviteRequest = L10n.tr("Localizable", "Scene.Register.Input.Invite.RegistrationUserInviteRequest") + public static let registrationUserInviteRequest = L10n.tr("Localizable", "Scene.Register.Input.Invite.RegistrationUserInviteRequest", fallback: "Why do you want to join?") } public enum Password { /// 8 characters - public static let characterLimit = L10n.tr("Localizable", "Scene.Register.Input.Password.CharacterLimit") + public static let characterLimit = L10n.tr("Localizable", "Scene.Register.Input.Password.CharacterLimit", fallback: "8 characters") /// Your password needs at least eight characters - public static let hint = L10n.tr("Localizable", "Scene.Register.Input.Password.Hint") + public static let hint = L10n.tr("Localizable", "Scene.Register.Input.Password.Hint", fallback: "Your password needs at least eight characters") /// password - public static let placeholder = L10n.tr("Localizable", "Scene.Register.Input.Password.Placeholder") + public static let placeholder = L10n.tr("Localizable", "Scene.Register.Input.Password.Placeholder", fallback: "password") /// Your password needs at least: - public static let require = L10n.tr("Localizable", "Scene.Register.Input.Password.Require") + public static let require = L10n.tr("Localizable", "Scene.Register.Input.Password.Require", fallback: "Your password needs at least:") public enum Accessibility { /// checked - public static let checked = L10n.tr("Localizable", "Scene.Register.Input.Password.Accessibility.Checked") + public static let checked = L10n.tr("Localizable", "Scene.Register.Input.Password.Accessibility.Checked", fallback: "checked") /// unchecked - public static let unchecked = L10n.tr("Localizable", "Scene.Register.Input.Password.Accessibility.Unchecked") + public static let unchecked = L10n.tr("Localizable", "Scene.Register.Input.Password.Accessibility.Unchecked", fallback: "unchecked") } } public enum Username { /// This username is taken. - public static let duplicatePrompt = L10n.tr("Localizable", "Scene.Register.Input.Username.DuplicatePrompt") + public static let duplicatePrompt = L10n.tr("Localizable", "Scene.Register.Input.Username.DuplicatePrompt", fallback: "This username is taken.") /// username - public static let placeholder = L10n.tr("Localizable", "Scene.Register.Input.Username.Placeholder") + public static let placeholder = L10n.tr("Localizable", "Scene.Register.Input.Username.Placeholder", fallback: "username") } } } public enum Report { /// Are there any other posts you’d like to add to the report? - public static let content1 = L10n.tr("Localizable", "Scene.Report.Content1") + public static let content1 = L10n.tr("Localizable", "Scene.Report.Content1", fallback: "Are there any other posts you’d like to add to the report?") /// Is there anything the moderators should know about this report? - public static let content2 = L10n.tr("Localizable", "Scene.Report.Content2") + public static let content2 = L10n.tr("Localizable", "Scene.Report.Content2", fallback: "Is there anything the moderators should know about this report?") /// REPORTED - public static let reported = L10n.tr("Localizable", "Scene.Report.Reported") + public static let reported = L10n.tr("Localizable", "Scene.Report.Reported", fallback: "REPORTED") /// Thanks for reporting, we’ll look into this. - public static let reportSentTitle = L10n.tr("Localizable", "Scene.Report.ReportSentTitle") + public static let reportSentTitle = L10n.tr("Localizable", "Scene.Report.ReportSentTitle", fallback: "Thanks for reporting, we’ll look into this.") /// Send Report - public static let send = L10n.tr("Localizable", "Scene.Report.Send") + public static let send = L10n.tr("Localizable", "Scene.Report.Send", fallback: "Send Report") /// Send without comment - public static let skipToSend = L10n.tr("Localizable", "Scene.Report.SkipToSend") + public static let skipToSend = L10n.tr("Localizable", "Scene.Report.SkipToSend", fallback: "Send without comment") /// Step 1 of 2 - public static let step1 = L10n.tr("Localizable", "Scene.Report.Step1") + public static let step1 = L10n.tr("Localizable", "Scene.Report.Step1", fallback: "Step 1 of 2") /// Step 2 of 2 - public static let step2 = L10n.tr("Localizable", "Scene.Report.Step2") + public static let step2 = L10n.tr("Localizable", "Scene.Report.Step2", fallback: "Step 2 of 2") /// Type or paste additional comments - public static let textPlaceholder = L10n.tr("Localizable", "Scene.Report.TextPlaceholder") + public static let textPlaceholder = L10n.tr("Localizable", "Scene.Report.TextPlaceholder", fallback: "Type or paste additional comments") /// Report %@ public static func title(_ p1: Any) -> String { - return L10n.tr("Localizable", "Scene.Report.Title", String(describing: p1)) + return L10n.tr("Localizable", "Scene.Report.Title", String(describing: p1), fallback: "Report %@") } /// Report - public static let titleReport = L10n.tr("Localizable", "Scene.Report.TitleReport") + public static let titleReport = L10n.tr("Localizable", "Scene.Report.TitleReport", fallback: "Report") public enum StepFinal { /// Block %@ public static func blockUser(_ p1: Any) -> String { - return L10n.tr("Localizable", "Scene.Report.StepFinal.BlockUser", String(describing: p1)) + return L10n.tr("Localizable", "Scene.Report.StepFinal.BlockUser", String(describing: p1), fallback: "Block %@") } /// Don’t want to see this? - public static let dontWantToSeeThis = L10n.tr("Localizable", "Scene.Report.StepFinal.DontWantToSeeThis") + public static let dontWantToSeeThis = L10n.tr("Localizable", "Scene.Report.StepFinal.DontWantToSeeThis", fallback: "Don’t want to see this?") /// Mute %@ public static func muteUser(_ p1: Any) -> String { - return L10n.tr("Localizable", "Scene.Report.StepFinal.MuteUser", String(describing: p1)) + return L10n.tr("Localizable", "Scene.Report.StepFinal.MuteUser", String(describing: p1), fallback: "Mute %@") } /// They will no longer be able to follow or see your posts, but they can see if they’ve been blocked. - public static let theyWillNoLongerBeAbleToFollowOrSeeYourPostsButTheyCanSeeIfTheyveBeenBlocked = L10n.tr("Localizable", "Scene.Report.StepFinal.TheyWillNoLongerBeAbleToFollowOrSeeYourPostsButTheyCanSeeIfTheyveBeenBlocked") + public static let theyWillNoLongerBeAbleToFollowOrSeeYourPostsButTheyCanSeeIfTheyveBeenBlocked = L10n.tr("Localizable", "Scene.Report.StepFinal.TheyWillNoLongerBeAbleToFollowOrSeeYourPostsButTheyCanSeeIfTheyveBeenBlocked", fallback: "They will no longer be able to follow or see your posts, but they can see if they’ve been blocked.") /// Unfollow - public static let unfollow = L10n.tr("Localizable", "Scene.Report.StepFinal.Unfollow") + public static let unfollow = L10n.tr("Localizable", "Scene.Report.StepFinal.Unfollow", fallback: "Unfollow") /// Unfollowed - public static let unfollowed = L10n.tr("Localizable", "Scene.Report.StepFinal.Unfollowed") + public static let unfollowed = L10n.tr("Localizable", "Scene.Report.StepFinal.Unfollowed", fallback: "Unfollowed") /// Unfollow %@ public static func unfollowUser(_ p1: Any) -> String { - return L10n.tr("Localizable", "Scene.Report.StepFinal.UnfollowUser", String(describing: p1)) + return L10n.tr("Localizable", "Scene.Report.StepFinal.UnfollowUser", String(describing: p1), fallback: "Unfollow %@") } /// When you see something you don’t like on Mastodon, you can remove the person from your experience. - public static let whenYouSeeSomethingYouDontLikeOnMastodonYouCanRemoveThePersonFromYourExperience = L10n.tr("Localizable", "Scene.Report.StepFinal.WhenYouSeeSomethingYouDontLikeOnMastodonYouCanRemoveThePersonFromYourExperience.") + public static let whenYouSeeSomethingYouDontLikeOnMastodonYouCanRemoveThePersonFromYourExperience = L10n.tr("Localizable", "Scene.Report.StepFinal.WhenYouSeeSomethingYouDontLikeOnMastodonYouCanRemoveThePersonFromYourExperience.", fallback: "When you see something you don’t like on Mastodon, you can remove the person from your experience.") /// While we review this, you can take action against %@ public static func whileWeReviewThisYouCanTakeActionAgainstUser(_ p1: Any) -> String { - return L10n.tr("Localizable", "Scene.Report.StepFinal.WhileWeReviewThisYouCanTakeActionAgainstUser", String(describing: p1)) + return L10n.tr("Localizable", "Scene.Report.StepFinal.WhileWeReviewThisYouCanTakeActionAgainstUser", String(describing: p1), fallback: "While we review this, you can take action against %@") } /// You won’t see their posts or reblogs in your home feed. They won’t know they’ve been muted. - public static let youWontSeeTheirPostsOrReblogsInYourHomeFeedTheyWontKnowTheyVeBeenMuted = L10n.tr("Localizable", "Scene.Report.StepFinal.YouWontSeeTheirPostsOrReblogsInYourHomeFeedTheyWontKnowTheyVeBeenMuted") + public static let youWontSeeTheirPostsOrReblogsInYourHomeFeedTheyWontKnowTheyVeBeenMuted = L10n.tr("Localizable", "Scene.Report.StepFinal.YouWontSeeTheirPostsOrReblogsInYourHomeFeedTheyWontKnowTheyVeBeenMuted", fallback: "You won’t see their posts or reblogs in your home feed. They won’t know they’ve been muted.") } public enum StepFour { /// Is there anything else we should know? - public static let isThereAnythingElseWeShouldKnow = L10n.tr("Localizable", "Scene.Report.StepFour.IsThereAnythingElseWeShouldKnow") + public static let isThereAnythingElseWeShouldKnow = L10n.tr("Localizable", "Scene.Report.StepFour.IsThereAnythingElseWeShouldKnow", fallback: "Is there anything else we should know?") /// Step 4 of 4 - public static let step4Of4 = L10n.tr("Localizable", "Scene.Report.StepFour.Step4Of4") + public static let step4Of4 = L10n.tr("Localizable", "Scene.Report.StepFour.Step4Of4", fallback: "Step 4 of 4") } public enum StepOne { /// I don’t like it - public static let iDontLikeIt = L10n.tr("Localizable", "Scene.Report.StepOne.IDontLikeIt") + public static let iDontLikeIt = L10n.tr("Localizable", "Scene.Report.StepOne.IDontLikeIt", fallback: "I don’t like it") /// It is not something you want to see - public static let itIsNotSomethingYouWantToSee = L10n.tr("Localizable", "Scene.Report.StepOne.ItIsNotSomethingYouWantToSee") + public static let itIsNotSomethingYouWantToSee = L10n.tr("Localizable", "Scene.Report.StepOne.ItIsNotSomethingYouWantToSee", fallback: "It is not something you want to see") /// It’s something else - public static let itsSomethingElse = L10n.tr("Localizable", "Scene.Report.StepOne.ItsSomethingElse") + public static let itsSomethingElse = L10n.tr("Localizable", "Scene.Report.StepOne.ItsSomethingElse", fallback: "It’s something else") /// It’s spam - public static let itsSpam = L10n.tr("Localizable", "Scene.Report.StepOne.ItsSpam") + public static let itsSpam = L10n.tr("Localizable", "Scene.Report.StepOne.ItsSpam", fallback: "It’s spam") /// It violates server rules - public static let itViolatesServerRules = L10n.tr("Localizable", "Scene.Report.StepOne.ItViolatesServerRules") + public static let itViolatesServerRules = L10n.tr("Localizable", "Scene.Report.StepOne.ItViolatesServerRules", fallback: "It violates server rules") /// Malicious links, fake engagement, or repetetive replies - public static let maliciousLinksFakeEngagementOrRepetetiveReplies = L10n.tr("Localizable", "Scene.Report.StepOne.MaliciousLinksFakeEngagementOrRepetetiveReplies") + public static let maliciousLinksFakeEngagementOrRepetetiveReplies = L10n.tr("Localizable", "Scene.Report.StepOne.MaliciousLinksFakeEngagementOrRepetetiveReplies", fallback: "Malicious links, fake engagement, or repetetive replies") /// Select the best match - public static let selectTheBestMatch = L10n.tr("Localizable", "Scene.Report.StepOne.SelectTheBestMatch") + public static let selectTheBestMatch = L10n.tr("Localizable", "Scene.Report.StepOne.SelectTheBestMatch", fallback: "Select the best match") /// Step 1 of 4 - public static let step1Of4 = L10n.tr("Localizable", "Scene.Report.StepOne.Step1Of4") + public static let step1Of4 = L10n.tr("Localizable", "Scene.Report.StepOne.Step1Of4", fallback: "Step 1 of 4") /// The issue does not fit into other categories - public static let theIssueDoesNotFitIntoOtherCategories = L10n.tr("Localizable", "Scene.Report.StepOne.TheIssueDoesNotFitIntoOtherCategories") + public static let theIssueDoesNotFitIntoOtherCategories = L10n.tr("Localizable", "Scene.Report.StepOne.TheIssueDoesNotFitIntoOtherCategories", fallback: "The issue does not fit into other categories") /// What's wrong with this account? - public static let whatsWrongWithThisAccount = L10n.tr("Localizable", "Scene.Report.StepOne.WhatsWrongWithThisAccount") + public static let whatsWrongWithThisAccount = L10n.tr("Localizable", "Scene.Report.StepOne.WhatsWrongWithThisAccount", fallback: "What's wrong with this account?") /// What's wrong with this post? - public static let whatsWrongWithThisPost = L10n.tr("Localizable", "Scene.Report.StepOne.WhatsWrongWithThisPost") + public static let whatsWrongWithThisPost = L10n.tr("Localizable", "Scene.Report.StepOne.WhatsWrongWithThisPost", fallback: "What's wrong with this post?") /// What's wrong with %@? public static func whatsWrongWithThisUsername(_ p1: Any) -> String { - return L10n.tr("Localizable", "Scene.Report.StepOne.WhatsWrongWithThisUsername", String(describing: p1)) + return L10n.tr("Localizable", "Scene.Report.StepOne.WhatsWrongWithThisUsername", String(describing: p1), fallback: "What's wrong with %@?") } /// You are aware that it breaks specific rules - public static let youAreAwareThatItBreaksSpecificRules = L10n.tr("Localizable", "Scene.Report.StepOne.YouAreAwareThatItBreaksSpecificRules") + public static let youAreAwareThatItBreaksSpecificRules = L10n.tr("Localizable", "Scene.Report.StepOne.YouAreAwareThatItBreaksSpecificRules", fallback: "You are aware that it breaks specific rules") } public enum StepThree { /// Are there any posts that back up this report? - public static let areThereAnyPostsThatBackUpThisReport = L10n.tr("Localizable", "Scene.Report.StepThree.AreThereAnyPostsThatBackUpThisReport") + public static let areThereAnyPostsThatBackUpThisReport = L10n.tr("Localizable", "Scene.Report.StepThree.AreThereAnyPostsThatBackUpThisReport", fallback: "Are there any posts that back up this report?") /// Select all that apply - public static let selectAllThatApply = L10n.tr("Localizable", "Scene.Report.StepThree.SelectAllThatApply") + public static let selectAllThatApply = L10n.tr("Localizable", "Scene.Report.StepThree.SelectAllThatApply", fallback: "Select all that apply") /// Step 3 of 4 - public static let step3Of4 = L10n.tr("Localizable", "Scene.Report.StepThree.Step3Of4") + public static let step3Of4 = L10n.tr("Localizable", "Scene.Report.StepThree.Step3Of4", fallback: "Step 3 of 4") } public enum StepTwo { /// I just don’t like it - public static let iJustDonTLikeIt = L10n.tr("Localizable", "Scene.Report.StepTwo.IJustDon’tLikeIt") + public static let iJustDonTLikeIt = L10n.tr("Localizable", "Scene.Report.StepTwo.IJustDon’tLikeIt", fallback: "I just don’t like it") /// Select all that apply - public static let selectAllThatApply = L10n.tr("Localizable", "Scene.Report.StepTwo.SelectAllThatApply") + public static let selectAllThatApply = L10n.tr("Localizable", "Scene.Report.StepTwo.SelectAllThatApply", fallback: "Select all that apply") /// Step 2 of 4 - public static let step2Of4 = L10n.tr("Localizable", "Scene.Report.StepTwo.Step2Of4") + public static let step2Of4 = L10n.tr("Localizable", "Scene.Report.StepTwo.Step2Of4", fallback: "Step 2 of 4") /// Which rules are being violated? - public static let whichRulesAreBeingViolated = L10n.tr("Localizable", "Scene.Report.StepTwo.WhichRulesAreBeingViolated") + public static let whichRulesAreBeingViolated = L10n.tr("Localizable", "Scene.Report.StepTwo.WhichRulesAreBeingViolated", fallback: "Which rules are being violated?") } } public enum Search { /// Search - public static let title = L10n.tr("Localizable", "Scene.Search.Title") + public static let title = L10n.tr("Localizable", "Scene.Search.Title", fallback: "Search") public enum Recommend { /// See All - public static let buttonText = L10n.tr("Localizable", "Scene.Search.Recommend.ButtonText") + public static let buttonText = L10n.tr("Localizable", "Scene.Search.Recommend.ButtonText", fallback: "See All") public enum Accounts { /// You may like to follow these accounts - public static let description = L10n.tr("Localizable", "Scene.Search.Recommend.Accounts.Description") + public static let description = L10n.tr("Localizable", "Scene.Search.Recommend.Accounts.Description", fallback: "You may like to follow these accounts") /// Follow - public static let follow = L10n.tr("Localizable", "Scene.Search.Recommend.Accounts.Follow") + public static let follow = L10n.tr("Localizable", "Scene.Search.Recommend.Accounts.Follow", fallback: "Follow") /// Accounts you might like - public static let title = L10n.tr("Localizable", "Scene.Search.Recommend.Accounts.Title") + public static let title = L10n.tr("Localizable", "Scene.Search.Recommend.Accounts.Title", fallback: "Accounts you might like") } public enum HashTag { /// Hashtags that are getting quite a bit of attention - public static let description = L10n.tr("Localizable", "Scene.Search.Recommend.HashTag.Description") + public static let description = L10n.tr("Localizable", "Scene.Search.Recommend.HashTag.Description", fallback: "Hashtags that are getting quite a bit of attention") /// %@ people are talking public static func peopleTalking(_ p1: Any) -> String { - return L10n.tr("Localizable", "Scene.Search.Recommend.HashTag.PeopleTalking", String(describing: p1)) + return L10n.tr("Localizable", "Scene.Search.Recommend.HashTag.PeopleTalking", String(describing: p1), fallback: "%@ people are talking") } /// Trending on Mastodon - public static let title = L10n.tr("Localizable", "Scene.Search.Recommend.HashTag.Title") + public static let title = L10n.tr("Localizable", "Scene.Search.Recommend.HashTag.Title", fallback: "Trending on Mastodon") } } public enum SearchBar { /// Cancel - public static let cancel = L10n.tr("Localizable", "Scene.Search.SearchBar.Cancel") + public static let cancel = L10n.tr("Localizable", "Scene.Search.SearchBar.Cancel", fallback: "Cancel") /// Search hashtags and users - public static let placeholder = L10n.tr("Localizable", "Scene.Search.SearchBar.Placeholder") + public static let placeholder = L10n.tr("Localizable", "Scene.Search.SearchBar.Placeholder", fallback: "Search hashtags and users") } public enum Searching { /// Clear - public static let clear = L10n.tr("Localizable", "Scene.Search.Searching.Clear") + public static let clear = L10n.tr("Localizable", "Scene.Search.Searching.Clear", fallback: "Clear") /// Recent searches - public static let recentSearch = L10n.tr("Localizable", "Scene.Search.Searching.RecentSearch") + public static let recentSearch = L10n.tr("Localizable", "Scene.Search.Searching.RecentSearch", fallback: "Recent searches") public enum EmptyState { /// No results - public static let noResults = L10n.tr("Localizable", "Scene.Search.Searching.EmptyState.NoResults") + public static let noResults = L10n.tr("Localizable", "Scene.Search.Searching.EmptyState.NoResults", fallback: "No results") } public enum Segment { /// All - public static let all = L10n.tr("Localizable", "Scene.Search.Searching.Segment.All") + public static let all = L10n.tr("Localizable", "Scene.Search.Searching.Segment.All", fallback: "All") /// Hashtags - public static let hashtags = L10n.tr("Localizable", "Scene.Search.Searching.Segment.Hashtags") + public static let hashtags = L10n.tr("Localizable", "Scene.Search.Searching.Segment.Hashtags", fallback: "Hashtags") /// People - public static let people = L10n.tr("Localizable", "Scene.Search.Searching.Segment.People") + public static let people = L10n.tr("Localizable", "Scene.Search.Searching.Segment.People", fallback: "People") /// Posts - public static let posts = L10n.tr("Localizable", "Scene.Search.Searching.Segment.Posts") + public static let posts = L10n.tr("Localizable", "Scene.Search.Searching.Segment.Posts", fallback: "Posts") } } } public enum ServerPicker { /// Pick a server based on your interests, region, or a general purpose one. - public static let subtitle = L10n.tr("Localizable", "Scene.ServerPicker.Subtitle") + public static let subtitle = L10n.tr("Localizable", "Scene.ServerPicker.Subtitle", fallback: "Pick a server based on your interests, region, or a general purpose one.") /// Pick a server based on your interests, region, or a general purpose one. Each server is operated by an entirely independent organization or individual. - public static let subtitleExtend = L10n.tr("Localizable", "Scene.ServerPicker.SubtitleExtend") + public static let subtitleExtend = L10n.tr("Localizable", "Scene.ServerPicker.SubtitleExtend", fallback: "Pick a server based on your interests, region, or a general purpose one. Each server is operated by an entirely independent organization or individual.") /// Mastodon is made of users in different servers. - public static let title = L10n.tr("Localizable", "Scene.ServerPicker.Title") + public static let title = L10n.tr("Localizable", "Scene.ServerPicker.Title", fallback: "Mastodon is made of users in different servers.") public enum Button { /// See Less - public static let seeLess = L10n.tr("Localizable", "Scene.ServerPicker.Button.SeeLess") + public static let seeLess = L10n.tr("Localizable", "Scene.ServerPicker.Button.SeeLess", fallback: "See Less") /// See More - public static let seeMore = L10n.tr("Localizable", "Scene.ServerPicker.Button.SeeMore") + public static let seeMore = L10n.tr("Localizable", "Scene.ServerPicker.Button.SeeMore", fallback: "See More") public enum Category { /// academia - public static let academia = L10n.tr("Localizable", "Scene.ServerPicker.Button.Category.Academia") + public static let academia = L10n.tr("Localizable", "Scene.ServerPicker.Button.Category.Academia", fallback: "academia") /// activism - public static let activism = L10n.tr("Localizable", "Scene.ServerPicker.Button.Category.Activism") + public static let activism = L10n.tr("Localizable", "Scene.ServerPicker.Button.Category.Activism", fallback: "activism") /// All - public static let all = L10n.tr("Localizable", "Scene.ServerPicker.Button.Category.All") + public static let all = L10n.tr("Localizable", "Scene.ServerPicker.Button.Category.All", fallback: "All") /// Category: All - public static let allAccessiblityDescription = L10n.tr("Localizable", "Scene.ServerPicker.Button.Category.AllAccessiblityDescription") + public static let allAccessiblityDescription = L10n.tr("Localizable", "Scene.ServerPicker.Button.Category.AllAccessiblityDescription", fallback: "Category: All") /// art - public static let art = L10n.tr("Localizable", "Scene.ServerPicker.Button.Category.Art") + public static let art = L10n.tr("Localizable", "Scene.ServerPicker.Button.Category.Art", fallback: "art") /// food - public static let food = L10n.tr("Localizable", "Scene.ServerPicker.Button.Category.Food") + public static let food = L10n.tr("Localizable", "Scene.ServerPicker.Button.Category.Food", fallback: "food") /// furry - public static let furry = L10n.tr("Localizable", "Scene.ServerPicker.Button.Category.Furry") + public static let furry = L10n.tr("Localizable", "Scene.ServerPicker.Button.Category.Furry", fallback: "furry") /// games - public static let games = L10n.tr("Localizable", "Scene.ServerPicker.Button.Category.Games") + public static let games = L10n.tr("Localizable", "Scene.ServerPicker.Button.Category.Games", fallback: "games") /// general - public static let general = L10n.tr("Localizable", "Scene.ServerPicker.Button.Category.General") + public static let general = L10n.tr("Localizable", "Scene.ServerPicker.Button.Category.General", fallback: "general") /// journalism - public static let journalism = L10n.tr("Localizable", "Scene.ServerPicker.Button.Category.Journalism") + public static let journalism = L10n.tr("Localizable", "Scene.ServerPicker.Button.Category.Journalism", fallback: "journalism") /// lgbt - public static let lgbt = L10n.tr("Localizable", "Scene.ServerPicker.Button.Category.Lgbt") + public static let lgbt = L10n.tr("Localizable", "Scene.ServerPicker.Button.Category.Lgbt", fallback: "lgbt") /// music - public static let music = L10n.tr("Localizable", "Scene.ServerPicker.Button.Category.Music") + public static let music = L10n.tr("Localizable", "Scene.ServerPicker.Button.Category.Music", fallback: "music") /// regional - public static let regional = L10n.tr("Localizable", "Scene.ServerPicker.Button.Category.Regional") + public static let regional = L10n.tr("Localizable", "Scene.ServerPicker.Button.Category.Regional", fallback: "regional") /// tech - public static let tech = L10n.tr("Localizable", "Scene.ServerPicker.Button.Category.Tech") + public static let tech = L10n.tr("Localizable", "Scene.ServerPicker.Button.Category.Tech", fallback: "tech") } } public enum EmptyState { /// Something went wrong while loading the data. Check your internet connection. - public static let badNetwork = L10n.tr("Localizable", "Scene.ServerPicker.EmptyState.BadNetwork") + public static let badNetwork = L10n.tr("Localizable", "Scene.ServerPicker.EmptyState.BadNetwork", fallback: "Something went wrong while loading the data. Check your internet connection.") /// Finding available servers... - public static let findingServers = L10n.tr("Localizable", "Scene.ServerPicker.EmptyState.FindingServers") + public static let findingServers = L10n.tr("Localizable", "Scene.ServerPicker.EmptyState.FindingServers", fallback: "Finding available servers...") /// No results - public static let noResults = L10n.tr("Localizable", "Scene.ServerPicker.EmptyState.NoResults") + public static let noResults = L10n.tr("Localizable", "Scene.ServerPicker.EmptyState.NoResults", fallback: "No results") } public enum Input { /// Search servers - public static let placeholder = L10n.tr("Localizable", "Scene.ServerPicker.Input.Placeholder") + public static let placeholder = L10n.tr("Localizable", "Scene.ServerPicker.Input.Placeholder", fallback: "Search servers") /// Search servers or enter URL - public static let searchServersOrEnterUrl = L10n.tr("Localizable", "Scene.ServerPicker.Input.SearchServersOrEnterUrl") + public static let searchServersOrEnterUrl = L10n.tr("Localizable", "Scene.ServerPicker.Input.SearchServersOrEnterUrl", fallback: "Search servers or enter URL") } public enum Label { /// CATEGORY - public static let category = L10n.tr("Localizable", "Scene.ServerPicker.Label.Category") + public static let category = L10n.tr("Localizable", "Scene.ServerPicker.Label.Category", fallback: "CATEGORY") /// LANGUAGE - public static let language = L10n.tr("Localizable", "Scene.ServerPicker.Label.Language") + public static let language = L10n.tr("Localizable", "Scene.ServerPicker.Label.Language", fallback: "LANGUAGE") /// USERS - public static let users = L10n.tr("Localizable", "Scene.ServerPicker.Label.Users") + public static let users = L10n.tr("Localizable", "Scene.ServerPicker.Label.Users", fallback: "USERS") } } public enum ServerRules { /// privacy policy - public static let privacyPolicy = L10n.tr("Localizable", "Scene.ServerRules.PrivacyPolicy") + public static let privacyPolicy = L10n.tr("Localizable", "Scene.ServerRules.PrivacyPolicy", fallback: "privacy policy") /// By continuing, you’re subject to the terms of service and privacy policy for %@. public static func prompt(_ p1: Any) -> String { - return L10n.tr("Localizable", "Scene.ServerRules.Prompt", String(describing: p1)) + return L10n.tr("Localizable", "Scene.ServerRules.Prompt", String(describing: p1), fallback: "By continuing, you’re subject to the terms of service and privacy policy for %@.") } /// These are set and enforced by the %@ moderators. public static func subtitle(_ p1: Any) -> String { - return L10n.tr("Localizable", "Scene.ServerRules.Subtitle", String(describing: p1)) + return L10n.tr("Localizable", "Scene.ServerRules.Subtitle", String(describing: p1), fallback: "These are set and enforced by the %@ moderators.") } /// terms of service - public static let termsOfService = L10n.tr("Localizable", "Scene.ServerRules.TermsOfService") + public static let termsOfService = L10n.tr("Localizable", "Scene.ServerRules.TermsOfService", fallback: "terms of service") /// Some ground rules. - public static let title = L10n.tr("Localizable", "Scene.ServerRules.Title") + public static let title = L10n.tr("Localizable", "Scene.ServerRules.Title", fallback: "Some ground rules.") public enum Button { /// I Agree - public static let confirm = L10n.tr("Localizable", "Scene.ServerRules.Button.Confirm") + public static let confirm = L10n.tr("Localizable", "Scene.ServerRules.Button.Confirm", fallback: "I Agree") } } public enum Settings { /// Settings - public static let title = L10n.tr("Localizable", "Scene.Settings.Title") + public static let title = L10n.tr("Localizable", "Scene.Settings.Title", fallback: "Settings") public enum Footer { /// Mastodon is open source software. You can report issues on GitHub at %@ (%@) public static func mastodonDescription(_ p1: Any, _ p2: Any) -> String { - return L10n.tr("Localizable", "Scene.Settings.Footer.MastodonDescription", String(describing: p1), String(describing: p2)) + return L10n.tr("Localizable", "Scene.Settings.Footer.MastodonDescription", String(describing: p1), String(describing: p2), fallback: "Mastodon is open source software. You can report issues on GitHub at %@ (%@)") } } public enum Keyboard { /// Close Settings Window - public static let closeSettingsWindow = L10n.tr("Localizable", "Scene.Settings.Keyboard.CloseSettingsWindow") + public static let closeSettingsWindow = L10n.tr("Localizable", "Scene.Settings.Keyboard.CloseSettingsWindow", fallback: "Close Settings Window") } public enum Section { public enum Appearance { /// Automatic - public static let automatic = L10n.tr("Localizable", "Scene.Settings.Section.Appearance.Automatic") + public static let automatic = L10n.tr("Localizable", "Scene.Settings.Section.Appearance.Automatic", fallback: "Automatic") /// Always Dark - public static let dark = L10n.tr("Localizable", "Scene.Settings.Section.Appearance.Dark") + public static let dark = L10n.tr("Localizable", "Scene.Settings.Section.Appearance.Dark", fallback: "Always Dark") /// Always Light - public static let light = L10n.tr("Localizable", "Scene.Settings.Section.Appearance.Light") + public static let light = L10n.tr("Localizable", "Scene.Settings.Section.Appearance.Light", fallback: "Always Light") /// Appearance - public static let title = L10n.tr("Localizable", "Scene.Settings.Section.Appearance.Title") + public static let title = L10n.tr("Localizable", "Scene.Settings.Section.Appearance.Title", fallback: "Appearance") } public enum BoringZone { /// Account Settings - public static let accountSettings = L10n.tr("Localizable", "Scene.Settings.Section.BoringZone.AccountSettings") + public static let accountSettings = L10n.tr("Localizable", "Scene.Settings.Section.BoringZone.AccountSettings", fallback: "Account Settings") /// Privacy Policy - public static let privacy = L10n.tr("Localizable", "Scene.Settings.Section.BoringZone.Privacy") + public static let privacy = L10n.tr("Localizable", "Scene.Settings.Section.BoringZone.Privacy", fallback: "Privacy Policy") /// Terms of Service - public static let terms = L10n.tr("Localizable", "Scene.Settings.Section.BoringZone.Terms") + public static let terms = L10n.tr("Localizable", "Scene.Settings.Section.BoringZone.Terms", fallback: "Terms of Service") /// The Boring Zone - public static let title = L10n.tr("Localizable", "Scene.Settings.Section.BoringZone.Title") + public static let title = L10n.tr("Localizable", "Scene.Settings.Section.BoringZone.Title", fallback: "The Boring Zone") } public enum LookAndFeel { /// Light - public static let light = L10n.tr("Localizable", "Scene.Settings.Section.LookAndFeel.Light") + public static let light = L10n.tr("Localizable", "Scene.Settings.Section.LookAndFeel.Light", fallback: "Light") /// Really Dark - public static let reallyDark = L10n.tr("Localizable", "Scene.Settings.Section.LookAndFeel.ReallyDark") + public static let reallyDark = L10n.tr("Localizable", "Scene.Settings.Section.LookAndFeel.ReallyDark", fallback: "Really Dark") /// Sorta Dark - public static let sortaDark = L10n.tr("Localizable", "Scene.Settings.Section.LookAndFeel.SortaDark") + public static let sortaDark = L10n.tr("Localizable", "Scene.Settings.Section.LookAndFeel.SortaDark", fallback: "Sorta Dark") /// Look and Feel - public static let title = L10n.tr("Localizable", "Scene.Settings.Section.LookAndFeel.Title") + public static let title = L10n.tr("Localizable", "Scene.Settings.Section.LookAndFeel.Title", fallback: "Look and Feel") /// Use System - public static let useSystem = L10n.tr("Localizable", "Scene.Settings.Section.LookAndFeel.UseSystem") + public static let useSystem = L10n.tr("Localizable", "Scene.Settings.Section.LookAndFeel.UseSystem", fallback: "Use System") } public enum Notifications { /// Reblogs my post - public static let boosts = L10n.tr("Localizable", "Scene.Settings.Section.Notifications.Boosts") + public static let boosts = L10n.tr("Localizable", "Scene.Settings.Section.Notifications.Boosts", fallback: "Reblogs my post") /// Favorites my post - public static let favorites = L10n.tr("Localizable", "Scene.Settings.Section.Notifications.Favorites") + public static let favorites = L10n.tr("Localizable", "Scene.Settings.Section.Notifications.Favorites", fallback: "Favorites my post") /// Follows me - public static let follows = L10n.tr("Localizable", "Scene.Settings.Section.Notifications.Follows") + public static let follows = L10n.tr("Localizable", "Scene.Settings.Section.Notifications.Follows", fallback: "Follows me") /// Mentions me - public static let mentions = L10n.tr("Localizable", "Scene.Settings.Section.Notifications.Mentions") + public static let mentions = L10n.tr("Localizable", "Scene.Settings.Section.Notifications.Mentions", fallback: "Mentions me") /// Notifications - public static let title = L10n.tr("Localizable", "Scene.Settings.Section.Notifications.Title") + public static let title = L10n.tr("Localizable", "Scene.Settings.Section.Notifications.Title", fallback: "Notifications") public enum Trigger { /// anyone - public static let anyone = L10n.tr("Localizable", "Scene.Settings.Section.Notifications.Trigger.Anyone") + public static let anyone = L10n.tr("Localizable", "Scene.Settings.Section.Notifications.Trigger.Anyone", fallback: "anyone") /// anyone I follow - public static let follow = L10n.tr("Localizable", "Scene.Settings.Section.Notifications.Trigger.Follow") + public static let follow = L10n.tr("Localizable", "Scene.Settings.Section.Notifications.Trigger.Follow", fallback: "anyone I follow") /// a follower - public static let follower = L10n.tr("Localizable", "Scene.Settings.Section.Notifications.Trigger.Follower") + public static let follower = L10n.tr("Localizable", "Scene.Settings.Section.Notifications.Trigger.Follower", fallback: "a follower") /// no one - public static let noone = L10n.tr("Localizable", "Scene.Settings.Section.Notifications.Trigger.Noone") + public static let noone = L10n.tr("Localizable", "Scene.Settings.Section.Notifications.Trigger.Noone", fallback: "no one") /// Notify me when - public static let title = L10n.tr("Localizable", "Scene.Settings.Section.Notifications.Trigger.Title") + public static let title = L10n.tr("Localizable", "Scene.Settings.Section.Notifications.Trigger.Title", fallback: "Notify me when") } } public enum Preference { /// Disable animated avatars - public static let disableAvatarAnimation = L10n.tr("Localizable", "Scene.Settings.Section.Preference.DisableAvatarAnimation") + public static let disableAvatarAnimation = L10n.tr("Localizable", "Scene.Settings.Section.Preference.DisableAvatarAnimation", fallback: "Disable animated avatars") /// Disable animated emojis - public static let disableEmojiAnimation = L10n.tr("Localizable", "Scene.Settings.Section.Preference.DisableEmojiAnimation") + public static let disableEmojiAnimation = L10n.tr("Localizable", "Scene.Settings.Section.Preference.DisableEmojiAnimation", fallback: "Disable animated emojis") /// Open links in Mastodon - public static let openLinksInMastodon = L10n.tr("Localizable", "Scene.Settings.Section.Preference.OpenLinksInMastodon") + public static let openLinksInMastodon = L10n.tr("Localizable", "Scene.Settings.Section.Preference.OpenLinksInMastodon", fallback: "Open links in Mastodon") /// Preferences - public static let title = L10n.tr("Localizable", "Scene.Settings.Section.Preference.Title") + public static let title = L10n.tr("Localizable", "Scene.Settings.Section.Preference.Title", fallback: "Preferences") /// True black dark mode - public static let trueBlackDarkMode = L10n.tr("Localizable", "Scene.Settings.Section.Preference.TrueBlackDarkMode") + public static let trueBlackDarkMode = L10n.tr("Localizable", "Scene.Settings.Section.Preference.TrueBlackDarkMode", fallback: "True black dark mode") /// Use default browser to open links - public static let usingDefaultBrowser = L10n.tr("Localizable", "Scene.Settings.Section.Preference.UsingDefaultBrowser") + public static let usingDefaultBrowser = L10n.tr("Localizable", "Scene.Settings.Section.Preference.UsingDefaultBrowser", fallback: "Use default browser to open links") } public enum SpicyZone { /// Clear Media Cache - public static let clear = L10n.tr("Localizable", "Scene.Settings.Section.SpicyZone.Clear") + public static let clear = L10n.tr("Localizable", "Scene.Settings.Section.SpicyZone.Clear", fallback: "Clear Media Cache") /// Sign Out - public static let signout = L10n.tr("Localizable", "Scene.Settings.Section.SpicyZone.Signout") + public static let signout = L10n.tr("Localizable", "Scene.Settings.Section.SpicyZone.Signout", fallback: "Sign Out") /// The Spicy Zone - public static let title = L10n.tr("Localizable", "Scene.Settings.Section.SpicyZone.Title") + public static let title = L10n.tr("Localizable", "Scene.Settings.Section.SpicyZone.Title", fallback: "The Spicy Zone") } } } public enum SuggestionAccount { /// When you follow someone, you’ll see their posts in your home feed. - public static let followExplain = L10n.tr("Localizable", "Scene.SuggestionAccount.FollowExplain") + public static let followExplain = L10n.tr("Localizable", "Scene.SuggestionAccount.FollowExplain", fallback: "When you follow someone, you’ll see their posts in your home feed.") /// Find People to Follow - public static let title = L10n.tr("Localizable", "Scene.SuggestionAccount.Title") + public static let title = L10n.tr("Localizable", "Scene.SuggestionAccount.Title", fallback: "Find People to Follow") } public enum Thread { /// Post - public static let backTitle = L10n.tr("Localizable", "Scene.Thread.BackTitle") + public static let backTitle = L10n.tr("Localizable", "Scene.Thread.BackTitle", fallback: "Post") /// Post from %@ public static func title(_ p1: Any) -> String { - return L10n.tr("Localizable", "Scene.Thread.Title", String(describing: p1)) + return L10n.tr("Localizable", "Scene.Thread.Title", String(describing: p1), fallback: "Post from %@") } } public enum Welcome { /// Get Started - public static let getStarted = L10n.tr("Localizable", "Scene.Welcome.GetStarted") + public static let getStarted = L10n.tr("Localizable", "Scene.Welcome.GetStarted", fallback: "Get Started") /// Log In - public static let logIn = L10n.tr("Localizable", "Scene.Welcome.LogIn") - /// Social networking\nback in your hands. - public static let slogan = L10n.tr("Localizable", "Scene.Welcome.Slogan") + public static let logIn = L10n.tr("Localizable", "Scene.Welcome.LogIn", fallback: "Log In") + /// Social networking + /// back in your hands. + public static let slogan = L10n.tr("Localizable", "Scene.Welcome.Slogan", fallback: "Social networking\nback in your hands.") } public enum Wizard { /// Double tap to dismiss this wizard - public static let accessibilityHint = L10n.tr("Localizable", "Scene.Wizard.AccessibilityHint") + public static let accessibilityHint = L10n.tr("Localizable", "Scene.Wizard.AccessibilityHint", fallback: "Double tap to dismiss this wizard") /// Switch between multiple accounts by holding the profile button. - public static let multipleAccountSwitchIntroDescription = L10n.tr("Localizable", "Scene.Wizard.MultipleAccountSwitchIntroDescription") + public static let multipleAccountSwitchIntroDescription = L10n.tr("Localizable", "Scene.Wizard.MultipleAccountSwitchIntroDescription", fallback: "Switch between multiple accounts by holding the profile button.") /// New in Mastodon - public static let newInMastodon = L10n.tr("Localizable", "Scene.Wizard.NewInMastodon") + public static let newInMastodon = L10n.tr("Localizable", "Scene.Wizard.NewInMastodon", fallback: "New in Mastodon") } } - public enum A11y { public enum Plural { public enum Count { /// Plural format key: "%#@character_count@ left" public static func charactersLeft(_ p1: Int) -> String { - return L10n.tr("Localizable", "a11y.plural.count.characters_left", p1) + return L10n.tr("Localizable", "a11y.plural.count.characters_left", p1, fallback: "Plural format key: \"%#@character_count@ left\"") } /// Plural format key: "Input limit exceeds %#@character_count@" public static func inputLimitExceeds(_ p1: Int) -> String { - return L10n.tr("Localizable", "a11y.plural.count.input_limit_exceeds", p1) + return L10n.tr("Localizable", "a11y.plural.count.input_limit_exceeds", p1, fallback: "Plural format key: \"Input limit exceeds %#@character_count@\"") } /// Plural format key: "Input limit remains %#@character_count@" public static func inputLimitRemains(_ p1: Int) -> String { - return L10n.tr("Localizable", "a11y.plural.count.input_limit_remains", p1) + return L10n.tr("Localizable", "a11y.plural.count.input_limit_remains", p1, fallback: "Plural format key: \"Input limit remains %#@character_count@\"") } public enum Unread { /// Plural format key: "%#@notification_count_unread_notification@" public static func notification(_ p1: Int) -> String { - return L10n.tr("Localizable", "a11y.plural.count.unread.notification", p1) + return L10n.tr("Localizable", "a11y.plural.count.unread.notification", p1, fallback: "Plural format key: \"%#@notification_count_unread_notification@\"") } } } } } - public enum Date { public enum Day { /// Plural format key: "%#@count_day_left@" public static func `left`(_ p1: Int) -> String { - return L10n.tr("Localizable", "date.day.left", p1) + return L10n.tr("Localizable", "date.day.left", p1, fallback: "Plural format key: \"%#@count_day_left@\"") } public enum Ago { /// Plural format key: "%#@count_day_ago_abbr@" public static func abbr(_ p1: Int) -> String { - return L10n.tr("Localizable", "date.day.ago.abbr", p1) + return L10n.tr("Localizable", "date.day.ago.abbr", p1, fallback: "Plural format key: \"%#@count_day_ago_abbr@\"") } } } public enum Hour { /// Plural format key: "%#@count_hour_left@" public static func `left`(_ p1: Int) -> String { - return L10n.tr("Localizable", "date.hour.left", p1) + return L10n.tr("Localizable", "date.hour.left", p1, fallback: "Plural format key: \"%#@count_hour_left@\"") } public enum Ago { /// Plural format key: "%#@count_hour_ago_abbr@" public static func abbr(_ p1: Int) -> String { - return L10n.tr("Localizable", "date.hour.ago.abbr", p1) + return L10n.tr("Localizable", "date.hour.ago.abbr", p1, fallback: "Plural format key: \"%#@count_hour_ago_abbr@\"") } } } public enum Minute { /// Plural format key: "%#@count_minute_left@" public static func `left`(_ p1: Int) -> String { - return L10n.tr("Localizable", "date.minute.left", p1) + return L10n.tr("Localizable", "date.minute.left", p1, fallback: "Plural format key: \"%#@count_minute_left@\"") } public enum Ago { /// Plural format key: "%#@count_minute_ago_abbr@" public static func abbr(_ p1: Int) -> String { - return L10n.tr("Localizable", "date.minute.ago.abbr", p1) + return L10n.tr("Localizable", "date.minute.ago.abbr", p1, fallback: "Plural format key: \"%#@count_minute_ago_abbr@\"") } } } public enum Month { /// Plural format key: "%#@count_month_left@" public static func `left`(_ p1: Int) -> String { - return L10n.tr("Localizable", "date.month.left", p1) + return L10n.tr("Localizable", "date.month.left", p1, fallback: "Plural format key: \"%#@count_month_left@\"") } public enum Ago { /// Plural format key: "%#@count_month_ago_abbr@" public static func abbr(_ p1: Int) -> String { - return L10n.tr("Localizable", "date.month.ago.abbr", p1) + return L10n.tr("Localizable", "date.month.ago.abbr", p1, fallback: "Plural format key: \"%#@count_month_ago_abbr@\"") } } } public enum Second { /// Plural format key: "%#@count_second_left@" public static func `left`(_ p1: Int) -> String { - return L10n.tr("Localizable", "date.second.left", p1) + return L10n.tr("Localizable", "date.second.left", p1, fallback: "Plural format key: \"%#@count_second_left@\"") } public enum Ago { /// Plural format key: "%#@count_second_ago_abbr@" public static func abbr(_ p1: Int) -> String { - return L10n.tr("Localizable", "date.second.ago.abbr", p1) + return L10n.tr("Localizable", "date.second.ago.abbr", p1, fallback: "Plural format key: \"%#@count_second_ago_abbr@\"") } } } public enum Year { /// Plural format key: "%#@count_year_left@" public static func `left`(_ p1: Int) -> String { - return L10n.tr("Localizable", "date.year.left", p1) + return L10n.tr("Localizable", "date.year.left", p1, fallback: "Plural format key: \"%#@count_year_left@\"") } public enum Ago { /// Plural format key: "%#@count_year_ago_abbr@" public static func abbr(_ p1: Int) -> String { - return L10n.tr("Localizable", "date.year.ago.abbr", p1) + return L10n.tr("Localizable", "date.year.ago.abbr", p1, fallback: "Plural format key: \"%#@count_year_ago_abbr@\"") } } } } - public enum Plural { /// Plural format key: "%#@count_people_talking@" public static func peopleTalking(_ p1: Int) -> String { - return L10n.tr("Localizable", "plural.people_talking", p1) + return L10n.tr("Localizable", "plural.people_talking", p1, fallback: "Plural format key: \"%#@count_people_talking@\"") } public enum Count { /// Plural format key: "%#@favorite_count@" public static func favorite(_ p1: Int) -> String { - return L10n.tr("Localizable", "plural.count.favorite", p1) + return L10n.tr("Localizable", "plural.count.favorite", p1, fallback: "Plural format key: \"%#@favorite_count@\"") } /// Plural format key: "%#@names@%#@count_mutual@" public static func followedByAndMutual(_ p1: Int, _ p2: Int) -> String { - return L10n.tr("Localizable", "plural.count.followed_by_and_mutual", p1, p2) + return L10n.tr("Localizable", "plural.count.followed_by_and_mutual", p1, p2, fallback: "Plural format key: \"%#@names@%#@count_mutual@\"") } /// Plural format key: "%#@count_follower@" public static func follower(_ p1: Int) -> String { - return L10n.tr("Localizable", "plural.count.follower", p1) + return L10n.tr("Localizable", "plural.count.follower", p1, fallback: "Plural format key: \"%#@count_follower@\"") } /// Plural format key: "%#@count_following@" public static func following(_ p1: Int) -> String { - return L10n.tr("Localizable", "plural.count.following", p1) + return L10n.tr("Localizable", "plural.count.following", p1, fallback: "Plural format key: \"%#@count_following@\"") } /// Plural format key: "%#@media_count@" public static func media(_ p1: Int) -> String { - return L10n.tr("Localizable", "plural.count.media", p1) + return L10n.tr("Localizable", "plural.count.media", p1, fallback: "Plural format key: \"%#@media_count@\"") } /// Plural format key: "%#@post_count@" public static func post(_ p1: Int) -> String { - return L10n.tr("Localizable", "plural.count.post", p1) + return L10n.tr("Localizable", "plural.count.post", p1, fallback: "Plural format key: \"%#@post_count@\"") } /// Plural format key: "%#@reblog_count@" public static func reblog(_ p1: Int) -> String { - return L10n.tr("Localizable", "plural.count.reblog", p1) + return L10n.tr("Localizable", "plural.count.reblog", p1, fallback: "Plural format key: \"%#@reblog_count@\"") } /// Plural format key: "%#@reply_count@" public static func reply(_ p1: Int) -> String { - return L10n.tr("Localizable", "plural.count.reply", p1) + return L10n.tr("Localizable", "plural.count.reply", p1, fallback: "Plural format key: \"%#@reply_count@\"") } /// Plural format key: "%#@vote_count@" public static func vote(_ p1: Int) -> String { - return L10n.tr("Localizable", "plural.count.vote", p1) + return L10n.tr("Localizable", "plural.count.vote", p1, fallback: "Plural format key: \"%#@vote_count@\"") } /// Plural format key: "%#@voter_count@" public static func voter(_ p1: Int) -> String { - return L10n.tr("Localizable", "plural.count.voter", p1) + return L10n.tr("Localizable", "plural.count.voter", p1, fallback: "Plural format key: \"%#@voter_count@\"") } public enum MetricFormatted { /// Plural format key: "%@ %#@post_count@" public static func post(_ p1: Any, _ p2: Int) -> String { - return L10n.tr("Localizable", "plural.count.metric_formatted.post", String(describing: p1), p2) + return L10n.tr("Localizable", "plural.count.metric_formatted.post", String(describing: p1), p2, fallback: "Plural format key: \"%@ %#@post_count@\"") } } } @@ -1448,8 +1460,8 @@ public enum L10n { // MARK: - Implementation Details extension L10n { - private static func tr(_ table: String, _ key: String, _ args: CVarArg...) -> String { - let format = Bundle.module.localizedString(forKey: key, value: nil, table: table) + private static func tr(_ table: String, _ key: String, _ args: CVarArg..., fallback value: String) -> String { + let format = Bundle.module.localizedString(forKey: key, value: value, table: table) return String(format: format, locale: Locale.current, arguments: args) } } diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/Base.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/Base.lproj/Localizable.strings new file mode 100644 index 000000000..a352b0526 --- /dev/null +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/Base.lproj/Localizable.strings @@ -0,0 +1,461 @@ +"Common.Alerts.BlockDomain.BlockEntireDomain" = "Block Domain"; +"Common.Alerts.BlockDomain.Title" = "Are you really, really sure you want to block the entire %@? In most cases a few targeted blocks or mutes are sufficient and preferable. You will not see content from that domain and any of your followers from that domain will be removed."; +"Common.Alerts.CleanCache.Message" = "Successfully cleaned %@ cache."; +"Common.Alerts.CleanCache.Title" = "Clean Cache"; +"Common.Alerts.Common.PleaseTryAgain" = "Please try again."; +"Common.Alerts.Common.PleaseTryAgainLater" = "Please try again later."; +"Common.Alerts.DeletePost.Message" = "Are you sure you want to delete this post?"; +"Common.Alerts.DeletePost.Title" = "Delete Post"; +"Common.Alerts.DiscardPostContent.Message" = "Confirm to discard composed post content."; +"Common.Alerts.DiscardPostContent.Title" = "Discard Draft"; +"Common.Alerts.EditProfileFailure.Message" = "Cannot edit profile. Please try again."; +"Common.Alerts.EditProfileFailure.Title" = "Edit Profile Error"; +"Common.Alerts.PublishPostFailure.AttachmentsMessage.MoreThanOneVideo" = "Cannot attach more than one video."; +"Common.Alerts.PublishPostFailure.AttachmentsMessage.VideoAttachWithPhoto" = "Cannot attach a video to a post that already contains images."; +"Common.Alerts.PublishPostFailure.Message" = "Failed to publish the post. +Please check your internet connection."; +"Common.Alerts.PublishPostFailure.Title" = "Publish Failure"; +"Common.Alerts.SavePhotoFailure.Message" = "Please enable the photo library access permission to save the photo."; +"Common.Alerts.SavePhotoFailure.Title" = "Save Photo Failure"; +"Common.Alerts.ServerError.Title" = "Server Error"; +"Common.Alerts.SignOut.Confirm" = "Sign Out"; +"Common.Alerts.SignOut.Message" = "Are you sure you want to sign out?"; +"Common.Alerts.SignOut.Title" = "Sign Out"; +"Common.Alerts.SignUpFailure.Title" = "Sign Up Failure"; +"Common.Alerts.VoteFailure.PollEnded" = "The poll has ended"; +"Common.Alerts.VoteFailure.Title" = "Vote Failure"; +"Common.Controls.Actions.Add" = "Add"; +"Common.Controls.Actions.Back" = "Back"; +"Common.Controls.Actions.BlockDomain" = "Block %@"; +"Common.Controls.Actions.Cancel" = "Cancel"; +"Common.Controls.Actions.Compose" = "Compose"; +"Common.Controls.Actions.Confirm" = "Confirm"; +"Common.Controls.Actions.Continue" = "Continue"; +"Common.Controls.Actions.CopyPhoto" = "Copy Photo"; +"Common.Controls.Actions.Delete" = "Delete"; +"Common.Controls.Actions.Discard" = "Discard"; +"Common.Controls.Actions.Done" = "Done"; +"Common.Controls.Actions.Edit" = "Edit"; +"Common.Controls.Actions.FindPeople" = "Find people to follow"; +"Common.Controls.Actions.ManuallySearch" = "Manually search instead"; +"Common.Controls.Actions.Next" = "Next"; +"Common.Controls.Actions.Ok" = "OK"; +"Common.Controls.Actions.Open" = "Open"; +"Common.Controls.Actions.OpenInBrowser" = "Open in Browser"; +"Common.Controls.Actions.OpenInSafari" = "Open in Safari"; +"Common.Controls.Actions.Preview" = "Preview"; +"Common.Controls.Actions.Previous" = "Previous"; +"Common.Controls.Actions.Remove" = "Remove"; +"Common.Controls.Actions.Reply" = "Reply"; +"Common.Controls.Actions.ReportUser" = "Report %@"; +"Common.Controls.Actions.Save" = "Save"; +"Common.Controls.Actions.SavePhoto" = "Save Photo"; +"Common.Controls.Actions.SeeMore" = "See More"; +"Common.Controls.Actions.Settings" = "Settings"; +"Common.Controls.Actions.Share" = "Share"; +"Common.Controls.Actions.SharePost" = "Share Post"; +"Common.Controls.Actions.ShareUser" = "Share %@"; +"Common.Controls.Actions.SignIn" = "Sign In"; +"Common.Controls.Actions.SignUp" = "Sign Up"; +"Common.Controls.Actions.Skip" = "Skip"; +"Common.Controls.Actions.TakePhoto" = "Take Photo"; +"Common.Controls.Actions.TryAgain" = "Try Again"; +"Common.Controls.Actions.UnblockDomain" = "Unblock %@"; +"Common.Controls.Friendship.Block" = "Block"; +"Common.Controls.Friendship.BlockDomain" = "Block %@"; +"Common.Controls.Friendship.BlockUser" = "Block %@"; +"Common.Controls.Friendship.Blocked" = "Blocked"; +"Common.Controls.Friendship.EditInfo" = "Edit Info"; +"Common.Controls.Friendship.Follow" = "Follow"; +"Common.Controls.Friendship.Following" = "Following"; +"Common.Controls.Friendship.HideReblogs" = "Hide Reblogs"; +"Common.Controls.Friendship.Mute" = "Mute"; +"Common.Controls.Friendship.MuteUser" = "Mute %@"; +"Common.Controls.Friendship.Muted" = "Muted"; +"Common.Controls.Friendship.Pending" = "Pending"; +"Common.Controls.Friendship.Request" = "Request"; +"Common.Controls.Friendship.ShowReblogs" = "Show Reblogs"; +"Common.Controls.Friendship.Unblock" = "Unblock"; +"Common.Controls.Friendship.UnblockUser" = "Unblock %@"; +"Common.Controls.Friendship.Unmute" = "Unmute"; +"Common.Controls.Friendship.UnmuteUser" = "Unmute %@"; +"Common.Controls.Keyboard.Common.ComposeNewPost" = "Compose New Post"; +"Common.Controls.Keyboard.Common.OpenSettings" = "Open Settings"; +"Common.Controls.Keyboard.Common.ShowFavorites" = "Show Favorites"; +"Common.Controls.Keyboard.Common.SwitchToTab" = "Switch to %@"; +"Common.Controls.Keyboard.SegmentedControl.NextSection" = "Next Section"; +"Common.Controls.Keyboard.SegmentedControl.PreviousSection" = "Previous Section"; +"Common.Controls.Keyboard.Timeline.NextStatus" = "Next Post"; +"Common.Controls.Keyboard.Timeline.OpenAuthorProfile" = "Open Author's Profile"; +"Common.Controls.Keyboard.Timeline.OpenRebloggerProfile" = "Open Reblogger's Profile"; +"Common.Controls.Keyboard.Timeline.OpenStatus" = "Open Post"; +"Common.Controls.Keyboard.Timeline.PreviewImage" = "Preview Image"; +"Common.Controls.Keyboard.Timeline.PreviousStatus" = "Previous Post"; +"Common.Controls.Keyboard.Timeline.ReplyStatus" = "Reply to Post"; +"Common.Controls.Keyboard.Timeline.ToggleContentWarning" = "Toggle Content Warning"; +"Common.Controls.Keyboard.Timeline.ToggleFavorite" = "Toggle Favorite on Post"; +"Common.Controls.Keyboard.Timeline.ToggleReblog" = "Toggle Reblog on Post"; +"Common.Controls.Status.Actions.Favorite" = "Favorite"; +"Common.Controls.Status.Actions.Hide" = "Hide"; +"Common.Controls.Status.Actions.Menu" = "Menu"; +"Common.Controls.Status.Actions.Reblog" = "Reblog"; +"Common.Controls.Status.Actions.Reply" = "Reply"; +"Common.Controls.Status.Actions.ShowGif" = "Show GIF"; +"Common.Controls.Status.Actions.ShowImage" = "Show image"; +"Common.Controls.Status.Actions.ShowVideoPlayer" = "Show video player"; +"Common.Controls.Status.Actions.TapThenHoldToShowMenu" = "Tap then hold to show menu"; +"Common.Controls.Status.Actions.Unfavorite" = "Unfavorite"; +"Common.Controls.Status.Actions.Unreblog" = "Undo reblog"; +"Common.Controls.Status.ContentWarning" = "Content Warning"; +"Common.Controls.Status.MediaContentWarning" = "Tap anywhere to reveal"; +"Common.Controls.Status.MetaEntity.Email" = "Email address: %@"; +"Common.Controls.Status.MetaEntity.Hashtag" = "Hashtag: %@"; +"Common.Controls.Status.MetaEntity.Mention" = "Show Profile: %@"; +"Common.Controls.Status.MetaEntity.Url" = "Link: %@"; +"Common.Controls.Status.Poll.Closed" = "Closed"; +"Common.Controls.Status.Poll.Vote" = "Vote"; +"Common.Controls.Status.SensitiveContent" = "Sensitive Content"; +"Common.Controls.Status.ShowPost" = "Show Post"; +"Common.Controls.Status.ShowUserProfile" = "Show user profile"; +"Common.Controls.Status.Tag.Email" = "Email"; +"Common.Controls.Status.Tag.Emoji" = "Emoji"; +"Common.Controls.Status.Tag.Hashtag" = "Hashtag"; +"Common.Controls.Status.Tag.Link" = "Link"; +"Common.Controls.Status.Tag.Mention" = "Mention"; +"Common.Controls.Status.Tag.Url" = "URL"; +"Common.Controls.Status.TapToReveal" = "Tap to reveal"; +"Common.Controls.Status.UserReblogged" = "%@ reblogged"; +"Common.Controls.Status.UserRepliedTo" = "Replied to %@"; +"Common.Controls.Status.Visibility.Direct" = "Only mentioned user can see this post."; +"Common.Controls.Status.Visibility.Private" = "Only their followers can see this post."; +"Common.Controls.Status.Visibility.PrivateFromMe" = "Only my followers can see this post."; +"Common.Controls.Status.Visibility.Unlisted" = "Everyone can see this post but not display in the public timeline."; +"Common.Controls.Tabs.Home" = "Home"; +"Common.Controls.Tabs.Notification" = "Notification"; +"Common.Controls.Tabs.Profile" = "Profile"; +"Common.Controls.Tabs.Search" = "Search"; +"Common.Controls.Timeline.Filtered" = "Filtered"; +"Common.Controls.Timeline.Header.BlockedWarning" = "You can’t view this user’s profile +until they unblock you."; +"Common.Controls.Timeline.Header.BlockingWarning" = "You can’t view this user's profile +until you unblock them. +Your profile looks like this to them."; +"Common.Controls.Timeline.Header.NoStatusFound" = "No Post Found"; +"Common.Controls.Timeline.Header.SuspendedWarning" = "This user has been suspended."; +"Common.Controls.Timeline.Header.UserBlockedWarning" = "You can’t view %@’s profile +until they unblock you."; +"Common.Controls.Timeline.Header.UserBlockingWarning" = "You can’t view %@’s profile +until you unblock them. +Your profile looks like this to them."; +"Common.Controls.Timeline.Header.UserSuspendedWarning" = "%@’s account has been suspended."; +"Common.Controls.Timeline.Loader.LoadMissingPosts" = "Load missing posts"; +"Common.Controls.Timeline.Loader.LoadingMissingPosts" = "Loading missing posts..."; +"Common.Controls.Timeline.Loader.ShowMoreReplies" = "Show more replies"; +"Common.Controls.Timeline.Timestamp.Now" = "Now"; +"Scene.AccountList.AddAccount" = "Add Account"; +"Scene.AccountList.DismissAccountSwitcher" = "Dismiss Account Switcher"; +"Scene.AccountList.TabBarHint" = "Current selected profile: %@. Double tap then hold to show account switcher"; +"Scene.Bookmark.Title" = "Bookmarks"; +"Scene.Compose.Accessibility.AppendAttachment" = "Add Attachment"; +"Scene.Compose.Accessibility.AppendPoll" = "Add Poll"; +"Scene.Compose.Accessibility.CustomEmojiPicker" = "Custom Emoji Picker"; +"Scene.Compose.Accessibility.DisableContentWarning" = "Disable Content Warning"; +"Scene.Compose.Accessibility.EnableContentWarning" = "Enable Content Warning"; +"Scene.Compose.Accessibility.PostOptions" = "Post Options"; +"Scene.Compose.Accessibility.PostVisibilityMenu" = "Post Visibility Menu"; +"Scene.Compose.Accessibility.PostingAs" = "Posting as %@"; +"Scene.Compose.Accessibility.RemovePoll" = "Remove Poll"; +"Scene.Compose.Attachment.AttachmentBroken" = "This %@ is broken and can’t be +uploaded to Mastodon."; +"Scene.Compose.Attachment.AttachmentTooLarge" = "Attachment too large"; +"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Can not recognize this media attachment"; +"Scene.Compose.Attachment.CompressingState" = "Compressing..."; +"Scene.Compose.Attachment.DescriptionPhoto" = "Describe the photo for the visually-impaired..."; +"Scene.Compose.Attachment.DescriptionVideo" = "Describe the video for the visually-impaired..."; +"Scene.Compose.Attachment.LoadFailed" = "Load Failed"; +"Scene.Compose.Attachment.Photo" = "photo"; +"Scene.Compose.Attachment.ServerProcessingState" = "Server Processing..."; +"Scene.Compose.Attachment.UploadFailed" = "Upload Failed"; +"Scene.Compose.Attachment.Video" = "video"; +"Scene.Compose.AutoComplete.SpaceToAdd" = "Space to add"; +"Scene.Compose.ComposeAction" = "Publish"; +"Scene.Compose.ContentInputPlaceholder" = "Type or paste what’s on your mind"; +"Scene.Compose.ContentWarning.Placeholder" = "Write an accurate warning here..."; +"Scene.Compose.Keyboard.AppendAttachmentEntry" = "Add Attachment - %@"; +"Scene.Compose.Keyboard.DiscardPost" = "Discard Post"; +"Scene.Compose.Keyboard.PublishPost" = "Publish Post"; +"Scene.Compose.Keyboard.SelectVisibilityEntry" = "Select Visibility - %@"; +"Scene.Compose.Keyboard.ToggleContentWarning" = "Toggle Content Warning"; +"Scene.Compose.Keyboard.TogglePoll" = "Toggle Poll"; +"Scene.Compose.MediaSelection.Browse" = "Browse"; +"Scene.Compose.MediaSelection.Camera" = "Take Photo"; +"Scene.Compose.MediaSelection.PhotoLibrary" = "Photo Library"; +"Scene.Compose.Poll.DurationTime" = "Duration: %@"; +"Scene.Compose.Poll.OneDay" = "1 Day"; +"Scene.Compose.Poll.OneHour" = "1 Hour"; +"Scene.Compose.Poll.OptionNumber" = "Option %ld"; +"Scene.Compose.Poll.SevenDays" = "7 Days"; +"Scene.Compose.Poll.SixHours" = "6 Hours"; +"Scene.Compose.Poll.ThePollHasEmptyOption" = "The poll has empty option"; +"Scene.Compose.Poll.ThePollIsInvalid" = "The poll is invalid"; +"Scene.Compose.Poll.ThirtyMinutes" = "30 minutes"; +"Scene.Compose.Poll.ThreeDays" = "3 Days"; +"Scene.Compose.ReplyingToUser" = "replying to %@"; +"Scene.Compose.Title.NewPost" = "New Post"; +"Scene.Compose.Title.NewReply" = "New Reply"; +"Scene.Compose.Visibility.Direct" = "Only people I mention"; +"Scene.Compose.Visibility.Private" = "Followers only"; +"Scene.Compose.Visibility.Public" = "Public"; +"Scene.Compose.Visibility.Unlisted" = "Unlisted"; +"Scene.ConfirmEmail.Button.OpenEmailApp" = "Open Email App"; +"Scene.ConfirmEmail.Button.Resend" = "Resend"; +"Scene.ConfirmEmail.DontReceiveEmail.Description" = "Check if your email address is correct as well as your junk folder if you haven’t."; +"Scene.ConfirmEmail.DontReceiveEmail.ResendEmail" = "Resend Email"; +"Scene.ConfirmEmail.DontReceiveEmail.Title" = "Check your email"; +"Scene.ConfirmEmail.OpenEmailApp.Description" = "We just sent you an email. Check your junk folder if you haven’t."; +"Scene.ConfirmEmail.OpenEmailApp.Mail" = "Mail"; +"Scene.ConfirmEmail.OpenEmailApp.OpenEmailClient" = "Open Email Client"; +"Scene.ConfirmEmail.OpenEmailApp.Title" = "Check your inbox."; +"Scene.ConfirmEmail.Subtitle" = "Tap the link we emailed to you to verify your account."; +"Scene.ConfirmEmail.TapTheLinkWeEmailedToYouToVerifyYourAccount" = "Tap the link we emailed to you to verify your account"; +"Scene.ConfirmEmail.Title" = "One last thing."; +"Scene.Discovery.Intro" = "These are the posts gaining traction in your corner of Mastodon."; +"Scene.Discovery.Tabs.Community" = "Community"; +"Scene.Discovery.Tabs.ForYou" = "For You"; +"Scene.Discovery.Tabs.Hashtags" = "Hashtags"; +"Scene.Discovery.Tabs.News" = "News"; +"Scene.Discovery.Tabs.Posts" = "Posts"; +"Scene.Familiarfollowers.FollowedByNames" = "Followed by %@"; +"Scene.Familiarfollowers.Title" = "Followers you familiar"; +"Scene.Favorite.Title" = "Your Favorites"; +"Scene.FavoritedBy.Title" = "Favorited By"; +"Scene.Follower.Footer" = "Followers from other servers are not displayed."; +"Scene.Follower.Title" = "follower"; +"Scene.Following.Footer" = "Follows from other servers are not displayed."; +"Scene.Following.Title" = "following"; +"Scene.HomeTimeline.NavigationBarState.Accessibility.LogoHint" = "Tap to scroll to top and tap again to previous location"; +"Scene.HomeTimeline.NavigationBarState.Accessibility.LogoLabel" = "Logo Button"; +"Scene.HomeTimeline.NavigationBarState.NewPosts" = "See new posts"; +"Scene.HomeTimeline.NavigationBarState.Offline" = "Offline"; +"Scene.HomeTimeline.NavigationBarState.Published" = "Published!"; +"Scene.HomeTimeline.NavigationBarState.Publishing" = "Publishing post..."; +"Scene.HomeTimeline.Title" = "Home"; +"Scene.Notification.FollowRequest.Accept" = "Accept"; +"Scene.Notification.FollowRequest.Accepted" = "Accepted"; +"Scene.Notification.FollowRequest.Reject" = "reject"; +"Scene.Notification.FollowRequest.Rejected" = "Rejected"; +"Scene.Notification.Keyobard.ShowEverything" = "Show Everything"; +"Scene.Notification.Keyobard.ShowMentions" = "Show Mentions"; +"Scene.Notification.NotificationDescription.FavoritedYourPost" = "favorited your post"; +"Scene.Notification.NotificationDescription.FollowedYou" = "followed you"; +"Scene.Notification.NotificationDescription.MentionedYou" = "mentioned you"; +"Scene.Notification.NotificationDescription.PollHasEnded" = "poll has ended"; +"Scene.Notification.NotificationDescription.RebloggedYourPost" = "reblogged your post"; +"Scene.Notification.NotificationDescription.RequestToFollowYou" = "request to follow you"; +"Scene.Notification.Title.Everything" = "Everything"; +"Scene.Notification.Title.Mentions" = "Mentions"; +"Scene.Preview.Keyboard.ClosePreview" = "Close Preview"; +"Scene.Preview.Keyboard.ShowNext" = "Show Next"; +"Scene.Preview.Keyboard.ShowPrevious" = "Show Previous"; +"Scene.Profile.Accessibility.DoubleTapToOpenTheList" = "Double tap to open the list"; +"Scene.Profile.Accessibility.EditAvatarImage" = "Edit avatar image"; +"Scene.Profile.Accessibility.ShowAvatarImage" = "Show avatar image"; +"Scene.Profile.Accessibility.ShowBannerImage" = "Show banner image"; +"Scene.Profile.Dashboard.Followers" = "followers"; +"Scene.Profile.Dashboard.Following" = "following"; +"Scene.Profile.Dashboard.Posts" = "posts"; +"Scene.Profile.Fields.AddRow" = "Add Row"; +"Scene.Profile.Fields.Placeholder.Content" = "Content"; +"Scene.Profile.Fields.Placeholder.Label" = "Label"; +"Scene.Profile.Header.FollowsYou" = "Follows You"; +"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Confirm to block %@"; +"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Block Account"; +"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "Confirm to hide reblogs"; +"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Title" = "Hide Reblogs"; +"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Message" = "Confirm to mute %@"; +"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Mute Account"; +"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Confirm to show reblogs"; +"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "Show Reblogs"; +"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Confirm to unblock %@"; +"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Unblock Account"; +"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Confirm to unmute %@"; +"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Title" = "Unmute Account"; +"Scene.Profile.SegmentedControl.About" = "About"; +"Scene.Profile.SegmentedControl.Media" = "Media"; +"Scene.Profile.SegmentedControl.Posts" = "Posts"; +"Scene.Profile.SegmentedControl.PostsAndReplies" = "Posts and Replies"; +"Scene.Profile.SegmentedControl.Replies" = "Replies"; +"Scene.RebloggedBy.Title" = "Reblogged By"; +"Scene.Register.Error.Item.Agreement" = "Agreement"; +"Scene.Register.Error.Item.Email" = "Email"; +"Scene.Register.Error.Item.Locale" = "Locale"; +"Scene.Register.Error.Item.Password" = "Password"; +"Scene.Register.Error.Item.Reason" = "Reason"; +"Scene.Register.Error.Item.Username" = "Username"; +"Scene.Register.Error.Reason.Accepted" = "%@ must be accepted"; +"Scene.Register.Error.Reason.Blank" = "%@ is required"; +"Scene.Register.Error.Reason.Blocked" = "%@ contains a disallowed email provider"; +"Scene.Register.Error.Reason.Inclusion" = "%@ is not a supported value"; +"Scene.Register.Error.Reason.Invalid" = "%@ is invalid"; +"Scene.Register.Error.Reason.Reserved" = "%@ is a reserved keyword"; +"Scene.Register.Error.Reason.Taken" = "%@ is already in use"; +"Scene.Register.Error.Reason.TooLong" = "%@ is too long"; +"Scene.Register.Error.Reason.TooShort" = "%@ is too short"; +"Scene.Register.Error.Reason.Unreachable" = "%@ does not seem to exist"; +"Scene.Register.Error.Special.EmailInvalid" = "This is not a valid email address"; +"Scene.Register.Error.Special.PasswordTooShort" = "Password is too short (must be at least 8 characters)"; +"Scene.Register.Error.Special.UsernameInvalid" = "Username must only contain alphanumeric characters and underscores"; +"Scene.Register.Error.Special.UsernameTooLong" = "Username is too long (can’t be longer than 30 characters)"; +"Scene.Register.Input.Avatar.Delete" = "Delete"; +"Scene.Register.Input.DisplayName.Placeholder" = "display name"; +"Scene.Register.Input.Email.Placeholder" = "email"; +"Scene.Register.Input.Invite.RegistrationUserInviteRequest" = "Why do you want to join?"; +"Scene.Register.Input.Password.Accessibility.Checked" = "checked"; +"Scene.Register.Input.Password.Accessibility.Unchecked" = "unchecked"; +"Scene.Register.Input.Password.CharacterLimit" = "8 characters"; +"Scene.Register.Input.Password.Hint" = "Your password needs at least eight characters"; +"Scene.Register.Input.Password.Placeholder" = "password"; +"Scene.Register.Input.Password.Require" = "Your password needs at least:"; +"Scene.Register.Input.Username.DuplicatePrompt" = "This username is taken."; +"Scene.Register.Input.Username.Placeholder" = "username"; +"Scene.Register.LetsGetYouSetUpOnDomain" = "Let’s get you set up on %@"; +"Scene.Register.Title" = "Let’s get you set up on %@"; +"Scene.Report.Content1" = "Are there any other posts you’d like to add to the report?"; +"Scene.Report.Content2" = "Is there anything the moderators should know about this report?"; +"Scene.Report.ReportSentTitle" = "Thanks for reporting, we’ll look into this."; +"Scene.Report.Reported" = "REPORTED"; +"Scene.Report.Send" = "Send Report"; +"Scene.Report.SkipToSend" = "Send without comment"; +"Scene.Report.Step1" = "Step 1 of 2"; +"Scene.Report.Step2" = "Step 2 of 2"; +"Scene.Report.StepFinal.BlockUser" = "Block %@"; +"Scene.Report.StepFinal.DontWantToSeeThis" = "Don’t want to see this?"; +"Scene.Report.StepFinal.MuteUser" = "Mute %@"; +"Scene.Report.StepFinal.TheyWillNoLongerBeAbleToFollowOrSeeYourPostsButTheyCanSeeIfTheyveBeenBlocked" = "They will no longer be able to follow or see your posts, but they can see if they’ve been blocked."; +"Scene.Report.StepFinal.Unfollow" = "Unfollow"; +"Scene.Report.StepFinal.UnfollowUser" = "Unfollow %@"; +"Scene.Report.StepFinal.Unfollowed" = "Unfollowed"; +"Scene.Report.StepFinal.WhenYouSeeSomethingYouDontLikeOnMastodonYouCanRemoveThePersonFromYourExperience." = "When you see something you don’t like on Mastodon, you can remove the person from your experience."; +"Scene.Report.StepFinal.WhileWeReviewThisYouCanTakeActionAgainstUser" = "While we review this, you can take action against %@"; +"Scene.Report.StepFinal.YouWontSeeTheirPostsOrReblogsInYourHomeFeedTheyWontKnowTheyVeBeenMuted" = "You won’t see their posts or reblogs in your home feed. They won’t know they’ve been muted."; +"Scene.Report.StepFour.IsThereAnythingElseWeShouldKnow" = "Is there anything else we should know?"; +"Scene.Report.StepFour.Step4Of4" = "Step 4 of 4"; +"Scene.Report.StepOne.IDontLikeIt" = "I don’t like it"; +"Scene.Report.StepOne.ItIsNotSomethingYouWantToSee" = "It is not something you want to see"; +"Scene.Report.StepOne.ItViolatesServerRules" = "It violates server rules"; +"Scene.Report.StepOne.ItsSomethingElse" = "It’s something else"; +"Scene.Report.StepOne.ItsSpam" = "It’s spam"; +"Scene.Report.StepOne.MaliciousLinksFakeEngagementOrRepetetiveReplies" = "Malicious links, fake engagement, or repetetive replies"; +"Scene.Report.StepOne.SelectTheBestMatch" = "Select the best match"; +"Scene.Report.StepOne.Step1Of4" = "Step 1 of 4"; +"Scene.Report.StepOne.TheIssueDoesNotFitIntoOtherCategories" = "The issue does not fit into other categories"; +"Scene.Report.StepOne.WhatsWrongWithThisAccount" = "What's wrong with this account?"; +"Scene.Report.StepOne.WhatsWrongWithThisPost" = "What's wrong with this post?"; +"Scene.Report.StepOne.WhatsWrongWithThisUsername" = "What's wrong with %@?"; +"Scene.Report.StepOne.YouAreAwareThatItBreaksSpecificRules" = "You are aware that it breaks specific rules"; +"Scene.Report.StepThree.AreThereAnyPostsThatBackUpThisReport" = "Are there any posts that back up this report?"; +"Scene.Report.StepThree.SelectAllThatApply" = "Select all that apply"; +"Scene.Report.StepThree.Step3Of4" = "Step 3 of 4"; +"Scene.Report.StepTwo.IJustDon’tLikeIt" = "I just don’t like it"; +"Scene.Report.StepTwo.SelectAllThatApply" = "Select all that apply"; +"Scene.Report.StepTwo.Step2Of4" = "Step 2 of 4"; +"Scene.Report.StepTwo.WhichRulesAreBeingViolated" = "Which rules are being violated?"; +"Scene.Report.TextPlaceholder" = "Type or paste additional comments"; +"Scene.Report.Title" = "Report %@"; +"Scene.Report.TitleReport" = "Report"; +"Scene.Search.Recommend.Accounts.Description" = "You may like to follow these accounts"; +"Scene.Search.Recommend.Accounts.Follow" = "Follow"; +"Scene.Search.Recommend.Accounts.Title" = "Accounts you might like"; +"Scene.Search.Recommend.ButtonText" = "See All"; +"Scene.Search.Recommend.HashTag.Description" = "Hashtags that are getting quite a bit of attention"; +"Scene.Search.Recommend.HashTag.PeopleTalking" = "%@ people are talking"; +"Scene.Search.Recommend.HashTag.Title" = "Trending on Mastodon"; +"Scene.Search.SearchBar.Cancel" = "Cancel"; +"Scene.Search.SearchBar.Placeholder" = "Search hashtags and users"; +"Scene.Search.Searching.Clear" = "Clear"; +"Scene.Search.Searching.EmptyState.NoResults" = "No results"; +"Scene.Search.Searching.RecentSearch" = "Recent searches"; +"Scene.Search.Searching.Segment.All" = "All"; +"Scene.Search.Searching.Segment.Hashtags" = "Hashtags"; +"Scene.Search.Searching.Segment.People" = "People"; +"Scene.Search.Searching.Segment.Posts" = "Posts"; +"Scene.Search.Title" = "Search"; +"Scene.ServerPicker.Button.Category.Academia" = "academia"; +"Scene.ServerPicker.Button.Category.Activism" = "activism"; +"Scene.ServerPicker.Button.Category.All" = "All"; +"Scene.ServerPicker.Button.Category.AllAccessiblityDescription" = "Category: All"; +"Scene.ServerPicker.Button.Category.Art" = "art"; +"Scene.ServerPicker.Button.Category.Food" = "food"; +"Scene.ServerPicker.Button.Category.Furry" = "furry"; +"Scene.ServerPicker.Button.Category.Games" = "games"; +"Scene.ServerPicker.Button.Category.General" = "general"; +"Scene.ServerPicker.Button.Category.Journalism" = "journalism"; +"Scene.ServerPicker.Button.Category.Lgbt" = "lgbt"; +"Scene.ServerPicker.Button.Category.Music" = "music"; +"Scene.ServerPicker.Button.Category.Regional" = "regional"; +"Scene.ServerPicker.Button.Category.Tech" = "tech"; +"Scene.ServerPicker.Button.SeeLess" = "See Less"; +"Scene.ServerPicker.Button.SeeMore" = "See More"; +"Scene.ServerPicker.EmptyState.BadNetwork" = "Something went wrong while loading the data. Check your internet connection."; +"Scene.ServerPicker.EmptyState.FindingServers" = "Finding available servers..."; +"Scene.ServerPicker.EmptyState.NoResults" = "No results"; +"Scene.ServerPicker.Input.Placeholder" = "Search servers"; +"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "Search servers or enter URL"; +"Scene.ServerPicker.Label.Category" = "CATEGORY"; +"Scene.ServerPicker.Label.Language" = "LANGUAGE"; +"Scene.ServerPicker.Label.Users" = "USERS"; +"Scene.ServerPicker.Subtitle" = "Pick a server based on your interests, region, or a general purpose one."; +"Scene.ServerPicker.SubtitleExtend" = "Pick a server based on your interests, region, or a general purpose one. Each server is operated by an entirely independent organization or individual."; +"Scene.ServerPicker.Title" = "Mastodon is made of users in different servers."; +"Scene.ServerRules.Button.Confirm" = "I Agree"; +"Scene.ServerRules.PrivacyPolicy" = "privacy policy"; +"Scene.ServerRules.Prompt" = "By continuing, you’re subject to the terms of service and privacy policy for %@."; +"Scene.ServerRules.Subtitle" = "These are set and enforced by the %@ moderators."; +"Scene.ServerRules.TermsOfService" = "terms of service"; +"Scene.ServerRules.Title" = "Some ground rules."; +"Scene.Settings.Footer.MastodonDescription" = "Mastodon is open source software. You can report issues on GitHub at %@ (%@)"; +"Scene.Settings.Keyboard.CloseSettingsWindow" = "Close Settings Window"; +"Scene.Settings.Section.Appearance.Automatic" = "Automatic"; +"Scene.Settings.Section.Appearance.Dark" = "Always Dark"; +"Scene.Settings.Section.Appearance.Light" = "Always Light"; +"Scene.Settings.Section.Appearance.Title" = "Appearance"; +"Scene.Settings.Section.BoringZone.AccountSettings" = "Account Settings"; +"Scene.Settings.Section.BoringZone.Privacy" = "Privacy Policy"; +"Scene.Settings.Section.BoringZone.Terms" = "Terms of Service"; +"Scene.Settings.Section.BoringZone.Title" = "The Boring Zone"; +"Scene.Settings.Section.LookAndFeel.Light" = "Light"; +"Scene.Settings.Section.LookAndFeel.ReallyDark" = "Really Dark"; +"Scene.Settings.Section.LookAndFeel.SortaDark" = "Sorta Dark"; +"Scene.Settings.Section.LookAndFeel.Title" = "Look and Feel"; +"Scene.Settings.Section.LookAndFeel.UseSystem" = "Use System"; +"Scene.Settings.Section.Notifications.Boosts" = "Reblogs my post"; +"Scene.Settings.Section.Notifications.Favorites" = "Favorites my post"; +"Scene.Settings.Section.Notifications.Follows" = "Follows me"; +"Scene.Settings.Section.Notifications.Mentions" = "Mentions me"; +"Scene.Settings.Section.Notifications.Title" = "Notifications"; +"Scene.Settings.Section.Notifications.Trigger.Anyone" = "anyone"; +"Scene.Settings.Section.Notifications.Trigger.Follow" = "anyone I follow"; +"Scene.Settings.Section.Notifications.Trigger.Follower" = "a follower"; +"Scene.Settings.Section.Notifications.Trigger.Noone" = "no one"; +"Scene.Settings.Section.Notifications.Trigger.Title" = "Notify me when"; +"Scene.Settings.Section.Preference.DisableAvatarAnimation" = "Disable animated avatars"; +"Scene.Settings.Section.Preference.DisableEmojiAnimation" = "Disable animated emojis"; +"Scene.Settings.Section.Preference.OpenLinksInMastodon" = "Open links in Mastodon"; +"Scene.Settings.Section.Preference.Title" = "Preferences"; +"Scene.Settings.Section.Preference.TrueBlackDarkMode" = "True black dark mode"; +"Scene.Settings.Section.Preference.UsingDefaultBrowser" = "Use default browser to open links"; +"Scene.Settings.Section.SpicyZone.Clear" = "Clear Media Cache"; +"Scene.Settings.Section.SpicyZone.Signout" = "Sign Out"; +"Scene.Settings.Section.SpicyZone.Title" = "The Spicy Zone"; +"Scene.Settings.Title" = "Settings"; +"Scene.SuggestionAccount.FollowExplain" = "When you follow someone, you’ll see their posts in your home feed."; +"Scene.SuggestionAccount.Title" = "Find People to Follow"; +"Scene.Thread.BackTitle" = "Post"; +"Scene.Thread.Title" = "Post from %@"; +"Scene.Welcome.GetStarted" = "Get Started"; +"Scene.Welcome.LogIn" = "Log In"; +"Scene.Welcome.Slogan" = "Social networking +back in your hands."; +"Scene.Wizard.AccessibilityHint" = "Double tap to dismiss this wizard"; +"Scene.Wizard.MultipleAccountSwitchIntroDescription" = "Switch between multiple accounts by holding the profile button."; +"Scene.Wizard.NewInMastodon" = "New in Mastodon"; \ No newline at end of file diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/Base.lproj/Localizable.stringsdict b/MastodonSDK/Sources/MastodonLocalization/Resources/Base.lproj/Localizable.stringsdict new file mode 100644 index 000000000..cd97825f4 --- /dev/null +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/Base.lproj/Localizable.stringsdict @@ -0,0 +1,631 @@ + + + + + a11y.plural.count.unread.notification + + NSStringLocalizedFormatKey + %#@notification_count_unread_notification@ + notification_count_unread_notification + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + zero + no unread notification + one + 1 unread notification + few + %ld unread notifications + many + %ld unread notification + other + %ld unread notification + + + a11y.plural.count.input_limit_exceeds + + NSStringLocalizedFormatKey + Input limit exceeds %#@character_count@ + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + zero + 0 characters + one + 1 character + few + %ld characters + many + %ld characters + other + %ld characters + + + a11y.plural.count.input_limit_remains + + NSStringLocalizedFormatKey + Input limit remains %#@character_count@ + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + zero + 0 characters + one + 1 character + few + %ld characters + many + %ld characters + other + %ld characters + + + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + %#@character_count@ left + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + zero + no characters + one + 1 character + few + %ld characters + many + %ld characters + other + %ld characters + + + plural.count.followed_by_and_mutual + + NSStringLocalizedFormatKey + %#@names@%#@count_mutual@ + names + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + other + + + count_mutual + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + zero + Followed by %1$@ + one + Followed by %1$@, and another mutual + few + Followed by %1$@, and %ld mutuals + many + Followed by %1$@, and %ld mutuals + other + Followed by %1$@, and %ld mutuals + + + plural.count.metric_formatted.post + + NSStringLocalizedFormatKey + %@ %#@post_count@ + post_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + zero + posts + one + post + few + posts + many + posts + other + posts + + + plural.count.media + + NSStringLocalizedFormatKey + %#@media_count@ + media_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + zero + 0 media + one + 1 media + few + %ld media + many + %ld media + other + %ld media + + + plural.count.post + + NSStringLocalizedFormatKey + %#@post_count@ + post_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + zero + 0 posts + one + 1 post + few + %ld posts + many + %ld posts + other + %ld posts + + + plural.count.favorite + + NSStringLocalizedFormatKey + %#@favorite_count@ + favorite_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + zero + 0 favorites + one + 1 favorite + few + %ld favorites + many + %ld favorites + other + %ld favorites + + + plural.count.reblog + + NSStringLocalizedFormatKey + %#@reblog_count@ + reblog_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + zero + 0 reblogs + one + 1 reblog + few + %ld reblogs + many + %ld reblogs + other + %ld reblogs + + + plural.count.reply + + NSStringLocalizedFormatKey + %#@reply_count@ + reply_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + zero + 0 replies + one + 1 reply + few + %ld replies + many + %ld replies + other + %ld replies + + + plural.count.vote + + NSStringLocalizedFormatKey + %#@vote_count@ + vote_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + zero + 0 votes + one + 1 vote + few + %ld votes + many + %ld votes + other + %ld votes + + + plural.count.voter + + NSStringLocalizedFormatKey + %#@voter_count@ + voter_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + zero + 0 voters + one + 1 voter + few + %ld voters + many + %ld voters + other + %ld voters + + + plural.people_talking + + NSStringLocalizedFormatKey + %#@count_people_talking@ + count_people_talking + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + zero + 0 people talking + one + 1 people talking + few + %ld people talking + many + %ld people talking + other + %ld people talking + + + plural.count.following + + NSStringLocalizedFormatKey + %#@count_following@ + count_following + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + zero + 0 following + one + 1 following + few + %ld following + many + %ld following + other + %ld following + + + plural.count.follower + + NSStringLocalizedFormatKey + %#@count_follower@ + count_follower + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + zero + 0 followers + one + 1 follower + few + %ld followers + many + %ld followers + other + %ld followers + + + date.year.left + + NSStringLocalizedFormatKey + %#@count_year_left@ + count_year_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + zero + 0 years left + one + 1 year left + few + %ld years left + many + %ld years left + other + %ld years left + + + date.month.left + + NSStringLocalizedFormatKey + %#@count_month_left@ + count_month_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + zero + 0 months left + one + 1 months left + few + %ld months left + many + %ld months left + other + %ld months left + + + date.day.left + + NSStringLocalizedFormatKey + %#@count_day_left@ + count_day_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + zero + 0 days left + one + 1 day left + few + %ld days left + many + %ld days left + other + %ld days left + + + date.hour.left + + NSStringLocalizedFormatKey + %#@count_hour_left@ + count_hour_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + zero + 0 hours left + one + 1 hour left + few + %ld hours left + many + %ld hours left + other + %ld hours left + + + date.minute.left + + NSStringLocalizedFormatKey + %#@count_minute_left@ + count_minute_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + zero + 0 minutes left + one + 1 minute left + few + %ld minutes left + many + %ld minutes left + other + %ld minutes left + + + date.second.left + + NSStringLocalizedFormatKey + %#@count_second_left@ + count_second_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + zero + 0 seconds left + one + 1 second left + few + %ld seconds left + many + %ld seconds left + other + %ld seconds left + + + date.year.ago.abbr + + NSStringLocalizedFormatKey + %#@count_year_ago_abbr@ + count_year_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + zero + 0y ago + one + 1y ago + few + %ldy ago + many + %ldy ago + other + %ldy ago + + + date.month.ago.abbr + + NSStringLocalizedFormatKey + %#@count_month_ago_abbr@ + count_month_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + zero + 0M ago + one + 1M ago + few + %ldM ago + many + %ldM ago + other + %ldM ago + + + date.day.ago.abbr + + NSStringLocalizedFormatKey + %#@count_day_ago_abbr@ + count_day_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + zero + 0d ago + one + 1d ago + few + %ldd ago + many + %ldd ago + other + %ldd ago + + + date.hour.ago.abbr + + NSStringLocalizedFormatKey + %#@count_hour_ago_abbr@ + count_hour_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + zero + 0h ago + one + 1h ago + few + %ldh ago + many + %ldh ago + other + %ldh ago + + + date.minute.ago.abbr + + NSStringLocalizedFormatKey + %#@count_minute_ago_abbr@ + count_minute_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + zero + 0m ago + one + 1m ago + few + %ldm ago + many + %ldm ago + other + %ldm ago + + + date.second.ago.abbr + + NSStringLocalizedFormatKey + %#@count_second_ago_abbr@ + count_second_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + zero + 0s ago + one + 1s ago + few + %lds ago + many + %lds ago + other + %lds ago + + + + diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentView.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentView.swift index d2baeed71..9346c3bee 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentView.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentView.swift @@ -123,7 +123,7 @@ public struct AttachmentView: View { case .remove: switch viewModel.uploadState { case .compressing: - return "Compressing..." // TODO: i18n + return L10n.Scene.Compose.Attachment.compressingState default: if viewModel.fractionCompleted < 0.9 { let totalSizeInByte = viewModel.outputSizeInByte @@ -132,7 +132,7 @@ public struct AttachmentView: View { let upload = viewModel.byteCountFormatter.string(fromByteCount: Int64(uploadSizeInByte)) return "\(upload) / \(total)" } else { - return "Server Processing..." // TODO: i18n + return L10n.Scene.Compose.Attachment.serverProcessingState } } case .retry: diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel.swift index e840b53fd..06d84566b 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel.swift @@ -479,14 +479,14 @@ extension ComposeContentViewModel { public var errorDescription: String? { switch self { case .pollHasEmptyOption: - return "The poll is invalid" // TODO: i18n + return L10n.Scene.Compose.Poll.thePollIsInvalid } } public var failureReason: String? { switch self { case .pollHasEmptyOption: - return "The poll has empty option" // TODO: i18n + return L10n.Scene.Compose.Poll.thePollHasEmptyOption } } } diff --git a/swiftgen.yml b/swiftgen.yml index e9c21260a..967abe370 100644 --- a/swiftgen.yml +++ b/swiftgen.yml @@ -1,7 +1,7 @@ strings: inputs: - - MastodonSDK/Sources/MastodonLocalization/Resources/en.lproj/Localizable.strings - - MastodonSDK/Sources/MastodonLocalization/Resources/en.lproj/Localizable.stringsdict + - MastodonSDK/Sources/MastodonLocalization/Resources/Base.lproj/Localizable.strings + - MastodonSDK/Sources/MastodonLocalization/Resources/Base.lproj/Localizable.stringsdict outputs: - templateName: structured-swift5 output: MastodonSDK/Sources/MastodonLocalization/Generated/Strings.swift diff --git a/update_localization.sh b/update_localization.sh index 09cfc21d6..87477bdaa 100755 --- a/update_localization.sh +++ b/update_localization.sh @@ -7,15 +7,28 @@ PODS_ROOT='Pods' echo ${SRCROOT} -# task 1 generate strings file +# Task 1 +# here we use the template source as input to +# generate strings so we could use new strings +# before sync to Crowdin + +# clean Base.lproj +rm -rf ${SRCROOT}/Localization/StringsConvertor/input/Base.lproj +# copy tempate sources +mkdir ${SRCROOT}/Localization/StringsConvertor/input/Base.lproj +cp ${SRCROOT}/Localization/app.json ${SRCROOT}/Localization/StringsConvertor/input/Base.lproj/app.json +cp ${SRCROOT}/Localization/ios-infoPlist.json ${SRCROOT}/Localization/StringsConvertor/input/Base.lproj/ios-infoPlist.json +cp ${SRCROOT}/Localization/Localizable.stringsdict ${SRCROOT}/Localization/StringsConvertor/input/Base.lproj/Localizable.stringsdict + +# Task 2 generate strings file cd ${SRCROOT}/Localization/StringsConvertor sh ./scripts/build.sh -# task 2 copy strings file +# Task 3 copy strings file cp -R ${SRCROOT}/Localization/StringsConvertor/output/module/ ${SRCROOT}/MastodonSDK/Sources/MastodonLocalization/Resources cp -R ${SRCROOT}/Localization/StringsConvertor/Intents/output/ ${SRCROOT}/MastodonIntent -# task 3 swiftgen +# Task 4 swiftgen cd ${SRCROOT} echo "${PODS_ROOT}/SwiftGen/bin/swiftgen" if [[ -f "${PODS_ROOT}/SwiftGen/bin/swiftgen" ]] then @@ -24,6 +37,6 @@ else echo "Run 'bundle exec pod install' or update your CocoaPods installation." fi -#task 4 clean temp file +# Task 5 clean temp file rm -rf ${SRCROOT}/Localization/StringsConvertor/output rm -rf ${SRCROOT}/Localization/StringsConvertor/intents/output From f8a15ce5cfd1523e821259ba9069d7c6bf2f3c8d Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 19:01:32 +0100 Subject: [PATCH 339/598] New translations app.json (Chinese Traditional) --- Localization/StringsConvertor/input/zh-Hant.lproj/app.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Localization/StringsConvertor/input/zh-Hant.lproj/app.json b/Localization/StringsConvertor/input/zh-Hant.lproj/app.json index 1c2e9b9ff..131bd3f37 100644 --- a/Localization/StringsConvertor/input/zh-Hant.lproj/app.json +++ b/Localization/StringsConvertor/input/zh-Hant.lproj/app.json @@ -418,8 +418,8 @@ "enable_content_warning": "啟用內容警告", "disable_content_warning": "停用內容警告", "post_visibility_menu": "嘟文可見性選單", - "post_options": "Post Options", - "posting_as": "Posting as %s" + "post_options": "嘟文選項", + "posting_as": "以 %s 發嘟" }, "keyboard": { "discard_post": "捨棄嘟文", From 610e0675fd3a13dffdb68949e592330421f2589d Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 19:01:33 +0100 Subject: [PATCH 340/598] New translations app.json (Portuguese, Brazilian) --- .../input/pt-BR.lproj/app.json | 108 +++++++++--------- 1 file changed, 54 insertions(+), 54 deletions(-) diff --git a/Localization/StringsConvertor/input/pt-BR.lproj/app.json b/Localization/StringsConvertor/input/pt-BR.lproj/app.json index c7abb1da1..352025595 100644 --- a/Localization/StringsConvertor/input/pt-BR.lproj/app.json +++ b/Localization/StringsConvertor/input/pt-BR.lproj/app.json @@ -164,7 +164,7 @@ "emoji": "Emoji" }, "visibility": { - "unlisted": "Everyone can see this post but not display in the public timeline.", + "unlisted": "Todos podem ver esta postagem, mas não são exibidos na linha do tempo pública.", "private": "Somente seus seguidores podem ver essa postagem.", "private_from_me": "Somente meus seguidores podem ver essa postagem.", "direct": "Somente o usuário mencionado pode ver essa postagem." @@ -202,8 +202,8 @@ }, "header": { "no_status_found": "Nenhuma postagem encontrada", - "blocking_warning": "You can’t view this user's profile\nuntil you unblock them.\nYour profile looks like this to them.", - "user_blocking_warning": "You can’t view %s’s profile\nuntil you unblock them.\nYour profile looks like this to them.", + "blocking_warning": "Você não pode ver o perfil deste usuário até desbloqueá-lo.\nSeu perfil aparece assim para esse usuário.", + "user_blocking_warning": "Você não pode ver o perfil de %s até desbloqueá-lo.\nSeu perfil aparece assim para esse usuário.", "blocked_warning": "Você não pode ver o perfil desse usuário até que ele o desbloqueie.", "user_blocked_warning": "Você não pode ver o perfil de %s até que ele o desbloqueie.", "suspended_warning": "Esse usuário foi suspenso.", @@ -259,7 +259,7 @@ }, "register": { "title": "Vamos configurar você em %s", - "lets_get_you_set_up_on_domain": "Let’s get you set up on %s", + "lets_get_you_set_up_on_domain": "Vamos configurar você em %s", "input": { "avatar": { "delete": "Excluir" @@ -279,13 +279,13 @@ "require": "Sua senha deve ter pelo menos:", "character_limit": "8 carácteres", "accessibility": { - "checked": "checked", - "unchecked": "unchecked" + "checked": "marcado", + "unchecked": "desmarcado" }, "hint": "Sua senha precisa ter pelo menos oito carácteres" }, "invite": { - "registration_user_invite_request": "Why do you want to join?" + "registration_user_invite_request": "Por que você deseja se inscrever?" } }, "error": { @@ -298,51 +298,51 @@ "reason": "Motivo" }, "reason": { - "blocked": "%s contains a disallowed email provider", + "blocked": "%s contém um provedor de e-mail não permitido", "unreachable": "%s parece não existir", "taken": "%s já está em uso", - "reserved": "%s is a reserved keyword", - "accepted": "%s must be accepted", - "blank": "%s is required", - "invalid": "%s is invalid", - "too_long": "%s is too long", - "too_short": "%s is too short", - "inclusion": "%s is not a supported value" + "reserved": "%s é uma palavra-chave reservada", + "accepted": "%s deve ser aceite", + "blank": "%s é obrigatório", + "invalid": "%s é inválido", + "too_long": "%s é muito longo", + "too_short": "%s é muito curto", + "inclusion": "%s não é um valor suportado" }, "special": { - "username_invalid": "Username must only contain alphanumeric characters and underscores", - "username_too_long": "Username is too long (can’t be longer than 30 characters)", - "email_invalid": "This is not a valid email address", - "password_too_short": "Password is too short (must be at least 8 characters)" + "username_invalid": "O nome de usuário só pode conter caracteres alfanuméricos e underlines (_)", + "username_too_long": "Nome de usuário é muito longo (não pode ter mais de 30 caracteres)", + "email_invalid": "Este não é um endereço de e-mail válido", + "password_too_short": "A senha é muito curta (deve ter pelo menos 8 caracteres)" } } }, "server_rules": { - "title": "Some ground rules.", - "subtitle": "These are set and enforced by the %s moderators.", - "prompt": "By continuing, you’re subject to the terms of service and privacy policy for %s.", - "terms_of_service": "terms of service", - "privacy_policy": "privacy policy", + "title": "Algumas regras básicas.", + "subtitle": "Estes são definidos e aplicados pelos moderadores da %s.", + "prompt": "Ao continuar, você estará sujeito aos termos de serviço e política de privacidade para %s.", + "terms_of_service": "termos de serviço", + "privacy_policy": "política de privacidade", "button": { - "confirm": "I Agree" + "confirm": "Eu concordo" } }, "confirm_email": { - "title": "One last thing.", - "subtitle": "Tap the link we emailed to you to verify your account.", - "tap_the_link_we_emailed_to_you_to_verify_your_account": "Tap the link we emailed to you to verify your account", + "title": "Uma última coisa.", + "subtitle": "Clique no link que te enviamos por e-mail para verificar a sua conta.", + "tap_the_link_we_emailed_to_you_to_verify_your_account": "Clique no link que te enviamos por e-mail para verificar a sua conta", "button": { - "open_email_app": "Open Email App", - "resend": "Resend" + "open_email_app": "Abrir aplicativo de e-mail", + "resend": "Reenviar" }, "dont_receive_email": { - "title": "Check your email", - "description": "Check if your email address is correct as well as your junk folder if you haven’t.", - "resend_email": "Resend Email" + "title": "Verifique o seu e-mail", + "description": "Verifique se o seu endereço de e-mail está correto, e também a sua pasta de spam caso não tenha verificado.", + "resend_email": "Reenviar e-mail" }, "open_email_app": { - "title": "Check your inbox.", - "description": "We just sent you an email. Check your junk folder if you haven’t.", + "title": "Verifique sua caixa de entrada.", + "description": "Enviamos um e-mail para você. Verifique sua pasta de spam caso ainda tenha verificado.", "mail": "Mail", "open_email_client": "Open Email Client" } @@ -350,12 +350,12 @@ "home_timeline": { "title": "Home", "navigation_bar_state": { - "offline": "Offline", - "new_posts": "See new posts", - "published": "Published!", - "Publishing": "Publishing post...", + "offline": "Desconectado", + "new_posts": "Ver novas postagens", + "published": "Publicado!", + "Publishing": "Publicando toot...", "accessibility": { - "logo_label": "Logo Button", + "logo_label": "Botão do logotipo", "logo_hint": "Tap to scroll to top and tap again to previous location" } } @@ -366,12 +366,12 @@ }, "compose": { "title": { - "new_post": "New Post", - "new_reply": "New Reply" + "new_post": "Novo toot", + "new_reply": "Nova resposta" }, "media_selection": { - "camera": "Take Photo", - "photo_library": "Photo Library", + "camera": "Tirar foto", + "photo_library": "Galeria", "browse": "Navegar" }, "content_input_placeholder": "Digite ou cole o que está na sua mente", @@ -418,8 +418,8 @@ "enable_content_warning": "Enable Content Warning", "disable_content_warning": "Disable Content Warning", "post_visibility_menu": "Post Visibility Menu", - "post_options": "Post Options", - "posting_as": "Posting as %s" + "post_options": "Opções de postagem", + "posting_as": "Publicando como %s" }, "keyboard": { "discard_post": "Discard Post", @@ -443,20 +443,20 @@ "add_row": "Add Row", "placeholder": { "label": "Label", - "content": "Content" + "content": "Conteúdo" } }, "segmented_control": { - "posts": "Posts", - "replies": "Replies", - "posts_and_replies": "Posts and Replies", - "media": "Media", - "about": "About" + "posts": "Toots", + "replies": "Respostas", + "posts_and_replies": "Toots e respostas", + "media": "Mídia", + "about": "Sobre" }, "relationship_action_alert": { "confirm_mute_user": { - "title": "Mute Account", - "message": "Confirm to mute %s" + "title": "Silenciar conta", + "message": "Confirme para silenciar %s" }, "confirm_unmute_user": { "title": "Unmute Account", From 520028ec4cd786b65c7f2e88de4f9e8115a67173 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 19:01:34 +0100 Subject: [PATCH 341/598] New translations app.json (Thai) --- Localization/StringsConvertor/input/th.lproj/app.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Localization/StringsConvertor/input/th.lproj/app.json b/Localization/StringsConvertor/input/th.lproj/app.json index d90786149..55c808efa 100644 --- a/Localization/StringsConvertor/input/th.lproj/app.json +++ b/Localization/StringsConvertor/input/th.lproj/app.json @@ -385,7 +385,7 @@ "description_video": "อธิบายวิดีโอสำหรับผู้บกพร่องทางการมองเห็น...", "load_failed": "การโหลดล้มเหลว", "upload_failed": "การอัปโหลดล้มเหลว", - "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", + "can_not_recognize_this_media_attachment": "ไม่สามารถระบุไฟล์แนบสื่อนี้", "attachment_too_large": "ไฟล์แนบใหญ่เกินไป" }, "poll": { @@ -419,7 +419,7 @@ "disable_content_warning": "ปิดใช้งานคำเตือนเนื้อหา", "post_visibility_menu": "เมนูการมองเห็นโพสต์", "post_options": "ตัวเลือกโพสต์", - "posting_as": "Posting as %s" + "posting_as": "กำลังโพสต์เป็น %s" }, "keyboard": { "discard_post": "ละทิ้งโพสต์", From 2428c828de049d4de72973319888140773ac59d2 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 19:01:35 +0100 Subject: [PATCH 342/598] New translations Localizable.stringsdict (Chinese Traditional) --- .../input/zh-Hant.lproj/Localizable.stringsdict | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Localization/StringsConvertor/input/zh-Hant.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/zh-Hant.lproj/Localizable.stringsdict index 936c2d48c..d545fd6a4 100644 --- a/Localization/StringsConvertor/input/zh-Hant.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/zh-Hant.lproj/Localizable.stringsdict @@ -47,7 +47,7 @@ a11y.plural.count.characters_left NSStringLocalizedFormatKey - %#@character_count@ left + 剩餘 %#@character_count@ 字 character_count NSStringFormatSpecTypeKey @@ -55,7 +55,7 @@ NSStringFormatValueTypeKey ld other - %ld characters + %ld 個字 plural.count.followed_by_and_mutual From 52e7442d994ee597c6a717123b0f9fecf70ebab4 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 19:01:36 +0100 Subject: [PATCH 343/598] New translations Localizable.stringsdict (Portuguese, Brazilian) --- .../input/pt-BR.lproj/Localizable.stringsdict | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Localization/StringsConvertor/input/pt-BR.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/pt-BR.lproj/Localizable.stringsdict index 982e25c0b..9a72fe3bb 100644 --- a/Localization/StringsConvertor/input/pt-BR.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/pt-BR.lproj/Localizable.stringsdict @@ -53,7 +53,7 @@ a11y.plural.count.characters_left NSStringLocalizedFormatKey - %#@character_count@ left + %#@character_count@ restantes character_count NSStringFormatSpecTypeKey @@ -61,9 +61,9 @@ NSStringFormatValueTypeKey ld one - 1 character + 1 carácter other - %ld characters + %ld carácteres plural.count.followed_by_and_mutual From 646d099abab7418725c6ee2fbfe09bf8a4b41d0e Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 20:02:08 +0100 Subject: [PATCH 344/598] New translations app.json (Slovenian) --- .../StringsConvertor/input/sl.lproj/app.json | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/Localization/StringsConvertor/input/sl.lproj/app.json b/Localization/StringsConvertor/input/sl.lproj/app.json index 1d63d2832..7cb750c38 100644 --- a/Localization/StringsConvertor/input/sl.lproj/app.json +++ b/Localization/StringsConvertor/input/sl.lproj/app.json @@ -385,8 +385,10 @@ "description_video": "Opiši video za slabovidne in osebe z okvaro vida ...", "load_failed": "Nalaganje ni uspelo", "upload_failed": "Nalaganje na strežnik ni uspelo", - "can_not_recognize_this_media_attachment": "Te medijske priponke ni mogoče prepoznati", - "attachment_too_large": "Priponka je prevelika" + "can_not_recognize_this_media_attachment": "Can not recognize this media attachment", + "attachment_too_large": "Priponka je prevelika", + "compressing_state": "Compressing...", + "server_processing_state": "Server Processing..." }, "poll": { "duration_time": "Trajanje: %s", @@ -396,7 +398,9 @@ "one_day": "1 dan", "three_days": "3 dni", "seven_days": "7 dni", - "option_number": "Možnost %ld" + "option_number": "Možnost %ld", + "the_poll_is_invalid": "The poll is invalid", + "the_poll_has_empty_option": "The poll has empty option" }, "content_warning": { "placeholder": "Tukaj zapišite opozorilo ..." @@ -444,6 +448,10 @@ "placeholder": { "label": "Oznaka", "content": "Vsebina" + }, + "verified": { + "short": "Verified on %s", + "long": "Ownership of this link was checked on %s" } }, "segmented_control": { @@ -711,4 +719,4 @@ "title": "Zaznamki" } } -} +} \ No newline at end of file From cd223766f746179c7930dd01ecf25dc6fc1fef7b Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 20:02:09 +0100 Subject: [PATCH 345/598] New translations app.json (Thai) --- .../StringsConvertor/input/th.lproj/app.json | 20 +++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/Localization/StringsConvertor/input/th.lproj/app.json b/Localization/StringsConvertor/input/th.lproj/app.json index 55c808efa..dd5ee212c 100644 --- a/Localization/StringsConvertor/input/th.lproj/app.json +++ b/Localization/StringsConvertor/input/th.lproj/app.json @@ -299,7 +299,7 @@ }, "reason": { "blocked": "%s มีผู้ให้บริการอีเมลที่ไม่ได้รับอนุญาต", - "unreachable": "ดูเหมือนว่า %s จะไม่มีอยู่", + "unreachable": "ดูเหมือนว่าจะไม่มี %s อยู่", "taken": "%s ถูกใช้งานแล้ว", "reserved": "%s เป็นคำสงวน", "accepted": "ต้องยอมรับ %s", @@ -337,12 +337,12 @@ }, "dont_receive_email": { "title": "ตรวจสอบอีเมลของคุณ", - "description": "หากคุณยังไม่ได้รับอีเมล ตรวจสอบว่าที่อยู่อีเมลของคุณถูกต้อง รวมถึงโฟลเดอร์อีเมลขยะของคุณ", + "description": "ตรวจสอบว่าที่อยู่อีเมลของคุณถูกต้องเช่นเดียวกับโฟลเดอร์อีเมลขยะหากคุณยังไม่ได้ทำ", "resend_email": "ส่งอีเมลใหม่" }, "open_email_app": { "title": "ตรวจสอบกล่องขาเข้าของคุณ", - "description": "เราเพิ่งส่งอีเมลหาคุณ หากคุณยังไม่ได้รับอีเมล โปรดตรวจสอบโฟลเดอร์อีเมลขยะ", + "description": "เราเพิ่งส่งอีเมลถึงคุณ ตรวจสอบโฟลเดอร์อีเมลขยะของคุณหากคุณยังไม่ได้ทำ", "mail": "จดหมาย", "open_email_client": "เปิดไคลเอ็นต์อีเมล" } @@ -386,7 +386,9 @@ "load_failed": "การโหลดล้มเหลว", "upload_failed": "การอัปโหลดล้มเหลว", "can_not_recognize_this_media_attachment": "ไม่สามารถระบุไฟล์แนบสื่อนี้", - "attachment_too_large": "ไฟล์แนบใหญ่เกินไป" + "attachment_too_large": "ไฟล์แนบใหญ่เกินไป", + "compressing_state": "กำลังบีบอัด...", + "server_processing_state": "เซิร์ฟเวอร์กำลังประมวลผล..." }, "poll": { "duration_time": "ระยะเวลา: %s", @@ -396,7 +398,9 @@ "one_day": "1 วัน", "three_days": "3 วัน", "seven_days": "7 วัน", - "option_number": "ตัวเลือก %ld" + "option_number": "ตัวเลือก %ld", + "the_poll_is_invalid": "การสำรวจความคิดเห็นไม่ถูกต้อง", + "the_poll_has_empty_option": "การสำรวจความคิดเห็นมีตัวเลือกที่ว่างเปล่า" }, "content_warning": { "placeholder": "เขียนคำเตือนที่ถูกต้องที่นี่..." @@ -444,6 +448,10 @@ "placeholder": { "label": "ป้ายชื่อ", "content": "เนื้อหา" + }, + "verified": { + "short": "ตรวจสอบเมื่อ %s", + "long": "ตรวจสอบความเป็นเจ้าของของลิงก์นี้เมื่อ %s" } }, "segmented_control": { @@ -711,4 +719,4 @@ "title": "ที่คั่นหน้า" } } -} +} \ No newline at end of file From 2471dfa7ece2b77b20b229a9daf012c632e170fb Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 20:02:10 +0100 Subject: [PATCH 346/598] New translations app.json (Russian) --- .../StringsConvertor/input/ru.lproj/app.json | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/Localization/StringsConvertor/input/ru.lproj/app.json b/Localization/StringsConvertor/input/ru.lproj/app.json index 1f82a35db..8505e7f42 100644 --- a/Localization/StringsConvertor/input/ru.lproj/app.json +++ b/Localization/StringsConvertor/input/ru.lproj/app.json @@ -385,8 +385,10 @@ "description_video": "Опишите видео для людей с нарушениями зрения...", "load_failed": "Load Failed", "upload_failed": "Upload Failed", - "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", - "attachment_too_large": "Attachment too large" + "can_not_recognize_this_media_attachment": "Can not recognize this media attachment", + "attachment_too_large": "Attachment too large", + "compressing_state": "Compressing...", + "server_processing_state": "Server Processing..." }, "poll": { "duration_time": "Продолжительность: %s", @@ -396,7 +398,9 @@ "one_day": "1 день", "three_days": "3 дня", "seven_days": "7 дней", - "option_number": "Вариант %ld" + "option_number": "Вариант %ld", + "the_poll_is_invalid": "The poll is invalid", + "the_poll_has_empty_option": "The poll has empty option" }, "content_warning": { "placeholder": "Напишите предупреждение здесь..." @@ -444,6 +448,10 @@ "placeholder": { "label": "Ярлык", "content": "Содержимое" + }, + "verified": { + "short": "Verified on %s", + "long": "Ownership of this link was checked on %s" } }, "segmented_control": { @@ -711,4 +719,4 @@ "title": "Bookmarks" } } -} +} \ No newline at end of file From c61c529ee757447e046d623639417818086c6b98 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 20:02:11 +0100 Subject: [PATCH 347/598] New translations app.json (Chinese Simplified) --- .../input/zh-Hans.lproj/app.json | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/Localization/StringsConvertor/input/zh-Hans.lproj/app.json b/Localization/StringsConvertor/input/zh-Hans.lproj/app.json index 2bfd04c8d..c4b127914 100644 --- a/Localization/StringsConvertor/input/zh-Hans.lproj/app.json +++ b/Localization/StringsConvertor/input/zh-Hans.lproj/app.json @@ -385,8 +385,10 @@ "description_video": "为视觉障碍人士添加视频的文字说明...", "load_failed": "Load Failed", "upload_failed": "Upload Failed", - "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", - "attachment_too_large": "Attachment too large" + "can_not_recognize_this_media_attachment": "Can not recognize this media attachment", + "attachment_too_large": "Attachment too large", + "compressing_state": "Compressing...", + "server_processing_state": "Server Processing..." }, "poll": { "duration_time": "时长:%s", @@ -396,7 +398,9 @@ "one_day": "1 天", "three_days": "3 天", "seven_days": "7 天", - "option_number": "选项 %ld" + "option_number": "选项 %ld", + "the_poll_is_invalid": "The poll is invalid", + "the_poll_has_empty_option": "The poll has empty option" }, "content_warning": { "placeholder": "在这里写下内容的警告消息..." @@ -444,6 +448,10 @@ "placeholder": { "label": "标签", "content": "内容" + }, + "verified": { + "short": "Verified on %s", + "long": "Ownership of this link was checked on %s" } }, "segmented_control": { @@ -711,4 +719,4 @@ "title": "Bookmarks" } } -} +} \ No newline at end of file From cd68fd5e284aeee313dd8d545f8e9673581f6060 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 20:02:12 +0100 Subject: [PATCH 348/598] New translations app.json (English) --- .../StringsConvertor/input/en.lproj/app.json | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/Localization/StringsConvertor/input/en.lproj/app.json b/Localization/StringsConvertor/input/en.lproj/app.json index 25f06ad83..30566d8d6 100644 --- a/Localization/StringsConvertor/input/en.lproj/app.json +++ b/Localization/StringsConvertor/input/en.lproj/app.json @@ -385,8 +385,10 @@ "description_video": "Describe the video for the visually-impaired...", "load_failed": "Load Failed", "upload_failed": "Upload Failed", - "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", - "attachment_too_large": "Attachment too large" + "can_not_recognize_this_media_attachment": "Can not recognize this media attachment", + "attachment_too_large": "Attachment too large", + "compressing_state": "Compressing...", + "server_processing_state": "Server Processing..." }, "poll": { "duration_time": "Duration: %s", @@ -396,7 +398,9 @@ "one_day": "1 Day", "three_days": "3 Days", "seven_days": "7 Days", - "option_number": "Option %ld" + "option_number": "Option %ld", + "the_poll_is_invalid": "The poll is invalid", + "the_poll_has_empty_option": "The poll has empty option" }, "content_warning": { "placeholder": "Write an accurate warning here..." @@ -444,6 +448,10 @@ "placeholder": { "label": "Label", "content": "Content" + }, + "verified": { + "short": "Verified on %s", + "long": "Ownership of this link was checked on %s" } }, "segmented_control": { @@ -711,4 +719,4 @@ "title": "Bookmarks" } } -} +} \ No newline at end of file From 1edde4311767a49dc97f39595c777b82edae26d5 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 20:02:14 +0100 Subject: [PATCH 349/598] New translations app.json (Galician) --- .../StringsConvertor/input/gl.lproj/app.json | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/Localization/StringsConvertor/input/gl.lproj/app.json b/Localization/StringsConvertor/input/gl.lproj/app.json index 2c518c867..ee2a7cef7 100644 --- a/Localization/StringsConvertor/input/gl.lproj/app.json +++ b/Localization/StringsConvertor/input/gl.lproj/app.json @@ -385,8 +385,10 @@ "description_video": "Describe o vídeo para persoas con problemas visuais...", "load_failed": "Fallou a carga", "upload_failed": "Erro na subida", - "can_not_recognize_this_media_attachment": "Non se recoñece o tipo de multimedia", - "attachment_too_large": "Adxunto demasiado grande" + "can_not_recognize_this_media_attachment": "Can not recognize this media attachment", + "attachment_too_large": "Adxunto demasiado grande", + "compressing_state": "Compressing...", + "server_processing_state": "Server Processing..." }, "poll": { "duration_time": "Duración: %s", @@ -396,7 +398,9 @@ "one_day": "1 Día", "three_days": "3 Días", "seven_days": "7 Días", - "option_number": "Opción %ld" + "option_number": "Opción %ld", + "the_poll_is_invalid": "The poll is invalid", + "the_poll_has_empty_option": "The poll has empty option" }, "content_warning": { "placeholder": "Escribe o teu aviso aquí..." @@ -444,6 +448,10 @@ "placeholder": { "label": "Etiqueta", "content": "Contido" + }, + "verified": { + "short": "Verified on %s", + "long": "Ownership of this link was checked on %s" } }, "segmented_control": { @@ -711,4 +719,4 @@ "title": "Marcadores" } } -} +} \ No newline at end of file From 348577cbd6b3e541eed83eb347304805a81556a7 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 20:02:15 +0100 Subject: [PATCH 350/598] New translations app.json (Portuguese, Brazilian) --- .../StringsConvertor/input/pt-BR.lproj/app.json | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/Localization/StringsConvertor/input/pt-BR.lproj/app.json b/Localization/StringsConvertor/input/pt-BR.lproj/app.json index 352025595..9d20f1151 100644 --- a/Localization/StringsConvertor/input/pt-BR.lproj/app.json +++ b/Localization/StringsConvertor/input/pt-BR.lproj/app.json @@ -385,8 +385,10 @@ "description_video": "Describe the video for the visually-impaired...", "load_failed": "Load Failed", "upload_failed": "Upload Failed", - "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", - "attachment_too_large": "Attachment too large" + "can_not_recognize_this_media_attachment": "Can not recognize this media attachment", + "attachment_too_large": "Attachment too large", + "compressing_state": "Compressing...", + "server_processing_state": "Server Processing..." }, "poll": { "duration_time": "Duração: %s", @@ -396,7 +398,9 @@ "one_day": "1 dia", "three_days": "3 dias", "seven_days": "7 dias", - "option_number": "Opção %ld" + "option_number": "Opção %ld", + "the_poll_is_invalid": "The poll is invalid", + "the_poll_has_empty_option": "The poll has empty option" }, "content_warning": { "placeholder": "Write an accurate warning here..." @@ -444,6 +448,10 @@ "placeholder": { "label": "Label", "content": "Conteúdo" + }, + "verified": { + "short": "Verified on %s", + "long": "Ownership of this link was checked on %s" } }, "segmented_control": { @@ -711,4 +719,4 @@ "title": "Bookmarks" } } -} +} \ No newline at end of file From ced67536667aba4bf04586430968509f219f7423 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 20:02:16 +0100 Subject: [PATCH 351/598] New translations app.json (Indonesian) --- .../StringsConvertor/input/id.lproj/app.json | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/Localization/StringsConvertor/input/id.lproj/app.json b/Localization/StringsConvertor/input/id.lproj/app.json index 91d31071b..45e072a30 100644 --- a/Localization/StringsConvertor/input/id.lproj/app.json +++ b/Localization/StringsConvertor/input/id.lproj/app.json @@ -385,8 +385,10 @@ "description_video": "Jelaskan videonya untuk mereka yang tidak dapat melihat dengan jelas...", "load_failed": "Load Failed", "upload_failed": "Upload Failed", - "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", - "attachment_too_large": "Attachment too large" + "can_not_recognize_this_media_attachment": "Can not recognize this media attachment", + "attachment_too_large": "Attachment too large", + "compressing_state": "Compressing...", + "server_processing_state": "Server Processing..." }, "poll": { "duration_time": "Durasi: %s", @@ -396,7 +398,9 @@ "one_day": "1 Hari", "three_days": "3 Hari", "seven_days": "7 Hari", - "option_number": "Option %ld" + "option_number": "Option %ld", + "the_poll_is_invalid": "The poll is invalid", + "the_poll_has_empty_option": "The poll has empty option" }, "content_warning": { "placeholder": "Tulis peringatan yang akurat di sini..." @@ -444,6 +448,10 @@ "placeholder": { "label": "Label", "content": "Isi" + }, + "verified": { + "short": "Verified on %s", + "long": "Ownership of this link was checked on %s" } }, "segmented_control": { @@ -711,4 +719,4 @@ "title": "Bookmarks" } } -} +} \ No newline at end of file From 5e2e1e06346159b14210bd5754c40a272ae676c3 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 20:02:17 +0100 Subject: [PATCH 352/598] New translations app.json (Spanish, Argentina) --- .../StringsConvertor/input/es-AR.lproj/app.json | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/Localization/StringsConvertor/input/es-AR.lproj/app.json b/Localization/StringsConvertor/input/es-AR.lproj/app.json index e54100c41..21934a104 100644 --- a/Localization/StringsConvertor/input/es-AR.lproj/app.json +++ b/Localization/StringsConvertor/input/es-AR.lproj/app.json @@ -386,7 +386,9 @@ "load_failed": "Falló la descarga", "upload_failed": "Falló la subida", "can_not_recognize_this_media_attachment": "No se pudo reconocer este archivo adjunto", - "attachment_too_large": "Adjunto demasiado grande" + "attachment_too_large": "Adjunto demasiado grande", + "compressing_state": "Comprimiendo…", + "server_processing_state": "Servidor procesando…" }, "poll": { "duration_time": "Duración: %s", @@ -396,7 +398,9 @@ "one_day": "1 día", "three_days": "3 días", "seven_days": "7 días", - "option_number": "Opción %ld" + "option_number": "Opción %ld", + "the_poll_is_invalid": "La encuesta no es válida", + "the_poll_has_empty_option": "La encuesta tiene opción vacía" }, "content_warning": { "placeholder": "Escribí una advertencia precisa acá…" @@ -444,6 +448,10 @@ "placeholder": { "label": "Nombre de campo", "content": "Valor de campo" + }, + "verified": { + "short": "Verificado en %s", + "long": "La propiedad de este enlace fue verificada el %s" } }, "segmented_control": { @@ -711,4 +719,4 @@ "title": "Marcadores" } } -} +} \ No newline at end of file From a2d0e1521804317e808748ea785d739872238755 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 20:02:18 +0100 Subject: [PATCH 353/598] New translations app.json (Latvian) --- .../StringsConvertor/input/lv.lproj/app.json | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/Localization/StringsConvertor/input/lv.lproj/app.json b/Localization/StringsConvertor/input/lv.lproj/app.json index 8a4b3e921..f21cde453 100644 --- a/Localization/StringsConvertor/input/lv.lproj/app.json +++ b/Localization/StringsConvertor/input/lv.lproj/app.json @@ -385,8 +385,10 @@ "description_video": "Describe the video for the visually-impaired...", "load_failed": "Load Failed", "upload_failed": "Upload Failed", - "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", - "attachment_too_large": "Attachment too large" + "can_not_recognize_this_media_attachment": "Can not recognize this media attachment", + "attachment_too_large": "Attachment too large", + "compressing_state": "Compressing...", + "server_processing_state": "Server Processing..." }, "poll": { "duration_time": "Duration: %s", @@ -396,7 +398,9 @@ "one_day": "1 Diena", "three_days": "3 Dienas", "seven_days": "7 Dienas", - "option_number": "Option %ld" + "option_number": "Option %ld", + "the_poll_is_invalid": "The poll is invalid", + "the_poll_has_empty_option": "The poll has empty option" }, "content_warning": { "placeholder": "Write an accurate warning here..." @@ -444,6 +448,10 @@ "placeholder": { "label": "Label", "content": "Saturs" + }, + "verified": { + "short": "Verified on %s", + "long": "Ownership of this link was checked on %s" } }, "segmented_control": { @@ -711,4 +719,4 @@ "title": "Bookmarks" } } -} +} \ No newline at end of file From 80d830d0749c128c0e0835119ea78f4fe4e70f75 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 20:02:19 +0100 Subject: [PATCH 354/598] New translations app.json (Dutch) --- .../StringsConvertor/input/nl.lproj/app.json | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/Localization/StringsConvertor/input/nl.lproj/app.json b/Localization/StringsConvertor/input/nl.lproj/app.json index bc508d5b0..5241d23bf 100644 --- a/Localization/StringsConvertor/input/nl.lproj/app.json +++ b/Localization/StringsConvertor/input/nl.lproj/app.json @@ -385,8 +385,10 @@ "description_video": "Omschrijf de video voor mensen met een visuele beperking...", "load_failed": "Load Failed", "upload_failed": "Upload Failed", - "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", - "attachment_too_large": "Attachment too large" + "can_not_recognize_this_media_attachment": "Can not recognize this media attachment", + "attachment_too_large": "Attachment too large", + "compressing_state": "Compressing...", + "server_processing_state": "Server Processing..." }, "poll": { "duration_time": "Duur: %s", @@ -396,7 +398,9 @@ "one_day": "1 Dag", "three_days": "3 Dagen", "seven_days": "7 Dagen", - "option_number": "Optie %ld" + "option_number": "Optie %ld", + "the_poll_is_invalid": "The poll is invalid", + "the_poll_has_empty_option": "The poll has empty option" }, "content_warning": { "placeholder": "Schrijf hier een nauwkeurige waarschuwing..." @@ -444,6 +448,10 @@ "placeholder": { "label": "Etiket", "content": "Inhoud" + }, + "verified": { + "short": "Verified on %s", + "long": "Ownership of this link was checked on %s" } }, "segmented_control": { @@ -711,4 +719,4 @@ "title": "Bookmarks" } } -} +} \ No newline at end of file From 881c48d74f064ab4064d873f6e833bd265697d17 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 20:02:20 +0100 Subject: [PATCH 355/598] New translations app.json (Hindi) --- .../StringsConvertor/input/hi.lproj/app.json | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/Localization/StringsConvertor/input/hi.lproj/app.json b/Localization/StringsConvertor/input/hi.lproj/app.json index 2c46d023d..ec405da4d 100644 --- a/Localization/StringsConvertor/input/hi.lproj/app.json +++ b/Localization/StringsConvertor/input/hi.lproj/app.json @@ -385,8 +385,10 @@ "description_video": "Describe the video for the visually-impaired...", "load_failed": "Load Failed", "upload_failed": "Upload Failed", - "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", - "attachment_too_large": "Attachment too large" + "can_not_recognize_this_media_attachment": "Can not recognize this media attachment", + "attachment_too_large": "Attachment too large", + "compressing_state": "Compressing...", + "server_processing_state": "Server Processing..." }, "poll": { "duration_time": "Duration: %s", @@ -396,7 +398,9 @@ "one_day": "1 Day", "three_days": "3 Days", "seven_days": "7 Days", - "option_number": "Option %ld" + "option_number": "Option %ld", + "the_poll_is_invalid": "The poll is invalid", + "the_poll_has_empty_option": "The poll has empty option" }, "content_warning": { "placeholder": "Write an accurate warning here..." @@ -444,6 +448,10 @@ "placeholder": { "label": "Label", "content": "Content" + }, + "verified": { + "short": "Verified on %s", + "long": "Ownership of this link was checked on %s" } }, "segmented_control": { @@ -711,4 +719,4 @@ "title": "Bookmarks" } } -} +} \ No newline at end of file From 0d1e74ae395d0bd43ac9075f64563d1e11e892aa Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 20:02:21 +0100 Subject: [PATCH 356/598] New translations app.json (English, United States) --- .../StringsConvertor/input/en-US.lproj/app.json | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/Localization/StringsConvertor/input/en-US.lproj/app.json b/Localization/StringsConvertor/input/en-US.lproj/app.json index 25f06ad83..30566d8d6 100644 --- a/Localization/StringsConvertor/input/en-US.lproj/app.json +++ b/Localization/StringsConvertor/input/en-US.lproj/app.json @@ -385,8 +385,10 @@ "description_video": "Describe the video for the visually-impaired...", "load_failed": "Load Failed", "upload_failed": "Upload Failed", - "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", - "attachment_too_large": "Attachment too large" + "can_not_recognize_this_media_attachment": "Can not recognize this media attachment", + "attachment_too_large": "Attachment too large", + "compressing_state": "Compressing...", + "server_processing_state": "Server Processing..." }, "poll": { "duration_time": "Duration: %s", @@ -396,7 +398,9 @@ "one_day": "1 Day", "three_days": "3 Days", "seven_days": "7 Days", - "option_number": "Option %ld" + "option_number": "Option %ld", + "the_poll_is_invalid": "The poll is invalid", + "the_poll_has_empty_option": "The poll has empty option" }, "content_warning": { "placeholder": "Write an accurate warning here..." @@ -444,6 +448,10 @@ "placeholder": { "label": "Label", "content": "Content" + }, + "verified": { + "short": "Verified on %s", + "long": "Ownership of this link was checked on %s" } }, "segmented_control": { @@ -711,4 +719,4 @@ "title": "Bookmarks" } } -} +} \ No newline at end of file From a068ac9efcd0ffa0057f09854e3b08f5e9e62901 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 20:02:22 +0100 Subject: [PATCH 357/598] New translations app.json (Welsh) --- .../StringsConvertor/input/cy.lproj/app.json | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/Localization/StringsConvertor/input/cy.lproj/app.json b/Localization/StringsConvertor/input/cy.lproj/app.json index a5de5143a..5a962d852 100644 --- a/Localization/StringsConvertor/input/cy.lproj/app.json +++ b/Localization/StringsConvertor/input/cy.lproj/app.json @@ -385,8 +385,10 @@ "description_video": "Describe the video for the visually-impaired...", "load_failed": "Load Failed", "upload_failed": "Upload Failed", - "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", - "attachment_too_large": "Attachment too large" + "can_not_recognize_this_media_attachment": "Can not recognize this media attachment", + "attachment_too_large": "Attachment too large", + "compressing_state": "Compressing...", + "server_processing_state": "Server Processing..." }, "poll": { "duration_time": "Duration: %s", @@ -396,7 +398,9 @@ "one_day": "1 Day", "three_days": "3 Days", "seven_days": "7 Days", - "option_number": "Option %ld" + "option_number": "Option %ld", + "the_poll_is_invalid": "The poll is invalid", + "the_poll_has_empty_option": "The poll has empty option" }, "content_warning": { "placeholder": "Write an accurate warning here..." @@ -444,6 +448,10 @@ "placeholder": { "label": "Label", "content": "Content" + }, + "verified": { + "short": "Verified on %s", + "long": "Ownership of this link was checked on %s" } }, "segmented_control": { @@ -711,4 +719,4 @@ "title": "Bookmarks" } } -} +} \ No newline at end of file From 61519750fb30dd359d46dfe5dd303dacb4e098dc Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 20:02:24 +0100 Subject: [PATCH 358/598] New translations app.json (Sinhala) --- .../StringsConvertor/input/si.lproj/app.json | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/Localization/StringsConvertor/input/si.lproj/app.json b/Localization/StringsConvertor/input/si.lproj/app.json index 1bc8b3036..2ac50e06b 100644 --- a/Localization/StringsConvertor/input/si.lproj/app.json +++ b/Localization/StringsConvertor/input/si.lproj/app.json @@ -385,8 +385,10 @@ "description_video": "Describe the video for the visually-impaired...", "load_failed": "Load Failed", "upload_failed": "Upload Failed", - "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", - "attachment_too_large": "Attachment too large" + "can_not_recognize_this_media_attachment": "Can not recognize this media attachment", + "attachment_too_large": "Attachment too large", + "compressing_state": "Compressing...", + "server_processing_state": "Server Processing..." }, "poll": { "duration_time": "Duration: %s", @@ -396,7 +398,9 @@ "one_day": "1 Day", "three_days": "3 Days", "seven_days": "7 Days", - "option_number": "Option %ld" + "option_number": "Option %ld", + "the_poll_is_invalid": "The poll is invalid", + "the_poll_has_empty_option": "The poll has empty option" }, "content_warning": { "placeholder": "Write an accurate warning here..." @@ -444,6 +448,10 @@ "placeholder": { "label": "නම්පත", "content": "අන්තර්ගතය" + }, + "verified": { + "short": "Verified on %s", + "long": "Ownership of this link was checked on %s" } }, "segmented_control": { @@ -711,4 +719,4 @@ "title": "Bookmarks" } } -} +} \ No newline at end of file From 25c55ddd0612fde595e05ddb50758c5247f8ff09 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 20:02:26 +0100 Subject: [PATCH 359/598] New translations app.json (Kurmanji (Kurdish)) --- .../StringsConvertor/input/kmr.lproj/app.json | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/Localization/StringsConvertor/input/kmr.lproj/app.json b/Localization/StringsConvertor/input/kmr.lproj/app.json index 1fa54d8ef..6f5fc8b97 100644 --- a/Localization/StringsConvertor/input/kmr.lproj/app.json +++ b/Localization/StringsConvertor/input/kmr.lproj/app.json @@ -385,8 +385,10 @@ "description_video": "Vîdyoyê ji bo kêmbînên dîtbar bide nasîn...", "load_failed": "Barkirin têk çû", "upload_failed": "Barkirin têk çû", - "can_not_recognize_this_media_attachment": "Nikare ev pêveka medyayê nas bike", - "attachment_too_large": "Pêvek pir mezin e" + "can_not_recognize_this_media_attachment": "Can not recognize this media attachment", + "attachment_too_large": "Pêvek pir mezin e", + "compressing_state": "Compressing...", + "server_processing_state": "Server Processing..." }, "poll": { "duration_time": "Dirêjî: %s", @@ -396,7 +398,9 @@ "one_day": "1 Roj", "three_days": "3 Roj", "seven_days": "7 Roj", - "option_number": "Vebijêrk %ld" + "option_number": "Vebijêrk %ld", + "the_poll_is_invalid": "The poll is invalid", + "the_poll_has_empty_option": "The poll has empty option" }, "content_warning": { "placeholder": "Li vir hişyariyek hûrgilî binivîsine..." @@ -444,6 +448,10 @@ "placeholder": { "label": "Nîşan", "content": "Naverok" + }, + "verified": { + "short": "Verified on %s", + "long": "Ownership of this link was checked on %s" } }, "segmented_control": { @@ -711,4 +719,4 @@ "title": "Şûnpel" } } -} +} \ No newline at end of file From ab5eb3c285f4013727b33bd3ad0fdd07af7b0ea9 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 20:02:27 +0100 Subject: [PATCH 360/598] New translations app.json (Sorani (Kurdish)) --- .../StringsConvertor/input/ckb.lproj/app.json | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/Localization/StringsConvertor/input/ckb.lproj/app.json b/Localization/StringsConvertor/input/ckb.lproj/app.json index b8cf48fbe..3720f555e 100644 --- a/Localization/StringsConvertor/input/ckb.lproj/app.json +++ b/Localization/StringsConvertor/input/ckb.lproj/app.json @@ -385,8 +385,10 @@ "description_video": "ڤیدیۆکەت بۆ نابیناکان باس بکە...", "load_failed": "Load Failed", "upload_failed": "Upload Failed", - "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", - "attachment_too_large": "Attachment too large" + "can_not_recognize_this_media_attachment": "Can not recognize this media attachment", + "attachment_too_large": "Attachment too large", + "compressing_state": "Compressing...", + "server_processing_state": "Server Processing..." }, "poll": { "duration_time": "کات:‌ %s", @@ -396,7 +398,9 @@ "one_day": "1 ڕۆژ", "three_days": "3 ڕۆژ", "seven_days": "7 ڕۆژ", - "option_number": "بژاردەی %ld" + "option_number": "بژاردەی %ld", + "the_poll_is_invalid": "The poll is invalid", + "the_poll_has_empty_option": "The poll has empty option" }, "content_warning": { "placeholder": "ئاگادارییەکەت لێرە بنووسە..." @@ -444,6 +448,10 @@ "placeholder": { "label": "ناونیشان", "content": "ناوەڕۆک" + }, + "verified": { + "short": "Verified on %s", + "long": "Ownership of this link was checked on %s" } }, "segmented_control": { @@ -711,4 +719,4 @@ "title": "Bookmarks" } } -} +} \ No newline at end of file From 88489d5cdb219ed4735fe7673b0d6fdfb8733785 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 20:02:28 +0100 Subject: [PATCH 361/598] New translations Localizable.stringsdict (French) --- .../StringsConvertor/input/fr.lproj/Localizable.stringsdict | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Localization/StringsConvertor/input/fr.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/fr.lproj/Localizable.stringsdict index 37f280de4..4eb068697 100644 --- a/Localization/StringsConvertor/input/fr.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/fr.lproj/Localizable.stringsdict @@ -53,7 +53,7 @@ a11y.plural.count.characters_left NSStringLocalizedFormatKey - %#@character_count@ left + %#@character_count@ restants character_count NSStringFormatSpecTypeKey @@ -61,9 +61,9 @@ NSStringFormatValueTypeKey ld one - 1 character + 1 caractère other - %ld characters + %ld caractères plural.count.followed_by_and_mutual From 8b897ec6a59a64ac26977d3edc54a1242502d5cc Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 20:02:29 +0100 Subject: [PATCH 362/598] New translations app.json (Portuguese) --- .../StringsConvertor/input/pt.lproj/app.json | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/Localization/StringsConvertor/input/pt.lproj/app.json b/Localization/StringsConvertor/input/pt.lproj/app.json index 25f06ad83..30566d8d6 100644 --- a/Localization/StringsConvertor/input/pt.lproj/app.json +++ b/Localization/StringsConvertor/input/pt.lproj/app.json @@ -385,8 +385,10 @@ "description_video": "Describe the video for the visually-impaired...", "load_failed": "Load Failed", "upload_failed": "Upload Failed", - "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", - "attachment_too_large": "Attachment too large" + "can_not_recognize_this_media_attachment": "Can not recognize this media attachment", + "attachment_too_large": "Attachment too large", + "compressing_state": "Compressing...", + "server_processing_state": "Server Processing..." }, "poll": { "duration_time": "Duration: %s", @@ -396,7 +398,9 @@ "one_day": "1 Day", "three_days": "3 Days", "seven_days": "7 Days", - "option_number": "Option %ld" + "option_number": "Option %ld", + "the_poll_is_invalid": "The poll is invalid", + "the_poll_has_empty_option": "The poll has empty option" }, "content_warning": { "placeholder": "Write an accurate warning here..." @@ -444,6 +448,10 @@ "placeholder": { "label": "Label", "content": "Content" + }, + "verified": { + "short": "Verified on %s", + "long": "Ownership of this link was checked on %s" } }, "segmented_control": { @@ -711,4 +719,4 @@ "title": "Bookmarks" } } -} +} \ No newline at end of file From 544a0a0ef9920b78b46b7f73a107a3dbde83baa5 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 20:02:30 +0100 Subject: [PATCH 363/598] New translations app.json (Japanese) --- .../StringsConvertor/input/ja.lproj/app.json | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/Localization/StringsConvertor/input/ja.lproj/app.json b/Localization/StringsConvertor/input/ja.lproj/app.json index a18347581..d145ff494 100644 --- a/Localization/StringsConvertor/input/ja.lproj/app.json +++ b/Localization/StringsConvertor/input/ja.lproj/app.json @@ -385,8 +385,10 @@ "description_video": "閲覧が難しいユーザーへの映像説明", "load_failed": "Load Failed", "upload_failed": "Upload Failed", - "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", - "attachment_too_large": "Attachment too large" + "can_not_recognize_this_media_attachment": "Can not recognize this media attachment", + "attachment_too_large": "Attachment too large", + "compressing_state": "Compressing...", + "server_processing_state": "Server Processing..." }, "poll": { "duration_time": "期間: %s", @@ -396,7 +398,9 @@ "one_day": "1日", "three_days": "3日", "seven_days": "7日", - "option_number": "オプション %ld" + "option_number": "オプション %ld", + "the_poll_is_invalid": "The poll is invalid", + "the_poll_has_empty_option": "The poll has empty option" }, "content_warning": { "placeholder": "ここに警告を書いてください..." @@ -444,6 +448,10 @@ "placeholder": { "label": "ラベル", "content": "コンテンツ" + }, + "verified": { + "short": "Verified on %s", + "long": "Ownership of this link was checked on %s" } }, "segmented_control": { @@ -711,4 +719,4 @@ "title": "Bookmarks" } } -} +} \ No newline at end of file From b4f41a0b682c64f6688c8ae2a2392dfcdd55fa07 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 20:02:31 +0100 Subject: [PATCH 364/598] New translations app.json (Chinese Traditional) --- .../input/zh-Hant.lproj/app.json | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/Localization/StringsConvertor/input/zh-Hant.lproj/app.json b/Localization/StringsConvertor/input/zh-Hant.lproj/app.json index 131bd3f37..d7d02240f 100644 --- a/Localization/StringsConvertor/input/zh-Hant.lproj/app.json +++ b/Localization/StringsConvertor/input/zh-Hant.lproj/app.json @@ -385,8 +385,10 @@ "description_video": "為視障人士提供影片說明...", "load_failed": "讀取失敗", "upload_failed": "上傳失敗", - "can_not_recognize_this_media_attachment": "無法識別此媒體附加檔案", - "attachment_too_large": "附加檔案大小過大" + "can_not_recognize_this_media_attachment": "Can not recognize this media attachment", + "attachment_too_large": "附加檔案大小過大", + "compressing_state": "Compressing...", + "server_processing_state": "Server Processing..." }, "poll": { "duration_time": "持續時間:%s", @@ -396,7 +398,9 @@ "one_day": "一天", "three_days": "三天", "seven_days": "七天", - "option_number": "選項 %ld" + "option_number": "選項 %ld", + "the_poll_is_invalid": "The poll is invalid", + "the_poll_has_empty_option": "The poll has empty option" }, "content_warning": { "placeholder": "請於此處寫下精準的警告..." @@ -444,6 +448,10 @@ "placeholder": { "label": "標籤", "content": "內容" + }, + "verified": { + "short": "Verified on %s", + "long": "Ownership of this link was checked on %s" } }, "segmented_control": { @@ -711,4 +719,4 @@ "title": "書籤" } } -} +} \ No newline at end of file From fc001af4c3baa8ab7045e073517478d79283ec9e Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 20:02:32 +0100 Subject: [PATCH 365/598] New translations app.json (Ukrainian) --- .../StringsConvertor/input/uk.lproj/app.json | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/Localization/StringsConvertor/input/uk.lproj/app.json b/Localization/StringsConvertor/input/uk.lproj/app.json index 25f06ad83..30566d8d6 100644 --- a/Localization/StringsConvertor/input/uk.lproj/app.json +++ b/Localization/StringsConvertor/input/uk.lproj/app.json @@ -385,8 +385,10 @@ "description_video": "Describe the video for the visually-impaired...", "load_failed": "Load Failed", "upload_failed": "Upload Failed", - "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", - "attachment_too_large": "Attachment too large" + "can_not_recognize_this_media_attachment": "Can not recognize this media attachment", + "attachment_too_large": "Attachment too large", + "compressing_state": "Compressing...", + "server_processing_state": "Server Processing..." }, "poll": { "duration_time": "Duration: %s", @@ -396,7 +398,9 @@ "one_day": "1 Day", "three_days": "3 Days", "seven_days": "7 Days", - "option_number": "Option %ld" + "option_number": "Option %ld", + "the_poll_is_invalid": "The poll is invalid", + "the_poll_has_empty_option": "The poll has empty option" }, "content_warning": { "placeholder": "Write an accurate warning here..." @@ -444,6 +448,10 @@ "placeholder": { "label": "Label", "content": "Content" + }, + "verified": { + "short": "Verified on %s", + "long": "Ownership of this link was checked on %s" } }, "segmented_control": { @@ -711,4 +719,4 @@ "title": "Bookmarks" } } -} +} \ No newline at end of file From 2b2d419b398e87dbb59def2ab9e72648ece254db Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 20:02:33 +0100 Subject: [PATCH 366/598] New translations app.json (Vietnamese) --- .../StringsConvertor/input/vi.lproj/app.json | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/Localization/StringsConvertor/input/vi.lproj/app.json b/Localization/StringsConvertor/input/vi.lproj/app.json index eb1b1c52d..345ebe85d 100644 --- a/Localization/StringsConvertor/input/vi.lproj/app.json +++ b/Localization/StringsConvertor/input/vi.lproj/app.json @@ -385,8 +385,10 @@ "description_video": "Mô tả video cho người khiếm thị...", "load_failed": "Tải thất bại", "upload_failed": "Tải lên thất bại", - "can_not_recognize_this_media_attachment": "Không xem được tập tin đính kèm", - "attachment_too_large": "Tập tin đính kèm quá lớn" + "can_not_recognize_this_media_attachment": "Can not recognize this media attachment", + "attachment_too_large": "Tập tin đính kèm quá lớn", + "compressing_state": "Compressing...", + "server_processing_state": "Server Processing..." }, "poll": { "duration_time": "Thời hạn: %s", @@ -396,7 +398,9 @@ "one_day": "1 ngày", "three_days": "3 ngày", "seven_days": "7 ngày", - "option_number": "Lựa chọn %ld" + "option_number": "Lựa chọn %ld", + "the_poll_is_invalid": "The poll is invalid", + "the_poll_has_empty_option": "The poll has empty option" }, "content_warning": { "placeholder": "Viết nội dung ẩn của bạn ở đây..." @@ -444,6 +448,10 @@ "placeholder": { "label": "Nhãn", "content": "Nội dung" + }, + "verified": { + "short": "Verified on %s", + "long": "Ownership of this link was checked on %s" } }, "segmented_control": { @@ -711,4 +719,4 @@ "title": "Tút đã lưu" } } -} +} \ No newline at end of file From b6efb7cb3e3216429b2969c4e7e5b128de673be7 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 20:02:34 +0100 Subject: [PATCH 367/598] New translations app.json (Kabyle) --- .../StringsConvertor/input/kab.lproj/app.json | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/Localization/StringsConvertor/input/kab.lproj/app.json b/Localization/StringsConvertor/input/kab.lproj/app.json index 194a2c681..713cc8959 100644 --- a/Localization/StringsConvertor/input/kab.lproj/app.json +++ b/Localization/StringsConvertor/input/kab.lproj/app.json @@ -385,8 +385,10 @@ "description_video": "Glem-d tavidyut i wid yesɛan ugur deg yiẓri...", "load_failed": "Load Failed", "upload_failed": "Upload Failed", - "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", - "attachment_too_large": "Attachment too large" + "can_not_recognize_this_media_attachment": "Can not recognize this media attachment", + "attachment_too_large": "Attachment too large", + "compressing_state": "Compressing...", + "server_processing_state": "Server Processing..." }, "poll": { "duration_time": "Tangazt: %s", @@ -396,7 +398,9 @@ "one_day": "1 n wass", "three_days": "3 n wussan", "seven_days": "7 n wussan", - "option_number": "Taxtiṛt %ld" + "option_number": "Taxtiṛt %ld", + "the_poll_is_invalid": "The poll is invalid", + "the_poll_has_empty_option": "The poll has empty option" }, "content_warning": { "placeholder": "Aru alɣu-inek s telqeyt da..." @@ -444,6 +448,10 @@ "placeholder": { "label": "Tabzimt", "content": "Agbur" + }, + "verified": { + "short": "Verified on %s", + "long": "Ownership of this link was checked on %s" } }, "segmented_control": { @@ -711,4 +719,4 @@ "title": "Bookmarks" } } -} +} \ No newline at end of file From 3b311f8a338e9149db109d4e5a90657cb6c546e2 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 20:02:35 +0100 Subject: [PATCH 368/598] New translations app.json (Korean) --- .../StringsConvertor/input/ko.lproj/app.json | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/Localization/StringsConvertor/input/ko.lproj/app.json b/Localization/StringsConvertor/input/ko.lproj/app.json index fa40d14a7..2c4316f07 100644 --- a/Localization/StringsConvertor/input/ko.lproj/app.json +++ b/Localization/StringsConvertor/input/ko.lproj/app.json @@ -385,8 +385,10 @@ "description_video": "시각장애인을 위한 영상 설명…", "load_failed": "불러오기 실패", "upload_failed": "업로드 실패", - "can_not_recognize_this_media_attachment": "이 미디어 첨부파일을 인식할 수 없습니다", - "attachment_too_large": "첨부파일이 너무 큽니다" + "can_not_recognize_this_media_attachment": "Can not recognize this media attachment", + "attachment_too_large": "첨부파일이 너무 큽니다", + "compressing_state": "Compressing...", + "server_processing_state": "Server Processing..." }, "poll": { "duration_time": "기간: %s", @@ -396,7 +398,9 @@ "one_day": "1일", "three_days": "3일", "seven_days": "7일", - "option_number": "옵션 %ld" + "option_number": "옵션 %ld", + "the_poll_is_invalid": "The poll is invalid", + "the_poll_has_empty_option": "The poll has empty option" }, "content_warning": { "placeholder": "정확한 경고 문구를 여기에 작성하세요…" @@ -444,6 +448,10 @@ "placeholder": { "label": "라벨", "content": "내용" + }, + "verified": { + "short": "Verified on %s", + "long": "Ownership of this link was checked on %s" } }, "segmented_control": { @@ -711,4 +719,4 @@ "title": "Bookmarks" } } -} +} \ No newline at end of file From 11960613f2c32185fe88ec33088f20b51d2e3cb0 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 20:02:36 +0100 Subject: [PATCH 369/598] New translations app.json (Swedish) --- .../StringsConvertor/input/sv.lproj/app.json | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/Localization/StringsConvertor/input/sv.lproj/app.json b/Localization/StringsConvertor/input/sv.lproj/app.json index 938134eaa..6375771ff 100644 --- a/Localization/StringsConvertor/input/sv.lproj/app.json +++ b/Localization/StringsConvertor/input/sv.lproj/app.json @@ -386,7 +386,9 @@ "load_failed": "Det gick inte att läsa in", "upload_failed": "Uppladdning misslyckades", "can_not_recognize_this_media_attachment": "Känner inte igen mediebilagan", - "attachment_too_large": "Bilagan är för stor" + "attachment_too_large": "Bilagan är för stor", + "compressing_state": "Komprimerar...", + "server_processing_state": "Behandlas av servern..." }, "poll": { "duration_time": "Längd: %s", @@ -396,7 +398,9 @@ "one_day": "1 dag", "three_days": "3 dagar", "seven_days": "7 dagar", - "option_number": "Alternativ %ld" + "option_number": "Alternativ %ld", + "the_poll_is_invalid": "Undersökningen är ogiltig", + "the_poll_has_empty_option": "Undersökningen har ett tomt alternativ" }, "content_warning": { "placeholder": "Skriv en noggrann varning här..." @@ -444,6 +448,10 @@ "placeholder": { "label": "Etikett", "content": "Innehåll" + }, + "verified": { + "short": "Verifierad på %s", + "long": "Ägarskap för denna länk kontrollerades den %s" } }, "segmented_control": { @@ -711,4 +719,4 @@ "title": "Bokmärken" } } -} +} \ No newline at end of file From 807ec62d4134213b70267c5d226ecb07a10e801f Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 20:02:37 +0100 Subject: [PATCH 370/598] New translations app.json (French) --- .../StringsConvertor/input/fr.lproj/app.json | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/Localization/StringsConvertor/input/fr.lproj/app.json b/Localization/StringsConvertor/input/fr.lproj/app.json index 674d0f8ca..f35ce4483 100644 --- a/Localization/StringsConvertor/input/fr.lproj/app.json +++ b/Localization/StringsConvertor/input/fr.lproj/app.json @@ -385,8 +385,10 @@ "description_video": "Décrire cette vidéo pour les personnes malvoyantes...", "load_failed": "Load Failed", "upload_failed": "Upload Failed", - "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", - "attachment_too_large": "Attachment too large" + "can_not_recognize_this_media_attachment": "Can not recognize this media attachment", + "attachment_too_large": "Attachment too large", + "compressing_state": "Compressing...", + "server_processing_state": "Server Processing..." }, "poll": { "duration_time": "Durée: %s", @@ -396,7 +398,9 @@ "one_day": "1 Jour", "three_days": "3 jour", "seven_days": "7 jour", - "option_number": "Option %ld" + "option_number": "Option %ld", + "the_poll_is_invalid": "The poll is invalid", + "the_poll_has_empty_option": "The poll has empty option" }, "content_warning": { "placeholder": "Écrivez un avertissement précis ici..." @@ -444,6 +448,10 @@ "placeholder": { "label": "Étiquette", "content": "Contenu" + }, + "verified": { + "short": "Verified on %s", + "long": "Ownership of this link was checked on %s" } }, "segmented_control": { @@ -711,4 +719,4 @@ "title": "Favoris" } } -} +} \ No newline at end of file From c7964c0e401eccbffb29f66c9acc6da0c29476d7 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 20:02:39 +0100 Subject: [PATCH 371/598] New translations app.json (Turkish) --- .../StringsConvertor/input/tr.lproj/app.json | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/Localization/StringsConvertor/input/tr.lproj/app.json b/Localization/StringsConvertor/input/tr.lproj/app.json index f363e3ab6..27ebf6e0a 100644 --- a/Localization/StringsConvertor/input/tr.lproj/app.json +++ b/Localization/StringsConvertor/input/tr.lproj/app.json @@ -385,8 +385,10 @@ "description_video": "Görme engelliler için videoyu tarif edin...", "load_failed": "Load Failed", "upload_failed": "Upload Failed", - "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", - "attachment_too_large": "Attachment too large" + "can_not_recognize_this_media_attachment": "Can not recognize this media attachment", + "attachment_too_large": "Attachment too large", + "compressing_state": "Compressing...", + "server_processing_state": "Server Processing..." }, "poll": { "duration_time": "Süre: %s", @@ -396,7 +398,9 @@ "one_day": "1 Gün", "three_days": "3 Gün", "seven_days": "7 Gün", - "option_number": "Seçenek %ld" + "option_number": "Seçenek %ld", + "the_poll_is_invalid": "The poll is invalid", + "the_poll_has_empty_option": "The poll has empty option" }, "content_warning": { "placeholder": "Buraya kesin bir uyarı yazın..." @@ -444,6 +448,10 @@ "placeholder": { "label": "Etiket", "content": "İçerik" + }, + "verified": { + "short": "Verified on %s", + "long": "Ownership of this link was checked on %s" } }, "segmented_control": { @@ -711,4 +719,4 @@ "title": "Bookmarks" } } -} +} \ No newline at end of file From 8b7ee10642b08f96f08016c0d7a62b1ca62c4007 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 20:02:40 +0100 Subject: [PATCH 372/598] New translations app.json (Czech) --- .../StringsConvertor/input/cs.lproj/app.json | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/Localization/StringsConvertor/input/cs.lproj/app.json b/Localization/StringsConvertor/input/cs.lproj/app.json index 02e7f5cec..5e742009e 100644 --- a/Localization/StringsConvertor/input/cs.lproj/app.json +++ b/Localization/StringsConvertor/input/cs.lproj/app.json @@ -385,8 +385,10 @@ "description_video": "Popište video pro zrakově postižené...", "load_failed": "Načtení se nezdařilo", "upload_failed": "Nahrání selhalo", - "can_not_recognize_this_media_attachment": "Nelze rozpoznat toto medium přílohy", - "attachment_too_large": "Příloha je příliš velká" + "can_not_recognize_this_media_attachment": "Can not recognize this media attachment", + "attachment_too_large": "Příloha je příliš velká", + "compressing_state": "Compressing...", + "server_processing_state": "Server Processing..." }, "poll": { "duration_time": "Doba trvání: %s", @@ -396,7 +398,9 @@ "one_day": "1 den", "three_days": "3 dny", "seven_days": "7 dní", - "option_number": "Možnost %ld" + "option_number": "Možnost %ld", + "the_poll_is_invalid": "The poll is invalid", + "the_poll_has_empty_option": "The poll has empty option" }, "content_warning": { "placeholder": "Zde napište přesné varování..." @@ -444,6 +448,10 @@ "placeholder": { "label": "Označení", "content": "Obsah" + }, + "verified": { + "short": "Verified on %s", + "long": "Ownership of this link was checked on %s" } }, "segmented_control": { @@ -711,4 +719,4 @@ "title": "Záložky" } } -} +} \ No newline at end of file From f15baea19e567dc6ed652a037e92385c8fb66734 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 20:02:41 +0100 Subject: [PATCH 373/598] New translations app.json (Scottish Gaelic) --- .../StringsConvertor/input/gd.lproj/app.json | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/Localization/StringsConvertor/input/gd.lproj/app.json b/Localization/StringsConvertor/input/gd.lproj/app.json index 214279887..6a575afc2 100644 --- a/Localization/StringsConvertor/input/gd.lproj/app.json +++ b/Localization/StringsConvertor/input/gd.lproj/app.json @@ -385,8 +385,10 @@ "description_video": "Mìnich a’ video dhan fheadhainn air a bheil cion-lèirsinne…", "load_failed": "Load Failed", "upload_failed": "Upload Failed", - "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", - "attachment_too_large": "Attachment too large" + "can_not_recognize_this_media_attachment": "Can not recognize this media attachment", + "attachment_too_large": "Attachment too large", + "compressing_state": "Compressing...", + "server_processing_state": "Server Processing..." }, "poll": { "duration_time": "Faide: %s", @@ -396,7 +398,9 @@ "one_day": "Latha", "three_days": "3 làithean", "seven_days": "Seachdain", - "option_number": "Roghainn %ld" + "option_number": "Roghainn %ld", + "the_poll_is_invalid": "The poll is invalid", + "the_poll_has_empty_option": "The poll has empty option" }, "content_warning": { "placeholder": "Sgrìobh rabhadh pongail an-seo…" @@ -444,6 +448,10 @@ "placeholder": { "label": "Leubail", "content": "Susbaint" + }, + "verified": { + "short": "Verified on %s", + "long": "Ownership of this link was checked on %s" } }, "segmented_control": { @@ -711,4 +719,4 @@ "title": "Bookmarks" } } -} +} \ No newline at end of file From d2843d8a1c30ec135f7f35f5b6ac0ac9bf60fcfd Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 20:02:42 +0100 Subject: [PATCH 374/598] New translations app.json (Italian) --- .../StringsConvertor/input/it.lproj/app.json | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/Localization/StringsConvertor/input/it.lproj/app.json b/Localization/StringsConvertor/input/it.lproj/app.json index f5e8d9293..108de5506 100644 --- a/Localization/StringsConvertor/input/it.lproj/app.json +++ b/Localization/StringsConvertor/input/it.lproj/app.json @@ -385,8 +385,10 @@ "description_video": "Descrivi il filmato per gli utenti ipovedenti...", "load_failed": "Caricamento fallito", "upload_failed": "Caricamento fallito", - "can_not_recognize_this_media_attachment": "Impossibile riconoscere questo allegato multimediale", - "attachment_too_large": "Allegato troppo grande" + "can_not_recognize_this_media_attachment": "Can not recognize this media attachment", + "attachment_too_large": "Allegato troppo grande", + "compressing_state": "Compressing...", + "server_processing_state": "Server Processing..." }, "poll": { "duration_time": "Durata: %s", @@ -396,7 +398,9 @@ "one_day": "1 giorno", "three_days": "3 giorni", "seven_days": "7 giorni", - "option_number": "Opzione %ld" + "option_number": "Opzione %ld", + "the_poll_is_invalid": "The poll is invalid", + "the_poll_has_empty_option": "The poll has empty option" }, "content_warning": { "placeholder": "Scrivi un avviso accurato qui..." @@ -444,6 +448,10 @@ "placeholder": { "label": "Etichetta", "content": "Contenuto" + }, + "verified": { + "short": "Verified on %s", + "long": "Ownership of this link was checked on %s" } }, "segmented_control": { @@ -711,4 +719,4 @@ "title": "Segnalibri" } } -} +} \ No newline at end of file From 3f077bc77825680d7941633319f19b9953336c83 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 20:02:43 +0100 Subject: [PATCH 375/598] New translations app.json (Romanian) --- .../StringsConvertor/input/ro.lproj/app.json | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/Localization/StringsConvertor/input/ro.lproj/app.json b/Localization/StringsConvertor/input/ro.lproj/app.json index e50c741b6..18fcb023b 100644 --- a/Localization/StringsConvertor/input/ro.lproj/app.json +++ b/Localization/StringsConvertor/input/ro.lproj/app.json @@ -385,8 +385,10 @@ "description_video": "Describe the video for the visually-impaired...", "load_failed": "Load Failed", "upload_failed": "Upload Failed", - "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", - "attachment_too_large": "Attachment too large" + "can_not_recognize_this_media_attachment": "Can not recognize this media attachment", + "attachment_too_large": "Attachment too large", + "compressing_state": "Compressing...", + "server_processing_state": "Server Processing..." }, "poll": { "duration_time": "Duration: %s", @@ -396,7 +398,9 @@ "one_day": "1 Day", "three_days": "3 Days", "seven_days": "7 Days", - "option_number": "Option %ld" + "option_number": "Option %ld", + "the_poll_is_invalid": "The poll is invalid", + "the_poll_has_empty_option": "The poll has empty option" }, "content_warning": { "placeholder": "Write an accurate warning here..." @@ -444,6 +448,10 @@ "placeholder": { "label": "Label", "content": "Content" + }, + "verified": { + "short": "Verified on %s", + "long": "Ownership of this link was checked on %s" } }, "segmented_control": { @@ -711,4 +719,4 @@ "title": "Bookmarks" } } -} +} \ No newline at end of file From 86a08221b86b5a65751432cbe5850647e661717c Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 20:02:44 +0100 Subject: [PATCH 376/598] New translations app.json (Spanish) --- .../StringsConvertor/input/es.lproj/app.json | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/Localization/StringsConvertor/input/es.lproj/app.json b/Localization/StringsConvertor/input/es.lproj/app.json index 5398df49f..a7500e27f 100644 --- a/Localization/StringsConvertor/input/es.lproj/app.json +++ b/Localization/StringsConvertor/input/es.lproj/app.json @@ -385,8 +385,10 @@ "description_video": "Describe el vídeo para los usuarios con dificultad visual...", "load_failed": "Load Failed", "upload_failed": "Upload Failed", - "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", - "attachment_too_large": "Attachment too large" + "can_not_recognize_this_media_attachment": "Can not recognize this media attachment", + "attachment_too_large": "Attachment too large", + "compressing_state": "Compressing...", + "server_processing_state": "Server Processing..." }, "poll": { "duration_time": "Duración: %s", @@ -396,7 +398,9 @@ "one_day": "1 Día", "three_days": "4 Días", "seven_days": "7 Días", - "option_number": "Opción %ld" + "option_number": "Opción %ld", + "the_poll_is_invalid": "The poll is invalid", + "the_poll_has_empty_option": "The poll has empty option" }, "content_warning": { "placeholder": "Escribe una advertencia precisa aquí..." @@ -444,6 +448,10 @@ "placeholder": { "label": "Nombre para el campo", "content": "Contenido" + }, + "verified": { + "short": "Verified on %s", + "long": "Ownership of this link was checked on %s" } }, "segmented_control": { @@ -711,4 +719,4 @@ "title": "Bookmarks" } } -} +} \ No newline at end of file From 4bd7bde994f179a39eec2f8be721b9fa51fd61e1 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 20:02:45 +0100 Subject: [PATCH 377/598] New translations app.json (Arabic) --- .../StringsConvertor/input/ar.lproj/app.json | 22 +++++++++++++------ 1 file changed, 15 insertions(+), 7 deletions(-) diff --git a/Localization/StringsConvertor/input/ar.lproj/app.json b/Localization/StringsConvertor/input/ar.lproj/app.json index ebea98b0c..c28962a0f 100644 --- a/Localization/StringsConvertor/input/ar.lproj/app.json +++ b/Localization/StringsConvertor/input/ar.lproj/app.json @@ -383,10 +383,12 @@ "attachment_broken": "هذا ال%s مُعطَّل\nويتعذَّرُ رفعُه إلى ماستودون.", "description_photo": "صِف الصورة للمَكفوفين...", "description_video": "صِف المقطع المرئي للمَكفوفين...", - "load_failed": "Load Failed", - "upload_failed": "Upload Failed", - "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", - "attachment_too_large": "Attachment too large" + "load_failed": "فَشَلَ التَّحميل", + "upload_failed": "فَشَلَ الرَّفع", + "can_not_recognize_this_media_attachment": "Can not recognize this media attachment", + "attachment_too_large": "المُرفَق كَبيرٌ جِدًّا", + "compressing_state": "يجري الضغط...", + "server_processing_state": "مُعالجة الخادم جارِيَة..." }, "poll": { "duration_time": "المُدَّة: %s", @@ -396,7 +398,9 @@ "one_day": "يومٌ واحِد", "three_days": "ثلاثةُ أيام", "seven_days": "سبعةُ أيام", - "option_number": "الخيار %ld" + "option_number": "الخيار %ld", + "the_poll_is_invalid": "The poll is invalid", + "the_poll_has_empty_option": "The poll has empty option" }, "content_warning": { "placeholder": "اكتب تَحذيرًا دَقيقًا هُنا..." @@ -419,7 +423,7 @@ "disable_content_warning": "تعطيل تحذير المُحتَوى", "post_visibility_menu": "قائمة ظهور المنشور", "post_options": "Post Options", - "posting_as": "Posting as %s" + "posting_as": "نَشر كَـ %s" }, "keyboard": { "discard_post": "تجاهُل المنشور", @@ -444,6 +448,10 @@ "placeholder": { "label": "التسمية", "content": "المُحتَوى" + }, + "verified": { + "short": "Verified on %s", + "long": "Ownership of this link was checked on %s" } }, "segmented_control": { @@ -711,4 +719,4 @@ "title": "العَلاماتُ المَرجعيَّة" } } -} +} \ No newline at end of file From 60a082577315d2f3b7fc4d0323b9ff47d33bd11d Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 20:02:46 +0100 Subject: [PATCH 378/598] New translations app.json (Catalan) --- .../StringsConvertor/input/ca.lproj/app.json | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/Localization/StringsConvertor/input/ca.lproj/app.json b/Localization/StringsConvertor/input/ca.lproj/app.json index e75aa9ff8..35dd58746 100644 --- a/Localization/StringsConvertor/input/ca.lproj/app.json +++ b/Localization/StringsConvertor/input/ca.lproj/app.json @@ -385,8 +385,10 @@ "description_video": "Descriu el vídeo per als disminuïts visuals...", "load_failed": "Ha fallat la càrrega", "upload_failed": "Pujada fallida", - "can_not_recognize_this_media_attachment": "No es pot reconèixer l'adjunt multimèdia", - "attachment_too_large": "El fitxer adjunt és massa gran" + "can_not_recognize_this_media_attachment": "No es pot reconèixer aquest adjunt multimèdia", + "attachment_too_large": "El fitxer adjunt és massa gran", + "compressing_state": "Comprimint...", + "server_processing_state": "Servidor processant..." }, "poll": { "duration_time": "Durada: %s", @@ -396,7 +398,9 @@ "one_day": "1 Dia", "three_days": "3 Dies", "seven_days": "7 Dies", - "option_number": "Opció %ld" + "option_number": "Opció %ld", + "the_poll_is_invalid": "L'enquesta no és vàlida", + "the_poll_has_empty_option": "L'enquesta té una opció buida" }, "content_warning": { "placeholder": "Escriu un advertiment precís aquí..." @@ -444,6 +448,10 @@ "placeholder": { "label": "Etiqueta", "content": "Contingut" + }, + "verified": { + "short": "Verificat a %s", + "long": "La propietat d'aquest enllaç es va verificar el dia %s" } }, "segmented_control": { @@ -711,4 +719,4 @@ "title": "Marcadors" } } -} +} \ No newline at end of file From 50b4919a994b9c6bc3988b6bd5ebe11818e436b9 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 20:02:47 +0100 Subject: [PATCH 379/598] New translations app.json (Danish) --- .../StringsConvertor/input/da.lproj/app.json | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/Localization/StringsConvertor/input/da.lproj/app.json b/Localization/StringsConvertor/input/da.lproj/app.json index 25f06ad83..30566d8d6 100644 --- a/Localization/StringsConvertor/input/da.lproj/app.json +++ b/Localization/StringsConvertor/input/da.lproj/app.json @@ -385,8 +385,10 @@ "description_video": "Describe the video for the visually-impaired...", "load_failed": "Load Failed", "upload_failed": "Upload Failed", - "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", - "attachment_too_large": "Attachment too large" + "can_not_recognize_this_media_attachment": "Can not recognize this media attachment", + "attachment_too_large": "Attachment too large", + "compressing_state": "Compressing...", + "server_processing_state": "Server Processing..." }, "poll": { "duration_time": "Duration: %s", @@ -396,7 +398,9 @@ "one_day": "1 Day", "three_days": "3 Days", "seven_days": "7 Days", - "option_number": "Option %ld" + "option_number": "Option %ld", + "the_poll_is_invalid": "The poll is invalid", + "the_poll_has_empty_option": "The poll has empty option" }, "content_warning": { "placeholder": "Write an accurate warning here..." @@ -444,6 +448,10 @@ "placeholder": { "label": "Label", "content": "Content" + }, + "verified": { + "short": "Verified on %s", + "long": "Ownership of this link was checked on %s" } }, "segmented_control": { @@ -711,4 +719,4 @@ "title": "Bookmarks" } } -} +} \ No newline at end of file From 50f971ae5ac44677f238be20162511886baea9bf Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 20:02:48 +0100 Subject: [PATCH 380/598] New translations app.json (German) --- .../StringsConvertor/input/de.lproj/app.json | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/Localization/StringsConvertor/input/de.lproj/app.json b/Localization/StringsConvertor/input/de.lproj/app.json index ce5dc4d3a..2fdfb494e 100644 --- a/Localization/StringsConvertor/input/de.lproj/app.json +++ b/Localization/StringsConvertor/input/de.lproj/app.json @@ -386,7 +386,9 @@ "load_failed": "Laden fehlgeschlagen", "upload_failed": "Upload fehlgeschlagen", "can_not_recognize_this_media_attachment": "Medienanhang wurde nicht erkannt", - "attachment_too_large": "Anhang zu groß" + "attachment_too_large": "Anhang zu groß", + "compressing_state": "Komprimieren...", + "server_processing_state": "Serververarbeitung..." }, "poll": { "duration_time": "Dauer: %s", @@ -396,7 +398,9 @@ "one_day": "1 Tag", "three_days": "3 Tage", "seven_days": "7 Tage", - "option_number": "Auswahlmöglichkeit %ld" + "option_number": "Auswahlmöglichkeit %ld", + "the_poll_is_invalid": "Die Umfrage ist ungültig", + "the_poll_has_empty_option": "Die Umfrage hat eine leere Option" }, "content_warning": { "placeholder": "Schreibe eine Inhaltswarnung hier..." @@ -444,6 +448,10 @@ "placeholder": { "label": "Bezeichnung", "content": "Inhalt" + }, + "verified": { + "short": "Verified on %s", + "long": "Ownership of this link was checked on %s" } }, "segmented_control": { @@ -711,4 +719,4 @@ "title": "Lesezeichen" } } -} +} \ No newline at end of file From 8c0619d54d92d60fb5ef4c01cd2cc50f1696ec87 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 20:02:49 +0100 Subject: [PATCH 381/598] New translations app.json (Basque) --- .../StringsConvertor/input/eu.lproj/app.json | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/Localization/StringsConvertor/input/eu.lproj/app.json b/Localization/StringsConvertor/input/eu.lproj/app.json index c4cecfe59..9f5e925c6 100644 --- a/Localization/StringsConvertor/input/eu.lproj/app.json +++ b/Localization/StringsConvertor/input/eu.lproj/app.json @@ -385,8 +385,10 @@ "description_video": "Deskribatu bideoa ikusmen arazoak dituztenentzat...", "load_failed": "Load Failed", "upload_failed": "Upload Failed", - "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", - "attachment_too_large": "Attachment too large" + "can_not_recognize_this_media_attachment": "Can not recognize this media attachment", + "attachment_too_large": "Attachment too large", + "compressing_state": "Compressing...", + "server_processing_state": "Server Processing..." }, "poll": { "duration_time": "Iraupena: %s", @@ -396,7 +398,9 @@ "one_day": "Egun 1", "three_days": "3 egun", "seven_days": "7 egun", - "option_number": "%ld aukera" + "option_number": "%ld aukera", + "the_poll_is_invalid": "The poll is invalid", + "the_poll_has_empty_option": "The poll has empty option" }, "content_warning": { "placeholder": "Idatzi abisu zehatz bat hemen..." @@ -444,6 +448,10 @@ "placeholder": { "label": "Etiketa", "content": "Edukia" + }, + "verified": { + "short": "Verified on %s", + "long": "Ownership of this link was checked on %s" } }, "segmented_control": { @@ -711,4 +719,4 @@ "title": "Bookmarks" } } -} +} \ No newline at end of file From 3c1679239c43c022342ecd784f5dfa392e1bbcf6 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 20:02:50 +0100 Subject: [PATCH 382/598] New translations app.json (Finnish) --- .../StringsConvertor/input/fi.lproj/app.json | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/Localization/StringsConvertor/input/fi.lproj/app.json b/Localization/StringsConvertor/input/fi.lproj/app.json index b98167c35..febfee2ca 100644 --- a/Localization/StringsConvertor/input/fi.lproj/app.json +++ b/Localization/StringsConvertor/input/fi.lproj/app.json @@ -385,8 +385,10 @@ "description_video": "Kuvaile video näkövammaisille...", "load_failed": "Load Failed", "upload_failed": "Upload Failed", - "can_not_recognize_this_media_attachment": "Can not regonize this media attachment", - "attachment_too_large": "Attachment too large" + "can_not_recognize_this_media_attachment": "Can not recognize this media attachment", + "attachment_too_large": "Attachment too large", + "compressing_state": "Compressing...", + "server_processing_state": "Server Processing..." }, "poll": { "duration_time": "Kesto: %s", @@ -396,7 +398,9 @@ "one_day": "1 päivä", "three_days": "3 päivää", "seven_days": "7 päivää", - "option_number": "Vaihtoehto %ld" + "option_number": "Vaihtoehto %ld", + "the_poll_is_invalid": "The poll is invalid", + "the_poll_has_empty_option": "The poll has empty option" }, "content_warning": { "placeholder": "Kirjoita tarkka varoitus tähän..." @@ -444,6 +448,10 @@ "placeholder": { "label": "Nimi", "content": "Sisältö" + }, + "verified": { + "short": "Verified on %s", + "long": "Ownership of this link was checked on %s" } }, "segmented_control": { @@ -711,4 +719,4 @@ "title": "Bookmarks" } } -} +} \ No newline at end of file From e2c120a72f65bdd85ce47ee80e0d86a05c23dc57 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 20:02:51 +0100 Subject: [PATCH 383/598] New translations Localizable.stringsdict (Arabic) --- .../input/ar.lproj/Localizable.stringsdict | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Localization/StringsConvertor/input/ar.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/ar.lproj/Localizable.stringsdict index a65082272..91368a4fb 100644 --- a/Localization/StringsConvertor/input/ar.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/ar.lproj/Localizable.stringsdict @@ -85,17 +85,17 @@ NSStringFormatValueTypeKey ld zero - %ld characters + لَا حَرف one - 1 character + حَرفٌ واحِد two - %ld characters + حَرفانِ اِثنان few %ld characters many %ld characters other - %ld characters + %ld حَرف plural.count.followed_by_and_mutual From 6c97a748040258b99678d4c32bbbfe0205226b57 Mon Sep 17 00:00:00 2001 From: Jed Fox Date: Mon, 14 Nov 2022 14:08:38 -0500 Subject: [PATCH 384/598] ./update_localization.sh --- .../StringsConvertor/input/Base.lproj/app.json | 4 ++++ .../MastodonLocalization/Generated/Strings.swift | 12 ++++++------ .../Resources/Base.lproj/Localizable.strings | 2 ++ .../Resources/en.lproj/Localizable.strings | 4 +--- 4 files changed, 13 insertions(+), 9 deletions(-) diff --git a/Localization/StringsConvertor/input/Base.lproj/app.json b/Localization/StringsConvertor/input/Base.lproj/app.json index c40c0a39e..30566d8d6 100644 --- a/Localization/StringsConvertor/input/Base.lproj/app.json +++ b/Localization/StringsConvertor/input/Base.lproj/app.json @@ -448,6 +448,10 @@ "placeholder": { "label": "Label", "content": "Content" + }, + "verified": { + "short": "Verified on %s", + "long": "Ownership of this link was checked on %s" } }, "segmented_control": { diff --git a/MastodonSDK/Sources/MastodonLocalization/Generated/Strings.swift b/MastodonSDK/Sources/MastodonLocalization/Generated/Strings.swift index 65a97c615..1ad98b0ea 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Generated/Strings.swift +++ b/MastodonSDK/Sources/MastodonLocalization/Generated/Strings.swift @@ -742,13 +742,13 @@ public enum L10n { public static let label = L10n.tr("Localizable", "Scene.Profile.Fields.Placeholder.Label", fallback: "Label") } public enum Verified { - /// Ownership of this link was checked on %s - public static func long(_ p1: UnsafePointer) -> String { - return L10n.tr("Localizable", "Scene.Profile.Fields.Verified.Long", p1) + /// Ownership of this link was checked on %@ + public static func long(_ p1: Any) -> String { + return L10n.tr("Localizable", "Scene.Profile.Fields.Verified.Long", String(describing: p1), fallback: "Ownership of this link was checked on %@") } - /// Verified at %s - public static func short(_ p1: UnsafePointer) -> String { - return L10n.tr("Localizable", "Scene.Profile.Fields.Verified.Short", p1) + /// Verified on %@ + public static func short(_ p1: Any) -> String { + return L10n.tr("Localizable", "Scene.Profile.Fields.Verified.Short", String(describing: p1), fallback: "Verified on %@") } } } diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/Base.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/Base.lproj/Localizable.strings index a352b0526..73bc292cf 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/Base.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/Base.lproj/Localizable.strings @@ -267,6 +267,8 @@ uploaded to Mastodon."; "Scene.Profile.Fields.AddRow" = "Add Row"; "Scene.Profile.Fields.Placeholder.Content" = "Content"; "Scene.Profile.Fields.Placeholder.Label" = "Label"; +"Scene.Profile.Fields.Verified.Long" = "Ownership of this link was checked on %@"; +"Scene.Profile.Fields.Verified.Short" = "Verified on %@"; "Scene.Profile.Header.FollowsYou" = "Follows You"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Confirm to block %@"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Block Account"; diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/en.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/en.lproj/Localizable.strings index e269a45a7..07ccd2c1b 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/en.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/en.lproj/Localizable.strings @@ -263,8 +263,6 @@ uploaded to Mastodon."; "Scene.Profile.Fields.AddRow" = "Add Row"; "Scene.Profile.Fields.Placeholder.Content" = "Content"; "Scene.Profile.Fields.Placeholder.Label" = "Label"; -"Scene.Profile.Fields.Verified.Short" = "Verified at %s"; -"Scene.Profile.Fields.Verified.Long" = "Ownership of this link was checked on %s"; "Scene.Profile.Header.FollowsYou" = "Follows You"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Confirm to block %@"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Block Account"; @@ -456,4 +454,4 @@ uploaded to Mastodon."; back in your hands."; "Scene.Wizard.AccessibilityHint" = "Double tap to dismiss this wizard"; "Scene.Wizard.MultipleAccountSwitchIntroDescription" = "Switch between multiple accounts by holding the profile button."; -"Scene.Wizard.NewInMastodon" = "New in Mastodon"; +"Scene.Wizard.NewInMastodon" = "New in Mastodon"; \ No newline at end of file From eaa1358a229647ee89cc6772dc4afa23f5e7ec5f Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 21:11:37 +0100 Subject: [PATCH 385/598] New translations app.json (Italian) --- .../StringsConvertor/input/it.lproj/app.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Localization/StringsConvertor/input/it.lproj/app.json b/Localization/StringsConvertor/input/it.lproj/app.json index 108de5506..c0d33a73b 100644 --- a/Localization/StringsConvertor/input/it.lproj/app.json +++ b/Localization/StringsConvertor/input/it.lproj/app.json @@ -385,10 +385,10 @@ "description_video": "Descrivi il filmato per gli utenti ipovedenti...", "load_failed": "Caricamento fallito", "upload_failed": "Caricamento fallito", - "can_not_recognize_this_media_attachment": "Can not recognize this media attachment", + "can_not_recognize_this_media_attachment": "Impossibile riconoscere questo allegato multimediale", "attachment_too_large": "Allegato troppo grande", - "compressing_state": "Compressing...", - "server_processing_state": "Server Processing..." + "compressing_state": "Compressione in corso...", + "server_processing_state": "Elaborazione del server in corso..." }, "poll": { "duration_time": "Durata: %s", @@ -399,8 +399,8 @@ "three_days": "3 giorni", "seven_days": "7 giorni", "option_number": "Opzione %ld", - "the_poll_is_invalid": "The poll is invalid", - "the_poll_has_empty_option": "The poll has empty option" + "the_poll_is_invalid": "Il sondaggio non è valido", + "the_poll_has_empty_option": "Il sondaggio ha un'opzione vuota" }, "content_warning": { "placeholder": "Scrivi un avviso accurato qui..." @@ -450,8 +450,8 @@ "content": "Contenuto" }, "verified": { - "short": "Verified on %s", - "long": "Ownership of this link was checked on %s" + "short": "Verificato il %s", + "long": "La proprietà di questo collegamento è stata verificata il %s" } }, "segmented_control": { From 945983c326686891b5330653316e5d22586e99f6 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 22:27:48 +0100 Subject: [PATCH 386/598] New translations app.json (Czech) --- .../StringsConvertor/input/cs.lproj/app.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Localization/StringsConvertor/input/cs.lproj/app.json b/Localization/StringsConvertor/input/cs.lproj/app.json index 5e742009e..d6624a26b 100644 --- a/Localization/StringsConvertor/input/cs.lproj/app.json +++ b/Localization/StringsConvertor/input/cs.lproj/app.json @@ -385,10 +385,10 @@ "description_video": "Popište video pro zrakově postižené...", "load_failed": "Načtení se nezdařilo", "upload_failed": "Nahrání selhalo", - "can_not_recognize_this_media_attachment": "Can not recognize this media attachment", + "can_not_recognize_this_media_attachment": "Nelze rozpoznat toto medium přílohy", "attachment_too_large": "Příloha je příliš velká", - "compressing_state": "Compressing...", - "server_processing_state": "Server Processing..." + "compressing_state": "Probíhá komprese...", + "server_processing_state": "Zpracování serveru..." }, "poll": { "duration_time": "Doba trvání: %s", @@ -399,8 +399,8 @@ "three_days": "3 dny", "seven_days": "7 dní", "option_number": "Možnost %ld", - "the_poll_is_invalid": "The poll is invalid", - "the_poll_has_empty_option": "The poll has empty option" + "the_poll_is_invalid": "Anketa je neplatná", + "the_poll_has_empty_option": "Anketa má prázdnou možnost" }, "content_warning": { "placeholder": "Zde napište přesné varování..." @@ -450,8 +450,8 @@ "content": "Obsah" }, "verified": { - "short": "Verified on %s", - "long": "Ownership of this link was checked on %s" + "short": "Ověřeno na %s", + "long": "Vlastnictví tohoto odkazu bylo zkontrolováno na %s" } }, "segmented_control": { From 009d4e6aa9a495fbac40b6647c04a7835a7c6e63 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 22:27:49 +0100 Subject: [PATCH 387/598] New translations app.json (German) --- Localization/StringsConvertor/input/de.lproj/app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/de.lproj/app.json b/Localization/StringsConvertor/input/de.lproj/app.json index 2fdfb494e..54bb81973 100644 --- a/Localization/StringsConvertor/input/de.lproj/app.json +++ b/Localization/StringsConvertor/input/de.lproj/app.json @@ -451,7 +451,7 @@ }, "verified": { "short": "Verified on %s", - "long": "Ownership of this link was checked on %s" + "long": "Besitz des Links wurde überprüft am %s" } }, "segmented_control": { From 303237743bcb582a5f551e1c804e5709d4eaea57 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 22:27:50 +0100 Subject: [PATCH 388/598] New translations Localizable.stringsdict (Czech) --- .../input/cs.lproj/Localizable.stringsdict | 26 +++++++++---------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/Localization/StringsConvertor/input/cs.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/cs.lproj/Localizable.stringsdict index 805ac70f2..6e44e9f0a 100644 --- a/Localization/StringsConvertor/input/cs.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/cs.lproj/Localizable.stringsdict @@ -73,13 +73,13 @@ NSStringFormatValueTypeKey ld one - 1 character + 1 znak few - %ld characters + %ld znaky many - %ld characters + %ld znaků other - %ld characters + %ld znaků plural.count.followed_by_and_mutual @@ -308,13 +308,13 @@ NSStringFormatValueTypeKey ld one - 1 following + 1 sledující few - %ld following + %ld sledující many - %ld following + %ld sledujících other - %ld following + %ld sledujících plural.count.follower @@ -348,13 +348,13 @@ NSStringFormatValueTypeKey ld one - 1 year left + Zbývá 1 rok few - %ld years left + Zbývají %ld roky many - %ld years left + Zbývá %ld roků other - %ld years left + Zbývá %ld roků date.month.left @@ -368,7 +368,7 @@ NSStringFormatValueTypeKey ld one - 1 months left + Zbývá 1 měsíc few %ld months left many From 7b3c7bbd7b4b5a9e1a377a7d2d46e05f5222ed53 Mon Sep 17 00:00:00 2001 From: Kyle Bashour Date: Mon, 14 Nov 2022 14:09:59 -0800 Subject: [PATCH 389/598] Fix refresh control positioning --- Mastodon.xcodeproj/project.pbxproj | 4 +++ .../DiscoveryCommunityViewController.swift | 4 +-- .../DiscoveryForYouViewController.swift | 4 +-- .../DiscoveryHashtagsViewController.swift | 4 +-- .../News/DiscoveryNewsViewController.swift | 4 +-- .../Posts/DiscoveryPostsViewController.swift | 4 +-- .../HashtagTimelineViewController.swift | 4 +-- .../HomeTimelineViewController.swift | 4 +-- .../NotificationTimelineViewController.swift | 6 ++-- .../Scene/Profile/ProfileViewController.swift | 6 ++-- .../Share/View/Control/RefreshControl.swift | 28 +++++++++++++++++++ 11 files changed, 52 insertions(+), 20 deletions(-) create mode 100644 Mastodon/Scene/Share/View/Control/RefreshControl.swift diff --git a/Mastodon.xcodeproj/project.pbxproj b/Mastodon.xcodeproj/project.pbxproj index 380f21eac..8338c2225 100644 --- a/Mastodon.xcodeproj/project.pbxproj +++ b/Mastodon.xcodeproj/project.pbxproj @@ -87,6 +87,7 @@ 62FD27D32893707B00B205C5 /* BookmarkViewController+DataSourceProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 62FD27D22893707B00B205C5 /* BookmarkViewController+DataSourceProvider.swift */; }; 62FD27D52893708A00B205C5 /* BookmarkViewModel+Diffable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 62FD27D42893708A00B205C5 /* BookmarkViewModel+Diffable.swift */; }; 87FFDA5D898A5C42ADCB35E7 /* Pods_Mastodon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A4ABE34829701A4496C5BB64 /* Pods_Mastodon.framework */; }; + C24C97032922F30500BAE8CB /* RefreshControl.swift in Sources */ = {isa = PBXBuildFile; fileRef = C24C97022922F30500BAE8CB /* RefreshControl.swift */; }; DB0009A626AEE5DC009B9D2D /* Intents.intentdefinition in Sources */ = {isa = PBXBuildFile; fileRef = DB0009A926AEE5DC009B9D2D /* Intents.intentdefinition */; settings = {ATTRIBUTES = (codegen, ); }; }; DB0009A726AEE5DC009B9D2D /* Intents.intentdefinition in Sources */ = {isa = PBXBuildFile; fileRef = DB0009A926AEE5DC009B9D2D /* Intents.intentdefinition */; }; DB0140CF25C42AEE00F9F3CF /* OSLog.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB0140CE25C42AEE00F9F3CF /* OSLog.swift */; }; @@ -610,6 +611,7 @@ B44342AC2B6585F8295F1DDF /* Pods-Mastodon-NotificationService.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Mastodon-NotificationService.release.xcconfig"; path = "Target Support Files/Pods-Mastodon-NotificationService/Pods-Mastodon-NotificationService.release.xcconfig"; sourceTree = ""; }; BB482D32A7B9825BF5327C4F /* Pods-Mastodon-MastodonUITests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Mastodon-MastodonUITests.release.xcconfig"; path = "Target Support Files/Pods-Mastodon-MastodonUITests/Pods-Mastodon-MastodonUITests.release.xcconfig"; sourceTree = ""; }; BD7598A87F4497045EDEF252 /* Pods-Mastodon.asdk - release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Mastodon.asdk - release.xcconfig"; path = "Target Support Files/Pods-Mastodon/Pods-Mastodon.asdk - release.xcconfig"; sourceTree = ""; }; + C24C97022922F30500BAE8CB /* RefreshControl.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RefreshControl.swift; sourceTree = ""; }; C3789232A52F43529CA67E95 /* Pods-MastodonIntent.asdk - debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MastodonIntent.asdk - debug.xcconfig"; path = "Target Support Files/Pods-MastodonIntent/Pods-MastodonIntent.asdk - debug.xcconfig"; sourceTree = ""; }; CD92E0F10BDE4FE7C4B999F2 /* Pods_MastodonTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_MastodonTests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; D7D7CF93E262178800077512 /* Pods-Mastodon-AppShared.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Mastodon-AppShared.debug.xcconfig"; path = "Target Support Files/Pods-Mastodon-AppShared/Pods-Mastodon-AppShared.debug.xcconfig"; sourceTree = ""; }; @@ -2452,6 +2454,7 @@ isa = PBXGroup; children = ( DB02CDBE2625AE5000D0A2AF /* AdaptiveUserInterfaceStyleBarButtonItem.swift */, + C24C97022922F30500BAE8CB /* RefreshControl.swift */, ); path = Control; sourceTree = ""; @@ -3520,6 +3523,7 @@ 5BB04FF5262F0E6D0043BFF6 /* ReportSection.swift in Sources */, DBEFCD82282A2AB100C0ABEA /* ReportServerRulesView.swift in Sources */, DBA94436265CBB7400C537E1 /* ProfileFieldItem.swift in Sources */, + C24C97032922F30500BAE8CB /* RefreshControl.swift in Sources */, DB023D2A27A0FE5C005AC798 /* DataSourceProvider+NotificationTableViewCellDelegate.swift in Sources */, DB98EB6027B10E150082E365 /* ReportCommentTableViewCell.swift in Sources */, DB0FCB962797E6C2006C02E2 /* SearchResultViewController+DataSourceProvider.swift in Sources */, diff --git a/Mastodon/Scene/Discovery/Community/DiscoveryCommunityViewController.swift b/Mastodon/Scene/Discovery/Community/DiscoveryCommunityViewController.swift index d592c3033..31635dc85 100644 --- a/Mastodon/Scene/Discovery/Community/DiscoveryCommunityViewController.swift +++ b/Mastodon/Scene/Discovery/Community/DiscoveryCommunityViewController.swift @@ -33,7 +33,7 @@ final class DiscoveryCommunityViewController: UIViewController, NeedsDependency, return tableView }() - let refreshControl = UIRefreshControl() + let refreshControl = RefreshControl() deinit { os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s", ((#file as NSString).lastPathComponent), #line, #function) @@ -108,7 +108,7 @@ extension DiscoveryCommunityViewController { extension DiscoveryCommunityViewController { - @objc private func refreshControlValueChanged(_ sender: UIRefreshControl) { + @objc private func refreshControlValueChanged(_ sender: RefreshControl) { if !viewModel.stateMachine.enter(DiscoveryCommunityViewModel.State.Reloading.self) { refreshControl.endRefreshing() } diff --git a/Mastodon/Scene/Discovery/ForYou/DiscoveryForYouViewController.swift b/Mastodon/Scene/Discovery/ForYou/DiscoveryForYouViewController.swift index ce1aadbb4..52e5e1856 100644 --- a/Mastodon/Scene/Discovery/ForYou/DiscoveryForYouViewController.swift +++ b/Mastodon/Scene/Discovery/ForYou/DiscoveryForYouViewController.swift @@ -32,7 +32,7 @@ final class DiscoveryForYouViewController: UIViewController, NeedsDependency, Me return tableView }() - let refreshControl = UIRefreshControl() + let refreshControl = RefreshControl() deinit { os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s", ((#file as NSString).lastPathComponent), #line, #function) @@ -93,7 +93,7 @@ extension DiscoveryForYouViewController { extension DiscoveryForYouViewController { - @objc private func refreshControlValueChanged(_ sender: UIRefreshControl) { + @objc private func refreshControlValueChanged(_ sender: RefreshControl) { Task { try await viewModel.fetch() } diff --git a/Mastodon/Scene/Discovery/Hashtags/DiscoveryHashtagsViewController.swift b/Mastodon/Scene/Discovery/Hashtags/DiscoveryHashtagsViewController.swift index e315f04ee..1c855c254 100644 --- a/Mastodon/Scene/Discovery/Hashtags/DiscoveryHashtagsViewController.swift +++ b/Mastodon/Scene/Discovery/Hashtags/DiscoveryHashtagsViewController.swift @@ -32,7 +32,7 @@ final class DiscoveryHashtagsViewController: UIViewController, NeedsDependency, return tableView }() - let refreshControl = UIRefreshControl() + let refreshControl = RefreshControl() deinit { os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s", ((#file as NSString).lastPathComponent), #line, #function) @@ -88,7 +88,7 @@ extension DiscoveryHashtagsViewController { extension DiscoveryHashtagsViewController { - @objc private func refreshControlValueChanged(_ sender: UIRefreshControl) { + @objc private func refreshControlValueChanged(_ sender: RefreshControl) { Task { @MainActor in do { try await viewModel.fetch() diff --git a/Mastodon/Scene/Discovery/News/DiscoveryNewsViewController.swift b/Mastodon/Scene/Discovery/News/DiscoveryNewsViewController.swift index 7f9efb0d9..d1634db82 100644 --- a/Mastodon/Scene/Discovery/News/DiscoveryNewsViewController.swift +++ b/Mastodon/Scene/Discovery/News/DiscoveryNewsViewController.swift @@ -32,7 +32,7 @@ final class DiscoveryNewsViewController: UIViewController, NeedsDependency, Medi return tableView }() - let refreshControl = UIRefreshControl() + let refreshControl = RefreshControl() deinit { os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s", ((#file as NSString).lastPathComponent), #line, #function) @@ -101,7 +101,7 @@ extension DiscoveryNewsViewController { extension DiscoveryNewsViewController { - @objc private func refreshControlValueChanged(_ sender: UIRefreshControl) { + @objc private func refreshControlValueChanged(_ sender: RefreshControl) { guard viewModel.stateMachine.enter(DiscoveryNewsViewModel.State.Reloading.self) else { sender.endRefreshing() return diff --git a/Mastodon/Scene/Discovery/Posts/DiscoveryPostsViewController.swift b/Mastodon/Scene/Discovery/Posts/DiscoveryPostsViewController.swift index ee3538885..893f564a3 100644 --- a/Mastodon/Scene/Discovery/Posts/DiscoveryPostsViewController.swift +++ b/Mastodon/Scene/Discovery/Posts/DiscoveryPostsViewController.swift @@ -32,7 +32,7 @@ final class DiscoveryPostsViewController: UIViewController, NeedsDependency, Med return tableView }() - let refreshControl = UIRefreshControl() + let refreshControl = RefreshControl() let discoveryIntroBannerView = DiscoveryIntroBannerView() @@ -119,7 +119,7 @@ extension DiscoveryPostsViewController { extension DiscoveryPostsViewController { - @objc private func refreshControlValueChanged(_ sender: UIRefreshControl) { + @objc private func refreshControlValueChanged(_ sender: RefreshControl) { guard viewModel.stateMachine.enter(DiscoveryPostsViewModel.State.Reloading.self) else { sender.endRefreshing() return diff --git a/Mastodon/Scene/HashtagTimeline/HashtagTimelineViewController.swift b/Mastodon/Scene/HashtagTimeline/HashtagTimelineViewController.swift index 42079a91e..aad97283c 100644 --- a/Mastodon/Scene/HashtagTimeline/HashtagTimelineViewController.swift +++ b/Mastodon/Scene/HashtagTimeline/HashtagTimelineViewController.swift @@ -48,7 +48,7 @@ final class HashtagTimelineViewController: UIViewController, NeedsDependency, Me return tableView }() - let refreshControl = UIRefreshControl() + let refreshControl = RefreshControl() deinit { os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s:", ((#file as NSString).lastPathComponent), #line, #function) @@ -158,7 +158,7 @@ extension HashtagTimelineViewController { extension HashtagTimelineViewController { - @objc private func refreshControlValueChanged(_ sender: UIRefreshControl) { + @objc private func refreshControlValueChanged(_ sender: RefreshControl) { guard viewModel.stateMachine.enter(HashtagTimelineViewModel.State.Reloading.self) else { sender.endRefreshing() return diff --git a/Mastodon/Scene/HomeTimeline/HomeTimelineViewController.swift b/Mastodon/Scene/HomeTimeline/HomeTimelineViewController.swift index 3efcd5cbe..e83101796 100644 --- a/Mastodon/Scene/HomeTimeline/HomeTimelineViewController.swift +++ b/Mastodon/Scene/HomeTimeline/HomeTimelineViewController.swift @@ -74,7 +74,7 @@ final class HomeTimelineViewController: UIViewController, NeedsDependency, Media return progressView }() - let refreshControl = UIRefreshControl() + let refreshControl = RefreshControl() deinit { os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s:", ((#file as NSString).lastPathComponent), #line, #function) @@ -398,7 +398,7 @@ extension HomeTimelineViewController { coordinator.present(scene: .settings(viewModel: settingsViewModel), from: self, transition: .modal(animated: true, completion: nil)) } - @objc private func refreshControlValueChanged(_ sender: UIRefreshControl) { + @objc private func refreshControlValueChanged(_ sender: RefreshControl) { guard viewModel.loadLatestStateMachine.enter(HomeTimelineViewModel.LoadLatestState.Loading.self) else { sender.endRefreshing() return diff --git a/Mastodon/Scene/Notification/NotificationTimeline/NotificationTimelineViewController.swift b/Mastodon/Scene/Notification/NotificationTimeline/NotificationTimelineViewController.swift index 00e2a9fc8..d088bb783 100644 --- a/Mastodon/Scene/Notification/NotificationTimeline/NotificationTimelineViewController.swift +++ b/Mastodon/Scene/Notification/NotificationTimeline/NotificationTimelineViewController.swift @@ -26,8 +26,8 @@ final class NotificationTimelineViewController: UIViewController, NeedsDependenc var viewModel: NotificationTimelineViewModel! - private(set) lazy var refreshControl: UIRefreshControl = { - let refreshControl = UIRefreshControl() + private(set) lazy var refreshControl: RefreshControl = { + let refreshControl = RefreshControl() refreshControl.addTarget(self, action: #selector(NotificationTimelineViewController.refreshControlValueChanged(_:)), for: .valueChanged) return refreshControl }() @@ -137,7 +137,7 @@ extension NotificationTimelineViewController: CellFrameCacheContainer { extension NotificationTimelineViewController { - @objc private func refreshControlValueChanged(_ sender: UIRefreshControl) { + @objc private func refreshControlValueChanged(_ sender: RefreshControl) { logger.log(level: .debug, "\((#file as NSString).lastPathComponent, privacy: .public)[\(#line, privacy: .public)], \(#function, privacy: .public)") Task { diff --git a/Mastodon/Scene/Profile/ProfileViewController.swift b/Mastodon/Scene/Profile/ProfileViewController.swift index 3ce1fd33a..99f3042aa 100644 --- a/Mastodon/Scene/Profile/ProfileViewController.swift +++ b/Mastodon/Scene/Profile/ProfileViewController.swift @@ -99,8 +99,8 @@ final class ProfileViewController: UIViewController, NeedsDependency, MediaPrevi return barButtonItem }() - let refreshControl: UIRefreshControl = { - let refreshControl = UIRefreshControl() + let refreshControl: RefreshControl = { + let refreshControl = RefreshControl() refreshControl.tintColor = .white return refreshControl }() @@ -545,7 +545,7 @@ extension ProfileViewController { _ = coordinator.present(scene: .compose(viewModel: composeViewModel), from: self, transition: .modal(animated: true, completion: nil)) } - @objc private func refreshControlValueChanged(_ sender: UIRefreshControl) { + @objc private func refreshControlValueChanged(_ sender: RefreshControl) { os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s", ((#file as NSString).lastPathComponent), #line, #function) if let userTimelineViewController = profilePagingViewController.currentViewController as? UserTimelineViewController { diff --git a/Mastodon/Scene/Share/View/Control/RefreshControl.swift b/Mastodon/Scene/Share/View/Control/RefreshControl.swift new file mode 100644 index 000000000..afac5a1a1 --- /dev/null +++ b/Mastodon/Scene/Share/View/Control/RefreshControl.swift @@ -0,0 +1,28 @@ +// +// RefreshControl.swift +// Mastodon +// +// Created by Kyle Bashour on 11/14/22. +// + +import UIKit + +/// RefreshControl subclass that properly displays itself behind table view contents. +class RefreshControl: UIRefreshControl { + override init() { + super.init() + } + + override init(frame: CGRect) { + super.init(frame: frame) + } + + required init?(coder: NSCoder) { + super.init(coder: coder) + } + + override func didMoveToSuperview() { + super.didMoveToSuperview() + layer.zPosition = -1 + } +} From 9e912be7c45a59e477dfa899364e6b99a6614ce8 Mon Sep 17 00:00:00 2001 From: Nathan Mattes Date: Mon, 14 Nov 2022 23:19:53 +0100 Subject: [PATCH 390/598] Fix build Happened due to localization, we changed the workflow, but didn't consider another pr. so boom. --- .../StringsConvertor/input/Base.lproj/app.json | 4 ++++ .../MastodonLocalization/Generated/Strings.swift | 12 ++++++------ .../Resources/Base.lproj/Localizable.strings | 2 ++ .../Resources/en.lproj/Localizable.strings | 4 +--- 4 files changed, 13 insertions(+), 9 deletions(-) diff --git a/Localization/StringsConvertor/input/Base.lproj/app.json b/Localization/StringsConvertor/input/Base.lproj/app.json index c40c0a39e..30566d8d6 100644 --- a/Localization/StringsConvertor/input/Base.lproj/app.json +++ b/Localization/StringsConvertor/input/Base.lproj/app.json @@ -448,6 +448,10 @@ "placeholder": { "label": "Label", "content": "Content" + }, + "verified": { + "short": "Verified on %s", + "long": "Ownership of this link was checked on %s" } }, "segmented_control": { diff --git a/MastodonSDK/Sources/MastodonLocalization/Generated/Strings.swift b/MastodonSDK/Sources/MastodonLocalization/Generated/Strings.swift index 65a97c615..1ad98b0ea 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Generated/Strings.swift +++ b/MastodonSDK/Sources/MastodonLocalization/Generated/Strings.swift @@ -742,13 +742,13 @@ public enum L10n { public static let label = L10n.tr("Localizable", "Scene.Profile.Fields.Placeholder.Label", fallback: "Label") } public enum Verified { - /// Ownership of this link was checked on %s - public static func long(_ p1: UnsafePointer) -> String { - return L10n.tr("Localizable", "Scene.Profile.Fields.Verified.Long", p1) + /// Ownership of this link was checked on %@ + public static func long(_ p1: Any) -> String { + return L10n.tr("Localizable", "Scene.Profile.Fields.Verified.Long", String(describing: p1), fallback: "Ownership of this link was checked on %@") } - /// Verified at %s - public static func short(_ p1: UnsafePointer) -> String { - return L10n.tr("Localizable", "Scene.Profile.Fields.Verified.Short", p1) + /// Verified on %@ + public static func short(_ p1: Any) -> String { + return L10n.tr("Localizable", "Scene.Profile.Fields.Verified.Short", String(describing: p1), fallback: "Verified on %@") } } } diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/Base.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/Base.lproj/Localizable.strings index a352b0526..73bc292cf 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/Base.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/Base.lproj/Localizable.strings @@ -267,6 +267,8 @@ uploaded to Mastodon."; "Scene.Profile.Fields.AddRow" = "Add Row"; "Scene.Profile.Fields.Placeholder.Content" = "Content"; "Scene.Profile.Fields.Placeholder.Label" = "Label"; +"Scene.Profile.Fields.Verified.Long" = "Ownership of this link was checked on %@"; +"Scene.Profile.Fields.Verified.Short" = "Verified on %@"; "Scene.Profile.Header.FollowsYou" = "Follows You"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Confirm to block %@"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Block Account"; diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/en.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/en.lproj/Localizable.strings index e269a45a7..07ccd2c1b 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/en.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/en.lproj/Localizable.strings @@ -263,8 +263,6 @@ uploaded to Mastodon."; "Scene.Profile.Fields.AddRow" = "Add Row"; "Scene.Profile.Fields.Placeholder.Content" = "Content"; "Scene.Profile.Fields.Placeholder.Label" = "Label"; -"Scene.Profile.Fields.Verified.Short" = "Verified at %s"; -"Scene.Profile.Fields.Verified.Long" = "Ownership of this link was checked on %s"; "Scene.Profile.Header.FollowsYou" = "Follows You"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Confirm to block %@"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Block Account"; @@ -456,4 +454,4 @@ uploaded to Mastodon."; back in your hands."; "Scene.Wizard.AccessibilityHint" = "Double tap to dismiss this wizard"; "Scene.Wizard.MultipleAccountSwitchIntroDescription" = "Switch between multiple accounts by holding the profile button."; -"Scene.Wizard.NewInMastodon" = "New in Mastodon"; +"Scene.Wizard.NewInMastodon" = "New in Mastodon"; \ No newline at end of file From 8775227aaf1d87cf86306910329005328c04c92d Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Nov 2022 23:36:39 +0100 Subject: [PATCH 391/598] New translations app.json (Slovenian) --- .../StringsConvertor/input/sl.lproj/app.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Localization/StringsConvertor/input/sl.lproj/app.json b/Localization/StringsConvertor/input/sl.lproj/app.json index 7cb750c38..5f79ef02a 100644 --- a/Localization/StringsConvertor/input/sl.lproj/app.json +++ b/Localization/StringsConvertor/input/sl.lproj/app.json @@ -385,10 +385,10 @@ "description_video": "Opiši video za slabovidne in osebe z okvaro vida ...", "load_failed": "Nalaganje ni uspelo", "upload_failed": "Nalaganje na strežnik ni uspelo", - "can_not_recognize_this_media_attachment": "Can not recognize this media attachment", + "can_not_recognize_this_media_attachment": "Te medijske priponke ni mogoče prepoznati", "attachment_too_large": "Priponka je prevelika", - "compressing_state": "Compressing...", - "server_processing_state": "Server Processing..." + "compressing_state": "Stiskanje ...", + "server_processing_state": "Obdelovanje na strežniku ..." }, "poll": { "duration_time": "Trajanje: %s", @@ -399,8 +399,8 @@ "three_days": "3 dni", "seven_days": "7 dni", "option_number": "Možnost %ld", - "the_poll_is_invalid": "The poll is invalid", - "the_poll_has_empty_option": "The poll has empty option" + "the_poll_is_invalid": "Anketa je neveljavna", + "the_poll_has_empty_option": "Anketa ima prazno izbiro" }, "content_warning": { "placeholder": "Tukaj zapišite opozorilo ..." @@ -450,8 +450,8 @@ "content": "Vsebina" }, "verified": { - "short": "Verified on %s", - "long": "Ownership of this link was checked on %s" + "short": "Preverjeno %s", + "long": "Lastništvo te povezave je bilo preverjeno %s" } }, "segmented_control": { From 35f6732ad924b9d56ceb2f253d31d164890882a4 Mon Sep 17 00:00:00 2001 From: Jed Fox Date: Mon, 14 Nov 2022 20:10:05 -0500 Subject: [PATCH 392/598] update generated files --- .../StringsConvertor/input/Base.lproj/app.json | 4 ++++ .../MastodonLocalization/Generated/Strings.swift | 12 ++++++------ .../Resources/Base.lproj/Localizable.strings | 2 ++ .../Resources/en.lproj/Localizable.strings | 4 +--- 4 files changed, 13 insertions(+), 9 deletions(-) diff --git a/Localization/StringsConvertor/input/Base.lproj/app.json b/Localization/StringsConvertor/input/Base.lproj/app.json index c40c0a39e..30566d8d6 100644 --- a/Localization/StringsConvertor/input/Base.lproj/app.json +++ b/Localization/StringsConvertor/input/Base.lproj/app.json @@ -448,6 +448,10 @@ "placeholder": { "label": "Label", "content": "Content" + }, + "verified": { + "short": "Verified on %s", + "long": "Ownership of this link was checked on %s" } }, "segmented_control": { diff --git a/MastodonSDK/Sources/MastodonLocalization/Generated/Strings.swift b/MastodonSDK/Sources/MastodonLocalization/Generated/Strings.swift index 65a97c615..1ad98b0ea 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Generated/Strings.swift +++ b/MastodonSDK/Sources/MastodonLocalization/Generated/Strings.swift @@ -742,13 +742,13 @@ public enum L10n { public static let label = L10n.tr("Localizable", "Scene.Profile.Fields.Placeholder.Label", fallback: "Label") } public enum Verified { - /// Ownership of this link was checked on %s - public static func long(_ p1: UnsafePointer) -> String { - return L10n.tr("Localizable", "Scene.Profile.Fields.Verified.Long", p1) + /// Ownership of this link was checked on %@ + public static func long(_ p1: Any) -> String { + return L10n.tr("Localizable", "Scene.Profile.Fields.Verified.Long", String(describing: p1), fallback: "Ownership of this link was checked on %@") } - /// Verified at %s - public static func short(_ p1: UnsafePointer) -> String { - return L10n.tr("Localizable", "Scene.Profile.Fields.Verified.Short", p1) + /// Verified on %@ + public static func short(_ p1: Any) -> String { + return L10n.tr("Localizable", "Scene.Profile.Fields.Verified.Short", String(describing: p1), fallback: "Verified on %@") } } } diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/Base.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/Base.lproj/Localizable.strings index a352b0526..73bc292cf 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/Base.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/Base.lproj/Localizable.strings @@ -267,6 +267,8 @@ uploaded to Mastodon."; "Scene.Profile.Fields.AddRow" = "Add Row"; "Scene.Profile.Fields.Placeholder.Content" = "Content"; "Scene.Profile.Fields.Placeholder.Label" = "Label"; +"Scene.Profile.Fields.Verified.Long" = "Ownership of this link was checked on %@"; +"Scene.Profile.Fields.Verified.Short" = "Verified on %@"; "Scene.Profile.Header.FollowsYou" = "Follows You"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Confirm to block %@"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Block Account"; diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/en.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/en.lproj/Localizable.strings index e269a45a7..07ccd2c1b 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/en.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/en.lproj/Localizable.strings @@ -263,8 +263,6 @@ uploaded to Mastodon."; "Scene.Profile.Fields.AddRow" = "Add Row"; "Scene.Profile.Fields.Placeholder.Content" = "Content"; "Scene.Profile.Fields.Placeholder.Label" = "Label"; -"Scene.Profile.Fields.Verified.Short" = "Verified at %s"; -"Scene.Profile.Fields.Verified.Long" = "Ownership of this link was checked on %s"; "Scene.Profile.Header.FollowsYou" = "Follows You"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Confirm to block %@"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Block Account"; @@ -456,4 +454,4 @@ uploaded to Mastodon."; back in your hands."; "Scene.Wizard.AccessibilityHint" = "Double tap to dismiss this wizard"; "Scene.Wizard.MultipleAccountSwitchIntroDescription" = "Switch between multiple accounts by holding the profile button."; -"Scene.Wizard.NewInMastodon" = "New in Mastodon"; +"Scene.Wizard.NewInMastodon" = "New in Mastodon"; \ No newline at end of file From ac28c2ee4f4d24fcab5d0442f2ea0e4eed12e910 Mon Sep 17 00:00:00 2001 From: Jed Fox Date: Mon, 14 Nov 2022 20:44:47 -0500 Subject: [PATCH 393/598] Add Live Text support to MediaPreviewImageView --- .../Image/MediaPreviewImageView.swift | 45 +++++++++++++++++-- .../MediaPreviewImageViewController.swift | 42 ++++++++++++++++- .../MastodonExtension/ImageAnalyzer.swift | 13 ++++++ 3 files changed, 94 insertions(+), 6 deletions(-) create mode 100644 MastodonSDK/Sources/MastodonExtension/ImageAnalyzer.swift diff --git a/Mastodon/Scene/MediaPreview/Image/MediaPreviewImageView.swift b/Mastodon/Scene/MediaPreview/Image/MediaPreviewImageView.swift index 05f2ce70f..cc31a9639 100644 --- a/Mastodon/Scene/MediaPreview/Image/MediaPreviewImageView.swift +++ b/Mastodon/Scene/MediaPreview/Image/MediaPreviewImageView.swift @@ -9,6 +9,7 @@ import os.log import func AVFoundation.AVMakeRect import UIKit import FLAnimatedImage +import VisionKit final class MediaPreviewImageView: UIScrollView { @@ -28,9 +29,21 @@ final class MediaPreviewImageView: UIScrollView { tapGestureRecognizer.numberOfTapsRequired = 2 return tapGestureRecognizer }() - + private var containerFrame: CGRect? - + + private var _interaction: UIInteraction? = { + if #available(iOS 16.0, *) { + return ImageAnalysisInteraction() + } else { + return nil + } + }() + @available(iOS 16.0, *) + var liveTextInteraction: ImageAnalysisInteraction { + _interaction as! ImageAnalysisInteraction + } + override init(frame: CGRect) { super.init(frame: frame) _init() @@ -55,10 +68,14 @@ extension MediaPreviewImageView { maximumZoomScale = 4.0 addSubview(imageView) - + doubleTapGestureRecognizer.addTarget(self, action: #selector(MediaPreviewImageView.doubleTapGestureRecognizerHandler(_:))) imageView.addGestureRecognizer(doubleTapGestureRecognizer) - + if #available(iOS 16.0, *) { + liveTextInteraction.isSupplementaryInterfaceHidden = true + imageView.addInteraction(liveTextInteraction) + } + delegate = self } @@ -129,6 +146,26 @@ extension MediaPreviewImageView { centerScrollViewContents() contentOffset = CGPoint(x: -contentInset.left, y: -contentInset.top) + + if #available(iOS 16.0, *) { + Task.detached(priority: .userInitiated) { + do { + let analysis = try await ImageAnalyzer.shared.analyze(image, configuration: ImageAnalyzer.Configuration([.text, .machineReadableCode])) + await MainActor.run { + self.liveTextInteraction.analysis = analysis + self.liveTextInteraction.preferredInteractionTypes = .automatic + if self.liveTextInteraction.isSupplementaryInterfaceHidden { + self.liveTextInteraction.setSupplementaryInterfaceHidden(false, animated: true) + } + + } + } catch { + await MainActor.run { + self.liveTextInteraction.preferredInteractionTypes = [] + } + } + } + } os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s: setup image for container %s", ((#file as NSString).lastPathComponent), #line, #function, container.frame.debugDescription) } diff --git a/Mastodon/Scene/MediaPreview/Image/MediaPreviewImageViewController.swift b/Mastodon/Scene/MediaPreview/Image/MediaPreviewImageViewController.swift index 127c4c0c0..1c00b3907 100644 --- a/Mastodon/Scene/MediaPreview/Image/MediaPreviewImageViewController.swift +++ b/Mastodon/Scene/MediaPreview/Image/MediaPreviewImageViewController.swift @@ -11,6 +11,7 @@ import Combine import MastodonAsset import MastodonLocalization import FLAnimatedImage +import VisionKit protocol MediaPreviewImageViewControllerDelegate: AnyObject { func mediaPreviewImageViewController(_ viewController: MediaPreviewImageViewController, tapGestureRecognizerDidTrigger tapGestureRecognizer: UITapGestureRecognizer) @@ -31,7 +32,7 @@ final class MediaPreviewImageViewController: UIViewController { let tapGestureRecognizer = UITapGestureRecognizer.singleTapGestureRecognizer let longPressGestureRecognizer = UILongPressGestureRecognizer() - + deinit { os_log("%{public}s[%{public}ld], %{public}s", ((#file as NSString).lastPathComponent), #line, #function) previewImageView.imageView.af.cancelImageRequest() @@ -42,7 +43,10 @@ extension MediaPreviewImageViewController { override func viewDidLoad() { super.viewDidLoad() - + + if #available(iOS 16.0, *) { + previewImageView.liveTextInteraction.delegate = self + } previewImageView.translatesAutoresizingMaskIntoConstraints = false view.addSubview(previewImageView) NSLayoutConstraint.activate([ @@ -53,7 +57,9 @@ extension MediaPreviewImageViewController { ]) tapGestureRecognizer.addTarget(self, action: #selector(MediaPreviewImageViewController.tapGestureRecognizerHandler(_:))) + tapGestureRecognizer.delegate = self longPressGestureRecognizer.addTarget(self, action: #selector(MediaPreviewImageViewController.longPressGestureRecognizerHandler(_:))) + longPressGestureRecognizer.delegate = self tapGestureRecognizer.require(toFail: previewImageView.doubleTapGestureRecognizer) tapGestureRecognizer.require(toFail: longPressGestureRecognizer) previewImageView.addGestureRecognizer(tapGestureRecognizer) @@ -105,10 +111,42 @@ extension MediaPreviewImageViewController { } +// MARK: - ImageAnalysisInteractionDelegate +@available(iOS 16.0, *) +extension MediaPreviewImageViewController: ImageAnalysisInteractionDelegate { + func contentView(for interaction: ImageAnalysisInteraction) -> UIView? { + view + } + + func presentingViewController(for interaction: ImageAnalysisInteraction) -> UIViewController? { + self + } +} + +// MARK: - UIGestureRecognizerDelegate +extension MediaPreviewImageViewController: UIGestureRecognizerDelegate { + func gestureRecognizer(_ gestureRecognizer: UIGestureRecognizer, shouldReceive touch: UITouch) -> Bool { + if #available(iOS 16.0, *) { + let location = touch.location(in: previewImageView.imageView) + let hasItem = previewImageView.liveTextInteraction.hasInteractiveItem(at: location) + return !hasItem + } else { + return true + } + } +} + // MARK: - UIContextMenuInteractionDelegate extension MediaPreviewImageViewController: UIContextMenuInteractionDelegate { func contextMenuInteraction(_ interaction: UIContextMenuInteraction, configurationForMenuAtLocation location: CGPoint) -> UIContextMenuConfiguration? { os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s", ((#file as NSString).lastPathComponent), #line, #function) + + if #available(iOS 16.0, *) { + if previewImageView.liveTextInteraction.hasInteractiveItem(at: previewImageView.imageView.convert(location, from: previewImageView)) { + return nil + } + } + let previewProvider: UIContextMenuContentPreviewProvider = { () -> UIViewController? in return nil diff --git a/MastodonSDK/Sources/MastodonExtension/ImageAnalyzer.swift b/MastodonSDK/Sources/MastodonExtension/ImageAnalyzer.swift new file mode 100644 index 000000000..cf8a0f437 --- /dev/null +++ b/MastodonSDK/Sources/MastodonExtension/ImageAnalyzer.swift @@ -0,0 +1,13 @@ +// +// ImageAnalyzer.swift +// +// +// Created by Jed Fox on 2022-11-14. +// + +import VisionKit + +@available(iOS 16.0, *) +extension ImageAnalyzer { + public static let shared = ImageAnalyzer() +} From 24e9e1b536e37a9640b0510fbcd9696430c50a0f Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Tue, 15 Nov 2022 03:10:47 +0100 Subject: [PATCH 394/598] New translations app.json (Vietnamese) --- .../StringsConvertor/input/vi.lproj/app.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Localization/StringsConvertor/input/vi.lproj/app.json b/Localization/StringsConvertor/input/vi.lproj/app.json index 345ebe85d..ff751d964 100644 --- a/Localization/StringsConvertor/input/vi.lproj/app.json +++ b/Localization/StringsConvertor/input/vi.lproj/app.json @@ -385,10 +385,10 @@ "description_video": "Mô tả video cho người khiếm thị...", "load_failed": "Tải thất bại", "upload_failed": "Tải lên thất bại", - "can_not_recognize_this_media_attachment": "Can not recognize this media attachment", + "can_not_recognize_this_media_attachment": "Không xem được tập tin đính kèm", "attachment_too_large": "Tập tin đính kèm quá lớn", - "compressing_state": "Compressing...", - "server_processing_state": "Server Processing..." + "compressing_state": "Đang nén...", + "server_processing_state": "Máy chủ đang xử lý..." }, "poll": { "duration_time": "Thời hạn: %s", @@ -399,8 +399,8 @@ "three_days": "3 ngày", "seven_days": "7 ngày", "option_number": "Lựa chọn %ld", - "the_poll_is_invalid": "The poll is invalid", - "the_poll_has_empty_option": "The poll has empty option" + "the_poll_is_invalid": "Bình chọn không hợp lệ", + "the_poll_has_empty_option": "Thiếu lựa chọn" }, "content_warning": { "placeholder": "Viết nội dung ẩn của bạn ở đây..." @@ -450,8 +450,8 @@ "content": "Nội dung" }, "verified": { - "short": "Verified on %s", - "long": "Ownership of this link was checked on %s" + "short": "Đã xác minh %s", + "long": "Liên kết này đã được xác minh trên %s" } }, "segmented_control": { From 5277ec191bb26b3e2ea87bf7cd28360e6ae1bc5f Mon Sep 17 00:00:00 2001 From: Jed Fox Date: Mon, 14 Nov 2022 21:50:38 -0500 Subject: [PATCH 395/598] Drop attempt to fade in the supplementary interface sometimes it just stayed hidden? --- .../Scene/MediaPreview/Image/MediaPreviewImageView.swift | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Mastodon/Scene/MediaPreview/Image/MediaPreviewImageView.swift b/Mastodon/Scene/MediaPreview/Image/MediaPreviewImageView.swift index cc31a9639..8432ddade 100644 --- a/Mastodon/Scene/MediaPreview/Image/MediaPreviewImageView.swift +++ b/Mastodon/Scene/MediaPreview/Image/MediaPreviewImageView.swift @@ -72,7 +72,6 @@ extension MediaPreviewImageView { doubleTapGestureRecognizer.addTarget(self, action: #selector(MediaPreviewImageView.doubleTapGestureRecognizerHandler(_:))) imageView.addGestureRecognizer(doubleTapGestureRecognizer) if #available(iOS 16.0, *) { - liveTextInteraction.isSupplementaryInterfaceHidden = true imageView.addInteraction(liveTextInteraction) } @@ -154,10 +153,6 @@ extension MediaPreviewImageView { await MainActor.run { self.liveTextInteraction.analysis = analysis self.liveTextInteraction.preferredInteractionTypes = .automatic - if self.liveTextInteraction.isSupplementaryInterfaceHidden { - self.liveTextInteraction.setSupplementaryInterfaceHidden(false, animated: true) - } - } } catch { await MainActor.run { From 0687ef4f8eae50b3edc5647e9df522ba4875c8af Mon Sep 17 00:00:00 2001 From: Jed Fox Date: Mon, 14 Nov 2022 21:52:16 -0500 Subject: [PATCH 396/598] Add support for tapping an image to hide all the chrome --- Mastodon/Coordinator/SceneCoordinator.swift | 2 +- .../MediaPreviewImageViewController.swift | 24 ++++++++++++----- .../MediaPreviewViewController.swift | 26 +++++++++++++++++-- .../MediaPreview/MediaPreviewViewModel.swift | 17 +++++++++++- .../MediaPreviewVideoViewController.swift | 6 +++++ 5 files changed, 65 insertions(+), 10 deletions(-) diff --git a/Mastodon/Coordinator/SceneCoordinator.swift b/Mastodon/Coordinator/SceneCoordinator.swift index 8a0825969..01fb744ce 100644 --- a/Mastodon/Coordinator/SceneCoordinator.swift +++ b/Mastodon/Coordinator/SceneCoordinator.swift @@ -339,7 +339,7 @@ extension SceneCoordinator { case .custom(let transitioningDelegate): viewController.modalPresentationStyle = .custom viewController.transitioningDelegate = transitioningDelegate - // viewController.modalPresentationCapturesStatusBarAppearance = true + viewController.modalPresentationCapturesStatusBarAppearance = true (splitViewController ?? presentingViewController)?.present(viewController, animated: true, completion: nil) case .customPush(let animated): diff --git a/Mastodon/Scene/MediaPreview/Image/MediaPreviewImageViewController.swift b/Mastodon/Scene/MediaPreview/Image/MediaPreviewImageViewController.swift index 1c00b3907..513110d29 100644 --- a/Mastodon/Scene/MediaPreview/Image/MediaPreviewImageViewController.swift +++ b/Mastodon/Scene/MediaPreview/Image/MediaPreviewImageViewController.swift @@ -111,13 +111,19 @@ extension MediaPreviewImageViewController { } +extension MediaPreviewImageViewController: MediaPreviewPage { + func setShowingChrome(_ showingChrome: Bool) { + if #available(iOS 16.0, *) { + UIView.animate(withDuration: 0.3) { + self.previewImageView.liveTextInteraction.setSupplementaryInterfaceHidden(!showingChrome, animated: true) + } + } + } +} + // MARK: - ImageAnalysisInteractionDelegate @available(iOS 16.0, *) extension MediaPreviewImageViewController: ImageAnalysisInteractionDelegate { - func contentView(for interaction: ImageAnalysisInteraction) -> UIView? { - view - } - func presentingViewController(for interaction: ImageAnalysisInteraction) -> UIViewController? { self } @@ -128,8 +134,14 @@ extension MediaPreviewImageViewController: UIGestureRecognizerDelegate { func gestureRecognizer(_ gestureRecognizer: UIGestureRecognizer, shouldReceive touch: UITouch) -> Bool { if #available(iOS 16.0, *) { let location = touch.location(in: previewImageView.imageView) - let hasItem = previewImageView.liveTextInteraction.hasInteractiveItem(at: location) - return !hasItem + // for tap gestures, only items that can be tapped are relevant + if gestureRecognizer is UITapGestureRecognizer { + return !previewImageView.liveTextInteraction.hasSupplementaryInterface(at: location) + && !previewImageView.liveTextInteraction.hasDataDetector(at: location) + } else { + // for long press, block out everything + return !previewImageView.liveTextInteraction.hasInteractiveItem(at: location) + } } else { return true } diff --git a/Mastodon/Scene/MediaPreview/MediaPreviewViewController.swift b/Mastodon/Scene/MediaPreview/MediaPreviewViewController.swift index c6552bcba..f3a59d0bb 100644 --- a/Mastodon/Scene/MediaPreview/MediaPreviewViewController.swift +++ b/Mastodon/Scene/MediaPreview/MediaPreviewViewController.swift @@ -137,6 +137,17 @@ extension MediaPreviewViewController { } } .store(in: &disposeBag) + + viewModel.$showingChrome + .receive(on: DispatchQueue.main) + .removeDuplicates() + .sink { [weak self] showingChrome in + UIView.animate(withDuration: 0.3) { + self?.setNeedsStatusBarAppearanceUpdate() + self?.closeButtonBackground.alpha = showingChrome ? 1 : 0 + } + } + .store(in: &disposeBag) // viewModel.$isPoping // .receive(on: DispatchQueue.main) @@ -153,6 +164,14 @@ extension MediaPreviewViewController { } +extension MediaPreviewViewController { + + override var prefersStatusBarHidden: Bool { + !viewModel.showingChrome + } + +} + extension MediaPreviewViewController { @objc private func closeButtonPressed(_ sender: UIButton) { @@ -239,8 +258,11 @@ extension MediaPreviewViewController: MediaPreviewImageViewControllerDelegate { let location = tapGestureRecognizer.location(in: viewController.previewImageView.imageView) let isContainsTap = viewController.previewImageView.imageView.frame.contains(location) - guard !isContainsTap else { return } - dismiss(animated: true, completion: nil) + if isContainsTap { + self.viewModel.showingChrome.toggle() + } else { + dismiss(animated: true, completion: nil) + } } func mediaPreviewImageViewController(_ viewController: MediaPreviewImageViewController, longPressGestureRecognizerDidTrigger longPressGestureRecognizer: UILongPressGestureRecognizer) { diff --git a/Mastodon/Scene/MediaPreview/MediaPreviewViewModel.swift b/Mastodon/Scene/MediaPreview/MediaPreviewViewModel.swift index c43d24945..3f60b19e5 100644 --- a/Mastodon/Scene/MediaPreview/MediaPreviewViewModel.swift +++ b/Mastodon/Scene/MediaPreview/MediaPreviewViewModel.swift @@ -12,6 +12,10 @@ import CoreDataStack import Pageboy import MastodonCore +protocol MediaPreviewPage: UIViewController { + func setShowingChrome(_ showingChrome: Bool) +} + final class MediaPreviewViewModel: NSObject { weak var mediaPreviewImageViewControllerDelegate: MediaPreviewImageViewControllerDelegate? @@ -22,9 +26,12 @@ final class MediaPreviewViewModel: NSObject { let transitionItem: MediaPreviewTransitionItem @Published var currentPage: Int + @Published var showingChrome = true // output let viewControllers: [UIViewController] + + private var disposeBag: Set = [] init( context: AppContext, @@ -34,7 +41,7 @@ final class MediaPreviewViewModel: NSObject { self.context = context self.item = item var currentPage = 0 - var viewControllers: [UIViewController] = [] + var viewControllers: [MediaPreviewPage] = [] switch item { case .attachment(let previewContext): currentPage = previewContext.initialIndex @@ -106,6 +113,14 @@ final class MediaPreviewViewModel: NSObject { self.currentPage = currentPage self.transitionItem = transitionItem super.init() + + for viewController in viewControllers { + self.$showingChrome + .sink { [weak viewController] showingChrome in + viewController?.setShowingChrome(showingChrome) + } + .store(in: &disposeBag) + } } } diff --git a/Mastodon/Scene/MediaPreview/Video/MediaPreviewVideoViewController.swift b/Mastodon/Scene/MediaPreview/Video/MediaPreviewVideoViewController.swift index 7bdbbfed2..792854248 100644 --- a/Mastodon/Scene/MediaPreview/Video/MediaPreviewVideoViewController.swift +++ b/Mastodon/Scene/MediaPreview/Video/MediaPreviewVideoViewController.swift @@ -111,6 +111,12 @@ extension MediaPreviewVideoViewController { // } //} +extension MediaPreviewVideoViewController: MediaPreviewPage { + func setShowingChrome(_ showingChrome: Bool) { + // TODO: does this do anything? + } +} + // MARK: - AVPlayerViewControllerDelegate extension MediaPreviewVideoViewController: AVPlayerViewControllerDelegate { From ed312b2f09a5896448cc0c2b519f77ff885186c6 Mon Sep 17 00:00:00 2001 From: Robert Martin Date: Mon, 14 Nov 2022 22:05:16 -0600 Subject: [PATCH 397/598] Update README.md (#589) Fix minor typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d2a19e715..f28caf8bd 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ Read this blog post for this app to learn more. ## Acknowledgments -Thanks to these open-sources projects listed [here](./Documentation/Acknowledgments.md). +Thanks to these open-source projects listed [here](./Documentation/Acknowledgments.md). ## License From d99636ded82f7a6026d68dbd337f488e2e4cfd31 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Tue, 15 Nov 2022 06:16:39 +0100 Subject: [PATCH 398/598] New translations app.json (Portuguese, Brazilian) --- .../input/pt-BR.lproj/app.json | 218 +++++++++--------- 1 file changed, 109 insertions(+), 109 deletions(-) diff --git a/Localization/StringsConvertor/input/pt-BR.lproj/app.json b/Localization/StringsConvertor/input/pt-BR.lproj/app.json index 9d20f1151..d58006a22 100644 --- a/Localization/StringsConvertor/input/pt-BR.lproj/app.json +++ b/Localization/StringsConvertor/input/pt-BR.lproj/app.json @@ -343,12 +343,12 @@ "open_email_app": { "title": "Verifique sua caixa de entrada.", "description": "Enviamos um e-mail para você. Verifique sua pasta de spam caso ainda tenha verificado.", - "mail": "Mail", - "open_email_client": "Open Email Client" + "mail": "Correio", + "open_email_client": "Abrir Cliente de Email" } }, "home_timeline": { - "title": "Home", + "title": "Início", "navigation_bar_state": { "offline": "Desconectado", "new_posts": "Ver novas postagens", @@ -356,13 +356,13 @@ "Publishing": "Publicando toot...", "accessibility": { "logo_label": "Botão do logotipo", - "logo_hint": "Tap to scroll to top and tap again to previous location" + "logo_hint": "Toque para rolar para o topo e toque novamente para a localização anterior" } } }, "suggestion_account": { - "title": "Find People to Follow", - "follow_explain": "When you follow someone, you’ll see their posts in your home feed." + "title": "Encontre pessoas para seguir", + "follow_explain": "Ao seguir alguém, você verá as publicações dessa pessoa na sua página inicial." }, "compose": { "title": { @@ -380,15 +380,15 @@ "attachment": { "photo": "foto", "video": "vídeo", - "attachment_broken": "This %s is broken and can’t be\nuploaded to Mastodon.", - "description_photo": "Describe the photo for the visually-impaired...", - "description_video": "Describe the video for the visually-impaired...", - "load_failed": "Load Failed", - "upload_failed": "Upload Failed", - "can_not_recognize_this_media_attachment": "Can not recognize this media attachment", - "attachment_too_large": "Attachment too large", - "compressing_state": "Compressing...", - "server_processing_state": "Server Processing..." + "attachment_broken": "Este %s está quebrado e não pode ser\nenviado para o Mastodon.", + "description_photo": "Descreva a foto para deficientes visuais...", + "description_video": "Descreva o vídeo para os deficientes visuais...", + "load_failed": "Falha ao carregar", + "upload_failed": "Falha no carregamento", + "can_not_recognize_this_media_attachment": "Não é possível reconhecer este anexo de mídia", + "attachment_too_large": "O anexo é muito grande", + "compressing_state": "Compactando...", + "server_processing_state": "Servidor processando..." }, "poll": { "duration_time": "Duração: %s", @@ -399,44 +399,44 @@ "three_days": "3 dias", "seven_days": "7 dias", "option_number": "Opção %ld", - "the_poll_is_invalid": "The poll is invalid", - "the_poll_has_empty_option": "The poll has empty option" + "the_poll_is_invalid": "A enquete é inválida", + "the_poll_has_empty_option": "A enquete tem uma opção vazia" }, "content_warning": { - "placeholder": "Write an accurate warning here..." + "placeholder": "Escreva um aviso de conteúdo preciso aqui..." }, "visibility": { - "public": "Public", - "unlisted": "Unlisted", - "private": "Followers only", - "direct": "Only people I mention" + "public": "Público", + "unlisted": "Não listado", + "private": "Apenas seguidores", + "direct": "Apenas pessoas que menciono" }, "auto_complete": { - "space_to_add": "Space to add" + "space_to_add": "Espaço a adicionar" }, "accessibility": { - "append_attachment": "Add Attachment", - "append_poll": "Add Poll", - "remove_poll": "Remove Poll", - "custom_emoji_picker": "Custom Emoji Picker", - "enable_content_warning": "Enable Content Warning", - "disable_content_warning": "Disable Content Warning", - "post_visibility_menu": "Post Visibility Menu", + "append_attachment": "Adicionar anexo", + "append_poll": "Adicionar enquete", + "remove_poll": "Remover enquete", + "custom_emoji_picker": "Seletor de emoji personalizado", + "enable_content_warning": "Ativar Aviso de Conteúdo", + "disable_content_warning": "Desativar Aviso de Conteúdo", + "post_visibility_menu": "Menu de Visibilidade do Post", "post_options": "Opções de postagem", "posting_as": "Publicando como %s" }, "keyboard": { - "discard_post": "Discard Post", - "publish_post": "Publish Post", - "toggle_poll": "Toggle Poll", - "toggle_content_warning": "Toggle Content Warning", - "append_attachment_entry": "Add Attachment - %s", - "select_visibility_entry": "Select Visibility - %s" + "discard_post": "Descartar postagem", + "publish_post": "Publicar postagem", + "toggle_poll": "Alternar enquete", + "toggle_content_warning": "Ativar/desativar Aviso de Conteúdo", + "append_attachment_entry": "Adicionar Anexo - %s", + "select_visibility_entry": "Selecionar Visibilidade - %s" } }, "profile": { "header": { - "follows_you": "Follows You" + "follows_you": "Segue você" }, "dashboard": { "posts": "toots", @@ -444,14 +444,14 @@ "followers": "seguidores" }, "fields": { - "add_row": "Add Row", + "add_row": "Adicionar linha", "placeholder": { - "label": "Label", + "label": "Descrição", "content": "Conteúdo" }, "verified": { - "short": "Verified on %s", - "long": "Ownership of this link was checked on %s" + "short": "Verificado em %s", + "long": "O link foi verificado em %s" } }, "segmented_control": { @@ -471,63 +471,63 @@ "message": "Confirm to unmute %s" }, "confirm_block_user": { - "title": "Block Account", - "message": "Confirm to block %s" + "title": "Bloquear conta", + "message": "Confirme para bloquear %s" }, "confirm_unblock_user": { - "title": "Unblock Account", - "message": "Confirm to unblock %s" + "title": "Desbloquear conta", + "message": "Confirme para desbloquear %s" }, "confirm_show_reblogs": { - "title": "Show Reblogs", - "message": "Confirm to show reblogs" + "title": "Mostrar reblogs", + "message": "Confirmar para mostrar reblogs" }, "confirm_hide_reblogs": { - "title": "Hide Reblogs", - "message": "Confirm to hide reblogs" + "title": "Ocultar reblogs", + "message": "Confirmar para ocultar reblogs" } }, "accessibility": { - "show_avatar_image": "Show avatar image", - "edit_avatar_image": "Edit avatar image", - "show_banner_image": "Show banner image", - "double_tap_to_open_the_list": "Double tap to open the list" + "show_avatar_image": "Mostrar foto de perfil", + "edit_avatar_image": "Editar foto de perfil", + "show_banner_image": "Mostrar foto de capa", + "double_tap_to_open_the_list": "Toque duas vezes para abrir a lista" } }, "follower": { - "title": "follower", - "footer": "Followers from other servers are not displayed." + "title": "seguidor", + "footer": "Seguidores de outras instâncias não são exibidos." }, "following": { - "title": "following", + "title": "seguindo", "footer": "Follows from other servers are not displayed." }, "familiarFollowers": { - "title": "Followers you familiar", - "followed_by_names": "Followed by %s" + "title": "Seguidores que você conhece", + "followed_by_names": "Seguido por %s" }, "favorited_by": { - "title": "Favorited By" + "title": "Favoritado por" }, "reblogged_by": { - "title": "Reblogged By" + "title": "Reblogado por" }, "search": { - "title": "Search", + "title": "Buscar", "search_bar": { - "placeholder": "Search hashtags and users", - "cancel": "Cancel" + "placeholder": "Buscar hashtags e usuários", + "cancel": "Cancelar" }, "recommend": { - "button_text": "See All", + "button_text": "Ver tudo", "hash_tag": { - "title": "Trending on Mastodon", - "description": "Hashtags that are getting quite a bit of attention", - "people_talking": "%s people are talking" + "title": "Em tendência no Mastodon", + "description": "Hashtags que estão recebendo bastante atenção", + "people_talking": "%s pessoas estão falando" }, "accounts": { - "title": "Accounts you might like", - "description": "You may like to follow these accounts", + "title": "Contas que você deve gostar", + "description": "Você pode gostar de seguir estas contas", "follow": "Seguir" } }, @@ -553,82 +553,82 @@ "community": "Comunidade", "for_you": "Para você" }, - "intro": "These are the posts gaining traction in your corner of Mastodon." + "intro": "Esses são os posts que estão ganhando força no seu canto do Mastodon." }, "favorite": { - "title": "Your Favorites" + "title": "Seus favoritos" }, "notification": { "title": { - "Everything": "Everything", - "Mentions": "Mentions" + "Everything": "Tudo", + "Mentions": "Menções" }, "notification_description": { - "followed_you": "followed you", - "favorited_your_post": "favorited your post", - "reblogged_your_post": "reblogged your post", - "mentioned_you": "mentioned you", + "followed_you": "seguiu você", + "favorited_your_post": "favoritou seu toot", + "reblogged_your_post": "reblogou seu toot", + "mentioned_you": "te mencionou", "request_to_follow_you": "request to follow you", - "poll_has_ended": "poll has ended" + "poll_has_ended": "enquete encerrada" }, "keyobard": { - "show_everything": "Show Everything", - "show_mentions": "Show Mentions" + "show_everything": "Mostrar tudo", + "show_mentions": "Mostrar menções" }, "follow_request": { - "accept": "Accept", - "accepted": "Accepted", - "reject": "reject", - "rejected": "Rejected" + "accept": "Aceitar", + "accepted": "Aceito", + "reject": "rejeitar", + "rejected": "Rejeitado" } }, "thread": { "back_title": "Post", - "title": "Post from %s" + "title": "Publicação de %s" }, "settings": { - "title": "Settings", + "title": "Configurações", "section": { "appearance": { - "title": "Appearance", - "automatic": "Automatic", - "light": "Always Light", - "dark": "Always Dark" + "title": "Aparência", + "automatic": "Automático", + "light": "Sempre Claro", + "dark": "Sempre Escuro" }, "look_and_feel": { "title": "Look and Feel", - "use_system": "Use System", - "really_dark": "Really Dark", - "sorta_dark": "Sorta Dark", - "light": "Light" + "use_system": "Usar configuração do sistema", + "really_dark": "Bem escuro", + "sorta_dark": "Meio escuro", + "light": "Claro" }, "notifications": { - "title": "Notifications", + "title": "Notificações", "favorites": "Favorites my post", "follows": "Follows me", "boosts": "Reblogs my post", "mentions": "Mentions me", "trigger": { - "anyone": "anyone", - "follower": "a follower", - "follow": "anyone I follow", - "noone": "no one", - "title": "Notify me when" + "anyone": "qualquer pessoa", + "follower": "um seguidor", + "follow": "qualquer um que eu siga", + "noone": "ninguém", + "title": "Me notificar quando" } }, "preference": { - "title": "Preferences", + "title": "Preferências", "true_black_dark_mode": "True black dark mode", - "disable_avatar_animation": "Disable animated avatars", - "disable_emoji_animation": "Disable animated emojis", - "using_default_browser": "Use default browser to open links", - "open_links_in_mastodon": "Open links in Mastodon" + "disable_avatar_animation": "Desativar fotos animadas", + "disable_emoji_animation": "Desativar emojis animados", + "using_default_browser": "Usar o navegador padrão pra abrir links", + "open_links_in_mastodon": "Abrir links no Mastodon" }, "boring_zone": { - "title": "The Boring Zone", - "account_settings": "Account Settings", - "terms": "Terms of Service", - "privacy": "Privacy Policy" + "title": "A zona chata", + "account_settings": "Configurações da conta", + "terms": "Termos de serviço", + "privacy": "Política de privacidade" }, "spicy_zone": { "title": "The Spicy Zone", From b7b7aea4422d2ae877c75ce614038559d5b0587e Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Tue, 15 Nov 2022 07:18:14 +0100 Subject: [PATCH 399/598] New translations app.json (Portuguese, Brazilian) --- .../input/pt-BR.lproj/app.json | 80 +++++++++---------- 1 file changed, 40 insertions(+), 40 deletions(-) diff --git a/Localization/StringsConvertor/input/pt-BR.lproj/app.json b/Localization/StringsConvertor/input/pt-BR.lproj/app.json index d58006a22..ea21865a4 100644 --- a/Localization/StringsConvertor/input/pt-BR.lproj/app.json +++ b/Localization/StringsConvertor/input/pt-BR.lproj/app.json @@ -637,61 +637,61 @@ } }, "footer": { - "mastodon_description": "Mastodon is open source software. You can report issues on GitHub at %s (%s)" + "mastodon_description": "Mastodon é um software de código aberto. Você pode reportar problemas no GitHub em %s (%s)" }, "keyboard": { - "close_settings_window": "Close Settings Window" + "close_settings_window": "Fechar janela de configurações" } }, "report": { - "title_report": "Report", - "title": "Report %s", - "step1": "Step 1 of 2", - "step2": "Step 2 of 2", - "content1": "Are there any other posts you’d like to add to the report?", - "content2": "Is there anything the moderators should know about this report?", - "report_sent_title": "Thanks for reporting, we’ll look into this.", - "send": "Send Report", - "skip_to_send": "Send without comment", - "text_placeholder": "Type or paste additional comments", - "reported": "REPORTED", + "title_report": "Denunciar", + "title": "Denunciar %s", + "step1": "Passo 1 de 2", + "step2": "Passo 2 de 2", + "content1": "Há outras postagens que você gostaria de adicionar na denúncia?", + "content2": "Há algo que os moderadores deveriam saber sobre esta denúncia?", + "report_sent_title": "Obrigado por denunciar, iremos analisar.", + "send": "Enviar denúncia", + "skip_to_send": "Enviar sem comentário", + "text_placeholder": "Digite ou cole comentários adicionais", + "reported": "DENUNCIADO", "step_one": { - "step_1_of_4": "Step 1 of 4", - "whats_wrong_with_this_post": "What's wrong with this post?", - "whats_wrong_with_this_account": "What's wrong with this account?", - "whats_wrong_with_this_username": "What's wrong with %s?", - "select_the_best_match": "Select the best match", - "i_dont_like_it": "I don’t like it", - "it_is_not_something_you_want_to_see": "It is not something you want to see", - "its_spam": "It’s spam", - "malicious_links_fake_engagement_or_repetetive_replies": "Malicious links, fake engagement, or repetetive replies", - "it_violates_server_rules": "It violates server rules", - "you_are_aware_that_it_breaks_specific_rules": "You are aware that it breaks specific rules", - "its_something_else": "It’s something else", - "the_issue_does_not_fit_into_other_categories": "The issue does not fit into other categories" + "step_1_of_4": "Passo 1 de 4", + "whats_wrong_with_this_post": "O que há de errado com essa publicação?", + "whats_wrong_with_this_account": "O que há de errado com essa conta?", + "whats_wrong_with_this_username": "O que há de errado com %s?", + "select_the_best_match": "Selecione a melhor alternativa", + "i_dont_like_it": "Eu não gosto disso", + "it_is_not_something_you_want_to_see": "Não é algo que você gostaria de ver", + "its_spam": "É spam", + "malicious_links_fake_engagement_or_repetetive_replies": "Links maliciosos, engajamento falso, ou respostas repetitivas", + "it_violates_server_rules": "Isso viola as regras do servidor", + "you_are_aware_that_it_breaks_specific_rules": "Você está ciente que isso quebra regras específicas", + "its_something_else": "É outra coisa", + "the_issue_does_not_fit_into_other_categories": "O problema não se encaixa em outras categorias" }, "step_two": { - "step_2_of_4": "Step 2 of 4", - "which_rules_are_being_violated": "Which rules are being violated?", - "select_all_that_apply": "Select all that apply", - "i_just_don’t_like_it": "I just don’t like it" + "step_2_of_4": "Passo 2 de 4", + "which_rules_are_being_violated": "Quais regras estão sendo violadas?", + "select_all_that_apply": "Selecione todas que se aplicam", + "i_just_don’t_like_it": "Simplesmente não gosto" }, "step_three": { - "step_3_of_4": "Step 3 of 4", + "step_3_of_4": "Passo 3 de 4", "are_there_any_posts_that_back_up_this_report": "Are there any posts that back up this report?", - "select_all_that_apply": "Select all that apply" + "select_all_that_apply": "Selecione todos que se aplicam" }, "step_four": { - "step_4_of_4": "Step 4 of 4", - "is_there_anything_else_we_should_know": "Is there anything else we should know?" + "step_4_of_4": "Passo 4 de 4", + "is_there_anything_else_we_should_know": "Há algo a mais que deveríamos saber?" }, "step_final": { - "dont_want_to_see_this": "Don’t want to see this?", - "when_you_see_something_you_dont_like_on_mastodon_you_can_remove_the_person_from_your_experience.": "When you see something you don’t like on Mastodon, you can remove the person from your experience.", - "unfollow": "Unfollow", - "unfollowed": "Unfollowed", - "unfollow_user": "Unfollow %s", - "mute_user": "Mute %s", + "dont_want_to_see_this": "Não quer ver isso?", + "when_you_see_something_you_dont_like_on_mastodon_you_can_remove_the_person_from_your_experience.": "Quando você vê algo que não gosta no Mastodon, você pode remover essa pessoa da sua experiência.", + "unfollow": "Deixar de seguir", + "unfollowed": "Deixou de seguir", + "unfollow_user": "Deixar de seguir %s", + "mute_user": "Silenciar %s", "you_wont_see_their_posts_or_reblogs_in_your_home_feed_they_wont_know_they_ve_been_muted": "You won’t see their posts or reblogs in your home feed. They won’t know they’ve been muted.", "block_user": "Block %s", "they_will_no_longer_be_able_to_follow_or_see_your_posts_but_they_can_see_if_theyve_been_blocked": "They will no longer be able to follow or see your posts, but they can see if they’ve been blocked.", From 527f6f0dfae1a0469648a7c86dabd64a98e65644 Mon Sep 17 00:00:00 2001 From: Jed Fox Date: Tue, 15 Nov 2022 06:58:43 -0500 Subject: [PATCH 400/598] Adjustments for new i18n workflow --- Localization/StringsConvertor/input/en.lproj/app.json | 2 +- .../MastodonLocalization/Resources/en.lproj/Localizable.strings | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Localization/StringsConvertor/input/en.lproj/app.json b/Localization/StringsConvertor/input/en.lproj/app.json index 7434a34a2..25f06ad83 100644 --- a/Localization/StringsConvertor/input/en.lproj/app.json +++ b/Localization/StringsConvertor/input/en.lproj/app.json @@ -96,7 +96,7 @@ "tabs": { "home": "Home", "search": "Search", - "notifications": "Notifications", + "notification": "Notification", "profile": "Profile" }, "keyboard": { diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/en.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/en.lproj/Localizable.strings index 75b935422..07ccd2c1b 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/en.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/en.lproj/Localizable.strings @@ -131,7 +131,7 @@ Please check your internet connection."; "Common.Controls.Status.Visibility.PrivateFromMe" = "Only my followers can see this post."; "Common.Controls.Status.Visibility.Unlisted" = "Everyone can see this post but not display in the public timeline."; "Common.Controls.Tabs.Home" = "Home"; -"Common.Controls.Tabs.Notifications" = "Notifications"; +"Common.Controls.Tabs.Notification" = "Notification"; "Common.Controls.Tabs.Profile" = "Profile"; "Common.Controls.Tabs.Search" = "Search"; "Common.Controls.Timeline.Filtered" = "Filtered"; From 9d716de4535ef2766fc80b2ae660629da0149f1e Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Tue, 15 Nov 2022 12:59:14 +0100 Subject: [PATCH 401/598] New translations app.json (Korean) --- Localization/StringsConvertor/input/ko.lproj/app.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Localization/StringsConvertor/input/ko.lproj/app.json b/Localization/StringsConvertor/input/ko.lproj/app.json index 2c4316f07..a871d2d00 100644 --- a/Localization/StringsConvertor/input/ko.lproj/app.json +++ b/Localization/StringsConvertor/input/ko.lproj/app.json @@ -422,8 +422,8 @@ "enable_content_warning": "열람 주의 설정", "disable_content_warning": "열람 주의 해제", "post_visibility_menu": "게시물 공개범위 메뉴", - "post_options": "Post Options", - "posting_as": "Posting as %s" + "post_options": "게시물 옵션", + "posting_as": "%s로 게시" }, "keyboard": { "discard_post": "글 버리기", From 143e598c019ff19a26067438ef0b03f85a0768ae Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Tue, 15 Nov 2022 12:59:15 +0100 Subject: [PATCH 402/598] New translations Localizable.stringsdict (Korean) --- .../StringsConvertor/input/ko.lproj/Localizable.stringsdict | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Localization/StringsConvertor/input/ko.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/ko.lproj/Localizable.stringsdict index 644fd007a..77aac5569 100644 --- a/Localization/StringsConvertor/input/ko.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/ko.lproj/Localizable.stringsdict @@ -47,7 +47,7 @@ a11y.plural.count.characters_left NSStringLocalizedFormatKey - %#@character_count@ left + %#@character_count@ 글자 남음 character_count NSStringFormatSpecTypeKey @@ -55,7 +55,7 @@ NSStringFormatValueTypeKey ld other - %ld characters + %ld 글자 plural.count.followed_by_and_mutual From 6ec16d5a8115aaa5ff3c7d319d623db594e3d5e0 Mon Sep 17 00:00:00 2001 From: Jed Fox Date: Tue, 15 Nov 2022 07:00:15 -0500 Subject: [PATCH 403/598] Adjustments for new i18n workflow --- Localization/StringsConvertor/input/en.lproj/app.json | 4 ++-- .../Resources/en.lproj/Localizable.strings | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Localization/StringsConvertor/input/en.lproj/app.json b/Localization/StringsConvertor/input/en.lproj/app.json index 2b8745ecc..25f06ad83 100644 --- a/Localization/StringsConvertor/input/en.lproj/app.json +++ b/Localization/StringsConvertor/input/en.lproj/app.json @@ -698,9 +698,9 @@ } }, "account_list": { + "tab_bar_hint": "Current selected profile: %s. Double tap then hold to show account switcher", "dismiss_account_switcher": "Dismiss Account Switcher", - "add_account": "Add Account", - "switch_accounts": "Switch Accounts" + "add_account": "Add Account" }, "wizard": { "new_in_mastodon": "New in Mastodon", diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/en.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/en.lproj/Localizable.strings index 66394ee10..07ccd2c1b 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/en.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/en.lproj/Localizable.strings @@ -154,7 +154,7 @@ Your profile looks like this to them."; "Common.Controls.Timeline.Timestamp.Now" = "Now"; "Scene.AccountList.AddAccount" = "Add Account"; "Scene.AccountList.DismissAccountSwitcher" = "Dismiss Account Switcher"; -"Scene.AccountList.SwitchAccounts" = "Switch Accounts"; +"Scene.AccountList.TabBarHint" = "Current selected profile: %@. Double tap then hold to show account switcher"; "Scene.Bookmark.Title" = "Bookmarks"; "Scene.Compose.Accessibility.AppendAttachment" = "Add Attachment"; "Scene.Compose.Accessibility.AppendPoll" = "Add Poll"; From 726de75d2e82cd76b2af59cfde1fa1f96ac86606 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Tue, 15 Nov 2022 15:43:42 +0100 Subject: [PATCH 404/598] New translations app.json (French) --- .../StringsConvertor/input/fr.lproj/app.json | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/Localization/StringsConvertor/input/fr.lproj/app.json b/Localization/StringsConvertor/input/fr.lproj/app.json index f35ce4483..7dffb4aba 100644 --- a/Localization/StringsConvertor/input/fr.lproj/app.json +++ b/Localization/StringsConvertor/input/fr.lproj/app.json @@ -383,12 +383,12 @@ "attachment_broken": "Ce %s est brisé et ne peut pas être\ntéléversé sur Mastodon.", "description_photo": "Décrire cette photo pour les personnes malvoyantes...", "description_video": "Décrire cette vidéo pour les personnes malvoyantes...", - "load_failed": "Load Failed", - "upload_failed": "Upload Failed", - "can_not_recognize_this_media_attachment": "Can not recognize this media attachment", - "attachment_too_large": "Attachment too large", - "compressing_state": "Compressing...", - "server_processing_state": "Server Processing..." + "load_failed": "Échec du chargement", + "upload_failed": "Échec de l’envoi", + "can_not_recognize_this_media_attachment": "Impossible de reconnaître cette pièce jointe", + "attachment_too_large": "La pièce jointe est trop volumineuse", + "compressing_state": "Compression...", + "server_processing_state": "Traitement du serveur..." }, "poll": { "duration_time": "Durée: %s", @@ -399,8 +399,8 @@ "three_days": "3 jour", "seven_days": "7 jour", "option_number": "Option %ld", - "the_poll_is_invalid": "The poll is invalid", - "the_poll_has_empty_option": "The poll has empty option" + "the_poll_is_invalid": "Le sondage est invalide", + "the_poll_has_empty_option": "Le sondage n'a pas d'options" }, "content_warning": { "placeholder": "Écrivez un avertissement précis ici..." @@ -422,8 +422,8 @@ "enable_content_warning": "Basculer l’avertissement de contenu", "disable_content_warning": "Désactiver l'avertissement de contenu", "post_visibility_menu": "Menu de Visibilité de la publication", - "post_options": "Post Options", - "posting_as": "Posting as %s" + "post_options": "Options de publication", + "posting_as": "Publié en tant que %s" }, "keyboard": { "discard_post": "Rejeter la publication", @@ -450,8 +450,8 @@ "content": "Contenu" }, "verified": { - "short": "Verified on %s", - "long": "Ownership of this link was checked on %s" + "short": "Vérifié le %s", + "long": "La propriété de ce lien a été vérifiée le %s" } }, "segmented_control": { From eb26a4d6c35f9f5f5910541e6ee1273786626d2d Mon Sep 17 00:00:00 2001 From: Marcus Kida Date: Tue, 15 Nov 2022 15:44:51 +0100 Subject: [PATCH 405/598] fix: Improve media inline appearance --- .../Scene/ComposeContent/View/ComposeContentView.swift | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentView.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentView.swift index 10ca4e71f..a7f867f60 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentView.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/View/ComposeContentView.swift @@ -222,13 +222,17 @@ extension ComposeContentView { VStack(spacing: 16) { ForEach(viewModel.attachmentViewModels, id: \.self) { attachmentViewModel in AttachmentView(viewModel: attachmentViewModel) - .clipShape(Rectangle()) + .clipShape(RoundedRectangle(cornerRadius: 4)) .badgeView( Button { viewModel.attachmentViewModels.removeAll(where: { $0 === attachmentViewModel }) } label: { Image(systemName: "minus.circle.fill") + .resizable() + .frame(width: 20, height: 20) .foregroundColor(.red) + .background(Color.white) + .clipShape(Circle()) } ) } // end ForEach From 88948b40245b61b91c61876fb2453fdba7f088db Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Tue, 15 Nov 2022 16:48:16 +0100 Subject: [PATCH 406/598] New translations app.json (Arabic) --- Localization/StringsConvertor/input/ar.lproj/app.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Localization/StringsConvertor/input/ar.lproj/app.json b/Localization/StringsConvertor/input/ar.lproj/app.json index c28962a0f..1a52ccfbb 100644 --- a/Localization/StringsConvertor/input/ar.lproj/app.json +++ b/Localization/StringsConvertor/input/ar.lproj/app.json @@ -385,7 +385,7 @@ "description_video": "صِف المقطع المرئي للمَكفوفين...", "load_failed": "فَشَلَ التَّحميل", "upload_failed": "فَشَلَ الرَّفع", - "can_not_recognize_this_media_attachment": "Can not recognize this media attachment", + "can_not_recognize_this_media_attachment": "يتعذَّرُ التعرُّفُ على وسائِطِ هذا المُرفَق", "attachment_too_large": "المُرفَق كَبيرٌ جِدًّا", "compressing_state": "يجري الضغط...", "server_processing_state": "مُعالجة الخادم جارِيَة..." @@ -399,8 +399,8 @@ "three_days": "ثلاثةُ أيام", "seven_days": "سبعةُ أيام", "option_number": "الخيار %ld", - "the_poll_is_invalid": "The poll is invalid", - "the_poll_has_empty_option": "The poll has empty option" + "the_poll_is_invalid": "الاِستِطلاعُ غيرُ صالِح", + "the_poll_has_empty_option": "يوجَدُ خِيارٌ فارِغٌ فِي الاِستِطلاع" }, "content_warning": { "placeholder": "اكتب تَحذيرًا دَقيقًا هُنا..." @@ -450,8 +450,8 @@ "content": "المُحتَوى" }, "verified": { - "short": "Verified on %s", - "long": "Ownership of this link was checked on %s" + "short": "تمَّ التَّحقق بِتاريخ %s", + "long": "تمَّ التَّحقق مِن مِلكية هذا الرابِطِ بِتاريخ %s" } }, "segmented_control": { From 23183f62715b2b3ee775c81e03e552671afae16d Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Tue, 15 Nov 2022 16:48:17 +0100 Subject: [PATCH 407/598] New translations app.json (Portuguese, Brazilian) --- .../input/pt-BR.lproj/app.json | 60 +++++++++---------- 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/Localization/StringsConvertor/input/pt-BR.lproj/app.json b/Localization/StringsConvertor/input/pt-BR.lproj/app.json index ea21865a4..b69c14777 100644 --- a/Localization/StringsConvertor/input/pt-BR.lproj/app.json +++ b/Localization/StringsConvertor/input/pt-BR.lproj/app.json @@ -2,7 +2,7 @@ "common": { "alerts": { "common": { - "please_try_again": "Por favor tente novamente.", + "please_try_again": "Por favor, tente novamente.", "please_try_again_later": "Tente novamente mais tarde." }, "sign_up_failure": { @@ -467,8 +467,8 @@ "message": "Confirme para silenciar %s" }, "confirm_unmute_user": { - "title": "Unmute Account", - "message": "Confirm to unmute %s" + "title": "Tirar conta do silenciado", + "message": "Confirme para tirar %s do silenciado" }, "confirm_block_user": { "title": "Bloquear conta", @@ -500,7 +500,7 @@ }, "following": { "title": "seguindo", - "footer": "Follows from other servers are not displayed." + "footer": "Contas que você segue de outras instâncias não são exibidas." }, "familiarFollowers": { "title": "Seguidores que você conhece", @@ -568,7 +568,7 @@ "favorited_your_post": "favoritou seu toot", "reblogged_your_post": "reblogou seu toot", "mentioned_you": "te mencionou", - "request_to_follow_you": "request to follow you", + "request_to_follow_you": "solicitação para te seguir", "poll_has_ended": "enquete encerrada" }, "keyobard": { @@ -583,7 +583,7 @@ } }, "thread": { - "back_title": "Post", + "back_title": "Toot", "title": "Publicação de %s" }, "settings": { @@ -596,7 +596,7 @@ "dark": "Sempre Escuro" }, "look_and_feel": { - "title": "Look and Feel", + "title": "Aparência e Comportamento", "use_system": "Usar configuração do sistema", "really_dark": "Bem escuro", "sorta_dark": "Meio escuro", @@ -604,10 +604,10 @@ }, "notifications": { "title": "Notificações", - "favorites": "Favorites my post", - "follows": "Follows me", - "boosts": "Reblogs my post", - "mentions": "Mentions me", + "favorites": "Favoritaram minha publicação", + "follows": "Me segue", + "boosts": "Rebloga minha publicação", + "mentions": "Me menciona", "trigger": { "anyone": "qualquer pessoa", "follower": "um seguidor", @@ -618,7 +618,7 @@ }, "preference": { "title": "Preferências", - "true_black_dark_mode": "True black dark mode", + "true_black_dark_mode": "Modo preto", "disable_avatar_animation": "Desativar fotos animadas", "disable_emoji_animation": "Desativar emojis animados", "using_default_browser": "Usar o navegador padrão pra abrir links", @@ -631,9 +631,9 @@ "privacy": "Política de privacidade" }, "spicy_zone": { - "title": "The Spicy Zone", - "clear": "Clear Media Cache", - "signout": "Sign Out" + "title": "A zona apimentada", + "clear": "Limpar cachê de mídia", + "signout": "Sair" } }, "footer": { @@ -678,7 +678,7 @@ }, "step_three": { "step_3_of_4": "Passo 3 de 4", - "are_there_any_posts_that_back_up_this_report": "Are there any posts that back up this report?", + "are_there_any_posts_that_back_up_this_report": "Existem postagens que apoiam essa denúncia?", "select_all_that_apply": "Selecione todos que se aplicam" }, "step_four": { @@ -692,31 +692,31 @@ "unfollowed": "Deixou de seguir", "unfollow_user": "Deixar de seguir %s", "mute_user": "Silenciar %s", - "you_wont_see_their_posts_or_reblogs_in_your_home_feed_they_wont_know_they_ve_been_muted": "You won’t see their posts or reblogs in your home feed. They won’t know they’ve been muted.", - "block_user": "Block %s", - "they_will_no_longer_be_able_to_follow_or_see_your_posts_but_they_can_see_if_theyve_been_blocked": "They will no longer be able to follow or see your posts, but they can see if they’ve been blocked.", - "while_we_review_this_you_can_take_action_against_user": "While we review this, you can take action against %s" + "you_wont_see_their_posts_or_reblogs_in_your_home_feed_they_wont_know_they_ve_been_muted": "Você não verá as postagens ou reblogs dessa conta na sua pagina inicial. Essa pessoa não saberá que foi silenciada.", + "block_user": "Bloquear %s", + "they_will_no_longer_be_able_to_follow_or_see_your_posts_but_they_can_see_if_theyve_been_blocked": "Essa conta não poderá mais te seguir ou ver suas postagens, mas ela poderá ver que foi bloqueada.", + "while_we_review_this_you_can_take_action_against_user": "Enquanto revisamos isso, você pode tomar medidas contra %s" } }, "preview": { "keyboard": { - "close_preview": "Close Preview", - "show_next": "Show Next", - "show_previous": "Show Previous" + "close_preview": "Fechar prévia", + "show_next": "Mostrar a próxima", + "show_previous": "Mostrar a anterior" } }, "account_list": { - "tab_bar_hint": "Current selected profile: %s. Double tap then hold to show account switcher", - "dismiss_account_switcher": "Dismiss Account Switcher", - "add_account": "Add Account" + "tab_bar_hint": "Perfil selecionado nesse momento: %s. Toque duas vezes e segure para mostrar o alternador de conta", + "dismiss_account_switcher": "Descartar alternador de conta", + "add_account": "Adicionar conta" }, "wizard": { - "new_in_mastodon": "New in Mastodon", - "multiple_account_switch_intro_description": "Switch between multiple accounts by holding the profile button.", - "accessibility_hint": "Double tap to dismiss this wizard" + "new_in_mastodon": "Novo no Mastodon", + "multiple_account_switch_intro_description": "Alterne entre múltiplas contas segurando o botão de perfil.", + "accessibility_hint": "Toque duas vezes para descartar este assistente" }, "bookmark": { - "title": "Bookmarks" + "title": "Marcados" } } } \ No newline at end of file From 3c190983dc9c3ea25aac3116832912bac46bbc3a Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Tue, 15 Nov 2022 16:48:18 +0100 Subject: [PATCH 408/598] New translations Localizable.stringsdict (Portuguese, Brazilian) --- .../input/pt-BR.lproj/Localizable.stringsdict | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Localization/StringsConvertor/input/pt-BR.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/pt-BR.lproj/Localizable.stringsdict index 9a72fe3bb..02fbf2d20 100644 --- a/Localization/StringsConvertor/input/pt-BR.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/pt-BR.lproj/Localizable.stringsdict @@ -88,9 +88,9 @@ NSStringFormatValueTypeKey ld one - Followed by %1$@, and another mutual + Seguido por %1$@, e outro em comum other - Followed by %1$@, and %ld mutuals + Seguido por %1$@, e %ld em comum plural.count.metric_formatted.post @@ -120,9 +120,9 @@ NSStringFormatValueTypeKey ld one - 1 media + 1 mídia other - %ld media + %ld mídias plural.count.post From d6aeb81011a3b1b3cff36dc4029efb081a12357f Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Tue, 15 Nov 2022 16:48:20 +0100 Subject: [PATCH 409/598] New translations Intents.strings (Portuguese, Brazilian) --- .../Intents/input/pt-BR.lproj/Intents.strings | 30 +++++++++---------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/Localization/StringsConvertor/Intents/input/pt-BR.lproj/Intents.strings b/Localization/StringsConvertor/Intents/input/pt-BR.lproj/Intents.strings index 4d4e426c6..3e6806953 100644 --- a/Localization/StringsConvertor/Intents/input/pt-BR.lproj/Intents.strings +++ b/Localization/StringsConvertor/Intents/input/pt-BR.lproj/Intents.strings @@ -4,9 +4,9 @@ "CsR7G2" = "Postar no Mastodon"; -"HZSGTr" = "What content to post?"; +"HZSGTr" = "Qual conteúdo a publicar?"; -"HdGikU" = "Posting failed"; +"HdGikU" = "Falha na publicação"; "KDNTJ4" = "Motivo da falha"; @@ -22,30 +22,30 @@ "ZbSjzC" = "Visibilidade"; -"Zo4jgJ" = "Post Visibility"; +"Zo4jgJ" = "Visibilidade da publicação"; -"apSxMG-dYQ5NN" = "There are ${count} options matching ‘Public’."; +"apSxMG-dYQ5NN" = "Existem ${count} opções correspondentes a ‘Público’."; -"apSxMG-ehFLjY" = "There are ${count} options matching ‘Followers Only’."; +"apSxMG-ehFLjY" = "Existem ${count} opções correspondentes a ‘Apenas para seguidores’."; -"ayoYEb-dYQ5NN" = "${content}, Public"; +"ayoYEb-dYQ5NN" = "${content}, Público"; -"ayoYEb-ehFLjY" = "${content}, Followers Only"; +"ayoYEb-ehFLjY" = "${content}, Apenas para seguidores"; -"dUyuGg" = "Post on Mastodon"; +"dUyuGg" = "Postar no Mastodon"; -"dYQ5NN" = "Public"; +"dYQ5NN" = "Público"; -"ehFLjY" = "Followers Only"; +"ehFLjY" = "Apenas para seguidores"; -"gfePDu" = "Posting failed. ${failureReason}"; +"gfePDu" = "Falha na publicação. ${failureReason}"; -"k7dbKQ" = "Post was sent successfully."; +"k7dbKQ" = "Publicação enviada com sucesso."; -"oGiqmY-dYQ5NN" = "Just to confirm, you wanted ‘Public’?"; +"oGiqmY-dYQ5NN" = "Só para confirmar, você queria ‘Público’?"; -"oGiqmY-ehFLjY" = "Just to confirm, you wanted ‘Followers Only’?"; +"oGiqmY-ehFLjY" = "Só para confirmar, você queria ‘Apenas para seguidores’?"; "rM6dvp" = "URL"; -"ryJLwG" = "Post was sent successfully. "; +"ryJLwG" = "Publicação enviada com sucesso. "; From 25b26e4c7dd1ebed18ceca89c48b22bbf04b07fc Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Tue, 15 Nov 2022 18:25:04 +0100 Subject: [PATCH 410/598] New translations app.json (Kurmanji (Kurdish)) --- .../StringsConvertor/input/kmr.lproj/app.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Localization/StringsConvertor/input/kmr.lproj/app.json b/Localization/StringsConvertor/input/kmr.lproj/app.json index 6f5fc8b97..6e299e016 100644 --- a/Localization/StringsConvertor/input/kmr.lproj/app.json +++ b/Localization/StringsConvertor/input/kmr.lproj/app.json @@ -385,10 +385,10 @@ "description_video": "Vîdyoyê ji bo kêmbînên dîtbar bide nasîn...", "load_failed": "Barkirin têk çû", "upload_failed": "Barkirin têk çû", - "can_not_recognize_this_media_attachment": "Can not recognize this media attachment", + "can_not_recognize_this_media_attachment": "Nikare ev pêveka medyayê nas bike", "attachment_too_large": "Pêvek pir mezin e", "compressing_state": "Compressing...", - "server_processing_state": "Server Processing..." + "server_processing_state": "Pêvajoya rajekar pêş de diçe..." }, "poll": { "duration_time": "Dirêjî: %s", @@ -399,7 +399,7 @@ "three_days": "3 Roj", "seven_days": "7 Roj", "option_number": "Vebijêrk %ld", - "the_poll_is_invalid": "The poll is invalid", + "the_poll_is_invalid": "Ev dengdayîn ne derbasdar e", "the_poll_has_empty_option": "The poll has empty option" }, "content_warning": { @@ -422,8 +422,8 @@ "enable_content_warning": "Hişyariya naverokê çalak bike", "disable_content_warning": "Hişyariya naverokê neçalak bike", "post_visibility_menu": "Kulîna xuyabûna şandiyê", - "post_options": "Post Options", - "posting_as": "Posting as %s" + "post_options": "Vebijêrkên şandiyê", + "posting_as": "Biweşîne wekî %s" }, "keyboard": { "discard_post": "Şandî paşguh bike", @@ -450,8 +450,8 @@ "content": "Naverok" }, "verified": { - "short": "Verified on %s", - "long": "Ownership of this link was checked on %s" + "short": "Hate piştrastkirin li ser %s", + "long": "Xwedaniya li vê girêdanê di %s de hatiye kontrolkirin" } }, "segmented_control": { From d4cecff07dafb8a483a2b9e80b897f12e2bc057a Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Tue, 15 Nov 2022 18:25:05 +0100 Subject: [PATCH 411/598] New translations Localizable.stringsdict (Kurmanji (Kurdish)) --- .../input/kmr.lproj/Localizable.stringsdict | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Localization/StringsConvertor/input/kmr.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/kmr.lproj/Localizable.stringsdict index 45d65bc71..c904186d8 100644 --- a/Localization/StringsConvertor/input/kmr.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/kmr.lproj/Localizable.stringsdict @@ -53,7 +53,7 @@ a11y.plural.count.characters_left NSStringLocalizedFormatKey - %#@character_count@ left + %#@character_count@ maye character_count NSStringFormatSpecTypeKey @@ -61,9 +61,9 @@ NSStringFormatValueTypeKey ld one - 1 character + 1 peyv other - %ld characters + %ld peyv plural.count.followed_by_and_mutual From 60efe4f02320b5005554a8030e09f9d8759a0776 Mon Sep 17 00:00:00 2001 From: Jed Fox Date: Tue, 15 Nov 2022 13:13:22 -0500 Subject: [PATCH 412/598] Fix status bar when dismissing --- ...tToMediaPreviewViewControllerAnimatedTransitioning.swift | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Mastodon/Scene/Transition/MediaPreview/MediaHostToMediaPreviewViewControllerAnimatedTransitioning.swift b/Mastodon/Scene/Transition/MediaPreview/MediaHostToMediaPreviewViewControllerAnimatedTransitioning.swift index 5381feb0d..de2cec6bf 100644 --- a/Mastodon/Scene/Transition/MediaPreview/MediaHostToMediaPreviewViewControllerAnimatedTransitioning.swift +++ b/Mastodon/Scene/Transition/MediaPreview/MediaHostToMediaPreviewViewControllerAnimatedTransitioning.swift @@ -131,6 +131,12 @@ extension MediaHostToMediaPreviewViewControllerAnimatedTransitioning { } return animator } + + if let toVC = transitionContext.viewController(forKey: .to) { + animator.addCompletion { _ in + toVC.setNeedsStatusBarAppearanceUpdate() + } + } // update close button UIView.animate(withDuration: 0.33, delay: 0, options: [.curveEaseInOut]) { From 9a08cb194b1e57d9ca840db1f4ff139ff06b7b87 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Tue, 15 Nov 2022 19:26:02 +0100 Subject: [PATCH 413/598] New translations app.json (Kurmanji (Kurdish)) --- Localization/StringsConvertor/input/kmr.lproj/app.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Localization/StringsConvertor/input/kmr.lproj/app.json b/Localization/StringsConvertor/input/kmr.lproj/app.json index 6e299e016..f52e1bdae 100644 --- a/Localization/StringsConvertor/input/kmr.lproj/app.json +++ b/Localization/StringsConvertor/input/kmr.lproj/app.json @@ -387,7 +387,7 @@ "upload_failed": "Barkirin têk çû", "can_not_recognize_this_media_attachment": "Nikare ev pêveka medyayê nas bike", "attachment_too_large": "Pêvek pir mezin e", - "compressing_state": "Compressing...", + "compressing_state": "Tê guvaştin...", "server_processing_state": "Pêvajoya rajekar pêş de diçe..." }, "poll": { @@ -400,7 +400,7 @@ "seven_days": "7 Roj", "option_number": "Vebijêrk %ld", "the_poll_is_invalid": "Ev dengdayîn ne derbasdar e", - "the_poll_has_empty_option": "The poll has empty option" + "the_poll_has_empty_option": "Vebijêrkên vê dengdayînê vala ne" }, "content_warning": { "placeholder": "Li vir hişyariyek hûrgilî binivîsine..." From ff5a0876c8cee61b341f8a932330c5184bb22098 Mon Sep 17 00:00:00 2001 From: Jed Fox Date: Tue, 15 Nov 2022 13:35:33 -0500 Subject: [PATCH 414/598] Change childForStatusBarStyle --- .../AdaptiveStatusBarStyleNavigationController.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mastodon/Scene/Share/NavigationController/AdaptiveStatusBarStyleNavigationController.swift b/Mastodon/Scene/Share/NavigationController/AdaptiveStatusBarStyleNavigationController.swift index 80df8938e..88441f9ad 100644 --- a/Mastodon/Scene/Share/NavigationController/AdaptiveStatusBarStyleNavigationController.swift +++ b/Mastodon/Scene/Share/NavigationController/AdaptiveStatusBarStyleNavigationController.swift @@ -14,7 +14,7 @@ class AdaptiveStatusBarStyleNavigationController: UINavigationController { // Make status bar style adaptive for child view controller // SeeAlso: `modalPresentationCapturesStatusBarAppearance` override var childForStatusBarStyle: UIViewController? { - visibleViewController + topViewController } } From 26d728731970c5565de03e37d061ec35445870d2 Mon Sep 17 00:00:00 2001 From: Nathan Mattes Date: Wed, 9 Nov 2022 14:13:33 +0100 Subject: [PATCH 415/598] Add what needs to be done for better onboarding (#540) --- Mastodon/Coordinator/SceneCoordinator.swift | 1 + Mastodon/Diffable/Onboarding/PickServerSection.swift | 1 + .../PickServer/MastodonPickServerViewController.swift | 7 ++++--- .../PickServer/MastodonPickServerViewModel.swift | 1 + .../PickServer/TableViewCell/PickServerCell.swift | 3 +++ .../PickServer/View/PickServerCategoryView.swift | 1 + .../Cell/MastodonRegisterAvatarTableViewCell.swift | 1 + .../Cell/MastodonRegisterPasswordHintTableViewCell.swift | 1 + .../Cell/MastodonRegisterTextFieldTableViewCell.swift | 4 ++-- .../Scene/Onboarding/Register/MastodonRegisterView.swift | 1 + .../Register/MastodonRegisterViewController.swift | 2 +- .../Register/MastodonRegisterViewModel+Diffable.swift | 1 + .../ServerRules/MastodonServerRulesViewController.swift | 2 +- .../Scene/Onboarding/Welcome/WelcomeViewController.swift | 5 +++-- .../MastodonSDK/Entity/Mastodon+Entity+Server.swift | 1 + 15 files changed, 23 insertions(+), 9 deletions(-) diff --git a/Mastodon/Coordinator/SceneCoordinator.swift b/Mastodon/Coordinator/SceneCoordinator.swift index 8a0825969..eca818fe5 100644 --- a/Mastodon/Coordinator/SceneCoordinator.swift +++ b/Mastodon/Coordinator/SceneCoordinator.swift @@ -149,6 +149,7 @@ extension SceneCoordinator { case mastodonConfirmEmail(viewModel: MastodonConfirmEmailViewModel) case mastodonResendEmail(viewModel: MastodonResendEmailViewModel) case mastodonWebView(viewModel: WebViewModel) + //TODO: @zeitschlag new case for welcome back select your server welcome-screen + Screen and ViewModel etc. // search case searchDetail(viewModel: SearchDetailViewModel) diff --git a/Mastodon/Diffable/Onboarding/PickServerSection.swift b/Mastodon/Diffable/Onboarding/PickServerSection.swift index 01a31f6f6..2eb6fa7a3 100644 --- a/Mastodon/Diffable/Onboarding/PickServerSection.swift +++ b/Mastodon/Diffable/Onboarding/PickServerSection.swift @@ -51,6 +51,7 @@ extension PickServerSection { extension PickServerSection { static func configure(cell: PickServerCell, server: Mastodon.Entity.Server, attribute: PickServerItem.ServerItemAttribute) { + //TODO: @zeitschlag configure cell if server doesn't allow registrations cell.domainLabel.text = server.domain cell.descriptionLabel.attributedText = { let content: String = { diff --git a/Mastodon/Scene/Onboarding/PickServer/MastodonPickServerViewController.swift b/Mastodon/Scene/Onboarding/PickServer/MastodonPickServerViewController.swift index eb26f75be..006d9bcb8 100644 --- a/Mastodon/Scene/Onboarding/PickServer/MastodonPickServerViewController.swift +++ b/Mastodon/Scene/Onboarding/PickServer/MastodonPickServerViewController.swift @@ -172,7 +172,7 @@ extension MastodonPickServerViewController { let alertController = UIAlertController(for: error, title: "Error", preferredStyle: .alert) let okAction = UIAlertAction(title: L10n.Common.Controls.Actions.ok, style: .default, handler: nil) alertController.addAction(okAction) - self.coordinator.present( + _ = self.coordinator.present( scene: .alertController(alertController: alertController), from: nil, transition: .alertController(animated: true, completion: nil) @@ -394,7 +394,7 @@ extension MastodonPickServerViewController { instance: response.instance.value, applicationToken: response.applicationToken.value ) - self.coordinator.present(scene: .mastodonServerRules(viewModel: mastodonServerRulesViewModel), from: self, transition: .show) + _ = self.coordinator.present(scene: .mastodonServerRules(viewModel: mastodonServerRulesViewModel), from: self, transition: .show) } else { let mastodonRegisterViewModel = MastodonRegisterViewModel( context: self.context, @@ -403,7 +403,7 @@ extension MastodonPickServerViewController { instance: response.instance.value, applicationToken: response.applicationToken.value ) - self.coordinator.present(scene: .mastodonRegister(viewModel: mastodonRegisterViewModel), from: nil, transition: .show) + _ = self.coordinator.present(scene: .mastodonRegister(viewModel: mastodonRegisterViewModel), from: nil, transition: .show) } } .store(in: &disposeBag) @@ -499,6 +499,7 @@ extension MastodonPickServerViewController: PickServerServerSectionTableHeaderVi } func pickServerServerSectionTableHeaderView(_ headerView: PickServerServerSectionTableHeaderView, searchTextDidChange searchText: String?) { + //TODO: @zeitschlag Deselect server? viewModel.searchText.send(searchText ?? "") } } diff --git a/Mastodon/Scene/Onboarding/PickServer/MastodonPickServerViewModel.swift b/Mastodon/Scene/Onboarding/PickServer/MastodonPickServerViewModel.swift index 50c1d7aac..719de4cb4 100644 --- a/Mastodon/Scene/Onboarding/PickServer/MastodonPickServerViewModel.swift +++ b/Mastodon/Scene/Onboarding/PickServer/MastodonPickServerViewModel.swift @@ -178,6 +178,7 @@ extension MastodonPickServerViewModel { .compactMap { [weak self] searchText -> AnyPublisher, Error>, Never>? in // Check if searchText is a valid mastodon server domain guard let self = self else { return nil } + //TODO: @zeitschlag Also allow search for incomplete URLs? guard let domain = AuthenticationViewModel.parseDomain(from: searchText) else { return Just(Result.failure(APIService.APIError.implicit(.badRequest))).eraseToAnyPublisher() } diff --git a/Mastodon/Scene/Onboarding/PickServer/TableViewCell/PickServerCell.swift b/Mastodon/Scene/Onboarding/PickServer/TableViewCell/PickServerCell.swift index 669067770..f33b1d2e2 100644 --- a/Mastodon/Scene/Onboarding/PickServer/TableViewCell/PickServerCell.swift +++ b/Mastodon/Scene/Onboarding/PickServer/TableViewCell/PickServerCell.swift @@ -14,6 +14,7 @@ import Kanna import MastodonAsset import MastodonLocalization +//TODO: @zeitschlag Remove Delegate protocol PickServerCellDelegate: AnyObject { // func pickServerCell(_ cell: PickServerCell, expandButtonPressed button: UIButton) } @@ -88,6 +89,8 @@ class PickServerCell: UITableViewCell { label.adjustsFontForContentSizeCategory = true return label }() + + //TODO: @zeitschlag New label for "Registrations closed" private var collapseConstraints: [NSLayoutConstraint] = [] private var expandConstraints: [NSLayoutConstraint] = [] diff --git a/Mastodon/Scene/Onboarding/PickServer/View/PickServerCategoryView.swift b/Mastodon/Scene/Onboarding/PickServer/View/PickServerCategoryView.swift index 9d6cfc85f..fca4bbf3a 100644 --- a/Mastodon/Scene/Onboarding/PickServer/View/PickServerCategoryView.swift +++ b/Mastodon/Scene/Onboarding/PickServer/View/PickServerCategoryView.swift @@ -19,6 +19,7 @@ class PickServerCategoryView: UIView { return view }() + //TODO: @zeitschlag Remove emojiLabel let emojiLabel: UILabel = { let label = UILabel() label.textAlignment = .center diff --git a/Mastodon/Scene/Onboarding/Register/Cell/MastodonRegisterAvatarTableViewCell.swift b/Mastodon/Scene/Onboarding/Register/Cell/MastodonRegisterAvatarTableViewCell.swift index 154385e6a..c4754bb35 100644 --- a/Mastodon/Scene/Onboarding/Register/Cell/MastodonRegisterAvatarTableViewCell.swift +++ b/Mastodon/Scene/Onboarding/Register/Cell/MastodonRegisterAvatarTableViewCell.swift @@ -10,6 +10,7 @@ import Combine import MastodonAsset import MastodonLocalization +//TODO: @zeitschlag Remove final class MastodonRegisterAvatarTableViewCell: UITableViewCell { static let containerSize = CGSize(width: 88, height: 88) diff --git a/Mastodon/Scene/Onboarding/Register/Cell/MastodonRegisterPasswordHintTableViewCell.swift b/Mastodon/Scene/Onboarding/Register/Cell/MastodonRegisterPasswordHintTableViewCell.swift index 1324c2822..ba088f061 100644 --- a/Mastodon/Scene/Onboarding/Register/Cell/MastodonRegisterPasswordHintTableViewCell.swift +++ b/Mastodon/Scene/Onboarding/Register/Cell/MastodonRegisterPasswordHintTableViewCell.swift @@ -9,6 +9,7 @@ import UIKit import MastodonAsset import MastodonLocalization +//TODO: @zeitschlag Remove final class MastodonRegisterPasswordHintTableViewCell: UITableViewCell { let passwordRuleLabel: UILabel = { diff --git a/Mastodon/Scene/Onboarding/Register/Cell/MastodonRegisterTextFieldTableViewCell.swift b/Mastodon/Scene/Onboarding/Register/Cell/MastodonRegisterTextFieldTableViewCell.swift index 15f234834..9bbdd8044 100644 --- a/Mastodon/Scene/Onboarding/Register/Cell/MastodonRegisterTextFieldTableViewCell.swift +++ b/Mastodon/Scene/Onboarding/Register/Cell/MastodonRegisterTextFieldTableViewCell.swift @@ -11,13 +11,13 @@ import MastodonUI import MastodonAsset import MastodonLocalization -final class MastodonRegisterTextFieldTableViewCell: UITableViewCell { +//TODO: @zeitschlag Removefinal class MastodonRegisterTextFieldTableViewCell: UITableViewCell { static let textFieldHeight: CGFloat = 50 static let textFieldLabelFont = UIFontMetrics(forTextStyle: .headline).scaledFont(for: .systemFont(ofSize: 17, weight: .semibold), maximumPointSize: 22) var disposeBag = Set() - + let textFieldShadowContainer = ShadowBackgroundContainer() let textField: UITextField = { let textField = UITextField() diff --git a/Mastodon/Scene/Onboarding/Register/MastodonRegisterView.swift b/Mastodon/Scene/Onboarding/Register/MastodonRegisterView.swift index 2be7c61d7..787b79bd8 100644 --- a/Mastodon/Scene/Onboarding/Register/MastodonRegisterView.swift +++ b/Mastodon/Scene/Onboarding/Register/MastodonRegisterView.swift @@ -175,6 +175,7 @@ struct MastodonRegisterView: View { case .valid: return Color(Asset.Colors.TextField.valid.color) } }() + //TODO: @zeitschlag Replace shadow with border Color(Asset.Scene.Onboarding.textFieldBackground.color) .cornerRadius(10) .shadow(color: shadowColor, radius: 1, x: 0, y: 2) diff --git a/Mastodon/Scene/Onboarding/Register/MastodonRegisterViewController.swift b/Mastodon/Scene/Onboarding/Register/MastodonRegisterViewController.swift index 9b10bd48e..758c20888 100644 --- a/Mastodon/Scene/Onboarding/Register/MastodonRegisterViewController.swift +++ b/Mastodon/Scene/Onboarding/Register/MastodonRegisterViewController.swift @@ -145,7 +145,7 @@ extension MastodonRegisterViewController { let alertController = UIAlertController(for: error, title: "Sign Up Failure", preferredStyle: .alert) let okAction = UIAlertAction(title: L10n.Common.Controls.Actions.ok, style: .default, handler: nil) alertController.addAction(okAction) - self.coordinator.present( + _ = self.coordinator.present( scene: .alertController(alertController: alertController), from: nil, transition: .alertController(animated: true, completion: nil) diff --git a/Mastodon/Scene/Onboarding/Register/MastodonRegisterViewModel+Diffable.swift b/Mastodon/Scene/Onboarding/Register/MastodonRegisterViewModel+Diffable.swift index dda59843a..f1e0d8903 100644 --- a/Mastodon/Scene/Onboarding/Register/MastodonRegisterViewModel+Diffable.swift +++ b/Mastodon/Scene/Onboarding/Register/MastodonRegisterViewModel+Diffable.swift @@ -11,6 +11,7 @@ import MastodonAsset import MastodonLocalization extension MastodonRegisterViewModel { + //TODO: @zeitschlag Remove, as the screen is based on SwiftUI now func setupDiffableDataSource( tableView: UITableView ) { diff --git a/Mastodon/Scene/Onboarding/ServerRules/MastodonServerRulesViewController.swift b/Mastodon/Scene/Onboarding/ServerRules/MastodonServerRulesViewController.swift index 0d4e27d98..e22ea5748 100644 --- a/Mastodon/Scene/Onboarding/ServerRules/MastodonServerRulesViewController.swift +++ b/Mastodon/Scene/Onboarding/ServerRules/MastodonServerRulesViewController.swift @@ -127,7 +127,7 @@ extension MastodonServerRulesViewController { instance: viewModel.instance, applicationToken: viewModel.applicationToken ) - coordinator.present(scene: .mastodonRegister(viewModel: viewModel), from: self, transition: .show) + _ = coordinator.present(scene: .mastodonRegister(viewModel: viewModel), from: self, transition: .show) } } diff --git a/Mastodon/Scene/Onboarding/Welcome/WelcomeViewController.swift b/Mastodon/Scene/Onboarding/Welcome/WelcomeViewController.swift index a2b8df83a..612189243 100644 --- a/Mastodon/Scene/Onboarding/Welcome/WelcomeViewController.swift +++ b/Mastodon/Scene/Onboarding/Welcome/WelcomeViewController.swift @@ -317,12 +317,13 @@ extension WelcomeViewController { extension WelcomeViewController { @objc private func signUpButtonDidClicked(_ sender: UIButton) { - coordinator.present(scene: .mastodonPickServer(viewMode: MastodonPickServerViewModel(context: context, mode: .signUp)), from: self, transition: .show) + _ = coordinator.present(scene: .mastodonPickServer(viewMode: MastodonPickServerViewModel(context: context, mode: .signUp)), from: self, transition: .show) } @objc private func signInButtonDidClicked(_ sender: UIButton) { - coordinator.present(scene: .mastodonPickServer(viewMode: MastodonPickServerViewModel(context: context, mode: .signIn)), from: self, transition: .show) + //TODO: @zeitschlag Present new login-scene + _ = coordinator.present(scene: .mastodonPickServer(viewMode: MastodonPickServerViewModel(context: context, mode: .signIn)), from: self, transition: .show) } @objc diff --git a/MastodonSDK/Sources/MastodonSDK/Entity/Mastodon+Entity+Server.swift b/MastodonSDK/Sources/MastodonSDK/Entity/Mastodon+Entity+Server.swift index 2d1f9953f..da1f0dfad 100644 --- a/MastodonSDK/Sources/MastodonSDK/Entity/Mastodon+Entity+Server.swift +++ b/MastodonSDK/Sources/MastodonSDK/Entity/Mastodon+Entity+Server.swift @@ -22,6 +22,7 @@ extension Mastodon.Entity { public let approvalRequired: Bool public let language: String public let category: String + //TODO: @zeitschlag Is there a way to figure out in advance if a server accepts new registrations? Right now we'd have to query the server and it responts with a `AuthenticationViewModel.AuthenticationError.registrationClosed` enum CodingKeys: String, CodingKey { case domain From 83de4049d83ee45ca991ac1f12bfb21793a47c08 Mon Sep 17 00:00:00 2001 From: Nathan Mattes Date: Wed, 9 Nov 2022 16:05:36 +0100 Subject: [PATCH 416/598] Remove emoji-label (#540) --- .../Diffable/Onboarding/CategoryPickerSection.swift | 1 - .../PickServer/View/PickServerCategoryView.swift | 12 ++---------- .../PickServerServerSectionTableHeaderView.swift | 5 ++--- 3 files changed, 4 insertions(+), 14 deletions(-) diff --git a/Mastodon/Diffable/Onboarding/CategoryPickerSection.swift b/Mastodon/Diffable/Onboarding/CategoryPickerSection.swift index b53b378d6..191d4d166 100644 --- a/Mastodon/Diffable/Onboarding/CategoryPickerSection.swift +++ b/Mastodon/Diffable/Onboarding/CategoryPickerSection.swift @@ -21,7 +21,6 @@ extension CategoryPickerSection { UICollectionViewDiffableDataSource(collectionView: collectionView) { [weak dependency] collectionView, indexPath, item -> UICollectionViewCell? in guard let _ = dependency else { return nil } let cell = collectionView.dequeueReusableCell(withReuseIdentifier: String(describing: PickServerCategoryCollectionViewCell.self), for: indexPath) as! PickServerCategoryCollectionViewCell - cell.categoryView.emojiLabel.text = item.emoji cell.categoryView.titleLabel.text = item.title cell.observe(\.isSelected, options: [.initial, .new]) { cell, _ in cell.categoryView.highlightedIndicatorView.alpha = cell.isSelected ? 1 : 0 diff --git a/Mastodon/Scene/Onboarding/PickServer/View/PickServerCategoryView.swift b/Mastodon/Scene/Onboarding/PickServer/View/PickServerCategoryView.swift index fca4bbf3a..bfa3343bd 100644 --- a/Mastodon/Scene/Onboarding/PickServer/View/PickServerCategoryView.swift +++ b/Mastodon/Scene/Onboarding/PickServer/View/PickServerCategoryView.swift @@ -19,14 +19,6 @@ class PickServerCategoryView: UIView { return view }() - //TODO: @zeitschlag Remove emojiLabel - let emojiLabel: UILabel = { - let label = UILabel() - label.textAlignment = .center - label.font = .systemFont(ofSize: 34, weight: .regular) - return label - }() - let titleLabel: UILabel = { let label = UILabel() label.textAlignment = .center @@ -51,6 +43,7 @@ extension PickServerCategoryView { private func configure() { let container = UIStackView() container.axis = .vertical + container.spacing = 2 container.distribution = .fillProportionally container.translatesAutoresizingMaskIntoConstraints = false @@ -62,12 +55,11 @@ extension PickServerCategoryView { container.bottomAnchor.constraint(equalTo: bottomAnchor), ]) - container.addArrangedSubview(emojiLabel) container.addArrangedSubview(titleLabel) highlightedIndicatorView.translatesAutoresizingMaskIntoConstraints = false container.addArrangedSubview(highlightedIndicatorView) NSLayoutConstraint.activate([ - highlightedIndicatorView.heightAnchor.constraint(equalToConstant: 3).priority(.required - 1), + highlightedIndicatorView.heightAnchor.constraint(equalToConstant: 3)//.priority(.required - 1), ]) titleLabel.setContentHuggingPriority(.required - 1, for: .vertical) } diff --git a/Mastodon/Scene/Onboarding/PickServer/View/PickServerServerSectionTableHeaderView.swift b/Mastodon/Scene/Onboarding/PickServer/View/PickServerServerSectionTableHeaderView.swift index d50c62afe..ae8c16bb8 100644 --- a/Mastodon/Scene/Onboarding/PickServer/View/PickServerServerSectionTableHeaderView.swift +++ b/Mastodon/Scene/Onboarding/PickServer/View/PickServerServerSectionTableHeaderView.swift @@ -19,7 +19,7 @@ protocol PickServerServerSectionTableHeaderViewDelegate: AnyObject { final class PickServerServerSectionTableHeaderView: UIView { - static let collectionViewHeight: CGFloat = 88 + static let collectionViewHeight: CGFloat = 30 static let searchTextFieldHeight: CGFloat = 38 static let spacing: CGFloat = 11 @@ -177,7 +177,6 @@ extension PickServerServerSectionTableHeaderView { extension PickServerServerSectionTableHeaderView: UICollectionViewDelegate { func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) { - os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s: indexPath: %s", ((#file as NSString).lastPathComponent), #line, #function, indexPath.debugDescription) collectionView.selectItem(at: indexPath, animated: true, scrollPosition: .centeredHorizontally) delegate?.pickServerServerSectionTableHeaderView(self, collectionView: collectionView, didSelectItemAt: indexPath) } @@ -205,5 +204,5 @@ extension PickServerServerSectionTableHeaderView: UITextFieldDelegate { textField.resignFirstResponder() return false } - + } From 2d17253c65dea6309e4c7a59a9a52a39582487b0 Mon Sep 17 00:00:00 2001 From: Nathan Mattes Date: Wed, 9 Nov 2022 16:13:05 +0100 Subject: [PATCH 417/598] Remove obsolete code (#540) --- Mastodon/Diffable/Onboarding/PickServerSection.swift | 7 ++----- .../PickServer/MastodonPickServerViewController.swift | 8 +------- .../PickServer/MastodonPickServerViewModel+Diffable.swift | 6 ++---- .../PickServer/TableViewCell/PickServerCell.swift | 7 ------- 4 files changed, 5 insertions(+), 23 deletions(-) diff --git a/Mastodon/Diffable/Onboarding/PickServerSection.swift b/Mastodon/Diffable/Onboarding/PickServerSection.swift index 2eb6fa7a3..24e4d2ffb 100644 --- a/Mastodon/Diffable/Onboarding/PickServerSection.swift +++ b/Mastodon/Diffable/Onboarding/PickServerSection.swift @@ -18,16 +18,14 @@ enum PickServerSection: Equatable, Hashable { extension PickServerSection { static func tableViewDiffableDataSource( for tableView: UITableView, - dependency: NeedsDependency, - pickServerCellDelegate: PickServerCellDelegate + dependency: NeedsDependency ) -> UITableViewDiffableDataSource { tableView.register(OnboardingHeadlineTableViewCell.self, forCellReuseIdentifier: String(describing: OnboardingHeadlineTableViewCell.self)) tableView.register(PickServerCell.self, forCellReuseIdentifier: String(describing: PickServerCell.self)) tableView.register(PickServerLoaderTableViewCell.self, forCellReuseIdentifier: String(describing: PickServerLoaderTableViewCell.self)) return UITableViewDiffableDataSource(tableView: tableView) { [ - weak dependency, - weak pickServerCellDelegate + weak dependency ] tableView, indexPath, item -> UITableViewCell? in guard let _ = dependency else { return nil } switch item { @@ -37,7 +35,6 @@ extension PickServerSection { case .server(let server, let attribute): let cell = tableView.dequeueReusableCell(withIdentifier: String(describing: PickServerCell.self), for: indexPath) as! PickServerCell PickServerSection.configure(cell: cell, server: server, attribute: attribute) - cell.delegate = pickServerCellDelegate return cell case .loader(let attribute): let cell = tableView.dequeueReusableCell(withIdentifier: String(describing: PickServerLoaderTableViewCell.self), for: indexPath) as! PickServerLoaderTableViewCell diff --git a/Mastodon/Scene/Onboarding/PickServer/MastodonPickServerViewController.swift b/Mastodon/Scene/Onboarding/PickServer/MastodonPickServerViewController.swift index 006d9bcb8..a3779dfe6 100644 --- a/Mastodon/Scene/Onboarding/PickServer/MastodonPickServerViewController.swift +++ b/Mastodon/Scene/Onboarding/PickServer/MastodonPickServerViewController.swift @@ -143,8 +143,7 @@ extension MastodonPickServerViewController { viewModel.setupDiffableDataSource( for: tableView, dependency: self, - pickServerServerSectionTableHeaderViewDelegate: self, - pickServerCellDelegate: self + pickServerServerSectionTableHeaderViewDelegate: self ) KeyboardResponderService @@ -504,11 +503,6 @@ extension MastodonPickServerViewController: PickServerServerSectionTableHeaderVi } } -// MARK: - PickServerCellDelegate -extension MastodonPickServerViewController: PickServerCellDelegate { - -} - // MARK: - OnboardingViewControllerAppearance extension MastodonPickServerViewController: OnboardingViewControllerAppearance { } diff --git a/Mastodon/Scene/Onboarding/PickServer/MastodonPickServerViewModel+Diffable.swift b/Mastodon/Scene/Onboarding/PickServer/MastodonPickServerViewModel+Diffable.swift index 35de40b8f..7edbfd2ac 100644 --- a/Mastodon/Scene/Onboarding/PickServer/MastodonPickServerViewModel+Diffable.swift +++ b/Mastodon/Scene/Onboarding/PickServer/MastodonPickServerViewModel+Diffable.swift @@ -13,8 +13,7 @@ extension MastodonPickServerViewModel { func setupDiffableDataSource( for tableView: UITableView, dependency: NeedsDependency, - pickServerServerSectionTableHeaderViewDelegate: PickServerServerSectionTableHeaderViewDelegate, - pickServerCellDelegate: PickServerCellDelegate + pickServerServerSectionTableHeaderViewDelegate: PickServerServerSectionTableHeaderViewDelegate ) { // set section header serverSectionHeaderView.diffableDataSource = CategoryPickerSection.collectionViewDiffableDataSource( @@ -34,8 +33,7 @@ extension MastodonPickServerViewModel { // set tableView diffableDataSource = PickServerSection.tableViewDiffableDataSource( for: tableView, - dependency: dependency, - pickServerCellDelegate: pickServerCellDelegate + dependency: dependency ) var snapshot = NSDiffableDataSourceSnapshot() diff --git a/Mastodon/Scene/Onboarding/PickServer/TableViewCell/PickServerCell.swift b/Mastodon/Scene/Onboarding/PickServer/TableViewCell/PickServerCell.swift index f33b1d2e2..e199ea96c 100644 --- a/Mastodon/Scene/Onboarding/PickServer/TableViewCell/PickServerCell.swift +++ b/Mastodon/Scene/Onboarding/PickServer/TableViewCell/PickServerCell.swift @@ -14,15 +14,8 @@ import Kanna import MastodonAsset import MastodonLocalization -//TODO: @zeitschlag Remove Delegate -protocol PickServerCellDelegate: AnyObject { -// func pickServerCell(_ cell: PickServerCell, expandButtonPressed button: UIButton) -} - class PickServerCell: UITableViewCell { - weak var delegate: PickServerCellDelegate? - var disposeBag = Set() let containerView: UIStackView = { From 366070d12e1d2838c490ac5ac053db8fe22f86d3 Mon Sep 17 00:00:00 2001 From: Nathan Mattes Date: Wed, 9 Nov 2022 16:18:19 +0100 Subject: [PATCH 418/598] Remove obsolete cells (#540) --- Mastodon.xcodeproj/project.pbxproj | 14 -- .../MastodonRegisterAvatarTableViewCell.swift | 117 --------------- ...donRegisterPasswordHintTableViewCell.swift | 51 ------- ...stodonRegisterTextFieldTableViewCell.swift | 142 ------------------ .../MastodonRegisterViewModel+Diffable.swift | 140 ----------------- 5 files changed, 464 deletions(-) delete mode 100644 Mastodon/Scene/Onboarding/Register/Cell/MastodonRegisterAvatarTableViewCell.swift delete mode 100644 Mastodon/Scene/Onboarding/Register/Cell/MastodonRegisterPasswordHintTableViewCell.swift delete mode 100644 Mastodon/Scene/Onboarding/Register/Cell/MastodonRegisterTextFieldTableViewCell.swift diff --git a/Mastodon.xcodeproj/project.pbxproj b/Mastodon.xcodeproj/project.pbxproj index c8b2674b5..f622c97da 100644 --- a/Mastodon.xcodeproj/project.pbxproj +++ b/Mastodon.xcodeproj/project.pbxproj @@ -632,7 +632,6 @@ DB0618022785A7100030EE79 /* RegisterSection.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RegisterSection.swift; sourceTree = ""; }; DB0618042785A73D0030EE79 /* RegisterItem.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RegisterItem.swift; sourceTree = ""; }; DB0618062785A8880030EE79 /* MastodonRegisterViewModel+Diffable.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "MastodonRegisterViewModel+Diffable.swift"; sourceTree = ""; }; - DB0618092785B2AB0030EE79 /* MastodonRegisterAvatarTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MastodonRegisterAvatarTableViewCell.swift; sourceTree = ""; }; DB0A322D280EE9FD001729D2 /* DiscoveryIntroBannerView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DiscoveryIntroBannerView.swift; sourceTree = ""; }; DB0C947626A7FE840088FB11 /* NotificationAvatarButton.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NotificationAvatarButton.swift; sourceTree = ""; }; DB0EF72A26FDB1D200347686 /* SidebarListCollectionViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SidebarListCollectionViewCell.swift; sourceTree = ""; }; @@ -855,8 +854,6 @@ DB7A9F922818F33C0016AF98 /* MastodonServerRulesViewController+Debug.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "MastodonServerRulesViewController+Debug.swift"; sourceTree = ""; }; DB7F48442620241000796008 /* ProfileHeaderViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProfileHeaderViewModel.swift; sourceTree = ""; }; DB8190C52601FF0400020C08 /* AttachmentContainerView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AttachmentContainerView.swift; sourceTree = ""; }; - DB8481142788121200BBEABA /* MastodonRegisterTextFieldTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MastodonRegisterTextFieldTableViewCell.swift; sourceTree = ""; }; - DB84811627883C2600BBEABA /* MastodonRegisterPasswordHintTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MastodonRegisterPasswordHintTableViewCell.swift; sourceTree = ""; }; DB848E32282B62A800A302CC /* ReportResultView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ReportResultView.swift; sourceTree = ""; }; DB852D1826FAEB6B00FC9D81 /* SidebarViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SidebarViewController.swift; sourceTree = ""; }; DB852D1B26FB021500FC9D81 /* RootSplitViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RootSplitViewController.swift; sourceTree = ""; }; @@ -1564,16 +1561,6 @@ path = Cell; sourceTree = ""; }; - DB06180B2785B2AF0030EE79 /* Cell */ = { - isa = PBXGroup; - children = ( - DB0618092785B2AB0030EE79 /* MastodonRegisterAvatarTableViewCell.swift */, - DB8481142788121200BBEABA /* MastodonRegisterTextFieldTableViewCell.swift */, - DB84811627883C2600BBEABA /* MastodonRegisterPasswordHintTableViewCell.swift */, - ); - path = Cell; - sourceTree = ""; - }; DB0A322F280EEA00001729D2 /* View */ = { isa = PBXGroup; children = ( @@ -2540,7 +2527,6 @@ DBE0821A25CD382900FD6BBD /* Register */ = { isa = PBXGroup; children = ( - DB06180B2785B2AF0030EE79 /* Cell */, DBE0821425CD382600FD6BBD /* MastodonRegisterViewController.swift */, 2D939AE725EE1CF80076FA61 /* MastodonRegisterViewController+Avatar.swift */, DBE0822325CD3F1E00FD6BBD /* MastodonRegisterViewModel.swift */, diff --git a/Mastodon/Scene/Onboarding/Register/Cell/MastodonRegisterAvatarTableViewCell.swift b/Mastodon/Scene/Onboarding/Register/Cell/MastodonRegisterAvatarTableViewCell.swift deleted file mode 100644 index c4754bb35..000000000 --- a/Mastodon/Scene/Onboarding/Register/Cell/MastodonRegisterAvatarTableViewCell.swift +++ /dev/null @@ -1,117 +0,0 @@ -// -// MastodonRegisterAvatarTableViewCell.swift -// Mastodon -// -// Created by MainasuK on 2022-1-5. -// - -import UIKit -import Combine -import MastodonAsset -import MastodonLocalization - -//TODO: @zeitschlag Remove -final class MastodonRegisterAvatarTableViewCell: UITableViewCell { - - static let containerSize = CGSize(width: 88, height: 88) - - var disposeBag = Set() - - let containerView: UIView = { - let view = UIView() - view.backgroundColor = .clear - view.layer.masksToBounds = true - view.layer.cornerCurve = .continuous - view.layer.cornerRadius = 22 - return view - }() - - let avatarButton: HighlightDimmableButton = { - let button = HighlightDimmableButton() - button.backgroundColor = Asset.Theme.Mastodon.secondaryGroupedSystemBackground.color - button.setImage(Asset.Scene.Onboarding.avatarPlaceholder.image, for: .normal) - return button - }() - - let editBannerView: UIView = { - let bannerView = UIView() - bannerView.backgroundColor = UIColor.black.withAlphaComponent(0.5) - bannerView.isUserInteractionEnabled = false - - let label: UILabel = { - let label = UILabel() - label.textColor = .white - label.text = L10n.Common.Controls.Actions.edit - label.font = .systemFont(ofSize: 13, weight: .semibold) - label.textAlignment = .center - label.minimumScaleFactor = 0.5 - label.adjustsFontSizeToFitWidth = true - return label - }() - - label.translatesAutoresizingMaskIntoConstraints = false - bannerView.addSubview(label) - NSLayoutConstraint.activate([ - label.topAnchor.constraint(equalTo: bannerView.topAnchor), - label.leadingAnchor.constraint(equalTo: bannerView.leadingAnchor), - label.trailingAnchor.constraint(equalTo: bannerView.trailingAnchor), - label.bottomAnchor.constraint(equalTo: bannerView.bottomAnchor), - ]) - - return bannerView - }() - - override func prepareForReuse() { - super.prepareForReuse() - - disposeBag.removeAll() - } - - override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) { - super.init(style: style, reuseIdentifier: reuseIdentifier) - _init() - } - - required init?(coder: NSCoder) { - super.init(coder: coder) - _init() - } - -} - -extension MastodonRegisterAvatarTableViewCell { - - private func _init() { - selectionStyle = .none - backgroundColor = .clear - - containerView.translatesAutoresizingMaskIntoConstraints = false - contentView.addSubview(containerView) - NSLayoutConstraint.activate([ - containerView.topAnchor.constraint(equalTo: contentView.topAnchor, constant: 22), - containerView.centerXAnchor.constraint(equalTo: contentView.centerXAnchor), - contentView.bottomAnchor.constraint(equalTo: containerView.bottomAnchor, constant: 8), - containerView.widthAnchor.constraint(equalToConstant: MastodonRegisterAvatarTableViewCell.containerSize.width).priority(.required - 1), - containerView.heightAnchor.constraint(equalToConstant: MastodonRegisterAvatarTableViewCell.containerSize.height).priority(.required - 1), - ]) - - avatarButton.translatesAutoresizingMaskIntoConstraints = false - containerView.addSubview(avatarButton) - NSLayoutConstraint.activate([ - avatarButton.topAnchor.constraint(equalTo: containerView.topAnchor), - avatarButton.leadingAnchor.constraint(equalTo: containerView.leadingAnchor), - avatarButton.trailingAnchor.constraint(equalTo: containerView.trailingAnchor), - avatarButton.bottomAnchor.constraint(equalTo: containerView.bottomAnchor), - ]) - - editBannerView.translatesAutoresizingMaskIntoConstraints = false - containerView.addSubview(editBannerView) - NSLayoutConstraint.activate([ - editBannerView.leadingAnchor.constraint(equalTo: containerView.leadingAnchor), - editBannerView.trailingAnchor.constraint(equalTo: containerView.trailingAnchor), - editBannerView.bottomAnchor.constraint(equalTo: containerView.bottomAnchor), - editBannerView.heightAnchor.constraint(equalToConstant: 22), - ]) - } - -} diff --git a/Mastodon/Scene/Onboarding/Register/Cell/MastodonRegisterPasswordHintTableViewCell.swift b/Mastodon/Scene/Onboarding/Register/Cell/MastodonRegisterPasswordHintTableViewCell.swift deleted file mode 100644 index ba088f061..000000000 --- a/Mastodon/Scene/Onboarding/Register/Cell/MastodonRegisterPasswordHintTableViewCell.swift +++ /dev/null @@ -1,51 +0,0 @@ -// -// MastodonRegisterPasswordHintTableViewCell.swift -// Mastodon -// -// Created by MainasuK on 2022-1-7. -// - -import UIKit -import MastodonAsset -import MastodonLocalization - -//TODO: @zeitschlag Remove -final class MastodonRegisterPasswordHintTableViewCell: UITableViewCell { - - let passwordRuleLabel: UILabel = { - let label = UILabel() - label.font = .preferredFont(forTextStyle: .footnote) - label.textColor = Asset.Colors.Label.secondary.color - label.text = L10n.Scene.Register.Input.Password.hint - return label - }() - - override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) { - super.init(style: style, reuseIdentifier: reuseIdentifier) - _init() - } - - required init?(coder: NSCoder) { - super.init(coder: coder) - _init() - } - -} - -extension MastodonRegisterPasswordHintTableViewCell { - - private func _init() { - selectionStyle = .none - backgroundColor = .clear - - passwordRuleLabel.translatesAutoresizingMaskIntoConstraints = false - contentView.addSubview(passwordRuleLabel) - NSLayoutConstraint.activate([ - passwordRuleLabel.topAnchor.constraint(equalTo: contentView.topAnchor), - passwordRuleLabel.leadingAnchor.constraint(equalTo: contentView.readableContentGuide.leadingAnchor), - passwordRuleLabel.trailingAnchor.constraint(equalTo: contentView.readableContentGuide.trailingAnchor), - passwordRuleLabel.bottomAnchor.constraint(equalTo: contentView.bottomAnchor), - ]) - } - -} diff --git a/Mastodon/Scene/Onboarding/Register/Cell/MastodonRegisterTextFieldTableViewCell.swift b/Mastodon/Scene/Onboarding/Register/Cell/MastodonRegisterTextFieldTableViewCell.swift deleted file mode 100644 index 9bbdd8044..000000000 --- a/Mastodon/Scene/Onboarding/Register/Cell/MastodonRegisterTextFieldTableViewCell.swift +++ /dev/null @@ -1,142 +0,0 @@ -// -// MastodonRegisterTextFieldTableViewCell.swift -// Mastodon -// -// Created by MainasuK on 2022-1-7. -// - -import UIKit -import Combine -import MastodonUI -import MastodonAsset -import MastodonLocalization - -//TODO: @zeitschlag Removefinal class MastodonRegisterTextFieldTableViewCell: UITableViewCell { - - static let textFieldHeight: CGFloat = 50 - static let textFieldLabelFont = UIFontMetrics(forTextStyle: .headline).scaledFont(for: .systemFont(ofSize: 17, weight: .semibold), maximumPointSize: 22) - - var disposeBag = Set() - - let textFieldShadowContainer = ShadowBackgroundContainer() - let textField: UITextField = { - let textField = UITextField() - textField.font = MastodonRegisterTextFieldTableViewCell.textFieldLabelFont - textField.backgroundColor = Asset.Scene.Onboarding.textFieldBackground.color - textField.layer.masksToBounds = true - textField.layer.cornerRadius = 10 - textField.layer.cornerCurve = .continuous - return textField - }() - - override func prepareForReuse() { - super.prepareForReuse() - - disposeBag.removeAll() - textFieldShadowContainer.shadowColor = .black - textFieldShadowContainer.shadowAlpha = 0.25 - resetTextField() - } - - override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) { - super.init(style: style, reuseIdentifier: reuseIdentifier) - _init() - } - - required init?(coder: NSCoder) { - super.init(coder: coder) - _init() - } - -} - -extension MastodonRegisterTextFieldTableViewCell { - - private func _init() { - selectionStyle = .none - backgroundColor = .clear - - textFieldShadowContainer.translatesAutoresizingMaskIntoConstraints = false - contentView.addSubview(textFieldShadowContainer) - NSLayoutConstraint.activate([ - textFieldShadowContainer.topAnchor.constraint(equalTo: contentView.topAnchor, constant: 6), - textFieldShadowContainer.leadingAnchor.constraint(equalTo: contentView.readableContentGuide.leadingAnchor), - textFieldShadowContainer.trailingAnchor.constraint(equalTo: contentView.readableContentGuide.trailingAnchor), - contentView.bottomAnchor.constraint(equalTo: textFieldShadowContainer.bottomAnchor, constant: 6), - ]) - - textField.translatesAutoresizingMaskIntoConstraints = false - textFieldShadowContainer.addSubview(textField) - NSLayoutConstraint.activate([ - textField.topAnchor.constraint(equalTo: textFieldShadowContainer.topAnchor), - textField.leadingAnchor.constraint(equalTo: textFieldShadowContainer.leadingAnchor), - textField.trailingAnchor.constraint(equalTo: textFieldShadowContainer.trailingAnchor), - textField.bottomAnchor.constraint(equalTo: textFieldShadowContainer.bottomAnchor), - textField.heightAnchor.constraint(equalToConstant: MastodonRegisterTextFieldTableViewCell.textFieldHeight).priority(.required - 1), - ]) - - resetTextField() - } - -} - -extension MastodonRegisterTextFieldTableViewCell { - func resetTextField() { - textField.keyboardType = .default - textField.autocorrectionType = .default - textField.autocapitalizationType = .none - textField.attributedPlaceholder = nil - textField.isSecureTextEntry = false - textField.textAlignment = .natural - textField.semanticContentAttribute = .unspecified - - let paddingRect = CGRect(x: 0, y: 0, width: 16, height: 10) - textField.leftView = UIView(frame: paddingRect) - textField.leftViewMode = .always - textField.rightView = UIView(frame: paddingRect) - textField.rightViewMode = .always - } - - func setupTextViewRightView(text: String) { - textField.rightView = { - let containerView = UIView() - - let paddingView = UIView(frame: CGRect(x: 0, y: 0, width: 8, height: MastodonRegisterTextFieldTableViewCell.textFieldHeight)) - paddingView.translatesAutoresizingMaskIntoConstraints = false - containerView.addSubview(paddingView) - NSLayoutConstraint.activate([ - paddingView.topAnchor.constraint(equalTo: containerView.topAnchor), - paddingView.leadingAnchor.constraint(equalTo: containerView.leadingAnchor), - paddingView.bottomAnchor.constraint(equalTo: containerView.bottomAnchor), - paddingView.widthAnchor.constraint(equalToConstant: 8).priority(.defaultHigh), - ]) - - let label = UILabel() - label.font = MastodonRegisterTextFieldTableViewCell.textFieldLabelFont - label.textColor = Asset.Colors.Label.primary.color - label.text = text - label.lineBreakMode = .byTruncatingMiddle - - label.translatesAutoresizingMaskIntoConstraints = false - containerView.addSubview(label) - NSLayoutConstraint.activate([ - label.topAnchor.constraint(equalTo: containerView.topAnchor), - label.leadingAnchor.constraint(equalTo: paddingView.trailingAnchor), - containerView.trailingAnchor.constraint(equalTo: label.trailingAnchor, constant: 16), - label.bottomAnchor.constraint(equalTo: containerView.bottomAnchor), - label.widthAnchor.constraint(lessThanOrEqualToConstant: 180).priority(.required - 1), - ]) - return containerView - }() - } - - func setupTextViewPlaceholder(text: String) { - textField.attributedPlaceholder = NSAttributedString( - string: text, - attributes: [ - .foregroundColor: Asset.Colors.Label.secondary.color, - .font: MastodonRegisterTextFieldTableViewCell.textFieldLabelFont - ] - ) - } -} diff --git a/Mastodon/Scene/Onboarding/Register/MastodonRegisterViewModel+Diffable.swift b/Mastodon/Scene/Onboarding/Register/MastodonRegisterViewModel+Diffable.swift index f1e0d8903..b3e2a2cdb 100644 --- a/Mastodon/Scene/Onboarding/Register/MastodonRegisterViewModel+Diffable.swift +++ b/Mastodon/Scene/Onboarding/Register/MastodonRegisterViewModel+Diffable.swift @@ -10,146 +10,6 @@ import Combine import MastodonAsset import MastodonLocalization -extension MastodonRegisterViewModel { - //TODO: @zeitschlag Remove, as the screen is based on SwiftUI now - func setupDiffableDataSource( - tableView: UITableView - ) { - tableView.register(OnboardingHeadlineTableViewCell.self, forCellReuseIdentifier: String(describing: OnboardingHeadlineTableViewCell.self)) - tableView.register(MastodonRegisterAvatarTableViewCell.self, forCellReuseIdentifier: String(describing: MastodonRegisterAvatarTableViewCell.self)) - tableView.register(MastodonRegisterTextFieldTableViewCell.self, forCellReuseIdentifier: String(describing: MastodonRegisterTextFieldTableViewCell.self)) - tableView.register(MastodonRegisterPasswordHintTableViewCell.self, forCellReuseIdentifier: String(describing: MastodonRegisterPasswordHintTableViewCell.self)) - - diffableDataSource = UITableViewDiffableDataSource(tableView: tableView) { tableView, indexPath, item in - switch item { - case .header(let domain): - let cell = tableView.dequeueReusableCell(withIdentifier: String(describing: OnboardingHeadlineTableViewCell.self), for: indexPath) as! OnboardingHeadlineTableViewCell - cell.titleLabel.text = L10n.Scene.Register.letsGetYouSetUpOnDomain(domain) - cell.subTitleLabel.isHidden = true - return cell - case .avatar: - let cell = tableView.dequeueReusableCell(withIdentifier: String(describing: MastodonRegisterAvatarTableViewCell.self), for: indexPath) as! MastodonRegisterAvatarTableViewCell - self.configureAvatar(cell: cell) - return cell - case .name: - let cell = tableView.dequeueReusableCell(withIdentifier: String(describing: MastodonRegisterTextFieldTableViewCell.self), for: indexPath) as! MastodonRegisterTextFieldTableViewCell - cell.setupTextViewPlaceholder(text: L10n.Scene.Register.Input.DisplayName.placeholder) - cell.textField.keyboardType = .default - cell.textField.autocapitalizationType = .words - cell.textField.text = self.name - NotificationCenter.default.publisher(for: UITextField.textDidChangeNotification, object: cell.textField) - .receive(on: DispatchQueue.main) - .compactMap { notification in - guard let textField = notification.object as? UITextField else { - assertionFailure() - return nil - } - return textField.text?.trimmingCharacters(in: .whitespacesAndNewlines) ?? "" - } - .assign(to: \.name, on: self) - .store(in: &cell.disposeBag) - return cell - case .username: - let cell = tableView.dequeueReusableCell(withIdentifier: String(describing: MastodonRegisterTextFieldTableViewCell.self), for: indexPath) as! MastodonRegisterTextFieldTableViewCell - cell.setupTextViewRightView(text: "@" + self.domain) - cell.setupTextViewPlaceholder(text: L10n.Scene.Register.Input.Username.placeholder) - cell.textField.keyboardType = .alphabet - cell.textField.autocorrectionType = .no - cell.textField.text = self.username - cell.textField.textAlignment = .left - cell.textField.semanticContentAttribute = .forceLeftToRight - NotificationCenter.default.publisher(for: UITextField.textDidChangeNotification, object: cell.textField) - .receive(on: DispatchQueue.main) - .compactMap { notification in - guard let textField = notification.object as? UITextField else { - assertionFailure() - return nil - } - return textField.text?.trimmingCharacters(in: .whitespacesAndNewlines) ?? "" - } - .assign(to: \.username, on: self) - .store(in: &cell.disposeBag) - self.configureTextFieldCell(cell: cell, validateState: self.$usernameValidateState) - return cell - case .email: - let cell = tableView.dequeueReusableCell(withIdentifier: String(describing: MastodonRegisterTextFieldTableViewCell.self), for: indexPath) as! MastodonRegisterTextFieldTableViewCell - cell.setupTextViewPlaceholder(text: L10n.Scene.Register.Input.Email.placeholder) - cell.textField.keyboardType = .emailAddress - cell.textField.autocorrectionType = .no - cell.textField.text = self.email - NotificationCenter.default.publisher(for: UITextField.textDidChangeNotification, object: cell.textField) - .receive(on: DispatchQueue.main) - .compactMap { notification in - guard let textField = notification.object as? UITextField else { - assertionFailure() - return nil - } - return textField.text?.trimmingCharacters(in: .whitespacesAndNewlines) ?? "" - } - .assign(to: \.email, on: self) - .store(in: &cell.disposeBag) - self.configureTextFieldCell(cell: cell, validateState: self.$emailValidateState) - return cell - case .password: - let cell = tableView.dequeueReusableCell(withIdentifier: String(describing: MastodonRegisterTextFieldTableViewCell.self), for: indexPath) as! MastodonRegisterTextFieldTableViewCell - cell.setupTextViewPlaceholder(text: L10n.Scene.Register.Input.Password.placeholder) - cell.textField.keyboardType = .alphabet - cell.textField.autocorrectionType = .no - cell.textField.isSecureTextEntry = true - cell.textField.text = self.password - cell.textField.textAlignment = .left - cell.textField.semanticContentAttribute = .forceLeftToRight - NotificationCenter.default.publisher(for: UITextField.textDidChangeNotification, object: cell.textField) - .receive(on: DispatchQueue.main) - .compactMap { notification in - guard let textField = notification.object as? UITextField else { - assertionFailure() - return nil - } - return textField.text?.trimmingCharacters(in: .whitespacesAndNewlines) ?? "" - } - .assign(to: \.password, on: self) - .store(in: &cell.disposeBag) - self.configureTextFieldCell(cell: cell, validateState: self.$passwordValidateState) - return cell - case .hint: - let cell = tableView.dequeueReusableCell(withIdentifier: String(describing: MastodonRegisterPasswordHintTableViewCell.self), for: indexPath) as! MastodonRegisterPasswordHintTableViewCell - return cell - case .reason: - let cell = tableView.dequeueReusableCell(withIdentifier: String(describing: MastodonRegisterTextFieldTableViewCell.self), for: indexPath) as! MastodonRegisterTextFieldTableViewCell - cell.setupTextViewPlaceholder(text: L10n.Scene.Register.Input.Invite.registrationUserInviteRequest) - cell.textField.keyboardType = .default - cell.textField.text = self.reason - NotificationCenter.default.publisher(for: UITextField.textDidChangeNotification, object: cell.textField) - .receive(on: DispatchQueue.main) - .compactMap { notification in - guard let textField = notification.object as? UITextField else { - assertionFailure() - return nil - } - return textField.text?.trimmingCharacters(in: .whitespacesAndNewlines) ?? "" - } - .assign(to: \.reason, on: self) - .store(in: &cell.disposeBag) - self.configureTextFieldCell(cell: cell, validateState: self.$reasonValidateState) - return cell - default: - assertionFailure() - return UITableViewCell() - } - } - - var snapshot = NSDiffableDataSourceSnapshot() - snapshot.appendSections([.main]) - snapshot.appendItems([.header(domain: domain)], toSection: .main) - snapshot.appendItems([.avatar, .name, .username, .email, .password, .hint], toSection: .main) - if approvalRequired { - snapshot.appendItems([.reason], toSection: .main) - } - diffableDataSource?.applySnapshot(snapshot, animated: false, completion: nil) - } -} - extension MastodonRegisterViewModel { private func configureAvatar(cell: MastodonRegisterAvatarTableViewCell) { self.$avatarImage From 187bda7ef4ce5f257e95777d4719729bb6e3865b Mon Sep 17 00:00:00 2001 From: Nathan Mattes Date: Wed, 9 Nov 2022 16:41:27 +0100 Subject: [PATCH 419/598] Update strings (#540) --- Localization/app.json | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/Localization/app.json b/Localization/app.json index 30566d8d6..8287a00a5 100644 --- a/Localization/app.json +++ b/Localization/app.json @@ -74,8 +74,8 @@ "take_photo": "Take Photo", "save_photo": "Save Photo", "copy_photo": "Copy Photo", - "sign_in": "Sign In", - "sign_up": "Sign Up", + "sign_in": "Log in", + "sign_up": "Create account", "see_more": "See More", "preview": "Preview", "share": "Share", @@ -220,8 +220,7 @@ }, "server_picker": { "title": "Mastodon is made of users in different servers.", - "subtitle": "Pick a server based on your interests, region, or a general purpose one.", - "subtitle_extend": "Pick a server based on your interests, region, or a general purpose one. Each server is operated by an entirely independent organization or individual.", + "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", "button": { "category": { "all": "All", @@ -248,8 +247,7 @@ "category": "CATEGORY" }, "input": { - "placeholder": "Search servers", - "search_servers_or_enter_url": "Search servers or enter URL" + "search_servers_or_enter_url": "Search communities or enter URL" }, "empty_state": { "finding_servers": "Finding available servers...", From 367e759f5003429488cd041ea89ba9a27b15b2c0 Mon Sep 17 00:00:00 2001 From: Nathan Mattes Date: Wed, 9 Nov 2022 17:07:06 +0100 Subject: [PATCH 420/598] Use border instead of shadow for validation results (#540) --- .../Register/MastodonRegisterView.swift | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/Mastodon/Scene/Onboarding/Register/MastodonRegisterView.swift b/Mastodon/Scene/Onboarding/Register/MastodonRegisterView.swift index 787b79bd8..4f28353b0 100644 --- a/Mastodon/Scene/Onboarding/Register/MastodonRegisterView.swift +++ b/Mastodon/Scene/Onboarding/Register/MastodonRegisterView.swift @@ -168,22 +168,27 @@ struct MastodonRegisterView: View { func body(content: Content) -> some View { ZStack { - let shadowColor: Color = { + let borderColor: Color = { switch validateState { - case .empty: return .black.opacity(0.125) - case .invalid: return Color(Asset.Colors.TextField.invalid.color) - case .valid: return Color(Asset.Colors.TextField.valid.color) + case .empty: return Color(Asset.Scene.Onboarding.textFieldBackground.color) + case .invalid: return Color(Asset.Colors.TextField.invalid.color) + case .valid: return Color(Asset.Scene.Onboarding.textFieldBackground.color) } }() - //TODO: @zeitschlag Replace shadow with border + Color(Asset.Scene.Onboarding.textFieldBackground.color) .cornerRadius(10) - .shadow(color: shadowColor, radius: 1, x: 0, y: 2) - .animation(.easeInOut, value: validateState) + .shadow(color: .black.opacity(0.125), radius: 1, x: 0, y: 2) + content .padding() .background(Color(Asset.Scene.Onboarding.textFieldBackground.color)) .cornerRadius(10) + .overlay( + RoundedRectangle(cornerRadius: 10) + .stroke(borderColor, lineWidth: 1) + .animation(.easeInOut, value: validateState) + ) } } } From 47401b09408c250d46c0b0e69150b977ba1f0633 Mon Sep 17 00:00:00 2001 From: Nathan Mattes Date: Wed, 9 Nov 2022 22:41:54 +0100 Subject: [PATCH 421/598] Add ViewController (#540) --- Mastodon.xcodeproj/project.pbxproj | 12 + .../xcshareddata/swiftpm/Package.resolved | 257 ------------------ Mastodon/Coordinator/SceneCoordinator.swift | 5 +- .../Login/MastodonLoginViewController.swift | 25 ++ .../MastodonPickServerViewController.swift | 3 +- 5 files changed, 43 insertions(+), 259 deletions(-) delete mode 100644 Mastodon.xcworkspace/xcshareddata/swiftpm/Package.resolved create mode 100644 Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift diff --git a/Mastodon.xcodeproj/project.pbxproj b/Mastodon.xcodeproj/project.pbxproj index f622c97da..016158b58 100644 --- a/Mastodon.xcodeproj/project.pbxproj +++ b/Mastodon.xcodeproj/project.pbxproj @@ -88,6 +88,7 @@ 62FD27D52893708A00B205C5 /* BookmarkViewModel+Diffable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 62FD27D42893708A00B205C5 /* BookmarkViewModel+Diffable.swift */; }; 87FFDA5D898A5C42ADCB35E7 /* Pods_Mastodon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A4ABE34829701A4496C5BB64 /* Pods_Mastodon.framework */; }; C24C97032922F30500BAE8CB /* RefreshControl.swift in Sources */ = {isa = PBXBuildFile; fileRef = C24C97022922F30500BAE8CB /* RefreshControl.swift */; }; + D8A6AB6C291C5136003AB663 /* MastodonLoginViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = D8A6AB6B291C5136003AB663 /* MastodonLoginViewController.swift */; }; DB0009A626AEE5DC009B9D2D /* Intents.intentdefinition in Sources */ = {isa = PBXBuildFile; fileRef = DB0009A926AEE5DC009B9D2D /* Intents.intentdefinition */; settings = {ATTRIBUTES = (codegen, ); }; }; DB0009A726AEE5DC009B9D2D /* Intents.intentdefinition in Sources */ = {isa = PBXBuildFile; fileRef = DB0009A926AEE5DC009B9D2D /* Intents.intentdefinition */; }; DB0140CF25C42AEE00F9F3CF /* OSLog.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB0140CE25C42AEE00F9F3CF /* OSLog.swift */; }; @@ -608,6 +609,7 @@ C3789232A52F43529CA67E95 /* Pods-MastodonIntent.asdk - debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MastodonIntent.asdk - debug.xcconfig"; path = "Target Support Files/Pods-MastodonIntent/Pods-MastodonIntent.asdk - debug.xcconfig"; sourceTree = ""; }; CD92E0F10BDE4FE7C4B999F2 /* Pods_MastodonTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_MastodonTests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; D7D7CF93E262178800077512 /* Pods-Mastodon-AppShared.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Mastodon-AppShared.debug.xcconfig"; path = "Target Support Files/Pods-Mastodon-AppShared/Pods-Mastodon-AppShared.debug.xcconfig"; sourceTree = ""; }; + D8A6AB6B291C5136003AB663 /* MastodonLoginViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MastodonLoginViewController.swift; sourceTree = ""; }; DB0009A826AEE5DC009B9D2D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.intentdefinition; name = Base; path = Base.lproj/Intents.intentdefinition; sourceTree = ""; }; DB0009AD26AEE5E4009B9D2D /* ar */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ar; path = ar.lproj/Intents.strings; sourceTree = ""; }; DB0140CE25C42AEE00F9F3CF /* OSLog.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = OSLog.swift; sourceTree = ""; }; @@ -1494,9 +1496,18 @@ path = Bookmark; sourceTree = ""; }; + D8A6AB68291C50F3003AB663 /* Login */ = { + isa = PBXGroup; + children = ( + D8A6AB6B291C5136003AB663 /* MastodonLoginViewController.swift */, + ); + path = Login; + sourceTree = ""; + }; DB01409B25C40BB600F9F3CF /* Onboarding */ = { isa = PBXGroup; children = ( + D8A6AB68291C50F3003AB663 /* Login */, DB68A03825E900CC00CFDF14 /* Share */, 0FAA0FDD25E0B5700017CCDE /* Welcome */, 0FAA102525E1125D0017CCDE /* PickServer */, @@ -3422,6 +3433,7 @@ DB697DDB278F4DE3004EF2F7 /* DataSourceProvider+StatusTableViewCellDelegate.swift in Sources */, DB87D4512609CF1E00D12C0D /* ComposeStatusPollOptionAppendEntryCollectionViewCell.swift in Sources */, DBB45B5627B39FC9002DC5A7 /* MediaPreviewVideoViewController.swift in Sources */, + D8A6AB6C291C5136003AB663 /* MastodonLoginViewController.swift in Sources */, DB0FCB8027968F70006C02E2 /* MastodonStatusThreadViewModel.swift in Sources */, DB67D08627312E67006A36CF /* WizardViewController.swift in Sources */, DB6746EB278ED8B0008A6B94 /* PollOptionView+Configuration.swift in Sources */, diff --git a/Mastodon.xcworkspace/xcshareddata/swiftpm/Package.resolved b/Mastodon.xcworkspace/xcshareddata/swiftpm/Package.resolved deleted file mode 100644 index 409b8820d..000000000 --- a/Mastodon.xcworkspace/xcshareddata/swiftpm/Package.resolved +++ /dev/null @@ -1,257 +0,0 @@ -{ - "pins" : [ - { - "identity" : "alamofire", - "kind" : "remoteSourceControl", - "location" : "https://github.com/Alamofire/Alamofire.git", - "state" : { - "revision" : "354dda32d89fc8cd4f5c46487f64957d355f53d8", - "version" : "5.6.1" - } - }, - { - "identity" : "alamofireimage", - "kind" : "remoteSourceControl", - "location" : "https://github.com/Alamofire/AlamofireImage.git", - "state" : { - "revision" : "98cbb00ce0ec5fc8e52a5b50a6bfc08d3e5aee10", - "version" : "4.2.0" - } - }, - { - "identity" : "commonoslog", - "kind" : "remoteSourceControl", - "location" : "https://github.com/MainasuK/CommonOSLog", - "state" : { - "revision" : "c121624a30698e9886efe38aebb36ff51c01b6c2", - "version" : "0.1.1" - } - }, - { - "identity" : "faviconfinder", - "kind" : "remoteSourceControl", - "location" : "https://github.com/will-lumley/FaviconFinder.git", - "state" : { - "revision" : "1f74844f77f79b95c0bb0130b3a87d4f340e6d3a", - "version" : "3.3.0" - } - }, - { - "identity" : "flanimatedimage", - "kind" : "remoteSourceControl", - "location" : "https://github.com/Flipboard/FLAnimatedImage.git", - "state" : { - "revision" : "e7f9fd4681ae41bf6f3056db08af4f401d61da52", - "version" : "1.0.16" - } - }, - { - "identity" : "fpsindicator", - "kind" : "remoteSourceControl", - "location" : "https://github.com/MainasuK/FPSIndicator.git", - "state" : { - "revision" : "e4a5067ccd5293b024c767f09e51056afd4a4796", - "version" : "1.1.0" - } - }, - { - "identity" : "fuzi", - "kind" : "remoteSourceControl", - "location" : "https://github.com/cezheng/Fuzi.git", - "state" : { - "revision" : "f08c8323da21e985f3772610753bcfc652c2103f", - "version" : "3.1.3" - } - }, - { - "identity" : "keychainaccess", - "kind" : "remoteSourceControl", - "location" : "https://github.com/kishikawakatsumi/KeychainAccess.git", - "state" : { - "revision" : "84e546727d66f1adc5439debad16270d0fdd04e7", - "version" : "4.2.2" - } - }, - { - "identity" : "kingfisher", - "kind" : "remoteSourceControl", - "location" : "https://github.com/onevcat/Kingfisher.git", - "state" : { - "revision" : "44e891bdb61426a95e31492a67c7c0dfad1f87c5", - "version" : "7.4.1" - } - }, - { - "identity" : "metatextkit", - "kind" : "remoteSourceControl", - "location" : "https://github.com/TwidereProject/MetaTextKit.git", - "state" : { - "revision" : "dcd5255d6930c2fab408dc8562c577547e477624", - "version" : "2.2.5" - } - }, - { - "identity" : "nextlevelsessionexporter", - "kind" : "remoteSourceControl", - "location" : "https://github.com/NextLevel/NextLevelSessionExporter.git", - "state" : { - "revision" : "b6c0cce1aa37fe1547d694f958fac3c3524b74da", - "version" : "0.4.6" - } - }, - { - "identity" : "nuke", - "kind" : "remoteSourceControl", - "location" : "https://github.com/kean/Nuke.git", - "state" : { - "revision" : "0ea7545b5c918285aacc044dc75048625c8257cc", - "version" : "10.8.0" - } - }, - { - "identity" : "nuke-flanimatedimage-plugin", - "kind" : "remoteSourceControl", - "location" : "https://github.com/kean/Nuke-FLAnimatedImage-Plugin.git", - "state" : { - "revision" : "b59c346a7d536336db3b0f12c72c6e53ee709e16", - "version" : "8.0.0" - } - }, - { - "identity" : "pageboy", - "kind" : "remoteSourceControl", - "location" : "https://github.com/uias/Pageboy", - "state" : { - "revision" : "34ecb6e7c4e0e07494960ab2f7cc9a02293915a6", - "version" : "3.6.2" - } - }, - { - "identity" : "panmodal", - "kind" : "remoteSourceControl", - "location" : "https://github.com/slackhq/PanModal.git", - "state" : { - "revision" : "b012aecb6b67a8e46369227f893c12544846613f", - "version" : "1.2.7" - } - }, - { - "identity" : "sdwebimage", - "kind" : "remoteSourceControl", - "location" : "https://github.com/SDWebImage/SDWebImage.git", - "state" : { - "revision" : "2e63d0061da449ad0ed130768d05dceb1496de44", - "version" : "5.12.5" - } - }, - { - "identity" : "stripes", - "kind" : "remoteSourceControl", - "location" : "https://github.com/eneko/Stripes.git", - "state" : { - "revision" : "d533fd44b8043a3abbf523e733599173d6f98c11", - "version" : "0.2.0" - } - }, - { - "identity" : "swift-collections", - "kind" : "remoteSourceControl", - "location" : "https://github.com/apple/swift-collections.git", - "state" : { - "revision" : "f504716c27d2e5d4144fa4794b12129301d17729", - "version" : "1.0.3" - } - }, - { - "identity" : "swift-nio", - "kind" : "remoteSourceControl", - "location" : "https://github.com/apple/swift-nio.git", - "state" : { - "revision" : "546610d52b19be3e19935e0880bb06b9c03f5cef", - "version" : "1.14.4" - } - }, - { - "identity" : "swift-nio-zlib-support", - "kind" : "remoteSourceControl", - "location" : "https://github.com/apple/swift-nio-zlib-support.git", - "state" : { - "revision" : "37760e9a52030bb9011972c5213c3350fa9d41fd", - "version" : "1.0.0" - } - }, - { - "identity" : "swiftsoup", - "kind" : "remoteSourceControl", - "location" : "https://github.com/scinfu/SwiftSoup.git", - "state" : { - "revision" : "41e7c263fb8c277e980ebcb9b0b5f6031d3d4886", - "version" : "2.4.2" - } - }, - { - "identity" : "swiftui-introspect", - "kind" : "remoteSourceControl", - "location" : "https://github.com/siteline/SwiftUI-Introspect.git", - "state" : { - "revision" : "f2616860a41f9d9932da412a8978fec79c06fe24", - "version" : "0.1.4" - } - }, - { - "identity" : "tabbarpager", - "kind" : "remoteSourceControl", - "location" : "https://github.com/TwidereProject/TabBarPager.git", - "state" : { - "revision" : "488aa66d157a648901b61721212c0dec23d27ee5", - "version" : "0.1.0" - } - }, - { - "identity" : "tabman", - "kind" : "remoteSourceControl", - "location" : "https://github.com/uias/Tabman", - "state" : { - "revision" : "4a4f7c755b875ffd4f9ef10d67a67883669d2465", - "version" : "2.13.0" - } - }, - { - "identity" : "thirdpartymailer", - "kind" : "remoteSourceControl", - "location" : "https://github.com/vtourraine/ThirdPartyMailer.git", - "state" : { - "revision" : "44c1cfaa6969963f22691aa67f88a69e3b6d651f", - "version" : "2.1.0" - } - }, - { - "identity" : "tocropviewcontroller", - "kind" : "remoteSourceControl", - "location" : "https://github.com/TimOliver/TOCropViewController.git", - "state" : { - "revision" : "d0470491f56e734731bbf77991944c0dfdee3e0e", - "version" : "2.6.1" - } - }, - { - "identity" : "uihostingconfigurationbackport", - "kind" : "remoteSourceControl", - "location" : "https://github.com/woxtu/UIHostingConfigurationBackport.git", - "state" : { - "revision" : "6091f2d38faa4b24fc2ca0389c651e2f666624a3", - "version" : "0.1.0" - } - }, - { - "identity" : "uitextview-placeholder", - "kind" : "remoteSourceControl", - "location" : "https://github.com/MainasuK/UITextView-Placeholder.git", - "state" : { - "revision" : "20f513ded04a040cdf5467f0891849b1763ede3b", - "version" : "1.4.1" - } - } - ], - "version" : 2 -} diff --git a/Mastodon/Coordinator/SceneCoordinator.swift b/Mastodon/Coordinator/SceneCoordinator.swift index eca818fe5..0bf1c476e 100644 --- a/Mastodon/Coordinator/SceneCoordinator.swift +++ b/Mastodon/Coordinator/SceneCoordinator.swift @@ -149,7 +149,7 @@ extension SceneCoordinator { case mastodonConfirmEmail(viewModel: MastodonConfirmEmailViewModel) case mastodonResendEmail(viewModel: MastodonResendEmailViewModel) case mastodonWebView(viewModel: WebViewModel) - //TODO: @zeitschlag new case for welcome back select your server welcome-screen + Screen and ViewModel etc. + case mastodonLogin // search case searchDetail(viewModel: SearchDetailViewModel) @@ -200,6 +200,7 @@ extension SceneCoordinator { case .welcome, .mastodonPickServer, .mastodonRegister, + .mastodonLogin, .mastodonServerRules, .mastodonConfirmEmail, .mastodonResendEmail: @@ -404,6 +405,8 @@ private extension SceneCoordinator { let _viewController = MastodonConfirmEmailViewController() _viewController.viewModel = viewModel viewController = _viewController + case .mastodonLogin: + viewController = MastodonLoginViewController() case .mastodonResendEmail(let viewModel): let _viewController = MastodonResendEmailViewController() _viewController.viewModel = viewModel diff --git a/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift b/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift new file mode 100644 index 000000000..9a73317be --- /dev/null +++ b/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift @@ -0,0 +1,25 @@ +// +// MastodonLoginViewController.swift +// Mastodon +// +// Created by Nathan Mattes on 09.11.22. +// + +import UIKit + +class MastodonLoginViewController: UIViewController { + + // Title, Subtitle + // SearchBox, queries api.joinmastodon.org/servers with domain + // List with (filtered) domains + // back-button, next-button (enabled if user selectes a server or url is valid + // next-button does MastodonPickServerViewController.doSignIn() + + init() { + super.init(nibName: nil, bundle: nil) + view.backgroundColor = .systemGreen + } + + required init?(coder: NSCoder) { fatalError("init(coder:) has not been implemented") } +} + diff --git a/Mastodon/Scene/Onboarding/PickServer/MastodonPickServerViewController.swift b/Mastodon/Scene/Onboarding/PickServer/MastodonPickServerViewController.swift index a3779dfe6..7ec24a246 100644 --- a/Mastodon/Scene/Onboarding/PickServer/MastodonPickServerViewController.swift +++ b/Mastodon/Scene/Onboarding/PickServer/MastodonPickServerViewController.swift @@ -275,7 +275,8 @@ extension MastodonPickServerViewController { case .signUp: doSignUp() } } - + + //TODO: @zeitschlag Move to MastodonLoginViewController private func doSignIn() { guard let server = viewModel.selectedServer.value else { return } authenticationViewModel.isAuthenticating.send(true) From 9c220a6abc193a9c0cffe2da8a21f0d407507738 Mon Sep 17 00:00:00 2001 From: Nathan Mattes Date: Thu, 10 Nov 2022 17:52:48 +0100 Subject: [PATCH 422/598] Add navigation-view (#540) --- Mastodon.xcodeproj/project.pbxproj | 4 ++ Mastodon/Coordinator/SceneCoordinator.swift | 18 ++++- .../Onboarding/Login/MastodonLoginView.swift | 44 +++++++++++++ .../Login/MastodonLoginViewController.swift | 66 +++++++++++++++---- .../MastodonRegisterViewController.swift | 2 +- .../Welcome/WelcomeViewController.swift | 3 +- 6 files changed, 118 insertions(+), 19 deletions(-) create mode 100644 Mastodon/Scene/Onboarding/Login/MastodonLoginView.swift diff --git a/Mastodon.xcodeproj/project.pbxproj b/Mastodon.xcodeproj/project.pbxproj index 016158b58..9755bb0c7 100644 --- a/Mastodon.xcodeproj/project.pbxproj +++ b/Mastodon.xcodeproj/project.pbxproj @@ -88,6 +88,7 @@ 62FD27D52893708A00B205C5 /* BookmarkViewModel+Diffable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 62FD27D42893708A00B205C5 /* BookmarkViewModel+Diffable.swift */; }; 87FFDA5D898A5C42ADCB35E7 /* Pods_Mastodon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A4ABE34829701A4496C5BB64 /* Pods_Mastodon.framework */; }; C24C97032922F30500BAE8CB /* RefreshControl.swift in Sources */ = {isa = PBXBuildFile; fileRef = C24C97022922F30500BAE8CB /* RefreshControl.swift */; }; + D87BFC8B291D5C6B00FEE264 /* MastodonLoginView.swift in Sources */ = {isa = PBXBuildFile; fileRef = D87BFC8A291D5C6B00FEE264 /* MastodonLoginView.swift */; }; D8A6AB6C291C5136003AB663 /* MastodonLoginViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = D8A6AB6B291C5136003AB663 /* MastodonLoginViewController.swift */; }; DB0009A626AEE5DC009B9D2D /* Intents.intentdefinition in Sources */ = {isa = PBXBuildFile; fileRef = DB0009A926AEE5DC009B9D2D /* Intents.intentdefinition */; settings = {ATTRIBUTES = (codegen, ); }; }; DB0009A726AEE5DC009B9D2D /* Intents.intentdefinition in Sources */ = {isa = PBXBuildFile; fileRef = DB0009A926AEE5DC009B9D2D /* Intents.intentdefinition */; }; @@ -609,6 +610,7 @@ C3789232A52F43529CA67E95 /* Pods-MastodonIntent.asdk - debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MastodonIntent.asdk - debug.xcconfig"; path = "Target Support Files/Pods-MastodonIntent/Pods-MastodonIntent.asdk - debug.xcconfig"; sourceTree = ""; }; CD92E0F10BDE4FE7C4B999F2 /* Pods_MastodonTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_MastodonTests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; D7D7CF93E262178800077512 /* Pods-Mastodon-AppShared.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Mastodon-AppShared.debug.xcconfig"; path = "Target Support Files/Pods-Mastodon-AppShared/Pods-Mastodon-AppShared.debug.xcconfig"; sourceTree = ""; }; + D87BFC8A291D5C6B00FEE264 /* MastodonLoginView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MastodonLoginView.swift; sourceTree = ""; }; D8A6AB6B291C5136003AB663 /* MastodonLoginViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MastodonLoginViewController.swift; sourceTree = ""; }; DB0009A826AEE5DC009B9D2D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.intentdefinition; name = Base; path = Base.lproj/Intents.intentdefinition; sourceTree = ""; }; DB0009AD26AEE5E4009B9D2D /* ar */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ar; path = ar.lproj/Intents.strings; sourceTree = ""; }; @@ -1500,6 +1502,7 @@ isa = PBXGroup; children = ( D8A6AB6B291C5136003AB663 /* MastodonLoginViewController.swift */, + D87BFC8A291D5C6B00FEE264 /* MastodonLoginView.swift */, ); path = Login; sourceTree = ""; @@ -3372,6 +3375,7 @@ DBCC3B8F26148F7B0045B23D /* CachedProfileViewModel.swift in Sources */, DB4F097526A037F500D62E92 /* SearchHistoryViewModel.swift in Sources */, DB3EA8E9281B7A3700598866 /* DiscoveryCommunityViewModel.swift in Sources */, + D87BFC8B291D5C6B00FEE264 /* MastodonLoginView.swift in Sources */, DB6180F826391D660018D199 /* MediaPreviewingViewController.swift in Sources */, DBEFCD71282A12B200C0ABEA /* ReportReasonViewController.swift in Sources */, DB0140CF25C42AEE00F9F3CF /* OSLog.swift in Sources */, diff --git a/Mastodon/Coordinator/SceneCoordinator.swift b/Mastodon/Coordinator/SceneCoordinator.swift index 0bf1c476e..bf663b7d8 100644 --- a/Mastodon/Coordinator/SceneCoordinator.swift +++ b/Mastodon/Coordinator/SceneCoordinator.swift @@ -406,7 +406,10 @@ private extension SceneCoordinator { _viewController.viewModel = viewModel viewController = _viewController case .mastodonLogin: - viewController = MastodonLoginViewController() + let loginViewController = MastodonLoginViewController() + loginViewController.delegate = self + + viewController = loginViewController case .mastodonResendEmail(let viewModel): let _viewController = MastodonResendEmailViewController() _viewController.viewModel = viewModel @@ -533,5 +536,16 @@ private extension SceneCoordinator { needs?.context = appContext needs?.coordinator = self } - +} + +//MARK: - MastodonLoginViewControllerDelegate + +extension SceneCoordinator: MastodonLoginViewControllerDelegate { + func backButtonPressed(_ viewController: MastodonLoginViewController) { + viewController.navigationController?.popViewController(animated: true) + } + + func nextButtonPressed(_ viewController: MastodonLoginViewController) { + //TODO: @zeitschlag implement, show ASWebAuthentication and stuff + } } diff --git a/Mastodon/Scene/Onboarding/Login/MastodonLoginView.swift b/Mastodon/Scene/Onboarding/Login/MastodonLoginView.swift new file mode 100644 index 000000000..88a519d98 --- /dev/null +++ b/Mastodon/Scene/Onboarding/Login/MastodonLoginView.swift @@ -0,0 +1,44 @@ +// +// MastodonLoginView.swift +// Mastodon +// +// Created by Nathan Mattes on 10.11.22. +// + +import UIKit +import MastodonAsset + +class MastodonLoginView: UIView { + + // Title, Subtitle + // SearchBox, queries api.joinmastodon.org/servers with domain + // List with (filtered) domains + + let navigationActionView: NavigationActionView + + override init(frame: CGRect) { + navigationActionView = NavigationActionView() + navigationActionView.translatesAutoresizingMaskIntoConstraints = false + + super.init(frame: frame) + + addSubview(navigationActionView) + backgroundColor = .systemBackground + + setupConstraints() + } + + required init?(coder: NSCoder) { + fatalError("init(coder:) has not been implemented") + } + + private func setupConstraints() { + let constraints = [ + navigationActionView.leadingAnchor.constraint(equalTo: leadingAnchor), + navigationActionView.trailingAnchor.constraint(equalTo: trailingAnchor), + bottomAnchor.constraint(equalTo: navigationActionView.bottomAnchor), + ] + NSLayoutConstraint.activate(constraints) + } + +} diff --git a/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift b/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift index 9a73317be..7a20170e2 100644 --- a/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift +++ b/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift @@ -7,19 +7,57 @@ import UIKit -class MastodonLoginViewController: UIViewController { - - // Title, Subtitle - // SearchBox, queries api.joinmastodon.org/servers with domain - // List with (filtered) domains - // back-button, next-button (enabled if user selectes a server or url is valid - // next-button does MastodonPickServerViewController.doSignIn() - - init() { - super.init(nibName: nil, bundle: nil) - view.backgroundColor = .systemGreen - } - - required init?(coder: NSCoder) { fatalError("init(coder:) has not been implemented") } +protocol MastodonLoginViewControllerDelegate: AnyObject { + func backButtonPressed(_ viewController: MastodonLoginViewController) + func nextButtonPressed(_ viewController: MastodonLoginViewController) } +class MastodonLoginViewController: UIViewController { + + // back-button, next-button (enabled if user selectes a server or url is valid + // next-button does MastodonPickServerViewController.doSignIn() + + weak var delegate: MastodonLoginViewControllerDelegate? + + var contentView: MastodonLoginView { + view as! MastodonLoginView + } + + init() { + super.init(nibName: nil, bundle: nil) + + navigationItem.hidesBackButton = true + } + + required init?(coder: NSCoder) { fatalError("init(coder:) has not been implemented") } + + override func loadView() { + let loginView = MastodonLoginView() + + loginView.navigationActionView.nextButton.addTarget(self, action: #selector(MastodonLoginViewController.nextButtonPressed(_:)), for: .touchUpInside) + loginView.navigationActionView.backButton.addTarget(self, action: #selector(MastodonLoginViewController.backButtonPressed(_:)), for: .touchUpInside) + + view = loginView + } + + override func viewDidLoad() { + super.viewDidLoad() + + setupOnboardingAppearance() + } + + //MARK: - Actions + + @objc func backButtonPressed(_ sender: Any) { + delegate?.backButtonPressed(self) + } + + @objc func nextButtonPressed(_ sender: Any) { + delegate?.nextButtonPressed(self) + } +} + +// MARK: - OnboardingViewControllerAppearance +extension MastodonLoginViewController: OnboardingViewControllerAppearance { } + + diff --git a/Mastodon/Scene/Onboarding/Register/MastodonRegisterViewController.swift b/Mastodon/Scene/Onboarding/Register/MastodonRegisterViewController.swift index 758c20888..dc5152f98 100644 --- a/Mastodon/Scene/Onboarding/Register/MastodonRegisterViewController.swift +++ b/Mastodon/Scene/Onboarding/Register/MastodonRegisterViewController.swift @@ -322,7 +322,7 @@ extension MastodonRegisterViewController { ) }() let viewModel = MastodonConfirmEmailViewModel(context: self.context, email: email, authenticateInfo: self.viewModel.authenticateInfo, userToken: userToken, updateCredentialQuery: updateCredentialQuery) - self.coordinator.present(scene: .mastodonConfirmEmail(viewModel: viewModel), from: self, transition: .show) + _ = self.coordinator.present(scene: .mastodonConfirmEmail(viewModel: viewModel), from: self, transition: .show) } .store(in: &disposeBag) } diff --git a/Mastodon/Scene/Onboarding/Welcome/WelcomeViewController.swift b/Mastodon/Scene/Onboarding/Welcome/WelcomeViewController.swift index 612189243..36f9bf7e4 100644 --- a/Mastodon/Scene/Onboarding/Welcome/WelcomeViewController.swift +++ b/Mastodon/Scene/Onboarding/Welcome/WelcomeViewController.swift @@ -322,8 +322,7 @@ extension WelcomeViewController { @objc private func signInButtonDidClicked(_ sender: UIButton) { - //TODO: @zeitschlag Present new login-scene - _ = coordinator.present(scene: .mastodonPickServer(viewMode: MastodonPickServerViewModel(context: context, mode: .signIn)), from: self, transition: .show) + _ = coordinator.present(scene: .mastodonLogin, from: self, transition: .show) } @objc From e05b595aed7e0db0e2fdce27e77af5465d8974bf Mon Sep 17 00:00:00 2001 From: Nathan Mattes Date: Thu, 10 Nov 2022 17:59:28 +0100 Subject: [PATCH 423/598] Remove obsolete package --- MastodonSDK/Package.swift | 1 - 1 file changed, 1 deletion(-) diff --git a/MastodonSDK/Package.swift b/MastodonSDK/Package.swift index 7a4201894..1ac22e6a7 100644 --- a/MastodonSDK/Package.swift +++ b/MastodonSDK/Package.swift @@ -32,7 +32,6 @@ let package = Package( .package(url: "https://github.com/Alamofire/AlamofireImage.git", from: "4.1.0"), .package(url: "https://github.com/apple/swift-collections.git", from: "1.0.3"), .package(url: "https://github.com/apple/swift-nio.git", from: "1.0.0"), - .package(url: "https://github.com/cezheng/Fuzi.git", from: "3.1.3"), .package(url: "https://github.com/Flipboard/FLAnimatedImage.git", from: "1.0.0"), .package(url: "https://github.com/kean/Nuke-FLAnimatedImage-Plugin.git", from: "8.0.0"), .package(url: "https://github.com/kean/Nuke.git", from: "10.3.1"), From 38317d8fa699080566758a85f47fc73bfb14e0b3 Mon Sep 17 00:00:00 2001 From: Nathan Mattes Date: Thu, 10 Nov 2022 18:32:00 +0100 Subject: [PATCH 424/598] Add title and subtitle (#540) --- .../Onboarding/Login/MastodonLoginView.swift | 28 ++++++++++++++++++- .../Login/MastodonLoginViewController.swift | 1 + 2 files changed, 28 insertions(+), 1 deletion(-) diff --git a/Mastodon/Scene/Onboarding/Login/MastodonLoginView.swift b/Mastodon/Scene/Onboarding/Login/MastodonLoginView.swift index 88a519d98..8f3ab1beb 100644 --- a/Mastodon/Scene/Onboarding/Login/MastodonLoginView.swift +++ b/Mastodon/Scene/Onboarding/Login/MastodonLoginView.swift @@ -10,18 +10,39 @@ import MastodonAsset class MastodonLoginView: UIView { - // Title, Subtitle // SearchBox, queries api.joinmastodon.org/servers with domain // List with (filtered) domains + let titleLabel: UILabel + let subtitleLabel: UILabel + private let headerStackView: UIStackView let navigationActionView: NavigationActionView override init(frame: CGRect) { + + titleLabel = UILabel() + titleLabel.font = MastodonLoginViewController.largeTitleFont + titleLabel.textColor = MastodonLoginViewController.largeTitleTextColor + titleLabel.text = "Welcome Back" //TODO: @zeitschlag localization + titleLabel.numberOfLines = 0 + + subtitleLabel = UILabel() + subtitleLabel.font = MastodonLoginViewController.subTitleFont + subtitleLabel.textColor = MastodonLoginViewController.subTitleTextColor + subtitleLabel.text = "Log you in with the server where you created your account" //TODO: @zeitschlag localization + subtitleLabel.numberOfLines = 0 + + headerStackView = UIStackView(arrangedSubviews: [titleLabel, subtitleLabel]) + headerStackView.axis = .vertical + headerStackView.spacing = 16 + headerStackView.translatesAutoresizingMaskIntoConstraints = false + navigationActionView = NavigationActionView() navigationActionView.translatesAutoresizingMaskIntoConstraints = false super.init(frame: frame) + addSubview(headerStackView) addSubview(navigationActionView) backgroundColor = .systemBackground @@ -34,6 +55,11 @@ class MastodonLoginView: UIView { private func setupConstraints() { let constraints = [ + + headerStackView.topAnchor.constraint(equalTo: safeAreaLayoutGuide.topAnchor), + headerStackView.leadingAnchor.constraint(equalTo: readableContentGuide.leadingAnchor), + headerStackView.trailingAnchor.constraint(equalTo: readableContentGuide.trailingAnchor), + navigationActionView.leadingAnchor.constraint(equalTo: leadingAnchor), navigationActionView.trailingAnchor.constraint(equalTo: trailingAnchor), bottomAnchor.constraint(equalTo: navigationActionView.bottomAnchor), diff --git a/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift b/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift index 7a20170e2..f0c47885f 100644 --- a/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift +++ b/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift @@ -43,6 +43,7 @@ class MastodonLoginViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() + defer { setupNavigationBarBackgroundView() } setupOnboardingAppearance() } From 08302cf2fab64d0fc47b1108960506703adcc6b6 Mon Sep 17 00:00:00 2001 From: Nathan Mattes Date: Fri, 11 Nov 2022 18:44:01 +0100 Subject: [PATCH 425/598] Move some code around (#540) and remove an obsolete property --- .../Login/MastodonLoginViewController.swift | 46 ++++++++++++++++ .../MastodonPickServerViewController.swift | 54 ------------------- .../MastodonPickServerViewModel.swift | 15 ++---- .../Welcome/WelcomeViewController.swift | 2 +- 4 files changed, 50 insertions(+), 67 deletions(-) diff --git a/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift b/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift index f0c47885f..5797c2ae2 100644 --- a/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift +++ b/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift @@ -56,6 +56,52 @@ class MastodonLoginViewController: UIViewController { @objc func nextButtonPressed(_ sender: Any) { delegate?.nextButtonPressed(self) } + + @objc func login(_ sender: Any) { +// guard let server = viewModel.selectedServer.value else { return } +// authenticationViewModel.isAuthenticating.send(true) +// context.apiService.createApplication(domain: server.domain) +// .tryMap { response -> AuthenticationViewModel.AuthenticateInfo in +// let application = response.value +// guard let info = AuthenticationViewModel.AuthenticateInfo( +// domain: server.domain, +// application: application, +// redirectURI: response.value.redirectURI ?? APIService.oauthCallbackURL +// ) else { +// throw APIService.APIError.explicit(.badResponse) +// } +// return info +// } +// .receive(on: DispatchQueue.main) +// .sink { [weak self] completion in +// guard let self = self else { return } +// self.authenticationViewModel.isAuthenticating.send(false) +// +// switch completion { +// case .failure(let error): +// os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s: sign in fail: %s", ((#file as NSString).lastPathComponent), #line, #function, error.localizedDescription) +// self.viewModel.error.send(error) +// case .finished: +// break +// } +// } receiveValue: { [weak self] info in +// guard let self = self else { return } +// let authenticationController = MastodonAuthenticationController( +// context: self.context, +// authenticateURL: info.authorizeURL +// ) +// +// self.mastodonAuthenticationController = authenticationController +// authenticationController.authenticationSession?.presentationContextProvider = self +// authenticationController.authenticationSession?.start() +// +// self.authenticationViewModel.authenticate( +// info: info, +// pinCodePublisher: authenticationController.pinCodePublisher +// ) +// } +// .store(in: &disposeBag) + } } // MARK: - OnboardingViewControllerAppearance diff --git a/Mastodon/Scene/Onboarding/PickServer/MastodonPickServerViewController.swift b/Mastodon/Scene/Onboarding/PickServer/MastodonPickServerViewController.swift index 7ec24a246..2fa46cac9 100644 --- a/Mastodon/Scene/Onboarding/PickServer/MastodonPickServerViewController.swift +++ b/Mastodon/Scene/Onboarding/PickServer/MastodonPickServerViewController.swift @@ -270,60 +270,6 @@ extension MastodonPickServerViewController { } @objc private func nextButtonDidPressed(_ sender: UIButton) { - switch viewModel.mode { - case .signIn: doSignIn() - case .signUp: doSignUp() - } - } - - //TODO: @zeitschlag Move to MastodonLoginViewController - private func doSignIn() { - guard let server = viewModel.selectedServer.value else { return } - authenticationViewModel.isAuthenticating.send(true) - context.apiService.createApplication(domain: server.domain) - .tryMap { response -> AuthenticationViewModel.AuthenticateInfo in - let application = response.value - guard let info = AuthenticationViewModel.AuthenticateInfo( - domain: server.domain, - application: application, - redirectURI: response.value.redirectURI ?? APIService.oauthCallbackURL - ) else { - throw APIService.APIError.explicit(.badResponse) - } - return info - } - .receive(on: DispatchQueue.main) - .sink { [weak self] completion in - guard let self = self else { return } - self.authenticationViewModel.isAuthenticating.send(false) - - switch completion { - case .failure(let error): - os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s: sign in fail: %s", ((#file as NSString).lastPathComponent), #line, #function, error.localizedDescription) - self.viewModel.error.send(error) - case .finished: - break - } - } receiveValue: { [weak self] info in - guard let self = self else { return } - let authenticationController = MastodonAuthenticationController( - context: self.context, - authenticateURL: info.authorizeURL - ) - - self.mastodonAuthenticationController = authenticationController - authenticationController.authenticationSession?.presentationContextProvider = self - authenticationController.authenticationSession?.start() - - self.authenticationViewModel.authenticate( - info: info, - pinCodePublisher: authenticationController.pinCodePublisher - ) - } - .store(in: &disposeBag) - } - - private func doSignUp() { os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s", ((#file as NSString).lastPathComponent), #line, #function) guard let server = viewModel.selectedServer.value else { return } authenticationViewModel.isAuthenticating.send(true) diff --git a/Mastodon/Scene/Onboarding/PickServer/MastodonPickServerViewModel.swift b/Mastodon/Scene/Onboarding/PickServer/MastodonPickServerViewModel.swift index 719de4cb4..ff6806b71 100644 --- a/Mastodon/Scene/Onboarding/PickServer/MastodonPickServerViewModel.swift +++ b/Mastodon/Scene/Onboarding/PickServer/MastodonPickServerViewModel.swift @@ -17,12 +17,7 @@ import MastodonCore import MastodonUI class MastodonPickServerViewModel: NSObject { - - enum PickServerMode { - case signUp - case signIn - } - + enum EmptyStateViewState { case none case loading @@ -34,7 +29,6 @@ class MastodonPickServerViewModel: NSObject { let serverSectionHeaderView = PickServerServerSectionTableHeaderView() // input - let mode: PickServerMode let context: AppContext var categoryPickerItems: [CategoryPickerItem] = { var items: [CategoryPickerItem] = [] @@ -72,9 +66,8 @@ class MastodonPickServerViewModel: NSObject { let loadingIndexedServersError = CurrentValueSubject(nil) let emptyStateViewState = CurrentValueSubject(.none) - init(context: AppContext, mode: PickServerMode) { + init(context: AppContext) { self.context = context - self.mode = mode super.init() configure() @@ -115,9 +108,7 @@ extension MastodonPickServerViewModel { .map { indexedServers, selectCategoryItem, searchText -> [Mastodon.Entity.Server] in // ignore approval required servers when sign-up var indexedServers = indexedServers - if self.mode == .signUp { - indexedServers = indexedServers.filter { !$0.approvalRequired } - } + indexedServers = indexedServers.filter { !$0.approvalRequired } // Note: // sort by calculate last week users count // and make medium size (~800) server to top diff --git a/Mastodon/Scene/Onboarding/Welcome/WelcomeViewController.swift b/Mastodon/Scene/Onboarding/Welcome/WelcomeViewController.swift index 36f9bf7e4..5a9af3dd9 100644 --- a/Mastodon/Scene/Onboarding/Welcome/WelcomeViewController.swift +++ b/Mastodon/Scene/Onboarding/Welcome/WelcomeViewController.swift @@ -317,7 +317,7 @@ extension WelcomeViewController { extension WelcomeViewController { @objc private func signUpButtonDidClicked(_ sender: UIButton) { - _ = coordinator.present(scene: .mastodonPickServer(viewMode: MastodonPickServerViewModel(context: context, mode: .signUp)), from: self, transition: .show) + _ = coordinator.present(scene: .mastodonPickServer(viewMode: MastodonPickServerViewModel(context: context)), from: self, transition: .show) } @objc From cc6ec42c5cdb8cc55cbdab37452bd12ad1e1c244 Mon Sep 17 00:00:00 2001 From: Nathan Mattes Date: Fri, 11 Nov 2022 18:46:06 +0100 Subject: [PATCH 426/598] Add TextField and TableView (#540) tableView is green for now, cell's are coming next --- .../Onboarding/Login/MastodonLoginView.swift | 27 +++++++++++++++++++ .../Login/MastodonLoginViewController.swift | 7 +++++ 2 files changed, 34 insertions(+) diff --git a/Mastodon/Scene/Onboarding/Login/MastodonLoginView.swift b/Mastodon/Scene/Onboarding/Login/MastodonLoginView.swift index 8f3ab1beb..b62fe25c2 100644 --- a/Mastodon/Scene/Onboarding/Login/MastodonLoginView.swift +++ b/Mastodon/Scene/Onboarding/Login/MastodonLoginView.swift @@ -16,6 +16,8 @@ class MastodonLoginView: UIView { let titleLabel: UILabel let subtitleLabel: UILabel private let headerStackView: UIStackView + let searchTextField: UITextField + let tableView: UITableView let navigationActionView: NavigationActionView override init(frame: CGRect) { @@ -37,12 +39,27 @@ class MastodonLoginView: UIView { headerStackView.spacing = 16 headerStackView.translatesAutoresizingMaskIntoConstraints = false + searchTextField = UITextField() + searchTextField.translatesAutoresizingMaskIntoConstraints = false + searchTextField.backgroundColor = Asset.Scene.Onboarding.textFieldBackground.color + searchTextField.layer.cornerRadius = 10 //TODO: Change mask for + searchTextField.placeholder = "Search for your server" + searchTextField.leftView = UIImageView(image: UIImage(systemName: "magnifyingglass")) + searchTextField.leftViewMode = .always + + tableView = UITableView() + tableView.translatesAutoresizingMaskIntoConstraints = false + tableView.backgroundColor = .green + //TODO: @zeitchlag Cell + navigationActionView = NavigationActionView() navigationActionView.translatesAutoresizingMaskIntoConstraints = false super.init(frame: frame) addSubview(headerStackView) + addSubview(searchTextField) + addSubview(tableView) addSubview(navigationActionView) backgroundColor = .systemBackground @@ -60,6 +77,16 @@ class MastodonLoginView: UIView { headerStackView.leadingAnchor.constraint(equalTo: readableContentGuide.leadingAnchor), headerStackView.trailingAnchor.constraint(equalTo: readableContentGuide.trailingAnchor), + searchTextField.topAnchor.constraint(equalTo: headerStackView.bottomAnchor, constant: 32), + searchTextField.leadingAnchor.constraint(equalTo: leadingAnchor, constant: 16), + searchTextField.heightAnchor.constraint(equalToConstant: 55), + trailingAnchor.constraint(equalTo: searchTextField.trailingAnchor, constant: 16), + + tableView.topAnchor.constraint(equalTo: searchTextField.bottomAnchor), + tableView.leadingAnchor.constraint(equalTo: leadingAnchor, constant: 16), + trailingAnchor.constraint(equalTo: tableView.trailingAnchor, constant: 16), + tableView.bottomAnchor.constraint(equalTo: navigationActionView.topAnchor), + navigationActionView.leadingAnchor.constraint(equalTo: leadingAnchor), navigationActionView.trailingAnchor.constraint(equalTo: trailingAnchor), bottomAnchor.constraint(equalTo: navigationActionView.bottomAnchor), diff --git a/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift b/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift index 5797c2ae2..993aec13d 100644 --- a/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift +++ b/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift @@ -36,6 +36,9 @@ class MastodonLoginViewController: UIViewController { loginView.navigationActionView.nextButton.addTarget(self, action: #selector(MastodonLoginViewController.nextButtonPressed(_:)), for: .touchUpInside) loginView.navigationActionView.backButton.addTarget(self, action: #selector(MastodonLoginViewController.backButtonPressed(_:)), for: .touchUpInside) + loginView.searchTextField.addTarget(self, action: #selector(MastodonLoginViewController.textfieldDidChange(_:)), for: .editingChanged) + + //TODO: Set tableView.delegate and tableView.dataSource view = loginView } @@ -102,6 +105,10 @@ class MastodonLoginViewController: UIViewController { // } // .store(in: &disposeBag) } + + @objc func textfieldDidChange(_ textField: UITextField) { + print(textField.text ?? "---") + } } // MARK: - OnboardingViewControllerAppearance From ea78f884ab5f8de1f307ae5bf2397ab459e52a1f Mon Sep 17 00:00:00 2001 From: Nathan Mattes Date: Sat, 12 Nov 2022 23:25:45 +0100 Subject: [PATCH 427/598] Download and show server list (#540) --- Mastodon.xcodeproj/project.pbxproj | 8 ++ Mastodon/Coordinator/SceneCoordinator.swift | 2 +- .../MastodonLoginServerTableViewCell.swift | 12 +++ .../Onboarding/Login/MastodonLoginView.swift | 1 - .../Login/MastodonLoginViewController.swift | 77 +++++++++++++++++-- .../Login/MastodonLoginViewModel.swift | 45 +++++++++++ .../Service/API/APIService+Onboarding.swift | 4 +- .../Entity/Mastodon+Entity+Server.swift | 4 +- 8 files changed, 141 insertions(+), 12 deletions(-) create mode 100644 Mastodon/Scene/Onboarding/Login/MastodonLoginServerTableViewCell.swift create mode 100644 Mastodon/Scene/Onboarding/Login/MastodonLoginViewModel.swift diff --git a/Mastodon.xcodeproj/project.pbxproj b/Mastodon.xcodeproj/project.pbxproj index 9755bb0c7..fca6eb8b5 100644 --- a/Mastodon.xcodeproj/project.pbxproj +++ b/Mastodon.xcodeproj/project.pbxproj @@ -89,6 +89,8 @@ 87FFDA5D898A5C42ADCB35E7 /* Pods_Mastodon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A4ABE34829701A4496C5BB64 /* Pods_Mastodon.framework */; }; C24C97032922F30500BAE8CB /* RefreshControl.swift in Sources */ = {isa = PBXBuildFile; fileRef = C24C97022922F30500BAE8CB /* RefreshControl.swift */; }; D87BFC8B291D5C6B00FEE264 /* MastodonLoginView.swift in Sources */ = {isa = PBXBuildFile; fileRef = D87BFC8A291D5C6B00FEE264 /* MastodonLoginView.swift */; }; + D87BFC8D291EB81200FEE264 /* MastodonLoginViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = D87BFC8C291EB81200FEE264 /* MastodonLoginViewModel.swift */; }; + D87BFC8F291EC26A00FEE264 /* MastodonLoginServerTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = D87BFC8E291EC26A00FEE264 /* MastodonLoginServerTableViewCell.swift */; }; D8A6AB6C291C5136003AB663 /* MastodonLoginViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = D8A6AB6B291C5136003AB663 /* MastodonLoginViewController.swift */; }; DB0009A626AEE5DC009B9D2D /* Intents.intentdefinition in Sources */ = {isa = PBXBuildFile; fileRef = DB0009A926AEE5DC009B9D2D /* Intents.intentdefinition */; settings = {ATTRIBUTES = (codegen, ); }; }; DB0009A726AEE5DC009B9D2D /* Intents.intentdefinition in Sources */ = {isa = PBXBuildFile; fileRef = DB0009A926AEE5DC009B9D2D /* Intents.intentdefinition */; }; @@ -611,6 +613,8 @@ CD92E0F10BDE4FE7C4B999F2 /* Pods_MastodonTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_MastodonTests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; D7D7CF93E262178800077512 /* Pods-Mastodon-AppShared.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Mastodon-AppShared.debug.xcconfig"; path = "Target Support Files/Pods-Mastodon-AppShared/Pods-Mastodon-AppShared.debug.xcconfig"; sourceTree = ""; }; D87BFC8A291D5C6B00FEE264 /* MastodonLoginView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MastodonLoginView.swift; sourceTree = ""; }; + D87BFC8C291EB81200FEE264 /* MastodonLoginViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MastodonLoginViewModel.swift; sourceTree = ""; }; + D87BFC8E291EC26A00FEE264 /* MastodonLoginServerTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MastodonLoginServerTableViewCell.swift; sourceTree = ""; }; D8A6AB6B291C5136003AB663 /* MastodonLoginViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MastodonLoginViewController.swift; sourceTree = ""; }; DB0009A826AEE5DC009B9D2D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.intentdefinition; name = Base; path = Base.lproj/Intents.intentdefinition; sourceTree = ""; }; DB0009AD26AEE5E4009B9D2D /* ar */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ar; path = ar.lproj/Intents.strings; sourceTree = ""; }; @@ -1503,6 +1507,8 @@ children = ( D8A6AB6B291C5136003AB663 /* MastodonLoginViewController.swift */, D87BFC8A291D5C6B00FEE264 /* MastodonLoginView.swift */, + D87BFC8C291EB81200FEE264 /* MastodonLoginViewModel.swift */, + D87BFC8E291EC26A00FEE264 /* MastodonLoginServerTableViewCell.swift */, ); path = Login; sourceTree = ""; @@ -3185,6 +3191,7 @@ DB5B54A32833BD1A00DEF8B2 /* UserListViewModel.swift in Sources */, DBF156DF2701B17600EC00B7 /* SidebarAddAccountCollectionViewCell.swift in Sources */, DB0617F1278413D00030EE79 /* PickServerServerSectionTableHeaderView.swift in Sources */, + D87BFC8F291EC26A00FEE264 /* MastodonLoginServerTableViewCell.swift in Sources */, DB0FCB7E27958957006C02E2 /* StatusThreadRootTableViewCell+ViewModel.swift in Sources */, DB789A0B25F9F2950071ACA0 /* ComposeViewController.swift in Sources */, DB938F0926240F3C00E5B6C1 /* RemoteThreadViewModel.swift in Sources */, @@ -3307,6 +3314,7 @@ DB0618012785732C0030EE79 /* ServerRulesTableViewCell.swift in Sources */, DB98EB5C27B10A730082E365 /* ReportSupplementaryViewModel.swift in Sources */, DB0617EF277F12720030EE79 /* NavigationActionView.swift in Sources */, + D87BFC8D291EB81200FEE264 /* MastodonLoginViewModel.swift in Sources */, DB1FD43625F26899004CFCFC /* MastodonPickServerViewModel+LoadIndexedServerState.swift in Sources */, 2D939AE825EE1CF80076FA61 /* MastodonRegisterViewController+Avatar.swift in Sources */, DB1D186C25EF5BA7003F1F23 /* PollTableView.swift in Sources */, diff --git a/Mastodon/Coordinator/SceneCoordinator.swift b/Mastodon/Coordinator/SceneCoordinator.swift index bf663b7d8..34ac09050 100644 --- a/Mastodon/Coordinator/SceneCoordinator.swift +++ b/Mastodon/Coordinator/SceneCoordinator.swift @@ -406,7 +406,7 @@ private extension SceneCoordinator { _viewController.viewModel = viewModel viewController = _viewController case .mastodonLogin: - let loginViewController = MastodonLoginViewController() + let loginViewController = MastodonLoginViewController(appContext: appContext, authenticationViewModel: AuthenticationViewModel(context: appContext, coordinator: self, isAuthenticationExist: false)) loginViewController.delegate = self viewController = loginViewController diff --git a/Mastodon/Scene/Onboarding/Login/MastodonLoginServerTableViewCell.swift b/Mastodon/Scene/Onboarding/Login/MastodonLoginServerTableViewCell.swift new file mode 100644 index 000000000..2fb599015 --- /dev/null +++ b/Mastodon/Scene/Onboarding/Login/MastodonLoginServerTableViewCell.swift @@ -0,0 +1,12 @@ +// +// MastodonLoginServerTableViewCell.swift +// Mastodon +// +// Created by Nathan Mattes on 11.11.22. +// + +import UIKit + +class MastodonLoginServerTableViewCell: UITableViewCell { + static let reuseIdentifier = "MastodonLoginServerTableViewCell" +} diff --git a/Mastodon/Scene/Onboarding/Login/MastodonLoginView.swift b/Mastodon/Scene/Onboarding/Login/MastodonLoginView.swift index b62fe25c2..cb506a739 100644 --- a/Mastodon/Scene/Onboarding/Login/MastodonLoginView.swift +++ b/Mastodon/Scene/Onboarding/Login/MastodonLoginView.swift @@ -49,7 +49,6 @@ class MastodonLoginView: UIView { tableView = UITableView() tableView.translatesAutoresizingMaskIntoConstraints = false - tableView.backgroundColor = .green //TODO: @zeitchlag Cell navigationActionView = NavigationActionView() diff --git a/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift b/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift index 993aec13d..0c67c8705 100644 --- a/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift +++ b/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift @@ -6,25 +6,38 @@ // import UIKit +import MastodonSDK +import MastodonCore protocol MastodonLoginViewControllerDelegate: AnyObject { func backButtonPressed(_ viewController: MastodonLoginViewController) func nextButtonPressed(_ viewController: MastodonLoginViewController) } +enum MastodonLoginViewSection: Hashable { + case servers +} + class MastodonLoginViewController: UIViewController { - // back-button, next-button (enabled if user selectes a server or url is valid - // next-button does MastodonPickServerViewController.doSignIn() - weak var delegate: MastodonLoginViewControllerDelegate? + var dataSource: UITableViewDiffableDataSource? + let viewModel: MastodonLoginViewModel + let authenticationViewModel: AuthenticationViewModel + weak var appContext: AppContext? var contentView: MastodonLoginView { view as! MastodonLoginView } - init() { + init(appContext: AppContext, authenticationViewModel: AuthenticationViewModel) { + + viewModel = MastodonLoginViewModel(appContext: appContext) + self.authenticationViewModel = authenticationViewModel + self.appContext = appContext + super.init(nibName: nil, bundle: nil) + viewModel.delegate = self navigationItem.hidesBackButton = true } @@ -37,8 +50,9 @@ class MastodonLoginViewController: UIViewController { loginView.navigationActionView.nextButton.addTarget(self, action: #selector(MastodonLoginViewController.nextButtonPressed(_:)), for: .touchUpInside) loginView.navigationActionView.backButton.addTarget(self, action: #selector(MastodonLoginViewController.backButtonPressed(_:)), for: .touchUpInside) loginView.searchTextField.addTarget(self, action: #selector(MastodonLoginViewController.textfieldDidChange(_:)), for: .editingChanged) - - //TODO: Set tableView.delegate and tableView.dataSource + loginView.tableView.delegate = self + loginView.tableView.register(MastodonLoginServerTableViewCell.self, forCellReuseIdentifier: MastodonLoginServerTableViewCell.reuseIdentifier) + loginView.navigationActionView.nextButton.isEnabled = false view = loginView } @@ -46,10 +60,35 @@ class MastodonLoginViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() + let dataSource = UITableViewDiffableDataSource(tableView: contentView.tableView) { [weak self] tableView, indexPath, itemIdentifier in + guard let cell = tableView.dequeueReusableCell(withIdentifier: MastodonLoginServerTableViewCell.reuseIdentifier, for: indexPath) as? MastodonLoginServerTableViewCell, + let self = self else { + fatalError("Wrong cell") + } + + let server = self.viewModel.serverList[indexPath.row] + var configuration = cell.defaultContentConfiguration() + configuration.text = server.domain + + cell.contentConfiguration = configuration + cell.accessoryType = .disclosureIndicator + + return cell + } + + contentView.tableView.dataSource = dataSource + self.dataSource = dataSource + defer { setupNavigationBarBackgroundView() } setupOnboardingAppearance() } + override func viewWillAppear(_ animated: Bool) { + super.viewWillAppear(animated) + + viewModel.updateServers() + } + //MARK: - Actions @objc func backButtonPressed(_ sender: Any) { @@ -108,10 +147,36 @@ class MastodonLoginViewController: UIViewController { @objc func textfieldDidChange(_ textField: UITextField) { print(textField.text ?? "---") + //TODO: @zeitschlag filter server-list, update tableview + + contentView.navigationActionView.nextButton.isEnabled = false } } // MARK: - OnboardingViewControllerAppearance extension MastodonLoginViewController: OnboardingViewControllerAppearance { } +//MARK: - UITableViewDelegate +extension MastodonLoginViewController: UITableViewDelegate { + func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) { + let server = viewModel.serverList[indexPath.row] + viewModel.selectedServer = server + contentView.searchTextField.text = server.domain + //TODO: @zeitschlag filter server list + + contentView.navigationActionView.nextButton.isEnabled = true + tableView.deselectRow(at: indexPath, animated: true) + } +} + +extension MastodonLoginViewController: MastodonLoginViewModelDelegate { + func serversUpdated(_ viewModel: MastodonLoginViewModel) { + var snapshot = NSDiffableDataSourceSnapshot() + + snapshot.appendSections([MastodonLoginViewSection.servers]) + snapshot.appendItems(viewModel.serverList) + + dataSource?.applySnapshot(snapshot, animated: true) + } +} diff --git a/Mastodon/Scene/Onboarding/Login/MastodonLoginViewModel.swift b/Mastodon/Scene/Onboarding/Login/MastodonLoginViewModel.swift new file mode 100644 index 000000000..68810dded --- /dev/null +++ b/Mastodon/Scene/Onboarding/Login/MastodonLoginViewModel.swift @@ -0,0 +1,45 @@ +// +// MastodonLoginViewModel.swift +// Mastodon +// +// Created by Nathan Mattes on 11.11.22. +// + +import Foundation +import MastodonSDK +import MastodonCore +import Combine + +protocol MastodonLoginViewModelDelegate: AnyObject { + func serversUpdated(_ viewModel: MastodonLoginViewModel) +} + +class MastodonLoginViewModel { + + var serverList: [Mastodon.Entity.Server] = [] + var selectedServer: Mastodon.Entity.Server? + + weak var appContext: AppContext? + weak var delegate: MastodonLoginViewModelDelegate? + var disposeBag = Set() + + init(appContext: AppContext) { + self.appContext = appContext + } + + func updateServers() { + appContext?.apiService.servers().sink(receiveCompletion: { [weak self] completion in + switch completion { + case .finished: + guard let self = self else { return } + + self.delegate?.serversUpdated(self) + case .failure(let error): + print(error) + } + }, receiveValue: { content in + let servers = content.value + self.serverList = servers + }).store(in: &disposeBag) + } +} diff --git a/MastodonSDK/Sources/MastodonCore/Service/API/APIService+Onboarding.swift b/MastodonSDK/Sources/MastodonCore/Service/API/APIService+Onboarding.swift index 383763359..84104d838 100644 --- a/MastodonSDK/Sources/MastodonCore/Service/API/APIService+Onboarding.swift +++ b/MastodonSDK/Sources/MastodonCore/Service/API/APIService+Onboarding.swift @@ -12,8 +12,8 @@ import MastodonSDK extension APIService { public func servers( - language: String?, - category: String? + language: String? = nil, + category: String? = nil ) -> AnyPublisher, Error> { let query = Mastodon.API.Onboarding.ServersQuery(language: language, category: category) return Mastodon.API.Onboarding.servers(session: session, query: query) diff --git a/MastodonSDK/Sources/MastodonSDK/Entity/Mastodon+Entity+Server.swift b/MastodonSDK/Sources/MastodonSDK/Entity/Mastodon+Entity+Server.swift index da1f0dfad..56b4cd327 100644 --- a/MastodonSDK/Sources/MastodonSDK/Entity/Mastodon+Entity+Server.swift +++ b/MastodonSDK/Sources/MastodonSDK/Entity/Mastodon+Entity+Server.swift @@ -9,7 +9,7 @@ import Foundation extension Mastodon.Entity { - public struct Server: Codable, Equatable { + public struct Server: Codable, Equatable, Hashable { public let domain: String public let version: String public let description: String @@ -22,7 +22,7 @@ extension Mastodon.Entity { public let approvalRequired: Bool public let language: String public let category: String - //TODO: @zeitschlag Is there a way to figure out in advance if a server accepts new registrations? Right now we'd have to query the server and it responts with a `AuthenticationViewModel.AuthenticationError.registrationClosed` + //TODO: @zeitschlag Is there a way to figure out in advance if a server accepts new registrations? Right now we'd have to query the server and it responds with a `AuthenticationViewModel.AuthenticationError.registrationClosed` enum CodingKeys: String, CodingKey { case domain From bdbcd128fa0d08b2dc8ee80db74cd9c66a62fdbe Mon Sep 17 00:00:00 2001 From: Nathan Mattes Date: Sat, 12 Nov 2022 23:39:58 +0100 Subject: [PATCH 428/598] Set some backgroundcolor (#540) --- .../Scene/Onboarding/Login/MastodonLoginView.swift | 8 ++++---- .../Onboarding/Login/MastodonLoginViewController.swift | 10 ++++++++++ 2 files changed, 14 insertions(+), 4 deletions(-) diff --git a/Mastodon/Scene/Onboarding/Login/MastodonLoginView.swift b/Mastodon/Scene/Onboarding/Login/MastodonLoginView.swift index cb506a739..98d4f7b36 100644 --- a/Mastodon/Scene/Onboarding/Login/MastodonLoginView.swift +++ b/Mastodon/Scene/Onboarding/Login/MastodonLoginView.swift @@ -43,14 +43,14 @@ class MastodonLoginView: UIView { searchTextField.translatesAutoresizingMaskIntoConstraints = false searchTextField.backgroundColor = Asset.Scene.Onboarding.textFieldBackground.color searchTextField.layer.cornerRadius = 10 //TODO: Change mask for - searchTextField.placeholder = "Search for your server" + searchTextField.placeholder = "Search for your server" //TODO: @zeitschlag Localization searchTextField.leftView = UIImageView(image: UIImage(systemName: "magnifyingglass")) searchTextField.leftViewMode = .always tableView = UITableView() tableView.translatesAutoresizingMaskIntoConstraints = false - //TODO: @zeitchlag Cell - + tableView.backgroundColor = Asset.Scene.Onboarding.background.color + navigationActionView = NavigationActionView() navigationActionView.translatesAutoresizingMaskIntoConstraints = false @@ -60,7 +60,7 @@ class MastodonLoginView: UIView { addSubview(searchTextField) addSubview(tableView) addSubview(navigationActionView) - backgroundColor = .systemBackground + backgroundColor = Asset.Scene.Onboarding.background.color setupConstraints() } diff --git a/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift b/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift index 0c67c8705..0c4e9558b 100644 --- a/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift +++ b/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift @@ -8,6 +8,7 @@ import UIKit import MastodonSDK import MastodonCore +import MastodonAsset protocol MastodonLoginViewControllerDelegate: AnyObject { func backButtonPressed(_ viewController: MastodonLoginViewController) @@ -73,6 +74,15 @@ class MastodonLoginViewController: UIViewController { cell.contentConfiguration = configuration cell.accessoryType = .disclosureIndicator + if #available(iOS 16.0, *) { + var backgroundConfiguration = cell.defaultBackgroundConfiguration() + backgroundConfiguration.backgroundColor = Asset.Scene.Onboarding.textFieldBackground.color + + cell.backgroundConfiguration = backgroundConfiguration + } else { + cell.backgroundColor = .systemBackground + } + return cell } From e987affcc9c094a9bf1515c12cfbf0785d92246d Mon Sep 17 00:00:00 2001 From: Nathan Mattes Date: Sun, 13 Nov 2022 00:22:22 +0100 Subject: [PATCH 429/598] Mask corners of textfield and tableview (#540) --- .../Onboarding/Login/MastodonLoginView.swift | 45 ++++++++++++++++--- .../Login/MastodonLoginViewController.swift | 3 ++ 2 files changed, 42 insertions(+), 6 deletions(-) diff --git a/Mastodon/Scene/Onboarding/Login/MastodonLoginView.swift b/Mastodon/Scene/Onboarding/Login/MastodonLoginView.swift index 98d4f7b36..9fb5f425a 100644 --- a/Mastodon/Scene/Onboarding/Login/MastodonLoginView.swift +++ b/Mastodon/Scene/Onboarding/Login/MastodonLoginView.swift @@ -18,6 +18,7 @@ class MastodonLoginView: UIView { private let headerStackView: UIStackView let searchTextField: UITextField let tableView: UITableView + private var tableViewWrapper: UIView let navigationActionView: NavigationActionView override init(frame: CGRect) { @@ -42,7 +43,6 @@ class MastodonLoginView: UIView { searchTextField = UITextField() searchTextField.translatesAutoresizingMaskIntoConstraints = false searchTextField.backgroundColor = Asset.Scene.Onboarding.textFieldBackground.color - searchTextField.layer.cornerRadius = 10 //TODO: Change mask for searchTextField.placeholder = "Search for your server" //TODO: @zeitschlag Localization searchTextField.leftView = UIImageView(image: UIImage(systemName: "magnifyingglass")) searchTextField.leftViewMode = .always @@ -51,6 +51,11 @@ class MastodonLoginView: UIView { tableView.translatesAutoresizingMaskIntoConstraints = false tableView.backgroundColor = Asset.Scene.Onboarding.background.color + tableViewWrapper = UIView() + tableViewWrapper.translatesAutoresizingMaskIntoConstraints = false + tableViewWrapper.backgroundColor = .clear + tableViewWrapper.addSubview(tableView) + navigationActionView = NavigationActionView() navigationActionView.translatesAutoresizingMaskIntoConstraints = false @@ -58,7 +63,7 @@ class MastodonLoginView: UIView { addSubview(headerStackView) addSubview(searchTextField) - addSubview(tableView) + addSubview(tableViewWrapper) addSubview(navigationActionView) backgroundColor = Asset.Scene.Onboarding.background.color @@ -81,10 +86,15 @@ class MastodonLoginView: UIView { searchTextField.heightAnchor.constraint(equalToConstant: 55), trailingAnchor.constraint(equalTo: searchTextField.trailingAnchor, constant: 16), - tableView.topAnchor.constraint(equalTo: searchTextField.bottomAnchor), - tableView.leadingAnchor.constraint(equalTo: leadingAnchor, constant: 16), - trailingAnchor.constraint(equalTo: tableView.trailingAnchor, constant: 16), - tableView.bottomAnchor.constraint(equalTo: navigationActionView.topAnchor), + tableViewWrapper.topAnchor.constraint(equalTo: searchTextField.bottomAnchor), + tableViewWrapper.leadingAnchor.constraint(equalTo: leadingAnchor, constant: 16), + trailingAnchor.constraint(equalTo: tableViewWrapper.trailingAnchor, constant: 16), + tableViewWrapper.bottomAnchor.constraint(equalTo: navigationActionView.topAnchor), + + tableView.topAnchor.constraint(equalTo: tableViewWrapper.topAnchor), + tableView.leadingAnchor.constraint(equalTo: tableViewWrapper.leadingAnchor), + tableViewWrapper.trailingAnchor.constraint(equalTo: tableView.trailingAnchor), + tableViewWrapper.bottomAnchor.constraint(equalTo: tableView.bottomAnchor), navigationActionView.leadingAnchor.constraint(equalTo: leadingAnchor), navigationActionView.trailingAnchor.constraint(equalTo: trailingAnchor), @@ -93,4 +103,27 @@ class MastodonLoginView: UIView { NSLayoutConstraint.activate(constraints) } + func updateCorners(numberOfResults: Int = 0) { + let tableViewPath = UIBezierPath(roundedRect:tableViewWrapper.bounds, + byRoundingCorners: [.bottomLeft, .bottomRight], + cornerRadii: CGSize(width: 10, height: 10)) + + let tableViewMask = CAShapeLayer() + tableViewMask.path = tableViewPath.cgPath + tableViewWrapper.layer.mask = tableViewMask + + let searchFieldCorners: UIRectCorner + if numberOfResults == 0 { + searchFieldCorners = .allCorners + } else { + searchFieldCorners = [.topLeft, .topRight] + } + + let searchFieldPath = UIBezierPath(roundedRect: searchTextField.bounds, + byRoundingCorners: searchFieldCorners, + cornerRadii: CGSize(width: 10, height: 10)) + let searchFieldMask = CAShapeLayer() + searchFieldMask.path = searchFieldPath.cgPath + searchTextField.layer.mask = searchFieldMask + } } diff --git a/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift b/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift index 0c4e9558b..267b27c15 100644 --- a/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift +++ b/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift @@ -188,5 +188,8 @@ extension MastodonLoginViewController: MastodonLoginViewModelDelegate { snapshot.appendItems(viewModel.serverList) dataSource?.applySnapshot(snapshot, animated: true) + OperationQueue.main.addOperation { + self.contentView.updateCorners(numberOfResults: viewModel.serverList.count) + } } } From f9f14cff3cd2f7f5f74ca6dd5005b698d96c1124 Mon Sep 17 00:00:00 2001 From: Nathan Mattes Date: Sun, 13 Nov 2022 13:46:32 +0100 Subject: [PATCH 430/598] Make list of servers look nice (#540) --- Mastodon.xcodeproj/project.pbxproj | 4 +++ .../Login/ContentSizedTableView.swift | 22 ++++++++++++ .../Onboarding/Login/MastodonLoginView.swift | 34 ++++++++----------- .../Login/MastodonLoginViewController.swift | 16 +++++++-- 4 files changed, 54 insertions(+), 22 deletions(-) create mode 100644 Mastodon/Scene/Onboarding/Login/ContentSizedTableView.swift diff --git a/Mastodon.xcodeproj/project.pbxproj b/Mastodon.xcodeproj/project.pbxproj index fca6eb8b5..ae8410c35 100644 --- a/Mastodon.xcodeproj/project.pbxproj +++ b/Mastodon.xcodeproj/project.pbxproj @@ -91,6 +91,7 @@ D87BFC8B291D5C6B00FEE264 /* MastodonLoginView.swift in Sources */ = {isa = PBXBuildFile; fileRef = D87BFC8A291D5C6B00FEE264 /* MastodonLoginView.swift */; }; D87BFC8D291EB81200FEE264 /* MastodonLoginViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = D87BFC8C291EB81200FEE264 /* MastodonLoginViewModel.swift */; }; D87BFC8F291EC26A00FEE264 /* MastodonLoginServerTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = D87BFC8E291EC26A00FEE264 /* MastodonLoginServerTableViewCell.swift */; }; + D8916DC029211BE500124085 /* ContentSizedTableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = D8916DBF29211BE500124085 /* ContentSizedTableView.swift */; }; D8A6AB6C291C5136003AB663 /* MastodonLoginViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = D8A6AB6B291C5136003AB663 /* MastodonLoginViewController.swift */; }; DB0009A626AEE5DC009B9D2D /* Intents.intentdefinition in Sources */ = {isa = PBXBuildFile; fileRef = DB0009A926AEE5DC009B9D2D /* Intents.intentdefinition */; settings = {ATTRIBUTES = (codegen, ); }; }; DB0009A726AEE5DC009B9D2D /* Intents.intentdefinition in Sources */ = {isa = PBXBuildFile; fileRef = DB0009A926AEE5DC009B9D2D /* Intents.intentdefinition */; }; @@ -615,6 +616,7 @@ D87BFC8A291D5C6B00FEE264 /* MastodonLoginView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MastodonLoginView.swift; sourceTree = ""; }; D87BFC8C291EB81200FEE264 /* MastodonLoginViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MastodonLoginViewModel.swift; sourceTree = ""; }; D87BFC8E291EC26A00FEE264 /* MastodonLoginServerTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MastodonLoginServerTableViewCell.swift; sourceTree = ""; }; + D8916DBF29211BE500124085 /* ContentSizedTableView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContentSizedTableView.swift; sourceTree = ""; }; D8A6AB6B291C5136003AB663 /* MastodonLoginViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MastodonLoginViewController.swift; sourceTree = ""; }; DB0009A826AEE5DC009B9D2D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.intentdefinition; name = Base; path = Base.lproj/Intents.intentdefinition; sourceTree = ""; }; DB0009AD26AEE5E4009B9D2D /* ar */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ar; path = ar.lproj/Intents.strings; sourceTree = ""; }; @@ -1509,6 +1511,7 @@ D87BFC8A291D5C6B00FEE264 /* MastodonLoginView.swift */, D87BFC8C291EB81200FEE264 /* MastodonLoginViewModel.swift */, D87BFC8E291EC26A00FEE264 /* MastodonLoginServerTableViewCell.swift */, + D8916DBF29211BE500124085 /* ContentSizedTableView.swift */, ); path = Login; sourceTree = ""; @@ -3311,6 +3314,7 @@ DB63F769279A5EBB00455B82 /* NotificationTimelineViewModel+Diffable.swift in Sources */, DBFEEC9B279BDDD9004F81DD /* ProfileAboutViewModel+Diffable.swift in Sources */, DBB525562611EDCA002F1F29 /* UserTimelineViewModel.swift in Sources */, + D8916DC029211BE500124085 /* ContentSizedTableView.swift in Sources */, DB0618012785732C0030EE79 /* ServerRulesTableViewCell.swift in Sources */, DB98EB5C27B10A730082E365 /* ReportSupplementaryViewModel.swift in Sources */, DB0617EF277F12720030EE79 /* NavigationActionView.swift in Sources */, diff --git a/Mastodon/Scene/Onboarding/Login/ContentSizedTableView.swift b/Mastodon/Scene/Onboarding/Login/ContentSizedTableView.swift new file mode 100644 index 000000000..e0c8a9228 --- /dev/null +++ b/Mastodon/Scene/Onboarding/Login/ContentSizedTableView.swift @@ -0,0 +1,22 @@ +// +// MastodonLoginTableView.swift +// Mastodon +// +// Created by Nathan Mattes on 13.11.22. +// + +import UIKit + +// Source: https://stackoverflow.com/a/48623673 +final class ContentSizedTableView: UITableView { + override var contentSize:CGSize { + didSet { + invalidateIntrinsicContentSize() + } + } + + override var intrinsicContentSize: CGSize { + layoutIfNeeded() + return CGSize(width: UIView.noIntrinsicMetric, height: contentSize.height) + } +} diff --git a/Mastodon/Scene/Onboarding/Login/MastodonLoginView.swift b/Mastodon/Scene/Onboarding/Login/MastodonLoginView.swift index 9fb5f425a..53ed98997 100644 --- a/Mastodon/Scene/Onboarding/Login/MastodonLoginView.swift +++ b/Mastodon/Scene/Onboarding/Login/MastodonLoginView.swift @@ -10,7 +10,6 @@ import MastodonAsset class MastodonLoginView: UIView { - // SearchBox, queries api.joinmastodon.org/servers with domain // List with (filtered) domains let titleLabel: UILabel @@ -46,14 +45,17 @@ class MastodonLoginView: UIView { searchTextField.placeholder = "Search for your server" //TODO: @zeitschlag Localization searchTextField.leftView = UIImageView(image: UIImage(systemName: "magnifyingglass")) searchTextField.leftViewMode = .always + searchTextField.layer.cornerRadius = 10 - tableView = UITableView() + tableView = ContentSizedTableView() tableView.translatesAutoresizingMaskIntoConstraints = false - tableView.backgroundColor = Asset.Scene.Onboarding.background.color + tableView.backgroundColor = Asset.Scene.Onboarding.textFieldBackground.color tableViewWrapper = UIView() tableViewWrapper.translatesAutoresizingMaskIntoConstraints = false tableViewWrapper.backgroundColor = .clear + tableViewWrapper.layer.cornerRadius = 10 + tableViewWrapper.layer.masksToBounds = true tableViewWrapper.addSubview(tableView) navigationActionView = NavigationActionView() @@ -89,12 +91,12 @@ class MastodonLoginView: UIView { tableViewWrapper.topAnchor.constraint(equalTo: searchTextField.bottomAnchor), tableViewWrapper.leadingAnchor.constraint(equalTo: leadingAnchor, constant: 16), trailingAnchor.constraint(equalTo: tableViewWrapper.trailingAnchor, constant: 16), - tableViewWrapper.bottomAnchor.constraint(equalTo: navigationActionView.topAnchor), + tableViewWrapper.bottomAnchor.constraint(lessThanOrEqualTo: navigationActionView.topAnchor), tableView.topAnchor.constraint(equalTo: tableViewWrapper.topAnchor), tableView.leadingAnchor.constraint(equalTo: tableViewWrapper.leadingAnchor), tableViewWrapper.trailingAnchor.constraint(equalTo: tableView.trailingAnchor), - tableViewWrapper.bottomAnchor.constraint(equalTo: tableView.bottomAnchor), + tableViewWrapper.bottomAnchor.constraint(greaterThanOrEqualTo: tableView.bottomAnchor), navigationActionView.leadingAnchor.constraint(equalTo: leadingAnchor), navigationActionView.trailingAnchor.constraint(equalTo: trailingAnchor), @@ -104,26 +106,18 @@ class MastodonLoginView: UIView { } func updateCorners(numberOfResults: Int = 0) { - let tableViewPath = UIBezierPath(roundedRect:tableViewWrapper.bounds, - byRoundingCorners: [.bottomLeft, .bottomRight], - cornerRadii: CGSize(width: 10, height: 10)) - let tableViewMask = CAShapeLayer() - tableViewMask.path = tableViewPath.cgPath - tableViewWrapper.layer.mask = tableViewMask + tableView.isHidden = (numberOfResults == 0) + tableViewWrapper.layer.maskedCorners = [.layerMinXMaxYCorner, .layerMaxXMaxYCorner] // tableViewMask + + let maskedCorners: CACornerMask - let searchFieldCorners: UIRectCorner if numberOfResults == 0 { - searchFieldCorners = .allCorners + maskedCorners = [.layerMinXMinYCorner, .layerMinXMaxYCorner, .layerMaxXMinYCorner, .layerMaxXMaxYCorner] } else { - searchFieldCorners = [.topLeft, .topRight] + maskedCorners = [.layerMinXMinYCorner, .layerMaxXMinYCorner] } - let searchFieldPath = UIBezierPath(roundedRect: searchTextField.bounds, - byRoundingCorners: searchFieldCorners, - cornerRadii: CGSize(width: 10, height: 10)) - let searchFieldMask = CAShapeLayer() - searchFieldMask.path = searchFieldPath.cgPath - searchTextField.layer.mask = searchFieldMask + searchTextField.layer.maskedCorners = maskedCorners } } diff --git a/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift b/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift index 267b27c15..780cc932c 100644 --- a/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift +++ b/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift @@ -83,12 +83,22 @@ class MastodonLoginViewController: UIViewController { cell.backgroundColor = .systemBackground } + if self.viewModel.serverList.last == server { + cell.layer.maskedCorners = [.layerMinXMaxYCorner, .layerMaxXMaxYCorner] + cell.layer.cornerRadius = 10 + cell.layer.masksToBounds = true + } else { + cell.layer.masksToBounds = false + } + return cell } contentView.tableView.dataSource = dataSource self.dataSource = dataSource + contentView.updateCorners() + defer { setupNavigationBarBackgroundView() } setupOnboardingAppearance() } @@ -187,9 +197,11 @@ extension MastodonLoginViewController: MastodonLoginViewModelDelegate { snapshot.appendSections([MastodonLoginViewSection.servers]) snapshot.appendItems(viewModel.serverList) - dataSource?.applySnapshot(snapshot, animated: true) + dataSource?.applySnapshot(snapshot, animated: false) + OperationQueue.main.addOperation { - self.contentView.updateCorners(numberOfResults: viewModel.serverList.count) + let numberOfResults = viewModel.serverList.count + self.contentView.updateCorners(numberOfResults: numberOfResults) } } } From a910d6787655b4a7093ce215d0a7e9d41531d726 Mon Sep 17 00:00:00 2001 From: Nathan Mattes Date: Sun, 13 Nov 2022 14:02:28 +0100 Subject: [PATCH 431/598] Filter servers (#540) --- .../Login/MastodonLoginViewController.swift | 16 +++++++--------- .../Login/MastodonLoginViewModel.swift | 16 +++++++++++++++- 2 files changed, 22 insertions(+), 10 deletions(-) diff --git a/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift b/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift index 780cc932c..411377019 100644 --- a/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift +++ b/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift @@ -63,11 +63,11 @@ class MastodonLoginViewController: UIViewController { let dataSource = UITableViewDiffableDataSource(tableView: contentView.tableView) { [weak self] tableView, indexPath, itemIdentifier in guard let cell = tableView.dequeueReusableCell(withIdentifier: MastodonLoginServerTableViewCell.reuseIdentifier, for: indexPath) as? MastodonLoginServerTableViewCell, - let self = self else { + let self = self else { fatalError("Wrong cell") } - let server = self.viewModel.serverList[indexPath.row] + let server = self.viewModel.filteredServers[indexPath.row] var configuration = cell.defaultContentConfiguration() configuration.text = server.domain @@ -83,7 +83,7 @@ class MastodonLoginViewController: UIViewController { cell.backgroundColor = .systemBackground } - if self.viewModel.serverList.last == server { + if self.viewModel.filteredServers.last == server { cell.layer.maskedCorners = [.layerMinXMaxYCorner, .layerMaxXMaxYCorner] cell.layer.cornerRadius = 10 cell.layer.masksToBounds = true @@ -166,9 +166,7 @@ class MastodonLoginViewController: UIViewController { } @objc func textfieldDidChange(_ textField: UITextField) { - print(textField.text ?? "---") - //TODO: @zeitschlag filter server-list, update tableview - + viewModel.filterServers(withText: textField.text) contentView.navigationActionView.nextButton.isEnabled = false } } @@ -179,7 +177,7 @@ extension MastodonLoginViewController: OnboardingViewControllerAppearance { } //MARK: - UITableViewDelegate extension MastodonLoginViewController: UITableViewDelegate { func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) { - let server = viewModel.serverList[indexPath.row] + let server = viewModel.filteredServers[indexPath.row] viewModel.selectedServer = server contentView.searchTextField.text = server.domain @@ -195,12 +193,12 @@ extension MastodonLoginViewController: MastodonLoginViewModelDelegate { var snapshot = NSDiffableDataSourceSnapshot() snapshot.appendSections([MastodonLoginViewSection.servers]) - snapshot.appendItems(viewModel.serverList) + snapshot.appendItems(viewModel.filteredServers) dataSource?.applySnapshot(snapshot, animated: false) OperationQueue.main.addOperation { - let numberOfResults = viewModel.serverList.count + let numberOfResults = viewModel.filteredServers.count self.contentView.updateCorners(numberOfResults: numberOfResults) } } diff --git a/Mastodon/Scene/Onboarding/Login/MastodonLoginViewModel.swift b/Mastodon/Scene/Onboarding/Login/MastodonLoginViewModel.swift index 68810dded..061e26c6b 100644 --- a/Mastodon/Scene/Onboarding/Login/MastodonLoginViewModel.swift +++ b/Mastodon/Scene/Onboarding/Login/MastodonLoginViewModel.swift @@ -16,8 +16,9 @@ protocol MastodonLoginViewModelDelegate: AnyObject { class MastodonLoginViewModel { - var serverList: [Mastodon.Entity.Server] = [] + private var serverList: [Mastodon.Entity.Server] = [] var selectedServer: Mastodon.Entity.Server? + var filteredServers: [Mastodon.Entity.Server] = [] weak var appContext: AppContext? weak var delegate: MastodonLoginViewModelDelegate? @@ -42,4 +43,17 @@ class MastodonLoginViewModel { self.serverList = servers }).store(in: &disposeBag) } + + func filterServers(withText query: String?) { + guard let query else { + filteredServers = serverList + delegate?.serversUpdated(self) + return + } + + filteredServers = serverList.filter { $0.domain.contains(query) }.sorted {$0.totalUsers > $1.totalUsers } + delegate?.serversUpdated(self) + +// AuthenticationViewModel.parseDomain(from: query) + } } From f293d178848e0b25df838172ce3ff38a81271783 Mon Sep 17 00:00:00 2001 From: Nathan Mattes Date: Sun, 13 Nov 2022 14:22:50 +0100 Subject: [PATCH 432/598] Add login (#540) --- .../Login/MastodonLoginViewController.swift | 120 +++++++++++------- .../MastodonPickServerViewController.swift | 7 - 2 files changed, 75 insertions(+), 52 deletions(-) diff --git a/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift b/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift index 411377019..fa05a13b5 100644 --- a/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift +++ b/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift @@ -9,6 +9,8 @@ import UIKit import MastodonSDK import MastodonCore import MastodonAsset +import Combine +import AuthenticationServices protocol MastodonLoginViewControllerDelegate: AnyObject { func backButtonPressed(_ viewController: MastodonLoginViewController) @@ -25,7 +27,10 @@ class MastodonLoginViewController: UIViewController { var dataSource: UITableViewDiffableDataSource? let viewModel: MastodonLoginViewModel let authenticationViewModel: AuthenticationViewModel + var mastodonAuthenticationController: MastodonAuthenticationController? + weak var appContext: AppContext? + var disposeBag = Set() var contentView: MastodonLoginView { view as! MastodonLoginView @@ -109,6 +114,12 @@ class MastodonLoginViewController: UIViewController { viewModel.updateServers() } + override func viewDidAppear(_ animated: Bool) { + super.viewDidAppear(animated) + + contentView.searchTextField.becomeFirstResponder() + } + //MARK: - Actions @objc func backButtonPressed(_ sender: Any) { @@ -116,65 +127,76 @@ class MastodonLoginViewController: UIViewController { } @objc func nextButtonPressed(_ sender: Any) { - delegate?.nextButtonPressed(self) + login(sender) } @objc func login(_ sender: Any) { -// guard let server = viewModel.selectedServer.value else { return } -// authenticationViewModel.isAuthenticating.send(true) -// context.apiService.createApplication(domain: server.domain) -// .tryMap { response -> AuthenticationViewModel.AuthenticateInfo in -// let application = response.value -// guard let info = AuthenticationViewModel.AuthenticateInfo( -// domain: server.domain, -// application: application, -// redirectURI: response.value.redirectURI ?? APIService.oauthCallbackURL -// ) else { -// throw APIService.APIError.explicit(.badResponse) -// } -// return info -// } -// .receive(on: DispatchQueue.main) -// .sink { [weak self] completion in -// guard let self = self else { return } -// self.authenticationViewModel.isAuthenticating.send(false) -// -// switch completion { -// case .failure(let error): -// os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s: sign in fail: %s", ((#file as NSString).lastPathComponent), #line, #function, error.localizedDescription) + guard let server = viewModel.selectedServer else { return } + + authenticationViewModel.isAuthenticating.send(true) + appContext?.apiService.createApplication(domain: server.domain) + .tryMap { response -> AuthenticationViewModel.AuthenticateInfo in + let application = response.value + guard let info = AuthenticationViewModel.AuthenticateInfo( + domain: server.domain, + application: application, + redirectURI: response.value.redirectURI ?? APIService.oauthCallbackURL + ) else { + throw APIService.APIError.explicit(.badResponse) + } + return info + } + .receive(on: DispatchQueue.main) + .sink { [weak self] completion in + guard let self = self else { return } + self.authenticationViewModel.isAuthenticating.send(false) + + switch completion { + case .failure(let error): // self.viewModel.error.send(error) -// case .finished: -// break -// } -// } receiveValue: { [weak self] info in -// guard let self = self else { return } -// let authenticationController = MastodonAuthenticationController( -// context: self.context, -// authenticateURL: info.authorizeURL -// ) -// -// self.mastodonAuthenticationController = authenticationController -// authenticationController.authenticationSession?.presentationContextProvider = self -// authenticationController.authenticationSession?.start() -// -// self.authenticationViewModel.authenticate( -// info: info, -// pinCodePublisher: authenticationController.pinCodePublisher -// ) -// } -// .store(in: &disposeBag) + break + case .finished: + break + } + } receiveValue: { [weak self] info in + guard let self, let appContext = self.appContext else { return } + let authenticationController = MastodonAuthenticationController( + context: appContext, + authenticateURL: info.authorizeURL + ) + + self.mastodonAuthenticationController = authenticationController + authenticationController.authenticationSession?.presentationContextProvider = self + authenticationController.authenticationSession?.start() + + self.authenticationViewModel.authenticate( + info: info, + pinCodePublisher: authenticationController.pinCodePublisher + ) + } + .store(in: &disposeBag) } @objc func textfieldDidChange(_ textField: UITextField) { viewModel.filterServers(withText: textField.text) - contentView.navigationActionView.nextButton.isEnabled = false + + + if let text = textField.text, + let domain = AuthenticationViewModel.parseDomain(from: text) { + + viewModel.selectedServer = .init(domain: domain, instance: .init(domain: domain)) + contentView.navigationActionView.nextButton.isEnabled = true + } else { + viewModel.selectedServer = nil + contentView.navigationActionView.nextButton.isEnabled = false + } } } // MARK: - OnboardingViewControllerAppearance extension MastodonLoginViewController: OnboardingViewControllerAppearance { } -//MARK: - UITableViewDelegate +// MARK: - UITableViewDelegate extension MastodonLoginViewController: UITableViewDelegate { func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) { let server = viewModel.filteredServers[indexPath.row] @@ -188,6 +210,7 @@ extension MastodonLoginViewController: UITableViewDelegate { } } +// MARK: - MastodonLoginViewModelDelegate extension MastodonLoginViewController: MastodonLoginViewModelDelegate { func serversUpdated(_ viewModel: MastodonLoginViewModel) { var snapshot = NSDiffableDataSourceSnapshot() @@ -203,3 +226,10 @@ extension MastodonLoginViewController: MastodonLoginViewModelDelegate { } } } + +// MARK: - ASWebAuthenticationPresentationContextProviding +extension MastodonLoginViewController: ASWebAuthenticationPresentationContextProviding { + func presentationAnchor(for session: ASWebAuthenticationSession) -> ASPresentationAnchor { + return view.window! + } +} diff --git a/Mastodon/Scene/Onboarding/PickServer/MastodonPickServerViewController.swift b/Mastodon/Scene/Onboarding/PickServer/MastodonPickServerViewController.swift index 2fa46cac9..11e12f3c8 100644 --- a/Mastodon/Scene/Onboarding/PickServer/MastodonPickServerViewController.swift +++ b/Mastodon/Scene/Onboarding/PickServer/MastodonPickServerViewController.swift @@ -452,10 +452,3 @@ extension MastodonPickServerViewController: PickServerServerSectionTableHeaderVi // MARK: - OnboardingViewControllerAppearance extension MastodonPickServerViewController: OnboardingViewControllerAppearance { } - -// MARK: - ASWebAuthenticationPresentationContextProviding -extension MastodonPickServerViewController: ASWebAuthenticationPresentationContextProviding { - func presentationAnchor(for session: ASWebAuthenticationSession) -> ASPresentationAnchor { - return view.window! - } -} From e7b8870329be24d98a93cacaf1a5ef457b167432 Mon Sep 17 00:00:00 2001 From: Nathan Mattes Date: Sun, 13 Nov 2022 14:30:05 +0100 Subject: [PATCH 433/598] Do the keyboard-dance (#540) --- .../Onboarding/Login/MastodonLoginView.swift | 9 ++++- .../Login/MastodonLoginViewController.swift | 34 +++++++++++++++++++ 2 files changed, 42 insertions(+), 1 deletion(-) diff --git a/Mastodon/Scene/Onboarding/Login/MastodonLoginView.swift b/Mastodon/Scene/Onboarding/Login/MastodonLoginView.swift index 53ed98997..d59e30dd4 100644 --- a/Mastodon/Scene/Onboarding/Login/MastodonLoginView.swift +++ b/Mastodon/Scene/Onboarding/Login/MastodonLoginView.swift @@ -19,6 +19,7 @@ class MastodonLoginView: UIView { let tableView: UITableView private var tableViewWrapper: UIView let navigationActionView: NavigationActionView + var bottomConstraint: NSLayoutConstraint? override init(frame: CGRect) { @@ -50,6 +51,7 @@ class MastodonLoginView: UIView { tableView = ContentSizedTableView() tableView.translatesAutoresizingMaskIntoConstraints = false tableView.backgroundColor = Asset.Scene.Onboarding.textFieldBackground.color + tableView.keyboardDismissMode = .onDrag tableViewWrapper = UIView() tableViewWrapper.translatesAutoresizingMaskIntoConstraints = false @@ -77,6 +79,9 @@ class MastodonLoginView: UIView { } private func setupConstraints() { + + let bottomConstraint = safeAreaLayoutGuide.bottomAnchor.constraint(equalTo: navigationActionView.bottomAnchor) + let constraints = [ headerStackView.topAnchor.constraint(equalTo: safeAreaLayoutGuide.topAnchor), @@ -100,8 +105,10 @@ class MastodonLoginView: UIView { navigationActionView.leadingAnchor.constraint(equalTo: leadingAnchor), navigationActionView.trailingAnchor.constraint(equalTo: trailingAnchor), - bottomAnchor.constraint(equalTo: navigationActionView.bottomAnchor), + bottomConstraint, ] + + self.bottomConstraint = bottomConstraint NSLayoutConstraint.activate(constraints) } diff --git a/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift b/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift index fa05a13b5..6ab427e5b 100644 --- a/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift +++ b/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift @@ -46,6 +46,7 @@ class MastodonLoginViewController: UIViewController { viewModel.delegate = self navigationItem.hidesBackButton = true + //TODO: @zeitschlag consider keyboard, do the notification-dance } required init?(coder: NSCoder) { fatalError("init(coder:) has not been implemented") } @@ -66,6 +67,9 @@ class MastodonLoginViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() + NotificationCenter.default.addObserver(self, selector: #selector(keyboardWillShowNotification(_:)), name: UIResponder.keyboardWillShowNotification, object: nil) + NotificationCenter.default.addObserver(self, selector: #selector(keyboardWillHideNotification(_:)), name: UIResponder.keyboardWillHideNotification, object: nil) + let dataSource = UITableViewDiffableDataSource(tableView: contentView.tableView) { [weak self] tableView, indexPath, itemIdentifier in guard let cell = tableView.dequeueReusableCell(withIdentifier: MastodonLoginServerTableViewCell.reuseIdentifier, for: indexPath) as? MastodonLoginServerTableViewCell, let self = self else { @@ -191,6 +195,36 @@ class MastodonLoginViewController: UIViewController { contentView.navigationActionView.nextButton.isEnabled = false } } + + // MARK: - Notifications + @objc func keyboardWillShowNotification(_ notification: Notification) { + + guard let userInfo = notification.userInfo, + let keyboardFrameValue = userInfo[UIResponder.keyboardFrameEndUserInfoKey] as? NSValue, + let duration = userInfo[UIResponder.keyboardAnimationDurationUserInfoKey] as? NSNumber + else { return } + + let adjustmentHeight = keyboardFrameValue.cgRectValue.height - view.safeAreaInsets.bottom + contentView.bottomConstraint?.constant = adjustmentHeight + + UIView.animate(withDuration: duration.doubleValue, delay: 0, options: .curveEaseInOut) { + self.view.layoutIfNeeded() + } + } + + @objc func keyboardWillHideNotification(_ notification: Notification) { + + guard let userInfo = notification.userInfo, + let duration = userInfo[UIResponder.keyboardAnimationDurationUserInfoKey] as? NSNumber + else { return } + + contentView.bottomConstraint?.constant = 0 + + UIView.animate(withDuration: duration.doubleValue, delay: 0, options: .curveEaseInOut) { + self.view.layoutIfNeeded() + } + } + } // MARK: - OnboardingViewControllerAppearance From 7c14d7163013901ae883979f5bd157c1e3a93a27 Mon Sep 17 00:00:00 2001 From: Nathan Mattes Date: Sun, 13 Nov 2022 14:50:45 +0100 Subject: [PATCH 434/598] Show main-screen after login (#540) --- Mastodon/Coordinator/SceneCoordinator.swift | 4 +- .../Login/MastodonLoginViewController.swift | 46 +++++++++++++++---- .../Login/MastodonLoginViewModel.swift | 4 +- .../MastodonPickServerViewModel.swift | 1 - 4 files changed, 40 insertions(+), 15 deletions(-) diff --git a/Mastodon/Coordinator/SceneCoordinator.swift b/Mastodon/Coordinator/SceneCoordinator.swift index 34ac09050..365002256 100644 --- a/Mastodon/Coordinator/SceneCoordinator.swift +++ b/Mastodon/Coordinator/SceneCoordinator.swift @@ -406,7 +406,9 @@ private extension SceneCoordinator { _viewController.viewModel = viewModel viewController = _viewController case .mastodonLogin: - let loginViewController = MastodonLoginViewController(appContext: appContext, authenticationViewModel: AuthenticationViewModel(context: appContext, coordinator: self, isAuthenticationExist: false)) + let loginViewController = MastodonLoginViewController(appContext: appContext, + authenticationViewModel: AuthenticationViewModel(context: appContext, coordinator: self, isAuthenticationExist: false), + sceneCoordinator: self) loginViewController.delegate = self viewController = loginViewController diff --git a/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift b/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift index 6ab427e5b..ef65ca5e8 100644 --- a/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift +++ b/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift @@ -21,7 +21,7 @@ enum MastodonLoginViewSection: Hashable { case servers } -class MastodonLoginViewController: UIViewController { +class MastodonLoginViewController: UIViewController, NeedsDependency { weak var delegate: MastodonLoginViewControllerDelegate? var dataSource: UITableViewDiffableDataSource? @@ -29,24 +29,26 @@ class MastodonLoginViewController: UIViewController { let authenticationViewModel: AuthenticationViewModel var mastodonAuthenticationController: MastodonAuthenticationController? - weak var appContext: AppContext? + weak var context: AppContext! + weak var coordinator: SceneCoordinator! + var disposeBag = Set() var contentView: MastodonLoginView { view as! MastodonLoginView } - init(appContext: AppContext, authenticationViewModel: AuthenticationViewModel) { + init(appContext: AppContext, authenticationViewModel: AuthenticationViewModel, sceneCoordinator: SceneCoordinator) { viewModel = MastodonLoginViewModel(appContext: appContext) self.authenticationViewModel = authenticationViewModel - self.appContext = appContext + self.context = appContext + self.coordinator = sceneCoordinator super.init(nibName: nil, bundle: nil) viewModel.delegate = self navigationItem.hidesBackButton = true - //TODO: @zeitschlag consider keyboard, do the notification-dance } required init?(coder: NSCoder) { fatalError("init(coder:) has not been implemented") } @@ -137,8 +139,32 @@ class MastodonLoginViewController: UIViewController { @objc func login(_ sender: Any) { guard let server = viewModel.selectedServer else { return } + authenticationViewModel + .authenticated + .asyncMap { domain, user -> Result in + do { + let result = try await self.context.authenticationService.activeMastodonUser(domain: domain, userID: user.id) + return .success(result) + } catch { + return .failure(error) + } + } + .receive(on: DispatchQueue.main) + .sink { [weak self] result in + guard let self = self else { return } + switch result { + case .failure(let error): + assertionFailure(error.localizedDescription) + case .success(let isActived): + assert(isActived) + // self.dismiss(animated: true, completion: nil) + self.coordinator.setup() + } + } + .store(in: &disposeBag) + authenticationViewModel.isAuthenticating.send(true) - appContext?.apiService.createApplication(domain: server.domain) + context.apiService.createApplication(domain: server.domain) .tryMap { response -> AuthenticationViewModel.AuthenticateInfo in let application = response.value guard let info = AuthenticationViewModel.AuthenticateInfo( @@ -157,15 +183,15 @@ class MastodonLoginViewController: UIViewController { switch completion { case .failure(let error): -// self.viewModel.error.send(error) + //TODO: @zeitschlag show error break case .finished: break } } receiveValue: { [weak self] info in - guard let self, let appContext = self.appContext else { return } + guard let self else { return } let authenticationController = MastodonAuthenticationController( - context: appContext, + context: self.context, authenticateURL: info.authorizeURL ) @@ -204,6 +230,7 @@ class MastodonLoginViewController: UIViewController { let duration = userInfo[UIResponder.keyboardAnimationDurationUserInfoKey] as? NSNumber else { return } + //FIXME: @zeitschlag on iPad let adjustmentHeight = keyboardFrameValue.cgRectValue.height - view.safeAreaInsets.bottom contentView.bottomConstraint?.constant = adjustmentHeight @@ -237,7 +264,6 @@ extension MastodonLoginViewController: UITableViewDelegate { viewModel.selectedServer = server contentView.searchTextField.text = server.domain - //TODO: @zeitschlag filter server list contentView.navigationActionView.nextButton.isEnabled = true tableView.deselectRow(at: indexPath, animated: true) diff --git a/Mastodon/Scene/Onboarding/Login/MastodonLoginViewModel.swift b/Mastodon/Scene/Onboarding/Login/MastodonLoginViewModel.swift index 061e26c6b..61311a1b9 100644 --- a/Mastodon/Scene/Onboarding/Login/MastodonLoginViewModel.swift +++ b/Mastodon/Scene/Onboarding/Login/MastodonLoginViewModel.swift @@ -51,9 +51,7 @@ class MastodonLoginViewModel { return } - filteredServers = serverList.filter { $0.domain.contains(query) }.sorted {$0.totalUsers > $1.totalUsers } + filteredServers = serverList.filter { $0.domain.lowercased().contains(query) }.sorted {$0.totalUsers > $1.totalUsers } delegate?.serversUpdated(self) - -// AuthenticationViewModel.parseDomain(from: query) } } diff --git a/Mastodon/Scene/Onboarding/PickServer/MastodonPickServerViewModel.swift b/Mastodon/Scene/Onboarding/PickServer/MastodonPickServerViewModel.swift index ff6806b71..ebbcfe7fd 100644 --- a/Mastodon/Scene/Onboarding/PickServer/MastodonPickServerViewModel.swift +++ b/Mastodon/Scene/Onboarding/PickServer/MastodonPickServerViewModel.swift @@ -169,7 +169,6 @@ extension MastodonPickServerViewModel { .compactMap { [weak self] searchText -> AnyPublisher, Error>, Never>? in // Check if searchText is a valid mastodon server domain guard let self = self else { return nil } - //TODO: @zeitschlag Also allow search for incomplete URLs? guard let domain = AuthenticationViewModel.parseDomain(from: searchText) else { return Just(Result.failure(APIService.APIError.implicit(.badRequest))).eraseToAnyPublisher() } From 378e04c9cbff8dd61e61a127e36dc34017c235bd Mon Sep 17 00:00:00 2001 From: Nathan Mattes Date: Sun, 13 Nov 2022 14:55:59 +0100 Subject: [PATCH 435/598] Don't show a server when you just tapped on one (#540) --- .../Scene/Onboarding/Login/MastodonLoginViewController.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift b/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift index ef65ca5e8..5811de40b 100644 --- a/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift +++ b/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift @@ -264,6 +264,7 @@ extension MastodonLoginViewController: UITableViewDelegate { viewModel.selectedServer = server contentView.searchTextField.text = server.domain + viewModel.filterServers(withText: " ") contentView.navigationActionView.nextButton.isEnabled = true tableView.deselectRow(at: indexPath, animated: true) From cf2f7850b701e314f62fab73195eac3c737d2760 Mon Sep 17 00:00:00 2001 From: Nathan Mattes Date: Sun, 13 Nov 2022 15:04:42 +0100 Subject: [PATCH 436/598] Sprinkle in some localization (#540) --- Localization/app.json | 7 +++++++ .../Scene/Onboarding/Login/MastodonLoginView.swift | 7 ++++--- .../MastodonLocalization/Generated/Strings.swift | 10 ++++++++++ .../Resources/en.lproj/Localizable.strings | 5 ++++- 4 files changed, 25 insertions(+), 4 deletions(-) diff --git a/Localization/app.json b/Localization/app.json index 8287a00a5..9f6cdecac 100644 --- a/Localization/app.json +++ b/Localization/app.json @@ -218,6 +218,13 @@ "get_started": "Get Started", "log_in": "Log In" }, + "login": { + "title": "", + "subtitle": "", + "server_search_field": { + "placeholder": "Search for your server" + } + } "server_picker": { "title": "Mastodon is made of users in different servers.", "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", diff --git a/Mastodon/Scene/Onboarding/Login/MastodonLoginView.swift b/Mastodon/Scene/Onboarding/Login/MastodonLoginView.swift index d59e30dd4..03c357fca 100644 --- a/Mastodon/Scene/Onboarding/Login/MastodonLoginView.swift +++ b/Mastodon/Scene/Onboarding/Login/MastodonLoginView.swift @@ -7,6 +7,7 @@ import UIKit import MastodonAsset +import MastodonLocalization class MastodonLoginView: UIView { @@ -26,13 +27,13 @@ class MastodonLoginView: UIView { titleLabel = UILabel() titleLabel.font = MastodonLoginViewController.largeTitleFont titleLabel.textColor = MastodonLoginViewController.largeTitleTextColor - titleLabel.text = "Welcome Back" //TODO: @zeitschlag localization + titleLabel.text = L10n.Scene.Login.title titleLabel.numberOfLines = 0 subtitleLabel = UILabel() subtitleLabel.font = MastodonLoginViewController.subTitleFont subtitleLabel.textColor = MastodonLoginViewController.subTitleTextColor - subtitleLabel.text = "Log you in with the server where you created your account" //TODO: @zeitschlag localization + subtitleLabel.text = L10n.Scene.Login.subtitle subtitleLabel.numberOfLines = 0 headerStackView = UIStackView(arrangedSubviews: [titleLabel, subtitleLabel]) @@ -43,7 +44,7 @@ class MastodonLoginView: UIView { searchTextField = UITextField() searchTextField.translatesAutoresizingMaskIntoConstraints = false searchTextField.backgroundColor = Asset.Scene.Onboarding.textFieldBackground.color - searchTextField.placeholder = "Search for your server" //TODO: @zeitschlag Localization + searchTextField.placeholder = L10n.Scene.Login.ServerSearchField.placeholder searchTextField.leftView = UIImageView(image: UIImage(systemName: "magnifyingglass")) searchTextField.leftViewMode = .always searchTextField.layer.cornerRadius = 10 diff --git a/MastodonSDK/Sources/MastodonLocalization/Generated/Strings.swift b/MastodonSDK/Sources/MastodonLocalization/Generated/Strings.swift index 1ad98b0ea..af0f4c628 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Generated/Strings.swift +++ b/MastodonSDK/Sources/MastodonLocalization/Generated/Strings.swift @@ -665,6 +665,16 @@ public enum L10n { } } } + public enum Login { + /// Log you in with the server where you created your account + public static let subtitle = L10n.tr("Localizable", "Scene.Login.Subtitle") + /// Welcome Back! + public static let title = L10n.tr("Localizable", "Scene.Login.Title") + public enum ServerSearchField { + /// Search for your server + public static let placeholder = L10n.tr("Localizable", "Scene.Login.ServerSearchField.Placeholder") + } + } public enum Notification { public enum FollowRequest { /// Accept diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/en.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/en.lproj/Localizable.strings index 07ccd2c1b..0ede22a38 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/en.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/en.lproj/Localizable.strings @@ -315,6 +315,9 @@ uploaded to Mastodon."; "Scene.Register.Input.Username.DuplicatePrompt" = "This username is taken."; "Scene.Register.Input.Username.Placeholder" = "username"; "Scene.Register.LetsGetYouSetUpOnDomain" = "Let’s get you set up on %@"; +"Scene.Login.Title" = "Welcome Back!"; +"Scene.Login.Subtitle" = "Log you in with the server where you created your account"; +"Scene.Login.ServerSearchField.Placeholder" = "Search for your server"; "Scene.Register.Title" = "Let’s get you set up on %@"; "Scene.Report.Content1" = "Are there any other posts you’d like to add to the report?"; "Scene.Report.Content2" = "Is there anything the moderators should know about this report?"; @@ -454,4 +457,4 @@ uploaded to Mastodon."; back in your hands."; "Scene.Wizard.AccessibilityHint" = "Double tap to dismiss this wizard"; "Scene.Wizard.MultipleAccountSwitchIntroDescription" = "Switch between multiple accounts by holding the profile button."; -"Scene.Wizard.NewInMastodon" = "New in Mastodon"; \ No newline at end of file +"Scene.Wizard.NewInMastodon" = "New in Mastodon"; From 105a98a3955619157a8c0f8d016d743aa8b6025f Mon Sep 17 00:00:00 2001 From: Nathan Mattes Date: Mon, 14 Nov 2022 17:16:33 +0100 Subject: [PATCH 437/598] No extra orientation for Debug (#571) --- Mastodon/Supporting Files/AppDelegate.swift | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Mastodon/Supporting Files/AppDelegate.swift b/Mastodon/Supporting Files/AppDelegate.swift index 3bf38f6da..84b819a5c 100644 --- a/Mastodon/Supporting Files/AppDelegate.swift +++ b/Mastodon/Supporting Files/AppDelegate.swift @@ -65,11 +65,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate { extension AppDelegate { func application(_ application: UIApplication, supportedInterfaceOrientationsFor window: UIWindow?) -> UIInterfaceOrientationMask { - #if DEBUG - return .all - #else return UIDevice.current.userInterfaceIdiom == .phone ? .portrait : .all - #endif } } From 082e0933d2d029f4b442f55194e9a4525e703261 Mon Sep 17 00:00:00 2001 From: Nathan Mattes Date: Mon, 14 Nov 2022 17:53:37 +0100 Subject: [PATCH 438/598] Slash some todos (#540) --- Mastodon/Coordinator/SceneCoordinator.swift | 2 +- .../Login/MastodonLoginViewController.swift | 55 +++++++++---------- .../Resources/en.lproj/Localizable.strings | 2 +- 3 files changed, 29 insertions(+), 30 deletions(-) diff --git a/Mastodon/Coordinator/SceneCoordinator.swift b/Mastodon/Coordinator/SceneCoordinator.swift index 365002256..9e6307a38 100644 --- a/Mastodon/Coordinator/SceneCoordinator.swift +++ b/Mastodon/Coordinator/SceneCoordinator.swift @@ -548,6 +548,6 @@ extension SceneCoordinator: MastodonLoginViewControllerDelegate { } func nextButtonPressed(_ viewController: MastodonLoginViewController) { - //TODO: @zeitschlag implement, show ASWebAuthentication and stuff + viewController.login() } } diff --git a/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift b/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift index 5811de40b..a1daf77bd 100644 --- a/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift +++ b/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift @@ -133,35 +133,34 @@ class MastodonLoginViewController: UIViewController, NeedsDependency { } @objc func nextButtonPressed(_ sender: Any) { - login(sender) + delegate?.nextButtonPressed(self) } - @objc func login(_ sender: Any) { + @objc func login() { guard let server = viewModel.selectedServer else { return } authenticationViewModel - .authenticated - .asyncMap { domain, user -> Result in - do { - let result = try await self.context.authenticationService.activeMastodonUser(domain: domain, userID: user.id) - return .success(result) - } catch { - return .failure(error) - } + .authenticated + .asyncMap { domain, user -> Result in + do { + let result = try await self.context.authenticationService.activeMastodonUser(domain: domain, userID: user.id) + return .success(result) + } catch { + return .failure(error) } - .receive(on: DispatchQueue.main) - .sink { [weak self] result in - guard let self = self else { return } - switch result { - case .failure(let error): - assertionFailure(error.localizedDescription) - case .success(let isActived): - assert(isActived) - // self.dismiss(animated: true, completion: nil) - self.coordinator.setup() - } + } + .receive(on: DispatchQueue.main) + .sink { [weak self] result in + guard let self = self else { return } + switch result { + case .failure(let error): + assertionFailure(error.localizedDescription) + case .success(let isActived): + assert(isActived) + self.coordinator.setup() } - .store(in: &disposeBag) + } + .store(in: &disposeBag) authenticationViewModel.isAuthenticating.send(true) context.apiService.createApplication(domain: server.domain) @@ -183,9 +182,10 @@ class MastodonLoginViewController: UIViewController, NeedsDependency { switch completion { case .failure(let error): - //TODO: @zeitschlag show error - break + let alert = UIAlertController.standardAlert(of: error) + self.present(alert, animated: true) case .finished: + // do nothing. There's a subscriber above resulting in `coordinator.setup()` break } } receiveValue: { [weak self] info in @@ -251,7 +251,6 @@ class MastodonLoginViewController: UIViewController, NeedsDependency { self.view.layoutIfNeeded() } } - } // MARK: - OnboardingViewControllerAppearance @@ -290,7 +289,7 @@ extension MastodonLoginViewController: MastodonLoginViewModelDelegate { // MARK: - ASWebAuthenticationPresentationContextProviding extension MastodonLoginViewController: ASWebAuthenticationPresentationContextProviding { - func presentationAnchor(for session: ASWebAuthenticationSession) -> ASPresentationAnchor { - return view.window! - } + func presentationAnchor(for session: ASWebAuthenticationSession) -> ASPresentationAnchor { + return view.window! + } } diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/en.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/en.lproj/Localizable.strings index 0ede22a38..1a48d8c55 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/en.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/en.lproj/Localizable.strings @@ -317,7 +317,7 @@ uploaded to Mastodon."; "Scene.Register.LetsGetYouSetUpOnDomain" = "Let’s get you set up on %@"; "Scene.Login.Title" = "Welcome Back!"; "Scene.Login.Subtitle" = "Log you in with the server where you created your account"; -"Scene.Login.ServerSearchField.Placeholder" = "Search for your server"; +"Scene.Login.ServerSearchField.Placeholder" = "Search server or enter URL"; "Scene.Register.Title" = "Let’s get you set up on %@"; "Scene.Report.Content1" = "Are there any other posts you’d like to add to the report?"; "Scene.Report.Content2" = "Is there anything the moderators should know about this report?"; From 26d918a28f01bd36d67d1117d1b5e5518ef6fcb8 Mon Sep 17 00:00:00 2001 From: Nathan Mattes Date: Mon, 14 Nov 2022 23:40:22 +0100 Subject: [PATCH 439/598] Fix build (again) This time, it's by hand because why not :D --- .../input/Base.lproj/app.json | 19 ++++++++++++------- Localization/app.json | 8 ++++---- .../Generated/Strings.swift | 6 +++--- 3 files changed, 19 insertions(+), 14 deletions(-) diff --git a/Localization/StringsConvertor/input/Base.lproj/app.json b/Localization/StringsConvertor/input/Base.lproj/app.json index 30566d8d6..3a1228131 100644 --- a/Localization/StringsConvertor/input/Base.lproj/app.json +++ b/Localization/StringsConvertor/input/Base.lproj/app.json @@ -74,8 +74,8 @@ "take_photo": "Take Photo", "save_photo": "Save Photo", "copy_photo": "Copy Photo", - "sign_in": "Sign In", - "sign_up": "Sign Up", + "sign_in": "Log in", + "sign_up": "Create account", "see_more": "See More", "preview": "Preview", "share": "Share", @@ -218,10 +218,16 @@ "get_started": "Get Started", "log_in": "Log In" }, + "login": { + "title": "Welcome back", + "subtitle": "Log you in on the server you created your account on.", + "server_search_field": { + "placeholder": "Enter URL or search for your server" + } + } "server_picker": { "title": "Mastodon is made of users in different servers.", - "subtitle": "Pick a server based on your interests, region, or a general purpose one.", - "subtitle_extend": "Pick a server based on your interests, region, or a general purpose one. Each server is operated by an entirely independent organization or individual.", + "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", "button": { "category": { "all": "All", @@ -248,8 +254,7 @@ "category": "CATEGORY" }, "input": { - "placeholder": "Search servers", - "search_servers_or_enter_url": "Search servers or enter URL" + "search_servers_or_enter_url": "Search communities or enter URL" }, "empty_state": { "finding_servers": "Finding available servers...", @@ -719,4 +724,4 @@ "title": "Bookmarks" } } -} \ No newline at end of file +} diff --git a/Localization/app.json b/Localization/app.json index 9f6cdecac..3a1228131 100644 --- a/Localization/app.json +++ b/Localization/app.json @@ -219,10 +219,10 @@ "log_in": "Log In" }, "login": { - "title": "", - "subtitle": "", + "title": "Welcome back", + "subtitle": "Log you in on the server you created your account on.", "server_search_field": { - "placeholder": "Search for your server" + "placeholder": "Enter URL or search for your server" } } "server_picker": { @@ -724,4 +724,4 @@ "title": "Bookmarks" } } -} \ No newline at end of file +} diff --git a/MastodonSDK/Sources/MastodonLocalization/Generated/Strings.swift b/MastodonSDK/Sources/MastodonLocalization/Generated/Strings.swift index af0f4c628..9535b932f 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Generated/Strings.swift +++ b/MastodonSDK/Sources/MastodonLocalization/Generated/Strings.swift @@ -667,12 +667,12 @@ public enum L10n { } public enum Login { /// Log you in with the server where you created your account - public static let subtitle = L10n.tr("Localizable", "Scene.Login.Subtitle") + public static let subtitle = L10n.tr("Localizable", "Scene.Login.Subtitle", fallback: "Scene.Login.Subtitle") /// Welcome Back! - public static let title = L10n.tr("Localizable", "Scene.Login.Title") + public static let title = L10n.tr("Localizable", "Scene.Login.Title", fallback: "Welcome") public enum ServerSearchField { /// Search for your server - public static let placeholder = L10n.tr("Localizable", "Scene.Login.ServerSearchField.Placeholder") + public static let placeholder = L10n.tr("Localizable", "Scene.Login.ServerSearchField.Placeholder", fallback: "Scene.Login.ServerSearchField.Placeholder") } } public enum Notification { From 83e0c0e994c9d135697b0147bf2fbe7c29ffde17 Mon Sep 17 00:00:00 2001 From: Nathan Mattes Date: Tue, 15 Nov 2022 23:26:58 +0100 Subject: [PATCH 440/598] Slash more todos (#540) - Apply some math for keyboard-dance - Onboarding will be reworked nevertheless --- .../Login/MastodonLoginViewController.swift | 14 +++++++++++--- .../MastodonPickServerViewController.swift | 1 - 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift b/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift index a1daf77bd..6125955f4 100644 --- a/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift +++ b/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift @@ -129,10 +129,12 @@ class MastodonLoginViewController: UIViewController, NeedsDependency { //MARK: - Actions @objc func backButtonPressed(_ sender: Any) { + contentView.searchTextField.resignFirstResponder() delegate?.backButtonPressed(self) } @objc func nextButtonPressed(_ sender: Any) { + contentView.searchTextField.resignFirstResponder() delegate?.nextButtonPressed(self) } @@ -230,9 +232,15 @@ class MastodonLoginViewController: UIViewController, NeedsDependency { let duration = userInfo[UIResponder.keyboardAnimationDurationUserInfoKey] as? NSNumber else { return } - //FIXME: @zeitschlag on iPad - let adjustmentHeight = keyboardFrameValue.cgRectValue.height - view.safeAreaInsets.bottom - contentView.bottomConstraint?.constant = adjustmentHeight + // inspired by https://stackoverflow.com/a/30245044 + let keyboardFrame = keyboardFrameValue.cgRectValue + + let keyboardOrigin = view.convert(keyboardFrame.origin, from: nil) + let intersectionY = CGRectGetMaxY(view.frame) - keyboardOrigin.y; + + if intersectionY >= 0 { + contentView.bottomConstraint?.constant = intersectionY - view.safeAreaInsets.bottom + } UIView.animate(withDuration: duration.doubleValue, delay: 0, options: .curveEaseInOut) { self.view.layoutIfNeeded() diff --git a/Mastodon/Scene/Onboarding/PickServer/MastodonPickServerViewController.swift b/Mastodon/Scene/Onboarding/PickServer/MastodonPickServerViewController.swift index 11e12f3c8..7e832ddca 100644 --- a/Mastodon/Scene/Onboarding/PickServer/MastodonPickServerViewController.swift +++ b/Mastodon/Scene/Onboarding/PickServer/MastodonPickServerViewController.swift @@ -445,7 +445,6 @@ extension MastodonPickServerViewController: PickServerServerSectionTableHeaderVi } func pickServerServerSectionTableHeaderView(_ headerView: PickServerServerSectionTableHeaderView, searchTextDidChange searchText: String?) { - //TODO: @zeitschlag Deselect server? viewModel.searchText.send(searchText ?? "") } } From bd35a01be231ad10f53f8d6643b467e03c87e0f3 Mon Sep 17 00:00:00 2001 From: Nathan Mattes Date: Tue, 15 Nov 2022 23:30:46 +0100 Subject: [PATCH 441/598] Fix package.resolved --- .../xcshareddata/swiftpm/Package.resolved | 257 ++++++++++++++++++ 1 file changed, 257 insertions(+) create mode 100644 Mastodon.xcworkspace/xcshareddata/swiftpm/Package.resolved diff --git a/Mastodon.xcworkspace/xcshareddata/swiftpm/Package.resolved b/Mastodon.xcworkspace/xcshareddata/swiftpm/Package.resolved new file mode 100644 index 000000000..409b8820d --- /dev/null +++ b/Mastodon.xcworkspace/xcshareddata/swiftpm/Package.resolved @@ -0,0 +1,257 @@ +{ + "pins" : [ + { + "identity" : "alamofire", + "kind" : "remoteSourceControl", + "location" : "https://github.com/Alamofire/Alamofire.git", + "state" : { + "revision" : "354dda32d89fc8cd4f5c46487f64957d355f53d8", + "version" : "5.6.1" + } + }, + { + "identity" : "alamofireimage", + "kind" : "remoteSourceControl", + "location" : "https://github.com/Alamofire/AlamofireImage.git", + "state" : { + "revision" : "98cbb00ce0ec5fc8e52a5b50a6bfc08d3e5aee10", + "version" : "4.2.0" + } + }, + { + "identity" : "commonoslog", + "kind" : "remoteSourceControl", + "location" : "https://github.com/MainasuK/CommonOSLog", + "state" : { + "revision" : "c121624a30698e9886efe38aebb36ff51c01b6c2", + "version" : "0.1.1" + } + }, + { + "identity" : "faviconfinder", + "kind" : "remoteSourceControl", + "location" : "https://github.com/will-lumley/FaviconFinder.git", + "state" : { + "revision" : "1f74844f77f79b95c0bb0130b3a87d4f340e6d3a", + "version" : "3.3.0" + } + }, + { + "identity" : "flanimatedimage", + "kind" : "remoteSourceControl", + "location" : "https://github.com/Flipboard/FLAnimatedImage.git", + "state" : { + "revision" : "e7f9fd4681ae41bf6f3056db08af4f401d61da52", + "version" : "1.0.16" + } + }, + { + "identity" : "fpsindicator", + "kind" : "remoteSourceControl", + "location" : "https://github.com/MainasuK/FPSIndicator.git", + "state" : { + "revision" : "e4a5067ccd5293b024c767f09e51056afd4a4796", + "version" : "1.1.0" + } + }, + { + "identity" : "fuzi", + "kind" : "remoteSourceControl", + "location" : "https://github.com/cezheng/Fuzi.git", + "state" : { + "revision" : "f08c8323da21e985f3772610753bcfc652c2103f", + "version" : "3.1.3" + } + }, + { + "identity" : "keychainaccess", + "kind" : "remoteSourceControl", + "location" : "https://github.com/kishikawakatsumi/KeychainAccess.git", + "state" : { + "revision" : "84e546727d66f1adc5439debad16270d0fdd04e7", + "version" : "4.2.2" + } + }, + { + "identity" : "kingfisher", + "kind" : "remoteSourceControl", + "location" : "https://github.com/onevcat/Kingfisher.git", + "state" : { + "revision" : "44e891bdb61426a95e31492a67c7c0dfad1f87c5", + "version" : "7.4.1" + } + }, + { + "identity" : "metatextkit", + "kind" : "remoteSourceControl", + "location" : "https://github.com/TwidereProject/MetaTextKit.git", + "state" : { + "revision" : "dcd5255d6930c2fab408dc8562c577547e477624", + "version" : "2.2.5" + } + }, + { + "identity" : "nextlevelsessionexporter", + "kind" : "remoteSourceControl", + "location" : "https://github.com/NextLevel/NextLevelSessionExporter.git", + "state" : { + "revision" : "b6c0cce1aa37fe1547d694f958fac3c3524b74da", + "version" : "0.4.6" + } + }, + { + "identity" : "nuke", + "kind" : "remoteSourceControl", + "location" : "https://github.com/kean/Nuke.git", + "state" : { + "revision" : "0ea7545b5c918285aacc044dc75048625c8257cc", + "version" : "10.8.0" + } + }, + { + "identity" : "nuke-flanimatedimage-plugin", + "kind" : "remoteSourceControl", + "location" : "https://github.com/kean/Nuke-FLAnimatedImage-Plugin.git", + "state" : { + "revision" : "b59c346a7d536336db3b0f12c72c6e53ee709e16", + "version" : "8.0.0" + } + }, + { + "identity" : "pageboy", + "kind" : "remoteSourceControl", + "location" : "https://github.com/uias/Pageboy", + "state" : { + "revision" : "34ecb6e7c4e0e07494960ab2f7cc9a02293915a6", + "version" : "3.6.2" + } + }, + { + "identity" : "panmodal", + "kind" : "remoteSourceControl", + "location" : "https://github.com/slackhq/PanModal.git", + "state" : { + "revision" : "b012aecb6b67a8e46369227f893c12544846613f", + "version" : "1.2.7" + } + }, + { + "identity" : "sdwebimage", + "kind" : "remoteSourceControl", + "location" : "https://github.com/SDWebImage/SDWebImage.git", + "state" : { + "revision" : "2e63d0061da449ad0ed130768d05dceb1496de44", + "version" : "5.12.5" + } + }, + { + "identity" : "stripes", + "kind" : "remoteSourceControl", + "location" : "https://github.com/eneko/Stripes.git", + "state" : { + "revision" : "d533fd44b8043a3abbf523e733599173d6f98c11", + "version" : "0.2.0" + } + }, + { + "identity" : "swift-collections", + "kind" : "remoteSourceControl", + "location" : "https://github.com/apple/swift-collections.git", + "state" : { + "revision" : "f504716c27d2e5d4144fa4794b12129301d17729", + "version" : "1.0.3" + } + }, + { + "identity" : "swift-nio", + "kind" : "remoteSourceControl", + "location" : "https://github.com/apple/swift-nio.git", + "state" : { + "revision" : "546610d52b19be3e19935e0880bb06b9c03f5cef", + "version" : "1.14.4" + } + }, + { + "identity" : "swift-nio-zlib-support", + "kind" : "remoteSourceControl", + "location" : "https://github.com/apple/swift-nio-zlib-support.git", + "state" : { + "revision" : "37760e9a52030bb9011972c5213c3350fa9d41fd", + "version" : "1.0.0" + } + }, + { + "identity" : "swiftsoup", + "kind" : "remoteSourceControl", + "location" : "https://github.com/scinfu/SwiftSoup.git", + "state" : { + "revision" : "41e7c263fb8c277e980ebcb9b0b5f6031d3d4886", + "version" : "2.4.2" + } + }, + { + "identity" : "swiftui-introspect", + "kind" : "remoteSourceControl", + "location" : "https://github.com/siteline/SwiftUI-Introspect.git", + "state" : { + "revision" : "f2616860a41f9d9932da412a8978fec79c06fe24", + "version" : "0.1.4" + } + }, + { + "identity" : "tabbarpager", + "kind" : "remoteSourceControl", + "location" : "https://github.com/TwidereProject/TabBarPager.git", + "state" : { + "revision" : "488aa66d157a648901b61721212c0dec23d27ee5", + "version" : "0.1.0" + } + }, + { + "identity" : "tabman", + "kind" : "remoteSourceControl", + "location" : "https://github.com/uias/Tabman", + "state" : { + "revision" : "4a4f7c755b875ffd4f9ef10d67a67883669d2465", + "version" : "2.13.0" + } + }, + { + "identity" : "thirdpartymailer", + "kind" : "remoteSourceControl", + "location" : "https://github.com/vtourraine/ThirdPartyMailer.git", + "state" : { + "revision" : "44c1cfaa6969963f22691aa67f88a69e3b6d651f", + "version" : "2.1.0" + } + }, + { + "identity" : "tocropviewcontroller", + "kind" : "remoteSourceControl", + "location" : "https://github.com/TimOliver/TOCropViewController.git", + "state" : { + "revision" : "d0470491f56e734731bbf77991944c0dfdee3e0e", + "version" : "2.6.1" + } + }, + { + "identity" : "uihostingconfigurationbackport", + "kind" : "remoteSourceControl", + "location" : "https://github.com/woxtu/UIHostingConfigurationBackport.git", + "state" : { + "revision" : "6091f2d38faa4b24fc2ca0389c651e2f666624a3", + "version" : "0.1.0" + } + }, + { + "identity" : "uitextview-placeholder", + "kind" : "remoteSourceControl", + "location" : "https://github.com/MainasuK/UITextView-Placeholder.git", + "state" : { + "revision" : "20f513ded04a040cdf5467f0891849b1763ede3b", + "version" : "1.4.1" + } + } + ], + "version" : 2 +} From d86d613b4aec126c71b3da5b18a0fb8402f4a264 Mon Sep 17 00:00:00 2001 From: Nathan Mattes Date: Tue, 15 Nov 2022 23:51:24 +0100 Subject: [PATCH 442/598] Remove todos (#540) After discussion they will be taken care of when we rework the onboarding (spoiler) --- Mastodon/Diffable/Onboarding/PickServerSection.swift | 1 - .../Onboarding/PickServer/TableViewCell/PickServerCell.swift | 2 -- .../Sources/MastodonSDK/Entity/Mastodon+Entity+Server.swift | 1 - 3 files changed, 4 deletions(-) diff --git a/Mastodon/Diffable/Onboarding/PickServerSection.swift b/Mastodon/Diffable/Onboarding/PickServerSection.swift index 24e4d2ffb..ef7ca5972 100644 --- a/Mastodon/Diffable/Onboarding/PickServerSection.swift +++ b/Mastodon/Diffable/Onboarding/PickServerSection.swift @@ -48,7 +48,6 @@ extension PickServerSection { extension PickServerSection { static func configure(cell: PickServerCell, server: Mastodon.Entity.Server, attribute: PickServerItem.ServerItemAttribute) { - //TODO: @zeitschlag configure cell if server doesn't allow registrations cell.domainLabel.text = server.domain cell.descriptionLabel.attributedText = { let content: String = { diff --git a/Mastodon/Scene/Onboarding/PickServer/TableViewCell/PickServerCell.swift b/Mastodon/Scene/Onboarding/PickServer/TableViewCell/PickServerCell.swift index e199ea96c..4cbe77b9c 100644 --- a/Mastodon/Scene/Onboarding/PickServer/TableViewCell/PickServerCell.swift +++ b/Mastodon/Scene/Onboarding/PickServer/TableViewCell/PickServerCell.swift @@ -83,8 +83,6 @@ class PickServerCell: UITableViewCell { return label }() - //TODO: @zeitschlag New label for "Registrations closed" - private var collapseConstraints: [NSLayoutConstraint] = [] private var expandConstraints: [NSLayoutConstraint] = [] diff --git a/MastodonSDK/Sources/MastodonSDK/Entity/Mastodon+Entity+Server.swift b/MastodonSDK/Sources/MastodonSDK/Entity/Mastodon+Entity+Server.swift index 56b4cd327..4267810b7 100644 --- a/MastodonSDK/Sources/MastodonSDK/Entity/Mastodon+Entity+Server.swift +++ b/MastodonSDK/Sources/MastodonSDK/Entity/Mastodon+Entity+Server.swift @@ -22,7 +22,6 @@ extension Mastodon.Entity { public let approvalRequired: Bool public let language: String public let category: String - //TODO: @zeitschlag Is there a way to figure out in advance if a server accepts new registrations? Right now we'd have to query the server and it responds with a `AuthenticationViewModel.AuthenticationError.registrationClosed` enum CodingKeys: String, CodingKey { case domain From 61b9242df243932d0acef0d932732f32ff6c6e61 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 03:29:17 +0100 Subject: [PATCH 443/598] New translations app.json (Indonesian) --- .../StringsConvertor/input/id.lproj/app.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Localization/StringsConvertor/input/id.lproj/app.json b/Localization/StringsConvertor/input/id.lproj/app.json index 45e072a30..346ac5359 100644 --- a/Localization/StringsConvertor/input/id.lproj/app.json +++ b/Localization/StringsConvertor/input/id.lproj/app.json @@ -129,23 +129,23 @@ "show_post": "Tampilkan Postingan", "show_user_profile": "Tampilkan Profil Pengguna", "content_warning": "Peringatan Konten", - "sensitive_content": "Sensitive Content", + "sensitive_content": "Konten Sensitif", "media_content_warning": "Ketuk di mana saja untuk melihat", - "tap_to_reveal": "Tap to reveal", + "tap_to_reveal": "Ketuk untuk mengungkap", "poll": { - "vote": "Vote", + "vote": "Pilih", "closed": "Ditutup" }, "meta_entity": { - "url": "Link: %s", - "hashtag": "Hashtag: %s", - "mention": "Show Profile: %s", - "email": "Email address: %s" + "url": "Tautan: %s", + "hashtag": "Tagar: %s", + "mention": "Tampilkan Profile: %s", + "email": "Alamat email: %s" }, "actions": { "reply": "Balas", "reblog": "Reblog", - "unreblog": "Undo reblog", + "unreblog": "Batalkan reblog", "favorite": "Favorit", "unfavorite": "Unfavorite", "menu": "Menu", From 97765f11f619c5cdf63c47c1e4a45a792a39df08 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 04:29:21 +0100 Subject: [PATCH 444/598] New translations app.json (Indonesian) --- .../StringsConvertor/input/id.lproj/app.json | 72 +++++++++---------- 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/Localization/StringsConvertor/input/id.lproj/app.json b/Localization/StringsConvertor/input/id.lproj/app.json index 346ac5359..864283436 100644 --- a/Localization/StringsConvertor/input/id.lproj/app.json +++ b/Localization/StringsConvertor/input/id.lproj/app.json @@ -147,13 +147,13 @@ "reblog": "Reblog", "unreblog": "Batalkan reblog", "favorite": "Favorit", - "unfavorite": "Unfavorite", + "unfavorite": "Batalkan favorit", "menu": "Menu", - "hide": "Hide", - "show_image": "Show image", - "show_gif": "Show GIF", - "show_video_player": "Show video player", - "tap_then_hold_to_show_menu": "Tap then hold to show menu" + "hide": "Sembunyikan", + "show_image": "Tampilkan gambar", + "show_gif": "Tampilkan GIF", + "show_video_player": "Tampilkan pemutar video", + "tap_then_hold_to_show_menu": "Ketuk lalu tahan untuk menampilkan menu" }, "tag": { "url": "URL", @@ -165,16 +165,16 @@ }, "visibility": { "unlisted": "Everyone can see this post but not display in the public timeline.", - "private": "Only their followers can see this post.", - "private_from_me": "Only my followers can see this post.", - "direct": "Only mentioned user can see this post." + "private": "Hanya pengikut mereka yang dapat melihat postingan ini.", + "private_from_me": "Hanya pengikut saya yang dapat melihat postingan ini.", + "direct": "Hanya pengguna yang disebut yang dapat melihat postingan ini." } }, "friendship": { "follow": "Ikuti", "following": "Mengikuti", - "request": "Request", - "pending": "Pending", + "request": "Minta", + "pending": "Tertunda", "block": "Blokir", "block_user": "Blokir %s", "block_domain": "Blokir %s", @@ -187,8 +187,8 @@ "unmute_user": "Berhenti membisukan %s", "muted": "Dibisukan", "edit_info": "Sunting Info", - "show_reblogs": "Show Reblogs", - "hide_reblogs": "Hide Reblogs" + "show_reblogs": "Tampilkan Reblog", + "hide_reblogs": "Sembunyikan Reblog" }, "timeline": { "filtered": "Tersaring", @@ -196,32 +196,32 @@ "now": "Sekarang" }, "loader": { - "load_missing_posts": "Load missing posts", - "loading_missing_posts": "Loading missing posts...", + "load_missing_posts": "Muat postingan yang hilang", + "loading_missing_posts": "Memuat postingan yang hilang...", "show_more_replies": "Tampilkan lebih banyak balasan" }, "header": { - "no_status_found": "No Post Found", - "blocking_warning": "You can’t view this user's profile\nuntil you unblock them.\nYour profile looks like this to them.", - "user_blocking_warning": "You can’t view %s’s profile\nuntil you unblock them.\nYour profile looks like this to them.", - "blocked_warning": "You can’t view this user’s profile\nuntil they unblock you.", - "user_blocked_warning": "You can’t view %s’s profile\nuntil they unblock you.", - "suspended_warning": "This user has been suspended.", - "user_suspended_warning": "%s’s account has been suspended." + "no_status_found": "Tidak Ditemukan Postingan", + "blocking_warning": "Anda tidak dapat melihat profil pengguna ini sampai Anda membuka blokir mereka.\nProfil Anda terlihat seperti ini bagi mereka.", + "user_blocking_warning": "Anda tidak dapat melihat profil %s sampai Anda membuka blokir mereka.\nProfil Anda terlihat seperti ini bagi mereka.", + "blocked_warning": "Anda tidak dapat melihat profil pengguna ini sampai mereka membuka blokir Anda.", + "user_blocked_warning": "Anda tidak dapat melihat profil %s sampai mereka membuka blokir Anda.", + "suspended_warning": "Pengguna ini telah ditangguhkan.", + "user_suspended_warning": "Akun %s telah ditangguhkan." } } } }, "scene": { "welcome": { - "slogan": "Social networking\nback in your hands.", - "get_started": "Get Started", - "log_in": "Log In" + "slogan": "Jejaring sosial dalam genggaman Anda.", + "get_started": "Mulai", + "log_in": "Login" }, "server_picker": { "title": "Pilih sebuah server,\nserver manapun.", - "subtitle": "Pick a server based on your interests, region, or a general purpose one.", - "subtitle_extend": "Pick a server based on your interests, region, or a general purpose one. Each server is operated by an entirely independent organization or individual.", + "subtitle": "Pilih server berdasarkan minat, wilayah, atau tujuan Anda.", + "subtitle_extend": "Pilih server berdasarkan minat, wilayah, atau tujuan Anda. Setiap server dioperasikan oleh organisasi atau individu yang sepenuhnya independen.", "button": { "category": { "all": "Semua", @@ -248,8 +248,8 @@ "category": "KATEGORI" }, "input": { - "placeholder": "Search servers", - "search_servers_or_enter_url": "Search servers or enter URL" + "placeholder": "Cari server", + "search_servers_or_enter_url": "Cari server atau masukkan URL" }, "empty_state": { "finding_servers": "Mencari server yang tersedia...", @@ -259,7 +259,7 @@ }, "register": { "title": "Beritahu kami tentang diri Anda.", - "lets_get_you_set_up_on_domain": "Let’s get you set up on %s", + "lets_get_you_set_up_on_domain": "Mari kita siapkan Anda di %s", "input": { "avatar": { "delete": "Hapus" @@ -269,18 +269,18 @@ "duplicate_prompt": "Nama pengguna ini sudah diambil." }, "display_name": { - "placeholder": "display name" + "placeholder": "nama yang ditampilkan" }, "email": { "placeholder": "surel" }, "password": { "placeholder": "kata sandi", - "require": "Your password needs at least:", - "character_limit": "8 characters", + "require": "Kata sandi Anda harus memiliki setidaknya:", + "character_limit": "8 karakter", "accessibility": { - "checked": "checked", - "unchecked": "unchecked" + "checked": "dicentang", + "unchecked": "tidak dicentang" }, "hint": "Kata sandi Anda harus memiliki sekurang-kurangnya delapan karakter" }, @@ -294,7 +294,7 @@ "email": "Surel", "password": "Kata sandi", "agreement": "Persetujuan", - "locale": "Locale", + "locale": "Lokal", "reason": "Alasan" }, "reason": { From ac3c32b8cc22535e36e62b0c37d6747bf6178112 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 06:19:28 +0100 Subject: [PATCH 445/598] New translations app.json (Galician) --- Localization/StringsConvertor/input/gl.lproj/app.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Localization/StringsConvertor/input/gl.lproj/app.json b/Localization/StringsConvertor/input/gl.lproj/app.json index ee2a7cef7..58463bdd0 100644 --- a/Localization/StringsConvertor/input/gl.lproj/app.json +++ b/Localization/StringsConvertor/input/gl.lproj/app.json @@ -385,10 +385,10 @@ "description_video": "Describe o vídeo para persoas con problemas visuais...", "load_failed": "Fallou a carga", "upload_failed": "Erro na subida", - "can_not_recognize_this_media_attachment": "Can not recognize this media attachment", + "can_not_recognize_this_media_attachment": "Non se recoñece o tipo de multimedia", "attachment_too_large": "Adxunto demasiado grande", - "compressing_state": "Compressing...", - "server_processing_state": "Server Processing..." + "compressing_state": "Comprimindo...", + "server_processing_state": "Procesando no servidor..." }, "poll": { "duration_time": "Duración: %s", @@ -399,8 +399,8 @@ "three_days": "3 Días", "seven_days": "7 Días", "option_number": "Opción %ld", - "the_poll_is_invalid": "The poll is invalid", - "the_poll_has_empty_option": "The poll has empty option" + "the_poll_is_invalid": "A enquisa non é válida", + "the_poll_has_empty_option": "A enquisa ten unha opción baleira" }, "content_warning": { "placeholder": "Escribe o teu aviso aquí..." From 99a59f4360ff2b8c2483e93ed05a1e63772a5cff Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 07:22:16 +0100 Subject: [PATCH 446/598] New translations app.json (Galician) --- Localization/StringsConvertor/input/gl.lproj/app.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Localization/StringsConvertor/input/gl.lproj/app.json b/Localization/StringsConvertor/input/gl.lproj/app.json index 58463bdd0..e00791796 100644 --- a/Localization/StringsConvertor/input/gl.lproj/app.json +++ b/Localization/StringsConvertor/input/gl.lproj/app.json @@ -450,8 +450,8 @@ "content": "Contido" }, "verified": { - "short": "Verified on %s", - "long": "Ownership of this link was checked on %s" + "short": "Verificada en %s", + "long": "A propiedade desta ligazón foi verificada o %s" } }, "segmented_control": { From 5240006f079ad3817109e00f4d84167b67f379fe Mon Sep 17 00:00:00 2001 From: Nathan Mattes Date: Wed, 16 Nov 2022 07:37:13 +0100 Subject: [PATCH 447/598] Improve textfield-UX (#540) --- Mastodon/Scene/Onboarding/Login/MastodonLoginView.swift | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Mastodon/Scene/Onboarding/Login/MastodonLoginView.swift b/Mastodon/Scene/Onboarding/Login/MastodonLoginView.swift index 03c357fca..e641b3c8c 100644 --- a/Mastodon/Scene/Onboarding/Login/MastodonLoginView.swift +++ b/Mastodon/Scene/Onboarding/Login/MastodonLoginView.swift @@ -48,6 +48,9 @@ class MastodonLoginView: UIView { searchTextField.leftView = UIImageView(image: UIImage(systemName: "magnifyingglass")) searchTextField.leftViewMode = .always searchTextField.layer.cornerRadius = 10 + searchTextField.keyboardType = .URL + searchTextField.autocorrectionType = .no + searchTextField.autocapitalizationType = .none tableView = ContentSizedTableView() tableView.translatesAutoresizingMaskIntoConstraints = false From 890ba49f4e28305d9d0243fc6b3a3ee634509396 Mon Sep 17 00:00:00 2001 From: Nathan Mattes Date: Wed, 16 Nov 2022 07:38:04 +0100 Subject: [PATCH 448/598] Make magnifiying glass in searchTextField look great (#540) Thank you @MainasuK :thumbs_up: --- .../Onboarding/Login/MastodonLoginView.swift | 31 ++++++++++++++++++- 1 file changed, 30 insertions(+), 1 deletion(-) diff --git a/Mastodon/Scene/Onboarding/Login/MastodonLoginView.swift b/Mastodon/Scene/Onboarding/Login/MastodonLoginView.swift index e641b3c8c..066ce454f 100644 --- a/Mastodon/Scene/Onboarding/Login/MastodonLoginView.swift +++ b/Mastodon/Scene/Onboarding/Login/MastodonLoginView.swift @@ -16,7 +16,12 @@ class MastodonLoginView: UIView { let titleLabel: UILabel let subtitleLabel: UILabel private let headerStackView: UIStackView + let searchTextField: UITextField + private let searchTextFieldLeftView: UIView + private let searchTextFieldMagnifyingGlass: UIImageView + private let searchContainerLeftPaddingView: UIView + let tableView: UITableView private var tableViewWrapper: UIView let navigationActionView: NavigationActionView @@ -41,11 +46,25 @@ class MastodonLoginView: UIView { headerStackView.spacing = 16 headerStackView.translatesAutoresizingMaskIntoConstraints = false + searchTextFieldMagnifyingGlass = UIImageView(image: UIImage( + systemName: "magnifyingglass", + withConfiguration: UIImage.SymbolConfiguration(pointSize: 15, weight: .regular) + )) + searchTextFieldMagnifyingGlass.tintColor = Asset.Colors.Label.secondary.color.withAlphaComponent(0.6) + searchTextFieldMagnifyingGlass.translatesAutoresizingMaskIntoConstraints = false + + searchContainerLeftPaddingView = UIView() + searchContainerLeftPaddingView.translatesAutoresizingMaskIntoConstraints = false + + searchTextFieldLeftView = UIView() + searchTextFieldLeftView.addSubview(searchTextFieldMagnifyingGlass) + searchTextFieldLeftView.addSubview(searchContainerLeftPaddingView) + searchTextField = UITextField() searchTextField.translatesAutoresizingMaskIntoConstraints = false searchTextField.backgroundColor = Asset.Scene.Onboarding.textFieldBackground.color searchTextField.placeholder = L10n.Scene.Login.ServerSearchField.placeholder - searchTextField.leftView = UIImageView(image: UIImage(systemName: "magnifyingglass")) + searchTextField.leftView = searchTextFieldLeftView searchTextField.leftViewMode = .always searchTextField.layer.cornerRadius = 10 searchTextField.keyboardType = .URL @@ -97,6 +116,16 @@ class MastodonLoginView: UIView { searchTextField.heightAnchor.constraint(equalToConstant: 55), trailingAnchor.constraint(equalTo: searchTextField.trailingAnchor, constant: 16), + searchTextFieldMagnifyingGlass.topAnchor.constraint(equalTo: searchTextFieldLeftView.topAnchor), + searchTextFieldMagnifyingGlass.leadingAnchor.constraint(equalTo: searchTextFieldLeftView.leadingAnchor, constant: 8), + searchTextFieldMagnifyingGlass.bottomAnchor.constraint(equalTo: searchTextFieldLeftView.bottomAnchor), + + searchContainerLeftPaddingView.topAnchor.constraint(equalTo: searchTextFieldLeftView.topAnchor), + searchContainerLeftPaddingView.leadingAnchor.constraint(equalTo: searchTextFieldMagnifyingGlass.trailingAnchor), + searchContainerLeftPaddingView.trailingAnchor.constraint(equalTo: searchTextFieldLeftView.trailingAnchor), + searchContainerLeftPaddingView.bottomAnchor.constraint(equalTo: searchTextFieldLeftView.bottomAnchor), + searchContainerLeftPaddingView.widthAnchor.constraint(equalToConstant: 4).priority(.defaultHigh), + tableViewWrapper.topAnchor.constraint(equalTo: searchTextField.bottomAnchor), tableViewWrapper.leadingAnchor.constraint(equalTo: leadingAnchor, constant: 16), trailingAnchor.constraint(equalTo: tableViewWrapper.trailingAnchor, constant: 16), From 9b2b42cddbb1be47e49969ee18d4c255281493bd Mon Sep 17 00:00:00 2001 From: Nathan Mattes Date: Wed, 16 Nov 2022 07:40:23 +0100 Subject: [PATCH 449/598] Add a thin separator between tableView and searchTextField (#540) --- Mastodon/Scene/Onboarding/Login/MastodonLoginView.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mastodon/Scene/Onboarding/Login/MastodonLoginView.swift b/Mastodon/Scene/Onboarding/Login/MastodonLoginView.swift index 066ce454f..16316ff56 100644 --- a/Mastodon/Scene/Onboarding/Login/MastodonLoginView.swift +++ b/Mastodon/Scene/Onboarding/Login/MastodonLoginView.swift @@ -126,7 +126,7 @@ class MastodonLoginView: UIView { searchContainerLeftPaddingView.bottomAnchor.constraint(equalTo: searchTextFieldLeftView.bottomAnchor), searchContainerLeftPaddingView.widthAnchor.constraint(equalToConstant: 4).priority(.defaultHigh), - tableViewWrapper.topAnchor.constraint(equalTo: searchTextField.bottomAnchor), + tableViewWrapper.topAnchor.constraint(equalTo: searchTextField.bottomAnchor, constant: 2), tableViewWrapper.leadingAnchor.constraint(equalTo: leadingAnchor, constant: 16), trailingAnchor.constraint(equalTo: tableViewWrapper.trailingAnchor, constant: 16), tableViewWrapper.bottomAnchor.constraint(lessThanOrEqualTo: navigationActionView.topAnchor), @@ -148,7 +148,7 @@ class MastodonLoginView: UIView { func updateCorners(numberOfResults: Int = 0) { tableView.isHidden = (numberOfResults == 0) - tableViewWrapper.layer.maskedCorners = [.layerMinXMaxYCorner, .layerMaxXMaxYCorner] // tableViewMask + tableViewWrapper.layer.maskedCorners = [.layerMinXMaxYCorner, .layerMaxXMaxYCorner] let maskedCorners: CACornerMask From 901fecc946a8f529423e86c89f0b91a00cc0bfa1 Mon Sep 17 00:00:00 2001 From: Nathan Mattes Date: Wed, 16 Nov 2022 07:42:27 +0100 Subject: [PATCH 450/598] Fix json (#540) :facepalm: --- Localization/app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Localization/app.json b/Localization/app.json index 3a1228131..96b2150ce 100644 --- a/Localization/app.json +++ b/Localization/app.json @@ -224,7 +224,7 @@ "server_search_field": { "placeholder": "Enter URL or search for your server" } - } + }, "server_picker": { "title": "Mastodon is made of users in different servers.", "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", From 1c0dbc806411a61f8b1a2424d15c300ab0491988 Mon Sep 17 00:00:00 2001 From: Nathan Mattes Date: Wed, 16 Nov 2022 08:16:32 +0100 Subject: [PATCH 451/598] Polish tableView (#540) --- .../Onboarding/Login/MastodonLoginView.swift | 28 ++++++------------- .../Login/MastodonLoginViewController.swift | 17 +---------- 2 files changed, 9 insertions(+), 36 deletions(-) diff --git a/Mastodon/Scene/Onboarding/Login/MastodonLoginView.swift b/Mastodon/Scene/Onboarding/Login/MastodonLoginView.swift index 16316ff56..d5f8b51d4 100644 --- a/Mastodon/Scene/Onboarding/Login/MastodonLoginView.swift +++ b/Mastodon/Scene/Onboarding/Login/MastodonLoginView.swift @@ -23,7 +23,6 @@ class MastodonLoginView: UIView { private let searchContainerLeftPaddingView: UIView let tableView: UITableView - private var tableViewWrapper: UIView let navigationActionView: NavigationActionView var bottomConstraint: NSLayoutConstraint? @@ -62,7 +61,7 @@ class MastodonLoginView: UIView { searchTextField = UITextField() searchTextField.translatesAutoresizingMaskIntoConstraints = false - searchTextField.backgroundColor = Asset.Scene.Onboarding.textFieldBackground.color + searchTextField.backgroundColor = Asset.Scene.Onboarding.searchBarBackground.color searchTextField.placeholder = L10n.Scene.Login.ServerSearchField.placeholder searchTextField.leftView = searchTextFieldLeftView searchTextField.leftViewMode = .always @@ -75,13 +74,7 @@ class MastodonLoginView: UIView { tableView.translatesAutoresizingMaskIntoConstraints = false tableView.backgroundColor = Asset.Scene.Onboarding.textFieldBackground.color tableView.keyboardDismissMode = .onDrag - - tableViewWrapper = UIView() - tableViewWrapper.translatesAutoresizingMaskIntoConstraints = false - tableViewWrapper.backgroundColor = .clear - tableViewWrapper.layer.cornerRadius = 10 - tableViewWrapper.layer.masksToBounds = true - tableViewWrapper.addSubview(tableView) + tableView.layer.cornerRadius = 10 navigationActionView = NavigationActionView() navigationActionView.translatesAutoresizingMaskIntoConstraints = false @@ -90,7 +83,7 @@ class MastodonLoginView: UIView { addSubview(headerStackView) addSubview(searchTextField) - addSubview(tableViewWrapper) + addSubview(tableView) addSubview(navigationActionView) backgroundColor = Asset.Scene.Onboarding.background.color @@ -126,15 +119,10 @@ class MastodonLoginView: UIView { searchContainerLeftPaddingView.bottomAnchor.constraint(equalTo: searchTextFieldLeftView.bottomAnchor), searchContainerLeftPaddingView.widthAnchor.constraint(equalToConstant: 4).priority(.defaultHigh), - tableViewWrapper.topAnchor.constraint(equalTo: searchTextField.bottomAnchor, constant: 2), - tableViewWrapper.leadingAnchor.constraint(equalTo: leadingAnchor, constant: 16), - trailingAnchor.constraint(equalTo: tableViewWrapper.trailingAnchor, constant: 16), - tableViewWrapper.bottomAnchor.constraint(lessThanOrEqualTo: navigationActionView.topAnchor), - - tableView.topAnchor.constraint(equalTo: tableViewWrapper.topAnchor), - tableView.leadingAnchor.constraint(equalTo: tableViewWrapper.leadingAnchor), - tableViewWrapper.trailingAnchor.constraint(equalTo: tableView.trailingAnchor), - tableViewWrapper.bottomAnchor.constraint(greaterThanOrEqualTo: tableView.bottomAnchor), + tableView.topAnchor.constraint(equalTo: searchTextField.bottomAnchor, constant: 2), + tableView.leadingAnchor.constraint(equalTo: leadingAnchor, constant: 16), + trailingAnchor.constraint(equalTo: tableView.trailingAnchor, constant: 16), + tableView.bottomAnchor.constraint(lessThanOrEqualTo: navigationActionView.topAnchor), navigationActionView.leadingAnchor.constraint(equalTo: leadingAnchor), navigationActionView.trailingAnchor.constraint(equalTo: trailingAnchor), @@ -148,7 +136,7 @@ class MastodonLoginView: UIView { func updateCorners(numberOfResults: Int = 0) { tableView.isHidden = (numberOfResults == 0) - tableViewWrapper.layer.maskedCorners = [.layerMinXMaxYCorner, .layerMaxXMaxYCorner] + tableView.layer.maskedCorners = [.layerMinXMaxYCorner, .layerMaxXMaxYCorner] let maskedCorners: CACornerMask diff --git a/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift b/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift index 6125955f4..e9965fdde 100644 --- a/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift +++ b/Mastodon/Scene/Onboarding/Login/MastodonLoginViewController.swift @@ -85,22 +85,7 @@ class MastodonLoginViewController: UIViewController, NeedsDependency { cell.contentConfiguration = configuration cell.accessoryType = .disclosureIndicator - if #available(iOS 16.0, *) { - var backgroundConfiguration = cell.defaultBackgroundConfiguration() - backgroundConfiguration.backgroundColor = Asset.Scene.Onboarding.textFieldBackground.color - - cell.backgroundConfiguration = backgroundConfiguration - } else { - cell.backgroundColor = .systemBackground - } - - if self.viewModel.filteredServers.last == server { - cell.layer.maskedCorners = [.layerMinXMaxYCorner, .layerMaxXMaxYCorner] - cell.layer.cornerRadius = 10 - cell.layer.masksToBounds = true - } else { - cell.layer.masksToBounds = false - } + cell.backgroundColor = Asset.Scene.Onboarding.textFieldBackground.color return cell } From 70993b31de5f1888eef3bcdfadb7ee6d134c5b2d Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 09:45:19 +0100 Subject: [PATCH 452/598] New translations app.json (Slovenian) --- .../StringsConvertor/input/sl.lproj/app.json | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/Localization/StringsConvertor/input/sl.lproj/app.json b/Localization/StringsConvertor/input/sl.lproj/app.json index 5f79ef02a..252d80def 100644 --- a/Localization/StringsConvertor/input/sl.lproj/app.json +++ b/Localization/StringsConvertor/input/sl.lproj/app.json @@ -74,8 +74,8 @@ "take_photo": "Posnemi fotografijo", "save_photo": "Shrani fotografijo", "copy_photo": "Kopiraj fotografijo", - "sign_in": "Prijava", - "sign_up": "Registracija", + "sign_in": "Log in", + "sign_up": "Create account", "see_more": "Pokaži več", "preview": "Predogled", "share": "Deli", @@ -218,10 +218,16 @@ "get_started": "Začnite", "log_in": "Prijava" }, + "login": { + "title": "Welcome back", + "subtitle": "Log you in on the server you created your account on.", + "server_search_field": { + "placeholder": "Enter URL or search for your server" + } + }, "server_picker": { "title": "Mastodon tvorijo uporabniki z različnih strežnikov.", - "subtitle": "Strežnik izberite glede na svoje interese, regijo ali pa izberite splošnega.", - "subtitle_extend": "Strežnik izberite glede na svoje interese, regijo ali pa izberite splošnega. Z vsakim strežnikom upravlja povsem neodvisna organizacija ali posameznik.", + "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", "button": { "category": { "all": "Vse", @@ -248,8 +254,7 @@ "category": "KATEGORIJA" }, "input": { - "placeholder": "Išči strežnike", - "search_servers_or_enter_url": "Iščite strežnike ali vnesite URL" + "search_servers_or_enter_url": "Search communities or enter URL" }, "empty_state": { "finding_servers": "Iskanje razpoložljivih strežnikov ...", @@ -719,4 +724,4 @@ "title": "Zaznamki" } } -} \ No newline at end of file +} From 83de7e4f9dd8990bed3d2e38cff3df0ea7c0acab Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 09:45:20 +0100 Subject: [PATCH 453/598] New translations app.json (Indonesian) --- .../StringsConvertor/input/id.lproj/app.json | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/Localization/StringsConvertor/input/id.lproj/app.json b/Localization/StringsConvertor/input/id.lproj/app.json index 864283436..dba617b0b 100644 --- a/Localization/StringsConvertor/input/id.lproj/app.json +++ b/Localization/StringsConvertor/input/id.lproj/app.json @@ -74,8 +74,8 @@ "take_photo": "Ambil Foto", "save_photo": "Simpan Foto", "copy_photo": "Salin Foto", - "sign_in": "Masuk", - "sign_up": "Daftar", + "sign_in": "Log in", + "sign_up": "Create account", "see_more": "Lihat lebih banyak", "preview": "Pratinjau", "share": "Bagikan", @@ -218,10 +218,16 @@ "get_started": "Mulai", "log_in": "Login" }, + "login": { + "title": "Welcome back", + "subtitle": "Log you in on the server you created your account on.", + "server_search_field": { + "placeholder": "Enter URL or search for your server" + } + }, "server_picker": { "title": "Pilih sebuah server,\nserver manapun.", - "subtitle": "Pilih server berdasarkan minat, wilayah, atau tujuan Anda.", - "subtitle_extend": "Pilih server berdasarkan minat, wilayah, atau tujuan Anda. Setiap server dioperasikan oleh organisasi atau individu yang sepenuhnya independen.", + "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", "button": { "category": { "all": "Semua", @@ -248,8 +254,7 @@ "category": "KATEGORI" }, "input": { - "placeholder": "Cari server", - "search_servers_or_enter_url": "Cari server atau masukkan URL" + "search_servers_or_enter_url": "Search communities or enter URL" }, "empty_state": { "finding_servers": "Mencari server yang tersedia...", @@ -719,4 +724,4 @@ "title": "Bookmarks" } } -} \ No newline at end of file +} From 34bf78e28cc03a0a4ac3e8d35bb31dcb5c2487d6 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 09:45:21 +0100 Subject: [PATCH 454/598] New translations app.json (Portuguese) --- .../StringsConvertor/input/pt.lproj/app.json | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/Localization/StringsConvertor/input/pt.lproj/app.json b/Localization/StringsConvertor/input/pt.lproj/app.json index 30566d8d6..3113ada74 100644 --- a/Localization/StringsConvertor/input/pt.lproj/app.json +++ b/Localization/StringsConvertor/input/pt.lproj/app.json @@ -74,8 +74,8 @@ "take_photo": "Take Photo", "save_photo": "Save Photo", "copy_photo": "Copy Photo", - "sign_in": "Sign In", - "sign_up": "Sign Up", + "sign_in": "Log in", + "sign_up": "Create account", "see_more": "See More", "preview": "Preview", "share": "Share", @@ -218,10 +218,16 @@ "get_started": "Get Started", "log_in": "Log In" }, + "login": { + "title": "Welcome back", + "subtitle": "Log you in on the server you created your account on.", + "server_search_field": { + "placeholder": "Enter URL or search for your server" + } + }, "server_picker": { "title": "Mastodon is made of users in different servers.", - "subtitle": "Pick a server based on your interests, region, or a general purpose one.", - "subtitle_extend": "Pick a server based on your interests, region, or a general purpose one. Each server is operated by an entirely independent organization or individual.", + "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", "button": { "category": { "all": "All", @@ -248,8 +254,7 @@ "category": "CATEGORY" }, "input": { - "placeholder": "Search servers", - "search_servers_or_enter_url": "Search servers or enter URL" + "search_servers_or_enter_url": "Search communities or enter URL" }, "empty_state": { "finding_servers": "Finding available servers...", @@ -719,4 +724,4 @@ "title": "Bookmarks" } } -} \ No newline at end of file +} From a24fec4c8da14817ab98f7024a375ba0e1a69816 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 09:45:22 +0100 Subject: [PATCH 455/598] New translations app.json (Russian) --- .../StringsConvertor/input/ru.lproj/app.json | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/Localization/StringsConvertor/input/ru.lproj/app.json b/Localization/StringsConvertor/input/ru.lproj/app.json index 8505e7f42..25314102a 100644 --- a/Localization/StringsConvertor/input/ru.lproj/app.json +++ b/Localization/StringsConvertor/input/ru.lproj/app.json @@ -74,8 +74,8 @@ "take_photo": "Сделать фото", "save_photo": "Сохранить изображение", "copy_photo": "Скопировать изображение", - "sign_in": "Войти", - "sign_up": "Зарегистрироваться", + "sign_in": "Log in", + "sign_up": "Create account", "see_more": "Ещё", "preview": "Предпросмотр", "share": "Поделиться", @@ -218,10 +218,16 @@ "get_started": "Присоединиться", "log_in": "Вход" }, + "login": { + "title": "Welcome back", + "subtitle": "Log you in on the server you created your account on.", + "server_search_field": { + "placeholder": "Enter URL or search for your server" + } + }, "server_picker": { "title": "Выберите сервер,\nлюбой сервер.", - "subtitle": "Выберите сообщество на основе своих интересов, региона или общей тематики.", - "subtitle_extend": "Pick a server based on your interests, region, or a general purpose one. Each server is operated by an entirely independent organization or individual.", + "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", "button": { "category": { "all": "Все", @@ -248,8 +254,7 @@ "category": "КАТЕГОРИЯ" }, "input": { - "placeholder": "Найдите сервер или присоединитесь к своему...", - "search_servers_or_enter_url": "Поиск по серверам или ссылке" + "search_servers_or_enter_url": "Search communities or enter URL" }, "empty_state": { "finding_servers": "Ищем доступные сервера...", @@ -719,4 +724,4 @@ "title": "Bookmarks" } } -} \ No newline at end of file +} From 93f6cd4812a45defbb549d23d69c20280067c749 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 09:45:23 +0100 Subject: [PATCH 456/598] New translations app.json (Chinese Simplified) --- .../input/zh-Hans.lproj/app.json | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/Localization/StringsConvertor/input/zh-Hans.lproj/app.json b/Localization/StringsConvertor/input/zh-Hans.lproj/app.json index c4b127914..242d9aac2 100644 --- a/Localization/StringsConvertor/input/zh-Hans.lproj/app.json +++ b/Localization/StringsConvertor/input/zh-Hans.lproj/app.json @@ -74,8 +74,8 @@ "take_photo": "拍照", "save_photo": "保存照片", "copy_photo": "拷贝照片", - "sign_in": "登录", - "sign_up": "注册", + "sign_in": "Log in", + "sign_up": "Create account", "see_more": "查看更多", "preview": "预览", "share": "分享", @@ -218,10 +218,16 @@ "get_started": "开始使用", "log_in": "登录" }, + "login": { + "title": "Welcome back", + "subtitle": "Log you in on the server you created your account on.", + "server_search_field": { + "placeholder": "Enter URL or search for your server" + } + }, "server_picker": { "title": "挑选一个服务器,\n任意服务器。", - "subtitle": "根据你的兴趣、区域或一般目的选择一个社区。", - "subtitle_extend": "根据你的兴趣、区域或一般目的选择一个社区。每个社区都由完全独立的组织或个人管理。", + "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", "button": { "category": { "all": "全部", @@ -248,8 +254,7 @@ "category": "类别" }, "input": { - "placeholder": "查找或加入你自己的服务器...", - "search_servers_or_enter_url": "搜索服务器或输入 URL" + "search_servers_or_enter_url": "Search communities or enter URL" }, "empty_state": { "finding_servers": "正在查找可用的服务器...", @@ -719,4 +724,4 @@ "title": "Bookmarks" } } -} \ No newline at end of file +} From 259f3f1ddea602336330353a66c5b60a076fc502 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 09:45:24 +0100 Subject: [PATCH 457/598] New translations app.json (English) --- .../StringsConvertor/input/en.lproj/app.json | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/Localization/StringsConvertor/input/en.lproj/app.json b/Localization/StringsConvertor/input/en.lproj/app.json index 30566d8d6..3113ada74 100644 --- a/Localization/StringsConvertor/input/en.lproj/app.json +++ b/Localization/StringsConvertor/input/en.lproj/app.json @@ -74,8 +74,8 @@ "take_photo": "Take Photo", "save_photo": "Save Photo", "copy_photo": "Copy Photo", - "sign_in": "Sign In", - "sign_up": "Sign Up", + "sign_in": "Log in", + "sign_up": "Create account", "see_more": "See More", "preview": "Preview", "share": "Share", @@ -218,10 +218,16 @@ "get_started": "Get Started", "log_in": "Log In" }, + "login": { + "title": "Welcome back", + "subtitle": "Log you in on the server you created your account on.", + "server_search_field": { + "placeholder": "Enter URL or search for your server" + } + }, "server_picker": { "title": "Mastodon is made of users in different servers.", - "subtitle": "Pick a server based on your interests, region, or a general purpose one.", - "subtitle_extend": "Pick a server based on your interests, region, or a general purpose one. Each server is operated by an entirely independent organization or individual.", + "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", "button": { "category": { "all": "All", @@ -248,8 +254,7 @@ "category": "CATEGORY" }, "input": { - "placeholder": "Search servers", - "search_servers_or_enter_url": "Search servers or enter URL" + "search_servers_or_enter_url": "Search communities or enter URL" }, "empty_state": { "finding_servers": "Finding available servers...", @@ -719,4 +724,4 @@ "title": "Bookmarks" } } -} \ No newline at end of file +} From 6f71369c0134112edc481d66a0a6639083004307 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 09:45:25 +0100 Subject: [PATCH 458/598] New translations app.json (Galician) --- .../StringsConvertor/input/gl.lproj/app.json | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/Localization/StringsConvertor/input/gl.lproj/app.json b/Localization/StringsConvertor/input/gl.lproj/app.json index e00791796..f6e01439a 100644 --- a/Localization/StringsConvertor/input/gl.lproj/app.json +++ b/Localization/StringsConvertor/input/gl.lproj/app.json @@ -74,8 +74,8 @@ "take_photo": "Facer foto", "save_photo": "Gardar foto", "copy_photo": "Copiar foto", - "sign_in": "Acceder", - "sign_up": "Inscribirse", + "sign_in": "Log in", + "sign_up": "Create account", "see_more": "Ver máis", "preview": "Vista previa", "share": "Compartir", @@ -218,10 +218,16 @@ "get_started": "Crear conta", "log_in": "Acceder" }, + "login": { + "title": "Welcome back", + "subtitle": "Log you in on the server you created your account on.", + "server_search_field": { + "placeholder": "Enter URL or search for your server" + } + }, "server_picker": { "title": "Mastodon fórmano as persoas das diferentes comunidades.", - "subtitle": "Elixe unha comunidade en función dos teus intereses, rexión ou unha de propósito xeral.", - "subtitle_extend": "Elixe unha comunidade en función dos teus intereses, rexión ou unha de propósito xeral. Cada comunidade está xestionada por unha organización totalmente independente ou unha única persoa.", + "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", "button": { "category": { "all": "Todo", @@ -248,8 +254,7 @@ "category": "CATEGORÍA" }, "input": { - "placeholder": "Buscar comunidades", - "search_servers_or_enter_url": "Busca un servidor ou escribe URL" + "search_servers_or_enter_url": "Search communities or enter URL" }, "empty_state": { "finding_servers": "Buscando servidores dispoñibles...", @@ -719,4 +724,4 @@ "title": "Marcadores" } } -} \ No newline at end of file +} From e6f8963ae9ec38a9c92aa369765e0cc3dfdac49a Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 09:45:26 +0100 Subject: [PATCH 459/598] New translations app.json (Portuguese, Brazilian) --- .../input/pt-BR.lproj/app.json | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/Localization/StringsConvertor/input/pt-BR.lproj/app.json b/Localization/StringsConvertor/input/pt-BR.lproj/app.json index b69c14777..98bb960cc 100644 --- a/Localization/StringsConvertor/input/pt-BR.lproj/app.json +++ b/Localization/StringsConvertor/input/pt-BR.lproj/app.json @@ -74,8 +74,8 @@ "take_photo": "Tirar foto", "save_photo": "Salvar foto", "copy_photo": "Copiar foto", - "sign_in": "Entrar", - "sign_up": "Criar conta", + "sign_in": "Log in", + "sign_up": "Create account", "see_more": "Ver mais", "preview": "Pré-visualização", "share": "Compartilhar", @@ -218,10 +218,16 @@ "get_started": "Comece já", "log_in": "Entrar" }, + "login": { + "title": "Welcome back", + "subtitle": "Log you in on the server you created your account on.", + "server_search_field": { + "placeholder": "Enter URL or search for your server" + } + }, "server_picker": { "title": "Mastodon é feito de usuários em instâncias diferentes.", - "subtitle": "Escolha uma instância baseada nos seus interesses, região, ou em uma proposta geral.", - "subtitle_extend": "Escolha uma instância baseada nos seus interesses, região, ou em uma proposta geral. Cada instância é operada por um indivíduo ou uma organização totalmente independente.", + "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", "button": { "category": { "all": "Todos", @@ -248,8 +254,7 @@ "category": "Categoria" }, "input": { - "placeholder": "Procurar instâncias", - "search_servers_or_enter_url": "Procurar instâncias ou inserir URL" + "search_servers_or_enter_url": "Search communities or enter URL" }, "empty_state": { "finding_servers": "Procurando instâncias disponíveis...", @@ -719,4 +724,4 @@ "title": "Marcados" } } -} \ No newline at end of file +} From 4ff233aa56e6b7459e2ef3014e87c55bff0004ea Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 09:45:28 +0100 Subject: [PATCH 460/598] New translations app.json (Spanish, Argentina) --- .../input/es-AR.lproj/app.json | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/Localization/StringsConvertor/input/es-AR.lproj/app.json b/Localization/StringsConvertor/input/es-AR.lproj/app.json index 21934a104..86762f6d4 100644 --- a/Localization/StringsConvertor/input/es-AR.lproj/app.json +++ b/Localization/StringsConvertor/input/es-AR.lproj/app.json @@ -74,8 +74,8 @@ "take_photo": "Tomar foto", "save_photo": "Guardar foto", "copy_photo": "Copiar foto", - "sign_in": "Iniciar sesión", - "sign_up": "Registrarse", + "sign_in": "Log in", + "sign_up": "Create account", "see_more": "Ver más", "preview": "Previsualización", "share": "Compartir", @@ -218,10 +218,16 @@ "get_started": "Comenzá", "log_in": "Iniciar sesión" }, + "login": { + "title": "Welcome back", + "subtitle": "Log you in on the server you created your account on.", + "server_search_field": { + "placeholder": "Enter URL or search for your server" + } + }, "server_picker": { "title": "Mastodon está compuesto de cuentas en diferentes servidores.", - "subtitle": "Elegí un servidor basado en tus intereses, región, o de propósitos generales.", - "subtitle_extend": "Elegí un servidor basado en tus intereses, región, o de propósitos generales. Cada servidor es operado por una organización o individuo totalmente independientes.", + "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", "button": { "category": { "all": "Todas", @@ -248,8 +254,7 @@ "category": "CATEGORÍA" }, "input": { - "placeholder": "Buscar servidores", - "search_servers_or_enter_url": "Buscar servidores o introducir dirección web" + "search_servers_or_enter_url": "Search communities or enter URL" }, "empty_state": { "finding_servers": "Buscando servidores disponibles…", @@ -719,4 +724,4 @@ "title": "Marcadores" } } -} \ No newline at end of file +} From cc65912ece8ed936883c105ff4a10bccb11f5e3e Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 09:45:29 +0100 Subject: [PATCH 461/598] New translations app.json (Japanese) --- .../StringsConvertor/input/ja.lproj/app.json | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/Localization/StringsConvertor/input/ja.lproj/app.json b/Localization/StringsConvertor/input/ja.lproj/app.json index d145ff494..f73faabd4 100644 --- a/Localization/StringsConvertor/input/ja.lproj/app.json +++ b/Localization/StringsConvertor/input/ja.lproj/app.json @@ -74,8 +74,8 @@ "take_photo": "写真を撮る", "save_photo": "写真を撮る", "copy_photo": "写真をコピー", - "sign_in": "サインイン", - "sign_up": "サインアップ", + "sign_in": "Log in", + "sign_up": "Create account", "see_more": "もっと見る", "preview": "プレビュー", "share": "共有", @@ -218,10 +218,16 @@ "get_started": "はじめる", "log_in": "ログイン" }, + "login": { + "title": "Welcome back", + "subtitle": "Log you in on the server you created your account on.", + "server_search_field": { + "placeholder": "Enter URL or search for your server" + } + }, "server_picker": { "title": "サーバーを選択", - "subtitle": "あなたの興味分野・地域に合ったコミュニティや、汎用のものを選択してください。", - "subtitle_extend": "あなたの興味分野・地域に合ったコミュニティや、汎用のものを選択してください。各コミュニティはそれぞれ完全に独立した組織や個人によって運営されています。", + "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", "button": { "category": { "all": "すべて", @@ -248,8 +254,7 @@ "category": "カテゴリー" }, "input": { - "placeholder": "サーバーを探す", - "search_servers_or_enter_url": "サーバーを検索またはURLを入力" + "search_servers_or_enter_url": "Search communities or enter URL" }, "empty_state": { "finding_servers": "利用可能なサーバーの検索...", @@ -719,4 +724,4 @@ "title": "Bookmarks" } } -} \ No newline at end of file +} From c9c96d5f87245788d5152684d9c0163c57e7cb1e Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 09:45:30 +0100 Subject: [PATCH 462/598] New translations app.json (Thai) --- .../StringsConvertor/input/th.lproj/app.json | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/Localization/StringsConvertor/input/th.lproj/app.json b/Localization/StringsConvertor/input/th.lproj/app.json index dd5ee212c..50f43375e 100644 --- a/Localization/StringsConvertor/input/th.lproj/app.json +++ b/Localization/StringsConvertor/input/th.lproj/app.json @@ -74,8 +74,8 @@ "take_photo": "ถ่ายรูป", "save_photo": "บันทึกรูปภาพ", "copy_photo": "คัดลอกรูปภาพ", - "sign_in": "ลงชื่อเข้า", - "sign_up": "ลงทะเบียน", + "sign_in": "Log in", + "sign_up": "Create account", "see_more": "ดูเพิ่มเติม", "preview": "แสดงตัวอย่าง", "share": "แบ่งปัน", @@ -218,10 +218,16 @@ "get_started": "เริ่มต้นใช้งาน", "log_in": "เข้าสู่ระบบ" }, + "login": { + "title": "Welcome back", + "subtitle": "Log you in on the server you created your account on.", + "server_search_field": { + "placeholder": "Enter URL or search for your server" + } + }, "server_picker": { "title": "Mastodon ประกอบด้วยผู้ใช้ในเซิร์ฟเวอร์ต่าง ๆ", - "subtitle": "เลือกเซิร์ฟเวอร์ตามความสนใจ, ภูมิภาค หรือวัตถุประสงค์ทั่วไปของคุณ", - "subtitle_extend": "เลือกเซิร์ฟเวอร์ตามความสนใจ, ภูมิภาค หรือวัตถุประสงค์ทั่วไปของคุณ แต่ละเซิร์ฟเวอร์ได้รับการดำเนินงานโดยองค์กรหรือบุคคลที่เป็นอิสระโดยสิ้นเชิง", + "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", "button": { "category": { "all": "ทั้งหมด", @@ -248,8 +254,7 @@ "category": "หมวดหมู่" }, "input": { - "placeholder": "ค้นหาเซิร์ฟเวอร์", - "search_servers_or_enter_url": "ค้นหาเซิร์ฟเวอร์หรือป้อน URL" + "search_servers_or_enter_url": "Search communities or enter URL" }, "empty_state": { "finding_servers": "กำลังค้นหาเซิร์ฟเวอร์ที่พร้อมใช้งาน...", @@ -719,4 +724,4 @@ "title": "ที่คั่นหน้า" } } -} \ No newline at end of file +} From c86bf006cd73fa036a9f41c9ccb5e098b1721cf4 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 09:45:31 +0100 Subject: [PATCH 463/598] New translations app.json (Latvian) --- .../StringsConvertor/input/lv.lproj/app.json | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/Localization/StringsConvertor/input/lv.lproj/app.json b/Localization/StringsConvertor/input/lv.lproj/app.json index f21cde453..1ca18400b 100644 --- a/Localization/StringsConvertor/input/lv.lproj/app.json +++ b/Localization/StringsConvertor/input/lv.lproj/app.json @@ -74,8 +74,8 @@ "take_photo": "Uzņemt bildi", "save_photo": "Saglabāt bildi", "copy_photo": "Kopēt bildi", - "sign_in": "Pieteikties", - "sign_up": "Reģistrēties", + "sign_in": "Log in", + "sign_up": "Create account", "see_more": "Skatīt vairāk", "preview": "Priekšskatījums", "share": "Dalīties", @@ -218,10 +218,16 @@ "get_started": "Get Started", "log_in": "Pieteikties" }, + "login": { + "title": "Welcome back", + "subtitle": "Log you in on the server you created your account on.", + "server_search_field": { + "placeholder": "Enter URL or search for your server" + } + }, "server_picker": { "title": "Mastodon is made of users in different servers.", - "subtitle": "Pick a server based on your interests, region, or a general purpose one.", - "subtitle_extend": "Pick a server based on your interests, region, or a general purpose one. Each server is operated by an entirely independent organization or individual.", + "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", "button": { "category": { "all": "Visi", @@ -248,8 +254,7 @@ "category": "KATEGORIJA" }, "input": { - "placeholder": "Meklēt serverus", - "search_servers_or_enter_url": "Search servers or enter URL" + "search_servers_or_enter_url": "Search communities or enter URL" }, "empty_state": { "finding_servers": "Finding available servers...", @@ -719,4 +724,4 @@ "title": "Bookmarks" } } -} \ No newline at end of file +} From c32dc91d7caaf680c0ca7ad571f5c6c7f521bb7c Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 09:45:32 +0100 Subject: [PATCH 464/598] New translations app.json (Hindi) --- .../StringsConvertor/input/hi.lproj/app.json | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/Localization/StringsConvertor/input/hi.lproj/app.json b/Localization/StringsConvertor/input/hi.lproj/app.json index ec405da4d..f9414b6c0 100644 --- a/Localization/StringsConvertor/input/hi.lproj/app.json +++ b/Localization/StringsConvertor/input/hi.lproj/app.json @@ -74,8 +74,8 @@ "take_photo": "Take Photo", "save_photo": "Save Photo", "copy_photo": "Copy Photo", - "sign_in": "Sign In", - "sign_up": "Sign Up", + "sign_in": "Log in", + "sign_up": "Create account", "see_more": "See More", "preview": "Preview", "share": "Share", @@ -218,10 +218,16 @@ "get_started": "Get Started", "log_in": "Log In" }, + "login": { + "title": "Welcome back", + "subtitle": "Log you in on the server you created your account on.", + "server_search_field": { + "placeholder": "Enter URL or search for your server" + } + }, "server_picker": { "title": "Mastodon is made of users in different servers.", - "subtitle": "Pick a server based on your interests, region, or a general purpose one.", - "subtitle_extend": "Pick a server based on your interests, region, or a general purpose one. Each server is operated by an entirely independent organization or individual.", + "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", "button": { "category": { "all": "All", @@ -248,8 +254,7 @@ "category": "CATEGORY" }, "input": { - "placeholder": "Search servers", - "search_servers_or_enter_url": "Search servers or enter URL" + "search_servers_or_enter_url": "Search communities or enter URL" }, "empty_state": { "finding_servers": "Finding available servers...", @@ -719,4 +724,4 @@ "title": "Bookmarks" } } -} \ No newline at end of file +} From ff2663908572ed878b98f9f5aca3257235d119aa Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 09:45:33 +0100 Subject: [PATCH 465/598] New translations app.json (English, United States) --- .../input/en-US.lproj/app.json | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/Localization/StringsConvertor/input/en-US.lproj/app.json b/Localization/StringsConvertor/input/en-US.lproj/app.json index 30566d8d6..3113ada74 100644 --- a/Localization/StringsConvertor/input/en-US.lproj/app.json +++ b/Localization/StringsConvertor/input/en-US.lproj/app.json @@ -74,8 +74,8 @@ "take_photo": "Take Photo", "save_photo": "Save Photo", "copy_photo": "Copy Photo", - "sign_in": "Sign In", - "sign_up": "Sign Up", + "sign_in": "Log in", + "sign_up": "Create account", "see_more": "See More", "preview": "Preview", "share": "Share", @@ -218,10 +218,16 @@ "get_started": "Get Started", "log_in": "Log In" }, + "login": { + "title": "Welcome back", + "subtitle": "Log you in on the server you created your account on.", + "server_search_field": { + "placeholder": "Enter URL or search for your server" + } + }, "server_picker": { "title": "Mastodon is made of users in different servers.", - "subtitle": "Pick a server based on your interests, region, or a general purpose one.", - "subtitle_extend": "Pick a server based on your interests, region, or a general purpose one. Each server is operated by an entirely independent organization or individual.", + "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", "button": { "category": { "all": "All", @@ -248,8 +254,7 @@ "category": "CATEGORY" }, "input": { - "placeholder": "Search servers", - "search_servers_or_enter_url": "Search servers or enter URL" + "search_servers_or_enter_url": "Search communities or enter URL" }, "empty_state": { "finding_servers": "Finding available servers...", @@ -719,4 +724,4 @@ "title": "Bookmarks" } } -} \ No newline at end of file +} From a6f26050a6498de56808b144029e4a806aa32e10 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 09:45:34 +0100 Subject: [PATCH 466/598] New translations app.json (Welsh) --- .../StringsConvertor/input/cy.lproj/app.json | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/Localization/StringsConvertor/input/cy.lproj/app.json b/Localization/StringsConvertor/input/cy.lproj/app.json index 5a962d852..fec3197be 100644 --- a/Localization/StringsConvertor/input/cy.lproj/app.json +++ b/Localization/StringsConvertor/input/cy.lproj/app.json @@ -74,8 +74,8 @@ "take_photo": "Take Photo", "save_photo": "Save Photo", "copy_photo": "Copy Photo", - "sign_in": "Sign In", - "sign_up": "Sign Up", + "sign_in": "Log in", + "sign_up": "Create account", "see_more": "See More", "preview": "Preview", "share": "Share", @@ -218,10 +218,16 @@ "get_started": "Get Started", "log_in": "Log In" }, + "login": { + "title": "Welcome back", + "subtitle": "Log you in on the server you created your account on.", + "server_search_field": { + "placeholder": "Enter URL or search for your server" + } + }, "server_picker": { "title": "Mastodon is made of users in different servers.", - "subtitle": "Pick a server based on your interests, region, or a general purpose one.", - "subtitle_extend": "Pick a server based on your interests, region, or a general purpose one. Each server is operated by an entirely independent organization or individual.", + "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", "button": { "category": { "all": "All", @@ -248,8 +254,7 @@ "category": "CATEGORY" }, "input": { - "placeholder": "Search servers", - "search_servers_or_enter_url": "Search servers or enter URL" + "search_servers_or_enter_url": "Search communities or enter URL" }, "empty_state": { "finding_servers": "Finding available servers...", @@ -719,4 +724,4 @@ "title": "Bookmarks" } } -} \ No newline at end of file +} From d04313854cef587652730830e2984377c6b056b5 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 09:45:35 +0100 Subject: [PATCH 467/598] New translations app.json (Sinhala) --- .../StringsConvertor/input/si.lproj/app.json | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/Localization/StringsConvertor/input/si.lproj/app.json b/Localization/StringsConvertor/input/si.lproj/app.json index 2ac50e06b..a4542b9e9 100644 --- a/Localization/StringsConvertor/input/si.lproj/app.json +++ b/Localization/StringsConvertor/input/si.lproj/app.json @@ -74,8 +74,8 @@ "take_photo": "Take Photo", "save_photo": "Save Photo", "copy_photo": "Copy Photo", - "sign_in": "පිවිසෙන්න", - "sign_up": "ලියාපදිංචිය", + "sign_in": "Log in", + "sign_up": "Create account", "see_more": "තව බලන්න", "preview": "පෙරදසුන", "share": "බෙදාගන්න", @@ -218,10 +218,16 @@ "get_started": "පටන් ගන්න", "log_in": "පිවිසෙන්න" }, + "login": { + "title": "Welcome back", + "subtitle": "Log you in on the server you created your account on.", + "server_search_field": { + "placeholder": "Enter URL or search for your server" + } + }, "server_picker": { "title": "Mastodon is made of users in different servers.", - "subtitle": "Pick a server based on your interests, region, or a general purpose one.", - "subtitle_extend": "Pick a server based on your interests, region, or a general purpose one. Each server is operated by an entirely independent organization or individual.", + "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", "button": { "category": { "all": "සියල්ල", @@ -248,8 +254,7 @@ "category": "CATEGORY" }, "input": { - "placeholder": "Search servers", - "search_servers_or_enter_url": "Search servers or enter URL" + "search_servers_or_enter_url": "Search communities or enter URL" }, "empty_state": { "finding_servers": "Finding available servers...", @@ -719,4 +724,4 @@ "title": "Bookmarks" } } -} \ No newline at end of file +} From b16cde910b694add79977bf74fd7fa4cb4ffb232 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 09:45:36 +0100 Subject: [PATCH 468/598] New translations app.json (Kurmanji (Kurdish)) --- .../StringsConvertor/input/kmr.lproj/app.json | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/Localization/StringsConvertor/input/kmr.lproj/app.json b/Localization/StringsConvertor/input/kmr.lproj/app.json index f52e1bdae..4a2bc3283 100644 --- a/Localization/StringsConvertor/input/kmr.lproj/app.json +++ b/Localization/StringsConvertor/input/kmr.lproj/app.json @@ -74,8 +74,8 @@ "take_photo": "Wêne bikişîne", "save_photo": "Wêneyê tomar bike", "copy_photo": "Wêneyê jê bigire", - "sign_in": "Têkeve", - "sign_up": "Tomar bibe", + "sign_in": "Log in", + "sign_up": "Create account", "see_more": "Bêtir bibîne", "preview": "Pêşdîtin", "share": "Parve bike", @@ -218,10 +218,16 @@ "get_started": "Dest pê bike", "log_in": "Têkeve" }, + "login": { + "title": "Welcome back", + "subtitle": "Log you in on the server you created your account on.", + "server_search_field": { + "placeholder": "Enter URL or search for your server" + } + }, "server_picker": { "title": "Mastodon ji bikarhênerên di civakên cuda de pêk tê.", - "subtitle": "Li gorî berjewendî, herêm, an jî armancek gelemperî civakekê hilbijêre.", - "subtitle_extend": "Li gorî berjewendî, herêm, an jî armancek gelemperî civakekê hilbijêre. Her civakek ji hêla rêxistinek an kesek bi tevahî serbixwe ve tê xebitandin.", + "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", "button": { "category": { "all": "Hemû", @@ -248,8 +254,7 @@ "category": "BEŞ" }, "input": { - "placeholder": "Li rajekaran bigere", - "search_servers_or_enter_url": "Li rajekaran bigere an jî girêdanê têxe" + "search_servers_or_enter_url": "Search communities or enter URL" }, "empty_state": { "finding_servers": "Peydakirina rajekarên berdest...", @@ -719,4 +724,4 @@ "title": "Şûnpel" } } -} \ No newline at end of file +} From 997b856ae8c870ad779cb551c65f97c7a6fe0400 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 09:45:37 +0100 Subject: [PATCH 469/598] New translations app.json (Dutch) --- .../StringsConvertor/input/nl.lproj/app.json | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/Localization/StringsConvertor/input/nl.lproj/app.json b/Localization/StringsConvertor/input/nl.lproj/app.json index 5241d23bf..589c51d2d 100644 --- a/Localization/StringsConvertor/input/nl.lproj/app.json +++ b/Localization/StringsConvertor/input/nl.lproj/app.json @@ -74,8 +74,8 @@ "take_photo": "Maak foto", "save_photo": "Bewaar foto", "copy_photo": "Kopieer foto", - "sign_in": "Aanmelden", - "sign_up": "Registreren", + "sign_in": "Log in", + "sign_up": "Create account", "see_more": "Meer", "preview": "Voorvertoning", "share": "Deel", @@ -218,10 +218,16 @@ "get_started": "Aan de slag", "log_in": "Log in" }, + "login": { + "title": "Welcome back", + "subtitle": "Log you in on the server you created your account on.", + "server_search_field": { + "placeholder": "Enter URL or search for your server" + } + }, "server_picker": { "title": "Kies een server, welke dan ook.", - "subtitle": "Kies een gemeenschap gebaseerd op jouw interesses, regio of een algemeen doel.", - "subtitle_extend": "Kies een gemeenschap gebaseerd op jouw interesses, regio, of een algemeen doel. Elke gemeenschap wordt beheerd door een volledig onafhankelijke organisatie of individu.", + "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", "button": { "category": { "all": "Alles", @@ -248,8 +254,7 @@ "category": "CATEGORIE" }, "input": { - "placeholder": "Zoek uw server of sluit u bij een nieuwe server aan...", - "search_servers_or_enter_url": "Search servers or enter URL" + "search_servers_or_enter_url": "Search communities or enter URL" }, "empty_state": { "finding_servers": "Beschikbare servers zoeken...", @@ -719,4 +724,4 @@ "title": "Bookmarks" } } -} \ No newline at end of file +} From 3e89962373f04fc73312e671fe7bd798e76ded14 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 09:45:38 +0100 Subject: [PATCH 470/598] New translations app.json (Italian) --- .../StringsConvertor/input/it.lproj/app.json | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/Localization/StringsConvertor/input/it.lproj/app.json b/Localization/StringsConvertor/input/it.lproj/app.json index c0d33a73b..81131e857 100644 --- a/Localization/StringsConvertor/input/it.lproj/app.json +++ b/Localization/StringsConvertor/input/it.lproj/app.json @@ -74,8 +74,8 @@ "take_photo": "Scatta foto", "save_photo": "Salva foto", "copy_photo": "Copia foto", - "sign_in": "Accedi", - "sign_up": "Registrati", + "sign_in": "Log in", + "sign_up": "Create account", "see_more": "Visualizza altro", "preview": "Anteprima", "share": "Condividi", @@ -218,10 +218,16 @@ "get_started": "Inizia", "log_in": "Accedi" }, + "login": { + "title": "Welcome back", + "subtitle": "Log you in on the server you created your account on.", + "server_search_field": { + "placeholder": "Enter URL or search for your server" + } + }, "server_picker": { "title": "Mastodon è fatto di utenti in diverse comunità.", - "subtitle": "Scegli una comunità basata sui tuoi interessi, regione o uno scopo generale.", - "subtitle_extend": "Scegli una comunità basata sui tuoi interessi, regione o uno scopo generale. Ogni comunità è gestita da un'organizzazione completamente indipendente o individuale.", + "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", "button": { "category": { "all": "Tutti", @@ -248,8 +254,7 @@ "category": "CATEGORIA" }, "input": { - "placeholder": "Cerca comunità", - "search_servers_or_enter_url": "Cerca i server o inserisci l'URL" + "search_servers_or_enter_url": "Search communities or enter URL" }, "empty_state": { "finding_servers": "Ricerca server disponibili...", @@ -719,4 +724,4 @@ "title": "Segnalibri" } } -} \ No newline at end of file +} From 58ae3668e2f7114a407a028352dd3189281f9f53 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 09:45:39 +0100 Subject: [PATCH 471/598] New translations app.json (Chinese Traditional) --- .../input/zh-Hant.lproj/app.json | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/Localization/StringsConvertor/input/zh-Hant.lproj/app.json b/Localization/StringsConvertor/input/zh-Hant.lproj/app.json index d7d02240f..c7607ba2a 100644 --- a/Localization/StringsConvertor/input/zh-Hant.lproj/app.json +++ b/Localization/StringsConvertor/input/zh-Hant.lproj/app.json @@ -74,8 +74,8 @@ "take_photo": "拍攝照片", "save_photo": "儲存照片", "copy_photo": "複製照片", - "sign_in": "登入", - "sign_up": "註冊", + "sign_in": "Log in", + "sign_up": "Create account", "see_more": "檢視更多", "preview": "預覽", "share": "分享", @@ -218,10 +218,16 @@ "get_started": "新手上路", "log_in": "登入" }, + "login": { + "title": "Welcome back", + "subtitle": "Log you in on the server you created your account on.", + "server_search_field": { + "placeholder": "Enter URL or search for your server" + } + }, "server_picker": { "title": "Mastodon 由不同伺服器的使用者組成。", - "subtitle": "基於您的興趣、地區、或一般用途選定一個伺服器。", - "subtitle_extend": "基於您的興趣、地區、或一般用途選定一個伺服器。每個伺服器是由完全獨立的組織或個人營運。", + "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", "button": { "category": { "all": "全部", @@ -248,8 +254,7 @@ "category": "分類" }, "input": { - "placeholder": "搜尋伺服器", - "search_servers_or_enter_url": "搜尋伺服器或輸入網址" + "search_servers_or_enter_url": "Search communities or enter URL" }, "empty_state": { "finding_servers": "尋找可用的伺服器...", @@ -719,4 +724,4 @@ "title": "書籤" } } -} \ No newline at end of file +} From 2b933c33270a68c0a7abc05988b921f99a755a9f Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 09:45:40 +0100 Subject: [PATCH 472/598] New translations app.json (Ukrainian) --- .../StringsConvertor/input/uk.lproj/app.json | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/Localization/StringsConvertor/input/uk.lproj/app.json b/Localization/StringsConvertor/input/uk.lproj/app.json index 30566d8d6..3113ada74 100644 --- a/Localization/StringsConvertor/input/uk.lproj/app.json +++ b/Localization/StringsConvertor/input/uk.lproj/app.json @@ -74,8 +74,8 @@ "take_photo": "Take Photo", "save_photo": "Save Photo", "copy_photo": "Copy Photo", - "sign_in": "Sign In", - "sign_up": "Sign Up", + "sign_in": "Log in", + "sign_up": "Create account", "see_more": "See More", "preview": "Preview", "share": "Share", @@ -218,10 +218,16 @@ "get_started": "Get Started", "log_in": "Log In" }, + "login": { + "title": "Welcome back", + "subtitle": "Log you in on the server you created your account on.", + "server_search_field": { + "placeholder": "Enter URL or search for your server" + } + }, "server_picker": { "title": "Mastodon is made of users in different servers.", - "subtitle": "Pick a server based on your interests, region, or a general purpose one.", - "subtitle_extend": "Pick a server based on your interests, region, or a general purpose one. Each server is operated by an entirely independent organization or individual.", + "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", "button": { "category": { "all": "All", @@ -248,8 +254,7 @@ "category": "CATEGORY" }, "input": { - "placeholder": "Search servers", - "search_servers_or_enter_url": "Search servers or enter URL" + "search_servers_or_enter_url": "Search communities or enter URL" }, "empty_state": { "finding_servers": "Finding available servers...", @@ -719,4 +724,4 @@ "title": "Bookmarks" } } -} \ No newline at end of file +} From dd8c8409ea05bbcfb4ae78dc937a55c8de1d9216 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 09:45:42 +0100 Subject: [PATCH 473/598] New translations app.json (Vietnamese) --- .../StringsConvertor/input/vi.lproj/app.json | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/Localization/StringsConvertor/input/vi.lproj/app.json b/Localization/StringsConvertor/input/vi.lproj/app.json index ff751d964..e7e5a1372 100644 --- a/Localization/StringsConvertor/input/vi.lproj/app.json +++ b/Localization/StringsConvertor/input/vi.lproj/app.json @@ -74,8 +74,8 @@ "take_photo": "Chụp ảnh", "save_photo": "Lưu ảnh", "copy_photo": "Sao chép ảnh", - "sign_in": "Đăng nhập", - "sign_up": "Đăng ký", + "sign_in": "Log in", + "sign_up": "Create account", "see_more": "Xem thêm", "preview": "Xem trước", "share": "Chia sẻ", @@ -218,10 +218,16 @@ "get_started": "Bắt đầu", "log_in": "Đăng nhập" }, + "login": { + "title": "Welcome back", + "subtitle": "Log you in on the server you created your account on.", + "server_search_field": { + "placeholder": "Enter URL or search for your server" + } + }, "server_picker": { "title": "Mastodon gồm nhiều máy chủ với thành viên riêng.", - "subtitle": "Chọn một máy chủ dựa theo sở thích, tôn giáo, hoặc ý muốn của bạn.", - "subtitle_extend": "Chọn một máy chủ dựa theo sở thích, tôn giáo, hoặc ý muốn của bạn. Mỗi máy chủ có thể được vận hành bởi một cá nhân hoặc một tổ chức.", + "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", "button": { "category": { "all": "Toàn bộ", @@ -248,8 +254,7 @@ "category": "PHÂN LOẠI" }, "input": { - "placeholder": "Tìm máy chủ", - "search_servers_or_enter_url": "Tìm máy chủ hoặc nhập URL" + "search_servers_or_enter_url": "Search communities or enter URL" }, "empty_state": { "finding_servers": "Đang tìm máy chủ hoạt động...", @@ -719,4 +724,4 @@ "title": "Tút đã lưu" } } -} \ No newline at end of file +} From 1d9f4530a14898d37d2a79735039f124dec15382 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 09:45:43 +0100 Subject: [PATCH 474/598] New translations app.json (Kabyle) --- .../StringsConvertor/input/kab.lproj/app.json | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/Localization/StringsConvertor/input/kab.lproj/app.json b/Localization/StringsConvertor/input/kab.lproj/app.json index 713cc8959..fb8add87b 100644 --- a/Localization/StringsConvertor/input/kab.lproj/app.json +++ b/Localization/StringsConvertor/input/kab.lproj/app.json @@ -74,8 +74,8 @@ "take_photo": "Ṭṭef tawlaft", "save_photo": "Sekles tawlaft", "copy_photo": "Nɣel tawlaft", - "sign_in": "Qqen", - "sign_up": "Jerred amiḍan", + "sign_in": "Log in", + "sign_up": "Create account", "see_more": "Wali ugar", "preview": "Taskant", "share": "Bḍu", @@ -218,10 +218,16 @@ "get_started": "Aha bdu tura", "log_in": "Qqen" }, + "login": { + "title": "Welcome back", + "subtitle": "Log you in on the server you created your account on.", + "server_search_field": { + "placeholder": "Enter URL or search for your server" + } + }, "server_picker": { "title": "Mastodon yettwaxdem i yiseqdacen deg waṭas n temɣiwnin.", - "subtitle": "Fren tamɣiwent almend n wayen tḥemmleḍ, n tmurt-ik neɣ n yiswi-inek amatu.", - "subtitle_extend": "Fren tamɣiwent almend n wayen tḥemmleḍ, n tmurt-ik neɣ n yiswi-inek amatu. Yal tamɣiwent tsedday-itt tkebbanit neɣ amdan ilelliyen.", + "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", "button": { "category": { "all": "Akk", @@ -248,8 +254,7 @@ "category": "TAGGAYT" }, "input": { - "placeholder": "Nadi timɣiwnin", - "search_servers_or_enter_url": "Nadi timɣiwnin neɣ sekcem URL" + "search_servers_or_enter_url": "Search communities or enter URL" }, "empty_state": { "finding_servers": "Tifin n yiqeddacen yellan...", @@ -719,4 +724,4 @@ "title": "Bookmarks" } } -} \ No newline at end of file +} From 4952b434b3faf2de93b27da8f7c3b545f33161d4 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 09:45:44 +0100 Subject: [PATCH 475/598] New translations app.json (Korean) --- .../StringsConvertor/input/ko.lproj/app.json | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/Localization/StringsConvertor/input/ko.lproj/app.json b/Localization/StringsConvertor/input/ko.lproj/app.json index a871d2d00..3971b18e9 100644 --- a/Localization/StringsConvertor/input/ko.lproj/app.json +++ b/Localization/StringsConvertor/input/ko.lproj/app.json @@ -74,8 +74,8 @@ "take_photo": "사진 촬영", "save_photo": "사진 저장", "copy_photo": "사진 복사", - "sign_in": "로그인", - "sign_up": "회원가입", + "sign_in": "Log in", + "sign_up": "Create account", "see_more": "더 보기", "preview": "미리보기", "share": "공유", @@ -218,10 +218,16 @@ "get_started": "시작하기", "log_in": "로그인" }, + "login": { + "title": "Welcome back", + "subtitle": "Log you in on the server you created your account on.", + "server_search_field": { + "placeholder": "Enter URL or search for your server" + } + }, "server_picker": { "title": "서버를 고르세요,\n아무 서버나 좋습니다.", - "subtitle": "Pick a server based on your interests, region, or a general purpose one.", - "subtitle_extend": "Pick a server based on your interests, region, or a general purpose one. Each server is operated by an entirely independent organization or individual.", + "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", "button": { "category": { "all": "모두", @@ -248,8 +254,7 @@ "category": "분류" }, "input": { - "placeholder": "서버 검색", - "search_servers_or_enter_url": "서버를 검색하거나 URL을 입력하세요" + "search_servers_or_enter_url": "Search communities or enter URL" }, "empty_state": { "finding_servers": "사용 가능한 서버를 찾는 중입니다...", @@ -719,4 +724,4 @@ "title": "Bookmarks" } } -} \ No newline at end of file +} From cd9209f84beb8b087105cac38ea93686c8533724 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 09:45:45 +0100 Subject: [PATCH 476/598] New translations app.json (Swedish) --- .../StringsConvertor/input/sv.lproj/app.json | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/Localization/StringsConvertor/input/sv.lproj/app.json b/Localization/StringsConvertor/input/sv.lproj/app.json index 6375771ff..27f931249 100644 --- a/Localization/StringsConvertor/input/sv.lproj/app.json +++ b/Localization/StringsConvertor/input/sv.lproj/app.json @@ -74,8 +74,8 @@ "take_photo": "Ta foto", "save_photo": "Spara foto", "copy_photo": "Kopiera foto", - "sign_in": "Logga in", - "sign_up": "Registrera dig", + "sign_in": "Log in", + "sign_up": "Create account", "see_more": "Visa mer", "preview": "Förhandsvisa", "share": "Dela", @@ -218,10 +218,16 @@ "get_started": "Kom igång", "log_in": "Logga in" }, + "login": { + "title": "Welcome back", + "subtitle": "Log you in on the server you created your account on.", + "server_search_field": { + "placeholder": "Enter URL or search for your server" + } + }, "server_picker": { "title": "Mastodon utgörs av användare på olika servrar.", - "subtitle": "Välj en server baserat på dina intressen, region eller ett allmänt syfte.", - "subtitle_extend": "Välj en server baserat på dina intressen, region eller ett allmänt syfte. Varje server drivs av en helt oberoende organisation eller individ.", + "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", "button": { "category": { "all": "Alla", @@ -248,8 +254,7 @@ "category": "KATEGORI" }, "input": { - "placeholder": "Sök gemenskaper", - "search_servers_or_enter_url": "Sök servrar eller ange URL" + "search_servers_or_enter_url": "Search communities or enter URL" }, "empty_state": { "finding_servers": "Söker tillgängliga servrar...", @@ -719,4 +724,4 @@ "title": "Bokmärken" } } -} \ No newline at end of file +} From 8fece50f4a5a05a6a54a41f9af02ef66f4f502d0 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 09:45:46 +0100 Subject: [PATCH 477/598] New translations app.json (French) --- .../StringsConvertor/input/fr.lproj/app.json | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/Localization/StringsConvertor/input/fr.lproj/app.json b/Localization/StringsConvertor/input/fr.lproj/app.json index 7dffb4aba..effeafe12 100644 --- a/Localization/StringsConvertor/input/fr.lproj/app.json +++ b/Localization/StringsConvertor/input/fr.lproj/app.json @@ -74,8 +74,8 @@ "take_photo": "Prendre une photo", "save_photo": "Enregistrer la photo", "copy_photo": "Copier la photo", - "sign_in": "Se connecter", - "sign_up": "Créer un compte", + "sign_in": "Log in", + "sign_up": "Create account", "see_more": "Voir plus", "preview": "Aperçu", "share": "Partager", @@ -218,10 +218,16 @@ "get_started": "Prise en main", "log_in": "Se connecter" }, + "login": { + "title": "Welcome back", + "subtitle": "Log you in on the server you created your account on.", + "server_search_field": { + "placeholder": "Enter URL or search for your server" + } + }, "server_picker": { "title": "Choisissez un serveur,\nn'importe quel serveur.", - "subtitle": "Choisissez une communauté en fonction de vos intérêts, de votre région ou de votre objectif général.", - "subtitle_extend": "Choisissez une communauté basée sur vos intérêts, votre région ou un but général. Chaque communauté est gérée par une organisation ou un individu entièrement indépendant.", + "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", "button": { "category": { "all": "Tout", @@ -248,8 +254,7 @@ "category": "CATÉGORIE" }, "input": { - "placeholder": "Trouvez un serveur ou rejoignez le vôtre...", - "search_servers_or_enter_url": "Rechercher des serveurs ou entrer une URL" + "search_servers_or_enter_url": "Search communities or enter URL" }, "empty_state": { "finding_servers": "Recherche des serveurs disponibles...", @@ -719,4 +724,4 @@ "title": "Favoris" } } -} \ No newline at end of file +} From 687db19201e48f39c73449e5f9496a0c7b3fd443 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 09:45:47 +0100 Subject: [PATCH 478/598] New translations app.json (Turkish) --- .../StringsConvertor/input/tr.lproj/app.json | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/Localization/StringsConvertor/input/tr.lproj/app.json b/Localization/StringsConvertor/input/tr.lproj/app.json index 27ebf6e0a..37325cf05 100644 --- a/Localization/StringsConvertor/input/tr.lproj/app.json +++ b/Localization/StringsConvertor/input/tr.lproj/app.json @@ -74,8 +74,8 @@ "take_photo": "Fotoğraf Çek", "save_photo": "Fotoğrafı Kaydet", "copy_photo": "Fotoğrafı Kopyala", - "sign_in": "Giriş Yap", - "sign_up": "Kaydol", + "sign_in": "Log in", + "sign_up": "Create account", "see_more": "Daha Fazla Gör", "preview": "Önizleme", "share": "Paylaş", @@ -218,10 +218,16 @@ "get_started": "Başlayın", "log_in": "Oturum Aç" }, + "login": { + "title": "Welcome back", + "subtitle": "Log you in on the server you created your account on.", + "server_search_field": { + "placeholder": "Enter URL or search for your server" + } + }, "server_picker": { "title": "Mastodon, farklı topluluklardaki kullanıcılardan oluşur.", - "subtitle": "İlgi alanlarınıza, bölgenize veya genel amaçlı bir topluluk seçin.", - "subtitle_extend": "İlgi alanlarınıza, bölgenize veya genel amaçlı bir topluluk seçin. Her topluluk tamamen bağımsız bir kuruluş veya kişi tarafından işletilmektedir.", + "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", "button": { "category": { "all": "Tümü", @@ -248,8 +254,7 @@ "category": "KATEGORİ" }, "input": { - "placeholder": "Toplulukları ara", - "search_servers_or_enter_url": "Sunucuları ara ya da bir bağlantı gir" + "search_servers_or_enter_url": "Search communities or enter URL" }, "empty_state": { "finding_servers": "Mevcut sunucular aranıyor...", @@ -719,4 +724,4 @@ "title": "Bookmarks" } } -} \ No newline at end of file +} From ff1899b8ff9e7f8b9f0e6356ad5b41b9dd3717ab Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 09:45:48 +0100 Subject: [PATCH 479/598] New translations app.json (Czech) --- .../StringsConvertor/input/cs.lproj/app.json | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/Localization/StringsConvertor/input/cs.lproj/app.json b/Localization/StringsConvertor/input/cs.lproj/app.json index d6624a26b..751ae6a61 100644 --- a/Localization/StringsConvertor/input/cs.lproj/app.json +++ b/Localization/StringsConvertor/input/cs.lproj/app.json @@ -74,8 +74,8 @@ "take_photo": "Vyfotit", "save_photo": "Uložit fotku", "copy_photo": "Kopírovat fotografii", - "sign_in": "Přihlásit se", - "sign_up": "Zaregistrovat se", + "sign_in": "Log in", + "sign_up": "Create account", "see_more": "Zobrazit více", "preview": "Náhled", "share": "Sdílet", @@ -218,10 +218,16 @@ "get_started": "Začínáme", "log_in": "Přihlásit se" }, + "login": { + "title": "Welcome back", + "subtitle": "Log you in on the server you created your account on.", + "server_search_field": { + "placeholder": "Enter URL or search for your server" + } + }, "server_picker": { "title": "Mastodon tvoří uživatelé z různých serverů.", - "subtitle": "Vyberte server založený na vašich zájmech, regionu nebo obecném účelu.", - "subtitle_extend": "Vyberte server založený na vašich zájmech, regionu nebo obecném účelu. Každý server je provozován zcela nezávislou organizací nebo jednotlivcem.", + "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", "button": { "category": { "all": "Vše", @@ -248,8 +254,7 @@ "category": "KATEGORIE" }, "input": { - "placeholder": "Hledat servery", - "search_servers_or_enter_url": "Hledat servery nebo zadat URL" + "search_servers_or_enter_url": "Search communities or enter URL" }, "empty_state": { "finding_servers": "Hledání dostupných serverů...", @@ -719,4 +724,4 @@ "title": "Záložky" } } -} \ No newline at end of file +} From 4c5f4c3dfc8286f1ce5c25c97314ebec530bbb7d Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 09:45:49 +0100 Subject: [PATCH 480/598] New translations app.json (Scottish Gaelic) --- .../StringsConvertor/input/gd.lproj/app.json | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/Localization/StringsConvertor/input/gd.lproj/app.json b/Localization/StringsConvertor/input/gd.lproj/app.json index 6a575afc2..f29f0fa17 100644 --- a/Localization/StringsConvertor/input/gd.lproj/app.json +++ b/Localization/StringsConvertor/input/gd.lproj/app.json @@ -74,8 +74,8 @@ "take_photo": "Tog dealbh", "save_photo": "Sàbhail an dealbh", "copy_photo": "Dèan lethbhreac dhen dealbh", - "sign_in": "Clàraich a-steach", - "sign_up": "Clàraich leinn", + "sign_in": "Log in", + "sign_up": "Create account", "see_more": "Seall a bharrachd", "preview": "Ro-sheall", "share": "Co-roinn", @@ -218,10 +218,16 @@ "get_started": "Dèan toiseach-tòiseachaidh", "log_in": "Clàraich a-steach" }, + "login": { + "title": "Welcome back", + "subtitle": "Log you in on the server you created your account on.", + "server_search_field": { + "placeholder": "Enter URL or search for your server" + } + }, "server_picker": { "title": "Tha cleachdaichean Mhastodon air iomadh frithealaiche eadar-dhealaichte.", - "subtitle": "Tagh frithealaiche stèidhichte air d’ ùidhean, air far a bheil thu no fear coitcheann.", - "subtitle_extend": "Tagh frithealaiche stèidhichte air d’ ùidhean, air far a bheil thu no fear coitcheann. Tha gach frithealaiche fo stiùireadh buidhinn no neach neo-eisimeilich fa leth.", + "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", "button": { "category": { "all": "Na h-uile", @@ -248,8 +254,7 @@ "category": "ROINN-SEÒRSA" }, "input": { - "placeholder": "Lorg frithealaiche", - "search_servers_or_enter_url": "Lorg frithealaiche no cuir a-steach URL" + "search_servers_or_enter_url": "Search communities or enter URL" }, "empty_state": { "finding_servers": "A’ lorg nam frithealaichean ri am faighinn…", @@ -719,4 +724,4 @@ "title": "Bookmarks" } } -} \ No newline at end of file +} From 68f7e6f19571abe6bafbab8358f72fa05f91ee8d Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 09:45:51 +0100 Subject: [PATCH 481/598] New translations app.json (Finnish) --- .../StringsConvertor/input/fi.lproj/app.json | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/Localization/StringsConvertor/input/fi.lproj/app.json b/Localization/StringsConvertor/input/fi.lproj/app.json index febfee2ca..7dafe7fd1 100644 --- a/Localization/StringsConvertor/input/fi.lproj/app.json +++ b/Localization/StringsConvertor/input/fi.lproj/app.json @@ -74,8 +74,8 @@ "take_photo": "Ota kuva", "save_photo": "Tallenna kuva", "copy_photo": "Kopioi kuva", - "sign_in": "Kirjaudu sisään", - "sign_up": "Rekisteröidy", + "sign_in": "Log in", + "sign_up": "Create account", "see_more": "Näytä lisää", "preview": "Esikatselu", "share": "Jaa", @@ -218,10 +218,16 @@ "get_started": "Get Started", "log_in": "Log In" }, + "login": { + "title": "Welcome back", + "subtitle": "Log you in on the server you created your account on.", + "server_search_field": { + "placeholder": "Enter URL or search for your server" + } + }, "server_picker": { "title": "Valitse palvelin,\nmikä tahansa palvelin.", - "subtitle": "Pick a server based on your interests, region, or a general purpose one.", - "subtitle_extend": "Pick a server based on your interests, region, or a general purpose one. Each server is operated by an entirely independent organization or individual.", + "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", "button": { "category": { "all": "Kaikki", @@ -248,8 +254,7 @@ "category": "KATEGORIA" }, "input": { - "placeholder": "Etsi palvelin tai liity omaan...", - "search_servers_or_enter_url": "Search servers or enter URL" + "search_servers_or_enter_url": "Search communities or enter URL" }, "empty_state": { "finding_servers": "Etsistään saatavilla olevia palvelimia...", @@ -719,4 +724,4 @@ "title": "Bookmarks" } } -} \ No newline at end of file +} From fced11f09138217eda093c8722a925f605874c6c Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 09:45:52 +0100 Subject: [PATCH 482/598] New translations app.json (Romanian) --- .../StringsConvertor/input/ro.lproj/app.json | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/Localization/StringsConvertor/input/ro.lproj/app.json b/Localization/StringsConvertor/input/ro.lproj/app.json index 18fcb023b..75a77184c 100644 --- a/Localization/StringsConvertor/input/ro.lproj/app.json +++ b/Localization/StringsConvertor/input/ro.lproj/app.json @@ -74,8 +74,8 @@ "take_photo": "Take Photo", "save_photo": "Save Photo", "copy_photo": "Copy Photo", - "sign_in": "Sign In", - "sign_up": "Sign Up", + "sign_in": "Log in", + "sign_up": "Create account", "see_more": "See More", "preview": "Preview", "share": "Share", @@ -218,10 +218,16 @@ "get_started": "Get Started", "log_in": "Log In" }, + "login": { + "title": "Welcome back", + "subtitle": "Log you in on the server you created your account on.", + "server_search_field": { + "placeholder": "Enter URL or search for your server" + } + }, "server_picker": { "title": "Mastodon is made of users in different servers.", - "subtitle": "Pick a server based on your interests, region, or a general purpose one.", - "subtitle_extend": "Pick a server based on your interests, region, or a general purpose one. Each server is operated by an entirely independent organization or individual.", + "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", "button": { "category": { "all": "All", @@ -248,8 +254,7 @@ "category": "CATEGORY" }, "input": { - "placeholder": "Search servers", - "search_servers_or_enter_url": "Search servers or enter URL" + "search_servers_or_enter_url": "Search communities or enter URL" }, "empty_state": { "finding_servers": "Finding available servers...", @@ -719,4 +724,4 @@ "title": "Bookmarks" } } -} \ No newline at end of file +} From 1de7a45a5369273fa10496d984afc96077a6b388 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 09:45:53 +0100 Subject: [PATCH 483/598] New translations app.json (Spanish) --- .../StringsConvertor/input/es.lproj/app.json | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/Localization/StringsConvertor/input/es.lproj/app.json b/Localization/StringsConvertor/input/es.lproj/app.json index a7500e27f..1b90bfa10 100644 --- a/Localization/StringsConvertor/input/es.lproj/app.json +++ b/Localization/StringsConvertor/input/es.lproj/app.json @@ -74,8 +74,8 @@ "take_photo": "Tomar foto", "save_photo": "Guardar foto", "copy_photo": "Copiar foto", - "sign_in": "Iniciar sesión", - "sign_up": "Regístrate", + "sign_in": "Log in", + "sign_up": "Create account", "see_more": "Ver más", "preview": "Vista previa", "share": "Compartir", @@ -218,10 +218,16 @@ "get_started": "Empezar", "log_in": "Iniciar sesión" }, + "login": { + "title": "Welcome back", + "subtitle": "Log you in on the server you created your account on.", + "server_search_field": { + "placeholder": "Enter URL or search for your server" + } + }, "server_picker": { "title": "Elige un servidor,\ncualquier servidor.", - "subtitle": "Elige una comunidad relacionada con tus intereses, con tu región o una más genérica.", - "subtitle_extend": "Elige una comunidad relacionada con tus intereses, con tu región o una más genérica. Cada comunidad está operada por una organización o individuo completamente independiente.", + "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", "button": { "category": { "all": "Todas", @@ -248,8 +254,7 @@ "category": "CATEGORÍA" }, "input": { - "placeholder": "Encuentra un servidor o únete al tuyo propio...", - "search_servers_or_enter_url": "Buscar servidores o introducir la URL" + "search_servers_or_enter_url": "Search communities or enter URL" }, "empty_state": { "finding_servers": "Encontrando servidores disponibles...", @@ -719,4 +724,4 @@ "title": "Bookmarks" } } -} \ No newline at end of file +} From baa8a85fa63c4236000bb0fc04214ee31e2aead3 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 09:45:54 +0100 Subject: [PATCH 484/598] New translations app.json (Arabic) --- .../StringsConvertor/input/ar.lproj/app.json | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/Localization/StringsConvertor/input/ar.lproj/app.json b/Localization/StringsConvertor/input/ar.lproj/app.json index 1a52ccfbb..2ed2be724 100644 --- a/Localization/StringsConvertor/input/ar.lproj/app.json +++ b/Localization/StringsConvertor/input/ar.lproj/app.json @@ -74,8 +74,8 @@ "take_photo": "اِلتِقاطُ صُورَة", "save_photo": "حفظ الصورة", "copy_photo": "نسخ الصورة", - "sign_in": "تسجيل الدخول", - "sign_up": "إنشاء حِساب", + "sign_in": "Log in", + "sign_up": "Create account", "see_more": "عرض المزيد", "preview": "مُعاينة", "share": "المُشارك", @@ -218,10 +218,16 @@ "get_started": "ابدأ الآن", "log_in": "تسجيلُ الدخول" }, + "login": { + "title": "Welcome back", + "subtitle": "Log you in on the server you created your account on.", + "server_search_field": { + "placeholder": "Enter URL or search for your server" + } + }, "server_picker": { "title": "اِختر خادِم،\nأيًّا مِنهُم.", - "subtitle": "اختر مجتمعًا بناءً على اهتماماتك، منطقتك أو يمكنك حتى اختيارُ مجتمعٍ ذي غرضٍ عام.", - "subtitle_extend": "اختر مجتمعًا بناءً على اهتماماتك، منطقتك أو يمكنك حتى اختيارُ مجتمعٍ ذي غرضٍ عام. تُشغَّل جميعُ المجتمعِ مِن قِبَلِ مُنظمَةٍ أو فردٍ مُستقلٍ تمامًا.", + "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", "button": { "category": { "all": "الكُل", @@ -248,8 +254,7 @@ "category": "الفئة" }, "input": { - "placeholder": "اِبحَث عن خادِم أو انضم إلى آخر خاص بك...", - "search_servers_or_enter_url": "اِبحَث فِي الخَوادِم أو أدخِل رابِط" + "search_servers_or_enter_url": "Search communities or enter URL" }, "empty_state": { "finding_servers": "يجري إيجاد خوادم متوفِّرَة...", @@ -719,4 +724,4 @@ "title": "العَلاماتُ المَرجعيَّة" } } -} \ No newline at end of file +} From 61fdda2e636b0f06f0f1a314a430f9823e94459b Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 09:45:55 +0100 Subject: [PATCH 485/598] New translations app.json (Catalan) --- .../StringsConvertor/input/ca.lproj/app.json | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/Localization/StringsConvertor/input/ca.lproj/app.json b/Localization/StringsConvertor/input/ca.lproj/app.json index 35dd58746..a417ffdbb 100644 --- a/Localization/StringsConvertor/input/ca.lproj/app.json +++ b/Localization/StringsConvertor/input/ca.lproj/app.json @@ -74,8 +74,8 @@ "take_photo": "Fes una foto", "save_photo": "Desa la foto", "copy_photo": "Copia la foto", - "sign_in": "Iniciar sessió", - "sign_up": "Registre", + "sign_in": "Log in", + "sign_up": "Create account", "see_more": "Veure més", "preview": "Vista prèvia", "share": "Comparteix", @@ -218,10 +218,16 @@ "get_started": "Comença", "log_in": "Inicia sessió" }, + "login": { + "title": "Welcome back", + "subtitle": "Log you in on the server you created your account on.", + "server_search_field": { + "placeholder": "Enter URL or search for your server" + } + }, "server_picker": { "title": "Mastodon està fet d'usuaris en diferents comunitats.", - "subtitle": "Tria una comunitat segons els teus interessos, regió o una de propòsit general.", - "subtitle_extend": "Tria una comunitat segons els teus interessos, regió o una de propòsit general. Cada comunitat és operada per una organització totalment independent o individualment.", + "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", "button": { "category": { "all": "Totes", @@ -248,8 +254,7 @@ "category": "CATEGORIA" }, "input": { - "placeholder": "Cerca servidors", - "search_servers_or_enter_url": "Cerca servidors o introdueix l'enllaç" + "search_servers_or_enter_url": "Search communities or enter URL" }, "empty_state": { "finding_servers": "Cercant els servidors disponibles...", @@ -719,4 +724,4 @@ "title": "Marcadors" } } -} \ No newline at end of file +} From 05863051c9e38ee581222f44433bf90cf82ab226 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 09:45:56 +0100 Subject: [PATCH 486/598] New translations app.json (Danish) --- .../StringsConvertor/input/da.lproj/app.json | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/Localization/StringsConvertor/input/da.lproj/app.json b/Localization/StringsConvertor/input/da.lproj/app.json index 30566d8d6..3113ada74 100644 --- a/Localization/StringsConvertor/input/da.lproj/app.json +++ b/Localization/StringsConvertor/input/da.lproj/app.json @@ -74,8 +74,8 @@ "take_photo": "Take Photo", "save_photo": "Save Photo", "copy_photo": "Copy Photo", - "sign_in": "Sign In", - "sign_up": "Sign Up", + "sign_in": "Log in", + "sign_up": "Create account", "see_more": "See More", "preview": "Preview", "share": "Share", @@ -218,10 +218,16 @@ "get_started": "Get Started", "log_in": "Log In" }, + "login": { + "title": "Welcome back", + "subtitle": "Log you in on the server you created your account on.", + "server_search_field": { + "placeholder": "Enter URL or search for your server" + } + }, "server_picker": { "title": "Mastodon is made of users in different servers.", - "subtitle": "Pick a server based on your interests, region, or a general purpose one.", - "subtitle_extend": "Pick a server based on your interests, region, or a general purpose one. Each server is operated by an entirely independent organization or individual.", + "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", "button": { "category": { "all": "All", @@ -248,8 +254,7 @@ "category": "CATEGORY" }, "input": { - "placeholder": "Search servers", - "search_servers_or_enter_url": "Search servers or enter URL" + "search_servers_or_enter_url": "Search communities or enter URL" }, "empty_state": { "finding_servers": "Finding available servers...", @@ -719,4 +724,4 @@ "title": "Bookmarks" } } -} \ No newline at end of file +} From e1c18ebfbe02962f58c1a9e0718d8be3932e39e7 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 09:45:57 +0100 Subject: [PATCH 487/598] New translations app.json (German) --- .../StringsConvertor/input/de.lproj/app.json | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/Localization/StringsConvertor/input/de.lproj/app.json b/Localization/StringsConvertor/input/de.lproj/app.json index 54bb81973..bda8161a1 100644 --- a/Localization/StringsConvertor/input/de.lproj/app.json +++ b/Localization/StringsConvertor/input/de.lproj/app.json @@ -74,8 +74,8 @@ "take_photo": "Foto aufnehmen", "save_photo": "Foto speichern", "copy_photo": "Foto kopieren", - "sign_in": "Anmelden", - "sign_up": "Registrieren", + "sign_in": "Log in", + "sign_up": "Create account", "see_more": "Mehr anzeigen", "preview": "Vorschau", "share": "Teilen", @@ -218,10 +218,16 @@ "get_started": "Registrieren", "log_in": "Anmelden" }, + "login": { + "title": "Welcome back", + "subtitle": "Log you in on the server you created your account on.", + "server_search_field": { + "placeholder": "Enter URL or search for your server" + } + }, "server_picker": { "title": "Wähle einen Server,\nbeliebigen Server.", - "subtitle": "Wähle eine Gemeinschaft, die auf deinen Interessen, Region oder einem allgemeinen Zweck basiert.", - "subtitle_extend": "Wähle eine Gemeinschaft basierend auf deinen Interessen, deiner Region oder einem allgemeinen Zweck. Jede Gemeinschaft wird von einer völlig unabhängigen Organisation oder Einzelperson betrieben.", + "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", "button": { "category": { "all": "Alle", @@ -248,8 +254,7 @@ "category": "KATEGORIE" }, "input": { - "placeholder": "Nach Server suchen oder URL eingeben", - "search_servers_or_enter_url": "Nach Server suchen oder URL eingeben" + "search_servers_or_enter_url": "Search communities or enter URL" }, "empty_state": { "finding_servers": "Verfügbare Server werden gesucht...", @@ -719,4 +724,4 @@ "title": "Lesezeichen" } } -} \ No newline at end of file +} From 54a70a81b5e876cccfa39b2b698f44407beee5d4 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 09:45:59 +0100 Subject: [PATCH 488/598] New translations app.json (Basque) --- .../StringsConvertor/input/eu.lproj/app.json | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/Localization/StringsConvertor/input/eu.lproj/app.json b/Localization/StringsConvertor/input/eu.lproj/app.json index 9f5e925c6..3da0d6a00 100644 --- a/Localization/StringsConvertor/input/eu.lproj/app.json +++ b/Localization/StringsConvertor/input/eu.lproj/app.json @@ -74,8 +74,8 @@ "take_photo": "Atera argazkia", "save_photo": "Gorde argazkia", "copy_photo": "Kopiatu argazkia", - "sign_in": "Hasi saioa", - "sign_up": "Eman Izena", + "sign_in": "Log in", + "sign_up": "Create account", "see_more": "Ikusi gehiago", "preview": "Aurrebista", "share": "Partekatu", @@ -218,10 +218,16 @@ "get_started": "Nola hasi", "log_in": "Hasi saioa" }, + "login": { + "title": "Welcome back", + "subtitle": "Log you in on the server you created your account on.", + "server_search_field": { + "placeholder": "Enter URL or search for your server" + } + }, "server_picker": { "title": "Aukeratu zerbitzari bat,\nedozein zerbitzari.", - "subtitle": "Aukeratu komunitate bat zure interes edo lurraldearen arabera, edo erabilera orokorreko bat.", - "subtitle_extend": "Aukeratu komunitate bat zure interes edo lurraldearen arabera, edo erabilera orokorreko bat. Komunitate bakoitza erakunde edo norbanako independente batek kudeatzen du.", + "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", "button": { "category": { "all": "Guztiak", @@ -248,8 +254,7 @@ "category": "KATEGORIA" }, "input": { - "placeholder": "Bilatu zerbitzari bat edo sortu zurea...", - "search_servers_or_enter_url": "Search servers or enter URL" + "search_servers_or_enter_url": "Search communities or enter URL" }, "empty_state": { "finding_servers": "Erabilgarri dauden zerbitzariak bilatzen...", @@ -719,4 +724,4 @@ "title": "Bookmarks" } } -} \ No newline at end of file +} From bbc2f3c1652096e52c0c082ea34b4eaf2bda1a1e Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 09:46:00 +0100 Subject: [PATCH 489/598] New translations app.json (Sorani (Kurdish)) --- .../StringsConvertor/input/ckb.lproj/app.json | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/Localization/StringsConvertor/input/ckb.lproj/app.json b/Localization/StringsConvertor/input/ckb.lproj/app.json index 3720f555e..787bbea36 100644 --- a/Localization/StringsConvertor/input/ckb.lproj/app.json +++ b/Localization/StringsConvertor/input/ckb.lproj/app.json @@ -74,8 +74,8 @@ "take_photo": "وێنە بگرە", "save_photo": "هەڵی بگرە", "copy_photo": "لەبەری بگرەوە", - "sign_in": "بچۆ ژوورەوە", - "sign_up": "خۆت تۆمار بکە", + "sign_in": "Log in", + "sign_up": "Create account", "see_more": "زیاتر ببینە", "preview": "پێشبینین", "share": "هاوبەشی بکە", @@ -218,10 +218,16 @@ "get_started": "دەست پێ بکە", "log_in": "بچۆ ژوورەوە" }, + "login": { + "title": "Welcome back", + "subtitle": "Log you in on the server you created your account on.", + "server_search_field": { + "placeholder": "Enter URL or search for your server" + } + }, "server_picker": { "title": "ماستۆدۆن لە چەندان بەکارهێنەر پێک دێت کە لە ڕاژەکاری جیاواز دان.", - "subtitle": "ڕاژەکارێکێکی گشتی یان دانەیەک لەسەر بنەمای حەزەکانت و هەرێمەکەت هەڵبژێرە.", - "subtitle_extend": "ڕاژەکارێکێکی گشتی یان دانەیەک لەسەر بنەمای حەزەکانت و هەرێمەکەت هەڵبژێرە. هەر ڕاژەکارێک لەلایەن ڕێکخراوێک یان تاکەکەسێک بەڕێوە دەبرێت.", + "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", "button": { "category": { "all": "هەموو", @@ -248,8 +254,7 @@ "category": "بەش" }, "input": { - "placeholder": "بگەڕێ", - "search_servers_or_enter_url": "Search servers or enter URL" + "search_servers_or_enter_url": "Search communities or enter URL" }, "empty_state": { "finding_servers": "ڕاژەکار دەدۆزرێتەوە...", @@ -719,4 +724,4 @@ "title": "Bookmarks" } } -} \ No newline at end of file +} From 2e7598e4f723e99ef80bce9df4cd7af667be89ea Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 10:42:10 +0100 Subject: [PATCH 490/598] New translations app.json (Slovenian) --- .../StringsConvertor/input/sl.lproj/app.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Localization/StringsConvertor/input/sl.lproj/app.json b/Localization/StringsConvertor/input/sl.lproj/app.json index 252d80def..0aed7bc15 100644 --- a/Localization/StringsConvertor/input/sl.lproj/app.json +++ b/Localization/StringsConvertor/input/sl.lproj/app.json @@ -74,8 +74,8 @@ "take_photo": "Posnemi fotografijo", "save_photo": "Shrani fotografijo", "copy_photo": "Kopiraj fotografijo", - "sign_in": "Log in", - "sign_up": "Create account", + "sign_in": "Prijava", + "sign_up": "Ustvari račun", "see_more": "Pokaži več", "preview": "Predogled", "share": "Deli", @@ -219,15 +219,15 @@ "log_in": "Prijava" }, "login": { - "title": "Welcome back", - "subtitle": "Log you in on the server you created your account on.", + "title": "Dobrodošli nazaj", + "subtitle": "Prijavite se na strežniku, na katerem ste ustvarili račun.", "server_search_field": { - "placeholder": "Enter URL or search for your server" + "placeholder": "Vnesite URL ali poiščite svoj strežnik" } }, "server_picker": { "title": "Mastodon tvorijo uporabniki z različnih strežnikov.", - "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", + "subtitle": "Strežnik izberite glede na svojo regijo, zanimanje ali pa kar splošno. Še vedno lahko klepetate s komer koli na Mastodonu, ne glede na strežnik.", "button": { "category": { "all": "Vse", @@ -254,7 +254,7 @@ "category": "KATEGORIJA" }, "input": { - "search_servers_or_enter_url": "Search communities or enter URL" + "search_servers_or_enter_url": "Iščite po skupnostih ali vnesite URL" }, "empty_state": { "finding_servers": "Iskanje razpoložljivih strežnikov ...", From 198411e2f42b9d7f5095e7d626fa360d61fe44c3 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 10:42:11 +0100 Subject: [PATCH 491/598] New translations app.json (Vietnamese) --- .../StringsConvertor/input/vi.lproj/app.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Localization/StringsConvertor/input/vi.lproj/app.json b/Localization/StringsConvertor/input/vi.lproj/app.json index e7e5a1372..963be39c9 100644 --- a/Localization/StringsConvertor/input/vi.lproj/app.json +++ b/Localization/StringsConvertor/input/vi.lproj/app.json @@ -74,8 +74,8 @@ "take_photo": "Chụp ảnh", "save_photo": "Lưu ảnh", "copy_photo": "Sao chép ảnh", - "sign_in": "Log in", - "sign_up": "Create account", + "sign_in": "Đăng nhập", + "sign_up": "Tạo tài khoản", "see_more": "Xem thêm", "preview": "Xem trước", "share": "Chia sẻ", @@ -219,15 +219,15 @@ "log_in": "Đăng nhập" }, "login": { - "title": "Welcome back", - "subtitle": "Log you in on the server you created your account on.", + "title": "Chào mừng trở lại!", + "subtitle": "Đăng nhập vào máy chủ mà bạn đã tạo tài khoản.", "server_search_field": { - "placeholder": "Enter URL or search for your server" + "placeholder": "Nhập URL hoặc tìm máy chủ" } }, "server_picker": { "title": "Mastodon gồm nhiều máy chủ với thành viên riêng.", - "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", + "subtitle": "Chọn một máy chủ dựa theo sở thích, tôn giáo, hoặc ý muốn của bạn. Bạn vẫn có thể giao tiếp với bất cứ ai mà không phụ thuộc vào máy chủ của họ.", "button": { "category": { "all": "Toàn bộ", @@ -254,7 +254,7 @@ "category": "PHÂN LOẠI" }, "input": { - "search_servers_or_enter_url": "Search communities or enter URL" + "search_servers_or_enter_url": "Tìm một máy chủ hoặc nhập URL" }, "empty_state": { "finding_servers": "Đang tìm máy chủ hoạt động...", From 8d2c1aa4ebae5becc273738b18d260f3354acd0f Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 10:42:12 +0100 Subject: [PATCH 492/598] New translations app.json (Swedish) --- .../StringsConvertor/input/sv.lproj/app.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Localization/StringsConvertor/input/sv.lproj/app.json b/Localization/StringsConvertor/input/sv.lproj/app.json index 27f931249..7951e1958 100644 --- a/Localization/StringsConvertor/input/sv.lproj/app.json +++ b/Localization/StringsConvertor/input/sv.lproj/app.json @@ -74,8 +74,8 @@ "take_photo": "Ta foto", "save_photo": "Spara foto", "copy_photo": "Kopiera foto", - "sign_in": "Log in", - "sign_up": "Create account", + "sign_in": "Logga in", + "sign_up": "Skapa konto", "see_more": "Visa mer", "preview": "Förhandsvisa", "share": "Dela", @@ -219,15 +219,15 @@ "log_in": "Logga in" }, "login": { - "title": "Welcome back", - "subtitle": "Log you in on the server you created your account on.", + "title": "Välkommen tillbaka", + "subtitle": "Logga in på servern där du skapade ditt konto.", "server_search_field": { - "placeholder": "Enter URL or search for your server" + "placeholder": "Ange URL eller sök efter din server" } }, "server_picker": { "title": "Mastodon utgörs av användare på olika servrar.", - "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", + "subtitle": "Välj en server baserat på dina intressen, region eller en allmän server. Du kan fortfarande nå alla, oavsett server.", "button": { "category": { "all": "Alla", @@ -254,7 +254,7 @@ "category": "KATEGORI" }, "input": { - "search_servers_or_enter_url": "Search communities or enter URL" + "search_servers_or_enter_url": "Sök gemenskaper eller ange URL" }, "empty_state": { "finding_servers": "Söker tillgängliga servrar...", From 5038a49abf67118cdd900ebb5fcb20feb842ea7c Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 10:42:14 +0100 Subject: [PATCH 493/598] New translations app.json (Czech) --- .../StringsConvertor/input/cs.lproj/app.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Localization/StringsConvertor/input/cs.lproj/app.json b/Localization/StringsConvertor/input/cs.lproj/app.json index 751ae6a61..f94207c89 100644 --- a/Localization/StringsConvertor/input/cs.lproj/app.json +++ b/Localization/StringsConvertor/input/cs.lproj/app.json @@ -74,8 +74,8 @@ "take_photo": "Vyfotit", "save_photo": "Uložit fotku", "copy_photo": "Kopírovat fotografii", - "sign_in": "Log in", - "sign_up": "Create account", + "sign_in": "Přihlásit se", + "sign_up": "Vytvořit účet", "see_more": "Zobrazit více", "preview": "Náhled", "share": "Sdílet", @@ -219,15 +219,15 @@ "log_in": "Přihlásit se" }, "login": { - "title": "Welcome back", - "subtitle": "Log you in on the server you created your account on.", + "title": "Vítejte zpět", + "subtitle": "Přihlaste se na serveru, na kterém jste si vytvořili účet.", "server_search_field": { - "placeholder": "Enter URL or search for your server" + "placeholder": "Zadejte URL nebo vyhledávejte váš server" } }, "server_picker": { "title": "Mastodon tvoří uživatelé z různých serverů.", - "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", + "subtitle": "Vyberte server založený ve vašem regionu, podle zájmů nebo podle obecného účelu. Stále můžete chatovat s kýmkoli na Mastodonu bez ohledu na vaše servery.", "button": { "category": { "all": "Vše", @@ -254,7 +254,7 @@ "category": "KATEGORIE" }, "input": { - "search_servers_or_enter_url": "Search communities or enter URL" + "search_servers_or_enter_url": "Hledejte komunity nebo zadejte URL" }, "empty_state": { "finding_servers": "Hledání dostupných serverů...", From a9f7caea3d3475ca5ad1e6874a84fd5a89b27694 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 10:42:15 +0100 Subject: [PATCH 494/598] New translations app.json (Arabic) --- Localization/StringsConvertor/input/ar.lproj/app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Localization/StringsConvertor/input/ar.lproj/app.json b/Localization/StringsConvertor/input/ar.lproj/app.json index 2ed2be724..bf4bf454e 100644 --- a/Localization/StringsConvertor/input/ar.lproj/app.json +++ b/Localization/StringsConvertor/input/ar.lproj/app.json @@ -74,7 +74,7 @@ "take_photo": "اِلتِقاطُ صُورَة", "save_photo": "حفظ الصورة", "copy_photo": "نسخ الصورة", - "sign_in": "Log in", + "sign_in": "تسجيلُ الدخول", "sign_up": "Create account", "see_more": "عرض المزيد", "preview": "مُعاينة", From e3ab9509ec31e070658ad6f6b7743bf3117806b9 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 10:42:16 +0100 Subject: [PATCH 495/598] New translations app.json (Italian) --- .../StringsConvertor/input/it.lproj/app.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Localization/StringsConvertor/input/it.lproj/app.json b/Localization/StringsConvertor/input/it.lproj/app.json index 81131e857..f4f21762b 100644 --- a/Localization/StringsConvertor/input/it.lproj/app.json +++ b/Localization/StringsConvertor/input/it.lproj/app.json @@ -74,8 +74,8 @@ "take_photo": "Scatta foto", "save_photo": "Salva foto", "copy_photo": "Copia foto", - "sign_in": "Log in", - "sign_up": "Create account", + "sign_in": "Accedi", + "sign_up": "Crea un account", "see_more": "Visualizza altro", "preview": "Anteprima", "share": "Condividi", @@ -219,15 +219,15 @@ "log_in": "Accedi" }, "login": { - "title": "Welcome back", - "subtitle": "Log you in on the server you created your account on.", + "title": "Bentornato/a", + "subtitle": "Accedi al server sul quale hai creato il tuo account.", "server_search_field": { - "placeholder": "Enter URL or search for your server" + "placeholder": "Inserisci l'URL o cerca il tuo server" } }, "server_picker": { "title": "Mastodon è fatto di utenti in diverse comunità.", - "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", + "subtitle": "Scegli un server in base alla tua regione, ai tuoi interessi o uno generico. Puoi comunque chattare con chiunque su Mastodon, indipendentemente dai tuoi server.", "button": { "category": { "all": "Tutti", @@ -254,7 +254,7 @@ "category": "CATEGORIA" }, "input": { - "search_servers_or_enter_url": "Search communities or enter URL" + "search_servers_or_enter_url": "Cerca le comunità o inserisci l'URL" }, "empty_state": { "finding_servers": "Ricerca server disponibili...", From 663b7fd70899b17ff7fabd2152f8a89f74657246 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 10:42:17 +0100 Subject: [PATCH 496/598] New translations app.json (Spanish, Argentina) --- .../StringsConvertor/input/es-AR.lproj/app.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Localization/StringsConvertor/input/es-AR.lproj/app.json b/Localization/StringsConvertor/input/es-AR.lproj/app.json index 86762f6d4..5be543f98 100644 --- a/Localization/StringsConvertor/input/es-AR.lproj/app.json +++ b/Localization/StringsConvertor/input/es-AR.lproj/app.json @@ -74,8 +74,8 @@ "take_photo": "Tomar foto", "save_photo": "Guardar foto", "copy_photo": "Copiar foto", - "sign_in": "Log in", - "sign_up": "Create account", + "sign_in": "Iniciar sesión", + "sign_up": "Crear cuenta", "see_more": "Ver más", "preview": "Previsualización", "share": "Compartir", @@ -219,15 +219,15 @@ "log_in": "Iniciar sesión" }, "login": { - "title": "Welcome back", - "subtitle": "Log you in on the server you created your account on.", + "title": "Hola de nuevo", + "subtitle": "Iniciá sesión en el servidor en donde creaste tu cuenta.", "server_search_field": { - "placeholder": "Enter URL or search for your server" + "placeholder": "Ingresá la dirección web o buscá tu servidor" } }, "server_picker": { "title": "Mastodon está compuesto de cuentas en diferentes servidores.", - "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", + "subtitle": "Elegí un servidor basado en tu región, en tus intereses o uno de propósitos generales. Vas a poder interactuar con cualquier cuenta de Mastodon, independientemente del servidor.", "button": { "category": { "all": "Todas", @@ -254,7 +254,7 @@ "category": "CATEGORÍA" }, "input": { - "search_servers_or_enter_url": "Search communities or enter URL" + "search_servers_or_enter_url": "Buscá comunidades o ingresá la dirección web" }, "empty_state": { "finding_servers": "Buscando servidores disponibles…", From 7ca0792b5b7096036f3f0f5a7e4c3c1e4fc88ca1 Mon Sep 17 00:00:00 2001 From: CMK Date: Wed, 16 Nov 2022 18:21:15 +0800 Subject: [PATCH 497/598] feat: update purple logo --- .../input/Base.lproj/app.json | 2 +- .../Contents.json | 12 - .../mastodon.logo.black.pdf | 339 ----- .../Contents.json | 12 - .../mastodon.logo.black.large.pdf | 339 ----- .../mastodon.logo.imageset/Contents.json | 2 +- .../mastodon.logo.imageset/logo.small.pdf | 648 +++++++++ .../mastodon.logo.imageset/logotypeFull1.pdf | 513 ------- .../Contents.json | 2 +- .../logo.large.pdf | 1286 +++++++++++++++++ .../logotypeFull1.large.pdf | Bin 250426 -> 0 bytes .../MastodonAsset/Generated/Assets.swift | 2 - .../Generated/Strings.swift | 32 +- .../Resources/Base.lproj/Localizable.strings | 13 +- 14 files changed, 1958 insertions(+), 1244 deletions(-) delete mode 100644 MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Welcome/mastodon.logo.black.imageset/Contents.json delete mode 100644 MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Welcome/mastodon.logo.black.imageset/mastodon.logo.black.pdf delete mode 100644 MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Welcome/mastodon.logo.black.large.imageset/Contents.json delete mode 100644 MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Welcome/mastodon.logo.black.large.imageset/mastodon.logo.black.large.pdf create mode 100644 MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Welcome/mastodon.logo.imageset/logo.small.pdf delete mode 100644 MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Welcome/mastodon.logo.imageset/logotypeFull1.pdf create mode 100644 MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Welcome/mastodon.logo.large.imageset/logo.large.pdf delete mode 100644 MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Welcome/mastodon.logo.large.imageset/logotypeFull1.large.pdf diff --git a/Localization/StringsConvertor/input/Base.lproj/app.json b/Localization/StringsConvertor/input/Base.lproj/app.json index 3a1228131..96b2150ce 100644 --- a/Localization/StringsConvertor/input/Base.lproj/app.json +++ b/Localization/StringsConvertor/input/Base.lproj/app.json @@ -224,7 +224,7 @@ "server_search_field": { "placeholder": "Enter URL or search for your server" } - } + }, "server_picker": { "title": "Mastodon is made of users in different servers.", "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", diff --git a/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Welcome/mastodon.logo.black.imageset/Contents.json b/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Welcome/mastodon.logo.black.imageset/Contents.json deleted file mode 100644 index 3018f4b9a..000000000 --- a/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Welcome/mastodon.logo.black.imageset/Contents.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "images" : [ - { - "filename" : "mastodon.logo.black.pdf", - "idiom" : "universal" - } - ], - "info" : { - "author" : "xcode", - "version" : 1 - } -} diff --git a/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Welcome/mastodon.logo.black.imageset/mastodon.logo.black.pdf b/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Welcome/mastodon.logo.black.imageset/mastodon.logo.black.pdf deleted file mode 100644 index 773ed5e77..000000000 --- a/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Welcome/mastodon.logo.black.imageset/mastodon.logo.black.pdf +++ /dev/null @@ -1,339 +0,0 @@ -%PDF-1.7 - -1 0 obj - << /BBox [ 0.000000 0.000000 480.000000 119.097778 ] - /Resources << >> - /Subtype /Form - /Length 2 0 R - /Group << /Type /Group - /S /Transparency - >> - /Type /XObject - >> -stream -/DeviceRGB CS -/DeviceRGB cs -q -1.000000 0.000000 -0.000000 1.000000 0.001709 -0.290527 cm -0.188235 0.533333 0.831373 scn -107.682541 47.532677 m -106.063889 39.212074 93.195923 30.106506 78.416977 28.341690 c -70.709908 27.421394 63.121937 26.576881 55.030510 26.946808 c -41.798027 27.553123 31.357124 30.104706 31.357124 30.104706 c -31.357124 28.818085 31.436523 27.591019 31.595320 26.443352 c -33.315022 13.385902 44.544495 12.602745 55.180283 12.238235 c -65.917122 11.870117 75.475624 14.885460 75.475624 14.885460 c -75.917725 5.177185 l -75.917725 5.177185 68.407349 1.147720 55.030510 0.406067 c -47.655472 0.000053 38.495773 0.590118 27.827501 3.414185 c -4.693666 9.538696 0.712913 34.197334 0.106597 59.224106 c --0.079267 66.653275 0.034417 73.660202 0.034417 79.517647 c -0.034417 105.105621 16.798328 112.606972 16.798328 112.606972 c -25.250660 116.488472 39.757122 118.121559 54.837425 118.244263 c -55.207348 118.244263 l -70.287651 118.121559 84.801338 116.488472 93.255470 112.606972 c -93.255470 112.606972 110.019386 105.105621 110.019386 79.517647 c -110.019386 79.517647 110.230507 60.638844 107.682541 47.532677 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 23.245789 45.780518 cm -0.121569 0.137255 0.168627 scn -0.000000 39.648720 m -0.000000 43.373230 3.018947 46.392181 6.743458 46.392181 c -10.467969 46.392181 13.486919 43.373230 13.486919 39.648720 c -13.486919 35.924210 10.467969 32.905262 6.743458 32.905262 c -3.018947 32.905262 0.000000 35.924210 0.000000 39.648720 c -h -96.718201 31.461655 m -96.718201 0.478188 l -84.443916 0.478188 l -84.443916 30.553986 l -84.443916 36.893234 81.776840 40.110676 76.440903 40.110676 c -70.541954 40.110676 67.586166 36.292332 67.586166 28.745865 c -67.586166 12.286915 l -55.384064 12.286915 l -55.384064 28.745865 l -55.384064 36.294136 52.426468 40.110676 46.529324 40.110676 c -41.193382 40.110676 38.524509 36.893234 38.524509 30.553986 c -38.524509 0.481804 l -26.252031 0.481804 l -26.252031 31.465263 l -26.252031 37.795486 27.865263 42.828270 31.104361 46.550980 c -34.442707 50.273685 38.816845 52.181053 44.246616 52.181053 c -50.526318 52.181053 55.284817 49.768425 58.430077 44.939552 c -61.486919 39.814735 l -64.543762 44.939552 l -67.689026 49.768425 72.445709 52.182858 78.727219 52.182858 c -84.156990 52.182858 88.529327 50.273685 91.869476 46.552784 c -95.108574 42.828270 96.720009 37.795490 96.720009 31.463459 c -96.718201 31.461655 l -h -139.005112 16.060150 m -141.536835 18.736240 142.758499 22.105263 142.758499 26.170826 c -142.758499 30.236389 141.536835 33.605415 139.005112 36.184063 c -136.565414 38.860153 133.468872 40.148571 129.715500 40.148571 c -125.962112 40.148571 122.867371 38.860153 120.427673 36.184063 c -117.987968 33.605415 116.768120 30.236389 116.768120 26.170826 c -116.768120 22.107067 117.987968 18.736240 120.427673 16.060150 c -122.867371 13.483311 125.962112 12.194881 129.715500 12.194881 c -133.468872 12.194881 136.565414 13.483311 139.005112 16.060150 c -139.005112 16.060150 l -h -142.758499 50.953987 m -154.859543 50.953987 l -154.859543 1.389473 l -142.754898 1.389473 l -142.754898 7.236088 l -139.097153 2.378342 134.030075 -0.000008 127.463463 -0.000008 c -121.176544 -0.000008 115.827965 2.477585 111.323906 7.533829 c -106.915489 12.590069 104.665268 18.835487 104.665268 26.169022 c -104.665268 33.405113 106.915489 39.650528 111.323906 44.706768 c -115.827965 49.763008 121.176544 52.339851 127.463463 52.339851 c -134.030075 52.339851 139.097153 49.959702 142.754898 45.103760 c -142.754898 50.950378 l -142.758499 50.953987 l -h -195.581955 27.062256 m -199.147659 24.387970 200.930527 20.620148 200.836685 15.863457 c -200.836685 10.807217 199.053848 6.840900 195.394302 4.065559 c -191.734756 1.389473 187.326309 0.001801 181.977737 0.001801 c -172.314575 0.001801 165.746170 3.966316 162.274292 11.797894 c -172.783768 18.041504 l -174.191299 13.781052 177.286011 11.599396 181.977737 11.599396 c -186.294128 11.599396 188.452347 12.988873 188.452347 15.863457 c -188.452347 17.944057 185.637283 19.827969 179.913376 21.313084 c -177.755188 21.908573 175.972336 22.504059 174.566620 23.000301 c -172.596085 23.792480 170.907074 24.685715 169.499557 25.775639 c -166.027664 28.451729 164.246628 32.019249 164.246628 36.579250 c -164.246628 41.436996 165.933823 45.302254 169.311874 48.079399 c -172.783752 50.953987 177.004501 52.341656 182.071579 52.341656 c -190.141342 52.341656 196.051117 48.871578 199.898331 41.833984 c -189.578354 35.886318 l -188.076996 39.255341 185.543457 40.940754 182.071579 40.940754 c -178.412018 40.940754 176.630966 39.553085 176.630966 36.876991 c -176.630966 34.796391 179.444214 32.912483 185.168121 31.425564 c -189.578339 30.433083 193.048416 28.947971 195.581955 27.064060 c -195.581955 27.062256 l -h -234.052322 38.661655 m -223.449036 38.661655 l -223.449036 18.043308 l -223.449036 15.563908 224.389175 14.078796 226.170227 13.384060 c -227.483917 12.887817 230.111267 12.788570 234.052322 12.987068 c -234.052322 1.389473 l -225.890518 0.396988 219.978958 1.190971 216.507080 3.868866 c -213.037003 6.445709 211.346176 11.202404 211.346176 18.043308 c -211.346176 38.661655 l -203.184372 38.661655 l -203.184372 50.953987 l -211.346176 50.953987 l -211.346176 60.965416 l -223.449036 64.830681 l -223.449036 50.953987 l -234.052322 50.953987 l -234.052322 38.661655 l -234.052322 38.661655 l -h -272.614716 16.357895 m -275.054413 18.936543 276.274261 22.208122 276.274261 26.172634 c -276.274261 30.137146 275.054413 33.408722 272.614716 35.985565 c -270.176819 38.562408 267.174133 39.850830 263.514587 39.850830 c -259.855011 39.850830 256.854126 38.562408 254.414429 35.985565 c -252.068558 33.309475 250.848709 30.037895 250.848709 26.172634 c -250.848709 22.305565 252.068558 19.033985 254.414429 16.357895 c -256.854126 13.781052 259.855011 12.492626 263.514587 12.492626 c -267.174133 12.492626 270.176819 13.781052 272.614716 16.357895 c -h -245.875488 7.535637 m -241.091721 12.590076 238.745850 18.736240 238.745850 26.172634 c -238.745850 33.507973 241.091721 39.652328 245.875488 44.708572 c -250.661057 49.763008 256.570801 52.341656 263.514587 52.341656 c -270.458344 52.341656 276.368134 49.763008 281.153687 44.708572 c -285.939240 39.652328 288.377136 33.408722 288.377136 26.172634 c -288.377136 18.835491 285.939240 12.590076 281.153687 7.535637 c -276.368134 2.479401 270.552155 0.001801 263.514587 0.001801 c -256.476990 0.001801 250.661057 2.479401 245.875488 7.535637 c -h -328.818054 16.060150 m -331.257751 18.736240 332.475769 22.105263 332.475769 26.170826 c -332.475769 30.236389 331.257751 33.605415 328.818054 36.184063 c -326.378357 38.860153 323.281799 40.148571 319.528412 40.148571 c -315.775024 40.148571 312.680298 38.860153 310.146759 36.184063 c -307.708893 33.605415 306.487213 30.236389 306.487213 26.170826 c -306.487213 22.107067 307.708893 18.736240 310.146759 16.060150 c -312.680298 13.483311 315.870667 12.194881 319.528412 12.194881 c -323.281799 12.194881 326.378357 13.483311 328.818054 16.060150 c -328.818054 16.060150 l -h -332.475769 70.780151 m -344.580475 70.780151 l -344.580475 1.389473 l -332.475769 1.389473 l -332.475769 7.236088 l -328.911865 2.378342 323.844818 -0.000008 317.278198 -0.000008 c -310.991272 -0.000008 305.550690 2.477585 301.046631 7.533829 c -296.636414 12.590069 294.384369 18.835487 294.384369 26.169022 c -294.384369 33.405113 296.636414 39.650528 301.046631 44.706768 c -305.550690 49.763008 310.991272 52.339851 317.278198 52.339851 c -323.844818 52.339851 328.911865 49.959702 332.475769 45.103760 c -332.475769 70.780151 l -332.475769 70.780151 l -h -387.083923 16.357895 m -389.523621 18.936543 390.743469 22.208122 390.743469 26.172634 c -390.743469 30.137146 389.523621 33.408722 387.083923 35.985565 c -384.644226 38.562408 381.643311 39.850830 377.983765 39.850830 c -374.324219 39.850830 371.321503 38.562408 368.881805 35.985565 c -366.535950 33.309475 365.316101 30.037895 365.316101 26.172634 c -365.316101 22.305565 366.535950 19.033985 368.881805 16.357895 c -371.321503 13.781052 374.324219 12.492626 377.983765 12.492626 c -381.643311 12.492626 384.644226 13.781052 387.083923 16.357895 c -387.083923 16.357895 l -h -360.344666 7.535637 m -355.559082 12.590076 353.215027 18.736240 353.215027 26.172634 c -353.215027 33.507973 355.559082 39.652328 360.344666 44.708572 c -365.130219 49.763008 371.040009 52.341656 377.983765 52.341656 c -384.925720 52.341656 390.837280 49.763008 395.622864 44.708572 c -400.408417 39.652328 402.846313 33.408722 402.846313 26.172634 c -402.846313 18.835491 400.408417 12.590076 395.622864 7.535637 c -390.837280 2.479401 385.019562 0.001801 377.983765 0.001801 c -370.946167 0.001801 365.130219 2.479401 360.344666 7.535637 c -360.344666 7.535637 l -h -455.202423 31.822556 m -455.202423 1.389473 l -443.097748 1.389473 l -443.097748 30.236389 l -443.097748 33.507969 442.255035 35.985565 440.566010 37.869476 c -438.970825 39.553085 436.718811 40.446320 433.809937 40.446320 c -426.960022 40.446320 423.489929 36.382557 423.489929 28.153984 c -423.489929 1.389473 l -411.387054 1.389473 l -411.387054 50.953987 l -423.489929 50.953987 l -423.489929 45.403309 l -426.398773 50.060753 430.994904 52.341656 437.469482 52.341656 c -442.630371 52.341656 446.851135 50.556992 450.135345 46.888420 c -453.513397 43.221657 455.202423 38.264664 455.202423 31.820751 c -455.202423 31.822556 l -h -f -n -Q - -endstream -endobj - -2 0 obj - 9224 -endobj - -3 0 obj - << /BBox [ 0.000000 0.000000 480.000000 119.097778 ] - /Resources << >> - /Subtype /Form - /Length 4 0 R - /Group << /Type /Group - /S /Transparency - >> - /Type /XObject - >> -stream -/DeviceRGB CS -/DeviceRGB cs -q -1.000000 0.000000 -0.000000 1.000000 0.000000 0.000000 cm -0.000000 0.000000 0.000000 scn -0.000000 119.097778 m -480.000000 119.097778 l -480.000000 0.000031 l -0.000000 0.000031 l -0.000000 119.097778 l -h -f -n -Q - -endstream -endobj - -4 0 obj - 237 -endobj - -5 0 obj - << /XObject << /X1 1 0 R >> - /ExtGState << /E1 << /SMask << /Type /Mask - /G 3 0 R - /S /Alpha - >> - /Type /ExtGState - >> >> - >> -endobj - -6 0 obj - << /Length 7 0 R >> -stream -/DeviceRGB CS -/DeviceRGB cs -q -/E1 gs -/X1 Do -Q - -endstream -endobj - -7 0 obj - 46 -endobj - -8 0 obj - << /Annots [] - /Type /Page - /MediaBox [ 0.000000 0.000000 480.000000 119.097778 ] - /Resources 5 0 R - /Contents 6 0 R - /Parent 9 0 R - >> -endobj - -9 0 obj - << /Kids [ 8 0 R ] - /Count 1 - /Type /Pages - >> -endobj - -10 0 obj - << /Type /Catalog - /Pages 9 0 R - >> -endobj - -xref -0 11 -0000000000 65535 f -0000000010 00000 n -0000009484 00000 n -0000009507 00000 n -0000009994 00000 n -0000010016 00000 n -0000010314 00000 n -0000010416 00000 n -0000010437 00000 n -0000010612 00000 n -0000010686 00000 n -trailer -<< /ID [ (some) (id) ] - /Root 10 0 R - /Size 11 ->> -startxref -10746 -%%EOF \ No newline at end of file diff --git a/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Welcome/mastodon.logo.black.large.imageset/Contents.json b/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Welcome/mastodon.logo.black.large.imageset/Contents.json deleted file mode 100644 index fefc19832..000000000 --- a/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Welcome/mastodon.logo.black.large.imageset/Contents.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "images" : [ - { - "filename" : "mastodon.logo.black.large.pdf", - "idiom" : "universal" - } - ], - "info" : { - "author" : "xcode", - "version" : 1 - } -} diff --git a/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Welcome/mastodon.logo.black.large.imageset/mastodon.logo.black.large.pdf b/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Welcome/mastodon.logo.black.large.imageset/mastodon.logo.black.large.pdf deleted file mode 100644 index b6244d04e..000000000 --- a/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Welcome/mastodon.logo.black.large.imageset/mastodon.logo.black.large.pdf +++ /dev/null @@ -1,339 +0,0 @@ -%PDF-1.7 - -1 0 obj - << /BBox [ 0.000000 0.000000 960.000000 238.195496 ] - /Resources << >> - /Subtype /Form - /Length 2 0 R - /Group << /Type /Group - /S /Transparency - >> - /Type /XObject - >> -stream -/DeviceRGB CS -/DeviceRGB cs -q -1.000000 0.000000 -0.000000 1.000000 0.003357 -0.580933 cm -0.188235 0.533333 0.831373 scn -215.365082 95.065247 m -212.127777 78.424042 186.391846 60.212906 156.833954 56.683273 c -141.419815 54.842682 126.243874 53.153656 110.061020 53.893509 c -83.596054 55.106140 62.714249 60.209290 62.714249 60.209290 c -62.714249 57.636063 62.873047 55.181931 63.190639 52.886597 c -66.630043 26.771698 89.088989 25.205383 110.360565 24.476364 c -131.834244 23.740112 150.951248 29.770813 150.951248 29.770813 c -151.835449 10.354263 l -151.835449 10.354263 136.814697 2.295334 110.061020 0.812027 c -95.310944 0.000000 76.991547 1.180130 55.655003 6.828262 c -9.387332 19.077271 1.425826 68.394562 0.213194 118.448097 c --0.158535 133.306442 0.068834 147.320282 0.068834 159.035172 c -0.068834 210.211121 33.596657 225.213821 33.596657 225.213821 c -50.501320 232.976822 79.514244 236.242996 109.674850 236.488403 c -110.414696 236.488403 l -140.575302 236.242996 169.602676 232.976822 186.510941 225.213821 c -186.510941 225.213821 220.038773 210.211121 220.038773 159.035172 c -220.038773 159.035172 220.461014 121.277573 215.365082 95.065247 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 46.491440 91.561096 cm -0.121569 0.137255 0.168627 scn -0.000000 79.297432 m -0.000000 86.746460 6.037893 92.784363 13.486916 92.784363 c -20.935938 92.784363 26.973839 86.746460 26.973839 79.297432 c -26.973839 71.848412 20.935938 65.810516 13.486916 65.810516 c -6.037893 65.810516 0.000000 71.848412 0.000000 79.297432 c -h -193.436401 62.923302 m -193.436401 0.956360 l -168.887833 0.956360 l -168.887833 61.107964 l -168.887833 73.786461 163.553680 80.221344 152.881805 80.221344 c -141.083908 80.221344 135.172333 72.584648 135.172333 57.491714 c -135.172333 24.573814 l -110.768127 24.573814 l -110.768127 57.491714 l -110.768127 72.588257 104.852936 80.221344 93.058647 80.221344 c -82.386765 80.221344 77.049019 73.786461 77.049019 61.107964 c -77.049019 0.963593 l -52.504063 0.963593 l -52.504063 62.930511 l -52.504063 75.590965 55.730526 85.656540 62.208721 93.101944 c -68.885414 100.547363 77.633690 104.362106 88.493233 104.362106 c -101.052635 104.362106 110.569633 99.536835 116.860153 89.879089 c -122.973839 79.629471 l -129.087524 89.879089 l -135.378052 99.536835 144.891418 104.365707 157.454437 104.365707 c -168.313980 104.365707 177.058655 100.547363 183.738953 93.105560 c -190.217148 85.656540 193.440018 75.590973 193.440018 62.926910 c -193.436401 62.923302 l -h -278.010223 32.120285 m -283.073669 37.472473 285.516998 44.210510 285.516998 52.341637 c -285.516998 60.472771 283.073669 67.210823 278.010223 72.368118 c -273.130829 77.720299 266.937744 80.297134 259.431000 80.297134 c -251.924225 80.297134 245.734741 77.720299 240.855347 72.368118 c -235.975937 67.210823 233.536240 60.472771 233.536240 52.341637 c -233.536240 44.214119 235.975937 37.472473 240.855347 32.120285 c -245.734741 26.966606 251.924225 24.389748 259.431000 24.389748 c -266.937744 24.389748 273.130829 26.966606 278.010223 32.120285 c -278.010223 32.120285 l -h -285.516998 101.907967 m -309.719086 101.907967 l -309.719086 2.778915 l -285.509796 2.778915 l -285.509796 14.472160 l -278.194305 4.756668 268.060150 -0.000031 254.926926 -0.000031 c -242.353088 -0.000031 231.655930 4.955154 222.647812 15.067642 c -213.830978 25.180122 209.330536 37.670959 209.330536 52.338036 c -209.330536 66.810219 213.830978 79.301048 222.647812 89.413528 c -231.655930 99.526016 242.353088 104.679695 254.926926 104.679695 c -268.060150 104.679695 278.194305 99.919395 285.509796 90.207512 c -285.509796 101.900742 l -285.516998 101.907967 l -h -391.163910 54.124504 m -398.295319 48.775932 401.861053 41.240288 401.673370 31.726898 c -401.673370 21.614418 398.107697 13.681786 390.788605 8.131104 c -383.469513 2.778931 374.652618 0.003571 363.955475 0.003571 c -344.629150 0.003571 331.492340 7.932617 324.548584 23.595772 c -345.567535 36.082993 l -348.382599 27.562088 354.572021 23.198776 363.955475 23.198776 c -372.588257 23.198776 376.904694 25.977730 376.904694 31.726898 c -376.904694 35.888107 371.274567 39.655930 359.826752 42.626152 c -355.510376 43.817131 351.944672 45.008102 349.133240 46.000587 c -345.192169 47.584946 341.814148 49.371414 338.999115 51.551262 c -332.055328 56.903450 328.493256 64.038490 328.493256 73.158493 c -328.493256 82.873978 331.867645 90.604507 338.623749 96.158791 c -345.567505 101.907967 354.009003 104.683304 364.143158 104.683304 c -380.282684 104.683304 392.102234 97.743149 399.796661 83.667961 c -379.156708 71.772621 l -376.153992 78.510666 371.086914 81.881500 364.143158 81.881500 c -356.824036 81.881500 353.261932 79.106155 353.261932 73.753975 c -353.261932 69.592773 358.888428 65.824951 370.336243 62.851120 c -379.156677 60.866158 386.096832 57.895927 391.163910 54.128113 c -391.163910 54.124504 l -h -468.104645 77.323303 m -446.898071 77.323303 l -446.898071 36.086601 l -446.898071 31.127808 448.778351 28.157578 452.340454 26.768105 c -454.967834 25.775620 460.222534 25.577126 468.104645 25.974121 c -468.104645 2.778915 l -451.781036 0.793961 439.957916 2.381927 433.014160 7.737717 c -426.074005 12.891403 422.692352 22.404793 422.692352 36.086601 c -422.692352 77.323303 l -406.368744 77.323303 l -406.368744 101.907967 l -422.692352 101.907967 l -422.692352 121.930832 l -446.898071 129.661346 l -446.898071 101.907967 l -468.104645 101.907967 l -468.104645 77.323303 l -468.104645 77.323303 l -h -545.229431 32.715775 m -550.108826 37.873070 552.548523 44.416229 552.548523 52.345253 c -552.548523 60.274277 550.108826 66.817436 545.229431 71.971123 c -540.353638 77.124809 534.348267 79.701645 527.029175 79.701645 c -519.710022 79.701645 513.708252 77.124809 508.828857 71.971123 c -504.137115 66.618942 501.697418 60.075783 501.697418 52.345253 c -501.697418 44.611115 504.137115 38.067955 508.828857 32.715775 c -513.708252 27.562088 519.710022 24.985237 527.029175 24.985237 c -534.348267 24.985237 540.353638 27.562088 545.229431 32.715775 c -h -491.750977 15.071259 m -482.183441 25.180138 477.491699 37.472473 477.491699 52.345253 c -477.491699 67.015930 482.183441 79.304657 491.750977 89.417137 c -501.322113 99.526016 513.141602 104.683304 527.029175 104.683304 c -540.916687 104.683304 552.736267 99.526016 562.307373 89.417137 c -571.878479 79.304657 576.754272 66.817436 576.754272 52.345253 c -576.754272 37.670967 571.878479 25.180138 562.307373 15.071259 c -552.736267 4.958771 541.104309 0.003571 527.029175 0.003571 c -512.953979 0.003571 501.322113 4.958771 491.750977 15.071259 c -h -657.636108 32.120285 m -662.515503 37.472473 664.951538 44.210510 664.951538 52.341637 c -664.951538 60.472771 662.515503 67.210823 657.636108 72.368118 c -652.756714 77.720299 646.563599 80.297134 639.056824 80.297134 c -631.550049 80.297134 625.360596 77.720299 620.293518 72.368118 c -615.417786 67.210823 612.974426 60.472771 612.974426 52.341637 c -612.974426 44.214119 615.417786 37.472473 620.293518 32.120285 c -625.360596 26.966606 631.741333 24.389748 639.056824 24.389748 c -646.563599 24.389748 652.756714 26.966606 657.636108 32.120285 c -657.636108 32.120285 l -h -664.951538 141.560303 m -689.160950 141.560303 l -689.160950 2.778915 l -664.951538 2.778915 l -664.951538 14.472160 l -657.823730 4.756668 647.689636 -0.000031 634.556396 -0.000031 c -621.982544 -0.000031 611.101379 4.955154 602.093262 15.067642 c -593.272827 25.180122 588.768738 37.670959 588.768738 52.338036 c -588.768738 66.810219 593.272827 79.301048 602.093262 89.413528 c -611.101379 99.526016 621.982544 104.679695 634.556396 104.679695 c -647.689636 104.679695 657.823730 99.919395 664.951538 90.207512 c -664.951538 141.560303 l -664.951538 141.560303 l -h -774.167847 32.715775 m -779.047241 37.873070 781.486938 44.416229 781.486938 52.345253 c -781.486938 60.274277 779.047241 66.817436 774.167847 71.971123 c -769.288452 77.124809 763.286621 79.701645 755.967529 79.701645 c -748.648438 79.701645 742.643005 77.124809 737.763611 71.971123 c -733.071899 66.618942 730.632202 60.075783 730.632202 52.345253 c -730.632202 44.611115 733.071899 38.067955 737.763611 32.715775 c -742.643005 27.562088 748.648438 24.985237 755.967529 24.985237 c -763.286621 24.985237 769.288452 27.562088 774.167847 32.715775 c -774.167847 32.715775 l -h -720.689331 15.071259 m -711.118164 25.180138 706.430054 37.472473 706.430054 52.345253 c -706.430054 67.015930 711.118164 79.304657 720.689331 89.417137 c -730.260437 99.526016 742.080017 104.683304 755.967529 104.683304 c -769.851440 104.683304 781.674561 99.526016 791.245728 89.417137 c -800.816833 79.304657 805.692627 66.817436 805.692627 52.345253 c -805.692627 37.670967 800.816833 25.180138 791.245728 15.071259 c -781.674561 4.958771 770.039124 0.003571 755.967529 0.003571 c -741.892334 0.003571 730.260437 4.958771 720.689331 15.071259 c -720.689331 15.071259 l -h -910.404846 63.645103 m -910.404846 2.778915 l -886.195496 2.778915 l -886.195496 60.472771 l -886.195496 67.015930 884.510071 71.971123 881.132019 75.738945 c -877.941650 79.106163 873.437622 80.892624 867.619873 80.892624 c -853.920044 80.892624 846.979858 72.765106 846.979858 56.307961 c -846.979858 2.778915 l -822.774109 2.778915 l -822.774109 101.907967 l -846.979858 101.907967 l -846.979858 90.806610 l -852.797546 100.121506 861.989807 104.683304 874.938965 104.683304 c -885.260742 104.683304 893.702271 101.113983 900.270691 93.776840 c -907.026794 86.443298 910.404846 76.529312 910.404846 63.641495 c -910.404846 63.645103 l -h -f -n -Q - -endstream -endobj - -2 0 obj - 9343 -endobj - -3 0 obj - << /BBox [ 0.000000 0.000000 960.000000 238.195496 ] - /Resources << >> - /Subtype /Form - /Length 4 0 R - /Group << /Type /Group - /S /Transparency - >> - /Type /XObject - >> -stream -/DeviceRGB CS -/DeviceRGB cs -q -1.000000 0.000000 -0.000000 1.000000 0.000000 0.000000 cm -0.000000 0.000000 0.000000 scn -0.000000 238.195496 m -960.000000 238.195496 l -960.000000 0.000000 l -0.000000 0.000000 l -0.000000 238.195496 l -h -f -n -Q - -endstream -endobj - -4 0 obj - 237 -endobj - -5 0 obj - << /XObject << /X1 1 0 R >> - /ExtGState << /E1 << /SMask << /Type /Mask - /G 3 0 R - /S /Alpha - >> - /Type /ExtGState - >> >> - >> -endobj - -6 0 obj - << /Length 7 0 R >> -stream -/DeviceRGB CS -/DeviceRGB cs -q -/E1 gs -/X1 Do -Q - -endstream -endobj - -7 0 obj - 46 -endobj - -8 0 obj - << /Annots [] - /Type /Page - /MediaBox [ 0.000000 0.000000 960.000000 238.195496 ] - /Resources 5 0 R - /Contents 6 0 R - /Parent 9 0 R - >> -endobj - -9 0 obj - << /Kids [ 8 0 R ] - /Count 1 - /Type /Pages - >> -endobj - -10 0 obj - << /Type /Catalog - /Pages 9 0 R - >> -endobj - -xref -0 11 -0000000000 65535 f -0000000010 00000 n -0000009603 00000 n -0000009626 00000 n -0000010113 00000 n -0000010135 00000 n -0000010433 00000 n -0000010535 00000 n -0000010556 00000 n -0000010731 00000 n -0000010805 00000 n -trailer -<< /ID [ (some) (id) ] - /Root 10 0 R - /Size 11 ->> -startxref -10865 -%%EOF \ No newline at end of file diff --git a/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Welcome/mastodon.logo.imageset/Contents.json b/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Welcome/mastodon.logo.imageset/Contents.json index 6a0bfc87a..76d42c15e 100644 --- a/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Welcome/mastodon.logo.imageset/Contents.json +++ b/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Welcome/mastodon.logo.imageset/Contents.json @@ -1,7 +1,7 @@ { "images" : [ { - "filename" : "logotypeFull1.pdf", + "filename" : "logo.small.pdf", "idiom" : "universal" } ], diff --git a/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Welcome/mastodon.logo.imageset/logo.small.pdf b/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Welcome/mastodon.logo.imageset/logo.small.pdf new file mode 100644 index 000000000..581801f38 --- /dev/null +++ b/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Welcome/mastodon.logo.imageset/logo.small.pdf @@ -0,0 +1,648 @@ +%PDF-1.7 + +1 0 obj + << /Type /XObject + /Length 2 0 R + /Group << /Type /Group + /S /Transparency + >> + /Subtype /Form + /Resources << >> + /BBox [ 0.000000 0.000000 269.000000 75.000000 ] + >> +stream +/DeviceRGB CS +/DeviceRGB cs +q +1.000000 0.000000 -0.000000 1.000000 4.000000 4.000000 cm +0.000000 0.000000 0.000000 scn +0.000000 67.000000 m +261.000000 67.000000 l +261.000000 0.000000 l +0.000000 0.000000 l +0.000000 67.000000 l +h +f +n +Q + +endstream +endobj + +2 0 obj + 234 +endobj + +3 0 obj + << /Length 4 0 R + /Range [ 0.000000 1.000000 0.000000 1.000000 0.000000 1.000000 ] + /Domain [ 0.000000 1.000000 ] + /FunctionType 4 + >> +stream +{ 0.388235 exch 0.392157 exch 1.000000 exch dup 0.000000 gt { exch pop exch pop exch pop dup 0.000000 sub -0.050980 mul 0.388235 add exch dup 0.000000 sub -0.164706 mul 0.392157 add exch dup 0.000000 sub -0.200000 mul 1.000000 add exch } if dup 1.000000 gt { exch pop exch pop exch pop 0.337255 exch 0.227451 exch 0.800000 exch } if pop } +endstream +endobj + +4 0 obj + 339 +endobj + +5 0 obj + << /Type /XObject + /Length 6 0 R + /Group << /Type /Group + /S /Transparency + >> + /Subtype /Form + /Resources << /Pattern << /P1 << /Matrix [ 0.000000 -65.993195 65.993195 0.000000 -61.993195 70.224548 ] + /Shading << /Coords [ 0.000000 0.000000 1.000000 0.000000 ] + /ColorSpace /DeviceRGB + /Function 3 0 R + /Domain [ 0.000000 1.000000 ] + /ShadingType 2 + /Extend [ true true ] + >> + /PatternType 2 + /Type /Pattern + >> >> >> + /BBox [ 0.000000 0.000000 269.000000 75.000000 ] + >> +stream +/DeviceRGB CS +/DeviceRGB cs +q +1.000000 0.000000 -0.000000 1.000000 4.000000 3.632446 cm +/Pattern cs +/P1 scn +60.826767 51.982300 m +59.885666 59.068882 53.787518 64.663071 46.568073 65.739265 c +45.346546 65.922020 40.730431 66.592102 30.036348 66.592102 c +29.956215 66.592102 l +19.252211 66.592102 16.959164 65.922020 15.737550 65.739265 c +8.708311 64.683380 2.299911 59.667900 0.737860 52.489872 c +-0.003115 48.956699 -0.083220 45.037697 0.056964 41.443653 c +0.257227 36.286026 0.297280 31.148746 0.757885 26.011383 c +1.078305 22.600037 1.629032 19.219128 2.420071 15.889084 c +3.902017 9.736488 9.889900 4.619389 15.757648 2.538147 c +22.035824 0.365425 28.794806 0.000015 35.263187 1.492470 c +35.974140 1.665001 36.675091 1.857872 37.376038 2.081261 c +38.948124 2.588921 40.790466 3.157455 42.152252 4.152424 c +42.172348 4.162594 42.182354 4.182858 42.192364 4.203201 c +42.202370 4.223465 42.212376 4.243816 42.212376 4.274334 c +42.212376 9.249176 l +42.212376 9.249176 42.212376 9.289791 42.192364 9.310051 c +42.192364 9.330315 42.172348 9.350658 42.152252 9.360832 c +42.132240 9.370922 42.112228 9.381180 42.092300 9.391270 c +42.072121 9.391270 42.052189 9.391270 42.032177 9.391270 c +37.886612 8.386127 33.631145 7.878468 29.375511 7.888641 c +22.035824 7.888641 20.063231 11.421898 19.502539 12.883831 c +19.051918 14.152893 18.761566 15.482990 18.641405 16.823097 c +18.641405 16.843441 18.641405 16.863705 18.651411 16.884052 c +18.651411 16.904316 18.671425 16.924664 18.691521 16.934837 c +18.711451 16.944927 18.731462 16.955097 18.751476 16.965271 c +18.821604 16.965271 l +22.896957 15.970303 27.082464 15.462643 31.277977 15.462643 c +32.289371 15.462643 33.290596 15.462646 34.301991 15.493084 c +38.517517 15.614994 42.963440 15.828209 47.118843 16.650486 c +47.218906 16.670830 47.329144 16.691097 47.419201 16.711441 c +53.967884 17.990677 60.196030 21.990898 60.826767 32.123367 c +60.846947 32.519287 60.906982 36.306290 60.906982 36.712379 c +60.906982 38.123699 61.357521 46.692589 60.836857 51.961868 c +60.826767 51.982300 l +h +f +n +Q +q +1.000000 0.000000 -0.000000 1.000000 16.353134 47.918640 cm +1.000000 1.000000 1.000000 scn +0.000000 3.736245 m +0.000000 5.807401 1.632209 7.472382 3.654834 7.472382 c +5.677542 7.472382 7.309585 5.797228 7.309585 3.736245 c +7.309585 1.675262 5.677542 0.000028 3.654834 0.000028 c +1.632209 0.000028 0.000000 1.675262 0.000000 3.736245 c +h +f +n +Q +q +1.000000 0.000000 -0.000000 1.000000 32.524460 30.973694 cm +1.000000 1.000000 1.000000 scn +38.200230 17.462723 m +38.200230 0.284256 l +31.541471 0.284256 l +31.541471 16.955149 l +31.541471 20.467976 30.099640 22.244776 27.205791 22.244776 c +24.011585 22.244776 22.399469 20.122755 22.399469 15.950090 c +22.399469 6.822678 l +15.790834 6.822678 l +15.790834 15.950090 l +15.790834 20.143185 14.198734 22.244776 10.984432 22.244776 c +8.100758 22.244776 6.648746 20.467976 6.648746 16.955149 c +6.648746 0.294346 l +0.000000 0.294346 l +0.000000 17.462723 l +0.000000 20.965542 0.871139 23.757576 2.623425 25.828648 c +4.435832 27.899887 6.808930 28.945639 9.742804 28.945639 c +13.147311 28.945639 15.730712 27.605450 17.432966 24.925154 c +19.095194 22.082256 l +20.757338 24.925154 l +22.459507 27.595276 25.032986 28.945639 28.447416 28.945639 c +31.381290 28.945639 33.754387 27.889629 35.566792 25.828648 c +37.319077 23.757576 38.190220 20.985806 38.190220 17.462723 c +38.200230 17.462723 l +h +61.110268 8.924355 m +62.491982 10.416807 63.143234 12.264570 63.143234 14.518509 c +63.143234 16.772449 62.481976 18.640476 61.110268 20.061882 c +59.788589 21.554337 58.106689 22.265121 56.073723 22.265121 c +54.041008 22.265121 52.368858 21.554337 51.037174 20.061882 c +49.715416 18.640476 49.054577 16.772449 49.054577 14.518509 c +49.054577 12.264570 49.715416 10.396461 51.037174 8.924355 c +52.358852 7.502947 54.041008 6.781986 56.073723 6.781986 c +58.106689 6.781986 59.778584 7.492773 61.110268 8.924355 c +h +63.143234 28.255198 m +69.701591 28.255198 l +69.701591 0.781738 l +63.143234 0.781738 l +63.143234 4.020473 l +61.160301 1.330006 58.416882 -0.000011 54.852188 -0.000011 c +51.287495 -0.000011 48.543831 1.370613 46.110611 4.172821 c +43.717499 6.974941 42.505974 10.437069 42.505974 14.498163 c +42.505974 18.559340 43.727505 21.970684 46.110611 24.772808 c +48.553837 27.574930 51.457687 28.996338 54.852188 28.996338 c +58.246773 28.996338 61.160301 27.676495 63.143234 24.996117 c +63.143234 28.234852 l +63.143234 28.255198 l +h +91.770676 15.036257 m +93.703575 13.543886 94.665031 11.462475 94.615005 8.832880 c +94.615005 6.030758 93.653549 3.827599 91.670616 2.304710 c +89.688515 0.812176 87.294495 0.050774 84.390968 0.050774 c +79.154297 0.050774 75.599525 2.253845 73.716660 6.579025 c +79.405289 10.041067 l +80.164940 7.685646 81.837677 6.467285 84.390968 6.467285 c +86.734138 6.467285 87.895714 7.228771 87.895714 8.822790 c +87.895714 9.980196 86.373070 11.025948 83.269424 11.838133 c +82.097839 12.163090 81.127220 12.498138 80.375908 12.772230 c +79.303558 13.208757 78.392975 13.706240 77.631653 14.315380 c +75.749619 15.807833 74.789009 17.777590 74.789009 20.305622 c +74.789009 22.996006 75.699593 25.138290 77.531593 26.681526 c +79.415298 28.275459 81.706749 29.037029 84.451004 29.037029 c +88.826294 29.037029 92.020851 27.118137 94.113853 23.219398 c +88.526115 19.929964 l +87.715591 21.798073 86.333038 22.732088 84.451004 22.732088 c +82.468071 22.732088 81.506630 21.970686 81.506630 20.478231 c +81.506630 19.320744 83.029274 18.274992 86.132919 17.462723 c +88.526115 16.914539 90.408142 16.092180 91.770676 15.036257 c +91.780693 15.036257 l +91.770676 15.036257 l +h +112.618164 21.452854 m +106.870323 21.452854 l +106.870323 10.020803 l +106.870323 8.650179 107.381485 7.817646 108.352104 7.441906 c +109.063393 7.167816 110.485130 7.117115 112.628166 7.218597 c +112.628166 0.791912 l +108.212013 0.243645 105.008308 0.690430 103.126274 2.162537 c +101.243401 3.583942 100.331985 6.233803 100.331985 10.010632 c +100.331985 21.452854 l +95.915833 21.452854 l +95.915833 28.265369 l +100.331985 28.265369 l +100.331985 33.808784 l +106.890335 35.951027 l +106.890335 28.255198 l +112.638176 28.255198 l +112.638176 21.442680 l +112.628166 21.442680 l +112.618164 21.452854 l +h +133.525681 9.086706 m +134.847351 10.508114 135.507782 12.325527 135.507782 14.528599 c +135.507782 16.731840 134.847351 18.528820 133.525681 19.970573 c +132.193161 21.391897 130.571289 22.112776 128.589188 22.112776 c +126.606262 22.112776 124.984390 21.402071 123.651871 19.970573 c +122.381058 18.478121 121.719803 16.680973 121.719803 14.528599 c +121.719803 12.376308 122.381058 10.579159 123.651871 9.086706 c +124.974380 7.665382 126.606262 6.944508 128.589188 6.944508 c +130.571289 6.944508 132.193161 7.655127 133.525681 9.086706 c +h +119.037262 4.203255 m +116.443100 7.005379 115.171455 10.406551 115.171455 14.528599 c +115.171455 18.650732 116.443100 22.001038 119.037262 24.803242 c +121.629745 27.605450 124.834297 29.026855 128.589188 29.026855 c +132.343262 29.026855 135.558640 27.605450 138.141953 24.803242 c +140.725266 22.001038 142.056961 18.538994 142.056961 14.528599 c +142.056961 10.518290 140.725266 7.005379 138.141953 4.203255 c +135.547806 1.401051 132.394119 0.030510 128.589188 0.030510 c +124.784264 0.030510 121.619743 1.401051 119.037262 4.203255 c +h +163.985123 8.934444 m +165.306808 10.426897 165.968063 12.274660 165.968063 14.528599 c +165.968063 16.782539 165.306808 18.650732 163.985123 20.072056 c +162.664291 21.564592 160.982376 22.275211 158.948578 22.275211 c +156.916458 22.275211 155.233719 21.564592 153.862839 20.072056 c +152.540329 18.650732 151.879898 16.782539 151.879898 14.528599 c +151.879898 12.274660 152.540329 10.406551 153.862839 8.934444 c +155.243713 7.513037 156.966492 6.792244 158.948578 6.792244 c +160.932358 6.792244 162.654282 7.502947 163.985123 8.934444 c +h +165.968063 39.260834 m +172.526413 39.260834 l +172.526413 0.791912 l +165.968063 0.791912 l +165.968063 4.030647 l +164.035995 1.340179 161.291748 0.010162 157.727798 0.010162 c +154.163025 0.010162 151.379578 1.380703 148.925522 4.182991 c +146.532318 6.985115 145.321548 10.447161 145.321548 14.508337 c +145.321548 18.569429 146.542328 21.980774 148.925522 24.782898 c +151.358734 27.585186 154.312286 29.006512 157.727798 29.006512 c +161.141647 29.006512 164.035995 27.686666 165.968063 25.006289 c +165.968063 39.250683 l +165.968063 39.260834 l +h +195.566971 9.117228 m +196.888641 10.538635 197.549896 12.355879 197.549896 14.559118 c +197.549896 16.762192 196.888641 18.559340 195.566971 20.001011 c +194.245285 21.422335 192.623413 22.143211 190.630478 22.143211 c +188.638367 22.143211 187.026520 21.432508 185.694000 20.001011 c +184.422363 18.508474 183.761093 16.711493 183.761093 14.559118 c +183.761093 12.406662 184.422363 10.609680 185.694000 9.117228 c +187.016510 7.695736 188.648376 6.974945 190.630478 6.974945 c +192.613403 6.974945 194.235291 7.685648 195.566971 9.117228 c +h +181.077713 4.233692 m +178.495224 7.035900 177.212753 10.437071 177.212753 14.559118 c +177.212753 18.681084 178.485229 22.031557 181.077713 24.833679 c +183.671036 27.635885 186.875580 29.057293 190.630478 29.057293 c +194.385376 29.057293 197.599915 27.635885 200.183228 24.833679 c +202.775726 22.031557 204.098236 18.569429 204.098236 14.559118 c +204.098236 10.548725 202.775726 7.035900 200.183228 4.233692 c +197.589905 1.431572 194.435410 0.060863 190.630478 0.060863 c +186.825546 0.060863 183.661026 1.431572 181.077713 4.233692 c +h +232.475540 17.696289 m +232.475540 0.822433 l +225.917206 0.822433 l +225.917206 16.812975 l +225.917206 18.630386 225.466064 20.001011 224.535477 21.036505 c +223.674088 21.970686 222.452469 22.457994 220.879807 22.457994 c +217.175766 22.457994 215.292923 20.204056 215.292923 15.645479 c +215.292923 0.812172 l +208.734528 0.812172 l +208.734528 28.265369 l +215.292923 28.265369 l +215.292923 25.178900 l +216.864761 27.757797 219.367996 29.026855 222.862732 29.026855 c +225.656174 29.026855 227.949310 28.041977 229.732117 26.011431 c +231.564957 23.980885 232.475540 21.229462 232.475540 17.665854 c +f +n +Q + +endstream +endobj + +6 0 obj + 9965 +endobj + +7 0 obj + << /Type /XObject + /Subtype /Image + /BitsPerComponent 8 + /Length 8 0 R + /Height 148 + /Width 538 + /ColorSpace /DeviceGray + /Filter [ /FlateDecode ] + >> +stream +xC#[ֆ;ݍ;$$@pwwwwww~wW̽LPU[׻׿ }ӿ>_a?CL]0qoAtUǏ>񣯗QoN|ȥ\ Q;iϢАPCa6OP8u!!\@?Qw 3̡̞ǯIL4DFFDEECQ11(66&6oGEGErN 5?%fSHlDEEBDDd$6vdq.11!!!>..N0 <~ՑqDdt\BfіkΗ` .dNMMK@^×E/zҠTt$; 2)1!.&:2tpP;?G&:4&1͕+J O!1q IvGM3|9yy~*r ?//77';;+3ӗ e6~ }gsz|yy>k-$ŧEL|-gfWVVUT։E7TWUUVVfefx)(A+(iчq6WFnQyUM]mUyqn_PZϖddWU646wtvwYo~0/Mu:bPLf|1$<:˯klb"~).z";pxdtl|brrjjzzzffv2 LOMMMNL tu46TWfz]†ShW"#P@K2"cщɉс<#."XCqI73pdlbjfn~~qiyeuu ZX؄:0?7;=59>:4TWU +6#˜|@sI 9bxbDdZ~ Jp:VV:|΄пMfv.ovAiuckW*@;888<<:<:::X萓{{;;[dianzbd('HD02X0s4xkY>| +Jtg5O.mn.M gѼ`8['odrf~emc{wJtͷ!>\svvzrrr R@(!6/ M0X'B DucKͫ<`F;sla1Ca1Ԍ殁sp}ss'7B X&gLJkKC=exEaEF&$=wпn~ +{ +j'wOnNV&k _CfhB#cS<9EUMKG'gW7@Woo|0Ĺ/ϟ??~6`gcynb8ۓ+@a˲Mz}YDbS 1Hw>ڽ뇗,t{ ˇsb¢bmΌÓ˛ϰ~,?'tpngd@{}Y7%)NRE£ѠiB"6eYH5! }2f6XNW3 E_7awgV6u O-n] b4 O?!.7(pwceA+)6ׯ0nT pgW5( &eO1!cvl}Q=6,/odjXT=5wlnm\FPi?}Ï!_<^͍TZ֠)1n ݙm==y丈пo& q2$332^eԶL.n\ DAHx^lLJ˓Bb|#bəARB!3&&B ذ)!SrRK:Wvϯ%.`%?E rws~4eKx7o|vy}}ea`Bb_@B2a!H O`KD-5cxfuᵼy;h{Y(HID!JQ\DWficp[eaE?G dFQ2mſ UY~Wd +o>c]YhgvO.Ӣ|gh@/J(Jɷ't5q8P(?5&º뛫=:\]D*El\կ*M u_ 3eFQd+ϙ&T +hUP G9c *haNеO~e^Eg`ڐZi(r%M􌾙y9x8h9c,S)2S r#sf4 /o 3yNT˹BGk*VVK_giӧPDY(9x `Ɍt;LM +")H̄Ez3G?,I_*Ц,U%CW!Tmd|{|iWb__G_XJPgj +ҝ&M~52M09%Lےb5 + %<$2/6!fUgJJÖ 4R9D%|E]{wZH2snjUi#RI q{hPѥxu#]Lt\W܀#p6y 2U6жLvmqt \*A-)[D=H0y,$UkK8Og T]4OVBSc#,+/I#[+͛efffx=n90lNY9ʀTxDL!iYY>Оde\%hY?tgq8r$iUsEē{sY8ݓLA s+ l +4]Ѥa&M 2eR=Li;# Ño4ՆhU%1AvmՎe WOz`8]:цE&j{VoP%/ O8C`Vh3p%EY-K3L:2r JJ⢂\R^Eb|6ŕz<$H훈N㓒^_N~QqiTZ\ɚF 0ݾΑ/_?ߞNTfzF^S`KIMX,%)+#Hƫ@S,wek4%E9T+5=ypnӊgo*ob MXWTofnA!iAy)> 0 1dgMKu;S$ť.i'i'  +'cta~?//:\$B{ +|l2/A51 v730N—,dX ,/Mb#5=u%'wЁ!.~15.6{[=)&+SHxtlӓ_ZIJchkH̜ںd+r+=o`hlk(I<Ρ[\/g{ks] 5FTm"9p5E/NZCV o'ɇH6I kH J˞peV5vNk6879P,MM Ԑ!ف)"*Ԑ#]ZY֝řɡlaOvW4v M.`'{k 3(#"&%XX;25KkdZjJrt#1)MrysKjZzҢGK3`odn}d F?mwL-nljTˋ3-WWKe!6?&SHL!MMN2G֎_Yh(p +Cr%Z淰<1 6K,8?^)VR0h< + +0=93kۻrxzrr|:?5630:98;TjT)k[?<>=TX+HusK뻆6/Af`wkmif-5nң]=9;=;==>:^_l,A@(Ϗo\P981.nM&# cge$:-12t| mj*Ԗ#:)&3wtziumei~zbtxhxlrvimꁙũ +$ +*P sly6#3`|'H, xIR61/WexLB7aP+lC:?;Z[չC`O)Z;<]{KC Y9EUS[VLoڷ//OWgk=vSkDo;%c.oon뫋ݍ暢T,wT6wfQUs̊յFsCɳեٹ @̠I+@W`fc{ *սٱڒl--1"šΑٕ}hsmyq~nYspr~Ino)~r푟'e52!hMkr^90 .`Q@[uaFJbWy]#3+׷څſ hώvVz3R" O%՝! j(/-,[Җ_%t +Brmy(#9>ٌJ>9Gmw58;]_2MXXwVQMk=Cѣ㽝u9fAegH2DeeS7?m5-[&dosqj4HB!/EKnoNO8"rgq04ĥJq"5g?Wo7G+-yWM ٓW3:w|s߾@̜fpoG*F8ڜl.tX1S2j4;Fh?PsufdmӰgJ|(jїuUPGm W @o=')xL?<T +2H|˞fD}cm4^ w5 &rȌ2EI)/NOYg֧R4>k+mti7QadN/@&ӏQw'zʲ 4L[&6N̂f +4YW15&+5-kbex&?9_g2^OaѶzU(@Jq7of0xFQჴ4C|`.[mvF@⹓ +]QU3!27q~6VWTs%+>)`%Jb 0G5? u7ItAhDݛW:0{|q𙥮^-Ui,1N #3ƞ27/d)ʛ:an YNEvE.#F3(Bw]a]8VV !)Z;x2 $Y]ߠku˞`ѫ "Co $=sxbi Yx|o d0'Q1*3[Wpi0t+ ޅѮʪV;'ZJU3{k}řRe5 +9T|s@Vz/3V]Spem3iI$ƥXq-P0h4 M(l?QSET*D԰h\~K@loe$3,O#h-+z+do +~E߾]+LwseDm {Qx{(3raFB%3bcHhN! +5%Nv8\Xm./nV&5o,uf8IvXA77؜8bsdWfSE_c2%`u-cP;ɌS 54#2B Ci@4Q>蒢3U܃C +KK˫)1Kڲ1&d$ƒ*oÞ ckeafjbjVAʼnڶ=\1 4Nv)1?ph[Gv}~BCwt`7 MfWf1ɯ,U(#|Ehi ud,Ја8e2Loful]p{Mɐmc N2d`0<;|0r7_.Vzғ"pm@e /X( +&oѫ}E}6@߿]Oel梠Ev"^S彾DcT*~ 2$3ܶ8)3X +gS#== +\3@u(&>D vLIqWnX䋓uSgWuۖtHg º!O -*BT>9>:22J܉8~$c4 dhxïBLMOOw":b/X c]Rv!kh8FICN46-Bhk~B N@Fd3mlqmJ?<3~,/@ƽ5%r.oie7fzmm!޳{t,3*@" r49PWOnmhlznanf '\y}[1B&Hꊨ=!x¬=mNWX!`. }]]ݽ +. )2ьނ2Svm~jx[kKkg7ulSp#7x&*2a` G;]Aj[ #%Ȑ6GfoBzMc 1.h 55yiIVd$r*;V f!2V3t4;8}~A 5N#ºq #F{uTt6WWW^::?2+Sڅ=qxe,~H2RK]qwԖHI{3IAIieÖRd=-@+Fz;jkH,SE;Kݵ^ Q ά2k_Н|T$[+mo(++"?>GLʖ̸o\wEm]GBӔoml UExlwe Qa xvw 3xsmJ;`qCXH՝8Ә~ ҁ'|-ଠ$>30o 0L͎4הeggeW `&S~dH$$&7ɞܫS-5yY*X\Ĥ+nOv{&M!*Caj$|uyQ~v;ّ=AU`kqreYqA^^^aIe=ٝUݍ{.-_KVO,g~uE%Pe %ٙMMS1A|*a eDNF X$;za>mWԶtϬ6R +O{HB#1&* # 3~=?ؘ)*gdU5u +t&\ꓡ2>F%5ieLu0TSco_'x|r2U戏#SӁ~J>QCEAvzr=Z}̰̌ Q8 +|f N6Wfgx}%eD%s{Ǘ$:XS6[JZ*U[ }5eY4ח[TIvfuW;\8k`eNK֖ezSN+ UV>Ht2d01,&DƑiNm)l<9$;&R +)>&yXŀ5ۋcݤ|idg/{L#gM|=^n L$]530$7Dq +:,޺2.!'%sq9;he&$$$S^!HQِЈH쬒nc<|FF",QNyxO~~FyHH v7t1eY =u^%9rb  + sniS"-$!'JFLZ>|Lk=RD|?';8'Y{I*c۬DLQOWf9ke ̔eΰ h*+ 1㢴 IrT"tI/EnHǛ@$HXXgtAuyĈAG ~FgYmuPv3(՗)i mG i>}R9#(#ՈGKW)bǒb:ژhIv7f4{0x=wal%Ȱ2HJ_djUAb}:T=YJMIv7w^h.WYPl鴼vɆQ $k۰:`l.YnZAnV#T,p懀NVy_:ܐţM@4H'f,T V&cFVdz'u"PQ<_z&-xAá0/EhS+bRD0WSmcĐdحz`mN%#/$KvEː*HٷWfg"W[B7!΃Ka,֡$,m[Zn0nX^ h"8u gxQ8{a,U4G;p8Y@} d`fڝ$;!tń}o!h;]Ѵ{kD@S;@3CNAR2ŧ̈֡fYe=e 3n޲30DP&ƐLl:rqA|hoC݀'mB|HYV r~L +juqvb ˺:AYx|J' 36@FGо&/bZxV6x2ZX>RA}iA^~y8n +T><Y0pmB&OUN0+[Lr5˥)h^bƾE\IH {QE0?.W" M +D @42 Tw ݥ\;5 XV7qQ@;y!E18d+IR];q7VIv t5ה s_IJV)?l'dhA] )Gɣ'~bGJ# p%y08 8U|$KR"H#2+oB4*f1@)@()4J[tF1g(0 3\) . sl_~21Ƞٳn!C3zT.@O` X'̣drniukW-U/Gj2Ƒ~}bZ`z@LgaZ:>;&r/*R$CyQAQt|u]PpyS{ +†,zd$6l2,>-Rm[{ aAސf}4v|M@FB4O5F)/=YZq9;0!!0Ila& ruGT)m_Z=DgqV ("w1u?7Ԣg ]1DL#At3 +g` 1F_'i4C ;B 3R[Q6qmYm$F xӑbbOXP]DIؖz -O1I Į gRɷE% +25tH|H@:j~ Xk!?athib]̼1:=[BY|L Lц6I?2^@5y\b&^ʓH3"$JIJ*k@`⏁*AA M@V=)(i#*@ao"LxkB-OU<];5C'Ef[$%.I3kpg1ےU26N.9IJW:?Bg@AF˕5V& " ah PҬML0+' ˘,%ד_VnaqyU}sGuˇ<@) 2uԅF&X r%B)H/pIآi1weAvVNɛ7 % h"2jp6IH<5J+o2@ m`6Lb(ΜJ:*7q攓DFf00 #2g dP8ۺ,d~,zD&g? aLqgbY  +4ګ4WlvXPj:$\,vT)0T$~$B+r-dS,,A|+)$$42:ޖJzӽH-+j]ǘ":!3)6Ǡ%30XD1崤Dw}q*(-^nB +!>IJ)ͽE2>:2lj'X dX2d'dV(R< eɌ7 ׼H'+kA(16zBe2ƺX~D|>P+|dW)2|DGfѢT(i]?@0#qNea FGRģ +2k XȨ0Eㆻ-PIkhLln2yt|9Akh3e1DCm*ՑkHТcdn\g>P.ȈMpx zRek3CmE$WNZ{Pi51};Q3:e< |&[2D ew%Q|&O( 2٩DklK&Aw|9d["HO,3Qt%A;gV766qioAeKnL_6t;pí1:ԋT-䤄X&?Sg ,e.LwQf8:Q˨J0C':,KۛSf]#>6֦SB-mLUgݞ_9<i;kY2 6 8EБ ßQÎpg[Q7ahamzLdy#3FZG.H뤓7qeԘM.&jjڻz:Kuksw?BJ +#FfP"RSvwNY*ZPͦ ozfnQݡm]NR#VKVs2v&_w- {ӀU^jJue=P3kj!Ҵ8.:VxbYuBF%3P|D@fLTdb́ 82H>3`~ՠdJ@ܤ[Hw3?!;}`bqֺmPZUl 7pWSmyIQA~AQie}[٦D1< ; g;, !na خrˌHd2'Ή%YG }e@_b=fњ @gk}MeEyEUmlW] 22z;F +^o \XY[[i,-**M [,|%Et_1OVgG;bnFjÑB`,{B2;PWSSgn&Xs5k՚I$؍D+}MMEeu]KkՍƿ&9Р<*lluvl@m[DJ"I6b;@; #44DȘ6QdHfϐ*wd +M~z~zBL?<5s{$3M*sIIނj=qc`oken|NsǺ5[쑭 + GX aQǾ<% m~D ?78:9fnxw2T$2u/<6v/ɵ1=jh;{f6ca$TWyO(@}CDu9x43ЂgŸW5O/> #OhoBh k,P!2'nӏ$.>Af& #:"`/Bc|i%pgcy~zrltz_!mBNglqhocynbo`dR_=`f‚M`N!%Ndy[k3cؙX.e2_1C=?cvzjrzf*iHDasְd @lLzSНݽSs8 +2n!c<܂Mpc{Q]fEDHH9EQţ>ד6*s=xvWyVN<;9>NN/nSVyvdzfqC_Qc3ݽcpqEӥ&X}&vE`x'19!C=8@O3m qj2ׄωceIguת_f2YV !@oî$>?#sq< "YD ThqЌ z(dw{k=& c&)GT/j?ijkd6pcnPN2:S6WOx_ 6m[M$.?>Vhq|TU-}zGAOt^,X[+kIᗰޙ| 8, Cu3lcv6)LSLhB nweNaN_i39\0ab ;d~}y]# =YKXaō~NyWٷD@}P֙ e #YZwLKI1e"}%J\|$xsirli OLRz3+w&z9b#q`5֦w%5º 9z_Xv%ܣTYT +[^Zճ=ON7G:kCf6W4u,o]GZSvg N^c<-3nb{AzVw.lccv9+d6AF0bS9>:eI}e WzuLra9&M7Wh4.\8g\;ZC*//6\vC:nyT,66ĄcGUy\3}p.z"'".-5H 0|=h'.1N3Ssz[ d_&BCA.mw LUcA]h>h{j;G| xC+[;[ks]ڌ4Œ1S;}FǪ]J+ P3:M +:w6 +m-As4XΌ~=aŇ (=ӼiI!gnJqHz1eOqXIT-L\2CJt'wtj~ymc "F6! kV>ț/ɉbKCؼ`P}MKЙ.lMtϜ#\<𵞤FmH$>Oh 𪊓㣣}^hڎ +\twyyASG`Q!F3t(jf5"hɌ DZ~89kȆ`m*dh[QZ=4>mosy憆Ɩξщq#5>xpB#YazYK4QQlcpo[}y~ۆ:6yȨh-;zEss3#Uv*.M6VkJTf-h\w.K;[[V B%ⰹ3 *zh;hP큮ڒt +ԧPd90:1>:M??+~<}cCeH ٟP"@s-?ǠHo$a^Ġy!I ܢf2biYzb8HtX,ili'uPUQMpd簮>/,HO[CeQי 4i-:/oh.͠V&JÕ[R?2>e*Wa͵eYS1[UT>%+&538*QrzbuEiIIYe]S[gWwW{smy~ރa!>> +=Aӝ7mO ͣb#iڔ*hhhgP66+#;kXAfDaL걏FfBnnqe 6$ #[wb 0-ѫ^{鑺d8?[ +K+kjkʊ!Ӷ𞚑[T4(Zi,m!]M3G5ezaoJB1j|-,R=@7IJ+@FkA _O .NR`ca|8d~BHpA ֖榆:LOu9SzsVۑŭXJUm}cSKsKScAPHzzP2 vg7JJJ 3R 1SkoL-%$+j閖z(O/NE̓#]D +F%e赴02j<5fgx6KPXtN *H`:̠Ɔ:.8 hSB2sJŽE&JaVSbfstOnEzI~澤?RPdNhs'A' +MtJ\|$ [N _70qP`I3rԨ%,$c/򿄽>Oj-^ SakԽ>_zǝbҺRǖ;Y%9{^УOzy=56!ɞty4Q",W.,qM5LhNzPn=L%cgu Ye,%Fn&nvEnMGJ}|d }ŹY43qV!١p8N%Ӽ*t@OxE`2&.>fmIpØ(.l0ѱthf/#< ԞDpW>ʰ,i.!H9Iw`#&>L;m q$}H* +#mu>y5ps1 ':6>1[U +"X zi.mq4MJcpO/5\ħ5C^6gfۀ\ +߿=if,wbObhu$ә`'LhL&6!)iV"bg{RҖD+L!Å'bY|8QL42=_5X@ lI& 7w)&ӣ0ȴX U{"U`A%Lぶ)@?i:"rWB ts~0WD1D2mQ,l^~~Rd=,82]c6caV||D2oPp \Z`V,Wi E\JGWsO ft?OxF2E5(6&&:BL&,͊82(KUcj(or э-|1gtEgS'.gQR|%MSLrtE/trML!""RO{ִi"9S)1fʩZŕ (dQ)?R.A2rnX;龹ӿEL72%E,Q?] UWQVTBہP 7EqZOSDpJ Ϸ1~F͆o$| +?I^G!3eߚ]鿔φ(jN2bj+S\ }DJGɔ=*z.8.9R!5qPR:TcqϛU!?#үR%c5E-=)i@|1g"UΏHx߿E ,%-CWw8ީu!s_z_rJn ]bzMW?R/|"A*6OO%J@mќ38Bn$I˟^ӯG4" hTV ?N + ߱1 ~Γ4/)My/Gf +~BO Ll";1mw'h7x_p"SJq}_Cc?o~AD>~ԖnfI$B]q>[Ok + :$zojy@hwun`yHbբkq[ 3L7Db/<=P%!l%%9'InCKWc߿}f^G, N +`km~bN/[0EƯL8'QCzS,W[?W b0["r!H|B!mV,O҇zSCy5â0[Ve4@~ BVLJ󓣃m,bch#;0~e9{̓sʩihϏwחvހGHABnyq~ +*7W8벑F-yGƯMʩ929xDR;ã o,'puuyyOOOv6֖f&GJ|f_>V%$ ߿j?:>9%|C|<bwg{K,/L t͹y>=Z?sA a&[6ۺHp{uavjbbbjvnaiyuu}}sl80?;=5162XWYR'w@Ry&>{c}=]]=C#cS3ss Ylomj*/.iV]b-H/H( [ +?@@`s~o``phxhhhoU%EYVPoA04bt7Ry +I5dƭ0PYZXPXT\Z^QUSSW񧩩Lss2ۙl0,O w{D4S'a ɾʢ\_7=#3;'7!ҽ EEyy9YYnv8lB[B1<;2.2h:&p&?2zrGNx<ތ ϗwϗy4L1[j]C#ƮGl-"4@Ɨކdxd$%řb~`aw{i=:Phk;.nDuUǮ^N5`}'h 4mzB#&V7=ă~&ZR""lGTXxߐ>v#4<\n/f(nnynz|8@DK;Ntg#4f.gГͽC.:uX$8 w=HԣϏ?65)[zy*.Wo>AJHcs(֣WW qBDcܣ$n8o}L̍y!X"͖2MaUWXx&s\Iq{BdrDXQZ`hP;}IqHNM{.ZsSSi|g#IeKiq ՕFpxw~81^_^=))1Id+tR~)գGߝ>~ +sxr˛&/Hl =ZKon w +R<^⡙YyzLPiiIQ^fZqniFhT|7ory6}];ݭ 5eEH g+#V@8+'nh~_OU-@3s7wxosynbںzҮ v6Us5ϷT  )DB??^m,LOa]wfƭGbeߞah|U} 'hW 4<;:\]Zפw/,.mlln-NuTMO|-ԈzG؜rs/E``w{sc}}U[WV76wv6{`wmO IX=:kxfyԼ†9;;6}58;$&PxGߟH zƤyw̵y)|[ЋIno./u ]-gwww7'+2MޑO ?4R%5-zHt׆}8 ϟ??{<@{Ѯ|]3BwfT4t ϭl굹x#_~E߆,^_ V #]=-5C+z9@ra"gB/*;9^+$?TC CILFl׵ M.od} HB9\EeS] 3qq 4*kYЛO2+ac<;=>X]oo(&'G?1/19Eu͝}k{zӝS}q~~mow"M%zܒ CdSm]}CSsz۶Y0i)qpWkcui~G C#E!a1InoV^qyMCkG,Ps}}sc3p`oGKCMyq~e] }JWZB>sȐT_,}#1<$@܈%<YeMwڻzzD=E荈iwKȍP.sY9z7\Yeِ!(/mY>oq=O- +8bwz3|YٹFxwq;SzQ=2G*7jk+JzGg:(Nl՛"ts\|BRf!͖d +RGqV""*L !>, +|-Bt}i + +*u>w@dHND0;BY +endstream +endobj + +8 0 obj + 25939 +endobj + +9 0 obj + << /Type /XObject + /Subtype /Image + /BitsPerComponent 8 + /Length 10 0 R + /Height 148 + /SMask 7 0 R + /Width 538 + /ColorSpace /DeviceRGB + /Filter [ /FlateDecode ] + >> +stream +xK-IrfiCGHӸ=69Df [4uFWQQQ1}{8~G{v5wt!bč?O 7|=7[a1b.Vu]cA q,q, b4k K8&78V8'ψc=oVp+8?nɆznJ%bW\`uWþ}h߳Ho]3\PILmNjfk8=tM7Z(xutPWյ~.)xخl K֟.ǐc{֫v{?wM81젉ɂ4{cwA +8JA7sН|ͯZwJop [4^/nB7ixm:zA#bC#b~61Td O#}ͦ#[*"C|"`X* a֟S@NE" +K޹}q7E87m¹r{;xu@q~WE79` e#)YM1oG*h7)EڰZ?o~-yIopv=1J4c}Mڠo~n8WoV/X^ggİ7?3[s :>+ϊEMyu}jiX4KzHvЁ?u_q-FZ:/DX;F9}rfdy읿$Պ66MjfFX$k"]Ldͻsey;}S?k{qU™;aqX"ki}fu#(lm<(ckRo~z[yڲ]%7u`1½]dSlpE =^8+fxka+a]6z'?H @ t,H#vrfMtq)[l;䰶͟[qf6ћ +<4/şP{_ 7Ek vDNh~gZy_k|Jlk#9 ``wƓɂ np, >^ +me,\>(,=9m7M9^9YMlD69}h|/Efѝꖱ B!{Gf?/v8ןJ4w]4[tEE" F$O-`o Dq!p!9a\~2i–uΡp\ +oJ"!o~͍qGUښuxf_rςq>%2DdV6FA ,F<] qOO4,,HX%MX4AVRC?#:B6_pqڲ9l~"5nl_"?~H(-4Ʋk pn.4zs&8^F򲃕ၽ=y4j45zUuEƹ^04? 0:j; +@wGym%?k.k6aݙ|R;h>o yzbXXC|A!\8枋c؏d_I]/j,αEKBpdkq”ThA 0)A\ۉg~;+cpAnky6K'\ٟGY uaesq-$ȼccʀ8<bxmv=1,j#Ƶ8V1XS6hZji!qp4@ZId4}l: 9хc{ªP +V64?V soRm؏׎#Y )uxsk ;oXOƿ . .6ԎG[cB* THxRczv6xg׬U&`YN)Q 0]!ʀ$pf),k?x8Ry4MS0)eڞHaFƱ0+  ueCX;#XsӳPUP! Ű @ Q AX"kq}<NJwXHȪmlz8%X.=!9kX7r + MC* ~ +4=^<;Ǩ6ŒHC<2."`ȱ{ϔJZ&2j5~$X%,mȀ볣xZ7G}y%]3{nzqlFnM ;1H k jCc1ߩ౳Sb&]( ̒FB hvyzD]%L7EӁ_B$щlH!Ġ ",bD5wOVa`ZuH6Pǂ[{hs=e +:13( T!?í'ƟȂ@" ? offM  vx@,Ň]д#ŻibΞrtDDO`[sg7 p=u2]+]T kh">sDD[7oF/VWć ? lH;xvV3o~|PWkth;HE0[bnza^Uv<ǧ(Gn͝+Br v9y[u)*ؠ4`ߢ+h$XHdwLj GGPm;!;z +ۉASV*iv5{hqcclDՉ,ٝݓb3Cv젃j©ky'cIA+ p$ؠFňA3LuP1xyX60E [sk8kbLXːU`Ƃ9 CM&;L0Z#v#\mX|_ݭw<*(gɂ]c#p @ yVRD ⺮c{`C !&X$XX @ {sClw{ g6l @ Hgc44vYb/+Gk,٠h  @] Bp;hFMΛH5i1F 7h ,0]a4a7"-La.a]C_ fW &rf#4Q4XoZAS7Hg`wAN#BAD4vq#X7r +6vAȹ#\[ɩ&hT78C$Ћ xkAX5%CB]eѨAAsHgA a`1i$>`,Mѓ_ <;#-N 4oɪ Bs4G IX7r ndAQ!jB(R+L3_I}||XyGPbD72:.f9x}M|J0_R`(gt;yX@"a `"h$_d7 bЌ6"Jfi 4'p;w8֛t㜃'UpJ-F&%,I"ȦW;< RTYY&57ӱHsЕ<өT*!İ!hJŖANRᜀ3Cb! opB)d2Čf/@! MqHk-O{c[b`c7Y$؟m<'w)&@Ð2@$c5q]ױ 9TCI$ HEk t=." Ñ``@j@SZ(Ǭlgʳ FL}ЅڼeugQrcQ6ve/ykNۃf Hɡ+[cc2*!Y$tH2Yܾ}l2jJS@Fa^Xj +HHHCM$eE7JS{c<8^:Z,a%DSf]ff]Qʍu] +~&j}xz0PH\kg-҄HXȳbƿ  @DFEb b#fwC oD6zI&rA?u 8O_u0/ @Hk""7?yqC nR{R52>(+ˁ<`Ԅx ~0kV<2\A~bԦH0FY|z9f4|W.?Y]!RUy  <2B j7r* `Rʙ5K .,l6 M쩌 Fb HQ78uXX4V* C3L"KF9!S<17 Hv*wZ׬Z?,Y4! H{cd}ιҲr *c! A#t#bo"1v53t!xF<."h$X,vCv' @̌Jdk,'< фy%! 'L4p^(މ厳?Q$d+Fd]Ps06hͬ2Gf=5{tOGi GoޠA%\V}r2X2nly"m%JBηE;,IAI]"{"' ]Cuq^ ՄY EfM͢f@ SKbj?Xks`Rc^i, F;E6*.f^V [|cZrgD3 kd5-GP0y`A wxvxɓ ݂xK]H `w ' 0-z,h _hr@_ lseqYwK:!NєJBii,X]He`_UbPYH I!)zj;z_xU!,}M 3s]|Xv±~RYVrEc_xR)bH ž[`#s׃KYf,~=i]!R4Y_@VF(Uv1t1jAS{IDzhf-]ˆIk Pu*޼fFZyAO2] aƆC:ղI oH^D ,Z=;S^t4f';<1g 03 $04F ͂čE`;lE M ~Au?A !1/=aHCS{MޱpCI+FpА Bre[s X88ן b +6D/dt` v-Z^0+y¿cMBf[V/DZHqe44rF,0H5e!b V? S녧VFeKV[s\u?):$Y݂B,Q'z_0.ɁiTej% 9D!RQjⲙ5$rBb?Co;!vxMO?"4c1 5~-foՉ[tE46=bm& yX0y5qO-B^aOeVSC3)!!+355"%_#F˥ ˂0)*m"+$ +QO!t֜s4a,F7W sІE/l{w?C$`j򀐖xehl_NU?'$9 &&ؠop1Nb'1͛"FMEMf?C/&;v9* "VT9aHM ~H(X}a=v]ױ& c! 2CfNO e-U%,il +"i] Dz(ӨW0n cY3S{sUc=%%4/] RΧMbPf]& ",?Q^1!7/#3\YMjg^ +E_0Ih}Mg`Q-OiSyPN.j 8rB[Z-@` `A &p4c_ 7~F,gXæ6J8i9QQu\X +\_VuM4JXf,OHu6Jy_tُFQ` dٞk0dTt\B^Dt? -, +w?o$1)](=5mvBSw +tкBxΝs1x?GѫޛI9iSd!ukrIA56 N/ & "<$jげy],FȟXk`&pL;&vDЄMa;`riO 1 y0@9m$ Y ,ޤa^C t4Zk +:oo] a`CB~HB% c%lf1W0X$!LTr"z)(py@Zx%Y +S~\u0ks_HMWنK2 }PjmEК[1~1hAb"`E4zgyәUSJF^V!*4\Sͬc&cc`C) :x)4 9 ~)(ceyI(FI y`F ň콻IHOCM6ugWCͶvNh7k%$3'!2 @j0VU-a5aBb-?h*_ cCA;xS`䄴jP ٠+hX DNMwA l"eCXi ų<<̓V3klvbPm!-*+) C aP  [ځdarD`Cf†;kǻn"iuAQDz%).A^=i>d"XCcYIXA0#@ ` 1V厙b&dDc+9++;QYL6bHАͲ[pgkٶ꯫c` * BSĠ!$F'BX5f>D6pABkv-!ě +) /+~)Nȏ5u/B|%tPEE :hfoudF"7?b欙SHA4A؂ω G8 ^[F@;^0 +feEI<$T7y|JXׇʏ7$H8!XEHP*Fp BB0;ДE=`ԃI A]4'x@ɂIX +Z yfV`5`odŰ0 d&IB&N@QB)8a ؁4CX@"ne$!vxa"9kL([ּ b.aa`Qs5-0/O^ά}dSZhT=hy vx@@ňDБfA [$ϸ~-F$X[ >#GeS 1vG N q#-:G72ȁؠy5 +& c#"11y MVAp*$O5O z CdÈN1;yIeJ,[y];5V5) +gh o,fbbDߨ(d;hgщ,xK4{#gvn"]q#m;=u֜N)m$_P@  >leTCi:<6*4HH&n"  zۆ wT0bςxАf;,Doщ,xKcMHFx;;ǻyNW͞@@rHd`  n]&;uf{˝/|Yy 60[,v,|&v @P5|M*R z}g#<,ɲ%?XX 2wf^ˑO 00223\#jpK{d G9[I*M#L|`͡f +CM F>tne%;kCT?룿1``ӝ"鎈әTܚSZ>G>=,AÀ<8xnz5FXϿj,t3&$5x<*0ӀtL5hfם0`vP0`vDvSFf` 0xh܋kaG9F>4̡1?`U3TRq<2) ':]ܕM|Ԋ>_ַ4F``IAFa +nU|\8s + P1/k9ӝ0O0(.+>eZ7Wgr. A 0C4 0-COrk.IYad(7 +"O!M)ܔ. 6J81NƧ`DY0{dY΅2Sd<"5 A4x0Ȥ̧&0&2V>)nMؗnߵ>&j`NA#E& Y`:|Ajvr *҇u9S0L>vN8IJLxf +O=aq4Y>>ө>!B幵ΖTt(\ 2Xޓ4M0` `"a<9&4#1~7<<}q(gZQC)NCA$n``dF*ys钞c A=[=0Ԕ Bcib hd,> AO +6zR>fYy}ݵ:X%SK d(2ncƷ\u]obq}.$L1Úh)c x݂#AHŖEU625KtC$24x0Ѝ 5 5̥ԗL$1hRlH*7M!BwVɢaLY@n24?4N])O3u"OM0yP0<(2L~45k&0` +wAωGw|= k"&UNo &4M# 5S0xqUzA0P\9)A$r gov +Gw$'? +|:h(̧J +2~1Ww)Nd3lf +&4pGJ :|JSthg¤A vR 14!==?0`f1/%ʰc. +M0` D#0a4x @9Ͼ#IFkpˡYu-c4(|(wi<<ȏ<41fxD4wD0&acv +Ȍw:D1yw +tЄ;#*%W)wh`=Gw>&aF3tA dsOd<{>G2뵲"N +P %C?e1pVuzp}?2@s׏)7@nK<>L}+е\3쮉jc!B0GM&-,]k+aCM}uaC15)4RA"CC3  +]4JzQњ[[[;]F3 4e,G` Aƍ͠}xHx:'&ŘpN! 03ԍFGTaٓQx|p|ҲuJi2L4 <r-;YII[>A eخeR0Q0 qjfDEC}Ph + +ƅ!dΠ-2=H.n`Ew%lh^^(sEPi@tpHz:EXVK*A3t;K01 .1`&1H3h-ZSCtG^? ʀ Du5q+됧NJGιfa@#"2+ҟˡҦ;rS`YSA3v&d `|&4OGf:7-oX`PfzHze=.z1郂Tix\gϞ&5=3TgSOWϭʓH3ч,mR)7:t44\#F멖f5a=_Tz\`K)w mu׬P.0p!dJ%e,/`݌Cp[g Ky% j:4,؊1a2/8Æ&+6:Z_Zk<]`!Cș3h:D~hV֌!swj&+,=frQ&z;Bõ[mz64CH==ú4;څIJJj]"IG& ~7~Ќ<1Gb3U9&aM4AF;ơz钡<:Zq^`RŹF04 AЇ:gAbU?ͥij0ߠ>a\85K"4xC56ڧ[/}0P5xA7;cf20Ks!, 'pW= ccRuH,MH>fq-s b(^)F聩`~ɀ)JwL#"CѪ=nGω;(9VI-8=f A9P8SsZG=T=TSP As؛I)Fn+`d"aa:NsER2r4K*>;'-fFD0tt&`9 +f"C CI01ȧwb̎`5G̠1h+^{Ad4 &?$`~":7zBD|YS  :Ch@Mxl!"[MZND01g(ZI6)2⵨Szע tԅމAO_k チ7;d/@ %5*}TB |j|O;'I 0CtȰ7tjֶ?_z+߳z]kݾpB`>֟R}^34i#Z%P^(݀  44{-Y3 ht^wG`qJLp 5:N4ﵞ ׏_kL j?h)(kf + TBA:LjȘH1;P0`0f(~C`O18ӪJ|%߆y^]1N|M0?f}yrO߃?hj6g7Q=OJ"0)s40ߠ1C|&24C`%aIam˯{qmxW?3tHbe&[/|(`Q0x#SBL`O)> fScaJEb|YzSnB?QhE% 0`"OD>&xdFMd(9|LwD|} D0`aV{~ybr]p8~M(no=Uj#2tGvi2`A&ᇚ4wL$"C &D Lq1Sbx8wl%/[O% "4x0L| v1mfiZFJڣ[^?Q?n9BfM@ePI + "Ȥ蠉1 4ǼPiȧbaa%PJ赾jᏁ}&P'c_>h{|Q`|&Efסf̮;+xg o%W~ص}5k~8Uo7a@ +#T?_9 +f؛`؛<ƀy0x"CA +f+ಕ0ýp8Hx7~tT1TG4vGAGw1:< +L~8 jY6&Qo%Ԫ[ɽ8$T6%.dhpP?5 ERdR0`b||<dQ3]>#. }Ps4p8+kKPJFMi{̧CM + 2tCd؛@Ȥii zGo%6np8TBaT!JUWL +fI4a||ͤ:LtAO$/w^Iv?0J/*W}7WrS@cipi$)2cg),}oZp8Tt|S!<2t݄!H(  P04#OM=Ԥ-06[1Kga0$ٝIϵ_Pc&`j` f* "MdA31}`5l"~,Gzý/=]ً<S:DGưp{Www?Ԥ}G^@&ba?ϾԲx_,p8jO'B +~.f؛<0L1&LK7iu;x0`ٙȘh4cPĘPshZ?A4m"~d-j}߯ӉmRdAs;m%M+&U}}$2av +z>p(3<΅ 755}5ĂBMr-ziH_Pm|/2xE^WC<F> } )p/F]]CKOFPX]Vchp8﨟 +ؽ,n"d8f1lt0{Iʻx ;;iRpJ'¡x2<~ bAv8TU<#7y004a Bg*Ф2R}Vc,p8|*G~6h8( Mo@X3 ^" ^ˤ<V>x}p}k3Z| ?ߊJ|{MCWF"݄&As4>Pqڮkq"#DC\z%I t}p8 ^O}Ag*꿍 4)2 &}j0~A6~F꺮תx=a^A0"סku-^뺨ь  lnr8?%: 'q:ګᨍ 1ȏ`0>5ˆb3j;/(@aנpww?-:̞Җd5oY-U[*4PE /|i;Ϧ .eIW@2CP  +&x0L| G94GBЁA`j eҰ?@ rP|RUɰ ;{3S$~}'bqg:Xz8A%Z9(.aFGx6DC]ã 3m;}˰(6?"a?xbCn1-` ̧̡1GG)a؛|\~:q.\"p8BꗵAjɃ*@1)LOnnB&nr8j)7+/~ڞФPCA>؃ L#y?w/ïJ6m(~Tg0PSd(f1#퉚e7app8~=W^_~k{ކɚ3260`>C ]1 A|WAQ {CE_~_W)PWCD~̎J(DpOzעzu]k'KJc^RDC~b34x0w&€ 9@$$$̻_s1pbCske} +)JBͨ۱{}ŻDy`I#Ofb❋c.p8?ҷ^、}eOGu2 #<(NMd]$$Vҫu]MS^RS) +8(ã v>m: <"ST%,2:6p8~CB}]%*6n{ +sӊ⫭^I|ދFy8߀j}߯cZګ +SVƩ[x0x8i|0kGDoR>o^p8c, ' +;Txu">75B7 l"mg.AV<(y0p ÆBUiۊ=EݶVl+LxSP|^]``w  +42l"~1̦fIȵ~mkMO mrETa/m + +;"pA ;_3D^ȇp8^׏ۊ +ǿ.o41h"CuΥv:;Ț^;{)(bPCg E,^k(fav0p3Qq}{` +\,{CŒp8`z0qo{."e{Epf:1p z +endstream +endobj + +10 0 obj + 32389 +endobj + +11 0 obj + << /ExtGState << /E1 << /SMask << /Type /Mask + /G 1 0 R + /S /Alpha + >> + /Type /ExtGState + >> >> + /XObject << /X2 5 0 R + /X1 9 0 R + >> + >> +endobj + +12 0 obj + << /Length 13 0 R >> +stream +/DeviceRGB CS +/DeviceRGB cs +q +269.000000 0.000000 -0.000000 74.234528 0.000000 0.000000 cm +/X1 Do +Q +q +/E1 gs +/X2 Do +Q + +endstream +endobj + +13 0 obj + 118 +endobj + +14 0 obj + << /Annots [] + /Type /Page + /MediaBox [ 0.000000 0.000000 269.000000 75.000000 ] + /Resources 11 0 R + /Contents 12 0 R + /Parent 15 0 R + >> +endobj + +15 0 obj + << /Kids [ 14 0 R ] + /Count 1 + /Type /Pages + >> +endobj + +16 0 obj + << /Pages 15 0 R + /Type /Catalog + >> +endobj + +xref +0 17 +0000000000 65535 f +0000000010 00000 n +0000000493 00000 n +0000000515 00000 n +0000001038 00000 n +0000001060 00000 n +0000012016 00000 n +0000012039 00000 n +0000038194 00000 n +0000038218 00000 n +0000070841 00000 n +0000070866 00000 n +0000071206 00000 n +0000071382 00000 n +0000071405 00000 n +0000071583 00000 n +0000071659 00000 n +trailer +<< /ID [ (some) (id) ] + /Root 16 0 R + /Size 17 +>> +startxref +71720 +%%EOF \ No newline at end of file diff --git a/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Welcome/mastodon.logo.imageset/logotypeFull1.pdf b/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Welcome/mastodon.logo.imageset/logotypeFull1.pdf deleted file mode 100644 index 1420a5d7f..000000000 --- a/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Welcome/mastodon.logo.imageset/logotypeFull1.pdf +++ /dev/null @@ -1,513 +0,0 @@ -%PDF-1.7 - -1 0 obj - << /BBox [ 0.000000 0.000000 261.000000 67.000000 ] - /Resources << >> - /Subtype /Form - /Length 2 0 R - /Group << /Type /Group - /S /Transparency - >> - /Type /XObject - >> -stream -/DeviceRGB CS -/DeviceRGB cs -q -1.000000 0.000000 -0.000000 1.000000 2.000000 2.000000 cm -0.000000 0.000000 0.000000 scn -0.000000 63.000000 m -257.000000 63.000000 l -257.000000 0.000000 l -0.000000 0.000000 l -0.000000 63.000000 l -h -f -n -Q - -endstream -endobj - -2 0 obj - 234 -endobj - -3 0 obj - << /BBox [ 0.000000 0.000000 261.000000 67.000000 ] - /Resources << >> - /Subtype /Form - /Length 4 0 R - /Group << /Type /Group - /S /Transparency - >> - /Type /XObject - >> -stream -/DeviceRGB CS -/DeviceRGB cs -q -1.000000 0.000000 -0.000000 1.000000 2.000000 1.844727 cm -0.168627 0.564706 0.850980 scn -57.842663 25.387310 m -56.973518 20.943096 50.061783 16.079765 42.122841 15.137188 c -37.982918 14.645527 33.907391 14.194614 29.561213 14.392532 c -22.453136 14.716278 16.844669 16.079762 16.844669 16.079762 c -16.844669 15.391525 16.887453 14.736427 16.972567 14.123863 c -17.896652 7.149250 23.928431 6.731026 29.641823 6.536243 c -35.408352 6.340115 40.542614 7.950329 40.542614 7.950329 c -40.779942 2.765934 l -40.779942 2.765934 36.746300 0.612568 29.561213 0.216728 c -25.598721 0.000004 20.679268 0.315689 14.948763 1.823364 c -2.521337 5.094391 0.384049 18.266270 0.057106 31.631596 c --0.042868 35.599815 0.018828 39.341911 0.018828 42.470993 c -0.018828 56.138123 9.024163 60.143955 9.024163 60.143955 c -13.564885 62.217625 21.356571 63.089451 29.456736 63.155273 c -29.655783 63.155273 l -37.755947 63.089451 45.552582 62.217625 50.093304 60.143955 c -50.093304 60.143955 59.098644 56.138123 59.098644 42.470993 c -59.098644 42.470993 59.211227 32.387894 57.842663 25.387310 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 14.485992 26.452484 cm -0.996078 1.000000 0.996078 scn -0.000000 21.175804 m -0.000000 23.165289 1.622104 24.777744 3.622489 24.777744 c -5.623325 24.777744 7.244979 23.165289 7.244979 21.175804 c -7.244979 19.186768 5.623325 17.573866 3.622489 17.573866 c -1.622104 17.573866 0.000000 19.186768 0.000000 21.175804 c -h -51.953178 16.803417 m -51.953178 0.255280 l -45.359833 0.255280 l -45.359833 16.317129 l -45.359833 19.703238 43.926872 21.421368 41.060944 21.421368 c -37.892841 21.421368 36.304512 19.382627 36.304512 15.351715 c -36.304512 6.560461 l -29.749895 6.560461 l -29.749895 15.351715 l -29.749895 19.382627 28.161566 21.421368 24.993464 21.421368 c -22.127537 21.421368 20.694574 19.703238 20.694574 16.317129 c -20.694574 0.255280 l -14.101229 0.255280 l -14.101229 16.803417 l -14.101229 20.185495 14.967223 22.873068 16.706865 24.861656 c -18.500998 26.849798 20.850389 27.868944 23.766304 27.868944 c -27.140659 27.868944 29.695858 26.579786 31.384611 24.000576 c -33.027431 21.262854 l -34.669796 24.000576 l -36.359001 26.579786 38.913750 27.868944 42.288555 27.868944 c -45.204472 27.868944 47.553417 26.849798 49.347549 24.861656 c -51.087193 22.873068 51.953178 20.185495 51.953178 16.803417 c -51.953178 16.803417 l -h -74.667320 8.577215 m -76.027779 10.006529 76.683022 11.806602 76.683022 13.977438 c -76.683022 16.148273 76.027779 17.948345 74.667320 19.324818 c -73.357300 20.754578 71.693764 21.442368 69.678070 21.442368 c -67.661919 21.442368 65.998833 20.754578 64.688812 19.324818 c -63.378338 17.948345 62.723106 16.148273 62.723106 13.977438 c -62.723106 11.806602 63.378338 10.006529 64.688812 8.577215 c -65.998833 7.200743 67.661919 6.512505 69.678070 6.512505 c -71.693764 6.512505 73.357300 7.200743 74.667320 8.577215 c -h -76.683022 27.213799 m -83.184502 27.213799 l -83.184502 0.741074 l -76.683022 0.741074 l -76.683022 3.865234 l -74.717758 1.270798 71.995941 0.000000 68.468475 0.000000 c -65.091866 0.000000 62.219185 1.323635 59.799988 4.024193 c -57.431683 6.724304 56.222076 10.059816 56.222076 13.977438 c -56.222076 17.842222 57.431683 21.178179 59.799988 23.878288 c -62.219185 26.578400 65.091866 27.954872 68.468475 27.954872 c -71.995941 27.954872 74.717758 26.684074 76.683022 24.090088 c -76.683022 27.213799 l -76.683022 27.213799 l -h -105.058311 14.453876 m -106.973137 13.024565 107.931007 11.012690 107.880569 8.471540 c -107.880569 5.770981 106.922699 3.653431 104.957443 2.170834 c -102.991730 0.741074 100.623421 0.000000 97.750740 0.000000 c -92.559738 0.000000 89.031815 2.118000 87.166977 6.300707 c -92.811928 9.635767 l -93.567589 7.359705 95.230667 6.194584 97.750740 6.194584 c -100.068611 6.194584 101.228233 6.936104 101.228233 8.471540 c -101.228233 9.583378 99.716003 10.589090 96.642021 11.383003 c -95.482407 11.700928 94.524994 12.018402 93.769333 12.283487 c -92.711052 12.706638 91.804077 13.183523 91.047966 13.765636 c -89.183136 15.194948 88.225716 17.101593 88.225716 19.536619 c -88.225716 22.131054 89.132698 24.195765 90.947098 25.678362 c -92.811928 27.213799 95.079361 27.954872 97.801178 27.954872 c -102.135201 27.954872 105.310501 26.101961 107.376183 22.342852 c -101.833023 19.166304 l -101.026474 20.965929 99.666016 21.865967 97.801178 21.865967 c -95.835472 21.865967 94.878067 21.124891 94.878067 19.695580 c -94.878067 18.583744 96.389832 17.578032 99.464264 16.783670 c -101.833023 16.254395 103.697403 15.460037 105.058311 14.453876 c -105.058311 14.453876 l -h -125.722229 20.648455 m -120.027290 20.648455 l -120.027290 9.635767 l -120.027290 8.312132 120.531677 7.518219 121.489082 7.147905 c -122.194763 6.882818 123.605659 6.829983 125.722229 6.936106 c -125.722229 0.741074 l -121.338226 0.211800 118.162918 0.635399 116.298080 2.065159 c -114.433701 3.441635 113.526268 5.982782 113.526268 9.635767 c -113.526268 20.648455 l -109.141808 20.648455 l -109.141808 27.213799 l -113.526268 27.213799 l -113.526268 32.561180 l -120.027290 34.625893 l -120.027290 27.213799 l -125.722229 27.213799 l -125.722229 20.648455 l -125.722229 20.648455 l -h -146.436966 8.735956 m -147.747437 10.112877 148.402237 11.860113 148.402237 13.977663 c -148.402237 16.095211 147.747437 17.842445 146.436966 19.218920 c -145.126495 20.595840 143.513840 21.283630 141.548141 21.283630 c -139.582886 21.283630 137.970245 20.595840 136.659760 19.218920 c -135.399734 17.789608 134.744492 16.042374 134.744492 13.977663 c -134.744492 11.912504 135.399734 10.165268 136.659760 8.735956 c -137.970245 7.359482 139.582886 6.671242 141.548141 6.671242 c -143.513840 6.671242 145.126495 7.359482 146.436966 8.735956 c -146.436966 8.735956 l -h -132.073563 4.023972 m -129.503494 6.724081 128.243469 10.006754 128.243469 13.977663 c -128.243469 17.895733 129.503494 21.177954 132.073563 23.878063 c -134.643616 26.578175 137.818924 27.954649 141.548141 27.954649 c -145.277802 27.954649 148.452667 26.578175 151.023178 23.878063 c -153.593689 21.177954 154.903702 17.842447 154.903702 13.977663 c -154.903702 10.059591 153.593689 6.724081 151.023178 4.023972 c -148.452667 1.323414 145.328247 0.000225 141.548141 0.000225 c -137.768478 0.000225 134.643616 1.323414 132.073563 4.023972 c -h -176.626083 8.577215 m -177.936554 10.006529 178.591339 11.806602 178.591339 13.977438 c -178.591339 16.148273 177.936554 17.948345 176.626083 19.324818 c -175.316055 20.754578 173.652527 21.442368 171.636826 21.442368 c -169.620682 21.442368 167.957596 20.754578 166.597137 19.324818 c -165.287109 17.948345 164.631424 16.148273 164.631424 13.977438 c -164.631424 11.806602 165.287109 10.006529 166.597137 8.577215 c -167.957596 7.200743 169.671112 6.512505 171.636826 6.512505 c -173.652527 6.512505 175.316055 7.200743 176.626083 8.577215 c -h -178.591339 37.802887 m -185.092789 37.802887 l -185.092789 0.741074 l -178.591339 0.741074 l -178.591339 3.865234 l -176.676529 1.270798 173.954697 0.000000 170.427216 0.000000 c -167.050613 0.000000 164.127945 1.323635 161.708755 4.024193 c -159.339996 6.724304 158.130402 10.059816 158.130402 13.977438 c -158.130402 17.842222 159.339996 21.178179 161.708755 23.878288 c -164.127945 26.578400 167.050613 27.954872 170.427216 27.954872 c -173.954697 27.954872 176.676529 26.684074 178.591339 24.090088 c -178.591339 37.802887 l -178.591339 37.802887 l -h -207.924301 8.735956 m -209.234329 10.112877 209.889572 11.860113 209.889572 13.977663 c -209.889572 16.095211 209.234329 17.842445 207.924301 19.218920 c -206.613831 20.595840 205.001190 21.283630 203.035477 21.283630 c -201.070221 21.283630 199.457123 20.595840 198.147110 19.218920 c -196.886612 17.789608 196.231812 16.042374 196.231812 13.977663 c -196.231812 11.912504 196.886612 10.165268 198.147110 8.735956 c -199.457123 7.359482 201.070221 6.671242 203.035477 6.671242 c -205.001190 6.671242 206.613831 7.359482 207.924301 8.735956 c -207.924301 8.735956 l -h -193.560883 4.023972 m -190.990372 6.724081 189.730804 10.006754 189.730804 13.977663 c -189.730804 17.895733 190.990372 21.177954 193.560883 23.878063 c -196.131393 26.578175 199.306259 27.954649 203.035477 27.954649 c -206.765137 27.954649 209.940002 26.578175 212.510498 23.878063 c -215.081009 21.177954 216.391037 17.842447 216.391037 13.977663 c -216.391037 10.059591 215.081009 6.724081 212.510498 4.023972 c -209.940002 1.323414 206.815582 0.000225 203.035477 0.000225 c -199.255814 0.000225 196.131393 1.323414 193.560883 4.023972 c -h -244.513977 16.995380 m -244.513977 0.741432 l -238.012482 0.741432 l -238.012482 16.148182 l -238.012482 17.895418 237.559006 19.219053 236.652023 20.224766 c -235.795044 21.124802 234.585434 21.601686 233.023239 21.601686 c -229.343994 21.601686 227.479614 19.430855 227.479614 15.036346 c -227.479614 0.741432 l -220.978149 0.741432 l -220.978149 27.213709 l -227.479614 27.213709 l -227.479614 24.248959 l -229.041824 26.737270 231.511002 27.954782 234.988937 27.954782 c -237.760742 27.954782 240.028625 27.001907 241.792587 25.042873 c -243.606537 23.083838 244.513977 20.436565 244.513977 16.995380 c -f -n -Q - -endstream -endobj - -4 0 obj - 8970 -endobj - -5 0 obj - << /Filter [ /FlateDecode ] - /ColorSpace /DeviceGray - /Width 522 - /Length 6 0 R - /Height 134 - /BitsPerComponent 8 - /Subtype /Image - /Type /XObject - >> -stream -x_T6 1twH H-"ݭ}׽֞ <=\Zk{^9bX[, p>:T*700ɍMMMMLrL - !Q@eGjCϗHrSsKk;'W7wO/o___o/Ow77'G{[kKsSc#C}t*J$bXut Ḽlݽ:x̹/$'?w6))!.6:DhpLzHb}# k;KS}?D}O@Hx3ɗJ '7yQQqqIii벲WEE/?yqڥgc"Bz8Y1\R [ p6j @hpĩ3)d>*(*}˷Ɩή޾ޞ榆ߕ<κ{-l\d\OGgρ[ą[22z[AUK&7u JLEهo -=FF''g恅ŅŅٙ-5?.˺sL.Kykj}Vg?D:2c+g >U7u[XZY[R(m -xT(676Vf&dž:k*^?˹XvH !2p:U5TUzbD"tnuFAUK:T>RoܷCS [ۼ]qq@MH`&L%VۊwOIn2Փ[Yo-i677GM"8,[٠@Py]6Wd'w5FǺFv~AvRX5If֫Bic '09" iGĭw=Jj0j5\L!Yq@ W#TH \L+~|J?$#J ' T߿9{ ZM~< mnR /vj'73U>^d%)A$ׂN0mJFFDPsfjbd8XDpt,@=(ܕt@a7.>coEQ?YnN0\~ n\*p*4Pseٗb('~nW_mlmmkiz7KcsK7nݾ}֭1C3s N((ͳ˧Z`x;]S)mci֝[1Gm ԑ"X*r;v*-#׺֖O/ŇzIOjxaϵM-mBY\ Yy%iI4:p84cp\ZFAɧ,˧C0:,="^Is6A=|K]S P]^{l'Bkx}:ډZ #% F~bHWuÔO+4{N`wɛCS333SC?k=SeenǸkV;*=cIGmڪ_?zޘJ.H~XR^YU3\'z*)wbݵs`fTJ?7uLP3=-__L -q? F"3c 7vPUyt%#s6:HNA]D=?}q'GzZros1ۓ4-_{EG]zHwçwt5\A$ 8 NY2E <)l̂^ލ9P9o{Gg6h_Z~zk'5E0Xj^chCHHomY`'lz"ߵ]d@`_T U`'/?zS54s\_ZD[yolvTQЅD A<%f|W3<J]>6eU dhp㴄wkz6 -|e~N&sd"Gu@ЏtFe~{@`E 8 Qn ~>hc"]kS{׷hb`5V>O^\M/n^Z[][]]}=Rh4chJU% ζbm~ g]˩ܺ`}S8Cn#ʵޏY 2J-nb~ʼns49` i럘QR7:Ơܢ Uܾ{} "}@by*GHzkuaޙ JZ՚|Q - -2q# -ّuX~z9$J*3gMV6Ԁ.ha=H?)m0<8 tсw/^~>N6x!}hja-Vh -K7)ksuEu-DŲ8OI_kUwCU]Z >S]O@Fbcq2 WSJU]>AtUd͋W?ջo3Cs>u"iV"ߨю'ia x 1EtJXjk$( Y `h}~*ktÏMޖ&z G3D`<#'?>$XiAow6>7thWC] - -(׆@ B/,l(UyǏ/H /9%T9v@ |ǔ/}ӫ\haugkQnRJU_7 -b/24QW5³\3:#8P,<,G̼XYj)M|SJLB;fqZd/}u8bʞɆ Odp4\%SA)_s}c\wmReGr*f OJZ_Q6Xy+؊ǠcR;j HË`{K:Z8wIYeɋӚy``C[0f˞SM`rsl*dP,Ccs; 4 AgH# 6y,/ 5bS8% 噉yhTfrsi[sVd4fBIō PF4m\'tAN؀Na OTb ȃ.'$p96@eƗB 큲ʪ1O8 PYBcZ1xqCKDٸ @Jť`$@&'av" 8H6S-ٰ&1oy["GҸ̠̪gTL,ql/x븝) lCO@U"ƖP -:D 'd6? %l,MO.o@ ;ϊ>~ |t^Ojpߡ "Q, _ԌCw\P6!Яa~dE*̽"iH' 6ór{kKHO@ -HJ`%7ΰX[Y\XL\ څ1]kj7f@:.XpFAS -'\ $_/lB4%)#H\A*%P@ ScC/9"BPHrK\n soߚ:7AZ;$淖 :A3sPѰŒkF,%^y64ѕɩY,`bkb&*Q+})[&((oO ,K*AH JwW}LSVfEzV=sWct܁QYrNY`(lT?ZlUn\yPn -J 4K<;Hd'wsQZ\dxĩ䌢ogVg[p ghvMխV\[3OFXИKߛ*˞7`zՂ:jY7&rfU^o<7;'1:W?FIÅVSE'9rh&yl@bs$Fvm{ݛ'WS.\HcRFqs0C.)>uT&AG^UFqBpF -ؚi-L:Eg} ~Р7r5 Ҝ -$Rw?lP<>72IU@wφYXx\,zŷ1'9w/ ;}ރAqBҟmċ9F++*E:%߸ǵhIxRNG;|<'hZ<@ Nj| 7Ͽx*{o?~173.Ƴ uҐzَpwS->,7( g+z^59"t*9}@Z*@,ـnhY+ҎQEGS;fide>Lsq -sA#Abڅg~/ҏOzX"|sEq/cD#82TDŽ]O;cP#qB!L}yv31쨻]X3k;@]qN dKS&H7;lWSd0Pq/eV!?|_^+g0$yؚ MmCdmW@esb:%GKb/POWG+78VPݿB 9<(A>aW6S)$mdjr.6ɂEIW HL/ `)H#%nQwt:ܯo"eGDF;Lpx`E`R=r"̂U2 !uc#ez@zea^TDffB 9;dY5lNF 3 ;l.ąm(60Wl #:bs>vIPn}x`g>Sw_wLdͩf uF`p:/;8 oj-uҝYؠgeR r׸6lMIg'@j/>c _Na4=k~~J#x~mD9 KJ - itь̤`R"@9uE]+o/!+XYi&fݱg -C$'Cڅ: -~JQ@|{dfkhnH̴kh$S&?\bbyqQ+4&D=s=h2*b߻AN?t?copڜk_B+w\2.E%'Pct/ i3~ZIѷI|Xտ iGAhAǽ>q7ܞ "U岞y _ -Hj nrP7jDAm"`} `hᙢ$$Y g~:a8\p\P6 @N @k|r #䰳_]pQ'Kc}҂pvMD SCoW '[_Zvk8D2S ,S"嵑LHdS7!(G=N4%H1^0mgQ% =~Ib}Ej 6mᢆXBa] Îbe)Ր -[|^$r)_$JSC89jRսc^Nfr:J yF޲ޚO[֤F8hi#dڦ[ӭnrvDޔ\:]ܺ5d@e$`;\ PDҏ;pU )\܊ n(zs1єZ6kJF1w`+Kb#ϤgX-9casqs1G-OKJ(UIJ ;rg)Ÿ9 6pW5BVSk&BP<+ ҳ>vE$AYfF ?Sey=?r[<UAqm/t$%cTcMJ]/a6$iky~d̐ *F7 hq W~ QYJH.A[g,l~k^<ꇟ+<2j+Xi,a=n#لe|V08=?I3}9DdUsMFTt,XҔ1P4J@TwCmP܌GGF =*4d) QǨ4P? n/ ]FJj܄.*'"/VNKpňa߁Qzstf%vO4;1MA[#^!*2m549׳|P398fH-@ W+5~;UkDH$ t^#$1Va. -9,03W4dO.(Wb%lt5(72rtɬ2iMdk 78T ZAc% DG ؘlx\ؘ)`\, lfs.;!(@!&:Iѹ9%@ x  gɂ0:@8nJgL\UC=pB#]f(fJ@VN>%ig}wHdryZA[(W3=~ٷt\`2T}izoT!F {(8<:E(3X~XݠE$xCi`gQAȱٗo "6P5U*([4 B 4: -g15ӆ/,' 12bK R 0"=I%]a'G(AD|3t8t>)ohAEhe6W -BNPUbvSBv-Q&Zps`7x[ 4r1:5 :o(3)\#Xj2N-@p -@KtyagxU}^1b:ˮBJ#(+3܅ } c(?êy޷ .^<.7`fIim}{m$F9%OP 1DC.[݉L~ b"2y5%0~%(@ ;P۠L`J 7. nTkB8X,-(̎ h@@spΎb ֠Cb,rJ 9A3:t͜bR=}W;49BXCY#)E/&'2.xCfZ X0"2}9$74~`MpE t膒F6,8wyTj#0')PE< pW`La*FP8`[ hT@'0wl,V9qY8`ۡ8[j71'_f-J-"/(lZ\bJb移a‡EF ă -a Z)B^'V_P "7/oYWDɉ^-3䰍mAIKξ|\>,,+%/İ(bt@{(jl?!Y昢5Z3*,@\N^wߗa??^ v!aS#vx ґ=#W6}XTO+˚0:B -990HL5RVc2F Rˠ|/PB&f)8?Ay%}aEbCO ~ \NE&!tS~,SِC,t#i$FU 9"(3hmVyp@͞q"R='32KPxEtA:!'`'*4$yX"ڜKc{Cbb(Sk9*YT*FiPx%gڱ#O6',1D"2j -5 hAkV-,$Hdq$]a6 $]3*$DlPh >Q,$Ú'di=vQn_A <`1qhXt#3}'`= Z0 'luX W *jA$72518%,\'^N 'h ] wm@p;o߷KNo5\z¤cc[ 4KLДꦜj~zJ# ^1:<K&qO!qR,}GdzAJX`9 BSb ,xQp$g5:#Y؅*~*t3KQ¬ G -}A(m2ʕ8w][F(: EHbԚ;D:^v&`& Ll=Bg/U!e u= -k?0eTaG2p^2vI: :cksbYS2*B({']1"48x=X#qDCy_ ;N"W£aFGHzc6;M6\$FQ^@,cqjK&uBP=Π@1Ha  @@Ybrm\NFڛ"'AvHbTQDǜx#G_E17G;rJ0%Sk[~ݗ^cʏ23TkB䝷tz QE Ggw"JקJwS}+sOjG1@&a<2S}HA5$2Sw 0BAIÉN0V'T#e} [`0 -|\Π6 -  И` dT /;  'Z^^ s6UXg~Ċ%Zcd퇁5̝')!˪"Mȵ7I;ce@ g^vaQ^pГn oF)P~ᄭ%}ܑ}sZ&H;kVֳ*Zd!#hb6{ݍyBWؙ%lzH߆N=VYԺ*Ylz39F/^),2\,LDɁ+JdrM.v `F=q *IGX*2.pk2D,ё:$fbg@ ǀ/CJ"]3t}N - b-o[cC}}==$UO #e{{ur=:t/9,naǓq)Fr'O{XeÖcЙO;o p: Ų\h`n@uef~qK # 7#߲ Q PW D ha_CŠ51A`֤B0ГZO*# do "aHj|%9o.׿pÎ^01vHS AkdM_\8H/JeFo#^dQ]O_&}.іiJv ;[m^wvp󋼐yv|4@8~SŁw⏹SYXYRs+zfXYxŀ'HpDŗ!;S"(i+;YoF({^_ dI%%j3(D[5Dh# Gn ْ - PQUGb^ㄊ)7FZ>^K8o*@ Y>()eu܏y)k{Oj`).+KGhv@ktMuݼ{򄿓Xlx}xG:~ZBTXHHXT|ڽU]ߒp)WGjrNE^瞵R=Je?QT}5rP '2HgNGNx{bhͣ874]<rT PB2F9<\}3/;p!7'h&#JMP1pk %lCoFWn-Oս-#-99ꝜCs  - M -Umsk퍙^O9vxd܊^uvDѳGX,BbQ:{uX\V0삲$'G. -_}xzy([Ko 3o\rΣUmХP9XRCJH% ;y%Uk -3W$PhW* gh?hAx> `Mq j`a\1HȭY2(X_s7%e+:p'N'3>tNmo V=񠠬w1~w5@8®.Qc?Z}HJ9"?}_@mKmKm~#<__yY8 la8bge)+EY;Tea -"%xcDƧB{ZjYMlvg{u[͚[܃Ea>;ts9!iA7׷(lt+1'J B^^%Ҁ@ƫ٘7*mh?L1nte>NtT:x)DRSD!=@7h %UBc/0Y$/}^?Bndt`τ͹ˁر#@0 5 P2k#WD:75& d:wC,//Je!3( -}ΩE Gta7J&6HLo:PҪ²1% d%.hQ`T\ZO.<sbn ̀0 ZK/':G1%"!F#4^C?޵O=*BVnLv}J»WMKo$hyevblj%@NP7vc߶a< ~tQpD<~fWabӾS GA)nJW;X.@731F O`vym?-4m-i5ֈJf>Yc䈬@N7ZJp{>u 5^qe e;VZHjq#yWL(D_[K4qe1wZj*hی8ómF l -CWUH%` N>B*P -S aPӤ4(A#u7^VVQ}^6!o\LYIVMyZEC۠ Oz& R! 'JnE3b}o3ډ0:$z17}F䇁JK`e8=o"lE\}=V\ix~`CJn%8)ሎ]йw̓3mtQ@\ϮGkT!$5sx0A$1peUSγ?N&ѕ֎cN4AkhU\=06=7,M 6Uzv҇ -zSIk|q6'jZKLtl;29e4> RM4UgIZdyS__Wq;0O|QQW߀T>Ҩު\=-/0U - j[p[{a턟m555},*6VA$lZ泷:{z{{:?-H3LQgյ'x7 !{;[{`7 Zh@pܵGEť%%/ 3/jɕ#3sx7[34?=%:L e1s -aSn?@ҨyٷROEZ%/Ϡ'kttԉ w+m&Z{;%{̋VfdPA0ƛX4 - h DO)q'B,5X?,& gbNxؚHb}cK;GGG; /30q 8E!/^ptLX[iD7dmwںG%p19|R\TQW[3+@$-<O$Knk#X9$֪hhH䩤Ɉ\ҩУn ~gPfVYl>^.6Hc*ũo`hdllld$7<@xM]^|@/V 7rd.DG CYr'Y;S>,i3oXDGDH=dYV=Ͼܒڊtʠe<³j҄[rceZ%dRd8"TTXNj=0e/D"r-+7@Yw Db@s7i@MFmZ0 -&Qn)XMCгV}1s\ ٨\z$ ,3ӈAD럦!Hm/Ʃ[4qF\W,B7higgsiJQ0kGP gA7`b\jl]=u$fKph@K"@Ś?̠DgWw!^20/jb.P=ӎrsi"7%i! Л@M: EH[ `!*b+M =(ҧЦh<\ - RȠ%MVG:ވx?RPJ0A7` @;;۠WY珻9;ğs'ݒ ܎T<@Lpء&ώtה>LpH.yx>`m FfBknm) B`M09Q]s96pd!2t}$j@d/²iCx4 VkK E. -t{Uq}=?G襢m$ ~͍Օ兹Oŏo_p:Ep?z{y]eMc[щUz5p X[[]YZTSÛɧB},iC z:C+ -4؞Qs+rZs`hdtlbbrjzrbb|ltdh{og[s}uէ%n% q1LSEGK1Yr5?$"6)ʭ{ٹE%ߗW~ohllhRYmgy9w_JN >Hz͙C9ZP(?s+;'woQg/^q;~VǹdgϸsjsC+T!GߞG4̀(}M_rc3+[{'Wo_'#cbbcOF8|,T}fIG2L;Z Гr+7 @V66t<ё[[Y>=]:"yH@J[DQ0[8}PG/ӓtuu@φXv2#1;ON# Y_؞.I\!wI4^hp8"=_ 92J[R8,tL<E@\CBgrMp3(7g{ާt7;$ 1r{X=".n5v&KoG{X -W 0 -LRZ&װ݌B +c-e N2Z8<"H#5%C 1p {}DwV>䤝w132""U$P(@, Mm]]t!1x=>A -Yi<`fl$7407744곅O`XL\q=_&͍UXƦbcuӍCJC$5v -clq] 6(GRZ\Pl)Rloөw8quV!%!5HWZcjySGF"wo OռSK[$/qPqqf +7-)PKpҝg-?V60f47΀' [% ?Os`|viuC r@'pU`8=1[uC`js̍Gu}C +[L,Dk̐/ 秆zZ><d{x"WplozG&fTf -兙]U EzтOHws~Z}`xtbjfnnaqqq /s/%9[ZHGċ3|󩪺pݫ2^8fKG9D"T_nnv2|<+*~UC7/''Dzؚ(0LM,\< =x셋 ؏ ;hkalM߀X#302c]=<&||<ݜl,͌/ ~!D5]]kddlbjbbblldh'+8ALe> -stream -x͎FaLvmc -/۹\/EO)J,gY| -)"e_.,˲㏆~jO?Qm\.K]weYwrLJ~믿_W*zA4e_T˗W[*QE/jC'_Z:37re6? |SґW㊫7 2H4'iAz,|@O=˳p.EO8TrCSӇFk| -q^/˲ ۹z+_|_PbMA)jA5j`6cgNS˲e - 0h+B;d8X@Y5WOnOeY. - B\>wǑ.j9$Fc8x"㧉7Bg-5ay~7qwG;̕Beu(="Gk2U5 T7\T^VGa;/Ç@)GRAC!lGiDy7Gq_ }uykKoLypUiG+zT3ZS5_%{g_0P7d^k b}vx'G~q4"8h J&xl M{`yY],^³}ySċ %s,8:|H˻լ`Hڌ'ʹz,)=sn D|MM=P_zA;wө{<| L@B5 *Hgp6\'^k(75 !cgU:C TPEnF =ԓ@PvN{ƉM>3S -6W|_ky @ 6X5.U{0P5AH4ĎGSiQ867e -jPA'#3jcZuy巂j^kz g8p5=V%Da4'a6 9@vK~齩G$ǫXS^4@e9j@ź;|ʣ%T=4Ah줂 9$@=vs;W{pz;Gu|.J;p6'|Ȋٴ6&HPkN+ Vx=~p|47gso p"GkjY9ZM{@@]X -@ғ0U5[?/㧘o;O(8A4>&|au'Oq;OET9d 0[eV SI=D?'1jpU!m ~gêwr>nm9 D IyP#p^/[ BVú {f,ח}ƃٹl?< -``Y^}2׊1`bZcEl6[a1c{T|S:?%͋C^Ŝm6^A`ue_M|fqOa%$ GR *&\+=+ _ߠW/oͶ=PrQ+W>Vp@?}o`Bm 0γxSKj'Gl6<4*ٲO##̈́c4Aڬ9촊 M ' O& ꫯί= rapBrM :ڋǯV^ &fzmo>ʑgm`7*3l*ڦF{KZ^JT̙b @ςZOk䔖[KE -N T$ 9A4A5 až蘭zM=kR_97Uܼ_,w='mZVM<쁊oř-3` >;O]mϢņ}-SQ{mI9i_/WKZ_ߡgW3A! ^Kf/%j5^j=hiaj|6 ̈́N^cD\/jgg>oX*az?AXiYIR:x)P>dlR(~Zڀqoѽ =JC1wX+"`>}pk`S9+H]gў<xլcFk>I@jjAf֦u&1XP4 15j5n$[{3= 83{~u*[@+Yu7y Tucx{Pe۶ݜԵc<{2JU͍S] ->Ʒ=Td3^W=o7*\ -qN$3=^nd&LPmAlawlvx|U4 ah!B=n02!Af uL 0FdEzjjC'H9A{ӽ`b65y|o =㣵 B'veYfx 뽉gDu|WkfM0V VZ?MFl'տxzsg3nϑŃffrB66v1 T6?Q]=X*s OuQف QgKNC6s}FVY65A8Є1fT$`/OM >meGއpgT]6NE@@*Wwׄ:gSt` e~gt1 Ԧvk').b/T"0ŭ ǘ:N& Ԫ*rS;0PYsu -Sqp揦ӎfBE{ڣg.AdI~[@0P3fMsWI{lSu -S<j~o:g͢G[$ 9O$LɯN1}igY@`} fYf*+z@8P=ӳwy ?8}4N84]vA8;jSgO,kW\JLGII@ȕkG'W~}+Yf*+vH}:U=Nw8m5>:N2$3ΏlzU; ަ~jҟedLҙФtaCVA* TЂ5L{ 0V'tb*Ua0PpID֘u\m5B0IE2^uA᭲DXȑfB΄&Vn|AکȧfA* TeͣK3PA:?!|D=溂`" -jos&T9h3W,2)rM,"P`E½ ΚQ56 M` M  ȡin̠քISO6͐fZsm#VȘ@ wnmTa|k5LA5a d0yHA½Ռl˶5 *2 4YJydpRLgmf]9⬠\EfKU<X5曜Ep{wDM{Ȧ@ YPSTT3h5j @E_gŽs{3۶] -&'|/dx7V|W!,zyy_Wt&RV3q\*ida۶ˮVm֬f{Y'5ږG} -oԆNz:BLT*z@0PA ʂ*2[5U; T"  vhWSH=-cͬEFrM " ƀ $z^g>I -ƀdRMeg 5eP*O)ME AA2[<0P_޾I'' !/BsSSؽu~̵Ko92^i+eqS5c:mZIa滌 PLUm ֩:4qWS51fgrѡ̣ oњxFUPF"/1MuEmhG#fm|urkfamgϣzUmnxm,ˆIQ{ڪU7;Tk"#_cMwȔ <A֬Cf"7ǝ yOSsΚњo,7Gv.+_'.bo{Z]9Ax#~Nl5 7o{:yscbm;||{⍴եN3*6ub'RH3aO@ P 5h@Ig$ZAp,B65&?ߢ0-\:jj6i -f -BDM*& \$;>#MK 09 ~xLޠ2-{x?B m |L9eՑf+=^N׽e]W`"S<Bcga -cz@PHs@f͢!Qk==!'?VQ0 ceE0(`@@³OfP.n$"L4ZcZOkbxTfT{(MC Χ`"'SL/Ap7Mo.<&$'pfJ8 恁 -^w*@zj۶˿s~kz5P6aW;lJ{7Nji ǫ/\lt֌WpӤ66CB5wZGG{l {PYr#UǓE>ps@4AFm"PTJ'xNrfןSn@⤢] -0Pa\u]eLH ^u?<;/;ͺz(׫Ga*k3vZGp^/zkfc:\[<\ -YbἶT&٪xwFS7XDdռ zD`@AdP)>P8xR՗̞nTh6cg^MnRwA+9E>o 8 -u TxLJ,DͬF\QS'SȭX_RTɎbIvAo@eq* B΄Y:Ah줂71 f={9NZ֓j},X}mUsYd3,Hio|\ sиU7|5`,QYC.S ǐiI@ ˰iA5#̈́L'M*zD*0PE3#xzI #~{pF>c.0S5Vb믹oYEU$xR*ھR[Jir*H. 8ދcD=6A@B88ʍ?؞q lXIPk|&<-fل,kM**SCњSfjҟ7*\aoF۶]^~6^`y"k05PA@½\Њ̾|O?+\ic8"krDjl)T -b<~]=u֧pKh}[7l A& c9x>TsL;Mi4A4j=˿a)<5 q}T^SԪmOlcFWi RE|vڜbfÓם9dcnRahԛk._Yd$5p}xMޚQ<8]iV6hI[0jLQoM#jVzi,(3Ud7 S7@Y72{F}#?SUqSm$lS,a\mN7 S٘d,P1}G(uk~$RA8ͨ_m硂=T>Md#] Si%@Pͨ͛95&Uz=TAЙ,{yģ ..E ymOi ػ;lvw\̽GTY{ V)4g\&2zɄT3})=)PU`Zdy.,x{jcT|AǶm)ǖ%޸V1p Q^ Hpu7x 3 M: 0PtZPjnCcyglZ{68rNM/./ո'#i7m^HAT!pkϖDM8XWktNqPGYU m.сLNUjْ" 4d:d&ȡ9Ah朜^|pRS`;i^U6PQCpdYϒD%#S7`HG;bQƃ0U9{` a@Bi F:3jK$^ӆAdG۶]^n-wMp ~v&T}(> a@q>X Ϩ ` h0 B5v?M/ѣL8`@̟ӻñLR `XCjIᤃy(iUrZ EX/aV&bi Sbf$ymmjR:x_7+ryAjI3qa- MԚ B&QppZAHɀ02Ir݋Mk: 63̈́3`T V]\ -Ud;aӪ#* PNq j'UAtP=J?LOm.Re U֕PΚN*pzNemZgYmPA@lZAwG~w>Wg V4PAH38ڑޜ'pz,/vVN;:-ZӝVf >#1^quOM T%@j='xO aM\ z&5$4Apĝfa44?^$<* -aohhM Toa a4Cjش9_2y'lR#MA< FꪹgI 79jZS\1ƀ rش0fj臁Amaʓaʥ`.n=ZE! *[…ڟ<Z3mMz+jc_78 -'gjpQA|[7KTwK9̵q'0kc 9Z'͊@Z= -Ud T1XAyThMUdqAϮ, QzZZOHd9{|z3[Nb h:eZ$ lO!ӂ2@ _1p#%5Z@[ *[`j5ɭ=Vj=Nܰ9ԃu+J''uuʰ=@@BE'a - hh1l՘a)VwB 1j*'DT 'ۖȴ3[|J\t*WMYN۶]un;.T 6y@/pp?>u kYf+ ֻHWH[gNRz@NLPޅRx  0XAaTVc4 @Ad*z@@hд1<954y0geYJ&\R0&n?kt]0[Us|zdǪA@h{z˂[ LSӋIbE (ȻtMA\=prX#A8ڙ\@%  5Ԛ - @x*3Pcz(6Գ*𰼡rSqf7Ҋ.6S廝թN[tX1 M^n-9& 2#?j=Ys5*32PaְiՃ[!O9 @,W+[(F U]<ߢ<#66y ROba"򸮆u!d`j])9:nTS _ERmvdxFm./\BgmZG{ Tњ\4[Sse SOc -Be.n^^r@W 3|e)Sf_{k-W?ϫqwME~h& |lon SuQ9ٓ *y=l'{1 m٨U^r&ZMQ5c$ ҟ@m65ϨcQ@B]I'qc& a6n MeExQMu>/%W/Wkpg^'9rhVul6[ӡfbWSz^!3%+'׸E y ~:|0@k{8pbp!S@@ pUfi: M5eg* ʹsδ6Ldýyx)%^^$aض1d^:qNƫ -(^]"Y~:՛Rorkע9T\˙xf[5B 5yǶm'O*rbu}^{ka'7Q0NsjiC{1* rBشM5o!=^epwNq (5hf{d? Bz4X+{{5sCáeYώ}5cB@8cihf|0=cczDͲ,gÞ\ A"M#Ǫ+D\eY= Ad:ADzPIEj'T#7փ,%B.h*3j=4aHEB35O jn۶˲,˗Άu87~* 3)3U{6#GeY/ߐP׽RY{2$p#A:ahvg˲,_4 9:x@[5N# eA{,,Oik,@jO2!h>foYA@62~e.˲I* xUa)5A `@nc²,*@ a.T/V_s ڴNVcOj,'70zu -7,rOjS/5 4jW_O)7*l֦}h Ҳ, gEs'hj?o뽣R4,:+?CZei/7qG4 1^G]#wx#} ضmu/Xe9/j{샠iSqyVzaYedS+z@4T5o.˲,#E"c]eY>_~?mO·yyYe,5=ҙ3_T¯,˲z' s8˲,k|~' B,9%=W"LEUGʟA[,rw:Oaޣt۶˛_U,Ȼ=|Z=j,r TՌ4'Tԋy/2s3~,˲ܴ}~i;JNz@T5&\/˲,w \oE\TfkEjh\W*iA>\ eY1?0~.͞4 V$(̈́& ;PmeYeyͥ\+:AڬY7{j\3SX,FN L塄=u^t&TtuwXey/׿ֿ6Se"ajhM=N,˲<,.i&Dz Td6vRA@B=UzY: :3j4AVcC]eYwyfG"= = -KeY|zp/o |;ʖeYxuݶR}i7 .T1+eY-xQ?]i0²,~?mU[_ -1ƀ0]5߽>/,˲C?6p*.@}PJ|Zv@8ǶmeYv.ԹsE>̗W߿?aYѲ,TߟAEr^eY`]eYP@ -endstream -endobj - -8 0 obj - 14846 -endobj - -9 0 obj - << /ExtGState << /E1 << /SMask << /Type /Mask - /G 1 0 R - /S /Alpha - >> - /Type /ExtGState - >> >> - /XObject << /X2 3 0 R - /X1 7 0 R - >> - >> -endobj - -10 0 obj - << /Length 11 0 R >> -stream -/DeviceRGB CS -/DeviceRGB cs -q -261.000000 0.000000 -0.000000 67.000000 0.000000 0.000000 cm -/X1 Do -Q -q -/E1 gs -/X2 Do -Q - -endstream -endobj - -11 0 obj - 118 -endobj - -12 0 obj - << /Annots [] - /Type /Page - /MediaBox [ 0.000000 0.000000 261.000000 67.000000 ] - /Resources 9 0 R - /Contents 10 0 R - /Parent 13 0 R - >> -endobj - -13 0 obj - << /Kids [ 12 0 R ] - /Count 1 - /Type /Pages - >> -endobj - -14 0 obj - << /Type /Catalog - /Pages 13 0 R - >> -endobj - -xref -0 15 -0000000000 65535 f -0000000010 00000 n -0000000493 00000 n -0000000515 00000 n -0000009734 00000 n -0000009757 00000 n -0000031385 00000 n -0000031409 00000 n -0000046488 00000 n -0000046512 00000 n -0000046851 00000 n -0000047027 00000 n -0000047050 00000 n -0000047227 00000 n -0000047303 00000 n -trailer -<< /ID [ (some) (id) ] - /Root 14 0 R - /Size 15 ->> -startxref -47364 -%%EOF \ No newline at end of file diff --git a/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Welcome/mastodon.logo.large.imageset/Contents.json b/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Welcome/mastodon.logo.large.imageset/Contents.json index e26db2fac..ff1493e96 100644 --- a/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Welcome/mastodon.logo.large.imageset/Contents.json +++ b/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Welcome/mastodon.logo.large.imageset/Contents.json @@ -1,7 +1,7 @@ { "images" : [ { - "filename" : "logotypeFull1.large.pdf", + "filename" : "logo.large.pdf", "idiom" : "universal" } ], diff --git a/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Welcome/mastodon.logo.large.imageset/logo.large.pdf b/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Welcome/mastodon.logo.large.imageset/logo.large.pdf new file mode 100644 index 000000000..63f9239a8 --- /dev/null +++ b/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Welcome/mastodon.logo.large.imageset/logo.large.pdf @@ -0,0 +1,1286 @@ +%PDF-1.7 + +1 0 obj + << /Type /XObject + /Length 2 0 R + /Group << /Type /Group + /S /Transparency + >> + /Subtype /Form + /Resources << >> + /BBox [ 0.000000 0.000000 968.000000 252.000000 ] + >> +stream +/DeviceRGB CS +/DeviceRGB cs +q +1.000000 0.000000 -0.000000 1.000000 4.000000 4.000000 cm +0.000000 0.000000 0.000000 scn +0.000000 244.000000 m +960.000061 244.000000 l +960.000061 0.000000 l +0.000000 0.000000 l +0.000000 244.000000 l +h +f +n +Q + +endstream +endobj + +2 0 obj + 237 +endobj + +3 0 obj + << /Length 4 0 R + /Range [ 0.000000 1.000000 0.000000 1.000000 0.000000 1.000000 ] + /Domain [ 0.000000 1.000000 ] + /FunctionType 4 + >> +stream +{ 0.388235 exch 0.392157 exch 1.000000 exch dup 0.000000 gt { exch pop exch pop exch pop dup 0.000000 sub -0.050980 mul 0.388235 add exch dup 0.000000 sub -0.164706 mul 0.392157 add exch dup 0.000000 sub -0.200000 mul 1.000000 add exch } if dup 1.000000 gt { exch pop exch pop exch pop 0.337255 exch 0.227451 exch 0.800000 exch } if pop } +endstream +endobj + +4 0 obj + 339 +endobj + +5 0 obj + << /Type /XObject + /Length 6 0 R + /Group << /Type /Group + /S /Transparency + >> + /Subtype /Form + /Resources << /Pattern << /P1 << /Matrix [ 0.000000 -242.733612 242.733612 0.000000 -238.733612 247.147812 ] + /Shading << /Coords [ 0.000000 0.000000 1.000000 0.000000 ] + /ColorSpace /DeviceRGB + /Function 3 0 R + /Domain [ 0.000000 1.000000 ] + /ShadingType 2 + /Extend [ true true ] + >> + /PatternType 2 + /Type /Pattern + >> >> >> + /BBox [ 0.000000 0.000000 968.000000 252.000000 ] + >> +stream +/DeviceRGB CS +/DeviceRGB cs +q +1.000000 0.000000 -0.000000 1.000000 4.000000 2.211426 cm +/Pattern cs +/P1 scn +223.730621 191.199173 m +220.269104 217.264771 197.839127 237.841110 171.284851 241.799530 c +166.791870 242.471710 149.813065 244.936386 110.478516 244.936386 c +110.183769 244.936386 l +70.812729 244.936386 62.378529 242.471710 57.885239 241.799530 c +32.030567 237.915787 8.459440 219.468048 2.713966 193.066116 c +-0.011457 180.070541 -0.306097 165.655823 0.209523 152.436340 c +0.946121 133.465759 1.093443 114.570023 2.787622 95.673965 c +3.966180 83.126495 5.991842 70.690964 8.901408 58.442535 c +14.352245 35.812286 36.376640 16.990784 57.959160 9.335617 c +81.051300 1.344009 105.911919 -0.000015 129.703659 5.489471 c +132.318665 6.124054 134.896866 6.833466 137.475067 7.655151 c +143.257462 9.522385 150.033890 11.613541 155.042755 15.273193 c +155.116684 15.310623 155.153488 15.385147 155.190292 15.459976 c +155.227097 15.534515 155.263901 15.609360 155.263901 15.721619 c +155.263901 34.019882 l +155.263901 34.019882 155.263901 34.169266 155.190292 34.243790 c +155.190292 34.318314 155.116684 34.393158 155.042755 34.430573 c +154.969147 34.467682 154.895538 34.505402 154.822235 34.542511 c +154.748016 34.542511 154.674713 34.542511 154.601089 34.542511 c +139.353043 30.845444 123.700752 28.978195 108.047844 29.015610 c +81.051300 29.015610 73.795784 42.011505 71.733467 47.388733 c +70.076012 52.056534 69.008049 56.948853 68.566086 61.877975 c +68.566086 61.952805 68.566078 62.027344 68.602882 62.102188 c +68.602882 62.176712 68.676498 62.251556 68.750420 62.288971 c +68.823723 62.326080 68.897331 62.363495 68.970940 62.400925 c +69.228882 62.400925 l +84.218689 58.741257 99.613655 56.874008 115.045425 56.874008 c +118.765503 56.874008 122.448158 56.874023 126.168236 56.985977 c +141.673615 57.434372 158.026428 58.218628 173.310669 61.243088 c +173.678726 61.317917 174.084183 61.392456 174.415436 61.467285 c +198.502548 66.172516 221.410675 80.885986 223.730621 118.154839 c +223.804840 119.611092 224.025665 133.540283 224.025665 135.033966 c +224.025665 140.225021 225.682816 171.742767 223.767731 191.124039 c +223.730621 191.199173 l +h +f +n +Q +q +1.000000 0.000000 -0.000000 1.000000 49.436829 165.103180 cm +1.000000 1.000000 1.000000 scn +0.000000 13.742415 m +0.000000 21.360460 6.003528 27.484528 13.443068 27.484528 c +20.882914 27.484528 26.885828 21.323042 26.885828 13.742415 c +26.885828 6.161789 20.882914 0.000004 13.443068 0.000004 c +6.003528 0.000004 0.000000 6.161789 0.000000 13.742415 c +h +f +n +Q +q +1.000000 0.000000 -0.000000 1.000000 108.917572 102.776794 cm +1.000000 1.000000 1.000000 scn +140.506592 64.230759 m +140.506592 1.045578 l +116.014610 1.045578 l +116.014610 62.363815 l +116.014610 75.284561 110.711319 81.819916 100.067276 81.819916 c +88.318474 81.819916 82.388847 74.014786 82.388847 58.667053 c +82.388847 25.094963 l +58.081230 25.094963 l +58.081230 58.667053 l +58.081230 74.089928 52.225231 81.819916 40.402508 81.819916 c +29.795889 81.819916 24.455156 75.284561 24.455156 62.363815 c +24.455156 1.082703 l +0.000000 1.082703 l +0.000000 64.230759 l +0.000000 77.114693 3.204189 87.384232 9.649378 95.001968 c +16.315704 102.620323 25.044342 106.466766 35.835602 106.466766 c +48.357925 106.466766 57.860092 101.537338 64.121254 91.678780 c +70.235199 81.222137 l +76.348824 91.678780 l +82.609680 101.499916 92.075348 106.466766 104.634178 106.466766 c +115.425430 106.466766 124.154060 102.582596 130.820389 95.001968 c +137.265579 87.384232 140.469772 77.189224 140.469772 64.230759 c +140.506592 64.230759 l +h +224.773392 32.825264 m +229.855560 38.314743 232.250977 45.111115 232.250977 53.401466 c +232.250977 61.691818 229.818756 68.562721 224.773392 73.790886 c +219.912048 79.280365 213.725754 81.894753 206.248169 81.894753 c +198.771530 81.894753 192.621094 79.280365 187.722946 73.790886 c +182.861298 68.562721 180.430618 61.691818 180.430618 53.401466 c +180.430618 45.111115 182.861298 38.239906 187.722946 32.825264 c +192.584290 27.597099 198.771530 24.945297 206.248169 24.945297 c +213.725754 24.945297 219.875244 27.559677 224.773392 32.825264 c +h +232.250977 103.927216 m +256.373688 103.927216 l +256.373688 2.875412 l +232.250977 2.875412 l +232.250977 14.787994 l +224.957428 4.892029 214.866684 0.000015 201.755173 0.000015 c +188.643661 0.000015 178.552017 5.041397 169.602249 15.348358 c +160.799988 25.655014 156.343811 38.389275 156.343811 53.326630 c +156.343811 68.264290 160.836792 80.811768 169.602249 91.118423 c +178.588821 101.425079 189.269653 106.653244 201.755173 106.653244 c +214.240997 106.653244 224.957428 101.798645 232.250977 91.939789 c +232.250977 103.852371 l +232.250977 103.927216 l +h +337.547302 55.305824 m +344.656830 49.816643 348.193237 42.160881 348.009216 32.488808 c +348.009216 22.182152 344.472839 14.078583 337.179291 8.477158 c +329.888794 2.987366 321.083191 0.186798 310.403564 0.186798 c +291.142242 0.186798 278.067230 8.290054 271.141724 24.198761 c +292.065430 36.932709 l +294.859528 28.269096 301.012146 23.787773 310.403564 23.787773 c +319.022095 23.787773 323.294586 26.588638 323.294586 32.451691 c +323.294586 36.708817 317.694061 40.555260 306.278320 43.542610 c +301.969055 44.737854 298.398956 45.970215 295.635529 46.978371 c +291.691223 48.583992 288.341980 50.413811 285.541718 52.654320 c +278.619293 58.143799 275.085999 65.388893 275.085999 74.687393 c +275.085999 84.583061 278.435272 92.462723 285.173676 98.138992 c +292.102234 104.001740 300.530579 106.802917 310.624390 106.802917 c +326.717407 106.802917 338.467468 99.744926 346.165894 85.404739 c +325.613281 73.305664 l +322.632080 80.176872 317.546814 83.612328 310.624390 83.612328 c +303.330841 83.612328 299.794495 80.811768 299.794495 75.322281 c +299.794495 71.064850 305.395020 67.218414 316.810730 64.230759 c +325.613312 62.214447 332.535675 59.189682 337.547302 55.305824 c +337.584137 55.305824 l +337.547302 55.305824 l +h +414.227722 78.907104 m +393.086243 78.907104 l +393.086243 36.858185 l +393.086243 31.816803 394.966400 28.754616 398.536469 27.372581 c +401.152710 26.364426 406.382080 26.177948 414.264496 26.551216 c +414.264496 2.912827 l +398.021179 0.896210 386.237457 2.539566 379.315033 7.954208 c +372.389526 13.182373 369.037201 22.928986 369.037201 36.820763 c +369.037201 78.907104 l +352.793854 78.907104 l +352.793854 103.964630 l +369.037201 103.964630 l +369.037201 124.354202 l +393.159851 132.233719 l +393.159851 103.927216 l +414.301331 103.927216 l +414.301331 78.869682 l +414.264496 78.869682 l +414.227722 78.907104 l +h +491.128937 33.422424 m +495.990265 38.650589 498.419403 45.335320 498.419403 53.438576 c +498.419403 61.542450 495.990265 68.152031 491.128937 73.455032 c +486.227722 78.682892 480.262238 81.334396 472.971741 81.334396 c +465.678192 81.334396 459.712677 78.720314 454.811462 73.455032 c +450.137238 67.965553 447.705017 61.355354 447.705017 53.438576 c +447.705017 45.522110 450.137238 38.911903 454.811462 33.422424 c +459.675873 28.194565 465.678192 25.543068 472.971741 25.543068 c +480.262238 25.543068 486.227722 28.156837 491.128937 33.422424 c +h +437.838196 15.460297 m +428.296478 25.766960 423.619141 38.277023 423.619141 53.438576 c +423.619141 68.600441 428.296478 80.923401 437.838196 91.230370 c +447.373779 101.537338 459.160614 106.765503 472.971741 106.765503 c +486.779785 106.765503 498.606476 101.537338 508.108337 91.230370 c +517.610168 80.923401 522.508362 68.189453 522.508362 53.438576 c +522.508362 38.688011 517.610168 25.766960 508.108337 15.460297 c +498.566620 5.153336 486.966888 0.112274 472.971741 0.112274 c +458.976593 0.112274 447.336975 5.153336 437.838196 15.460297 c +h +603.163696 32.862373 m +608.025024 38.351860 610.457275 45.148232 610.457275 53.438576 c +610.457275 61.728928 608.025024 68.600441 603.163696 73.828300 c +598.305420 79.318092 592.119080 81.931870 584.638489 81.931870 c +577.163940 81.931870 570.974548 79.318092 565.932251 73.828300 c +561.067871 68.600441 558.638733 61.728928 558.638733 53.438576 c +558.638733 45.148232 561.067871 38.277023 565.932251 32.862373 c +571.011353 27.634209 577.347961 24.983017 584.638489 24.983017 c +591.935059 24.983017 598.268616 27.597099 603.163696 32.862373 c +h +610.457275 144.407715 m +634.579895 144.407715 l +634.579895 2.912827 l +610.457275 2.912827 l +610.457275 14.825424 l +603.350830 4.929443 593.256958 0.037430 580.148254 0.037430 c +567.036438 0.037430 556.798462 5.078506 547.772034 15.385773 c +538.969421 25.692429 534.515991 38.426392 534.515991 53.364052 c +534.515991 68.301407 539.006226 80.848877 547.772034 91.155533 c +556.721802 101.462807 567.585449 106.690666 580.148254 106.690666 c +592.704895 106.690666 603.350830 101.836067 610.457275 91.977203 c +610.457275 144.370377 l +610.457275 144.407715 l +h +719.326782 33.534683 m +724.188110 38.762848 726.620300 45.446960 726.620300 53.550835 c +726.620300 61.654091 724.188110 68.264290 719.326782 73.566986 c +714.465454 78.794846 708.499878 81.446350 701.169556 81.446350 c +693.842285 81.446350 687.913635 78.832268 683.012390 73.566986 c +678.335083 68.077202 675.902893 61.467613 675.902893 53.550835 c +675.902893 45.633751 678.335083 39.024162 683.012390 33.534683 c +687.876831 28.306213 693.879089 25.655014 701.169556 25.655014 c +708.463074 25.655014 714.428650 28.269096 719.326782 33.534683 c +h +666.032959 15.572266 m +656.534180 25.879227 651.817017 38.389275 651.817017 53.550835 c +651.817017 68.712090 656.497375 81.035660 666.032959 91.342316 c +675.571594 101.649284 687.358459 106.877449 701.169556 106.877449 c +714.980652 106.877449 726.804321 101.649284 736.306152 91.342316 c +745.841736 81.035660 750.706177 68.301399 750.706177 53.550835 c +750.706177 38.799957 745.841736 25.879227 736.306152 15.572266 c +726.767517 5.265610 715.164673 0.223923 701.169556 0.223923 c +687.174377 0.223923 675.534790 5.265610 666.032959 15.572266 c +h +855.082458 65.089851 m +855.082458 3.025085 l +830.959839 3.025085 l +830.959839 61.840881 l +830.959839 68.525604 829.300476 73.566986 825.877625 77.375702 c +822.709290 80.811768 818.216003 82.604172 812.431458 82.604172 c +798.807434 82.604172 791.882019 74.313820 791.882019 57.546638 c +791.882019 2.987350 l +767.759216 2.987350 l +767.759216 103.964630 l +791.882019 103.964630 l +791.882019 92.612091 l +797.663452 102.097687 806.870789 106.765503 819.724976 106.765503 c +829.999756 106.765503 838.434265 103.142960 844.991699 95.674278 c +851.733154 88.205605 855.082458 78.085426 855.082458 64.977905 c +f +n +Q + +endstream +endobj + +6 0 obj + 10350 +endobj + +7 0 obj + << /Type /XObject + /Subtype /Image + /BitsPerComponent 8 + /Length 8 0 R + /Height 502 + /Width 1936 + /ColorSpace /DeviceGray + /Filter [ /FlateDecode ] + >> +stream +x읅CJ*8ť8").i{LMvei{}N&9g? +`XzZS)fYi„  M5Ze6„레) GٗĂ Y%␱$UUr#2 &ZiހfJY-"B +ۡHQ-(fJ̊'O9#BKJӓPȏi{H!LPAW*FsWA%5 . +_PP(j=[^^YQYYUUSJ}]u dn+f`8HF*sv]ׯI_ռ:*e]XP %{Zg%&*(eDnÄ &>z_RY[ -jrZhk_e&>{(؄  U&ft4q gfC-/kQh[ZZZ[;::vv}z=߿uJ 2~-t\ggGG{[[kk Fe_TWWUŴFAQbAvVmfQ̱#^6&L0wqd̂M-XͫҼ1I"LOD0N;cEO:ㅘ/9SU]ًE*Nm_q`pphhxdddtttlt||B199959555-̰,YMSS91ёᡡA)}}{޽z5MGhz\nsjrr29.fJ%K59L0ayIT|jnwCc3 fm!ff&GkKS= 0Ac%>4T1&N1".zYZ~]4p^0wl|eB/,,...---/- + +kk +ce +⮮r +/ ..,.,,RQm(~@4;G7\"~tX(TqBXXĥUյuov{Fc_X+5+pk[w`wwwbe:sz!NvwvIp[EP^ZBMϣѢ11Q=J;c;7_*J^j"#=5% 'vlgZ'?aL„ ƃ<QR94{xj>I6eWEa}ԏrR3XUQleU5Bk[gwOoZxj,*xeE_xї΃U('''ˋKbf+Y2_XIL3R&}V=Ծh-(i444f,@oϻΎV+KK +E+;&JLф & E&5_?-#HW]I ]aA2.~PqZFVN^!ʚں}C3X˫m ߽},Z/EwLZqOL`S>f,KLjd 1$3|$1)Rٗ\iQXӢņƀF9c;PytdhPێ|u`*rltT'OJ &LGĤV4M]|Wǫ줘%L=z̀qTL|41޴E OV6D 4h_xQ(]t'zA_oVKBY0Pj2kHC$yr\P JZ ljQТvֺռfb~*Z 7;;YXp &LEƦU8o,Y0ׯ/֦zscq?e,:6.19-=+]\QU[]o?6X[;Z6FъZ+- + ?Ԭ6~o3DHTFઊ/hQhhQW1mD1//.Ltu67(-.LуɢU'L0NqUs[ן? cX߿^m5UF< +*aleᦎGgf.~Hq/Fy4(b0ưX¢oo߿4u&%dZ~2 ?HpT?FII-hp,&3zR~&:eadgɏ~0am['7_ Fo>.M q'2f2/*|U]8xiXbq⾠P{_'Yam(|*Uec_Cx$9VʙIЦrVGdF/lm,-`*l{SWSQR$*yBlԳO:\„ cQD\j^UМ03p5B7W`D0$6~42:.>)5#;م嵍-M|%-jsXibƊَo_ʣ +_됅/Dd̵l1u,?PL_~֊˧'h͵Źɑ]M *K +s_''Eq[?Ľϳ &L_aH+$B|u񡿹<792~hĔ<, 17..MaLQm2_ʮ̂ u} p!Zf֚oRWWgG[+ cC}5%9ib$G>Q^밍&LWUǴ/V"߱g_-$:zyjfNAIūΞyb'gbQ\/gp3l]R rLVc`ogsuinz|uuYqFh<;a0a(}}l?nj70 +Ʊ I/rʪ;'0׷wN/ŷXŨ*Ĕ#?|Ύ=޶dzoH?Dߞ*L~\DeQb+|}}yNZ[F%jm|YhhdT2O1L0v?=1э?8<~FP8"2:619=eE훶ޡ|J3T(W +)P 4>C8yp%~F'a_>tsuyT໎UhTS#r0ahL}\64m-h0 +) lm8%3NcS[8h6[!%$l t:m4KV2Vɛ&z߶Wf$8hpM +_c>>A6t_q{ z68E>O@W׷t^\=<eaUbM-sĭع B@"fI$ 嚶aK!`&ˀ8w֗F[j +sFx8Ä ޯΫ[(},W~J3Ba78#oDLƌ/?1b]VX^^NAʆ(dxCvkuGcĤ;TǛ=сƚ"Ƒb<0a~vm͏o&>Wx_ 'e4Cc4&ʘ 4Oᕐ>qe/a_?[~>?9YW$/3%1V9iFya +"'OFDDF<}~?AƏ=վ?™oMmKL/o6]b +X,c~t{i 8pD@o?]_`#/͌w5(HD58L ?~ +1rݛI|ksI"̿ j<WuJF˪.l]o>bEu /N5!\+̸@E`H(x^G`ŽS8طCgEȋӣM R+aصg*瓧_=OJNz !Oc!E;߯v`kC:i8}HWuNaym۾Ók6N+mޖ"3(ֆ_&<9&'Z(TbTq:.1}F>9^ikz@)jPjƑezNbaFDO3NF߆GO0S^ּx?26AyaU|8ߘR;ja4F0KP\cy'J#:p@{ ?,[s-+ +,9LbGcd)(*.)yY2q}q|hL͐ѦaW#c9U'VN.?~ўj Āo˾mmαB@U *D-+EE ymEmٷH?m,͌u4V`"c06VDZQeյ^Ue<}$WW;Ə1Nq#BSjVA٫7og7ϱmXեI-wW_dodд,'h?b#_Ou./JM}VaBG~ 򱲌2.|Y^]mgkcMInj|a(}bH8 mDnrLXˠ?~㶞ݣ돷JcOG0`mb5Vx 6rLݗ-'&Z\l-enFEY0w*Fe,z\)7mo u,|~O@WeC/ڠ &s}W۠S#_䗽j[>8ئgܑ2c.pm-Ca%03Էom:,|1dľ펜'yݵɡw-e/RL5$2WgU_oK!ƩJB,NގʢS:7TGmGDFYʸPƳ+뛛FKsRb#7x82}guX{`|:.)#՝sc%Î:"A֎rկg +Թ`&?Y13y`v[/-|Ѭ#w0Ș o0ܗ<6rOŢ2VcY(c{Dom-M6UƅiϛX +}~K< _uʋ:9^?Wa\e +O㟄Bʜp/:\PQ\epA>^l. .LAp +]cc,gQ'fdeشӝ˫㽵>Cw|ڎ+r:?ML.j8>Wru*RhֆAމ\ϱo;-S_LÝչ/R#E!Ä.o~<eq(7bO)e|2x{{}q1;V]>;3}K;_}yZ3t<=kpra}Fcdq =~Gƪ4B7a|628Ӵ e22BP[8qxcsg>Wx_QqIe[{gN,ئ4a 'G%{UiXqh|Ɩa%` aw0E:\j.IKD!ؠ_,3K+_7wznɰ22N듭|>x oQK+ ?_\"$j"_TԷͮ]\ƫ!DcnIA3iKə ۹F + 斄K1ܠp{Ҽ1 +9UF=O7uiemʸoh|z^,㳋+_}X}֭a?fhDDǧdV5tO,\~Tߪe˓eľ +!@4wՎajoF%ۏGks=շ +9:~SP2nx7<,݃SQƟQƸt}<.I!]Dr>W1~<']Tkpjqkx(].B.VC +8?-^Xv&̇Ui"x<}xu>?VW.V)/\u<-ee'ƌQRt1I 5~c_6jJB>e/N7'ӟ-0>=*_V׷vL/X2Ac>RWG> ?J\߸cɰ|>$yqznImkϨ:O 7;V_oLm=X, Qn鹅!Y>;\@!g$ńrF%ԶtM/oɘGm+md]e}ZVm; +c$;ۉ6YWwlnm)8GL_# Er`6xqn1L }FZ:Q䯟oPȝ>0r<|Ugxzquk39ʙ[W$>|>䱃jƏ#φI$q^Y]{;MեJ \ߝ<[mS Յ}?r G0.kP~nN-{1z mL )Zqxx@+E۳յW+rSbmFYǨ 1CǶR7R-@Ű6%Jʕ kU,C;%hVKCd6PG# +yz SO3 +_ L/_[1CU?ZcƏu6P탉Xޯ_d!긮rqmHX0!eLől1T,0Vb+Y vl[$?:H@!ȏE!'?0㘤ͣJ[&c}.XW`?u}0zuW^!PԱy[z m(CD潘芿Z߾|P +Y^J/u&Sap1&9g]`EUaش|W}ǒ}:ȇrEgc/m]P,xouغ`7bGceCpawR$!vQR +yY)<9ؔ뇗Ikˋ義aOW]_mfڈ}ϕ+w +(8 xjqK;z6r8UO[-n +AruTuFQB+MKdl Eܪ׷'d) ??T-2~L&C̈́>a}o 鹨ŭs) ? O w4*ZG63p L>n_XKKrR⣞1Zf7\a/~|߯}W i8!~m>` F~:WE) zZqAjlX X/OK`l*I /XQ9%}XJ!ؒxG#*`?6qrC~B>\RSI} W1qԁ+5^?菉.;W>l{^o}=ywbqˇUBG>LҹDYLV!Բ&Q`)*Qȇc +3wȝ0Rhmj/C+c RDF=>6D:M~Q\~laS;}ΓR!!.Mpsq'h+t4_/ 3 \mC8gHwcE~zb4 1}M?@a2,>Rs)}ֿwhu<:fAst{ܓ A(N0on:pw8G|Oho> u֗wU_kc1j] X|7cq|> M}||m_?au 0,0GD'W6vϭ^kuLA017b0?@#xFlc%6×o 8b!(䫓N3I"? ӨܲΡkwd}o~8c/L+pϰ/JV}߿W>Aojyev~ľJ͆nHVR M} i@G;]k3c~Df}Lc=y$eGS;>VO:?3_-8>VyW? 孎NL/z3u|>&0o>V]m1Y@#L6~8l[,>%sxvPRph YЇl0Gofp},Hfp->jXƏYlEF~+|y>>;㈘ůWN?w@ DGT6%?-!pi<6k/lq%c M&AB+:^g=Wtk޿ _c?aOb}.ν;ńf,<|$:!=_~괸}|P +-?<VA +q:(Aߝ< Xq:nMU >Fc+"v_nN6,c~$18bsJmZì>܍J,mu=pk;@;f,/KWdam=?HO WXύ/N|ӿ6W[ +s5ǃ>~!-}LV:(87%щEZWn< 50OרP7 #m#fjf޲m_yV[k+]aˆ>>6Jo11DZ?O;| }c~5I^iT|Z^śզy]罏xd+@-Ҏc_LNmۦ P7ֽ'[|z{qL~,o sL+jK/x|`Z}<8a_m"WL +oyZLȆeA*I +].cT>P6'?VXD? dbYO"5˿V]?<1{* s͘a%kD+A9 s/Td1-?xqaUq?7OVჇ2ak8"Xa{F% aW5/AqS(C}<)>"x[ }ܾF+!;1z>Ih˅&40k[GdyQP7"VYm=q TZ@GLl0 qW/9@>ߜ.O4Uc "["yHj-(9uSxɓ'@8Bp`Z} XcQx^Əw\R=Dy VjW%HE*A5܈rEh? U{).ݍZXZFMgI|9)?J(iY?j7 ]_2Pg9ˌ0bG\>l<ۗ4QBDU6CK]}R~H'QRIXRc'19xAl;4賏cL}'D i"#cbb()&1'&& ys4qR>GܳmQ8RGJB$ S&)O)`ȉ.}_mfj5>V?>] 9|TJ.%$&H&&A2KJ" ܳ]\zȋB"9C$A9A~Gƥ5v-n\߭6P? +BQUVm_{ [Oz~$+)6͒Y14HI)i$tz9L 0]Bӧ>%$<32_x"u&ҥ$%clG ؔց=xcVIJEp<}*e^j)E3|rL(2=yu._>= _lkqQNAeeeggdgge}%9왨*FjRS D^-n"Qj4==UKJzO /g֩mK NlBwHpȖ*Ϻ*U CxlouW}:&BƋ|r Wݧb)IɩYٹyEEEj.(΢ TEoA Y2H%`gf!T˗%%2ssr^dI#Dpɘ>xRZ[? b3~ +rV?z%, cX>84dM=4-UABTTlEPZZ(5$B"tԾZ8@WTL)Tb]hJ#hdt=D~v +aɆmO~%/GҟJ͖żETU-n489EtV^AҲʪꚚW^\S]UQ^^0?7EFZ2J'd]i$}b_=K&ؽ |UR!E*/,.)Euuu _,/+)dSM&Cz!B\f,nj(Tf3>k +2 tƒr $l #Tѐ6N<IJZyRB*+J^KGF=h:6‘o_$8>|-(U0RD&m Fy"ZGp}\>N"Vԅd#zLLol|#466׽EEydHi_IK6 &F*8)U&-]p~kj>Be/ rG&I,)y/hz<.~>8~(=C'Ym@a6 8ՙ +yS)=y`G]Y~FRxwA=|(bxMЄmWW;ymMM u5!张$-97F;"‘HᠣVn62-½෵67IF& +*eHC{ ~+1X(>RO.F7,zUL.RԒ\\Iu ݿufsa/ڲij"z<«@ rh\2]5=Q q"={ qnӛ/e.cׯ(i۱d'0Ԕ̊XXQ 5Cd&O'^dRƥE&R𜚚[@jji@_oOێfjU9MnvR*!(N)ؕ@e1ʟL,X2A8# БOu0Ȩx1bX Mo#$LL ͒-+#% F-rCr]|t FڙYC,~̼1\XQ|P.?ܜ.'d3)x^j2TvĀ(eLH/(*MknxT!-E2 K^Nqp9_m}UZ@םg =*']7zȊ6VZ :4%Ug:߽3.J0=9>:LTВkz|wWG2LR8e,i +FP) liUYJΔF;Jm D}lcjtN~}6N)RoZۻvxlbZ*ykˋs#C"tۛ:WŅ4Wd$Jk{@HOdY*䊔y0cw]I*"pbrzV^Qi+rWZqJ-UyUA%giƇ{u5ս,UrҢ!] e9K;'7޸3D2)g"qy<؞4}/]<ٌlM~N~7g}oj+^_ide"%WuFQr{F'gW77wwv07396X[J~.WQ bP ;Bß7JDB?WU=1qqyMݛVt$b-on!޾¬}W[s=* '3 @ 'o7[^cbaWUsG,6pwӫ2da~-^=_$G/7ڴy<ĝ=)noon,-ΣƆ4Ғ(!s?AOHϢpTnlp ؇9U7(H@;zjuyia~fr|XXK7#BKqzX~V:>>Ǵ9#ʩuAe={ccmeyP[2?[4aF!Bυ},Wp`}lF*nIFQ#o'r@Ʀ>̓JZSp*/ܠ=N|RocKaBORArZb,7NKO<y]բ퉸"/#)(\_YB%#'-b]l-N R_SVD3'%'7 ꖉhzvJޡ1J.͒cj5ܘ\__]RaNwyuzPidq:R,rP4CLZX A27i)+NBAšBm"-x +&F\^^H? ,?~َVH;F@ldfۢ_u-6ycsK6f}Ó g7_=}(>n6&w47cR[ _eYMn@@ 1^_~p[M7E,n>gxuI䈶\O75)z/r#lzj)JsC0@D()(()k4BoB7i5c1va+L?{ B/4!mLnܒT}CZ#S'DW9y~zrx&{J%#' \ЙTYA[kGƎmW%Fo"؄L ቙5UOWg.KAҦ퉠Ri9J#Rrᓨ4ǎO(Ծ=⁹V;~9h}P/8NCY*kw="(|~<75O('#91&J]?Yr9gVQU{Dkn졊TSg;_J>Z_^KP@##! =}}̲k?Q]b<'T-oU^qƶ1Ds#Qo߾~e)ׯ"fpg956uKlq+XRi +  `whxdlznisz)(?SVN7>L ᯖʢ_):V=".75 ~]0X2<²w`tzny}kn[.yH,")EZ[BξzJ{N)iYI]Z1Ymf?!d;2q Nߵ~&{lHRT. ƱL܂#ZbRl)߿}7TU uminjT A!vbx |XY.={?1./jd7=c3 (cKZ,!7$GU E[d\] N:U A? odrÜ? ';W?[Dzٕno.O <",]{CE>}yMg?O0VwӖPG,n!~ O Y@)?f&UM:!Wא'"Y!Z#  !'tji#X璟t_ǿ_M6n|T=(=݃StӍR"(RYZ?6Ԩ*;&O.Y\dU7Wy}|SU V-il78F+{/_Vk)(}F~TrgU-3k瞣~84D*<@Vpe0ۡue<!?OgG>ko.ϒa"S[U$hVlȩe5WSy̾Qɥm.ЭxGWU'zRKmd\rvI]G?f$l¾k2;I^mcFb=O +m<8ai}kյnm ,x"}Uus'HŹuG8:lcbykKގQx~QFm܅'͒+ +`oyXjYóm-f\iG1ޯCTGXZZn [h^1,o2yt:&1oRcLd[f;̍w.JfFӣQK-Mo]Ꞗ]>m5OKUhtՠCv4uoGOooc5$d8TXN0p\E9"J- oGe2pǼ}64/iOv֗fȭuUGD!eYL/]ftYWT!%G(lir`J1?tӣ|!p6ʭh[;<kpokun8A{!U)/J MɠD`%?Dd3&*Y;1Fz;j ugC] RqnycܚZl0~b:nwb'us`_8nʇ2q{Dr7S, JiŇ'gQ;RR6 O +9}-FC]A;6U6PPb.UԾD9)Ǩ'1`R"ϺѦ/ ":!U7Wi+7}>_Əa{_mHӍDZ&?FNb?x.aUm ғw78.-hnyw wBG)|*HT GSM 022ԱqCW|/JuL}8?oXm& rR:`Tu0:TAl`d$g 5m3FP4vWh.&#sbZNqU}uxD^d9xcdb'UҠ!$yH@^I,|Θѕ"FDcel=%/*]l0G}޺7:sel=%/YKCHFM0WU! |+ՕIם^X:%&E{ ZWXGJVZz˰sxn1i&`Rm +n7;^f$<{rg@#D7#&!^KD,]#0B]sVf'hTgCM FTġSK' = 6"FyVqQ$ ?Yt}v6;ZC_1q$l0 Y{ƦV +W%ql̔ĘȈ'jܟѰEAo{7D?Q Eyq +%ZEuC)5Em~$<#/5ZƏE|i3Mǿ\RåmKd WUPGZuK6<F]|$d׾Y:%b/Ȧ^.n.7i.j@~CyF^ɫ׶N/rܿ+c7DN\ heԼ3ZGKԧ22`!o{zL!LA` w^q'1Sƍ?^j]&YO%Tx$UԵҝ[>i+:9^GYQFFD'fӟdE^I#zfX^,ve$D>&Wمm=CFXH[! 8D#o,l)Q.u~@Bc c6f`7 PNRsany]fOťUWŒǏ~]0U> dЦghj~M#| H]C;bd$o|z3@]7O]71jU)L,fOi.g>5_4Of/܎a)}U^A&yY;_{f.a;nFepj-Ylxs#1dߑuU~J8Mʢ)1S\]VInM-lcφTq\D.S /^uO,1"m'PՆ?(_k~[Wy/dH_unI͛+U/Qe&L!ݲB]ed̢owOHg?]^+|,';tgqm-Z0qD^?;m_dSkul\lhdq2_SRnBh0+U ڕ+ژ2k 7y qIDWM[5F'IIw ݐ䧪㷦*pONt/+{k X3f44]_f%'%$gTwͭQrE`9\j%RkJd2>x$*W}_έ n1l44憹v!𐑼 +&>#[}3v6?1XMN@!zm.&!5gxjac*/?TEZb E`2_?-wFGGK7#*N-07IV0"'.UZ fo{CeQ6c* }L$2!F^*lr } +}{F3R03J?3*#ih#t^A!9n1i(Φ%?(zjtA j&WOư@61lonk;Ѧ-Lmw,:>}<$>_Ѐˣ~#he!!:! m 6XJSjia0H2π[DB&Kc+ )4u9iII)/ ++:&6UJԑ/؇-l~l` EDD9e=4{gIMvU#X1@Tܪwa7]3Vp)(W.lq:*חK貦W%x< _#WK9/ňU}z꘰ +ad@[q0_Q v~L\rV[Cn:? +'S!ߏ)R1@#}Wѡ*~w kg?:WR]MF)!n~d4~qW"e'ݿJshu3˛{q`J@f +D02+̚{B͝w`FlƏ}.v73Zcs?RJXۯ[ N-iKml^+W8 +DeROħ7P2']zdq?'i.z||wi,/3=ƷSK[gW#X1@~CS|~Ӵb&%2P~8R6ŭ Ԯ {(9N$0D<lG20\. {'%we=u{Wl (d)}nhJs1"=[&r{}qXY<5[1jWSel 5ba}j!+8.&43L;5Aak}l]ٺ5E=;a2ՏoeFdS2pEoLhc3NBiu~8\WQd[K &=|ebb^, /LbF!ho[]yAfrb"S;DAe7>O9Y?!ӤvveKQzUr%u^p䧃J?DL u7ז=;UD3Es"[rn$ + +sst M/o_꞊+7qA~=/6K]NDVt+_ޡGq][Et ߑ}ۏޒG+Et -К~;.{4O{5SR[ňLyQP^~c:FNdu ~ܢ7ŌG[NkC;3qb:,5KX-qUݼݝ},/C}W?dm`8t_t OyE8)"g۫} jx.? W]<^ĕ)w6du ̯yy.І!wZW(}OAW(Af*KU>:,E[ 0:ߟa& }LǢ?m˓=M%Eը㙕cz ґ>F'ʟq*c&*A!ǨzcV&IqWSTZV+Q&<Tj4,ٱ-C0YpPVzc^~J~Ѧ|Sh:xjFÕU?>{tAQpY~[zG[3M5/^dfKw68 =ޯfr^4wXٖ_V[(+Bfݤ gP)dG-ޢ/+,Z/5㶼A R0:n}G [`N:mt=q񊫓;~~+b?}8tA{e Ѱn7X{_ F6Vde疼;HFZRm{G|8v%} +_<oYY5'e@cX*}j.MToKmeE+wo}Fd_"FG#{sq%D097 j LKơj[Ҷ8d B |3a] z:lNe C>NH.zv`rqs_*+]g>0ű(K +DӴSvB~5)guW=?L~SA4@ BeM]۰ǣX$A백IGԳc(}o{:ơ< UwXv楸j0hֆ:6b"/ ի=Owh㓳 +q m3B/~M6V,,(*[SC'_*:N.j10o*|zDf]smi~fR(ȇM}1/w |uMaKYq_JO|1?uJ|TrHB~8$fKdlp/L>chH}EA9]fW<%,.#0ƌd]'[Q.{Lxi%|Q7 BMVDF(1\6͵+D+e3;%Z`#2S?;EScE'[z,rIrN1#k4QW/.k }~cE1OЇ܊̮xpc>O!GXS0<̈#W6vAߔ%e_&DPڊu[R3au\ +\;I'ֆښW ӫF-\;Ps-8dv+f rLTAXBF ?N([c# +f:+eNw? ]nʊKTQ‘7$Y,.5/pzaٰS^ɤ!]Pkuwǭ1 +BwWg[kkZzƗmsͩcc=~^zmU˻|"=2.RBEuZ5q:+ +_/rz\8CƏ(Tv\4p9pI|17Er3rɳR"cS*fύIk߹M#=VLK.A],81kؿs&FzYhki$'5A_B)V*F Z,zylB6 _w 򦩭k:tWL IH;U\36G+DBLXwY~H :ƅ29D>67D.I!<;N} ڏ'5Fߤ&0(\Ķib͊fpu7epY~ T_3z]B |7\kR=-M-S#S!Es@'eJjlnM0Ԑ5-狓ՁHϊ?}?KVЏ[K3#+;:nZv}O ̤ؠv@vжiKHjX)YA\$ 4=mZS1D!Oz'k &cyzNɵmZx˯5=]o6}d_~PwLafa SԱ B#hLA&}xq4ɘB0l91cվLB[6^M}}L`=*N~↼SQeܥ^*l+!9,+hOo2j`s_5ӸѬkv6-` =uU)KH_j8V(n6*IưmZhGg4=F+d?%c >v*߿'&gVЬ2| Hʂyl!2_w7mK.*~,ֆ?;'1O\-w0~l}$"&!Bh +F[~*)֏+>5:?82,ߍ3+J6V&8|E51I';P#?eᶌ)ԕ椊ΪZ>@"$ *$+X2['V긨S~'vHA3ujID k[_5/qZ(#JNT} < :71<884PǗe},*Q xP$7܀ܑZ ֆ?,dq袮̌t7U֟Cc}B&W7"pNEDڳCo(s]`8Z8  kۅe +6 p en`Q0b z[/ј?I~io} yu}2vOZ3ْr"N)EN},&}cQ eC#'Ђ|v̘B;c +))cW}l$!&Bla}Wo%XPnn՝c= K񨸔ª7]t뇛rNCBMlG9D;.q {'iC=_qJ~@F + ɖl"!w>LNNX r3P*nj[|83 +;&T7G6߉pu|y\SBc^ܙpd{}}ck==.An/OYz{u*ܱCu½{E~/or$%PX }^f&ٿgJ @XX }]KJͪ/!+KA^:X01RX>$Hf/􍚨pʯ-5&NѵNcD_vO`1v5H06NF7Z>^zr\dAmHL}CsXBxLו lu?]ɕE +k$w'{[kmK;gq/߇q `fmCo*uXH5ฅ_Ġ|BhCO~,W9~,]gyݣGQ'pϻ;c#ȘHWCE^e; 2)X3ȳc +g5ֱcyٶXTe#Γ\4-hQ/ *ꉲk;F˰[2;@T"='jP&X{Ubj4 +u\Pv/Ǒ~mJ@{޽ &d$ +#B>,rU'B6}w32);xsuq);H'qtl'7s#]yi-ݤ{itbViûZsq7|=s¹qP֝qr~=wO+Wϛ_X4I+jյ.\_^c <>VuB]jXկ;??1Q#g{;SʩsH1jwهs:Uo>VǢ-rz1ֱR +$m$5lB*O"^V73Ա%RX7+ 6zBvqftAMl3}3~~+Ycg:QuL؏X7땪WÒ=!(dnP{zq|ONQ 8`xs~]oHlJ߲ x󨾦eD[jnU.PY.:TKna\gݍ./쓏ȚW98:fFz~u r?]4bH}6|/q=},&[r^SE.B/.YK!XGw +ԼGWɖ%WG 8+ލ-veÆ/9]!ɟ(?V)}_kMR+ά",yonϟo?}tb;nGEՈNQD~2SrFh9Re"ʏl_?]o/NpSX}>WԻaƖGggji+:םc +U~+ሬ?D|N֖dA?˟D_5<:9|P)_*%aE{dqB5!-uØ Ru#q `!_6Uf&kA}.wpu˖'G# D4qNP_m.v7k'4J߽Nqb{?(λ9 ,'Tr$?MF68 'iҖ>6F@;3P`FPi6̈́F蔳=㺻Ǐk0RQm`fm@'[sNPC+},1XΑYaJAuZX+lGD3~>;P.cU ͬҙAmS#wgvhVtd4~s>,S ۣRTw?>~k{hJׯ 0:QޯVXXtuO-o:k]ч_,]jfEcQ+BU1i\*'΂mOM8> ׾|jV:'YH +HwB$aYQ.{LtA7xTcj}鯖`}V+^X׽iz4Jz XAb)`xߦEhKU +AP:eY>&2}ȸw$|+Fԯ>He%<;G_ckjJMcg㻿uL-ê21 -ƣ0mwaޯyXwM}?Уx:Ű +AxQ5-"G`G͎yw" %Ćy50 $!NpI>>YngBȺu(?U0\[Qȟe=4O̤7koWq\_ Dsm@E]bYʉ!Pآ4k,em 2GbȬ)a%KhXfXc3HWO[1յg|fRmYʉѐE77!>Scy\ӆy|xITX.AVBkeL_5բ[CH_o!B9UJ{4֣'bAҌ/`U4S`4VN[ [tsӐ_x> u֗ҁ(L5B3D*Pd+'!bnn"?2 UU[ %KhR@//]⬤ =x@.,Šgl;pd+HW}IVrS8ܸMsYX:q=K22*1uP-?*ݻ_xWoK:jB VS݃ZxsaTw;6υ}و1Ѝ; ]Ɓ:ST oZ"/ '񣇴( ~ީ᯾R1̵>םjiƯǹҌbU{P o8MMxWİI ?feuǠzZf qCEP›;ҽ$G[M { #;>-Ї= }j5Z!i.̔OnH +~v\4:!- qBG}>VP1 '(i\ڑlfUnA*;.x{ktJtDy+Zw2"w QlY߉Dt#`m_h>_>sxmܗ;P dPApS\4\8^|#Ud=98Nh=c 2WgAHq@K}lc{ˋ_HYS|Z/bGɏR}U_d jeĵAW;K=ohL# ۚHTm^-HC/1),>/h%|#bf|bi[w-TpgvƱC(jEwBԽGhOJ:d70}dPApG>>s$3-"Z:]{Uu*Cm/I(1qǺ7+?:zipG`V_?_o/r4b]~jU^3;o +ۦ-Dbc\[.AH?M~k~m]z_ȖiBa%[M!`c-S A(c$qHޫͣ+ DY~N_+{oo? ~r2V.؄"/ۋ8zL꾊k?u&ﻅ%$}ޯXD7FM R^p-fsm= (.fv{1_jZQ6ԕ~GEŒb-S%}}ƏSB~#F&?߮ +I?wU#X\F-(tfٲ +6Ѽ~㧋5$CTO[7~t!]M{vVpoOv`X8.BYz/WD-6*03xh 4SMy4 +GO@Z[ߴj $  ++ (jaDWƏ>~ &Л/0W{'~xs}uyqqq|!x !ݠQ ,2'diKJ2!޳v^ q H_F_jH[SVvxn@Z-ʬH8TOv*Ov'%P&+l0 ++ u0Np?&?Ǣ_4$}OngexuT^ 5l#fJ>]P/Fӑ>}}Ynx뾜W<]j/0o8ΰvvn㵼b)_j&X}z`v843!kz$ch8_yQsU߯vUdbAffwh]XAa*4t(ˣ1 yM7=]*} 3.b/ uOoJL>k'{ 9W3~}cDtbFAu{Fz0@ZỶq*w" P@sPY7 !v]R?f.Wd 0q}O>,.0T`jx2Jϭ+FƧTY_%e.j6l_Ԗy&c!l)-`۽ro ᨍ4P2:,;96btb4M%;fI$z< ?S.xxYP٧DScar7"^fcDqY|zamI2zK!=DY +ol^\}$uUKTuyȿwXl(/N}L [\ξ{ȣjWxՌ# _e@C) +S`]艑G_cwJ22>ӄ2oދP{"M jGgK!r=?/>>:'kd~d'*@-BGn +}sA/]PDߎG3AUБa:?M~ P_cխS[X2/+T1͵GJ4MiљM~c{ ^>@>:򳂝SԞ%Q}suv0azjjffWַvo?;ǦPf?[7tyv:7X%_Nb1'<"IC>_Ǐݚ?5ou׈Xp?"o<U6Dc1# FY+lj|\B[d,BGC)4gR/]Fx]DZR&("jdlRVտRqA+H!(و&d%7DC*vES?ƿB +cE7;⯶m! +d!W ;<<vquM^뗄- k]ciz{W28 N-m]݈8 */ώv{+S'}է.?Ifh"LWA4bA$(~?#H7+%gǏ7WfHpɤdcT䧩.wyj;>KuLb$ILBJAѐ"&e/SU'JC*qɂ"avcn^g&InˆȊ&FX\ĎqCV~6ZY$ go? pw@onck!u0|A/uyqz|xsoln ;D%KNyJ:\ozlyfIenbۼ@ce#0gD;Gb;8|7#X ѹW&d]P_ejWPY.踜BB(؀_>}Y:;9:8أXoomnn ;t4H_QufiIsmXS?qxi|%y+:<^|o޴}74>=wt~>9~k`W6ՖHM_}FtPoɶ邎n`+.؏@}.]?Өʦ4W;@)ceP4*䘿IyLCn;NsbAӅXІh>R:Ω  e| +jG:9GiȽaK{8ce1n;缈 +p̡#zWWd"zG$#AKJy{svd>z Q߽hwk}uya~V\a͝SjWHX0C:ٖ7피fU3rpnI/=0StbXI96Kوk -pݯϮ'qbtOl5V~ql:7VC~'A⹫|3.?15]uY[a6]0?77;;77?N>8bFww` 8dcqaW[zLR6]@//Nv7FԿ(/+-ҲچխK!`{enb]k}@1#`ŵoGe`)ZI26v!)2fX MrsƏE))}MVc$Hq饝Tk{KMۻJ]awQW+ec䒱2š|'IRqkeK҆uYavdJOpog|iqanÇ33fW)z5ċBsX5\30AQn癸9>$e;-7W瘐{d憂>9yJ,U[e:)m'9/4- ش-u)?}:Q~pxlrjnqusZ/%! Lz,5=^kb'+[طDW|/ttII;֦OSsÞ}A@信44O;c]PZ{9F &뎭+sMjjN7Vfg&FFGF'fbQxC&֦qu2~i~44q*1cv,&mK}uEIQ~^NvVV으ҊW͝Sk;G)<Fww)-JM1g E:Gäc'dV ܽЂif ]\[Y^\~VPW(-|ĖiD1|<ޒ-ם\$q-~cnTL833#ٱ^0GO.,BE0Nԥ4֦cW+}|,^~֥oߵ +qooȟP×1"g!Err6:&kk򁶚DFsrPZcLRX.t3ĭ5FƆww6 +4*gٵxbw ɳCy*5ƀ.F~7!??&7 YQ6<"klg7\֮ 9a"Gmt}/]NSbf{D}ͯs{f}Kw ؑ"-x{ceav־:Z[[Z[[;:޽w3 +v_/·^wm7=A]?Y0 EFzjrrR󤤤̬’M2x2w7>0;=)>:2QzOp cɿ`x9fyALɯM,IR$feR %wM}Iّ1W+n>SK/hogCi!Tmr_6%dd}w 5W.]Hg#6!!񃛤AG(-m-oB?K98F#咜$ l_yW>l-/(b2P._ETWK2rC`ok}ELȉё:t;^[0 mt<4t182N^;<9mVvW+]ұ3#͊~zˆ$x'?떱ʲܜYY/^deW~٨5.W!ԇu+\~Pd`ȸ9r") HD7<э8чB. wA/?ͱNtԘ*qAUk$nܟ-@Og CU%EEyE%eUf7ses_42ͯ[u r_ۉ~{.S]$g&3}HJG m83>ބQE/<779/eiE*lcՔ#!"%wI8$*rSDX +FWOF淤͕IفK>"p7!Hudgwξx :Zѽi-qg_}.wJE614=\_S^R',-559ϟ'3,;o IsB7+d4C" ϫφ#9A/dnx@#@O1{2l@ \wO;t<#a4MʏG4ɡo[k^dȠXS!--=33"]TRQSx jS9~h!A%۩}!+n8٭krL+D5?MuQVJb cڇ{'OF>UXQ~l~}`Sж`2p|834fϼS +1I/^ֶ,ozKr{oގ~ᆄX(Զ,X_[YU_ + |MW/_wǫ}'H66XVoDc,*,|}r6w O|XD#kbv<]~j=^w2z,_7ߘ"HmU`{uaj]{S /;+2"gdP)uM#x;)d%}+rD +}<-oNFQ@i"-?[Jp_wGKC] (RM2ecTké_>]l-{0]֎xJ=mws<;>8fjJĄ8 +vl\|\|<%:9%-En +o5SՍʯJ@U jڇ淍׫r)78ݕޖbr!Fo<|g1 ZzFgN?}LS},㣟=%%_+C2x+;O|X-.3f%op[wn)Lrtmi^^U3үc9356B)̺%%q~u7^@|_ъQ9~m[r܀2GK|WR^{7@d}P+BG+N`q0 ،9<6&쑨Z uuvU5eanVFZ +-yB<>(FΡпoΝCm"H͏WoqlܥK.m-Rnp\%vKCmUit: /3$'Gǻљ21)#tLSHk: @&cJdo}~r$?+#5)!6&Y䳈8„Ϣc'3>UR~S#)z wY{!т=ρvj'B%&3 cr@f78"ƸG:Q_{`yL솕Gd6k +4 hy-R_[ :ܕ=Q:O|:.=0S)Д蘸)Ҫξō׶üaJSʑQQBFQmtCm6?0Q/D&)hTBǘLJC.ºyU|saZYU4GFZ^lUofyI9T]|.ID(Ggy\)O7W(:vfzZrR"=AV>O㑕[Hǣ_yt.Ӟ'""?]o 猴 `'f8> 5xwuv +"-9!.Y$˜ Tzva٫ŭCs![/p!߅P^K#rů>-P.60b0V^=l4~w +gGKǴ'AqiyͽS+yI43ͫ>,N6P|8.jA3G: 6tиgTca\պ.[8Ĥc|*:>9#euc y(sl8 +O͕y)qג/JU= rPn‡}Oo[Nt|P'X{~v~9Oʯb+=k_]-/2Lyyl4Bk}*gL=]ͯ+r3Sc"#hN8@u7t3pTշW~-&bϬ +PjN~dT[L_cx%CqEDŧdc!N,n_ Wj5fsI,(y29u`cNL}WX\ZV^Q!zU50TUtq0Έu]MIH", le%/ r3Sb Jz94kܵ4o.ɰySmyq^Vꥩ!4V,q>F.&<3npW>iަ U`b%@BB.  Npl6|ϻg& sLfZW?}vXXXR-e%OѽpU'ȯ?!Q>)vR&^ڧ)µ;^_|#әyїwߕhpsAWA]ʀE<{醝G0rC+޵sG l\{6>G8@ƞwmN\\ȿ{ĥl9.Ռ1J],ZDrh +썝%8V-w/vLq*-0GrpH~S,Y( |G`fyL׺aP/- n[l\,:<\:H/'5{΂0ǹ?\jqtb nn;F[hn=}?WyıB0nXd>7݊,.")gs'/| ;Rc{<?A~mg5ʧv/9p˻ѶiGBPbkF>lY֐[v᛿n:\lF)V2E-Ǚ< aA*o#yt P4g Oul?o)nܳuD4;^~_^W[lbA#xDI)iBAi ]>࿸/ok|>jULzB[fB/?}P~޽rW&+>:h5P{ADǎvu2($X54A N]Υ B|ܥ\r'{_?p2N|,ȣYm8¨<`&O[3gN7BlC4W{ jw&qPQџ7| tl]Y A5YuUDɃMKC+-m$RHSӦcA.Xjö87r +\ƽKGw.ɪT3tйh_oJ.o?o&GB!h9V*m<-Y74sX$G_<*M}EcC,A.C;@+z|MkU1vt?旖83ҬK8A<@޺f춪!AfEjjb 3wZц +>t +7\yz[WfzcW6\mf[c +a՗37lkLf:0Uƒ_ FX8[nڎ<׌xFۗNعi]VEMqG5h5Yuݠ8KcqjJZń홢%_SRa+GwהTm/q܍/^yCr\VɂjVy)Tԓ3fI8 scنguE +١uKw;r?~AOX,]>s-m]E<!_޿~r7nC"D؜z: ]bٚOC5I~+/:$|э"t]pA[i5Q ƕg3E Bv9{36`meZ/BހyLOO$;} I@IǗO^=sXE]L;N[O,,BHn٥8 ( fˉţ;)0Uǹ睠QC;7>݊fu_ak_;/YUf[GSR32"^h]-/߬V_S*]S?Z{DShFhf%5r;5EO4V5*v¡/9"i<."M=;g'0V-3٢S9~gu_F+dLTq4e UR +&  yrö=G^mc ر~ikRziŻ/`Q4_cLƧ8]ȱ=-ԗNfu-Xf!=2# +z9p@y?ްD+'d͐{ &V~r郃*~|ׂbZѐp ;A< +-'S.hۣoY@UuCR>'5otqt| G7Z8GEs'M5{s7+ j5"[yw0p;wQnG;@vN[#hBElԥ{NǖNvCp4=f_wRrdwQB|g5 %5aB_9t}0ShٗreHx}~yltveN6h{Țݓ|"Ȏo{ީf>xN /aE,?O_]W `|-[mSΟ=}thV|81'1PpcV{N:y}?x( ~hrc=gQG5'R-o[lX&].^N")iȫv^gye_bf=)\Alp' + (oݽriZ-UcRxBPo>a9K ྋȎ}6,B:3ዥߴ巩\ ۗNH3c}%ڑt<m}܍/ZV*0_?zrϦ5&5U޿zxmJ0*5 :ut!P H<7e%5r_[iW詸pAa75)Љ(/D$WڎG +QDIhg(Љ(˕ ?qrO^B}N(GF̏oqVw[6sn;4 wo}0vSyM2H XNRXH1A2q -ٰdM< 68tЁ}r\rU;U=0E¨&aMh1p ֡75)&Q-<tuYӥ5J򪭣{; d!K/r|^_Th8jp:+Vtc1hAPDu9=+q O1+_#9<&~LWf_DfIRF`x?AZk EAI͘=o-! sAK6?5Al|e$<ֿGj? 6,A츥D́m]~_U9#8H>*=:Q *EkKxyLTbb)0^/".8pmGճb!OI?9aJ<~c8(ǂV o8?xlUQ?0пoͲ8kaٸ\1҃?8Uk3Cr yI#_? ݛVtջ#@NޱE瘏{ ŽKGi\YWnOP5&I3dT8NYw/(sl%rPOt"씿C}AI6%'`uM +T%G.~xԽa߷myݑc vBdvȍК,gʵ׭]laWAxRo˳e_@j1$Zb`-C5X?~r"A94=AB`KON>Ga g@'"Nr,w i(Z=p7V)_>zzhG.' 2S ހ2a_8D\׎%RU.t|E\$uqIR;VRzl}G+g۱tl_0mk:1=i~W~btԿVK͜hm37 AN:(I C/MV̤z<6xrjBp5ZQC7>(WcLʯjT0x' ( cȵ ,={1BvI: N +;AaGw*!HT+7.?48`ђ%{u kt T>oȲaxW>xA6&JpZ3L[h=DY>^9HT +<[(8*wbIwHHϚw5 tzp᪍72EOc>v|= v;߻O%,ej˻ܿ}RŢFXf!>zB @P~4ľnX>"r樗V)j*Oď%5̺Q=|*&Puȶ@c-ǥS:pS| |&e@'d@Z* C-tp Aؽ&EĎ;g8ZB^f˞5?$(g$ urXWHy Y*:O"mbRt6-Ϙ9K/l*Q6<ƑZRV(Ȍ Sg]}2̯DTLxֹ;qu<ҒҎ 0wɺ_i9_x:7Onٷx[=AE8';#e"ge]NYҤKf+XkRfRcMGvP7As^v2D@-W{ŧ(rHB%jW,Hw-+^v2D@-W{cY~Ǖ-XBg'/4%l/(z~BMz rf0JgK?`/fV.1:dp3XLMQ᠛4y^{3u!*:=zDѷQ\a>FW| -UZjƥ*r.ŬTN n>ҽ0O-(gk?'^&N%8rLٽs} {+44YCEHVd\"l-{Ӫ]T5)ܽx'w}"(Cx>@Ma- 1FH£Y2楀:/q輽_G1Wҫe&!WOJ`xS){{w>w뉽~|Ҏ4=lW#ۘcSXLvBW߽Q)f;cQ# ~햕I&^(; 8; ovQEJ)尌Fx9ƒWBԞ.C*Wc +қ-+kգ맵>21j4f꘷w@ k:~cq`(N3ŇQBl9d v74Id{+i4Gf@iϒfWibu":kMhbϤ^l\Sgo= W;.۰Z041'NQi#QXjU  !> =\B67D`pkLi<] +y?q2E ,)3W:)yM#NN0ji*l hSgtQݔYc`{I)P pX8)IA*ͯ+*MXXkw8 iPS-꩗4:Zԉ[{4QGEX+<^q7fn ˧}吧?jm3zyrb 0ލZ706Rx]H8&ddJ;IZYwXr10vܲ&_$U;{ "IЌ1Tsv}\r:~y, $R5?85~tP/،OݲzaETKt[ +Gfl*|6++"'>@\^ orpJo$6*F)VD +|B~yա+Dnn00+BKoעDX7vL{WIl/CW6cգP80fs\U߶qoʅgneQ2k,w*5\(gBjJ"eC{bCAފцR#y÷}PȣU;G2@R@q]m򂔌@Nոo,fws\fknۑqEdbуJWl\غj5g y)9?Ú_vdS=W7>~>PR!V~d&8>XE:v5kRw=+l1}IK$M4IŹ$cGO mz l<z,%vEdkX+%v1ؾ+?oOټo5Eh1ISR?LRX]UHo_J&D92u[;w5 #˜ +S59@4DFH;}湃LIQǍk]G+_HW&m f,u&(6r2j nkݦ@IKOQh(*:-`MM4]ѷGt G. I#@>m+ ^ +n}DC4J'rhd &\82`wӴX~Kz=7D5AAwH!U޴b#Ɛ9**vr:yL97eU|+[K} 3׏o_>{H5˗ꘅHڞlj386 D5j $ں>seC7XU" +|\\5[,<_gضG O7lǯs! +R6N۲؉c75RB@'\ Ո|ď%!Ug]~OwIm-Ʃw4rٹpoP,M\;:Hdz'z̙Uُ)wm~uP!K65KRҔʉbSQ 'IS*zbsl>ƅAh{ :%r 2Itd(씻`B1{.ӿ I.ܥnӑ S $Z.?NrP.%A6}Ac|E*wbO/m*'d^edfdxMK̶<9%fV`34F %-u#Zut#rac5ʩ}xwc8ɇWKCR |s +]7@)G_?{Ϟ8o-&L6md2fرYp,{0~_c5- ngzTIkחO5O쪹Z$8g⍶w:~S5i\6dz"Y*#$ETscl*,pF!3t[PCp4 dE'3j58i<|ҫ*JIIpɝS;)uuy 34K^~X*T@⚈gccL䋪}CEs%*Cd>pU~7 .*.UW'7~?op`K+.i2B"L2{F 2JUw[޺<ӒqsnO0G0WD%Ce`>8 ҶJ`Wi%EBAg(`}8&G0.ɿi:hZ-d Ea,Y:S +laP#;Gۨyn?Cnnu`k(]zkYHJn!&Ft/7]v)R`KUM+X'IpK|H8Ǘ_XSFq/'M2!%2wMGe_.chʬwth~ '\+~lKU۷w=Li".}$޿yݛW.>vxmz &/]`ޜv'O2YR$W]r)ۘoc:i#α`DckrP^S"}#j-~߫iCS<&DjLCJ*^зDb4F`DE>g +Bw ZiK$>vWm=pU%W}#~ZcTc dgcvȃƷkYǴ < HRSUVwP]@: W"}s->;2tsEwTMբ*RiT aB{ď%y48]BE**!Gq]l+p%i+LFsVl2X ǻgN)c"_]g\~X#~BϟH$_Ji}"f4/85NY詍(w^,c8 Ĕt?.@9.#qkQ*ypHpFFDϘ}=pSDW Ij I SaiipKL{1MdOUk.1/u (kkO<+B>G߼zݛ.;udr5{kldoYi >_QRnhMOtph4$@kP %^޻xXT$ZK4aΒ KpaazGG~ 5.#; ouk% YSBgibȔ]f沭L]},"-"aAm` Hb6XhųWo;p+~ RPȔAZa-K7 9z|BybQZ6-CHeAeL!A xu +P*׾rpEtj4 +y?Krw@¯`1 ;XRO(CC[,u;}D[z~bz +# ]2[?ߝIvk:UQئz> #zKW6I+(?V~T  y}|aL_>)ƻ{3Gor:4r2f*!~|ޑ?rq^wʥVo_xׯ ܷk`KߺUK-r~k$2CG>]2g>N1 +f] 5D аuшxS8i,e!& { +#yܹh- +=1Unh2'KOa@3\ T9z )Ȕ Sdz*W}'IxԢTGi;8/娔rS >esЮLO_(1s |nIϾfh4'~,"@cW<\qۗ\xLuܾo%Ēe$IJzcک"S43g&ZQs^Y ZM%=x̨ \g9Z[q!j.CzdPXU1pQLuYRt))\@41Uشt.ZlScjF ]H:o2$,^>CbVB JrslT2gǔ"scxpmU(9wRȸ"UkD@&ۮ.IU@xvdw->}y];1-!h9y2e*tUqQ̮%fb$L,)mz+'o>ŦX;n;M/_O N g?8y;ۦM4A- +?A'5:c[I/ W q* '&*^C`WXP^UmBLm[әWь-0x\|^ y|+ i:w# +[JVp?UjyMobTGsX/weprp}!~xnU  y]3 B]LrC +ؔ3*s`:%blZj (?gK)ܯ]+l%=@ tF .y1dg-v3 +e;-cKDZ1KO1% P`v8<63O0^CWKL{5 &W"x> +)"n4{N?La7EDޝ֭қfk=Q&[ yL\Al ?F:fPc<~xXBoΒ;=HՀhi:𚴘^Ch-zC^]fH1P.Q%}]A@>F*`{Zr쁜uP)r+̬J5cTEm@ǾT9:$\cځ2trU,cmϝ{)TujPSӛA59!`(.E +ubk>j/p/RrG#wv*o,5:3Em"pg _?ZK:Ԗ ZB Ax~LрLp+ly@14!2u&r7"J/d/uMq)-e uuD̮VƬc=@ \ 8R! +HM3LvF iSډA9QGZj2*C9opp i!v,}SO%=;( +Id$ʉ<*OIu`l#OhZMDU@%8ㇷ+\:ggަW \/d S-9hwо[{,C"c#F a>ղ"O;3 @ +-aq ?VA>Y)Q2Ȓ{蕇Ry)q^|܀Qv}42b4+3Sk@>?0wܠ@^If/5IV fHN51Dct0O3:oQ5OLyiN9a*DHA&Jq ݴx1+Yr l3Kg&qǶ>WǣF\ + >rj)!;~ǰ:qLFi䠞L_EqFӚڲ__@.[ ^-fk^}wc L&HW߻u#CY82y,NU<,($3Ҙ`֭%JfejP&flui/q AEFh +<}ls!XT)\)z)\+Cw)$B8@ʽ ++7o^| +W%o +.ɟ`_A/Oi %詙GMJB墉㲓^ba'-qt5pYWmdy4zrҢ`=*/y$Ǹa$X + >䉱|WbwǐǴxv!](Pu.O*pU-']*u;2 Ut/@ ɶ.bՀ-kc=Կ4{"Blcc篮ָ(!=+7>v.@.W? u;_ ~wo\:slhҞ30'F&\SejUŬd[i"aK(d-z{wm]x>Nk3k.diZ Vcb7,?k'7k-พWT[VԀcȻ)"M a6,p(e䱙Yl\kr*HQvX!#3/|e<,k/W48ߵѫMz$C);4Ʀ&MCaQ|[KWp;Wӱsl7$ng([p"FعTZDrK_/}KW[+3 X6Bs}-[Bi5`_>_`@1YCn}U@??s`?/_d+@W<56IPH@4x:֋C>|]R2b{BpU;a_ +%)TNsy:nv!*  +bsQF2A+?`Uh矿e#?x٣V-7{ƴX-՝,z1jDHǼ iu#ˏ3uНTfcq6g@4؂J4m@GBc*Pݮ-گ IDHk{kV8F2QuO$ρDn>ŮҰ̝6mաfH[ +/HcZOFA\%^0*X{b)4}hzyÌ X<])>d,@1b￿k*~ $f_aЩ+:[9Wl_?{ 'ܼnjIFR# +Ǘ,˷? EqV(c^ +QU/)Կc4p +').0]/?qj[0E~Z]zyޣSH­K|a#O'j>k W7:cFݢ[YX + &D1P 0WGvxm'hS)kgef/0ʡr\My6+r\@O]~LsX#'6Z +ǵH[XQ!>'.;)Xcq.VX<ք;8p꽧_miS)$__>}3wo[gAd3c1XL,'M1/fk<2c Tm?ſ(<΂a~)yl)tW#XHh*PUvKc#yl0ypqUg,>HJR4})f9+U2VJ)P\a^c?H6qcCX +FK!;6Fc66n \ȅtF +W!J2dU:t"wX~,s<$(ߗc(=8sM5]G $y^L?v\Z 4'5Yѷw!5G?{۷wD &aBI:U`0="ģ$Icjm9..Y`H,8tBe'FɍӚX!E'vjW(m y jQ ~c76s1쉮s->PP!ٖ/OxDG"wv +7fA|{fv >mפ(VO(6D6nvse\Z)T1OJh7p8F^c! >^;p62` +Y8b䮞};r_gtxц݆}[ND^6~8 cmƼtpO >~wA7 +&9 p?o?LyyӶtQ鎮}RDsG) +@GPm4X`ެ)Ac~Mƶc!a(\+@0y#}ǃ__޻(s s6}>yj/g: Q\' Dy1t[yl;jc(4dRhGJ@Ǥ᜿z)ccho4B&`4۴?l+ gJ +#fx'#Wr$h)ʡ4h1 yLxd[d!`o'OKO^ i4ݿ~b"ΕSvnZ@jZLb>LCO"D40k14qt㬔ifݿy%3j!ZKoN'tG9_W\!f}v WCNW5{FƟVl?x$[41*5ߩ>L9Z'Hq +XN~[gmv3  y5tGj>@}Q򘾟>VKv*c +dʿ5Ԟ>Yf\Y_@p{JcSaTe"C pc\=x_z#cCXe?bΌc +c F34|%y|c"[JQ5T_Ͽ}|sfiuYC"&5 &"S0H䱦ވx5ޟvHwL9cXMQ7<~#ycHW})k/s Vϯ~ +~Hͫ'L[_<y զ}*u{m~oTPB8oʔ7<61!wUUY~fTek<҇ T@_j]c{c""2+pAXd50 Q1B 9;Q@$$_&w5yK*HX*svu5HH$PrcJR )Я# 6y +rr2yܴ@B?q-^q`k0?~IFQQ"i]@>{hgߊ36)ᒿ:K~BccuS$@>vy 2 m_c^[c/N~W\YcrwI'y:%4PH7={MWO ":*1AJT' ^mgJ}LWwبSAP ">Nʙ[EP0dKcLM&y/y|cY.]K8@@aID +X<&xgl&ZKVq#ތw(mݎlA +C[rNja# u]rCç/|$&#).vp"{ u5ߝ ~9f1>V]Z$s!e+UVVl-fB@p--!(?ʗ<^9=.TflG%8:;F +#(%n>~Z#˸~Ng!fUӹ\-4hfMA )gu-gcsW$Qjʾq!Ę<ͯv(!|=BuX'ȶAJO;pUǞ}WviG$w[` +"O6s╽<Cx#Q?O~\>gsfjYrh ď]г܋rsylcy<30yv{ @:R~W)GX +cI /<SEBM +yZoOqbK@k/غ.~=gSN3<a%];1X-F>Sg_!(lM9+25~jyy ,ͯF<\+@{ǖ#`"֣U#!oQ2+94{ݿ二?Y$Bf XJgԕ>&e7YL{b X'tB|yiksAig=qsz4 >z>o:QĐ͓[ڸb> YzD+&u9~11fuӸ R|5'djPK4( 6Us +)'PALֹxi. A;=mֿ;o 6)anl*W5q!)LqS=5_ ՞rSv֠6oM%œ*MꬿfE5r~WCbw`oZ 2j͚jsz-P2¢s /_פO~t?OS0J5o}jh#ܠɗupV7gDL f 0SMTd wzjyYH&I{h>)L1YK!]hu! +^}M{ +ȲEV1s&Qh>V\8sJv8( ݫ3T;N1KT~P/𰇚C+I(Cqjnq1LT;Qˉ}F/@dfDNj`hD, ZFh|#1lk*AiE{O#$TdA%*S/< +uy)y5ԢFv䀆elXDL? {fX@r8DŽנj+^t7%22+mvki +=Iw[M._nm\?`1\`K6`lл٫&N9$,\wVֹP0cdvMo-$Z: DfuYw뎽N|'/^ lVrLIw[G m[k& dTh,)NFen^&G Chocp'P Bs8m\Spy´,z^5Hp?vrPL%L򦽧`a&)U?FxiSBZ>b6w? +*<բ=er7עkL8VL|i ilcs' g ]'BF d\ݦ$EzGjn +/3kl(FaŌϨBH|bx|^~|U  &!8&4cB,W *J|* Au8'Mkkݳd庍>~b*?"wLQʱ]o:wh7CVcS1ODW:xx]Pرr "M'Կ&E}h1L,ZxnJ{uq=Ep@Xƭn}vBsPjMs +lJ섭+~v!MZBnxx*MJ̟5nTw䡹z6`z䯖<~h&Q_=6SzŤcS k~5RgpIM(!rW;F '%)JȡKӝt#ړm~5}Γ\`zЗ&ODLA!wo +]cD0ay,^wБgwɊ%c&㹖lYt#I`/\93%_V!$B$Aj0%3;sf bzM ;^}EKd{HdϜuom]oi4t=7l$?)ى`.2Kp]3m`I|Bq-Q +iU$[RT*O +{~(:Бq߫|HI-тD *a^2 +](~lx J9nFW31⎕|#jh"anNt4*4SWԤ\GEϜ?ŗ`?#֘L͚bSP_=^VT:wuނTkZ-~3~4#)|tdM1{C>s&B\.f3B7@TϠR.dCb4H8b%06;ؤ;A`2u7x78f?%േ.lkDSŜ\ +w7 +ә?c@<l&mЕt~ '4PKNt)+7_| WNc涞8yY^<|+o{$$jSyȩbE(l$: @jۓ}WWl Hq2h7lպw:B0[J$5.i2/`T}|] +RzfXɝMY*fҜjz%~M%1X*L\-qYE駖f]SHt~eW_[b0I෴)$7֥#KčGTW/޲ +-ƭOV߰yCPNv%|\#;:$K0w`KarǠ.7Gt(A%FAï`zf4 +Ӆ\ ػKOkּGA"[ Fҿ4}"e;f`6ԗ5 T&9Z;pWq0h'r<6) P5HWp;cf3%W VwSy9AsXǥȡr=03D0N-G iBcsP:63Nifq#5ٳ(R.yxîWZ/,|ܐn箲T#)F!J~}# +ptTHO=s gt)VkKoЕ=/ޤ2`>„+[nTE>'%?A}̠sDHqmV9+V۲}GNx^J^"gy1iF׮ 氮4DŽݜ _cO-cb2@'ωFtϛtVS.ALUeҺ>Q[~!ֻT&mi8wˬV@ݠ;: ,*츫ߕ!Kl%Ml +k:t̓k_F^H@yƙ}[W.`(qQ) ѫxhOomρ- $Q"?Ν<=Lj}lXe~K:w&2ELx1s+%lDB5?vsK$wY; 'd_ι# n7 MR2kŇ>vSZk=1wR]<<!Kq% w;}Ԟ+fUXj0HYu'n߅ldž)te|Wbh)Mne8$ܯLU!m9e W <Ew &;MCp4~bBd@ ;hX\#l ζ~ŜOPqXmú&p~{h#G2qNܞeaLn"'voZ߈+UE`Ƞ'm`U)M_R`Td4 +@@^%$Dc'&S$YpJ΄"ywD1Ďd/u`HVvVALig +^`LoM'1#6n*E +\;Mzt9o +ؤ(~pQ< A&(+yk]4z?w/d2ȧhpɳ2yͯ,.0_Q!Vȅ)̓7.3bMiZꐢ7>aO-}{Hd +'r<p)"w1o (NPy.8(2SvE h[ ܹ %[!: رBxn;/R4c>-Q&bdygvsxŚ;s/|oOx\g=a|R 8c,`$GtcZB֡j +.fiAuv,/*B.v4=ݜ{7ںx ~/Zmా嘦9 Dp:( +B1CHXՖ 'zq o^cAFR|Gzׂܼa2e+t=(46)?2zyΧvbykZ͔?8ԛRwG4de +>~ˏ߼$:E,]=w+ +$Mϵ\ъL"ݧo.\ %m$'7bXP 7L'BYt&?<} +*9PSCƒͥA|=]t Ȍ M ދθef>Ɛ_c/_]QI'Imv2F@O2ws~JX9fIPTT]!2'4n3C[tT3qL=d}X>PH#ڴ +M}pŴ]sW%Z\zmi^Ԥgc~䱷⯼}\G: +tkմ t@^F jz^Nā3}xMH~ I0S{qs13?*Aw v@F>r7a.PʆG.~8SkkUHOX1d -1tk'Nnݳr˞AJoQ9A0yN]z *{ Q86}l:]\A!م<1=(^$ljt Ps>&h*ݛgǒ>Xw֓sᙄ7 ؀ ee o/)0߇0˯aKXPGG*Ø06cƌӦL +FISD"ۼs[^wRg2,¤<$qYYKuɴWi$"Wn±+7>NqEV*Ͽl)XT^\ -A%6d 8N3,^GT_.7#ʐc^W71k델$L`E@>{1Kv]a!ԔdwwO{Ы*2?_+]$GVU]3Կdܤi7V<d-$Z{>cVɍF"IndUocn>| <'_ʊۤI j0j&Ti@G׎5 +a8UdWSL @:ב*zZljx"׹K6 O =VcJـv,XmM||;hܸ|>V* +=ǯ7X֤r<_]]aL" 4v{ ~[@{6\ԛ^sٶԵrJXNR D`ӫ*0yYh@?@4j"y 0@g4y||WHJS3\ 6#H#wl +-tx>l3?Ky' 4Cɤ;Eh@wn`*#ftڼ{*q>FmSEԜ鞅=ȕ?n$Ucȵ? E-HlԄWݼ Zz>' 1;hHh5}\x}/6=A@ ]XyrBt|ØrqNc̊MG)R.ArRE~zmG]VSf̞bc>τ[Ip;Յǫ<{&̟ ~{v!lPHc +}A) k8 4ߦ5֔ՔGl+ړEp{WWY~/xEhW' ?yrܡKm"5*m:rEǚ%N V&@gtYdիW-19?)gu_v˞cn=~Pkib{u%w&f)Ï܍rg_o)IL fUSy&E37qnlfI + N_ V#Ŀwr yzBB[]B +jϟ^lS'F!2J(?M*Rd{xS֝ j~|}[V/ꚉ%4NK{\C6&%d? Bsklݺq݊Eݦep!4ҵ[*G鳽@|&9qչzO`C= A/__?ek tM+G'|i"Kg[O9-3z?{Ѱ!*X.l\ 1oEijԴirBkގ1p&i<VǕY!H'oFێiX=ȑZldU=/}FǗ/gӚ3c+ոS~5F +ժ`GA#_cgZ|&*SRPN"<n_@r(58"C;lLkKE$AhE$_#;$ÆbMH<vzYbyܖG8/s6,?,F +"mfgϊx-DW ;?$fb8AtǏGYoN:qd@rf@2}|,98=v/^<W} >k޲>9V{|xcrT&`Ҵ]=6 zi.//9wWUpD;;c[aqp8ے.~DŽ WmuTykǼʗ߮n)|_y!^\o?@΄}l*yp!lnxStVUT޿|pIbk"llT6o +5(?b +`l +HcU'Vnغs^|^ +M"AtڼWȮ8{ H#ywߕ)Ԃ1a򴙝 Vd 'L2}f܅mڱ7>xpƅc{6jP{(lEZWzÓ-R9E~,u@0+|{Ӣpۻj__dQŃkl_l충G&(fwܸ𹛰J|*U` ih٩O$r +DJX8{hg +iMv"dM4ؾHŵWV;yG{hnޝvoYc) iTvt񊾁gu =ˉ}[YPyl?|qr5y'.*6c7*9ԌW,#i5-1Ш@k&(F%ؽmP~v#vU  ?WD?8OXx!&\7րc s"뾓=7K!`R/^ŏ-@*YtUoC.޼˗7ذD05_$ȉ&/-l!ݔ<}1~1BS# +Ng2y<)S!k3! /e[85\|&K3Lq +'_:YM5H|};3'ROO>iv^-KBBy7QP,pt&چi AwQ;%tFfD=?N0D85 Q4?~|MM/L%nյ`N]!6?r@fWWUEϔH6o]!Y$]z!|l ^ɿ͚͠TW6 h]϶*^ DT#$@+V O#&~\);o"”Lơ+&1riA7/2hJ]v<%'Iyŏ9h;㯮a8wx+_<Ipk'wo\>{ܴ+cb~ȲQOO\:oe!O*#&O5q*Zn;{ع^fUܑKcM1=_I*@GWɡ ˰IOkpxF(nRpȶ*Ncf-KXوzѺ/hX8ܴjќ)+dϜӳbSW>{y]ri ܳyWWU@4VC.bLcT.PZV 'y,O xX7ڄ}^@'_L/K7Bk]FśuB_)?\y,yz֦_Vϕ\^2`ڴz\ XS.n>cc6CpS0ybb+*%xy\媁ߔs#Q}._?Y/v( v]{u$υW+'a;+wCLQ04hPs "kJ &O9{u[pkw!3dGCK9>f^؄<JoUݵ`m/ܸջO_# {b\Sl/;>Fp!衴G_yk(wL<aךֲ ~&b|-Ƿ.ۻmYӧ!'i3f]j#{XUb㐆|>ezݷ|V=f XlM;N%s +B|b=s8OPCNaп)\BAf&wGXԬBrIu#Ŋ#a'8Ѓ5KIV'G:{ʍ;:|)F-f䘕ɍd5ҭ8ZMؗtIzcT:囑ǙWaI`(R[̳ +\3RtO &"v'TQN/J_/0.SŢ9orKrk3Ѐu4y͒yf +A)hNcko>\L'!8G/XFbgu5Wsn>Wvzn=}9o;;#[u.KVo:9U0[]+*!= @|>h8u T{DǿFc2K˷JCp}|!bƎQX7\jD5DXcq) "Wy"Dq?屝i8Ha"LZeŸr1`_ܿ~0v|BX\W=Ub#q}nr sbfvt,[q`ӗn>.Cw =rg(_œ,(#Sh~tPra9z뇣+ gk bDJA=9ugリMxLU|;6^2F huYn#g{aD}irzu+ʋ[\2E ~M59P@~hSN]u^Ni# +<8 ],ߴӷtj3(quYEVPaYՌxP:,Xvˮgޓ8sW9w}hTD?cނ]Qn>4m|02??F09h QyvSCĮ +' pGl+w`fge!vUH?ᇗsU"q6;Tߥ(x~|7 =Mvw̘L* Y4Y'G42AV PF1}z{C'/~׿' +[i)۵8ո8/7kߩeK>ׇHxTȊPk]ܪ*HM"E 4kSe +Pnaɝ+ڼvYOlLd [ 2.!żūz=wH%\I\%D7,dJsMC}u슼+Y*&Jd6R8*P 7~ ݼibKN5HX~/w![^h+n!O8ˆt)o^<1WR@-Zj8.)mY?zpUӘI?*q_Ccd==ԡEp<+/߸8Gj!2סk)h\ewx5&3%}v=['0I(9X)n1uf ;5 YG&NS.w=wՒy]3bZ/^0q8.N<k7}7>+q\ɢ88N- 8ZVsU5P$]={t[l^ep(Jrö _<۳tM[bXRqd!{S_l6o ])VZRNUv8D*cX3JΝ źfCDz/}/z.©b4<."Z LWhce/sczbB D\.($e࠯@zB/#~A.(ѕ6b٦\I="QK'ڲn9>Y30Nx$ۻd mۍClibgIk>#E[qç/jI°α[,A +ՠHinء@0aUd[<^oL-*_o^8{%(J3ONºArL0JdbO71+ agoܼFi5}u BS&A?'*LG/ycJ9BIo_޻|tWҹq@n{aM4sq-iᴡ '4}!c\MW3yw "])\Eun7HIWg @AH4&?7ؤ;0DJx0 /M^=sd✜Ն{TɏXRdMc4s"g18X,g_}~1 Ww_}괩S2>`ɓp&H*2fJHx9Ff}ţ[O޳}m$>u @,&NLَ4^rC_{kRaz١m:rNQ1?:-#M%ǷO\sgu@{DEn!0QqcW7m:d/UOR/Q>.8.[8 {5$1'N4YK)o1tջҎVf&UwH(E5<}&DA3LCa4x(?aj8/mס@G]Br( `CjF~Jt0A84W\;c44Mw~7Nܵm**t1+؈uWvT莮y sԥ_ά&~C)8m2}:Ƅተ}f]b +UYծ/I/<t֖D_Th]~yms׺IThBL׉D$5p?Ei=:gw3h R uzxμKW4`| Aj&(`2{C_<9ٳ{q{ϟKH_:iO];wlhז ȾS}Q!ϐd%ydž7[l]Y3ڰԧ頭 9gn{{Wxy|5_jyDUFŏ }6ETx!oE8J"; U#8 )8L(\}n;Oo[@p='/߷؅M穀>А?_Qnm.+HK>@ttTTTtttll\|BrJzfN~qEmSGl$ޭPoNZ+r";F}*AA6K٬Qq"8FA +l\7JzBY͹1!1xD,} S}namk,aJblQ+#"aT0#bif]j8w4;Bߝ.uf\)i:\>L\.:mo/0@DDoo,/-.,ϥZ:Gq 7ں!H#cA_4s3j9E@v~҈#j@oWG[KSCCShtrvimk7Mfn=4.r [6H+Uj.l|Cث!W +Kf3T<d(St GA-]25aKaZq pa'*7aA50İTC8ð]Iﰽ1ȄlAޠG{m)k#hjk*+*+***+kZ;Ʀ׷Y MH%V_'y<.&)=SJ`ogsc}uueiiqqaqY\oj}=O\P9F8 +싨@l@yEC m//N twuvtttvvML-np LtDOW3T8IW '2oAR +{Z[E禃W֣CgAcesRP\^{{,W.kY?MuԂeS~ܠ}7[+s3#Ã}L_]ƙ嵭Ós-Q6 +@Od{~=F=VlGǮyL7\xH:yLs)9B!@DXFI魽~lE*-^GGp܀tՈpples< +1DI/[0r}}yҏIӥw >)՝K!եɱməyܳ{PSI9F +f.%LZ~ҏ|8zF%f"^ҘChkI<܁u f 3+f JVcF$fpݹ:\?QowW@w)1udhM-:OБo.NOvww]8{hO>2w%y ׉xa <^nCO'E}bbb|brrzfv~qyuck*յ&&\:ןftga =6(&RlV\77H[@n-L Ұj}{G{GgWOo +'IGoPI <1L>қ +M+o +d<??;:@nq~nrjWqqe}k{w뻡v.+W=]Lv71ORcU?>y y4@?Ĝ +cP@`y,cE!mǮJ9TX@dc<[ |4sy[K`"t8؂tm Xw}1 iXsAGNn`s:4l Ҷ(˳#[k[_;8F#~}AN\ k`@#+wj<:4(ڿpA:PHJQnH$mo-/Π1>FOLMSeƣw0BjXIg<$ k% =$3mD:~sa/Oѻ•XxtrvqusJi_L[O-6!ܔhZيǤ+V0oSU!s ͅu~\FArPƏI@px<&e!p:8!,0ʯӏ?,@AΣB<#Á|bH PƎwVWU4ۻ,I4݂}iOz@B4Q=EħuT) +a-MMMX`opd[`π<]2VJAgf!F+_ah֭c %=+H& V0,0ˏ3> ~wssyqvz|||txxpxxxtt|rzvqy +Av %)xzkkn>!i)lzP$-HTaxA?J +@{GxAbw|PfO\8ϥ_lh9=NNnoqLWb2:ȱHu-?̴fp*9njGs!?ՐlmC!4`% ) 1 +{ X`LǸe,P"YW ˏ&.=#Lhxz'Wa~t(;։1o=t_pw9w$7 `txy7 +c}Zwrm\^5!( TdH䫳񱑑0[Zـ&:``?= 2}{i0 I)2 iU%ZrЬ6/aJY`~̗Pm4THCAqfU S-ZhxBzy/ Ť%&  惴_Y7 (Ei*z ( I;>4f0O,,.-mOHcƤ]hoChNȨ[G]OREf}UPjMў~ 3(y.nam, GcS@' nwOZMdS;+i[UIXwٸz/T`D6QO|B_^M'yEqN.kZZpsC8J+ +WfgoMyf=Jd3=̕ } `&yLrzbx^G U "Zc 8o +v =K;1txaB S1"Kc;"*1txaB S>p) ޭCCW 49hyv-⦥f zڠK݅uGcģ\hs+taJt JG4fvM!>TC(.:0|em=~~Vi`S?No+QơUz )((@AN;xSM,֥c텑ꂴpT!м+z !drQIFABQG(&JiWFwRס +&(0RۆgQ\?ĵLutcN93ALV~,7{I{;IKzݭaF1Np^&?UDǰipB$ۗa҂.?7<6 Nd[ɧ7+@R ZGlD )Z(4QƗnZ4ʈ!\~\!`0(+~ 4T.YðaFyLO" !nA7<^ C#]=SFp> +wƝP> +*(  P ا 1*)b!NXNJ#Tq}.,Ê%ÄG>: NhIrG7&=OmALNJ8=vX?EܛC_ӏYn^F=uOoQlvR[\+A V$>v80e1I:'ֿ,1~ʍ+Mhxi4"ˤj[ޔnUX04>v8|L<6H/]&WpLREC$:G=b eCBG?5%}0H}8"nhBnکC>1=N% G>.Gz<-'X{1L8(+cԌӠ@KEnr jm,:!?e[r,?** A+l 2&p@&XktPܢ 9/@ V$Y pu97Vyꥪ~Վ)ndžc`:&q]=N* &64ipqqFQׄ΍ւߪtϪ6-T;!M+nP5d3G?Ll#X~ǐl/o!7L+ʼn`-D +z/*cC.b 0W/uT%{(c<)G Sln?~CC]H+Kxv? >>]4<87j\R8A2]K8 /O4~,jRU><~Iξ;bwL %űκ Κ7z,z0uM@ FO{l܃ 'ocT@ +4/uM(%lACX/-{-cPsT.DdD + e?xi8?_~U11.[HYIɩhʂ!+* ! FM.?DO + + ;f Tr-?c\]Noz#A0A38}j2X4_#" a@FH[ԡ$5epf8ls =o7gK4蘕ER8QPbg[Pmѡ#xco-(kpdBFq]b@ZhTE҂-(q_O|oe @h"cث7g" +B:yT~p,##`n:Z?%!_<%GF T7=cm% efL8x~^K4q56ؔfL8- vsFXP10.~E{ e3&, i%fZeež2WkS=u0WS/ًkRl:X=`փmW6 Ə!¡Gߤ!dXN |g@uS.WX0l7&%f퀬ScfL8eG chֽx#)wbeWkv 819u}{<\hOE{eyb6x$G zPH{cثY_āXngaXW髕ӣɵK܃C fL %-J|+zܣ$O`ƤyaPqO5ys{L*iXI@ fL %?ޟۭ`( 4CP j:FwP*4x{i̘4/S]׌GىNΫ`͍o xu2jfQcK'7Ҙ ş楇}BIĴ#5 @[%#a.{ V\zƚ1nGO̘4/=J"1ӻBgJʖt>p+6ܣ$G`Ƥya/WG5jqϨk 8i< wR<3&1Ə1~ǐQ՝:y +Cצ˥w1{qL +F8nDe1 ϭ>1}r"/'~MɭG>.IY0ޯJ; frZ#<Ə1~\GBv ]h c> +{E"f:u6].S۵1룍h7bZ`uJO!eCā8{j<@u:M(.؃4`VJx8cAFBP F x*p!Y߯XWnzq# 6&k!T +@j:ۀR~`Џa</a/UmPĸvb8&btm3+5º)`tu&:ۄ=hA1۫Y?v 2,ֱl.ȉ5Z O5PmJ5ǹ}E{F7MS٨JX,5Z O5P}y֏id|dubHJMUG btчP}(x}9]i*IQﯣ&7Ck(&$hЏ^MsĤ ǸY\B?Ŧg1 tf APV*ZZk;@Y- +h^@f=1٫=>_MJXu!da?[~b8Ix*f:s?=13TλMOX~"`2sBG-V ͮ0+ -+-YeKьO6*͸cU(0a(?1!~,u@#(,&9{|qڅp8L׊!?Y~hTse:x'^mBQg}ZSgqTRvecثus6~ y14 ȤʎT).l!.1A7 .xE1=* Xf-GW|w"yL#_,5byIŐ3t` E7Xc ̀5_T-̨8xP~j0zte&5{++ljHqF@fŪk,c>`w@kuAzwd5T( +#h~`Cߟ=r&!`([ !#i+䧦/ ݤQ=U@=Ĭ9jyOTyanMA;NΔܲa90^+/hOhk2B|ku҈7*J#BJTux~]+ŋPXC?tD&y, >B?Aie0)) .y8^EzXmĜѥ=$AҬǸmܲ=A,u7[ +n2gdKѬǸmܲ.?L#e*F|er,N*bΞq۸eGA~ >h!oývdzr|ju ef=m=uǩҬ(t:.BlZamʞ3"$gOҏ!N'4PrKHdH$da4n)([Axsn>TZ oQFq7G6y.۫}|մ άSaMZ(z-{lO"7ǺK rwЂ"_ ytA~cs"].?c}.e[PDBVy^, n#8{Hҧw& KΛ!Ps ʯc{ ^GO#G'guosHSC6o9©'CBKѷMA!y.@<4CVP64!3#ؤ]xsn*/FkrRiiS@Mǵ ?'Џ{8#8P`l YɂhΈnS%1GhUu%j34!B34Lc@6o9bIQ>1 |t]!q +qoSE^*1T}~XyKmǻx[^Cf<0!(*\~,aP/7%MaqGQ*z 턞4cBE`5;a?z ϔǞZ=_2Y$ +!eMoOսMۤA hB֏cս3$ɨk=л]p4gh'ٸ>^gQf/s1T(YOz(35P{5cOW 31u`=h ])?f{Bh?[PI`9?X`q `@# X{kpʒ!mQ绫ӣSL ԬCk^ E wAC;."l.83}:Bo.@v I_r}bE?v35"^Mugy {}'Լ𸌒gQ)_%+hډf JOl3tJo)?.=ƏJ2|y92,А?}LWTpgs}m}FiN4k@?A̍tSE ${u]Џ N\,5#H'1>CFRׅ (n>{ 00c  =i/pd^| ][9:717P1O`)>\K?i r\jnYcȨ(>uZ8Y[_:\kM#ך7/2/92[&p@.l[#iVJ>,\#F52w 9^Nuԗ_Ъl;{pd\Z^L֨g7^^jE8^_ܦ7!"3uc>DzVАk?'q\\9QV~sx:]A*'jҎ-qc~Wlah. .0G~Cu`?8&K׏ &hnܲMڦtif\ +ˇ\4\Tfo.Í[K3?HǢ+hw(B$eI@-[L`}vo|i%ifC4r6(6%W<Dz6ZCA;p@[Ma&NKR$pEa5'ZrLkr)@?&{51٫ Mc{@S:#SmڦteE#G[KSuŊ8lf-y LqWNP\lї +$nWGOŒtif3c C~YB@*VLjJю1ܸe %n WnU_+Fc?FrL5 ]ͅ7B럯vЏK3 GolLoh"b|.ʦ /:odڤPWP`[Ї6S,C9iB X~^߯Q?]J$1>*WP6M}v(?$s`lm]:;?#i=ac0mvᤳΆʲڶ9c fW~h؃PSZ14Cϱ'j\g؛jPn/NA;.J;~Mb $ Ce_5^biBW}<#jd]jĖZdyòTE^ѩ[m.L8ej<tJVv.ca׉M6hFߏ&Zkʪz&#=Z'yczXiֿ6]ƮaFJԢs>?XA/:}:ekaDR DžH'<&Cs yj +;A Jɯ\=/~"l|Hӂ|vaaWt+l|@5y%{5*]eshzڂxGu-3v;+N*###n0Ǧ]qwLvx4AhUm|eT{TRry(2&@ß&k&JryUQ=I E&*GHh"W Ω7Y$gqqb,/-!:N(Z:l(ZuK +ہ"BA.q0\US\9n+[@_0̞liUXT|j c?༶S*Uvԗe$pS@cCGs^t=c0l1_8ǰW88sbj1$}0qcH΅9J,,1 &u`I>?+6GsWvpeZ.wd<85|v^~ܤGn?.O זd$%d4l18!&cWx\F$gB ,Z6X~M(H7ԁD? $SrJjqMӐrg3=jҏxX=5 +b3;'7O/""ƣ4DM< }r:;RSB1 raʦUx`BAG1ʰ6^²xPHIL(* y2{j֗ F~T6wM/QdsiL~ xu~47-!nd.5yDQh1[~L_ЏYxG%Uu +::TGpʊ[-H8tKڈՈ}L7XA(-ZymJBua ǿ0\]z_}2ߵϯ -vXZ?`D[{}E҉Mʤ7N4{;>hX{`vQf,Ѵ^/ ÿZu`j%K +YB n~4A{':((#@LWսƘX_k-ԁ0zԋ<G"SXNY"Ü"gENLʆ˃N1g"0(42.%spjagFT q #믇=ya54WP,RJrCv}>8,}:i@D~@GgűGIzE 5]u=*2*6uc4ɈjE4ۤf~ y3'2 wl͸ŗ7-O6} c^nsc}mutc"BjЏ竵cʙˉIـǰWNsy\dЏ)QVp#E,S'#>'0ӹ0|"ƃ?1ߥgωWKvE/hv\q|{Cbap-lP`΍A#N1U1l@C?+HFy7sBMI4e m.5@0\j]QVOgiׄ kD~A$; 1c?竑 A0'[S҃~[1 # +"I;iv&;*SѩyE腎LCE>{'/ ,Bm5%5䜊64dFD[Ys + +J {@(l֙"ͭd(41#v&I9v]ǟB?띆~j' \2yL 4g*_ _@_o`̳ бPp$&Ut(`-Fbjamm(5(R4l[ 8/[3Z}f HXşcCi1 EDvEx`j.4#*:g۰Uw7We%A!QI9BE <"j^ +8;c<꽭@8zV0W5u MD<p`3j1-!ju|{F7]u,HVl>V: y.c40p*th=n6ՍKs;4. JPSSA Ye-#.qU0"'N È`^>E!I?ƕ[*1j Qp(&K*Kܤ\]i.F/0L]s4/?xy<\O! P+mfgWTh.Xmken|QUZuHѡh^||~usiEYBVlY@2zc_HJj!:8tE#{N"EjЊ/ό7@9NA C?݊{LQ9%UCS AKK5 B7P';ѿ  ]:w~G*M[],`.,FBoNf\^8~TZNd@qY"cnrKy[\|:ޒ4Ɲ>֏XCOfٚh*ɤF{P'iV@¤"6xy¼yۑ߬$e~y +m. /j# Gݥ?^bpq}xJCSk]W/7gLR^Jn0+ B/mfic ]&F.0+ڟロZ+A@Nwtj~us +å!}Dh&<>ݞ.Ud'~s >Fŧd׵OrqV'`d]+ƛ˳cT,C>gW~fQn(Ȩ;P&~`E.`4YRSO͍&yp~^BhQPL_cߝ0 yBjPB0%u|=@gSuI9pq7|1~_5Gyyy~}3/0c4D"y YZތ w Gqh 7V1a3y} EF?0<>i3*+*]li 5x]X6`öGL;8uͨq <&{޳[q +Oau +wI3k~B͔H (7WgG;k SC%9U8G7:)}d~ ϦM`;؜n  +M"a^^EtuG ud.ô "&??RGxo{uar +5>Zz?q tM3!&ֶvO/nw\%\wuiJ<]m 6ek_iP3xSTQ3~>4[K48 pFy<= iTSK*/JDTZBs[G膢 ,a[$׌kHca4i(̤' +HQ?C1j8Ck^,OtdžBUd,:E Z& >_HЄ87(2$rf'7-LS ?qG%V o_Եy%}p<'+&!•6M\qp$K^c!&ޢ4][4B4 oݽXE:f[`‹+rQ$6 E +4U~F#  o!Px ⮠glaBY,?|7U5vͲ:yIg4[tX,x\.@GؗI RzF%e7O-C:g.hpaxki4+1— G@WZ݄BQw|vq}[!*_ r- #:'{+CݭEi9ͮי䟮Ixt|rV^IU}k%ZGf O~|xCh{f˸@l(Iyz&V6Q7ptgpSqq!Go`{} 2ip1r++Ϣ =ҚYtCΠ4R(% BT1Eіŷº3zk̴Ý4zf+ Vxodj.$[)FQ& /EF6GkUu5cCĭ,iH*kX=:9%Nhu30 NNO1V0Xʄ4šc?LJ[Ӄmy)׳!Cҋbec"vS'fxJixY}Gǽ@h<4',0Tq9׀㰯|K}71^^c3K;b[=4@"%rN7)[IG+spB9{ԏlwE9ȥ]h4ȹt:j !S*%Aj,٠ X}Y:)J2 bk$h~`'e:K,adT:L4$0"`e+mj_Z;8<:9C~yyuuy}}sC3ؾ8?C㴷2=^SFYCBC~AfnIetq\#śGhW6΢1 s+p +qф$>R89܅h)/@&V9"8(_k[ A'v\Tzk \pPjPy}qz2MuhE%5)y-s{43Z&AoSyNR/9#~~muG%d341 r0xvDPPuXn(0qOQ) 9^,qE+[[[ [<V\_o.H 7hpͽKk|:0V\h͍h L/j:n0':E.\Q\.[sӼB[٢]w{ˏڎK15ZbXS) UM41hj;GNnKzNRD܍7ߟrᛇ[nlw%i\ULQcS*Ƨ%ë%^i K5P1}RLˈA + zg"]@&8PFa8HR-6RGҘZ]u+c ²ڦщ鹅mG8<<8C֡4;5Zq`:'u|JFnIE]KW?ѱH>g]7ACQ@xx Ce9hqJ}5_>84"BH1 nAiT+ ejO)젛61ӊ-8N,+ѩfpŅ֚_*-ָ$+BV(0u0_IF_TW(1nӣq:B݀R〿d904&%9|hI^XLO٩C' YT34>5CA "?Z`5356HN׌y~T卒'y Ip+v#ΠGv~w{w aXW[TpܭLh]PV7C{'0Bx=}+KroJ 7iCU  QQ}v Fhf,idxhhyP4HP(Hp*VaX}!L0F +B`iP7G(-,{[+ cC= 8%rhDt\յu2ٙ-0-PoYHA9:!9#:*d9 l8b4fZЙi|Т6`wsmin]ĸ`T߰(SI6e*I( _TTcEE0|q{MiUb@MdX F'4w`5hĊX<@$;96G[PZ\H%`.d/< +{ns.2n(!7V(- ݾQn퍕qp:o˲0@D1JEUc}eafbNwQn&\$MCG7>-j K1 SáJ*r!ar.(jh[@%>=2TP[XpזgƇa(ʤZ~a1,:1-QЀmu5UeEi ,0UPRk) 44UпZ*/j-c-\1hKEﶇٌ~V԰S֜Pv L W Rѻh6e!韂߹0c`ycuqj83z?ݭd$,{ǦObw.(oБWb,m-Ԧ4ISc"HO-TNU<"6)-;%ੴ01HBAG8l<֮Iň>̽'4{~K4<` =;(`ogKCuYq.PRbSӳr ʹujnmktwwvv46V*sEZE8háQݵ^,x6N"sB?LX\]]D~Տ:Ҥ''@TZqJT\bZV>l(5X(N +vyqqnD*$SkCuiAvzR<>?â?:ZO4c x&d dˋ n"tAZ:zF&1xہL ,n\M޸CfEk*Ja(.8/%zQ<5#'(,0oEy + >(4 +Ь܂Bn@0/'Sm}WyJzar1쪬Gؤ5p+[F#:'ui"mC\>.Cʮʊ|MZ eDcǯDH&^,!:*0T\oHGNH)(yx|jvayk㕇G4\yBӈ%Qt!6V!ƆDc8- +D >!S22ˢY8i WVffFZJl-J;ZH*FG0&4HC`,v;8=<m`ׅ #P;ÊB~B +uUu2J5XSQ {0<%edfSEOXӄVb*FFb.$Vd3J˂Y]܆.*sQfZ>;[q3LOfh(. 8 E(/+@sA_nAKMKKA+LV9I ЩB*U=8q3 M4VڅJΫX=_$:9rz{i!m;G .boL&Zav@XOX.v!i45fLXuw67Âaw+ xᑤeSD=c4`uccsksk #4dJX= fhnRT+8 4cAD,u븸(u4ۺ7hrCèT)yE4IByb0!ڊҢ8t1[9\o[EDFC('gdeC.]GG& +mO5%Ca)ihnIDc^[]l鉱֦:ш%' g8 +OJJc[X =Uzfcs%C_GxldU$S>22rǹB*8qH]8Tl16X(H2 +kAm"I YJ.%;?7=516L,:U| eEH]QG1h 8-ؘ(R!An㊁+Ç#aNi.bpt6 _@pTrnUh miB]8{Iʕ:O[x{y +P-M4 ++ ͘0ՒFM%*hIpA_@ }pxd|brj7,Tt(裛T 7tS0ݥ";"1  %;v8(GV._Tr7wb(6::6>>>1( vwb K mz|"hPHHhxD$XI)*p+)]ؘȈ>w: tlyHY,(.xv#Ƴz4P6#Nc8}A},ti8g$o? Ճ ɰ+W5M`OO̠Ϻ`oW""&dBGLEB;:TqR_ŔԯDrrZ&uQ+jv0sg +U7B T܁px&:g+8\ag +W.H8쁙61QDiਤSGS +gVvJRKBs6#t_wpΖ.Y7`F^1"1"4c +(*LM +> #;QRɂzݎ. VAG'z{:[[g,Df WB8(D&jI$Z1HG*u JGjɦP\ӕSQND_9P.C Uյ Mͭt?w +mqk85)l/f2JO )-DNZE9B}t Bcnp>G&x0SbIÀiӄPOq\^~c!vXÅX̛&܇z}?_ ՖA Ø2Z h[p;Z(,3T&tu k|BJjFbܭހ WdAS$[d RHo۰:i訸fT|b2|sr K1[^YY؊rzʕch~"`Dɐ_t '6,7mz|sB- +) 0Z*8Ȭ +w+(:{@{H~Kd珤2!* '5Y$gP5R"E" +2 +UkPP=P*bQ&^ ""QIfL((T` ^?}z#pQ/|XPyꜮp`wW9=Q\;1񬡦9]ǫõ 4[XЬ(J7+ݭ_Pܤc~ \4KE_<+ ED3:Z"U#b/ #ߢX(B %ŢBDM@aĘP<*#nŅwyV7y~ڄNfp!ҲsF(& ۼek QCb|gi*'?].m7+fZ'&` +3(3ao@Sވ? N$doD@DPPi _!y/yK,P0oP8tyb T/W$j6o +1(~x{9ޘh*ͤWW{ݚ(&Wӈo*:C +O)__@HtjAm;}D%|E],E0 c0y뜂<%F(ѿʁ%C`rA4uN_-5(H$)5]kWo,*Ѕ%%/L@`) 7yS`TẔˀǰaWx&*~=ߞn$EQK$䟄>^9zx>b5X x 8ǡ +paRp8PVb{k-Y6t.Ɍ x\xu6PGOsJ$7/ 82)}lyAC Dz'-PE҈7кC%fX"yQ?ߝ.W%G~D".E$dW.߿ƏU0lGD(Zv4CŰ+`"ÞS>]m7f&DHX"H~Hg /ݙ?hrƥz@w+ElݵX|??_Vƺj +bC~,H$~Y~}Jo +,s2"\:Gsy!ھĿ4z|s57 +X"H~3,9~o:xK!Ba ڑf4!{?Wz2U[$D-0,.>uc[y$B8W墨յV@"ԵXdk~<'>]-cD"mti`aЯH*4n9Bh& -U+5q0C6z|2]W$^vX"H~ĤhW&#hS$!b(Zbnch(i+[l<8>+H$@WRne~чNC Sqy*pshUb++BdVÕ-`PD"VsF/^tiЦN@i{B8p flM+)dhO;4_|4%Fz,H$߂" /\4b 2y6}IJÊNYb/#)XbxcfY>\-H$!~$2K_\wgBV /T P9g=0V%Kй4~ܞ.uz,H$ ?Ɓ٭;"űD"~@G&eW._>^2RV.g>u_47+1 ۼ3\Fa ?Tolm,N +.D" L.o^=<'B~XC,>""sR4.!`8FUNaKLİX|DDFh4 _m Vw$?0<>yh~EE\!. BOnc]brrp e] OGj2\Dy|bzR 2& ;h[&k~K]-&F=mˀDƤymp k$[CI$w0zwz^@Ȫ4.A.]AzzyG}y!2%55]dKta ???>0x|q63R*D=4:[Y"$qqF;!r6oB}DՍ'-TtNs3Z՝5V?_oΏWfG@Ky,H$%!ɹ՝+Wo:Y6͚G֡n{_a@&]J3vhQ́@% CSXW]IVbTH2D"AG&T- O 0JHZ1"XbL + /63u&;ގUq;`R`/^twy,'%&LZ%ŏ)E{ɄCy%>@Qvxa%_1Mcb>F8Ǐק۳< HX"H~W 酧'\5e +d\.o{K( +!l>k5=ZMr UG=H$oaq%“?J@`zkXBm%+h@6R0i}$Fë2E`Ȇ3^ϵHWCy^cK$x\<`X{"A]=c;eoӻX{N:<]/M79x,H$%2JgOo.bR0IT-(ˈA /@4C$Iت_okKrRE''D_N/n<Zмp v0>!Osڑth0vU_o,g%E@cH"H$?~CcR ߼3"u8xj|R_`^i*L K$ɟ@HTr^ukoنY%Շ/& fEX0Ӂ-@sx>Q~kت:3ÂCI$/ 82`k[`ꨭ;jmo8i?v=fxŅ>Gڎ_)'tdܴ()%OJ*kZ9{aR M,FL"4C]` RWVzĒ9@s Ct|-?+/Ǒt7WgG%Ϗ`]?uBXCLKOYق0LVؓ͞NBŒ!?ee 0YaO:.П9=^m,N tWd$Fk%{XlZa}1?,FarkqaCv1҃LB[)[6qy-)?fz ꫓噑UR=H$? +z+&%kb@HQ b._>Gz _z?c0U͏r\$%Oʭh[ٻxxcMsD93: HЯu9*%6> 0x.sT#,ixwcizRK$ɟ߷Db}1S'Zrf8=̨Wium@-XYANBWCKѾ̔x~ZjDGGQ80uzKXd &5EEMlar9vX1Ե I74~di27>TUc\D"iM+8yz')K:Z*! zX<*,1D"H\}M/IKq,H$<!QI9@`-NƘ0v" 7|,QӅq `+DZ[0n*+LMðqp tcK$D)՝Td 7`2@ p⒅2d22d2XRV68;yC1I(>?=>\[Yjk,-LK|X"H$"r*F._@`/Lx " K%;=4eʐ +ؘ bAH Ii _(>ހ,hi(f ;ulTDH0 RK$ČPx|Vi]fT5,6>*Po/WENNN-.P?<>P|zz'Q/@BLX/;Co[`=^n.̀&#rM}ck{S3s ˰`CY&mC7,!I83HXZL *ݠt}04a (Rx{ksc}ueiirxrbtd:qCm )y9$bX/,fX +cD"x[`hLZamՓ *1/T5x)p5m!x<75.*<<"*:6.rvnAaIYE5TΞq(s K˫[ۻ{2 ٧4_C8C<&jD.b@\__CB^@B"e0 U҆f!Gz:[j+K s23RS0Z Q^ i,H${ @_޿4m>s*|(=H?`ށ<.N +.WUr3)}C#cӳsK+k$Y4l>>>E c NH#ؠ>4!7Y//-@@: 19\uVIx1bb)%D%~Ë7uNœ&|wi";1*{@@0):=3R bnk\{rjyaqiͭ흝=>K~.6ϛ|!zIB./--B<3=Mz(zz:;ZjkYBg$%&FGE`ŐŐŘ$D" +?@,uo ,s5lDQYx[kI +ˮo߿PA̬ܼfnh̃CãcS3s KK* +EK\hsӓ$| BtCn!\tu%pIqQA~^n6$cc"`8} +b8D"?DAm6RT:t?7`Rxu:Y R Y(:설d匬"җ!![ {{H@(% 較`/oK3߆ښʊ|Ha҆Y '&BAubR$)H$wUc{@&i +i(N(ж:,>ߟ֧{ +RcC59- { ʬ+GŐXNr93+;77/ҹU 2'xƦFuUPJB ˅"IBFiHxRY AC ֛%D":߂"'` YJP Uzv|=ٜo(Έ gpL&U9 I, ;&Vdfb/(t\RJ" B~:H-.**- ᛓ#oF:iIII 0ICDGGFFa}r8_ȮD"H$?߷鍣'$O(>JGޞj.͌0c@t{dLrXsdٱI2'$Ҝ` 3@"t1c)$|aN Lz0`!Y +i$1P"H$_  w_`mFI L>%ENzzoi"'1*8Y~ BPU4lfM@h+q^hT"# IC`%(6i҆!apVy!H$/CyehaxM#Hh /m;DϏ˃qz+:$@@vQB?oa3fXaj뀈U$s `^#= $0`8,/D"E`^;~|D"9U_Y<5SWh6Xہ(N!! B0Ô ?!*le +&]0AEB$ +H$_ c`[޻|> Bؼ +U\Z&\DK3]X{ I >*I!g +[bń짥D"H$l.k>}~caiFZ#1޶|x;YiN F?v LK^Cb~N%C"H$~0X' ]?JAmPt{>>\wTA<  ,wH$ t!yU{֘Xbͳw8|=]ԘߐD"H`"Jf7Onͯ kTb v8!@ 7dƛ"H$ɟ߷شUz].4۵P+J2|䜤H@H$ɟ rRNyNA +j~K5 wVD~X"H$6~ =SkW/?>T5]G ڠK;>ޟ7¿KD"Hp}?yY9}Q:HR[YuyǏ iH$_@pDBfIcۏOORUʊp9].|~xy_ΓkD"H[`XLj~u(dE<װcF 0Ʀ-|=^O:,_&,H$??YM3BATѻ$S1agh'o:;!*_ID"Hw  eyidHK,@5-ozO)H +D"HhHAL*SW`ȎQaOXJ$DHD"Hlh96 +2Fo ['|;]iMi7s- cYH$AZ;|xXk\Z?P#7A$DǏXW /l<y"H][]dSts57ZLXG$Dg/>3~5[aW/ %Q!!D"HP܊ٍ֡k_%o]E+㍾ 0^]*D"a9>s|iwҎO})俚˙OA>\o*If5"H$߷?eM뇗/GVvƻK2b-dD"@A f/l<kl++RcӖp{uAZ\DԐ%Dg!SClz!YYz GƎ@se~ +2iR"K$반fJ[YjڡT╡-/?ޞnV&{sb¥@H$,Aqi#X_bLBT"X}﯏'[c,SD"auTBfi}ӛ^PSHg]IА@H$ r`XLJnE,GO$Y?JyIE}x{;_-6kG"H$? b^P>2y| + {9mB>_-N@H$߷Sz^m yB >ݜ@:9.2$($D"3񣗐csʚV1 %|5d SEx}9%Y_YlD"H$ Zg7襧7!dS/ xMy)9-=3+3#-9.:,$sDH$oY\92yxyo'̓îMSo7g3muiIHPF~!RaQ + uTtl|brjzfN^AIiIIQ~Vj|t()M"H$ !E'ew-l]ݿ=פ,* T䩡œ䄘`afϊDNɐB'bđ1 )ٹťU M %!SY"H$ ,Hc5DB=k%@l֯O۫s]uEyPc"à%@"P| b14b$KHJNM(/*-onj-I X"H$WAqyMK;'W. Ap8VѻM %i@Cp{ur2;>ZWY{(#XJN,9L8,i'$B)Ȃٙ 9,H$ ~K˯h\٥/YCCv#X xHwE8ރDik)mFjR|ltddr,I."N"3d0 b9LlEFa8.tbHlH⒲j}#cK뛛Kc Y !RK$rd|z~UkACFq "&S /[+S#-e9)IqQ)A`dDz/&o",GF2BOPq]SK[G♹ŕՙ()%D[`hTBFauА 2/Latt !זfƇzI$WLNNTX f 1l0$!IU:&&iLB_PX\R%qWh{U^D"r`XTbfQu>}]b3P ,$P_WkS]uEia~nvfzZJRb||\llLttTTT$31ApJ*0aE%e,Z1R?4:>9=t|z~qu{wps2YF"H$ hIE56وN`b < |suvC"y|d0?/;+3#=555999))111~ p ))iiHgfe2\PtYyEU ֎.#cS3s K+[;{({xz~y}{{}~<\O#y,cD"[OIYŵАh Y0[Xq $ּpE|~~x}yz<;H^]#PWSUQVZRXXPCd,yy%$+kj[ڠM ^^yǏh)%DCrPXLRvI] {"[MU2FA$򏷷닳ݭɱښꪪ +PxQJu MP[1N|bď/Pa O7ݵRK$C߃Å@Y;% e; !a0~:?9:\PhooήN}Ccӳs K+k[;{'gB'xj87=51y.D"@I.!=2KK` E2 ׷חLJ[[ʋs3SSccc###1::;1155Exn2xyyVͭݽãM AA̒,1 >~8&TD"2rxlr^[]$ x>%@&\]nC.o.///---.b!{WVV!~aހف.pptt|rzz}L$!_IkX9XQIH?ccK$5⚶[^`e(ɟ/ϏO:>>9&|NBaÐϤ01 bbF0f_OuZD"GGd <0}|yjxK6HpmBR0[B*pw{{s}u}}yyy q^ +7, Y +&9AbrOCɅ·jsI$4䤬[zKP) +Bm7r`λ!mǮرbCFc7{+v=Yh<ܗ,.+3ÂAOber\yu՞底rXsV~za}"ǫz5}L!Ǡ3Jj7E>S +w#d"ͫ@bo2 `[ MhGᰰq \y``XnGDŽB~ *!'-9ōZj'<ߣ@ qvrQ´b^ pۼX||L!G&w2$W7wϮ_={hCW'Yֿlj8'ՄB~H)=Z54%!"W +oh%7;/yyq=1!L:`J)h\ܔU]>5k+?X#ظw\Wџ)W3BYP^el8g| +_ћ3*g<މQN !PP!'g~]{uI_z^gv=9YvccB!?!G͖-ԬOY{&:-s~#_坳CX߭ (1I!#G'Ubybaq|~}{.]|t|@烏\{\E!&B6Ҳ +FfWN/]ڻ&Y;RNC߭wnņLJPWzg?_WDŽBBYՕgAzzyc)@N8¯E;Tu"=>x||^_MB #If5/ݣ[mi Ⱦ-i |"~M~ Y<| @>ս"! ԬcӲ +>ȲE~uXt>/X_ NTxՁ1 A]CڨWDzBHh 1SJf^Ius,=:n}}/Ay/8iC xXWsBH kum}#BkddL4ѵc~C׊AQ:ݛիDŽBBL"#"'fԴt N,h3{{ āxq=1B!$GD3&gZ+F6u]^ozy?߹0>$8;|L!$P5Ĵ|"wϭʺ[5 }aAonΠ&j*"fY+z׶ϯUSgB^Gz׀]=PG]qvr|tD}L!$rCkcR:UMGdy?bHoHwgo! +*|2p{}tϏ4W Q1!P$,Ek]9^ hhÂ\@>򍭗'd hOk5;%!DŽBBԬQ3&fZu]3;γ+㷧'dd {5 >BߪErz`:q%߻.Nvח{Zkl4!DŽBB0Yim0&e*?u ,1|zysPwl-|]'<]wW`幱*Ŝd@< !(D,rT,% GgֶN/OWt3u ^.7jOKHGw7WNdOuE9Iب?cB!Kca[U2ږwOP2|H'">:=w@uj0m|Y_XeJKicB!L`dsNAIUCk痑B; +8K:Փ9۲/͌ %9cBHhuxf oxbny}{!YfT: T6y$c 28=XYnk.-LMI!8Fl4fdW6wO/n_A0{^7Pw r1ddp뺾bРt(ƪL mo.̌w5֔[s2`cCLؘ:&3!R7%e*jں&fDɻkםv.(Yɏ?#uԀ?Q=,L?=߹nO뫋3S7#eSL1! r$ֆ$)[KHn588:9d2fR9o_wb2~|x@0xvrdud*Q1QBO %GM)9e -P8l;rb2ڥ\d>"r11d|qvrt9ㅙ skcM"81uL!g GHS!9˂5g`h|z~iuc۱/NFNr2 Q'շ}9Ř0V.=jt䋫 ʐ򓒲ͨ#gP.&&~xo./OQvlK0\_]d&uj826&Kum),.ml7821=$N?<>9;U^w"el*jS00pw{þ8`<\WU^\hA27ƲBe@HFZ)ٔjͷTT5}WN^Xox )_@eZe26/f +?be⋳ӓ㣃=qxx UK9-8Nd,ujژBȯdJFJN5gX +5͟:&g7v{++- / 3ðP+;ҏ8 1OL|uP<:!89YlLz_dWV7wtv +7C`ʽ cP/}=ݝm-MuՕb\P&%& =3T1!P]KP7bF99kXْ_\ZV\ 175~jkotwwuuvv|nooX_W[S]Y^^b+h&6xT.R| +B!ɰ2&!e)_)i`g -Ŷ2B ^T4\Xg0&#fbXLB!"HYah% eْ'n.*Złf# [rs26hJ0cjX\$BHPd%HDedXL+ef9 95532233 MAٜ. )OGGEi*x+B! ,Z_p{b3')19Y =C&)!eih8y8F%b)bB!sB0x9VaXhV`8X0D~4B@dxEtC36Y9*0!q*^XR3| zA POB[V̫I61!? +endstream +endobj + +8 0 obj + 137470 +endobj + +9 0 obj + << /Type /XObject + /Subtype /Image + /BitsPerComponent 8 + /Length 10 0 R + /Height 502 + /SMask 7 0 R + /Width 1936 + /ColorSpace /DeviceRGB + /Filter [ /FlateDecode ] + >> +stream +xͮW[➻%%,TX\ %m1sI)-V$%"Ȑ,_.cla;gfeN 3IcL Df1c1A>Ź37^g suwg1Ȼ,2ҙo.Kof6/qy}_^eYe?v?ּLG#mގr<. t'X1c1Be"ngYet]ďq?F0ry6#C G9Tcg+Y4ⶸnr\:x2.gbͧOy\D||e3D>4 S7ЦeXv&"ҙ@daA S_4/ư$J3/=X0U룖i:+Ks1c12>z僘i>@Gdl0% $F;/'Av9>wc1z-;ow,<׾r#Ԧ隈+u ehzk+%…5\giWvA=6揯,IܝvuS B0af?;&x;D7)\/KJyK4%6񥏾D䥂@c1cY\}n1+|(:0gw' VݹHD&W"(h2%Rk*/e@^ ^&#z$Ic1c1|fG|)|1:,YD`3vaD7>0:CCQΧ6Og1cq6\aw/7]uoȺK*,tKӵtmO\ Q\MO$+iˬ.Q&"úñ!fYȿ3ډkfY !W/܈002Hiz%{ڡf$gW6c1|v |zc&gF:3ҙ^gu٨H=cOj>9ˑc1JDWQmF3tFv.y"tw/ *VvbZ7c}DmȦxI,DMAv/'֮l߳Ytnk/7 K"wBT`Wyy gu5MU_{}xz%1c1q')W>=X{_+qH>D#X>v͇1f_\]vr 1{ $ݢ;n`'ڕ1Yv:C7uFeDlM Y,& ,Cm$2Id&&ͲDll$̕_о&W^-+I٦c oyz5>ַc1c'D'||ȧ|l$2?Y^ghę>w|n1_v_]ޝh7 ۆN~ ]̝F52ܮ BL¥0]+љh':e i3>ۉ $2iu' ]e#wNͺ}2-6kYy!Ǜb3l/E[^&yzsewvc1c+#ښ|9|DD;I i3> 3P9<p>C1 +q [Ӹ [~B}#OcNTU]&2dI> >d +p^1Dvܣ޵sĝ=]>ȭ?͕hr-3]e,:su 4,f?I>AEfЈRF ?iSUw,4"$L6^$2#eF" ɰ\y钗׳]#Fz^n_SB1c1?O>tcO?䓋2>c9LhYͲD8$SKW_cD\-k/_?Mqs->Q rE+4.vE]O6 3tY"\;A"l׈겱X}v2#E DhDYk5Hlk BozM +/T7xt /c~7Bwos1c1/pO>mg|>!"LDͻ| 9cznO^GMnֹqdn幭g˓K'*KN>"t.&zH]_e34 &IDe?$:C#+; mgF:lNdnlW]& /Qy^̂ ދ߷vt̛7v~Ce1c1?&)ܯ67>Na3&>ϻ?L>RzcK.fnEn]h&[voUt +Wr cF̅$asM}O4X B@!D<3Lq}ꮂD9h1%#vw~w&̟#uk,qΕd +.[Ox&pC "Yef3˒6iYmoI͓39Ge'!K*;gCGD HdF: LDz4«^׿wvoߐo7}>7Bn]klaF:,qnM%7s?ac1ɕt͵#UGC߿;o禜+t2G]2qfei"B6+KD'"4 ]4Hw""m.KCD آD&D&5hxԟ& s՝D&&>bcAëlf"W^x7oُ?ݻ9n\\r|c1c'>|2|yb}.K;6C%'poc<qzjW=w~astĽ8B.@.Chӭ< :?"^=ڧ b̲DM9OC B!t&Lq^"2tY"j[<iD&A @!ƦWl'mv@񝂷qMy a7oƲ?c1믿V>A[^e a8CkYEUvL4ڬ.&qL޾}L!w}]_.ߤb1c16}`CO%>x4D0|29<rC1u{u9f.zeyCv u +Nؖa,s2a"$2yg> G n&YR#"C,K֠(Z: б#RmoL8o~I[kmy;x W6c1|L.Y>3@Ȍ 9ȍ郏;coYY;.pS{;;BX ҙ$L N sAc$a>q2cmeD gOdeY"Y#ڍ<7ܙ$2k[ګ+;+;e黀iV·U~7ɻwL^^^|Wwc1c "|!w' 3}<18e|O:=18Wv9]st̵C{6;i.(%\n\ʓMkD }}YYveN&&LL4Vf:3 4X;~Y~!OMbDY"8GX"j[ҝA3ΝI P,a"B>2÷5q޼y{4w%qk=c1ࣽj+| =L-LDuXgu0I8̦j1&Wp9@/?w~ +2$:]B0cmX"bk+;X{e:D3I$:Yi@0ecc?ڢ\f>Q~fͶd2mIw՝sDu&a~1#; ex]k]$c1c ++|q#|O\w"$LAhcLs܎NcoxuӧOS힘;co.m悂M\b6;Nt_ Vv\$""Y]#ܬLaǁᦄ5>`g17߭-׫]6s~r7=\2\;pq) dFq(K% &"4loЈH-ko F _vgI4jٖ"6_s2#݉84|ә6͘>JZCv|c1co>ޯP B8["4"&>`ÇW_co+Y/!2=1W ǰ\S:]hٺ @FmxD B#H4$YR#HvwL|664h'LfD],qW2˒,+X{3C#+,M#6}zS~wykg3|Rܸwzc{t:w=>]ܯ=2Dei"I֥F0}qA;Hjrcu>vp;KudeDžG HI@gϤYf>ę}&tfYFڤQ睕G#$։vLG|{uZZ^:=co\v9^#cpV>VGhr,ͺ mGWߎ2vc|Ŝq],w>}Nw0  +i>$ZwtjiM6M3CՇ&"Qwf$Lf$DYV FdYuXD< 6飉L ;&}j{?O?c1W[ͼ^ɺ7혞1F8?_D63i }WjNЎjܯvscz_^r5• \;<ډk +; 4FtȤiv$L @0#Y u"hĶ; Is>bu޹O aByIbږtFЈ.4=;|wH־Mr6c1rE-oMw9_~03;rc@G~L1 3ҙe@X'qK7%~1_%;yWܩ_⢠sZT1c~!nzk_fazd1/EQky,#YFyNb1ro˝׫Ӿ_ݻ\\quדʒkW7aXu2l"bG<̻Pf$:iy7.;ϲMDFڛ<γl|ם(˻<P4XKʎoUyNy箵o ~ʩ@ߎ15 kzuQ;O>S~ ߱ ;&5G"hs1zNwΙ"}FI'D3CuS$p<cA|~sc|rnoνK\.߿=HT4@ $2#Y۲0iĶ\yAcMmqG04gifK9Ȥ']] +aF<_>'7-LNDf3k[}&ؖ+!hlVX=޼y[^,c? )r2/w/ǟtZ䶆{nqW=oqқ^Q: q;~19:s:g: :~")Hh4֥FpHy''vY1Z$!nݝj3o߾}k +.f:e +CŒvcFىvt;kp7'0Id@e:}DmK]9Gd@ hpElkW6376YƣlaF3fmK0XuQv ݹ{oܵR;i{?Z;Epc1H>6\]ܦvSڕNg7@LAq\1͹Y40s>L4Xl"V睰O.8}fqwr1W)=ޯǪ] rQ.U]5b~$$LĪ;56$a0\aնϱIY$2#m"$:4[tȌ Ye 裾Ohlh;I MD.Fn|{k㼓SAO9c_NԮ_Xw]l]\鼹[4ӏrdD ۿڙt4ɧ"llajz`8;1j8;s9ZŻw̼UE*3 3"jшMDhtq!u^ii@ld߬Kl_; fYrڍk{h]Mh74DIܝWFll"B榛3osަ}v +N1&3zuZ{7놳mjW:^cW7gDDD n667xp/c17xo*9}ͼҐb6v4$:6eQYږwy,6ʎi3&a" ݉n֝sgC qf6W9X{ Yϗdnj`h'|_w~7~9-89?λArc1r1+(L?|Rݦ6í 3eUoemp8csFv=:IF>;d"j[9DDDY9sc?5qkrz^˻wݩU[iwU ++fYx+;DYֶx:fhHg'aֶ\MfZkcI¼CIOlOؖwLLę}Ī; 4D?li,i< ,k[{<9!zuc1ƿ4wgj6uЅ+θ ok#93%~ uv\缧#'Rgドt}fmPĹST6c1r7^;YzoU^ ڌv"\;L_?dDY"hNdޕLh$Y۲/꼳( fhfev%Ft_,4ЈۉLD2s3i|5B#e@N ୠpZ0tCB:-k'1,vG}uUty{% +K@Q~?9lϯc|.t^u>)P& 4r~Hhǃ}Hw:4 *e:ڢ,Nt%emYv"bm|ctpB7+vOcSe}yԹt]e'*k_t-1bK+szmps_g?@gœZs AD YQYDei#ɉځc1D ˋs)=6]2]<̌.@D:3"4k H"ڂDfei M@ BFY"Vve O@D[ mf  .0I4LQrff׹yi34Q]tfEh@0DhrNp0 t!s1:r=ڻV%?~/.ag\}9Z~c|z*v3iyiDfh5NcX$=y۝j77/Ý8zp!3vceI#4˒FdI"@ Q2m"bk,H&et&iQYfFDF&j$IduF3ҙgi]CwI¤YeI#$@ eu6Ѧ3.:LLRзrj1Kj|p9n5)ީ~I۷o\wp$W"w*ܯ@"UYf3&2fQPc|r{yy{96GgHgeX{2CG:cpQ&I '\\)|-cY,K7>NnV;w!ZPvrswX5x"O茴I¬,Mwy(tY"H$:c<uGoUvLʲ3#ƪA<4Hgnl"CuQvrswX5x"O茴I¬,Mwy(" +4pZ䏽[ Tc1gǝj>}䆃.+ަIQoV]q_N޵7.R4Б_.c-ȟvi茵#G8T3D=|ո}}^/dŧw~]Vv"4"ҝGhfԕ:gGh3׹ZwtD& 3& t;'D\;[eYWܬkD<갃'tgh|wyS}N +dO ЫdىXe'.!ɣե@Ј.&ADD[OifeI7CYnIceimX!qw쬁 aM$dO ЫdىXe'.!ɣե@K' +Dx떵`e}c1NLS \8ܬ~jGE' F.O]CYn sQ6c->|󡳢L mk?egtqAqeq}c?,'js9ݻwN>Ys|N&zeIyWD&YYv.K;k]j['v# MvcF)2a"3H4ik[MD_ βAڼ+e"BȬ,;C% ҝ.5-ΓFADMg7>ѻ`mӎvcp]z^T=Օ\eLN6U ' ?#1y^r1nu!=>?CFfeƦS̵ﯶt^1p\q>YOk<>Qߕ'$LI!@.$L%k@#Bk}hk_? TK@3Wv$2c'< A @&a~V&,ܝe,sNdageDf}Q@k}&"^:*;&"ҙ+; aF B0?OKlQqβ ]8|3ɏ[ַCNMc1e_u{7.+6M+ ډX;Ȍ_47xܯc|ss3󡳢%ΐΖasv"\DvY;cz%z9p y7\u#*K34U63k[X:w:8M7w!ko6I_m"D@k{ȒDg=Z6h':I&I$aFmKz՝5H'"4[5 3&u8M7w!ko6I_m"D@,g󌳍sNbܲ68M!c|r[򋷩Xv=*..$IŒG]6$L& `˙;_}?_=6\3,N!,It֣evh'jWwBne1kJ8E{v;۳:#m,K ;,CL"$MDh꼃MDf$aehD,:k[X"3sףu iuF$YUwDYՇDIbRŽs39 w\c|üY5]:pe,MfYFD[ βo\r-ӹcs^/c ȉ 3󡳢Iٲh'h I`_91Ɉެ\.MbKN|X!qv!g}H&a""5e`$:i6a@ 6w7#P ]Yf"*,fhΤ2Ie DpD8C"4 (KkF$Ăp-k?8)76Wqi-qplnFZ',Dži2˗*6ׯ17‰:= MgE ӤX"h%txȵṦ'jc,gc7o8u{4ދ Ne34u"C6e턹ʎ&qfA>ڨcsN&  YrN& fYn a"Bu\w4~h&beD&zege'*;IqWʌ(h'UvL03wFuu߹;pA*;4Hef&ځ9=g]D]Y2m0qWJ6IdX}ɦ%:/C#BD@#"m"hĶ\=y^uG%,;i<9essNdH.& ,w99 9#Lؼ vcoӾ߸m],\2"W,ItyzzeIW} cojgD!LfM4V_iI1x,X>b7cA>}8Wfvwgul"64C4HGCWbYc՝A#\' .eyeЬqf?*;$29yLDei"66ID 66C#B#vDli"b퍇h6c3.:Cƪ; 4FdN]6r̃tv?0tgcoA/ƕądc?*;$29p2\~\]8߯YNwmYF g#m0pi$̺4#m~V&Vv:+KsX"oi }#AD&U6Mf]wyb՝@XAx4$YO#aݥi4DYYmqfM)(ܲ|[Ane1Ʒ;Xo_5.+H&Ll$X͵qܥ_c|Ŝrn·sc%|s44HwȤpDm:xs1ƿ3p/ǟQ駟޼y#r p&bMʎI#"i-:IlaF|ģͲ4]}]ЕeY3Xege&u5*Xl"}fMĦbFtE& 3&[t0ŒGek?iP#t-syGzܲvZr1W,zAL]\\vpkGfY"A#$p ;<͚__-sW0iD"tey̲D Vt`4,.c1z^ IErtV/;fHg> ek?ila>GM꼳ʣ\uII4*;ugm,˲̤qv~NfY)˻ll!k Hږw:ҙOxBYOx[Q::Wyh&N*;NDh9H}77.ٰcXW[LdvCv2˲,q~Hj-^Yѹ18af֝,2Yr8;̉AȜ?"zyӉNΦA9iL6bu"H4²,k] MR #^Q7ڑm"67e&"&$:I34 ,,K2,$hF!6\'I#,˲4X.>zn&(ÇXemv)k1k9K;c;o3M<$aFDm$a>$:iIAceYR\a @ȌtflMŒC%D&[Y}ZO` 3֮<$aFDm$a>$:iIAceYR\A8#!Lu@z1_1zǺ\\)ȅ3&a֡A"5I W+{1Ns'I0[Df3ck,c0coa?UwZqӵ79%]6iIila>'fe<$Mα_D .5,CX&>k HtF< PcHw"IM M` >A0+LX}D%mr}rv*޿Tg9cn\\ .4b]jDY&΍Mę}z0Ҹ_-^1xC~.js>N46QA#֥1xܯ =|816j\q66q0EL~$:7Q34@8[ۉHg"ʲ4I$Y6i s+;eNn?} 3 ItfhDY"*N@vcyf\XgY"$:cN& & \gб6$aF@#6f&bL#VwwH>L3C#QYv"tn6$3:),[o޼4z^393 + zkGv2i6I:C0pHf[⎍ ?_Dl$Y"4X;^Mܯ6\=ηYjxϬۈY-q>k?$LYҌtf s쬳,+˻3֎';L+$2C#eY{iHe& Fw6}Bt&G~I$̳웕X;zeCYgYVwgOv4V6q o 8y錇czzmw. aY.{! T{csܝhYѹюl):il @eY>Qx n816N8]72iDk@#g>tws ,K,?"mV& .Y],3&bcYqn ɉR B>Ԉ.נF κ/w}$2C#"YDY~Eڬ,Mf]twyڧOLIF1ZyO ڻYW +a~,3&bcc!?c/}1}y'jưt¬,Y]DDsM16q1RNտ/"7NNhk[>iyfh6C#heh5bm,C`Gme@0"D H#zM@>BTN34#Ga&i34FXF h^#24 ~$fY] -Lg-/r*{D'p3c|eޯ믿{ r p atfM6M;"+T|^/c pv.pKe&A i,za;x1_jg]M󇫝-͜rsws'$:]}Btfu,lm:&k B#Ck$aȬmۦ%"ډrWvHtֈXKDm˳>fROHt"br DY"$2٢3"tMXAFՇ ItNeNhgz3lG3㫑~3󿫀BLM,NdV댶0s`?;6\^1nu9Qun>DΖ&k$aȬmۦ%"cp<Ça9_etʽ +㯭&g'jDۡC#2]CYIdt6lv mF%l^Y4j۱8dȤ%dA"IDllF[ I"4I$Сe,$2ilXmYfrU6;i6C#Q]6h,KXFN_nYw"Lc129ջ6\p8dȤY93qfx1BDsc,gNXFDD[٧p<80;ݯ^1zz˻w~ۿ t6q^A H4VM;Б6$I|d{4X"Vv+;$Лlv A@Ө$2$a,KDY""m,$LDY.M6XA H4VM;Б6$I|d{4X"Vv+;$Лlv AT~uNk8љc1V~#m?_EaJI"(KٺL69g\k,ze,3Idƣejy+DYe3qsBsZ-ˋߧns12={s 3β@D ɦI"a6y;6\7"3󡳢scl)eYD&a,H;9Qkl1WrxmdR  ,DllFޜ7lseFwy; 4 ,A"zeQyfv22t˵QY'k eYO_X"66C#BoΛvC;aeߝ@T '4w}Dt7-0_ UZ D(KyC7CqZ2߀G-fhLDh<}.XjD=ocos'[܏?ZzlLO!:?w7k b6盉2e|f|s#y6Co͵#;&Ov":웫e& Q2kefu`m$5vdgDfeY2d3u>9Xgu"6F0CehĪ;~fY""݉Xar62֎' v"K&f8ݙ߿7e|-\v%@g^.kxr~y9~Zڑ67@܎WKx!e\۵Xn!“/3?./[9?r-uq!DeI"F9W#Gec0oPgVOʹY4#y9~h-uB"N/-ؼO$/_ʼn:s/"GRtyIDȌt'3x̿2Ј< ^p98d:Ǐr5"mc k ό!/+KĪ;~8reuusv6vN.fOԤM$2 t&@<:yСeYYf""D'"4 3@#*;+;g7n/i,CȤYvr7ʒD'H$2W1Id""L` ]y(3tC#ʲDE&NDhfρFvZ#\ݎk3r9 _pC{+Ko'"+]C~`~e95g +1+P/*/3WL|9\d~B 2YוwWې 5"se,&"ڍպv ho_(K:w师%3/ +5p;A[vucz9Wy9^reОz/_ +~Z~f΄8=933@#*;+;gizs16kCW8'_#z8Ӛ酊FdGukY܎׭@ h|'%|>X;ʎ@֝\enj@ *̲D BG:scAM:IgՇ%DDDIXe'sc:WUvLbeg*;fMQYf%:ҙhyl}N:>pfC;y)x+a8C_Q)u'W|__Ѧ%?뻑+z9hs|U_t/bX_EZ;}yO?+ /HU~́ i|;Kw_ո.Զ$;HБ6IlȎ럯EBK-%x9w;ѷMj߳$~GS'~,~lN~r~iPoHw)q9^xIh /4Z,W^NK6==K/<3-.RX'wYѹ1-sHgՇ%1 Me<ˊ@vJx%WתePKY+1(pt^-s+x;n=cUy%_Wf^^ivTsY/K/f䅊@t=?v~f?r`4S^/?x:_-37y>d34Df2kGvʎY ,Necƪ5232ҝg?Ge'%vH,& &~hgN}fh+;$2e& ֎lsssw<QYޝ$2ƦU7 5Nw}7<.4#zKs;z][__Dt :|ɧ\9bs~ 6s,<+S+O5}5W!G'd>'8^ +Joo¨ gYBz(ׁ(m >Ul#m$ +m3ye?s)c{O{~#2Ű[8&8JЌ*&mf6Ocњ W|@|R{x>gK-6[6siT g6fͬv&ڱexȓᯠ&uHx#gfǦ50b4 lyMƯ7NŮ 'XI@N.{4A0g\YARˡJL>ң2M$+zL$eO ~rv2I;I{p\2xjv;.jnZ~/B#)ӂ^ +^++~7~Ѩ/w0Z?[z%2N'\?9;χyxvo~oYۄWulv ldL ëANjۓa!'? _ѣg")|oEsww WxPse̓2x h4~#)AʤB^oϲ۠#7 mt!#=*+K^ Dl0z޳pAC(|_w&mE>th3a/=VzAxew^Ys=î )ZʡJK\+'ʘ2Β #,AC Ayc3.]Jӡ )AK _|&ʡJK\+'ʘ2Β #,AC&8ܺiqV|y_ .$\pK?@ˡ @x2xxYWOw&n!-Uíq (4^D='4o8z5=a' 00y\su =`:(U( Hμ.%t #6/v_ಢi+vmE{]1IfC+Oƃwқzw{ul6Y}^ݨ;7J'̡s&Hpu$8ixcA618xyYoYZ:] S~Cӂc\PzAD4S̓C z G|X"$ R="Op>{$ M81l7P~m-{ Jxm)/hC$^[a@7GdLdJ jc)W\\Y%H>j 8%xe%I%.RXoiCs9 \+)1#/$8ȅXy +.D"A'WC %N yC rRg C9V:AStwwCbݫt+l gѿWc޷17 ׸ʭn]PvPWĻa?ov&_P_W^|>tkm}_RoQ/N.is4hLM +h6[VZөCPi3 H$H>j{ c0xψ ΞTz=ޘ&ȿkб %}xAprd֦,ʺu/]0·$rid`$\|of$8?Vbӽu~>I>4L35qӷP6>.($\;Xı#$xe%ΉNoT3Ag }(煆z=Gn$Vt(g0hUNl;,Ge9 + {ONSo/NwgK\,1aP00AйZ&Nϔ:)'9h.M}2l#FNC90俐&nHt@'$7\C:|h %<.z=~# +'?'^Ϯ vB^ O.J x|֌о햠u40)s7#S#ʀ2rɨ#) H d9S%ȝM$K$ٿPA@0uXI@+G^\:J%%& ': 8\b2qzs +.R Y")A@NC rCDs/>clr^Ņ P8޷Po%ya=58.݂t݅ o,ʽ~h»@Afű2J/MŁ28&+ P;k`$n}(}^+c$M8/q:c؄qG_n9Y\ADRv 01Hi=e;9d=-w7 Mk;qKmRbraY@ #J2 _q>zQ!AF2T6G%"rd ': C\Z`_A6Gg'(g*%,v|L}Mp&ȉ%yso|! Հnqq4}tiV:pL߆5}8Rf:&A;C 'uʡ-"7pCB{8}v4dRez=ӗ96ޅL9VNN&dԑrfxadX{vE-ˈS`qI rR)QABߘ٩l77!հ&VJN.,Gmt#CG%H7K`=8L wA_I h]aoĆ [H {,NuNEJ$1i< oR8AϟwLtcR`X 'gpG $8%x `C9>¥YYXGr杳мf$8Ȩ,JI$OHM9%cPw.*A.IpJA0<)r|,?Kߗ& ;gyGB28Hp89N.F.I΍|tr si& ?Ob&]GGr9^¥YYJghHpu]^.M ᙼT.󙡣ޝCvN珂Ňx,لf׌2⮩EP ~Д 8%x8#yq) fP [vl,2liMYoϧwWϻuFhڡyGB|a% >*%&?S")a0PJi[Ssoy4Z K]vδp,3/Ca LO/hݑ{y0lhѿP dTH1<4ԮY/ܘP]$`?X"M-DR帔<1$M {Fn"j^JV_L}|wxhzkħ$,e4Op@]1-u6vbvх5 &hAzyR&uAv:|]ѐ? -4_ #cG,/>KL.胜;qyrA3WwDG"Ot@0?#.M%9Ygg~3O<)#)3Y^|(# \9w%&Cf?z@ D`~RG: A8%ɹ.R.U.X?_}/Z:i%]Cu͡`@H84 _胜8w>\b2t5/h7a0`{ɣfvr5;?[ {ݲj^[)x;LO_ǜxk@qkc=cqλk%MY `T.q%&[@D1)Q|Oq$ +^oڶсQsIp$D'ndJ5 #p1y(<="ї}f}; M|c^>Ȯ&~Q1YS>7; D3Ww oQGLmR]eLX/u¯m7؍vcG'ȇx 왡rr{YL*l<67lnKl<陬)?߷7/hzsX-<u7tcqmiJG32:C>ɥB_PAD`F;ܔ,iU?7fx_^Fg3@rpi*ȡ >tx_Hx_'# Ja'Nb| +^Y68-egy\brQ$ RXЦurF3}w0wȼLdòe gsɡ+''5Qy&&'5K>9)AgOMDr&ȝəKe^ 1 +O>/ӣ%r,G噘,A2>䤦ӿy>7ApNzddHJFs>\xr.=tЭ|RHκNYGA#㥼$#{f 2''5%c#Fj 1#9/z $K5]m `li  XFwX +IL;W%`$qbq + ^Vڂ!pi{xӱ{T4QL5  f|>s,f-M?3t@8.dDHK̡91 s9h`_bImi%:Ӓт[y !J9 A"?DA"Xi +hFf玨I_rOe;= @e+n9N/蕽E(ȗ/1!Q);H e}OkmCGVX/&pq +&w<dT KK0e3MvrOK·0EMj }lc`SK\nA/1!QY"9D"ƉceRF~ɓu,!u +͏1_)V§wα0Md qJtP HdK'LbM ԇ +dqW*â/~,zk IvϚnP8v ҁ KK S"_F. &evi s|/ +<U:^W4¥D"#_F!y) xEpd BXÏx(8Ȩ,Ap A"?D#_vނN0q.㟉ϯof-]_ZhH$yGL.9V&%zFb.|'rԜvvu^L[%8N䎇w%G;츙ʎLZll&2wD HJ\D" /KLN4cewA2)H\$8 DaI(A@FeyWӱr\ 92,AFeD HJ\D" /KLN4cewA2)H\$8 DaMz9'wrtQs"b'}1qq\݂_H|ᰰׅ[pHDe<}E"0)#fjd_붝;+&{DaI(A@FeiR0/2_z#x^o-l4#"0+qDb w/19 ITFLMӇ#} q 睳mӻ G"Ab0;֜dTw.}e8YF.AyRg|T G\J8:wGjSl;9mi0qDd(1A.c~EJLA# aiY"X *8>Ծw`=_cX=';sZpNڍα)/ptXe%&'12x; C rtl5S2$޴D ^+{;p$$ rGš0QCm"JvY^,0M)KGО$=잖`kO|>a0a>*%Ȩ1' 'uʡJKKJ@:OgfUpOq[t{9)#VcT R`rR< riFLv]h\M$,F',,}B!ܲcR GQY|쌳8rT R 1Mfj.%>$}7hܙЋx.' #/?&8e(A! gA)Eݑ mP:--t$rTJQY|쌳8rT ÌJ5HܲXt\g_v +??~ ӗaSJsrRMAb<m4/uNtJFG>bR'&/O֙:%&'H$&NK1kӇh)ΖP<2?F|>olM F$ɚ2N22꜉A"crٴJi3-;@+}>6N\W^_#w5]=6;(4ri`rC_yO$rKBSjHPzNB4h%ZdP7٬ O|:-u؍pP&Q@YepLx( )/HViODbCz-jŔ[`+''k2*˘axYv=x,syլwwF"AIM$Q@YepLx(tXX B?:|>Cl `) 2꜉A"cr8طFh]ymS'ߖ5Hd|x:#:ѹSӣΙHJo :Ju2x8DI r~9 |d%Vo {y>Hd|x:#:ѹSӣΙHJo ΐ:qtu~c삨y/"j<ޗ6XU.n'?qG·xD"+_ēO!'f:1};jFb}7WE<9?\:/ h)ڢUJ>gEk Z=X=Cby-p&·xD"+_ēO - =y?y?u~uDR|7OЉA*a?.;y6vk伪@;G8 :.z=1ov>ă%_y\0K|bK>youˈAۣaAc@@'HJ; @Q.sMj!$$8X fRF.q +&NH$&G,AC A=sNYeMe x 2>%H#//KɨS"938 {~:K '$28Hp$>N;;v'|N'k|V`X@h1CKG^^X3)#8QDrfp$&X6w`5BBd}%-Vok^a}Me/dD ;MOq^a<kk%6`+o=&4! ADz @z#}!*<*O,AC A=sNYeMeĂ[v@8Aw?.y<57GX4j+ 2, d|,KG^^X3)#8QG;X%ke8:Vha}3lyڼB[8˼ӡ:fV%ioF5Ty! ADz I:\4 r<.<#M½~cvt< KxKHCD{9>xHs,M܁sNJ>:V +ǚjwqiF%h)윎IRW~rNR" RB) 2x;ep k&<9;<8&;kNOt"?#{耀\X`D"윎IRW~rNR" RB) 2x;ep k&<9;<8&;s&4%N9y띴~ńwYVV̺bZFaOANIJ$d\J 8$P~ `5*UnweugۄoI_IsrvxpL#w>ל4w>8m~XUV:[-YAGXI@@@qz>*e|' '$% 2*MI6>xOq}'^76M'g:IDK $a VN> BYCO'KI$<9;<8&;ぁaq' X4fi'xUH2kp-ARqv胜H$ȸA"q +˺*t>NNTYF; rg N28&pyJ2*%Y9p SS_CDbӱ`2ȱ;'磧G#Gd耀ԑA?P.YI@@FDR\:+'W>4Ap +3#wC|(HLp:VLF9Vϡ'|ynr]=zc kbe\r ϱc%I rr鬜\8_)HΌ\5ѷ>2B%N NJɨ#JrR0`QMl/-l!4 f(% NJɨ#Jrruʏx%rbeYx FNdxr鬜\8_)HΌ\ީ/eD"1-AwZ#--3';XΏ?w66dXg=$ R")A@N. g+ 8IPN.)f.QGG_yPJ$QG1t̀caҼ60e5CoP2QDRəw3V_3H$&\bgy4+QfrYOUxBpp69XC<88GI9*KLHp$g9XI~D"#2r 9Ϋowν.>1AxM$dX+XiUe9<},d耀GruŁĻ=-D3H$&\bJcascv߾v|>!YIn}T d4K?إĮS.#?aF2QDRəw3V_3Xఌk࣭ CbaC:X?ZڐlHb%FxBX|(/M2>P2QDRl},uswhˁkzx>T茕WL$28I(ާNx^?6|nϜWɰm,17xBpp69XC<88GI9*KL`=c]ΤC@8"Ph8uɰa׬piVr ral[8\ߣ3A?睯 关ADzAYrV+1lTû8L'|w//h")GJLArP2223/ԔHP4Qɗ/O$$C*:˸{yAI<8Pb2c䎇"yD"2Ww|(ON|yr 8K8ۣˢt)u' &k]/JغM`IArP2223/ԔHPՀ& osӽ:2e˓{gxD117`w?KY[яվ)X=c^Kܽ r(1ʱrrCτ_qv}mw}sWƯz??[xwSɗ/O$$C*epp?* j̶ +Lax( 5%9M|Cyrve䭕5vqG)C8 tk&!eXhC 8P;\F^F^F~慚_Q m9OI ϗ +ȗ'NlP}: (m*۸b4#Y%& C9VNx(ryyjJ$r(r KjaZ=jkC@? +_MEԔy!O\ʡ > x3Iw//h")GJLArP22ri[1iSkvЉ_KM;3fsq)?=|1`H%3#':19_s$H~*#_.'5KryrL\`r rA$NSK9QDr,<щd N#A}Pw9YNI_dF'?18nceg}VGVek(c><)9*K$gF.Otb>9YsӿH[r-oVҦz{Ӥ?| ,ANt@J0N}F Kg%[7kk,.xr\qO:g''%3GeN̉%E4]]o8^|_򕹭ҡ 2%rR9 >*'D%&wz 4A[;8G7[< K 1NiMi^DrfD'擓5'8+zOA>CeK-4[O G)ԁ |ႂN3~ZҵXŔ¡w3̓əDrfD'擓5'8#sJP[LXO#=TF]Nj 'F\w !=쾈Ϋݚ;-;oiAƥg}|yR"9sTHΌ\|rsK7dot8: ^߫ݹq Ece"G;=tfpXsXv&帔uϘO0OJ$gəK,A?-|>o$)8L81W%8,9&|\po)AJs NGC5P")D\]zZ<%rD"8%|\Op:Βc % fd$1' tT9q{^X %r( HPΫN% ߥFK}ws\kU8?gu']%RZ=pL$yެS$3aq f%=_]X %r( HPFҨ|:nhϧo۵㍑HX7óhQg9t%9ApK":Bv#:_vO9x-m.PwEyaM2HʡD"/h"C9*VG\"H$NEG8rH6kd0o.%6A1KsE.D^7 c%9̡ šd(V/"[jnmpP߀4D?V[%knh%2NYrL$yެS$p3>J3 O%{^X %r(ЄC, yiy&m3AY'8g1us\H{N 2VXCvn ?Rv8^8y$|lV(K$14AJϏKq NYrL$"4-sNpfp@?{W|:1Ȇ$ \KyGg9 ?s\JD1A@28r$/t(H.#H C rR3;E?&NMӔMY˥GZq)OHʱDӡD"A@ʻ*ZLKJ*4OJ:'H|QGFiK w|>Zvը7q)/,gK ?&H~R_GR$rv˗nB~}&kzeooH$28P>A@+:%3H$y"A_%,2ݧ }Tu)٤J#'ep$XI"_P" c]G"Al=-/l}c+_Þ|>_[cOb0%RB' ԗc%|CDI$VգЇ*A 0ǨK gPXml^0A_%Y':L8 +I8J$2޶ \py܌=-$ͮH$ygS< !]gr9.=s|q)OHʰ JB:z*z),T0!˨S")A@bH $HM8ewA2)++I CyI(A@FD"Y: j._I:%$ raMD^QY~Gd(1A.c~"2KLA0:dTJtvu;@w&J7~맳YMS(]nɺ"X +ʀX.ep k$&H2x; C rJkE2ZLpO2I 8&C'PJ Cn_eUC=xn\nX4#GR.Ny"A"/\X 4AtTJnaJtk'y"IkxA epLN%&gɇ#{\D\Jb-8g _8|! ϟ}`}w&t%7Y M8ewA2)++I Cs-x.'k(45Okړ:nKǢ< A.I q:* %&e/R"l Pjz%& KLx@`iPQ0NIS ɨS")A@bH $HM8ewA2V:V~?_W$)C=t +."A.h6-&&˨S")A@bH $HM8eaYbڥn܌)a/ _(a<Jɉ&ɽK,rTJ$rTqz茳8ə# ԔH$s|(ԗ .ͳA28HI\<8&˘Oys+'' '.ͳQ)A@QY3HJ$g\`rRS"HdIS_D^^4rN 1'Nδ$N_{KSx8w.7cAiM[rTJ$rTqz茳8ə# ԔH$s|(-ZXз=pi2Abnd'??v妫Q4N6M{Y娔 H,gyq$%3Gn@`=[Xwq?j9h^|>0;L;ީ/A"//\g9' epxpL#1 $DDI DE{>z&-IZKIi +DgőH 䤦D"ȘCypi圄 SO2|O c5*52ېJBSQ)A@QY3HJ$g\`rRS"HdX4 |x_D^^4rN1@6m@bwxaTyUiA;4A@@N\gR CgőH 䤦DbmAZ$|7ts^'y ) x2擡DC)199wpie^J D2NqGR"G:q"?y[|esk# l 2*e\Cg %IšI 2*e\Cee 7~um^'O `F:ˀdTʸxWR~=IyA"`rCa aIamO[M g Vq^ zeoKLR 9|8 ': 3A@| ~aMbdJ"M. BIЇ4MA~C A@ Pxh(A0A:KLR 9|C-B?|IiCJg+UV_I{$eG< K JK:ꄧDAr&NHςכU{ϫt86fڦiߤ̎f-_I{$eG< -SN,N/ʿoeAwK7 aMfgC#=t&P"/a04=I 2*e\v"/HL|P)`=aDg$ :N_"H k^D"2Nu2N kd}rAu&c'wJr[: (awGGb 1gD.cNEӌF'W^7I28&_ ':c%dԑ'u8DR^y%2NBǖ %~&?}~' +ÆϬϻ,?V_i}>neN%7I28&_ ':c%dԑ':^2NAL$Iy%aM w:@~F Fk5lx)3/;H$&ps:':'u |E'H/ WlKg|||})98҃2N?D"k^"A@pcCbM2񕟬OEe wS?ҏ*l#Y`:ӡ<9S+:aDg$ :N_"Hʋ5/2)a +"aȏ{_'jx5,Hx}dD^"|yP)` ~3VLIJ`%Hgbd)GA"1jWZ\LC x9)H$&F—:H,5 8Hp$p$$8PF^31A^fZ}%-o6eKow%AbB~&Ȩ,qI9 'uCpH%耀A"/_yR DR?:ʸt#H'WG#1 S-`MY~ +ߎs`Fh Į .JQYr(AN,I91_K9 D^zÊ86_l&҂_ +C2Oo c%K:$cˑ,*ό\>yD"oa6|^WOn&1GYv=q ld>\)8\5_qRW~rNR ɳs " ^U$|r<3re_`S?ߓ;ȂoOWsH.g^8=?<ŚəO>gF.k"Ot"?s%O1 G/~!('<8 o?0'78Ddʓg 8%8%;D@@@.L|r<3r9o:o>d E||IfOV +x}ˑ,gF./*|i/ހkl0xBxti%1H_qRW~rNR ɳs r̈y!l;ɟ?>I܌Ut9'43YrLt 8$xpLb%dԑc%q:/9q$2~ć&8Kd N282֙\c2H$%YIq De c+ &+ /b ہXo_+~0 O2]o(Ku&:I rruV$r/q&QYӡ|(%HJɨ#Jrba-+w^$H$xpLb%dԑ^PSCO4p?s>Jǽ} ^`ӡ u&:I rruV$r/q&QYӡ|(%HJɨ#aN~?\6.F-][ƚpE Õ O֟t()cɅ>&DR\gyKITa +Ф[A?Y+ahf:X`>}X]mµ^8/9q$2~ć&8Kd N282֙\c2H$%YIȡ40b'{wf2󛂵d{ +ʓ:'gyI$ȸʸ%HQyEI9*KLHp\r9=t\#tA"1 e8լ<$rϓ3Jʓ:'gyI$ȸʸ%HQyEI9*KLHp\r9=t\#tA"1 e8˹]7v6~ˏ/$O(i:1ݮpJõC38 Iqq5+K̋%rT ʓsz GL Db%&0J Jn=@RZ0 ƨ4B$PY>9H$K:$AUլ,A3/jHQYx5tZkT:A^zt*_#ios˵WL哳?O+ r(O,Ӈfp$% *jV G5Ks*Ol[m`Tg\ȗ HK)A HD"U8@NءLL0Oʸ|T Uƚ9S~c=9yA"A" 'WGd؇ݓc6>VF+r]ءLL0Oʸ|T Uƚ9S~c=9yA"A" ':fŠ 7 x>ox[F8A@ȗ8r>&g\l%gbyR売 >Vz4 6bx/Fxɫ=<&% 9: C <8X9?ѹxٌJGe |\eH:78!8&iK$$̻AaEo9UU@|C 'N`rqfPr&&'e\>*K*cD)K&el,3'm?c nϷU1lw PKJA 3<A"_ɳ \}~s; I$O-dh1' W,9P)8+9ʇ٬JLBS Hq93A@@@@Fe9 /qh(ԑp#/OQY"'되yd(A|CDIylY%&)$˸ə J84O{oL6?a×6|F,oEqr9.ʥ)b|CDIylY%&)$˸ə J84Of"qCaMJO'7-ȱyd(A|CDIylY%y(asp/j%:?0yĂ;x@ˑ 2*ˡyCC yyRG'iMڦlVnܞ}LPz %ӱ<|h )/:ˡ$8dy#9dTC rba%84{5siְsb  bN@.YrSp:V's$ųYg9|U-?}{-6 bA{uknr턧\:r|\CH,Iy DS28r%yrH$XH|uJȗ8%8:I̱r~Jˡw|\CH,Iy DS28r%yrH$XH|uJȗ8%8:ILo(ݐ3x>?8=܇ 4Iy DS28r%yrH$XH|uJȗ8%8:ݭZi iYz|7o_pp nxt|\CH,Iy DS28r%yr?i㓷U2qx 䨼d(A"?3%N rNR"9sय़r(A݋,{Kw0'o{@a1?%N?/#)Yr'W_Dʗ\*Jό|S78tq|*?ö]B?(k^d9rN@ Hd1?%N?/#)Yr'W_Dʗ\*Jό|SL=8lVVEmoesp[D.-nס_V +*J$Pe<]r(A@@UΙ': D"AXICs y]~`ɸ'y,Ѳmg7H <8SB 2*%J\K\R%ȸJ|9D$^f.aRG>O88z4 <8Pʘ$eK$%W\Gϒ#q:: SY^g]ӋnR~ox"+ij.Ol%.)d\%yy KJ$O$xp >1'HHJ͑)3wfӏxZqԌ\?}mK.uJJQ)H$Pe<]r(A@@UΙ': D"AXICs yL%gsܛ7ְG"xJ(AFD"C KtKʡW:gD^)& f-Ix ov~hхqqd\2xH$O %ȨH$r(Ap2.qI9 *U0Ё62ڸNsyR+r(AŚIy9*%Hg") 819Y\F.A.jJ$9hD.ANYΓ28ȉHI~q˘OH\~+r(AŚIy9*%Hg") 819Y\F.A.jJ$9hD.ANYΓ28ȉHIvpȶ ?^"~n r <єHQ)A"?Id(Y^I2x2r rQS"HdPD$r rrurANt@@0,7(_ۘܲtcn!rLʡk&e娔 2,/f!aS,1hD.ANYΓ28ȉHI~q˘OH\~" <߳7z7t|}a'mơ4 cL$epgy9&'5%EMD"1'CM%9yR9с ۯD(97 A ,>҅,] pbͤ$3Ar嘜,G.# 5%DƜ epLN4A" 'W,IͰuND^9?1`#'p9Hʱ2)$^^RD~&28Pee䢦D"Ș0q%}I70!aÔ0x._r˘OH\~+r(AŚIy9*%Hg") 819Y+O;a{2I_vQ+G,.A0AJ\+:A'gtT cW@pJ\D'rdy<#A^ҡ28H%ȉK:t&ȓ#8+:Z`|9 C< Wt)O,A@"/ɯ#<8ȉNDIyRGCepK0lho{v}B7 ?2%\2rySQYD^_G)qyp%yI jjۗږoLJ7xX |EGKL/d(#':1N8?%HX9xLS_#.ׂ48DG<;$*P'gtT cW@pJ\D'rdy<#A^ҡ28HpU> ?pe`xoi-K ]J\+:A'gtT cW@pJ\D'rdy<#A^ҡX,ǤVpjoxְxKL/d(#':1N8?%HX9xyԉkz^ÐnN`MZNt@^ҡ3A@}) _ˡNpL$NyrOGe y9VNNok+-w;ge?_iN~_}]'-cH'H$.)ЉJL*3ANtNC'u$Nd %&ό}DїS"/O! H8=t@.&yIJ$2yRD2Nˡ$2j>DN_7t ~RGLPbޗHʋ})8%d0 _ڟ}}=N1 1$_9LA":C'r(199SW &ԑ83 ?3%9bG_ +N n%nc|o#߫u>oU O},KOmehHK$2yRD2Nˡ$2j>DN_7t >:%LZv3z[F3HyɎ~# M$d<ˡA"A"/A@0uD"A@HrRJ$'gG./֜:28jV1o+;LbɆm>>>>00@/tL|pE'J|# M$d<ˡA"A"/A@0uD"A@HrRJ$'gG./֜:28Bb0rPZZ?-E侦IxvcQE^^h `>yɎ~# M$d<ˡA"A"/A@0uD"a"L +5/&||~'طAqˋ5' e\ΉNde^04e25 !gs1 M$d<ˡA"A"/A@0uD"A@HrRJ$'gG./֜:28.̣fMB~Q[ Od!Z\ˌ%;D./4H,#/d9A"q +Ir(,}Xs2ȰZuBzi{vގ o=o@oÆj* H$&O^8HB2r(AHKLF3H$蘸TV)>L?>`>>Oc4 Հ%, /OtNt" ,BKv\^h" YF^% y ie_Z"K]ǃAD^G"1AR" OˡS| \!A7e^^Ԕ O 'uHdȗq +y+v9|ԑ DbD"AԗC|C 'goʼ)A/AN,': /$dW8 LC/m9=筑 UAR" OˡS| \!A7e^^Ԕ O 'uHdȗq +ycIXĒv)"nk[H!֧"O >Q? :e A"/# )H'P)c>瀀D._ Ci +bK4C'֣\/AN,': /$dWr%?#e7gww/$cX zvo瀀D._ 2//jJ'K:K$2H A_]w>Zt0<uhN ': /_P:2xp HLAH$ȓr(1|s@@"/qd4˦-KOY÷=J~C'B-fw ֹ$'qK\#Y~y<#ANt,AJD嘀 epqs2:Hd'O9L$Xs\L$%H|3* 'u'W,_B+Σ<|I rd |TJ$2.d(qA"c>yIg"HŚ2xr{~~ߘɟO=/tJsP] &H_qG3OH$KR"q9& Cd圀@N<D"/j ݾ?}~Ssoe*=4 9S?:g'H_qG3OH$KR"q9& %&d-g4':Hd'O9L$Xs\L$%H|3* 'u{}4CjMV0`d'u$ȉ%HQ)ȸp 2rN@UBC 'uD"fz![K2>aY&uK >G(>*yRG Y1 ,d\%tȘO8rRH$ iX-:lh/i)W y;0 NK\#Y~y<#ANt,AJD嘀 epqsbCiNͬNko7av?h?~i& - #?I _y28I29˗>G(>*yRG Y n˰#hIv*=2<׉@@J娔gb'$DR?yvF$H\D>AR")G^`>$xpLb)dS@09y6yK:d(+@@J娔gb'$DR?yvF$H\D>AR")G^`>$xpLb)dS@09y6HqisE݇/~dz}>MеHLp:Rb2@H$I q9DI y PJ1%N`yX$ֳ߾4кusE<ہ󤞚'$8ȓ'8Q)1N H$ ~I|#B~8&O[y=|(%HSp`rl9DȓuPW' >x_? \ZCOa0#a'$DR?yvF$H\D>AR")G^`>$xpLb)dS@@#LF~?C>Au}ⷾ:\ +d NrTJLƳsD")<;C$.G"胀 )#/A0C <8&\Ғhm߫ @XϹA-@@J娔gb'$DR?yvF$H\D>AR")G^ [;%Oo ߞH=⭱gД'u<%d2 c% d NrTJLƳsD")<;C$.Yfv["_(lX =<8O̓ANtG^~s,AOL$%&C$ˌAɕ?3$ H$ȸʱ~R"938EMD3J\ ':#/9CrT 'Qy&se CC DbJ$d\X?d3K<G$D6`#w CG9 y=JL.O>3 $/3.J$WJ$P Zv.fS~~m43J\ ':#/9CrT 'Qy& ^GlZ$҂Δ <Aɕ?3$ H$ȸʱ~R"938EMD3JE&8_?0h:Yo>D3 $/3.J$WJ$C {u#k7]#4TiXI@<9;D'x8g(1X?Y$^$*DRb2t@bNf38T-?QJlk+p[~ȟH rQS"̱)yrv8ȉNqPbr~%HIT.M4I]k5i|&u?OlU[=P%3q$':t(D:N<2NI'H$r(%r(Ap +3J2*op&ɕH C\/1 P"9,A~K<墾Wنt">wuΠ݈l%;4yIGK/e~Ś8:*KLNep$28&Ot,F>K$VH,f (T--D>Gz.y &8y&G28KvhG qkN^,1:qz bvnGỶoGo- fSPCi$HCS.|':D%Hp$BӋ /)0ܤ_h/a= O6 %סϼXsGGeЉӡ D/H2r S)L7WQ>Ws,e ܵ\,d&/h %סϼXsGGeЉӡ D/H2i`+gӐ4Cvkx Xf%;4yIGK/e~Ś8:*KLNep$28&OC&TM.ǿy'rf .jC1e2OtpJHŚ$N5 /١K:Zu,3/֜QYb25Zր5җ>XBV7?Nz1'g9`NCx6\ ds Nx28ų 'G;Ͽo6|@>t܊9aNg9`N)?y >Hʋg\K6FY/Bwn-st|\%!HٜO':':1'1%r8ӱ2ʤS~'8yyS&Wyҡ Dߔ߻ >$l'HO^I9tXceR)?_ͼ<щ)qXD^K۱}~ґvuGC,)26#4Ni8 D'8D'$擗tDR<gy:V&2X1ʏg3/Otb~J>4- X@rI&x;C4q߻ >$lΉF^C'8{O^I9ten$ ۼ}4w<`,za1lNOǚ$r\I^&||S^g/ a7)ίw?WJCd3Գ':':1'1%r8ӱ2ʤS~'8yyS&)6ѽ"Nk)w5n00IOmak,eqX gs>A^GRĜ|򒎖Hq,OD+2OlN'ג~bl{oux"k`Ji̡*A"/|< <щ9%-,OY >V&e̟bf\[.;XОWo!쥶t_WݹimʓL$2eqX\gs>/Ot#)OtbNb>yIGK$8ӱpQ=$vA~|ufKzVz ep$I D" $%ȉN\Dr(A@@Y'uEv$*%^ +&22d%DR\lJ$2I=sJ)#HJ$%&,ANtr$C 2Β?s/&Q)R0$xp >1',y%estT,>m;@H$nBz!)y 2*KLY H$.)d%:W8$&Q)R0$xp >1',y%^5-Wu[۝ɿϟ¼GSAҳK#W:ep$I D" M%s/&Q)R0$xp >1',y%&ҒҒ+)EZJ)#HJ$%&,ANtr$C 2Β?s/&Q)R07̸q[F&o7*EG%9s\%H$%Օ $%:q9KʡgɃ9񇩷f1GR'%?9* yIyQSD~&&' HdpL?3N''5˓:28N9h Hd 9rTʡ W5': DDD.A^ҡg^Ԕ ɉ&' ~I SNt0&&' H$<8Ȩ,cNFv+ÏnJI'q~X馨!#0l%K:̋$319A"`Ot{LLNj'udprE319A"AFe-oq#mEoyx駟|eCɚM4\"We"A@@" F [zh( e#xϥ DI3xA}k}>: ğ% +ijcrQLLN4A@@H$2xpQYƜJ9*PGReLzY{}fW[?I"\ˆ!/jJD  g?щ9q5K 28N9h Hd uoP8W/_}CPXH%K:̋$319颂`D'擓I`rQLLN4A@@H$2xX--a7-OUC4AP9* yIyQShA"`Otb>9YԑqʉN(M}jO+-a)JKQI𨔣Rep$ʨY?%r|U] nF$K_`+˶-eeT7!4|i\wRYeso>'Tzg^2Kh ɉ&; ~cxNHt?@y>^͝~+ب^+!{\:/ANt&A0o; q: HdpLQ .>.%t"/H'u$Ȩ, 帔'=T~Fʓ:2N{-{\:/ANt&A0o; q: HdpLQ .>.%t"/H'u$Ȩ, 帔.BCK[o2 77 cK ȗ ':HO 8JX<ͻxT`K K$$xI 2* 1'V q|Zgd(F;oH2ЉHeC%cܰJx:bC$N oti&1 يck7:H$H˓:dTAbVr\ʓ*?GIǽ6ܶ|Oa3xC/{Yorb?ILH%ϰ4{`ӽڸЉD"AG^ԑ 󋜋 BW]ylWӻrCiL圄ialO RB'%ȉ$&Xt@t(AA09F^$xہ)?]0ܟNYA"C@N1'':'uʘ?I 5KwKL.O@%&wO$H̓yRF.qR笓|A':eɉI2iB$ { $ A"cHgj_jov.~;A` #OI> HduI2*NHk9C<9i%H;%&' qI;'$tu+K|>?>9Igo` _ws!Y6Q3sa#4[J`:^: +n:e [F2$?^ _tMDL?rAݝ HܽsyR 1O%9t\ʱ[9';:F|_+[-A':eɉI2-2<P ~w$^b9 ~gD<>._AO,7:3P7F76笓|A' cNNNs{ rf N} Ʌ Hܽsb%9@v|>?~% 싵|vt漳]u28Vt_99'uʘ?I 5KwKLEAڝj !wB:aȯcg#i< 1O%9t\ʱ)rbub9':nȚgj^auI2DNsx&(E__dlx<>^8{|[jʡD"A@@ N?_.C'8Hš%P")ǽ y ɸwPSD^b{N",$P ep$ep'u&w/qʸS" c/q$rya d(^d;)A"/1='Hwur(A2828H:ospm@>0~>AL6Oꗸ y 2 /҆2,9cQ /%y9DsﯓC 2AA':p7,߫wDpm\J)HrOK'Ĵ>w~ NBߣ]M^Kgދ{nI9eKB7H ݯjepԞ/>츧mS~xAxD"Y޹Iʡ H OM$2^q)QG[-k/gL8XC'8Hš%P")ǽ y c2tBM y ?s$dy_')d( )Ce\Kqٍ 3?OZt9+~ZJd%2tD./9o~ 2,/ 9= + <1Ʌ$/sdy_')d(FWS /VWi_0l RND~R]NXHN4%&K"d9 {5%H%&_$-' 닞`,ȸ{$.SƥDUD,JIp;A/qq oZDSbJ$帗#/A@0:6bF^@rp,28EJB}9&Hd; 4A@"_qNc$Hdȗ8e(;w.289 ~ 8HqyID"%rJ\$r rNr} /Y8Kr~ ȱrJ$2xK2o;.pvWv=~~"G}}pIsGR"H\/A б +HA04{ŽW9gA/Ap9VNBD|S2,n+3߈;wA~K ; `|e^GR"H!$nI ?AgP+_l +x_ '$gч p#::?^/2l~gH$.R.ˡENKnEVp$gzZЇ g,9ȝ%."I(VbۍxNc_^8d`S$& Yep$% ?aN9"AZ OE$I3K re^ wM.-5AWzU +`h;w.289 ~ 8HpJ 9,gPZDw;i7* +Rdɏ zY/kTD"\yG& %X{*j>[;{$ΒG^q)d9(9I{ԑ C<c|(AY -=ʷ!<3qrT HPF.%."A@0䑗,d\J Y/JrR'u$PF.Ot@FD"☀Jqs|K--{L\e H$9\]]3Z. Ewk$1' RBr|Qr:<12$HߒjЁ7 &<q/%og!Y -=ʷ!<3qrTJjk៹t]<xGAD$ΒG^4ImT ?^9n?xݯNj D?.s6JS{yGxw # eDdTJ{;o9\:dx|+˕ׇCRC9,dxHL\e H$90'/%."A@0m5i'_gP:1.RZc9(9I{ԑ C<F"gA{< J/^V!FzK--{L\e06ZU.W37c䑗,d\J Y/Jrg:aB\YÈnZoOy3G~\};09A%89ARC=DG~&Y,K_FD`ҐH Yqs2.%t,Ji9tv w?%u Xy2*%$P$e9,<ԧ9)e+xaFA"ȡ\"K\D")`gi" -&Br Pږ:ُzz.NԹI 2Q)ȸ860,oY--{xٷxȨC rg N28 2 'JD")A28K|orr9V8ʡ J$Iʱ2 od3'J9 w֟t(# C rr$H$d(c>YO+''c%ӡ ,HD"Hʡ+ HgtY_pnV//?1L%ȝ'8H$P\:+  bdBvؽq`Bω( Gߚog,|. cS5ͱPepHH$P"HJ$el]aC$Z[xn]{n1eOr(Al:sCgp(A<*cW(Pڍ:o* 2 I%/2^ŭ˛:pgn$YxalyAEMA@t(28Hp$N" CD")C9V&0rT'; Omwx{t3\y{AD %ɥ HJ$ΒBҢ>X6'en#WwPepHH$P"HJ$Pfc]~ӗRxY+×˔=wLb`ZQ)ep$d(ANN3KX(K#NHi; M \)mJ R^P9D6 ':qz)1D[OJ$g")V@bN3ɽȗ8$p 2rš%HQ)cg''Hf\D'x5^\_7fcЄ9?˸8ȉN8k<3x:M+AZ7iߏ-;^w({ $ǏIzS~ڕ8dØ +\60{?w|rTF.aESH.cp«v;co-K''HfCp91:OoOq&s7v럳t$0D AHvz[&}(3$ V!{%{'N hp 2rš)4'ң2tKT9VgOOx]NHa:qz)1Dܴ\XEiVڷ>~) ^KɎEo& iȗ8$p 2rĴ.W.4 '/]$}n{Mb$"M.19D6 ':03,K]EK,r6vv9|;T] jx !^˒ޢ &C$=;Ќ|S@b>iEKV}^|M'Nn $*+'ON4͸8ȉNL +*u jp=3|Iwn,-Oॼ H7d̓əHJ$ ~c A|ɯi)׮GO\XsrR >*epḺr̲'u*:4]e%o!x|ݨp\f:}79py_nTa8=ꔘG"A'%3A&bEJυ<׿!Ǐ넗oK L\ %.RrJ$2xi1O䨔 jJSԑt(r LH\-=Zb\"'o;R 99D$8H2rcd耜C yxZ9*%ȅ'u$&8ʡ+'Cp$)1[w?57^^{ Ѿ.II9D$8H2rcd} }v[@|^@{6d|J;ovKi?%Lb0!4KXc)OHLp:C9VN&:vBm_ǹ*j~j D'x[J$g"gTwS|~5lsr-rnmm1m!xHdȥ::"]<-Kx|Vgᤕ`B돟']U?8 +^x/>$11v:P 8QKh]z}}:s?^&H^k?͠4OPY 99D$8H2raNqNB,:pxX'dU"/u{#?^o)WX/‰i BM rrvXyJ:P;&۱+/^+. wSom)AyĨe8Su8m,qIvOKxuFp荶pL^'rTJ 5%c?N!oNrG)1yK HNҴPpBvnX+I +I o-֞Տo+^> K[#h^]KL. ĜN<׫Z_W(muw 0O Kx&4+ GV<eГ}||v|pZ w"3 XIy9axaѵ傝4i.%&ANB009l#^'Nj<+S~ܕK9c!ri Ffd\JYepL,OC) o!6Ӻlk|Ӎ[?_ٖOcf Oo˷yJLN49 KCNLx'|6C_Ku:c7,Qv~͜ %H[]N4K:f5O2,$>NWҶ^JLA@@s@@['Hg8yz 帔qo\"%HNJd\[9wp6Or(΅ϞYdIJ$r(1 o )Ot@pʟ|3Rƽyvr qz;?*%%2ro<ʡs;Å{-/_duu[  o )Ot@p)mURQmVΰ<=L.}nw aNCGZQ),x+'PUy}nfu&?{yG 1JLA@@s@@fB>Ş|N9=919P(eAxMuL}㽼cio|]Y"K&vX4%2r &a'P{1Lln˯sӡ$x'9|?Y )Ot@pʟ|30'p8,ıдcc:NZx<>^\>%Hm'C7V )Vb6iN /#VNӡ;5t,rʹRhlTZkCqh٠/O =ɞHP +2:'Z +/oG.iB5 3eo;C9.eܛg'0=_GR#>t` H2X1GD$N?яydͤDR3YK$2rɉ&HpS@,_8I(cN.9D^KyCo$K,$r|LʘONfy~ }k^#SJ$e''gQ<OÜm>ƣ_ܠZ+uKx<>^ߘHL?~xὺ2L%Mۙc"q +NA ~l'9܊Zܮ8봽aД,$r|LʘO#Aӧ/@x[7|[;͈I&DRz~#^JZ7iR>_+/Yq!B ,qtO S@,.>tXe[8&9sy9f#2Q=drZ /f(5 M>P|E<Ӂ# +˗%XiZZP<Oc,19Y3ilߏ3_*qM&ϰgx{»8( ]0و9UٜOBsra $!om-m3}.|gw E.I<},Ot@ nfu;%lx<sgsgit7N#O -!,D$8N) H/$1X_(>mK!].aÐ0K,$r|LʘON4 v#MB5tuu}Ik0bHil-q\br 66Hh{wR ~<9Q&NH>׉D~;^W>]}R i0?c,19Y3)q`ҜΊ3HXs|F>EJLBITJ >HdȗH D%H̓2~RCzZD$ C9r wOJ oG%s渔c}  C|(/qJ'e9~) H$."A@r<)A 6GJ$p=ꖠ+7 >G/5AJ`JLR eD"G) )A}{-)^Sy_uC'PM6A@@H\D 8yRY?)A@`xXug[j?vt^zB,ǥ\$I$aH_x<m94y nH$>xvqRVo=_#hE"ď2XgnXRid rg9zI`_q04F5a-HD"d(YΓ%,GZ yHz?M;o!sr CNrPGRbrREΌ\\:QYJ<8Ȩ,cN.h"Yep$x[D'rDDŇ-=$cNN֙ ?d(`2IHJLNjșKKG9*"Q)eM$KC. t컣_@ƀH$H\|(C2d AWN[Ծ߅EoMNZHiuKKG9*"Q)n$vElױnt+{ƐOt"HL$H\|xt؆ +3 v[' ; NQu$Ƿb~|,ȉaH(GG`8 +nX,d9*e 91vSKh-e% eR''HN$k(@'N9>+,Ce:gb2t epIgQq 3iaYwko%|qailZ3ꖘ"Q)eIDFx]R,uWsI;fnDDŇ-=$cNFJcak_.14ma!,93r rr(Gp\d9*g'sC.MgjTD'rDDŇ!0󡏼3DFg9prAa=jHcfKNep$%&'5K\%ia җ-֪w޴ I HCI9ޖg?AU;-}6+39ᆷLNp X'9s(4 AeK}is˔|K<1?q/[ ,$#/Ĝ ) H  ( 奲Ÿ/%>^!%>~v>^<_Y<ӏ{A;tHZH9,LD"/,Y^< >8auϟ|z[|>^éҨps!2%%H#/Ĝ )0gnk_ċx?v9:Fz" ^%HD i|܇KYBiii:~z"`#)w ȗGe IyRG"Y^:|?j#19Y. uH\DQ)A@09+ yfy 8H%HQY yzBMD<)Oܛu$r|]bɚwpoC': 8-=TJ ɉXI 5KLA@"/A@G^_[xCjʘ'$Iyr`Mjtv%]]:ox}ehzw3`r\Ot@p +ȝ+MW_ExF2mwDZ, +QY yzBMD!m8>n/.r\J39Y. Φ1c/v)H]_%h\0d=iA9O=DD8]~W;|7lV8(lyBMD<)O.@xtAy</ZlAr;)lo'JLn~:+P9*%&'fm 8}U']| ӣ;[%_|.Ԕ1O$H̓rLĞvW+xر{@taͻ\7!qNK[.?V +?E.g؆'ѺJX/HQY yzBM Bp8{ ,[襜N`4p2ݛj9.dͻ\8v :F g vM |35&vv AKLA@"/A@G^i81H?uEmC졖`ER`r9V$B2ThB81K|</~φ \:d\ʯ%&8!2V&Iw A/1!Eyz|љD'xp$epQY999;y9.%H2.%.J 2.eH[+ r\bK wꗘ<=LBy<828Ȩ,ǜ 5t\}I~^ǝhw5V +%SK5=C<8y"/lݰp;x<>^C|+Eyz|љD'xp$epX;+*N3iï}sMٻDKKRKc' y>-ǁ!a0٨Mfyjw3 BcՎY(OtAReQp҆q[gH[2^gOX21PD耼e2 & +n%,DZinaGKPFi[TX&t:P 2*K%܁4ktR +>DR0d\ʯ%&80XpX'*N狭w`<^(. l[䎇@Egal8(ߑ'6лJԑ8e\J\:d\;f z#.s0:+|_p tOy</:y̸ r~Mk}|5]feB-R'H\999;y9.%H2* vIgTi$ǥZtp7iu`~ ce"1A.KLpw #o'}ꭢ\YS~H$xAR"ʻ\X?)1/d( o^X:?o5^qQ 9s{{@퀵;4<䐁 %3qrT )0t\:7suSKޢ5QyɡgAN)TҨ}B6bE7a<;Nl -pX[J$g",A5'\%v΃| 6;-956OT.#/\4+/9;i阺h[Z<^wϐ/Y Ri\")-{ %iAqqP,֒ॼ8;737ȨC\F^%N`v +͹:7,SV¥ [Ò#H$ +2xpLA@%쿴ro{TwI%r(` hx<>^}0O A8!Mm-ekH9*K c%t}Ê$[Qp2*eg^YPG"ެ#H$%r(/cq/F.qp/ ,ࣲDR")2K"r-; HΌ RF~慚eep$2x>:DR")N22g)A0O  >*K$%r(#$."Z /&|{M%ro 2TF~慚eep$2x 6"_~y BZX{p/ ,ࣲDR")M GG˷o~^9@.@@F &&nl N_uydmoc{}K`OEv2$2,Hʡ 4SAqbD;lg%҇.28dp+{k3<' HΌ RF~f*4;<[5aWpJVC3zt |<&1N-]<_Bh3HEx[wA`09};?}|Zw SifBcQ-S")Cy~D{!:y[N&٣?; _ .Me2e2擓%HQYb9y=t&Nk<'rw֟,AKL$g|h>9wp9ȅKS|f |T`N0A^?wFS@b>ω\F~'r Mp閣w&bS5{]ToԾ +9|.(_1$g@[laNCgOAs"7-E%C|>?iyt[0Og")?Gah0ֽgxWaai  x<>~8_vpt;d|D.#?Np;t8-[O Va->9wp9ȅKS* iTnåh+Z| b,PZ8$peg +(w˱VWpѳ-V{" (?GwAdC::m9af(.@ RpOCgOA!afBoK=Ϗ͹F aÄ#?I=Z*mOq]vj}<:ꔿ3M8@,aHࣲs 2ɽ#Cx}Zݷ|qO;ONj G%G.JrEr@?~ސknlձr(#/#1,A<ҷ|VGr](?8rTJ$g"g\F.1㡡s`D)1yK8H$Hp$K$%Pd`H$%&8J$$> əș': A"KLxh(: #'uJLң%NE$ DI C9A0: "I .P_Jɿ/ _͘oB6 3q3Ot@D.# S9m3᏿Xn׷,vL$%Pd 1$8,A=|~ݠW:n~jz_3I9*%3q3Gl&n_qai{ iѯ0 h!ؒ9(1Pd`H$%<wphߓf?yn!: %&w<4w}F4*GӐ3:[oNC>_ ++tHXe땖 Nr(`2t@0E$i*svsKpkY(ye^@RJ L\ h72Amxb o˷9 L,;Ӈfr%$8xgۼ& >hb L, 9ӱm6$ryI|rC q>zЌ\]&IH7Q.Ͼ,`g9 ύkZ߶e{ܷ9egۑ%%[ -Ӈfr%ĐpR9܍}elq5K$1hb L,>l6b`<~l/?xax_XUsqg9g>4#CiB8F<|\:/􏶥/,$Pbr 82t0 Є>k.>l-Ӝy5EbXl.9 L,;1ıpzкȷ>pܽ0xgۼ& >?_ű]aNkJ;6;ܰL(%H A}>ޖ4 2?˱N!~PzQ)A.hD^ީ_P)Hdp\D^P坳|' K 㭜;8C9w{gO$娔 4A"//A_Y$28."/at(? >{|qP%HpLVNӡ;3\ .#w+<~;ח}a;Kj8 IS4݃im-#xЊ;VjÞ%HpLVNӡ^|-/b镽w^0&H%Hp',+>ю59Vj8x<' VZдp=黃"VNӡ;`Bs:..Xtj ؐvǏ{@.hD^ީ_P)h*C'|Kc:.}Z%ؐ;C9* A0[9wiHӂzOB} q.>fN&HF&$Brg٢4v۱x_h5.S_$4mgHe7{k71_%w:Mjk)<},O.xhZgrge9J ߂9a,G K9AIm8mz)|>?^n|eLu,t䅚ɥrӱVߢ)EX:^߻x/eKLǥ wK0e8j~8 +`Q S724AD.q +&p6O5KMklGBtޮŋ9^kz/@FJyRg`>.%}ն88}HMyxvD\RCn9*党M Kb$AQK |yHqv?{#W]vщB |B-Ȥ/LUDί*toꭹ$|R)aHPt5N4jMu!o[5ׁJ5'OFsiaTƦظ0c;_:ДD. J2*KL,P'% gJD<)?)1'HI 2,) 1OJ8=ꔘ`x<K$%&8K>,I %% R"1OŏG"qJ yRG 8y"q +H̓D$N:%+6\'@}u^injw^DÐHJLb%%&q|(Ҩ`x8x=ۓE>ϏOÞuA#OHg9O$NyRh={_X3׻x/}+ȋ?DR`+ɨFءƞ9=; pH[+Ӕ!{WĂ[y믴GMH$NyRh i`=h쓔#{yp鄩)Yg9OJ$%.1>&Ώ#)||%\{dXX(eS@b ': 17i8=>y -/M^Nw~F%XIFeI( Ƈa;|W6;f'.ŦV:H yRG 8y"q +HCKċ;{`^9yyy"HJL)&k`bZ7~S-wcHsDԑ0*#b.&K5HuJL0OW~^8ۿK1Nؕ%\J\R\M2*%D\_e;үE",oKDCc2tFpʡ dTkd9'$%.YF.Q\DF^2Br(#)/LqDD"O!1:r 8NArP2*DHʓu,# \bKD"#/AFesrdr9x<> +t@(!rTJ$d3* {_t|۟9?0=l`e \bKD"#/AF̃ /:oN:M xC9rH:$8NĹ80 G~g +0pl% +w vJ;H"eɅ&AvT82`sU}neI9b2tFpʡ =T"O1G;e//%8.eIAۜ +re9ޖ$ȸJԑH \M'Ⴜh>Y8q\IT_ I'=|tbJƿh }CFnwA \MsDRC%G~Ƕg{B(SDJ+tYqb:X%H gĜ ) acv w tt/$Gӷg:=5yM›BGIT_4w,.M<i }[%,Ԩ,ADd <8Ht79K9-A鍤70 +⵹yEP q X]SL9\s1#v/v5~հ2m)c||T AU®b:;"- I_+BӐ ́j\=b}qg|Ab~I9kceZp59M&aw:'k$xŚI5զ x[MD"c #/GeSk|cM5& s<K$2NJvNJk$V.jʋ$8&o97 I(%Nʯ6]ԔH$HI˯[KNṋbĝCyU%Hˋ5 kj000[tly~5c +X(-J8e(7tQS^h" 004HcK|~7Gkڪ yy&tVDU,l:X7G 0V@4-# .j M$$$x% ӑ0pYaa˷ȥyAR~ol颦4?>s"&\4Lн%}`h5[l)/4HAy/~ˣKŕ;5Jk)h݉os: ?N=W;î$,U_ V.jJ_sP^0P:λK# ~y9k$j; /GO:nvY;ՐhdpLB$x,q006#4N7{ /5;z_nH #/A?D"D^`40k)<lfìMòXqC r$':s88n=:n{2K8>)cMNC /)KL^)8&e3 LV3oV} +}t$||~<_WaA@KKmuf(Ot)': @10{]АKgsq6)L9yݺ$7c):τ]9AcE aqt$&< 耀28 Ɲ.}]`t#7%&Qx``7qMܑi.P|WhRKtaPbgy: 'LBy<5%1x~y8Y^ɸJ)1A^S" c ҹv,&ˎ[s`5[9 'u8Kn000;H>M>9ޗHFe$^W:%ogYÎA _"˓:%Hpˡ\by"#cd9V|K䨔W_$r(A@"/A@G~X9o;8|6$gƫo٦/ke7[! $N $r(A@"!VLzl3GG8qxYÔ=f&J'$x>+oNZӴ*VB2tNyE(߲M`<{_Cѐ>88;Pa +&BJL0Odr ֍smwsayKia`2vp+Cm"'3<>#I:qvM^[])A@D^%Hp10MmLD)1OV&Z+K9VN&vW.ǘ#.~e`ىlMJo٦|P52\O<(- K4lC J$QYH$vI:.e|BxPD^ &0sS~4]UeBaD )ȷ\ H]#5ii띳N ++HdD"2r9 <5C%N|<Ϗv7 ).)Ge <8PF.Z=:x`wtKA)Jy%%&qD$8Hp$K|MJ\R")2.rq5+og )A0Ӈ&HHHdr$CHYYgGDR8Kr$8%&%.)C3A C$xp$K$2r9VHʡ|K$Hb_MUzqْ;zM$%.)A0 ': a$hTس<|>?{~|6AO:oY, #Y"˱G"={8naɿo }3òxG}@#YR^h")qI I%- 8ZIӔ۳_˂ω_>8?>m”AuqvDDF.JI9/qJÀûzJI ': A#YkR Hqϓyv|l^-- Z%+Ip$PF)]IKBIKJL,9$ Ё?5.\~bܿ{ g K 8H>4A@GD"#0(5*@^1j]'Ơ\gGDRH$ LJx1ϞYtɇ2jXP\ HJLA 10.v._ZHYYD i-ۗ 4&.Hʡ˃\\MaHknlnpQ:l)Exh.AML 2r#YɑZF.#2x|ͣN |TJ$2Po8$pog"IQ >2,AML 2r#YɑZF.#2x|ͣN |TJ$2Po8$pog"I:.ң_r}<e፼rɉ&&W9bTnanjnm+`ҽ^+cBiYgOAcxv\=A/IJxqF8/;z_@C5KࣲDg03MH"p0Gx:tMDibqZǯG +GEbZ[m/KLA\F~&&4i_ۿNl?s}2_lR *>%N8@i`։)??:2]\zY/k |ThbLH`TBLx||ND +2,A0 h,Øe'lYivSi۞i5,HXQ)ȘLC9Q=-;bS߃uț\IQ >2jFtj~x| hu[9QRe2+< xNT:$LAz6 ?J:e\rd %&8ʡy`K$y r%%+gt(2x:%Hp\" ˡJLcP)r$K$gF.1Pe|Cp\"%&K$%Hp$%.)A^9C9)A@\b[9<x>7/G&.[e\rd ȍQAaLݯz21k`5,䕳:C<~'/cPoM$I ʡCpNVKVkv.& Dp\"1knT;Ke'M$|-?Y'O $8+ m6Bs(1O2Pb A.kmR_ Pbg9k[O?F$xp 胀J ͡$r>yK[#>4#CI(ʯ/ jX6' 8 $r> %+F[ݿ{2tws3w +4ŧn5 ^b.Ќ\%& C26g<8?91.8XFs;*ܢYVZPb A.kX"-Qi%ь$&Oч$@ptTyK[a`;}5?k׷ʯַJ}9 +HA霕 +c/];]6]+ޮ< $8+ myfc0FeߥHdc~د]xyR_xPG&B^+.ޮ5Nep$$FF=fήlJqrrrv.?1BG}/Et x,=(=-!I|CD sHLpXd;,8|*Q>8Pv*Og|C忾|_Ė耜Ot^yMn', ذ1*c-1;,?L08!s)w!R"YҔMu"4a}$999;گc$$s +pO;.Y.ofGoȓ:%&k'28#g|_zt=!8q-rT.AU&ʉH t;sqwUÎTpʭ0}9*ouJLV@ҩj 4qNaMee,KWrT.A0Ҩ )Hf!4#ě<9;o}rq+À5W?p5`ö6a"J 5eP4U9LqC7)H˾cEyMH M Krj^%HLN֜|M\ >VWH6q:VNp:Vo $r DF./|M؄ )/Ud N?_y˵I 8Hpc%yOhScc% Jg%>Ww#Z]d A"8B3 w>b=w[X>??MeJG10ǭ({U=~<Ÿx4EyMH M Kr\44١cQx& +S8t~L95>VB +m*tt$cS6 8>#q1' /8y"#vz$:pxSt 2*%|~ bҐAnU-)_[wn],Hke~~D"qJ +K.}uהp`4}x8=N^938Pn ɍ⏿CA8IASn9 2VN:Xy1k+fnh" ޖ$N 5/j 9X3е9&#H":I ̘:aHCj>xdB9LAj8 a,W(-ਔ q%yQ}2ǿgoF%28dArfIpLFd 8=a}d ]"_*˿5`R>W~ű\ЄU%yQeIc0XK6x8`\#J4 1u$%& aTvK:ﳭ,&,.y͋%Ȩ,cN.4ؤqJc~<;4W. 'uGe əK$KA@Nt@Ĝ Y%ȷg ࣲDR"1O AJ8=H$%&:\9yMI2PY%Hp$gF.,A9 sd9 ߦ)Rī/ID^h_Γ'.cߑ"1O AJ Xhw/ŚȖc.lZ)IeQYArf$x&ȉ,~AIEǗn"1*ABZ48HC Gj` Վ0j Ɛq^@a%M-K HΌ\"Yb8a^3} Ik%a邃> qzԑHJL.!9|D8e~M,iش$v|~ +-EbɰDR"1O A}ocs܅D@4ϿyS&彼Ni0Ws6'uCi aT:F({85n.Sq*ҍJ  >*K$%yaHZGwyF{x~]M߻xM\")1d)/0넵ϳSw 00}9AJoϔˮ.G]iS ~Wz%D")A@G^^I@@-4*5%HI8gK$28P%N9щq'6&J̓2x rJ$2ID"cH$%Hˋ5 PۛF9 y,sDGJ )':q:ĦQ[yRPz.2ǟ=q=+ }D" #//$ C c!u9|"pw3~s[X%i@, ȉN>,қzk%D")A@G^^I@@-4*KSlA@رIo Ñ擈[oa7ikʄu;iT./4Vb`p.Pp`R8 xk|˷7H`H9Zs_)w[̲(-u;iT./4Vb08 Ux<>> Mst#7A^ܻD.Ș'I t!/8N\bMCI\eᙵ>e寉plV%P3J)è@E[OazMo.A%&4 Fb،h]x<>>vB,baæ%%P3JC:DAi׻J Qzw$28I S7~i t~]~ͭuUF31yŦ%% #qp:\vo8?Ϗg_/gF.A"/A 'ua4q1wnw|(o H rrv.o +E +s"Ǟ_e+ C )˱r29+Peȉ&8e|Cd(A$$x2X9:>fLVHQYF^y9 Ky+'۝R d"cy;z]pN_˿P}`1G5qJ':%Ā MA \X9o;Fb<1?/ ŎSZ+Kw9#ȓuD0`94-!Gl^kwe+ C l tMP-A!H%Her2vs a: ~˜OLM mF~լ,#/_чRp v8NZqz %PD^n2vG;W|Ư>;hG} G}H$ >*_33a 0u/99)+Peȉ&8Ǩ܅ipEU9TgcS09ʷ\*K$QY DRD.KLcDb|Dۛ"%H A3# RegcS09ʷ\*K$QY DRD.KLcDb|Dۛ"%H AjJޭV٭OӅ'+)˛1)Ԕdxr;qwey~~1k58vGf 1AD"MK\":br WЁ1`0% 22/`rRs9o6U.# HZRiY]kӦDwal/MӔM?L$bS Rk Nh% J:xy)\[Mp0|~㡴,NK䨳``|MK\R$xpQ-v5_vnQeE.Hqy<8& ]OrMPw'e{?'a@dp$K$-NC ՝g1}4}x87}a0(\J9K$dTx7w=]'D+f"/1A^ 8 xc(# Օ}}<^loec  2*ό\ e-N؟kYJ+ljc$L|͚ÚDS0: #ւ; ذ=Gxp`XI`RYr ,q +F/U +Y"c*LNipz\wokXAR`J@' }kd.Ưo,5>G{ТIXFLA"/  Fb60' 5%\"בNzS,/&G"k4 $0wOX+cmǕHJLA"/a W_2?K9g]\ud r2*ˋa<؜V^vl4kXA^/ApL1@yw3#`$?%a0P8$paG. ϿK~AVջ8d(1Bߎ!uu9 lm +o&ߜfg;'Kࣲ$*%&ˡ4sg{=(r(AeWa pPX;хZ3q}w^6 <87%HQY)S|~qn8* 8*% JC}';-?s׻Jۡw$xpa؃˭[++'8ʡ I #b}Uey~~jpxs׻;0$cK$kp$%.Y t(2pL,ttYCxt!OG{8={`6I5Ar(28Hp$%~W14{w†`я;N1Ӂ,AHLp:Ci-OI2T1op-KBY1p 8C$8+ec!9=wq73.Gn4dv]^_%yv8ȉAI;oqk )qI 2VNp:CrrPK8 +.`:7J$EMc񘻎ztiyt$w:VVXKLB  )qI #1΅Qi-y~&-wJ ryn02ZWY~;'?G//I 8. 1yK[110N+ߦfpW8$Β˹ >.A\hyMH^8DxBP`|9<:Ab0%GDܵ:)^ܥ+; |m#hW1PԖ歘F$r>9[Ǖv(}_yxo|66g >L*qvWqxۄ>_xPN[9ylrC>2Nox?y P3GeyQSbDgy&q8;+6k+9qD^: ^ Ż7G"k q1_ NT-EM 8|'bқ:~|K RD<^;?A⭓VN^;8$PKt QZRϖ}Jk]Yh:SإOHdq`W +woaĉlGM228Hu<8ʉ1xZI;ZJ&tXvgh #Y^~I\%tvC=</[l25{;wy5ʼn|EyvB(8}_u4 K`ډC9*EM 81*3yh~oyMqb$\2NoG"@pswnzr3bNnJW-c>+P^ͼyE(GCiҨW]|5M5q~>xwL*qvWhv\nzeUCLM9L28H|EI5 cr;3Vacҏa5Eͷ9^K A}y+pc%WA"e LL*տʡ2^K$}o6U.#/_|6k B$8H𱒼rq6Ont$C>Hos|̗Ab I\W9AkDE6+ݡ ¯{$>op7Z |$00$Շ=C;qr背 GD=rFn Nd8%H M J>`H! +>,A_ D"_ c0Rol%?5Oa%c I\W!9Ѓ//~\'7ݡlPyͷ9Ґ o_/˦JqVq5,7|$ə Q9n]Yk]LE[ o'+ rm\F^Àkh'?tp|V+5uӱ + H99߱G`cҏu|d̓ΙHJ$Ĝ 'uC9r HJ\R X')~D"q$ CmJʘ% y9*HbJLȨHd̓ΙHJ$Ĝ 'uC9r HJ\R X')~D"q$ CmJʘ% y9*7]ww=wU<Ͽd#1ޅΙHJ$Ĝ 'u1pGv_swuR[JʡʷlSRƜD.H؉=<"rŁDsaUBCHʓ:g")HsD)8yR )qI r n% $Kܲ?>Qa.;lHʘ% y9* Gˎ[6l`6jh: 1'HI2P'e+R#pd_dX, lHʘ% y9*ߦaH^5 -692}mqNMk1Oʓ:g")Hsij#S1~oş %K$P [))I;19~{x<:od而JD<)OH( 4OTW">[\c%K H$&a4s~{>_& }9*HbJLHrwՕ./vV#.{> *䖷6q+ qI r$8&C@3 ]*6e~HʓsyWF.J$KLApx-GesrfRep$ŚgF~% 2*epLNues >q2TJ$@$x &4gW]ߚ=!)i%lx+ {9T1N2<r.v9l/ߞWK~6^ǖr2PY")A! lt@b;$HJѫ;D2\L3)A6u$$8H$ d]%H%FR9L9-CdDR C&AvLI ߣWw/Kd2rTJ34 "MT؏u+LJM  <:>`s$:~r?^χ܆ K08 ц;%?3Z\LJJd2ry0ͤ44?AP;*OqA2D.e$1s%U״uީ#l-%6혒 )A@GN+a`1#47: eM3}0nMl3Ų#ޜLF.O$$8He@YL¥#;``%xu/%ɠy6f*؏O'1͟_8ޞWK>1fdrS\"1HGp! JAk|ѫ%^J4 <o?"IeM$$ƓMa']^Uslla6u$H ) T6eKNǽFSF^G5K4(1%f:#Q)Cdp ռ w=t%D^.1!28HHpHJM^npyPSK#Pl32x8D* _A r CgPbK%S29( ޮ]]z@ԍ[pyPSK#1ecTK xoհ&|b֍XC+I"/ApA Hd",Q8M|hOt0&^&/ ̓%^]nd3!28PYEerz_-_|$0 6!.C&ep:21,^D{_K#Pl3J0)x}zڃ=Kd-e!28HHp~f^G5K4%|:r;$8dS|M0ٜY~q3On_H_[H{!'V|8D* ѫ_ s N; v&ДCe9 ot)G{gsH(_2/%28 #eP $r y?y x`7GJK7:Ô#ý9^Ub$/[@J M2s(A peyɼDepWlzswp:Gq{)JK߸yxzx~_~8 pes1xD+X&cx~dMgS+fNeixϡ < |3L92;U%FBy)aѐXI˔g{\?n}Wѧ<~_s 4MpeyɼDǝv}l&é$$x0PaZIGۜW翧ՖBIb7^61Kd0>Dp{F~3=k:_ǥA)2s(>(A@ <L3lGǧ%OfU $8H$#14Ms| v|:~91pA@v3yp4+xƀ2l9sfwpOYC"jC $8Hp0;V0OɼDetr1`S3˴f6yW)#+-a«rPb$/[@$ fA"1rdr ~D"4J H䠌\"R%۱˼ # 39(_rt/%)2xp$%H%)#/1|I Db@P9@IDhA.A+!_!qsel.2xp` ݭ?Zgy<oo%f?59G29TN?DR"1GSGx'vxFx䦕h~۱˼ # 39(_rt/%)2xp$%ZI*]oߞG_vjrgM$%y|PbthHvΣEMA%] J9\?Xe보\ HJ$@3rc8%G濟L x7({AD"c;vc1XI\<>=PlВ H$FL h4S~r'^6W0D"7: CK$2j 7U Oʾ{ Ng؁aZ2F^by$ FGؗY0!>gGC3rD%4Urny!Rr,ARD^<-O:/zs= ,uSZ=zu' Hd;`u#ħD(} DbKlǔ$8F7CteĴ귿3-CΥ}VIrO ri8l Z4'- |P`[@@0FrPt|W:16Gr$d8M/ Ji pMp= 𐎓Y7XɡR"1NL %b9ARnt]nG |SqDR"qņk;GD}x(r'ߢ;҇yP }AR3HMU _~ebc1AaQ)Aԑc-Q|6Ʊd``=7M$lȠ99(Ab !% 堌#% n2ZO+}u8m͕ߡW`ˍ j`(mBlG |SqiY:v< +hH ,3|BY4 3%ȁ&r3r;*%離P0mol8<6\Ėߤ+144fÕ jYJ+ Dr8a@Il ̉flx2!_ؐ!I}$[oNӚvbx!g?* +ܩ/A0\`Kpwʻ+ʝ] +;HG2>hwv|$L$9:Gc`nr;  DRb#'HJ$r8JL'ى-qAH$ 8Db%2>hwv|$L$9:Gc`nr;  DRb#'HJ$r8JL'ى-qA.# >l,n(ĔD^onVin1A HpN[60A~.obl])jwv|$L$9:Gc`nr; ݱ)}WD;lg1&&9 C)7IvbF$xpl13Np9&G }#1e"9 cTW^sSZ(eѠ$;e<83@s"xo} %ǽ4;mlNC~ B&- %$%9%f0H.?ʉ)'t$ 8Db%24[m*ޕ!ḵJܢ$$rG0N4Cs^?}5D :8D"!#/y͟5v + +`nr; hGBW /mx~7ܹwKa$F1FBy9TGwBP>h Je#8|e^KKrPsf:dPީ/A6: H$^ +F]ro@ Wo3A\Gbw|}wBPguG)cʊY7+ dD⥀`|%`hJ\_3,,#mBخ;~@n. /%r`$vqxWVۚ=V#4|f-a$F=̀ҳ3u~ZFdnBsZF;mm9. /%d8=O=(aYk%A@0>쒃|?Z08_}_ǥ]?GwB0y ,Q |]osA)Hh:dPީ/A6: H$^ +F`؏O{?󺮷'I`ePYK9ʆ';{u>3翯&X.b` }s32(ԗ F!]u]o?Jďlt0ˡR)->G{{J[`$v҉eq<8\*=1*]1) &}@6u^p/cF$8HaJr{Ctp/cF$8HaJ3<w= y<oOZX1F6-|/v"c*=ВHpÔ 1U'u&oY(e` ?|oO@ԗfyLt5g 7dSe2oAiC'oC+Yb Ȧ|/x;х - 1mۥ W>GK'A 26]>w<`txneK*Ab;*%\b Ȧe0yɥzn1Y_P%ȝ0eRF.AblaSM ^ϧP+!g9lY +C(]n*% y9KO$>J$%ȁ&ȦN9(4ALʍNp$$8ȁ&{xd8ʡ~H$OJ$rd;aۡA"JDD^cI r SM$r r ^ [ GDGDw(?u]og* [H+73HF' Ȧ4;33+$VZُVrЙ H&F'8 ;T2oN%+a4 i%8rv(AȡR" .yZX@+Ivz^ |=iA"AhhΖU9a sJ3i1N@6svJTzhr;k 'F'8 @dc ݇!U'/a>Sz$OJ$r ݂$}3iӮz;o0ݎҵ  :<A29(7.<jcp\#TGc@)/DrctB͆{67_ 2:>eшl7J$%ȁ&Ȧ4>1jOX  U(epfsI!]^bޞ!Tʃ +DD"A"/]x1C+obt4;uA^F.GJ>L ~^IDntG^'r8DL 2(Ab;*'A6:  Lv")A.AIy0e2{4 5;HF'x堌q2(JCdaD $rdL ~^IDVI',lIҡHV PvTNlt@*'A ֪_C8eJ6ې Ҷ\^ }&i +)Ǵ4u>9\ JX؎IHC$`h']1>EG&q.>A^Ц7~Ui̷<->>8DL 2(Ab;A@wOD~=ߢ;Hdp H 4 1 V.?912[pX'r8DLqa9ȏxnL ǭM Lv")i Hʮʿ)퉽$mi[&2ryGy9nHcrykM>w49,% qPY")qHyGI 2(A@ovg; P)A>D.A@")^-HlLJlL!%F yI/Rb %w $fwCPcL$r|rKĖaʤAщdpR53tyw}{S*% qPY")3!=]^7˚VD"e2)dPntb19GDx<~K<:ỎLnam QQHd>THJRGR J%FB9TJU5=΂__ \C$Y4*KlLHL4'W`Jݒڿ1>THJRGR J؛dM!x<>1sY + B7n2b Ƞd28i w)vMIQo^*$2my,8i|cNRǧeQ:>Ģza=ߣWK$[)[@bΣQs]H8Nl8ȍIR9KH4Fuq{=mYFea-ߣWK$Fg3?12φ;n|z2 AsDATf35| k]y=*aA:lvg; P)A>τse DLJ0moN^ݭM<؉NR;rtqΒ\b˝rh 4 ;{Mcp? +IvnK$ >4l4 f\\GǎۡŔLH;Kv㶩ngx܉MM=t%F6Lay9T `;ʊ[C ۇ;1)vT6;ǕERo\ÆA2xp ud#CnN 3dZz{ <ӶɃE <8 $8H;&wIĹYy(e;Cd,'2xpH# e%FͽW K%2(H$FB 2(H"c AMM`˝#P2q΍PYKOd %FAK : {g3KdPK' ɑHdP"8D8*˃ɑ:2r;%F\ # Tx d8#_W?Dz7_+fHd,jJ$Gn%#͝T9o_{l~d!=P ۾\b$Ƞw6*yɼDetu9 +{p/gJØl%#7udr-wK*"Wm{` eܽIiLN<8S}7hH$FB 2(H"cfsmr|ӁO wK C!1c*Ab*zj7]1t` +@GǼJ@^2/A/w_Av8Y<ᡌy7D"#/yHDb@ry< <8Id' :1Np$# : $ep$28Hp$%r,A@ 'K$2`H$FJy-w #)Hv"KlȠ$G"12`˰NRG"GR5x +1ܡ\]#GA2`H$3V[1+YbdaCdS1$w<"zT⺮:5Ӡes:eʶW"#8ȁP)4@N}y$xp$%IقI<^`fڧ Q~0 +NRG" f$mx+`O+3j~Sb#9*&F'woOfY, +eNRG"Gcta}{{=UߜݸpcD.˃iRb0G/_<لό˝y{N^h:JH$Flv=t`#Ѕ=el'S xPY1N"Hd0~zF'?'ZI&2%`dЉq#Hw:px׶?/,\u>#| Hʡ c`o8L+a~7-\$loXмS_h IDb9+R)].,Kg vV0z+9,o@eP>(A*% Cȏԙɼ42)1$dAy0͑P" H8D,qH$r9,o@eP>(A*% Cȏԙɼ42)1$dAy0͑P" H2m|?]=y6a/֛+}|.ď`ˠ pR„7~߃V̺i2 yd2<&1 d0%z6X9u44iL噼eD ~A <8P)*|F~$Ȧ䠄%Ỉ?v<=?|;$.Q`#D"Aa`300 Wۏ0%$xpRGi~ٰ lYHb%Z`#D"A@:Twǫ/:!HrxYď`ˠ1`΢6A~Zym!-E)-&F6 =tD^" > Da]y~?`I IR8\/rcp;lnR͉_zJBY.(aeK#C#Mn 脓=;S/] ) rP!epcDnfߚ/_:"bKm/A/J9(ë 3i G ].6a8>*KCD"c >( J`<1Ã~ԑArPF^xO w1\K$M${R) V JD8A2|P x"c&X#% 2(*堌AcH䦎 =.p2Ӭ˻|W?}G=jzCo͕>H\CD"c >( Jd/sG~gWXb\vbk8>FAyDnt!ï=x X~D[dӜ> ORpA '28Fpxoҏ:rP" 2H8zgiʽ=M>t?crPF^":28H@"ƓF>sy:­QM& >( J`<1n_7~Ӱ"X +gs)%52ԑApl1HΡTw}#>; ^Ce |Hd$#xvu]ė'A'l7Y %;XF(=)r9(#7DSzt~|GOD.) V $$&o>'ǭS |2rP{Rg$ϐw01뺼տ/o#dt8Iyp4$H$Fl5x\rw~>B;MrSGJ$$3ו/<IYlxI|Ľ9&*%F6َJ <HTJ$I;A"#H&A0\J$%G28Hp$H$ D")AʍPY&X $CFs;Q)Aԑ JD")1rg^"Hd$FA !S dD"AH$%HպӅ «{$%4P)A eh|f̚xDQuk%K2yl:epHǡ#="xtɦL!_{u)mB {aД Ck%A0vTJ7u$FR"HJܙV]}]$|/RS dD"ACqL_MTZI{PFL #lG,xٹl1|5Gc["iǁXu L"H$ ;Η&xu]o_& ~l#q/Aj /vyuu|8dXrP )qd%F=H;k kʵ uc#|"|: M/ mǞ2Y¥Mvur +[;c>VKVC"#H&A0\J$%F!xv$V\A>J$DR c1z#fm/_L"ԑ JD")1r`/tUws4]<#qˌm.pd%ݤs'#/4H$4GDu?-0iX2q#%ȁ&FBàGķ6s뺜zB/ҖvGl`5)X Hpw# <(c >4t&1rPK4(%ƀۜ[xIe VҢ$Il7Ay|}Yx6=kIg'.; + J$Fdrˠ .F9& n3[ բ9-ץ/ay0}d# $ JFB 3c0g{_dX_XI@9楱M-:ҠHJ002 f_i'A>׹N7v)㐳\aT"ĖAH(A#)סk~ຮ߂Rm#N;_FٔtNO}'_7 vPV-fdAzI"10j{1YCTg(ODH| G:%F;ťKx?v]uH3-HXK%#L9k4!_ǯz{~_A|H %0%h8bm}57[߯εmrX%v7:A=׵Q'kEh$aqoUԼ'HlGA"#|/% sϸa- wfp$rcw(NܙFri>z'HlGA"#|f V~x\/K~ԚXd3/p2eGĞR^ǤS_ᜒZgN.nIX b}J ^ :rGPhAba-N8;5f/&@ 9|\Q"w<?t[c]J;EKl >Tʗ9hz'\*6ف +be),eiY(K7|\Q"wvgH7_}WFq0hɃ Hd#&1z{nokeXIk8e܉;HWvC=He c? OY>1da["/ȃfF[|iٰ]\|^ kPntb{N>9e bAA% s]];m}P_r-04rZ CKAFsr AyN:ܚ=:ht!Vļg"12;/'Ab N;ȍNp$$엶t{?D;KD`D"A"/]nԑ AKO$F{%X$H$2rщ|' DN?xȸ{yg|ɼH#H$HsVc7]j~7 J;8Бߤ+#qDF.a$f>?{{O}>(_2/%#HLq 9#"[ yt]qK@c=::OeO=nM2ZE^bF'HF'8 K{:6 +j8=zRۮŴ#S>G{ɼH#H$H場,x0K!NJ^"sS- oۨ$ yDXO#&|lW;#܁ࠚu]o߁mpF;G>K"ce M(DP|6aûXw }$2^}>(_2/%21 \XO`0$UtJ '#ý3D+Nzm'uqt";>:ʢoޏ#q2#LߐN1IP 3D^%#AW<9u﫻ϲ"8 Ke$V`.N')>F6>z y 3\I$؎#H2ƓI$8{'w >H[L?x'7?DG"7:#/7! 7u&#K2drQYbd |Px2CvGR~\b /}F >q_Pj=;q B'|Lԙ\F. '{\dq +!\A胀D.dM̃!3ycx<$&xZ'/2,JH,ىU؎#H2ƓI$xR|aq:6-xg\t0kE.dM>1cY\-.:.&旿&ޞ8#ߴQ%D2gi=#yo+t> 6&_G-r-H&lbya`*gA̴ٷ&ox#[yCo>HntG^nC@oLF.`Ґgx_^}ΎR#/i0۽\>[đù^= yGƛbeq+;HX=$O y<81@2]no?y溳} `})hKm/6ȠO3mep$HRb` ̹|<oG]F`@ .y'#1e;K6 旯 MtqUqߙmS2r|P#|gxdP(h؛a"nԇr3 #/%wOqOw +ML3H&#]'e3qJ~W{79bGbD.OdA UM.f6wV~Yw 3 6K|H&A#sMLBW&{kgo`D"HJ$K$ r*Kt)JVz$ 2W7Idp\Io\f7y<ߒI_\eIԳao\aJD"aԗCe !P)7N[gТ7_diӭ* |nK 08H\Icj\%6Ha$I$N}94̜VN={M亮π-16b[({xu3D\b c@il߃#\iwxA`D"HJ$%lB3Zax'tC%:8yoFG^ 8#%Q:=%E kuanSS G HuUvE'ZCK#%ȦNDx`ۏbfo_$t + R2x8|s<-aǻ?owwyG:gcaP@zxhd^D)EhӜ9!)3 }P\bdSqgle $I R") Aeph\PE2̐ )&%I#ap] q@6S!/)r %F6wv\@"/ *%I dhXyep Ud* {^bR  GX+Cltђo%dSDR")A Vu.M9F w V"A'O$%I#apX98sW~ܚ=+гl=]32yԞM…TivtS:YъI$%I#ap6Tt\-]<]qV =TH]IMJpzrҙp]ϷGn(+1* A& zknv0Ycxh oX'oY`,$F{Sc`xG] ?8/{mlC$80DB \ 1Mk.=Z +u*Y:HJ # T4%ŝZsiCs{S4N@@LlڀPEgCs?*o drVȝi bOpĺ "H'okMᝩTH;S']M6]jЋP$0z%d+$8)/@>ο(V^k\Vd3 )#z~x*ؗ H4~ Ħ /M{ +C%8HH&1~ArI\D\X" A@" apar! >܇c< 1Cd2r9Ħ /M{ +C%8HH&1~ArI\D\X" A@" apar! >܇c p;ךgl/5>9VNsɤ$JpLi;|Z'89Ѽ76Ynߞ2[par! >܇nOuw~;3Ayd}=ilR" ap`weIjɿ_u< H o =p9̐ \/d7:8;{ kod"wM몄 H$EจA"# ˠ&ݬיz oDB}<Ɠ3$H&|w=Evt&:ab"% 䒸 =@?]*INݯ'S~WKIJpCI$e*%28 A.#ىDnH$%HؾqD"w08H#'%6!ܨ DRA$I$[6*A 'o H؂Db d'" 1N@bfI% C`` F×؄drd+ 8wwa߾>tH={qo$pI8IG8Zkfxw X4p` F×؄drzЏ]|bXO Q33J -H$FHJHt-ҧgn*3ߕ8Yl↰i*Kl`LnTYWsgۿt?ˋd$pI  #q >`[@@@@&ÍہjF0W#;ro"H H$lTJHԘLi +L۷oQ&+n2B'K$[pN1½ z6~&7*H&}P|zѕ\g_8psl|YDnH$%H>Ԁ#ʻqgJϴzMyAKlT'9b A@28HlckC$H$ D")AoT@6SقDaF[r+$r <]ߎ%.R")7*Hv"HJܱiSH`r0ARb$ c; L"H$ QLe 9܇;lͮp%Hwv};tbi=ڝ=3{æM= 1\ HJDs84 +p`.wٙfm5mQ +\Zkb=:Qק|ky"w2/<_vӥo0z18,GSV:5l #$D HJI(YϢ<"C  $r <]ߎ~PbKk5&Md0r0ARb$ aa[[u1CBYG. M - +\~g׷aY'hUj_Aqϣ-/ԵѰEJ$FN$6t7s_<Էoj5@l!I$A" CPƴ.nT12ȞB"H94,/( >4,1"ulp; *EʡaDl2qR1.CLe㉌\ ~L"HvHx"shX^P |hXbd3E%ȝ# wA@6U CLe#åb8\ 2+6\ qCv nRа$аf:ўpǜo[9HwXz0&AZ FKp 1'2:nZb;Ќ~qj|>εM:L(~'^W~8t:u:8uM{@:'ҤWZ wB z.CLe㉌\ Np{ւv_ K1ZU S064,1"p90 1)S.3ٙ`}`8\ 2;>[\Li>vt*WM%CbpCDK[vTtB9 LG<[3m -e J" ``dT *ZѤ]Kv/`YfM$zw #aDrϡa _:ٛ$LG68'ێ5 H94,HTF53;pu&2Cp$dgm +Kޔ_i}5ԭulp; *1 $LTťrgO[^Kˍ +u$2^{8x) /ٛ8 # QHa^őHl ۇ;_bv A@H$#ͮpalc+F'c{PDaǓ/%{G"Ac$7*=˸8-cPqKl–!Dbd|0wlK 8q1t =Bz>y$vSDxA'%^ +H$.|>o30#8]^ͭIX%%0`D"(n +%:N'} ?l;2|"6\`I!!-<#;A"|ü#f7 &k~MW<<2D EH$#ͮpakѤA hr@rԼ) +Ɠ/%{G"Acf7:Yx96ևYuD cD"(nv #II< +s?8ħxwByYoF:w/=OJ5Ѥ:e.P3r10ӷVKl–!Dbdr9L3;8^8!Zr_'c{PDF/:sn + +`" ǥG"%xl*|M\3Л {;yn꽼#6 A.#qG~5xU~pwߨ`$0/h]\\`_\NlT@# >܇ H&C'x7AT):O/e2r-%iBg|3u|23$#/F$8}dr0|r!|:HpMή1HrXF.#|h(_2F.T7S'7*\=I |}x#o*kFC$!H Ip \}_m,EKv%–CC4rx5Ime=_,s =ۣo߬ؓS*ơaau *]c3$H.~g9|m͛Ə6I=ο\m/G[ Iy F$)|c⨇wKK`$.C +gjUÆ/);oy>0זhYf*wylMK\PƵűb;y*fAj D./5xl]88]]u)+sѨbJ3m%,I$D.5n2~d/$^ +NH?C?381~&8؂d2EL 坩 Uʡay\ 3L$I v4fW`xaI909̐x$8O  d' ~eS'CCyg#{rhX^(# d$8H `>^bR.7H|J=n>/HϙޅwGRɝq3O#{_ x Qn訰8 d$8H `ڃ#J_io8zlM}Kg<+:~ݏPg}+>ʓΗE;^1u24w>2ԕI۪6&nP]E X={Sټ쩹F9;M\L-81~&8؂d2,/4uIۊο0#|E.;~1q2F < 7Mڳ_g_ui5<ljK.\z_rIH?C?38̈́#}_}xb3NS3Mu3qC ҠXF.A@@&$Hp#곞Ǫّy~> '53̐x$8=4{MSy9?kqAxb&ubY6Uʡay\ 37})5qKuwVC)&0d0CGWz㾯vdtByp4JXv_𲈩3=ʫtyr&|9t~˯Kx5 UؾQG2 ٔH$$0CDu|0QE3LJ3ClLeK58."A&%-Abx"ߣH&A02T)cFd2KfS"H ygy$G90)A> A@e3-จf H$lTq+K[\}KZ^۷on&w,5.#\lJ$  Kah)܃/3 +ï׾n礼 Pakp\D 3LJ$[6*=;KÎ+n>|),!xQvy|6 ӗ<_R'@po킠mhѡ>; Ab{T cLph @,/%FP")AHl٨$/>kћtI'hor)^2DfH;CcVX.pŖïa +.0Y&2kB&%-A$v~nFoHl12T)cFd2KfpdJOz:!O||=_xf')DR =.[g윖qȃGĞM\_K3]!aCiY'."7U&L"8)_QpLvDD]1dݥ6$ +TD2plA2 zZ _r\䞸Tugrsꑙ:PE qqlHJthYfle:\\J G29GR~cnnf<ϗrr:"ֲf@LŃ U$Go.89S߯q#>'N=3a릥ߨ` >4,A%i}8ϷKKG[e /aE * P0DbK;Cap!Hl!Fp=ں#2ryad0D"A@$Hp vq;fHaeph ~e1lAe!Hl|`0 |00HnTG[wbdSQF./L H$P" bt{F2};Nܩ);<΋{ uo'C^æ T n)B{PكX#0 ob~iVX e `yD %HMVnZ+`aqvBy^g?&2Tt8%ElG08'V=VG  CCF%tb LSjb;X% 24H&AB?&ʏ< cjDnT ~aĖwj -2:cհsuKij&2_E A"/HD2 $8tSzVLb_4_l5\OWckbtA#0C-u0lCkT":7K~XT S$ !H%  =>DՎxowA-aeph ~eCGq}emU-HAMxsa.Cb$ 7*ߣ;1(#ג6N1=\?y|*ղxG%4$8ȅ]܎$`IO=B;$<4JoV`r0H >v9]*]T` +qCW :b$X8 I $x0# ST"F0N@."G"13܂D"28FayH4_&D 3$.L1%IeSq<8$8Ha%F8(;E`\EDb$fEdpDBE h(Mn.x_w +o l*1NGR |Е[w@[r|G3xߪCb6׬ MIJ hX^(A@@0 eֶC-=F^byyAQK 1agq<my_Vw)35 b兊#PI$-pVaw‚.b"^YwH䓸˦b$xp$%Hp1I%~@"yz5AE 6wVCb$fEdpDBE }k +&4<ϯq'N + o*_ SLdpl|wT,Ѳݤq:z[:^LupкYE ȅ]H$Fb[H$)ÁG&Yx۟ Ɯ`SD 3$.Tя &y~:#l/LqdSQw 8>ZuoC /:-󽂗A"0/7Sv4H0EQ bA0" A0\bT Q\bdPHbKa9f*#epH A# H$>f*#؎>4H@6*A@0Q <8F6S$!FK *7*K * Cl >!LedS ] x69q2d@t wA=H| =TFӒՐN.Kͷ Wp6~0Q{|gZdJ# +F[k5lt8b9K,- op A# H$>!Yp{Ot#;?%Z}||aM`#da!ݚ}J"g*>vw8* *A#)v8&0Bs*n nBEH +Q bA0Ӟ& <~#R?~==l Q&d0\Hc<#/M{ +y<8H%H\0őA$828F;_b=l Q&d0\Hc<#/M{ +y<8H%H\0őA$828˵K 8<ĺ3gKu=aKl AD6@M?rq+ q4mG_ nܳ;L<,l|[A"/#mby5#$q'cumhL:kÚD qq$GHv+ BfA*q^x؛͌24/ d0٨`$ #4)Ndq.AjLjRi.NyǶ+Vɂx<8H%H\0őAuMu{i&sX*6 SLd5FeC~Ac ZuL߾WsWj'3)G" 6ɗ|[A"/\ః3=ő4t>| +EXB?z䗼0D[Cc)N:*h&zs矰Z1t2;n0A1x%F_ʗVhU=K4ROyX(u^ǭO=hfI#wD?Bo:?>qfa_ 0|[A1ԞK%P;8~$# ܫ a$rD"1N@!F#'$KlB2"/%xpHJ%F*e!D&! CKbKlGr!\"Hd`QF`LnH$r0K $8$xaJ<8F#aD"/ #a-ZV+݉p}aa&Ac[0w@#ҽԷv ho˥%%a9̐D.H$2@aVɩ홤/E-8܈;hU\W%) x)GR>4,h,:Te> ? +Jyk @? #a-H&ЃC[WyN7i%6!TH`+?AQ?'>$W٨cA"0{غQH4]  *JD)*|.r$r3E&c;p{T)G2D H$$` daF#PnvlT@\(A0 K\DR^3I ȑTQ $9 ҭ_{p[,<;hN$ }=lݨ`$J]EMH "8*=;I{V\N7A4wp$r3E&c;p{T)@ 8O}E;GxVAiy{MW6<[}o߾9U`BE hX"%BI@W\{J<$>~TذۣJ$8I$r0Amh޺ ;70 |[7* r+dR>m ǡI9f#烙tfQm&adln*epH&4wȫὼ^ +>$r@rpXJg=~eT0%8ֶbSpϕ{G.r$r3E&c;pVvKYy}x 1 DQǂD 5dH<&?qr]\_8Yfu'ĔK$兊;#T+hUvsW\&u AH$%H0 ==*ao A.T %.R")58:wJMo+Hݲ|K"D2Mm8Hpm뿉)>x ?{uNE֙kH ?~=7v7Az&;6 +FehIikw/ԀN 8H|lцD_~{+f8KS M QA"H$`- BϖEئLiɼf\d7ISf*=*1p7zdּOx~WXW]);Up$H?V&ޠOاD0N4t$X+$D m1LDH35e$I$TVm}Ô'|>5t xSC K#C1iBг m'^֭i񎡇#VvkM'inT@0\F.%HHMZsnst,?M^ޑ{w=k,F HJ!zaj|8wC0e + xC+tk;C'_=)G"1\F^/e2 <8FIl3 A0qqaQQ 6*;1=H A6‘L#A.#/2r #w$A6UE  ø8аܨrODÝzU$ȅ]pvuw l;(\~!ݻ/#s2^e'$xpiV["VO>x?yXs_xp1y`"rd ~`h#pP{v +!v?"8,/,/ +޳5[\F^`)C3/k)6E  ø8Pj/N +#x#[jC֕H|<ԃ"A.(jC5#} +Kq$YD"Aȝ6IM{KCQPD\Cuͮ]KfD H䰇..$|w!]]w2/~#OYN{֤T w HFenvҧxsIO&E%7Oybo_+wnaFa:fWή%YHɏ>E+lyϊ +O-2 +,Atrsh^$w?z;oǿjOB?D0 >\.;|sFln'6yg]#ǃ#Ș AȨ .eaqe_y7io:LDLGiީ^ J;$xz+mwxX|%q8iy~-pSnl,$LOu>d6} H$`7 KK|4#l^֊t2ĽI"AT/APoJvƟ;,M?KЀ6sjLt+?PJ^u>&=w.znDmD]Qc"Hp'e{e3[2 KX4SpHX71'Gqljˑ&#,p^~{?zֶka?bmq>Zu+D.7 + X>"s>m $xp$$?lahYřK_kJ * C=\F~ͥb84 =T@brGIygI90) _renvH`|! ra?{nTuh(L}dPﱷ2{n.áE; H;SOaI9 ˦/s+|0D"C Hp ӵ.ݞ=T/O-۽ts+׻P3{쭹Kph(Ab={2HSO}SL?owst&ͮ A@@3$ A@s)]^ao|Yau"24,7~1zAY!}$Cc?o"]MBÚ3fapmw#BGqHa$8ȅ]'[iOV +9/bsK4MdWF)`T $ +HlAC V^Z|玹Xw#ie y7#NC7L Ԗ6"!Ha$8ȅ]Î||; ׻ءw lT@{쭹K0간Ò;,= »fnpoGNFq< Ֆ\چaHK.ͮ A@@3ԹA4} CCaKԃN֡3AdhXޚᤞƥUk0}k‹{㼮joGlA쐔 r0 %M _&_ަi#x ܒ,] (0>{nTuhGWzst+W׳_qC2S +lA )L=) HXySn~o{|x9 X@6* "HJ\DlT:qI DnH\DrɍʰIDF.ca/"&Db$fH@"akPc٨H\D")q Q$I'%"q%7*'%q{+ =fKx^h+n%qȍpG %> +HจE$K G<>Il'e^;HrIz0Ѽ)Ԑ\r2xR"' ﱷP0C3JXxVp0¡ckPd;x;οeM0}8z ֲp;AbxR &f݈n:|>~ϷV>hYt: ﱷpaz8 +>{v?v:Fb$rU8égmT@E$."٨l9ԥ4.&k_qmtH:T|@W+l못gC=7OJ$rSE"%KnT,ma-|>ƪ^^yw=Pc1~90H$H'#1C臄}-UuEq/|AfFήs'1 ړwB~,`rD"L"r\䞸S]")' HJARnޫH&C/L1)A\Kl A\bT)H0d0`D"H&a9.rO\Dީ.Hd$%F )7UJ$!H H. Db% HvF.1\lTb{p '=~|>> O߸OĞs#ښ$F^b`dg#%4*5Wcd2M^q52oYwU\#%DG2D{qrMbЕc1qLo@׉;NOYpirhfW" A0ŤArI$#cB5'?yO}1 m  #/Aø8FK$ DZ4D7 'c1uɎwԟo^]P3Hf H{`Hd$%F M.8ؙ_G/%c$ 7*Kl\bdSqKڴ3`D"12TH&Am PE[LF~ϡaA29a^^P Qu$d0_fב$˲W#; +D f|4>zoH7=,2j 69QUf~v8&<ʷ\brR̷4tfDR":$8H'g|Q 8& HsTHJ$qyyA$8ȉ]P۫g*}0azo1oiCD*iK +y(_DbJث1 /.Αr˲ + 1U4mEԑ?a2{I d9Vn[DNxE{{)Y\}^JY  I(OtīҭBĽex`fY߾MĜK$K F%1$-Gmk ?߫iܖHJ$qyyA$8ȉLɺ7Ud ]|jɒ?~ٔJXgnZ=l0q|mmM%ЙIDb2H$K&!pN;nL|>^<xdp8" wk;S[0%Q$9*K$%8˼<1IMMp}햿o9l>&Dg(b(rI3TaOKł!֤H Ac/aP5kJ&9ѶpLFF,#, hClVoWQ !㵀]goj۽h>2 'gc|%&alq]Ntm.elåxu`<ϯUZ*?t Hثf'g|Q 8& ~<۟ʔ-ןWL{>&#M&Hp8DJ-fenfhu阳[0ݽvK(R#,A~rv8HǞ71n-HlϓG~[!+x#c>u8=t@#A"AD^%N+ID"t$8%8&'t3 A|DR;2`9S_?9;ɨSE$ $rT.Ap +XI%c%)1?  $%dT141' p—pw/Gܿ9Ó + #^.4%C48=t@#A"AD^%A`[ܫst׺~"x<_[;}D>ÑD:p0_9dOVVDr&28$8HpOHJQYblnE7m] |qc׭2Xr|N|2qׇ5>ys6׶ȿ^zYxvaWҜA%c%)1i]:d-a8L&$#/ 䎡9i>h0[&b]O,0g3;fj2ii8bG]O&G miA"AD^%N+I'/aBvMdp<x~ \ t\3\dkA/Ay%&6[nW<ϯ/δ}hn\b2qzG"q D n%LJ"m֤Ud-Xcvuo箶?՗ҋx)V+ZJojXS|IDRGR   myvNzw~a3S_?9;ɨSDlK?H;k^6 "7|<_#A@<# V;8ڇ$ɘx .t$8%8&'t3фoy<_WN;NDMd`n e NsrG4dXZv`fo3H|Ld2VqwDXI01ϵ &J[ó@B/Xd(A0A.A"/AD.19ѼS 'LNj )28'-O֙18K|^$*e) ': ȱ %&%H%3%&'4qJqdI2xp$e4TD:;cg#o1|D >8owp yj~pAws㡄K)E.A"/AD.19ѼSœaAi/F@Ķa0o|vxz3QL39Y C&# }48|lOr>>ԇ&&|^$*eĚ#kV>xغR)C$_?HG4oCd:D&N >Β3 f -WˆO|_ϯ]~.2JR8(H1vc;zki4tL;cg#o1| f6Aid8qZB9~Tqt[.d(A0A.A"/AD.19Ѽ`g0lѹKm_/ <^n"^[|DDV\a[& L8a'A>hy䎡YCi?Ι(v'xgจ+P`\D^ 93L%dl ^Cg U;*\98,W蘆&AP'u̖bl>aeZNyG^53Qa2P,$bh;$, { 28:e H0ϠO z>_/,! =س9_ʓuͷ\* C <8H%>I$8H%Nš ~dȘ$*%&_XD.G.#F#'uPC.h2TyOJA@G.AI A"/qʨLd'\DƜ %&Q)A0š$ryG?rn8<^WJw; ze0 +y9 |=^aK/e݀o|_o#=mΛ…Ĭ0'\DƜ %&Q)A0|"hXN"Zpmw۽4Y r(O!4bȻD0iVe>(¯40 +y\lZޅ9 I->I$8H%N8j2~^Fe+yk[EJ4$%&_XD.G.obaoa4lcys>>AN%艽NoN!a.JA@G.AI0p=Ol=I 5e8QxxA/f2Ed Pb/I„6]vS~X?kgyUC`#A.h2TyOJ0m؟։Kf>zl' ?~O -Ã=ŕâb,BMf&Mš ~dȘ$*%&h O|~@~I9' o UĄQ"nӤe3-3(a1GrP +^F ޴9,M$8H%Nš ~DDŽA߉Ӆe]iV0ryG?r$0iYt? /-%a# $ep 8eҞ71@ܩ2q>҃=x:&2NA#)C S/eC`K$-",rTc%\"wyHʡsS0Ň-Jʡ| D<98C'xpHJ$P;o)2|89AXI"]b48r(A0Lp|ˆr(#/9ۅ㼚pipUp$%r(ApʝelLB߆H(i;w]1xPGw{4Fzռd$H4[H-F#) N ԆvXzu{Kծv471agyzIޮ&fz-s-iI+WMiL[ E.Y ,Ҕ@CǏm|c~,- 8\|(߲ȗ&Ff /;H$VZ*܇QQtO_W./a/eC`K$-"Ji h3}Ciǖ> HOjroSLF#) N;YEmx<~&LgZgWp\i' $8I9 8N2[6d l`ӠV'aK.p4FSc=KY{i2_?u`&cJ0aH")2%28diC,iͽߙk9?wm eJ$-",&)IT\iHL+x5L\FpiV'$K`gy ' CdS,/c茕$8Hp |$ A"_ )19 <ICȗ .dd 2VL,O A#Y"$$8r(s +xL 2A$8HK՝݇tvky_+dMl rҬ,O!H c%$h -n͌tUv5H0qc QO OuzYBS,/c茕$8Hp 6 6+"?7'b?_O_{fE1| rһKkÄ 3vIm[F7uctT`YzYϭ=aЄ dDHHʡ nJ0=Աg!|~4UYa>$8P >V /AH$@hsO$,(Y?>x>_>ן+naқsQd$Y>4AGD"11yFD;6|(jWt:1/c茕$8Hp |$9hca9HV|~0Ҳԉm>vig\FpiV'$K`V6 v54aY{m8/+!R%$L4 ~)Hw1OtJ$8ll2*ܺytȸ;^.L' CdS,ԗfeKmϬc7n?_XHɘ& $%cn>fEiL~yo;aC$8Hp$K$DG"͡=²mvɃ==XyJ:%Hp$gbSKCg'K$;':/qJəH$: r(':HdkzW8j˒4OSbSKCg'K4eخb#_OPJ$iH$d I9H$2 nc%,34k?,ޖhz0˓u&'5KHo [+p^:Hp =D/eKxs|StLD"AN֙`N@@C ց+t]o2?^w5ac)'LNj 1i@9  1OHwOt"_8+3A 6sf@~ fOl4 H417w}yܭ7l0tIddyG|y+˝fϯ.47"t*DR⭀w-Acb$M['vN12x  HLCӇfS@@28KD"D [D`Mbϲt[>?0.?q]`+'8=tLc(ل'BCkO9Hp0x'‹j^Vz#G':Hy9V$%̳~+c!qaG"HLR2;FA@6N~:D< `W(_L|`[-Q")H"V@; 1':8M63I Gd >Β#H$&Q)O|`=<_|̲䖥疥 LbǥSy&o$NӨ m@wDDO)^ XI d >Β#H$YN:Y? /|>~@ā@8G.A0NHJb@@bn1 %"eXI >-aTå;s7`&cn& 2;FA0?щ9|o>f_uI|UWvU= 8Hg?Eh_^ .΢.^ ,/ /A`gbK;A@NH gDEx[ 5%HdYO5A ș $8&Q 20$8ȉΉ&Qy&&Q䤎p6yHJ$K\DePSɝ MFe8m_I Ig{_"/x}Uˇ POvK ':':D噘D¹ :%ȅ+GR[,#jJ1ɨ s Ųx"?_|> S,H;$]xw%HpLrd?a4,Ap5l tNI()ӉW-a2w􃃀ԑ &Ifk+dg_Py3@0hQgϯgB*%;A@NH g`=Hlqqְ8d=ݫ!H$&QY%ȝw>ʷl"$8 2 H\|w֟\Xr~:2x|rTJ$D7rPwy"HLK;og3/}>oE$Hp$d(AQ99)?Bwud䨔 H$dOt mgoW"gF~ۯ:4e;g[6t ‘HA"G|w֟\Xr~:2x|rTJXX- E [[Ũy"HLKab/aC'+ZyE;."A# C D%ȉΉmӋNj>^/{G {cb-u.3L:0x|rTJ$D7rPwy"ц vcǟ:"Yv?f5Ƕ..sPeC HA"G6 +DSR%&֟\_. -q%ϻ:,k,u5!e)&ITqw rml坳χ-l."A# C DeoT|w֟\Xr~:2xjٚqh1H󸼾s 酩2D"A@02.Aͼo[6D< D %9* ':':'ao)osuu^u %8Kʻ'07iH$%;2N4%n/#_~*e,hKm2 |\DG"AKj}v<sb9<iC`(%r(em.c$8H )A@.|j\YrgCIde.#/qqqH~rO?ARJ[MJ͢#?{u8_^\ c$8H )A@.|j\Yb{/l()eepq<.2ΒOaKnup}ޡ5<c-K40sepo UM| >VU\ Ά288\F^g ,yp{zv6x,!w&X_ GdL SARI9A2T6qr$XI >5AG.? 22K @/[|ݟ[4aБwA>3/#>2fkJ&o|ɰ >5AG.oV=f׷2a`CT:(rxZJL$),ID?Y|C$N kQ)A@@Nt@YreD./M A0 %XINt9y"|L.ʤ2rH.SYΓ ~9ʇ28H:$R而 Љ\^8<8."A`J7s/;rqqO #]D +.\'%dsepmйGJ r2Β.C'rylจ I(AJrbXݾܕh)zewX RF.#?%qنR< ntHx;Fe ΅5ɨ $u :֔~DrZ|}"֤//4$L fA0 %XINt9y"|L.ʤ##惦'6"} ׻K$%dsep8=t.IF9gApp6yp\D$ c%9q|n2;g<_MO)m\F~&KqD"C@>qaK kQ)A@@Nt@YreD./M A0 %gXaȯG~|L5lVf+dTeg"$Ng9OJ$2:( qz\XJ r2Β.p|֡/:y<ޗ!̖˸8HI=cr9\$I{I}Nnl¨ >Aй&&K\ ly8m%D'x%P ~D"A,xP 93r q(Y%&',I ' 1$%&x\_[fl%Hp˓s:t(Ǭt|L(>ɿ)&x<~ؓlR|?D${^gn]^.s +K"$$8Hp%%I%[ e Ns2O)H$."c\`cɨ#JwtTʘs +K"$$8Hp%%I%[ e Ns2O)H$."c\`cɨ#t NI\N-狻?5R"͓ $K")AJQY"YYPƜL0' C<8TD"28&QY%&8 +="=ɹ~=_o!JX|Q)cNc~)H.HJ AdTH 'u o141' 8;^SJw%/hɯgi8*I%&8&:I|$HyG?NGml/_z/o*a&A %Ȩ,,AN,Abh(cN@@p +& d|*OA"q,G\8}||}c Nk_ˏ~97=-K؜uNArI$DR 2 D9y9)`N@2xp<EdpLKX  eѧ?OwYῌG1&?*eIpLO9%\I $8P-2`9AFJ'++Xo#ŋ0,B?6d3&DR+ .Rnw3r +AwVֵUZd惜YPƜ`>qoxNe-!&xxd\Jh;cg#0 +2.%t@09 <8N9gyw DYD")/h"8%+''GI$8r(A@Hq)qv8'uJL +I%\~(ȸD3x8Dd%yRg&DK$dhN:8 + pLQyR䎡Y'K LN4SNt@@Y] 'u/h"H H$NA"aZ*;eW?u33W $5r(A@Hq)qv8'uJL +I%\~(ȸD3x8DZJ7Y_s_.5S2Ds8%+''GI$8r(A@Hp;JF׼'~m+x#oM4PpL,yFAƥ&')': ,.A@ȓ:4H$M$D^ pL_]Տ*}||- Cw7&T[J :%&w $ΒG.?ad\J`rٸ.%]AB$&C-@$2.."O;AM_?ME8!DRQJɅ{N;`$~>tvP:L!sܔ:8殕vj01f+O;Qy&sBD"/~`tz}9pgOL ~wH$&8}%&QYӡg'?Eɽscqi-9l%7ZN~0In56uC S@RB"1p)'Db/܇N^b9Jqyyl~}\DԱ`m:qckx|r4u97Ii %2N:P$帔'HL.u߉# DeyrvN c]Fj%@+Ns+ӓh?*A"cN@#\/MN#eD99|># `>փ)[TW&ۗ;/)AZPFgyOC 1'H$& 'u ߰$2xgL$rT.1yeT9GBM $eegF~XyPFgyOC 1'H$& 'u ߰$2xgL$rT.1yeT9GBM $eNN/ "x6Cp~˧K$p:Ko<3Gr&9*2fy n=ڰn{ES@nZh,x}x˱.| 2 /A@@bNHLA@@N,AaHd IT C2֡5i9//Ԕ {JRF^F~fgwAn{O^k`;v{/:"y YŜ Y|<83A@Q-QPF^'5 5%H8>Gp`!9Q=N[Vw:0mk&p#d> _Ĝ Y|<83A@Q-QPF^'5a=@WwO-_y<_mqY>M҄APFgyOC 1'H$& 'u ߰$2xgL$rT.AAGNM_>_U|fi0J0bn>Ns12s\[y[mΙ ߰$2xg1+͞;&'rPt<ņx:<˂C0D^[?eT.AȓuMSNO'Np{9;ymBkmZ[*o娔 rIoi H$Pbʡx0>fy2! ;^MZ_ +a+-:j 0z9؄ R"Y%'Q)q'-%AH|#$C ֛C:.nW(gs>;N\.n,OՖC {eR~0\oKA胜)/楌͓ .K Kیǚ$8Ʌ|r(Aaܹ ]Om)# H}:Ӽyry¥y)wP"yqXG\͝PLܥ8_ k0q27340mR~0\oKA胜)/楌͓ .K KəV6{EF=[kOKߛ9|r(Aaܹ ]Om)# H}:58L[k'R|_IkYaJ1O+'D6& D|r)hϬo ;U}f/xxA{ޡ{bab: H9ޖ2r d N?9S^=Ko'(A.\:qX9 %eѧIeU[E-fenx<_/5iA¦E,1s?L)RF.A,1' 'u y)m%ȅKRB'8+e`I܍H_˨IM;l.ɝХa: H9ޖ2r d N?9S^=K5pDIɩ ~Vݎ +Wsl/P4s[./I@#1\/q9|@se<{}?+ wnKm A胜)O&fݺ{EkpܨuyrK?{{ WJqa\^8yy{s |GG 5%&ɸ̱r2Ӊ 36 <6O>i@~KpJ$˘_̡JLBDD./ͼǽy DpEi?Hգi]/Tiګ䲑tɽ OM%!CLKsz<&F>X|W~1I4<yy{s |GG 5%&ɸ̱r2F|` - =_eR&> CI(H关q7! /AwtPS`+'i7<'E6{Y/:Jc6PŒΌEJ$H$H8}ܛL H;:Z^)A0KnA$~a@%A;89 p +& ':q?Dd\ʨ)Af$g%H'N N/ARяq3A2NPb>9 p +& ':q?Dd\ʨ)Af$g%ܫݷ < W{w} 5}xKj\%ge%&yg}ys%LANt>ȸQSՇ`WѷͿo@GIxN ^" \b2ꔘ }$/w?$.t(1 %&ȿ;~>KgFzHJ6g7Úsx@g6ftLM )Ot@G~ɸ qwCI(1AEYD^ƜyFD{& |qÔhc0;ΑHJ%&bT=|g/ϟc׏߱Od4kCI(1AEY`' +xw*eU[C~r C rD"ON.ANt@bN,q|J|!qJ'Y~ǣNIdAԗ &AJN}De;I C rD"ON.ANt@bN,q|J|!qJ'Y~ǣNIdAԗ &AJnpVۻβwyo>z O.G2823ܩ/A.Դ#"1/x<>*xZO8W }9HJ$e8J 5%yrvr rsd 8%P p@]•rppqsK>Fck19Dp69PwK$r(߹HJtdnZ|W_omn0 d 8%P P?t;uHJ$ rK#W{rw{|"_VcoOrsB pD"ON.ANt@bN,q|J|!qJ'Y~ǣNIdAo2lx_\`0&mc/R{J4& C rD"ON.ANt@bN,q|J|!qJ'N.]){jVn=opu\>W7m33BJN}De}26ƉVѥ2׸MBZySE 1_HŇ140HOzK/8qkUG\`re ȅKR}\D"Y"1O c%A"JI(|2t%H̓%.",Ș'ep c%$c>:Hd$ z28o="D>2ы/l?> iT\`re ȅKR}\D"Y"1O c%A"Jb3(pu&橕__mCmȹY YJ )1ŃY?RQY^0penP箑iJ{PRE$% 2V$r$ 2x'C\|ҞTEbi).˘  DD"cAJDPd K'K$2x2~thpʟ +E;ҋT00KL.9pi^ʡH$K$2Id$HXI@0 e'.AfqTT[fہYYb~"G >^m8֘=9zvB+o D"cAJD1XyU[O@|"¹AN4Υ/AYq)Iy]tByr(,||LʘO._\x< KGD]y<)O4Υ/AYq)Iy]tByr(,||LʘO._\x< KGD{5H7|ӓn m U߰ȡg;ǥ'w ɥD P red'LFްC|_sߐ]]i08Abq( w8O'剎iʰ> _F~,Z{!]*X4Nyrv9.X?)N(O.%e/IɅK /p- .PWʻ=K#ʿQI_kؓ\4)7wX;g;ǥ'w ɥD P reӥ='Yy v o|xсm']a"cj2͡sKq>7o.H8%2Nk&/28%9*Np$rK/p\ p;PHՓGD~eZ¯6PSC@,#H8%2Nk&/28%9*Np$.\nn J|6ÿet?;"e c% r95KWCoǏmx<>"K P/hHH䨔':q/A~½sa'LAԗC  1\;ۯ+ߞO>XZl>Yۓ\I%׬5Q.#H8%2Nk&/28%9*Np$rK/p\ p;PNeo?_݆I~< 6ӋKU6005H$*H$2NGeǚIyዦ dDJydy#|󅤿kx7<Lǘ)1/ )+IpǒtW0~+b ޤC^fja)/Ԕ,Q)Ot#1W[wOxQ C S\`ra r 2V&ep|Aq%H%!$p$坳Aɉ&;p$8P$) \X\Id$ag&epwG$r |CHd<9;IysWw\[䟈*YE c3BܘAw? OK2);̤ D.A"/q > 'gto)=zDU왏ߘER^t # IJw? OK2)i9pp1EiܤʓAw>+'' '?(1A8 +/MI?\.s@?0B3&֟ ceR+wؙI9\D._|(A@".A.[/6qYFxIC S\`ra r 2V&ep|Aq%H%!$rrGs7m?#q_bTƶ)p d(Ab~ +KYL.?A.Aʤ 2V328,pQ\Ȼ}Y<3}Yc 6~b.}2VNN4ANaI0x ^W{u!z]? b" ceR+DV) jvQ~ډP9)w>lΓ:IS@H\D"g%ȉΨ\B2{䛇N1ő,H;KdDd(ǜ;g`rr6IyAd) H$."3DgT.D^\ ~f=_CHH$ ߳~.? h7M3HO, 0)LN<)/h8E${F^}K a34%ܽײ*BdOJD"=#/A@NtF>H%j%/Yy8$]ׅ*n}+x/r]>'28&'gs4OIJD"=#/A@NtF>H‚@f 5wj>p翲&MDLGC<99O '$%NA"Ap䞑 ':ry냸. +|#yMt n޵0s#Y" w 82,lު~#E-m!E${F^ +/[ <+;j?˯ IT/P |$KrD;D┯qHpL_H;"_ e$,\gɑ8~5s1%*A@q8/DsW.ȓ'H5 Kw~Q$ :cҽMۭ gct l??J{D\Q$*˗tARF^ltΥ_D"OֱԼdO} uB]݊k s0 :cK,9ԗf&՜W8Ϗy\.A;n1oy܅f}ltΥ_D"OND"q8$8&/q$+>JLbzp]G'43tg V@bB|IJ$ee>K'/\K$I$y!xwaH"}_}ndlF~ng^\+sP$*˗tARF^ltΥ_D"OND+U..Rџ +C2B'M;J9˓urTw.H$56#4N}<_d(LY|yү\"'g' IJirn'i'uʗ\)ANwG.A@ H$HgbrRJ%I(A@"/A0J9JEJLF3/|,]F%CJ:K$e% ,$rD~gbJKLR%."#//%.1yt~QLWMې۸gޡ.7?5x<>IJ_Yg6x~WIy DD~&&'5ˡ\"$Cj"P%&8r#q݉m7>OE?WO a2/R)\ )#/AHf9 K$k3 /9ܸ|^xUI0_LaOԶD8LEJLF3/|,]NWdpf}W_-~%st x<>>>a<$ D~&&'5ˡ\"$CˡKKL`]kO7v$^/>;&l:ȼ=3_V:X k: _D.%yD"K$%ed$ H ,pv&,KϏ?;3 M4 4A09)A@@2NG\F.GD I(~|(1A\J$r4 #-A߈ozu]mtK&4MLNjJwtQ)A[a'>)R|q㶐 w0 +%L8G䤦yGG8$r$8&  |(1A\u6O6 mH$党 4A09)A@@2NG\F.GD ˈI(Ù_pKe.=lЭ7onff' H:Iy>MLNjJwtQ)A"Q)aV% y_oOSӾ\)"K$%Ѱ،CW4Pe3aYeJ  c?xlxW|~_m/)O~%ȸ'E. |O@@@^y$xcȉȅP8 $K)A"/ĽC 2.CK$%&d8D^ X#7P7b.av?%!j.A@;QYi: qI}7j8Nt@.,$xpLi00G?{RH6!PKyPI 7%!j.A@;Q)-\wXvܲ|r=t0$BOc=6B<Ԉ4ٯqH8SD^")1{ 2aRPKƅU𥉉^V/r|+q!l$"Z  5 㝇Ȩ,48];D@Nt@.,$xXs}K u풹vp_ 3`^Pr(}DZ:L' /qPs ? .%i0y&Hx2*XyۭM6s幹xF?'O{3%&'u H$&wv$> ~RGXH)\יt(G"K;/5K/\Kyҡ|TJ //ٙI:K$;;t +KY?#AtL$PL.Lp:#H%ȝ%H˗\U.Aƥ ~RGXH)\יt(u+A%;~$xKv0>???xp_>x4 CgJL0'O,A@HL)H.yg}ӱ2 CS@*CXp ܯՕ2Q?Յx/01)n)qH%ȸ'*1:G9(),:h.l!vri/Aԑ q:V&d(q +&u&8H$~$,oW]/]Ϗ(fW) Ob6e kDbrgNAr;'u$HJɅ{ rKʰ낣CD.A@,AG. Ðv op$6vk5lOnfa.I92 ~Rg DbrgNAr;'u$HJɅ{_ǪXmXvK{TeuM#7fd^ʦ٬Aƥ

*%0h=Ku;`{^ŭ|I ce"A`rҲ70o[[xvu+%Y?~tȡ)h 8K w8K:%ȉ&q)Cs(sXH$e||}P" k&g ':HPLN4Ar%tq; NǥDD9_9rL$2 >~Td(c~eQM[> Ż'{e"&bM 9 t\J)ANt0KC5#Gђ@?_{_p?c="*~ȯAPRlJɉ&P1V{uxф>V a%eOM 9 t\J)ANt0KCyb5tN9p~  ƀ+ۜq7t~fl`x~}Im"{LM9L9 t\J)ANt0 x32Fҟ~g kqI9.Y~r? r3VNAHL$B{"`rCeK wOʡJ8%擨5I{r,O?uK9+' H$NAr&yRG`r=wA0ӡ2Nǥ M;'Pn>䁓Tx)xw= x HLqɽD'8^ʉX9A^A"q +3Aȓ: +˨o= ~G;*t\Є!5Nh +{?~_ɇxIJK& w/R\'Nx)':cye,+{- i..1BCuw5lwZm+M;'P%HpITMY IG7…kr脑@'8^ʉX9A^A"q +3Aȓ: DIXP[۷oWeB\&6ys}e-{!mHeBi=_r9t:Ot㥜茕ep$ 9 + (5ba5 Ce"`rCepc04<7%(M Vo<)]'a&.#/R\'Nx)':cy)HV-IoW%\&-3Y?)r(A@㔘'ƀV|<E:މ~m$۩㥜茕ep$Xvx Lv$s^-Օ.ONL]B 2.%y)HqMv2)wK$rT.2NKR"dL+':P~'Gr&P.$˸{&;e;%9*CǥS)A@p 2V&gleLA@@rI0*^ țdŌL-t/2^b2t@N&8%rN}DPV : DBIЙK29sL$&'g3C'ǒ?g1dw-_/`:&EL4aʡi)"/`rrv CMcjE>IK^o= 3˙y bR': d' ~D"Gr(t*%."A2 +K7VQOLaC>'ؐPڎKu^ +eܽd|LpJ2au,%?e H29sL$4=zQt=ϏqK Yvr/edA`C d\JR,%&CdS"ԗH,c-r >\y~j[s/X3'p3\0 Q鬒2ɿ"Fx>ɽo>t@N&8%rHXyiUzod ^FnF?!g$&މeKKL:wə8gy: qq%': q>yrDD)HdA"A kNޱ&މeKKL:wə8gy: qq%': q>yrDD)HdA"Aiu{'rWt0*]ހ Հ_s!1yID 0q)dsXqC ]By傥rKt;K$ K$aǏ{D?RW+b}帅AqD2NǥĥSYKu&cHd.,=iWEݾ^7eӗ+'cNS@.9yļLuti[ˡtƹ+bH+3#q:t(AK(Ot@}$މ%ĺ /jjo^Wx<><=mHf锖qrT RbX.2938,O$. ft`%m9^:'yrDD)H$ J{gr=~~}Ͽ &9;)(Nʘ˱.QY^8yye_fPep7j7mዸwxaぷ!o>xW532/80;O.k9wb}rwRQL,,:H;l(%关w}cмQľc_7>Nrq~Y/{/8 /cNƥ r(? rGމ ,haa-/n>tr9/D9Ѽy9CC8;5ä̎xcgH~5r_u]}7a^ wANXp eIXykXFhZX[ _pp ?f𒑰n65J 'CygɅ}M; 'NO@Nt@Nk2ur&93q y9V%* g3/ cTÓ) x|<1/_L4M&R,cNƥ r(? rGމ ȉ.ZӪZ^;&&\r z¶1G V#r(2N28&q)Qq@x<>_Y٦1 MX; 'NO@Nt@p4<fVyx<>'~]pzG"1Υ(ȅ7/tN//%8P _㜡 rIp帔I\\$;C>ɸt.GA.|ysȗ w)x)A %&%Hp;gND.ǥgNw.}wii{'C|Zr%}>bޡDH,ŔK K~(kqg|}җ1'q;?Opqb ^hj0 |,ʼn>ɸt.GA.|ysȗ w)x)J69AwB3R3gL|$.~ .sÐ06+O} > xBUoXeK;``箮nd(aɼ~lw P%K:$ >r Sƥ/$83Yr$2N{NHu KL0O$w P%K:$ >r Sƥ/$83Yr$2N{NHʡtҳ,7#=f0ˡD"\'g?/q)f+'H+Ct>VHA'Ï*A@#9s%A"1 #O@?+0<0HiM!r OᏀ PCr(C9*q &omB_!;x~A/@M[k5S")ehD.A0l鼔.j-~(A^!9Hd8ep2.eܛV@8J^y B^$)Q%Ȩ 9ΒȆ͍ct~!tk}<IJ,\,,/G@@r(A^!9Hd8ep2VZi`6kִ'/f.>ٵaL֔MsHu Kcp}E|<~Baʲq 8e\J4+o?v5JMo GY?$@/1D^yfPF.1ΉwA@ Db2 +IpLȗCyl~) K\ʓ#g;KL|A@#jy9KLƽs}$g<:%;:*J<3P^8?#Ap +H)nu~ #xb'`^μ1izWZ~PF.1ΉwA@ Db2 =mM咰ĥoA9KF g':!al="ZGb\g|"2$=}V6f rGG"/<3r(#{; di@2Jxfx|???~K'M bqNS@"H9'gG~wKq765gx1 _+B@ӑaL'QyGGXI`gF.-˺Y=+Q͕mi +8-Bn}_,eVw +jy9KLƽs}$g<:A`Y,]geo"؟s`gF gt@# /- a ɻJ;e2eD^yfPF.1ΉwA@ Ă PhбɥMJ`t_Ey﫽 *:&.aYp +H)xs+x<>J9Zy{/t;L'xJސnn/q-ŋ 3ArT4#_ITC 5s&&' _;v4)'g'?3ٙ 5%&/١ ӡ/K<8'ce fDtidIpwtLA0Iל&t`jx+&x<>~~ad?A HdP⥀ 9);䮾/M㉝,7;QHsDZHΌ9 򎎖Rb 8&2)1f}bM4ry{RIt`c*/AVWǔma}š aqE\ wfW1r<+Ti6eiX| c LVi.5KHV3O4帔c<9wW˗;>Edܽ+Id D'8Ȩ\w4ɨ#1A.Q)O 8NK\4/X?)Ot@N q%Opw/DAR"YD< 2*qG28 `2HLK$rTKM{7_rǿDޡ`0q.&%Opw/DAR"Yojʲpx i3(w4⷇GD OoHo传l57`ÆNIyrrĥ/ywh}ȸPZKD-a[+?y}2 +-tJK$rTʓ:%NS 'PYrp2y<`<v1wEs7)DbqrLdp$%%H r,ZIo.opqof-hauڍ倾k%Hܽ|ɻC\D˱2A@F΄E^~Ņb ?3NPF^a1v4j'ɣf˅(] 2t`N q%Opw/D)R2V*-uh2xCYu,rMK$rTʓ:%NG>w_#YxvtG: ce" bHR _pȭf}p?%:p?Ip| C NkNB r$.ehpHK:T^85_ +8C'p8Bμ;O>;sd(_špPbǚP3K q;y&Gd͗2 npv~.寅w`>Tb;/L' +5kp+d(_špPbǚP354a]qWxjf`-?9HDv!}d +Ϗ?{Ojj+b6s91G kN3'A%_ +' %9aAmuJlK_˸hmAxA̽YNU"ˢXɱ':Կ$Hg0$; 4d7?'wvD(evaa0cI(AN֙ĥ M8 sO~uEZxw2n6@`b~ٙ C/>jC Kkbe[أ/q+wϵ |"xVC'CǯcӺ'<_*}fYy;|!iᄡ5'~4+^r_Ϗ'ͅl.PI|]~NʋHL:Hq)>I\@09)AbN@0y1O$& ?8Kc'\N}c%$1˯ɓXy XgIy9.G"1Ky&'5%H &/q4tgqw섋 M=7zq&x8dm +PHq)>I\@09)A%L{gӜ'+cF ##臄wir%]Ntꁊ<?K'+L '&NʋHL:Hq)>̫1qXV8.שi[ miUA4A1w/LAWR^U"[%&%N}c%$a iB+]etn?'.q.]i.](1Ly5ĥWoK7,1ycrA$H:溸/ +/oVJyG$.C ~I#i?+=x|`3$+l5}>k +Fr4Ѽ@e}:Hd''f :a5$4=X~><ؽ˫շ^N|XU+ Dץ/cMÓF~ZjU6G͟"8"^p͈64wL,K||y)x)H$1Sw}-CpNXరF*𮈫#Rg2r9.%tȘON֜ O/ð#AL M-=9jr PߗVrd$%&1C }p${Pv LɺzXrQ@VÚ5Eq)D|rdļGnҬM"VCg/ᷕ#GdI؟S|s7H{q~KۉLfh&,;&ĝit|ofÕy%|>D&KfLN&"tppKin/vUһw$GcyW X<ڏyi;I OǑ&a^\x(r};#!^6ii,xNd&qwF[F,l"BX梛32tH4Hb"f]gsva fYrڍkh.& 4EϹ"ډ$hшMDh\tq"u^ii@,Xd߬Kl;̠A,$c > x'ս:͍߿?z_6aF,l"BX梛EoX"-3뷳Rᳮy::}|7￰$̲ȾYt5[_ywOv.@xr˾O#y|u;4(0#m.Yl"o}rۀ&y3q#$rGN5G ethwG Z΁mz;vE_tO_H/}>}rWw;M; <2=q34He9h7tܒ:/Cf qf2g̞~;YY|Ivh fD;LDYFT&](KDM3옑6ci&>yo_@_Fyv].)LM0[/WXaߌt9+KA/Ɏm7 f_ͦg'U¯u vXGlz^//w)ϗϝy4=1Ph':+KAK?wʎ͸#pArCԯk};D\ %~"A"qf1uF?_6˒# eYrRDH-"yfYrMfX0rQh&D%~"A"qf1uF?_6˒# eYrRDH-"yfY2C"3&bh3tl,Iޫ۾O~%o1.iZo7|~ <,x|'4|i,i< +@n[; K Ω~һ~?*r"w6?haYrM"~.n{,xIU7 INkSDSO.<>bN yoAM _^{YG)d\]A ʲ¥dIny'y:!g#r]yh{د%Pt +š9) /I#On΅#r3fY7?sVvpst7ټ<wDMg?DD:> 4/ҽk^VyMu^/6 SDG  qLiq?mͲDf.1vDx4/Xq$/\@LO7 q6Ї9aɽv a _bF,K1< +(?FyfMOM^J2 KxZ YYiqЕe4wҙ4>^dFh,4h'2E& 4x$49kYV"4;Ki6C0+iY YYiqЕe4wҙ4>^dFh,4h'2E& 4x$Ieu_ B#ix;~R^^?[8B@O{("CG/,;qwG$Džz<(fxOA/ Mbt|>>t <[r|D^ڳ9S=r$tVfhhDD&"teiIFb]О5]>ջ˞5=Wnx|B#̆ƫޫCX#ʎg$<;S5$̲2ˏc~[b9Z rswrohÎrqh-dK._b2#41ĒDLN3 Ϧprsq1<8/g˫;a>zjuhLDfNsG&'܌sSn ]s J<O +RR8\P7i9%InƸI/rO;{r==YtIp9w;]YfNs'm$ܼpqc۝í_r6"Qy@<>^#@ R$L?׫Փe7ؗt;oxpX^;P-=Gc;L_2# G._ OgmAF%СI4lfehnD;YZgىuw @f4Ҭ.3c#u41.,@D&G\N0C&aҘY-ʒDgY"jYֲe'"fMo"$LDxW2lΌُ,Daɯ}=_c:X!s݈v,,Co`醙>n{qg#Ư_+bӯ%/[=hW@u@Mk;D9O?mpK4#n'KkTcqXatfIZ%_ܰ+ŭ5ϮȻD^^ȝN԰Ĝtfř}Dhay׼n7&$LY4"LQ˴ItF:,#mE. L &̌ Li$Id9#h34ynL6I4"K,iD$2,5iKtfYFڌً\dzKff&SM`M4DDLL|sbA7ѯǩGo'cYĬЯaC$|$&>f"9zn@^VkP{i3^2^8M)ח@xI +DY"j.&GɏˏrvcnIDnet+OlyRVEe8ǡ'ݳ  Cl0iDfY"|Oss nv]^-9Woef"tgYF +z|x˽sc>_K| T=ɁT0GZ8E&98h7&L?~Y^eySu`{_t`[%w %.krLڑ`"B#HtK12f"2;8 qN$vwOnI£iY#NL6p9܎w-BC~x;'҄}3tͥt& sʎ: 3ҙSvLayDfY"bif,ىXdD|r.aza34KIw' 34ҌtghZ A|ĥ$LMf>=g*fheyf?ikL'v,?>?{| A^}4ޘ8r:6pD,KD,MM?̫WmDZ[{=Lpw"mV +#ɉAt&:Ye,w7\@0DiYY$2rQD0It\ҹ\쌴ȼݘ)$At&:Ye,w7\@0DiYY$2rQD0It\Q c><ÌQ91&L24 cZ|9Cyx?ik +| -o:rgij"ٕ-v|O$f[V&g.IgRzq{pfmܽSbk86 '#97s,ral=Ï8\ z'8&sw2?gy;^M 2/P!.G\^t?;z<^&^^2^8}E; +yqy5U)27Df~(+g,s$4y9gS' ]Bϻ66 BljcO8\@0_[A~9L7ɌK??·BD:Dg3ҙ%L\jr-Ji!GpD9]>?;#qXNf8hg/13?OnrpSn;+dntYg +&wId"*͏/n^w>ki/a٘r&f+#bܜv"4"ҝGribnrNY\1r9n'2I6iܙ4Ј'\!4w.˘AS3ssvAģ;x҈HwF ɥ+9gGri5 $ueF>YǛ,H4qLƻOwd΃GgKKHjD1XO^O-P&oOl ?pctyqkrIG%Z'z0C㰱JN"vʗyʡronty𳼜݀^㦺aݎ'W_]; |/!Ǐ) c4"ҦK%nBr:.R\:&LԎFrp8V"ڮ}Uh|Cs^5j!mXn9氳mǫ̋[&1s~ƹ  3th&'3~"WD>e'bN].Be'bN].B ,\di3I$\v𖮷r;\^]?1r|(1QaէV| ::v2}/M|}v~b8v|et9?@x0EC1c:~LRg8ЎO~/7q(hivpko>YsM˫F}=^P^\^b~ub˳/[8K;+K*_+|hXNM7rˡ_ +mҗ5};&W2srj9g|Œ/Ltӧy8̡ rQ/ӑir9xe%|g]og!-Alvvz9 K2M2Km6/|yeG^?lL} !\1__""o$2+Ks^7A~z'mM9H^j,Actp:i8zq_啯B[g#nǛj~z-m^f9'c:?ct QYf"Hg';Sv2';xb^Qߕ+$L5wsx@ ecaIX2cNywD e&yf3e'sÌ']I¤Qs'='K  Y]6I4wBM>_ǡ|\$a"$2.˿ShD m?;Y +DoǛLDڼbNmH^z,ۿWiy9z۞q0vehsFl#Dp9=\IDl_o~q\j.l"b4u);&"ҙ̘!H$De,C%41;;<<Df;1̥8^jCO1Μ Hd'\ A @&a~PX&,ܝe,qޡѦz^;`C0o!Gܶ/Njz~1fhmEݶ/dď?W_}=_mk4='1'\9u#*K34),'ehDHg0쇦q"fLGrE6;I$26 Ac`dĜfrQԝFX>,4lfֲ\T#I<ƙ1wڙۣ7IWɶm۶m۶m۶m۶| Y3mYŒI1,$qn&2E& 3f/r2Im"D@kȒDg=Z6h':I&I$a2%sG3y"BK0c6YI<LdޕLf^e0?Dy&yr%:/"%7 s޶m۶m۶m۶m=> OYd1wzt@ 63&βDLvh6%2HIbЈ鼃MDf$aehDdq9#=g-KKqf1AL睻]3DMD猴I,ͩ;,EL"sX&"4b:`mEc ?-Z^K;x{~gq竷m۶m۶m۶mr%b_|pYADdFei0٣}rXd3sYOYYvx2 Fdyr,Hμ+eel2I=ىɌ$a"G"fdmi,5 $d"*K3f&<zr& z՗m۶m۶m۶m۶ws/?o3ET9fYٟШ@xKAMX͏o:#.E%Ad,aF i,#݉@p7hL64웈G\L6dFug#P] +hMDbn~|$Сq),&KdS ߾}H$m۶m۶m۶m۶ϯ_|2NtY41)KYaYYvxu*NdH5iYzQŒI"1$: =uGD@#"m"hIJ\KCODue''\|n\D].Ys6Ie%H$2i=w޽Ͼk?-k>m۶m۶m۶m۶nǿ?|WO>ts8 ]6lp f>siQSwhrN.eyre8isN&LDcF:QYMDhf3ЈD.E6MD^i3f4tu( ͌; 4Fd9' fͲk2Ҧ7=4y'}w?0m۶m۶m۶m۶߉/۷?_mqH<DYe0ҌA<+tVX"/i }1A@ I"ƔMknξSwh&b h"eI#F¬K3jbDYYӲc8ȦIyG\Aozꫯ_~m۶m۶m۶m{pv< ~iW[:up^g 3&bM1eǤ].IŒ$L0#m>RfY'\ qW/jD"tey̲D ̉YflgT1l"fMĢbʎI#\"i%:I,aF|ĥͲO^Ԉ.E7@o ߿?}yyom۶m۶m۶m۶܋믿ly'mip&%ltP1 Wc \j"ΔK眺$$LiƲ,+LgdeY&,Z.겱x@0,9`3t3pOKR1w\:ԝ'&aҨdNsg6ϻ-?/a۶m۶m۶m۶mz\ݻwN8]㼍%D:ģ.B,9'I#,˲fh̦K8UssvdgDfef'Ns&a%"4"ҙe YYf%"ҙ$Јpb9$LaY56C`6] +ę}o #;D,/?\-;zzDo۶m۶m۶m۶m믿O~eW 'm3W` 3f)W0I6Ӳ,#$zD' 4 4s,˚Kzas& XK.KL0AZW` 3f)W0I6Ӳ,#$zD' 4 4s,˚Kzas&{O>{Im۶m۶m۶m۶v?;W㌍A8sHw"v٤&aA[D He&Kyf$Lα_D 1QI̹8 Ј'\qW/j,ND.4$4h 0 d9#b6$94Q.~|n޶m۶m۶m۶m8 TrMryguj.& $ѹX6"bN&lDeei0$2IY6i s }W.,Ke[ M¤A[0e2m0>OesY.r@ d.l"~;LDYV& A"Ĝeix w_mn۶m۶m۶m۶m?o߾uj˜E63i,>0}ҙ4HgF%d"tS7h}sNbβD ItN& & 3t蘍%,I4ЈŲXd3~3 3 ItfhDY"*Nf BG1u&aG<$,KDy_z@m۶m۶m۶m۶ޜq_~O?'mqsL3i5/H0Ig7+K3ҙ1;zsYN"dDfh,yDLvHd~!"mV$LuY + ҙ4~I$̳웕̘ =ٹ|Qv,d'IcI»o޼wvoIZn۶m۶m۶m۶mqZꫯigu54Y⮻ݜ\A"34"ҙe@Z$aե(H-W23m"6Ie6?R."43wFt98@u+ HdFD:, WYY$̺\{}~2ɛm۶m۶m۶mp*v]חZ?_mNfsFԲ|B($2#mF 3b6i0\geyf?tY"$LȬ,3fHg.l^d$aNC#f "DeĜ,q< +34H424Aeh~$YfY] yvM۷Y^m۶m۶m۶m۶n竿>ݻwo޼q'gr̜1C3e9 +ND̾Whά.g  #m2c I$Y2MKD';$:ciDQWhQ]\ݜzD'"f+4HgV3e@dhБ61AFՋf;[:M~+'ٶm۶m۶m۶mn?Ŝϝ9d"'y$a0CFe軖4CȤ~cZ6S6;i6C#Q]6h@,l%Zv,#m"-3cN&LW$2I$Lf ҙ$2+KI QZ. M"Ƣi2sLA (KDu٠=Y4*;]|w}ȶm۶m۶m۶m? r޼y "DLv&i:&Ĝ$GK|n%b0C/Itf,gdet٨ A0cKfhDy2';4';g4$L34J|mK qm۶m۶m۶m۶*竝qZW=_dN8SYf D̎,xȬ,3kYlf9sُ: #;&Ov"ĜY);&DgeID\3c6YfV fe&@2盉2e|fs>:HЋ9;̼߄yoGq;m۶m۶m۶m۶̌S4{#zLYDG\D&]tH$E63';$a2Xdiee9B&  Dee$a%Kd"5AM,K"#.v"A\:gM"Kd0@,l4˲\ng矛ȶm۶m۶m۶m۟|7|g9_]9c.lFzNbnj 3tYFLE3Nd圑62fGvΓw;Y% A"3ҝ4\,36IdXد.Zӓj^gvٌf #g%"ҝ3*9#me̎' v",EFg~O!q.۶m۶m۶m۶m~IW%9I3&);&LD3C#"@ @ܕ2C>;!:4,+LKdD&aFhDۜ99˾vcX&I#n%N6IdN1Id""L`\:yСeYYf"X"D'"4 31ol/z_Nm۶m۶m۶m۶s5?/y;9 H/M9uG dg;cFD efY"#;g:̻zQ@Բ$;HБ6I#Sv26,9eD|&机#SvLb3͝XN1#m"2,Б\D@@O睳y71oh8_d}7?joy'ܶm۶m۶m۶mrpqYv~8C"ީ zC"QYf`vdgSvrihDeywȬ.7n +f ef2ҝg?Ge'%vHy}iqf?4̳y^d34DfLDeIّeN1w7˥I"l,{Bx7ZNV?[ςn۶m۶m۶m۶mW/?Cy'vLzp.WcV1-;Y'3B/l"hшE63C#Hd\3(KwR3& \:'̘}+d34wҙNd'$2e".0p);fu)Ӳy2#&FXd334Dfe:,qW.5C/l0ϼw̼{>NVv۶m۶m۶m۶m*h̹yq.4CeY"DD:%2l6FXF:,=R҈34he1uG0C#B#H̹E˒3KhfDe1˲,DY""n6He#,#YўQsC`ię}]x͛7=Y8Ye۶m۶m۶m۶myyyr '|Aw%"4brKt01n>\9̲D bve3БΌX"t"Kde]f`O6/jHciDME& tfY"B#̬.gD' #˕,K"fW63̘%bN'w-}7OάWo۶m۶m۶m۶i}7wE= $&; eIXƔLgȤA$Y9˄>QYQ] +N'K]H B%,Ө옱4bNα_4jٱЈeYoL$щqLMe8#޲pڻXęjĶm۶m۶m۶m 1vNYONHgFڤQ1C Kd"HtD d%l?겉D0eY]6D<2/=wX""m褁FLv a""iFe ;3, I"Y&bCAfeӒYk.gi/14wډ$2CWs\.]64y'澎I 6C?rM&oVnw?믿>Sm۶m۶m۶mW_J|uj\!tY^ّeeu٘YYIcf&,n7lG^s^A;IbN,hĜ#2 fhB #;,1e3ƔLDYnL41f +mzޥ߾}k:Ym:Ym[9s޶m۶m۶m۶msry圏3?B6h7eyB?K;K@ܕ2dDd$Lf&a-YYh'N"&FAЈ,MC63CG;Ɍ a^v]w(#](sN&9IdNv,IdFhٲe6e_mO&Bo۶m۶m۶m۶mf d'ҝ4f h(4Dp8/t&Y̝tԝF,X6-It'3!*Ls0Ig2Df9uGNh34\QYf"8GЈHɌHwF:AŒ,KN:s㭉+֓՟g@^דb۶m۶m۶m۶m^?~,i6D& 4Ј$LDfhęE7a@Tg˾eM &ĜSv:CW2 ad ItfhD;d3423t3Aڌ$LKdք;UOVu{}z۶m۶m۶m۶/iO{!D@S'Wpz[ܶm۶m۶m۶md:׿NY:#2<;wQɤ1$a"4*;wQs qgO6ϓY]#lL@ *̘e;ϺΜ4 34&iRTg4*;4&$LFe'.!j.ә4\yvT9Y-ķ~?dxsCl۶m۶m۶m۶m9?×_~)pȹ Nѥ@<+'\m^C% 3uA|$W#rd,1;3'L'Wpd,SwDf1{O"q̲D 4.\bN"e&32t웡E79:n6ГHyW/dXtS I,K4wfӥ@ $2cv]Y';L&%vH@.С{1ۑ3Ղw?Ml۶m۶m۶m۶muT?l(>2C#κ`6i<\K@T&LbZvl,.f3Ye,I4MFeǬ.b:Lّ̻\@p7"I SvЈ7ehO,R I".&$挜6q'/}Vdz۶m۶m۶m۶m_/_N +9;$,BT)-~BhDY.FefY]$YYf(;Dhsa5II42&ٵlfYYv"L,34rgB#r175.32thDf&2FA B0cL5ގ~?믿ο oٮmm.۶m۶m۶m8s^>vS]UUUUUUUojkllPfM3c=NO6Q3֏v$̝en2c" &u8wR GÑ㒄9G3W>,3t36I$Lֈ krqzY ~F$a/ss1-„T;~̏Ull?lUUUUUUUUed#dYYiK$p4G9u7:X{{341G陱6$LbGI$2C##bO"M&u0IGsFN8s3fwɣqz:H_DʽD昣XG&p4?v^Q}v~[5eUUUUUUUU]=>>~UX|R # ˥L1rI"鄉tfh\ +KDMCG G&H1LHEЈi 4&ҙL#1r4Ic=x<]\<c&D& Ј$X3C>rL6cZSM ~1ǏM_XUUUUUUUUcYW>|;rPBX4D  9 skwM":CGD X$a0cZG7]i:4b8FĴ]fi3' A"sqb@7.c:sh"$̑cfnz5L i`"aLvWo;TUUUUUUUUr>O4'>VB Ku|<Df3"4A `CpD0AzqiDX'5C69 @ CD # 33IdޙD&bhƮCGEs5$2#yfhG +}cĚAϟ?:VUUUUUUUU˶ ʦY"͢i%L7$a2Ǭ*7L<'03͘`bY\&3^~& D\D ؅kX; vR xWs/;.@fb\t& X?fmWnV `9OŻw|*~MUUUUUUUUJ3A#L˄`MdMDF HgL̑@0`8ެf&`iAsId8"WoVnXL M9fr\&LhDh&h&"4b8F:sN&Hg"Lܘq0?^Z|͟B}͟K說qr+#21]dG*73# ~A "m^! :vtU"ar:4 Df1v#b@ DFı׉@ F"s8"V9IdLs| i*!Vn"CgS=yf6^l]_aQX.VOCfh&5Y#G3{jn:M jbg.`"r kz8С9 +&Fn1G\ }&aQ#Gs?8cn&v31rcD V9 +pBuXSb3Ǐ?rzrr1j',p\ea5h_{ MD\Lcwc&"q;$9rdbAfZo7$vG pDǵ2u""mӉu9 +̣~24 qU2cwe#uLYiM_aM}sscST6ꪪZW.ue=z&*DDX' s+:ҙμ*$8:>HL3qȍ@D:suaw8CDZ;gHg"H;.N.MLu0PH#?̕?"CT37oTqdS}UUUUUUUUUcVF_~} '+)v;Ͼ5&Ϝo߬l.ͱ5b8"8k3Gq֏y˕;L#k\HgƮI@ #ሸC1*7O Un̑c& s57"bgw5b8"8k3Gq֏y˕w̕K8?+Lkjs|1~TtS]UUUUUUUUNAy {v˼C$f8-$2w\"HC*fhc=jޑ@9 +O@ Gs!s丛ለ:#=5B#Vs$1 9 =vǕHqZ HdD0C5b{+34 jz8Q55ijv }˚&\. 씬46QTTY^nqpDM&`3&b>~5?-iCeZ^^k6`gGprL8Z&L"ҙc4yaa6I\\D\2C#"@ +7:^Gd sh& 3#b8F\ s&k_7cm2xa;3 `G[W8QNSEq>/MUUUUUUUUU,읾}* .Ďr?.2cpD쎑DܬrOЫܘLxdmᒄAgkO:Lwѫ\͍@Ȍ bgԈP& q$LvkHgGr쎑VANvڍM jlގz~ݝu~7 êEM>D} Xƌ 'Gh"K&b&"ҙ#7$a"$<va,} G2qoO`g.'Fn$2wv9fƮC3A:sf&&btKWͣ? 4"/M$L60Jh{ +? +7~沭EfUUUUUUUUտe ,I* k4=34 4D& q{s8r t蘞 @DڼCz㹣Vghhɷ9 Lc#U&bl& 3 >H $L@ VnHϼCW1CFFD:34 4D&bmq{s87th&V Ȃz]_I}-}+;j8\6x?';()3ll,pc6՞qObsGuqrc"VnHD9$5hp բEMuwww~-~ċpc!*7ljmRjQ[_[6Z_k|m~ڑ*--3\|>r8"f2&bc$K9r\瘣@p*7@4b&=3F+ yAW9/o[ooo o DZ ‚ڼ\.4"֮3Mey5,̈́͛.f"Br:Ƒ:Icwdn*7#k_0Iq8m[zGF{쫽.ekOD~n13G|nW&$vw2 mGL&q80eb&"hn::(4մ >i1Cp?]./%k+[P.Z6oVv+3C#&ʣWZuU9f218&a7ϳBѲka1ܟ6Y_HNҖ _bv{{kݦUPE > UfH{sx̑չrDhI;s)1.gu=/{ ]UUUUUUUUge5e6iۿb='Gyu$2wM1-Ēu5u%]^5pm!~afy6F)Ƨ7`#bs$aG&< <] t4C{nj9F4//(YMs~4>򲬦MUUUUUUUUUqvY\w}~DYZhAY/'Hg܄&r"'ʣ$2z\6sL#O'S-մGx2c߀,߶fl%vIl Iv65}+7y̰&O)jO2hvxiFkrz `VUUUUUUUU Xvـ L,QS\E0Ic&q<"Vnb&bGzu0`"bj&^Xyq6M#O,-HmJLO*;ٸw}b;\w8zT$̘Nd\>?#n|"Ĭ3,BW03kx?Apq^/=TUUUUUUUUJ6;~:a"HqDDzL\"HLr+71=e'6OkXӶ&j1|ѼCއGsGUnL"O`57>3N>ZayrOOtc}&.5Mfh&.}|>=.UUUUUUUUUU#|ь*–=b57?dD>DD:y+cw$73chʳ𭁗/_:>>>z9_ЬF/ucq̕kGWoxޤMv=ũ%ij*Ȗu829z80CGz&D0#"\7krag61y~%ȩt\~wӗ/_."hEĮUyȌi db LIs8&**"oWqھ`VUUUUUUUUURFH5VxlYCq8is冄i̱w&a*eG34~xr~U#߿~=źƖux97"vr` Uy(sh"L\9 +N.3#t&bU>ߟ6^zU-g28M\A\51DŽiDfM&88}Txz=ɞׯ_}^|U]~/_#/_tojnHd09cgLD?pC;.=cf W#_~QUUUUUUUUU˲)~[Q~ZV@.s8֣Frs"s䘉pIDp5HdzJu^ ]UUUUUUUUU ߛW,W-Z3wrk:ܘ$L$2Q3c:a1sL&րׯ_EX"O޾}k{T+kWgf:=ck1fgFڌU.3GL0-SpfE؎ƴ۬"kri# ǣh*7L\G3Y]$LDh<˗/߼y߿o_}zPG֘ޅh_{ޯEЈЈ^ǫs8""m g}_lbXbzLvH$f":ҙ1̱;>'9LW{וBTUUUUUUUUUjMI|"6NUWv;s)$2G=Ks'&:ҙWMfh&14/i)yi~~/Zz(4x:>:7i3thp :&;s8"VY'x>3yиǪ=P{QQ7۷V/vf6L00#m9N 7fb8^̑13>("ҙϪ7_yiemEҜ~1߿VlSUC۵"L 7$2Јn̑c&"thLcMfM :tL3&DpSUUUUUUUUUUǧ/Za:֣F B#Bs.2Iduh1|LhL<+߶~Qϟ?/O7UUUUUUUUUUcXj>~h=j&6cwId zIx u&zh0cZ0AzҰOY[V9/(tUUUUUUUUUߕ-r9ϧ͇lMNmPrA֭3$i q8snLمI"h&3Id"+7xV[A<ׯM7ڬ.UUUUUUUUU^vnY><<ݽ{.[SjT*®u8"笏=:4"4=1q994m+/_z߾} ߿h^ y B#|紹l UUUUUUUUU٪Y_dmAjMݩ%a̕fhva v˵qG$2cqe:8r?}_WL|>_녨?=4&By ̪BE~z{{oJXZ3YceHnL`U3|q"=O,l!_4OㄵshO{~7 ^η>}OUUUUUUUUU/l+GF߽{gYjk-QaȍIb&h:4biD&IdܰLv13fZGl^RSQm%Ê5\@\g s>Ç‹v5^`UUUUUUUUUrkg[8YYnEXgM3C#+7Ј$fGc2գc =rFXY;www6و_,.˩OHq~ps>OoW3Cp6-߼y# Ц0e{]pVyYPXٚEֶ4X1C#Ǚ;4DLБΌYitĒ¾4KQ{T;uqWz6:/ <3&|x{OO;xonn}ͲGEدqLMcfhj9v#dC%aZf^Ծt^O>YڎZzܜŵ<:fW%0/}ɧe {<9vȞO9>ԾpuA=lr=>??۷o|fUUUUUUUUUXawXYWFVsUD3#m9N߬pj+7L69fsn1HgE5y-EͰMYkŲֳe{)/l1LHseqZ~jڊ0=-O7"7l|b#mD%ZFߒ'Z6|z٦"Xwr9s8^{(Ǚ6$f3C#B$IŒt&3Cf@0 ^ۯbw2Y\Kf=퇮o9o m\A7BЗYC?Դմ˷n<98zl=cSg0{&&9G3`];@UUUUUUUUU+6J۷o®N/+k9;:4+7Ј$fu"HdFDs>D& 4"Ҧ'9txEUck~O57ӶF\6d &va"isWx~:zrhyG_Ԣǰ6=N{gӅoI+̛c=j>? >+g]-ݦ9,,DXa:\^ 4 *HA"M&"$a"B0#9cxgڎf1RY,ij}vYbk rF6ڌ˶mf0q9yoDħi3Ƨwin,庚;1S'1 p8r.ЈЈWyq2X+L=h3&lkbRk'L U__G,m-]1ˍFRFp^\柜_6{d|JS5/Ug2Op?hD J-/Wq_UUUUUUUUUݪFqdYgݡMD\R#B#z2@#u3=+xQ̰EdvXŖU^b>JM3Zpo1ӧi_ʥ/=yBx|1ϵߛOe_-bQUUUUUUUUUs.˗/YYaMgbeg}^}`m({DczfhDL'։@0sܛ r {cG{"2H|4w\bα;zw\"B#B9L|:kyWUUUUUUUUտ5|>?l-->0/pq: .2 "417ߕ$a&@ 1ȌIŒI"̑Lϙg_=?_QUUUUUUUUU ?~\~1cVh;pDf"r4C.13498ʽ:7Ñ5"1]^2DjшDrW?`Lg1\ҼCÑ ezO`WľTUUUUUUUUUaQ+kϟ?[͉C'f{ԑpjJY1r4Lr5ЈЈЈHHg217\{ޛna UUUUUUUUUek~uua$f0#N&q.L2u  aFz:4bhG1Gz&kQfiis\=fAg"@#BǺuo)r_|ŋ }垉@z8FH3U׉=r4I1-H# k LCv79sfh01LWy(z810#9c;ϧk߶ m^X961^D0ADFhD ]dq̽q r3h"B^&3v.LLG Hw2X2s8"b 7I?ϧdeǏ~j݋/lNϴ Gse^jđ{bx iD&LO0-Hd"$̱;27u :4n؅Ib&]L\GΝ\f]n7\.oq˝N+O>{իW.NGcH6`+7LzLg>FǵG.׹1ro"Vn$L Xzw0 ̑cf\퉝7~8/_|>UUUUUUUUU՟߾}7o_<.kE{3"7$̣^e869Un̫~P^ͽ@>s1ibf8"V:k#B#Bgooo竫\\.Z[YZuehk aM&"ҙc= 2$2;.d3Mh "8r]$L\7ӉLML Dx3f~ZϾTUUUUUUUUU.ˏ?㣉۷o__uָC H %HGI+7#9cZ Ǒ.c s8F GDM3+7СG3;sX'Lfh&H$D\N~nF =rWWUUUUUUUUv.[뇇/_ee==Ӗo8"W82#Gs>&&i3G3I1d p\4E& \A*eG5Hc& 1jߦ1}צꪪ[ttM~7޽3gem_-߰ rc\azg.fh9IId?x#mQ͑$Hd:th\ƌt&A$asLd"B&9rDx{? [\C+V? ._~m'~7LlpD$LDhDhD#6:X k3GСId0#I"p 9fȍi\&2zLg1\ҼC-6WWUUUUUUUUEtVwww6_lZXY 7X7yT p-;&a2HdfLcN.Mʍis5ro" mNvΕ13v r@DDxmUUUUUUUUUak}ǏM~753 qy{sehD$2IdX' 3&k01Ĵ]0nXcǵ XM"34 34"4L̑c&1cZD$aF:sg.w&}}uƾ70ƧO޿/ig'L#Gs8>ǣM*73#桉L&V.v t&\N# A"340;d1-"m1y}fUUUUUUUUUׅ>Z j3 ԡW>,ss80p =r4c3chЈ#L6c3Iܘk̝ v昉=r4I1-H =C.ՎW?>>󫪪֎&{_~1 E՟5 Drc"M&L&!AŒIb& pD Hdd#7I$a0$Lqf䘉a3b]:oڛ⬬?~΄>y׳i1`"C#B^nc:aXjn&V.C#B$acpDD0hQMvq&b 3wquF:s% D\Nxsw};$6%~:,փLz+7;K7#$$f s8;y$15#z冉pD9 +DL՞db'Cq8i}/ѷfĻl yAk7?6߾}kZYhYs\q~8 aڱޤg1rN&桉qw7$̣^jz^#ҙ$̝\'"&GAŒﳘo޼?ϗ[eUUUUUUUUU杶t:ߟLhm,CcUHD;Ckw0$8vzUPD0&a0qmIܘЈq&xsU>,331-wUȾ:sᄎʬ~ქׯZ 1;C:pLvNDhD>r#:4=$f޹zz#=s57?cHGI+7#HM7j޴? xWUUUUUUUUU_q~ & @MmѦ! Mb&"4&Hsg.&6C8DG $2c=Ыf:a2sL:ҙs>&QgFjs1?{l|Ťꪪ:|>o߮0VоBܘlM#G3t깛1G:sh&X'1v&aiM& :t31v`I$a&I"33nxW]]UUUUUUUUUu.i[=>>U~AȒж$ah"B#Fɣf&Fnбvs$sg.3CGWFfUBF\HX{*fl&yz[|ꪪr]y ߾}7odk=l 6T 3k H#u"8ZCDF BGDD:qa.'<4^FĴ@ͽ}<4ޯncbcӯ_msUUUUUUUUUúﴱJիW/_|ᬬ3# ƙC#HdF\!aFzLΌt&ML'IŒzg.9CDZ3Id"VF&I":I671M:=ey{{:?\u=>>[gk-6?D [d&b'$LĎK"40f<8"14p9(B1tL'f 13pC;.݇LorxjoHj}˗O>ekmU&[kBN4]D`kii#Јӂ5&*rCb&X{DDz&+7G3Idf<#o}5߾}˲ZWUUUUUUUUߒ5ZZ[ Z;bkmz|Ev+2D&" b57k0i kz6Ckc&$rCb$LLyh$aG&{v +G|$7>|`'鲺oϾ:lickmmŵ#[a'Un@̑c&  cw8vGfi341W>$aXgLOcL'L9rq!)lm|( fgڱެnGI1흠g7DLۦZxg"a+xٜ6www?~|V5V֏62tXZtDıgH6Y#Ѽj:jE蕛8(BG:sQܬ Bz &1yfSwZ6߷_euUUUUUUUUU,M g~m֖ţ $Fh"4WssDf3} 8ÑMWy4t>F8"1/iaMM ?SmSmy~rއUUUUUUUUU+'D\.C[OO[3~Imi-9+ý\=w9rɥi@9&L3Chz\&2s\Ne 1f~w=|Ǐ沭v +|>Z?<W7星rҢ*1#Y#s<]1D&+7FĴ<:3ƑL#7x3{TϦ :ϗś-=='v]( isWn"m210zGX*IdqDF&F0^#y쨱~~8ZS[S|6ñ1t7e5xt6-`ңlVͫPs=Y-UUUUUUUUUU9jbJK,&NkODXb5hl\uc&#7C3f &A$a^!` 3G#Ǚ45"iG/Gfv8z"Mദ6QUUUUUUUUU糟\.ŵk۷o߼ycիWf֡VlM3MY/5ʚ$2Xv&34"4$ aD1A0I %^5: +鬩}Bp\N tUUUUUUUUU՟oKNO,3<߿owmq5vXhwMv v$^':v"1I<ʽ.3&@33ʚ:/JԷfdMmG}>^.8fi5זY\g>|0Eݵŵ&;U,Z3L3V$UnQ 4hDWn؅ aZGfxVܚjOxy·4?6zymyf)\.'Y~y!o/5uV*`3+7$q7бvD .Јz OTNGÚfp/iMk|zQfUUUUUUUUU)Kr6v_ӧO;CSY&V{װ]΍tz*dC&? 4' ah'7''}~ +YYhݴ9ff<AbXLK >m_6}i@_&d_{<>O']Y˶δV`k,MKlK]];^}/` a+mI"9f2_@Xś|9i_ׯ_}ǧTp~YUUUUUUUUUU"Vec+ i!Z%. +lKla6*;tdulbx ȿԿ ǍБ}%k$OTUUUUUUUUUU d#=ZKl]{l}9m,Ƒ83mu9"/W}S5}^zWmUUUUUUUUUUv8e,{M{l`N;a1YhO0do=r韐2db>|r9m& ^=6&䴱[jEhOOi^deLWUUUUUUUUUߒ%0v/bٌOOБ6X]_пqcG9gCa +endstream +endobj + +10 0 obj + 231359 +endobj + +11 0 obj + << /ExtGState << /E1 << /SMask << /Type /Mask + /G 1 0 R + /S /Alpha + >> + /Type /ExtGState + >> >> + /XObject << /X2 5 0 R + /X1 9 0 R + >> + >> +endobj + +12 0 obj + << /Length 13 0 R >> +stream +/DeviceRGB CS +/DeviceRGB cs +q +968.000000 0.000000 -0.000000 251.184509 0.000000 0.000000 cm +/X1 Do +Q +q +/E1 gs +/X2 Do +Q + +endstream +endobj + +13 0 obj + 119 +endobj + +14 0 obj + << /Annots [] + /Type /Page + /MediaBox [ 0.000000 0.000000 968.000000 252.000000 ] + /Resources 11 0 R + /Contents 12 0 R + /Parent 15 0 R + >> +endobj + +15 0 obj + << /Kids [ 14 0 R ] + /Count 1 + /Type /Pages + >> +endobj + +16 0 obj + << /Pages 15 0 R + /Type /Catalog + >> +endobj + +xref +0 17 +0000000000 65535 f +0000000010 00000 n +0000000497 00000 n +0000000519 00000 n +0000001042 00000 n +0000001064 00000 n +0000012410 00000 n +0000012434 00000 n +0000150121 00000 n +0000150146 00000 n +0000381740 00000 n +0000381766 00000 n +0000382106 00000 n +0000382283 00000 n +0000382306 00000 n +0000382485 00000 n +0000382561 00000 n +trailer +<< /ID [ (some) (id) ] + /Root 16 0 R + /Size 17 +>> +startxref +382622 +%%EOF \ No newline at end of file diff --git a/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Welcome/mastodon.logo.large.imageset/logotypeFull1.large.pdf b/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Welcome/mastodon.logo.large.imageset/logotypeFull1.large.pdf deleted file mode 100644 index d4d478ef612a8388b6768be036f70ba882ebb057..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 250426 zcmX_nWmufS&NlAuh2l`4IK|zySn!y8=zkWt@yX{&!IeXa=&RVCUuI{olY>b2|&j2nS?> zZ~q&TH3wQ)f+#q7IQ};v4g@)?m^(?>+dA0WncIOV{_kNm7ZZ?&17sdKTVo6J|J|+r zpAl_k6DxC55M)eP7{wXnWNvJW;tqY99b!5wOW1ASbZ$4R5I{hW=O*uH?dax~wtfB$ z%#2U(;+D47CUWLQE%#|yvT<$Qt^19egC$dLz5U0Kq2KG1HWNX+m^S?Cs!;%bv?iky zqVkC0;X!W*Dj|zr^Cnav4%F7s{(kJ`+uY;7yU?vf*kQR#?PdU^!O z!Uqr&;eEs*CLkcg{(vuJr)OiM=Phnx;&lC(d{thK`;AU1iVeeF-02hBDcm~}7F`hYtzBX`+Z?ufL!vg2{}@uNuCCU(-(jMmN%y+w>A{50M;s-U zD(3Qeoxeya)Th?yb+}55moTrmoi6`+=(lq=-FFNVN7E+;PpEn{gFf$ODf=fxcS!Mo;Ec zVWw0`3AQJbh==9VXF;?gmS|qDKHe_`Ei4fy|53NEaV^5h))D+MV`>dMg~6cm*NJpt zQ;ebc(-dp&U7Phz=Zm*K8Ko>?udVAj5+3`Fj)%>uoze-zcF))SwYC>bauMIR>*Bn; z+Oo1k-K(bU#Odk!Z`ulxQC&W;O}&AEHHMwuZ;xAj&rS9QU7mlp|IQ3zlCO3-pX@hO z5KiRsdAtne`*^w9tbiTYe(vc+5sqdG37K9OAu~i=?G#Y=io?LZh)#q|nPWBof0-#o z9VkiX|Ex@i(9)>|F6Op?3%F~O)%YcmY~V~694j}b;uO=)RinI|JV zy_B`lccSt(D)b4pM>F3?^}(S2)~qUlds2Si{oa(5rVA0zr|Y|CObUR)NN1Xs`rIs4 z{_^zn{QA_=+}zB{%F4oq2pby`8ag^UwGB}lDFImQyS6R&WgvwFmXncDURPHQCY76; ziwn4^sezk^i*t5PT`TaA`Bn3FPwlNuYl2*)Imzwpx+Q54<9w+O*mr!|e`BGXo53y2 z!19Shkau!p0hLp)EU01)V%#QX+Cs151t#0uJ3HGuY_&n~e48o$=(Q1Xq=eX~CtIz% z&1}fgctOM`JA`;RWTctAzSGI0e5m!B)f-@+i~Jo6R)aQ|_o-i67s9>_Of0X^y$#i! z$O`l4IXRu3zEt1Dym8(LjH65Zhv4FS;%SC9-qzQ1s+F+X713Q9H1I__)9~>9>z}WW z`r3GEvP3*~yU(lmtm_FUGWnQ=xEO@_sW|DOzB^upbEuE}^J^b_wz08<*qzr4`qOEn z2uyL8m;%sYR_IX=%%U+LoWs&t^bW;uwe7q7{>4qjuJWU#a7)`yCMv|XVF`M*{AB@S4P(!`kHYCJkA5Sk} zLz)UZ8a{y5e&%jOp?04H1=u$XhUaaJ_x$+^cM$7Hsnovmuy?BduHMAC0{YTJa z(jT2RCq1}yN-)#XyT6CkE|Yj2Dcq(WRnoqlh!akl8P^gGL>7w1WefV;7o0Y<2;7qk zIsYA4lVM%=WqQ=qG|*X@oQ>SI7D=qpc832;7g(H+T~CA*q`gRDkLN$z5HJd#zcMqo zKEJA>s}GIyaPzz{LAKuM`nH=dq{~w|o+0wZ)Wk_oU7L+e$racH@#Ab!bF9Wa=hhSJ z9X$RBLw?VPy{V&?_6t%2AqcW5cenSbXfcrrIlM0WFXq-xZXbDl&yUY!CN{j8=>Hn% zz<#!o(Q;!&($?%Wfez=1rTASkROuN3dQe2uoCg(pDX8|3cbA6MEoSG)!}M7?l!0Xte*Uay7K`T3n|h+Nd-?lrAqwzhyo)w)89I5E(TzoP1@qk|2)$C&@HOn$lALd~brdRm z-k(;lCxl?h{^BBw@d-ea%SIjQ!i5mDP~)kEqK~temNNMV8U%)cyjl}9seCMdLY+`7 z6-)!FMRX|y`~_}K&dHUTDHN3Rhi%pi1HsWY(Di0)3?t!KMn(n^F4^uuOb%S2U-v&l zf7A||ak5KsUEVC{4XoirnG89&*xH{sNTYjh0RafnB-7B5Vj{^!%=fqP`2;YsTRbn0 zRwnvIejba)ogI-wePArBYo^S1ksP8zVK6Zho|SHlrKWko20sCJ&Nw$Rwt9o9srnbzN9c@y(PkW!TlHZ^AY5h+ozS9bMm5a0C&)GUeGjECk5N$ zP!T%h@0&x-v*o`CYu4KzeuwDB8Tc?gscLMjPOb5<@d~0MU&*>44Q_s^&3Yc zWlNs9ruUwm0PTTg(2mddOKTOSnCFY}LiSI;f0s={*(+nFS^bMv(S)LU6xS0ss4Oc^lbBxks)hZtqUZ!6UT!|#HM>S zPzmsFVIf7{N-op6q6n8Is#il2)^jR9ah^;0c`%4<{|YrSIyb$=a;{P0;F_%KFF1`+KO=Dk}G`1R^+=f*27_G~?# z%fiX&Ygt!Xo5CXGumwWXFdu?RU!vls@lPdK32R~t6fbz z&5s)h8Zq@o^02+bihNl7iI+MQsR@@vAnt%ri)nfQ^R_zZodrb`<3Dw^MM+~@F@mx# z-0Jw<&yE{uVCXVl`NG2&F+qDPuF+QQ`A<_GR#E*n1hJuSsGPH|~g`gNmbi z?RE=S6_^`%-ZgeK)B}^^16VHCfv8p)D7;GJVnb?hM~xlX%q}8bdmm|UAz(Rtchs`~Zpls1-uM^3PLMl9vJ z)eGN?t^oLco9-uu{Tim9cpryQ{_Ab)>d0BsM#%HSZyOIEYvp$=0h&PUl_(s88=MUs z+EdzD7XRtKfRx>cGK7}u$f$#g3XxA@#^_~;WX_K)D?j_bAC62h|FKYvM8CTMbyQ7-M2V2` zdyXc6Q4a6o*1b+!U0(vUna+iK*m1v`+w*ze4G-35%(KX4_SZ`zFQ^7{(xWsS4sMF> z$oa#{!?}LyhVAFj7O*bKD>6qirokkVKDV`h)VVyqU+S;#@>(zP-AY^%Ss4ZeP zrm1o`>Q;#YeQ=ap79otv)KVD@UaD}-?tJ}OTTotTAMS;SHxbj@g-s-|9U~{JU7|W- zEZB_{#WF-*MHSyVssyFQm&FE$gxoiz&&*Z)H;#pLwb@eMyR0Vc#J~qKi{)w{UA~)S z&z=~xYY)i>_uEBU;5#o90gv+g(A6)^3%>VFAE2W3L;8lLP2^OXSWe(|s@I3>yr;!b zPXXeQF2OceUJF%Eo7%WGh51&8E5sdwWQ4@j7U~hGg^oeLPXw47lfl3xfeE3P$HLA+ zE!T>=@SJpx5L4vCFwHo$if-h?;NCYY&MbT~w#d~vb)CzX<9u{yI!VOl(0Kjk#~{iF zGG`C~;T|SXCQjc?^3}Mz+tKLjQ^6SB#s0hHVepd9*}b^;;-@d4(Qta#-FGOK9cOu5 zhbi%AgWY#%P8)m9=SKo9(jKZuzM|YXx~+ZK>+R1)8J!7Ks$d1`)E2pPv~0)qn%rHY zE95lXPsZ?=qi4es_YG(_M+Z&~(9x@@E_11tcVi`q)Ko$TYXz9uD)g6zSv0aJMIqmU zg!E5(BebCwTOMhl-j2W_2J3!QhoSu&!{i7W;7(yq-b>_ptS7AenL9Hxm zr`EI2)a&vQ+S6l3@Gw@46$jqTcIUy(BW!+L(yGe3aX!Sk7O*DN(JrXxjMIgpC&$?3 zKV;*cGtcGuf@oa#6#Qun;J54Q>!DEds2+z>@LqQj5&sn?@;QdWe>DI$xF;N13RWti za@LmMwsJQaYAggZ_xu6MLb7eiBzf)VK1Ya zf9XJ>_+cpbH?6KjZKe5CB;t8(+1Bia@aoF9x3~GNxtX1y4*i1p{=@DXAZmnChM+9~ zpch|SA@oYDEpe$P%%LH5@g%c8a5xQo$1>XGrQkN*>(TuyqWg@Wn+5-)z=mGF4QI+w zUKT{m$BW#K?WR}sH9PR{(~2!@wu_YVxJ^zj&iT$cznfk(QAK8{vM7D{65k)^Mq7gf z?46U0_(v|NYy!Vrf@(wuDgTr_$6?XJLD^Clh>qZRE;fsnNR)*?SDt;0zZ)2(|Uo13-EySatFY_Cp|W%dMRaSz+z?Y<--thFlyX zP4wf7vVr4jIPMZmK>+Gqv4D)KBrccRV&66raZkdps;|iscEl~2Fl_nTz0__&9vNkzulGI4xqC7i#7v}d?b=K?Jy4NRyqLp9k^+r>d!0rp{w_mCp$-w{hMupC!CDZW zT~oPzoE`XqES6JUQHUB=`;9%b#o_M0kI+u!UFF--;=BsT+0?VPV&&f2e_bzuE}9JW zQ1AUx&^GcUwoC*nD$H+mHYM!BxBQ4Wc{$7sN2N_AKCGRVk`Trfk#V^&#WHb`CTMk9 z!6+J``;t{jIdmG@yrh*@3^n+F zA_k&!!2YUDV9sQ~rt9}S;kMw)tc3pHD3k?3+5}j?4yAW~gLM=Z&iH-zdQNIYtTF_| zM#Z)2D^6X{ca0VvhiU@2czsL_fQTtzyzGA=$>j*#B}7o6rP6!4>O9fK^MFh}$gjdD z;c8}0Fk1<7U}A^ikxP!R&472~924zJAYHnyMR(QoYwhsU0Tk6J%(k-iZtn;Dwwd1L z`@?<8=W*Aw5=ib+rT=i zxGia~%FSB%985rUga5JR&@&dfzMe1E4wTPbFB(Wqco{sr{8aORStIKf0U&(JBZ-0S zHThODIyS!Mwm-1b6tdUAy!I+#axt;4m5iUjKAB;zo%m{i;6ET1;?VLSK7YZA0Cb{sCHH(TI*Z- z=Nw%1Puz^^b^_m*+Drd#_|7-DVyf7tih}@YMXy}7CfS-h6&_h9R9b)(O-7wPUwr#QtQ|D% zq<#ZlUO)IU&c^!A<)n2m9Ch<|Tf^fJ__>CCQ$lc;w@^WZbM$-oy3VE=& zTEVST*$mQ#e!7MVM@c&srP9wWU;v@hB&mvluNcL53nqhKJ3}D?timbk+^)A6i?!TQ znkbxt@nAld?0YTf6EN-PY=T&7CcOJ6nF}FTmm*)oGU?2R;%XUYOLGeW%pfnf_XLk$ z-&rQFd5ybM0)^li8&%+Vj4uQi^?1|Ex~ghgPLGDU)C%+=i~S%w8XAA#;rg-5`+Y8r z<5n>4SRkcH6|zQ%>-Zo#UBHUANtOg4 z04Iw{0Jk=bO-gBgjm5ieNr@oiFGY)Ahi_el*F%3AGl@xuH$K1d?f!K4xZJXOp4M7l zg~@Im8ao2`E46aN<#Z&72VTS~Q{Wk)Je^jTARgT0Jgrwa*o8E|37Q0k8~|f_66akm zuI$k)!NU}mBGh6P0ibzmT!0juaW5~2^e}mR%SpE+I|7{*Hv)zrOp*IguqHO8^*{nU z%G>>0V|^)|rg8*GNb5xW_wk1;Hrt~CA-WnNICkBISqiy--oV^JB2m-Z z86GN36H`$6q?P*kp?~{Ba(z4!z(sA6{|Nc`(wj#nfO9b#|NCW#R4^B#EecqWQWYKS zgVlcPZs(64vAk0eUl#Jd8iLx*Okp=4TF8^r&dO9{eR59N1&?kUZtEWS0g~FqmKh?x z2v))JGy6J+C``XKYOliL?q4(qz%gfSImE)6p@t(wPP0ffQy76HsLb+_1Czw`DARG6 z-9qA+T#hBy2I}7$-{$M-1~rRh+}k9pPy;OvcN;8n@HA&l*%iJ^KxwSx|8G(LQ>NJm zz>pwjG1{sM>N_tJ$A`GgjrsAtfI7omWRr3R20n1pnlaNdQRslG0w~U z9vT0gyReq!X&IS%y3nWQPV@^H;f-uhDxqt7RXiO zXL;-XZ$Z_~&;4fm2A+m%G5eNBN7ccO-=nD#C&j*dmx~JEZ^nvwffH30X(aZke$jVd zWk*N{Mt?EIW7qZb@>9493Q|y$(A%hR38-}+WZ``(DN%N04!x)D0mK)LDLTt78^SS? z38m&-V`I=l!iFAgEwY3QK#S+a?f3RRE|<&e5>HCD?4-%%mX;_0cBjy3Q?wWA8{6=2 zspy^_il4+WNZ-g3;uikEABE_uAO4E6(-^V^ zkk({~6165!^BqYMO2l})hP8g)$kG>}onGOBJA^p_Tgjn{en|!prFUagK=l93D7#Ve zZrv1m?k-Likf!wfZ0vXwmEEzkzaZ_YfWV(Eg8?SdhUzm5f3qP%>xRCP4xp<4Ih7IS zA(CuHjI08u4Yg)=8brFMtjv^4be!?i1)9Gqw5WI!A%utMGf+PpYzUiPx`xEh+|tZp zssA3Tw^914Sob9PeOGU!=8XMn%Z==~QC#%gQp10RP@1D$%$JjcgC8L>TvK>im|B8S zXg5|9zKH)mV17F6nUD^?RhWAdMh*bXAqWB>+X@cR!^#2D{{ccn*my9TCzJ3VHL21t z4eZ2BYv&bEWH?OSn- zn!Z|tpP=k?j%cFhdf*;6LOj^=b`etUur@+3xCl?oea9&f;M=y$ag~a+zI}9qRi0k| zY;!~y*Ywfp79T0Lp7*1SRgnNYoV3I5A@9d@B$#w0b1EcQ9`NQ+73_{|42UkYdoir- zvq6p?JNs`gjpwkS1Kh#c^Guysd!5eRT7{4tqgDdK7d zgeNthF1vf-7SzwkF;c;x9L*`q?w@up>idtd{br|Z$f>pUe-4gk`OqWdM0mo6yj7Grh> zs#d@LQ-@9MJlEtYR*`= zB)-R872ytYlauw1xpT9oKBy#_I9sVqT6-dQHC3~K0@{Yv#3Mr@dWw+wk zZY~L2#+;XeI7rGTrv)QS9}ROF%mc#_MSRIUB8@IdHB>0iJxmk0{oh+0za<3p($}sa z0y@{0F?I&4EB49J62NzmLLo6Ss=LG&SUInif7oF4vSaX=N2@y^IK>7oz8{iVT!dvB zuC@zd%CAiERU>CD<8Yu_5t#KgE7V}P;)Nrk1{MK{H5@XcKk>qlwz5m6rjG{Vc9RUO z)jh2|S=~(3D5Bnh?u_2`CIy+NfWR3_TX|eBt)uMK;cBlqKWx#`G3f01&Aja(%&4-N zR+_VmpgBeptMQbH7y#zup?@YEDowze(FB#!dv5_eN>7l88m)pXf&bHF_Mx0xv=|z@ zle(Pf_9FT{lk{B^rdx^#Uo&sdMseOti@%b>0npsC(eHLna6#~l6?SySZgeIAERXpT zOAi5=*$$ZUI<7BLv;wYZ2kcTFFVMqD0Vm<2WLc84=_oWkT~K_;>XtBcxc`3`ZxJyA z)!t?-+Nq;!d!m0k2(&x^ZHe*e@xY$sN2yCgx*_b(87JvD0~A zxB#uKxFNvf_gpQd_Ae+L7PQks4y2GdJWjdxK9UbsX{ttgg4}S{1S)ug>aVs!bN0$L zvgr5z)Z5!}!O>(p9sqo>+!pCNl=}bqEz6u#H2WX^t6rxE{Ow(+1aXt#2Eyx;{^!_` z4(L^*UMYWAjEP5T0RZ$h7bLD#a%RtYh!B;=L0a$uSD;1>IZ1PyVe5l?6a5J&^e-{CWdn zx(f&YSqTZ# zp=((M{Mh!wMvO`bb*WG&dx4Q9>4&f4{;SfHvYCXlP``M{)ztHUFnyp#3Dvw=Z1oiu z0`pF7jJepo=I03%46P9T2!$K6g|pPnn#E@mLv)CPQ$ ze{%7lq2^t!J~MW?hHMFTK8gN*#PVXeinRJN9}z-={HGt%!FHfyAh{(&bDamE`9v;P z1pijh)>lZTbPqO>Acm}s<_wYvBGFWFdNNTuCsfNFGUVd_TLod|y6TS=d%~uISTM%) z6=6IVCLb0N0rpgMVK_HD8%)%z)GoK^d3O`C7qoW}2NO|MrD9&}XPOacm_9113`e}F z5~yR5RkfR^-}SqqZoDikZ-Pd*=|4*Qt3ssCp|~LtXKKd~kqNk0IEd!()<+ zH3@`NV4J$P$&y>QZ`)dhc_$q}3{JpqcPw>`!d^WqUc7bssM1gbQ#4Pca`pgtI+z_X z6~1T`2CionudB1OAFAusNhcF<6EoKrLIYKB_C@=0wExKkq2&H}!wfK()&hKhkqxaT%Gk#?X3t7_-ifqk{(m4bk0)KhH!r@g7v@GCSkeScd;kr+}N6DQ!Ksrv}Fz{Wd zwi#YY^mEm5$RLV9c10R-D8olIjCdP1PL3T8Doc*of}#73igyQ@rB~7~1s%Qtv6b+U zx?!cAon39v912F)n>q9`lxPTB?cm&#)@NxNW)Bi-Tfw3&Aavrrh}#AGiv|=JfyeFf z9m9|g-8UxwI& z{k9%ptxzEw?n<`-?@7A<<*nMR*_qMuW?PcteP(>`&A%Hl*w|;q{!H zM^1nLE@%}E%Nnwx>Pdj3{#8DN3REI9FQ-BK`7A6{n77jE5|)F%%-dxp77xIaKAlu2 zfzsRkr>pn9_$_ZXb$x}8dgPB>*y57tPH;u6p{T638Awlj`VkqIuDG;RSxF(6likJJ z$wcp~x};@ZZVe$=&7xu251RL2bu;<~6%9EmGFDMmUao&mJ~u0e8z^oi|INhatGc^v zyh!x|5ejNUkvTCcm_q8g$?e?&1b9T;x;`bu!o$H9Vqsxt`0yT-MAw(g3+xR}E_z%{ zAG(Ye^=l4(6=#N>LjiahIcS@qaYmWVF4GmtD`vpC$cINoL?a=i_-l&YQoxFq(iRT# zvkj8aoE_Y-dA``Y6p2=93ki1kyueEI7Mg71Bqa?hXC;SXZ0~~QaPvDO9Cr$+AVK2Q zyM1-->+C}p+ARLKyWu-Ub8P%MV%YdS`|@n!e5Rg@ORbU-Q`r>d6xy3`if9r8ZO4Gv#@sg zLJ4oNP3oFky#7ME%h3w5in-j*=LN-ow5oNw*y-qac<3zpAdH|?3+4@8KB>v4(ocV@=Q+s0-F-KTj)ZRcaW@46u7B?8G!h z+u5NM06`vr67zhI<*fJj2jCXwt-lBxruLIT*K%Ldt6Z#?M=-5)T@!E09 zk^jKh?%{Jd;!s7Pbg ztv4Evj=r5OS{$mS5YaQXz^s2`6g6M#@P-MbHrXC5Rm@~}>q$JtuUO~}L7U^Wcx|0y z%q#f?u|CD<7&ynMW4>jpR`?Pokxau4Oc@PV1XR! zJ^f}V6Sws(s+FN#MFjwjhu{{GG+l|(cvh3y-qV=CeSXq2gg2(5 zUsmJbn#=ELG|`yVuoSibRY4&(3N7F~#96)551T0Y=JFmhHd;Y$BC82BH&E4v*_+S- z+Vfmz)|=7gsWI#T-OncY2yj>FG#c$EUpZp;bgmb+A&z?t=J60= zFE+v()Q%)PM_m?Eo`h2sXawIS$HRZXegU~mR&{mMyv@v=MNQ)th`+RFbGowwRNmL= z*u3>dl64g3ZI*p*N9R^Bb2~gAt`xSK5);3DmAh){t;t>Q^0<0jk5MSaI9qLY+KRs2 zbu@l^H#SBsG+%!+o{|IpK&|Jo5pdYF|8sQV>&hl#|l|>U=0)NK^i+Qq#u6 znj;MU;&!*aq&7GhiulBDxR`h`^O>fq-6uTnK90urd^i4m<*=@Q`}~N6hyd1a^X1e< z_km2vneU<}iO~L9#D_W1uNLpEyM8(`al4?Gm3*Vi_w8_fOu-`dbgiDndi_=|V#;{Z z(9!K$iOJ-013k!43)ALhrPp#yPJ2>0J**o|Eg)`BM?NrDJ1(&d-zOQ9S3up7&3$gEjC{ z8;9({LE#gDO{_VB%|3T85wI&fmD-%vPVzRA@f&_OL{?BfD6H>TygL>wfP`NslSh9% z9&$S+=>+wLR5YeSPIafWcsFuI+MVxKr-U*!nR9-m;-PoYKd91ZJv=dCl z(hYFMLi4*MkP@%JG0=vy^SA7`3`xWa`WCML1|&ndaw1}92zpeidRMXNZ#zNcVai4? zwL^;5kKRTSK*o}VHr^Sq7&WW|ZbbZXBkOw8R=@xCvpT=LxT>S$SH&;X)bZH+#?+F~ z*5k+vTEiPdq0u%68!e^#b_NCt8yB!M)>h7Xr*NmRFz8O2gxqj<7nOqA#u(aY2i+=2 z6A%k6-XOnI$L{Rw{;s3_xQt)S+^JX=9@eD`?2m-NhC z1K{-$*OR0;o|cfufT~|Z)j(i=4EtIOp$v8AHnHA(Gt^@Jkkj#|t^HJ3P|}&-Qryr1 z`zG?3FM{-@c zpW&HY{!?LfLZS;;$@|u3uSNCB(PnTw3xwxR*<(u%S*s6KO2JE1Ys|9cjaI;tmbK=tTN7X=cq2$4i z{m2}yKBqxvDTX`241ZwDF8aBV)`iSXB*{bPkDI2~| zPEOX2eJ@?K>67RSf_?4KKVwGc+M~_g5bpH2?@mp*DWQ=;{A)Q2o#E@S+x!Rzw?ws_ zfDNg8VUv@P?q5V>viUD>Z{gyl@Os$Ym%Lio33}g^H@COuw~%UBV;vj!-340bu6+;l zL`TQCy>oQ|bI-ppF}uH?j`tS|%rj*O8|y(RJ0x8u-g&K*s^C_b0(7);XC6aVOG;&! z%^2bPoXFC!R7Iu0A+)PYH5k8-;ZSrhjxY{aHyCJfnei=_V-V7iT`&3LnU{vXv#yMr z{YE#1Ez#w>7?;W)A~NFBi<6^JzuLxY2p>udvpScr8U8`5*JZBTkHnHN$2T7Wvrskd z1)R3Vf4u}wkF=IFj_0iV=6_S6?EW4!9|wS+Er$m5Ye52voesO3)wg6#YeYFzerC5@ z?NEo;psAf3QwHD`k+`9=9?G%Ug^0`9denx3jVk-*$A&4Yx-wn zcXNBRhU>yDK3hYvcM2APwdmrcpJW|vYPE%ocNqvW>KL|nOsE3eH6YYguyI||_y4x7 zuU1%#o2%CzhkElvzK{l4qsTOtR#de#*597A$?zy$tTlrMf*pH^2j{RV>{omHCK$cY z;{>6jP=6r>gmggV#QDPqk>J6CjTet89~OSeZR&;_V;hgjXJUw#D^kJ{+{2U{+mjsH zl+k;>(_D;p#wdJI6RU%l!oXO3hegeb-ns(*O0yU8zB>P-T%2-O1tB0#vH^AGM0H8Y zPA`sZs$X@kulmoN5qZofvWQSe_-ZihI=2{R4wwyE;a)ETwajpvpooU*9lkF&Lt!e3 zV+1I-#yjGEX9-GTxmXIb-)m4Lg}4L>hk7w|PX8#z*^0vA&idOwC(l~3c7|Mj@+M|b zXpCZs`wllT8S#9%>L^yQMzDabCbOgKF}hrD`-PmbgtYNDH^Z~R3a@zuUmRNLm(p()kgnUeRk9 z@0+5A7P_X29#?}0ZmeW$o!^b6<-yV`k0M5n4;bOHvbk+eD^ve%Y*ST{vUE0Ue(uI^ zx;L=I$EVHB*%0=la9gU3sLS_l|B||nZI1hf7tSof`wm~Gbn^QR8}*~aMqXLb@QtRO z5a{iG=B0pqF2+{B1D3+L#R8g{Yu3#&ucob|1*2&4By2(He7%;&nF^FXpj6l3i7-$y z20$7kdWB+xHdBD2t`iTZg#Z#ov^&kwa#5GpKHO3!y`~4y`V8jA=VM)duROIX7c-!g zmw@iEukRl}r=8vLIp=8;2_G36>oti_Rc%iVKcY4G!ZojwH~WHk3K0(?cnW(NirID1 zvOcWy2HG}vRWx+g@Af5G4>r}LClMglyVA(G&-!PfhkqT>2K!ztt+0yt)d0^=0|t;& z!lVe>NHc)SUTQ8!gBDHWr+_aaLc-AthL=bmx+osHBW7?)jqn?tl(L0gjt}qg)u?>b zhj|f%kG5wHYL;9+UmOi4{v5cs1C5K-#RS}7Ds}B=kQ*9qw7FZ(OpjjW^`@sZutjn@ z9;Hf@=6zBjuQ%p%J|Fni>-qM;NNKG-ENxa>^>ViM$AW@ERzVL6ELG7x+_#ciEW>|5 zo12H?QTT3u9(g9iD&l@~=Y=k-^9bv)V6l38B@LGx+VghaIBcXv)|PXs9zEb z1KYFblafsDVsctd4%oftH{rQa%+B5)JJFqS_G*@38x~mw8BFEQ^DE+Rq8Le5yi}Tq zKbyem4YaO^U3hrC_rBeseu_JlKP46NnkdX&YkzsXiN&i-%g;tK<;28AuE=(ulf0#o zVBDt!;ySco7l>UaUHR3BWVIe5Y596NKl}sNGdtqm1C@WukiVKCNPbeDSoXeMPQs*} z8_V_yDs#!G5|Lf$F=&3l>+*9y+8mHl!|Cmh9929Z>v)gP&5hFxz+AkBz7Xj~ zAb{eYu>Yu?%-L#<**XwR_f-eH)!mPH(W$}ddW(j}$e8E%a(18pc0Lc$Z_b8bi%dXbm3 zeY5B)j){C-q^s2ea@@$q;P_Dc&WC4GZ3G?O&MN}R8<-tJq{n(GRb~!t%3rVc_OgF@ zEwGNrMxtH5i6}1y3PT8?SuHkyrcRVaQs=>-0G2;hsnXAb8dg6c+(IP4b1%bHKHEIf zFo%Cp{|y+6C{G~x>17a&CoVzBI)K5oYw~fpx#sW3&nv4-i~`8FD=HN9s2qh-+7Z-D_7}MT9==gn6O=ri%*SZj z%(yl8w>t|70Z^W$`H@mY<(os}19;Bo{dV`d2OV|VBq%>ImP;K{_1rrU=0vkJL*VN^ zMykII3}IjwcbJ#tfx4p6wdH)lr)8I>CRH@sf{&uo>e0dd1eMjgR@JZ}BHRfw>T8c+ z7mGzx4ng)Q7^49M|uO}v|Nr!dP$ttphAq^8|-pA&m zYHZ71)V3ZY+;u2)kqraAFO;(EY`aJl^qWPQ^}G+44W+q$vtQ`4QJCG}T1PFcpd**`k&7Vk=P8U+!4bK%q z(r6o_=<1pM+D!xV@Ar*KO$PYl52(u__l}#eL0uF!`3-&^o_CW2@W=BQi3CUBQNO&< zyWjk_ku$W+quK6%WoVT2!B?BbVHZ)1nU-!^p#_vIu@F7t3 z4lHb49p~52kqDN9NQ+6*G4Wqn!y&AF{KO*k+F5OH>EK}LfRrl6Mqz}CYGAD3+HIukXrQ!APe#$u?14B? z#5~03v?C=ZrKTlPjbFO@k&dx1$aExy_8g zRGasTHHs|09GYjcgTH1Iyo3DyF&*+bUcfi_o6Sv8g`PVXTv(a6LF`E`Mt+z35q%50 zAi+Qd@Yl01SEUS4#w$}Qs+ZUE!)Jdi($8w5p(g`GJ4Q}zOYORt%YkPfj4I5D)%`5b z^v6=*Cu+#_MCiD_`96@z0*Yqj5s9QGA-wKsVD?MeCK1KTIl)P`sBcw7)f$8 zH2>GvvcB8%x0W?VvH4!T$g7A=B0I_?o;3!bjBQ5cA)?o8{TAXUa9|AEqW<6Q$#zEr zEL_v8OLXNQ9p{^OX&al9PF8=)D@TxHt=*ja7wFRNt4F`0aS0g)*FFxg2wvBhXrx_j@?EHp4#vv$JCTRO zVW8*sx!T{Mu&`bcn<&^*(~u>{`Pllj#;gH9!E&L`C&Z2hDAz`g2mcxOwIT~-!-|bM zeOzhl+*sp`M3kL^=Q5wqfYma@(`;~cR^q3Y4S_qARY~645a@6@nr${BdJAT{t$i%5 zYy~VLWb5K*&?d~~Qn7{vyF#jq$*Zeuz-0Rw1U?chcHjMxwS)66SPwICJ{5d*d}#e1 zKt|~kQ7BW8cJkeT!$0P-o~cF^T9C016N8N zR8w3f=4(T{e6^-^R*Mq8mSQN&XYw*HXR{t&`*7rLGu7_qVI2V$L54EBGtyaMaOh%u zY62)h2UW`!kX1DB#yKedSVrdfE*{<=Y@9#jojm!DLP@Vf*amwL=nsSvTX<4v{P znfqhs)iFuyb$pWQ=jOhk*NqJ>^on&r|SwKF-dli{mh;RoK6<;1th|-+NLU;o{ z>Gd`Te+La2b@LyfkYPBTFqQ@%GHCS|*{A_<~u!Fr;br zKsMt#2p@}Q!~VzsVY@1k3N^NRA;u}_h9i9I(rCIx6IUzxFrAI@Eqm@xrmq5BcK+Oe z?+aI8`L8bysAG#yn=(9Rg{algPq2tq2}QL0%vm>-a$gomJ6^XeoF^zS#IdYJ*AA7! z{PHm8<{n?q#w04f;07vUc4-S1en0hmEY!UNhib#vsJO?XjL|i61t5(C$)nJ;Mj*(D z0%friV#IE{5kd~ih#X(f8ljuBx>_6k`oW8$7Q%St0sU(NG`>%fLTNepnhi&Hm!wd~ zlXL0_RiLrxU=_J%34Ufq;NIlZ7f?z-5&DNEL#UlCH`pMpp!Ap$|FSqcswchBQ%gzxDyQ>UfOSoz_40F( zK$#;DKB};r$f@svhXK{l|OcT*fS9vQ>74u;rHK z-E-1LLA`2-vj=cGsLl*aGYOwB+P}T;5g_n0r+|w@n{AM$x{YM`&%Bv{%n*k1B{FK0 zzPo|m1}#QUUN#=~5|Jb(WP9I)RyPdP9(Pao;diLLf7I~_Rr*FKD0f!OKqx#2oG@#u zuFKq~pP{lx&qicvi8uo-2K(b3P~z?!ynA zjgF!R_Am0w8W%m`*8W$z+O<%bI2jh;6ur#uV+%>_ZU;lf#p$53Cw48g{YTLcWS?%t z<_Wr59WB?GK``qq+}=6&ka>^ip)GBvrVJam0zm&TRnll70;aWZktWWG~LzaG{`-7RzROq9+A`#HaONe`k(5+(CUe}EX}bXIfTGd=wh26WJ3!YLF0X3tn^?B%Z@UJTl(=T#bsw8<~XBy-u6~f3H_ae(i)$-O2n#o@527nkR4w--jNYr zj`0xubQcC+OD)&taV;y1i}?9NG*y*|?}b|N57eKggB#q7YmcvUb89+Drbe4+PBYy& zY-D3IiH}9{R3*olj6uC9W%~4z)3J}S^p6jLJ6}>ST3*`A5C*h7mf~^h%k;4}QBXx2 zsTwH{zY+*{)H*LEH~T48!DkN&&^YcdQ#W1z$@EP3UpwOsCUq_--zprBJ_=^qEWEg}qIST1YHqk{~XOe?`8@ z?>L&;A>+W0A(O}@xHeYNhCU6XflyGG&)?WTSjVojmW6b3J*LaFy|M8w7`*PSPjStd zz$V8zUe&tykFGxy1-6r;ywTj$N?}p|e1pTN$Fhu;j%FsF6=h?gM*;A$jSq!u!hVHI zFjAnAejz-Li*?u=TtU?O8WVs^h_ST@)yJIA;OwL<`~rvxou)8_uT0W*NV*H-2hDl= zxSPC=x?gLEQUNm)iuPa=v`^PI#HM47ZvP)!Zy6Uy(ClsF?(QDkJ^11zIKdMf!s71k z7TkinYqDr?fxfKchizvHVo>sE}(ZcacO+YVrIO2*zN}sP zRySSl^?hNUr_M!b3RnAeqL+o$3EoSka9fV!s8K~P$e9}bLwym?92@!CI*wVMm(G8C zUS~l^hI$cPh2<%fF821jv(?9fXdRmyH6stk?%lifd-;ZcWroV%IDrY|Y zIL|?eLpDdSE>DVV#zxjR@g`!0hCi-EwjZK_lqaG*4ajw1zwq(eAJnnccaOE-2aOjE zTD+Xdh^v%xaoT;&AP8a1i7pus;RsGaKe9L*EFQv{p*4}BNT6FAuD3hk^90Eav-S{$ z4ymh|k9_~0{g*M)raM|G6~b@no@GOvhaY@l5(iWMvMpL9FYJQ>Uju3+UGlB(k}swp z3(OzcRx32RG^3xIT~dGEnm(;zX$%&jB>D_1vlYzk=SsuX-BGG$6G{h3MUc}^b2>^u zDvHU^o5;;YDVhh8Ula|*)ZT|y%%rvjl_2KMvlI_GA>AvKax4X0fHmxqDHR36(vwYa z%9QTyn+KRmmZr9D>%sm9{ zQ+p_+f!G?C9#;aoI@`@n-!Wt08u)$nO>icG0m?9|br`4BiZ!R`6QC5wus&{L|Gun&6q>n3+Z(@>dO_U$fq;^j#>==R+70aTB_N z|NcMo_+#cTg)&+u-eU#-;!#}A>A;(4;VF95igJ$Hhp66@7gT{Rz5;4W=($$wO^Agl zlEK^d?Y_rCsOC#c`CbcG4#`1IA*$OM&pyPC(Pwe0bLh(4e-%_b@%HslVFjkHAw*+t zLt@hC;&ikbaU`N>ev44tmkWbxd(jJC(HosJ4qw_~M&Vc&-4}MrFDx@DY8jDMF6rrL zNe@VpXvg&==p7u9b&(#ne~eQC_AUX!&Rq7nv5&(}B)M^jW!Ctg_i_S0e%O$6h$?^3 z+!6GL0Mf4G8mO1KP?F-iT%B$xeFy#MAufrKYd@GjM)umR0~gm$nlTxDJ1lYK!y>Xs zmBinZ-&rJeZy2IV>@!sTc<6DP(4|N9PwPLMH?D}pfXXRH_Icu5WD7OoGfGD_us%T& zB#(+zvBecNE}yrs+$2M07#~}EoNVsH!bLg%iJAroQ%1w>NJda;TMp=Fft5kyYoPs5 zNUDiiHF+G>UbLgREVn$`5u8Y^D+7mHx^&8(y~tHb1(v74k}?B12M*)LG1PM^Ailly`~zV1|#TY)K+sc z&B2MAkeJlJxp=G#XW`~A_w@tzDEj5=3uDL$1J^2MoMKvHl;fql4E!-W)}-U%3&YC6 zZII#UC+Ok4x8m#})gN3F=PN7~{f3k2>a&SeQiC^)AuxxJE66`=yI0qLxWPpkfTpwF zqcfb`{b-AirwT1l$?QCMeosQjFsDh38u~&ZMM#B&euREXIj$Nzi_@eyZNy=>%N$V! z$%&(Uzl^&N(W&ndR*#ruR>+q=OId+T-hU_L24mhe>Fn%LhK*e>swBhccy~=RNB$?%$FTI@@ zlpwPo7P;;g>kFZ5fa#ge_e%vi?k&;M$9xD|hv_BT-G7IPf;ZVYCzl(<5 z0Y&Cx z?6N7_iCdQonBVbC>{Rb~1<_2_d94ns`tQ2>hIu%VwP5hm@Zd?1UwkXb z>qdN~UM^6TGL#H*xPoiDht;n#(AhNQIlzTgjWasb?N^m#R@Suoahdt*C{wW9b*Us$ z^vpS16P8?D4u;%Du0ca$4zfVxIm`O>h1;it`HjP6mKN6-XtL zw;|99a)CDu^v6w$4E5XB<>t2N;9rDIG}gt_-?3L8K8A9Nn}2-$vmVj+gbb?2q|A56 zQZkT2;X2-({2)~xK4q@JibZDsoKvg2u3cmUW>78krja*z{nJ&p6&aaPej&$^3>oz{ z;KA;t0WSG=Aud-Tw8mqibadZ2#4VTI?(|f;@PX6?g;tECjYyh%3g)RW&&q9O^?65q zS64n4F|WMgxLP;w0bft0T$^h>9HN|B$!(}yC%{aFs|VM-0_IauFfAzg~G ztgIye>jO`Iw{f}_7N-Vizqot8qg{SBP6gkX=|!}m*LBlj6CoNKjCVg>Ar=S+4%L_P zCyg*iLvPWSW~P{U9aFZ@Z3{Se_F*a_RCkmR9L2>W8l+xuFeZ_`aGukaPGD=hy@xc+ z)2E6lKrs`W_w8`_rSH+Om*eX+sxy8DdU85C76*{4 z2bvafdI$#(w(4hdb=Md1{r0JVm%43GtdPM8lX~qzM2a=&(urj_nWJL`I~(BO64^t< zHQXR*hNP@amtwV{BDDi+LcAQdXJ4MHJbbjGSwF?7E1TAbk|2~L3hI4Wd|Vmb__WsM z1?O`FpZar2&*X2w;2_`cF_S!mZ^fH z7=MIx;~esc%EABzpncogkrWUf6C6k6zh0Tt4iPOI(KwanXm5{inW5pm?fX01p zfQv)qwS(QCl!DqDN-w7@mlnE7f9wvEi``tTppAqZpWyn9Kucqn=6+Iq-iFIDkM!uQ zqdIY5O;W^sB3fYpQ`TD}4HUK=N+*nl*W`K2@hh|I5iSj4##%*zKrP&Qziy5!pTObJ zwax3w*;ReqH^=*>3WJVbXa0KQ(+P4gG0KDQ?EfjQk|^`KH|PDMKZOqDlTIEQ0;>xXOL= z2WVrD$#4piJ6cBOtnvttHU2Lg4-;# zNR1e*!V+d9yNgpFM~m@~%7&2kt^FCLL{45V9cumb)Sn`~m+y$1caO)|tdCtwezE5m zXp&IxgS5MUq-K+zluOL9Oe!t)!!2p8(FiI-7S)qSXF`p~ z=Lp}S|0-)u(yIp1{6VkitX~YHg6+{j!n>${bK5rvp2~@R7={6n^VzReelF#(qt0hx zVM((t^-xIM!lTEaAzoeo?srf&mJgbqzBWOQ#fq0uv%QJWYQH_MMiX;mN6rYDP~(lB zvgnSdZd5u6LHGLECV#2Ea7;hLj4;rpr``iweIab?Ch9u7 zv0v-{^^i~@bj6uaN_M#Y_zJ>eGV$it2U+Eh?ObQ(+Q>8dbd#Ej4@!)UlGukfq+4vkTVy7MLp*B2#K7<4fSd5tKZe+?Ta^}$XOKJVwlPGy=oo2 zNbMY(+g8l>?*KQ9(Qktl6yv=_3W&F1ZOe{#*zA-ERE4Rb>w{k5t5MceIb{eU&>%gZ zse;(fVt&VBnPeh_lh(KH2W}Q8W+X*w!B5TFOY-*ac&?t zBG!>j6f`Lk=Rh!+!b2C)UbSwt48)A}@Z*8wMUF=(VBvbq|+KCnJPe7KyaU5}| z5ZVn$F`E4YU4+>Ly!bKo5ICz8C%f)V9Sq+$2R#TLS^8iuu(iH%{}+{;ZqXK9m>Sui00%O&kQ<;=MzRazROE9*+*3M8E|G%N#w;{Wc)IAkpZEg5k z!HUc&z?j^g{rsJ0*xgnVw=B4^1M<>WaSkHD^uP)-!Mw}2-Ktkj>s}pC4A_YM{G}RfB%Oq z*R;huhF@^Z_-I}|a4-6kVAJcx8r7q}LJsrs9U+XADxXFXENOVE9#?#hx<776i0XK| z)c|prezDpwNR$H?<^MWF+}>Xy;h=)@d?o+Yao?+YrUa(PXHCRNgC9bKt!sdhzd`=8 z|8%8gTRw1qRc}rYhhV?TUNlvdr6ia5S)yv2tEXLRul0HRDr4ht@+c%KQsV`1+%>A& z0u+mK%g_S*WO)s3MWF3z&0}aqt(Pm9FQ9f!k!_1Ay%F)f!F5Vu1KhA>Yk6CH(frSQ zil9FHf(8t$BgZpa*7hb>Rf^XSGI08R{o0b~^zqaPLeD7Q%diaTij5Ei? z5Q(+@4rt%Zgl;F~OjaS52jHwq%<3B(87xhkZ{NGZD#iW=bY{ID zd>ILcD;tVL5x5hk6AY*^pWnC5q&YSKZ+`9Tb#oX*>Vb>TMFpuAibfY344 zL1`+NShDsm|1wERj&XPm_Q^y|!MEl9xPd?upFmbwp5L10E)vj0WVrH|*>o1|odz1s zF(tqjJfnmtEt)HOeZ@z7O0)_sL~7J6z>H^+`BRjQfS=Ao2PrnC?$DrZLt`{epw%DF zVP4!bu6uRzyvgRPW(q&-F8Ya}b9R2M&6MZwXl_*-_Ay*M!fOm@_89^A7kRWaK|J|L zL&<9}E*XyR?c*5t0IwWqWGueBV!tm`2u>LEpPRo)d8^TY4e%J$bq9|4s;3FBgk;O# zB&P?NkE*vufiF$^c;&-*$rKHc-3)LPcxHt1e6`m>qQ)f2;k=dzx28wfY$jgMv?w($ z7Mvb*Hhd;9q%pe)1y2$lP&WWFW7r8TiQovTd4_a-*WEc@hg`6<*V{$sp+9~>GsURESs0aaDO z<%eBCN&?tkG<5mJ>>vbfLM5p`An7Z0gjpHF4|!GNNcfVHRMa0+_a#Sd6M;2G^LA>; zGDMzD+C}R>O;b&&sg9{>9K{qWLPoX1d+FK1Du)oAjm)JVr$jBZyNE<_4MMP}RjkQD zeW77Qjo8iovX9fLG+%k;-IjG4yWSCirFk3P4cm(_!-dR6xErJ-6Y($a$K8B3da*lO zpt4u@lAV)Z7d0 z3O1c6{*5#cXLY>@M+x{(=&TFv8cf1EQ5DtYk{Af682A$crK)S;G(_JEd^H0Y0fto1 z`#h3IHZ3c5;~M~9p%=v$Kd~Uj=A9x{=!s>*EtlfCu5nsTaAh^u4A=lakpflol0I~> zTvWm?0B`zew4r;I5jZ#$N+nZbWC@bR1i2!=gAOy0Xi2Bm~dz^Lo7K%iK_p<7I5dfw<>oy+3@+$T(HBM47U zFeDJ(+5NDxw&uEfC3L^O9U^Fd5pHsoQgDO(-+l80m2|ePm#Er0E6kvBJF2bg_Li|& ziAr1hwQu+TMMfNQZL%$seHumHQizxnb-7&Taqd9BeUVnU33& zP+t={T^A1U91O2+$460n>213ZViiobLe^T)34eQy#jt;mg9-4fq(Ugo#qOdXUEOa4 zWTAbb31b5*wG<#7i?0Lx&Fhb9x-R7-e;uP#-vb%(H`@O?QPsB+^RZJc4>uheW~o+t zH-kC~p$MnWFX1SJp!a;VU;2(;Jwv}J>0+Tbc|UQvt=8RAY>FjrA(yT%4OgW9;-WTcH*Ht`eV-l;Pqkcxiw|FY{T(!WLoYEg3K> zBC6)R!-ewn@~Sh*+qj&@C!QBGD)bb(L$9ylafA3YWb8=8{pgCh9_E<^%!q@mbZx;( z?kUv7D9q=!vw;=G$A9v?8@q~0Bt7n8vztyH_adl-X~9)duQo3ilo|)UR;+dxXxYiG zwFRi+W4Euu(Az(!RSV@h$`<)mh)U>JkQ2>vc@&JyD#>uv7)_HJx@7W9Xk)0V?JW!S zWW=-%g|C6t>ADIttOX5BY48Ayw-@XL;D0iBM@_Adg>P#0u0C>rp4oDwH`3s2-yCf- zY`gx8SO-iw)cTr);RL11{s!fpQOB7BE*>QD^tJe9jC8-k%ilw0aCkj9?oDmQ4BRD! zes$CiQW;O3q%vXJ+J^Y&oI}K#^+xpgt~xng8ga$0{ZCi)^2~K0JZWy+DG-r{)l}GE zsVLU6go~ob>j7X5nWXW0BGus6SfR*)Lws?Lz3HcA2OJ0*@O9&3N()aGuw{Q_VwZUA zs8aCOAjB7fv5b^Xc~K0iT#mGc%D1-`OqpkvYd#!tJvHsYO4|1&IW&+n1 zU~-6FR-{H1Pt8)(;bSBNu8=4!h9did()-@vH`}2KEH)gcuoqVzYn-#b`|m?`UIJ@h zo!ER_2LR0$;7so8$n`cRf9tu19!(BHJE;Ne6&*FsGvIq`#y~wK19b8f&rB9|Ds25U z94rn0_t5dI`qc~kDeD`T^~HMwk5hB}y9j0np79+^P8<+Mj4M1jJ4|yWZJroE9S*;k zvkh4Q%mVTdPu~Zc5E6ntBtbnGJ1rS8@5R?{j4(8t9aXWuZZ!oeUhu76;7o|OJ zObR~`Fv{R?e-;P}HT1%nWRq1C>$p3UmYTsH8y}Gggu5hD-89N~AciHZGR@Ht`TQI7uOfO4tOUH^FAIqZ1 zFB(8zynRR2FY9{^!6aUvbCR#3(Y`lTWTcmhVm_ApfK?M~U(mGkr?-@4ddY;WWs*g4 zTAGg4`V+~|M=;GJpQS4XZBYaAG5iGLf-4_^;}GH}zp>7<{ah1%=FC)eYAOCC^`f+8 zN>I!g8KSjML+F4$b4v21oWyKI99ji7O_n0_)Vq^-ngPo%aQxzny=Fv)YI9@7vG@vQ zv(gJf4ySdZ1zi;`siRC;iX{J6%OXTlaY0vwRNwOwcinD5^idJHQQ|f&a$eQ~i6Cpb zLRq$^BfeQ9pTOU%!p4OivgP*uuAkriw+T^7!6kAcwdyz=?E5nc+4X)k3RkxzjU@~$ z|92M_t>usXr8x)14|4c4yjyfyTU@*@+ML7XPCSiX7 z{l`)iT+o0<^BH2Mhz27t`M;Y)$#EkywbnpGIl_emEyG0D)eveVG-h1u{Hl;U6H2TR zm{LcholWBKT4(=iAhc{dK4d0B02ShrFZGMXdT4~EG@Cp-*?;Z`>+|~s5UT_#` z=hJ6MkroruKdQs8k@ldLx|mUr&=1a|)8iX{{wZ8T98|JKH!%}m@q+(<&O%6ve?t?q zqpN&t4e=jJ(bwUl<$!ZRS@y4RITE)&$?Y*Z(l*_`@Z^=H?kEP-^fW;2~~`LUpLp~t6_6S-Ie000tlg=1G0XKK+KY`ijh^{ghC}{y#R`936USQ zX_%@6|GC@8W0`vunr($=#cag(wCs9+9kB_kAe{^6w~b8e*5;eF2<2=%V#!nHB(G|E z4SNnel$CwtQj4NtKohe?d`C!H3c+oTm$Vq<)Fk3CQQ7d#=ZhOWhs?MUcJ z^L3D+Pwp}jLoY`iILP}$+tMogo+6S;It^x70nf$MV{C&}9Ki=(+=kpZD&)iW2Ca%r z9IKw)sS=7uVUM;n^8CiYb*>k=Ygb#(3W5Q4z(N8!96z#AZP6T+)rffYeKEbh59z<7 zGV}+6Wo@_mS=I_~=438)Q+p49!*CMs0MX`h8!XBw`mM#CE=Il2JCmh?;* zEus^sZsWM4ifVq!Af-n3kyU*yE!eEm%r+PtZ)k}U0BBUs0?_g9Qq8o%0G#(w|KTEZ!kL->i&~ADhh%HF`aV?Q*Yrlfb z?UJcZ;;9RX5sX;SplM_h67GONgFxe2WJ2A9>@g3bl))rNax)+i7fgpZz_PIY3QR_F zSmfU!LSkmWk*-&vM2Y}Dk@ok9J|y4DgDp&`!z0(`H#Bt5H#d_l{-`n}LaHr)&#;;~ zO<{&!rS&_*t)ad*@Xwv!A{F#rd$?b1r+PnvsRtfIoar zRK)e_OCRGiB_%EB%_h_T-@u5(e2z1LV-EH^1D_qRH&ff$d#UsUfV{`Uz{TAwEd+-H zmk6BR6PDpc`4%6^0LN1@>B-S#F_2B@khDI?9J)Q|oSdO-Wf~NfOq^*_NDhkv3-}T? z`6i!trCX=`|L4YH^ zwzR%HJ-awNJG;8Pw6-EC9JfJL%}R-m)??Cw=_Ujn?)LZ6mWP~Qk^rD6wG~b!16*25 zV2hzR=d1|Fm{;D^irgpnNa~s-|MdFn0`P121-dyoYX-S-@Wsy2TWpQaINHws&NvLY zga*!2A3&CXSe@J1eNL`tjDd3o96cEYvYfliOQf&OdhVx`zl&oYQqvA|iI72(pVL?J z0e_DqS3g0W?#7w_oDOwEFQc;B?!emA42AG13?xehCIe9pA))=&3IsFhAY)ymyoMk` z9gODaVS79?C)nB`5=Q?2r&XZ_@Fv-gbY&Yvo{Vi%s##B(5!|?c=a{Wd%YYS>gbA+` zx6ddn9Oog+V^3NEr2$Wg)#mj`>2(zE9S7=+1Q6rVjhR0GL_zA$>b47FIE(hO*(HWPt#| zU;Av_?Q>;RH@5A)GvE8p&=Z|YzCvzGczSYz8j>j$Cnu7VDCuPx4sNxhNg(n_SVGRp zV?2kWvCC-D7mkW4FUYLNQujy}DGc&-9KoCf)F1XADZzrwEoW z5k)jJWqJ35f(7%%X<3maQ;JB>${B$y>6C!^s1P!iG_4-?-92@EDH->4Qe1;5q2OXn z4VcK&o%c(yyy)20Z5ADbuoF7WbYB!b(ZZzQfLrAtr9%!PJZ1Ht@iOv8b%7^PUJ&W; z)llBl+_Cu*8`sf5Glbtvz4y*9T=80+HGVPXbM}R!vOI>l-(q6bHYM zAOQF07i?+vbW3t(V*%r3(tWq)UDe6S5Eb~4IrRPhCzr&HQ7cLzL&a5)xkok*z*bw9LknmuWaEU?BAudXjoRmN2MID3=ljf6;F zJvP|v6+Sbt!`W5wX5*cgZbqPUwEXy9T-#Jy+Jq>u0+ihV?KAWC@|%Y2?=VUI1!KA! zv=l_!T3!_z6tEBAEh70ER>iDKw7QtR-sUs`1!%?$vYPB34lxaHDa1XmMxM5+(j7qa z$+bb3_bZXeB1i9yH^jb~uK(PJ;X1g*b`vV9n8Bmz2uh9NQPxX^Gv5VZYc~uW?TTFD zF`UylWI-R?@eqxXEMH6=BLjOQ5bM|$O=fy{-&;Hq@@W6RQG zMq0ShWMeodOFKG`m2(=%ZQU=AOrxN`>&xp)b8DepjmoS_N55l7k>SuQ=uH1Tq9fpx z=)0G@CFtWWgk(9w1?v$m0_y~0+B=7DGGUUkMY;g2vQMY0S^VpfGfhElG?U<_Q}Kvn zy=tmS)<`5D5rZRJ)~*acfX&h$d3SboCF#$?4mHwVSzP~8!hs+oRV5M~!UYdt23igu z3ca`etOwYkN=w9DkcMq$7biL|b1H%yD+Lf|5cjA`GerZkh?rGRutGwB!y>WccxcG$ z>!Boq)`hJmJY{CrH?Odg+Rl3oAG{#g3`9qa;1ry{{Gx{Bw$%XvTr8Zd_m{h43w=e& z-!4ZFBmSz+I)SCh-jq}Q{g-pHHZiF7&>CrF_og1SUHHfD=&XXn$9a1(zUjTy=MpuN z{M6LM#Kg>0UhrWY;u85?&Zw`E`qV0$e{&veDKk|dN${z|V_x9h?B9VDa~Z!yQ{G81 zVKR{dukkCc`5E(E287!~%=IbPv3AED`M*Y0*==v#&|TkB{{4G#XK``ycXGydvt`dd~~;Oyjq3I&-CZX*zRv?_w?l?$}fk8Tn2`AW7E2S;XR!x;wJKK$sQfBT-7 z>8CJJNdYYF8bnCWpe0vR2krEGZ1Fd{A3n3AkOT*yX4tw6O>6# zJ&ZymASf1UY%FK+l-ohB%ViAI2g8HhicT(X1afjJ)cQLq7Gqt??pos5kGA$t$(m9ne96D(f7x47VvKz3rtP#0kN~NgqrICC7q_=L$#f7 z1QNO#HRq0BRKgdgB4<>nf$i>k(T$*dGefcxW~z5XOL5_rA#`RXLzQZ=&AUGF3Z7tOSNJ4AkNDYQIMhAHR1YOHd282ik4+gih{)oR*|B@b_73o zp%t54m|2^!3GT+{AgcZm*%GK|F`bG?j=kY$xV|ccu%^p#Ec0?A5dORF*ifABEuBO44GDlYAL!3p8;4(EXX23LXW@6713NrH9lUIcZWDsSP+7whnS`U{jw zb6jtCeZ9C^crcC)lnyK^H>NPxE>hJvfmvrM%&chTP)&v%_VG$aUn#*5sQ<6#Nm^J@KXoqPO#v|}7E(8Q=H_#R{ z^2dp!PCLY9rjA$0C-Dlg<6Bic9F@-DhY{nF!e`8dN9OBZFNdXmh0IQJ+cA^SoPevJ zpf_`C?}zT}3~~hm=OHX${GoCNCZ_Td<;+wG0oPwe$2Tk3xt$LT-L2m$tMff>21+dC z1%w;I2guNUF;s zw@E}vPtcu75XbW{9C>SdQ^xAY`j>FnSl#*vqi1%+}u5T*#5EP zR&=3bJ_&pkU%WnezD$MDz>HT0<)$kMS^QN1MW62 zlk9DYerJl&I)Aj#Q&cyB!DxMactS=%ii}Vgc%zaf$mP4et|gQg2-Vn_;<~vmjYA;* zRI&+^1d$i11rp#+v`I?BQL>`E@%z<>e(y0YC`ZEzqz0OP*Asv4!z-(oaC>rf&nV&e zK15xowWcC@d6u)KRXV^)rpG1#e~z8XXQc!gn=^~<>3eWUq#Q-Y`T%&M`X5`1kr=Z z_rbLsPtRMwcDH?n>h+tQ07x0j!9Iy93dvg@Z*`BB!-Y-7Yys+SLl7Vzc|VsYT?Y!O(!A5+dSI+V->E! zhH+h7YrQ(k#ccQS5HdiH{mBt znUJG!hgHMl8+Nhhn&ex5_r%K}Wm)ythW35!^^sg#BIRrxYElf$g&E3(7Bhg-cuHlo z4(g32+R@$Uz`} zeja|TOzL74NbNm5piXPHxNEx8&Miry3$d?wg~f;Ld2nWzWfhd_`Qc~ecIeKfq)DL0?|%h#Hdi@ z=e0Qvl)-;?6n`~X5Ard>QN!FG-N7PigoaMYagPz3`lSCBx0qgz%_mQ4=43D>B3MUK zXsSA&n@ADW;mS-Wqb9`L-@{Bnm$q#&sGVFE_fxdZN34D6>wo_Cs9O67n?;2(c$MFM z&^bhgtO8pB!Pm*1s9*3-MV(W?CrR0NsAKo@-|Oq;s3!WI1^2SIAJs6qNh2H)+*@%a z#!36e{;|W7+#|R3R=68d_UTYP!qeW+*Iam-;-Nk- z_wFY!!ss-O%BC~&0Je&Nr^ZAx9LFDpB2XWuQ7y=`CV`AXmLBKET>XdB118`!zCW<@ z_?ABsaYQQOy)6JLm5bJdXHe$D*#uJDx;vZi=O(rdzX7|~t+y(9L@30xLj0YiY5bP! zhijkD0+}5Tdvi_VGHEx}Uy@3IWbe?J_DD-RtuKP$kVDB?9hc8THO}A2!{_u?{baQM zI{vuqLIXEJDq0s!$PaDnIeg+7t+h--(l>|!`u_N`$DgTeAxEAw6aOb94-=^$EoYbA zJ=z91O*Ua2CT}oqARh<a9;Q9R%yz^5uMsqXG1H7@gf&GLhdM;{B{I7^s6?Q0Cgh!{?Oo^@WpdOIDp}|e zc9t(7ywBKMNN_NG8)#$WXTf~UY>iBYMN1*$sm5hIo3E&x-DdH!{{3#9XrZ|nq@&82 zn1?X*>bN2`lQBjFLGOMVeA|fFcwBTjB9Z?RIvC1%n*I zqu2gHP-2?s$ACeV%qEwGa3;jLlS!2@1{!odo}ZgiF9-XLAUSdR&&NdFJ$6XG#wRN& zV<}&#Q@{BjzWKG}^QODZR#8Wa!OkS)mNBc~%OB-QG_MF%z0@CP`#gQl_pn13M6QRU z+aW%F78WD6ypxaH+UwqU`F3+OciTg^jz(ETptCu3vx}JVRgZFnK}uTPmu)T>Si}M) ze(3%A=4zh6RXL+vqSxeoJ+CIuuP-=NgF-mSm8kp@pOpZ2H% zYi;lievnP&lJFm?xf`r0BPPE4ap@t*MprPMtaJ}YguH~ue79_7c(OlMtw*<)ZuC&?7nd%=&NwmluP+=2Q8@{!LtyM(8vxo2QD)yJMVEbAZPoHt>!p3s)%v7K*Wqegq>fofAM{RssmbvF>9cYgD%2c{`(7{QMw}imnM(>#RH}PELSRKq5k{y2UmyHk`{)Aoi%w5oZyc-G~+K1Hpoi zPN>O*z_+7o6?@^9xGAZOm;Xrc>p6Pq>|)Io33H-WSmV=ZthMa40xpjG5=}aO9iBF0 z)0L=ytm>xE)wbp(Y;T~|^`m6xH1T3e0zNm?4i9FJEYuau6%ffuH-3i7G`0;&q;AqG)Pg&ZE~@5i&(`TKIbLqg*UppKwdYGl-cM{W`fQWK&JCrT2EPbW-qnf* zqvcEitAOTzy-FgF`l}f94fI`{H_SFLT5eBS{c+G@SlvV^U*$>7-Lz(c?zmw z%I$p};ClPialM6B%gp>1VYzsYVwv{Kr6~=W=#UIK0SNX%;X@ETJ6=vE2`$clz9j*K zP%i@YSichl1T<_fz8HEbs)IFj#KMlJsA>`ZDc_c=t9^AX7$dJ7rgq^dP0tE4m0|&L z{CyLWynN{n%-8S&!$1)qJEx=@GNIRV@+FLD7zXrMgi$mS2bR`vRz;QBEgV$A(N~@u zEQv-ZpNH@v##H$mU&TM!hUmbQg@n)*4Gj$Nq7XTKdH*#RJ(osUH2mjH)Ae8wLB( zu1>$J8x=BpO(w;mD59D+Eh-7z?rBIWjyDepMeoo@`sjkcZ3V+EMf#AvH~P4oCN7S; zQ=^J39f8O>JC#DTljnEd)Gk9pyD*^utM&RPU9Dio2J>M|iuHt5zSMo^5xLym_2J1- z!Ielg9zFcRxj3tj=NjOojgChoRrQfMlfmGHq+$Px9GKU7cy3rq@COP-LF1W8t7bJc z6ipKg{QaHBI#Sg;u^K31e;D8YEPZnDuRN2>f@Nn6R`zAfJI;+}vf+SbsUC4f`m6Cl zwjt&X4uzM~a}@q^QCegsZ!9~v(9ey>VLT@UIoV#;bdb|#?*+Z8b*v7R*(m$Bo>81o z73$xd?|J!(&7HB83T`Sve* zeJQe2qcZxU7+A^-wZW=S8J^EY_-A3n@iChS_ZYL?qHPSltMDU0PGV{)GId6i7KWod;|GWb*R6UBbo;`Itz{CNViwFB$Ibh}Hm47r{Lr_Y05Kx*9?W+8DNuL) z-9|cXXezutFsKU2uDiw6eV*LX0m3;czLwt8$0DY^W{zAkYPeh;zBW)`9~+I?b4^pE zL)Yt4NCYEf)8buDgaKN;1OG##S_}8{U$m$<1-XS3PwEN-N9b+e@j@utO!Qa%`ZP0+ zJGCblBcW=VCb<9gFr)`pFp*HB4^$r&BZV(z1+4;kO=;1GHSaW^*!Hk9OSatd4Tp4hRajwNRSU7p z=RqXq4O;V{IZ?Og%P~htC{`J z8hmY7RP0UWA{E$M3yrsN7;6@8V!OK*|Iar`Zx>CVF1AQ{)Z9Jd-0pAqav0U*QIAl! zxzo<-PmFk3Mt^%Hsv}}lg)@w=Isv*w^8_y?rYM2IwrD}bMf_+Ye34pXv-zb2gF8BA zse``E-`i_naT%fFadVm?P0)r|$-lS0C3;IpI#4v3v#3Dz+rfDI$ z1a)t#sy;Hmsh#6;KDbyA5KAN4Erbng#=a3Gk`(_AHnKt3mrhIu7wiEf7Uw_du8Ks_ zL#TU52QIyN1cr_`W9IMq&q}P$G4h*F9KguwfBhES-bg_qP%n4zQ{OC#q?Szv-0JcI zW#D~nW5z;bD(&NTQIsHzfByXH6@=()m{j!as0!kDd<&hYuCG5fFbkm4f|0M1PO+*J z^?0qm=Oo79*&5w9p|*Q;0Z+(koz1ynk4gQWk!D9K#=z!BLBt4 z7!UToqm5VG-~LM}|GNotzrT_A)^@IO1D+!IU-Br`Tf{?O=1Bt=b&@xLyq(B&MTB{- zq5V_97AdViSn};8y4(tyQIE8A7QZ;Jj}@4@x_L%NpQ;BPoG&aji4d)Y{T-SEvo8>& zv-@-4eY0zt)`wI|P(C%~oRdbiyX7NqQO54)ehcpc&FAmCeQ9JLQx(GK*9`^NKFt&u z&RC}#P208hNr1B%LbK|A zJE{Y9WB94F51@;Y_8pGo=K84$Y4plkUl-!~D6NZjEe4;rS=ViCUI_AcBi5Kk6M5?> z5~ALDzb$^l@1y-pzClNy{}lr0GYQ4-`kGV@Ce?ZRkX$c^UV8)HjETyX$0legGL??) z8}rlzt6a94g6PCQ0nZV8Ax$=Ec*UTn>>ZOa2a)u@Qq<}?gr%s*Pb!54riBOR zRi!A9+Zf0f^pq;WQ{^!SRwS{LhaGD`V&M~|u^Ld@7O2EXuLf*nFoQI{=hKjuU7)lf zp7v~3$A2{qG@A*P=c>W{Luq;DGA7+A!3;#r;PYs7-h?_9kkDI2)CZ$H+^kE@!Jjwb z!^*OZ_Jw+d`@bi6+?f+-KTNCctIL`Vr>*ic6yfcYWHvq*U)vH$LofljP}-mum89G^ zL35A!S1JKxB<75wD8Od7ds|YeBBubTxI)9`2SEU?hDvMlb>bqnJnD#}mc{=4-qBS% z|34(fIeSbJVF0r9;qJnvP#8@f&;id3l?_YVwP%*e$6|a6nOk3byqcLj7!VdwHNT1d z)_yV)J?r8!jso7&@eODwo1e8Cmis`bj19=wI+V0Ion-;jLy-OF(HGToJdEW-knmUT zg4cDArd-tK*Szl93qgOc_|ilvt&1+Mh6M=|3xZpG&U+tLBK`_!=k!uo|KD3+9Y3330pgy_|I|R{1o2rL?Igd z*FfM36ZaqQ8`HIMuK0XD*$*@6kg9a5PKW0@xPF?dEWI75T!65lzw3gGvl}!*wZYoA-=5HFoH3Q`=)LXVDIjKd zaQgcN+@!Ph&QR;yo)Bizw3*GtFwx~AHqPXE@jUNh-6h8!)dlQGG1M#k^ls~|zMo0i zIY{YYtgHGjqLRk}`k*h33f9A%P(O`z0@?`>w>l5+N|KZ?7_ebrWMjVVYP9PJr{&LV z@Ilcq_S!WGEWF+oFm{xZ%kGc5+vY_B#i(AxsEAO(d=Y&eW0tZ+1_(dOi+F73ksp73 z)}p-S!HxyQ+nTxxHLoSM8|kn(5&mdvl0gnbpT9I#;reGszDJzy1PdPq1gC$#(U_FF zLhMD+%TLM9CTRPv*VD~oFN@tb%<6Rz+PR+N)0#(+TVudUXLshv_cVY2gcFG>CC`zU zB^)E)JlJG1fAc3r8u>?@lG*ILXMO#>T!+Q>jnqZFdey1q0+23M+WU^Q)@&e^(8Xa! zt+pmO20h{(&fP*#M~|hcc0+jU%ow6p?hl_cC$TZvOZ0HwTljJ-YZeRafQFZByYPo- zeYTXXthSBjm-p|M(3gWG#GCzovTfrHPl!9pE%ZOG4~ZL)yPgUtVl`UeAtlg+mkE-{ zlhjukcG5o6fyNwwuQsf}K7F8}F)biDwd4^h0?I$0uL_fqi^Q|P`hd30FXTnjVde(c z?mF7(iJR1(f(awT;vMe;Gc_wnTULT`?a z6`Q=@7bnbgz83nDO%Aj&SMjP7dEZh94wlk}(QFSP7$1Yfe4aMXWPpXGClle+RxGre z7E3mbHTadh=es2sWzXMbQEoRY9diP`vt+;}waVpKrZG6ir$zT5`y9R8vpR;~lT(6- zv++Be-1fVkZFub%BsiO`+Q-dr;^VX}ed0{$d#Bq?#d7cy_h3Wv(~dlIDoNckTA%0m z51pq^3tkOCvTCrqqp#l(TeKA?4V=!Ny9cb@RXq3llg98?V3QgSbBeFg!J4HAydfib zh3z)9f;(%W9OQXS7Lrm+ba^VEq@EG`_w91j3ReC1{MY8szZmUr;d}GXm(`XF138G1 z8Q8)J+08M_kzo>TcCORditDs-sim*cY4~XW?{OR*thoPs94ngkV?Y0epF!7oGdc^N z)j;4oP#F1E|V_VB$7XiEpZY+(Hcg+Plmqe81xe`dOSmX6d=owg$e8r6ic~b zr%7q0t~$d{$oUzQh1}|3br9LZx%BYiDXqB2RmPLi?SfDR5m82bU=jTb=YBBEhJS-3 zhkhTjEQloiFE$Jj&~k(Brs4&k@r_^ET7Ox|PZerQ-Ix7QzR^D{KxTX$Q{b`jB~iP$ zsEBO?`PWj|WpQ%Xez4Umf??SRrGWx$c2ty*FOISgno6dn^}XG_u$@rR8MIUqG*DLI z^O%1nGFk?bc621_+uHThQ1BJ!Fw zeEG|iTleE|@cQX-9^qaeHIJURhKq{^t8wC&bFBkUUuYuch7$ZlZxF~(StnlUV}NprPq#B;`!cxeX*3OBQ2mWUt-}TB zAC&y7Y&C8=u_^gV6sl(!H~|}zM~m4D&ecis4_-N^XmJ&1XTFOD5-KHyO5)lgY(2Y0 zb-tUfIu>Wd@jsPo^Z4ZpRJV1s`@FQRyZp>#b5>y&U z6GQvHqWlb#hbOtA4uKL8t^ZZYvC_wsk*lGxQ*j1Vp#v6!k73=mI4CWQnk1ZJ!%=+= za7oRV+a;t@VcO1U)p6oFNp{yv5iasudQZa%70j;#Ux>GMDFwOqw1b?upLazkvqDZV zz_8qO$p3s}jI-}TlarAsdwQ%#(Du9O%tBE^^7%uhkoF-r;W;<@AqpT5Xfd+nXY+HB zy%Avv;>f1$J;qU~za}@kzYnj099xHh&p?`MS-sTFj}pS4bi2;R!EGw*YZA<=d+fMK zwv(YYx|hGo#OU$!%Da2p_ZRBgFVx9U+eDQu~WZ~Q7ffmqt5Rx9ZU*YaX&^bgTrqabKqbOC( zXb{>y5Zy``kE94^Xi$<;0r*{N>6iy-Ur}@imJ_Pr;fb{BT(NhdyT!Nyd4C=YW+{(G!q)ruAuI5fT2 zV`;P}K1FfpHK}o-BX~B&92Rp)e`P9nBz71(;p2^i!TLT<;p2Dg4qGJI9k5v&I0_1_ zzu7#ro4-^-W_D7#WM*|y))1dr0WMM28;iWClZh=H5y8oc#!yAA_L*pAtPnk2k+QCm zlk^KlHdHjr={ym!*5#kJTh%nvExe+BvDHceROi7q_zyq3Yk#`*jJjypw&*)G+M&jt z9j>|>DCV30KJG1nc{mEB0q<*iuUN0IdMfhz6B%+t8JJckQkRiK3NzHps5B}1m0s`A zcPQJtz->{ymW;I(N$$1Zl<)}v4Hlo@Em@y@;;YPp=KBUMM=JkQN(uk?9!*})MHEvA zow6a4v7@A*%M^e)^x98Df*DAJk8q2_jw{bMr4ZRbLPLboJ87Q*W}Kfr87@tl2$7d= zf36$VX^oHXXWtqqTFv*hO*@Cl9&jeiQ9;JH$V>;&xelL8sb^Qpr;;!z747?71M|d~ z-+>%Tl<^wJPlHDJUom$<&z-%uJN@mvru*Ta71!qYoN{Ebrmjc=fe{x7LBoJ5JkjN~ z$)HZbKvjzSCNn1tt6+czv7kW&jdGo?BZ@T_$*<_^yw7vfEQNsGYBR$GX3!f_md(wi zGrT)4B@EY!r$)f&W9$V}6ZA)qOczC;Axxy%tDsaix|>dLa<%4b=0WR5IXcP6kB62Z zE8J}S+y{UeYZ73CV9~Gl;?5wI*$&ila4$Tu1>+6rnl$VEa&!lW8O@ZsSIKg;zbPo# z_O2_U%h3E@1drtbQa@Xe@(rlHjyLBcr=+K2ZQpjqc4RQVD9#&n4^%p~-D?R3adMN@ z$4&e9Gz@4~qOM9FdG=ViC`Wbo!moA`$?+%2UPcYR_so3zlFk18t9lxPyC=>>~gMDmX_?-tFVI-B%HZd&hik&eep+^6Mfj39|6 z@Rr*Whx=1^YKei$Gat=0)QKqhlp5P%`Nq42F7YP&SzAR5B7^SI%2H@*QdJ6}5DGCc62Aq+mF?{nx+oeq z!<3Vi$VYV4SHsk9DSu*GlK$l$-I$qJTtpQoX9?~zqgu=Kn~UxJCmPQa{hHu*rD5Q+ zF|KiG&Co)D7D9lYy0DL^T^oGJzIIRya%!lp+rMZ(`B2Fc@$H`G)}V;PZvH9!G$zb< z8Q)AphJs6^#4Vgj3T}VQllEZy5+=fGT2?H2|9)!8ueKrbw(B?VbaJqJ^)0p%7$BpV zK7GEewod@=6*e~Do%$WbReGNf$gr9*BHWfBf`Hd`m z6>!h*USH19Ro=1zVf3tX9ZzHmIQ7dt(0Vjl0&^W>LjrokWVhu7{L$XT#co%|r zji-NvXWKQ^QtuLJCpi=Em{VIOi{!((IhV;iCFM0P6ogG&=`PXjO82LKTF~GL9^Yjn zs-VORy$r)v#6P6?m3r$LJ*75H;;%#h~m*Z*A?*uGl zZ=lf&g(^nj{8!upwBQcXk=Ku!8do6i)})=cNQOseJGW=+l=946dtDVb`Ut_JCsfbj zb@5RGVT?%Fv}E2-uFexf=J~lniXr|ov$Kp-9ABme#x?+_Jb2@0PHc|-e?vL7R+VpO z;S~HRgwx_SiC1p7ZmmA@>MMD7YFi)B@9XvEUxhM*0e&XQncEd!Z%uJGv(BRQqo#w_ z+QM)A-pXXqJgeXC?aJ`)Eu)b|Y5zOW<4Of(HyXl!;5GXxs8l^tfWQ3?t4dCo*+e6b(}W*CuOH(wB|}F} zoY}K}I`d7j(IPbp4u4~7%zn8-sBdkUL%YtPVD!F1!Z54#LfzvR3Op*=$%f0m)CJq? zdv4(8zUtXvKjUKsd~buu)XnRrCgOQbY>aOhrblDz4F%BsJW!R4+8BQQd{fNEJ8OsA zq2JMlt}*GQNrCH~zPcj1GB-L&)raKqjj}$#u7Z@Miu^m(66~Gu7JLB*ycaOd>^?=f ziF?Mt$B|1BBG9e#XDeSAk?Y@XVcYf6FMF=?OypO}OyGVA@UXP#<1wqJ|MwCxW7m$B zf|{(+OqSe-gd|2_pkYHDtjo3b?rn()&oxEJ;8kM5m78MesPuI4oI0ktMD(Y~si7p2 zyX5LmrR#5)Y22uB5811ijTR{@E)$s{V$ z<fe2_P(GM8uQir~-}(X5ZXynT}T ziJ%JibKB0*F!7t9BIsM0E64_t49ejIasXmJ0*(Mt>}LY1Y=yEhr%44RY5>d|zA=LM z|2_1|;_TtU_0hAt{@bT6%UzlUGR`4{YT#3U})nr;8muEomf zLuimw7hJEGByDG-j^y`Q@JZ;ss>l#=!g6Dr8Y;_c&cCe1QgiH8uqvQEKIaaQ?5b6( zJG@GUlme)0sYYyzx3Q+U>3zM(Z1AGZ$shjW*7B5W^huT%7|Nf#4;-2l4BK!7b{)*r z!SM0_tcJJ=*t+z@$bEEeh_^i*-j$i5V_K5so>aXTMArtN$8dfyZ`xY>Zp0%_9KY_sn!U-vWH1wW-Z)i<` z8Qiv3?u_Myn$g!=%d~&mB@yuEDwURn`YiqO`J`mjILwNWGAyHSR8k;Vdb_ahOnK~F4Zpoz zdw6a)z^q-j@qcUP_P1lZD7Cg-#tH%5D^;g`AK$#H?KhAFlAz*tGY7ys2ALPepzz?2WUE@ zYnwiK{x}$8hA|3`%gL@!JVPM)6FFI$r}r_1ELa*axaLTP$oc*1;kwR)kAB6PB*H@9 zoS;6|d-*O$c+F4dUzAdqFK3lNx4~JV~&sOf=tBnvEbU{)68m$K@plw@)e6A{4l#BF*r}M zuSGc_4bCR8GNya|Q_E+1{iR5ZT_v2%ULjS_tTGaQl?r`;jAwVi|G?}`Y0bpq>c{Pn zRZeEN>Z=bY)5A)>$`UqnznYAnIa_Osq|48|3pA3ClY4eL8TO@26!?+`Ow2{kON=Zt zEK8lm=6XpmDS!6fL zR+u&d`pB1|A^|0Ls*g0K_0meqtKa;zXC$pID^|+mDpm2T%7{{_z`cP*o6p~N#$N@r z%+s64=)(e<$6H?iQB1$vnbjk_ric;YBZyuQ`$t^c}PF9F>P zKXU!^ifm=KZ5h-ESzF)aEu99WSU~9u3R$i>1g|yg@0w5`&PSuFa+@It*n3Q0R4b@T z#+V7z9~E%@9_(y!eg#yza<0tUatJ>*WO(%b?3nj6UVG2^yq{cpF8e{MEf|ffygY|M zR$%1L&?_q%(;pUZA5u2rK^MeC{`D8Ce+n6yqas_Ad4|_{WJajLAF}U;ukMpKDE9rd z(<9SlpOpBHGqGK~ery-y33%s4RXdUNY_QbSrI%M#C#ND{%~%;bkZi)#5|eX7u){ zi)#hUE8xIIkH5!L8;EqC!Q}I)M3`l6B*tkbUL8}$n-L9Fi2P)JSQBp+;oTf#&OxM% zu!3I&_bCvPH#2WT)tHKq=-qjCJ zpH91_F)X)3{UANL=o_rSq0DG$i3k6NT9>H=xywu*83v<^=>7RQ!Tl>k{0WfPh ztWW#1=I^7}JOD8kM^_KMqz@+%S;R0Sl~`Z-KzW9I6Wp4ai$ZD**qB+%l}#lKv6=vo z=yU6<3+GoW(KfBzRIANy4^O`#RwXM*84cy7qsV1_BVQsepj!J7xQ`n@AkR!2zPp?-nGyn)F-d3T-d zkij&iXCY;eY?cg`<7jH8nKb^s^qJ3n(!5!edn~6cJJRx1d3?Y))V#XpX(aut2|K*!5%pJlC$v{em4K+s;*c*H-^%v?Vy^oW1R z4O{?)Ug@;mbLx+&Ksgt_(BD?d9QYCzVw=}L%6RSZdEBJY1MRS|kdwhk#Z+WuTQ1xk z9huTiSUS^3b-`)tuZPtLkfm-GG89Fb?+?-fNK1(xeI!UM7b3M+8fG5Dy zU+{fu$ZdTnU3;wNu;u!Cl_Bc62&tLD?HTkR6fmcB zevcz=AM97q-K8s1VS9RP`2NJUedR0G@n%eN2Om>u_Ars=({ox@xH0AKur6}(^u|Sj zp_ZlhNxw^L|KKQ@FEKGjfx&FfYc9Rs2xi*_jli(%@J!4GJiObl0`qWA_;rrb$_^0W zJ0g!#LMkNoSRcCfIu()!)v1z}Wy|j-Jc5h_qm#DwVLH^2jMv8@$-Uw`mLvwh+^eQt{ zjf)nq%|`_iKkZPV!W=1`g9Zn$kh+eCOVLwF5@`lQ4F_iIc4AVL;%aiQF{VqSz)cT| z+`5UWJY)~Ka;gzT@{Efw2G4+l+2OUZ{zd#)V$rvy<=)l5*;0D>W+;9{=Wx6~JJUsg z+5ZfXPrFH8$7Q$dWWpM;_+^Apw9|uSeC2AKbXKSS0oiG*68^47hmla$p-6O?kBH&Y zz(M;xivH~9kE6k!VqoH%gGw=N2^CBonTxnU+ey=)?Om$UlYB+hK` zZcy`+?!u`bwvN{A)LO9V@^7V7GuT1B6#wulhgTEpSy$yt|by4zXm8V0fvw zSgDZh0@uwx*G*O#j^fzRI|BsN;r4+7)XqdCd3PkVaS9(0s-|Wh$8jj|(&)SffE%de z-MZ|5pQ@0RPhB3(p`%TIECoLT`k4Rlt(sCpwRnKgZD^nOBdN3=J^SxheTlMVPKq8* zz8BG?-rUryjbF8_?Hz&mVUIn>@)=9QzV@|5W^in8c(nf#?0#oCMqUUvRZl;hw#U1@0^@tnn7$x`dH;JU6qAJF|>cA9`e&Zsj2dK}8L%BZQa z0`UC3;JPEI(|@B1K`svmcl&Vqe+c%CQ2!IKl0q8rN^sDs6CT}s;Sc)a{obM|f1_id zV5hLxiJDnhSQTsTas9U?u98V2+#)YSs6;sDzd@ttGE_l~tB9=&OJp1vb3wV&)_JSq z4L%Ylqj6GDQ=B7a(+B+HQAr?pIGcYt>xpCSNL`TRw50UJp)bRvO9!@b<^g|q7yY4u z#f{pS7-|@*`@0(`QkO;l&Hp5FZ{KQOw%PvPJ;mNWi*czFZW`=k?wn8u zE_!V0d%gq8-UA@4GEYZF`^N!oh?TnQM#AiXcH(pl4bRS2Jiabo zq9evx%w8jiJwQKj&W^H-@ormwQJ%)+JwLU8pG3HLs=|3pUgO@I?mGK2E@ZW@j)fIz z8~cqu3XBus(sM)JLjWv}`4vZVeeJ=?sC%0or3~ChJg4QvvF;7GPvF_?rrMt-=)Zxy z`vCa7=wp%{Z{-@R!FNBJstlD0t2k`rJ=fR zND8-m=2g)#-MzQ-_=EZ|5YqGx33YJz+IQ|LBNG8E*xx<0=T_B?%7AHVtq^N5j6>1C zu$x(x=a&fy;0;$>-`7W}_6hB63KE&5f+V^pJJi?6OVw0@tIc9w`DcovoX|5FTLg;m zcZnFrsx%-j#M!_r)qOi9Sxp)Zi@qP10~JxZwifCK6z133K3jrC>gp=kp%r$c*ChCT z)VSDzq;-Vs+ox@PK+61xsTxkomOv1IOn2=VVN~4R^;#uay^}%S+kBpS zx0F_YtnhXYS14zd_mCWK{!Wltczn+E6YarUP9Vcw-EKI3$3v_x7rq zW0Q&&3u6U7xqFz32dbm`lP4G$;F%2Kx8e#a5HceWR9Na%a64-p7Ul&61>FvzC2(Ls zIn^g{vR_*rtAE`U&iz|sPR^xaAJ%~xdPqPozwJ)H(!jGk+S`k!mXYu$P>yVB4DfCS z#UTyeKPeInZV)k*%2~hgW)B>5wr4mvYuZMHWOhHi+LIC|mV1`HJ)7&yAe^)U_DtsO zCV1wq55DhKvQiBL1Z+va@5r-u`oQ$dhHr@~8 zRVg&nBuQxqz-+)ZWhCF}$3(c@CukniZal*HW1+WFPd zudcKe{mC3M!tIj?$`p&SgR(V#%D64ORFXi!sk!yyfqz*)p8n~J>3s-cl8-U`jYoHe zyfG0chK+Y=qL?a(_vLxU0ndjKRx@LACBuN;eu_BdUm z90Ko$ol>(2=#i3dSiuv;1cFkdEnk4S-ZjG*VmFgwtf1|{vIEaD*0*n)g}sk81t(Cy zN*2U*{K(wM|E2>i!RH9_VQFtortP-&AsAmiFz6*i_SY;u+2h5)2KFNnvU&u#h(hE4 zULV@T>%Kx7L*}CpyvF>TP8BI~o*ckLh-O$$)W>2-_0J3(OuG*OK=(iHnM)Rl8gLbU zYVcVk&##$1UxxI1IG3WK@sJku(f;Hy46cFJaD%BhoqHOayw|vdc!M~<@r8wH02@H2F^I1F6Z4Lgz3EQr{T2fcx ziXiF?2qO@0oYuvgRn1lXrXGI2zP=*irCOdMh!D~1H?2?Te>bHl?vpqtY4tPH ze?5id{gFaT6@|oc%dN|z1(u&xaG4=z&-gxWO4-+%64zyE)eW*$d{oPHn;3(w5FI8# z)|Fs5O%-b6ZaQA8JtFiYHmF;c)>_{8AH#XF1lrLWjR{$;@W(LEW%T1*4lAWMm^cf) z;w?Or=%2+9vnx$-Q}wpE^$_GEw8A-f>_hhKq^p>~EZSUjxFpJniesE%8HxQl#4;-T ztPE(Vc%mhEVMf~)+d^EwBL|dZ?Shal2gd*Z&MD(5a@+4_#IobjAHxnU6A=r!9n&Yx z!}9CzOZ#csQUm#HZcfF!fn1KH>;Pbf(}wu}hkessy(G1K1D%(}V*h~ny#%jAvZnEA zE4*o?sbVDBrxUbmpU8BAxtU4#20QLM#?t4rh#5;LH6Ch_%x<4Ki@FkaHO6i4xK147 z@847;W}DB+A+fO1tiZFJal3083uue<+-z9-0n+5teLRcnMWo@qpS!1gQ4a9WW&U|p zJ|G5Gk4Hk~`y}{WqUbUYm24WhjAHxiFBP(8La&EnK7n;yWL;=nQX5(#UXm`x)jZ~) z>J)zCB0GCH?u;JdYm`(LSvt~Zlw3v(q)RA&@T0OEwbfz$BAkMS6{d&&aB>LRwUe#X z^*(#E&=>3ALS%`HW?>Ng2^}_MnLKHDiZdo$Alj{)2m`_#|8&_l!iKB>^+aP`)^h;O zNCW(pIW5h;<2@Wcd7*~Qs(|j3w9AdG{K3;G5ypX#PZC)8)k?G@T6NVObhqwc?!Y0J zf0OdX`qeU&$K<8=v9`d&%r)N66~wWt(Gq;stJ2Y6!@tj4d&gb6({!C2ap>IqBo8m@_>BD#PKqYuwMXdsQ>s{3 ztl3ZD6rYjG|~4Hz2AM*5Ahgf^BJi=zH2!Oo;_c)N6Ivnb4*O3tk%| zzQE8;n#6ZUBNWhVi*nCmLHD2gaIn*3j%u3>J(|vK7RX2IH~S)G9`M;`#GG&ImWAzYG$zh^>N_T_){TTf%q>{8OlcGOCz zva6Se2%JUzUig?OKWUx>jas`l} z^>q2Z0D(I}qWwon7Ggk`qN$;Zo`0D@^2Ure&8!OEtu$-D?te@p;R{_o>u@p2xQyh( z5e$^dI{9uhE6_Nd6(?7Klq~Gn?7E-C*7uJ%C&%kND5baxwJcy*`cLSV3+1sL`~tqP z+00KM*QIzLrhvTsBd`3T7r(W#!_;L*lN&j+m zjU|9S(hQkD=azOk)R1;SC-$Gkg|3;HxM#@B)xwnr0b1$;m*-Dl ze}O{x-3H%3Tr7dP>rGF+lC?lA^?qs8-ETe<*?6;d!npw+s3V_mUgfqOPlvlC241d| z%x%*yE{aUN@V& zIS_hKy|lYWV{>sz4MIMVB1m`DpJhS?nc?|n_vL^7dFMnQI^`pXuhDntzYpoA%m{}k z=i(&^HN&L)L=|QVSLp9qxyp)gq8jHC=;A0!-@`p_Sg#;rsU!;KL1PN$p5%^W(&fR5 zMf?r-%-p^A<&h9Y{u@Ox@VoUvBrQr_yFbN`^0?i=Qxc_RuyzqmzrApICw%)wBkA^P zy4~G2%+n~cOm}YpA@%m_B!-s}_AIT%Tf)@M;>p(D-Ty>BmK=$H2P&Kh_mW;l*9=95 zPW%xAyxWeV_(zt|JiPz+M|;KVjV>f)-X`wd`)t>HmkLo^fh>wA)q`nma}`WeO;;AP z%HD)}VC{bofzRV~SK!iHg6_9$Ul~hS4`M#QmpPuE*H2`nozH)n_QR3PuE-%VvgZz* z=?ZaVqNVe&$ZnatrLwVl<>{z$M#!GQ$4;Vt-Mn;-TN@%0Aa^lMQq<>Y^lZ3ESjLfO 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 z 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

u-s?rdnJKC@zt z>34t$aRCT5MAzBlGZtz|Z%7rz-5Gx{r)8?!PHFe0)mvQ^G*~rD=+Peo(FxfzKp%Q6 z6kvVlk-E3$wsYgHgRp7w#y774;%H=8H64{&H`lR8eJ$$+O5Y2kwJdNe&7f2cP! zQ#{H_Srw5kqrgCj)BkxqpBd3NtgIuImK5=*Ym*jmlb_mE0U}cruoh@?ZKNIn(E0SM6!kk>W$FY@DsMc1F9t0^&6TDMnVP!6`|BKZH~Ks*j#o=rBCIV+jWLD@;@np0 zgjCab=f>N%8(t;uxkSe-X1^Ik0J@;a&u5B#REFDG(^1@@>vgL(AS#Ktt?9<7IGfTd z4N+=qod`#gf-+0KNirPH$#!iG?Tex@{T-u6OdbC6`~+*6E?ia{^AU3`z@=Hyk)yoc z{k@w+yZ(n=(>3isIW+!-)rK)Y^nSREm+HOdKiw}ea6L^FjiElFQO`QQs88CdKVkgh+WS%nYx;mvq0+tRhkq>R|dEmlG5jRTM>7YoOwpK^Xb**H>kj~qY4}Jfx=rAfp5CG zCaPLigWa&|Aiu+&4m-@=s-$=@#{*rMI*^NnCm4o+*OrJY>gLA9b-GyqFMfBU9qh3R zPyQ#8(HcYw`cSt7WcWX{dTH|h1FPpNzax1Z2q2#M?0wNE!_P*ODQ_35RVClziYjFO zhxyTUb;)&Rxl`0(RjI>*uTqK!r10?iVgT6*!q<#F+yvT&uaY!@9gri-ED@H%hnBbk zVdg_2JL@8kc$a5!x_4*Kx5;nTf!fOh{XW3z8#Z9t1nd z;*eRwFtF8^|BH<*b{xv<$+MJDcT3nOFBB`IHb790O?|Tw1px$6a{ydTpKG#EIlB{h zKZUb+EhN|ys2*J4Xy@Y6tdtinB=09X)D!cQ$7bvDsz={h%~p;l*6YKMK~!eQZ7()P zyN7f@Vy6Cul_CU*Sd$fjq@Y)uSH#;Z5W*(Yn6|F%l;xdNtCx{&UB6$QJ%PZYbF!&%4Vs3DK5*HQ`@dMi@37tfgoOQsF>Zjj38Xq1W1(G_^ltV* z3_ET#Q7SuqgnXspBC$j0Z9?j8RrQaDyrCC36wob z-ZeK^wWh_JdcR0EU`&7N`h{AwlhC5C>KI^2d)w%#5Z<+NFC&OuAgtn=DI{nZ9n}I| zK~uxAzK^)YG}E>D!!5lfLq;`#0%&3~-`UsXiYyT_TM01KqJW2ZTgl%>^S(iuGYGG!fU6*>)jj{WyfD;ex;xzc{GiZ3&CtJ(2L!1DL{TGtI}2 zy^9-xiQ4=ZSHd%vnQp@NMNUnsOj4|}h?P?zn>5o~4e!7u&y8PVMD}#UdrwTh%bCB( ziUoyHP(h!MMb$-#K@_Cn+`NAluR(TDM0o!S1XO@JYNM!j-W%Eq*!sY)Eg^^g5Oxc# zUXmhfITk9>Uxy3?3@~dMp*+by5}#ETZ*ogjUk1^}+#`+EsWsuY3SphLr>iJ3%G+?x z`)Yi{|M4NV02K!EyH$k&GmmTgNoF*lEvb-MJtNHq|050*AMk|PZb*mNnP@fjytNBquIdPxPTp(_bOLw&Lh z!d&gSRF7|^16ms&K|ix6#_|{Zn|`{=N;D)ms}bfj;z`caF{LLz>wqElpJV68@HUaq@DxuGhnk;_)tt|J&A4KI2B{@}JNujhCTDj4jmB*Q`DAC*g(t(~ZktG>AGa zHL~hU{qGO5@u=6;mdh=o@c_z69kco(=|#8XJ!;<0q|ZQKgRG_d~NE-T0(xb_8Yqm9-|6=5_>9RA|0~@}^ zbG*^$YeEgII{nODK;-~qNzlfqUu)QE(05DDsR~~K%u+~>cu=Lr;>i#C!oP`JlO_8^ z$s@WHVL~aNfR>lpKy%&)w*y2_2NDJ{`o`y#6kIpP~TcY9C}+0({QkhI$5g6s^*vb9RrKm8OYbs?!J9`5P&Ba(*UbX95J zdb9Y&dSI8JufKeGTQo_oKfCueT^lA#LlVzN8&CEL+P#I`YTc?fi@!P>9Gg3-9KDj4 z)zr{8Ai(Z(iTS{q0>HibC~}{`l~3)y`0XlC>{(cK;k5yy3)al3kEG%}S1V3ys+{e( zHmBO!CzS{)1V{SLtP?4{`isl5wNDYw^8Dup(_7zcpl)_g;TV7%@kXl0xX522=qG;f z501MnPkR?Hv?ecLG3OJW7gP14Gpe1D7j_$;2dwh0uWgMX7J=|@;U4QZ-L}Nnl8C4*hUv;dLGSA|sjDE!BJt#19Mpd5p@?1*-x^kbEu$)<%;zg3 zO?QCi0VY4B`i9Ouq<-UCJ#u{+Ljdf22q->+8#LD9ok?4R*-53wr=fmcPLaoSN|lT9 zt`sL7Mlcch|F%Jxavhq(dk>{H=M(rM#ia`*$Jam$KDdKI03myz6>W6RCw1y$3z<`{ zar5cZ!T_7+y5FcYwizKOaeeyIe_Uf8leqz-%3~4jg@J!KWKNQ=fln*ktSQa6P)YC} zV0othYR5`O-u6V6S7-2Yt0WnP`Y0eWa#FTwo3rcVI$4{ z%Qk>54a&v4K3Y_#RGzMgeAuXT676j=Xm9TZnAaCdiuz4WV`a{`d&z#bLHAJ4?L9L~ z4pe0zoTekd_Khj9dmd;VVaeb&eqO)n;!LmTVmBfyRWu*i6iWIS0cl`2eEbm%-#W_I zBh4l;E(8sC%%q3A@R5h~yJ7Wutb$g++4a9)7bzzmlE@W_vE2<@5yT9B)16YraT-A7 zJqoISYr>MFqQnEL(k*L6{1MF*>jBTwr!b-MbSilWW7;zYhq1)t6>RjF(>V(9ylh=u z>rxg=gV(b#r!86^fd?uO6iXq<@|YTs#J8GS6QVlp(A3%n(m8k@y0BXOW@305F!!7= zgwXObt{pp`OL*ZJtSg^wO^3%^Cs`9s07}li_x0SfbCZw70*X|?Q+}A7m*vbGxf5{k zzn+(b6(*jJa1|EcMo(S}bC0{1zRCwPf25eTL!Mo=*@|$@AP@ z7Q~LuHUwtLYh40f592%;y_SDAp+6jlGi>^Fre{DZ?vs9|+6J{4ky{;>d1}TF^?$GM z!+?}mI2`569ijZ~Wq#L2$5eWJ;i7pC{%vI z;guQ^A!288?_ATfXp^z3X^4JxVSR%35R~yyzeMaBXUWDDzrVTRaB5Jhx_cv`86Iw+ zJ|eo`1h8r^7L|6;e#t7<-!?|%(T3P@5Ow}cj(HjbkF_QdcGbtVGHhzoH<8<2B(sI* zh63iAx(9lrj~NkeH9e~=+5`#&!w{YGm4QJPI!#W-Y1uiYK3eQn!zxr@f$Jl;S~SZT z@Ct7{TOz}YweX1P& zPCjs<#W89-&+UtV=aCqX|6#Wn3_(otSRO@u-&%@F+8XdIgA)hsBM_o>klvson0r&8 zukNQacl(#DDaof9E^pH&JKTyC=|38FOTHHqIoo1{Eh-{egRI4|ks@8JTJQJCCv2UX zf#3nu0H|c(_{IVQnA?>wFSzcmP9)>KX_Uo8=g=C^mK_^Y>ji=fC$F-w3fWQj}FcV z*Vny`uuPjl{13^(H%VGgwx=}M;geXO9!HqUWlt~eQdSIdNuv?0u!;LXs&HHY|42NA zkYC>TnQb58x@fWqi^kJZKWVNr8++m#Fplgez9yNB_{H1$qe;#LAT)u(lOenu0XgoA z3d7xH5Ct7PC&~f1ZgULIs_#DC=Qwk8N)jrlGn9Vv1#S<6#(k4Hf!EfdfiVU0^OMGz zGmr6_Sd_622FSqbwK6L(P@J>LJ}zm>JrKXN3__y>l6SGH?Bs#j*+>k)}DA!!#n-w9V3lJe1nrm%B4G#uhUeW`o6Q=d0~z6E<<#xB~n$(8|ut{FQc5} z!nPT)ujwZ>0BeKa1%QZkfQ=_fF=fEO;%KkdfH1&rtWTA0=Gz6QO3y3|_kG!Y3uCdw zpD|4cOJcRw>)YiKm7mF-A$W9rkdn1XS74_t5_vdY)&m>IlWvSwB7nem{8z*`M@*Q* zPd34}jTqmr10HD?CU}@`x?Kda?j=o@Y}c|tkV`gsgg4vpFI#Gt`PweIUYKSVHm?S+ zMC57iP*UWp_bioEEbx9oN0Nc+2__7;>PLJt2V(3GV!NW1kRHUP)y-tkxSJClgFER< zmKO@;(>{m!sy4L7@oed8g=>QDb9c$M>Dj>j{pZoF`O6cMwFoMia6m7BDogZP z@;V9XKq_MoxN<4c9s&4ldq6<$Y8xFT9im9;9xU!HG-H%n6JhItt)-CJAEbNc#}Ek* z{L+?RkH!iVTJ#^?GtI2tzSPf2r^|yUGvLHwrhn`poN0QO_hhStvVbQk~{d333jq>=Iv$ zpr8NeV27A{BeHPa4nGo9_>7qo?)Dqxnsx*7gc`54C@oZkLtT;hUK3stmlIcH5ylH* zJk?Hf8EV{A(*~cBwh@!Vl09pAx(%KuD8s|QR?`7G41$=}lQcTD)`H(0QiaEtBP1qd zxvR}@mRYmOAO`cYKq$D0ae*f_eh)q(xj_MyqgfYC7uWks{&lr@8IW#h`|ut5T8XjT zYXH{8g&@2gqTPXCMy2x)>Fxj>KZwA)-%K`WDxQg(Q=#hWMhP4v^~Fcua|3SU;9Eu4 z=APgGkp%^9{;Qe{LzT49$BLThu0({ugNIFK!)YOn3C_CWw8&u{MUjdm~sZmUQD zwNc;+5<5c&E3@I1-MPnm#ukt4pd7(w?HpFLVOtMmlZm_C&^LO*wuFYD;kmeeut$Rn zd0isNk%6og%taJ5;MH#Q&{YFQB}W%6I;B;C@6)%+)55KRUyY->*!{&pYRY4oSJ$c@ zkc>0$F=a(;pHFHgijrMEi$l0e4ci*)JWcMc>DG$EYkH{X{s?sn+WEb$ccBb&d2i+> zF&}d!xZ=qF)nQd0Se%qf0{Fy*L0lHw>ys7m;)JxtsVL>Ef?_BWt9rS)`*c?QEzm43 zv17wf_jY7Riq%eBFeInDXp;FO~S7 zxvoFX^4|a);hg$vYAv5@@d7SBMTX%Q>1>ErF%UIhXhy(|1033|{Nc)jEVC2yLFv-( zzskC}r{)Eyo=u<`cEQTC5cbM_fV=ES*09~sk}hXWoPgV^|6IBd7cGw;Zp~KrE2z66 zLda9NU6mdM=x~f6<3Om+^&6nnX3r&@oi7DoEvS<-+4|pXQ{VZ8ZK6k0$Dc-*ew~Bm zumA6Mr#D|9xFm=^y#zBMSpLF zDoY(`27Dh#Asf+VCFCa(!|MHzVhP~~xIiQVkD`gW<7?ny1b7X?ED~Ja->$vg_KGET zeoREP*u$+?2QogfA=rutfa;ij*UDL*CwxA?jN8EcNWfLwOV#rLIGTmcEr6>AmUq*CGgjnX>BO|4k20x?t67wMO6CUr zq;vnvBkC|qRBI+d(=Q~O*az$_`R=aDzTt0@c7yF{Tb=O-VY)2ZuzyqWrvG>#Lsq=H z`&wkJk=>`Fi)?E=6$_1(6?3eYA5S_>saXY7Tn?auE-{yip=8V zn;OCM(v=*yRS9Fb%={+TlB%~(z^V-{ec-&qny#NtMj%lD{0Tw3H0`OY$~KNl;$(rF zx{jy^EK@Zx=xa{K1aJ#&csGw@c|`bLx28W*MIAOGc&|8X*_5d1rUSkk5rrGuzx!_l zX3QMad0 zP9h*eJs>fiQgM&gue`Ivf%gD}wIH9{0ob#9L40RMQheL3Gdgu;X71-49ns#12nSCGjW0bah+{P z?SN^y)}&jV_rN;(g-K%6i#;@t9@TtstD+1+6;fCK!qf5=W?P*tT*2xa`-s0D%=LA2 zhZKxMp3$~^O6rht`m5rVVAKJK@V{Cz>$%krk@x4$&GWOQzB;Kx74=^Oy;sPv`io<2 zdUx*7&S+cV&dK%RkAFUj30mR^$*J_jWj)YU-bHBu;%CR^2HR$6$_5+17Nfv>tYD4^ zDK0W4vw7Ua$ZJ`lm!}5c{Y4`V9Z%3xr&%3O0!V*v+a7fw*dU5yQ+F$)5MLqaZLeRe z&){-j>SK4!Y^H%Ps}_Gn{cOzAoBn}&1g8_!f9b(Tmhbe~&C6@16Z34!9`E=!*f3nY#=Wd7wS)^sf? zN8Ozk1@vc;5}=fA-5I;Mme6hiF{RPtc*NT1Eztm=%^aMywvRfdz{o~aiHL>B03Zcq zf)M+&eXgT`p9R83iFGY04zUqJUejvtX%B!aT}gT2a`I7}s&FDuLg1^{Q^Jc(EU4li z9-7Bk){MP3NcoXLR4UyBlH_)i_oR!RZi;EEHUNzb3fqeO?vc0-uPpefaY-YOFHSd~ zOwAeUL^q<$tB@NEfp_n=<%4hS_nY_!k57we?oEKeAy52VA*eSj%%Vj0-<;lp{F&IL>eJ*4 z|K|$brCtj@+xsSVPIt@yOuT|m0wO5*H6bV|hC_RSG^AFG$aw?KS1<4p=R_UG%~Re< zhsBtMqls;tV{Y+uq>dPPC;QH*1}q05a{x-W3|m0ZMr>$Q%g&fg5Kn8mKld8w9eG@u zbzEq8Wl|-JLxvZDX<1z~=!RbdYgG`~B65z;)txLE5$1 zz}ho2BbSh64f1HvRwT)65ODp*YoGMKc66Q?I;7sAPGXxNq&(7qL`QJkXy<7!h7pkN^O< zqV9+We_F%Hi8+S$WVD3W1D5d^r4Kv)?}b6X7fvN}i>&=|VK%6icl>T?Q(rs7S6d@b zOz`r2W?Hn#Vchhv{oWu=PxTnHQK}JXCm&Dpa#(JPSP>OyR8x0j+|8d@#@;#)P{h_F zY|?6T@Gt;-=$-}q(J2kL%k^NlTMhWwYtqFipL1c5Iw1&bq}To>4Huamc;EEfAtK-BoXG^^p)A^L4A%)_Ow3PY zWq*{3QSjjHdH02*@5E%j=Nw`Muu_1B6FYsWH7s1l^&I20aQ8{+(6#Q@dELF)4v00N zZI6RdT*I4vRqWWjKCql~snTRFc0>_~AB0E!4=ZFv3^>&5iWfsae-bdL)%1Y#x#-2J zX~^ejKaF^yhU1y+h(w4V*yl4EGvbP@J1~>*{DVvw<1mr;np&K)+pfmHbBGQMBOuI6 zeJmh%flGRH98W^jd+9bDm6|GpnSRKs(i&8}&OwEQbV33#Ih!iF zKRf6*Xs?)mY|fYf9T|XmK)QWE&WZ0nWnp}|{vvVVkbnKf=rZA#k*}wsF0h7-vKE2# z>Vz~2vKyemJwm(~WRfssJhLKkF<8^Rcr1twMBb88uW@q?!lb^tK+;HAUpRDsCYiEW zz39I9lF!ig*SQ)Y{|Repncr&>`mreuk{xvBBP&~}h$%f8Efov6RRPw8W@=)mJ0@p- znk)0@6py!L+gmO9r|(3bb#yIQy=_HzocDsd9P~m!-!i6cT^nT?`bt*#VGb}h(*8CQwK4UT=n8Mh+l>CjCgZtaXmZ>&L3|mp#>}aWHDzlD^z$e_?;{y z*%rDww5#_SV~{{Vfw(V~q3&$gTd|N$O(z68~&6{4*oF7*@nJ)Vr1Ue{u9X+bviWY35MiN}-JkNL->I^{q5!gyPx` z&oS7001neC-9_ZkOIf{m_!qD(m&T|e^4lM2Kp#qf^osb%mtvX7cPF??<}>jevPpt*K!fx~Mj;45-!hZ5 zIJzlkTiLdV>z0;ON-1FS@ zC(K1P0$8#O>Jmi}&R$T=Bb1~Dc;=9%6Su8{k9^?$F!Df2POnkHC+qCA4o9uS$YejUIFzdc1*wU7qgy5M=hF%zsV442FyqYdISKo-5 ze0wHk;$l%eVlGj4H!}SgWSrZrc#Pq7Gl&bxwW&oWsw&>NbD&minrq-u){U@rJWbDu zNCLi_?rJiq=rw<6ldFcOj@iDDItfyjNo%nR* z-I3%zcvSv$1Eejz%(2?5$H&WbLf!KEm_eNkpANlGJvV*qM0$ml$LdeUhT__nN7u_W zJxSKze*k?t@?+V60Mup673ZwBj{mrSW5=eJ_nufc#|)~_%OegQA=t+Ldjs`UpZm6G z#D5??`*POlEp4LezjQAK6K^4}9h6yxBSUrK-AygS{hhr-z)9C+j0L`1!1;UC8mijN z?^^LZ&ogp!yjqqHCN$bQdi*?D)`mKabR26#+&bPd>ix^-&%>dZw(D29E*_FRLGvg+iTO~dG zt!^;0k8h^fp73-Z`sYJ#He$TG33?o8a+Z0FidRXKJ4Y}hyj~2DU%0S;kdj&vI_xSK zV>bA^v^4*~rmw*wK3+T*+-gr_@%+uaE2QZN?j2*Woz8v4u2~}{XjVQz)H-w7z|K9v$c~ zXjyh$?A$>cfsltd4_`%j1m?>D)jW2M?9GI{#eCq>F^eJV=-pABEoNIN!N$K_f?d@` zU=ZKmlozT54e{fw%~011u_F5}Eh2Asx`y+fTTS%iL5yaNlqGXy4|XjvqUCaIXXty~ zGd8^L8v<74huL~#>4_hx^_H;jo8I?*!Tkt#n0dK@=s@8JSh~#lG%JzPp0@M{x?PRb z3wy@G@BQ&XnkaE;-%`4Qnm|yxso1hBL&qrbxPKa^OExw3?eOtKcxXSTw%+ACZXtK_ zTwmv{gHJMl+>||IWdYY2<{s}2+%Au{TwFAJUcoG6x`w21n{mOzt@)wcY%wGXD-tdI zWlghQIJ$%l600&y=bjA=3{4N^oWJ7G!;)m|W(!^*;zi;&%<>ArbQy(JSnF&kn8*{=1B`29T2g z^2c)RcFnwOQW*n%shjG;mnwP0SCOhw?#2}lwK3~hBr`BUSR%am<%(K%@zl;rmqZg` zIfvJXdjZmIs@x|8W?>~fpjk;dxj*j$?$W9V;tR))SlpHLxzgbReNF*porvU5IGV~x zSQi~3`G$Xbr|MhZ-)!oF^Nu@_zLSTseNRP!EiD{d-nx|Nr1k)fCj*1+T!GWPA}i44 zm3!|k3x}Sur@cUT&1K7R?l?zQwq;~FnkAULDZRBX_wk(iSv+WS0A?iGCEI{en0s(g zyiGMWr}F(;qI6L-J^g$g2H6uPMekMniQcmb&K8<{UKjKwS@F9~QSBk76d%O}YlolT zfkpECX9eBK0FtK|0a(`TlKHCgpL~@A(SLhIb7dbrjr$jOjo7_>K}jdotl0V3ttM|Q zxY~VMT|kJppZ*DpWKzy+d1j?Ti@{xC^+L0@+AHv6xHdOIIvJE-@$CZbWY(9GD3Z3S zy~uE`>*r%#C)%I>+~1b06&1fo!puNRuMHr=-Gt4@YsIranfPZM1go_ylCga$bO2N# zDK2roLHXJ=bzo^5G!gsk6Lq-XvqApv;nX}Z<_JL-x=F490sh9vaBZ4gNoTi01>$qb z2o>91qi_w9wUXs%D198YS)835O==9e-VR}Q-J72kI46N=K`VVpjF1F<|BxKwqL*=U zp-1O@MnU8u(M9KrBOhDn7O-!bci}gZ6m5b*VfuDWT)h`9kGv-9Me+R5^(A6WA|yWL zy;}C-Ir{7s-USaMe@qoBD_;$6o&Tl3!H2=4 zcMaaJ6Q3|MHp}E4-inH1oWH+UJC#Gq;3kb}SBB z;Xz|d;E)IwS>^ak0LcR&wSFA*K{GqxHAUvbcX^ajy43Ht@gS} zt1Dd5C{y(&ZSX9B@p2r^U!P>@82gjT%j7mKW8H(Q(x|PQb#m*js(XKhjW>oD(byf7 zfWFY>#;0>P`u+Ck>oX7P#s^mMs}P+$X3a6R{hlg~c7$OlAPo0M+*4a4+*?J{sp3bL z_o!sLG;qbyl(5UHx6D*bH&L^+hSYP(MAyxKL;KB#T>hmz&E_xu;e|C`ZL|G@UC0SfeA2o&u#g?b ztb$rL$XHZW@dk8pAXx|>O?Q!tN?wR;+to&Ov?wvEBK7 zYq?jS$GMpdLwA+qdgx5?(;lVi&(g42apd#)0e41^1;&ypxH!(|Epw3@22>rS9?w*z zor~uqIhV{(s{5Pv={|yvPQQAdCco@GpA|JUYXh_sVtxldF&+W_t|6YbZC2FvRJ-9H zIcVUQXV)YiHD3HW$Qb;f38gQyp{$2e3G(oMrzgk2q=&T222(hotjNPJT4e*Qu|K?g zz{;YaM+=?^8qOsi-&1iH0oaNyb*+y!hCZ)H!9TJIvIiz)5=U-lN4X2^C;h?t; z^Yzh-m4Wq4Y9vA5w#PIuc*GHf zC7#iiWL9l-)9Y=y|5%xI zb!bVOF{Ma$g?9_7}k zfGayDCG>s)1}W$skk7KyM5vd26PJuT@nu1~y46C6qW8)`3~sM`_Uwn!t^736C8&g~ z)gi?F|1f6Dv!kwrS^hp9UB#yt>2}G9!w0W;a5}6JTCxdJh3Oxf z0vb&)Zpg4Ill3G8+3I{v11ZMilGalhNdzKyI;Bq8Od6}n~uJqolNlL`k^N61!2IpT$N zr50RI#gXQbQ|CIajo)7@=a8F+dr9k)_^CWttg;iXLqbj|F0t6&M(J z(!a5S`-(1iiz1$svd6`<<-V#fqEZD1Up_KEqGGRw5E$&+n&9Arrl3F+pU;ev8UXdX z)S;+t))Is*2vxN_@vh2B%n4%`$BB_RkV1gQ2S9-RK>bpi0bh(GWfY9yLCF9b3$$UP z+}rlc!+_x~DS-^vj2DMMB>R6HGw&I1N%u}^$xDo{J!^T3 zeo$F22&6m^a_l~|LZn?1pm;Oelkz+z(=&N}vos%< z?J8?PSOY?;=b2~JK=NR>3uM1)prX*!J)U>0rDFb~v$c*-^ZCutmEc!9a>71~GgP}f zE3-l|{{8JT65%DO;$e3i3RFMfx$|z>b1Br&^>}(#3NerN4`@7(EI)dC{L)B)*U*tV zQxn}S-@E=JtG}t?Svn%)VsPT1&*oRjXV*X4m`7fRna(Jbc6kl#uQDm@+lBQzW?kSMKwx}8ojomweL8`RV#))d zGIOuuB%R28R!;1VAO0vySD3R_^`@K&(whr;72Bhh+f^;5&eI8*ovM@FMJoaPN`p*) zsbMv_Dg7N$SzKF@C2N*Ymm_eeyz$O-QlY7zH4S;P_2(hPk^WL1jp@v^@7|)+o{9C(fgGgiG3^eX>DkXxn>c71;wGNYPY5$LQ+-w2>*I9To& z2^CSyj>(S$AoeSo?U`urZHxT!=Vdh=+i}*^WprU(W>5HIEvy&x$_0JFxy@&5v%62A zy|u?6g5YBa@wRv%L6_7UD3(4r_uQdV%SmH*AOn#wRE9z%HXnoR1ssCh{v%ju+A@(l zc`9VIGqd}OHEb(lHJ8~COS&I_J^vx_{EDbFXx9YZx3MLGf_5DpY-!N6FP8&~w52x% z#P;qXr?<*qbsz`AONyg%zF$i$&Kz&BV;F+W&8P3%_-}E?UC%>)d`csE3u0;h{TNDB za&Eo+K9%-pYmO#dzCE+b&Hko~=qXI2(z92vKIc+h_kG$@3!3Y0xu(Nsa>e%^n%f$I zr3;#$;Mut@4Z6%lUUT2-%6qun+b3>AA+((Eh;zV?ZQH9xIj%H`aYc}GSrWpTDs=o~ONgi%?^ z&u&UWx;ejy<9rTQKYb-6V^2ILfsAV62SWVguM(=_`DzV+T}5@u&Q}xvnR1@W*7jVO!`aB3LYJ z25InZlplHcSf}V805T+Kn|8+N0IB#qGk>S^kpMqH8#D~^I5@EBxSo{o9?K-|si>*Q zS))8++w7i|u@C81$C}>Evw_c>{Kzy{YcpS?P(GN{Oy9jU^?0^-i{nO}`^CWZ04mc? z$^w&4-VO@+Sd68b3tIKeKvZScxR!xy$-+O>xI3nJ33-c`As_g_>(AFZQ}TOayVa0Z zA18aOdrW3_~i^`reP!J7j8$chwZ<2J8r>yexsMM-zMta4oiphv0 ze801DyTxf!$1Yoqzf1r3A|lOrVPIa=?-l)< zxu&NPqJ1qnom(0{#}q7HT*Dl!f99a_kN$t}zB66dj4N7GdCDM=TKa~P^)R^z8VmLU zmkmAW^l2l;plQam^d5lOhk5tr^gy_Bz0Cw^7vj^u16Dmq0U$P%k0RdI%WbQuY5=gZ$s;1Uz#Jdm{46qc@g-}`v$5zFa$xw zfD%L60A!vH!A7izxNc#!3lP0Vpy}h)p07`fX@GAjfkPbn;TL~kt91k)bm*WEg~I^` zz4i(RnNfDPC+HASh3kk|q#s>yi8&bY`<;lPg;uR})!Wk9Jc=-Lf5p9kfdT2j(OKE{ zXX!h1|0cH{KITDxva=ik((Y8tg4Z53IXRV6mtymqIgqQHbeEasnMs8$1P;%(Mo0Cd zN;lSW!DEYGtU#5-%%u=Z=4abor9;Wmcwe3#2C}}M4=RB2ZY>OfT3i`$hCh&$m!!Lj zD-|DBY0l=HY5&DW%w{^21XSAvcm<{0Z^B<1hHgVhXL;zv52Cj>eP;pPF>6Z5ldW7! z_GYlETl5hG6!6iw&V<5rz{=bkcQDN+do=mCM|sd+?zg+CbGq`R;G+YsB?zvmPHq!C zzbXsN>MeaQW8`Vvf@Q>!$Z=uC(ybRn;>tyuda0h`^n=3kPW6r@SyU|VA5ApQQH{Rc zgPUyEB^Uqdl>b#8sbe5@JV~N55+=nb{kvqlA|mye)t(q-fAH-9MqB_LN<977fcpm; zpgaOY3}_)iTa+dUz(R=)9hM72#_~GjAfpbD-&GeB|&@4CX@$3+=+2>(CU-UF(sv}+r-AY~M3jz|#@1gsQ60jVm23?Sp9 zjs*k-1r($U1VSQ$0s|NkrAWz$iem#ID4j@=8VHC8NC`Edlt4lYA<4f_aAtJ=_gnwJ z-sfAc#ahoiIp^HxKIh!`-q*FSYhPy|I7Xn4X#AL|Y`wKF(Agf%y@M(93pMe0;!*lW z<6wHrza}ejB0iJpF*(nw#M)*(PhcA~RsS>MIzl*c#a^PY+=dM5A+Sam2g4@!gY6(1 zQWV{l2&dKWv1POlR_f%fg?<=F&<;-p`fTBAIu}wtA+*wc#vk8?56E>q*z71Z?0ija z4{dSig63tznW+PJxAFWucyKaa@0`2z@x%;S;C#P871Nmp??ip@X-W-hJ(KhhP%XdI*?Xl? ze|T@pZ#u&W{Di>HE)a}$`Fgi*nHSmYVrW>_eoBxfNh*C@{qf1R8dsguMY0x%(^JT9 zZeRZ}U1-0E0f9RG(h2C0rc{VmM+P$I<5YjQxA^Dst0cpm&^cTuw-6m}Lo2sR6GxjB zqiWIrWSbmHo!+P&;1aCnv44p3aBxaLH~TOrZEO1JY&7+d+us)(UJv2QQ_g4swv_&J za{IXQ)my5R)C8AzV&2s8PXt3roy~Moa3d*Vs;-e6I;sV@K9JMjrjSrtH)S?15Xxe6 zruOOwH&BnIAW`pFDzH_X8>-)_#2P~D+BwmlfQ-(Nk_2zDt_>de#gnF(&e39N|Qg!HDlnapZ5 zrffgLgRnH+@)N| zgFm2WMO%6->Qj)(x{aQ~w?8`c;~+^*TJh@4vK;x%TyiUS-a}4-ajgA+I9f%grEo@~&iOAj_ZDxL1mTA9f_ z87!N<5x5Bz`6*l3ARuenk4ZXc;1XA6I)M1UFNkHnh08=~V4=AaYU!^>8_dQgI= z2i?5{rH@mzY1OLRedFA;#9C*ak)pxnJ1X&GJbBN45%ML78X_o#wvY1v9bF&qQDu z_Z>QE~Id8amu zG_uf6^7RQ3TJo1S|9I~rlI)lBvqil3rJzJ;>W()$p?J#?P`!M7aXW%){$3}D!``rs z(iXIXl+^w^(zoohDN{*)Ix ze>eTnTApP~=iZ%qN;8+F#5i~fn1aBH{9w4Y?92j7l43XBZh-9vu8};rObt0ZLA@^6 z9Pcxn1W#0F2VZh?ME8cvT3PxK?1L*iB%;YFrQomb8v?sZC+ChnAU1Pr8wxz2@t_10 zb^#ZPuK@!9>DDq*HB?xG8?k#(cNjE9Dx;=96e-;P!PzbV@ce5aA$8N+qZ16U8FjI? zEQ-M1g69)s2@L5BWb23Qy=(0EAkh$1@QgsBKYyEX zknu{3;`Idzc#x#>2ABn0cz~@rH9UqmcNHcxUddQT2*v+s_&}QS>ud;l1*Y`>1ra)KR$yw zY&xf_8u}6R*x=q*&=7Sgyuv_rJ?iOGhO$sZ!3ni1@caS&hTd_AT{19Z*#n6nacY|R z1X3rcj76v^=yDa+ZTv6#EEb8g{x6)Ooi<~K(wj%K#;7VNGHi0nCA&fv5bYKJSY(j4@uNEujSt;|5|kb3t>S1I)xY;^$ChMO5Q^uQn)6^q+n z%0D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 diff --git a/MastodonSDK/Sources/MastodonAsset/Generated/Assets.swift b/MastodonSDK/Sources/MastodonAsset/Generated/Assets.swift index 25dcc168e..f44e0ca7a 100644 --- a/MastodonSDK/Sources/MastodonAsset/Generated/Assets.swift +++ b/MastodonSDK/Sources/MastodonAsset/Generated/Assets.swift @@ -209,8 +209,6 @@ public enum Asset { public static let elephantThreeOnGrassWithTreeThree = ImageAsset(name: "Scene/Welcome/illustration/elephant.three.on.grass.with.tree.three") public static let elephantThreeOnGrassWithTreeTwo = ImageAsset(name: "Scene/Welcome/illustration/elephant.three.on.grass.with.tree.two") } - public static let mastodonLogoBlack = ImageAsset(name: "Scene/Welcome/mastodon.logo.black") - public static let mastodonLogoBlackLarge = ImageAsset(name: "Scene/Welcome/mastodon.logo.black.large") public static let mastodonLogo = ImageAsset(name: "Scene/Welcome/mastodon.logo") public static let mastodonLogoLarge = ImageAsset(name: "Scene/Welcome/mastodon.logo.large") public static let signInButtonBackground = ColorAsset(name: "Scene/Welcome/sign.in.button.background") diff --git a/MastodonSDK/Sources/MastodonLocalization/Generated/Strings.swift b/MastodonSDK/Sources/MastodonLocalization/Generated/Strings.swift index 9535b932f..ee56f9e31 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Generated/Strings.swift +++ b/MastodonSDK/Sources/MastodonLocalization/Generated/Strings.swift @@ -164,10 +164,10 @@ public enum L10n { public static func shareUser(_ p1: Any) -> String { return L10n.tr("Localizable", "Common.Controls.Actions.ShareUser", String(describing: p1), fallback: "Share %@") } - /// Sign In - public static let signIn = L10n.tr("Localizable", "Common.Controls.Actions.SignIn", fallback: "Sign In") - /// Sign Up - public static let signUp = L10n.tr("Localizable", "Common.Controls.Actions.SignUp", fallback: "Sign Up") + /// Log in + public static let signIn = L10n.tr("Localizable", "Common.Controls.Actions.SignIn", fallback: "Log in") + /// Create account + public static let signUp = L10n.tr("Localizable", "Common.Controls.Actions.SignUp", fallback: "Create account") /// Skip public static let skip = L10n.tr("Localizable", "Common.Controls.Actions.Skip", fallback: "Skip") /// Take Photo @@ -666,13 +666,13 @@ public enum L10n { } } public enum Login { - /// Log you in with the server where you created your account - public static let subtitle = L10n.tr("Localizable", "Scene.Login.Subtitle", fallback: "Scene.Login.Subtitle") - /// Welcome Back! - public static let title = L10n.tr("Localizable", "Scene.Login.Title", fallback: "Welcome") + /// Log you in on the server you created your account on. + public static let subtitle = L10n.tr("Localizable", "Scene.Login.Subtitle", fallback: "Log you in on the server you created your account on.") + /// Welcome back + public static let title = L10n.tr("Localizable", "Scene.Login.Title", fallback: "Welcome back") public enum ServerSearchField { - /// Search for your server - public static let placeholder = L10n.tr("Localizable", "Scene.Login.ServerSearchField.Placeholder", fallback: "Scene.Login.ServerSearchField.Placeholder") + /// Enter URL or search for your server + public static let placeholder = L10n.tr("Localizable", "Scene.Login.ServerSearchField.Placeholder", fallback: "Enter URL or search for your server") } } public enum Notification { @@ -1110,10 +1110,8 @@ public enum L10n { } } public enum ServerPicker { - /// Pick a server based on your interests, region, or a general purpose one. - public static let subtitle = L10n.tr("Localizable", "Scene.ServerPicker.Subtitle", fallback: "Pick a server based on your interests, region, or a general purpose one.") - /// Pick a server based on your interests, region, or a general purpose one. Each server is operated by an entirely independent organization or individual. - public static let subtitleExtend = L10n.tr("Localizable", "Scene.ServerPicker.SubtitleExtend", fallback: "Pick a server based on your interests, region, or a general purpose one. Each server is operated by an entirely independent organization or individual.") + /// Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers. + public static let subtitle = L10n.tr("Localizable", "Scene.ServerPicker.Subtitle", fallback: "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.") /// Mastodon is made of users in different servers. public static let title = L10n.tr("Localizable", "Scene.ServerPicker.Title", fallback: "Mastodon is made of users in different servers.") public enum Button { @@ -1161,10 +1159,8 @@ public enum L10n { public static let noResults = L10n.tr("Localizable", "Scene.ServerPicker.EmptyState.NoResults", fallback: "No results") } public enum Input { - /// Search servers - public static let placeholder = L10n.tr("Localizable", "Scene.ServerPicker.Input.Placeholder", fallback: "Search servers") - /// Search servers or enter URL - public static let searchServersOrEnterUrl = L10n.tr("Localizable", "Scene.ServerPicker.Input.SearchServersOrEnterUrl", fallback: "Search servers or enter URL") + /// Search communities or enter URL + public static let searchServersOrEnterUrl = L10n.tr("Localizable", "Scene.ServerPicker.Input.SearchServersOrEnterUrl", fallback: "Search communities or enter URL") } public enum Label { /// CATEGORY diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/Base.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/Base.lproj/Localizable.strings index 73bc292cf..2a3f1efbf 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/Base.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/Base.lproj/Localizable.strings @@ -55,8 +55,8 @@ Please check your internet connection."; "Common.Controls.Actions.Share" = "Share"; "Common.Controls.Actions.SharePost" = "Share Post"; "Common.Controls.Actions.ShareUser" = "Share %@"; -"Common.Controls.Actions.SignIn" = "Sign In"; -"Common.Controls.Actions.SignUp" = "Sign Up"; +"Common.Controls.Actions.SignIn" = "Log in"; +"Common.Controls.Actions.SignUp" = "Create account"; "Common.Controls.Actions.Skip" = "Skip"; "Common.Controls.Actions.TakePhoto" = "Take Photo"; "Common.Controls.Actions.TryAgain" = "Try Again"; @@ -240,6 +240,9 @@ uploaded to Mastodon."; "Scene.HomeTimeline.NavigationBarState.Published" = "Published!"; "Scene.HomeTimeline.NavigationBarState.Publishing" = "Publishing post..."; "Scene.HomeTimeline.Title" = "Home"; +"Scene.Login.ServerSearchField.Placeholder" = "Enter URL or search for your server"; +"Scene.Login.Subtitle" = "Log you in on the server you created your account on."; +"Scene.Login.Title" = "Welcome back"; "Scene.Notification.FollowRequest.Accept" = "Accept"; "Scene.Notification.FollowRequest.Accepted" = "Accepted"; "Scene.Notification.FollowRequest.Reject" = "reject"; @@ -401,13 +404,11 @@ uploaded to Mastodon."; "Scene.ServerPicker.EmptyState.BadNetwork" = "Something went wrong while loading the data. Check your internet connection."; "Scene.ServerPicker.EmptyState.FindingServers" = "Finding available servers..."; "Scene.ServerPicker.EmptyState.NoResults" = "No results"; -"Scene.ServerPicker.Input.Placeholder" = "Search servers"; -"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "Search servers or enter URL"; +"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "Search communities or enter URL"; "Scene.ServerPicker.Label.Category" = "CATEGORY"; "Scene.ServerPicker.Label.Language" = "LANGUAGE"; "Scene.ServerPicker.Label.Users" = "USERS"; -"Scene.ServerPicker.Subtitle" = "Pick a server based on your interests, region, or a general purpose one."; -"Scene.ServerPicker.SubtitleExtend" = "Pick a server based on your interests, region, or a general purpose one. Each server is operated by an entirely independent organization or individual."; +"Scene.ServerPicker.Subtitle" = "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers."; "Scene.ServerPicker.Title" = "Mastodon is made of users in different servers."; "Scene.ServerRules.Button.Confirm" = "I Agree"; "Scene.ServerRules.PrivacyPolicy" = "privacy policy"; From 6384a776977c8a9a9676c58d6a1a64974711d5d1 Mon Sep 17 00:00:00 2001 From: CMK Date: Wed, 16 Nov 2022 18:45:27 +0800 Subject: [PATCH 498/598] chore: remove large logo --- .../Contents.json | 12 - .../logo.large.pdf | 1286 ----------------- .../MastodonAsset/Generated/Assets.swift | 1 - 3 files changed, 1299 deletions(-) delete mode 100644 MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Welcome/mastodon.logo.large.imageset/Contents.json delete mode 100644 MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Welcome/mastodon.logo.large.imageset/logo.large.pdf diff --git a/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Welcome/mastodon.logo.large.imageset/Contents.json b/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Welcome/mastodon.logo.large.imageset/Contents.json deleted file mode 100644 index ff1493e96..000000000 --- a/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Welcome/mastodon.logo.large.imageset/Contents.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "images" : [ - { - "filename" : "logo.large.pdf", - "idiom" : "universal" - } - ], - "info" : { - "author" : "xcode", - "version" : 1 - } -} diff --git a/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Welcome/mastodon.logo.large.imageset/logo.large.pdf b/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Welcome/mastodon.logo.large.imageset/logo.large.pdf deleted file mode 100644 index 63f9239a8..000000000 --- a/MastodonSDK/Sources/MastodonAsset/Assets.xcassets/Scene/Welcome/mastodon.logo.large.imageset/logo.large.pdf +++ /dev/null @@ -1,1286 +0,0 @@ -%PDF-1.7 - -1 0 obj - << /Type /XObject - /Length 2 0 R - /Group << /Type /Group - /S /Transparency - >> - /Subtype /Form - /Resources << >> - /BBox [ 0.000000 0.000000 968.000000 252.000000 ] - >> -stream -/DeviceRGB CS -/DeviceRGB cs -q -1.000000 0.000000 -0.000000 1.000000 4.000000 4.000000 cm -0.000000 0.000000 0.000000 scn -0.000000 244.000000 m -960.000061 244.000000 l -960.000061 0.000000 l -0.000000 0.000000 l -0.000000 244.000000 l -h -f -n -Q - -endstream -endobj - -2 0 obj - 237 -endobj - -3 0 obj - << /Length 4 0 R - /Range [ 0.000000 1.000000 0.000000 1.000000 0.000000 1.000000 ] - /Domain [ 0.000000 1.000000 ] - /FunctionType 4 - >> -stream -{ 0.388235 exch 0.392157 exch 1.000000 exch dup 0.000000 gt { exch pop exch pop exch pop dup 0.000000 sub -0.050980 mul 0.388235 add exch dup 0.000000 sub -0.164706 mul 0.392157 add exch dup 0.000000 sub -0.200000 mul 1.000000 add exch } if dup 1.000000 gt { exch pop exch pop exch pop 0.337255 exch 0.227451 exch 0.800000 exch } if pop } -endstream -endobj - -4 0 obj - 339 -endobj - -5 0 obj - << /Type /XObject - /Length 6 0 R - /Group << /Type /Group - /S /Transparency - >> - /Subtype /Form - /Resources << /Pattern << /P1 << /Matrix [ 0.000000 -242.733612 242.733612 0.000000 -238.733612 247.147812 ] - /Shading << /Coords [ 0.000000 0.000000 1.000000 0.000000 ] - /ColorSpace /DeviceRGB - /Function 3 0 R - /Domain [ 0.000000 1.000000 ] - /ShadingType 2 - /Extend [ true true ] - >> - /PatternType 2 - /Type /Pattern - >> >> >> - /BBox [ 0.000000 0.000000 968.000000 252.000000 ] - >> -stream -/DeviceRGB CS -/DeviceRGB cs -q -1.000000 0.000000 -0.000000 1.000000 4.000000 2.211426 cm -/Pattern cs -/P1 scn -223.730621 191.199173 m -220.269104 217.264771 197.839127 237.841110 171.284851 241.799530 c -166.791870 242.471710 149.813065 244.936386 110.478516 244.936386 c -110.183769 244.936386 l -70.812729 244.936386 62.378529 242.471710 57.885239 241.799530 c -32.030567 237.915787 8.459440 219.468048 2.713966 193.066116 c --0.011457 180.070541 -0.306097 165.655823 0.209523 152.436340 c -0.946121 133.465759 1.093443 114.570023 2.787622 95.673965 c -3.966180 83.126495 5.991842 70.690964 8.901408 58.442535 c -14.352245 35.812286 36.376640 16.990784 57.959160 9.335617 c -81.051300 1.344009 105.911919 -0.000015 129.703659 5.489471 c -132.318665 6.124054 134.896866 6.833466 137.475067 7.655151 c -143.257462 9.522385 150.033890 11.613541 155.042755 15.273193 c -155.116684 15.310623 155.153488 15.385147 155.190292 15.459976 c -155.227097 15.534515 155.263901 15.609360 155.263901 15.721619 c -155.263901 34.019882 l -155.263901 34.019882 155.263901 34.169266 155.190292 34.243790 c -155.190292 34.318314 155.116684 34.393158 155.042755 34.430573 c -154.969147 34.467682 154.895538 34.505402 154.822235 34.542511 c -154.748016 34.542511 154.674713 34.542511 154.601089 34.542511 c -139.353043 30.845444 123.700752 28.978195 108.047844 29.015610 c -81.051300 29.015610 73.795784 42.011505 71.733467 47.388733 c -70.076012 52.056534 69.008049 56.948853 68.566086 61.877975 c -68.566086 61.952805 68.566078 62.027344 68.602882 62.102188 c -68.602882 62.176712 68.676498 62.251556 68.750420 62.288971 c -68.823723 62.326080 68.897331 62.363495 68.970940 62.400925 c -69.228882 62.400925 l -84.218689 58.741257 99.613655 56.874008 115.045425 56.874008 c -118.765503 56.874008 122.448158 56.874023 126.168236 56.985977 c -141.673615 57.434372 158.026428 58.218628 173.310669 61.243088 c -173.678726 61.317917 174.084183 61.392456 174.415436 61.467285 c -198.502548 66.172516 221.410675 80.885986 223.730621 118.154839 c -223.804840 119.611092 224.025665 133.540283 224.025665 135.033966 c -224.025665 140.225021 225.682816 171.742767 223.767731 191.124039 c -223.730621 191.199173 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 49.436829 165.103180 cm -1.000000 1.000000 1.000000 scn -0.000000 13.742415 m -0.000000 21.360460 6.003528 27.484528 13.443068 27.484528 c -20.882914 27.484528 26.885828 21.323042 26.885828 13.742415 c -26.885828 6.161789 20.882914 0.000004 13.443068 0.000004 c -6.003528 0.000004 0.000000 6.161789 0.000000 13.742415 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 108.917572 102.776794 cm -1.000000 1.000000 1.000000 scn -140.506592 64.230759 m -140.506592 1.045578 l -116.014610 1.045578 l -116.014610 62.363815 l -116.014610 75.284561 110.711319 81.819916 100.067276 81.819916 c -88.318474 81.819916 82.388847 74.014786 82.388847 58.667053 c -82.388847 25.094963 l -58.081230 25.094963 l -58.081230 58.667053 l -58.081230 74.089928 52.225231 81.819916 40.402508 81.819916 c -29.795889 81.819916 24.455156 75.284561 24.455156 62.363815 c -24.455156 1.082703 l -0.000000 1.082703 l -0.000000 64.230759 l -0.000000 77.114693 3.204189 87.384232 9.649378 95.001968 c -16.315704 102.620323 25.044342 106.466766 35.835602 106.466766 c -48.357925 106.466766 57.860092 101.537338 64.121254 91.678780 c -70.235199 81.222137 l -76.348824 91.678780 l -82.609680 101.499916 92.075348 106.466766 104.634178 106.466766 c -115.425430 106.466766 124.154060 102.582596 130.820389 95.001968 c -137.265579 87.384232 140.469772 77.189224 140.469772 64.230759 c -140.506592 64.230759 l -h -224.773392 32.825264 m -229.855560 38.314743 232.250977 45.111115 232.250977 53.401466 c -232.250977 61.691818 229.818756 68.562721 224.773392 73.790886 c -219.912048 79.280365 213.725754 81.894753 206.248169 81.894753 c -198.771530 81.894753 192.621094 79.280365 187.722946 73.790886 c -182.861298 68.562721 180.430618 61.691818 180.430618 53.401466 c -180.430618 45.111115 182.861298 38.239906 187.722946 32.825264 c -192.584290 27.597099 198.771530 24.945297 206.248169 24.945297 c -213.725754 24.945297 219.875244 27.559677 224.773392 32.825264 c -h -232.250977 103.927216 m -256.373688 103.927216 l -256.373688 2.875412 l -232.250977 2.875412 l -232.250977 14.787994 l -224.957428 4.892029 214.866684 0.000015 201.755173 0.000015 c -188.643661 0.000015 178.552017 5.041397 169.602249 15.348358 c -160.799988 25.655014 156.343811 38.389275 156.343811 53.326630 c -156.343811 68.264290 160.836792 80.811768 169.602249 91.118423 c -178.588821 101.425079 189.269653 106.653244 201.755173 106.653244 c -214.240997 106.653244 224.957428 101.798645 232.250977 91.939789 c -232.250977 103.852371 l -232.250977 103.927216 l -h -337.547302 55.305824 m -344.656830 49.816643 348.193237 42.160881 348.009216 32.488808 c -348.009216 22.182152 344.472839 14.078583 337.179291 8.477158 c -329.888794 2.987366 321.083191 0.186798 310.403564 0.186798 c -291.142242 0.186798 278.067230 8.290054 271.141724 24.198761 c -292.065430 36.932709 l -294.859528 28.269096 301.012146 23.787773 310.403564 23.787773 c -319.022095 23.787773 323.294586 26.588638 323.294586 32.451691 c -323.294586 36.708817 317.694061 40.555260 306.278320 43.542610 c -301.969055 44.737854 298.398956 45.970215 295.635529 46.978371 c -291.691223 48.583992 288.341980 50.413811 285.541718 52.654320 c -278.619293 58.143799 275.085999 65.388893 275.085999 74.687393 c -275.085999 84.583061 278.435272 92.462723 285.173676 98.138992 c -292.102234 104.001740 300.530579 106.802917 310.624390 106.802917 c -326.717407 106.802917 338.467468 99.744926 346.165894 85.404739 c -325.613281 73.305664 l -322.632080 80.176872 317.546814 83.612328 310.624390 83.612328 c -303.330841 83.612328 299.794495 80.811768 299.794495 75.322281 c -299.794495 71.064850 305.395020 67.218414 316.810730 64.230759 c -325.613312 62.214447 332.535675 59.189682 337.547302 55.305824 c -337.584137 55.305824 l -337.547302 55.305824 l -h -414.227722 78.907104 m -393.086243 78.907104 l -393.086243 36.858185 l -393.086243 31.816803 394.966400 28.754616 398.536469 27.372581 c -401.152710 26.364426 406.382080 26.177948 414.264496 26.551216 c -414.264496 2.912827 l -398.021179 0.896210 386.237457 2.539566 379.315033 7.954208 c -372.389526 13.182373 369.037201 22.928986 369.037201 36.820763 c -369.037201 78.907104 l -352.793854 78.907104 l -352.793854 103.964630 l -369.037201 103.964630 l -369.037201 124.354202 l -393.159851 132.233719 l -393.159851 103.927216 l -414.301331 103.927216 l -414.301331 78.869682 l -414.264496 78.869682 l -414.227722 78.907104 l -h -491.128937 33.422424 m -495.990265 38.650589 498.419403 45.335320 498.419403 53.438576 c -498.419403 61.542450 495.990265 68.152031 491.128937 73.455032 c -486.227722 78.682892 480.262238 81.334396 472.971741 81.334396 c -465.678192 81.334396 459.712677 78.720314 454.811462 73.455032 c -450.137238 67.965553 447.705017 61.355354 447.705017 53.438576 c -447.705017 45.522110 450.137238 38.911903 454.811462 33.422424 c -459.675873 28.194565 465.678192 25.543068 472.971741 25.543068 c -480.262238 25.543068 486.227722 28.156837 491.128937 33.422424 c -h -437.838196 15.460297 m -428.296478 25.766960 423.619141 38.277023 423.619141 53.438576 c -423.619141 68.600441 428.296478 80.923401 437.838196 91.230370 c -447.373779 101.537338 459.160614 106.765503 472.971741 106.765503 c -486.779785 106.765503 498.606476 101.537338 508.108337 91.230370 c -517.610168 80.923401 522.508362 68.189453 522.508362 53.438576 c -522.508362 38.688011 517.610168 25.766960 508.108337 15.460297 c -498.566620 5.153336 486.966888 0.112274 472.971741 0.112274 c -458.976593 0.112274 447.336975 5.153336 437.838196 15.460297 c -h -603.163696 32.862373 m -608.025024 38.351860 610.457275 45.148232 610.457275 53.438576 c -610.457275 61.728928 608.025024 68.600441 603.163696 73.828300 c -598.305420 79.318092 592.119080 81.931870 584.638489 81.931870 c -577.163940 81.931870 570.974548 79.318092 565.932251 73.828300 c -561.067871 68.600441 558.638733 61.728928 558.638733 53.438576 c -558.638733 45.148232 561.067871 38.277023 565.932251 32.862373 c -571.011353 27.634209 577.347961 24.983017 584.638489 24.983017 c -591.935059 24.983017 598.268616 27.597099 603.163696 32.862373 c -h -610.457275 144.407715 m -634.579895 144.407715 l -634.579895 2.912827 l -610.457275 2.912827 l -610.457275 14.825424 l -603.350830 4.929443 593.256958 0.037430 580.148254 0.037430 c -567.036438 0.037430 556.798462 5.078506 547.772034 15.385773 c -538.969421 25.692429 534.515991 38.426392 534.515991 53.364052 c -534.515991 68.301407 539.006226 80.848877 547.772034 91.155533 c -556.721802 101.462807 567.585449 106.690666 580.148254 106.690666 c -592.704895 106.690666 603.350830 101.836067 610.457275 91.977203 c -610.457275 144.370377 l -610.457275 144.407715 l -h -719.326782 33.534683 m -724.188110 38.762848 726.620300 45.446960 726.620300 53.550835 c -726.620300 61.654091 724.188110 68.264290 719.326782 73.566986 c -714.465454 78.794846 708.499878 81.446350 701.169556 81.446350 c -693.842285 81.446350 687.913635 78.832268 683.012390 73.566986 c -678.335083 68.077202 675.902893 61.467613 675.902893 53.550835 c -675.902893 45.633751 678.335083 39.024162 683.012390 33.534683 c -687.876831 28.306213 693.879089 25.655014 701.169556 25.655014 c -708.463074 25.655014 714.428650 28.269096 719.326782 33.534683 c -h -666.032959 15.572266 m -656.534180 25.879227 651.817017 38.389275 651.817017 53.550835 c -651.817017 68.712090 656.497375 81.035660 666.032959 91.342316 c -675.571594 101.649284 687.358459 106.877449 701.169556 106.877449 c -714.980652 106.877449 726.804321 101.649284 736.306152 91.342316 c -745.841736 81.035660 750.706177 68.301399 750.706177 53.550835 c -750.706177 38.799957 745.841736 25.879227 736.306152 15.572266 c -726.767517 5.265610 715.164673 0.223923 701.169556 0.223923 c -687.174377 0.223923 675.534790 5.265610 666.032959 15.572266 c -h -855.082458 65.089851 m -855.082458 3.025085 l -830.959839 3.025085 l -830.959839 61.840881 l -830.959839 68.525604 829.300476 73.566986 825.877625 77.375702 c -822.709290 80.811768 818.216003 82.604172 812.431458 82.604172 c -798.807434 82.604172 791.882019 74.313820 791.882019 57.546638 c -791.882019 2.987350 l -767.759216 2.987350 l -767.759216 103.964630 l -791.882019 103.964630 l -791.882019 92.612091 l -797.663452 102.097687 806.870789 106.765503 819.724976 106.765503 c -829.999756 106.765503 838.434265 103.142960 844.991699 95.674278 c -851.733154 88.205605 855.082458 78.085426 855.082458 64.977905 c -f -n -Q - -endstream -endobj - -6 0 obj - 10350 -endobj - -7 0 obj - << /Type /XObject - /Subtype /Image - /BitsPerComponent 8 - /Length 8 0 R - /Height 502 - /Width 1936 - /ColorSpace /DeviceGray - /Filter [ /FlateDecode ] - >> -stream -x읅CJ*8ť8").i{LMvei{}N&9g? -`XzZS)fYi„  M5Ze6„레) GٗĂ Y%␱$UUr#2 &ZiހfJY-"B -ۡHQ-(fJ̊'O9#BKJӓPȏi{H!LPAW*FsWA%5 . -_PP(j=[^^YQYYUUSJ}]u dn+f`8HF*sv]ׯI_ռ:*e]XP %{Zg%&*(eDnÄ &>z_RY[ -jrZhk_e&>{(؄  U&ft4q gfC-/kQh[ZZZ[;::vv}z=߿uJ 2~-t\ggGG{[[kk Fe_TWWUŴFAQbAvVmfQ̱#^6&L0wqd̂M-XͫҼ1I"LOD0N;cEO:ㅘ/9SU]ًE*Nm_q`pphhxdddtttlt||B199959555-̰,YMSS91ёᡡA)}}{޽z5MGhz\nsjrr29.fJ%K59L0ayIT|jnwCc3 fm!ff&GkKS= 0Ac%>4T1&N1".zYZ~]4p^0wl|eB/,,...---/- - -kk -ce -⮮r -/ ..,.,,RQm(~@4;G7\"~tX(TqBXXĥUյuov{Fc_X+5+pk[w`wwwbe:sz!NvwvIp[EP^ZBMϣѢ11Q=J;c;7_*J^j"#=5% 'vlgZ'?aL„ ƃ<QR94{xj>I6eWEa}ԏrR3XUQleU5Bk[gwOoZxj,*xeE_xї΃U('''ˋKbf+Y2_XIL3R&}V=Ծh-(i444f,@oϻΎV+KK -E+;&JLф & E&5_?-#HW]I ]aA2.~PqZFVN^!ʚں}C3X˫m ߽},Z/EwLZqOL`S>f,KLjd 1$3|$1)Rٗ\iQXӢņƀF9c;PytdhPێ|u`*rltT'OJ &LGĤV4M]|Wǫ줘%L=z̀qTL|41޴E OV6D 4h_xQ(]t'zA_oVKBY0Pj2kHC$yr\P JZ ljQТvֺռfb~*Z 7;;YXp &LEƦU8o,Y0ׯ/֦zscq?e,:6.19-=+]\QU[]o?6X[;Z6FъZ+- - ?Ԭ6~o3DHTFઊ/hQhhQW1mD1//.Ltu67(-.LуɢU'L0NqUs[ן? cX߿^m5UF< -*aleᦎGgf.~Hq/Fy4(b0ưX¢oo߿4u&%dZ~2 ?HpT?FII-hp,&3zR~&:eadgɏ~0am['7_ Fo>.M q'2f2/*|U]8xiXbq⾠P{_'Yam(|*Uec_Cx$9VʙIЦrVGdF/lm,-`*l{SWSQR$*yBlԳO:\„ cQD\j^UМ03p5B7W`D0$6~42:.>)5#;م嵍-M|%-jsXibƊَo_ʣ -_됅/Dd̵l1u,?PL_~֊˧'h͵Źɑ]M *K -s_''Eq[?Ľϳ &L_aH+$B|u񡿹<792~hĔ<, 17..MaLQm2_ʮ̂ u} p!Zf֚oRWWgG[+ cC}5%9ib$G>Q^밍&LWUǴ/V"߱g_-$:zyjfNAIūΞyb'gbQ\/gp3l]R rLVc`ogsuinz|uuYqFh<;a0a(}}l?nj70 -Ʊ I/rʪ;'0׷wN/ŷXŨ*Ĕ#?|Ύ=޶dzoH?Dߞ*L~\DeQb+|}}yNZ[F%jm|YhhdT2O1L0v?=1э?8<~FP8"2:619=eE훶ޡ|J3T(W -)P 4>C8yp%~F'a_>tsuyT໎UhTS#r0ahL}\64m-h0 -) lm8%3NcS[8h6[!%$l t:m4KV2Vɛ&z߶Wf$8hpM -_c>>A6t_q{ z68E>O@W׷t^\=<eaUbM-sĭع B@"fI$ 嚶aK!`&ˀ8w֗F[j -sFx8Ä ޯΫ[(},W~J3Ba78#oDLƌ/?1b]VX^^NAʆ(dxCvkuGcĤ;TǛ=сƚ"Ƒb<0a~vm͏o&>Wx_ 'e4Cc4&ʘ 4Oᕐ>qe/a_?[~>?9YW$/3%1V9iFya -"'OFDDF<}~?AƏ=վ?™oMmKL/o6]b -X,c~t{i 8pD@o?]_`#/͌w5(HD58L ?~ -1rݛI|ksI"̿ j<WuJF˪.l]o>bEu /N5!\+̸@E`H(x^G`ŽS8طCgEȋӣM R+aصg*瓧_=OJNz !Oc!E;߯v`kC:i8}HWuNaym۾Ók6N+mޖ"3(ֆ_&<9&'Z(TbTq:.1}F>9^ikz@)jPjƑezNbaFDO3NF߆GO0S^ּx?26AyaU|8ߘR;ja4F0KP\cy'J#:p@{ ?,[s-+ -,9LbGcd)(*.)yY2q}q|hL͐ѦaW#c9U'VN.?~ўj Āo˾mmαB@U *D-+EE ymEmٷH?m,͌u4V`"c06VDZQeյ^Ue<}$WW;Ə1Nq#BSjVA٫7og7ϱmXեI-wW_dodд,'h?b#_Ou./JM}VaBG~ 򱲌2.|Y^]mgkcMInj|a(}bH8 mDnrLXˠ?~㶞ݣ돷JcOG0`mb5Vx 6rLݗ-'&Z\l-enFEY0w*Fe,z\)7mo u,|~O@WeC/ڠ &s}W۠S#_䗽j[>8ئgܑ2c.pm-Ca%03Էom:,|1dľ펜'yݵɡw-e/RL5$2WgU_oK!ƩJB,NގʢS:7TGmGDFYʸPƳ+뛛FKsRb#7x82}guX{`|:.)#՝sc%Î:"A֎rկg +Թ`&?Y13y`v[/-|Ѭ#w0Ș o0ܗ<6rOŢ2VcY(c{Dom-M6UƅiϛX -}~K< _uʋ:9^?Wa\e -O㟄Bʜp/:\PQ\epA>^l. .LAp -]cc,gQ'fdeشӝ˫㽵>Cw|ڎ+r:?ML.j8>Wru*RhֆAމ\ϱo;-S_LÝչ/R#E!Ä.o~<eq(7bO)e|2x{{}q1;V]>;3}K;_}yZ3t<=kpra}Fcdq =~Gƪ4B7a|628Ӵ e22BP[8qxcsg>Wx_QqIe[{gN,ئ4a 'G%{UiXqh|Ɩa%` aw0E:\j.IKD!ؠ_,3K+_7wznɰ22N듭|>x oQK+ ?_\"$j"_TԷͮ]\ƫ!DcnIA3iKə ۹F - 斄K1ܠp{Ҽ1 -9UF=O7uiemʸoh|z^,㳋+_}X}֭a?fhDDǧdV5tO,\~Tߪe˓eľ -!@4wՎajoF%ۏGks=շ -9:~SP2nx7<,݃SQƟQƸt}<.I!]Dr>W1~<']Tkpjqkx(].B.VC -8?-^Xv&̇Ui"x<}xu>?VW.V)/\u<-ee'ƌQRt1I 5~c_6jJB>e/N7'ӟ-0>=*_V׷vL/X2Ac>RWG> ?J\߸cɰ|>$yqznImkϨ:O 7;V_oLm=X, Qn鹅!Y>;\@!g$ńrF%ԶtM/oɘGm+md]e}ZVm; -c$;ۉ6YWwlnm)8GL_# Er`6xqn1L }FZ:Q䯟oPȝ>0r<|Ugxzquk39ʙ[W$>|>䱃jƏ#φI$q^Y]{;MեJ \ߝ<[mS Յ}?r G0.kP~nN-{1z mL )Zqxx@+E۳յW+rSbmFYǨ 1CǶR7R-@Ű6%Jʕ kU,C;%hVKCd6PG# -yz SO3 -_ L/_[1CU?ZcƏu6P탉Xޯ_d!긮rqmHX0!eLől1T,0Vb+Y vl[$?:H@!ȏE!'?0㘤ͣJ[&c}.XW`?u}0zuW^!PԱy[z m(CD潘芿Z߾|P -Y^J/u&Sap1&9g]`EUaش|W}ǒ}:ȇrEgc/m]P,xouغ`7bGceCpawR$!vQR -yY)<9ؔ뇗Ikˋ義aOW]_mfڈ}ϕ+w -(8 xjqK;z6r8UO[-n -AruTuFQB+MKdl Eܪ׷'d) ??T-2~L&C̈́>a}o 鹨ŭs) ? O w4*ZG63p L>n_XKKrR⣞1Zf7\a/~|߯}W i8!~m>` F~:WE) zZqAjlX X/OK`l*I /XQ9%}XJ!ؒxG#*`?6qrC~B>\RSI} W1qԁ+5^?菉.;W>l{^o}=ywbqˇUBG>LҹDYLV!Բ&Q`)*Qȇc -3wȝ0Rhmj/C+c RDF=>6D:M~Q\~laS;}ΓR!!.Mpsq'h+t4_/ 3 \mC8gHwcE~zb4 1}M?@a2,>Rs)}ֿwhu<:fAst{ܓ A(N0on:pw8G|Oho> u֗wU_kc1j] X|7cq|> M}||m_?au 0,0GD'W6vϭ^kuLA017b0?@#xFlc%6×o 8b!(䫓N3I"? ӨܲΡkwd}o~8c/L+pϰ/JV}߿W>Aojyev~ľJ͆nHVR M} i@G;]k3c~Df}Lc=y$eGS;>VO:?3_-8>VyW? 孎NL/z3u|>&0o>V]m1Y@#L6~8l[,>%sxvPRph YЇl0Gofp},Hfp->jXƏYlEF~+|y>>;㈘ůWN?w@ DGT6%?-!pi<6k/lq%c M&AB+:^g=Wtk޿ _c?aOb}.ν;ńf,<|$:!=_~괸}|P --?<VA -q:(Aߝ< Xq:nMU >Fc+"v_nN6,c~$18bsJmZì>܍J,mu=pk;@;f,/KWdam=?HO WXύ/N|ӿ6W[ -s5ǃ>~!-}LV:(87%щEZWn< 50OרP7 #m#fjf޲m_yV[k+]aˆ>>6Jo11DZ?O;| }c~5I^iT|Z^śզy]罏xd+@-Ҏc_LNmۦ P7ֽ'[|z{qL~,o sL+jK/x|`Z}<8a_m"WL -oyZLȆeA*I -].cT>P6'?VXD? dbYO"5˿V]?<1{* s͘a%kD+A9 s/Td1-?xqaUq?7OVჇ2ak8"Xa{F% aW5/AqS(C}<)>"x[ }ܾF+!;1z>Ih˅&40k[GdyQP7"VYm=q TZ@GLl0 qW/9@>ߜ.O4Uc "["yHj-(9uSxɓ'@8Bp`Z} XcQx^Əw\R=Dy VjW%HE*A5܈rEh? U{).ݍZXZFMgI|9)?J(iY?j7 ]_2Pg9ˌ0bG\>l<ۗ4QBDU6CK]}R~H'QRIXRc'19xAl;4賏cL}'D i"#cbb()&1'&& ys4qR>GܳmQ8RGJB$ S&)O)`ȉ.}_mfj5>V?>] 9|TJ.%$&H&&A2KJ" ܳ]\zȋB"9C$A9A~Gƥ5v-n\߭6P? -BQUVm_{ [Oz~$+)6͒Y14HI)i$tz9L 0]Bӧ>%$<32_x"u&ҥ$%clG ؔց=xcVIJEp<}*e^j)E3|rL(2=yu._>= _lkqQNAeeeggdgge}%9왨*FjRS D^-n"Qj4==UKJzO /g֩mK NlBwHpȖ*Ϻ*U CxlouW}:&BƋ|r Wݧb)IɩYٹyEEEj.(΢ TEoA Y2H%`gf!T˗%%2ssr^dI#Dpɘ>xRZ[? b3~ +rV?z%, cX>84dM=4-UABTTlEPZZ(5$B"tԾZ8@WTL)Tb]hJ#hdt=D~v -aɆmO~%/GҟJ͖żETU-n489EtV^AҲʪꚚW^\S]UQ^^0?7EFZ2J'd]i$}b_=K&ؽ |UR!E*/,.)Euuu _,/+)dSM&Cz!B\f,nj(Tf3>k -2 tƒr $l #Tѐ6N<IJZyRB*+J^KGF=h:6‘o_$8>|-(U0RD&m Fy"ZGp}\>N"Vԅd#zLLol|#466׽EEydHi_IK6 &F*8)U&-]p~kj>Be/ rG&I,)y/hz<.~>8~(=C'Ym@a6 8ՙ -yS)=y`G]Y~FRxwA=|(bxMЄmWW;ymMM u5!张$-97F;"‘HᠣVn62-½෵67IF& -*eHC{ ~+1X(>RO.F7,zUL.RԒ\\Iu ݿufsa/ڲij"z<«@ rh\2]5=Q q"={ qnӛ/e.cׯ(i۱d'0Ԕ̊XXQ 5Cd&O'^dRƥE&R𜚚[@jji@_oOێfjU9MnvR*!(N)ؕ@e1ʟL,X2A8# БOu0Ȩx1bX Mo#$LL ͒-+#% F-rCr]|t FڙYC,~̼1\XQ|P.?ܜ.'d3)x^j2TvĀ(eLH/(*MknxT!-E2 K^Nqp9_m}UZ@םg =*']7zȊ6VZ :4%Ug:߽3.J0=9>:LTВkz|wWG2LR8e,i -FP) liUYJΔF;Jm D}lcjtN~}6N)RoZۻvxlbZ*ykˋs#C"tۛ:WŅ4Wd$Jk{@HOdY*䊔y0cw]I*"pbrzV^Qi+rWZqJ-UyUA%giƇ{u5ս,UrҢ!] e9K;'7޸3D2)g"qy<؞4}/]<ٌlM~N~7g}oj+^_ide"%WuFQr{F'gW77wwv07396X[J~.WQ bP ;Bß7JDB?WU=1qqyMݛVt$b-on!޾¬}W[s=* '3 @ 'o7[^cbaWUsG,6pwӫ2da~-^=_$G/7ڴy<ĝ=)noon,-ΣƆ4Ғ(!s?AOHϢpTnlp ؇9U7(H@;zjuyia~fr|XXK7#BKqzX~V:>>Ǵ9#ʩuAe={ccmeyP[2?[4aF!Bυ},Wp`}lF*nIFQ#o'r@Ʀ>̓JZSp*/ܠ=N|RocKaBORArZb,7NKO<y]բ퉸"/#)(\_YB%#'-b]l-N R_SVD3'%'7 ꖉhzvJޡ1J.͒cj5ܘ\__]RaNwyuzPidq:R,rP4CLZX A27i)+NBAšBm"-x -&F\^^H? ,?~َVH;F@ldfۢ_u-6ycsK6f}Ó g7_=}(>n6&w47cR[ _eYMn@@ 1^_~p[M7E,n>gxuI䈶\O75)z/r#lzj)JsC0@D()(()k4BoB7i5c1va+L?{ B/4!mLnܒT}CZ#S'DW9y~zrx&{J%#' \ЙTYA[kGƎmW%Fo"؄L ቙5UOWg.KAҦ퉠Ri9J#Rrᓨ4ǎO(Ծ=⁹V;~9h}P/8NCY*kw="(|~<75O('#91&J]?Yr9gVQU{Dkn졊TSg;_J>Z_^KP@##! =}}̲k?Q]b<'T-oU^qƶ1Ds#Qo߾~e)ׯ"fpg956uKlq+XRi -  `whxdlznisz)(?SVN7>L ᯖʢ_):V=".75 ~]0X2<²w`tzny}kn[.yH,")EZ[BξzJ{N)iYI]Z1Ymf?!d;2q Nߵ~&{lHRT. ƱL܂#ZbRl)߿}7TU uminjT A!vbx |XY.={?1./jd7=c3 (cKZ,!7$GU E[d\] N:U A? odrÜ? ';W?[Dzٕno.O <",]{CE>}yMg?O0VwӖPG,n!~ O Y@)?f&UM:!Wא'"Y!Z#  !'tji#X璟t_ǿ_M6n|T=(=݃StӍR"(RYZ?6Ԩ*;&O.Y\dU7Wy}|SU V-il78F+{/_Vk)(}F~TrgU-3k瞣~84D*<@Vpe0ۡue<!?OgG>ko.ϒa"S[U$hVlȩe5WSy̾Qɥm.ЭxGWU'zRKmd\rvI]G?f$l¾k2;I^mcFb=O -m<8ai}kյnm ,x"}Uus'HŹuG8:lcbykKގQx~QFm܅'͒+ -`oyXjYóm-f\iG1ޯCTGXZZn [h^1,o2yt:&1oRcLd[f;̍w.JfFӣQK-Mo]Ꞗ]>m5OKUhtՠCv4uoGOooc5$d8TXN0p\E9"J- oGe2pǼ}64/iOv֗fȭuUGD!eYL/]ftYWT!%G(lir`J1?tӣ|!p6ʭh[;<kpokun8A{!U)/J MɠD`%?Dd3&*Y;1Fz;j ugC] RqnycܚZl0~b:nwb'us`_8nʇ2q{Dr7S, JiŇ'gQ;RR6 O -9}-FC]A;6U6PPb.UԾD9)Ǩ'1`R"ϺѦ/ ":!U7Wi+7}>_Əa{_mHӍDZ&?FNb?x.aUm ғw78.-hnyw wBG)|*HT GSM 022ԱqCW|/JuL}8?oXm& rR:`Tu0:TAl`d$g 5m3FP4vWh.&#sbZNqU}uxD^d9xcdb'UҠ!$yH@^I,|Θѕ"FDcel=%/*]l0G}޺7:sel=%/YKCHFM0WU! |+ՕIם^X:%&E{ ZWXGJVZz˰sxn1i&`Rm -n7;^f$<{rg@#D7#&!^KD,]#0B]sVf'hTgCM FTġSK' = 6"FyVqQ$ ?Yt}v6;ZC_1q$l0 Y{ƦV -W%ql̔ĘȈ'jܟѰEAo{7D?Q Eyq -%ZEuC)5Em~$<#/5ZƏE|i3Mǿ\RåmKd WUPGZuK6<F]|$d׾Y:%b/Ȧ^.n.7i.j@~CyF^ɫ׶N/rܿ+c7DN\ heԼ3ZGKԧ22`!o{zL!LA` w^q'1Sƍ?^j]&YO%Tx$UԵҝ[>i+:9^GYQFFD'fӟdE^I#zfX^,ve$D>&Wمm=CFXH[! 8D#o,l)Q.u~@Bc c6f`7 PNRsany]fOťUWŒǏ~]0U> dЦghj~M#| H]C;bd$o|z3@]7O]71jU)L,fOi.g>5_4Of/܎a)}U^A&yY;_{f.a;nFepj-Ylxs#1dߑuU~J8Mʢ)1S\]VInM-lcφTq\D.S /^uO,1"m'PՆ?(_k~[Wy/dH_unI͛+U/Qe&L!ݲB]ed̢owOHg?]^+|,';tgqm-Z0qD^?;m_dSkul\lhdq2_SRnBh0+U ڕ+ژ2k 7y qIDWM[5F'IIw ݐ䧪㷦*pONt/+{k X3f44]_f%'%$gTwͭQrE`9\j%RkJd2>x$*W}_έ n1l44憹v!𐑼 -&>#[}3v6?1XMN@!zm.&!5gxjac*/?TEZb E`2_?-wFGGK7#*N-07IV0"'.UZ fo{CeQ6c* }L$2!F^*lr } -}{F3R03J?3*#ih#t^A!9n1i(Φ%?(zjtA j&WOư@61lonk;Ѧ-Lmw,:>}<$>_Ѐˣ~#he!!:! m 6XJSjia0H2π[DB&Kc+ )4u9iII)/ -+:&6UJԑ/؇-l~l` EDD9e=4{gIMvU#X1@Tܪwa7]3Vp)(W.lq:*חK貦W%x< _#WK9/ňU}z꘰ -ad@[q0_Q v~L\rV[Cn:? -'S!ߏ)R1@#}Wѡ*~w kg?:WR]MF)!n~d4~qW"e'ݿJshu3˛{q`J@f -D02+̚{B͝w`FlƏ}.v73Zcs?RJXۯ[ N-iKml^+W8 -DeROħ7P2']zdq?'i.z||wi,/3=ƷSK[gW#X1@~CS|~Ӵb&%2P~8R6ŭ Ԯ {(9N$0D<lG20\. {'%we=u{Wl (d)}nhJs1"=[&r{}qXY<5[1jWSel 5ba}j!+8.&43L;5Aak}l]ٺ5E=;a2ՏoeFdS2pEoLhc3NBiu~8\WQd[K &=|ebb^, /LbF!ho[]yAfrb"S;DAe7>O9Y?!ӤvveKQzUr%u^p䧃J?DL u7ז=;UD3Es"[rn$ + -sst M/o_꞊+7qA~=/6K]NDVt+_ޡGq][Et ߑ}ۏޒG+Et -К~;.{4O{5SR[ňLyQP^~c:FNdu ~ܢ7ŌG[NkC;3qb:,5KX-qUݼݝ},/C}W?dm`8t_t OyE8)"g۫} jx.? W]<^ĕ)w6du ̯yy.І!wZW(}OAW(Af*KU>:,E[ 0:ߟa& }LǢ?m˓=M%Eը㙕cz ґ>F'ʟq*c&*A!ǨzcV&IqWSTZV+Q&<Tj4,ٱ-C0YpPVzc^~J~Ѧ|Sh:xjFÕU?>{tAQpY~[zG[3M5/^dfKw68 =ޯfr^4wXٖ_V[(+Bfݤ gP)dG-ޢ/+,Z/5㶼A R0:n}G [`N:mt=q񊫓;~~+b?}8tA{e Ѱn7X{_ F6Vde疼;HFZRm{G|8v%} -_<oYY5'e@cX*}j.MToKmeE+wo}Fd_"FG#{sq%D097 j LKơj[Ҷ8d B |3a] z:lNe C>NH.zv`rqs_*+]g>0ű(K -DӴSvB~5)guW=?L~SA4@ BeM]۰ǣX$A백IGԳc(}o{:ơ< UwXv楸j0hֆ:6b"/ ի=Owh㓳 -q m3B/~M6V,,(*[SC'_*:N.j10o*|zDf]smi~fR(ȇM}1/w |uMaKYq_JO|1?uJ|TrHB~8$fKdlp/L>chH}EA9]fW<%,.#0ƌd]'[Q.{Lxi%|Q7 BMVDF(1\6͵+D+e3;%Z`#2S?;EScE'[z,rIrN1#k4QW/.k }~cE1OЇ܊̮xpc>O!GXS0<̈#W6vAߔ%e_&DPڊu[R3au\ -\;I'ֆښW ӫF-\;Ps-8dv+f rLTAXBF ?N([c# -f:+eNw? ]nʊKTQ‘7$Y,.5/pzaٰS^ɤ!]Pkuwǭ1 -BwWg[kkZzƗmsͩcc=~^zmU˻|"=2.RBEuZ5q:+ -_/rz\8CƏ(Tv\4p9pI|17Er3rɳR"cS*fύIk߹M#=VLK.A],81kؿs&FzYhki$'5A_B)V*F Z,zylB6 _w 򦩭k:tWL IH;U\36G+DBLXwY~H :ƅ29D>67D.I!<;N} ڏ'5Fߤ&0(\Ķib͊fpu7epY~ T_3z]B |7\kR=-M-S#S!Es@'eJjlnM0Ԑ5-狓ՁHϊ?}?KVЏ[K3#+;:nZv}O ̤ؠv@vжiKHjX)YA\$ 4=mZS1D!Oz'k &cyzNɵmZx˯5=]o6}d_~PwLafa SԱ B#hLA&}xq4ɘB0l91cվLB[6^M}}L`=*N~↼SQeܥ^*l+!9,+hOo2j`s_5ӸѬkv6-` =uU)KH_j8V(n6*IưmZhGg4=F+d?%c >v*߿'&gVЬ2| Hʂyl!2_w7mK.*~,ֆ?;'1O\-w0~l}$"&!Bh -F[~*)֏+>5:?82,ߍ3+J6V&8|E51I';P#?eᶌ)ԕ椊ΪZ>@"$ *$+X2['V긨S~'vHA3ujID k[_5/qZ(#JNT} < :71<884PǗe},*Q xP$7܀ܑZ ֆ?,dq袮̌t7U֟Cc}B&W7"pNEDڳCo(s]`8Z8  kۅe -6 p en`Q0b z[/ј?I~io} yu}2vOZ3ْr"N)EN},&}cQ eC#'Ђ|v̘B;c -))cW}l$!&Bla}Wo%XPnn՝c= K񨸔ª7]t뇛rNCBMlG9D;.q {'iC=_qJ~@F - ɖl"!w>LNNX r3P*nj[|83 +;&T7G6߉pu|y\SBc^ܙpd{}}ck==.An/OYz{u*ܱCu½{E~/or$%PX }^f&ٿgJ @XX }]KJͪ/!+KA^:X01RX>$Hf/􍚨pʯ-5&NѵNcD_vO`1v5H06NF7Z>^zr\dAmHL}CsXBxLו lu?]ɕE -k$w'{[kmK;gq/߇q `fmCo*uXH5ฅ_Ġ|BhCO~,W9~,]gyݣGQ'pϻ;c#ȘHWCE^e; 2)X3ȳc -g5ֱcyٶXTe#Γ\4-hQ/ *ꉲk;F˰[2;@T"='jP&X{Ubj4 -u\Pv/Ǒ~mJ@{޽ &d$ -#B>,rU'B6}w32);xsuq);H'qtl'7s#]yi-ݤ{itbViûZsq7|=s¹qP֝qr~=wO+Wϛ_X4I+jյ.\_^c <>VuB]jXկ;??1Q#g{;SʩsH1jwهs:Uo>VǢ-rz1ֱR -$m$5lB*O"^V73Ա%RX7+ 6zBvqftAMl3}3~~+Ycg:QuL؏X7땪WÒ=!(dnP{zq|ONQ 8`xs~]oHlJ߲ x󨾦eD[jnU.PY.:TKna\gݍ./쓏ȚW98:fFz~u r?]4bH}6|/q=},&[r^SE.B/.YK!XGw -ԼGWɖ%WG 8+ލ-veÆ/9]!ɟ(?V)}_kMR+ά",yonϟo?}tb;nGEՈNQD~2SrFh9Re"ʏl_?]o/NpSX}>WԻaƖGggji+:םc -U~+ሬ?D|N֖dA?˟D_5<:9|P)_*%aE{dqB5!-uØ Ru#q `!_6Uf&kA}.wpu˖'G# D4qNP_m.v7k'4J߽Nqb{?(λ9 ,'Tr$?MF68 'iҖ>6F@;3P`FPi6̈́F蔳=㺻Ǐk0RQm`fm@'[sNPC+},1XΑYaJAuZX+lGD3~>;P.cU ͬҙAmS#wgvhVtd4~s>,S ۣRTw?>~k{hJׯ 0:QޯVXXtuO-o:k]ч_,]jfEcQ+BU1i\*'΂mOM8> ׾|jV:'YH -HwB$aYQ.{LtA7xTcj}鯖`}V+^X׽iz4Jz XAb)`xߦEhKU -AP:eY>&2}ȸw$|+Fԯ>He%<;G_ckjJMcg㻿uL-ê21 -ƣ0mwaޯyXwM}?Уx:Ű -AxQ5-"G`G͎yw" %Ćy50 $!NpI>>YngBȺu(?U0\[Qȟe=4O̤7koWq\_ Dsm@E]bYʉ!Pآ4k,em 2GbȬ)a%KhXfXc3HWO[1յg|fRmYʉѐE77!>Scy\ӆy|xITX.AVBkeL_5բ[CH_o!B9UJ{4֣'bAҌ/`U4S`4VN[ [tsӐ_x> u֗ҁ(L5B3D*Pd+'!bnn"?2 UU[ %KhR@//]⬤ =x@.,Šgl;pd+HW}IVrS8ܸMsYX:q=K22*1uP-?*ݻ_xWoK:jB VS݃ZxsaTw;6υ}و1Ѝ; ]Ɓ:ST oZ"/ '񣇴( ~ީ᯾R1̵>םjiƯǹҌbU{P o8MMxWİI ?feuǠzZf qCEP›;ҽ$G[M { #;>-Ї= }j5Z!i.̔OnH -~v\4:!- qBG}>VP1 '(i\ڑlfUnA*;.x{ktJtDy+Zw2"w QlY߉Dt#`m_h>_>sxmܗ;P dPApS\4\8^|#Ud=98Nh=c 2WgAHq@K}lc{ˋ_HYS|Z/bGɏR}U_d jeĵAW;K=ohL# ۚHTm^-HC/1),>/h%|#bf|bi[w-TpgvƱC(jEwBԽGhOJ:d70}dPApG>>s$3-"Z:]{Uu*Cm/I(1qǺ7+?:zipG`V_?_o/r4b]~jU^3;o -ۦ-Dbc\[.AH?M~k~m]z_ȖiBa%[M!`c-S A(c$qHޫͣ+ DY~N_+{oo? ~r2V.؄"/ۋ8zL꾊k?u&ﻅ%$}ޯXD7FM R^p-fsm= (.fv{1_jZQ6ԕ~GEŒb-S%}}ƏSB~#F&?߮ -I?wU#X\F-(tfٲ -6Ѽ~㧋5$CTO[7~t!]M{vVpoOv`X8.BYz/WD-6*03xh 4SMy4 -GO@Z[ߴj $  -+ (jaDWƏ>~ &Л/0W{'~xs}uyqqq|!x !ݠQ ,2'diKJ2!޳v^ q H_F_jH[SVvxn@Z-ʬH8TOv*Ov'%P&+l0 -+ u0Np?&?Ǣ_4$}OngexuT^ 5l#fJ>]P/Fӑ>}}Ynx뾜W<]j/0o8ΰvvn㵼b)_j&X}z`v843!kz$ch8_yQsU߯vUdbAffwh]XAa*4t(ˣ1 yM7=]*} 3.b/ uOoJL>k'{ 9W3~}cDtbFAu{Fz0@ZỶq*w" P@sPY7 !v]R?f.Wd 0q}O>,.0T`jx2Jϭ+FƧTY_%e.j6l_Ԗy&c!l)-`۽ro ᨍ4P2:,;96btb4M%;fI$z< ?S.xxYP٧DScar7"^fcDqY|zamI2zK!=DY -ol^\}$uUKTuyȿwXl(/N}L [\ξ{ȣjWxՌ# _e@C) -S`]艑G_cwJ22>ӄ2oދP{"M jGgK!r=?/>>:'kd~d'*@-BGn -}sA/]PDߎG3AUБa:?M~ P_cխS[X2/+T1͵GJ4MiљM~c{ ^>@>:򳂝SԞ%Q}suv0azjjffWַvo?;ǦPf?[7tyv:7X%_Nb1'<"IC>_Ǐݚ?5ou׈Xp?"o<U6Dc1# FY+lj|\B[d,BGC)4gR/]Fx]DZR&("jdlRVտRqA+H!(و&d%7DC*vES?ƿB -cE7;⯶m! -d!W ;<<vquM^뗄- k]ciz{W28 N-m]݈8 */ώv{+S'}է.?Ifh"LWA4bA$(~?#H7+%gǏ7WfHpɤdcT䧩.wyj;>KuLb$ILBJAѐ"&e/SU'JC*qɂ"avcn^g&InˆȊ&FX\ĎqCV~6ZY$ go? pw@onck!u0|A/uyqz|xsoln ;D%KNyJ:\ozlyfIenbۼ@ce#0gD;Gb;8|7#X ѹW&d]P_ejWPY.踜BB(؀_>}Y:;9:8أXoomnn ;t4H_QufiIsmXS?qxi|%y+:<^|o޴}74>=wt~>9~k`W6ՖHM_}FtPoɶ邎n`+.؏@}.]?Өʦ4W;@)ceP4*䘿IyLCn;NsbAӅXІh>R:Ω  e| -jG:9GiȽaK{8ce1n;缈 -p̡#zWWd"zG$#AKJy{svd>z Q߽hwk}uya~V\a͝SjWHX0C:ٖ7피fU3rpnI/=0StbXI96Kوk -pݯϮ'qbtOl5V~ql:7VC~'A⹫|3.?15]uY[a6]0?77;;77?N>8bFww` 8dcqaW[zLR6]@//Nv7FԿ(/+-ҲچխK!`{enb]k}@1#`ŵoGe`)ZI26v!)2fX MrsƏE))}MVc$Hq饝Tk{KMۻJ]awQW+ec䒱2š|'IRqkeK҆uYavdJOpog|iqanÇ33fW)z5ċBsX5\30AQn癸9>$e;-7W瘐{d憂>9yJ,U[e:)m'9/4- ش-u)?}:Q~pxlrjnqusZ/%! Lz,5=^kb'+[طDW|/ttII;֦OSsÞ}A@信44O;c]PZ{9F &뎭+sMjjN7Vfg&FFGF'fbQxC&֦qu2~i~44q*1cv,&mK}uEIQ~^NvVV으ҊW͝Sk;G)<Fww)-JM1g E:Gäc'dV ܽЂif ]\[Y^\~VPW(-|ĖiD1|<ޒ-ם\$q-~cnTL833#ٱ^0GO.,BE0Nԥ4֦cW+}|,^~֥oߵ +qooȟP×1"g!Err6:&kk򁶚DFsrPZcLRX.t3ĭ5FƆww6 -4*gٵxbw ɳCy*5ƀ.F~7!??&7 YQ6<"klg7\֮ 9a"Gmt}/]NSbf{D}ͯs{f}Kw ؑ"-x{ceav־:Z[[Z[[;:޽w3 -v_/·^wm7=A]?Y0 EFzjrrR󤤤̬’M2x2w7>0;=)>:2QzOp cɿ`x9fyALɯM,IR$feR %wM}Iّ1W+n>SK/hogCi!Tmr_6%dd}w 5W.]Hg#6!!񃛤AG(-m-oB?K98F#咜$ l_yW>l-/(b2P._ETWK2rC`ok}ELȉё:t;^[0 mt<4t182N^;<9mVvW+]ұ3#͊~zˆ$x'?떱ʲܜYY/^deW~٨5.W!ԇu+\~Pd`ȸ9r") HD7<э8чB. wA/?ͱNtԘ*qAUk$nܟ-@Og CU%EEyE%eUf7ses_42ͯ[u r_ۉ~{.S]$g&3}HJG m83>ބQE/<779/eiE*lcՔ#!"%wI8$*rSDX -FWOF淤͕IفK>"p7!Hudgwξx :Zѽi-qg_}.wJE614=\_S^R',-559ϟ'3,;o IsB7+d4C" ϫφ#9A/dnx@#@O1{2l@ \wO;t<#a4MʏG4ɡo[k^dȠXS!--=33"]TRQSx jS9~h!A%۩}!+n8٭krL+D5?MuQVJb cڇ{'OF>UXQ~l~}`Sж`2p|834fϼS -1I/^ֶ,ozKr{oގ~ᆄX(Զ,X_[YU_ - |MW/_wǫ}'H66XVoDc,*,|}r6w O|XD#kbv<]~j=^w2z,_7ߘ"HmU`{uaj]{S /;+2"gdP)uM#x;)d%}+rD +}<-oNFQ@i"-?[Jp_wGKC] (RM2ecTké_>]l-{0]֎xJ=mws<;>8fjJĄ8 -vl\|\|<%:9%-En -o5SՍʯJ@U jڇ淍׫r)78ݕޖbr!Fo<|g1 ZzFgN?}LS},㣟=%%_+C2x+;O|X-.3f%op[wn)Lrtmi^^U3үc9356B)̺%%q~u7^@|_ъQ9~m[r܀2GK|WR^{7@d}P+BG+N`q0 ،9<6&쑨Z uuvU5eanVFZ --yB<>(FΡпoΝCm"H͏WoqlܥK.m-Rnp\%vKCmUit: /3$'Gǻљ21)#tLSHk: @&cJdo}~r$?+#5)!6&Y䳈8„Ϣc'3>UR~S#)z wY{!т=ρvj'B%&3 cr@f78"ƸG:Q_{`yL솕Gd6k -4 hy-R_[ :ܕ=Q:O|:.=0S)Д蘸)Ҫξō׶üaJSʑQQBFQmtCm6?0Q/D&)hTBǘLJC.ºyU|saZYU4GFZ^lUofyI9T]|.ID(Ggy\)O7W(:vfzZrR"=AV>O㑕[Hǣ_yt.Ӟ'""?]o 猴 `'f8> 5xwuv -"-9!.Y$˜ Tzva٫ŭCs![/p!߅P^K#rů>-P.60b0V^=l4~w -gGKǴ'AqiyͽS+yI43ͫ>,N6P|8.jA3G: 6tиgTca\պ.[8Ĥc|*:>9#euc y(sl8 +O͕y)qג/JU= rPn‡}Oo[Nt|P'X{~v~9Oʯb+=k_]-/2Lyyl4Bk}*gL=]ͯ+r3Sc"#hN8@u7t3pTշW~-&bϬ -PjN~dT[L_cx%CqEDŧdc!N,n_ Wj5fsI,(y29u`cNL}WX\ZV^Q!zU50TUtq0Έu]MIH", le%/ r3Sb Jz94kܵ4o.ɰySmyq^Vꥩ!4V,q>F.&<3npW>iަ U`b%@BB.  Npl6|ϻg& sLfZW?}vXXXR-e%OѽpU'ȯ?!Q>)vR&^ڧ)µ;^_|#әyїwߕhpsAWA]ʀE<{醝G0rC+޵sG l\{6>G8@ƞwmN\\ȿ{ĥl9.Ռ1J],ZDrh -썝%8V-w/vLq*-0GrpH~S,Y( |G`fyL׺aP/- n[l\,:<\:H/'5{΂0ǹ?\jqtb nn;F[hn=}?WyıB0nXd>7݊,.")gs'/| ;Rc{<?A~mg5ʧv/9p˻ѶiGBPbkF>lY֐[v᛿n:\lF)V2E-Ǚ< aA*o#yt P4g Oul?o)nܳuD4;^~_^W[lbA#xDI)iBAi ]>࿸/ok|>jULzB[fB/?}P~޽rW&+>:h5P{ADǎvu2($X54A N]Υ B|ܥ\r'{_?p2N|,ȣYm8¨<`&O[3gN7BlC4W{ jw&qPQџ7| tl]Y A5YuUDɃMKC+-m$RHSӦcA.Xjö87r -\ƽKGw.ɪT3tйh_oJ.o?o&GB!h9V*m<-Y74sX$G_<*M}EcC,A.C;@+z|MkU1vt?旖83ҬK8A<@޺f춪!AfEjjb 3wZц ->t -7\yz[WfzcW6\mf[c -a՗37lkLf:0Uƒ_ FX8[nڎ<׌xFۗNعi]VEMqG5h5Yuݠ8KcqjJZń홢%_SRa+GwהTm/q܍/^yCr\VɂjVy)Tԓ3fI8 scنguE -١uKw;r?~AOX,]>s-m]E<!_޿~r7nC"D؜z: ]bٚOC5I~+/:$|э"t]pA[i5Q ƕg3E Bv9{36`meZ/BހyLOO$;} I@IǗO^=sXE]L;N[O,,BHn٥8 ( fˉţ;)0Uǹ睠QC;7>݊fu_ak_;/YUf[GSR32"^h]-/߬V_S*]S?Z{DShFhf%5r;5EO4V5*v¡/9"i<."M=;g'0V-3٢S9~gu_F+dLTq4e UR -&  yrö=G^mc ر~ikRziŻ/`Q4_cLƧ8]ȱ=-ԗNfu-Xf!=2# -z9p@y?ްD+'d͐{ &V~r郃*~|ׂbZѐp ;A< --'S.hۣoY@UuCR>'5otqt| G7Z8GEs'M5{s7+ j5"[yw0p;wQnG;@vN[#hBElԥ{NǖNvCp4=f_wRrdwQB|g5 %5aB_9t}0ShٗreHx}~yltveN6h{Țݓ|"Ȏo{ީf>xN /aE,?O_]W `|-[mSΟ=}thV|81'1PpcV{N:y}?x( ~hrc=gQG5'R-o[lX&].^N")iȫv^gye_bf=)\Alp' - (oݽriZ-UcRxBPo>a9K ྋȎ}6,B:3ዥߴ巩\ ۗNH3c}%ڑt<m}܍/ZV*0_?zrϦ5&5U޿zxmJ0*5 :ut!P H<7e%5r_[iW詸pAa75)Љ(/D$WڎG -QDIhg(Љ(˕ ?qrO^B}N(GF̏oqVw[6sn;4 wo}0vSyM2H XNRXH1A2q -ٰdM< 68tЁ}r\rU;U=0E¨&aMh1p ֡75)&Q-<tuYӥ5J򪭣{; d!K/r|^_Th8jp:+Vtc1hAPDu9=+q O1+_#9<&~LWf_DfIRF`x?AZk EAI͘=o-! sAK6?5Al|e$<ֿGj? 6,A츥D́m]~_U9#8H>*=:Q *EkKxyLTbb)0^/".8pmGճb!OI?9aJ<~c8(ǂV o8?xlUQ?0пoͲ8kaٸ\1҃?8Uk3Cr yI#_? ݛVtջ#@NޱE瘏{ ŽKGi\YWnOP5&I3dT8NYw/(sl%rPOt"씿C}AI6%'`uM -T%G.~xԽa߷myݑc vBdvȍК,gʵ׭]laWAxRo˳e_@j1$Zb`-C5X?~r"A94=AB`KON>Ga g@'"Nr,w i(Z=p7V)_>zzhG.' 2S ހ2a_8D\׎%RU.t|E\$uqIR;VRzl}G+g۱tl_0mk:1=i~W~btԿVK͜hm37 AN:(I C/MV̤z<6xrjBp5ZQC7>(WcLʯjT0x' ( cȵ ,={1BvI: N -;AaGw*!HT+7.?48`ђ%{u kt T>oȲaxW>xA6&JpZ3L[h=DY>^9HT -<[(8*wbIwHHϚw5 tzp᪍72EOc>v|= v;߻O%,ej˻ܿ}RŢFXf!>zB @P~4ľnX>"r樗V)j*Oď%5̺Q=|*&Puȶ@c-ǥS:pS| |&e@'d@Z* C-tp Aؽ&EĎ;g8ZB^f˞5?$(g$ urXWHy Y*:O"mbRt6-Ϙ9K/l*Q6<ƑZRV(Ȍ Sg]}2̯DTLxֹ;qu<ҒҎ 0wɺ_i9_x:7Onٷx[=AE8';#e"ge]NYҤKf+XkRfRcMGvP7As^v2D@-W{ŧ(rHB%jW,Hw-+^v2D@-W{cY~Ǖ-XBg'/4%l/(z~BMz rf0JgK?`/fV.1:dp3XLMQ᠛4y^{3u!*:=zDѷQ\a>FW| -UZjƥ*r.ŬTN n>ҽ0O-(gk?'^&N%8rLٽs} {+44YCEHVd\"l-{Ӫ]T5)ܽx'w}"(Cx>@Ma- 1FH£Y2楀:/q輽_G1Wҫe&!WOJ`xS){{w>w뉽~|Ҏ4=lW#ۘcSXLvBW߽Q)f;cQ# ~햕I&^(; 8; ovQEJ)尌Fx9ƒWBԞ.C*Wc -қ-+kգ맵>21j4f꘷w@ k:~cq`(N3ŇQBl9d v74Id{+i4Gf@iϒfWibu":kMhbϤ^l\Sgo= W;.۰Z041'NQi#QXjU  !> =\B67D`pkLi<] -y?q2E ,)3W:)yM#NN0ji*l hSgtQݔYc`{I)P pX8)IA*ͯ+*MXXkw8 iPS-꩗4:Zԉ[{4QGEX+<^q7fn ˧}吧?jm3zyrb 0ލZ706Rx]H8&ddJ;IZYwXr10vܲ&_$U;{ "IЌ1Tsv}\r:~y, $R5?85~tP/،OݲzaETKt[ -Gfl*|6++"'>@\^ orpJo$6*F)VD -|B~yա+Dnn00+BKoעDX7vL{WIl/CW6cգP80fs\U߶qoʅgneQ2k,w*5\(gBjJ"eC{bCAފцR#y÷}PȣU;G2@R@q]m򂔌@Nոo,fws\fknۑqEdbуJWl\غj5g y)9?Ú_vdS=W7>~>PR!V~d&8>XE:v5kRw=+l1}IK$M4IŹ$cGO mz l<z,%vEdkX+%v1ؾ+?oOټo5Eh1ISR?LRX]UHo_J&D92u[;w5 #˜ -S59@4DFH;}湃LIQǍk]G+_HW&m f,u&(6r2j nkݦ@IKOQh(*:-`MM4]ѷGt G. I#@>m+ ^ -n}DC4J'rhd &\82`wӴX~Kz=7D5AAwH!U޴b#Ɛ9**vr:yL97eU|+[K} 3׏o_>{H5˗ꘅHڞlj386 D5j $ں>seC7XU" -|\\5[,<_gضG O7lǯs! -R6N۲؉c75RB@'\ Ո|ď%!Ug]~OwIm-Ʃw4rٹpoP,M\;:Hdz'z̙Uُ)wm~uP!K65KRҔʉbSQ 'IS*zbsl>ƅAh{ :%r 2Itd(씻`B1{.ӿ I.ܥnӑ S $Z.?NrP.%A6}Ac|E*wbO/m*'d^edfdxMK̶<9%fV`34F %-u#Zut#rac5ʩ}xwc8ɇWKCR |s -]7@)G_?{Ϟ8o-&L6md2fرYp,{0~_c5- ngzTIkחO5O쪹Z$8g⍶w:~S5i\6dz"Y*#$ETscl*,pF!3t[PCp4 dE'3j58i<|ҫ*JIIpɝS;)uuy 34K^~X*T@⚈gccL䋪}CEs%*Cd>pU~7 .*.UW'7~?op`K+.i2B"L2{F 2JUw[޺<ӒqsnO0G0WD%Ce`>8 ҶJ`Wi%EBAg(`}8&G0.ɿi:hZ-d Ea,Y:S -laP#;Gۨyn?Cnnu`k(]zkYHJn!&Ft/7]v)R`KUM+X'IpK|H8Ǘ_XSFq/'M2!%2wMGe_.chʬwth~ '\+~lKU۷w=Li".}$޿yݛW.>vxmz &/]`ޜv'O2YR$W]r)ۘoc:i#α`DckrP^S"}#j-~߫iCS<&DjLCJ*^зDb4F`DE>g -Bw ZiK$>vWm=pU%W}#~ZcTc dgcvȃƷkYǴ < HRSUVwP]@: W"}s->;2tsEwTMբ*RiT aB{ď%y48]BE**!Gq]l+p%i+LFsVl2X ǻgN)c"_]g\~X#~BϟH$_Ji}"f4/85NY詍(w^,c8 Ĕt?.@9.#qkQ*ypHpFFDϘ}=pSDW Ij I SaiipKL{1MdOUk.1/u (kkO<+B>G߼zݛ.;udr5{kldoYi >_QRnhMOtph4$@kP %^޻xXT$ZK4aΒ KpaazGG~ 5.#; ouk% YSBgibȔ]f沭L]},"-"aAm` Hb6XhųWo;p+~ RPȔAZa-K7 9z|BybQZ6-CHeAeL!A xu -P*׾rpEtj4 -y?Krw@¯`1 ;XRO(CC[,u;}D[z~bz -# ]2[?ߝIvk:UQئz> #zKW6I+(?V~T  y}|aL_>)ƻ{3Gor:4r2f*!~|ޑ?rq^wʥVo_xׯ ܷk`KߺUK-r~k$2CG>]2g>N1 -f] 5D аuшxS8i,e!& { -#yܹh- -=1Unh2'KOa@3\ T9z )Ȕ Sdz*W}'IxԢTGi;8/娔rS >esЮLO_(1s |nIϾfh4'~,"@cW<\qۗ\xLuܾo%Ēe$IJzcک"S43g&ZQs^Y ZM%=x̨ \g9Z[q!j.CzdPXU1pQLuYRt))\@41Uشt.ZlScjF ]H:o2$,^>CbVB JrslT2gǔ"scxpmU(9wRȸ"UkD@&ۮ.IU@xvdw->}y];1-!h9y2e*tUqQ̮%fb$L,)mz+'o>ŦX;n;M/_O N g?8y;ۦM4A- -?A'5:c[I/ W q* '&*^C`WXP^UmBLm[әWь-0x\|^ y|+ i:w# -[JVp?UjyMobTGsX/weprp}!~xnU  y]3 B]LrC -ؔ3*s`:%blZj (?gK)ܯ]+l%=@ tF .y1dg-v3 -e;-cKDZ1KO1% P`v8<63O0^CWKL{5 &W"x> -)"n4{N?La7EDޝ֭қfk=Q&[ yL\Al ?F:fPc<~xXBoΒ;=HՀhi:𚴘^Ch-zC^]fH1P.Q%}]A@>F*`{Zr쁜uP)r+̬J5cTEm@ǾT9:$\cځ2trU,cmϝ{)TujPSӛA59!`(.E -ubk>j/p/RrG#wv*o,5:3Em"pg _?ZK:Ԗ ZB Ax~LрLp+ly@14!2u&r7"J/d/uMq)-e uuD̮VƬc=@ \ 8R! -HM3LvF iSډA9QGZj2*C9opp i!v,}SO%=;( -Id$ʉ<*OIu`l#OhZMDU@%8ㇷ+\:ggަW \/d S-9hwо[{,C"c#F a>ղ"O;3 @ --aq ?VA>Y)Q2Ȓ{蕇Ry)q^|܀Qv}42b4+3Sk@>?0wܠ@^If/5IV fHN51Dct0O3:oQ5OLyiN9a*DHA&Jq ݴx1+Yr l3Kg&qǶ>WǣF\ - >rj)!;~ǰ:qLFi䠞L_EqFӚڲ__@.[ ^-fk^}wc L&HW߻u#CY82y,NU<,($3Ҙ`֭%JfejP&flui/q AEFh -<}ls!XT)\)z)\+Cw)$B8@ʽ -+7o^| -W%o -.ɟ`_A/Oi %詙GMJB墉㲓^ba'-qt5pYWmdy4zrҢ`=*/y$Ǹa$X - >䉱|WbwǐǴxv!](Pu.O*pU-']*u;2 Ut/@ ɶ.bՀ-kc=Կ4{"Blcc篮ָ(!=+7>v.@.W? u;_ ~wo\:slhҞ30'F&\SejUŬd[i"aK(d-z{wm]x>Nk3k.diZ Vcb7,?k'7k-พWT[VԀcȻ)"M a6,p(e䱙Yl\kr*HQvX!#3/|e<,k/W48ߵѫMz$C);4Ʀ&MCaQ|[KWp;Wӱsl7$ng([p"FعTZDrK_/}KW[+3 X6Bs}-[Bi5`_>_`@1YCn}U@??s`?/_d+@W<56IPH@4x:֋C>|]R2b{BpU;a_ -%)TNsy:nv!*  -bsQF2A+?`Uh矿e#?x٣V-7{ƴX-՝,z1jDHǼ iu#ˏ3uНTfcq6g@4؂J4m@GBc*Pݮ-گ IDHk{kV8F2QuO$ρDn>ŮҰ̝6mաfH[ -/HcZOFA\%^0*X{b)4}hzyÌ X<])>d,@1b￿k*~ $f_aЩ+:[9Wl_?{ 'ܼnjIFR# -Ǘ,˷? EqV(c^ -QU/)Կc4p -').0]/?qj[0E~Z]zyޣSH­K|a#O'j>k W7:cFݢ[YX - &D1P 0WGvxm'hS)kgef/0ʡr\My6+r\@O]~LsX#'6Z +ǵH[XQ!>'.;)Xcq.VX<ք;8p꽧_miS)$__>}3wo[gAd3c1XL,'M1/fk<2c Tm?ſ(<΂a~)yl)tW#XHh*PUvKc#yl0ypqUg,>HJR4})f9+U2VJ)P\a^c?H6qcCX -FK!;6Fc66n \ȅtF -W!J2dU:t"wX~,s<$(ߗc(=8sM5]G $y^L?v\Z 4'5Yѷw!5G?{۷wD &aBI:U`0="ģ$Icjm9..Y`H,8tBe'FɍӚX!E'vjW(m y jQ ~c76s1쉮s->PP!ٖ/OxDG"wv -7fA|{fv >mפ(VO(6D6nvse\Z)T1OJh7p8F^c! >^;p62` -Y8b䮞};r_gtxц݆}[ND^6~8 cmƼtpO >~wA7 -&9 p?o?LyyӶtQ鎮}RDsG) -@GPm4X`ެ)Ac~Mƶc!a(\+@0y#}ǃ__޻(s s6}>yj/g: Q\' Dy1t[yl;jc(4dRhGJ@Ǥ᜿z)ccho4B&`4۴?l+ gJ -#fx'#Wr$h)ʡ4h1 yLxd[d!`o'OKO^ i4ݿ~b"ΕSvnZ@jZLb>LCO"D40k14qt㬔ifݿy%3j!ZKoN'tG9_W\!f}v WCNW5{FƟVl?x$[41*5ߩ>L9Z'Hq -XN~[gmv3  y5tGj>@}Q򘾟>VKv*c -dʿ5Ԟ>Yf\Y_@p{JcSaTe"C pc\=x_z#cCXe?bΌc -c F34|%y|c"[JQ5T_Ͽ}|sfiuYC"&5 &"S0H䱦ވx5ޟvHwL9cXMQ7<~#ycHW})k/s Vϯ~ -~Hͫ'L[_<y զ}*u{m~oTPB8oʔ7<61!wUUY~fTek<҇ T@_j]c{c""2+pAXd50 Q1B 9;Q@$$_&w5yK*HX*svu5HH$PrcJR )Я# 6y -rr2yܴ@B?q-^q`k0?~IFQQ"i]@>{hgߊ36)ᒿ:K~BccuS$@>vy 2 m_c^[c/N~W\YcrwI'y:%4PH7={MWO ":*1AJT' ^mgJ}LWwبSAP ">Nʙ[EP0dKcLM&y/y|cY.]K8@@aID -X<&xgl&ZKVq#ތw(mݎlA -C[rNja# u]rCç/|$&#).vp"{ u5ߝ ~9f1>V]Z$s!e+UVVl-fB@p--!(?ʗ<^9=.TflG%8:;F -#(%n>~Z#˸~Ng!fUӹ\-4hfMA )gu-gcsW$Qjʾq!Ę<ͯv(!|=BuX'ȶAJO;pUǞ}WviG$w[` -"O6s╽<Cx#Q?O~\>gsfjYrh ď]г܋rsylcy<30yv{ @:R~W)GX -cI /<SEBM -yZoOqbK@k/غ.~=gSN3<a%];1X-F>Sg_!(lM9+25~jyy ,ͯF<\+@{ǖ#`"֣U#!oQ2+94{ݿ二?Y$Bf XJgԕ>&e7YL{b X'tB|yiksAig=qsz4 >z>o:QĐ͓[ڸb> YzD+&u9~11fuӸ R|5'djPK4( 6Us -)'PALֹxi. A;=mֿ;o 6)anl*W5q!)LqS=5_ ՞rSv֠6oM%œ*MꬿfE5r~WCbw`oZ 2j͚jsz-P2¢s /_פO~t?OS0J5o}jh#ܠɗupV7gDL f 0SMTd wzjyYH&I{h>)L1YK!]hu! -^}M{ -ȲEV1s&Qh>V\8sJv8( ݫ3T;N1KT~P/𰇚C+I(Cqjnq1LT;Qˉ}F/@dfDNj`hD, ZFh|#1lk*AiE{O#$TdA%*S/< -uy)y5ԢFv䀆elXDL? {fX@r8DŽנj+^t7%22+mvki -=Iw[M._nm\?`1\`K6`lл٫&N9$,\wVֹP0cdvMo-$Z: DfuYw뎽N|'/^ lVrLIw[G m[k& dTh,)NFen^&G Chocp'P Bs8m\Spy´,z^5Hp?vrPL%L򦽧`a&)U?FxiSBZ>b6w? -*<բ=er7עkL8VL|i ilcs' g ]'BF d\ݦ$EzGjn -/3kl(FaŌϨBH|bx|^~|U  &!8&4cB,W *J|* Au8'Mkkݳd庍>~b*?"wLQʱ]o:wh7CVcS1ODW:xx]Pرr "M'Կ&E}h1L,ZxnJ{uq=Ep@Xƭn}vBsPjMs -lJ섭+~v!MZBnxx*MJ̟5nTw䡹z6`z䯖<~h&Q_=6SzŤcS k~5RgpIM(!rW;F '%)JȡKӝt#ړm~5}Γ\`zЗ&ODLA!wo -]cD0ay,^wБgwɊ%c&㹖lYt#I`/\93%_V!$B$Aj0%3;sf bzM ;^}EKd{HdϜuom]oi4t=7l$?)ى`.2Kp]3m`I|Bq-Q -iU$[RT*O -{~(:Бq߫|HI-тD *a^2 -](~lx J9nFW31⎕|#jh"anNt4*4SWԤ\GEϜ?ŗ`?#֘L͚bSP_=^VT:wuނTkZ-~3~4#)|tdM1{C>s&B\.f3B7@TϠR.dCb4H8b%06;ؤ;A`2u7x78f?%േ.lkDSŜ\ -w7 -ә?c@<l&mЕt~ '4PKNt)+7_| WNc涞8yY^<|+o{$$jSyȩbE(l$: @jۓ}WWl Hq2h7lպw:B0[J$5.i2/`T}|] +RzfXɝMY*fҜjz%~M%1X*L\-qYE駖f]SHt~eW_[b0I෴)$7֥#KčGTW/޲ --ƭOV߰yCPNv%|\#;:$K0w`KarǠ.7Gt(A%FAï`zf4 +Ӆ\ ػKOkּGA"[ Fҿ4}"e;f`6ԗ5 T&9Z;pWq0h'r<6) P5HWp;cf3%W VwSy9AsXǥȡr=03D0N-G iBcsP:63Nifq#5ٳ(R.yxîWZ/,|ܐn箲T#)F!J~}# -ptTHO=s gt)VkKoЕ=/ޤ2`>„+[nTE>'%?A}̠sDHqmV9+V۲}GNx^J^"gy1iF׮ 氮4DŽݜ _cO-cb2@'ωFtϛtVS.ALUeҺ>Q[~!ֻT&mi8wˬV@ݠ;: ,*츫ߕ!Kl%Ml +k:t̓k_F^H@yƙ}[W.`(qQ) ѫxhOomρ- $Q"?Ν<=Lj}lXe~K:w&2ELx1s+%lDB5?vsK$wY; 'd_ι# n7 MR2kŇ>vSZk=1wR]<<!Kq% w;}Ԟ+fUXj0HYu'n߅ldž)te|Wbh)Mne8$ܯLU!m9e W <Ew &;MCp4~bBd@ ;hX\#l ζ~ŜOPqXmú&p~{h#G2qNܞeaLn"'voZ߈+UE`Ƞ'm`U)M_R`Td4 -@@^%$Dc'&S$YpJ΄"ywD1Ďd/u`HVvVALig -^`LoM'1#6n*E -\;Mzt9o -ؤ(~pQ< A&(+yk]4z?w/d2ȧhpɳ2yͯ,.0_Q!Vȅ)̓7.3bMiZꐢ7>aO-}{Hd -'r<p)"w1o (NPy.8(2SvE h[ ܹ %[!: رBxn;/R4c>-Q&bdygvsxŚ;s/|oOx\g=a|R 8c,`$GtcZB֡j -.fiAuv,/*B.v4=ݜ{7ںx ~/Zmా嘦9 Dp:( -B1CHXՖ 'zq o^cAFR|Gzׂܼa2e+t=(46)?2zyΧvbykZ͔?8ԛRwG4de ->~ˏ߼$:E,]=w+ -$Mϵ\ъL"ݧo.\ %m$'7bXP 7L'BYt&?<} -*9PSCƒͥA|=]t Ȍ M ދθef>Ɛ_c/_]QI'Imv2F@O2ws~JX9fIPTT]!2'4n3C[tT3qL=d}X>PH#ڴ -M}pŴ]sW%Z\zmi^Ԥgc~䱷⯼}\G: -tkմ t@^F jz^Nā3}xMH~ I0S{qs13?*Aw v@F>r7a.PʆG.~8SkkUHOX1d -1tk'Nnݳr˞AJoQ9A0yN]z *{ Q86}l:]\A!م<1=(^$ljt Ps>&h*ݛgǒ>Xw֓sᙄ7 ؀ ee o/)0߇0˯aKXPGG*Ø06cƌӦL -FISD"ۼs[^wRg2,¤<$qYYKuɴWi$"Wn±+7>NqEV*Ͽl)XT^\ -A%6d 8N3,^GT_.7#ʐc^W71k델$L`E@>{1Kv]a!ԔdwwO{Ы*2?_+]$GVU]3Կdܤi7V<d-$Z{>cVɍF"IndUocn>| <'_ʊۤI j0j&Ti@G׎5 -a8UdWSL @:ב*zZljx"׹K6 O =VcJـv,XmM||;hܸ|>V* -=ǯ7X֤r<_]]aL" 4v{ ~[@{6\ԛ^sٶԵrJXNR D`ӫ*0yYh@?@4j"y 0@g4y||WHJS3\ 6#H#wl --tx>l3?Ky' 4Cɤ;Eh@wn`*#ftڼ{*q>FmSEԜ鞅=ȕ?n$Ucȵ? E-HlԄWݼ Zz>' 1;hHh5}\x}/6=A@ ]XyrBt|ØrqNc̊MG)R.ArRE~zmG]VSf̞bc>τ[Ip;Յǫ<{&̟ ~{v!lPHc -}A) k8 4ߦ5֔ՔGl+ړEp{WWY~/xEhW' ?yrܡKm"5*m:rEǚ%N V&@gtYdիW-19?)gu_v˞cn=~Pkib{u%w&f)Ï܍rg_o)IL fUSy&E37qnlfI - N_ V#Ŀwr yzBB[]B -jϟ^lS'F!2J(?M*Rd{xS֝ j~|}[V/ꚉ%4NK{\C6&%d? Bsklݺq݊Eݦep!4ҵ[*G鳽@|&9qչzO`C= A/__?ek tM+G'|i"Kg[O9-3z?{Ѱ!*X.l\ 1oEijԴirBkގ1p&i<VǕY!H'oFێiX=ȑZldU=/}FǗ/gӚ3c+ոS~5F -ժ`GA#_cgZ|&*SRPN"<n_@r(58"C;lLkKE$AhE$_#;$ÆbMH<vzYbyܖG8/s6,?,F -"mfgϊx-DW ;?$fb8AtǏGYoN:qd@rf@2}|,98=v/^<W} >k޲>9V{|xcrT&`Ҵ]=6 zi.//9wWUpD;;c[aqp8ے.~DŽ WmuTykǼʗ߮n)|_y!^\o?@΄}l*yp!lnxStVUT޿|pIbk"llT6o -5(?b -`l -HcU'Vnغs^|^ -M"AtڼWȮ8{ H#ywߕ)Ԃ1a򴙝 Vd 'L2}f܅mڱ7>xpƅc{6jP{(lEZWzÓ-R9E~,u@0+|{Ӣpۻj__dQŃkl_l충G&(fwܸ𹛰J|*U` ih٩O$r -DJX8{hg -iMv"dM4ؾHŵWV;yG{hnޝvoYc) iTvt񊾁gu =ˉ}[YPyl?|qr5y'.*6c7*9ԌW,#i5-1Ш@k&(F%ؽmP~v#vU  ?WD?8OXx!&\7րc s"뾓=7K!`R/^ŏ-@*YtUoC.޼˗7ذD05_$ȉ&/-l!ݔ<}1~1BS# -Ng2y<)S!k3! /e[85\|&K3Lq +'_:YM5H|};3'ROO>iv^-KBBy7QP,pt&چi AwQ;%tFfD=?N0D85 Q4?~|MM/L%nյ`N]!6?r@fWWUEϔH6o]!Y$]z!|l ^ɿ͚͠TW6 h]϶*^ DT#$@+V O#&~\);o"”Lơ+&1riA7/2hJ]v<%'Iyŏ9h;㯮a8wx+_<Ipk'wo\>{ܴ+cb~ȲQOO\:oe!O*#&O5q*Zn;{ع^fUܑKcM1=_I*@GWɡ ˰IOkpxF(nRpȶ*Ncf-KXوzѺ/hX8ܴjќ)+dϜӳbSW>{y]ri ܳyWWU@4VC.bLcT.PZV 'y,O xX7ڄ}^@'_L/K7Bk]FśuB_)?\y,yz֦_Vϕ\^2`ڴz\ XS.n>cc6CpS0ybb+*%xy\媁ߔs#Q}._?Y/v( v]{u$υW+'a;+wCLQ04hPs "kJ &O9{u[pkw!3dGCK9>f^؄<JoUݵ`m/ܸջO_# {b\Sl/;>Fp!衴G_yk(wL<aךֲ ~&b|-Ƿ.ۻmYӧ!'i3f]j#{XUb㐆|>ezݷ|V=f XlM;N%s -B|b=s8OPCNaп)\BAf&wGXԬBrIu#Ŋ#a'8Ѓ5KIV'G:{ʍ;:|)F-f䘕ɍd5ҭ8ZMؗtIzcT:囑ǙWaI`(R[̳ -\3RtO &"v'TQN/J_/0.SŢ9orKrk3Ѐu4y͒yf -A)hNcko>\L'!8G/XFbgu5Wsn>Wvzn=}9o;;#[u.KVo:9U0[]+*!= @|>h8u T{DǿFc2K˷JCp}|!bƎQX7\jD5DXcq) "Wy"Dq?屝i8Ha"LZeŸr1`_ܿ~0v|BX\W=Ub#q}nr sbfvt,[q`ӗn>.Cw =rg(_œ,(#Sh~tPra9z뇣+ gk bDJA=9ugリMxLU|;6^2F huYn#g{aD}irzu+ʋ[\2E ~M59P@~hSN]u^Ni# -<8 ],ߴӷtj3(quYEVPaYՌxP:,Xvˮgޓ8sW9w}hTD?cނ]Qn>4m|02??F09h QyvSCĮ -' pGl+w`fge!vUH?ᇗsU"q6;Tߥ(x~|7 =Mvw̘L* Y4Y'G42AV PF1}z{C'/~׿' -[i)۵8ո8/7kߩeK>ׇHxTȊPk]ܪ*HM"E 4kSe -Pnaɝ+ڼvYOlLd [ 2.!żūz=wH%\I\%D7,dJsMC}u슼+Y*&Jd6R8*P 7~ ݼibKN5HX~/w![^h+n!O8ˆt)o^<1WR@-Zj8.)mY?zpUӘI?*q_Ccd==ԡEp<+/߸8Gj!2סk)h\ewx5&3%}v=['0I(9X)n1uf ;5 YG&NS.w=wՒy]3bZ/^0q8.N<k7}7>+q\ɢ88N- 8ZVsU5P$]={t[l^ep(Jrö _<۳tM[bXRqd!{S_l6o ])VZRNUv8D*cX3JΝ źfCDz/}/z.©b4<."Z LWhce/sczbB D\.($e࠯@zB/#~A.(ѕ6b٦\I="QK'ڲn9>Y30Nx$ۻd mۍClibgIk>#E[qç/jI°α[,A -ՠHinء@0aUd[<^oL-*_o^8{%(J3ONºArL0JdbO71+ agoܼFi5}u BS&A?'*LG/ycJ9BIo_޻|tWҹq@n{aM4sq-iᴡ '4}!c\MW3yw "])\Eun7HIWg @AH4&?7ؤ;0DJx0 /M^=sd✜Ն{TɏXRdMc4s"g18X,g_}~1 Ww_}괩S2>`ɓp&H*2fJHx9Ff}ţ[O޳}m$>u @,&NLَ4^rC_{kRaz١m:rNQ1?:-#M%ǷO\sgu@{DEn!0QqcW7m:d/UOR/Q>.8.[8 {5$1'N4YK)o1tջҎVf&UwH(E5<}&DA3LCa4x(?aj8/mס@G]Br( `CjF~Jt0A84W\;c44Mw~7Nܵm**t1+؈uWvT莮y sԥ_ά&~C)8m2}:Ƅተ}f]b +UYծ/I/<t֖D_Th]~yms׺IThBL׉D$5p?Ei=:gw3h R uzxμKW4`| Aj&(`2{C_<9ٳ{q{ϟKH_:iO];wlhז ȾS}Q!ϐd%ydž7[l]Y3ڰԧ頭 9gn{{Wxy|5_jyDUFŏ }6ETx!oE8J"; U#8 )8L(\}n;Oo[@p='/߷؅M穀>А?_Qnm.+HK>@ttTTTtttll\|BrJzfN~qEmSGl$ޭPoNZ+r";F}*AA6K٬Qq"8FA -l\7JzBY͹1!1xD,} S}namk,aJblQ+#"aT0#bif]j8w4;Bߝ.uf\)i:\>L\.:mo/0@DDoo,/-.,ϥZ:Gq 7ں!H#cA_4s3j9E@v~҈#j@oWG[KSCCShtrvimk7Mfn=4.r [6H+Uj.l|Cث!W -Kf3T<d(St GA-]25aKaZq pa'*7aA50İTC8ð]Iﰽ1ȄlAޠG{m)k#hjk*+*+***+kZ;Ʀ׷Y MH%V_'y<.&)=SJ`ogsc}uueiiqqaqY\oj}=O\P9F8 -싨@l@yEC m//N twuvtttvvML-np LtDOW3T8IW '2oAR -{Z[E禃W֣CgAcesRP\^{{,W.kY?MuԂeS~ܠ}7[+s3#Ã}L_]ƙ嵭Ós-Q6 -@Od{~=F=VlGǮyL7\xH:yLs)9B!@DXFI魽~lE*-^GGp܀tՈpples< -1DI/[0r}}yҏIӥw >)՝K!եɱməyܳ{PSI9F -f.%LZ~ҏ|8zF%f"^ҘChkI<܁u f 3+f JVcF$fpݹ:\?QowW@w)1udhM-:OБo.NOvww]8{hO>2w%y ׉xa <^nCO'E}bbb|brrzfv~qyuck*յ&&\:ןftga =6(&RlV\77H[@n-L Ұj}{G{GgWOo -'IGoPI <1L>қ -M+o -d<??;:@nq~nrjWqqe}k{w뻡v.+W=]Lv71ORcU?>y y4@?Ĝ -cP@`y,cE!mǮJ9TX@dc<[ |4sy[K`"t8؂tm Xw}1 iXsAGNn`s:4l Ҷ(˳#[k[_;8F#~}AN\ k`@#+wj<:4(ڿpA:PHJQnH$mo-/Π1>FOLMSeƣw0BjXIg<$ k% =$3mD:~sa/Oѻ•XxtrvqusJi_L[O-6!ܔhZيǤ+V0oSU!s ͅu~\FArPƏI@px<&e!p:8!,0ʯӏ?,@AΣB<#Á|bH PƎwVWU4ۻ,I4݂}iOz@B4Q=EħuT) -a-MMMX`opd[`π<]2VJAgf!F+_ah֭c %=+H& V0,0ˏ3> ~wssyqvz|||txxpxxxtt|rzvqy -Av %)xzkkn>!i)lzP$-HTaxA?J -@{GxAbw|PfO\8ϥ_lh9=NNnoqLWb2:ȱHu-?̴fp*9njGs!?ՐlmC!4`% ) 1 -{ X`LǸe,P"YW ˏ&.=#Lhxz'Wa~t(;։1o=t_pw9w$7 `txy7 -c}Zwrm\^5!( TdH䫳񱑑0[Zـ&:``?= 2}{i0 I)2 iU%ZrЬ6/aJY`~̗Pm4THCAqfU S-ZhxBzy/ Ť%&  惴_Y7 (Ei*z ( I;>4f0O,,.-mOHcƤ]hoChNȨ[G]OREf}UPjMў~ 3(y.nam, GcS@' nwOZMdS;+i[UIXwٸz/T`D6QO|B_^M'yEqN.kZZpsC8J+ -WfgoMyf=Jd3=̕ } `&yLrzbx^G U "Zc 8o -v =K;1txaB S1"Kc;"*1txaB S>p) ޭCCW 49hyv-⦥f zڠK݅uGcģ\hs+taJt JG4fvM!>TC(.:0|em=~~Vi`S?No+QơUz )((@AN;xSM,֥c텑ꂴpT!м+z !drQIFABQG(&JiWFwRס -&(0RۆgQ\?ĵLutcN93ALV~,7{I{;IKzݭaF1Np^&?UDǰipB$ۗa҂.?7<6 Nd[ɧ7+@R ZGlD )Z(4QƗnZ4ʈ!\~\!`0(+~ 4T.YðaFyLO" !nA7<^ C#]=SFp> -wƝP> +*(  P ا 1*)b!NXNJ#Tq}.,Ê%ÄG>: NhIrG7&=OmALNJ8=vX?EܛC_ӏYn^F=uOoQlvR[\+A V$>v80e1I:'ֿ,1~ʍ+Mhxi4"ˤj[ޔnUX04>v8|L<6H/]&WpLREC$:G=b eCBG?5%}0H}8"nhBnکC>1=N% G>.Gz<-'X{1L8(+cԌӠ@KEnr jm,:!?e[r,?** A+l 2&p@&XktPܢ 9/@ V$Y pu97Vyꥪ~Վ)ndžc`:&q]=N* &64ipqqFQׄ΍ւߪtϪ6-T;!M+nP5d3G?Ll#X~ǐl/o!7L+ʼn`-D -z/*cC.b 0W/uT%{(c<)G Sln?~CC]H+Kxv? >>]4<87j\R8A2]K8 /O4~,jRU><~Iξ;bwL %űκ Κ7z,z0uM@ FO{l܃ 'ocT@ -4/uM(%lACX/-{-cPsT.DdD - e?xi8?_~U11.[HYIɩhʂ!+* ! FM.?DO - - ;f Tr-?c\]Noz#A0A38}j2X4_#" a@FH[ԡ$5epf8ls =o7gK4蘕ER8QPbg[Pmѡ#xco-(kpdBFq]b@ZhTE҂-(q_O|oe @h"cث7g" -B:yT~p,##`n:Z?%!_<%GF T7=cm% efL8x~^K4q56ؔfL8- vsFXP10.~E{ e3&, i%fZeež2WkS=u0WS/ًkRl:X=`փmW6 Ə!¡Gߤ!dXN |g@uS.WX0l7&%f퀬ScfL8eG chֽx#)wbeWkv 819u}{<\hOE{eyb6x$G zPH{cثY_āXngaXW髕ӣɵK܃C fL %-J|+zܣ$O`ƤyaPqO5ys{L*iXI@ fL %?ޟۭ`( 4CP j:FwP*4x{i̘4/S]׌GىNΫ`͍o xu2jfQcK'7Ҙ ş楇}BIĴ#5 @[%#a.{ V\zƚ1nGO̘4/=J"1ӻBgJʖt>p+6ܣ$G`Ƥya/WG5jqϨk 8i< wR<3&1Ə1~ǐQ՝:y -Cצ˥w1{qL -F8nDe1 ϭ>1}r"/'~MɭG>.IY0ޯJ; frZ#<Ə1~\GBv ]h c> -{E"f:u6].S۵1룍h7bZ`uJO!eCā8{j<@u:M(.؃4`VJx8cAFBP F x*p!Y߯XWnzq# 6&k!T -@j:ۀR~`Џa</a/UmPĸvb8&btm3+5º)`tu&:ۄ=hA1۫Y?v 2,ֱl.ȉ5Z O5PmJ5ǹ}E{F7MS٨JX,5Z O5P}y֏id|dubHJMUG btчP}(x}9]i*IQﯣ&7Ck(&$hЏ^MsĤ ǸY\B?Ŧg1 tf APV*ZZk;@Y- -h^@f=1٫=>_MJXu!da?[~b8Ix*f:s?=13TλMOX~"`2sBG-V ͮ0+ -+-YeKьO6*͸cU(0a(?1!~,u@#(,&9{|qڅp8L׊!?Y~hTse:x'^mBQg}ZSgqTRvecثus6~ y14 ȤʎT).l!.1A7 .xE1=* Xf-GW|w"yL#_,5byIŐ3t` E7Xc ̀5_T-̨8xP~j0zte&5{++ljHqF@fŪk,c>`w@kuAzwd5T( +#h~`Cߟ=r&!`([ !#i+䧦/ ݤQ=U@=Ĭ9jyOTyanMA;NΔܲa90^+/hOhk2B|ku҈7*J#BJTux~]+ŋPXC?tD&y, >B?Aie0)) .y8^EzXmĜѥ=$AҬǸmܲ=A,u7[ -n2gdKѬǸmܲ.?L#e*F|er,N*bΞq۸eGA~ >h!oývdzr|ju ef=m=uǩҬ(t:.BlZamʞ3"$gOҏ!N'4PrKHdH$da4n)([Axsn>TZ oQFq7G6y.۫}|մ άSaMZ(z-{lO"7ǺK rwЂ"_ ytA~cs"].?c}.e[PDBVy^, n#8{Hҧw& KΛ!Ps ʯc{ ^GO#G'guosHSC6o9©'CBKѷMA!y.@<4CVP64!3#ؤ]xsn*/FkrRiiS@Mǵ ?'Џ{8#8P`l YɂhΈnS%1GhUu%j34!B34Lc@6o9bIQ>1 |t]!q +qoSE^*1T}~XyKmǻx[^Cf<0!(*\~,aP/7%MaqGQ*z 턞4cBE`5;a?z ϔǞZ=_2Y$ -!eMoOսMۤA hB֏cս3$ɨk=л]p4gh'ٸ>^gQf/s1T(YOz(35P{5cOW 31u`=h ])?f{Bh?[PI`9?X`q `@# X{kpʒ!mQ绫ӣSL ԬCk^ E wAC;."l.83}:Bo.@v I_r}bE?v35"^Mugy {}'Լ𸌒gQ)_%+hډf JOl3tJo)?.=ƏJ2|y92,А?}LWTpgs}m}FiN4k@?A̍tSE ${u]Џ N\,5#H'1>CFRׅ (n>{ 00c  =i/pd^| ][9:717P1O`)>\K?i r\jnYcȨ(>uZ8Y[_:\kM#ך7/2/92[&p@.l[#iVJ>,\#F52w 9^Nuԗ_Ъl;{pd\Z^L֨g7^^jE8^_ܦ7!"3uc>DzVАk?'q\\9QV~sx:]A*'jҎ-qc~Wlah. .0G~Cu`?8&K׏ &hnܲMڦtif\ -ˇ\4\Tfo.Í[K3?HǢ+hw(B$eI@-[L`}vo|i%ifC4r6(6%W<Dz6ZCA;p@[Ma&NKR$pEa5'ZrLkr)@?&{51٫ Mc{@S:#SmڦteE#G[KSuŊ8lf-y LqWNP\lї -$nWGOŒtif3c C~YB@*VLjJю1ܸe %n WnU_+Fc?FrL5 ]ͅ7B럯vЏK3 GolLoh"b|.ʦ /:odڤPWP`[Ї6S,C9iB X~^߯Q?]J$1>*WP6M}v(?$s`lm]:;?#i=ac0mvᤳΆʲڶ9c fW~h؃PSZ14Cϱ'j\g؛jPn/NA;.J;~Mb $ Ce_5^biBW}<#jd]jĖZdyòTE^ѩ[m.L8ej<tJVv.ca׉M6hFߏ&Zkʪz&#=Z'yczXiֿ6]ƮaFJԢs>?XA/:}:ekaDR DžH'<&Cs yj +;A Jɯ\=/~"l|Hӂ|vaaWt+l|@5y%{5*]eshzڂxGu-3v;+N*###n0Ǧ]qwLvx4AhUm|eT{TRry(2&@ß&k&JryUQ=I E&*GHh"W Ω7Y$gqqb,/-!:N(Z:l(ZuK -ہ"BA.q0\US\9n+[@_0̞liUXT|j c?༶S*Uvԗe$pS@cCGs^t=c0l1_8ǰW88sbj1$}0qcH΅9J,,1 &u`I>?+6GsWvpeZ.wd<85|v^~ܤGn?.O זd$%d4l18!&cWx\F$gB ,Z6X~M(H7ԁD? $SrJjqMӐrg3=jҏxX=5 -b3;'7O/""ƣ4DM< }r:;RSB1 raʦUx`BAG1ʰ6^²xPHIL(* y2{j֗ F~T6wM/QdsiL~ xu~47-!nd.5yDQh1[~L_ЏYxG%Uu -::TGpʊ[-H8tKڈՈ}L7XA(-ZymJBua ǿ0\]z_}2ߵϯ -vXZ?`D[{}E҉Mʤ7N4{;>hX{`vQf,Ѵ^/ ÿZu`j%K -YB n~4A{':((#@LWսƘX_k-ԁ0zԋ<G"SXNY"Ü"gENLʆ˃N1g"0(42.%spjagFT q #믇=ya54WP,RJrCv}>8,}:i@D~@GgűGIzE 5]u=*2*6uc4ɈjE4ۤf~ y3'2 wl͸ŗ7-O6} c^nsc}mutc"BjЏ竵cʙˉIـǰWNsy\dЏ)QVp#E,S'#>'0ӹ0|"ƃ?1ߥgωWKvE/hv\q|{Cbap-lP`΍A#N1U1l@C?+HFy7sBMI4e m.5@0\j]QVOgiׄ kD~A$; 1c?竑 A0'[S҃~[1 # -"I;iv&;*SѩyE腎LCE>{'/ ,Bm5%5䜊64dFD[Ys + -J {@(l֙"ͭd(41#v&I9v]ǟB?띆~j' \2yL 4g*_ _@_o`̳ бPp$&Ut(`-Fbjamm(5(R4l[ 8/[3Z}f HXşcCi1 EDvEx`j.4#*:g۰Uw7We%A!QI9BE <"j^ -8;c<꽭@8zV0W5u MD<p`3j1-!ju|{F7]u,HVl>V: y.c40p*th=n6ՍKs;4. JPSSA Ye-#.qU0"'N È`^>E!I?ƕ[*1j Qp(&K*Kܤ\]i.F/0L]s4/?xy<\O! P+mfgWTh.Xmken|QUZuHѡh^||~usiEYBVlY@2zc_HJj!:8tE#{N"EjЊ/ό7@9NA C?݊{LQ9%UCS AKK5 B7P';ѿ  ]:w~G*M[],`.,FBoNf\^8~TZNd@qY"cnrKy[\|:ޒ4Ɲ>֏XCOfٚh*ɤF{P'iV@¤"6xy¼yۑ߬$e~y -m. /j# Gݥ?^bpq}xJCSk]W/7gLR^Jn0+ B/mfic ]&F.0+ڟロZ+A@Nwtj~us -å!}Dh&<>ݞ.Ud'~s >Fŧd׵OrqV'`d]+ƛ˳cT,C>gW~fQn(Ȩ;P&~`E.`4YRSO͍&yp~^BhQPL_cߝ0 yBjPB0%u|=@gSuI9pq7|1~_5Gyyy~}3/0c4D"y YZތ w Gqh 7V1a3y} EF?0<>i3*+*]li 5x]X6`öGL;8uͨq <&{޳[q -Oau -wI3k~B͔H (7WgG;k SC%9U8G7:)}d~ ϦM`;؜n  -M"a^^EtuG ud.ô "&??RGxo{uar +5>Zz?q tM3!&ֶvO/nw\%\wuiJ<]m 6ek_iP3xSTQ3~>4[K48 pFy<= iTSK*/JDTZBs[G膢 ,a[$׌kHca4i(̤' -HQ?C1j8Ck^,OtdžBUd,:E Z& >_HЄ87(2$rf'7-LS ?qG%V o_Եy%}p<'+&!•6M\qp$K^c!&ޢ4][4B4 oݽXE:f[`‹+rQ$6 E -4U~F#  o!Px ⮠glaBY,?|7U5vͲ:yIg4[tX,x\.@GؗI RzF%e7O-C:g.hpaxki4+1— G@WZ݄BQw|vq}[!*_ r- #:'{+CݭEi9ͮי䟮Ixt|rV^IU}k%ZGf O~|xCh{f˸@l(Iyz&V6Q7ptgpSqq!Go`{} 2ip1r++Ϣ =ҚYtCΠ4R(% BT1Eіŷº3zk̴Ý4zf+ Vxodj.$[)FQ& /EF6GkUu5cCĭ,iH*kX=:9%Nhu30 NNO1V0Xʄ4šc?LJ[Ӄmy)׳!Cҋbec"vS'fxJixY}Gǽ@h<4',0Tq9׀㰯|K}71^^c3K;b[=4@"%rN7)[IG+spB9{ԏlwE9ȥ]h4ȹt:j !S*%Aj,٠ X}Y:)J2 bk$h~`'e:K,adT:L4$0"`e+mj_Z;8<:9C~yyuuy}}sC3ؾ8?C㴷2=^SFYCBC~AfnIetq\#śGhW6΢1 s+p -qф$>R89܅h)/@&V9"8(_k[ A'v\Tzk \pPjPy}qz2MuhE%5)y-s{43Z&AoSyNR/9#~~muG%d341 r0xvDPPuXn(0qOQ) 9^,qE+[[[ [<V\_o.H 7hpͽKk|:0V\h͍h L/j:n0':E.\Q\.[sӼB[٢]w{ˏڎK15ZbXS) UM41hj;GNnKzNRD܍7ߟrᛇ[nlw%i\ULQcS*Ƨ%ë%^i K5P1}RLˈA - zg"]@&8PFa8HR-6RGҘZ]u+c ²ڦщ鹅mG8<<8C֡4;5Zq`:'u|JFnIE]KW?ѱH>g]7ACQ@xx Ce9hqJ}5_>84"BH1 nAiT+ ejO)젛61ӊ-8N,+ѩfpŅ֚_*-ָ$+BV(0u0_IF_TW(1nӣq:B݀R〿d904&%9|hI^XLO٩C' YT34>5CA "?Z`5356HN׌y~T卒'y Ip+v#ΠGv~w{w aXW[TpܭLh]PV7C{'0Bx=}+KroJ 7iCU  QQ}v Fhf,idxhhyP4HP(Hp*VaX}!L0F -B`iP7G(-,{[+ cC= 8%rhDt\յu2ٙ-0-PoYHA9:!9#:*d9 l8b4fZЙi|Т6`wsmin]ĸ`T߰(SI6e*I( _TTcEE0|q{MiUb@MdX F'4w`5hĊX<@$;96G[PZ\H%`.d/< -{ns.2n(!7V(- ݾQn퍕qp:o˲0@D1JEUc}eafbNwQn&\$MCG7>-j K1 SáJ*r!ar.(jh[@%>=2TP[XpזgƇa(ʤZ~a1,:1-QЀmu5UeEi ,0UPRk) 44UпZ*/j-c-\1hKEﶇٌ~V԰S֜Pv L W Rѻh6e!韂߹0c`ycuqj83z?ݭd$,{ǦObw.(oБWb,m-Ԧ4ISc"HO-TNU<"6)-;%ੴ01HBAG8l<֮Iň>̽'4{~K4<` =;(`ogKCuYq.PRbSӳr ʹujnmktwwvv46V*sEZE8háQݵ^,x6N"sB?LX\]]D~Տ:Ҥ''@TZqJT\bZV>l(5X(N -vyqqnD*$SkCuiAvzR<>?â?:ZO4c x&d dˋ n"tAZ:zF&1xہL ,n\M޸CfEk*Ja(.8/%zQ<5#'(,0oEy - >(4 -Ь܂Bn@0/'Sm}WyJzar1쪬Gؤ5p+[F#:'ui"mC\>.Cʮʊ|MZ eDcǯDH&^,!:*0T\oHGNH)(yx|jvayk㕇G4\yBӈ%Qt!6V!ƆDc8- -D >!S22ˢY8i WVffFZJl-J;ZH*FG0&4HC`,v;8=<m`ׅ #P;ÊB~B -uUu2J5XSQ {0<%edfSEOXӄVb*FFb.$Vd3J˂Y]܆.*sQfZ>;[q3LOfh(. 8 E(/+@sA_nAKMKKA+LV9I ЩB*U=8q3 M4VڅJΫX=_$:9rz{i!m;G .boL&Zav@XOX.v!i45fLXuw67Âaw+ xᑤeSD=c4`uccsksk #4dJX= fhnRT+8 4cAD,u븸(u4ۺ7hrCèT)yE4IByb0!ڊҢ8t1[9\o[EDFC('gdeC.]GG& -mO5%Ca)ihnIDc^[]l鉱֦:ш%' g8 -OJJc[X =Uzfcs%C_GxldU$S>22rǹB*8qH]8Tl16X(H2 -kAm"I YJ.%;?7=516L,:U| eEH]QG1h 8-ؘ(R!An㊁+Ç#aNi.bpt6 _@pTrnUh miB]8{Iʕ:O[x{y -P-M4 -+ ͘0ՒFM%*hIpA_@ }pxd|brj7,Tt(裛T 7tS0ݥ";"1  %;v8(GV._Tr7wb(6::6>>>1( vwb K mz|"hPHHhxD$XI)*p+)]ؘȈ>w: tlyHY,(.xv#Ƴz4P6#Nc8}A},ti8g$o? Ճ ɰ+W5M`OO̠Ϻ`oW""&dBGLEB;:TqR_ŔԯDrrZ&uQ+jv0sg -U7B T܁px&:g+8\ag -W.H8쁙61QDiਤSGS -gVvJRKBs6#t_wpΖ.Y7`F^1"1"4c -(*LM -> #;QRɂzݎ. VAG'z{:[[g,Df WB8(D&jI$Z1HG*u JGjɦP\ӕSQND_9P.C Uյ Mͭt?w -mqk85)l/f2JO )-DNZE9B}t Bcnp>G&x0SbIÀiӄPOq\^~c!vXÅX̛&܇z}?_ ՖA Ø2Z h[p;Z(,3T&tu k|BJjFbܭހ WdAS$[d RHo۰:i訸fT|b2|sr K1[^YY؊rzʕch~"`Dɐ_t '6,7mz|sB- -) 0Z*8Ȭ -w+(:{@{H~Kd珤2!* '5Y$gP5R"E" -2 -UkPP=P*bQ&^ ""QIfL((T` ^?}z#pQ/|XPyꜮp`wW9=Q\;1񬡦9]ǫõ 4[XЬ(J7+ݭ_Pܤc~ \4KE_<+ ED3:Z"U#b/ #ߢX(B %ŢBDM@aĘP<*#nŅwyV7y~ڄNfp!ҲsF(& ۼek QCb|gi*'?].m7+fZ'&` -3(3ao@Sވ? N$doD@DPPi _!y/yK,P0oP8tyb T/W$j6o -1(~x{9ޘh*ͤWW{ݚ(&Wӈo*:C -O)__@HtjAm;}D%|E],E0 c0y뜂<%F(ѿʁ%C`rA4uN_-5(H$)5]kWo,*Ѕ%%/L@`) 7yS`TẔˀǰaWx&*~=ߞn$EQK$䟄>^9zx>b5X x 8ǡ -paRp8PVb{k-Y6t.Ɍ x\xu6PGOsJ$7/ 82)}lyAC Dz'-PE҈7кC%fX"yQ?ߝ.W%G~D".E$dW.߿ƏU0lGD(Zv4CŰ+`"ÞS>]m7f&DHX"H~Hg /ݙ?hrƥz@w+ElݵX|??_Vƺj -bC~,H$~Y~}Jo -,s2"\:Gsy!ھĿ4z|s57 -X"H~3,9~o:xK!Ba ڑf4!{?Wz2U[$D-0,.>uc[y$B8W墨յV@"ԵXdk~<'>]-cD"mti`aЯH*4n9Bh& -U+5q0C6z|2]W$^vX"H~ĤhW&#hS$!b(Zbnch(i+[l<8>+H$@WRne~чNC Sqy*pshUb++BdVÕ-`PD"VsF/^tiЦN@i{B8p flM+)dhO;4_|4%Fz,H$߂" /\4b 2y6}IJÊNYb/#)XbxcfY>\-H$!~$2K_\wgBV /T P9g=0V%Kй4~ܞ.uz,H$ ?Ɓ٭;"űD"~@G&eW._>^2RV.g>u_47+1 ۼ3\Fa ?Tolm,N -.D" L.o^=<'B~XC,>""sR4.!`8FUNaKLİX|DDFh4 _m Vw$?0<>yh~EE\!. BOnc]brrp e] OGj2\Dy|bzR 2& ;h[&k~K]-&F=mˀDƤymp k$[CI$w0zwz^@Ȫ4.A.]AzzyG}y!2%55]dKta ???>0x|q63R*D=4:[Y"$qqF;!r6oB}DՍ'-TtNs3Z՝5V?_oΏWfG@Ky,H$%!ɹ՝+Wo:Y6͚G֡n{_a@&]J3vhQ́@% CSXW]IVbTH2D"AG&T- O 0JHZ1"XbL - /63u&;ގUq;`R`/^twy,'%&LZ%ŏ)E{ɄCy%>@Qvxa%_1Mcb>F8Ǐק۳< HX"H~W 酧'\5e -d\.o{K( -!l>k5=ZMr UG=H$oaq%“?J@`zkXBm%+h@6R0i}$Fë2E`Ȇ3^ϵHWCy^cK$x\<`X{"A]=c;eoӻX{N:<]/M79x,H$%2JgOo.bR0IT-(ˈA /@4C$Iت_okKrRE''D_N/n<Zмp v0>!Osڑth0vU_o,g%E@cH"H$?~CcR ߼3"u8xj|R_`^i*L K$ɟ@HTr^ukoنY%Շ/& fEX0Ӂ-@sx>Q~kت:3ÂCI$/ 82`k[`ꨭ;jmo8i?v=fxŅ>Gڎ_)'tdܴ()%OJ*kZ9{aR M,FL"4C]` RWVzĒ9@s Ct|-?+/Ǒt7WgG%Ϗ`]?uBXCLKOYق0LVؓ͞NBŒ!?ee 0YaO:.П9=^m,N tWd$Fk%{XlZa}1?,FarkqaCv1҃LB[)[6qy-)?fz ꫓噑UR=H$? -z+&%kb@HQ b._>Gz _z?c0U͏r\$%Oʭh[ٻxxcMsD93: HЯu9*%6> 0x.sT#,ixwcizRK$ɟ߷Db}1S'Zrf8=̨Wium@-XYANBWCKѾ̔x~ZjDGGQ80uzKXd &5EEMlar9vX1Ե I74~di27>TUc\D"iM+8yz')K:Z*! zX<*,1D"H\}M/IKq,H$<!QI9@`-NƘ0v" 7|,QӅq `+DZ[0n*+LMðqp tcK$D)՝Td 7`2@ p⒅2d22d2XRV68;yC1I(>?=>\[Yjk,-LK|X"H$"r*F._@`/Lx " K%;=4eʐ -ؘ bAH Ii _(>ހ,hi(f ;ulTDH0 RK$ČPx|Vi]fT5,6>*Po/WENNN-.P?<>P|zz'Q/@BLX/;Co[`=^n.̀&#rM}ck{S3s ˰`CY&mC7,!I83HXZL *ݠt}04a (Rx{ksc}ueiirxrbtd:qCm )y9$bX/,fX -cD"x[`hLZamՓ *1/T5x)p5m!x<75.*<<"*:6.rvnAaIYE5TΞq(s K˫[ۻ{2 ٧4_C8C<&jD.b@\__CB^@B"e0 U҆f!Gz:[j+K s23RS0Z Q^ i,H${ @_޿4m>s*|(=H?`ށ<.N -.WUr3)}C#cӳsK+k$Y4l>>>E c NH#ؠ>4!7Y//-@@: 19\uVIx1bb)%D%~Ë7uNœ&|wi";1*{@@0):=3R bnk\{rjyaqiͭ흝=>K~.6ϛ|!zIB./--B<3=Mz(zz:;ZjkYBg$%&FGE`ŐŐŘ$D" -?@,uo ,s5lDQYx[kI -ˮo߿PA̬ܼfnh̃CãcS3s KK* -EK\hsӓ$| BtCn!\tu%pIqQA~^n6$cc"`8} -b8D"?DAm6RT:t?7`Rxu:Y R Y(:설d匬"җ!![ {{H@(% 較`/oK3߆ښʊ|Ha҆Y '&BAubR$)H$wUc{@&i -i(N(ж:,>ߟ֧{ -RcC59- { ʬ+GŐXNr93+;77/ҹU 2'xƦFuUPJB ˅"IBFiHxRY AC ֛%D":߂"'` YJP Uzv|=ٜo(Έ gpL&U9 I, ;&Vdfb/(t\RJ" B~:H-.**- ᛓ#oF:iIII 0ICDGGFFa}r8_ȮD"H$?߷鍣'$O(>JGޞj.͌0c@t{dLrXsdٱI2'$Ҝ` 3@"t1c)$|aN Lz0`!Y -i$1P"H$_  w_`mFI L>%ENzzoi"'1*8Y~ BPU4lfM@h+q^hT"# IC`%(6i҆!apVy!H$/CyehaxM#Hh /m;DϏ˃qz+:$@@vQB?oa3fXaj뀈U$s `^#= $0`8,/D"E`^;~|D"9U_Y<5SWh6Xہ(N!! B0Ô ?!*le -&]0AEB$ +H$_ c`[޻|> Bؼ -U\Z&\DK3]X{ I >*I!g -[bń짥D"H$l.k>}~caiFZ#1޶|x;YiN F?v LK^Cb~N%C"H$~0X' ]?JAmPt{>>\wTA<  ,wH$ t!yU{֘Xbͳw8|=]ԘߐD"H`"Jf7Onͯ kTb v8!@ 7dƛ"H$ɟ߷شUz].4۵P+J2|䜤H@H$ɟ rRNyNA -j~K5 wVD~X"H$6~ =SkW/?>T5]G ڠK;>ޟ7¿KD"Hp}?yY9}Q:HR[YuyǏ iH$_@pDBfIcۏOORUʊp9].|~xy_ΓkD"H[`XLj~u(dE<װcF 0Ʀ-|=^O:,_&,H$??YM3BATѻ$S1agh'o:;!*_ID"Hw  eyidHK,@5-ozO)H -D"HhHAL*SW`ȎQaOXJ$DHD"Hlh96 -2Fo ['|;]iMi7s- cYH$AZ;|xXk\Z?P#7A$DǏXW /l<y"H][]dSts57ZLXG$Dg/>3~5[aW/ %Q!!D"HP܊ٍ֡k_%o]E+㍾ 0^]*D"a9>s|iwҎO})俚˙OA>\o*If5"H$߷?eM뇗/GVvƻK2b-dD"@A f/l<kl++RcӖp{uAZ\DԐ%Dg!SClz!YYz GƎ@se~ -2iR"K$반fJ[YjڡT╡-/?ޞnV&{sb¥@H$,Aqi#X_bLBT"X}﯏'[c,SD"auTBfi}ӛ^PSHg]IА@H$ r`XLJnE,GO$Y?JyIE}x{;_-6kG"H$? b^P>2y| - {9mB>_-N@H$߷Sz^m yB >ݜ@:9.2$($D"3񣗐csʚV1 %|5d SEx}9%Y_YlD"H$ Zg7襧7!dS/ xMy)9-=3+3#-9.:,$sDH$oY\92yxyo'̓îMSo7g3muiIHPF~!RaQ - uTtl|brjzfN^AIiIIQ~Vj|t()M"H$ !E'ew-l]ݿ=פ,* T䩡œ䄘`afϊDNɐB'bđ1 )ٹťU M %!SY"H$ ,Hc5DB=k%@l֯O۫s]uEyPc"à%@"P| b14b$KHJNM(/*-onj-I X"H$WAqyMK;'W. Ap8VѻM %i@Cp{ur2;>ZWY{(#XJN,9L8,i'$B)Ȃٙ 9,H$ ~K˯h\٥/YCCv#X xHwE8ރDik)mFjR|ltddr,I."N"3d0 b9LlEFa8.tbHlH⒲j}#cK뛛Kc Y !RK$rd|z~UkACFq "&S /[+S#-e9)IqQ)A`dDz/&o",GF2BOPq]SK[G♹ŕՙ()%D[`hTBFauА 2/Latt !זfƇzI$WLNNTX f 1l0$!IU:&&iLB_PX\R%qWh{U^D"r`XTbfQu>}]b3P ,$P_WkS]uEia~nvfzZJRb||\llLttTTT$31ApJ*0aE%e,Z1R?4:>9=t|z~qu{wps2YF"H$ hIE56وN`b < |suvC"y|d0?/;+3#=555999))111~ p ))iiHgfe2\PtYyEU ֎.#cS3s K+[;{({xz~y}{{}~<\O#y,cD"[OIYŵАh Y0[Xq $ּpE|~~x}yz<;H^]#PWSUQVZRXXPCd,yy%$+kj[ڠM ^^yǏh)%DCrPXLRvI] {"[MU2FA$򏷷닳ݭɱښꪪ -PxQJu MP[1N|bď/Pa O7ݵRK$C߃Å@Y;% e; !a0~:?9:\PhooήN}Ccӳs K+k[;{'gB'xj87=51y.D"@I.!=2KK` E2 ׷חLJ[[ʋs3SSccc###1::;1155Exn2xyyVͭݽãM AA̒,1 >~8&TD"2rxlr^[]$ x>%@&\]nC.o.///---.b!{WVV!~aހف.pptt|rzz}L$!_IkX9XQIH?ccK$5⚶[^`e(ɟ/ϏO:>>9&|NBaÐϤ01 bbF0f_OuZD"GGd <0}|yjxK6HpmBR0[B*pw{{s}u}}yyy q^ -7, Y -&9AbrOCɅ·jsI$4䤬[zKP) -Bm7r`λ!mǮرbCFc7{+v=Yh<ܗ,.+3ÂAOber\yu՞底rXsV~za}"ǫz5}L!Ǡ3Jj7E>S -w#d"ͫ@bo2 `[ MhGᰰq \y``XnGDŽB~ *!'-9ōZj'<ߣ@ qvrQ´b^ pۼX||L!G&w2$W7wϮ_={hCW'Yֿlj8'ՄB~H)=Z54%!"W -oh%7;/yyq=1!L:`J)h\ܔU]>5k+?X#ظw\Wџ)W3BYP^el8g| -_ћ3*g<މQN !PP!'g~]{uI_z^gv=9YvccB!?!G͖-ԬOY{&:-s~#_坳CX߭ (1I!#G'Ubybaq|~}{.]|t|@烏\{\E!&B6Ҳ -FfWN/]ڻ&Y;RNC߭wnņLJPWzg?_WDŽBBYՕgAzzyc)@N8¯E;Tu"=>x||^_MB #If5/ݣ[mi Ⱦ-i |"~M~ Y<| @>ս"! ԬcӲ ->ȲE~uXt>/X_ NTxՁ1 A]CڨWDzBHh 1SJf^Ius,=:n}}/Ay/8iC xXWsBH kum}#BkddL4ѵc~C׊AQ:ݛիDŽBBL"#"'fԴt N,h3{{ āxq=1B!$GD3&gZ+F6u]^ozy?߹0>$8;|L!$P5Ĵ|"wϭʺ[5 }aAonΠ&j*"fY+z׶ϯUSgB^Gz׀]=PG]qvr|tD}L!$rCkcR:UMGdy?bHoHwgo! -*|2p{}tϏ4W Q1!P$,Ek]9^ hhÂ\@>򍭗'd hOk5;%!DŽBBԬQ3&fZu]3;γ+㷧'dd {5 >BߪErz`:q%߻.Nvח{Zkl4!DŽBB0Yim0&e*?u ,1|zysPwl-|]'<]wW`幱*Ŝd@< !(D,rT,% GgֶN/OWt3u ^.7jOKHGw7WNdOuE9Iب?cB!Kca[U2ږwOP2|H'">:=w@uj0m|Y_XeJKicB!L`dsNAIUCk痑B; -8K:Փ9۲/͌ %9cBHhuxf oxbny}{!YfT: T6y$c 28=XYnk.-LMI!8Fl4fdW6wO/n_A0{^7Pw r1ddp뺾bРt(ƪL mo.̌w5֔[s2`cCLؘ:&3!R7%e*jں&fDɻkםv.(Yɏ?#uԀ?Q=,L?=߹nO뫋3S7#eSL1! r$ֆ$)[KHn588:9d2fR9o_wb2~|x@0xvrdud*Q1QBO %GM)9e -P8l;rb2ڥ\d>"r11d|qvrt9ㅙ skcM"81uL!g GHS!9˂5g`h|z~iuc۱/NFNr2 Q'շ}9Ř0V.=jt䋫 ʐ򓒲ͨ#gP.&&~xo./OQvlK0\_]d&uj826&Kum),.ml7821=$N?<>9;U^w"el*jS00pw{þ8`<\WU^\hA27ƲBe@HFZ)ٔjͷTT5}WN^Xox )_@eZe26/f +?be⋳ӓ㣃=qxx UK9-8Nd,ujژBȯdJFJN5gX -5͟:&g7v{++- / 3ðP+;ҏ8 1OL|uP<:!89YlLz_dWV7wtv -7C`ʽ cP/}=ݝm-MuՕb\P&%& =3T1!P]KP7bF99kXْ_\ZV\ 175~jkotwwuuvv|nooX_W[S]Y^^b+h&6xT.R| -B!ɰ2&!e)_)i`g -Ŷ2B ^T4\Xg0&#fbXLB!"HYah% eْ'n.*Złf# [rs26hJ0cjX\$BHPd%HDedXL+ef9 95532233 MAٜ. )OGGEi*x+B! ,Z_p{b3')19Y =C&)!eih8y8F%b)bB!sB0x9VaXhV`8X0D~4B@dxEtC36Y9*0!q*^XR3| zA POB[V̫I61!? -endstream -endobj - -8 0 obj - 137470 -endobj - -9 0 obj - << /Type /XObject - /Subtype /Image - /BitsPerComponent 8 - /Length 10 0 R - /Height 502 - /SMask 7 0 R - /Width 1936 - /ColorSpace /DeviceRGB - /Filter [ /FlateDecode ] - >> -stream -xͮW[➻%%,TX\ %m1sI)-V$%"Ȑ,_.cla;gfeN 3IcL Df1c1A>Ź37^g suwg1Ȼ,2ҙo.Kof6/qy}_^eYe?v?ּLG#mގr<. t'X1c1Be"ngYet]ďq?F0ry6#C G9Tcg+Y4ⶸnr\:x2.gbͧOy\D||e3D>4 S7ЦeXv&"ҙ@daA S_4/ư$J3/=X0U룖i:+Ks1c12>z僘i>@Gdl0% $F;/'Av9>wc1z-;ow,<׾r#Ԧ隈+u ehzk+%…5\giWvA=6揯,IܝvuS B0af?;&x;D7)\/KJyK4%6񥏾D䥂@c1cY\}n1+|(:0gw' VݹHD&W"(h2%Rk*/e@^ ^&#z$Ic1c1|fG|)|1:,YD`3vaD7>0:CCQΧ6Og1cq6\aw/7]uoȺK*,tKӵtmO\ Q\MO$+iˬ.Q&"úñ!fYȿ3ډkfY !W/܈002Hiz%{ڡf$gW6c1|v |zc&gF:3ҙ^gu٨H=cOj>9ˑc1JDWQmF3tFv.y"tw/ *VvbZ7c}DmȦxI,DMAv/'֮l߳Ytnk/7 K"wBT`Wyy gu5MU_{}xz%1c1q')W>=X{_+qH>D#X>v͇1f_\]vr 1{ $ݢ;n`'ڕ1Yv:C7uFeDlM Y,& ,Cm$2Id&&ͲDll$̕_о&W^-+I٦c oyz5>ַc1c'D'||ȧ|l$2?Y^ghę>w|n1_v_]ޝh7 ۆN~ ]̝F52ܮ BL¥0]+љh':e i3>ۉ $2iu' ]e#wNͺ}2-6kYy!Ǜb3l/E[^&yzsewvc1c+#ښ|9|DD;I i3> 3P9<p>C1 -q [Ӹ [~B}#OcNTU]&2dI> >d +p^1Dvܣ޵sĝ=]>ȭ?͕hr-3]e,:su 4,f?I>AEfЈRF ?iSUw,4"$L6^$2#eF" ɰ\y钗׳]#Fz^n_SB1c1?O>tcO?䓋2>c9LhYͲD8$SKW_cD\-k/_?Mqs->Q rE+4.vE]O6 3tY"\;A"l׈겱X}v2#E DhDYk5Hlk BozM -/T7xt /c~7Bwos1c1/pO>mg|>!"LDͻ| 9cznO^GMnֹqdn幭g˓K'*KN>"t.&zH]_e34 &IDe?$:C#+; mgF:lNdnlW]& /Qy^̂ ދ߷vt̛7v~Ce1c1?&)ܯ67>Na3&>ϻ?L>RzcK.fnEn]h&[voUt -Wr cF̅$asM}O4X B@!D<3Lq}ꮂD9h1%#vw~w&̟#uk,qΕd -.[Ox&pC "Yef3˒6iYmoI͓39Ge'!K*;gCGD HdF: LDz4«^׿wvoߐo7}>7Bn]klaF:,qnM%7s?ac1ɕt͵#UGC߿;o禜+t2G]2qfei"B6+KD'"4 ]4Hw""m.KCD آD&D&5hxԟ& s՝D&&>bcAëlf"W^x7oُ?ݻ9n\\r|c1c'>|2|yb}.K;6C%'poc<qzjW=w~astĽ8B.@.Chӭ< :?"^=ڧ b̲DM9OC B!t&Lq^"2tY"j[<iD&A @!ƦWl'mv@񝂷qMy a7oƲ?c1믿V>A[^e a8CkYEUvL4ڬ.&qL޾}L!w}]_.ߤb1c16}`CO%>x4D0|29<rC1u{u9f.zeyCv u -Nؖa,s2a"$2yg> G n&YR#"C,K֠(Z: б#RmoL8o~I[kmy;x W6c1|L.Y>3@Ȍ 9ȍ郏;coYY;.pS{;;BX ҙ$L N sAc$a>q2cmeD gOdeY"Y#ڍ<7ܙ$2k[ګ+;+;e黀iV·U~7ɻwL^^^|Wwc1c "|!w' 3}<18e|O:=18Wv9]st̵C{6;i.(%\n\ʓMkD }}YYveN&&LL4Vf:3 4X;~Y~!OMbDY"8GX"j[ҝA3ΝI P,a"B>2÷5q޼y{4w%qk=c1ࣽj+| =L-LDuXgu0I8̦j1&Wp9@/?w~ -2$:]B0cmX"bk+;X{e:D3I$:Yi@0ecc?ڢ\f>Q~fͶd2mIw՝sDu&a~1#; ex]k]$c1c -+|q#|O\w"$LAhcLs܎NcoxuӧOS힘;co.m悂M\b6;Nt_ Vv\$""Y]#ܬLaǁᦄ5>`g17߭-׫]6s~r7=\2\;pq) dFq(K% &"4loЈH-ko F _vgI4jٖ"6_s2#݉84|ә6͘>JZCv|c1co>ޯP B8["4"&>`ÇW_co+Y/!2=1W ǰ\S:]hٺ @FmxD B#H4$YR#HvwL|664h'LfD],qW2˒,+X{3C#+,M#6}zS~wykg3|Rܸwzc{t:w=>]ܯ=2Dei"I֥F0}qA;Hjrcu>vp;KudeDžG HI@gϤYf>ę}&tfYFڤQ睕G#$։vLG|{uZZ^:=co\v9^#cpV>VGhr,ͺ mGWߎ2vc|Ŝq],w>}Nw0  -i>$ZwtjiM6M3CՇ&"Qwf$Lf$DYV FdYuXD< 6飉L ;&}j{?O?c1W[ͼ^ɺ7혞1F8?_D63i }WjNЎjܯvscz_^r5• \;<ډk -; 4FtȤiv$L @0#Y u"hĶ; Is>bu޹O aByIbږtFЈ.4=;|wH־Mr6c1rE-oMw9_~03;rc@G~L1 3ҙe@X'qK7%~1_%;yWܩ_⢠sZT1c~!nzk_fazd1/EQky,#YFyNb1ro˝׫Ӿ_ݻ\\quדʒkW7aXu2l"bG<̻Pf$:iy7.;ϲMDFڛ<γl|ם(˻<P4XKʎoUyNy箵o ~ʩ@ߎ15 kzuQ;O>S~ ߱ ;&5G"hs1zNwΙ"}FI'D3CuS$p<cA|~sc|rnoνK\.߿=HT4@ $2#Y۲0iĶ\yAcMmqG04gifK9Ȥ']] -aF<_>'7-LNDf3k[}&ؖ+!hlVX=޼y[^,c? )r2/w/ǟtZ䶆{nqW=oqқ^Q: q;~19:s:g: :~")Hh4֥FpHy''vY1Z$!nݝj3o߾}k -.f:e -CŒvcFىvt;kp7'0Id@e:}DmK]9Gd@ hpElkW6376YƣlaF3fmK0XuQv ݹ{oܵR;i{?Z;Epc1H>6\]ܦvSڕNg7@LAq\1͹Y40s>L4Xl"V睰O.8}fqwr1W)=ޯǪ] rQ.U]5b~$$LĪ;56$a0\aնϱIY$2#m"$:4[tȌ Ye 裾Ohlh;I MD.Fn|{k㼓SAO9c_NԮ_Xw]l]\鼹[4ӏrdD ۿڙt4ɧ"llajz`8;1j8;s9ZŻw̼UE*3 3"jшMDhtq!u^ii@ld߬Kl_; fYrڍk{h]Mh74DIܝWFll"B榛3osަ}v -N1&3zuZ{7놳mjW:^cW7gDDD n667xp/c17xo*9}ͼҐb6v4$:6eQYږwy,6ʎi3&a" ݉n֝sgC qf6W9X{ Yϗdnj`h'|_w~7~9-89?λArc1r1+(L?|Rݦ6í 3eUoemp8csFv=:IF>;d"j[9DDDY9sc?5qkrz^˻wݩU[iwU -+fYx+;DYֶx:fhHg'aֶ\MfZkcI¼CIOlOؖwLLę}Ī; 4D?li,i< ,k[{<9!zuc1ƿ4wgj6uЅ+θ ok#93%~ uv\缧#'Rgドt}fmPĹST6c1r7^;YzoU^ ڌv"\;L_?dDY"hNdޕLh$Y۲/꼳( fhfev%Ft_,4ЈۉLD2s3i|5B#e@N ୠpZ0tCB:-k'1,vG}uUty{% +K@Q~?9lϯc|.t^u>)P& 4r~Hhǃ}Hw:4 *e:ڢ,Nt%emYv"bm|ctpB7+vOcSe}yԹt]e'*k_t-1bK+szmps_g?@gœZs AD YQYDei#ɉځc1D ˋs)=6]2]<̌.@D:3"4k H"ڂDfei M@ BFY"Vve O@D[ mf  .0I4LQrff׹yi34Q]tfEh@0DhrNp0 t!s1:r=ڻV%?~/.ag\}9Z~c|z*v3iyiDfh5NcX$=y۝j77/Ý8zp!3vceI#4˒FdI"@ Q2m"bk,H&et&iQYfFDF&j$IduF3ҙgi]CwI¤YeI#$@ eu6Ѧ3.:LLRзrj1Kj|p9n5)ީ~I۷o\wp$W"w*ܯ@"UYf3&2fQPc|r{yy{96GgHgeX{2CG:cpQ&I '\\)|-cY,K7>NnV;w!ZPvrswX5x"O茴I¬,Mwy(tY"H$:c<uGoUvLʲ3#ƪA<4Hgnl"CuQvrswX5x"O茴I¬,Mwy(" -4pZ䏽[ Tc1gǝj>}䆃.+ަIQoV]q_N޵7.R4Б_.c-ȟvi茵#G8T3D=|ո}}^/dŧw~]Vv"4"ҝGhfԕ:gGh3׹ZwtD& 3& t;'D\;[eYWܬkD<갃'tgh|wyS}N -dO ЫdىXe'.!ɣե@Ј.&ADD[OifeI7CYnIceimX!qw쬁 aM$dO ЫdىXe'.!ɣե@K' -Dx떵`e}c1NLS \8ܬ~jGE' F.O]CYn sQ6c->|󡳢L mk?egtqAqeq}c?,'js9ݻwN>Ys|N&zeIyWD&YYv.K;k]j['v# MvcF)2a"3H4ik[MD_ βAڼ+e"BȬ,;C% ҝ.5-ΓFADMg7>ѻ`mӎvcp]z^T=Օ\eLN6U ' ?#1y^r1nu!=>?CFfeƦS̵ﯶt^1p\q>YOk<>Qߕ'$LI!@.$L%k@#Bk}hk_? TK@3Wv$2c'< A @&a~V&,ܝe,sNdageDf}Q@k}&"^:*;&"ҙ+; aF B0?OKlQqβ ]8|3ɏ[ַCNMc1e_u{7.+6M+ ډX;Ȍ_47xܯc|ss3󡳢%ΐΖasv"\DvY;cz%z9p y7\u#*K34U63k[X:w:8M7w!ko6I_m"D@k{ȒDg=Z6h':I&I$aFmKz՝5H'"4[5 3&u8M7w!ko6I_m"D@,g󌳍sNbܲ68M!c|r[򋷩Xv=*..$IŒG]6$L& `˙;_}?_=6\3,N!,It֣evh'jWwBne1kJ8E{v;۳:#m,K ;,CL"$MDh꼃MDf$aehD,:k[X"3sףu iuF$YUwDYՇDIbRŽs39 w\c|üY5]:pe,MfYFD[ βo\r-ӹcs^/c ȉ 3󡳢Iٲh'h I`_91Ɉެ\.MbKN|X!qv!g}H&a""5e`$:i6a@ 6w7#P ]Yf"*,fhΤ2Ie DpD8C"4 (KkF$Ăp-k?8)76Wqi-qplnFZ',Dži2˗*6ׯ17‰:= MgE ӤX"h%txȵṦ'jc,gc7o8u{4ދ Ne34u"C6e턹ʎ&qfA>ڨcsN&  YrN& fYn a"Bu\w4~h&beD&zege'*;IqWʌ(h'UvL03wFuu߹;pA*;4Hef&ځ9=g]D]Y2m0qWJ6IdX}ɦ%:/C#BD@#"m"hĶ\=y^uG%,;i<9essNdH.& ,w99 9#Lؼ vcoӾ߸m],\2"W,ItyzzeIW} cojgD!LfM4V_iI1x,X>b7cA>}8Wfvwgul"64C4HGCWbYc՝A#\' .eyeЬqf?*;$29yLDei"66ID 66C#B#vDli"b퍇h6c3.:Cƪ; 4FdN]6r̃tv?0tgcoA/ƕądc?*;$29p2\~\]8߯YNwmYF g#m0pi$̺4#m~V&Vv:+KsX"oi }#AD&U6Mf]wyb՝@XAx4$YO#aݥi4DYYmqfM)(ܲ|[Ane1Ʒ;Xo_5.+H&Ll$X͵qܥ_c|Ŝrn·sc%|s44HwȤpDm:xs1ƿ3p/ǟQ駟޼y#r p&bMʎI#"i-:IlaF|ģͲ4]}]ЕeY3Xege&u5*Xl"}fMĦbFtE& 3&[t0ŒGek?iP#t-syGzܲvZr1W,zAL]\\vpkGfY"A#$p ;<͚__-sW0iD"tey̲D Vt`4,.c1z^ IErtV/;fHg> ek?ila>GM꼳ʣ\uII4*;ugm,˲̤qv~NfY)˻ll!k Hږw:ҙOxBYOx[Q::Wyh&N*;NDh9H}77.ٰcXW[LdvCv2˲,q~Hj-^Yѹ18af֝,2Yr8;̉AȜ?"zyӉNΦA9iL6bu"H4²,k] MR #^Q7ڑm"67e&"&$:I34 ,,K2,$hF!6\'I#,˲4X.>zn&(ÇXemv)k1k9K;c;o3M<$aFDm$a>$:iIAceYR\a @ȌtflMŒC%D&[Y}ZO` 3֮<$aFDm$a>$:iIAceYR\A8#!Lu@z1_1zǺ\\)ȅ3&a֡A"5I W+{1Ns'I0[Df3ck,c0coa?UwZqӵ79%]6iIila>'fe<$Mα_D .5,CX&>k HtF< PcHw"IM M` >A0+LX}D%mr}rv*޿Tg9cn\\ .4b]jDY&΍Mę}z0Ҹ_-^1xC~.js>N46QA#֥1xܯ =|816j\q66q0EL~$:7Q34@8[ۉHg"ʲ4I$Y6i s+;eNn?} 3 ItfhDY"*N@vcyf\XgY"$:cN& & \gб6$aF@#6f&bL#VwwH>L3C#QYv"tn6$3:),[o޼4z^393 - zkGv2i6I:C0pHf[⎍ ?_Dl$Y"4X;^Mܯ6\=ηYjxϬۈY-q>k?$LYҌtf s쬳,+˻3֎';L+$2C#eY{iHe& Fw6}Bt&G~I$̳웕X;zeCYgYVwgOv4V6q o 8y錇czzmw. aY.{! T{csܝhYѹюl):il @eY>Qx n816N8]72iDk@#g>tws ,K,?"mV& .Y],3&bcYqn ɉR B>Ԉ.נF κ/w}$2C#"YDY~Eڬ,Mf]twyڧOLIF1ZyO ڻYW -a~,3&bcc!?c/}1}y'jưt¬,Y]DDsM16q1RNտ/"7NNhk[>iyfh6C#heh5bm,C`Gme@0"D H#zM@>BTN34#Ga&i34FXF h^#24 ~$fY] -Lg-/r*{D'p3c|eޯ믿{ r p atfM6M;"+T|^/c pv.pKe&A i,za;x1_jg]M󇫝-͜rsws'$:]}Btfu,lm:&k B#Ck$aȬmۦ%"ډrWvHtֈXKDm˳>fROHt"br DY"$2٢3"tMXAFՇ ItNeNhgz3lG3㫑~3󿫀BLM,NdV댶0s`?;6\^1nu9Qun>DΖ&k$aȬmۦ%"cp<Ça9_etʽ -㯭&g'jDۡC#2]CYIdt6lv mF%l^Y4j۱8dȤ%dA"IDllF[ I"4I$Сe,$2ilXmYfrU6;i6C#Q]6h,KXFN_nYw"Lc129ջ6\p8dȤY93qfx1BDsc,gNXFDD[٧p<80;ݯ^1zz˻w~ۿ t6q^A H4VM;Б6$I|d{4X"Vv+;$Лlv A@Ө$2$a,KDY""m,$LDY.M6XA H4VM;Б6$I|d{4X"Vv+;$Лlv AT~uNk8љc1V~#m?_EaJI"(KٺL69g\k,ze,3Idƣejy+DYe3qsBsZ-ˋߧns12={s 3β@D ɦI"a6y;6\7"3󡳢scl)eYD&a,H;9Qkl1WrxmdR  ,DllFޜ7lseFwy; 4 ,A"zeQyfv22t˵QY'k eYO_X"66C#BoΛvC;aeߝ@T '4w}Dt7-0_ UZ D(KyC7CqZ2߀G-fhLDh<}.XjD=ocos'[܏?ZzlLO!:?w7k b6盉2e|f|s#y6Co͵#;&Ov":웫e& Q2kefu`m$5vdgDfeY2d3u>9Xgu"6F0CehĪ;~fY""݉Xar62֎' v"K&f8ݙ߿7e|-\v%@g^.kxr~y9~Zڑ67@܎WKx!e\۵Xn!“/3?./[9?r-uq!DeI"F9W#Gec0oPgVOʹY4#y9~h-uB"N/-ؼO$/_ʼn:s/"GRtyIDȌt'3x̿2Ј< ^p98d:Ǐr5"mc k ό!/+KĪ;~8reuusv6vN.fOԤM$2 t&@<:yСeYYf""D'"4 3@#*;+;g7n/i,CȤYvr7ʒD'H$2W1Id""L` ]y(3tC#ʲDE&NDhfρFvZ#\ݎk3r9 _pC{+Ko'"+]C~`~e95g -1+P/*/3WL|9\d~B 2YוwWې 5"se,&"ڍպv ho_(K:w师%3/ -5p;A[vucz9Wy9^reОz/_ -~Z~f΄8=933@#*;+;gizs16kCW8'_#z8Ӛ酊FdGukY܎׭@ h|'%|>X;ʎ@֝\enj@ *̲D BG:scAM:IgՇ%DDDIXe'sc:WUvLbeg*;fMQYf%:ҙhyl}N:>pfC;y)x+a8C_Q)u'W|__Ѧ%?뻑+z9hs|U_t/bX_EZ;}yO?+ /HU~́ i|;Kw_ո.Զ$;HБ6IlȎ럯EBK-%x9w;ѷMj߳$~GS'~,~lN~r~iPoHw)q9^xIh /4Z,W^NK6==K/<3-.RX'wYѹ1-sHgՇ%1 Me<ˊ@vJx%WתePKY+1(pt^-s+x;n=cUy%_Wf^^ivTsY/K/f䅊@t=?v~f?r`4S^/?x:_-37y>d34Df2kGvʎY ,Necƪ5232ҝg?Ge'%vH,& &~hgN}fh+;$2e& ֎lsssw<QYޝ$2ƦU7 5Nw}7<.4#zKs;z][__Dt :|ɧ\9bs~ 6s,<+S+O5}5W!G'd>'8^ -Joo¨ gYBz(ׁ(m >Ul#m$ -m3ye?s)c{O{~#2Ű[8&8JЌ*&mf6Ocњ W|@|R{x>gK-6[6siT g6fͬv&ڱexȓᯠ&uHx#gfǦ50b4 lyMƯ7NŮ 'XI@N.{4A0g\YARˡJL>ң2M$+zL$eO ~rv2I;I{p\2xjv;.jnZ~/B#)ӂ^ -^++~7~Ѩ/w0Z?[z%2N'\?9;χyxvo~oYۄWulv ldL ëANjۓa!'? _ѣg")|oEsww WxPse̓2x h4~#)AʤB^oϲ۠#7 mt!#=*+K^ Dl0z޳pAC(|_w&mE>th3a/=VzAxew^Ys=î )ZʡJK\+'ʘ2Β #,AC Ayc3.]Jӡ )AK _|&ʡJK\+'ʘ2Β #,AC&8ܺiqV|y_ .$\pK?@ˡ @x2xxYWOw&n!-Uíq (4^D='4o8z5=a' 00y\su =`:(U( Hμ.%t #6/v_ಢi+vmE{]1IfC+Oƃwқzw{ul6Y}^ݨ;7J'̡s&Hpu$8ixcA618xyYoYZ:] S~Cӂc\PzAD4S̓C z G|X"$ R="Op>{$ M81l7P~m-{ Jxm)/hC$^[a@7GdLdJ jc)W\\Y%H>j 8%xe%I%.RXoiCs9 \+)1#/$8ȅXy -.D"A'WC %N yC rRg C9V:AStwwCbݫt+l gѿWc޷17 ׸ʭn]PvPWĻa?ov&_P_W^|>tkm}_RoQ/N.is4hLM -h6[VZөCPi3 H$H>j{ c0xψ ΞTz=ޘ&ȿkб %}xAprd֦,ʺu/]0·$rid`$\|of$8?Vbӽu~>I>4L35qӷP6>.($\;Xı#$xe%ΉNoT3Ag }(煆z=Gn$Vt(g0hUNl;,Ge9 - {ONSo/NwgK\,1aP00AйZ&Nϔ:)'9h.M}2l#FNC90俐&nHt@'$7\C:|h %<.z=~# -'?'^Ϯ vB^ O.J x|֌о햠u40)s7#S#ʀ2rɨ#) H d9S%ȝM$K$ٿPA@0uXI@+G^\:J%%& ': 8\b2qzs -.R Y")A@NC rCDs/>clr^Ņ P8޷Po%ya=58.݂t݅ o,ʽ~h»@Afű2J/MŁ28&+ P;k`$n}(}^+c$M8/q:c؄qG_n9Y\ADRv 01Hi=e;9d=-w7 Mk;qKmRbraY@ #J2 _q>zQ!AF2T6G%"rd ': C\Z`_A6Gg'(g*%,v|L}Mp&ȉ%yso|! Հnqq4}tiV:pL߆5}8Rf:&A;C 'uʡ-"7pCB{8}v4dRez=ӗ96ޅL9VNN&dԑrfxadX{vE-ˈS`qI rR)QABߘ٩l77!հ&VJN.,Gmt#CG%H7K`=8L wA_I h]aoĆ [H {,NuNEJ$1i< oR8AϟwLtcR`X 'gpG $8%x `C9>¥YYXGr杳мf$8Ȩ,JI$OHM9%cPw.*A.IpJA0<)r|,?Kߗ& ;gyGB28Hp89N.F.I΍|tr si& ?Ob&]GGr9^¥YYJghHpu]^.M ᙼT.󙡣ޝCvN珂Ňx,لf׌2⮩EP ~Д 8%x8#yq) fP [vl,2liMYoϧwWϻuFhڡyGB|a% >*%&?S")a0PJi[Ssoy4Z K]vδp,3/Ca LO/hݑ{y0lhѿP dTH1<4ԮY/ܘP]$`?X"M-DR帔<1$M {Fn"j^JV_L}|wxhzkħ$,e4Op@]1-u6vbvх5 &hAzyR&uAv:|]ѐ? -4_ #cG,/>KL.胜;qyrA3WwDG"Ot@0?#.M%9Ygg~3O<)#)3Y^|(# \9w%&Cf?z@ D`~RG: A8%ɹ.R.U.X?_}/Z:i%]Cu͡`@H84 _胜8w>\b2t5/h7a0`{ɣfvr5;?[ {ݲj^[)x;LO_ǜxk@qkc=cqλk%MY `T.q%&[@D1)Q|Oq$ -^oڶсQsIp$D'ndJ5 #p1y(<="ї}f}; M|c^>Ȯ&~Q1YS>7; D3Ww oQGLmR]eLX/u¯m7؍vcG'ȇx 왡rr{YL*l<67lnKl<陬)?߷7/hzsX-<u7tcqmiJG32:C>ɥB_PAD`F;ܔ,iU?7fx_^Fg3@rpi*ȡ >tx_Hx_'# Ja'Nb| -^Y68-egy\brQ$ RXЦurF3}w0wȼLdòe gsɡ+''5Qy&&'5K>9)AgOMDr&ȝəKe^ 1 -O>/ӣ%r,G噘,A2>䤦ӿy>7ApNzddHJFs>\xr.=tЭ|RHκNYGA#㥼$#{f 2''5%c#Fj 1#9/z $K5]m `li  XFwX -IL;W%`$qbq - ^Vڂ!pi{xӱ{T4QL5  f|>s,f-M?3t@8.dDHK̡91 s9h`_bImi%:Ӓт[y !J9 A"?DA"Xi -hFf玨I_rOe;= @e+n9N/蕽E(ȗ/1!Q);H e}OkmCGVX/&pq -&w<dT KK0e3MvrOK·0EMj }lc`SK\nA/1!QY"9D"ƉceRF~ɓu,!u -͏1_)V§wα0Md qJtP HdK'LbM ԇ -dqW*â/~,zk IvϚnP8v ҁ KK S"_F. &evi s|/ -<U:^W4¥D"#_F!y) xEpd BXÏx(8Ȩ,Ap A"?D#_vނN0q.㟉ϯof-]_ZhH$yGL.9V&%zFb.|'rԜvvu^L[%8N䎇w%G;츙ʎLZll&2wD HJ\D" /KLN4cewA2)H\$8 DaI(A@FeyWӱr\ 92,AFeD HJ\D" /KLN4cewA2)H\$8 DaMz9'wrtQs"b'}1qq\݂_H|ᰰׅ[pHDe<}E"0)#fjd_붝;+&{DaI(A@FeiR0/2_z#x^o-l4#"0+qDb w/19 ITFLMӇ#} q 睳mӻ G"Ab0;֜dTw.}e8YF.AyRg|T G\J8:wGjSl;9mi0qDd(1A.c~EJLA# aiY"X *8>Ծw`=_cX=';sZpNڍα)/ptXe%&'12x; C rtl5S2$޴D ^+{;p$$ rGš0QCm"JvY^,0M)KGО$=잖`kO|>a0a>*%Ȩ1' 'uʡJKKJ@:OgfUpOq[t{9)#VcT R`rR< riFLv]h\M$,F',,}B!ܲcR GQY|쌳8rT R 1Mfj.%>$}7hܙЋx.' #/?&8e(A! gA)Eݑ mP:--t$rTJQY|쌳8rT ÌJ5HܲXt\g_v -??~ ӗaSJsrRMAb<m4/uNtJFG>bR'&/O֙:%&'H$&NK1kӇh)ΖP<2?F|>olM F$ɚ2N22꜉A"crٴJi3-;@+}>6N\W^_#w5]=6;(4ri`rC_yO$rKBSjHPzNB4h%ZdP7٬ O|:-u؍pP&Q@YepLx( )/HViODbCz-jŔ[`+''k2*˘axYv=x,syլwwF"AIM$Q@YepLx(tXX B?:|>Cl `) 2꜉A"cr8طFh]ymS'ߖ5Hd|x:#:ѹSӣΙHJo :Ju2x8DI r~9 |d%Vo {y>Hd|x:#:ѹSӣΙHJo ΐ:qtu~c삨y/"j<ޗ6XU.n'?qG·xD"+_ēO!'f:1};jFb}7WE<9?\:/ h)ڢUJ>gEk Z=X=Cby-p&·xD"+_ēO - =y?y?u~uDR|7OЉA*a?.;y6vk伪@;G8 :.z=1ov>ă%_y\0K|bK>youˈAۣaAc@@'HJ; @Q.sMj!$$8X fRF.q -&NH$&G,AC A=sNYeMe x 2>%H#//KɨS"938 {~:K '$28Hp$>N;;v'|N'k|V`X@h1CKG^^X3)#8QDrfp$&X6w`5BBd}%-Vok^a}Me/dD ;MOq^a<kk%6`+o=&4! ADz @z#}!*<*O,AC A=sNYeMeĂ[v@8Aw?.y<57GX4j+ 2, d|,KG^^X3)#8QG;X%ke8:Vha}3lyڼB[8˼ӡ:fV%ioF5Ty! ADz I:\4 r<.<#M½~cvt< KxKHCD{9>xHs,M܁sNJ>:V -ǚjwqiF%h)윎IRW~rNR" RB) 2x;ep k&<9;<8&;kNOt"?#{耀\X`D"윎IRW~rNR" RB) 2x;ep k&<9;<8&;s&4%N9y띴~ńwYVV̺bZFaOANIJ$d\J 8$P~ `5*UnweugۄoI_IsrvxpL#w>ל4w>8m~XUV:[-YAGXI@@@qz>*e|' '$% 2*MI6>xOq}'^76M'g:IDK $a VN> BYCO'KI$<9;<8&;ぁaq' X4fi'xUH2kp-ARqv胜H$ȸA"q -˺*t>NNTYF; rg N28&pyJ2*%Y9p SS_CDbӱ`2ȱ;'磧G#Gd耀ԑA?P.YI@@FDR\:+'W>4Ap -3#wC|(HLp:VLF9Vϡ'|ynr]=zc kbe\r ϱc%I rr鬜\8_)HΌ\5ѷ>2B%N NJɨ#JrR0`QMl/-l!4 f(% NJɨ#Jrruʏx%rbeYx FNdxr鬜\8_)HΌ\ީ/eD"1-AwZ#--3';XΏ?w66dXg=$ R")A@N. g+ 8IPN.)f.QGG_yPJ$QG1t̀caҼ60e5CoP2QDRəw3V_3H$&\bgy4+QfrYOUxBpp69XC<88GI9*KLHp$g9XI~D"#2r 9Ϋowν.>1AxM$dX+XiUe9<},d耀GruŁĻ=-D3H$&\bJcascv߾v|>!YIn}T d4K?إĮS.#?aF2QDRəw3V_3Xఌk࣭ CbaC:X?ZڐlHb%FxBX|(/M2>P2QDRl},uswhˁkzx>T茕WL$28I(ާNx^?6|nϜWɰm,17xBpp69XC<88GI9*KL`=c]ΤC@8"Ph8uɰa׬piVr ral[8\ߣ3A?睯 关ADzAYrV+1lTû8L'|w//h")GJLArP2223/ԔHP4Qɗ/O$$C*:˸{yAI<8Pb2c䎇"yD"2Ww|(ON|yr 8K8ۣˢt)u' &k]/JغM`IArP2223/ԔHPՀ& osӽ:2e˓{gxD117`w?KY[яվ)X=c^Kܽ r(1ʱrrCτ_qv}mw}sWƯz??[xwSɗ/O$$C*epp?* j̶ -Lax( 5%9M|Cyrve䭕5vqG)C8 tk&!eXhC 8P;\F^F^F~慚_Q m9OI ϗ -ȗ'NlP}: (m*۸b4#Y%& C9VNx(ryyjJ$r(r KjaZ=jkC@? -_MEԔy!O\ʡ > x3Iw//h")GJLArP22ri[1iSkvЉ_KM;3fsq)?=|1`H%3#':19_s$H~*#_.'5KryrL\`r rA$NSK9QDr,<щd N#A}Pw9YNI_dF'?18nceg}VGVek(c><)9*K$gF.Otb>9YsӿH[r-oVҦz{Ӥ?| ,ANt@J0N}F Kg%[7kk,.xr\qO:g''%3GeN̉%E4]]o8^|_򕹭ҡ 2%rR9 >*'D%&wz 4A[;8G7[< K 1NiMi^DrfD'擓5'8+zOA>CeK-4[O G)ԁ |ႂN3~ZҵXŔ¡w3̓əDrfD'擓5'8#sJP[LXO#=TF]Nj 'F\w !=쾈Ϋݚ;-;oiAƥg}|yR"9sTHΌ\|rsK7dot8: ^߫ݹq Ece"G;=tfpXsXv&帔uϘO0OJ$gəK,A?-|>o$)8L81W%8,9&|\po)AJs NGC5P")D\]zZ<%rD"8%|\Op:Βc % fd$1' tT9q{^X %r( HPΫN% ߥFK}ws\kU8?gu']%RZ=pL$yެS$3aq f%=_]X %r( HPFҨ|:nhϧo۵㍑HX7óhQg9t%9ApK":Bv#:_vO9x-m.PwEyaM2HʡD"/h"C9*VG\"H$NEG8rH6kd0o.%6A1KsE.D^7 c%9̡ šd(V/"[jnmpP߀4D?V[%knh%2NYrL$yެS$p3>J3 O%{^X %r(ЄC, yiy&m3AY'8g1us\H{N 2VXCvn ?Rv8^8y$|lV(K$14AJϏKq NYrL$"4-sNpfp@?{W|:1Ȇ$ \KyGg9 ?s\JD1A@28r$/t(H.#H C rR3;E?&NMӔMY˥GZq)OHʱDӡD"A@ʻ*ZLKJ*4OJ:'H|QGFiK w|>Zvը7q)/,gK ?&H~R_GR$rv˗nB~}&kzeooH$28P>A@+:%3H$y"A_%,2ݧ }Tu)٤J#'ep$XI"_P" c]G"Al=-/l}c+_Þ|>_[cOb0%RB' ԗc%|CDI$VգЇ*A 0ǨK gPXml^0A_%Y':L8 +I8J$2޶ \py܌=-$ͮH$ygS< !]gr9.=s|q)OHʰ JB:z*z),T0!˨S")A@bH $HM8ewA2)++I CyI(A@FD"Y: j._I:%$ raMD^QY~Gd(1A.c~"2KLA0:dTJtvu;@w&J7~맳YMS(]nɺ"X -ʀX.ep k$&H2x; C rJkE2ZLpO2I 8&C'PJ Cn_eUC=xn\nX4#GR.Ny"A"/\X 4AtTJnaJtk'y"IkxA epLN%&gɇ#{\D\Jb-8g _8|! ϟ}`}w&t%7Y M8ewA2)++I Cs-x.'k(45Okړ:nKǢ< A.I q:* %&e/R"l Pjz%& KLx@`iPQ0NIS ɨS")A@bH $HM8ewA2V:V~?_W$)C=t -."A.h6-&&˨S")A@bH $HM8eaYbڥn܌)a/ _(a<Jɉ&ɽK,rTJ$rTqz茳8ə# ԔH$s|(ԗ .ͳA28HI\<8&˘Oys+'' '.ͳQ)A@QY3HJ$g\`rRS"HdIS_D^^4rN 1'Nδ$N_{KSx8w.7cAiM[rTJ$rTqz茳8ə# ԔH$s|(-ZXз=pi2Abnd'??v妫Q4N6M{Y娔 H,gyq$%3Gn@`=[Xwq?j9h^|>0;L;ީ/A"//\g9' epxpL#1 $DDI DE{>z&-IZKIi -DgőH 䤦D"ȘCypi圄 SO2|O c5*52ېJBSQ)A@QY3HJ$g\`rRS"HdX4 |x_D^^4rN1@6m@bwxaTyUiA;4A@@N\gR CgőH 䤦DbmAZ$|7ts^'y ) x2擡DC)199wpie^J D2NqGR"G:q"?y[|esk# l 2*e\Cg %IšI 2*e\Cee 7~um^'O `F:ˀdTʸxWR~=IyA"`rCa aIamO[M g Vq^ zeoKLR 9|8 ': 3A@| ~aMbdJ"M. BIЇ4MA~C A@ Pxh(A0A:KLR 9|C-B?|IiCJg+UV_I{$eG< K JK:ꄧDAr&NHςכU{ϫt86fڦiߤ̎f-_I{$eG< -SN,N/ʿoeAwK7 aMfgC#=t&P"/a04=I 2*e\v"/HL|P)`=aDg$ :N_"H k^D"2Nu2N kd}rAu&c'wJr[: (awGGb 1gD.cNEӌF'W^7I28&_ ':c%dԑ'u8DR^y%2NBǖ %~&?}~' -ÆϬϻ,?V_i}>neN%7I28&_ ':c%dԑ':^2NAL$Iy%aM w:@~F Fk5lx)3/;H$&ps:':'u |E'H/ WlKg|||})98҃2N?D"k^"A@pcCbM2񕟬OEe wS?ҏ*l#Y`:ӡ<9S+:aDg$ :N_"Hʋ5/2)a -"aȏ{_'jx5,Hx}dD^"|yP)` ~3VLIJ`%Hgbd)GA"1jWZ\LC x9)H$&F—:H,5 8Hp$p$$8PF^31A^fZ}%-o6eKow%AbB~&Ȩ,qI9 'uCpH%耀A"/_yR DR?:ʸt#H'WG#1 S-`MY~ -ߎs`Fh Į .JQYr(AN,I91_K9 D^zÊ86_l&҂_ -C2Oo c%K:$cˑ,*ό\>yD"oa6|^WOn&1GYv=q ld>\)8\5_qRW~rNR ɳs " ^U$|r<3re_`S?ߓ;ȂoOWsH.g^8=?<ŚəO>gF.k"Ot"?s%O1 G/~!('<8 o?0'78Ddʓg 8%8%;D@@@.L|r<3r9o:o>d E||IfOV -x}ˑ,gF./*|i/ހkl0xBxti%1H_qRW~rNR ɳs r̈y!l;ɟ?>I܌Ut9'43YrLt 8$xpLb%dԑc%q:/9q$2~ć&8Kd N282֙\c2H$%YIq De c+ &+ /b ہXo_+~0 O2]o(Ku&:I rruV$r/q&QYӡ|(%HJɨ#Jrba-+w^$H$xpLb%dԑ^PSCO4p?s>Jǽ} ^`ӡ u&:I rruV$r/q&QYӡ|(%HJɨ#aN~?\6.F-][ƚpE Õ O֟t()cɅ>&DR\gyKITa -Ф[A?Y+ahf:X`>}X]mµ^8/9q$2~ć&8Kd N282֙\c2H$%YIȡ40b'{wf2󛂵d{ -ʓ:'gyI$ȸʸ%HQyEI9*KLHp\r9=t\#tA"1 e8լ<$rϓ3Jʓ:'gyI$ȸʸ%HQyEI9*KLHp\r9=t\#tA"1 e8˹]7v6~ˏ/$O(i:1ݮpJõC38 Iqq5+K̋%rT ʓsz GL Db%&0J Jn=@RZ0 ƨ4B$PY>9H$K:$AUլ,A3/jHQYx5tZkT:A^zt*_#ios˵WL哳?O+ r(O,Ӈfp$% *jV G5Ks*Ol[m`Tg\ȗ HK)A HD"U8@NءLL0Oʸ|T Uƚ9S~c=9yA"A" 'WGd؇ݓc6>VF+r]ءLL0Oʸ|T Uƚ9S~c=9yA"A" ':fŠ 7 x>ox[F8A@ȗ8r>&g\l%gbyR売 >Vz4 6bx/Fxɫ=<&% 9: C <8X9?ѹxٌJGe |\eH:78!8&iK$$̻AaEo9UU@|C 'N`rqfPr&&'e\>*K*cD)K&el,3'm?c nϷU1lw PKJA 3<A"_ɳ \}~s; I$O-dh1' W,9P)8+9ʇ٬JLBS Hq93A@@@@Fe9 /qh(ԑp#/OQY"'되yd(A|CDIylY%&)$˸ə J84O{oL6?a×6|F,oEqr9.ʥ)b|CDIylY%&)$˸ə J84Of"qCaMJO'7-ȱyd(A|CDIylY%y(asp/j%:?0yĂ;x@ˑ 2*ˡyCC yyRG'iMڦlVnܞ}LPz %ӱ<|h )/:ˡ$8dy#9dTC rba%84{5siְsb  bN@.YrSp:V's$ųYg9|U-?}{-6 bA{uknr턧\:r|\CH,Iy DS28r%yrH$XH|uJȗ8%8:I̱r~Jˡw|\CH,Iy DS28r%yrH$XH|uJȗ8%8:ILo(ݐ3x>?8=܇ 4Iy DS28r%yrH$XH|uJȗ8%8:ݭZi iYz|7o_pp nxt|\CH,Iy DS28r%yr?i㓷U2qx 䨼d(A"?3%N rNR"9sय़r(A݋,{Kw0'o{@a1?%N?/#)Yr'W_Dʗ\*Jό|S78tq|*?ö]B?(k^d9rN@ Hd1?%N?/#)Yr'W_Dʗ\*Jό|SL=8lVVEmoesp[D.-nס_V +*J$Pe<]r(A@@UΙ': D"AXICs y]~`ɸ'y,Ѳmg7H <8SB 2*%J\K\R%ȸJ|9D$^f.aRG>O88z4 <8Pʘ$eK$%W\Gϒ#q:: SY^g]ӋnR~ox"+ij.Ol%.)d\%yy KJ$O$xp >1'HHJ͑)3wfӏxZqԌ\?}mK.uJJQ)H$Pe<]r(A@@UΙ': D"AXICs yL%gsܛ7ְG"xJ(AFD"C KtKʡW:gD^)& f-Ix ov~hхqqd\2xH$O %ȨH$r(Ap2.qI9 *U0Ё62ڸNsyR+r(AŚIy9*%Hg") 819Y\F.A.jJ$9hD.ANYΓ28ȉHI~q˘OH\~+r(AŚIy9*%Hg") 819Y\F.A.jJ$9hD.ANYΓ28ȉHIvpȶ ?^"~n r <єHQ)A"?Id(Y^I2x2r rQS"HdPD$r rrurANt@@0,7(_ۘܲtcn!rLʡk&e娔 2,/f!aS,1hD.ANYΓ28ȉHI~q˘OH\~" <߳7z7t|}a'mơ4 cL$epgy9&'5%EMD"1'CM%9yR9с ۯD(97 A ,>҅,] pbͤ$3Ar嘜,G.# 5%DƜ epLN4A" 'W,IͰuND^9?1`#'p9Hʱ2)$^^RD~&28Pee䢦D"Ș0q%}I70!aÔ0x._r˘OH\~+r(AŚIy9*%Hg") 819Y+O;a{2I_vQ+G,.A0AJ\+:A'gtT cW@pJ\D'rdy<#A^ҡ28H%ȉK:t&ȓ#8+:Z`|9 C< Wt)O,A@"/ɯ#<8ȉNDIyRGCepK0lho{v}B7 ?2%\2rySQYD^_G)qyp%yI jjۗږoLJ7xX |EGKL/d(#':1N8?%HX9xLS_#.ׂ48DG<;$*P'gtT cW@pJ\D'rdy<#A^ҡ28HpU> ?pe`xoi-K ]J\+:A'gtT cW@pJ\D'rdy<#A^ҡX,ǤVpjoxְxKL/d(#':1N8?%HX9xyԉkz^ÐnN`MZNt@^ҡ3A@}) _ˡNpL$NyrOGe y9VNNok+-w;ge?_iN~_}]'-cH'H$.)ЉJL*3ANtNC'u$Nd %&ό}DїS"/O! H8=t@.&yIJ$2yRD2Nˡ$2j>DN_7t ~RGLPbޗHʋ})8%d0 _ڟ}}=N1 1$_9LA":C'r(199SW &ԑ83 ?3%9bG_ -N n%nc|o#߫u>oU O},KOmehHK$2yRD2Nˡ$2j>DN_7t >:%LZv3z[F3HyɎ~# M$d<ˡA"A"/A@0uD"A@HrRJ$'gG./֜:28jV1o+;LbɆm>>>>00@/tL|pE'J|# M$d<ˡA"A"/A@0uD"A@HrRJ$'gG./֜:28Bb0rPZZ?-E侦IxvcQE^^h `>yɎ~# M$d<ˡA"A"/A@0uD"a"L -5/&||~'طAqˋ5' e\ΉNde^04e25 !gs1 M$d<ˡA"A"/A@0uD"A@HrRJ$'gG./֜:28.̣fMB~Q[ Od!Z\ˌ%;D./4H,#/d9A"q -Ir(,}Xs2ȰZuBzi{vގ o=o@oÆj* H$&O^8HB2r(AHKLF3H$蘸TV)>L?>`>>Oc4 Հ%, /OtNt" ,BKv\^h" YF^% y ie_Z"K]ǃAD^G"1AR" OˡS| \!A7e^^Ԕ O 'uHdȗq -y+v9|ԑ DbD"AԗC|C 'goʼ)A/AN,': /$dW8 LC/m9=筑 UAR" OˡS| \!A7e^^Ԕ O 'uHdȗq -ycIXĒv)"nk[H!֧"O >Q? :e A"/# )H'P)c>瀀D._ Ci -bK4C'֣\/AN,': /$dWr%?#e7gww/$cX zvo瀀D._ 2//jJ'K:K$2H A_]w>Zt0<uhN ': /_P:2xp HLAH$ȓr(1|s@@"/qd4˦-KOY÷=J~C'B-fw ֹ$'qK\#Y~y<#ANt,AJD嘀 epqs2:Hd'O9L$Xs\L$%H|3* 'u'W,_B+Σ<|I rd |TJ$2.d(qA"c>yIg"HŚ2xr{~~ߘɟO=/tJsP] &H_qG3OH$KR"q9& Cd圀@N<D"/j ݾ?}~Ssoe*=4 9S?:g'H_qG3OH$KR"q9& %&d-g4':Hd'O9L$Xs\L$%H|3* 'u{}4CjMV0`d'u$ȉ%HQ)ȸp 2rN@UBC 'uD"fz![K2>aY&uK >G(>*yRG Y1 ,d\%tȘO8rRH$ iX-:lh/i)W y;0 NK\#Y~y<#ANt,AJD嘀 epqsbCiNͬNko7av?h?~i& - #?I _y28I29˗>G(>*yRG Y n˰#hIv*=2<׉@@J娔gb'$DR?yvF$H\D>AR")G^`>$xpLb)dS@09y6yK:d(+@@J娔gb'$DR?yvF$H\D>AR")G^`>$xpLb)dS@09y6HqisE݇/~dz}>MеHLp:Rb2@H$I q9DI y PJ1%N`yX$ֳ߾4кusE<ہ󤞚'$8ȓ'8Q)1N H$ ~I|#B~8&O[y=|(%HSp`rl9DȓuPW' >x_? \ZCOa0#a'$DR?yvF$H\D>AR")G^`>$xpLb)dS@@#LF~?C>Au}ⷾ:\ -d NrTJLƳsD")<;C$.G"胀 )#/A0C <8&\Ғhm߫ @XϹA-@@J娔gb'$DR?yvF$H\D>AR")G^ [;%Oo ߞH=⭱gД'u<%d2 c% d NrTJLƳsD")<;C$.Yfv["_(lX =<8O̓ANtG^~s,AOL$%&C$ˌAɕ?3$ H$ȸʱ~R"938EMD3J\ ':#/9CrT 'Qy&se CC DbJ$d\X?d3K<G$D6`#w CG9 y=JL.O>3 $/3.J$WJ$P Zv.fS~~m43J\ ':#/9CrT 'Qy& ^GlZ$҂Δ <Aɕ?3$ H$ȸʱ~R"938EMD3JE&8_?0h:Yo>D3 $/3.J$WJ$C {u#k7]#4TiXI@<9;D'x8g(1X?Y$^$*DRb2t@bNf38T-?QJlk+p[~ȟH rQS"̱)yrv8ȉNqPbr~%HIT.M4I]k5i|&u?OlU[=P%3q$':t(D:N<2NI'H$r(%r(Ap -3J2*op&ɕH C\/1 P"9,A~K<墾Wنt">wuΠ݈l%;4yIGK/e~Ś8:*KLNep$28&Ot,F>K$VH,f (T--D>Gz.y &8y&G28KvhG qkN^,1:qz bvnGỶoGo- fSPCi$HCS.|':D%Hp$BӋ /)0ܤ_h/a= O6 %סϼXsGGeЉӡ D/H2r S)L7WQ>Ws,e ܵ\,d&/h %סϼXsGGeЉӡ D/H2i`+gӐ4Cvkx Xf%;4yIGK/e~Ś8:*KLNep$28&OC&TM.ǿy'rf .jC1e2OtpJHŚ$N5 /١K:Zu,3/֜QYb25Zր5җ>XBV7?Nz1'g9`NCx6\ ds Nx28ų 'G;Ͽo6|@>t܊9aNg9`N)?y >Hʋg\K6FY/Bwn-st|\%!HٜO':':1'1%r8ӱ2ʤS~'8yyS&Wyҡ Dߔ߻ >$l'HO^I9tXceR)?_ͼ<щ)qXD^K۱}~ґvuGC,)26#4Ni8 D'8D'$擗tDR<gy:V&2X1ʏg3/Otb~J>4- X@rI&x;C4q߻ >$lΉF^C'8{O^I9ten$ ۼ}4w<`,za1lNOǚ$r\I^&||S^g/ a7)ίw?WJCd3Գ':':1'1%r8ӱ2ʤS~'8yyS&)6ѽ"Nk)w5n00IOmak,eqX gs>A^GRĜ|򒎖Hq,OD+2OlN'ג~bl{oux"k`Ji̡*A"/|< <щ9%-,OY >V&e̟bf\[.;XОWo!쥶t_WݹimʓL$2eqX\gs>/Ot#)OtbNb>yIGK$8ӱpQ=$vA~|ufKzVz ep$I D" $%ȉN\Dr(A@@Y'uEv$*%^ -&22d%DR\lJ$2I=sJ)#HJ$%&,ANtr$C 2Β?s/&Q)R0$xp >1',y%estT,>m;@H$nBz!)y 2*KLY H$.)d%:W8$&Q)R0$xp >1',y%^5-Wu[۝ɿϟ¼GSAҳK#W:ep$I D" M%s/&Q)R0$xp >1',y%&ҒҒ+)EZJ)#HJ$%&,ANtr$C 2Β?s/&Q)R07̸q[F&o7*EG%9s\%H$%Օ $%:q9KʡgɃ9񇩷f1GR'%?9* yIyQSD~&&' HdpL?3N''5˓:28N9h Hd 9rTʡ W5': DDD.A^ҡg^Ԕ ɉ&' ~I SNt0&&' H$<8Ȩ,cNFv+ÏnJI'q~X馨!#0l%K:̋$319A"`Ot{LLNj'udprE319A"AFe-oq#mEoyx駟|eCɚM4\"We"A@@" F [zh( e#xϥ DI3xA}k}>: ğ% -ijcrQLLN4A@@H$2xpQYƜJ9*PGReLzY{}fW[?I"\ˆ!/jJD  g?щ9q5K 28N9h Hd uoP8W/_}CPXH%K:̋$319颂`D'擓I`rQLLN4A@@H$2xX--a7-OUC4AP9* yIyQShA"`Otb>9YԑqʉN(M}jO+-a)JKQI𨔣Rep$ʨY?%r|U] nF$K_`+˶-eeT7!4|i\wRYeso>'Tzg^2Kh ɉ&; ~cxNHt?@y>^͝~+ب^+!{\:/ANt&A0o; q: HdpLQ .>.%t"/H'u$Ȩ, 帔'=T~Fʓ:2N{-{\:/ANt&A0o; q: HdpLQ .>.%t"/H'u$Ȩ, 帔.BCK[o2 77 cK ȗ ':HO 8JX<ͻxT`K K$$xI 2* 1'V q|Zgd(F;oH2ЉHeC%cܰJx:bC$N oti&1 يck7:H$H˓:dTAbVr\ʓ*?GIǽ6ܶ|Oa3xC/{Yorb?ILH%ϰ4{`ӽڸЉD"AG^ԑ 󋜋 BW]ylWӻrCiL圄ialO RB'%ȉ$&Xt@t(AA09F^$xہ)?]0ܟNYA"C@N1'':'uʘ?I 5KwKL.O@%&wO$H̓yRF.qR笓|A':eɉI2iB$ { $ A"cHgj_jov.~;A` #OI> HduI2*NHk9C<9i%H;%&' qI;'$tu+K|>?>9Igo` _ws!Y6Q3sa#4[J`:^: -n:e [F2$?^ _tMDL?rAݝ HܽsyR 1O%9t\ʱ[9';:F|_+[-A':eɉI2-2<P ~w$^b9 ~gD<>._AO,7:3P7F76笓|A' cNNNs{ rf N} Ʌ Hܽsb%9@v|>?~% 싵|vt漳]u28Vt_99'uʘ?I 5KwKLEAڝj !wB:aȯcg#i< 1O%9t\ʱ)rbub9':nȚgj^auI2DNsx&(E__dlx<>^8{|[jʡD"A@@ N?_.C'8Hš%P")ǽ y ɸwPSD^b{N",$P ep$ep'u&w/qʸS" c/q$rya d(^d;)A"/1='Hwur(A2828H:ospm@>0~>AL6Oꗸ y 2 /҆2,9cQ /%y9DsﯓC 2AA':p7,߫wDpm\J)HrOK'Ĵ>w~ NBߣ]M^Kgދ{nI9eKB7H ݯjepԞ/>츧mS~xAxD"Y޹Iʡ H OM$2^q)QG[-k/gL8XC'8Hš%P")ǽ y c2tBM y ?s$dy_')d( )Ce\Kqٍ 3?OZt9+~ZJd%2tD./9o~ 2,/ 9= - <1Ʌ$/sdy_')d(FWS /VWi_0l RND~R]NXHN4%&K"d9 {5%H%&_$-' 닞`,ȸ{$.SƥDUD,JIp;A/qq oZDSbJ$帗#/A@0:6bF^@rp,28EJB}9&Hd; 4A@"_qNc$Hdȗ8e(;w.289 ~ 8HqyID"%rJ\$r rNr} /Y8Kr~ ȱrJ$2xK2o;.pvWv=~~"G}}pIsGR"H\/A б +HA04{ŽW9gA/Ap9VNBD|S2,n+3߈;wA~K ; `|e^GR"H!$nI ?AgP+_l -x_ '$gч p#::?^/2l~gH$.R.ˡENKnEVp$gzZЇ g,9ȝ%."I(VbۍxNc_^8d`S$& Yep$% ?aN9"AZ OE$I3K re^ wM.-5AWzU -`h;w.289 ~ 8HpJ 9,gPZDw;i7* -Rdɏ zY/kTD"\yG& %X{*j>[;{$ΒG^q)d9(9I{ԑ C<c|(AY -=ʷ!<3qrT HPF.%."A@0䑗,d\J Y/JrR'u$PF.Ot@FD"☀Jqs|K--{L\e H$9\]]3Z. Ewk$1' RBr|Qr:<12$HߒjЁ7 &<q/%og!Y -=ʷ!<3qrTJjk៹t]<xGAD$ΒG^4ImT ?^9n?xݯNj D?.s6JS{yGxw # eDdTJ{;o9\:dx|+˕ׇCRC9,dxHL\e H$90'/%."A@0m5i'_gP:1.RZc9(9I{ԑ C<F"gA{< J/^V!FzK--{L\e06ZU.W37c䑗,d\J Y/Jrg:aB\YÈnZoOy3G~\};09A%89ARC=DG~&Y,K_FD`ҐH Yqs2.%t,Ji9tv w?%u Xy2*%$P$e9,<ԧ9)e+xaFA"ȡ\"K\D")`gi" -&Br Pږ:ُzz.NԹI 2Q)ȸ860,oY--{xٷxȨC rg N28 2 'JD")A28K|orr9V8ʡ J$Iʱ2 od3'J9 w֟t(# C rr$H$d(c>YO+''c%ӡ ,HD"Hʡ+ HgtY_pnV//?1L%ȝ'8H$P\:+  bdBvؽq`Bω( Gߚog,|. cS5ͱPepHH$P"HJ$el]aC$Z[xn]{n1eOr(Al:sCgp(A<*cW(Pڍ:o* 2 I%/2^ŭ˛:pgn$YxalyAEMA@t(28Hp$N" CD")C9V&0rT'; Omwx{t3\y{AD %ɥ HJ$ΒBҢ>X6'en#WwPepHH$P"HJ$Pfc]~ӗRxY+×˔=wLb`ZQ)ep$d(ANN3KX(K#NHi; M \)mJ R^P9D6 ':qz)1D[OJ$g")V@bN3ɽȗ8$p 2rš%HQ)cg''Hf\D'x5^\_7fcЄ9?˸8ȉN8k<3x:M+AZ7iߏ-;^w({ $ǏIzS~ڕ8dØ -\60{?w|rTF.aESH.cp«v;co-K''HfCp91:OoOq&s7v럳t$0D AHvz[&}(3$ V!{%{'N hp 2rš)4'ң2tKT9VgOOx]NHa:qz)1Dܴ\XEiVڷ>~) ^KɎEo& iȗ8$p 2rĴ.W.4 '/]$}n{Mb$"M.19D6 ':03,K]EK,r6vv9|;T] jx !^˒ޢ &C$=;Ќ|S@b>iEKV}^|M'Nn $*+'ON4͸8ȉNL -*u jp=3|Iwn,-Oॼ H7d̓əHJ$ ~c A|ɯi)׮GO\XsrR >*epḺr̲'u*:4]e%o!x|ݨp\f:}79py_nTa8=ꔘG"A'%3A&bEJυ<׿!Ǐ넗oK L\ %.RrJ$2xi1O䨔 jJSԑt(r LH\-=Zb\"'o;R 99D$8H2rcd耜C yxZ9*%ȅ'u$&8ʡ+'Cp$)1[w?57^^{ Ѿ.II9D$8H2rcd} }v[@|^@{6d|J;ovKi?%Lb0!4KXc)OHLp:C9VN&:vBm_ǹ*j~j D'x[J$g"gTwS|~5lsr-rnmm1m!xHdȥ::"]<-Kx|Vgᤕ`B돟']U?8 -^x/>$11v:P 8QKh]z}}:s?^&H^k?͠4OPY 99D$8H2raNqNB,:pxX'dU"/u{#?^o)WX/‰i BM rrvXyJ:P;&۱+/^+. wSom)AyĨe8Su8m,qIvOKxuFp荶pL^'rTJ 5%c?N!oNrG)1yK HNҴPpBvnX+I +I o-֞Տo+^> K[#h^]KL. ĜN<׫Z_W(muw 0O Kx&4+ GV<eГ}||v|pZ w"3 XIy9axaѵ傝4i.%&ANB009l#^'Nj<+S~ܕK9c!ri Ffd\JYepL,OC) o!6Ӻlk|Ӎ[?_ٖOcf Oo˷yJLN49 KCNLx'|6C_Ku:c7,Qv~͜ %H[]N4K:f5O2,$>NWҶ^JLA@@s@@['Hg8yz 帔qo\"%HNJd\[9wp6Or(΅ϞYdIJ$r(1 o )Ot@pʟ|3Rƽyvr qz;?*%%2ro<ʡs;Å{-/_duu[  o )Ot@p)mURQmVΰ<=L.}nw aNCGZQ),x+'PUy}nfu&?{yG 1JLA@@s@@fB>Ş|N9=919P(eAxMuL}㽼cio|]Y"K&vX4%2r &a'P{1Lln˯sӡ$x'9|?Y )Ot@pʟ|30'p8,ıдcc:NZx<>^\>%Hm'C7V )Vb6iN /#VNӡ;5t,rʹRhlTZkCqh٠/O =ɞHP -2:'Z -/oG.iB5 3eo;C9.eܛg'0=_GR#>t` H2X1GD$N?яydͤDR3YK$2rɉ&HpS@,_8I(cN.9D^KyCo$K,$r|LʘONfy~ }k^#SJ$e''gQ<OÜm>ƣ_ܠZ+uKx<>^ߘHL?~xὺ2L%Mۙc"q -NA ~l'9܊Zܮ8봽aД,$r|LʘO#Aӧ/@x[7|[;͈I&DRz~#^JZ7iR>_+/Yq!B ,qtO S@,.>tXe[8&9sy9f#2Q=drZ /f(5 M>P|E<Ӂ# -˗%XiZZP<Oc,19Y3ilߏ3_*qM&ϰgx{»8( ]0و9UٜOBsra $!om-m3}.|gw E.I<},Ot@ nfu;%lx<sgsgit7N#O -!,D$8N) H/$1X_(>mK!].aÐ0K,$r|LʘON4 v#MB5tuu}Ik0bHil-q\br 66Hh{wR ~<9Q&NH>׉D~;^W>]}R i0?c,19Y3)q`ҜΊ3HXs|F>EJLBITJ >HdȗH D%H̓2~RCzZD$ C9r wOJ oG%s渔c}  C|(/qJ'e9~) H$."A@r<)A 6GJ$p=ꖠ+7 >G/5AJ`JLR eD"G) )A}{-)^Sy_uC'PM6A@@H\D 8yRY?)A@`xXug[j?vt^zB,ǥ\$I$aH_x<m94y nH$>xvqRVo=_#hE"ď2XgnXRid rg9zI`_q04F5a-HD"d(YΓ%,GZ yHz?M;o!sr CNrPGRbrREΌ\\:QYJ<8Ȩ,cN.h"Yep$x[D'rDDŇ-=$cNN֙ ?d(`2IHJLNjșKKG9*"Q)eM$KC. t컣_@ƀH$H\|(C2d AWN[Ծ߅EoMNZHiuKKG9*"Q)n$vElױnt+{ƐOt"HL$H\|xt؆ -3 v[' ; NQu$Ƿb~|,ȉaH(GG`8 -nX,d9*e 91vSKh-e% eR''HN$k(@'N9>+,Ce:gb2t epIgQq 3iaYwko%|qailZ3ꖘ"Q)eIDFx]R,uWsI;fnDDŇ-=$cNFJcak_.14ma!,93r rr(Gp\d9*g'sC.MgjTD'rDDŇ!0󡏼3DFg9prAa=jHcfKNep$%&'5K\%ia җ-֪w޴ I HCI9ޖg?AU;-}6+39ᆷLNp X'9s(4 AeK}is˔|K<1?q/[ ,$#/Ĝ ) H  ( 奲Ÿ/%>^!%>~v>^<_Y<ӏ{A;tHZH9,LD"/,Y^< >8auϟ|z[|>^éҨps!2%%H#/Ĝ )0gnk_ċx?v9:Fz" ^%HD i|܇KYBiii:~z"`#)w ȗGe IyRG"Y^:|?j#19Y. uH\DQ)A@09+ yfy 8H%HQY yzBMD<)Oܛu$r|]bɚwpoC': 8-=TJ ɉXI 5KLA@"/A@G^_[xCjʘ'$Iyr`Mjtv%]]:ox}ehzw3`r\Ot@p -ȝ+MW_ExF2mwDZ, -QY yzBMD!m8>n/.r\J39Y. Φ1c/v)H]_%h\0d=iA9O=DD8]~W;|7lV8(lyBMD<)O.@xtAy</ZlAr;)lo'JLn~:+P9*%&'fm 8}U']| ӣ;[%_|.Ԕ1O$H̓rLĞvW+xر{@taͻ\7!qNK[.?V -?E.g؆'ѺJX/HQY yzBM Bp8{ ,[襜N`4p2ݛj9.dͻ\8v :F g vM |35&vv AKLA@"/A@G^i81H?uEmC졖`ER`r9V$B2ThB81K|</~φ \:d\ʯ%&8!2V&Iw A/1!Eyz|љD'xp$epQY999;y9.%H2.%.J 2.eH[+ r\bK wꗘ<=LBy<828Ȩ,ǜ 5t\}I~^ǝhw5V -%SK5=C<8y"/lݰp;x<>^C|+Eyz|љD'xp$epX;+*N3iï}sMٻDKKRKc' y>-ǁ!a0٨Mfyjw3 BcՎY(OtAReQp҆q[gH[2^gOX21PD耼e2 & -n%,DZinaGKPFi[TX&t:P 2*K%܁4ktR ->DR0d\ʯ%&80XpX'*N狭w`<^(. l[䎇@Egal8(ߑ'6лJԑ8e\J\:d\;f z#.s0:+|_p tOy</:y̸ r~Mk}|5]feB-R'H\999;y9.%H2* vIgTi$ǥZtp7iu`~ ce"1A.KLpw #o'}ꭢ\YS~H$xAR"ʻ\X?)1/d( o^X:?o5^qQ 9s{{@퀵;4<䐁 %3qrT )0t\:7suSKޢ5QyɡgAN)TҨ}B6bE7a<;Nl -pX[J$g",A5'\%v΃| 6;-956OT.#/\4+/9;i阺h[Z<^wϐ/Y Ri\")-{ %iAqqP,֒ॼ8;737ȨC\F^%N`v +͹:7,SV¥ [Ò#H$ -2xpLA@%쿴ro{TwI%r(` hx<>^}0O A8!Mm-ekH9*K c%t}Ê$[Qp2*eg^YPG"ެ#H$%r(/cq/F.qp/ ,ࣲDR")2K"r-; HΌ RF~慚eep$2x>:DR")N22g)A0O  >*K$%r(#$."Z /&|{M%ro 2TF~慚eep$2x 6"_~y BZX{p/ ,ࣲDR")M GG˷o~^9@.@@F &&nl N_uydmoc{}K`OEv2$2,Hʡ 4SAqbD;lg%҇.28dp+{k3<' HΌ RF~f*4;<[5aWpJVC3zt |<&1N-]<_Bh3HEx[wA`09};?}|Zw SifBcQ-S")Cy~D{!:y[N&٣?; _ .Me2e2擓%HQYb9y=t&Nk<'rw֟,AKL$g|h>9wp9ȅKS|f |T`N0A^?wFS@b>ω\F~'r Mp閣w&bS5{]ToԾ -9|.(_1$g@[laNCgOAs"7-E%C|>?iyt[0Og")?Gah0ֽgxWaai  x<>~8_vpt;d|D.#?Np;t8-[O Va->9wp9ȅKS* iTnåh+Z| b,PZ8$peg -(w˱VWpѳ-V{" (?GwAdC::m9af(.@ RpOCgOA!afBoK=Ϗ͹F aÄ#?I=Z*mOq]vj}<:ꔿ3M8@,aHࣲs 2ɽ#Cx}Zݷ|qO;ONj G%G.JrEr@?~ސknlձr(#/#1,A<ҷ|VGr](?8rTJ$g"g\F.1㡡s`D)1yK8H$Hp$K$%Pd`H$%&8J$$> əș': A"KLxh(: #'uJLң%NE$ DI C9A0: "I .P_Jɿ/ _͘oB6 3q3Ot@D.# S9m3᏿Xn׷,vL$%Pd 1$8,A=|~ݠW:n~jz_3I9*%3q3Gl&n_qai{ iѯ0 h!ؒ9(1Pd`H$%<wphߓf?yn!: %&w<4w}F4*GӐ3:[oNC>_ -+tHXe땖 Nr(`2t@0E$i*svsKpkY(ye^@RJ L\ h72Amxb o˷9 L,;Ӈfr%$8xgۼ& >hb L, 9ӱm6$ryI|rC q>zЌ\]&IH7Q.Ͼ,`g9 ύkZ߶e{ܷ9egۑ%%[ -Ӈfr%ĐpR9܍}elq5K$1hb L,>l6b`<~l/?xax_XUsqg9g>4#CiB8F<|\:/􏶥/,$Pbr 82t0 Є>k.>l-Ӝy5EbXl.9 L,;1ıpzкȷ>pܽ0xgۼ& >?_ű]aNkJ;6;ܰL(%H A}>ޖ4 2?˱N!~PzQ)A.hD^ީ_P)Hdp\D^P坳|' K 㭜;8C9w{gO$娔 4A"//A_Y$28."/at(? >{|qP%HpLVNӡ;3\ .#w+<~;ח}a;Kj8 IS4݃im-#xЊ;VjÞ%HpLVNӡ^|-/b镽w^0&H%Hp',+>ю59Vj8x<' VZдp=黃"VNӡ;`Bs:..Xtj ؐvǏ{@.hD^ީ_P)h*C'|Kc:.}Z%ؐ;C9* A0[9wiHӂzOB} q.>fN&HF&$Brg٢4v۱x_h5.S_$4mgHe7{k71_%w:Mjk)<},O.xhZgrge9J ߂9a,G K9AIm8mz)|>?^n|eLu,t䅚ɥrӱVߢ)EX:^߻x/eKLǥ wK0e8j~8 -`Q S724AD.q -&p6O5KMklGBtޮŋ9^kz/@FJyRg`>.%}ն88}HMyxvD\RCn9*党M Kb$AQK |yHqv?{#W]vщB |B-Ȥ/LUDί*toꭹ$|R)aHPt5N4jMu!o[5ׁJ5'OFsiaTƦظ0c;_:ДD. J2*KL,P'% gJD<)?)1'HI 2,) 1OJ8=ꔘ`x<K$%&8K>,I %% R"1OŏG"qJ yRG 8y"q -H̓D$N:%+6\'@}u^injw^DÐHJLb%%&q|(Ҩ`x8x=ۓE>ϏOÞuA#OHg9O$NyRh={_X3׻x/}+ȋ?DR`+ɨFءƞ9=; pH[+Ӕ!{WĂ[y믴GMH$NyRh i`=h쓔#{yp鄩)Yg9OJ$%.1>&Ώ#)||%\{dXX(eS@b ': 17i8=>y -/M^Nw~F%XIFeI( Ƈa;|W6;f'.ŦV:H yRG 8y"q -HCKċ;{`^9yyy"HJL)&k`bZ7~S-wcHsDԑ0*#b.&K5HuJL0OW~^8ۿK1Nؕ%\J\R\M2*%D\_e;үE",oKDCc2tFpʡ dTkd9'$%.YF.Q\DF^2Br(#)/LqDD"O!1:r 8NArP2*DHʓu,# \bKD"#/AFesrdr9x<> -t@(!rTJ$d3* {_t|۟9?0=l`e \bKD"#/AF̃ /:oN:M xC9rH:$8NĹ80 G~g -0pl% -w vJ;H"eɅ&AvT82`sU}neI9b2tFpʡ =T"O1G;e//%8.eIAۜ -re9ޖ$ȸJԑH \M'Ⴜh>Y8q\IT_ I'=|tbJƿh }CFnwA \MsDRC%G~Ƕg{B(SDJ+tYqb:X%H gĜ ) acv w tt/$Gӷg:=5yM›BGIT_4w,.M<i }[%,Ԩ,ADd <8Ht79K9-A鍤70 +⵹yEP q X]SL9\s1#v/v5~հ2m)c||T AU®b:;"- I_+BӐ ́j\=b}qg|Ab~I9kceZp59M&aw:'k$xŚI5զ x[MD"c #/GeSk|cM5& s<K$2NJvNJk$V.jʋ$8&o97 I(%Nʯ6]ԔH$HI˯[KNṋbĝCyU%Hˋ5 kj000[tly~5c -X(-J8e(7tQS^h" 004HcK|~7Gkڪ yy&tVDU,l:X7G 0V@4-# .j M$$$x% ӑ0pYaa˷ȥyAR~ol颦4?>s"&\4Lн%}`h5[l)/4HAy/~ˣKŕ;5Jk)h݉os: ?N=W;î$,U_ V.jJ_sP^0P:λK# ~y9k$j; /GO:nvY;ՐhdpLB$x,q006#4N7{ /5;z_nH #/A?D"D^`40k)<lfìMòXqC r$':s88n=:n{2K8>)cMNC /)KL^)8&e3 LV3oV} -}t$||~<_WaA@KKmuf(Ot)': @10{]АKgsq6)L9yݺ$7c):τ]9AcE aqt$&< 耀28 Ɲ.}]`t#7%&Qx``7qMܑi.P|WhRKtaPbgy: 'LBy<5%1x~y8Y^ɸJ)1A^S" c ҹv,&ˎ[s`5[9 'u8Kn000;H>M>9ޗHFe$^W:%ogYÎA _"˓:%Hpˡ\by"#cd9V|K䨔W_$r(A@"/A@G~X9o;8|6$gƫo٦/ke7[! $N $r(A@"!VLzl3GG8qxYÔ=f&J'$x>+oNZӴ*VB2tNyE(߲M`<{_Cѐ>88;Pa -&BJL0Odr ֍smwsayKia`2vp+Cm"'3<>#I:qvM^[])A@D^%Hp10MmLD)1OV&Z+K9VN&vW.ǘ#.~e`ىlMJo٦|P52\O<(- K4lC J$QYH$vI:.e|BxPD^ &0sS~4]UeBaD )ȷ\ H]#5ii띳N -+HdD"2r9 <5C%N|<Ϗv7 ).)Ge <8PF.Z=:x`wtKA)Jy%%&qD$8Hp$K|MJ\R")2.rq5+og )A0Ӈ&HHHdr$CHYYgGDR8Kr$8%&%.)C3A C$xp$K$2r9VHʡ|K$Hb_MUzqْ;zM$%.)A0 ': a$hTس<|>?{~|6AO:oY, #Y"˱G"={8naɿo }3òxG}@#YR^h")qI I%- 8ZIӔ۳_˂ω_>8?>m”AuqvDDF.JI9/qJÀûzJI ': A#YkR Hqϓyv|l^-- Z%+Ip$PF)]IKBIKJL,9$ Ё?5.\~bܿ{ g K 8H>4A@GD"#0(5*@^1j]'Ơ\gGDRH$ LJx1ϞYtɇ2jXP\ HJLA 10.v._ZHYYD i-ۗ 4&.Hʡ˃\\MaHknlnpQ:l)Exh.AML 2r#YɑZF.#2x|ͣN |TJ$2Po8$pog"IQ >2,AML 2r#YɑZF.#2x|ͣN |TJ$2Po8$pog"I:.ң_r}<e፼rɉ&&W9bTnanjnm+`ҽ^+cBiYgOAcxv\=A/IJxqF8/;z_@C5KࣲDg03MH"p0Gx:tMDibqZǯG -GEbZ[m/KLA\F~&&4i_ۿNl?s}2_lR *>%N8@i`։)??:2]\zY/k |ThbLH`TBLx||ND -2,A0 h,Øe'lYivSi۞i5,HXQ)ȘLC9Q=-;bS߃uț\IQ >2jFtj~x| hu[9QRe2+< xNT:$LAz6 ?J:e\rd %&8ʡy`K$y r%%+gt(2x:%Hp\" ˡJLcP)r$K$gF.1Pe|Cp\"%&K$%Hp$%.)A^9C9)A@\b[9<x>7/G&.[e\rd ȍQAaLݯz21k`5,䕳:C<~'/cPoM$I ʡCpNVKVkv.& Dp\"1knT;Ke'M$|-?Y'O $8+ m6Bs(1O2Pb A.kmR_ Pbg9k[O?F$xp 胀J ͡$r>yK[#>4#CI(ʯ/ jX6' 8 $r> %+F[ݿ{2tws3w -4ŧn5 ^b.Ќ\%& C26g<8?91.8XFs;*ܢYVZPb A.kX"-Qi%ь$&Oч$@ptTyK[a`;}5?k׷ʯַJ}9 -HA霕 -c/];]6]+ޮ< $8+ myfc0FeߥHdc~د]xyR_xPG&B^+.ޮ5Nep$$FF=fήlJqrrrv.?1BG}/Et x,=(=-!I|CD sHLpXd;,8|*Q>8Pv*Og|C忾|_Ė耜Ot^yMn', ذ1*c-1;,?L08!s)w!R"YҔMu"4a}$999;گc$$s -pO;.Y.ofGoȓ:%&k'28#g|_zt=!8q-rT.AU&ʉH t;sqwUÎTpʭ0}9*ouJLV@ҩj 4qNaMee,KWrT.A0Ҩ )Hf!4#ě<9;o}rq+À5W?p5`ö6a"J 5eP4U9LqC7)H˾cEyMH M Krj^%HLN֜|M\ >VWH6q:VNp:Vo $r DF./|M؄ )/Ud N?_y˵I 8Hpc%yOhScc% Jg%>Ww#Z]d A"8B3 w>b=w[X>??MeJG10ǭ({U=~<Ÿx4EyMH M Kr\44١cQx& -S8t~L95>VB -m*tt$cS6 8>#q1' /8y"#vz$:pxSt 2*%|~ bҐAnU-)_[wn],Hke~~D"qJ +K.}uהp`4}x8=N^938Pn ɍ⏿CA8IASn9 2VN:Xy1k+fnh" ޖ$N 5/j 9X3е9&#H":I ̘:aHCj>xdB9LAj8 a,W(-ਔ q%yQ}2ǿgoF%28dArfIpLFd 8=a}d ]"_*˿5`R>W~ű\ЄU%yQeIc0XK6x8`\#J4 1u$%& aTvK:ﳭ,&,.y͋%Ȩ,cN.4ؤqJc~<;4W. 'uGe əK$KA@Nt@Ĝ Y%ȷg ࣲDR"1O AJ8=H$%&:\9yMI2PY%Hp$gF.,A9 sd9 ߦ)Rī/ID^h_Γ'.cߑ"1O AJ Xhw/ŚȖc.lZ)IeQYArf$x&ȉ,~AIEǗn"1*ABZ48HC Gj` Վ0j Ɛq^@a%M-K HΌ\"Yb8a^3} Ik%a邃> qzԑHJL.!9|D8e~M,iش$v|~ --EbɰDR"1O A}ocs܅D@4ϿyS&彼Ni0Ws6'uCi aT:F({85n.Sq*ҍJ  >*K$%yaHZGwyF{x~]M߻xM\")1d)/0넵ϳSw 00}9AJoϔˮ.G]iS ~Wz%D")A@G^^I@@-4*5%HI8gK$28P%N9щq'6&J̓2x rJ$2ID"cH$%Hˋ5 PۛF9 y,sDGJ )':q:ĦQ[yRPz.2ǟ=q=+ }D" #//$ C c!u9|"pw3~s[X%i@, ȉN>,қzk%D")A@G^^I@@-4*KSlA@رIo Ñ擈[oa7ikʄu;iT./4Vb`p.Pp`R8 xk|˷7H`H9Zs_)w[̲(-u;iT./4Vb08 Ux<>> Mst#7A^ܻD.Ș'I t!/8N\bMCI\eᙵ>e寉plV%P3J)è@E[OazMo.A%&4 Fb،h]x<>>vB,baæ%%P3JC:DAi׻J Qzw$28I S7~i t~]~ͭuUF31yŦ%% #qp:\vo8?Ϗg_/gF.A"/A 'ua4q1wnw|(o H rrv.o +E -s"Ǟ_e+ C )˱r29+Peȉ&8e|Cd(A$$x2X9:>fLVHQYF^y9 Ky+'۝R d"cy;z]pN_˿P}`1G5qJ':%Ā MA \X9o;Fb<1?/ ŎSZ+Kw9#ȓuD0`94-!Gl^kwe+ C l tMP-A!H%Her2vs a: ~˜OLM mF~լ,#/_чRp v8NZqz %PD^n2vG;W|Ư>;hG} G}H$ >*_33a 0u/99)+Peȉ&8Ǩ܅ipEU9TgcS09ʷ\*K$QY DRD.KLcDb|Dۛ"%H A3# RegcS09ʷ\*K$QY DRD.KLcDb|Dۛ"%H AjJޭV٭OӅ'+)˛1)Ԕdxr;qwey~~1k58vGf 1AD"MK\":br WЁ1`0% 22/`rRs9o6U.# HZRiY]kӦDwal/MӔM?L$bS Rk Nh% J:xy)\[Mp0|~㡴,NK䨳``|MK\R$xpQ-v5_vnQeE.Hqy<8& ]OrMPw'e{?'a@dp$K$-NC ՝g1}4}x87}a0(\J9K$dTx7w=]'D+f"/1A^ 8 xc(# Օ}}<^loec  2*ό\ e-N؟kYJ+ljc$L|͚ÚDS0: #ւ; ذ=Gxp`XI`RYr ,q -F/U -Y"c*LNipz\wokXAR`J@' }kd.Ưo,5>G{ТIXFLA"/  Fb60' 5%\"בNzS,/&G"k4 $0wOX+cmǕHJLA"/a W_2?K9g]\ud r2*ˋa<؜V^vl4kXA^/ApL1@yw3#`$?%a0P8$paG. ϿK~AVջ8d(1Bߎ!uu9 lm -o&ߜfg;'Kࣲ$*%&ˡ4sg{=(r(AeWa pPX;хZ3q}w^6 <87%HQY)S|~qn8* 8*% JC}';-?s׻Jۡw$xpa؃˭[++'8ʡ I #b}Uey~~jpxs׻;0$cK$kp$%.Y t(2pL,ttYCxt!OG{8={`6I5Ar(28Hp$%~W14{w†`я;N1Ӂ,AHLp:Ci-OI2T1op-KBY1p 8C$8+ec!9=wq73.Gn4dv]^_%yv8ȉAI;oqk )qI 2VNp:CrrPK8 -.`:7J$EMc񘻎ztiyt$w:VVXKLB  )qI #1΅Qi-y~&-wJ ryn02ZWY~;'?G//I 8. 1yK[110N+ߦfpW8$Β˹ >.A\hyMH^8DxBP`|9<:Ab0%GDܵ:)^ܥ+; |m#hW1PԖ歘F$r>9[Ǖv(}_yxo|66g >L*qvWqxۄ>_xPN[9ylrC>2Nox?y P3GeyQSbDgy&q8;+6k+9qD^: ^ Ż7G"k q1_ NT-EM 8|'bқ:~|K RD<^;?A⭓VN^;8$PKt QZRϖ}Jk]Yh:SإOHdq`W -woaĉlGM228Hu<8ʉ1xZI;ZJ&tXvgh #Y^~I\%tvC=</[l25{;wy5ʼn|EyvB(8}_u4 K`ډC9*EM 81*3yh~oyMqb$\2NoG"@pswnzr3bNnJW-c>+P^ͼyE(GCiҨW]|5M5q~>xwL*qvWhv\nzeUCLM9L28H|EI5 cr;3Vacҏa5Eͷ9^K A}y+pc%WA"e LL*տʡ2^K$}o6U.#/_|6k B$8H𱒼rq6Ont$C>Hos|̗Ab I\W9AkDE6+ݡ ¯{$>op7Z |$00$Շ=C;qr背 GD=rFn Nd8%H M J>`H! ->,A_ D"_ c0Rol%?5Oa%c I\W!9Ѓ//~\'7ݡlPyͷ9Ґ o_/˦JqVq5,7|$ə Q9n]Yk]LE[ o'+ rm\F^Àkh'?tp|V+5uӱ + H99߱G`cҏu|d̓ΙHJ$Ĝ 'uC9r HJ\R X')~D"q$ CmJʘ% y9*HbJLȨHd̓ΙHJ$Ĝ 'uC9r HJ\R X')~D"q$ CmJʘ% y9*7]ww=wU<Ͽd#1ޅΙHJ$Ĝ 'u1pGv_swuR[JʡʷlSRƜD.H؉=<"rŁDsaUBCHʓ:g")HsD)8yR )qI r n% $Kܲ?>Qa.;lHʘ% y9* Gˎ[6l`6jh: 1'HI2P'e+R#pd_dX, lHʘ% y9*ߦaH^5 -692}mqNMk1Oʓ:g")Hsij#S1~oş %K$P [))I;19~{x<:od而JD<)OH( 4OTW">[\c%K H$&a4s~{>_& }9*HbJLHrwՕ./vV#.{> *䖷6q+ qI r$8&C@3 ]*6e~HʓsyWF.J$KLApx-GesrfRep$ŚgF~% 2*epLNues >q2TJ$@$x &4gW]ߚ=!)i%lx+ {9T1N2<r.v9l/ߞWK~6^ǖr2PY")A! lt@b;$HJѫ;D2\L3)A6u$$8H$ d]%H%FR9L9-CdDR C&AvLI ߣWw/Kd2rTJ34 "MT؏u+LJM  <:>`s$:~r?^χ܆ K08 ц;%?3Z\LJJd2ry0ͤ44?AP;*OqA2D.e$1s%U״uީ#l-%6혒 )A@GN+a`1#47: eM3}0nMl3Ų#ޜLF.O$$8He@YL¥#;``%xu/%ɠy6f*؏O'1͟_8ޞWK>1fdrS\"1HGp! JAk|ѫ%^J4 <o?"IeM$$ƓMa']^Uslla6u$H ) T6eKNǽFSF^G5K4(1%f:#Q)Cdp ռ w=t%D^.1!28HHpHJM^npyPSK#Pl32x8D* _A r CgPbK%S29( ޮ]]z@ԍ[pyPSK#1ecTK xoհ&|b֍XC+I"/ApA Hd",Q8M|hOt0&^&/ ̓%^]nd3!28PYEerz_-_|$0 6!.C&ep:21,^D{_K#Pl3J0)x}zڃ=Kd-e!28HHp~f^G5K4%|:r;$8dS|M0ٜY~q3On_H_[H{!'V|8D* ѫ_ s N; v&ДCe9 ot)G{gsH(_2/%28 #eP $r y?y x`7GJK7:Ô#ý9^Ub$/[@J M2s(A peyɼDepWlzswp:Gq{)JK߸yxzx~_~8 pes1xD+X&cx~dMgS+fNeixϡ < |3L92;U%FBy)aѐXI˔g{\?n}Wѧ<~_s 4MpeyɼDǝv}l&é$$x0PaZIGۜW翧ՖBIb7^61Kd0>Dp{F~3=k:_ǥA)2s(>(A@ <L3lGǧ%OfU $8H$#14Ms| v|:~91pA@v3yp4+xƀ2l9sfwpOYC"jC $8Hp0;V0OɼDetr1`S3˴f6yW)#+-a«rPb$/[@$ fA"1rdr ~D"4J H䠌\"R%۱˼ # 39(_rt/%)2xp$%H%)#/1|I Db@P9@IDhA.A+!_!qsel.2xp` ݭ?Zgy<oo%f?59G29TN?DR"1GSGx'vxFx䦕h~۱˼ # 39(_rt/%)2xp$%ZI*]oߞG_vjrgM$%y|PbthHvΣEMA%] J9\?Xe보\ HJ$@3rc8%G濟L x7({AD"c;vc1XI\<>=PlВ H$FL h4S~r'^6W0D"7: CK$2j 7U Oʾ{ Ng؁aZ2F^by$ FGؗY0!>gGC3rD%4Urny!Rr,ARD^<-O:/zs= ,uSZ=zu' Hd;`u#ħD(} DbKlǔ$8F7CteĴ귿3-CΥ}VIrO ri8l Z4'- |P`[@@0FrPt|W:16Gr$d8M/ Ji pMp= 𐎓Y7XɡR"1NL %b9ARnt]nG |SqDR"qņk;GD}x(r'ߢ;҇yP }AR3HMU _~ebc1AaQ)Aԑc-Q|6Ʊd``=7M$lȠ99(Ab !% 堌#% n2ZO+}u8m͕ߡW`ˍ j`(mBlG |SqiY:v< -hH ,3|BY4 3%ȁ&r3r;*%離P0mol8<6\Ėߤ+144fÕ jYJ+ Dr8a@Il ̉flx2!_ؐ!I}$[oNӚvbx!g?* -ܩ/A0\`Kpwʻ+ʝ] -;HG2>hwv|$L$9:Gc`nr;  DRb#'HJ$r8JL'ى-qAH$ 8Db%2>hwv|$L$9:Gc`nr;  DRb#'HJ$r8JL'ى-qA.# >l,n(ĔD^onVin1A HpN[60A~.obl])jwv|$L$9:Gc`nr; ݱ)}WD;lg1&&9 C)7IvbF$xpl13Np9&G }#1e"9 cTW^sSZ(eѠ$;e<83@s"xo} %ǽ4;mlNC~ B&- %$%9%f0H.?ʉ)'t$ 8Db%24[m*ޕ!ḵJܢ$$rG0N4Cs^?}5D :8D"!#/y͟5v + -`nr; hGBW /mx~7ܹwKa$F1FBy9TGwBP>h Je#8|e^KKrPsf:dPީ/A6: H$^ -F]ro@ Wo3A\Gbw|}wBPguG)cʊY7+ dD⥀`|%`hJ\_3,,#mBخ;~@n. /%r`$vqxWVۚ=V#4|f-a$F=̀ҳ3u~ZFdnBsZF;mm9. /%d8=O=(aYk%A@0>쒃|?Z08_}_ǥ]?GwB0y ,Q |]osA)Hh:dPީ/A6: H$^ -F`؏O{?󺮷'I`ePYK9ʆ';{u>3翯&X.b` }s32(ԗ F!]u]o?Jďlt0ˡR)->G{{J[`$v҉eq<8\*=1*]1) &}@6u^p/cF$8HaJr{Ctp/cF$8HaJ3<w= y<oOZX1F6-|/v"c*=ВHpÔ 1U'u&oY(e` ?|oO@ԗfyLt5g 7dSe2oAiC'oC+Yb Ȧ|/x;х - 1mۥ W>GK'A 26]>w<`txneK*Ab;*%\b Ȧe0yɥzn1Y_P%ȝ0eRF.AblaSM ^ϧP+!g9lY -C(]n*% y9KO$>J$%ȁ&ȦN9(4ALʍNp$$8ȁ&{xd8ʡ~H$OJ$rd;aۡA"JDD^cI r SM$r r ^ [ GDGDw(?u]og* [H+73HF' Ȧ4;33+$VZُVrЙ H&F'8 ;T2oN%+a4 i%8rv(AȡR" .yZX@+Ivz^ |=iA"AhhΖU9a sJ3i1N@6svJTzhr;k 'F'8 @dc ݇!U'/a>Sz$OJ$r ݂$}3iӮz;o0ݎҵ  :<A29(7.<jcp\#TGc@)/DrctB͆{67_ 2:>eшl7J$%ȁ&Ȧ4>1jOX  U(epfsI!]^bޞ!Tʃ -DD"A"/]x1C+obt4;uA^F.GJ>L ~^IDntG^'r8DL 2(Ab;*'A6:  Lv")A.AIy0e2{4 5;HF'x堌q2(JCdaD $rdL ~^IDVI',lIҡHV PvTNlt@*'A ֪_C8eJ6ې Ҷ\^ }&i +)Ǵ4u>9\ JX؎IHC$`h']1>EG&q.>A^Ц7~Ui̷<->>8DL 2(Ab;A@wOD~=ߢ;Hdp H 4 1 V.?912[pX'r8DLqa9ȏxnL ǭM Lv")i Hʮʿ)퉽$mi[&2ryGy9nHcrykM>w49,% qPY")qHyGI 2(A@ovg; P)A>D.A@")^-HlLJlL!%F yI/Rb %w $fwCPcL$r|rKĖaʤAщdpR53tyw}{S*% qPY")3!=]^7˚VD"e2)dPntb19GDx<~K<:ỎLnam QQHd>THJRGR J%FB9TJU5=΂__ \C$Y4*KlLHL4'W`Jݒڿ1>THJRGR J؛dM!x<>1sY - B7n2b Ƞd28i w)vMIQo^*$2my,8i|cNRǧeQ:>Ģza=ߣWK$[)[@bΣQs]H8Nl8ȍIR9KH4Fuq{=mYFea-ߣWK$Fg3?12φ;n|z2 AsDATf35| k]y=*aA:lvg; P)A>τse DLJ0moN^ݭM<؉NR;rtqΒ\b˝rh 4 ;{Mcp? -IvnK$ >4l4 f\\GǎۡŔLH;Kv㶩ngx܉MM=t%F6Lay9T `;ʊ[C ۇ;1)vT6;ǕERo\ÆA2xp ud#CnN 3dZz{ <ӶɃE <8 $8H;&wIĹYy(e;Cd,'2xpH# e%FͽW K%2(H$FB 2(H"c AMM`˝#P2q΍PYKOd %FAK : {g3KdPK' ɑHdP"8D8*˃ɑ:2r;%F\ # Tx d8#_W?Dz7_+fHd,jJ$Gn%#͝T9o_{l~d!=P ۾\b$Ƞw6*yɼDetu9 -{p/gJØl%#7udr-wK*"Wm{` eܽIiLN<8S}7hH$FB 2(H"cfsmr|ӁO wK C!1c*Ab*zj7]1t` -@GǼJ@^2/A/w_Av8Y<ᡌy7D"#/yHDb@ry< <8Id' :1Np$# : $ep$28Hp$%r,A@ 'K$2`H$FJy-w #)Hv"KlȠ$G"12`˰NRG"GR5x -1ܡ\]#GA2`H$3V[1+YbdaCdS1$w<"zT⺮:5Ӡes:eʶW"#8ȁP)4@N}y$xp$%IقI<^`fڧ Q~0 -NRG" f$mx+`O+3j~Sb#9*&F'woOfY, -eNRG"Gcta}{{=UߜݸpcD.˃iRb0G/_<لό˝y{N^h:JH$Flv=t`#Ѕ=el'S xPY1N"Hd0~zF'?'ZI&2%`dЉq#Hw:px׶?/,\u>#| Hʡ c`o8L+a~7-\$loXмS_h IDb9+R)].,Kg vV0z+9,o@eP>(A*% Cȏԙɼ42)1$dAy0͑P" H8D,qH$r9,o@eP>(A*% Cȏԙɼ42)1$dAy0͑P" H2m|?]=y6a/֛+}|.ď`ˠ pR„7~߃V̺i2 yd2<&1 d0%z6X9u44iL噼eD ~A <8P)*|F~$Ȧ䠄%Ỉ?v<=?|;$.Q`#D"Aa`300 Wۏ0%$xpRGi~ٰ lYHb%Z`#D"A@:Twǫ/:!HrxYď`ˠ1`΢6A~Zym!-E)-&F6 =tD^" > Da]y~?`I IR8\/rcp;lnR͉_zJBY.(aeK#C#Mn 脓=;S/] ) rP!epcDnfߚ/_:"bKm/A/J9(ë 3i G ].6a8>*KCD"c >( J`<1Ã~ԑArPF^xO w1\K$M${R) V JD8A2|P x"c&X#% 2(*堌AcH䦎 =.p2Ӭ˻|W?}G=jzCo͕>H\CD"c >( Jd/sG~gWXb\vbk8>FAyDnt!ï=x X~D[dӜ> ORpA '28Fpxoҏ:rP" 2H8zgiʽ=M>t?crPF^":28H@"ƓF>sy:­QM& >( J`<1n_7~Ӱ"X -gs)%52ԑApl1HΡTw}#>; ^Ce |Hd$#xvu]ė'A'l7Y %;XF(=)r9(#7DSzt~|GOD.) V $$&o>'ǭS |2rP{Rg$ϐw01뺼տ/o#dt8Iyp4$H$Fl5x\rw~>B;MrSGJ$$3ו/<IYlxI|Ľ9&*%F6َJ <HTJ$I;A"#H&A0\J$%G28Hp$H$ D")AʍPY&X $CFs;Q)Aԑ JD")1rg^"Hd$FA !S dD"AH$%HպӅ «{$%4P)A eh|f̚xDQuk%K2yl:epHǡ#="xtɦL!_{u)mB {aД Ck%A0vTJ7u$FR"HJܙV]}]$|/RS dD"ACqL_MTZI{PFL #lG,xٹl1|5Gc["iǁXu L"H$ ;Η&xu]o_& ~l#q/Aj /vyuu|8dXrP )qd%F=H;k kʵ uc#|"|: M/ mǞ2Y¥Mvur -[;c>VKVC"#H&A0\J$%F!xv$V\A>J$DR c1z#fm/_L"ԑ JD")1r`/tUws4]<#qˌm.pd%ݤs'#/4H$4GDu?-0iX2q#%ȁ&FBàGķ6s뺜zB/ҖvGl`5)X Hpw# <(c >4t&1rPK4(%ƀۜ[xIe VҢ$Il7Ay|}Yx6=kIg'.; - J$Fdrˠ .F9& n3[ բ9-ץ/ay0}d# $ JFB 3c0g{_dX_XI@9楱M-:ҠHJ002 f_i'A>׹N7v)㐳\aT"ĖAH(A#)סk~ຮ߂Rm#N;_FٔtNO}'_7 vPV-fdAzI"10j{1YCTg(ODH| G:%F;ťKx?v]uH3-HXK%#L9k4!_ǯz{~_A|H %0%h8bm}57[߯εmrX%v7:A=׵Q'kEh$aqoUԼ'HlGA"#|/% sϸa- wfp$rcw(NܙFri>z'HlGA"#|f V~x\/K~ԚXd3/p2eGĞR^ǤS_ᜒZgN.nIX b}J ^ :rGPhAba-N8;5f/&@ 9|\Q"w<?t[c]J;EKl >Tʗ9hz'\*6ف -be),eiY(K7|\Q"wvgH7_}WFq0hɃ Hd#&1z{nokeXIk8e܉;HWvC=He c? OY>1da["/ȃfF[|iٰ]\|^ kPntb{N>9e bAA% s]];m}P_r-04rZ CKAFsr AyN:ܚ=:ht!Vļg"12;/'Ab N;ȍNp$$엶t{?D;KD`D"A"/]nԑ AKO$F{%X$H$2rщ|' DN?xȸ{yg|ɼH#H$HsVc7]j~7 J;8Бߤ+#qDF.a$f>?{{O}>(_2/%#HLq 9#"[ yt]qK@c=::OeO=nM2ZE^bF'HF'8 K{:6 -j8=zRۮŴ#S>G{ɼH#H$H場,x0K!NJ^"sS- oۨ$ yDXO#&|lW;#܁ࠚu]o߁mpF;G>K"ce M(DP|6aûXw }$2^}>(_2/%21 \XO`0$UtJ '#ý3D+Nzm'uqt";>:ʢoޏ#q2#LߐN1IP 3D^%#AW<9u﫻ϲ"8 Ke$V`.N')>F6>z y 3\I$؎#H2ƓI$8{'w >H[L?x'7?DG"7:#/7! 7u&#K2drQYbd |Px2CvGR~\b /}F >q_Pj=;q B'|Lԙ\F. '{\dq -!\A胀D.dM̃!3ycx<$&xZ'/2,JH,ىU؎#H2ƓI$xR|aq:6-xg\t0kE.dM>1cY\-.:.&旿&ޞ8#ߴQ%D2gi=#yo+t> 6&_G-r-H&lbya`*gA̴ٷ&ox#[yCo>HntG^nC@oLF.`Ґgx_^}ΎR#/i0۽\>[đù^= yGƛbeq+;HX=$O y<81@2]no?y溳} `})hKm/6ȠO3mep$HRb` ̹|<oG]F`@ .y'#1e;K6 旯 MtqUqߙmS2r|P#|gxdP(h؛a"nԇr3 #/%wOqOw -ML3H&#]'e3qJ~W{79bGbD.OdA UM.f6wV~Yw 3 6K|H&A#sMLBW&{kgo`D"HJ$K$ r*Kt)JVz$ 2W7Idp\Io\f7y<ߒI_\eIԳao\aJD"aԗCe !P)7N[gТ7_diӭ* |nK 08H\Icj\%6Ha$I$N}94̜VN={M亮π-16b[({xu3D\b c@il߃#\iwxA`D"HJ$%lB3Zax'tC%:8yoFG^ 8#%Q:=%E kuanSS G HuUvE'ZCK#%ȦNDx`ۏbfo_$t - R2x8|s<-aǻ?owwyG:gcaP@zxhd^D)EhӜ9!)3 }P\bdSqgle $I R") Aeph\PE2̐ )&%I#ap] q@6S!/)r %F6wv\@"/ *%I dhXyep Ud* {^bR  GX+Cltђo%dSDR")A Vu.M9F w V"A'O$%I#apX98sW~ܚ=+гl=]32yԞM…TivtS:YъI$%I#ap6Tt\-]<]qV =TH]IMJpzrҙp]ϷGn(+1* A& zknv0Ycxh oX'oY`,$F{Sc`xG] ?8/{mlC$80DB \ 1Mk.=Z -u*Y:HJ # T4%ŝZsiCs{S4N@@LlڀPEgCs?*o drVȝi bOpĺ "H'okMᝩTH;S']M6]jЋP$0z%d+$8)/@>ο(V^k\Vd3 )#z~x*ؗ H4~ Ħ /M{ -C%8HH&1~ArI\D\X" A@" apar! >܇c< 1Cd2r9Ħ /M{ -C%8HH&1~ArI\D\X" A@" apar! >܇c p;ךgl/5>9VNsɤ$JpLi;|Z'89Ѽ76Ynߞ2[par! >܇nOuw~;3Ayd}=ilR" ap`weIjɿ_u< H o =p9̐ \/d7:8;{ kod"wM몄 H$EจA"# ˠ&ݬיz oDB}<Ɠ3$H&|w=Evt&:ab"% 䒸 =@?]*INݯ'S~WKIJpCI$e*%28 A.#ىDnH$%HؾqD"w08H#'%6!ܨ DRA$I$[6*A 'o H؂Db d'" 1N@bfI% C`` F×؄drd+ 8wwa߾>tH={qo$pI8IG8Zkfxw X4p` F×؄drzЏ]|bXO Q33J -H$FHJHt-ҧgn*3ߕ8Yl↰i*Kl`LnTYWsgۿt?ˋd$pI  #q >`[@@@@&ÍہjF0W#;ro"H H$lTJHԘLi -L۷oQ&+n2B'K$[pN1½ z6~&7*H&}P|zѕ\g_8psl|YDnH$%H>Ԁ#ʻqgJϴzMyAKlT'9b A@28HlckC$H$ D")AoT@6SقDaF[r+$r <]ߎ%.R")7*Hv"HJܱiSH`r0ARb$ c; L"H$ QLe 9܇;lͮp%Hwv};tbi=ڝ=3{æM= 1\ HJDs84 -p`.wٙfm5mQ -\Zkb=:Qק|ky"w2/<_vӥo0z18,GSV:5l #$D HJI(YϢ<"C  $r <]ߎ~PbKk5&Md0r0ARb$ aa[[u1CBYG. M - -\~g׷aY'hUj_Aqϣ-/ԵѰEJ$FN$6t7s_<Էoj5@l!I$A" CPƴ.nT12ȞB"H94,/( >4,1"ulp; *EʡaDl2qR1.CLe㉌\ ~L"HvHx"shX^P |hXbd3E%ȝ# wA@6U CLe#åb8\ 2+6\ qCv nRа$аf:ўpǜo[9HwXz0&AZ FKp 1'2:nZb;Ќ~qj|>εM:L(~'^W~8t:u:8uM{@:'ҤWZ wB z.CLe㉌\ Np{ւv_ K1ZU S064,1"p90 1)S.3ٙ`}`8\ 2;>[\Li>vt*WM%CbpCDK[vTtB9 LG<[3m -e J" ``dT *ZѤ]Kv/`YfM$zw #aDrϡa _:ٛ$LG68'ێ5 H94,HTF53;pu&2Cp$dgm -Kޔ_i}5ԭulp; *1 $LTťrgO[^Kˍ -u$2^{8x) /ٛ8 # QHa^őHl ۇ;_bv A@H$#ͮpalc+F'c{PDaǓ/%{G"Ac$7*=˸8-cPqKl–!Dbd|0wlK 8q1t =Bz>y$vSDxA'%^ -H$.|>o30#8]^ͭIX%%0`D"(n -%:N'} ?l;2|"6\`I!!-<#;A"|ü#f7 &k~MW<<2D EH$#ͮpakѤA hr@rԼ) +Ɠ/%{G"Acf7:Yx96ևYuD cD"(nv #II< -s?8ħxwByYoF:w/=OJ5Ѥ:e.P3r10ӷVKl–!Dbdr9L3;8^8!Zr_'c{PDF/:sn - -`" ǥG"%xl*|M\3Л {;yn꽼#6 A.#qG~5xU~pwߨ`$0/h]\\`_\NlT@# >܇ H&C'x7AT):O/e2r-%iBg|3u|23$#/F$8}dr0|r!|:HpMή1HrXF.#|h(_2F.T7S'7*\=I |}x#o*kFC$!H Ip \}_m,EKv%–CC4rx5Ime=_,s =ۣo߬ؓS*ơaau *]c3$H.~g9|m͛Ə6I=ο\m/G[ Iy F$)|c⨇wKK`$.C -gjUÆ/);oy>0זhYf*wylMK\PƵűb;y*fAj D./5xl]88]]u)+sѨbJ3m%,I$D.5n2~d/$^ -NH?C?381~&8؂d2EL 坩 Uʡay\ 3L$I v4fW`xaI909̐x$8O  d' ~eS'CCyg#{rhX^(# d$8H `>^bR.7H|J=n>/HϙޅwGRɝq3O#{_ x Qn訰8 d$8H `ڃ#J_io8zlM}Kg<+:~ݏPg}+>ʓΗE;^1u24w>2ԕI۪6&nP]E X={Sټ쩹F9;M\L-81~&8؂d2,/4uIۊο0#|E.;~1q2F < 7Mڳ_g_ui5<ljK.\z_rIH?C?38̈́#}_}xb3NS3Mu3qC ҠXF.A@@&$Hp#곞Ǫّy~> '53̐x$8=4{MSy9?kqAxb&ubY6Uʡay\ 37})5qKuwVC)&0d0CGWz㾯vdtByp4JXv_𲈩3=ʫtyr&|9t~˯Kx5 UؾQG2 ٔH$$0CDu|0QE3LJ3ClLeK58."A&%-Abx"ߣH&A02T)cFd2KfS"H ygy$G90)A> A@e3-จf H$lTq+K[\}KZ^۷on&w,5.#\lJ$  Kah)܃/3 -ï׾n礼 Pakp\D 3LJ$[6*=;KÎ+n>|),!xQvy|6 ӗ<_R'@po킠mhѡ>; Ab{T cLph @,/%FP")AHl٨$/>kћtI'hor)^2DfH;CcVX.pŖïa -.0Y&2kB&%-A$v~nFoHl12T)cFd2KfpdJOz:!O||=_xf')DR =.[g윖qȃGĞM\_K3]!aCiY'."7U&L"8)_QpLvDD]1dݥ6$ -TD2plA2 zZ _r\䞸Tugrsꑙ:PE qqlHJthYfle:\\J G29GR~cnnf<ϗrr:"ֲf@LŃ U$Go.89S߯q#>'N=3a릥ߨ` >4,A%i}8ϷKKG[e /aE * P0DbK;Cap!Hl!Fp=ں#2ryad0D"A@$Hp vq;fHaeph ~e1lAe!Hl|`0 |00HnTG[wbdSQF./L H$P" bt{F2};Nܩ);<΋{ uo'C^æ T n)B{PكX#0 ob~iVX e `yD %HMVnZ+`aqvBy^g?&2Tt8%ElG08'V=VG  CCF%tb LSjb;X% 24H&AB?&ʏ< cjDnT ~aĖwj -2:cհsuKij&2_E A"/HD2 $8tSzVLb_4_l5\OWckbtA#0C-u0lCkT":7K~XT S$ !H%  =>DՎxowA-aeph ~eCGq}emU-HAMxsa.Cb$ 7*ߣ;1(#ג6N1=\?y|*ղxG%4$8ȅ]܎$`IO=B;$<4JoV`r0H >v9]*]T` -qCW :b$X8 I $x0# ST"F0N@."G"13܂D"28FayH4_&D 3$.L1%IeSq<8$8Ha%F8(;E`\EDb$fEdpDBE h(Mn.x_w -o l*1NGR |Е[w@[r|G3xߪCb6׬ MIJ hX^(A@@0 eֶC-=F^byyAQK 1agq<my_Vw)35 b兊#PI$-pVaw‚.b"^YwH䓸˦b$xp$%Hp1I%~@"yz5AE 6wVCb$fEdpDBE }k -&4<ϯq'N - o*_ SLdpl|wT,Ѳݤq:z[:^LupкYE ȅ]H$Fb[H$)ÁG&Yx۟ Ɯ`SD 3$.Tя &y~:#l/LqdSQw 8>ZuoC /:-󽂗A"0/7Sv4H0EQ bA0" A0\bT Q\bdPHbKa9f*#epH A# H$>f*#؎>4H@6*A@0Q <8F6S$!FK *7*K * Cl >!LedS ] x69q2d@t wA=H| =TFӒՐN.Kͷ Wp6~0Q{|gZdJ# -F[k5lt8b9K,- op A# H$>!Yp{Ot#;?%Z}||aM`#da!ݚ}J"g*>vw8* *A#)v8&0Bs*n nBEH +Q bA0Ӟ& <~#R?~==l Q&d0\Hc<#/M{ -y<8H%H\0őA$828F;_b=l Q&d0\Hc<#/M{ -y<8H%H\0őA$828˵K 8<ĺ3gKu=aKl AD6@M?rq+ q4mG_ nܳ;L<,l|[A"/#mby5#$q'cumhL:kÚD qq$GHv+ BfA*q^x؛͌24/ d0٨`$ #4)Ndq.AjLjRi.NyǶ+Vɂx<8H%H\0őAuMu{i&sX*6 SLd5FeC~Ac ZuL߾WsWj'3)G" 6ɗ|[A"/\ః3=ő4t>| -EXB?z䗼0D[Cc)N:*h&zs矰Z1t2;n0A1x%F_ʗVhU=K4ROyX(u^ǭO=hfI#wD?Bo:?>qfa_ 0|[A1ԞK%P;8~$# ܫ a$rD"1N@!F#'$KlB2"/%xpHJ%F*e!D&! CKbKlGr!\"Hd`QF`LnH$r0K $8$xaJ<8F#aD"/ #a-ZV+݉p}aa&Ac[0w@#ҽԷv ho˥%%a9̐D.H$2@aVɩ홤/E-8܈;hU\W%) x)GR>4,h,:Te> ? -Jyk @? #a-H&ЃC[WyN7i%6!TH`+?AQ?'>$W٨cA"0{غQH4]  *JD)*|.r$r3E&c;p{T)G2D H$$` daF#PnvlT@\(A0 K\DR^3I ȑTQ $9 ҭ_{p[,<;hN$ }=lݨ`$J]EMH "8*=;I{V\N7A4wp$r3E&c;p{T)@ 8O}E;GxVAiy{MW6<[}o߾9U`BE hX"%BI@W\{J<$>~TذۣJ$8I$r0Amh޺ ;70 |[7* r+dR>m ǡI9f#烙tfQm&adln*epH&4wȫὼ^ ->$r@rpXJg=~eT0%8ֶbSpϕ{G.r$r3E&c;pVvKYy}x 1 DQǂD 5dH<&?qr]\_8Yfu'ĔK$兊;#T+hUvsW\&u AH$%H0 ==*ao A.T %.R")58:wJMo+Hݲ|K"D2Mm8Hpm뿉)>x ?{uNE֙kH ?~=7v7Az&;6 -FehIikw/ԀN 8H|lцD_~{+f8KS M QA"H$`- BϖEئLiɼf\d7ISf*=*1p7zdּOx~WXW]);Up$H?V&ޠOاD0N4t$X+$D m1LDH35e$I$TVm}Ô'|>5t xSC K#C1iBг m'^֭i񎡇#VvkM'inT@0\F.%HHMZsnst,?M^ޑ{w=k,F HJ!zaj|8wC0e - xC+tk;C'_=)G"1\F^/e2 <8FIl3 A0qqaQQ 6*;1=H A6‘L#A.#/2r #w$A6UE  ø8аܨrODÝzU$ȅ]pvuw l;(\~!ݻ/#s2^e'$xpiV["VO>x?yXs_xp1y`"rd ~`h#pP{v -!v?"8,/,/ -޳5[\F^`)C3/k)6E  ø8Pj/N -#x#[jC֕H|<ԃ"A.(jC5#} -Kq$YD"Aȝ6IM{KCQPD\Cuͮ]KfD H䰇..$|w!]]w2/~#OYN{֤T w HFenvҧxsIO&E%7Oybo_+wnaFa:fWή%YHɏ>E+lyϊ -O-2 +,Atrsh^$w?z;oǿjOB?D0 >\.;|sFln'6yg]#ǃ#Ș AȨ .eaqe_y7io:LDLGiީ^ J;$xz+mwxX|%q8iy~-pSnl,$LOu>d6} H$`7 KK|4#l^֊t2ĽI"AT/APoJvƟ;,M?KЀ6sjLt+?PJ^u>&=w.znDmD]Qc"Hp'e{e3[2 KX4SpHX71'Gqljˑ&#,p^~{?zֶka?bmq>Zu+D.7 - X>"s>m $xp$$?lahYřK_kJ * C=\F~ͥb84 =T@brGIygI90) _renvH`|! ra?{nTuh(L}dPﱷ2{n.áE; H;SOaI9 ˦/s+|0D"C Hp ӵ.ݞ=T/O-۽ts+׻P3{쭹Kph(Ab={2HSO}SL?owst&ͮ A@@3$ A@s)]^ao|Yau"24,7~1zAY!}$Cc?o"]MBÚ3fapmw#BGqHa$8ȅ]'[iOV -9/bsK4MdWF)`T $ -HlAC V^Z|玹Xw#ie y7#NC7L Ԗ6"!Ha$8ȅ]Î||; ׻ءw lT@{쭹K0간Ò;,= »fnpoGNFq< Ֆ\چaHK.ͮ A@@3ԹA4} CCaKԃN֡3AdhXޚᤞƥUk0}k‹{㼮joGlA쐔 r0 %M _&_ަi#x ܒ,] (0>{nTuhGWzst+W׳_qC2S -lA )L=) HXySn~o{|x9 X@6* "HJ\DlT:qI DnH\DrɍʰIDF.ca/"&Db$fH@"akPc٨H\D")q Q$I'%"q%7*'%q{+ =fKx^h+n%qȍpG %> -HจE$K G<>Il'e^;HrIz0Ѽ)Ԑ\r2xR"' ﱷP0C3JXxVp0¡ckPd;x;οeM0}8z ֲp;AbxR &f݈n:|>~ϷV>hYt: ﱷpaz8 ->{v?v:Fb$rU8égmT@E$."٨l9ԥ4.&k_qmtH:T|@W+l못gC=7OJ$rSE"%KnT,ma-|>ƪ^^yw=Pc1~90H$H'#1C臄}-UuEq/|AfFήs'1 ړwB~,`rD"L"r\䞸S]")' HJARnޫH&C/L1)A\Kl A\bT)H0d0`D"H&a9.rO\Dީ.Hd$%F )7UJ$!H H. Db% HvF.1\lTb{p '=~|>> O߸OĞs#ښ$F^b`dg#%4*5Wcd2M^q52oYwU\#%DG2D{qrMbЕc1qLo@׉;NOYpirhfW" A0ŤArI$#cB5'?yO}1 m  #/Aø8FK$ DZ4D7 'c1uɎwԟo^]P3Hf H{`Hd$%F M.8ؙ_G/%c$ 7*Kl\bdSqKڴ3`D"12TH&Am PE[LF~ϡaA29a^^P Qu$d0_fב$˲W#; -D f|4>zoH7=,2j 69QUf~v8&<ʷ\brR̷4tfDR":$8H'g|Q 8& HsTHJ$qyyA$8ȉ]P۫g*}0azo1oiCD*iK -y(_DbJث1 /.Αr˲ - 1U4mEԑ?a2{I d9Vn[DNxE{{)Y\}^JY  I(OtīҭBĽex`fY߾MĜK$K F%1$-Gmk ?߫iܖHJ$qyyA$8ȉLɺ7Ud ]|jɒ?~ٔJXgnZ=l0q|mmM%ЙIDb2H$K&!pN;nL|>^<xdp8" wk;S[0%Q$9*K$%8˼<1IMMp}햿o9l>&Dg(b(rI3TaOKł!֤H Ac/aP5kJ&9ѶpLFF,#, hClVoWQ !㵀]goj۽h>2 'gc|%&alq]Ntm.elåxu`<ϯUZ*?t Hثf'g|Q 8& ~<۟ʔ-ןWL{>&#M&Hp8DJ-fenfhu阳[0ݽvK(R#,A~rv8HǞ71n-HlϓG~[!+x#c>u8=t@#A"AD^%N+ID"t$8%8&'t3 A|DR;2`9S_?9;ɨSE$ $rT.Ap -XI%c%)1?  $%dT141' p—pw/Gܿ9Ó - #^.4%C48=t@#A"AD^%A`[ܫst׺~"x<_[;}D>ÑD:p0_9dOVVDr&28$8HpOHJQYblnE7m] |qc׭2Xr|N|2qׇ5>ys6׶ȿ^zYxvaWҜA%c%)1i]:d-a8L&$#/ 䎡9i>h0[&b]O,0g3;fj2ii8bG]O&G miA"AD^%N+I'/aBvMdp<x~ \ t\3\dkA/Ay%&6[nW<ϯ/δ}hn\b2qzG"q D n%LJ"m֤Ud-Xcvuo箶?՗ҋx)V+ZJojXS|IDRGR   myvNzw~a3S_?9;ɨSDlK?H;k^6 "7|<_#A@<# V;8ڇ$ɘx .t$8%8&'t3фoy<_WN;NDMd`n e NsrG4dXZv`fo3H|Ld2VqwDXI01ϵ &J[ó@B/Xd(A0A.A"/AD.19ѼS 'LNj )28'-O֙18K|^$*e) ': ȱ %&%H%3%&'4qJqdI2xp$e4TD:;cg#o1|D >8owp yj~pAws㡄K)E.A"/AD.19ѼSœaAi/F@Ķa0o|vxz3QL39Y C&# }48|lOr>>ԇ&&|^$*eĚ#kV>xغR)C$_?HG4oCd:D&N >Β3 f -WˆO|_ϯ]~.2JR8(H1vc;zki4tL;cg#o1| f6Aid8qZB9~Tqt[.d(A0A.A"/AD.19Ѽ`g0lѹKm_/ <^n"^[|DDV\a[& L8a'A>hy䎡YCi?Ι(v'xgจ+P`\D^ 93L%dl ^Cg U;*\98,W蘆&AP'u̖bl>aeZNyG^53Qa2P,$bh;$, { 28:e H0ϠO z>_/,! =س9_ʓuͷ\* C <8H%>I$8H%Nš ~dȘ$*%&_XD.G.#F#'uPC.h2TyOJA@G.AI A"/qʨLd'\DƜ %&Q)A0š$ryG?rn8<^WJw; ze0 -y9 |=^aK/e݀o|_o#=mΛ…Ĭ0'\DƜ %&Q)A0|"hXN"Zpmw۽4Y r(O!4bȻD0iVe>(¯40 -y\lZޅ9 I->I$8H%N8j2~^Fe+yk[EJ4$%&_XD.G.obaoa4lcys>>AN%艽NoN!a.JA@G.AI0p=Ol=I 5e8QxxA/f2Ed Pb/I„6]vS~X?kgyUC`#A.h2TyOJ0m؟։Kf>zl' ?~O -Ã=ŕâb,BMf&Mš ~dȘ$*%&h O|~@~I9' o UĄQ"nӤe3-3(a1GrP -^F ޴9,M$8H%Nš ~DDŽA߉Ӆe]iV0ryG?r$0iYt? /-%a# $ep 8eҞ71@ܩ2q>҃=x:&2NA#)C S/eC`K$-",rTc%\"wyHʡsS0Ň-Jʡ| D<98C'xpHJ$P;o)2|89AXI"]b48r(A0Lp|ˆr(#/9ۅ㼚pipUp$%r(ApʝelLB߆H(i;w]1xPGw{4Fzռd$H4[H-F#) N ԆvXzu{Kծv471agyzIޮ&fz-s-iI+WMiL[ E.Y ,Ҕ@CǏm|c~,- 8\|(߲ȗ&Ff /;H$VZ*܇QQtO_W./a/eC`K$-"Ji h3}Ciǖ> HOjroSLF#) N;YEmx<~&LgZgWp\i' $8I9 8N2[6d l`ӠV'aK.p4FSc=KY{i2_?u`&cJ0aH")2%28diC,iͽߙk9?wm eJ$-",&)IT\iHL+x5L\FpiV'$K`gy ' CdS,/c茕$8Hp |$ A"_ )19 <ICȗ .dd 2VL,O A#Y"$$8r(s -xL 2A$8HK՝݇tvky_+dMl rҬ,O!H c%$h -n͌tUv5H0qc QO OuzYBS,/c茕$8Hp 6 6+"?7'b?_O_{fE1| rһKkÄ 3vIm[F7uctT`YzYϭ=aЄ dDHHʡ nJ0=Աg!|~4UYa>$8P >V /AH$@hsO$,(Y?>x>_>ן+naқsQd$Y>4AGD"11yFD;6|(jWt:1/c茕$8Hp |$9hca9HV|~0Ҳԉm>vig\FpiV'$K`V6 v54aY{m8/+!R%$L4 ~)Hw1OtJ$8ll2*ܺytȸ;^.L' CdS,ԗfeKmϬc7n?_XHɘ& $%cn>fEiL~yo;aC$8Hp$K$DG"͡=²mvɃ==XyJ:%Hp$gbSKCg'K$;':/qJəH$: r(':HdkzW8j˒4OSbSKCg'K4eخb#_OPJ$iH$d I9H$2 nc%,34k?,ޖhz0˓u&'5KHo [+p^:Hp =D/eKxs|StLD"AN֙`N@@C ց+t]o2?^w5ac)'LNj 1i@9  1OHwOt"_8+3A 6sf@~ fOl4 H417w}yܭ7l0tIddyG|y+˝fϯ.47"t*DR⭀w-Acb$M['vN12x  HLCӇfS@@28KD"D [D`Mbϲt[>?0.?q]`+'8=tLc(ل'BCkO9Hp0x'‹j^Vz#G':Hy9V$%̳~+c!qaG"HLR2;FA@6N~:D< `W(_L|`[-Q")H"V@; 1':8M63I Gd >Β#H$&Q)O|`=<_|̲䖥疥 LbǥSy&o$NӨ m@wDDO)^ XI d >Β#H$YN:Y? /|>~@ā@8G.A0NHJb@@bn1 %"eXI >-aTå;s7`&cn& 2;FA0?щ9|o>f_uI|UWvU= 8Hg?Eh_^ .΢.^ ,/ /A`gbK;A@NH gDEx[ 5%HdYO5A ș $8&Q 20$8ȉΉ&Qy&&Q䤎p6yHJ$K\DePSɝ MFe8m_I Ig{_"/x}Uˇ POvK ':':D噘D¹ :%ȅ+GR[,#jJ1ɨ s Ųx"?_|> S,H;$]xw%HpLrd?a4,Ap5l tNI()ӉW-a2w􃃀ԑ &Ifk+dg_Py3@0hQgϯgB*%;A@NH g`=Hlqqְ8d=ݫ!H$&QY%ȝw>ʷl"$8 2 H\|w֟\Xr~:2x|rTJ$D7rPwy"HLK;og3/}>oE$Hp$d(AQ99)?Bwud䨔 H$dOt mgoW"gF~ۯ:4e;g[6t ‘HA"G|w֟\Xr~:2x|rTJXX- E [[Ũy"HLKab/aC'+ZyE;."A# C D%ȉΉmӋNj>^/{G {cb-u.3L:0x|rTJ$D7rPwy"ц vcǟ:"Yv?f5Ƕ..sPeC HA"G6 -DSR%&֟\_. -q%ϻ:,k,u5!e)&ITqw rml坳χ-l."A# C DeoT|w֟\Xr~:2xjٚqh1H󸼾s 酩2D"A@02.Aͼo[6D< D %9* ':':'ao)osuu^u %8Kʻ'07iH$%;2N4%n/#_~*e,hKm2 |\DG"AKj}v<sb9<iC`(%r(em.c$8H )A@.|j\YrgCIde.#/qqqH~rO?ARJ[MJ͢#?{u8_^\ c$8H )A@.|j\Yb{/l()eepq<.2ΒOaKnup}ޡ5<c-K40sepo UM| >VU\ Ά288\F^g ,yp{zv6x,!w&X_ GdL SARI9A2T6qr$XI >5AG.? 22K @/[|ݟ[4aБwA>3/#>2fkJ&o|ɰ >5AG.oV=f׷2a`CT:(rxZJL$),ID?Y|C$N kQ)A@@Nt@YreD./M A0 %XINt9y"|L.ʤ2rH.SYΓ ~9ʇ28H:$R而 Љ\^8<8."A`J7s/;rqqO #]D -.\'%dsepmйGJ r2Β.C'rylจ I(AJrbXݾܕh)zewX RF.#?%qنR< ntHx;Fe ΅5ɨ $u :֔~DrZ|}"֤//4$L fA0 %XINt9y"|L.ʤ##惦'6"} ׻K$%dsep8=t.IF9gApp6yp\D$ c%9q|n2;g<_MO)m\F~&KqD"C@>qaK kQ)A@@Nt@YreD./M A0 %gXaȯG~|L5lVf+dTeg"$Ng9OJ$2:( qz\XJ r2Β.p|֡/:y<ޗ!̖˸8HI=cr9\$I{I}Nnl¨ >Aй&&K\ ly8m%D'x%P ~D"A,xP 93r q(Y%&',I ' 1$%&x\_[fl%Hp˓s:t(Ǭt|L(>ɿ)&x<~ؓlR|?D${^gn]^.s -K"$$8Hp%%I%[ e Ns2O)H$."c\`cɨ#JwtTʘs -K"$$8Hp%%I%[ e Ns2O)H$."c\`cɨ#t NI\N-狻?5R"͓ $K")AJQY"YYPƜL0' C<8TD"28&QY%&8 -="=ɹ~=_o!JX|Q)cNc~)H.HJ AdTH 'u o141' 8;^SJw%/hɯgi8*I%&8&:I|$HyG?NGml/_z/o*a&A %Ȩ,,AN,Abh(cN@@p -& d|*OA"q,G\8}||}c Nk_ˏ~97=-K؜uNArI$DR 2 D9y9)`N@2xp<EdpLKX  eѧ?OwYῌG1&?*eIpLO9%\I $8P-2`9AFJ'++Xo#ŋ0,B?6d3&DR+ .Rnw3r -AwVֵUZd惜YPƜ`>qoxNe-!&xxd\Jh;cg#0 -2.%t@09 <8N9gyw DYD")/h"8%+''GI$8r(A@Hq)qv8'uJL -I%\~(ȸD3x8Dd%yRg&DK$dhN:8 - pLQyR䎡Y'K LN4SNt@@Y] 'u/h"H H$NA"aZ*;eW?u33W $5r(A@Hq)qv8'uJL -I%\~(ȸD3x8DZJ7Y_s_.5S2Ds8%+''GI$8r(A@Hp;JF׼'~m+x#oM4PpL,yFAƥ&')': ,.A@ȓ:4H$M$D^ pL_]Տ*}||- Cw7&T[J :%&w $ΒG.?ad\J`rٸ.%]AB$&C-@$2.."O;AM_?ME8!DRQJɅ{N;`$~>tvP:L!sܔ:8殕vj01f+O;Qy&sBD"/~`tz}9pgOL ~wH$&8}%&QYӡg'?Eɽscqi-9l%7ZN~0In56uC S@RB"1p)'Db/܇N^b9Jqyyl~}\DԱ`m:qckx|r4u97Ii %2N:P$帔'HL.u߉# DeyrvN c]Fj%@+Ns+ӓh?*A"cN@#\/MN#eD99|># `>փ)[TW&ۗ;/)AZPFgyOC 1'H$& 'u ߰$2xgL$rT.1yeT9GBM $eegF~XyPFgyOC 1'H$& 'u ߰$2xgL$rT.1yeT9GBM $eNN/ "x6Cp~˧K$p:Ko<3Gr&9*2fy n=ڰn{ES@nZh,x}x˱.| 2 /A@@bNHLA@@N,AaHd IT C2֡5i9//Ԕ {JRF^F~fgwAn{O^k`;v{/:"y YŜ Y|<83A@Q-QPF^'5 5%H8>Gp`!9Q=N[Vw:0mk&p#d> _Ĝ Y|<83A@Q-QPF^'5a=@WwO-_y<_mqY>M҄APFgyOC 1'H$& 'u ߰$2xgL$rT.AAGNM_>_U|fi0J0bn>Ns12s\[y[mΙ ߰$2xg1+͞;&'rPt<ņx:<˂C0D^[?eT.AȓuMSNO'Np{9;ymBkmZ[*o娔 rIoi H$Pbʡx0>fy2! ;^MZ_ -a+-:j 0z9؄ R"Y%'Q)q'-%AH|#$C ֛C:.nW(gs>;N\.n,OՖC {eR~0\oKA胜)/楌͓ .K Kیǚ$8Ʌ|r(Aaܹ ]Om)# H}:Ӽyry¥y)wP"yqXG\͝PLܥ8_ k0q27340mR~0\oKA胜)/楌͓ .K KəV6{EF=[kOKߛ9|r(Aaܹ ]Om)# H}:58L[k'R|_IkYaJ1O+'D6& D|r)hϬo ;U}f/xxA{ޡ{bab: H9ޖ2r d N?9S^=Ko'(A.\:qX9 %eѧIeU[E-fenx<_/5iA¦E,1s?L)RF.A,1' 'u y)m%ȅKRB'8+e`I܍H_˨IM;l.ɝХa: H9ޖ2r d N?9S^=K5pDIɩ ~Vݎ -Wsl/P4s[./I@#1\/q9|@se<{}?+ wnKm A胜)O&fݺ{EkpܨuyrK?{{ WJqa\^8yy{s |GG 5%&ɸ̱r2Ӊ 36 <6O>i@~KpJ$˘_̡JLBDD./ͼǽy DpEi?Hգi]/Tiګ䲑tɽ OM%!CLKsz<&F>X|W~1I4<yy{s |GG 5%&ɸ̱r2F|` - =_eR&> CI(H关q7! /AwtPS`+'i7<'E6{Y/:Jc6PŒΌEJ$H$H8}ܛL H;:Z^)A0KnA$~a@%A;89 p -& ':q?Dd\ʨ)Af$g%H'N N/ARяq3A2NPb>9 p -& ':q?Dd\ʨ)Af$g%ܫݷ < W{w} 5}xKj\%ge%&yg}ys%LANt>ȸQSՇ`WѷͿo@GIxN ^" \b2ꔘ }$/w?$.t(1 %&ȿ;~>KgFzHJ6g7Úsx@g6ftLM )Ot@G~ɸ qwCI(1AEYD^ƜyFD{& |qÔhc0;ΑHJ%&bT=|g/ϟc׏߱Od4kCI(1AEY`' -xw*eU[C~r C rD"ON.ANt@bN,q|J|!qJ'Y~ǣNIdAԗ &AJN}De;I C rD"ON.ANt@bN,q|J|!qJ'Y~ǣNIdAԗ &AJnpVۻβwyo>z O.G2823ܩ/A.Դ#"1/x<>*xZO8W }9HJ$e8J 5%yrvr rsd 8%P p@]•rppqsK>Fck19Dp69PwK$r(߹HJtdnZ|W_omn0 d 8%P P?t;uHJ$ rK#W{rw{|"_VcoOrsB pD"ON.ANt@bN,q|J|!qJ'Y~ǣNIdAo2lx_\`0&mc/R{J4& C rD"ON.ANt@bN,q|J|!qJ'N.]){jVn=opu\>W7m33BJN}De}26ƉVѥ2׸MBZySE 1_HŇ140HOzK/8qkUG\`re ȅKR}\D"Y"1O c%A"JI(|2t%H̓%.",Ș'ep c%$c>:Hd$ z28o="D>2ы/l?> iT\`re ȅKR}\D"Y"1O c%A"Jb3(pu&橕__mCmȹY YJ )1ŃY?RQY^0penP箑iJ{PRE$% 2V$r$ 2x'C\|ҞTEbi).˘  DD"cAJDPd K'K$2x2~thpʟ -E;ҋT00KL.9pi^ʡH$K$2Id$HXI@0 e'.AfqTT[fہYYb~"G >^m8֘=9zvB+o D"cAJD1XyU[O@|"¹AN4Υ/AYq)Iy]tByr(,||LʘO._\x< KGD]y<)O4Υ/AYq)Iy]tByr(,||LʘO._\x< KGD{5H7|ӓn m U߰ȡg;ǥ'w ɥD P red'LFްC|_sߐ]]i08Abq( w8O'剎iʰ> _F~,Z{!]*X4Nyrv9.X?)N(O.%e/IɅK /p- .PWʻ=K#ʿQI_kؓ\4)7wX;g;ǥ'w ɥD P reӥ='Yy v o|xсm']a"cj2͡sKq>7o.H8%2Nk&/28%9*Np$rK/p\ p;PHՓGD~eZ¯6PSC@,#H8%2Nk&/28%9*Np$.\nn J|6ÿet?;"e c% r95KWCoǏmx<>"K P/hHH䨔':q/A~½sa'LAԗC  1\;ۯ+ߞO>XZl>Yۓ\I%׬5Q.#H8%2Nk&/28%9*Np$rK/p\ p;PNeo?_݆I~< 6ӋKU6005H$*H$2NGeǚIyዦ dDJydy#|󅤿kx7<Lǘ)1/ )+IpǒtW0~+b ޤC^fja)/Ԕ,Q)Ot#1W[wOxQ C S\`ra r 2V&ep|Aq%H%!$p$坳Aɉ&;p$8P$) \X\Id$ag&epwG$r |CHd<9;IysWw\[䟈*YE c3BܘAw? OK2);̤ D.A"/q > 'gto)=zDU왏ߘER^t # IJw? OK2)i9pp1EiܤʓAw>+'' '?(1A8 -/MI?\.s@?0B3&֟ ceR+wؙI9\D._|(A@".A.[/6qYFxIC S\`ra r 2V&ep|Aq%H%!$rrGs7m?#q_bTƶ)p d(Ab~ -KYL.?A.Aʤ 2V328,pQ\Ȼ}Y<3}Yc 6~b.}2VNN4ANaI0x ^W{u!z]? b" ceR+DV) jvQ~ډP9)w>lΓ:IS@H\D"g%ȉΨ\B2{䛇N1ő,H;KdDd(ǜ;g`rr6IyAd) H$."3DgT.D^\ ~f=_CHH$ ߳~.? h7M3HO, 0)LN<)/h8E${F^}K a34%ܽײ*BdOJD"=#/A@NtF>H%j%/Yy8$]ׅ*n}+x/r]>'28&'gs4OIJD"=#/A@NtF>H‚@f 5wj>p翲&MDLGC<99O '$%NA"Ap䞑 ':ry냸. -|#yMt n޵0s#Y" w 82,lު~#E-m!E${F^ +/[ <+;j?˯ IT/P |$KrD;D┯qHpL_H;"_ e$,\gɑ8~5s1%*A@q8/DsW.ȓ'H5 Kw~Q$ :cҽMۭ gct l??J{D\Q$*˗tARF^ltΥ_D"OֱԼdO} uB]݊k s0 :cK,9ԗf&՜W8Ϗy\.A;n1oy܅f}ltΥ_D"OND"q8$8&/q$+>JLbzp]G'43tg V@bB|IJ$ee>K'/\K$I$y!xwaH"}_}ndlF~ng^\+sP$*˗tARF^ltΥ_D"OND+U..Rџ -C2B'M;J9˓urTw.H$56#4N}<_d(LY|yү\"'g' IJirn'i'uʗ\)ANwG.A@ H$HgbrRJ%I(A@"/A0J9JEJLF3/|,]F%CJ:K$e% ,$rD~gbJKLR%."#//%.1yt~QLWMې۸gޡ.7?5x<>IJ_Yg6x~WIy DD~&&'5ˡ\"$Cj"P%&8r#q݉m7>OE?WO a2/R)\ )#/AHf9 K$k3 /9ܸ|^xUI0_LaOԶD8LEJLF3/|,]NWdpf}W_-~%st x<>>>a<$ D~&&'5ˡ\"$CˡKKL`]kO7v$^/>;&l:ȼ=3_V:X k: _D.%yD"K$%ed$ H ,pv&,KϏ?;3 M4 4A09)A@@2NG\F.GD I(~|(1A\J$r4 #-A߈ozu]mtK&4MLNjJwtQ)A[a'>)R|q㶐 w0 -%L8G䤦yGG8$r$8&  |(1A\u6O6 mH$党 4A09)A@@2NG\F.GD ˈI(Ù_pKe.=lЭ7onff' H:Iy>MLNjJwtQ)A"Q)aV% y_oOSӾ\)"K$%Ѱ،CW4Pe3aYeJ  c?xlxW|~_m/)O~%ȸ'E. |O@@@^y$xcȉȅP8 $K)A"/ĽC 2.CK$%&d8D^ X#7P7b.av?%!j.A@;QYi: qI}7j8Nt@.,$xpLi00G?{RH6!PKyPI 7%!j.A@;Q)-\wXvܲ|r=t0$BOc=6B<Ԉ4ٯqH8SD^")1{ 2aRPKƅU𥉉^V/r|+q!l$"Z  5 㝇Ȩ,48];D@Nt@.,$xXs}K u풹vp_ 3`^Pr(}DZ:L' /qPs ? .%i0y&Hx2*XyۭM6s幹xF?'O{3%&'u H$&wv$> ~RGXH)\יt(G"K;/5K/\Kyҡ|TJ //ٙI:K$;;t -KY?#AtL$PL.Lp:#H%ȝ%H˗\U.Aƥ ~RGXH)\יt(u+A%;~$xKv0>???xp_>x4 CgJL0'O,A@HL)H.yg}ӱ2 CS@*CXp ܯՕ2Q?Յx/01)n)qH%ȸ'*1:G9(),:h.l!vri/Aԑ q:V&d(q -&u&8H$~$,oW]/]Ϗ(fW) Ob6e kDbrgNAr;'u$HJɅ{ rKʰ낣CD.A@,AG. Ðv op$6vk5lOnfa.I92 ~Rg DbrgNAr;'u$HJɅ{_ǪXmXvK{TeuM#7fd^ʦ٬Aƥ

*%0h=Ku;`{^ŭ|I ce"A`rҲ70o[[xvu+%Y?~tȡ)h 8K w8K:%ȉ&q)Cs(sXH$e||}P" k&g ':HPLN4Ar%tq; NǥDD9_9rL$2 >~Td(c~eQM[> Ż'{e"&bM 9 t\J)ANt0KC5#Gђ@?_{_p?c="*~ȯAPRlJɉ&P1V{uxф>V a%eOM 9 t\J)ANt0KCyb5tN9p~  ƀ+ۜq7t~fl`x~}Im"{LM9L9 t\J)ANt0 x32Fҟ~g kqI9.Y~r? r3VNAHL$B{"`rCeK wOʡJ8%擨5I{r,O?uK9+' H$NAr&yRG`r=wA0ӡ2Nǥ M;'Pn>䁓Tx)xw= x HLqɽD'8^ʉX9A^A"q -3Aȓ: -˨o= ~G;*t\Є!5Nh -{?~_ɇxIJK& w/R\'Nx)':cye,+{- i..1BCuw5lwZm+M;'P%HpITMY IG7…kr脑@'8^ʉX9A^A"q -3Aȓ: DIXP[۷oWeB\&6ys}e-{!mHeBi=_r9t:Ot㥜茕ep$ 9 - (5ba5 Ce"`rCepc04<7%(M Vo<)]'a&.#/R\'Nx)':cy)HV-IoW%\&-3Y?)r(A@㔘'ƀV|<E:މ~m$۩㥜茕ep$Xvx Lv$s^-Օ.ONL]B 2.%y)HqMv2)wK$rT.2NKR"dL+':P~'Gr&P.$˸{&;e;%9*CǥS)A@p 2V&gleLA@@rI0*^ țdŌL-t/2^b2t@N&8%rN}DPV : DBIЙK29sL$&'g3C'ǒ?g1dw-_/`:&EL4aʡi)"/`rrv CMcjE>IK^o= 3˙y bR': d' ~D"Gr(t*%."A2 -K7VQOLaC>'ؐPڎKu^ -eܽd|LpJ2au,%?e H29sL$4=zQt=ϏqK Yvr/edA`C d\JR,%&CdS"ԗH,c-r >\y~j[s/X3'p3\0 Q鬒2ɿ"Fx>ɽo>t@N&8%rHXyiUzod ^FnF?!g$&މeKKL:wə8gy: qq%': q>yrDD)HdA"A kNޱ&މeKKL:wə8gy: qq%': q>yrDD)HdA"Aiu{'rWt0*]ހ Հ_s!1yID 0q)dsXqC ]By傥rKt;K$ K$aǏ{D?RW+b}帅AqD2NǥĥSYKu&cHd.,=iWEݾ^7eӗ+'cNS@.9yļLuti[ˡtƹ+bH+3#q:t(AK(Ot@}$މ%ĺ /jjo^Wx<><=mHf锖qrT RbX.2938,O$. ft`%m9^:'yrDD)H$ J{gr=~~}Ͽ &9;)(Nʘ˱.QY^8yye_fPep7j7mዸwxaぷ!o>xW532/80;O.k9wb}rwRQL,,:H;l(%关w}cмQľc_7>Nrq~Y/{/8 /cNƥ r(? rGމ ,haa-/n>tr9/D9Ѽy9CC8;5ä̎xcgH~5r_u]}7a^ wANXp eIXykXFhZX[ _pp ?f𒑰n65J 'CygɅ}M; 'NO@Nt@Nk2ur&93q y9V%* g3/ cTÓ) x|<1/_L4M&R,cNƥ r(? rGމ ȉ.ZӪZ^;&&\r z¶1G V#r(2N28&q)Qq@x<>_Y٦1 MX; 'NO@Nt@p4<fVyx<>'~]pzG"1Υ(ȅ7/tN//%8P _㜡 rIp帔I\\$;C>ɸt.GA.|ysȗ w)x)A %&%Hp;gND.ǥgNw.}wii{'C|Zr%}>bޡDH,ŔK K~(kqg|}җ1'q;?Opqb ^hj0 |,ʼn>ɸt.GA.|ysȗ w)x)J69AwB3R3gL|$.~ .sÐ06+O} > xBUoXeK;``箮nd(aɼ~lw P%K:$ >r Sƥ/$83Yr$2N{NHu KL0O$w P%K:$ >r Sƥ/$83Yr$2N{NHʡtҳ,7#=f0ˡD"\'g?/q)f+'H+Ct>VHA'Ï*A@#9s%A"1 #O@?+0<0HiM!r OᏀ PCr(C9*q &omB_!;x~A/@M[k5S")ehD.A0l鼔.j-~(A^!9Hd8ep2.eܛV@8J^y B^$)Q%Ȩ 9ΒȆ͍ct~!tk}<IJ,\,,/G@@r(A^!9Hd8ep2VZi`6kִ'/f.>ٵaL֔MsHu Kcp}E|<~Baʲq 8e\J4+o?v5JMo GY?$@/1D^yfPF.1ΉwA@ Db2 +IpLȗCyl~) K\ʓ#g;KL|A@#jy9KLƽs}$g<:%;:*J<3P^8?#Ap -H)nu~ #xb'`^μ1izWZ~PF.1ΉwA@ Db2 =mM咰ĥoA9KF g':!al="ZGb\g|"2$=}V6f rGG"/<3r(#{; di@2Jxfx|???~K'M bqNS@"H9'gG~wKq765gx1 _+B@ӑaL'QyGGXI`gF.-˺Y=+Q͕mi -8-Bn}_,eVw -jy9KLƽs}$g<:A`Y,]geo"؟s`gF gt@# /- a ɻJ;e2eD^yfPF.1ΉwA@ Ă PhбɥMJ`t_Ey﫽 *:&.aYp -H)xs+x<>J9Zy{/t;L'xJސnn/q-ŋ 3ArT4#_ITC 5s&&' _;v4)'g'?3ٙ 5%&/١ ӡ/K<8'ce fDtidIpwtLA0Iל&t`jx+&x<>~~ad?A HdP⥀ 9);䮾/M㉝,7;QHsDZHΌ9 򎎖Rb 8&2)1f}bM4ry{RIt`c*/AVWǔma}š aqE\ wfW1r<+Ti6eiX| c LVi.5KHV3O4帔c<9wW˗;>Edܽ+Id D'8Ȩ\w4ɨ#1A.Q)O 8NK\4/X?)Ot@N q%Opw/DAR"YD< 2*qG28 `2HLK$rTKM{7_rǿDޡ`0q.&%Opw/DAR"Yojʲpx i3(w4⷇GD OoHo传l57`ÆNIyrrĥ/ywh}ȸPZKD-a[+?y}2 --tJK$rTʓ:%NS 'PYrp2y<`<v1wEs7)DbqrLdp$%%H r,ZIo.opqof-hauڍ倾k%Hܽ|ɻC\D˱2A@F΄E^~Ņb ?3NPF^a1v4j'ɣf˅(] 2t`N q%Opw/D)R2V*-uh2xCYu,rMK$rTʓ:%NG>w_#YxvtG: ce" bHR _pȭf}p?%:p?Ip| C NkNB r$.ehpHK:T^85_ -8C'p8Bμ;O>;sd(_špPbǚP3K q;y&Gd͗2 npv~.寅w`>Tb;/L' -5kp+d(_špPbǚP354a]qWxjf`-?9HDv!}d -Ϗ?{Ojj+b6s91G kN3'A%_ -' %9aAmuJlK_˸hmAxA̽YNU"ˢXɱ':Կ$Hg0$; 4d7?'wvD(evaa0cI(AN֙ĥ M8 sO~uEZxw2n6@`b~ٙ C/>jC Kkbe[أ/q+wϵ |"xVC'CǯcӺ'<_*}fYy;|!iᄡ5'~4+^r_Ϗ'ͅl.PI|]~NʋHL:Hq)>I\@09)AbN@0y1O$& ?8Kc'\N}c%$1˯ɓXy XgIy9.G"1Ky&'5%H &/q4tgqw섋 M=7zq&x8dm -PHq)>I\@09)A%L{gӜ'+cF ##臄wir%]Ntꁊ<?K'+L '&NʋHL:Hq)>̫1qXV8.שi[ miUA4A1w/LAWR^U"[%&%N}c%$a iB+]etn?'.q.]i.](1Ly5ĥWoK7,1ycrA$H:溸/ -/oVJyG$.C ~I#i?+=x|`3$+l5}>k -Fr4Ѽ@e}:Hd''f :a5$4=X~><ؽ˫շ^N|XU+ Dץ/cMÓF~ZjU6G͟"8"^p͈64wL,K||y)x)H$1Sw}-CpNXరF*𮈫#Rg2r9.%tȘON֜ O/ð#AL M-=9jr PߗVrd$%&1C }p${Pv LɺzXrQ@VÚ5Eq)D|rdļGnҬM"VCg/ᷕ#GdI؟S|s7H{q~KۉLfh&,;&ĝit|ofÕy%|>D&KfLN&"tppKin/vUһw$GcyW X<ڏyi;I OǑ&a^\x(r};#!^6ii,xNd&qwF[F,l"BX梛32tH4Hb"f]gsva fYrڍkh.& 4EϹ"ډ$hшMDh\tq"u^ii@,Xd߬Kl;̠A,$c > x'ս:͍߿?z_6aF,l"BX梛EoX"-3뷳Rᳮy::}|7￰$̲ȾYt5[_ywOv.@xr˾O#y|u;4(0#m.Yl"o}rۀ&y3q#$rGN5G ethwG Z΁mz;vE_tO_H/}>}rWw;M; <2=q34He9h7tܒ:/Cf qf2g̞~;YY|Ivh fD;LDYFT&](KDM3옑6ci&>yo_@_Fyv].)LM0[/WXaߌt9+KA/Ɏm7 f_ͦg'U¯u vXGlz^//w)ϗϝy4=1Ph':+KAK?wʎ͸#pArCԯk};D\ %~"A"qf1uF?_6˒# eYrRDH-"yfYrMfX0rQh&D%~"A"qf1uF?_6˒# eYrRDH-"yfY2C"3&bh3tl,Iޫ۾O~%o1.iZo7|~ <,x|'4|i,i< -@n[; K Ω~һ~?*r"w6?haYrM"~.n{,xIU7 INkSDSO.<>bN yoAM _^{YG)d\]A ʲ¥dIny'y:!g#r]yh{د%Pt -š9) /I#On΅#r3fY7?sVvpst7ټ<wDMg?DD:> 4/ҽk^VyMu^/6 SDG  qLiq?mͲDf.1vDx4/Xq$/\@LO7 q6Ї9aɽv a _bF,K1< -(?FyfMOM^J2 KxZ YYiqЕe4wҙ4>^dFh,4h'2E& 4x$49kYV"4;Ki6C0+iY YYiqЕe4wҙ4>^dFh,4h'2E& 4x$Ieu_ B#ix;~R^^?[8B@O{("CG/,;qwG$Džz<(fxOA/ Mbt|>>t <[r|D^ڳ9S=r$tVfhhDD&"teiIFb]О5]>ջ˞5=Wnx|B#̆ƫޫCX#ʎg$<;S5$̲2ˏc~[b9Z rswrohÎrqh-dK._b2#41ĒDLN3 Ϧprsq1<8/g˫;a>zjuhLDfNsG&'܌sSn ]s J<O -RR8\P7i9%InƸI/rO;{r==YtIp9w;]YfNs'm$ܼpqc۝í_r6"Qy@<>^#@ R$L?׫Փe7ؗt;oxpX^;P-=Gc;L_2# G._ OgmAF%СI4lfehnD;YZgىuw @f4Ҭ.3c#u41.,@D&G\N0C&aҘY-ʒDgY"jYֲe'"fMo"$LDxW2lΌُ,Daɯ}=_c:X!s݈v,,Co`醙>n{qg#Ư_+bӯ%/[=hW@u@Mk;D9O?mpK4#n'KkTcqXatfIZ%_ܰ+ŭ5ϮȻD^^ȝN԰Ĝtfř}Dhay׼n7&$LY4"LQ˴ItF:,#mE. L &̌ Li$Id9#h34ynL6I4"K,iD$2,5iKtfYFڌً\dzKff&SM`M4DDLL|sbA7ѯǩGo'cYĬЯaC$|$&>f"9zn@^VkP{i3^2^8M)ח@xI -DY"j.&GɏˏrvcnIDnet+OlyRVEe8ǡ'ݳ  Cl0iDfY"|Oss nv]^-9Woef"tgYF -z|x˽sc>_K| T=ɁT0GZ8E&98h7&L?~Y^eySu`{_t`[%w %.krLڑ`"B#HtK12f"2;8 qN$vwOnI£iY#NL6p9܎w-BC~x;'҄}3tͥt& sʎ: 3ҙSvLayDfY"bif,ىXdD|r.aza34KIw' 34ҌtghZ A|ĥ$LMf>=g*fheyf?ikL'v,?>?{| A^}4ޘ8r:6pD,KD,MM?̫WmDZ[{=Lpw"mV -#ɉAt&:Ye,w7\@0DiYY$2rQD0It\ҹ\쌴ȼݘ)$At&:Ye,w7\@0DiYY$2rQD0It\Q c><ÌQ91&L24 cZ|9Cyx?ik -| -o:rgij"ٕ-v|O$f[V&g.IgRzq{pfmܽSbk86 '#97s,ral=Ï8\ z'8&sw2?gy;^M 2/P!.G\^t?;z<^&^^2^8}E; -yqy5U)27Df~(+g,s$4y9gS' ]Bϻ66 BljcO8\@0_[A~9L7ɌK??·BD:Dg3ҙ%L\jr-Ji!GpD9]>?;#qXNf8hg/13?OnrpSn;+dntYg -&wId"*͏/n^w>ki/a٘r&f+#bܜv"4"ҝGribnrNY\1r9n'2I6iܙ4Ј'\!4w.˘AS3ssvAģ;x҈HwF ɥ+9gGri5 $ueF>YǛ,H4qLƻOwd΃GgKKHjD1XO^O-P&oOl ?pctyqkrIG%Z'z0C㰱JN"vʗyʡronty𳼜݀^㦺aݎ'W_]; |/!Ǐ) c4"ҦK%nBr:.R\:&LԎFrp8V"ڮ}Uh|Cs^5j!mXn9氳mǫ̋[&1s~ƹ  3th&'3~"WD>e'bN].Be'bN].B ,\di3I$\v𖮷r;\^]?1r|(1QaէV| ::v2}/M|}v~b8v|et9?@x0EC1c:~LRg8ЎO~/7q(hivpko>YsM˫F}=^P^\^b~ub˳/[8K;+K*_+|hXNM7rˡ_ -mҗ5};&W2srj9g|Œ/Ltӧy8̡ rQ/ӑir9xe%|g]og!-Alvvz9 K2M2Km6/|yeG^?lL} !\1__""o$2+Ks^7A~z'mM9H^j,Actp:i8zq_啯B[g#nǛj~z-m^f9'c:?ct QYf"Hg';Sv2';xb^Qߕ+$L5wsx@ ecaIX2cNywD e&yf3e'sÌ']I¤Qs'='K  Y]6I4wBM>_ǡ|\$a"$2.˿ShD m?;Y -DoǛLDڼbNmH^z,ۿWiy9z۞q0vehsFl#Dp9=\IDl_o~q\j.l"b4u);&"ҙ̘!H$De,C%41;;<<Df;1̥8^jCO1Μ Hd'\ A @&a~PX&,ܝe,qޡѦz^;`C0o!Gܶ/Njz~1fhmEݶ/dď?W_}=_mk4='1'\9u#*K34),'ehDHg0쇦q"fLGrE6;I$26 Ac`dĜfrQԝFX>,4lfֲ\T#I<ƙ1wڙۣ7IWɶm۶m۶m۶m۶| Y3mYŒI1,$qn&2E& 3f/r2Im"D@kȒDg=Z6h':I&I$a2%sG3y"BK0c6YI<LdޕLf^e0?Dy&yr%:/"%7 s޶m۶m۶m۶m=> OYd1wzt@ 63&βDLvh6%2HIbЈ鼃MDf$aehDdq9#=g-KKqf1AL睻]3DMD猴I,ͩ;,EL"sX&"4b:`mEc ?-Z^K;x{~gq竷m۶m۶m۶mr%b_|pYADdFei0٣}rXd3sYOYYvx2 Fdyr,Hμ+eel2I=ىɌ$a"G"fdmi,5 $d"*K3f&<zr& z՗m۶m۶m۶m۶ws/?o3ET9fYٟШ@xKAMX͏o:#.E%Ad,aF i,#݉@p7hL64웈G\L6dFug#P] -hMDbn~|$Сq),&KdS ߾}H$m۶m۶m۶m۶ϯ_|2NtY41)KYaYYvxu*NdH5iYzQŒI"1$: =uGD@#"m"hIJ\KCODue''\|n\D].Ys6Ie%H$2i=w޽Ͼk?-k>m۶m۶m۶m۶nǿ?|WO>ts8 ]6lp f>siQSwhrN.eyre8isN&LDcF:QYMDhf3ЈD.E6MD^i3f4tu( ͌; 4Fd9' fͲk2Ҧ7=4y'}w?0m۶m۶m۶m۶߉/۷?_mqH<DYe0ҌA<+tVX"/i }1A@ I"ƔMknξSwh&b h"eI#F¬K3jbDYYӲc8ȦIyG\Aozꫯ_~m۶m۶m۶m{pv< ~iW[:up^g 3&bM1eǤ].IŒ$L0#m>RfY'\ qW/jD"tey̲D ̉YflgT1l"fMĢbʎI#\"i%:I,aF|ĥͲO^Ԉ.E7@o ߿?}yyom۶m۶m۶m۶܋믿ly'mip&%ltP1 Wc \j"ΔK眺$$LiƲ,+LgdeY&,Z.겱x@0,9`3t3pOKR1w\:ԝ'&aҨdNsg6ϻ-?/a۶m۶m۶m۶mz\ݻwN8]㼍%D:ģ.B,9'I#,˲fh̦K8UssvdgDfef'Ns&a%"4"ҙe YYf%"ҙ$Јpb9$LaY56C`6] -ę}o #;D,/?\-;zzDo۶m۶m۶m۶m믿O~eW 'm3W` 3f)W0I6Ӳ,#$zD' 4 4s,˚Kzas& XK.KL0AZW` 3f)W0I6Ӳ,#$zD' 4 4s,˚Kzas&{O>{Im۶m۶m۶m۶v?;W㌍A8sHw"v٤&aA[D He&Kyf$Lα_D 1QI̹8 Ј'\qW/j,ND.4$4h 0 d9#b6$94Q.~|n޶m۶m۶m۶m8 TrMryguj.& $ѹX6"bN&lDeei0$2IY6i s }W.,Ke[ M¤A[0e2m0>OesY.r@ d.l"~;LDYV& A"Ĝeix w_mn۶m۶m۶m۶m?o߾uj˜E63i,>0}ҙ4HgF%d"tS7h}sNbβD ItN& & 3t蘍%,I4ЈŲXd3~3 3 ItfhDY"*Nf BG1u&aG<$,KDy_z@m۶m۶m۶m۶ޜq_~O?'mqsL3i5/H0Ig7+K3ҙ1;zsYN"dDfh,yDLvHd~!"mV$LuY - ҙ4~I$̳웕̘ =ٹ|Qv,d'IcI»o޼wvoIZn۶m۶m۶m۶mqZꫯigu54Y⮻ݜ\A"34"ҙe@Z$aե(H-W23m"6Ie6?R."43wFt98@u+ HdFD:, WYY$̺\{}~2ɛm۶m۶m۶mp*v]חZ?_mNfsFԲ|B($2#mF 3b6i0\geyf?tY"$LȬ,3fHg.l^d$aNC#f "DeĜ,q< -34H424Aeh~$YfY] yvM۷Y^m۶m۶m۶m۶n竿>ݻwo޼q'gr̜1C3e9 -ND̾Whά.g  #m2c I$Y2MKD';$:ciDQWhQ]\ݜzD'"f+4HgV3e@dhБ61AFՋf;[:M~+'ٶm۶m۶m۶mn?Ŝϝ9d"'y$a0CFe軖4CȤ~cZ6S6;i6C#Q]6h@,l%Zv,#m"-3cN&LW$2I$Lf ҙ$2+KI QZ. M"Ƣi2sLA (KDu٠=Y4*;]|w}ȶm۶m۶m۶m? r޼y "DLv&i:&Ĝ$GK|n%b0C/Itf,gdet٨ A0cKfhDy2';4';g4$L34J|mK qm۶m۶m۶m۶*竝qZW=_dN8SYf D̎,xȬ,3kYlf9sُ: #;&Ov"ĜY);&DgeID\3c6YfV fe&@2盉2e|fs>:HЋ9;̼߄yoGq;m۶m۶m۶m۶̌S4{#zLYDG\D&]tH$E63';$a2Xdiee9B&  Dee$a%Kd"5AM,K"#.v"A\:gM"Kd0@,l4˲\ng矛ȶm۶m۶m۶m۟|7|g9_]9c.lFzNbnj 3tYFLE3Nd圑62fGvΓw;Y% A"3ҝ4\,36IdXد.Zӓj^gvٌf #g%"ҝ3*9#me̎' v",EFg~O!q.۶m۶m۶m۶m~IW%9I3&);&LD3C#"@ @ܕ2C>;!:4,+LKdD&aFhDۜ99˾vcX&I#n%N6IdN1Id""L`\:yСeYYf"X"D'"4 31ol/z_Nm۶m۶m۶m۶s5?/y;9 H/M9uG dg;cFD efY"#;g:̻zQ@Բ$;HБ6I#Sv26,9eD|&机#SvLb3͝XN1#m"2,Б\D@@O睳y71oh8_d}7?joy'ܶm۶m۶m۶mrpqYv~8C"ީ zC"QYf`vdgSvrihDeywȬ.7n -f ef2ҝg?Ge'%vHy}iqf?4̳y^d34DfLDeIّeN1w7˥I"l,{Bx7ZNV?[ςn۶m۶m۶m۶mW/?Cy'vLzp.WcV1-;Y'3B/l"hшE63C#Hd\3(KwR3& \:'̘}+d34wҙNd'$2e".0p);fu)Ӳy2#&FXd334Dfe:,qW.5C/l0ϼw̼{>NVv۶m۶m۶m۶m*h̹yq.4CeY"DD:%2l6FXF:,=R҈34he1uG0C#B#H̹E˒3KhfDe1˲,DY""n6He#,#YўQsC`ię}]x͛7=Y8Ye۶m۶m۶m۶myyyr '|Aw%"4brKt01n>\9̲D bve3БΌX"t"Kde]f`O6/jHciDME& tfY"B#̬.gD' #˕,K"fW63̘%bN'w-}7OάWo۶m۶m۶m۶i}7wE= $&; eIXƔLgȤA$Y9˄>QYQ] -N'K]H B%,Ө옱4bNα_4jٱЈeYoL$щqLMe8#޲pڻXęjĶm۶m۶m۶m 1vNYONHgFڤQ1C Kd"HtD d%l?겉D0eY]6D<2/=wX""m褁FLv a""iFe ;3, I"Y&bCAfeӒYk.gi/14wډ$2CWs\.]64y'澎I 6C?rM&oVnw?믿>Sm۶m۶m۶mW_J|uj\!tY^ّeeu٘YYIcf&,n7lG^s^A;IbN,hĜ#2 fhB #;,1e3ƔLDYnL41f -mzޥ߾}k:Ym:Ym[9s޶m۶m۶m۶msry圏3?B6h7eyB?K;K@ܕ2dDd$Lf&a-YYh'N"&FAЈ,MC63CG;Ɍ a^v]w(#](sN&9IdNv,IdFhٲe6e_mO&Bo۶m۶m۶m۶mf d'ҝ4f h(4Dp8/t&Y̝tԝF,X6-It'3!*Ls0Ig2Df9uGNh34\QYf"8GЈHɌHwF:AŒ,KN:s㭉+֓՟g@^דb۶m۶m۶m۶m^?~,i6D& 4Ј$LDfhęE7a@Tg˾eM &ĜSv:CW2 ad ItfhD;d3423t3Aڌ$LKdք;UOVu{}z۶m۶m۶m۶/iO{!D@S'Wpz[ܶm۶m۶m۶md:׿NY:#2<;wQɤ1$a"4*;wQs qgO6ϓY]#lL@ *̘e;ϺΜ4 34&iRTg4*;4&$LFe'.!j.ә4\yvT9Y-ķ~?dxsCl۶m۶m۶m۶m9?×_~)pȹ Nѥ@<+'\m^C% 3uA|$W#rd,1;3'L'Wpd,SwDf1{O"q̲D 4.\bN"e&32t웡E79:n6ГHyW/dXtS I,K4wfӥ@ $2cv]Y';L&%vH@.С{1ۑ3Ղw?Ml۶m۶m۶m۶muT?l(>2C#κ`6i<\K@T&LbZvl,.f3Ye,I4MFeǬ.b:Lّ̻\@p7"I SvЈ7ehO,R I".&$挜6q'/}Vdz۶m۶m۶m۶m_/_N -9;$,BT)-~BhDY.FefY]$YYf(;Dhsa5II42&ٵlfYYv"L,34rgB#r175.32thDf&2FA B0cL5ގ~?믿ο oٮmm.۶m۶m۶m8s^>vS]UUUUUUUojkllPfM3c=NO6Q3֏v$̝en2c" &u8wR GÑ㒄9G3W>,3t36I$Lֈ krqzY ~F$a/ss1-„T;~̏Ull?lUUUUUUUUed#dYYiK$p4G9u7:X{{341G陱6$LbGI$2C##bO"M&u0IGsFN8s3fwɣqz:H_DʽD昣XG&p4?v^Q}v~[5eUUUUUUUU]=>>~UX|R # ˥L1rI"鄉tfh\ -KDMCG G&H1LHEЈi 4&ҙL#1r4Ic=x<]\<c&D& Ј$X3C>rL6cZSM ~1ǏM_XUUUUUUUUcYW>|;rPBX4D  9 skwM":CGD X$a0cZG7]i:4b8FĴ]fi3' A"sqb@7.c:sh"$̑cfnz5L i`"aLvWo;TUUUUUUUUr>O4'>VB Ku|<Df3"4A `CpD0AzqiDX'5C69 @ CD # 33IdޙD&bhƮCGEs5$2#yfhG -}cĚAϟ?:VUUUUUUUU˶ ʦY"͢i%L7$a2Ǭ*7L<'03͘`bY\&3^~& D\D ؅kX; vR xWs/;.@fb\t& X?fmWnV `9OŻw|*~MUUUUUUUUJ3A#L˄`MdMDF HgL̑@0`8ެf&`iAsId8"WoVnXL M9fr\&LhDh&h&"4b8F:sN&Hg"Lܘq0?^Z|͟B}͟K說qr+#21]dG*73# ~A "m^! :vtU"ar:4 Df1v#b@ DFı׉@ F"s8"V9IdLs| i*!Vn"CgS=yf6^l]_aQX.VOCfh&5Y#G3{jn:M jbg.`"r kz8С9 -&Fn1G\ }&aQ#Gs?8cn&v31rcD V9 -pBuXSb3Ǐ?rzrr1j',p\ea5h_{ MD\Lcwc&"q;$9rdbAfZo7$vG pDǵ2u""mӉu9 -̣~24 qU2cwe#uLYiM_aM}sscST6ꪪZW.ue=z&*DDX' s+:ҙμ*$8:>HL3qȍ@D:suaw8CDZ;gHg"H;.N.MLu0PH#?̕?"CT37oTqdS}UUUUUUUUUcVF_~} '+)v;Ͼ5&Ϝo߬l.ͱ5b8"8k3Gq֏y˕;L#k\HgƮI@ #ሸC1*7O Un̑c& s57"bgw5b8"8k3Gq֏y˕w̕K8?+Lkjs|1~TtS]UUUUUUUUNAy {v˼C$f8-$2w\"HC*fhc=jޑ@9 -O@ Gs!s丛ለ:#=5B#Vs$1 9 =vǕHqZ HdD0C5b{+34 jz8Q55ijv }˚&\. 씬46QTTY^nqpDM&`3&b>~5?-iCeZ^^k6`gGprL8Z&L"ҙc4yaa6I\\D\2C#"@ +7:^Gd sh& 3#b8F\ s&k_7cm2xa;3 `G[W8QNSEq>/MUUUUUUUUU,읾}* .Ďr?.2cpD쎑DܬrOЫܘLxdmᒄAgkO:Lwѫ\͍@Ȍ bgԈP& q$LvkHgGr쎑VANvڍM jlގz~ݝu~7 êEM>D} Xƌ 'Gh"K&b&"ҙ#7$a"$<va,} G2qoO`g.'Fn$2wv9fƮC3A:sf&&btKWͣ? 4"/M$L60Jh{ +? -7~沭EfUUUUUUUUտe ,I* k4=34 4D& q{s8r t蘞 @DڼCz㹣Vghhɷ9 Lc#U&bl& 3 >H $L@ VnHϼCW1CFFD:34 4D&bmq{s87th&V Ȃz]_I}-}+;j8\6x?';()3ll,pc6՞qObsGuqrc"VnHD9$5hp բEMuwww~-~ċpc!*7ljmRjQ[_[6Z_k|m~ڑ*--3\|>r8"f2&bc$K9r\瘣@p*7@4b&=3F+ yAW9/o[ooo o DZ ‚ڼ\.4"֮3Mey5,̈́͛.f"Br:Ƒ:Icwdn*7#k_0Iq8m[zGF{쫽.ekOD~n13G|nW&$vw2 mGL&q80eb&"hn::(4մ >i1Cp?]./%k+[P.Z6oVv+3C#&ʣWZuU9f218&a7ϳBѲka1ܟ6Y_HNҖ _bv{{kݦUPE > UfH{sx̑չrDhI;s)1.gu=/{ ]UUUUUUUUge5e6iۿb='Gyu$2wM1-Ēu5u%]^5pm!~afy6F)Ƨ7`#bs$aG&< <] t4C{nj9F4//(YMs~4>򲬦MUUUUUUUUUqvY\w}~DYZhAY/'Hg܄&r"'ʣ$2z\6sL#O'S-մGx2c߀,߶fl%vIl Iv65}+7y̰&O)jO2hvxiFkrz `VUUUUUUUU Xvـ L,QS\E0Ic&q<"Vnb&bGzu0`"bj&^Xyq6M#O,-HmJLO*;ٸw}b;\w8zT$̘Nd\>?#n|"Ĭ3,BW03kx?Apq^/=TUUUUUUUUJ6;~:a"HqDDzL\"HLr+71=e'6OkXӶ&j1|ѼCއGsGUnL"O`57>3N>ZayrOOtc}&.5Mfh&.}|>=.UUUUUUUUUU#|ь*–=b57?dD>DD:y+cw$73chʳ𭁗/_:>>>z9_ЬF/ucq̕kGWoxޤMv=ũ%ij*Ȗu829z80CGz&D0#"\7krag61y~%ȩt\~wӗ/_."hEĮUyȌi db LIs8&**"oWqھ`VUUUUUUUUURFH5VxlYCq8is冄i̱w&a*eG34~xr~U#߿~=źƖux97"vr` Uy(sh"L\9 -N.3#t&bU>ߟ6^zU-g28M\A\51DŽiDfM&88}Txz=ɞׯ_}^|U]~/_#/_tojnHd09cgLD?pC;.=cf W#_~QUUUUUUUUU˲)~[Q~ZV@.s8֣Frs"s䘉pIDp5HdzJu^ ]UUUUUUUUU ߛW,W-Z3wrk:ܘ$L$2Q3c:a1sL&րׯ_EX"O޾}k{T+kWgf:=ck1fgFڌU.3GL0-SpfE؎ƴ۬"kri# ǣh*7L\G3Y]$LDh<˗/߼y߿o_}zPG֘ޅh_{ޯEЈЈ^ǫs8""m g}_lbXbzLvH$f":ҙ1̱;>'9LW{וBTUUUUUUUUUjMI|"6NUWv;s)$2G=Ks'&:ҙWMfh&14/i)yi~~/Zz(4x:>:7i3thp :&;s8"VY'x>3yиǪ=P{QQ7۷V/vf6L00#m9N 7fb8^̑13>("ҙϪ7_yiemEҜ~1߿VlSUC۵"L 7$2Јn̑c&"thLcMfM :tL3&DpSUUUUUUUUUUǧ/Za:֣F B#Bs.2Iduh1|LhL<+߶~Qϟ?/O7UUUUUUUUUUcXj>~h=j&6cwId zIx u&zh0cZ0AzҰOY[V9/(tUUUUUUUUUߕ-r9ϧ͇lMNmPrA֭3$i q8snLمI"h&3Id"+7xV[A<ׯM7ڬ.UUUUUUUUU^vnY><<ݽ{.[SjT*®u8"笏=:4"4=1q994m+/_z߾} ߿h^ y B#|紹l UUUUUUUUU٪Y_dmAjMݩ%a̕fhva v˵qG$2cqe:8r?}_WL|>_녨?=4&By ̪BE~z{{oJXZ3YceHnL`U3|q"=O,l!_4OㄵshO{~7 ^η>}OUUUUUUUUU/l+GF߽{gYjk-QaȍIb&h:4biD&IdܰLv13fZGl^RSQm%Ê5\@\g s>Ç‹v5^`UUUUUUUUUrkg[8YYnEXgM3C#+7Ј$fGc2գc =rFXY;www6و_,.˩OHq~ps>OoW3Cp6-߼y# Ц0e{]pVyYPXٚEֶ4X1C#Ǚ;4DLБΌYitĒ¾4KQ{T;uqWz6:/ <3&|x{OO;xonn}ͲGEدqLMcfhj9v#dC%aZf^Ծt^O>YڎZzܜŵ<:fW%0/}ɧe {<9vȞO9>ԾpuA=lr=>??۷o|fUUUUUUUUUXawXYWFVsUD3#m9N߬pj+7L69fsn1HgE5y-EͰMYkŲֳe{)/l1LHseqZ~jڊ0=-O7"7l|b#mD%ZFߒ'Z6|z٦"Xwr9s8^{(Ǚ6$f3C#B$IŒt&3Cf@0 ^ۯbw2Y\Kf=퇮o9o m\A7BЗYC?Դմ˷n<98zl=cSg0{&&9G3`];@UUUUUUUUU+6J۷o®N/+k9;:4+7Ј$fu"HdFDs>D& 4"Ҧ'9txEUck~O57ӶF\6d &va"isWx~:zrhyG_Ԣǰ6=N{gӅoI+̛c=j>? >+g]-ݦ9,,DXa:\^ 4 *HA"M&"$a"B0#9cxgڎf1RY,ij}vYbk rF6ڌ˶mf0q9yoDħi3Ƨwin,庚;1S'1 p8r.ЈЈWyq2X+L=h3&lkbRk'L U__G,m-]1ˍFRFp^\柜_6{d|JS5/Ug2Op?hD J-/Wq_UUUUUUUUUݪFqdYgݡMD\R#B#z2@#u3=+xQ̰EdvXŖU^b>JM3Zpo1ӧi_ʥ/=yBx|1ϵߛOe_-bQUUUUUUUUUs.˗/YYaMgbeg}^}`m({DczfhDL'։@0sܛ r {cG{"2H|4w\bα;zw\"B#B9L|:kyWUUUUUUUUտ5|>?l-->0/pq: .2 "417ߕ$a&@ 1ȌIŒI"̑Lϙg_=?_QUUUUUUUUU ?~\~1cVh;pDf"r4C.13498ʽ:7Ñ5"1]^2DjшDrW?`Lg1\ҼCÑ ezO`WľTUUUUUUUUUaQ+kϟ?[͉C'f{ԑpjJY1r4Lr5ЈЈЈHHg217\{ޛna UUUUUUUUUek~uua$f0#N&q.L2u  aFz:4bhG1Gz&kQfiis\=fAg"@#BǺuo)r_|ŋ }垉@z8FH3U׉=r4I1-H# k LCv79sfh01LWy(z810#9c;ϧk߶ m^X961^D0ADFhD ]dq̽q r3h"B^&3v.LLG Hw2X2s8"b 7I?ϧdeǏ~j݋/lNϴ Gse^jđ{bx iD&LO0-Hd"$̱;27u :4n؅Ib&]L\GΝ\f]n7\.oq˝N+O>{իW.NGcH6`+7LzLg>FǵG.׹1ro"Vn$L Xzw0 ̑cf\퉝7~8/_|>UUUUUUUUU՟߾}7o_<.kE{3"7$̣^e869Un̫~P^ͽ@>s1ibf8"V:k#B#Bgooo竫\\.Z[YZuehk aM&"ҙc= 2$2;.d3Mh "8r]$L\7ӉLML Dx3f~ZϾTUUUUUUUUU.ˏ?㣉۷o__uָC H %HGI+7#9cZ Ǒ.c s8F GDM3+7СG3;sX'Lfh&H$D\N~nF =rWWUUUUUUUUv.[뇇/_ee==Ӗo8"W82#Gs>&&i3G3I1d p\4E& \A*eG5Hc& 1jߦ1}צꪪ[ttM~7޽3gem_-߰ rc\azg.fh9IId?x#mQ͑$Hd:th\ƌt&A$asLd"B&9rDx{? [\C+V? ._~m'~7LlpD$LDhDhD#6:X k3GСId0#I"p 9fȍi\&2zLg1\ҼC-6WWUUUUUUUUEtVwww6_lZXY 7X7yT p-;&a2HdfLcN.Mʍis5ro" mNvΕ13v r@DDxmUUUUUUUUUak}ǏM~753 qy{sehD$2IdX' 3&k01Ĵ]0nXcǵ XM"34 34"4L̑c&1cZD$aF:sg.w&}}uƾ70ƧO޿/ig'L#Gs8>ǣM*73#桉L&V.v t&\N# A"340;d1-"m1y}fUUUUUUUUUׅ>Z j3 ԡW>,ss80p =r4c3chЈ#L6c3Iܘk̝ v昉=r4I1-H =C.ՎW?>>󫪪֎&{_~1 E՟5 Drc"M&L&!AŒIb& pD Hdd#7I$a0$Lqf䘉a3b]:oڛ⬬?~΄>y׳i1`"C#B^nc:aXjn&V.C#B$acpDD0hQMvq&b 3wquF:s% D\Nxsw};$6%~:,փLz+7;K7#$$f s8;y$15#z冉pD9 -DL՞db'Cq8i}/ѷfĻl yAk7?6߾}kZYhYs\q~8 aڱޤg1rN&桉qw7$̣^jz^#ҙ$̝\'"&GAŒﳘo޼?ϗ[eUUUUUUUUU杶t:ߟLhm,CcUHD;Ckw0$8vzUPD0&a0qmIܘЈq&xsU>,331-wUȾ:sᄎʬ~ქׯZ 1;C:pLvNDhD>r#:4=$f޹zz#=s57?cHGI+7#HM7j޴? xWUUUUUUUUU_q~ & @MmѦ! Mb&"4&Hsg.&6C8DG $2c=Ыf:a2sL:ҙs>&QgFjs1?{l|Ťꪪ:|>o߮0VоBܘlM#G3t깛1G:sh&X'1v&aiM& :t31v`I$a&I"33nxW]]UUUUUUUUUu.i[=>>U~AȒж$ah"B#Fɣf&Fnбvs$sg.3CGWFfUBF\HX{*fl&yz[|ꪪr]y ߾}7odk=l 6T 3k H#u"8ZCDF BGDD:qa.'<4^FĴ@ͽ}<4ޯncbcӯ_msUUUUUUUUUúﴱJիW/_|ᬬ3# ƙC#HdF\!aFzLΌt&ML'IŒzg.9CDZ3Id"VF&I":I671M:=ey{{:?\u=>>[gk-6?D [d&b'$LĎK"40f<8"14p9(B1tL'f 13pC;.݇LorxjoHj}˗O>ekmU&[kBN4]D`kii#Јӂ5&*rCb&X{DDz&+7G3Idf<#o}5߾}˲ZWUUUUUUUUߒ5ZZ[ Z;bkmz|Ev+2D&" b57k0i kz6Ckc&$rCb$LLyh$aG&{v -G|$7>|`'鲺oϾ:lickmmŵ#[a'Un@̑c&  cw8vGfi341W>$aXgLOcL'L9rq!)lm|( fgڱެnGI1흠g7DLۦZxg"a+xٜ6www?~|V5V֏62tXZtDıgH6Y#Ѽj:jE蕛8(BG:sQܬ Bz &1yfSwZ6߷_euUUUUUUUUU,M g~m֖ţ $Fh"4WssDf3} 8ÑMWy4t>F8"1/iaMM ?SmSmy~rއUUUUUUUUU+'D\.C[OO[3~Imi-9+ý\=w9rɥi@9&L3Chz\&2s\Ne 1f~w=|Ǐ沭v -|>Z?<W7星rҢ*1#Y#s<]1D&+7FĴ<:3ƑL#7x3{TϦ :ϗś-=='v]( isWn"m210zGX*IdqDF&F0^#y쨱~~8ZS[S|6ñ1t7e5xt6-`ңlVͫPs=Y-UUUUUUUUUU9jbJK,&NkODXb5hl\uc&#7C3f &A$a^!` 3G#Ǚ45"iG/Gfv8z"Mദ6QUUUUUUUUU糟\.ŵk۷o߼ycիWf֡VlM3MY/5ʚ$2Xv&34"4$ aD1A0I %^5: -鬩}Bp\N tUUUUUUUUU՟oKNO,3<߿owmq5vXhwMv v$^':v"1I<ʽ.3&@33ʚ:/JԷfdMmG}>^.8fi5זY\g>|0Eݵŵ&;U,Z3L3V$UnQ 4hDWn؅ aZGfxVܚjOxy·4?6zymyf)\.'Y~y!o/5uV*`3+7$q7бvD .Јz OTNGÚfp/iMk|zQfUUUUUUUUU)Kr6v_ӧO;CSY&V{װ]΍tz*dC&? 4' ah'7''}~ -YYhݴ9ff<AbXLK >m_6}i@_&d_{<>O']Y˶δV`k,MKlK]];^}/` a+mI"9f2_@Xś|9i_ׯ_}ǧTp~YUUUUUUUUUU"Vec+ i!Z%. -lKla6*;tdulbx ȿԿ ǍБ}%k$OTUUUUUUUUUU d#=ZKl]{l}9m,Ƒ83mu9"/W}S5}^zWmUUUUUUUUUUv8e,{M{l`N;a1YhO0do=r韐2db>|r9m& ^=6&䴱[jEhOOi^deLWUUUUUUUUUߒ%0v/bٌOOБ6X]_пqcG9gCa -endstream -endobj - -10 0 obj - 231359 -endobj - -11 0 obj - << /ExtGState << /E1 << /SMask << /Type /Mask - /G 1 0 R - /S /Alpha - >> - /Type /ExtGState - >> >> - /XObject << /X2 5 0 R - /X1 9 0 R - >> - >> -endobj - -12 0 obj - << /Length 13 0 R >> -stream -/DeviceRGB CS -/DeviceRGB cs -q -968.000000 0.000000 -0.000000 251.184509 0.000000 0.000000 cm -/X1 Do -Q -q -/E1 gs -/X2 Do -Q - -endstream -endobj - -13 0 obj - 119 -endobj - -14 0 obj - << /Annots [] - /Type /Page - /MediaBox [ 0.000000 0.000000 968.000000 252.000000 ] - /Resources 11 0 R - /Contents 12 0 R - /Parent 15 0 R - >> -endobj - -15 0 obj - << /Kids [ 14 0 R ] - /Count 1 - /Type /Pages - >> -endobj - -16 0 obj - << /Pages 15 0 R - /Type /Catalog - >> -endobj - -xref -0 17 -0000000000 65535 f -0000000010 00000 n -0000000497 00000 n -0000000519 00000 n -0000001042 00000 n -0000001064 00000 n -0000012410 00000 n -0000012434 00000 n -0000150121 00000 n -0000150146 00000 n -0000381740 00000 n -0000381766 00000 n -0000382106 00000 n -0000382283 00000 n -0000382306 00000 n -0000382485 00000 n -0000382561 00000 n -trailer -<< /ID [ (some) (id) ] - /Root 16 0 R - /Size 17 ->> -startxref -382622 -%%EOF \ No newline at end of file diff --git a/MastodonSDK/Sources/MastodonAsset/Generated/Assets.swift b/MastodonSDK/Sources/MastodonAsset/Generated/Assets.swift index f44e0ca7a..155227685 100644 --- a/MastodonSDK/Sources/MastodonAsset/Generated/Assets.swift +++ b/MastodonSDK/Sources/MastodonAsset/Generated/Assets.swift @@ -210,7 +210,6 @@ public enum Asset { public static let elephantThreeOnGrassWithTreeTwo = ImageAsset(name: "Scene/Welcome/illustration/elephant.three.on.grass.with.tree.two") } public static let mastodonLogo = ImageAsset(name: "Scene/Welcome/mastodon.logo") - public static let mastodonLogoLarge = ImageAsset(name: "Scene/Welcome/mastodon.logo.large") public static let signInButtonBackground = ColorAsset(name: "Scene/Welcome/sign.in.button.background") } } From 35544b30669e39618755e5e0074baf708896c980 Mon Sep 17 00:00:00 2001 From: CMK Date: Wed, 16 Nov 2022 18:45:51 +0800 Subject: [PATCH 499/598] fix: aspect ratio --- Mastodon/Scene/Onboarding/Welcome/WelcomeViewController.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mastodon/Scene/Onboarding/Welcome/WelcomeViewController.swift b/Mastodon/Scene/Onboarding/Welcome/WelcomeViewController.swift index 5a9af3dd9..32696d197 100644 --- a/Mastodon/Scene/Onboarding/Welcome/WelcomeViewController.swift +++ b/Mastodon/Scene/Onboarding/Welcome/WelcomeViewController.swift @@ -243,7 +243,7 @@ extension WelcomeViewController { logoImageView.topAnchor.constraint(equalTo: view.layoutMarginsGuide.topAnchor), logoImageView.leadingAnchor.constraint(equalTo: view.readableContentGuide.leadingAnchor, constant: 35), view.readableContentGuide.trailingAnchor.constraint(equalTo: logoImageView.trailingAnchor, constant: 35), - logoImageView.heightAnchor.constraint(equalTo: logoImageView.widthAnchor, multiplier: 65.4/265.1), + logoImageView.heightAnchor.constraint(equalTo: logoImageView.widthAnchor, multiplier: 75.0/269.0), ]) logoImageView.setContentHuggingPriority(.defaultHigh, for: .vertical) } From ea7972c78953b287c77043519442339b771f94b0 Mon Sep 17 00:00:00 2001 From: CMK Date: Wed, 16 Nov 2022 19:06:09 +0800 Subject: [PATCH 500/598] chore: update i18n resources --- .../xcschemes/xcschememanagement.plist | 4 +-- .../Resources/ar.lproj/Localizable.strings | 29 ++++++++++++------- .../ar.lproj/Localizable.stringsdict | 24 +++++++++++++++ .../Resources/ca.lproj/Localizable.strings | 23 ++++++++++----- .../ca.lproj/Localizable.stringsdict | 16 ++++++++++ .../Resources/ckb.lproj/Localizable.strings | 23 ++++++++++----- .../ckb.lproj/Localizable.stringsdict | 16 ++++++++++ .../Resources/de.lproj/Localizable.strings | 21 ++++++++++---- .../de.lproj/Localizable.stringsdict | 16 ++++++++++ .../Resources/en.lproj/Localizable.strings | 26 ++++++++++------- .../Resources/es.lproj/Localizable.strings | 23 ++++++++++----- .../es.lproj/Localizable.stringsdict | 16 ++++++++++ .../Resources/eu.lproj/Localizable.strings | 23 ++++++++++----- .../eu.lproj/Localizable.stringsdict | 16 ++++++++++ .../Resources/fi.lproj/Localizable.strings | 23 ++++++++++----- .../fi.lproj/Localizable.stringsdict | 16 ++++++++++ .../Resources/fr.lproj/Localizable.strings | 29 ++++++++++++------- .../fr.lproj/Localizable.stringsdict | 16 ++++++++++ .../Resources/gd.lproj/Localizable.strings | 23 ++++++++++----- .../gd.lproj/Localizable.stringsdict | 20 +++++++++++++ .../Resources/gl.lproj/Localizable.strings | 21 ++++++++++---- .../gl.lproj/Localizable.stringsdict | 16 ++++++++++ .../Resources/it.lproj/Localizable.strings | 19 ++++++++---- .../it.lproj/Localizable.stringsdict | 16 ++++++++++ .../Resources/ja.lproj/Localizable.strings | 23 ++++++++++----- .../ja.lproj/Localizable.stringsdict | 14 +++++++++ .../Resources/kab.lproj/Localizable.strings | 23 ++++++++++----- .../kab.lproj/Localizable.stringsdict | 16 ++++++++++ .../Resources/ku.lproj/Localizable.strings | 21 ++++++++++---- .../ku.lproj/Localizable.stringsdict | 16 ++++++++++ .../Resources/nl.lproj/Localizable.strings | 23 ++++++++++----- .../nl.lproj/Localizable.stringsdict | 16 ++++++++++ .../Resources/ru.lproj/Localizable.strings | 23 ++++++++++----- .../ru.lproj/Localizable.stringsdict | 20 +++++++++++++ .../Resources/sv.lproj/Localizable.strings | 19 ++++++++---- .../sv.lproj/Localizable.stringsdict | 16 ++++++++++ .../Resources/th.lproj/Localizable.strings | 29 ++++++++++++------- .../th.lproj/Localizable.stringsdict | 14 +++++++++ .../Resources/tr.lproj/Localizable.strings | 23 ++++++++++----- .../tr.lproj/Localizable.stringsdict | 16 ++++++++++ .../Resources/vi.lproj/Localizable.strings | 27 +++++++++++------ .../vi.lproj/Localizable.stringsdict | 14 +++++++++ .../zh-Hans.lproj/Localizable.strings | 23 ++++++++++----- .../zh-Hans.lproj/Localizable.stringsdict | 14 +++++++++ .../zh-Hant.lproj/Localizable.strings | 29 ++++++++++++------- .../zh-Hant.lproj/Localizable.stringsdict | 14 +++++++++ 46 files changed, 734 insertions(+), 174 deletions(-) diff --git a/Mastodon.xcodeproj/xcuserdata/mainasuk.xcuserdatad/xcschemes/xcschememanagement.plist b/Mastodon.xcodeproj/xcuserdata/mainasuk.xcuserdatad/xcschemes/xcschememanagement.plist index 78a3a9e70..b2b5b312a 100644 --- a/Mastodon.xcodeproj/xcuserdata/mainasuk.xcuserdatad/xcschemes/xcschememanagement.plist +++ b/Mastodon.xcodeproj/xcuserdata/mainasuk.xcuserdatad/xcschemes/xcschememanagement.plist @@ -117,12 +117,12 @@ NotificationService.xcscheme_^#shared#^_ orderHint - 16 + 17 ShareActionExtension.xcscheme_^#shared#^_ orderHint - 17 + 16 SuppressBuildableAutocreation diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/ar.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/ar.lproj/Localizable.strings index 943d56a9f..17d0569c7 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/ar.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/ar.lproj/Localizable.strings @@ -55,8 +55,8 @@ "Common.Controls.Actions.Share" = "المُشارك"; "Common.Controls.Actions.SharePost" = "مشارك المنشور"; "Common.Controls.Actions.ShareUser" = "مُشارَكَةُ %@"; -"Common.Controls.Actions.SignIn" = "تسجيل الدخول"; -"Common.Controls.Actions.SignUp" = "إنشاء حِساب"; +"Common.Controls.Actions.SignIn" = "تسجيلُ الدخول"; +"Common.Controls.Actions.SignUp" = "Create account"; "Common.Controls.Actions.Skip" = "تخطي"; "Common.Controls.Actions.TakePhoto" = "اِلتِقاطُ صُورَة"; "Common.Controls.Actions.TryAgain" = "المُحاولة مرة أُخرى"; @@ -161,17 +161,21 @@ "Scene.Compose.Accessibility.CustomEmojiPicker" = "منتقي الرموز التعبيرية المُخصَّص"; "Scene.Compose.Accessibility.DisableContentWarning" = "تعطيل تحذير المُحتَوى"; "Scene.Compose.Accessibility.EnableContentWarning" = "تفعيل تحذير المُحتَوى"; +"Scene.Compose.Accessibility.PostOptions" = "Post Options"; "Scene.Compose.Accessibility.PostVisibilityMenu" = "قائمة ظهور المنشور"; +"Scene.Compose.Accessibility.PostingAs" = "نَشر كَـ %@"; "Scene.Compose.Accessibility.RemovePoll" = "إزالة الاستطلاع"; "Scene.Compose.Attachment.AttachmentBroken" = "هذا ال%@ مُعطَّل ويتعذَّرُ رفعُه إلى ماستودون."; -"Scene.Compose.Attachment.AttachmentTooLarge" = "Attachment too large"; -"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Can not regonize this media attachment"; +"Scene.Compose.Attachment.AttachmentTooLarge" = "المُرفَق كَبيرٌ جِدًّا"; +"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "يتعذَّرُ التعرُّفُ على وسائِطِ هذا المُرفَق"; +"Scene.Compose.Attachment.CompressingState" = "يجري الضغط..."; "Scene.Compose.Attachment.DescriptionPhoto" = "صِف الصورة للمَكفوفين..."; "Scene.Compose.Attachment.DescriptionVideo" = "صِف المقطع المرئي للمَكفوفين..."; -"Scene.Compose.Attachment.LoadFailed" = "Load Failed"; +"Scene.Compose.Attachment.LoadFailed" = "فَشَلَ التَّحميل"; "Scene.Compose.Attachment.Photo" = "صورة"; -"Scene.Compose.Attachment.UploadFailed" = "Upload Failed"; +"Scene.Compose.Attachment.ServerProcessingState" = "مُعالجة الخادم جارِيَة..."; +"Scene.Compose.Attachment.UploadFailed" = "فَشَلَ الرَّفع"; "Scene.Compose.Attachment.Video" = "مقطع مرئي"; "Scene.Compose.AutoComplete.SpaceToAdd" = "انقر على مساحة لإضافتِها"; "Scene.Compose.ComposeAction" = "نَشر"; @@ -192,6 +196,8 @@ "Scene.Compose.Poll.OptionNumber" = "الخيار %ld"; "Scene.Compose.Poll.SevenDays" = "سبعةُ أيام"; "Scene.Compose.Poll.SixHours" = "سِتُّ ساعات"; +"Scene.Compose.Poll.ThePollHasEmptyOption" = "يوجَدُ خِيارٌ فارِغٌ فِي الاِستِطلاع"; +"Scene.Compose.Poll.ThePollIsInvalid" = "الاِستِطلاعُ غيرُ صالِح"; "Scene.Compose.Poll.ThirtyMinutes" = "ثلاثون دقيقة"; "Scene.Compose.Poll.ThreeDays" = "ثلاثةُ أيام"; "Scene.Compose.ReplyingToUser" = "رَدًا على %@"; @@ -234,6 +240,9 @@ "Scene.HomeTimeline.NavigationBarState.Published" = "تمَّ النَّشر!"; "Scene.HomeTimeline.NavigationBarState.Publishing" = "يَجري نَشر المُشارَكَة..."; "Scene.HomeTimeline.Title" = "الرَّئِيسَة"; +"Scene.Login.ServerSearchField.Placeholder" = "Enter URL or search for your server"; +"Scene.Login.Subtitle" = "Log you in on the server you created your account on."; +"Scene.Login.Title" = "Welcome back"; "Scene.Notification.FollowRequest.Accept" = "قَبُول"; "Scene.Notification.FollowRequest.Accepted" = "مَقبُول"; "Scene.Notification.FollowRequest.Reject" = "رَفض"; @@ -261,6 +270,8 @@ "Scene.Profile.Fields.AddRow" = "إضافة صف"; "Scene.Profile.Fields.Placeholder.Content" = "المُحتَوى"; "Scene.Profile.Fields.Placeholder.Label" = "التسمية"; +"Scene.Profile.Fields.Verified.Long" = "تمَّ التَّحقق مِن مِلكية هذا الرابِطِ بِتاريخ %@"; +"Scene.Profile.Fields.Verified.Short" = "تمَّ التَّحقق بِتاريخ %@"; "Scene.Profile.Header.FollowsYou" = "يُتابِعُك"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "تأكيدُ حَظر %@"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "حَظرُ الحِساب"; @@ -393,13 +404,11 @@ "Scene.ServerPicker.EmptyState.BadNetwork" = "حدث خطأٌ ما أثناء تحميل البيانات. تحقَّق من اتصالك بالإنترنت."; "Scene.ServerPicker.EmptyState.FindingServers" = "يجري إيجاد خوادم متوفِّرَة..."; "Scene.ServerPicker.EmptyState.NoResults" = "لا توجد نتائج"; -"Scene.ServerPicker.Input.Placeholder" = "اِبحَث عن خادِم أو انضم إلى آخر خاص بك..."; -"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "اِبحَث فِي الخَوادِم أو أدخِل رابِط"; +"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "Search communities or enter URL"; "Scene.ServerPicker.Label.Category" = "الفئة"; "Scene.ServerPicker.Label.Language" = "اللُّغَة"; "Scene.ServerPicker.Label.Users" = "مُستَخدِم"; -"Scene.ServerPicker.Subtitle" = "اختر مجتمعًا بناءً على اهتماماتك، منطقتك أو يمكنك حتى اختيارُ مجتمعٍ ذي غرضٍ عام."; -"Scene.ServerPicker.SubtitleExtend" = "اختر مجتمعًا بناءً على اهتماماتك، منطقتك أو يمكنك حتى اختيارُ مجتمعٍ ذي غرضٍ عام. تُشغَّل جميعُ المجتمعِ مِن قِبَلِ مُنظمَةٍ أو فردٍ مُستقلٍ تمامًا."; +"Scene.ServerPicker.Subtitle" = "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers."; "Scene.ServerPicker.Title" = "اِختر خادِم، أيًّا مِنهُم."; "Scene.ServerRules.Button.Confirm" = "أنا مُوافِق"; diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/ar.lproj/Localizable.stringsdict b/MastodonSDK/Sources/MastodonLocalization/Resources/ar.lproj/Localizable.stringsdict index 862d98184..91368a4fb 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/ar.lproj/Localizable.stringsdict +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/ar.lproj/Localizable.stringsdict @@ -74,6 +74,30 @@ %ld حَرف + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + %#@character_count@ left + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + zero + لَا حَرف + one + حَرفٌ واحِد + two + حَرفانِ اِثنان + few + %ld characters + many + %ld characters + other + %ld حَرف + + plural.count.followed_by_and_mutual NSStringLocalizedFormatKey diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/ca.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/ca.lproj/Localizable.strings index fca658aef..d8fa6a739 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/ca.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/ca.lproj/Localizable.strings @@ -55,8 +55,8 @@ Comprova la teva connexió a Internet."; "Common.Controls.Actions.Share" = "Comparteix"; "Common.Controls.Actions.SharePost" = "Compartir Publicació"; "Common.Controls.Actions.ShareUser" = "Compartir %@"; -"Common.Controls.Actions.SignIn" = "Iniciar sessió"; -"Common.Controls.Actions.SignUp" = "Registre"; +"Common.Controls.Actions.SignIn" = "Log in"; +"Common.Controls.Actions.SignUp" = "Create account"; "Common.Controls.Actions.Skip" = "Omet"; "Common.Controls.Actions.TakePhoto" = "Fes una foto"; "Common.Controls.Actions.TryAgain" = "Torna a provar"; @@ -161,16 +161,20 @@ El teu perfil els sembla així."; "Scene.Compose.Accessibility.CustomEmojiPicker" = "Selector d'Emoji Personalitzat"; "Scene.Compose.Accessibility.DisableContentWarning" = "Desactiva l'Avís de Contingut"; "Scene.Compose.Accessibility.EnableContentWarning" = "Activa l'Avís de Contingut"; +"Scene.Compose.Accessibility.PostOptions" = "Opcions del tut"; "Scene.Compose.Accessibility.PostVisibilityMenu" = "Menú de Visibilitat de Publicació"; +"Scene.Compose.Accessibility.PostingAs" = "Publicant com a %@"; "Scene.Compose.Accessibility.RemovePoll" = "Eliminar Enquesta"; "Scene.Compose.Attachment.AttachmentBroken" = "Aquest %@ està trencat i no pot ser carregat a Mastodon."; "Scene.Compose.Attachment.AttachmentTooLarge" = "El fitxer adjunt és massa gran"; -"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "No es pot reconèixer l'adjunt multimèdia"; +"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "No es pot reconèixer aquest adjunt multimèdia"; +"Scene.Compose.Attachment.CompressingState" = "Comprimint..."; "Scene.Compose.Attachment.DescriptionPhoto" = "Descriu la foto per als disminuïts visuals..."; "Scene.Compose.Attachment.DescriptionVideo" = "Descriu el vídeo per als disminuïts visuals..."; "Scene.Compose.Attachment.LoadFailed" = "Ha fallat la càrrega"; "Scene.Compose.Attachment.Photo" = "foto"; +"Scene.Compose.Attachment.ServerProcessingState" = "Servidor processant..."; "Scene.Compose.Attachment.UploadFailed" = "Pujada fallida"; "Scene.Compose.Attachment.Video" = "vídeo"; "Scene.Compose.AutoComplete.SpaceToAdd" = "Espai per afegir"; @@ -192,6 +196,8 @@ carregat a Mastodon."; "Scene.Compose.Poll.OptionNumber" = "Opció %ld"; "Scene.Compose.Poll.SevenDays" = "7 Dies"; "Scene.Compose.Poll.SixHours" = "6 Hores"; +"Scene.Compose.Poll.ThePollHasEmptyOption" = "L'enquesta té una opció buida"; +"Scene.Compose.Poll.ThePollIsInvalid" = "L'enquesta no és vàlida"; "Scene.Compose.Poll.ThirtyMinutes" = "30 minuts"; "Scene.Compose.Poll.ThreeDays" = "3 Dies"; "Scene.Compose.ReplyingToUser" = "responent a %@"; @@ -234,6 +240,9 @@ carregat a Mastodon."; "Scene.HomeTimeline.NavigationBarState.Published" = "Publicat!"; "Scene.HomeTimeline.NavigationBarState.Publishing" = "S'està publicant..."; "Scene.HomeTimeline.Title" = "Inici"; +"Scene.Login.ServerSearchField.Placeholder" = "Enter URL or search for your server"; +"Scene.Login.Subtitle" = "Log you in on the server you created your account on."; +"Scene.Login.Title" = "Welcome back"; "Scene.Notification.FollowRequest.Accept" = "Acceptar"; "Scene.Notification.FollowRequest.Accepted" = "Acceptat"; "Scene.Notification.FollowRequest.Reject" = "rebutjar"; @@ -261,6 +270,8 @@ carregat a Mastodon."; "Scene.Profile.Fields.AddRow" = "Afegeix fila"; "Scene.Profile.Fields.Placeholder.Content" = "Contingut"; "Scene.Profile.Fields.Placeholder.Label" = "Etiqueta"; +"Scene.Profile.Fields.Verified.Long" = "La propietat d'aquest enllaç es va verificar el dia %@"; +"Scene.Profile.Fields.Verified.Short" = "Verificat a %@"; "Scene.Profile.Header.FollowsYou" = "Et segueix"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Confirma per a bloquejar %@"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Bloqueja el Compte"; @@ -393,13 +404,11 @@ carregat a Mastodon."; "Scene.ServerPicker.EmptyState.BadNetwork" = "Alguna cosa no ha anat bé en carregar les dades. Comprova la teva connexió a Internet."; "Scene.ServerPicker.EmptyState.FindingServers" = "Cercant els servidors disponibles..."; "Scene.ServerPicker.EmptyState.NoResults" = "No hi ha resultats"; -"Scene.ServerPicker.Input.Placeholder" = "Cerca servidors"; -"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "Cerca servidors o introdueix l'enllaç"; +"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "Search communities or enter URL"; "Scene.ServerPicker.Label.Category" = "CATEGORIA"; "Scene.ServerPicker.Label.Language" = "LLENGUATGE"; "Scene.ServerPicker.Label.Users" = "USUARIS"; -"Scene.ServerPicker.Subtitle" = "Tria una comunitat segons els teus interessos, regió o una de propòsit general."; -"Scene.ServerPicker.SubtitleExtend" = "Tria una comunitat segons els teus interessos, regió o una de propòsit general. Cada comunitat és operada per una organització totalment independent o individualment."; +"Scene.ServerPicker.Subtitle" = "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers."; "Scene.ServerPicker.Title" = "Mastodon està fet d'usuaris en diferents comunitats."; "Scene.ServerRules.Button.Confirm" = "Hi estic d'acord"; "Scene.ServerRules.PrivacyPolicy" = "política de privadesa"; diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/ca.lproj/Localizable.stringsdict b/MastodonSDK/Sources/MastodonLocalization/Resources/ca.lproj/Localizable.stringsdict index cc28edbc6..947597417 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/ca.lproj/Localizable.stringsdict +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/ca.lproj/Localizable.stringsdict @@ -50,6 +50,22 @@ %ld caràcters + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + resten %#@character_count@ + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 caràcter + other + %ld caràcters + + plural.count.followed_by_and_mutual NSStringLocalizedFormatKey diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/ckb.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/ckb.lproj/Localizable.strings index 05c575520..4e76e20fb 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/ckb.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/ckb.lproj/Localizable.strings @@ -55,8 +55,8 @@ "Common.Controls.Actions.Share" = "هاوبەشی بکە"; "Common.Controls.Actions.SharePost" = "هاوبەشی بکە"; "Common.Controls.Actions.ShareUser" = "%@ هاوبەش بکە"; -"Common.Controls.Actions.SignIn" = "بچۆ ژوورەوە"; -"Common.Controls.Actions.SignUp" = "خۆت تۆمار بکە"; +"Common.Controls.Actions.SignIn" = "Log in"; +"Common.Controls.Actions.SignUp" = "Create account"; "Common.Controls.Actions.Skip" = "بیپەڕێنە"; "Common.Controls.Actions.TakePhoto" = "وێنە بگرە"; "Common.Controls.Actions.TryAgain" = "هەوڵ بدەوە"; @@ -161,15 +161,19 @@ "Scene.Compose.Accessibility.CustomEmojiPicker" = "هەڵبژێری ئیمۆجی"; "Scene.Compose.Accessibility.DisableContentWarning" = "ئاگاداریی ناوەڕۆک ناچالاک بکە"; "Scene.Compose.Accessibility.EnableContentWarning" = "ئاگاداریی ناوەڕۆک چالاک بکە"; +"Scene.Compose.Accessibility.PostOptions" = "Post Options"; "Scene.Compose.Accessibility.PostVisibilityMenu" = "پێڕستی شێوازی دەرکەوتنی پۆست"; +"Scene.Compose.Accessibility.PostingAs" = "Posting as %@"; "Scene.Compose.Accessibility.RemovePoll" = "دانگدانەکە لابە"; "Scene.Compose.Attachment.AttachmentBroken" = "ئەم %@ـە تێک چووە و ناتوانیت بەرزی بکەیتەوە."; "Scene.Compose.Attachment.AttachmentTooLarge" = "Attachment too large"; -"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Can not regonize this media attachment"; +"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Can not recognize this media attachment"; +"Scene.Compose.Attachment.CompressingState" = "Compressing..."; "Scene.Compose.Attachment.DescriptionPhoto" = "وێنەکەت بۆ نابیناکان باس بکە..."; "Scene.Compose.Attachment.DescriptionVideo" = "ڤیدیۆکەت بۆ نابیناکان باس بکە..."; "Scene.Compose.Attachment.LoadFailed" = "Load Failed"; "Scene.Compose.Attachment.Photo" = "وێنە"; +"Scene.Compose.Attachment.ServerProcessingState" = "Server Processing..."; "Scene.Compose.Attachment.UploadFailed" = "Upload Failed"; "Scene.Compose.Attachment.Video" = "ڤیدیۆ"; "Scene.Compose.AutoComplete.SpaceToAdd" = "بۆشایی دابنێ بۆ زیادکردن"; @@ -191,6 +195,8 @@ "Scene.Compose.Poll.OptionNumber" = "بژاردەی %ld"; "Scene.Compose.Poll.SevenDays" = "7 ڕۆژ"; "Scene.Compose.Poll.SixHours" = "6 کاتژمێر"; +"Scene.Compose.Poll.ThePollHasEmptyOption" = "The poll has empty option"; +"Scene.Compose.Poll.ThePollIsInvalid" = "The poll is invalid"; "Scene.Compose.Poll.ThirtyMinutes" = "30 خولەک"; "Scene.Compose.Poll.ThreeDays" = "3 ڕۆژ"; "Scene.Compose.ReplyingToUser" = "لە وەڵامدا بۆ %@"; @@ -233,6 +239,9 @@ "Scene.HomeTimeline.NavigationBarState.Published" = "بڵاوکرایەوە!"; "Scene.HomeTimeline.NavigationBarState.Publishing" = "پۆستەکە بڵاو دەکرێتەوە..."; "Scene.HomeTimeline.Title" = "ماڵەوە"; +"Scene.Login.ServerSearchField.Placeholder" = "Enter URL or search for your server"; +"Scene.Login.Subtitle" = "Log you in on the server you created your account on."; +"Scene.Login.Title" = "Welcome back"; "Scene.Notification.FollowRequest.Accept" = "Accept"; "Scene.Notification.FollowRequest.Accepted" = "Accepted"; "Scene.Notification.FollowRequest.Reject" = "reject"; @@ -260,6 +269,8 @@ "Scene.Profile.Fields.AddRow" = "ڕیز زیاد بکە"; "Scene.Profile.Fields.Placeholder.Content" = "ناوەڕۆک"; "Scene.Profile.Fields.Placeholder.Label" = "ناونیشان"; +"Scene.Profile.Fields.Verified.Long" = "Ownership of this link was checked on %@"; +"Scene.Profile.Fields.Verified.Short" = "Verified on %@"; "Scene.Profile.Header.FollowsYou" = "Follows You"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "دڵنیا ببەوە بۆ ئاستەنگکردنی %@"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "ئاستەنگی بکە"; @@ -392,13 +403,11 @@ "Scene.ServerPicker.EmptyState.BadNetwork" = "هەڵەیەک ڕوویدا لە کاتی بارکردن. لە هەبوونی هێڵی ئینتەرنێت دڵنیا بە."; "Scene.ServerPicker.EmptyState.FindingServers" = "ڕاژەکار دەدۆزرێتەوە..."; "Scene.ServerPicker.EmptyState.NoResults" = "ئەنجام نییە"; -"Scene.ServerPicker.Input.Placeholder" = "بگەڕێ"; -"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "Search servers or enter URL"; +"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "Search communities or enter URL"; "Scene.ServerPicker.Label.Category" = "بەش"; "Scene.ServerPicker.Label.Language" = "زمان"; "Scene.ServerPicker.Label.Users" = "بەکارهێنەر"; -"Scene.ServerPicker.Subtitle" = "ڕاژەکارێکێکی گشتی یان دانەیەک لەسەر بنەمای حەزەکانت و هەرێمەکەت هەڵبژێرە."; -"Scene.ServerPicker.SubtitleExtend" = "ڕاژەکارێکێکی گشتی یان دانەیەک لەسەر بنەمای حەزەکانت و هەرێمەکەت هەڵبژێرە. هەر ڕاژەکارێک لەلایەن ڕێکخراوێک یان تاکەکەسێک بەڕێوە دەبرێت."; +"Scene.ServerPicker.Subtitle" = "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers."; "Scene.ServerPicker.Title" = "ماستۆدۆن لە چەندان بەکارهێنەر پێک دێت کە لە ڕاژەکاری جیاواز دان."; "Scene.ServerRules.Button.Confirm" = "ڕازیم"; "Scene.ServerRules.PrivacyPolicy" = "سیاسەتی تایبەتێتی"; diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/ckb.lproj/Localizable.stringsdict b/MastodonSDK/Sources/MastodonLocalization/Resources/ckb.lproj/Localizable.stringsdict index 001a8a608..8116226ec 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/ckb.lproj/Localizable.stringsdict +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/ckb.lproj/Localizable.stringsdict @@ -50,6 +50,22 @@ %ld نووسە + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + %#@character_count@ left + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 character + other + %ld characters + + plural.count.followed_by_and_mutual NSStringLocalizedFormatKey diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/de.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/de.lproj/Localizable.strings index 4f9a15906..89e826349 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/de.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/de.lproj/Localizable.strings @@ -55,8 +55,8 @@ Bitte überprüfe deine Internetverbindung."; "Common.Controls.Actions.Share" = "Teilen"; "Common.Controls.Actions.SharePost" = "Beitrag teilen"; "Common.Controls.Actions.ShareUser" = "%@ teilen"; -"Common.Controls.Actions.SignIn" = "Anmelden"; -"Common.Controls.Actions.SignUp" = "Registrieren"; +"Common.Controls.Actions.SignIn" = "Log in"; +"Common.Controls.Actions.SignUp" = "Create account"; "Common.Controls.Actions.Skip" = "Überspringen"; "Common.Controls.Actions.TakePhoto" = "Foto aufnehmen"; "Common.Controls.Actions.TryAgain" = "Nochmals versuchen"; @@ -161,16 +161,20 @@ Dein Profil sieht für diesen Benutzer auch so aus."; "Scene.Compose.Accessibility.CustomEmojiPicker" = "Benutzerdefinierter Emojiwähler"; "Scene.Compose.Accessibility.DisableContentWarning" = "Inhaltswarnung ausschalten"; "Scene.Compose.Accessibility.EnableContentWarning" = "Inhaltswarnung einschalten"; +"Scene.Compose.Accessibility.PostOptions" = "Post Options"; "Scene.Compose.Accessibility.PostVisibilityMenu" = "Sichtbarkeitsmenü"; +"Scene.Compose.Accessibility.PostingAs" = "Posting as %@"; "Scene.Compose.Accessibility.RemovePoll" = "Umfrage entfernen"; "Scene.Compose.Attachment.AttachmentBroken" = "Dieses %@ scheint defekt zu sein und kann nicht auf Mastodon hochgeladen werden."; "Scene.Compose.Attachment.AttachmentTooLarge" = "Anhang zu groß"; "Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Medienanhang wurde nicht erkannt"; +"Scene.Compose.Attachment.CompressingState" = "Komprimieren..."; "Scene.Compose.Attachment.DescriptionPhoto" = "Für Menschen mit Sehbehinderung beschreiben..."; "Scene.Compose.Attachment.DescriptionVideo" = "Für Menschen mit Sehbehinderung beschreiben..."; "Scene.Compose.Attachment.LoadFailed" = "Laden fehlgeschlagen"; "Scene.Compose.Attachment.Photo" = "Foto"; +"Scene.Compose.Attachment.ServerProcessingState" = "Serververarbeitung..."; "Scene.Compose.Attachment.UploadFailed" = "Upload fehlgeschlagen"; "Scene.Compose.Attachment.Video" = "Video"; "Scene.Compose.AutoComplete.SpaceToAdd" = "Leerzeichen um hinzuzufügen"; @@ -192,6 +196,8 @@ kann nicht auf Mastodon hochgeladen werden."; "Scene.Compose.Poll.OptionNumber" = "Auswahlmöglichkeit %ld"; "Scene.Compose.Poll.SevenDays" = "7 Tage"; "Scene.Compose.Poll.SixHours" = "6 Stunden"; +"Scene.Compose.Poll.ThePollHasEmptyOption" = "Die Umfrage hat eine leere Option"; +"Scene.Compose.Poll.ThePollIsInvalid" = "Die Umfrage ist ungültig"; "Scene.Compose.Poll.ThirtyMinutes" = "30 Minuten"; "Scene.Compose.Poll.ThreeDays" = "3 Tage"; "Scene.Compose.ReplyingToUser" = "antwortet auf %@"; @@ -234,6 +240,9 @@ kann nicht auf Mastodon hochgeladen werden."; "Scene.HomeTimeline.NavigationBarState.Published" = "Veröffentlicht!"; "Scene.HomeTimeline.NavigationBarState.Publishing" = "Beitrag wird veröffentlicht..."; "Scene.HomeTimeline.Title" = "Startseite"; +"Scene.Login.ServerSearchField.Placeholder" = "Enter URL or search for your server"; +"Scene.Login.Subtitle" = "Log you in on the server you created your account on."; +"Scene.Login.Title" = "Welcome back"; "Scene.Notification.FollowRequest.Accept" = "Akzeptieren"; "Scene.Notification.FollowRequest.Accepted" = "Akzeptiert"; "Scene.Notification.FollowRequest.Reject" = "Ablehnen"; @@ -261,6 +270,8 @@ kann nicht auf Mastodon hochgeladen werden."; "Scene.Profile.Fields.AddRow" = "Zeile hinzufügen"; "Scene.Profile.Fields.Placeholder.Content" = "Inhalt"; "Scene.Profile.Fields.Placeholder.Label" = "Bezeichnung"; +"Scene.Profile.Fields.Verified.Long" = "Besitz des Links wurde überprüft am %@"; +"Scene.Profile.Fields.Verified.Short" = "Verified on %@"; "Scene.Profile.Header.FollowsYou" = "Folgt dir"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Bestätige %@ zu blockieren"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Konto blockieren"; @@ -393,13 +404,11 @@ kann nicht auf Mastodon hochgeladen werden."; "Scene.ServerPicker.EmptyState.BadNetwork" = "Beim Laden der Daten ist etwas schief gelaufen. Überprüfe deine Internetverbindung."; "Scene.ServerPicker.EmptyState.FindingServers" = "Verfügbare Server werden gesucht..."; "Scene.ServerPicker.EmptyState.NoResults" = "Keine Ergebnisse"; -"Scene.ServerPicker.Input.Placeholder" = "Nach Server suchen oder URL eingeben"; -"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "Nach Server suchen oder URL eingeben"; +"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "Search communities or enter URL"; "Scene.ServerPicker.Label.Category" = "KATEGORIE"; "Scene.ServerPicker.Label.Language" = "SPRACHE"; "Scene.ServerPicker.Label.Users" = "BENUTZER"; -"Scene.ServerPicker.Subtitle" = "Wähle eine Gemeinschaft, die auf deinen Interessen, Region oder einem allgemeinen Zweck basiert."; -"Scene.ServerPicker.SubtitleExtend" = "Wähle eine Gemeinschaft basierend auf deinen Interessen, deiner Region oder einem allgemeinen Zweck. Jede Gemeinschaft wird von einer völlig unabhängigen Organisation oder Einzelperson betrieben."; +"Scene.ServerPicker.Subtitle" = "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers."; "Scene.ServerPicker.Title" = "Wähle einen Server, beliebigen Server."; "Scene.ServerRules.Button.Confirm" = "Ich stimme zu"; diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/de.lproj/Localizable.stringsdict b/MastodonSDK/Sources/MastodonLocalization/Resources/de.lproj/Localizable.stringsdict index f60c6b0d7..1965fd02b 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/de.lproj/Localizable.stringsdict +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/de.lproj/Localizable.stringsdict @@ -50,6 +50,22 @@ %ld Zeichen + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + %#@character_count@ left + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 character + other + %ld characters + + plural.count.followed_by_and_mutual NSStringLocalizedFormatKey diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/en.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/en.lproj/Localizable.strings index 1a48d8c55..2a3f1efbf 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/en.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/en.lproj/Localizable.strings @@ -55,8 +55,8 @@ Please check your internet connection."; "Common.Controls.Actions.Share" = "Share"; "Common.Controls.Actions.SharePost" = "Share Post"; "Common.Controls.Actions.ShareUser" = "Share %@"; -"Common.Controls.Actions.SignIn" = "Sign In"; -"Common.Controls.Actions.SignUp" = "Sign Up"; +"Common.Controls.Actions.SignIn" = "Log in"; +"Common.Controls.Actions.SignUp" = "Create account"; "Common.Controls.Actions.Skip" = "Skip"; "Common.Controls.Actions.TakePhoto" = "Take Photo"; "Common.Controls.Actions.TryAgain" = "Try Again"; @@ -168,11 +168,13 @@ Your profile looks like this to them."; "Scene.Compose.Attachment.AttachmentBroken" = "This %@ is broken and can’t be uploaded to Mastodon."; "Scene.Compose.Attachment.AttachmentTooLarge" = "Attachment too large"; -"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Can not regonize this media attachment"; +"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Can not recognize this media attachment"; +"Scene.Compose.Attachment.CompressingState" = "Compressing..."; "Scene.Compose.Attachment.DescriptionPhoto" = "Describe the photo for the visually-impaired..."; "Scene.Compose.Attachment.DescriptionVideo" = "Describe the video for the visually-impaired..."; "Scene.Compose.Attachment.LoadFailed" = "Load Failed"; "Scene.Compose.Attachment.Photo" = "photo"; +"Scene.Compose.Attachment.ServerProcessingState" = "Server Processing..."; "Scene.Compose.Attachment.UploadFailed" = "Upload Failed"; "Scene.Compose.Attachment.Video" = "video"; "Scene.Compose.AutoComplete.SpaceToAdd" = "Space to add"; @@ -194,6 +196,8 @@ uploaded to Mastodon."; "Scene.Compose.Poll.OptionNumber" = "Option %ld"; "Scene.Compose.Poll.SevenDays" = "7 Days"; "Scene.Compose.Poll.SixHours" = "6 Hours"; +"Scene.Compose.Poll.ThePollHasEmptyOption" = "The poll has empty option"; +"Scene.Compose.Poll.ThePollIsInvalid" = "The poll is invalid"; "Scene.Compose.Poll.ThirtyMinutes" = "30 minutes"; "Scene.Compose.Poll.ThreeDays" = "3 Days"; "Scene.Compose.ReplyingToUser" = "replying to %@"; @@ -236,6 +240,9 @@ uploaded to Mastodon."; "Scene.HomeTimeline.NavigationBarState.Published" = "Published!"; "Scene.HomeTimeline.NavigationBarState.Publishing" = "Publishing post..."; "Scene.HomeTimeline.Title" = "Home"; +"Scene.Login.ServerSearchField.Placeholder" = "Enter URL or search for your server"; +"Scene.Login.Subtitle" = "Log you in on the server you created your account on."; +"Scene.Login.Title" = "Welcome back"; "Scene.Notification.FollowRequest.Accept" = "Accept"; "Scene.Notification.FollowRequest.Accepted" = "Accepted"; "Scene.Notification.FollowRequest.Reject" = "reject"; @@ -263,6 +270,8 @@ uploaded to Mastodon."; "Scene.Profile.Fields.AddRow" = "Add Row"; "Scene.Profile.Fields.Placeholder.Content" = "Content"; "Scene.Profile.Fields.Placeholder.Label" = "Label"; +"Scene.Profile.Fields.Verified.Long" = "Ownership of this link was checked on %@"; +"Scene.Profile.Fields.Verified.Short" = "Verified on %@"; "Scene.Profile.Header.FollowsYou" = "Follows You"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Confirm to block %@"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Block Account"; @@ -315,9 +324,6 @@ uploaded to Mastodon."; "Scene.Register.Input.Username.DuplicatePrompt" = "This username is taken."; "Scene.Register.Input.Username.Placeholder" = "username"; "Scene.Register.LetsGetYouSetUpOnDomain" = "Let’s get you set up on %@"; -"Scene.Login.Title" = "Welcome Back!"; -"Scene.Login.Subtitle" = "Log you in with the server where you created your account"; -"Scene.Login.ServerSearchField.Placeholder" = "Search server or enter URL"; "Scene.Register.Title" = "Let’s get you set up on %@"; "Scene.Report.Content1" = "Are there any other posts you’d like to add to the report?"; "Scene.Report.Content2" = "Is there anything the moderators should know about this report?"; @@ -398,13 +404,11 @@ uploaded to Mastodon."; "Scene.ServerPicker.EmptyState.BadNetwork" = "Something went wrong while loading the data. Check your internet connection."; "Scene.ServerPicker.EmptyState.FindingServers" = "Finding available servers..."; "Scene.ServerPicker.EmptyState.NoResults" = "No results"; -"Scene.ServerPicker.Input.Placeholder" = "Search servers"; -"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "Search servers or enter URL"; +"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "Search communities or enter URL"; "Scene.ServerPicker.Label.Category" = "CATEGORY"; "Scene.ServerPicker.Label.Language" = "LANGUAGE"; "Scene.ServerPicker.Label.Users" = "USERS"; -"Scene.ServerPicker.Subtitle" = "Pick a server based on your interests, region, or a general purpose one."; -"Scene.ServerPicker.SubtitleExtend" = "Pick a server based on your interests, region, or a general purpose one. Each server is operated by an entirely independent organization or individual."; +"Scene.ServerPicker.Subtitle" = "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers."; "Scene.ServerPicker.Title" = "Mastodon is made of users in different servers."; "Scene.ServerRules.Button.Confirm" = "I Agree"; "Scene.ServerRules.PrivacyPolicy" = "privacy policy"; @@ -457,4 +461,4 @@ uploaded to Mastodon."; back in your hands."; "Scene.Wizard.AccessibilityHint" = "Double tap to dismiss this wizard"; "Scene.Wizard.MultipleAccountSwitchIntroDescription" = "Switch between multiple accounts by holding the profile button."; -"Scene.Wizard.NewInMastodon" = "New in Mastodon"; +"Scene.Wizard.NewInMastodon" = "New in Mastodon"; \ No newline at end of file diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/es.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/es.lproj/Localizable.strings index c16bec6cf..b2cb18954 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/es.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/es.lproj/Localizable.strings @@ -55,8 +55,8 @@ Por favor, revise su conexión a internet."; "Common.Controls.Actions.Share" = "Compartir"; "Common.Controls.Actions.SharePost" = "Compartir publicación"; "Common.Controls.Actions.ShareUser" = "Compartir %@"; -"Common.Controls.Actions.SignIn" = "Iniciar sesión"; -"Common.Controls.Actions.SignUp" = "Regístrate"; +"Common.Controls.Actions.SignIn" = "Log in"; +"Common.Controls.Actions.SignUp" = "Create account"; "Common.Controls.Actions.Skip" = "Omitir"; "Common.Controls.Actions.TakePhoto" = "Tomar foto"; "Common.Controls.Actions.TryAgain" = "Inténtalo de nuevo"; @@ -161,16 +161,20 @@ Tu perfil se ve así para él."; "Scene.Compose.Accessibility.CustomEmojiPicker" = "Selector de Emojis Personalizados"; "Scene.Compose.Accessibility.DisableContentWarning" = "Desactivar Advertencia de Contenido"; "Scene.Compose.Accessibility.EnableContentWarning" = "Activar Advertencia de Contenido"; +"Scene.Compose.Accessibility.PostOptions" = "Post Options"; "Scene.Compose.Accessibility.PostVisibilityMenu" = "Menú de Visibilidad de la Publicación"; +"Scene.Compose.Accessibility.PostingAs" = "Posting as %@"; "Scene.Compose.Accessibility.RemovePoll" = "Eliminar Encuesta"; "Scene.Compose.Attachment.AttachmentBroken" = "Este %@ está roto y no puede subirse a Mastodon."; "Scene.Compose.Attachment.AttachmentTooLarge" = "Attachment too large"; -"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Can not regonize this media attachment"; +"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Can not recognize this media attachment"; +"Scene.Compose.Attachment.CompressingState" = "Compressing..."; "Scene.Compose.Attachment.DescriptionPhoto" = "Describe la foto para los usuarios con dificultad visual..."; "Scene.Compose.Attachment.DescriptionVideo" = "Describe el vídeo para los usuarios con dificultad visual..."; "Scene.Compose.Attachment.LoadFailed" = "Load Failed"; "Scene.Compose.Attachment.Photo" = "foto"; +"Scene.Compose.Attachment.ServerProcessingState" = "Server Processing..."; "Scene.Compose.Attachment.UploadFailed" = "Upload Failed"; "Scene.Compose.Attachment.Video" = "vídeo"; "Scene.Compose.AutoComplete.SpaceToAdd" = "Espacio para añadir"; @@ -192,6 +196,8 @@ subirse a Mastodon."; "Scene.Compose.Poll.OptionNumber" = "Opción %ld"; "Scene.Compose.Poll.SevenDays" = "7 Días"; "Scene.Compose.Poll.SixHours" = "6 Horas"; +"Scene.Compose.Poll.ThePollHasEmptyOption" = "The poll has empty option"; +"Scene.Compose.Poll.ThePollIsInvalid" = "The poll is invalid"; "Scene.Compose.Poll.ThirtyMinutes" = "30 minutos"; "Scene.Compose.Poll.ThreeDays" = "4 Días"; "Scene.Compose.ReplyingToUser" = "en respuesta a %@"; @@ -235,6 +241,9 @@ pulsa en el enlace para confirmar tu cuenta."; "Scene.HomeTimeline.NavigationBarState.Published" = "¡Publicado!"; "Scene.HomeTimeline.NavigationBarState.Publishing" = "Publicación en curso..."; "Scene.HomeTimeline.Title" = "Inicio"; +"Scene.Login.ServerSearchField.Placeholder" = "Enter URL or search for your server"; +"Scene.Login.Subtitle" = "Log you in on the server you created your account on."; +"Scene.Login.Title" = "Welcome back"; "Scene.Notification.FollowRequest.Accept" = "Aceptar"; "Scene.Notification.FollowRequest.Accepted" = "Aceptado"; "Scene.Notification.FollowRequest.Reject" = "rechazar"; @@ -262,6 +271,8 @@ pulsa en el enlace para confirmar tu cuenta."; "Scene.Profile.Fields.AddRow" = "Añadir Fila"; "Scene.Profile.Fields.Placeholder.Content" = "Contenido"; "Scene.Profile.Fields.Placeholder.Label" = "Nombre para el campo"; +"Scene.Profile.Fields.Verified.Long" = "Ownership of this link was checked on %@"; +"Scene.Profile.Fields.Verified.Short" = "Verified on %@"; "Scene.Profile.Header.FollowsYou" = "Te sigue"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Confirmar para bloquear a %@"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Bloquear cuenta"; @@ -394,13 +405,11 @@ pulsa en el enlace para confirmar tu cuenta."; "Scene.ServerPicker.EmptyState.BadNetwork" = "Algo ha ido mal al cargar los datos. Comprueba tu conexión a Internet."; "Scene.ServerPicker.EmptyState.FindingServers" = "Encontrando servidores disponibles..."; "Scene.ServerPicker.EmptyState.NoResults" = "Sin resultados"; -"Scene.ServerPicker.Input.Placeholder" = "Encuentra un servidor o únete al tuyo propio..."; -"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "Buscar servidores o introducir la URL"; +"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "Search communities or enter URL"; "Scene.ServerPicker.Label.Category" = "CATEGORÍA"; "Scene.ServerPicker.Label.Language" = "IDIOMA"; "Scene.ServerPicker.Label.Users" = "USUARIOS"; -"Scene.ServerPicker.Subtitle" = "Elige una comunidad relacionada con tus intereses, con tu región o una más genérica."; -"Scene.ServerPicker.SubtitleExtend" = "Elige una comunidad relacionada con tus intereses, con tu región o una más genérica. Cada comunidad está operada por una organización o individuo completamente independiente."; +"Scene.ServerPicker.Subtitle" = "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers."; "Scene.ServerPicker.Title" = "Elige un servidor, cualquier servidor."; "Scene.ServerRules.Button.Confirm" = "Acepto"; diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/es.lproj/Localizable.stringsdict b/MastodonSDK/Sources/MastodonLocalization/Resources/es.lproj/Localizable.stringsdict index def3d7bba..ca07b6b28 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/es.lproj/Localizable.stringsdict +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/es.lproj/Localizable.stringsdict @@ -50,6 +50,22 @@ %ld caracteres + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + %#@character_count@ left + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 character + other + %ld characters + + plural.count.followed_by_and_mutual NSStringLocalizedFormatKey diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/eu.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/eu.lproj/Localizable.strings index aef7a7507..e2985112e 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/eu.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/eu.lproj/Localizable.strings @@ -55,8 +55,8 @@ Egiaztatu Interneteko konexioa."; "Common.Controls.Actions.Share" = "Partekatu"; "Common.Controls.Actions.SharePost" = "Partekatu bidalketa"; "Common.Controls.Actions.ShareUser" = "Partekatu %@"; -"Common.Controls.Actions.SignIn" = "Hasi saioa"; -"Common.Controls.Actions.SignUp" = "Eman Izena"; +"Common.Controls.Actions.SignIn" = "Log in"; +"Common.Controls.Actions.SignUp" = "Create account"; "Common.Controls.Actions.Skip" = "Saltatu"; "Common.Controls.Actions.TakePhoto" = "Atera argazkia"; "Common.Controls.Actions.TryAgain" = "Saiatu berriro"; @@ -161,16 +161,20 @@ Zure profilak itxura hau du berarentzat."; "Scene.Compose.Accessibility.CustomEmojiPicker" = "Emoji pertsonalizatuen hautatzailea"; "Scene.Compose.Accessibility.DisableContentWarning" = "Desgaitu edukiaren abisua"; "Scene.Compose.Accessibility.EnableContentWarning" = "Gaitu edukiaren abisua"; +"Scene.Compose.Accessibility.PostOptions" = "Post Options"; "Scene.Compose.Accessibility.PostVisibilityMenu" = "Bidalketaren ikusgaitasunaren menua"; +"Scene.Compose.Accessibility.PostingAs" = "Posting as %@"; "Scene.Compose.Accessibility.RemovePoll" = "Kendu inkesta"; "Scene.Compose.Attachment.AttachmentBroken" = "%@ hondatuta dago eta ezin da Mastodonera igo."; "Scene.Compose.Attachment.AttachmentTooLarge" = "Attachment too large"; -"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Can not regonize this media attachment"; +"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Can not recognize this media attachment"; +"Scene.Compose.Attachment.CompressingState" = "Compressing..."; "Scene.Compose.Attachment.DescriptionPhoto" = "Deskribatu argazkia ikusmen arazoak dituztenentzat..."; "Scene.Compose.Attachment.DescriptionVideo" = "Deskribatu bideoa ikusmen arazoak dituztenentzat..."; "Scene.Compose.Attachment.LoadFailed" = "Load Failed"; "Scene.Compose.Attachment.Photo" = "argazkia"; +"Scene.Compose.Attachment.ServerProcessingState" = "Server Processing..."; "Scene.Compose.Attachment.UploadFailed" = "Upload Failed"; "Scene.Compose.Attachment.Video" = "bideoa"; "Scene.Compose.AutoComplete.SpaceToAdd" = "Sakatu zuriunea gehitzeko"; @@ -192,6 +196,8 @@ Mastodonera igo."; "Scene.Compose.Poll.OptionNumber" = "%ld aukera"; "Scene.Compose.Poll.SevenDays" = "7 egun"; "Scene.Compose.Poll.SixHours" = "6 ordu"; +"Scene.Compose.Poll.ThePollHasEmptyOption" = "The poll has empty option"; +"Scene.Compose.Poll.ThePollIsInvalid" = "The poll is invalid"; "Scene.Compose.Poll.ThirtyMinutes" = "30 minutu"; "Scene.Compose.Poll.ThreeDays" = "3 egun"; "Scene.Compose.ReplyingToUser" = "%@(r)i erantzuten"; @@ -234,6 +240,9 @@ Mastodonera igo."; "Scene.HomeTimeline.NavigationBarState.Published" = "Argitaratua!"; "Scene.HomeTimeline.NavigationBarState.Publishing" = "Bidalketa argitaratzen..."; "Scene.HomeTimeline.Title" = "Hasiera"; +"Scene.Login.ServerSearchField.Placeholder" = "Enter URL or search for your server"; +"Scene.Login.Subtitle" = "Log you in on the server you created your account on."; +"Scene.Login.Title" = "Welcome back"; "Scene.Notification.FollowRequest.Accept" = "Accept"; "Scene.Notification.FollowRequest.Accepted" = "Accepted"; "Scene.Notification.FollowRequest.Reject" = "reject"; @@ -261,6 +270,8 @@ Mastodonera igo."; "Scene.Profile.Fields.AddRow" = "Gehitu errenkada"; "Scene.Profile.Fields.Placeholder.Content" = "Edukia"; "Scene.Profile.Fields.Placeholder.Label" = "Etiketa"; +"Scene.Profile.Fields.Verified.Long" = "Ownership of this link was checked on %@"; +"Scene.Profile.Fields.Verified.Short" = "Verified on %@"; "Scene.Profile.Header.FollowsYou" = "Follows You"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Berretsi %@ blokeatzea"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Blokeatu kontua"; @@ -393,13 +404,11 @@ Mastodonera igo."; "Scene.ServerPicker.EmptyState.BadNetwork" = "Arazoren bat egon da datuak kargatzean. Egiaztatu zure Interneteko konexioa."; "Scene.ServerPicker.EmptyState.FindingServers" = "Erabilgarri dauden zerbitzariak bilatzen..."; "Scene.ServerPicker.EmptyState.NoResults" = "Emaitzarik ez"; -"Scene.ServerPicker.Input.Placeholder" = "Bilatu zerbitzari bat edo sortu zurea..."; -"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "Search servers or enter URL"; +"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "Search communities or enter URL"; "Scene.ServerPicker.Label.Category" = "KATEGORIA"; "Scene.ServerPicker.Label.Language" = "HIZKUNTZA"; "Scene.ServerPicker.Label.Users" = "ERABILTZAILEAK"; -"Scene.ServerPicker.Subtitle" = "Aukeratu komunitate bat zure interes edo lurraldearen arabera, edo erabilera orokorreko bat."; -"Scene.ServerPicker.SubtitleExtend" = "Aukeratu komunitate bat zure interes edo lurraldearen arabera, edo erabilera orokorreko bat. Komunitate bakoitza erakunde edo norbanako independente batek kudeatzen du."; +"Scene.ServerPicker.Subtitle" = "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers."; "Scene.ServerPicker.Title" = "Aukeratu zerbitzari bat, edozein zerbitzari."; "Scene.ServerRules.Button.Confirm" = "Ados nago"; diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/eu.lproj/Localizable.stringsdict b/MastodonSDK/Sources/MastodonLocalization/Resources/eu.lproj/Localizable.stringsdict index 0159a7da9..057ca4010 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/eu.lproj/Localizable.stringsdict +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/eu.lproj/Localizable.stringsdict @@ -50,6 +50,22 @@ %ld karaktere + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + %#@character_count@ left + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 character + other + %ld characters + + plural.count.followed_by_and_mutual NSStringLocalizedFormatKey diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/fi.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/fi.lproj/Localizable.strings index 11259ace5..7902fb6eb 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/fi.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/fi.lproj/Localizable.strings @@ -55,8 +55,8 @@ Tarkista internet-yhteytesi."; "Common.Controls.Actions.Share" = "Jaa"; "Common.Controls.Actions.SharePost" = "Jaa julkaisu"; "Common.Controls.Actions.ShareUser" = "Jaa %@"; -"Common.Controls.Actions.SignIn" = "Kirjaudu sisään"; -"Common.Controls.Actions.SignUp" = "Rekisteröidy"; +"Common.Controls.Actions.SignIn" = "Log in"; +"Common.Controls.Actions.SignUp" = "Create account"; "Common.Controls.Actions.Skip" = "Ohita"; "Common.Controls.Actions.TakePhoto" = "Ota kuva"; "Common.Controls.Actions.TryAgain" = "Yritä uudelleen"; @@ -161,16 +161,20 @@ Profiilisi näyttää tältä hänelle."; "Scene.Compose.Accessibility.CustomEmojiPicker" = "Mukautettu emojivalitsin"; "Scene.Compose.Accessibility.DisableContentWarning" = "Poista sisältövaroitus käytöstä"; "Scene.Compose.Accessibility.EnableContentWarning" = "Ota sisältövaroitus käyttöön"; +"Scene.Compose.Accessibility.PostOptions" = "Post Options"; "Scene.Compose.Accessibility.PostVisibilityMenu" = "Julkaisun näkyvyysvalikko"; +"Scene.Compose.Accessibility.PostingAs" = "Posting as %@"; "Scene.Compose.Accessibility.RemovePoll" = "Poista kysely"; "Scene.Compose.Attachment.AttachmentBroken" = "This %@ is broken and can’t be uploaded to Mastodon."; "Scene.Compose.Attachment.AttachmentTooLarge" = "Attachment too large"; -"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Can not regonize this media attachment"; +"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Can not recognize this media attachment"; +"Scene.Compose.Attachment.CompressingState" = "Compressing..."; "Scene.Compose.Attachment.DescriptionPhoto" = "Kuvaile kuva näkövammaisille..."; "Scene.Compose.Attachment.DescriptionVideo" = "Kuvaile video näkövammaisille..."; "Scene.Compose.Attachment.LoadFailed" = "Load Failed"; "Scene.Compose.Attachment.Photo" = "kuva"; +"Scene.Compose.Attachment.ServerProcessingState" = "Server Processing..."; "Scene.Compose.Attachment.UploadFailed" = "Upload Failed"; "Scene.Compose.Attachment.Video" = "video"; "Scene.Compose.AutoComplete.SpaceToAdd" = "Space to add"; @@ -192,6 +196,8 @@ uploaded to Mastodon."; "Scene.Compose.Poll.OptionNumber" = "Vaihtoehto %ld"; "Scene.Compose.Poll.SevenDays" = "7 päivää"; "Scene.Compose.Poll.SixHours" = "6 tuntia"; +"Scene.Compose.Poll.ThePollHasEmptyOption" = "The poll has empty option"; +"Scene.Compose.Poll.ThePollIsInvalid" = "The poll is invalid"; "Scene.Compose.Poll.ThirtyMinutes" = "30 minuuttia"; "Scene.Compose.Poll.ThreeDays" = "3 päivää"; "Scene.Compose.ReplyingToUser" = "vastaamassa tilille %@"; @@ -234,6 +240,9 @@ uploaded to Mastodon."; "Scene.HomeTimeline.NavigationBarState.Published" = "Julkaistu!"; "Scene.HomeTimeline.NavigationBarState.Publishing" = "Julkaistaan julkaisua..."; "Scene.HomeTimeline.Title" = "Koti"; +"Scene.Login.ServerSearchField.Placeholder" = "Enter URL or search for your server"; +"Scene.Login.Subtitle" = "Log you in on the server you created your account on."; +"Scene.Login.Title" = "Welcome back"; "Scene.Notification.FollowRequest.Accept" = "Accept"; "Scene.Notification.FollowRequest.Accepted" = "Accepted"; "Scene.Notification.FollowRequest.Reject" = "reject"; @@ -261,6 +270,8 @@ uploaded to Mastodon."; "Scene.Profile.Fields.AddRow" = "Lisää rivi"; "Scene.Profile.Fields.Placeholder.Content" = "Sisältö"; "Scene.Profile.Fields.Placeholder.Label" = "Nimi"; +"Scene.Profile.Fields.Verified.Long" = "Ownership of this link was checked on %@"; +"Scene.Profile.Fields.Verified.Short" = "Verified on %@"; "Scene.Profile.Header.FollowsYou" = "Follows You"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Confirm to block %@"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Block Account"; @@ -393,13 +404,11 @@ uploaded to Mastodon."; "Scene.ServerPicker.EmptyState.BadNetwork" = "Jokin meni pieleen dataa ladatessa. Tarkista internet-yhteytesi."; "Scene.ServerPicker.EmptyState.FindingServers" = "Etsistään saatavilla olevia palvelimia..."; "Scene.ServerPicker.EmptyState.NoResults" = "Ei hakutuloksia"; -"Scene.ServerPicker.Input.Placeholder" = "Etsi palvelin tai liity omaan..."; -"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "Search servers or enter URL"; +"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "Search communities or enter URL"; "Scene.ServerPicker.Label.Category" = "KATEGORIA"; "Scene.ServerPicker.Label.Language" = "KIELI"; "Scene.ServerPicker.Label.Users" = "TILIÄ"; -"Scene.ServerPicker.Subtitle" = "Pick a server based on your interests, region, or a general purpose one."; -"Scene.ServerPicker.SubtitleExtend" = "Pick a server based on your interests, region, or a general purpose one. Each server is operated by an entirely independent organization or individual."; +"Scene.ServerPicker.Subtitle" = "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers."; "Scene.ServerPicker.Title" = "Valitse palvelin, mikä tahansa palvelin."; "Scene.ServerRules.Button.Confirm" = "Hyväksyn"; diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/fi.lproj/Localizable.stringsdict b/MastodonSDK/Sources/MastodonLocalization/Resources/fi.lproj/Localizable.stringsdict index 8048edf2d..ccfee35c9 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/fi.lproj/Localizable.stringsdict +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/fi.lproj/Localizable.stringsdict @@ -50,6 +50,22 @@ %ld merkkiä + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + %#@character_count@ left + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 character + other + %ld characters + + plural.count.followed_by_and_mutual NSStringLocalizedFormatKey diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/fr.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/fr.lproj/Localizable.strings index 931219c21..59590f612 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/fr.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/fr.lproj/Localizable.strings @@ -55,8 +55,8 @@ Veuillez vérifier votre accès à Internet."; "Common.Controls.Actions.Share" = "Partager"; "Common.Controls.Actions.SharePost" = "Partager la publication"; "Common.Controls.Actions.ShareUser" = "Partager %@"; -"Common.Controls.Actions.SignIn" = "Se connecter"; -"Common.Controls.Actions.SignUp" = "Créer un compte"; +"Common.Controls.Actions.SignIn" = "Log in"; +"Common.Controls.Actions.SignUp" = "Create account"; "Common.Controls.Actions.Skip" = "Passer"; "Common.Controls.Actions.TakePhoto" = "Prendre une photo"; "Common.Controls.Actions.TryAgain" = "Réessayer"; @@ -161,17 +161,21 @@ Votre profil ressemble à ça pour lui."; "Scene.Compose.Accessibility.CustomEmojiPicker" = "Sélecteur d’émojis personnalisés"; "Scene.Compose.Accessibility.DisableContentWarning" = "Désactiver l'avertissement de contenu"; "Scene.Compose.Accessibility.EnableContentWarning" = "Basculer l’avertissement de contenu"; +"Scene.Compose.Accessibility.PostOptions" = "Options de publication"; "Scene.Compose.Accessibility.PostVisibilityMenu" = "Menu de Visibilité de la publication"; +"Scene.Compose.Accessibility.PostingAs" = "Publié en tant que %@"; "Scene.Compose.Accessibility.RemovePoll" = "Retirer le sondage"; "Scene.Compose.Attachment.AttachmentBroken" = "Ce %@ est brisé et ne peut pas être téléversé sur Mastodon."; -"Scene.Compose.Attachment.AttachmentTooLarge" = "Attachment too large"; -"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Can not regonize this media attachment"; +"Scene.Compose.Attachment.AttachmentTooLarge" = "La pièce jointe est trop volumineuse"; +"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Impossible de reconnaître cette pièce jointe"; +"Scene.Compose.Attachment.CompressingState" = "Compression..."; "Scene.Compose.Attachment.DescriptionPhoto" = "Décrire cette photo pour les personnes malvoyantes..."; "Scene.Compose.Attachment.DescriptionVideo" = "Décrire cette vidéo pour les personnes malvoyantes..."; -"Scene.Compose.Attachment.LoadFailed" = "Load Failed"; +"Scene.Compose.Attachment.LoadFailed" = "Échec du chargement"; "Scene.Compose.Attachment.Photo" = "photo"; -"Scene.Compose.Attachment.UploadFailed" = "Upload Failed"; +"Scene.Compose.Attachment.ServerProcessingState" = "Traitement du serveur..."; +"Scene.Compose.Attachment.UploadFailed" = "Échec de l’envoi"; "Scene.Compose.Attachment.Video" = "vidéo"; "Scene.Compose.AutoComplete.SpaceToAdd" = "Espace à ajouter"; "Scene.Compose.ComposeAction" = "Publier"; @@ -192,6 +196,8 @@ téléversé sur Mastodon."; "Scene.Compose.Poll.OptionNumber" = "Option %ld"; "Scene.Compose.Poll.SevenDays" = "7 jour"; "Scene.Compose.Poll.SixHours" = "6 Heures"; +"Scene.Compose.Poll.ThePollHasEmptyOption" = "Le sondage n'a pas d'options"; +"Scene.Compose.Poll.ThePollIsInvalid" = "Le sondage est invalide"; "Scene.Compose.Poll.ThirtyMinutes" = "30 minutes"; "Scene.Compose.Poll.ThreeDays" = "3 jour"; "Scene.Compose.ReplyingToUser" = "répondre à %@"; @@ -234,6 +240,9 @@ téléversé sur Mastodon."; "Scene.HomeTimeline.NavigationBarState.Published" = "Publié!"; "Scene.HomeTimeline.NavigationBarState.Publishing" = "Publication en cours ..."; "Scene.HomeTimeline.Title" = "Accueil"; +"Scene.Login.ServerSearchField.Placeholder" = "Enter URL or search for your server"; +"Scene.Login.Subtitle" = "Log you in on the server you created your account on."; +"Scene.Login.Title" = "Welcome back"; "Scene.Notification.FollowRequest.Accept" = "Accepter"; "Scene.Notification.FollowRequest.Accepted" = "Accepté"; "Scene.Notification.FollowRequest.Reject" = "rejeter"; @@ -261,6 +270,8 @@ téléversé sur Mastodon."; "Scene.Profile.Fields.AddRow" = "Ajouter une rangée"; "Scene.Profile.Fields.Placeholder.Content" = "Contenu"; "Scene.Profile.Fields.Placeholder.Label" = "Étiquette"; +"Scene.Profile.Fields.Verified.Long" = "La propriété de ce lien a été vérifiée le %@"; +"Scene.Profile.Fields.Verified.Short" = "Vérifié le %@"; "Scene.Profile.Header.FollowsYou" = "Vous suit"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Confirmer le blocage de %@"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Bloquer le compte"; @@ -393,13 +404,11 @@ téléversé sur Mastodon."; "Scene.ServerPicker.EmptyState.BadNetwork" = "Une erreur s'est produite lors du chargement des données. Vérifiez votre connexion Internet."; "Scene.ServerPicker.EmptyState.FindingServers" = "Recherche des serveurs disponibles..."; "Scene.ServerPicker.EmptyState.NoResults" = "Aucun résultat"; -"Scene.ServerPicker.Input.Placeholder" = "Trouvez un serveur ou rejoignez le vôtre..."; -"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "Rechercher des serveurs ou entrer une URL"; +"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "Search communities or enter URL"; "Scene.ServerPicker.Label.Category" = "CATÉGORIE"; "Scene.ServerPicker.Label.Language" = "LANGUE"; "Scene.ServerPicker.Label.Users" = "UTILISATEUR·RICE·S"; -"Scene.ServerPicker.Subtitle" = "Choisissez une communauté en fonction de vos intérêts, de votre région ou de votre objectif général."; -"Scene.ServerPicker.SubtitleExtend" = "Choisissez une communauté basée sur vos intérêts, votre région ou un but général. Chaque communauté est gérée par une organisation ou un individu entièrement indépendant."; +"Scene.ServerPicker.Subtitle" = "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers."; "Scene.ServerPicker.Title" = "Choisissez un serveur, n'importe quel serveur."; "Scene.ServerRules.Button.Confirm" = "J’accepte"; diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/fr.lproj/Localizable.stringsdict b/MastodonSDK/Sources/MastodonLocalization/Resources/fr.lproj/Localizable.stringsdict index d9d860a47..4eb068697 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/fr.lproj/Localizable.stringsdict +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/fr.lproj/Localizable.stringsdict @@ -50,6 +50,22 @@ %ld caractères + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + %#@character_count@ restants + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 caractère + other + %ld caractères + + plural.count.followed_by_and_mutual NSStringLocalizedFormatKey diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/gd.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/gd.lproj/Localizable.strings index ce1764eac..aea2902fc 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/gd.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/gd.lproj/Localizable.strings @@ -55,8 +55,8 @@ Thoir sùil air a’ cheangal agad ris an eadar-lìon."; "Common.Controls.Actions.Share" = "Co-roinn"; "Common.Controls.Actions.SharePost" = "Co-roinn am post"; "Common.Controls.Actions.ShareUser" = "Co-roinn %@"; -"Common.Controls.Actions.SignIn" = "Clàraich a-steach"; -"Common.Controls.Actions.SignUp" = "Clàraich leinn"; +"Common.Controls.Actions.SignIn" = "Log in"; +"Common.Controls.Actions.SignUp" = "Create account"; "Common.Controls.Actions.Skip" = "Leum thairis air"; "Common.Controls.Actions.TakePhoto" = "Tog dealbh"; "Common.Controls.Actions.TryAgain" = "Feuch ris a-rithist"; @@ -161,16 +161,20 @@ Seo an coltas a th’ air a’ phròifil agad dhaibh-san."; "Scene.Compose.Accessibility.CustomEmojiPicker" = "Roghnaichear nan Emoji gnàthaichte"; "Scene.Compose.Accessibility.DisableContentWarning" = "Cuir rabhadh susbainte à comas"; "Scene.Compose.Accessibility.EnableContentWarning" = "Cuir rabhadh susbainte an comas"; +"Scene.Compose.Accessibility.PostOptions" = "Post Options"; "Scene.Compose.Accessibility.PostVisibilityMenu" = "Clàr-taice faicsinneachd a’ phuist"; +"Scene.Compose.Accessibility.PostingAs" = "Posting as %@"; "Scene.Compose.Accessibility.RemovePoll" = "Thoir air falbh an cunntas-bheachd"; "Scene.Compose.Attachment.AttachmentBroken" = "Seo %@ a tha briste is cha ghabh a luchdadh suas gu Mastodon."; "Scene.Compose.Attachment.AttachmentTooLarge" = "Attachment too large"; -"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Can not regonize this media attachment"; +"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Can not recognize this media attachment"; +"Scene.Compose.Attachment.CompressingState" = "Compressing..."; "Scene.Compose.Attachment.DescriptionPhoto" = "Mìnich an dealbh dhan fheadhainn air a bheil cion-lèirsinne…"; "Scene.Compose.Attachment.DescriptionVideo" = "Mìnich a’ video dhan fheadhainn air a bheil cion-lèirsinne…"; "Scene.Compose.Attachment.LoadFailed" = "Load Failed"; "Scene.Compose.Attachment.Photo" = "dealbh"; +"Scene.Compose.Attachment.ServerProcessingState" = "Server Processing..."; "Scene.Compose.Attachment.UploadFailed" = "Upload Failed"; "Scene.Compose.Attachment.Video" = "video"; "Scene.Compose.AutoComplete.SpaceToAdd" = "Brùth air Space gus a chur ris"; @@ -192,6 +196,8 @@ a luchdadh suas gu Mastodon."; "Scene.Compose.Poll.OptionNumber" = "Roghainn %ld"; "Scene.Compose.Poll.SevenDays" = "Seachdain"; "Scene.Compose.Poll.SixHours" = "6 uairean a thìde"; +"Scene.Compose.Poll.ThePollHasEmptyOption" = "The poll has empty option"; +"Scene.Compose.Poll.ThePollIsInvalid" = "The poll is invalid"; "Scene.Compose.Poll.ThirtyMinutes" = "Leth-uair a thìde"; "Scene.Compose.Poll.ThreeDays" = "3 làithean"; "Scene.Compose.ReplyingToUser" = "a’ freagairt gu %@"; @@ -234,6 +240,9 @@ a luchdadh suas gu Mastodon."; "Scene.HomeTimeline.NavigationBarState.Published" = "Chaidh fhoillseachadh!"; "Scene.HomeTimeline.NavigationBarState.Publishing" = "A’ foillseachadh a’ phuist…"; "Scene.HomeTimeline.Title" = "Dachaigh"; +"Scene.Login.ServerSearchField.Placeholder" = "Enter URL or search for your server"; +"Scene.Login.Subtitle" = "Log you in on the server you created your account on."; +"Scene.Login.Title" = "Welcome back"; "Scene.Notification.FollowRequest.Accept" = "Gabh ris"; "Scene.Notification.FollowRequest.Accepted" = "Air a ghabhail ris"; "Scene.Notification.FollowRequest.Reject" = "diùlt"; @@ -261,6 +270,8 @@ a luchdadh suas gu Mastodon."; "Scene.Profile.Fields.AddRow" = "Cuir ràgh ris"; "Scene.Profile.Fields.Placeholder.Content" = "Susbaint"; "Scene.Profile.Fields.Placeholder.Label" = "Leubail"; +"Scene.Profile.Fields.Verified.Long" = "Ownership of this link was checked on %@"; +"Scene.Profile.Fields.Verified.Short" = "Verified on %@"; "Scene.Profile.Header.FollowsYou" = "’Gad leantainn"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Dearbh bacadh %@"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Bac an cunntas"; @@ -393,13 +404,11 @@ a luchdadh suas gu Mastodon."; "Scene.ServerPicker.EmptyState.BadNetwork" = "Chaidh rudeigin ceàrr le luchdadh an dàta. Thoir sùil air a’ cheangal agad ris an eadar-lìon."; "Scene.ServerPicker.EmptyState.FindingServers" = "A’ lorg nam frithealaichean ri am faighinn…"; "Scene.ServerPicker.EmptyState.NoResults" = "Gun toradh"; -"Scene.ServerPicker.Input.Placeholder" = "Lorg frithealaiche"; -"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "Lorg frithealaiche no cuir a-steach URL"; +"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "Search communities or enter URL"; "Scene.ServerPicker.Label.Category" = "ROINN-SEÒRSA"; "Scene.ServerPicker.Label.Language" = "CÀNAN"; "Scene.ServerPicker.Label.Users" = "CLEACHDAICHEAN"; -"Scene.ServerPicker.Subtitle" = "Tagh frithealaiche stèidhichte air d’ ùidhean, air far a bheil thu no fear coitcheann."; -"Scene.ServerPicker.SubtitleExtend" = "Tagh frithealaiche stèidhichte air d’ ùidhean, air far a bheil thu no fear coitcheann. Tha gach frithealaiche fo stiùireadh buidhinn no neach neo-eisimeilich fa leth."; +"Scene.ServerPicker.Subtitle" = "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers."; "Scene.ServerPicker.Title" = "Tha cleachdaichean Mhastodon air iomadh frithealaiche eadar-dhealaichte."; "Scene.ServerRules.Button.Confirm" = "Gabhaidh mi ris"; "Scene.ServerRules.PrivacyPolicy" = "poileasaidh prìobhaideachd"; diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/gd.lproj/Localizable.stringsdict b/MastodonSDK/Sources/MastodonLocalization/Resources/gd.lproj/Localizable.stringsdict index d0ccb5f41..45ba1e156 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/gd.lproj/Localizable.stringsdict +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/gd.lproj/Localizable.stringsdict @@ -62,6 +62,26 @@ %ld caractar + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + %#@character_count@ left + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 character + two + %ld characters + few + %ld characters + other + %ld characters + + plural.count.followed_by_and_mutual NSStringLocalizedFormatKey diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/gl.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/gl.lproj/Localizable.strings index 3087f33c5..b388ad5c3 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/gl.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/gl.lproj/Localizable.strings @@ -55,8 +55,8 @@ Comproba a conexión a internet."; "Common.Controls.Actions.Share" = "Compartir"; "Common.Controls.Actions.SharePost" = "Compartir publicación"; "Common.Controls.Actions.ShareUser" = "Compartir %@"; -"Common.Controls.Actions.SignIn" = "Acceder"; -"Common.Controls.Actions.SignUp" = "Inscribirse"; +"Common.Controls.Actions.SignIn" = "Log in"; +"Common.Controls.Actions.SignUp" = "Create account"; "Common.Controls.Actions.Skip" = "Omitir"; "Common.Controls.Actions.TakePhoto" = "Facer foto"; "Common.Controls.Actions.TryAgain" = "Intentar de novo"; @@ -161,16 +161,20 @@ Así se ve o teu perfil."; "Scene.Compose.Accessibility.CustomEmojiPicker" = "Selector emoji personalizado"; "Scene.Compose.Accessibility.DisableContentWarning" = "Retirar Aviso sobre o contido"; "Scene.Compose.Accessibility.EnableContentWarning" = "Marcar con Aviso sobre o contido"; +"Scene.Compose.Accessibility.PostOptions" = "Opcións da publicación"; "Scene.Compose.Accessibility.PostVisibilityMenu" = "Visibilidade da publicación"; +"Scene.Compose.Accessibility.PostingAs" = "Publicando como %@"; "Scene.Compose.Accessibility.RemovePoll" = "Eliminar enquisa"; "Scene.Compose.Attachment.AttachmentBroken" = "Este %@ está estragado e non pode ser subido a Mastodon."; "Scene.Compose.Attachment.AttachmentTooLarge" = "Adxunto demasiado grande"; "Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Non se recoñece o tipo de multimedia"; +"Scene.Compose.Attachment.CompressingState" = "Comprimindo..."; "Scene.Compose.Attachment.DescriptionPhoto" = "Describe a foto para persoas con problemas visuais..."; "Scene.Compose.Attachment.DescriptionVideo" = "Describe o vídeo para persoas con problemas visuais..."; "Scene.Compose.Attachment.LoadFailed" = "Fallou a carga"; "Scene.Compose.Attachment.Photo" = "foto"; +"Scene.Compose.Attachment.ServerProcessingState" = "Procesando no servidor..."; "Scene.Compose.Attachment.UploadFailed" = "Erro na subida"; "Scene.Compose.Attachment.Video" = "vídeo"; "Scene.Compose.AutoComplete.SpaceToAdd" = "Barra de espazo engade"; @@ -192,6 +196,8 @@ ser subido a Mastodon."; "Scene.Compose.Poll.OptionNumber" = "Opción %ld"; "Scene.Compose.Poll.SevenDays" = "7 Días"; "Scene.Compose.Poll.SixHours" = "6 Horas"; +"Scene.Compose.Poll.ThePollHasEmptyOption" = "A enquisa ten unha opción baleira"; +"Scene.Compose.Poll.ThePollIsInvalid" = "A enquisa non é válida"; "Scene.Compose.Poll.ThirtyMinutes" = "30 minutos"; "Scene.Compose.Poll.ThreeDays" = "3 Días"; "Scene.Compose.ReplyingToUser" = "en resposta a %@"; @@ -234,6 +240,9 @@ ser subido a Mastodon."; "Scene.HomeTimeline.NavigationBarState.Published" = "Publicado!"; "Scene.HomeTimeline.NavigationBarState.Publishing" = "Publicando..."; "Scene.HomeTimeline.Title" = "Inicio"; +"Scene.Login.ServerSearchField.Placeholder" = "Enter URL or search for your server"; +"Scene.Login.Subtitle" = "Log you in on the server you created your account on."; +"Scene.Login.Title" = "Welcome back"; "Scene.Notification.FollowRequest.Accept" = "Aceptar"; "Scene.Notification.FollowRequest.Accepted" = "Aceptada"; "Scene.Notification.FollowRequest.Reject" = "rexeitar"; @@ -261,6 +270,8 @@ ser subido a Mastodon."; "Scene.Profile.Fields.AddRow" = "Engadir fila"; "Scene.Profile.Fields.Placeholder.Content" = "Contido"; "Scene.Profile.Fields.Placeholder.Label" = "Etiqueta"; +"Scene.Profile.Fields.Verified.Long" = "A propiedade desta ligazón foi verificada o %@"; +"Scene.Profile.Fields.Verified.Short" = "Verificada en %@"; "Scene.Profile.Header.FollowsYou" = "Séguete"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Confirma o bloqueo de %@"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Bloquear Conta"; @@ -393,13 +404,11 @@ ser subido a Mastodon."; "Scene.ServerPicker.EmptyState.BadNetwork" = "Algo fallou ao cargar os datos. Comproba a conexión a internet."; "Scene.ServerPicker.EmptyState.FindingServers" = "Buscando servidores dispoñibles..."; "Scene.ServerPicker.EmptyState.NoResults" = "Sen resultados"; -"Scene.ServerPicker.Input.Placeholder" = "Buscar comunidades"; -"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "Busca un servidor ou escribe URL"; +"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "Search communities or enter URL"; "Scene.ServerPicker.Label.Category" = "CATEGORÍA"; "Scene.ServerPicker.Label.Language" = "IDIOMA"; "Scene.ServerPicker.Label.Users" = "USUARIAS"; -"Scene.ServerPicker.Subtitle" = "Elixe unha comunidade en función dos teus intereses, rexión ou unha de propósito xeral."; -"Scene.ServerPicker.SubtitleExtend" = "Elixe unha comunidade en función dos teus intereses, rexión ou unha de propósito xeral. Cada comunidade está xestionada por unha organización totalmente independente ou unha única persoa."; +"Scene.ServerPicker.Subtitle" = "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers."; "Scene.ServerPicker.Title" = "Mastodon fórmano as persoas das diferentes comunidades."; "Scene.ServerRules.Button.Confirm" = "Acepto"; "Scene.ServerRules.PrivacyPolicy" = "polícica de privacidade"; diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/gl.lproj/Localizable.stringsdict b/MastodonSDK/Sources/MastodonLocalization/Resources/gl.lproj/Localizable.stringsdict index ff9d87c18..51b146ed4 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/gl.lproj/Localizable.stringsdict +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/gl.lproj/Localizable.stringsdict @@ -50,6 +50,22 @@ %ld caracteres + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + %#@character_count@ restantes + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 caracter + other + %ld caracteres + + plural.count.followed_by_and_mutual NSStringLocalizedFormatKey diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/it.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/it.lproj/Localizable.strings index 8f99028ed..fab67c38d 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/it.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/it.lproj/Localizable.strings @@ -56,7 +56,7 @@ Per favore verifica la tua connessione internet."; "Common.Controls.Actions.SharePost" = "Condividi il post"; "Common.Controls.Actions.ShareUser" = "Condividi %@"; "Common.Controls.Actions.SignIn" = "Accedi"; -"Common.Controls.Actions.SignUp" = "Registrati"; +"Common.Controls.Actions.SignUp" = "Crea un account"; "Common.Controls.Actions.Skip" = "Salta"; "Common.Controls.Actions.TakePhoto" = "Scatta foto"; "Common.Controls.Actions.TryAgain" = "Riprova"; @@ -161,16 +161,20 @@ Il tuo profilo sembra questo per loro."; "Scene.Compose.Accessibility.CustomEmojiPicker" = "Selettore Emoji personalizzato"; "Scene.Compose.Accessibility.DisableContentWarning" = "Disabilita avviso di contenuti"; "Scene.Compose.Accessibility.EnableContentWarning" = "Abilita avvertimento contenuti"; +"Scene.Compose.Accessibility.PostOptions" = "Opzioni del messaggio"; "Scene.Compose.Accessibility.PostVisibilityMenu" = "Menu di visibilità del post"; +"Scene.Compose.Accessibility.PostingAs" = "Pubblicazione come %@"; "Scene.Compose.Accessibility.RemovePoll" = "Elimina sondaggio"; "Scene.Compose.Attachment.AttachmentBroken" = "Questo %@ è rotto e non può essere caricato su Mastodon."; "Scene.Compose.Attachment.AttachmentTooLarge" = "Allegato troppo grande"; "Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Impossibile riconoscere questo allegato multimediale"; +"Scene.Compose.Attachment.CompressingState" = "Compressione in corso..."; "Scene.Compose.Attachment.DescriptionPhoto" = "Descrivi la foto per gli utenti ipovedenti..."; "Scene.Compose.Attachment.DescriptionVideo" = "Descrivi il filmato per gli utenti ipovedenti..."; "Scene.Compose.Attachment.LoadFailed" = "Caricamento fallito"; "Scene.Compose.Attachment.Photo" = "foto"; +"Scene.Compose.Attachment.ServerProcessingState" = "Elaborazione del server in corso..."; "Scene.Compose.Attachment.UploadFailed" = "Caricamento fallito"; "Scene.Compose.Attachment.Video" = "filmato"; "Scene.Compose.AutoComplete.SpaceToAdd" = "Spazio da aggiungere"; @@ -192,6 +196,8 @@ caricato su Mastodon."; "Scene.Compose.Poll.OptionNumber" = "Opzione %ld"; "Scene.Compose.Poll.SevenDays" = "7 giorni"; "Scene.Compose.Poll.SixHours" = "6 ore"; +"Scene.Compose.Poll.ThePollHasEmptyOption" = "Il sondaggio ha un'opzione vuota"; +"Scene.Compose.Poll.ThePollIsInvalid" = "Il sondaggio non è valido"; "Scene.Compose.Poll.ThirtyMinutes" = "30 minuti"; "Scene.Compose.Poll.ThreeDays" = "3 giorni"; "Scene.Compose.ReplyingToUser" = "rispondendo a %@"; @@ -234,6 +240,9 @@ caricato su Mastodon."; "Scene.HomeTimeline.NavigationBarState.Published" = "Pubblicato!"; "Scene.HomeTimeline.NavigationBarState.Publishing" = "Pubblicazione post..."; "Scene.HomeTimeline.Title" = "Inizio"; +"Scene.Login.ServerSearchField.Placeholder" = "Inserisci l'URL o cerca il tuo server"; +"Scene.Login.Subtitle" = "Accedi al server sul quale hai creato il tuo account."; +"Scene.Login.Title" = "Bentornato/a"; "Scene.Notification.FollowRequest.Accept" = "Accetta"; "Scene.Notification.FollowRequest.Accepted" = "Richiesta accettata"; "Scene.Notification.FollowRequest.Reject" = "rifiuta"; @@ -261,6 +270,8 @@ caricato su Mastodon."; "Scene.Profile.Fields.AddRow" = "Aggiungi riga"; "Scene.Profile.Fields.Placeholder.Content" = "Contenuto"; "Scene.Profile.Fields.Placeholder.Label" = "Etichetta"; +"Scene.Profile.Fields.Verified.Long" = "La proprietà di questo collegamento è stata verificata il %@"; +"Scene.Profile.Fields.Verified.Short" = "Verificato il %@"; "Scene.Profile.Header.FollowsYou" = "Ti segue"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Confermi di bloccare %@"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Blocca account"; @@ -393,13 +404,11 @@ caricato su Mastodon."; "Scene.ServerPicker.EmptyState.BadNetwork" = "Qualcosa è andato storto durante il caricamento dei dati. Controlla la tua connessione internet."; "Scene.ServerPicker.EmptyState.FindingServers" = "Ricerca server disponibili..."; "Scene.ServerPicker.EmptyState.NoResults" = "Nessun risultato"; -"Scene.ServerPicker.Input.Placeholder" = "Cerca comunità"; -"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "Cerca i server o inserisci l'URL"; +"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "Cerca le comunità o inserisci l'URL"; "Scene.ServerPicker.Label.Category" = "CATEGORIA"; "Scene.ServerPicker.Label.Language" = "LINGUA"; "Scene.ServerPicker.Label.Users" = "UTENTI"; -"Scene.ServerPicker.Subtitle" = "Scegli una comunità basata sui tuoi interessi, regione o uno scopo generale."; -"Scene.ServerPicker.SubtitleExtend" = "Scegli una comunità basata sui tuoi interessi, regione o uno scopo generale. Ogni comunità è gestita da un'organizzazione completamente indipendente o individuale."; +"Scene.ServerPicker.Subtitle" = "Scegli un server in base alla tua regione, ai tuoi interessi o uno generico. Puoi comunque chattare con chiunque su Mastodon, indipendentemente dai tuoi server."; "Scene.ServerPicker.Title" = "Mastodon è fatto di utenti in diverse comunità."; "Scene.ServerRules.Button.Confirm" = "Accetto"; "Scene.ServerRules.PrivacyPolicy" = "privacy policy"; diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/it.lproj/Localizable.stringsdict b/MastodonSDK/Sources/MastodonLocalization/Resources/it.lproj/Localizable.stringsdict index 38f986521..3a8549914 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/it.lproj/Localizable.stringsdict +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/it.lproj/Localizable.stringsdict @@ -50,6 +50,22 @@ %ld caratteri + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + %#@character_count@ rimanenti + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 carattere + other + %ld caratteri + + plural.count.followed_by_and_mutual NSStringLocalizedFormatKey diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/ja.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/ja.lproj/Localizable.strings index cad44f531..01701dfc2 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/ja.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/ja.lproj/Localizable.strings @@ -55,8 +55,8 @@ "Common.Controls.Actions.Share" = "共有"; "Common.Controls.Actions.SharePost" = "投稿を共有"; "Common.Controls.Actions.ShareUser" = "%@を共有"; -"Common.Controls.Actions.SignIn" = "サインイン"; -"Common.Controls.Actions.SignUp" = "サインアップ"; +"Common.Controls.Actions.SignIn" = "Log in"; +"Common.Controls.Actions.SignUp" = "Create account"; "Common.Controls.Actions.Skip" = "スキップ"; "Common.Controls.Actions.TakePhoto" = "写真を撮る"; "Common.Controls.Actions.TryAgain" = "再実行"; @@ -157,15 +157,19 @@ "Scene.Compose.Accessibility.CustomEmojiPicker" = "カスタム絵文字ピッカー"; "Scene.Compose.Accessibility.DisableContentWarning" = "閲覧注意を無効にする"; "Scene.Compose.Accessibility.EnableContentWarning" = "閲覧注意を有効にする"; +"Scene.Compose.Accessibility.PostOptions" = "Post Options"; "Scene.Compose.Accessibility.PostVisibilityMenu" = "投稿の表示メニュー"; +"Scene.Compose.Accessibility.PostingAs" = "Posting as %@"; "Scene.Compose.Accessibility.RemovePoll" = "投票を消去"; "Scene.Compose.Attachment.AttachmentBroken" = "%@は壊れていてMastodonにアップロードできません。"; "Scene.Compose.Attachment.AttachmentTooLarge" = "Attachment too large"; -"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Can not regonize this media attachment"; +"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Can not recognize this media attachment"; +"Scene.Compose.Attachment.CompressingState" = "Compressing..."; "Scene.Compose.Attachment.DescriptionPhoto" = "閲覧が難しいユーザーへの画像説明"; "Scene.Compose.Attachment.DescriptionVideo" = "閲覧が難しいユーザーへの映像説明"; "Scene.Compose.Attachment.LoadFailed" = "Load Failed"; "Scene.Compose.Attachment.Photo" = "写真"; +"Scene.Compose.Attachment.ServerProcessingState" = "Server Processing..."; "Scene.Compose.Attachment.UploadFailed" = "Upload Failed"; "Scene.Compose.Attachment.Video" = "動画"; "Scene.Compose.AutoComplete.SpaceToAdd" = "スペースを追加"; @@ -187,6 +191,8 @@ "Scene.Compose.Poll.OptionNumber" = "オプション %ld"; "Scene.Compose.Poll.SevenDays" = "7日"; "Scene.Compose.Poll.SixHours" = "6時間"; +"Scene.Compose.Poll.ThePollHasEmptyOption" = "The poll has empty option"; +"Scene.Compose.Poll.ThePollIsInvalid" = "The poll is invalid"; "Scene.Compose.Poll.ThirtyMinutes" = "30分"; "Scene.Compose.Poll.ThreeDays" = "3日"; "Scene.Compose.ReplyingToUser" = "%@に返信"; @@ -229,6 +235,9 @@ "Scene.HomeTimeline.NavigationBarState.Published" = "投稿しました!"; "Scene.HomeTimeline.NavigationBarState.Publishing" = "投稿中..."; "Scene.HomeTimeline.Title" = "ホーム"; +"Scene.Login.ServerSearchField.Placeholder" = "Enter URL or search for your server"; +"Scene.Login.Subtitle" = "Log you in on the server you created your account on."; +"Scene.Login.Title" = "Welcome back"; "Scene.Notification.FollowRequest.Accept" = "承認"; "Scene.Notification.FollowRequest.Accepted" = "承諾済み"; "Scene.Notification.FollowRequest.Reject" = "拒否"; @@ -256,6 +265,8 @@ "Scene.Profile.Fields.AddRow" = "行追加"; "Scene.Profile.Fields.Placeholder.Content" = "コンテンツ"; "Scene.Profile.Fields.Placeholder.Label" = "ラベル"; +"Scene.Profile.Fields.Verified.Long" = "Ownership of this link was checked on %@"; +"Scene.Profile.Fields.Verified.Short" = "Verified on %@"; "Scene.Profile.Header.FollowsYou" = "フォローされています"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "%@をブロックしますか?"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "アカウントをブロック"; @@ -388,13 +399,11 @@ "Scene.ServerPicker.EmptyState.BadNetwork" = "データの読み込み中に何か問題が発生しました。インターネットの接続状況を確認してください。"; "Scene.ServerPicker.EmptyState.FindingServers" = "利用可能なサーバーの検索..."; "Scene.ServerPicker.EmptyState.NoResults" = "なし"; -"Scene.ServerPicker.Input.Placeholder" = "サーバーを探す"; -"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "サーバーを検索またはURLを入力"; +"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "Search communities or enter URL"; "Scene.ServerPicker.Label.Category" = "カテゴリー"; "Scene.ServerPicker.Label.Language" = "言語"; "Scene.ServerPicker.Label.Users" = "ユーザー"; -"Scene.ServerPicker.Subtitle" = "あなたの興味分野・地域に合ったコミュニティや、汎用のものを選択してください。"; -"Scene.ServerPicker.SubtitleExtend" = "あなたの興味分野・地域に合ったコミュニティや、汎用のものを選択してください。各コミュニティはそれぞれ完全に独立した組織や個人によって運営されています。"; +"Scene.ServerPicker.Subtitle" = "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers."; "Scene.ServerPicker.Title" = "サーバーを選択"; "Scene.ServerRules.Button.Confirm" = "同意する"; "Scene.ServerRules.PrivacyPolicy" = "プライバシーポリシー"; diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/ja.lproj/Localizable.stringsdict b/MastodonSDK/Sources/MastodonLocalization/Resources/ja.lproj/Localizable.stringsdict index cbc999738..795a971b7 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/ja.lproj/Localizable.stringsdict +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/ja.lproj/Localizable.stringsdict @@ -44,6 +44,20 @@ %ld 文字 + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + %#@character_count@ left + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + other + %ld characters + + plural.count.followed_by_and_mutual NSStringLocalizedFormatKey diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/kab.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/kab.lproj/Localizable.strings index 03108a25a..c80c8ef77 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/kab.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/kab.lproj/Localizable.strings @@ -55,8 +55,8 @@ Ma ulac aɣilif, senqed tuqqna-inek internet."; "Common.Controls.Actions.Share" = "Bḍu"; "Common.Controls.Actions.SharePost" = "Bḍu tasuffeɣt"; "Common.Controls.Actions.ShareUser" = "Bḍu %@"; -"Common.Controls.Actions.SignIn" = "Qqen"; -"Common.Controls.Actions.SignUp" = "Jerred amiḍan"; +"Common.Controls.Actions.SignIn" = "Log in"; +"Common.Controls.Actions.SignUp" = "Create account"; "Common.Controls.Actions.Skip" = "Zgel"; "Common.Controls.Actions.TakePhoto" = "Ṭṭef tawlaft"; "Common.Controls.Actions.TryAgain" = "Ɛreḍ tikkelt-nniḍen"; @@ -161,16 +161,20 @@ Akka i as-d-yettban umaɣnu-inek."; "Scene.Compose.Accessibility.CustomEmojiPicker" = "Amefran n yimujiten udmawanen"; "Scene.Compose.Accessibility.DisableContentWarning" = "Sens alɣu n ugbur"; "Scene.Compose.Accessibility.EnableContentWarning" = "Rmed alɣu n ugbur"; +"Scene.Compose.Accessibility.PostOptions" = "Post Options"; "Scene.Compose.Accessibility.PostVisibilityMenu" = "Umuɣ n ubani n tsuffeɣt"; +"Scene.Compose.Accessibility.PostingAs" = "Posting as %@"; "Scene.Compose.Accessibility.RemovePoll" = "Kkes asenqed"; "Scene.Compose.Attachment.AttachmentBroken" = "%@-a yerreẓ, ur yezmir ara Ad d-yettwasali ɣef Mastodon."; "Scene.Compose.Attachment.AttachmentTooLarge" = "Attachment too large"; -"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Can not regonize this media attachment"; +"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Can not recognize this media attachment"; +"Scene.Compose.Attachment.CompressingState" = "Compressing..."; "Scene.Compose.Attachment.DescriptionPhoto" = "Glem-d tawlaft i wid yesɛan ugur deg yiẓri..."; "Scene.Compose.Attachment.DescriptionVideo" = "Glem-d tavidyut i wid yesɛan ugur deg yiẓri..."; "Scene.Compose.Attachment.LoadFailed" = "Load Failed"; "Scene.Compose.Attachment.Photo" = "tawlaft"; +"Scene.Compose.Attachment.ServerProcessingState" = "Server Processing..."; "Scene.Compose.Attachment.UploadFailed" = "Upload Failed"; "Scene.Compose.Attachment.Video" = "tavidyutt"; "Scene.Compose.AutoComplete.SpaceToAdd" = "Tallunt ara yettwarnun"; @@ -192,6 +196,8 @@ Ad d-yettwasali ɣef Mastodon."; "Scene.Compose.Poll.OptionNumber" = "Taxtiṛt %ld"; "Scene.Compose.Poll.SevenDays" = "7 n wussan"; "Scene.Compose.Poll.SixHours" = "6 n yisragen"; +"Scene.Compose.Poll.ThePollHasEmptyOption" = "The poll has empty option"; +"Scene.Compose.Poll.ThePollIsInvalid" = "The poll is invalid"; "Scene.Compose.Poll.ThirtyMinutes" = "30 n tesdatin"; "Scene.Compose.Poll.ThreeDays" = "3 n wussan"; "Scene.Compose.ReplyingToUser" = "tiririt ɣef %@"; @@ -234,6 +240,9 @@ Ad d-yettwasali ɣef Mastodon."; "Scene.HomeTimeline.NavigationBarState.Published" = "Yettwasuffeɣ!"; "Scene.HomeTimeline.NavigationBarState.Publishing" = "Asuffeɣ tasuffeɣt..."; "Scene.HomeTimeline.Title" = "Agejdan"; +"Scene.Login.ServerSearchField.Placeholder" = "Enter URL or search for your server"; +"Scene.Login.Subtitle" = "Log you in on the server you created your account on."; +"Scene.Login.Title" = "Welcome back"; "Scene.Notification.FollowRequest.Accept" = "Accept"; "Scene.Notification.FollowRequest.Accepted" = "Accepted"; "Scene.Notification.FollowRequest.Reject" = "agi"; @@ -261,6 +270,8 @@ Ad d-yettwasali ɣef Mastodon."; "Scene.Profile.Fields.AddRow" = "Rnu izirig"; "Scene.Profile.Fields.Placeholder.Content" = "Agbur"; "Scene.Profile.Fields.Placeholder.Label" = "Tabzimt"; +"Scene.Profile.Fields.Verified.Long" = "Ownership of this link was checked on %@"; +"Scene.Profile.Fields.Verified.Short" = "Verified on %@"; "Scene.Profile.Header.FollowsYou" = "Yeṭṭafaṛ-ik•im"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Sentem asewḥel n %@"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Sewḥel amiḍan"; @@ -393,13 +404,11 @@ Ad d-yettwasali ɣef Mastodon."; "Scene.ServerPicker.EmptyState.BadNetwork" = "Tella-d tuccḍa lawan n usali n yisefka. Senqed tuqqna-ink internet."; "Scene.ServerPicker.EmptyState.FindingServers" = "Tifin n yiqeddacen yellan..."; "Scene.ServerPicker.EmptyState.NoResults" = "Ulac igemmaḍ"; -"Scene.ServerPicker.Input.Placeholder" = "Nadi timɣiwnin"; -"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "Nadi timɣiwnin neɣ sekcem URL"; +"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "Search communities or enter URL"; "Scene.ServerPicker.Label.Category" = "TAGGAYT"; "Scene.ServerPicker.Label.Language" = "TUTLAYT"; "Scene.ServerPicker.Label.Users" = "ISEQDACEN"; -"Scene.ServerPicker.Subtitle" = "Fren tamɣiwent almend n wayen tḥemmleḍ, n tmurt-ik neɣ n yiswi-inek amatu."; -"Scene.ServerPicker.SubtitleExtend" = "Fren tamɣiwent almend n wayen tḥemmleḍ, n tmurt-ik neɣ n yiswi-inek amatu. Yal tamɣiwent tsedday-itt tkebbanit neɣ amdan ilelliyen."; +"Scene.ServerPicker.Subtitle" = "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers."; "Scene.ServerPicker.Title" = "Mastodon yettwaxdem i yiseqdacen deg waṭas n temɣiwnin."; "Scene.ServerRules.Button.Confirm" = "Qebleɣ"; "Scene.ServerRules.PrivacyPolicy" = "tasertit tabaḍnit"; diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/kab.lproj/Localizable.stringsdict b/MastodonSDK/Sources/MastodonLocalization/Resources/kab.lproj/Localizable.stringsdict index 7fc6a50bb..fd7cac605 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/kab.lproj/Localizable.stringsdict +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/kab.lproj/Localizable.stringsdict @@ -50,6 +50,22 @@ %ld yisekkilen + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + %#@character_count@ left + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 character + other + %ld characters + + plural.count.followed_by_and_mutual NSStringLocalizedFormatKey diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/ku.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/ku.lproj/Localizable.strings index 10d88488a..758a9190b 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/ku.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/ku.lproj/Localizable.strings @@ -55,8 +55,8 @@ Jkx girêdana înternetê xwe kontrol bike."; "Common.Controls.Actions.Share" = "Parve bike"; "Common.Controls.Actions.SharePost" = "Şandiyê parve bike"; "Common.Controls.Actions.ShareUser" = "%@ parve bike"; -"Common.Controls.Actions.SignIn" = "Têkeve"; -"Common.Controls.Actions.SignUp" = "Tomar bibe"; +"Common.Controls.Actions.SignIn" = "Log in"; +"Common.Controls.Actions.SignUp" = "Create account"; "Common.Controls.Actions.Skip" = "Derbas bike"; "Common.Controls.Actions.TakePhoto" = "Wêne bikişîne"; "Common.Controls.Actions.TryAgain" = "Dîsa biceribîne"; @@ -161,16 +161,20 @@ Profîla te ji wan ra wiha xuya dike."; "Scene.Compose.Accessibility.CustomEmojiPicker" = "Hilbijêrê emojî yên kesanekirî"; "Scene.Compose.Accessibility.DisableContentWarning" = "Hişyariya naverokê neçalak bike"; "Scene.Compose.Accessibility.EnableContentWarning" = "Hişyariya naverokê çalak bike"; +"Scene.Compose.Accessibility.PostOptions" = "Vebijêrkên şandiyê"; "Scene.Compose.Accessibility.PostVisibilityMenu" = "Kulîna xuyabûna şandiyê"; +"Scene.Compose.Accessibility.PostingAs" = "Biweşîne wekî %@"; "Scene.Compose.Accessibility.RemovePoll" = "Rapirsî rake"; "Scene.Compose.Attachment.AttachmentBroken" = "Ev %@ naxebite û nayê barkirin li ser Mastodon."; "Scene.Compose.Attachment.AttachmentTooLarge" = "Pêvek pir mezin e"; "Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Nikare ev pêveka medyayê nas bike"; +"Scene.Compose.Attachment.CompressingState" = "Tê guvaştin..."; "Scene.Compose.Attachment.DescriptionPhoto" = "Wêneyê ji bo kêmbînên dîtbar bide nasîn..."; "Scene.Compose.Attachment.DescriptionVideo" = "Vîdyoyê ji bo kêmbînên dîtbar bide nasîn..."; "Scene.Compose.Attachment.LoadFailed" = "Barkirin têk çû"; "Scene.Compose.Attachment.Photo" = "wêne"; +"Scene.Compose.Attachment.ServerProcessingState" = "Pêvajoya rajekar pêş de diçe..."; "Scene.Compose.Attachment.UploadFailed" = "Barkirin têk çû"; "Scene.Compose.Attachment.Video" = "vîdyo"; "Scene.Compose.AutoComplete.SpaceToAdd" = "Bicîhkirinê tevlî bike"; @@ -192,6 +196,8 @@ Profîla te ji wan ra wiha xuya dike."; "Scene.Compose.Poll.OptionNumber" = "Vebijêrk %ld"; "Scene.Compose.Poll.SevenDays" = "7 Roj"; "Scene.Compose.Poll.SixHours" = "6 Demjimêr"; +"Scene.Compose.Poll.ThePollHasEmptyOption" = "Vebijêrkên vê dengdayînê vala ne"; +"Scene.Compose.Poll.ThePollIsInvalid" = "Ev dengdayîn ne derbasdar e"; "Scene.Compose.Poll.ThirtyMinutes" = "30 xulek"; "Scene.Compose.Poll.ThreeDays" = "3 Roj"; "Scene.Compose.ReplyingToUser" = "bersiv bide %@"; @@ -235,6 +241,9 @@ girêdanê bitikne da ku ajimêra xwe bidî piştrastkirin."; "Scene.HomeTimeline.NavigationBarState.Published" = "Hate weşandin!"; "Scene.HomeTimeline.NavigationBarState.Publishing" = "Şandî tê weşandin..."; "Scene.HomeTimeline.Title" = "Serrûpel"; +"Scene.Login.ServerSearchField.Placeholder" = "Enter URL or search for your server"; +"Scene.Login.Subtitle" = "Log you in on the server you created your account on."; +"Scene.Login.Title" = "Welcome back"; "Scene.Notification.FollowRequest.Accept" = "Bipejirîne"; "Scene.Notification.FollowRequest.Accepted" = "Pejirandî"; "Scene.Notification.FollowRequest.Reject" = "nepejirîne"; @@ -262,6 +271,8 @@ girêdanê bitikne da ku ajimêra xwe bidî piştrastkirin."; "Scene.Profile.Fields.AddRow" = "Rêzê tevlî bike"; "Scene.Profile.Fields.Placeholder.Content" = "Naverok"; "Scene.Profile.Fields.Placeholder.Label" = "Nîşan"; +"Scene.Profile.Fields.Verified.Long" = "Xwedaniya li vê girêdanê di %@ de hatiye kontrolkirin"; +"Scene.Profile.Fields.Verified.Short" = "Hate piştrastkirin li ser %@"; "Scene.Profile.Header.FollowsYou" = "Te dişopîne"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Ji bo rakirina astengkirinê %@ bipejirîne"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Ajimêr asteng bike"; @@ -394,13 +405,11 @@ girêdanê bitikne da ku ajimêra xwe bidî piştrastkirin."; "Scene.ServerPicker.EmptyState.BadNetwork" = "Di dema barkirina daneyan da çewtî derket. Girêdana xwe ya înternetê kontrol bike."; "Scene.ServerPicker.EmptyState.FindingServers" = "Peydakirina rajekarên berdest..."; "Scene.ServerPicker.EmptyState.NoResults" = "Encam tune"; -"Scene.ServerPicker.Input.Placeholder" = "Li rajekaran bigere"; -"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "Li rajekaran bigere an jî girêdanê têxe"; +"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "Search communities or enter URL"; "Scene.ServerPicker.Label.Category" = "BEŞ"; "Scene.ServerPicker.Label.Language" = "ZIMAN"; "Scene.ServerPicker.Label.Users" = "BIKARHÊNER"; -"Scene.ServerPicker.Subtitle" = "Li gorî berjewendî, herêm, an jî armancek gelemperî civakekê hilbijêre."; -"Scene.ServerPicker.SubtitleExtend" = "Li gorî berjewendî, herêm, an jî armancek gelemperî civakekê hilbijêre. Her civakek ji hêla rêxistinek an kesek bi tevahî serbixwe ve tê xebitandin."; +"Scene.ServerPicker.Subtitle" = "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers."; "Scene.ServerPicker.Title" = "Mastodon ji bikarhênerên di civakên cuda de pêk tê."; "Scene.ServerRules.Button.Confirm" = "Ez dipejirînim"; "Scene.ServerRules.PrivacyPolicy" = "polîtikaya nihêniyê"; diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/ku.lproj/Localizable.stringsdict b/MastodonSDK/Sources/MastodonLocalization/Resources/ku.lproj/Localizable.stringsdict index 77571439f..c904186d8 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/ku.lproj/Localizable.stringsdict +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/ku.lproj/Localizable.stringsdict @@ -50,6 +50,22 @@ %ld tîp + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + %#@character_count@ maye + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 peyv + other + %ld peyv + + plural.count.followed_by_and_mutual NSStringLocalizedFormatKey diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/nl.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/nl.lproj/Localizable.strings index e719583aa..0d8f1dd0f 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/nl.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/nl.lproj/Localizable.strings @@ -54,8 +54,8 @@ "Common.Controls.Actions.Share" = "Deel"; "Common.Controls.Actions.SharePost" = "Deel bericht"; "Common.Controls.Actions.ShareUser" = "Delen %@"; -"Common.Controls.Actions.SignIn" = "Aanmelden"; -"Common.Controls.Actions.SignUp" = "Registreren"; +"Common.Controls.Actions.SignIn" = "Log in"; +"Common.Controls.Actions.SignUp" = "Create account"; "Common.Controls.Actions.Skip" = "Overslaan"; "Common.Controls.Actions.TakePhoto" = "Maak foto"; "Common.Controls.Actions.TryAgain" = "Probeer Opnieuw"; @@ -156,15 +156,19 @@ Uw profiel ziet er zo uit voor hen."; "Scene.Compose.Accessibility.CustomEmojiPicker" = "Eigen Emojikiezer"; "Scene.Compose.Accessibility.DisableContentWarning" = "Inhoudswaarschuwing Uitschakelen"; "Scene.Compose.Accessibility.EnableContentWarning" = "Inhoudswaarschuwing inschakelen"; +"Scene.Compose.Accessibility.PostOptions" = "Post Options"; "Scene.Compose.Accessibility.PostVisibilityMenu" = "Berichtzichtbaarheidsmenu"; +"Scene.Compose.Accessibility.PostingAs" = "Posting as %@"; "Scene.Compose.Accessibility.RemovePoll" = "Peiling verwijderen"; "Scene.Compose.Attachment.AttachmentBroken" = "Deze %@ is corrupt en kan niet geüpload worden naar Mastodon."; "Scene.Compose.Attachment.AttachmentTooLarge" = "Attachment too large"; -"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Can not regonize this media attachment"; +"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Can not recognize this media attachment"; +"Scene.Compose.Attachment.CompressingState" = "Compressing..."; "Scene.Compose.Attachment.DescriptionPhoto" = "Omschrijf de foto voor mensen met een visuele beperking..."; "Scene.Compose.Attachment.DescriptionVideo" = "Omschrijf de video voor mensen met een visuele beperking..."; "Scene.Compose.Attachment.LoadFailed" = "Load Failed"; "Scene.Compose.Attachment.Photo" = "foto"; +"Scene.Compose.Attachment.ServerProcessingState" = "Server Processing..."; "Scene.Compose.Attachment.UploadFailed" = "Upload Failed"; "Scene.Compose.Attachment.Video" = "video"; "Scene.Compose.AutoComplete.SpaceToAdd" = "Spaties toe te voegen"; @@ -186,6 +190,8 @@ Uw profiel ziet er zo uit voor hen."; "Scene.Compose.Poll.OptionNumber" = "Optie %ld"; "Scene.Compose.Poll.SevenDays" = "7 Dagen"; "Scene.Compose.Poll.SixHours" = "6 Uur"; +"Scene.Compose.Poll.ThePollHasEmptyOption" = "The poll has empty option"; +"Scene.Compose.Poll.ThePollIsInvalid" = "The poll is invalid"; "Scene.Compose.Poll.ThirtyMinutes" = "30 minuten"; "Scene.Compose.Poll.ThreeDays" = "3 Dagen"; "Scene.Compose.ReplyingToUser" = "reageren op %@"; @@ -229,6 +235,9 @@ klik op de link om uw account te bevestigen."; "Scene.HomeTimeline.NavigationBarState.Published" = "Gepubliceerd!"; "Scene.HomeTimeline.NavigationBarState.Publishing" = "Bericht publiceren..."; "Scene.HomeTimeline.Title" = "Start"; +"Scene.Login.ServerSearchField.Placeholder" = "Enter URL or search for your server"; +"Scene.Login.Subtitle" = "Log you in on the server you created your account on."; +"Scene.Login.Title" = "Welcome back"; "Scene.Notification.FollowRequest.Accept" = "Accept"; "Scene.Notification.FollowRequest.Accepted" = "Accepted"; "Scene.Notification.FollowRequest.Reject" = "reject"; @@ -256,6 +265,8 @@ klik op de link om uw account te bevestigen."; "Scene.Profile.Fields.AddRow" = "Rij Toevoegen"; "Scene.Profile.Fields.Placeholder.Content" = "Inhoud"; "Scene.Profile.Fields.Placeholder.Label" = "Etiket"; +"Scene.Profile.Fields.Verified.Long" = "Ownership of this link was checked on %@"; +"Scene.Profile.Fields.Verified.Short" = "Verified on %@"; "Scene.Profile.Header.FollowsYou" = "Follows You"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Bevestig om %@ te blokkeren"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Blokkeer account"; @@ -388,13 +399,11 @@ klik op de link om uw account te bevestigen."; "Scene.ServerPicker.EmptyState.BadNetwork" = "Er is een fout opgetreden bij het laden van de gegevens. Controleer uw internetverbinding."; "Scene.ServerPicker.EmptyState.FindingServers" = "Beschikbare servers zoeken..."; "Scene.ServerPicker.EmptyState.NoResults" = "Geen resultaten"; -"Scene.ServerPicker.Input.Placeholder" = "Zoek uw server of sluit u bij een nieuwe server aan..."; -"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "Search servers or enter URL"; +"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "Search communities or enter URL"; "Scene.ServerPicker.Label.Category" = "CATEGORIE"; "Scene.ServerPicker.Label.Language" = "TAAL"; "Scene.ServerPicker.Label.Users" = "GEBRUIKERS"; -"Scene.ServerPicker.Subtitle" = "Kies een gemeenschap gebaseerd op jouw interesses, regio of een algemeen doel."; -"Scene.ServerPicker.SubtitleExtend" = "Kies een gemeenschap gebaseerd op jouw interesses, regio, of een algemeen doel. Elke gemeenschap wordt beheerd door een volledig onafhankelijke organisatie of individu."; +"Scene.ServerPicker.Subtitle" = "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers."; "Scene.ServerPicker.Title" = "Kies een server, welke dan ook."; "Scene.ServerRules.Button.Confirm" = "Ik Ga Akkoord"; "Scene.ServerRules.PrivacyPolicy" = "privacybeleid"; diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/nl.lproj/Localizable.stringsdict b/MastodonSDK/Sources/MastodonLocalization/Resources/nl.lproj/Localizable.stringsdict index 314600ff7..84769b0c1 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/nl.lproj/Localizable.stringsdict +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/nl.lproj/Localizable.stringsdict @@ -50,6 +50,22 @@ %ld tekens + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + %#@character_count@ left + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 character + other + %ld characters + + plural.count.followed_by_and_mutual NSStringLocalizedFormatKey diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/ru.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/ru.lproj/Localizable.strings index 65d4fa65e..2ad16cb77 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/ru.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/ru.lproj/Localizable.strings @@ -55,8 +55,8 @@ "Common.Controls.Actions.Share" = "Поделиться"; "Common.Controls.Actions.SharePost" = "Поделиться постом"; "Common.Controls.Actions.ShareUser" = "Поделиться %@"; -"Common.Controls.Actions.SignIn" = "Войти"; -"Common.Controls.Actions.SignUp" = "Зарегистрироваться"; +"Common.Controls.Actions.SignIn" = "Log in"; +"Common.Controls.Actions.SignUp" = "Create account"; "Common.Controls.Actions.Skip" = "Пропустить"; "Common.Controls.Actions.TakePhoto" = "Сделать фото"; "Common.Controls.Actions.TryAgain" = "Попробовать снова"; @@ -169,16 +169,20 @@ "Scene.Compose.Accessibility.CustomEmojiPicker" = "Меню пользовательских эмодзи"; "Scene.Compose.Accessibility.DisableContentWarning" = "Убрать предупреждение о содержании"; "Scene.Compose.Accessibility.EnableContentWarning" = "Добавить предупреждение о содержании"; +"Scene.Compose.Accessibility.PostOptions" = "Post Options"; "Scene.Compose.Accessibility.PostVisibilityMenu" = "Меню видимости поста"; +"Scene.Compose.Accessibility.PostingAs" = "Posting as %@"; "Scene.Compose.Accessibility.RemovePoll" = "Убрать опрос"; "Scene.Compose.Attachment.AttachmentBroken" = "Это %@ повреждено и не может быть отправлено в Mastodon."; "Scene.Compose.Attachment.AttachmentTooLarge" = "Attachment too large"; -"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Can not regonize this media attachment"; +"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Can not recognize this media attachment"; +"Scene.Compose.Attachment.CompressingState" = "Compressing..."; "Scene.Compose.Attachment.DescriptionPhoto" = "Опишите фото для людей с нарушениями зрения..."; "Scene.Compose.Attachment.DescriptionVideo" = "Опишите видео для людей с нарушениями зрения..."; "Scene.Compose.Attachment.LoadFailed" = "Load Failed"; "Scene.Compose.Attachment.Photo" = "изображение"; +"Scene.Compose.Attachment.ServerProcessingState" = "Server Processing..."; "Scene.Compose.Attachment.UploadFailed" = "Upload Failed"; "Scene.Compose.Attachment.Video" = "видео"; "Scene.Compose.AutoComplete.SpaceToAdd" = "Пробел, чтобы добавить"; @@ -200,6 +204,8 @@ "Scene.Compose.Poll.OptionNumber" = "Вариант %ld"; "Scene.Compose.Poll.SevenDays" = "7 дней"; "Scene.Compose.Poll.SixHours" = "6 часов"; +"Scene.Compose.Poll.ThePollHasEmptyOption" = "The poll has empty option"; +"Scene.Compose.Poll.ThePollIsInvalid" = "The poll is invalid"; "Scene.Compose.Poll.ThirtyMinutes" = "30 минут"; "Scene.Compose.Poll.ThreeDays" = "3 дня"; "Scene.Compose.ReplyingToUser" = "ответ %@"; @@ -245,6 +251,9 @@ "Scene.HomeTimeline.NavigationBarState.Published" = "Опубликовано!"; "Scene.HomeTimeline.NavigationBarState.Publishing" = "Публикуем пост..."; "Scene.HomeTimeline.Title" = "Главная"; +"Scene.Login.ServerSearchField.Placeholder" = "Enter URL or search for your server"; +"Scene.Login.Subtitle" = "Log you in on the server you created your account on."; +"Scene.Login.Title" = "Welcome back"; "Scene.Notification.FollowRequest.Accept" = "Accept"; "Scene.Notification.FollowRequest.Accepted" = "Accepted"; "Scene.Notification.FollowRequest.Reject" = "reject"; @@ -272,6 +281,8 @@ "Scene.Profile.Fields.AddRow" = "Добавить строку"; "Scene.Profile.Fields.Placeholder.Content" = "Содержимое"; "Scene.Profile.Fields.Placeholder.Label" = "Ярлык"; +"Scene.Profile.Fields.Verified.Long" = "Ownership of this link was checked on %@"; +"Scene.Profile.Fields.Verified.Short" = "Verified on %@"; "Scene.Profile.Header.FollowsYou" = "Подписан(а) на вас"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Confirm to block %@"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Block Account"; @@ -404,13 +415,11 @@ "Scene.ServerPicker.EmptyState.BadNetwork" = "Что-то пошло не так при загрузке данных. Проверьте подключение к интернету."; "Scene.ServerPicker.EmptyState.FindingServers" = "Ищем доступные сервера..."; "Scene.ServerPicker.EmptyState.NoResults" = "Нет результатов"; -"Scene.ServerPicker.Input.Placeholder" = "Найдите сервер или присоединитесь к своему..."; -"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "Поиск по серверам или ссылке"; +"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "Search communities or enter URL"; "Scene.ServerPicker.Label.Category" = "КАТЕГОРИЯ"; "Scene.ServerPicker.Label.Language" = "ЯЗЫК"; "Scene.ServerPicker.Label.Users" = "ПОЛЬЗОВАТЕЛИ"; -"Scene.ServerPicker.Subtitle" = "Выберите сообщество на основе своих интересов, региона или общей тематики."; -"Scene.ServerPicker.SubtitleExtend" = "Pick a server based on your interests, region, or a general purpose one. Each server is operated by an entirely independent organization or individual."; +"Scene.ServerPicker.Subtitle" = "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers."; "Scene.ServerPicker.Title" = "Выберите сервер, любой сервер."; "Scene.ServerRules.Button.Confirm" = "Принимаю"; diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/ru.lproj/Localizable.stringsdict b/MastodonSDK/Sources/MastodonLocalization/Resources/ru.lproj/Localizable.stringsdict index afb29a6aa..c9552a9e4 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/ru.lproj/Localizable.stringsdict +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/ru.lproj/Localizable.stringsdict @@ -62,6 +62,26 @@ %ld символа осталось + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + %#@character_count@ left + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 character + few + %ld characters + many + %ld characters + other + %ld characters + + plural.count.followed_by_and_mutual NSStringLocalizedFormatKey diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/sv.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/sv.lproj/Localizable.strings index dbba5ddda..79781cae7 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/sv.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/sv.lproj/Localizable.strings @@ -56,7 +56,7 @@ Kontrollera din internetanslutning."; "Common.Controls.Actions.SharePost" = "Dela inlägg"; "Common.Controls.Actions.ShareUser" = "Dela %@"; "Common.Controls.Actions.SignIn" = "Logga in"; -"Common.Controls.Actions.SignUp" = "Registrera dig"; +"Common.Controls.Actions.SignUp" = "Skapa konto"; "Common.Controls.Actions.Skip" = "Hoppa över"; "Common.Controls.Actions.TakePhoto" = "Ta foto"; "Common.Controls.Actions.TryAgain" = "Försök igen"; @@ -161,16 +161,20 @@ Din profil ser ut så här för dem."; "Scene.Compose.Accessibility.CustomEmojiPicker" = "Anpassad emoji-väljare"; "Scene.Compose.Accessibility.DisableContentWarning" = "Inaktivera innehållsvarning"; "Scene.Compose.Accessibility.EnableContentWarning" = "Aktivera innehållsvarning"; +"Scene.Compose.Accessibility.PostOptions" = "Inläggsalternativ"; "Scene.Compose.Accessibility.PostVisibilityMenu" = "Inläggssynlighetsmeny"; +"Scene.Compose.Accessibility.PostingAs" = "Postar som %@"; "Scene.Compose.Accessibility.RemovePoll" = "Ta bort omröstning"; "Scene.Compose.Attachment.AttachmentBroken" = "Denna %@ är trasig och kan inte laddas upp till Mastodon."; "Scene.Compose.Attachment.AttachmentTooLarge" = "Bilagan är för stor"; "Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Känner inte igen mediebilagan"; +"Scene.Compose.Attachment.CompressingState" = "Komprimerar..."; "Scene.Compose.Attachment.DescriptionPhoto" = "Beskriv fotot för synskadade..."; "Scene.Compose.Attachment.DescriptionVideo" = "Beskriv videon för de synskadade..."; "Scene.Compose.Attachment.LoadFailed" = "Det gick inte att läsa in"; "Scene.Compose.Attachment.Photo" = "foto"; +"Scene.Compose.Attachment.ServerProcessingState" = "Behandlas av servern..."; "Scene.Compose.Attachment.UploadFailed" = "Uppladdning misslyckades"; "Scene.Compose.Attachment.Video" = "video"; "Scene.Compose.AutoComplete.SpaceToAdd" = "Mellanslag för att lägga till"; @@ -192,6 +196,8 @@ laddas upp till Mastodon."; "Scene.Compose.Poll.OptionNumber" = "Alternativ %ld"; "Scene.Compose.Poll.SevenDays" = "7 dagar"; "Scene.Compose.Poll.SixHours" = "6 timmar"; +"Scene.Compose.Poll.ThePollHasEmptyOption" = "Undersökningen har ett tomt alternativ"; +"Scene.Compose.Poll.ThePollIsInvalid" = "Undersökningen är ogiltig"; "Scene.Compose.Poll.ThirtyMinutes" = "30 minuter"; "Scene.Compose.Poll.ThreeDays" = "3 dagar"; "Scene.Compose.ReplyingToUser" = "svarar %@"; @@ -234,6 +240,9 @@ laddas upp till Mastodon."; "Scene.HomeTimeline.NavigationBarState.Published" = "Publicerat!"; "Scene.HomeTimeline.NavigationBarState.Publishing" = "Publicerar inlägget..."; "Scene.HomeTimeline.Title" = "Hem"; +"Scene.Login.ServerSearchField.Placeholder" = "Ange URL eller sök efter din server"; +"Scene.Login.Subtitle" = "Logga in på servern där du skapade ditt konto."; +"Scene.Login.Title" = "Välkommen tillbaka"; "Scene.Notification.FollowRequest.Accept" = "Godkänn"; "Scene.Notification.FollowRequest.Accepted" = "Godkänd"; "Scene.Notification.FollowRequest.Reject" = "avvisa"; @@ -261,6 +270,8 @@ laddas upp till Mastodon."; "Scene.Profile.Fields.AddRow" = "Lägg till rad"; "Scene.Profile.Fields.Placeholder.Content" = "Innehåll"; "Scene.Profile.Fields.Placeholder.Label" = "Etikett"; +"Scene.Profile.Fields.Verified.Long" = "Ägarskap för denna länk kontrollerades den %@"; +"Scene.Profile.Fields.Verified.Short" = "Verifierad på %@"; "Scene.Profile.Header.FollowsYou" = "Följer dig"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Bekräfta för att blockera %@"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Blockera konto"; @@ -393,13 +404,11 @@ laddas upp till Mastodon."; "Scene.ServerPicker.EmptyState.BadNetwork" = "Något gick fel när data laddades. Försök igen eller kontrollera din internetanslutning."; "Scene.ServerPicker.EmptyState.FindingServers" = "Söker tillgängliga servrar..."; "Scene.ServerPicker.EmptyState.NoResults" = "Inga resultat"; -"Scene.ServerPicker.Input.Placeholder" = "Sök gemenskaper"; -"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "Sök servrar eller ange URL"; +"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "Sök gemenskaper eller ange URL"; "Scene.ServerPicker.Label.Category" = "KATEGORI"; "Scene.ServerPicker.Label.Language" = "SPRÅK"; "Scene.ServerPicker.Label.Users" = "ANVÄNDARE"; -"Scene.ServerPicker.Subtitle" = "Välj en server baserat på dina intressen, region eller ett allmänt syfte."; -"Scene.ServerPicker.SubtitleExtend" = "Välj en server baserat på dina intressen, region eller ett allmänt syfte. Varje server drivs av en helt oberoende organisation eller individ."; +"Scene.ServerPicker.Subtitle" = "Välj en server baserat på dina intressen, region eller en allmän server. Du kan fortfarande nå alla, oavsett server."; "Scene.ServerPicker.Title" = "Mastodon utgörs av användare på olika servrar."; "Scene.ServerRules.Button.Confirm" = "Jag godkänner"; "Scene.ServerRules.PrivacyPolicy" = "integritetspolicy"; diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/sv.lproj/Localizable.stringsdict b/MastodonSDK/Sources/MastodonLocalization/Resources/sv.lproj/Localizable.stringsdict index c7317903d..3cbfeae6d 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/sv.lproj/Localizable.stringsdict +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/sv.lproj/Localizable.stringsdict @@ -50,6 +50,22 @@ %ld tecken + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + %#@character_count@ kvar + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + %ld tecken + other + %ld tecken + + plural.count.followed_by_and_mutual NSStringLocalizedFormatKey diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/th.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/th.lproj/Localizable.strings index de982308d..8e63e0269 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/th.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/th.lproj/Localizable.strings @@ -55,8 +55,8 @@ "Common.Controls.Actions.Share" = "แบ่งปัน"; "Common.Controls.Actions.SharePost" = "แบ่งปันโพสต์"; "Common.Controls.Actions.ShareUser" = "แบ่งปัน %@"; -"Common.Controls.Actions.SignIn" = "ลงชื่อเข้า"; -"Common.Controls.Actions.SignUp" = "ลงทะเบียน"; +"Common.Controls.Actions.SignIn" = "Log in"; +"Common.Controls.Actions.SignUp" = "Create account"; "Common.Controls.Actions.Skip" = "ข้าม"; "Common.Controls.Actions.TakePhoto" = "ถ่ายรูป"; "Common.Controls.Actions.TryAgain" = "ลองอีกครั้ง"; @@ -161,16 +161,20 @@ "Scene.Compose.Accessibility.CustomEmojiPicker" = "ตัวเลือกอีโมจิที่กำหนดเอง"; "Scene.Compose.Accessibility.DisableContentWarning" = "ปิดใช้งานคำเตือนเนื้อหา"; "Scene.Compose.Accessibility.EnableContentWarning" = "เปิดใช้งานคำเตือนเนื้อหา"; +"Scene.Compose.Accessibility.PostOptions" = "ตัวเลือกโพสต์"; "Scene.Compose.Accessibility.PostVisibilityMenu" = "เมนูการมองเห็นโพสต์"; +"Scene.Compose.Accessibility.PostingAs" = "กำลังโพสต์เป็น %@"; "Scene.Compose.Accessibility.RemovePoll" = "เอาการสำรวจความคิดเห็นออก"; "Scene.Compose.Attachment.AttachmentBroken" = "%@ นี้เสียหายและไม่สามารถ อัปโหลดไปยัง Mastodon"; "Scene.Compose.Attachment.AttachmentTooLarge" = "ไฟล์แนบใหญ่เกินไป"; -"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Can not regonize this media attachment"; +"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "ไม่สามารถระบุไฟล์แนบสื่อนี้"; +"Scene.Compose.Attachment.CompressingState" = "กำลังบีบอัด..."; "Scene.Compose.Attachment.DescriptionPhoto" = "อธิบายรูปภาพสำหรับผู้บกพร่องทางการมองเห็น..."; "Scene.Compose.Attachment.DescriptionVideo" = "อธิบายวิดีโอสำหรับผู้บกพร่องทางการมองเห็น..."; "Scene.Compose.Attachment.LoadFailed" = "การโหลดล้มเหลว"; "Scene.Compose.Attachment.Photo" = "รูปภาพ"; +"Scene.Compose.Attachment.ServerProcessingState" = "เซิร์ฟเวอร์กำลังประมวลผล..."; "Scene.Compose.Attachment.UploadFailed" = "การอัปโหลดล้มเหลว"; "Scene.Compose.Attachment.Video" = "วิดีโอ"; "Scene.Compose.AutoComplete.SpaceToAdd" = "เว้นวรรคเพื่อเพิ่ม"; @@ -192,6 +196,8 @@ "Scene.Compose.Poll.OptionNumber" = "ตัวเลือก %ld"; "Scene.Compose.Poll.SevenDays" = "7 วัน"; "Scene.Compose.Poll.SixHours" = "6 ชั่วโมง"; +"Scene.Compose.Poll.ThePollHasEmptyOption" = "การสำรวจความคิดเห็นมีตัวเลือกที่ว่างเปล่า"; +"Scene.Compose.Poll.ThePollIsInvalid" = "การสำรวจความคิดเห็นไม่ถูกต้อง"; "Scene.Compose.Poll.ThirtyMinutes" = "30 นาที"; "Scene.Compose.Poll.ThreeDays" = "3 วัน"; "Scene.Compose.ReplyingToUser" = "กำลังตอบกลับ %@"; @@ -203,10 +209,10 @@ "Scene.Compose.Visibility.Unlisted" = "ไม่อยู่ในรายการ"; "Scene.ConfirmEmail.Button.OpenEmailApp" = "เปิดแอปอีเมล"; "Scene.ConfirmEmail.Button.Resend" = "ส่งใหม่"; -"Scene.ConfirmEmail.DontReceiveEmail.Description" = "หากคุณยังไม่ได้รับอีเมล ตรวจสอบว่าที่อยู่อีเมลของคุณถูกต้อง รวมถึงโฟลเดอร์อีเมลขยะของคุณ"; +"Scene.ConfirmEmail.DontReceiveEmail.Description" = "ตรวจสอบว่าที่อยู่อีเมลของคุณถูกต้องเช่นเดียวกับโฟลเดอร์อีเมลขยะหากคุณยังไม่ได้ทำ"; "Scene.ConfirmEmail.DontReceiveEmail.ResendEmail" = "ส่งอีเมลใหม่"; "Scene.ConfirmEmail.DontReceiveEmail.Title" = "ตรวจสอบอีเมลของคุณ"; -"Scene.ConfirmEmail.OpenEmailApp.Description" = "เราเพิ่งส่งอีเมลหาคุณ หากคุณยังไม่ได้รับอีเมล โปรดตรวจสอบโฟลเดอร์อีเมลขยะ"; +"Scene.ConfirmEmail.OpenEmailApp.Description" = "เราเพิ่งส่งอีเมลถึงคุณ ตรวจสอบโฟลเดอร์อีเมลขยะของคุณหากคุณยังไม่ได้ทำ"; "Scene.ConfirmEmail.OpenEmailApp.Mail" = "จดหมาย"; "Scene.ConfirmEmail.OpenEmailApp.OpenEmailClient" = "เปิดไคลเอ็นต์อีเมล"; "Scene.ConfirmEmail.OpenEmailApp.Title" = "ตรวจสอบกล่องขาเข้าของคุณ"; @@ -234,6 +240,9 @@ "Scene.HomeTimeline.NavigationBarState.Published" = "เผยแพร่แล้ว!"; "Scene.HomeTimeline.NavigationBarState.Publishing" = "กำลังเผยแพร่โพสต์..."; "Scene.HomeTimeline.Title" = "หน้าแรก"; +"Scene.Login.ServerSearchField.Placeholder" = "Enter URL or search for your server"; +"Scene.Login.Subtitle" = "Log you in on the server you created your account on."; +"Scene.Login.Title" = "Welcome back"; "Scene.Notification.FollowRequest.Accept" = "ยอมรับ"; "Scene.Notification.FollowRequest.Accepted" = "ยอมรับแล้ว"; "Scene.Notification.FollowRequest.Reject" = "ปฏิเสธ"; @@ -261,6 +270,8 @@ "Scene.Profile.Fields.AddRow" = "เพิ่มแถว"; "Scene.Profile.Fields.Placeholder.Content" = "เนื้อหา"; "Scene.Profile.Fields.Placeholder.Label" = "ป้ายชื่อ"; +"Scene.Profile.Fields.Verified.Long" = "ตรวจสอบความเป็นเจ้าของของลิงก์นี้เมื่อ %@"; +"Scene.Profile.Fields.Verified.Short" = "ตรวจสอบเมื่อ %@"; "Scene.Profile.Header.FollowsYou" = "ติดตามคุณ"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "ยืนยันเพื่อปิดกั้น %@"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "ปิดกั้นบัญชี"; @@ -295,7 +306,7 @@ "Scene.Register.Error.Reason.Taken" = "%@ ถูกใช้งานแล้ว"; "Scene.Register.Error.Reason.TooLong" = "%@ ยาวเกินไป"; "Scene.Register.Error.Reason.TooShort" = "%@ สั้นเกินไป"; -"Scene.Register.Error.Reason.Unreachable" = "ดูเหมือนว่า %@ จะไม่มีอยู่"; +"Scene.Register.Error.Reason.Unreachable" = "ดูเหมือนว่าจะไม่มี %@ อยู่"; "Scene.Register.Error.Special.EmailInvalid" = "นี่ไม่ใช่ที่อยู่อีเมลที่ถูกต้อง"; "Scene.Register.Error.Special.PasswordTooShort" = "รหัสผ่านสั้นเกินไป (ต้องมีอย่างน้อย 8 ตัวอักษร)"; "Scene.Register.Error.Special.UsernameInvalid" = "ชื่อผู้ใช้ต้องมีเฉพาะตัวอักษรและตัวเลขและขีดล่างเท่านั้น"; @@ -393,13 +404,11 @@ "Scene.ServerPicker.EmptyState.BadNetwork" = "มีบางอย่างผิดพลาดขณะโหลดข้อมูล ตรวจสอบการเชื่อมต่ออินเทอร์เน็ตของคุณ"; "Scene.ServerPicker.EmptyState.FindingServers" = "กำลังค้นหาเซิร์ฟเวอร์ที่พร้อมใช้งาน..."; "Scene.ServerPicker.EmptyState.NoResults" = "ไม่มีผลลัพธ์"; -"Scene.ServerPicker.Input.Placeholder" = "ค้นหาเซิร์ฟเวอร์"; -"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "ค้นหาเซิร์ฟเวอร์หรือป้อน URL"; +"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "Search communities or enter URL"; "Scene.ServerPicker.Label.Category" = "หมวดหมู่"; "Scene.ServerPicker.Label.Language" = "ภาษา"; "Scene.ServerPicker.Label.Users" = "ผู้ใช้"; -"Scene.ServerPicker.Subtitle" = "เลือกเซิร์ฟเวอร์ตามความสนใจ, ภูมิภาค หรือวัตถุประสงค์ทั่วไปของคุณ"; -"Scene.ServerPicker.SubtitleExtend" = "เลือกเซิร์ฟเวอร์ตามความสนใจ, ภูมิภาค หรือวัตถุประสงค์ทั่วไปของคุณ แต่ละเซิร์ฟเวอร์ได้รับการดำเนินงานโดยองค์กรหรือบุคคลที่เป็นอิสระโดยสิ้นเชิง"; +"Scene.ServerPicker.Subtitle" = "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers."; "Scene.ServerPicker.Title" = "Mastodon ประกอบด้วยผู้ใช้ในเซิร์ฟเวอร์ต่าง ๆ"; "Scene.ServerRules.Button.Confirm" = "ฉันเห็นด้วย"; "Scene.ServerRules.PrivacyPolicy" = "นโยบายความเป็นส่วนตัว"; diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/th.lproj/Localizable.stringsdict b/MastodonSDK/Sources/MastodonLocalization/Resources/th.lproj/Localizable.stringsdict index 897d07eca..f25561ad6 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/th.lproj/Localizable.stringsdict +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/th.lproj/Localizable.stringsdict @@ -44,6 +44,20 @@ %ld ตัวอักษร + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + เหลืออีก %#@character_count@ + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + other + %ld ตัวอักษร + + plural.count.followed_by_and_mutual NSStringLocalizedFormatKey diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/tr.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/tr.lproj/Localizable.strings index 614ea6dc5..fcee4e12e 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/tr.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/tr.lproj/Localizable.strings @@ -54,8 +54,8 @@ "Common.Controls.Actions.Share" = "Paylaş"; "Common.Controls.Actions.SharePost" = "Gönderiyi Paylaş"; "Common.Controls.Actions.ShareUser" = "%@ ile paylaş"; -"Common.Controls.Actions.SignIn" = "Giriş Yap"; -"Common.Controls.Actions.SignUp" = "Kaydol"; +"Common.Controls.Actions.SignIn" = "Log in"; +"Common.Controls.Actions.SignUp" = "Create account"; "Common.Controls.Actions.Skip" = "Atla"; "Common.Controls.Actions.TakePhoto" = "Fotoğraf Çek"; "Common.Controls.Actions.TryAgain" = "Tekrar Deneyin"; @@ -160,16 +160,20 @@ Bu kişiye göre profiliniz böyle gözüküyor."; "Scene.Compose.Accessibility.CustomEmojiPicker" = "Özel Emoji Seçici"; "Scene.Compose.Accessibility.DisableContentWarning" = "İçerik Uyarısını Kapat"; "Scene.Compose.Accessibility.EnableContentWarning" = "İçerik Uyarısını Etkinleştir"; +"Scene.Compose.Accessibility.PostOptions" = "Post Options"; "Scene.Compose.Accessibility.PostVisibilityMenu" = "Gönderi Görünürlüğü Menüsü"; +"Scene.Compose.Accessibility.PostingAs" = "Posting as %@"; "Scene.Compose.Accessibility.RemovePoll" = "Anketi Kaldır"; "Scene.Compose.Attachment.AttachmentBroken" = "Bu %@ bozuk ve Mastodon'a yüklenemiyor."; "Scene.Compose.Attachment.AttachmentTooLarge" = "Attachment too large"; -"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Can not regonize this media attachment"; +"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Can not recognize this media attachment"; +"Scene.Compose.Attachment.CompressingState" = "Compressing..."; "Scene.Compose.Attachment.DescriptionPhoto" = "Görme engelliler için fotoğrafı tarif edin..."; "Scene.Compose.Attachment.DescriptionVideo" = "Görme engelliler için videoyu tarif edin..."; "Scene.Compose.Attachment.LoadFailed" = "Load Failed"; "Scene.Compose.Attachment.Photo" = "fotoğraf"; +"Scene.Compose.Attachment.ServerProcessingState" = "Server Processing..."; "Scene.Compose.Attachment.UploadFailed" = "Upload Failed"; "Scene.Compose.Attachment.Video" = "video"; "Scene.Compose.AutoComplete.SpaceToAdd" = "Eklemek için boşluk tuşuna basın"; @@ -191,6 +195,8 @@ yüklenemiyor."; "Scene.Compose.Poll.OptionNumber" = "Seçenek %ld"; "Scene.Compose.Poll.SevenDays" = "7 Gün"; "Scene.Compose.Poll.SixHours" = "6 Saat"; +"Scene.Compose.Poll.ThePollHasEmptyOption" = "The poll has empty option"; +"Scene.Compose.Poll.ThePollIsInvalid" = "The poll is invalid"; "Scene.Compose.Poll.ThirtyMinutes" = "30 dakika"; "Scene.Compose.Poll.ThreeDays" = "3 Gün"; "Scene.Compose.ReplyingToUser" = "yanıtlanıyor: %@"; @@ -233,6 +239,9 @@ yüklenemiyor."; "Scene.HomeTimeline.NavigationBarState.Published" = "Yayınlandı!"; "Scene.HomeTimeline.NavigationBarState.Publishing" = "Gönderi yayınlanıyor..."; "Scene.HomeTimeline.Title" = "Ana Sayfa"; +"Scene.Login.ServerSearchField.Placeholder" = "Enter URL or search for your server"; +"Scene.Login.Subtitle" = "Log you in on the server you created your account on."; +"Scene.Login.Title" = "Welcome back"; "Scene.Notification.FollowRequest.Accept" = "Accept"; "Scene.Notification.FollowRequest.Accepted" = "Accepted"; "Scene.Notification.FollowRequest.Reject" = "reject"; @@ -260,6 +269,8 @@ yüklenemiyor."; "Scene.Profile.Fields.AddRow" = "Satır Ekle"; "Scene.Profile.Fields.Placeholder.Content" = "İçerik"; "Scene.Profile.Fields.Placeholder.Label" = "Etiket"; +"Scene.Profile.Fields.Verified.Long" = "Ownership of this link was checked on %@"; +"Scene.Profile.Fields.Verified.Short" = "Verified on %@"; "Scene.Profile.Header.FollowsYou" = "Seni takip ediyor"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "%@ engellemeyi onayla"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Hesabı Engelle"; @@ -392,13 +403,11 @@ yüklenemiyor."; "Scene.ServerPicker.EmptyState.BadNetwork" = "Veriyi yüklerken bir hata oluştu. Lütfen internet bağlantınızı kontrol edin."; "Scene.ServerPicker.EmptyState.FindingServers" = "Mevcut sunucular aranıyor..."; "Scene.ServerPicker.EmptyState.NoResults" = "Sonuç yok"; -"Scene.ServerPicker.Input.Placeholder" = "Toplulukları ara"; -"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "Sunucuları ara ya da bir bağlantı gir"; +"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "Search communities or enter URL"; "Scene.ServerPicker.Label.Category" = "KATEGORİ"; "Scene.ServerPicker.Label.Language" = "DİL"; "Scene.ServerPicker.Label.Users" = "KULLANICILAR"; -"Scene.ServerPicker.Subtitle" = "İlgi alanlarınıza, bölgenize veya genel amaçlı bir topluluk seçin."; -"Scene.ServerPicker.SubtitleExtend" = "İlgi alanlarınıza, bölgenize veya genel amaçlı bir topluluk seçin. Her topluluk tamamen bağımsız bir kuruluş veya kişi tarafından işletilmektedir."; +"Scene.ServerPicker.Subtitle" = "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers."; "Scene.ServerPicker.Title" = "Mastodon, farklı topluluklardaki kullanıcılardan oluşur."; "Scene.ServerRules.Button.Confirm" = "Kabul Ediyorum"; "Scene.ServerRules.PrivacyPolicy" = "gizlilik politikası"; diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/tr.lproj/Localizable.stringsdict b/MastodonSDK/Sources/MastodonLocalization/Resources/tr.lproj/Localizable.stringsdict index 29df92c2b..6ef7f4c75 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/tr.lproj/Localizable.stringsdict +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/tr.lproj/Localizable.stringsdict @@ -50,6 +50,22 @@ %ld karakter + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + %#@character_count@ left + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 character + other + %ld characters + + plural.count.followed_by_and_mutual NSStringLocalizedFormatKey diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/vi.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/vi.lproj/Localizable.strings index 41ac9aa20..5a14fb2cf 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/vi.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/vi.lproj/Localizable.strings @@ -56,7 +56,7 @@ Vui lòng kiểm tra kết nối mạng."; "Common.Controls.Actions.SharePost" = "Chia sẻ tút"; "Common.Controls.Actions.ShareUser" = "Chia sẻ %@"; "Common.Controls.Actions.SignIn" = "Đăng nhập"; -"Common.Controls.Actions.SignUp" = "Đăng ký"; +"Common.Controls.Actions.SignUp" = "Tạo tài khoản"; "Common.Controls.Actions.Skip" = "Bỏ qua"; "Common.Controls.Actions.TakePhoto" = "Chụp ảnh"; "Common.Controls.Actions.TryAgain" = "Thử lại"; @@ -161,17 +161,21 @@ Họ sẽ thấy trang của bạn như thế này."; "Scene.Compose.Accessibility.CustomEmojiPicker" = "Chọn emoji"; "Scene.Compose.Accessibility.DisableContentWarning" = "Tắt nội dung ẩn"; "Scene.Compose.Accessibility.EnableContentWarning" = "Bật nội dung ẩn"; +"Scene.Compose.Accessibility.PostOptions" = "Tùy chọn đăng"; "Scene.Compose.Accessibility.PostVisibilityMenu" = "Menu hiển thị tút"; +"Scene.Compose.Accessibility.PostingAs" = "Đăng dưới dạng %@"; "Scene.Compose.Accessibility.RemovePoll" = "Xóa bình chọn"; "Scene.Compose.Attachment.AttachmentBroken" = "%@ này bị lỗi và không thể tải lên Mastodon."; -"Scene.Compose.Attachment.AttachmentTooLarge" = "Attachment too large"; -"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Can not regonize this media attachment"; +"Scene.Compose.Attachment.AttachmentTooLarge" = "Tập tin đính kèm quá lớn"; +"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Không xem được tập tin đính kèm"; +"Scene.Compose.Attachment.CompressingState" = "Đang nén..."; "Scene.Compose.Attachment.DescriptionPhoto" = "Mô tả hình ảnh cho người khiếm thị..."; "Scene.Compose.Attachment.DescriptionVideo" = "Mô tả video cho người khiếm thị..."; -"Scene.Compose.Attachment.LoadFailed" = "Load Failed"; +"Scene.Compose.Attachment.LoadFailed" = "Tải thất bại"; "Scene.Compose.Attachment.Photo" = "ảnh"; -"Scene.Compose.Attachment.UploadFailed" = "Upload Failed"; +"Scene.Compose.Attachment.ServerProcessingState" = "Máy chủ đang xử lý..."; +"Scene.Compose.Attachment.UploadFailed" = "Tải lên thất bại"; "Scene.Compose.Attachment.Video" = "video"; "Scene.Compose.AutoComplete.SpaceToAdd" = "Khoảng cách để thêm"; "Scene.Compose.ComposeAction" = "Đăng"; @@ -192,6 +196,8 @@ tải lên Mastodon."; "Scene.Compose.Poll.OptionNumber" = "Lựa chọn %ld"; "Scene.Compose.Poll.SevenDays" = "7 ngày"; "Scene.Compose.Poll.SixHours" = "6 giờ"; +"Scene.Compose.Poll.ThePollHasEmptyOption" = "Thiếu lựa chọn"; +"Scene.Compose.Poll.ThePollIsInvalid" = "Bình chọn không hợp lệ"; "Scene.Compose.Poll.ThirtyMinutes" = "30 phút"; "Scene.Compose.Poll.ThreeDays" = "3 ngày"; "Scene.Compose.ReplyingToUser" = "trả lời %@"; @@ -234,6 +240,9 @@ tải lên Mastodon."; "Scene.HomeTimeline.NavigationBarState.Published" = "Đã đăng!"; "Scene.HomeTimeline.NavigationBarState.Publishing" = "Đang đăng tút..."; "Scene.HomeTimeline.Title" = "Bảng tin"; +"Scene.Login.ServerSearchField.Placeholder" = "Nhập URL hoặc tìm máy chủ"; +"Scene.Login.Subtitle" = "Đăng nhập vào máy chủ mà bạn đã tạo tài khoản."; +"Scene.Login.Title" = "Chào mừng trở lại!"; "Scene.Notification.FollowRequest.Accept" = "Chấp nhận"; "Scene.Notification.FollowRequest.Accepted" = "Đã chấp nhận"; "Scene.Notification.FollowRequest.Reject" = "từ chối"; @@ -261,6 +270,8 @@ tải lên Mastodon."; "Scene.Profile.Fields.AddRow" = "Thêm hàng"; "Scene.Profile.Fields.Placeholder.Content" = "Nội dung"; "Scene.Profile.Fields.Placeholder.Label" = "Nhãn"; +"Scene.Profile.Fields.Verified.Long" = "Liên kết này đã được xác minh trên %@"; +"Scene.Profile.Fields.Verified.Short" = "Đã xác minh %@"; "Scene.Profile.Header.FollowsYou" = "Đang theo dõi bạn"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Xác nhận chặn %@"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Chặn người này"; @@ -393,13 +404,11 @@ tải lên Mastodon."; "Scene.ServerPicker.EmptyState.BadNetwork" = "Đã xảy ra lỗi. Hãy thử lại hoặc kiểm tra kết nối internet của bạn."; "Scene.ServerPicker.EmptyState.FindingServers" = "Đang tìm máy chủ hoạt động..."; "Scene.ServerPicker.EmptyState.NoResults" = "Không có kết quả"; -"Scene.ServerPicker.Input.Placeholder" = "Tìm máy chủ"; -"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "Tìm máy chủ hoặc nhập URL"; +"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "Tìm một máy chủ hoặc nhập URL"; "Scene.ServerPicker.Label.Category" = "PHÂN LOẠI"; "Scene.ServerPicker.Label.Language" = "NGÔN NGỮ"; "Scene.ServerPicker.Label.Users" = "NGƯỜI"; -"Scene.ServerPicker.Subtitle" = "Chọn một máy chủ dựa theo sở thích, tôn giáo, hoặc ý muốn của bạn."; -"Scene.ServerPicker.SubtitleExtend" = "Chọn một máy chủ dựa theo sở thích, tôn giáo, hoặc ý muốn của bạn. Mỗi máy chủ có thể được vận hành bởi một cá nhân hoặc một tổ chức."; +"Scene.ServerPicker.Subtitle" = "Chọn một máy chủ dựa theo sở thích, tôn giáo, hoặc ý muốn của bạn. Bạn vẫn có thể giao tiếp với bất cứ ai mà không phụ thuộc vào máy chủ của họ."; "Scene.ServerPicker.Title" = "Mastodon gồm nhiều máy chủ với thành viên riêng."; "Scene.ServerRules.Button.Confirm" = "Tôi đồng ý"; "Scene.ServerRules.PrivacyPolicy" = "chính sách bảo mật"; diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/vi.lproj/Localizable.stringsdict b/MastodonSDK/Sources/MastodonLocalization/Resources/vi.lproj/Localizable.stringsdict index 6905b240e..4c772f014 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/vi.lproj/Localizable.stringsdict +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/vi.lproj/Localizable.stringsdict @@ -44,6 +44,20 @@ %ld ký tự + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + %#@character_count@ còn lại + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + other + %ld ký tự + + plural.count.followed_by_and_mutual NSStringLocalizedFormatKey diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/zh-Hans.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/zh-Hans.lproj/Localizable.strings index 3883e30df..cb362ea9d 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/zh-Hans.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/zh-Hans.lproj/Localizable.strings @@ -55,8 +55,8 @@ "Common.Controls.Actions.Share" = "分享"; "Common.Controls.Actions.SharePost" = "分享帖子"; "Common.Controls.Actions.ShareUser" = "分享 %@"; -"Common.Controls.Actions.SignIn" = "登录"; -"Common.Controls.Actions.SignUp" = "注册"; +"Common.Controls.Actions.SignIn" = "Log in"; +"Common.Controls.Actions.SignUp" = "Create account"; "Common.Controls.Actions.Skip" = "跳过"; "Common.Controls.Actions.TakePhoto" = "拍照"; "Common.Controls.Actions.TryAgain" = "再试一次"; @@ -161,16 +161,20 @@ "Scene.Compose.Accessibility.CustomEmojiPicker" = "自定义表情选择器"; "Scene.Compose.Accessibility.DisableContentWarning" = "关闭内容警告"; "Scene.Compose.Accessibility.EnableContentWarning" = "启用内容警告"; +"Scene.Compose.Accessibility.PostOptions" = "Post Options"; "Scene.Compose.Accessibility.PostVisibilityMenu" = "帖子可见性"; +"Scene.Compose.Accessibility.PostingAs" = "Posting as %@"; "Scene.Compose.Accessibility.RemovePoll" = "移除投票"; "Scene.Compose.Attachment.AttachmentBroken" = "%@已损坏 无法上传到 Mastodon"; "Scene.Compose.Attachment.AttachmentTooLarge" = "Attachment too large"; -"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Can not regonize this media attachment"; +"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Can not recognize this media attachment"; +"Scene.Compose.Attachment.CompressingState" = "Compressing..."; "Scene.Compose.Attachment.DescriptionPhoto" = "为视觉障碍人士添加照片的文字说明..."; "Scene.Compose.Attachment.DescriptionVideo" = "为视觉障碍人士添加视频的文字说明..."; "Scene.Compose.Attachment.LoadFailed" = "Load Failed"; "Scene.Compose.Attachment.Photo" = "照片"; +"Scene.Compose.Attachment.ServerProcessingState" = "Server Processing..."; "Scene.Compose.Attachment.UploadFailed" = "Upload Failed"; "Scene.Compose.Attachment.Video" = "视频"; "Scene.Compose.AutoComplete.SpaceToAdd" = "输入空格键入"; @@ -192,6 +196,8 @@ "Scene.Compose.Poll.OptionNumber" = "选项 %ld"; "Scene.Compose.Poll.SevenDays" = "7 天"; "Scene.Compose.Poll.SixHours" = "6 小时"; +"Scene.Compose.Poll.ThePollHasEmptyOption" = "The poll has empty option"; +"Scene.Compose.Poll.ThePollIsInvalid" = "The poll is invalid"; "Scene.Compose.Poll.ThirtyMinutes" = "30 分钟"; "Scene.Compose.Poll.ThreeDays" = "3 天"; "Scene.Compose.ReplyingToUser" = "回复给 %@"; @@ -234,6 +240,9 @@ "Scene.HomeTimeline.NavigationBarState.Published" = "已发送"; "Scene.HomeTimeline.NavigationBarState.Publishing" = "正在发送..."; "Scene.HomeTimeline.Title" = "主页"; +"Scene.Login.ServerSearchField.Placeholder" = "Enter URL or search for your server"; +"Scene.Login.Subtitle" = "Log you in on the server you created your account on."; +"Scene.Login.Title" = "Welcome back"; "Scene.Notification.FollowRequest.Accept" = "接受"; "Scene.Notification.FollowRequest.Accepted" = "已接受"; "Scene.Notification.FollowRequest.Reject" = "拒绝"; @@ -261,6 +270,8 @@ "Scene.Profile.Fields.AddRow" = "添加"; "Scene.Profile.Fields.Placeholder.Content" = "内容"; "Scene.Profile.Fields.Placeholder.Label" = "标签"; +"Scene.Profile.Fields.Verified.Long" = "Ownership of this link was checked on %@"; +"Scene.Profile.Fields.Verified.Short" = "Verified on %@"; "Scene.Profile.Header.FollowsYou" = "关注了你"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "确认屏蔽 %@"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "屏蔽帐户"; @@ -393,13 +404,11 @@ "Scene.ServerPicker.EmptyState.BadNetwork" = "出了些问题。请检查你的互联网连接"; "Scene.ServerPicker.EmptyState.FindingServers" = "正在查找可用的服务器..."; "Scene.ServerPicker.EmptyState.NoResults" = "无结果"; -"Scene.ServerPicker.Input.Placeholder" = "查找或加入你自己的服务器..."; -"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "搜索服务器或输入 URL"; +"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "Search communities or enter URL"; "Scene.ServerPicker.Label.Category" = "类别"; "Scene.ServerPicker.Label.Language" = "语言"; "Scene.ServerPicker.Label.Users" = "用户"; -"Scene.ServerPicker.Subtitle" = "根据你的兴趣、区域或一般目的选择一个社区。"; -"Scene.ServerPicker.SubtitleExtend" = "根据你的兴趣、区域或一般目的选择一个社区。每个社区都由完全独立的组织或个人管理。"; +"Scene.ServerPicker.Subtitle" = "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers."; "Scene.ServerPicker.Title" = "挑选一个服务器, 任意服务器。"; "Scene.ServerRules.Button.Confirm" = "我同意"; diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/zh-Hans.lproj/Localizable.stringsdict b/MastodonSDK/Sources/MastodonLocalization/Resources/zh-Hans.lproj/Localizable.stringsdict index 5a7af3752..915a524b5 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/zh-Hans.lproj/Localizable.stringsdict +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/zh-Hans.lproj/Localizable.stringsdict @@ -44,6 +44,20 @@ %ld 个字符 + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + %#@character_count@ left + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + other + %ld characters + + plural.count.followed_by_and_mutual NSStringLocalizedFormatKey diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/zh-Hant.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/zh-Hant.lproj/Localizable.strings index 34e59a582..60dcd2077 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/zh-Hant.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/zh-Hant.lproj/Localizable.strings @@ -55,8 +55,8 @@ "Common.Controls.Actions.Share" = "分享"; "Common.Controls.Actions.SharePost" = "分享嘟文"; "Common.Controls.Actions.ShareUser" = "分享 %@"; -"Common.Controls.Actions.SignIn" = "登入"; -"Common.Controls.Actions.SignUp" = "註冊"; +"Common.Controls.Actions.SignIn" = "Log in"; +"Common.Controls.Actions.SignUp" = "Create account"; "Common.Controls.Actions.Skip" = "跳過"; "Common.Controls.Actions.TakePhoto" = "拍攝照片"; "Common.Controls.Actions.TryAgain" = "再試一次"; @@ -157,16 +157,20 @@ "Scene.Compose.Accessibility.CustomEmojiPicker" = "自訂 emoji 選擇器"; "Scene.Compose.Accessibility.DisableContentWarning" = "停用內容警告"; "Scene.Compose.Accessibility.EnableContentWarning" = "啟用內容警告"; +"Scene.Compose.Accessibility.PostOptions" = "嘟文選項"; "Scene.Compose.Accessibility.PostVisibilityMenu" = "嘟文可見性選單"; +"Scene.Compose.Accessibility.PostingAs" = "以 %@ 發嘟"; "Scene.Compose.Accessibility.RemovePoll" = "移除投票"; "Scene.Compose.Attachment.AttachmentBroken" = "此 %@ 已損毀,並無法被上傳至 Mastodon。"; -"Scene.Compose.Attachment.AttachmentTooLarge" = "Attachment too large"; -"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Can not regonize this media attachment"; +"Scene.Compose.Attachment.AttachmentTooLarge" = "附加檔案大小過大"; +"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Can not recognize this media attachment"; +"Scene.Compose.Attachment.CompressingState" = "Compressing..."; "Scene.Compose.Attachment.DescriptionPhoto" = "為視障人士提供圖片說明..."; "Scene.Compose.Attachment.DescriptionVideo" = "為視障人士提供影片說明..."; -"Scene.Compose.Attachment.LoadFailed" = "Load Failed"; +"Scene.Compose.Attachment.LoadFailed" = "讀取失敗"; "Scene.Compose.Attachment.Photo" = "照片"; -"Scene.Compose.Attachment.UploadFailed" = "Upload Failed"; +"Scene.Compose.Attachment.ServerProcessingState" = "Server Processing..."; +"Scene.Compose.Attachment.UploadFailed" = "上傳失敗"; "Scene.Compose.Attachment.Video" = "影片"; "Scene.Compose.AutoComplete.SpaceToAdd" = "添加的空白"; "Scene.Compose.ComposeAction" = "嘟出去"; @@ -187,6 +191,8 @@ "Scene.Compose.Poll.OptionNumber" = "選項 %ld"; "Scene.Compose.Poll.SevenDays" = "七天"; "Scene.Compose.Poll.SixHours" = "六小時"; +"Scene.Compose.Poll.ThePollHasEmptyOption" = "The poll has empty option"; +"Scene.Compose.Poll.ThePollIsInvalid" = "The poll is invalid"; "Scene.Compose.Poll.ThirtyMinutes" = "30 分鐘"; "Scene.Compose.Poll.ThreeDays" = "三天"; "Scene.Compose.ReplyingToUser" = "正在回覆 %@"; @@ -229,6 +235,9 @@ "Scene.HomeTimeline.NavigationBarState.Published" = "嘟出去!"; "Scene.HomeTimeline.NavigationBarState.Publishing" = "發表嘟文..."; "Scene.HomeTimeline.Title" = "首頁"; +"Scene.Login.ServerSearchField.Placeholder" = "Enter URL or search for your server"; +"Scene.Login.Subtitle" = "Log you in on the server you created your account on."; +"Scene.Login.Title" = "Welcome back"; "Scene.Notification.FollowRequest.Accept" = "接受"; "Scene.Notification.FollowRequest.Accepted" = "已接受"; "Scene.Notification.FollowRequest.Reject" = "拒絕"; @@ -256,6 +265,8 @@ "Scene.Profile.Fields.AddRow" = "新增列"; "Scene.Profile.Fields.Placeholder.Content" = "內容"; "Scene.Profile.Fields.Placeholder.Label" = "標籤"; +"Scene.Profile.Fields.Verified.Long" = "Ownership of this link was checked on %@"; +"Scene.Profile.Fields.Verified.Short" = "Verified on %@"; "Scene.Profile.Header.FollowsYou" = "跟隨了您"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "確認將 %@ 封鎖"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "封鎖"; @@ -388,13 +399,11 @@ "Scene.ServerPicker.EmptyState.BadNetwork" = "讀取資料時發生錯誤。請檢查您的網路連線。"; "Scene.ServerPicker.EmptyState.FindingServers" = "尋找可用的伺服器..."; "Scene.ServerPicker.EmptyState.NoResults" = "沒有結果"; -"Scene.ServerPicker.Input.Placeholder" = "搜尋伺服器"; -"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "搜尋伺服器或輸入網址"; +"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "Search communities or enter URL"; "Scene.ServerPicker.Label.Category" = "分類"; "Scene.ServerPicker.Label.Language" = "語言"; "Scene.ServerPicker.Label.Users" = "使用者"; -"Scene.ServerPicker.Subtitle" = "基於您的興趣、地區、或一般用途選定一個伺服器。"; -"Scene.ServerPicker.SubtitleExtend" = "基於您的興趣、地區、或一般用途選定一個伺服器。每個伺服器是由完全獨立的組織或個人營運。"; +"Scene.ServerPicker.Subtitle" = "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers."; "Scene.ServerPicker.Title" = "Mastodon 由不同伺服器的使用者組成。"; "Scene.ServerRules.Button.Confirm" = "我已閱讀並同意"; "Scene.ServerRules.PrivacyPolicy" = "隱私權政策"; diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/zh-Hant.lproj/Localizable.stringsdict b/MastodonSDK/Sources/MastodonLocalization/Resources/zh-Hant.lproj/Localizable.stringsdict index c0ce0f9a2..d545fd6a4 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/zh-Hant.lproj/Localizable.stringsdict +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/zh-Hant.lproj/Localizable.stringsdict @@ -44,6 +44,20 @@ %ld 個字 + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + 剩餘 %#@character_count@ 字 + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + other + %ld 個字 + + plural.count.followed_by_and_mutual NSStringLocalizedFormatKey From 26576d888e90fe33ef82fdfbfa884b0f72072198 Mon Sep 17 00:00:00 2001 From: Marcus Kida Date: Wed, 16 Nov 2022 12:54:51 +0100 Subject: [PATCH 501/598] feat: Implement double-tap on profile Tab to quickly cycle through logged in Accounts --- .../Root/MainTab/MainTabBarController.swift | 64 +++++++++++++++++-- 1 file changed, 59 insertions(+), 5 deletions(-) diff --git a/Mastodon/Scene/Root/MainTab/MainTabBarController.swift b/Mastodon/Scene/Root/MainTab/MainTabBarController.swift index 48d974358..158cd769b 100644 --- a/Mastodon/Scene/Root/MainTab/MainTabBarController.swift +++ b/Mastodon/Scene/Root/MainTab/MainTabBarController.swift @@ -8,6 +8,7 @@ import os.log import UIKit import Combine +import CoreDataStack import SafariServices import MastodonAsset import MastodonCore @@ -324,7 +325,12 @@ extension MainTabBarController { let tabBarLongPressGestureRecognizer = UILongPressGestureRecognizer() tabBarLongPressGestureRecognizer.addTarget(self, action: #selector(MainTabBarController.tabBarLongPressGestureRecognizerHandler(_:))) tabBar.addGestureRecognizer(tabBarLongPressGestureRecognizer) - + + let tabBarDoubleTapGestureRecognizer = UITapGestureRecognizer() + tabBarDoubleTapGestureRecognizer.numberOfTapsRequired = 2 + tabBarDoubleTapGestureRecognizer.addTarget(self, action: #selector(MainTabBarController.tabBarDoubleTapGestureRecognizerHandler(_:))) + tabBar.addGestureRecognizer(tabBarDoubleTapGestureRecognizer) + self.isReadyForWizardAvatarButton = authContext != nil $currentTab @@ -375,9 +381,7 @@ extension MainTabBarController { _ = coordinator.present(scene: .compose(viewModel: composeViewModel), from: nil, transition: .modal(animated: true, completion: nil)) } - @objc private func tabBarLongPressGestureRecognizerHandler(_ sender: UILongPressGestureRecognizer) { - guard sender.state == .began else { return } - + private func touchedTab(by sender: UIGestureRecognizer) -> Tab? { var _tab: Tab? let location = sender.location(in: tabBar) for item in tabBar.items ?? [] { @@ -389,7 +393,57 @@ extension MainTabBarController { break } - guard let tab = _tab else { return } + return _tab + } + + @objc private func tabBarDoubleTapGestureRecognizerHandler(_ sender: UITapGestureRecognizer) { + guard sender.state == .ended else { return } + guard let tab = touchedTab(by: sender) else { return } + logger.debug("\((#file as NSString).lastPathComponent, privacy: .public)[\(#line, privacy: .public)], \(#function, privacy: .public): double tap \(tab.title) tab") + + switch tab { + case .me: + guard let authContext = authContext else { return } + assert(Thread.isMainThread) + + let request = MastodonAuthentication.sortedFetchRequest + guard let accounts = try? context.managedObjectContext.fetch(request) else { return } + + let nextSelectedAccountIndex: Int? = { + for (index, account) in accounts.enumerated() { + guard account == authContext.mastodonAuthenticationBox + .authenticationRecord + .object(in: context.managedObjectContext) + else { continue } + + let nextAccountIndex = index + 1 + + if accounts.count > nextAccountIndex { + return nextAccountIndex + } else { + return 0 + } + } + + return nil + }() + + guard let nextSelectedAccountIndex = nextSelectedAccountIndex, accounts.count > nextSelectedAccountIndex else { return } + let nextAccount = accounts[nextSelectedAccountIndex] + + Task { @MainActor in + let isActive = try await context.authenticationService.activeMastodonUser(domain: nextAccount.domain, userID: nextAccount.userID) + guard isActive else { return } + self.coordinator.setup() + } + default: + break + } + } + + @objc private func tabBarLongPressGestureRecognizerHandler(_ sender: UILongPressGestureRecognizer) { + guard sender.state == .began else { return } + guard let tab = touchedTab(by: sender) else { return } logger.debug("\((#file as NSString).lastPathComponent, privacy: .public)[\(#line, privacy: .public)], \(#function, privacy: .public): long press \(tab.title) tab") switch tab { From 972b82268a76225e3a06fca606c984cce147cd8b Mon Sep 17 00:00:00 2001 From: CMK Date: Wed, 16 Nov 2022 19:56:16 +0800 Subject: [PATCH 502/598] feat: new i18n languages. Czech (cs) and Slovenian (sl) --- .../Sources/StringsConvertor/main.swift | 2 + Mastodon.xcodeproj/project.pbxproj | 14 + Mastodon/Resources/cs.lproj/InfoPlist.strings | 4 + Mastodon/Resources/sl.lproj/InfoPlist.strings | 4 + MastodonIntent/cs.lproj/Intents.strings | 51 ++ MastodonIntent/cs.lproj/Intents.stringsdict | 54 ++ MastodonIntent/sl.lproj/Intents.strings | 51 ++ MastodonIntent/sl.lproj/Intents.stringsdict | 54 ++ .../Resources/cs.lproj/Localizable.strings | 459 ++++++++++++++ .../cs.lproj/Localizable.stringsdict | 581 ++++++++++++++++++ .../Resources/sl.lproj/Localizable.strings | 464 ++++++++++++++ .../sl.lproj/Localizable.stringsdict | 581 ++++++++++++++++++ 12 files changed, 2319 insertions(+) create mode 100644 Mastodon/Resources/cs.lproj/InfoPlist.strings create mode 100644 Mastodon/Resources/sl.lproj/InfoPlist.strings create mode 100644 MastodonIntent/cs.lproj/Intents.strings create mode 100644 MastodonIntent/cs.lproj/Intents.stringsdict create mode 100644 MastodonIntent/sl.lproj/Intents.strings create mode 100644 MastodonIntent/sl.lproj/Intents.stringsdict create mode 100644 MastodonSDK/Sources/MastodonLocalization/Resources/cs.lproj/Localizable.strings create mode 100644 MastodonSDK/Sources/MastodonLocalization/Resources/cs.lproj/Localizable.stringsdict create mode 100644 MastodonSDK/Sources/MastodonLocalization/Resources/sl.lproj/Localizable.strings create mode 100644 MastodonSDK/Sources/MastodonLocalization/Resources/sl.lproj/Localizable.stringsdict diff --git a/Localization/StringsConvertor/Sources/StringsConvertor/main.swift b/Localization/StringsConvertor/Sources/StringsConvertor/main.swift index beba6cb3f..665161e2c 100644 --- a/Localization/StringsConvertor/Sources/StringsConvertor/main.swift +++ b/Localization/StringsConvertor/Sources/StringsConvertor/main.swift @@ -53,6 +53,7 @@ private func map(language: String) -> String? { case "ca.lproj": return "ca" // Catalan case "zh-Hans.lproj": return "zh-Hans" // Chinese Simplified case "zh-Hant.lproj": return "zh-Hant" // Chinese Traditional + case "cs.lproj": return "cs" // Czech case "nl.lproj": return "nl" // Dutch case "en.lproj": return "en" case "fi.lproj": return "fi" // Finnish @@ -65,6 +66,7 @@ private func map(language: String) -> String? { case "kmr.lproj": return "ku" // Kurmanji (Kurdish) [intent mapping] case "ru.lproj": return "ru" // Russian case "gd.lproj": return "gd" // Scottish Gaelic + case "sl.lproj": return "sl" // Slovenian case "ckb.lproj": return "ckb" // Sorani (Kurdish) case "es.lproj": return "es" // Spanish case "es_AR.lproj": return "es-AR" // Spanish, Argentina diff --git a/Mastodon.xcodeproj/project.pbxproj b/Mastodon.xcodeproj/project.pbxproj index ae8410c35..5724244b6 100644 --- a/Mastodon.xcodeproj/project.pbxproj +++ b/Mastodon.xcodeproj/project.pbxproj @@ -895,6 +895,12 @@ DB938F0826240F3C00E5B6C1 /* RemoteThreadViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RemoteThreadViewModel.swift; sourceTree = ""; }; DB938F0E2624119800E5B6C1 /* ThreadViewModel+LoadThreadState.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "ThreadViewModel+LoadThreadState.swift"; sourceTree = ""; }; DB938F1E2624382F00E5B6C1 /* ThreadViewModel+Diffable.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "ThreadViewModel+Diffable.swift"; sourceTree = ""; }; + DB96C25D292505FE00F3B85D /* cs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = cs; path = cs.lproj/Intents.strings; sourceTree = ""; }; + DB96C25E292505FF00F3B85D /* cs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = cs; path = cs.lproj/InfoPlist.strings; sourceTree = ""; }; + DB96C25F292505FF00F3B85D /* cs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.stringsdict; name = cs; path = cs.lproj/Intents.stringsdict; sourceTree = ""; }; + DB96C260292506D600F3B85D /* sl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sl; path = sl.lproj/Intents.strings; sourceTree = ""; }; + DB96C261292506D700F3B85D /* sl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sl; path = sl.lproj/InfoPlist.strings; sourceTree = ""; }; + DB96C262292506D700F3B85D /* sl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.stringsdict; name = sl; path = sl.lproj/Intents.stringsdict; sourceTree = ""; }; DB98EB4627B0DFAA0082E365 /* ReportStatusViewModel+State.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "ReportStatusViewModel+State.swift"; sourceTree = ""; }; DB98EB4827B0F0CD0082E365 /* ReportStatusTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ReportStatusTableViewCell.swift; sourceTree = ""; }; DB98EB4B27B0F2BC0082E365 /* ReportStatusTableViewCell+ViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "ReportStatusTableViewCell+ViewModel.swift"; sourceTree = ""; }; @@ -2872,6 +2878,8 @@ gd, "es-AR", fi, + cs, + sl, ); mainGroup = DB427DC925BAA00100D1B89D; packageReferences = ( @@ -3607,6 +3615,8 @@ DBC9E3A6282E15190063A4D9 /* gd */, DBC9E3A9282E17DF0063A4D9 /* es-AR */, DB8F40042835EE5E006E7513 /* fi */, + DB96C25D292505FE00F3B85D /* cs */, + DB96C260292506D600F3B85D /* sl */, ); name = Intents.intentdefinition; sourceTree = ""; @@ -3638,6 +3648,8 @@ DBC9E3A7282E15190063A4D9 /* gd */, DBC9E3AA282E17DF0063A4D9 /* es-AR */, DB8F40052835EE5E006E7513 /* fi */, + DB96C25E292505FF00F3B85D /* cs */, + DB96C261292506D700F3B85D /* sl */, ); name = InfoPlist.strings; sourceTree = ""; @@ -3685,6 +3697,8 @@ DBC9E3A8282E15190063A4D9 /* gd */, DBC9E3AB282E17DF0063A4D9 /* es-AR */, DB8F40062835EE5E006E7513 /* fi */, + DB96C25F292505FF00F3B85D /* cs */, + DB96C262292506D700F3B85D /* sl */, ); name = Intents.stringsdict; sourceTree = ""; diff --git a/Mastodon/Resources/cs.lproj/InfoPlist.strings b/Mastodon/Resources/cs.lproj/InfoPlist.strings new file mode 100644 index 000000000..710865573 --- /dev/null +++ b/Mastodon/Resources/cs.lproj/InfoPlist.strings @@ -0,0 +1,4 @@ +"NSCameraUsageDescription" = "Used to take photo for post status"; +"NSPhotoLibraryAddUsageDescription" = "Used to save photo into the Photo Library"; +"NewPostShortcutItemTitle" = "New Post"; +"SearchShortcutItemTitle" = "Search"; \ No newline at end of file diff --git a/Mastodon/Resources/sl.lproj/InfoPlist.strings b/Mastodon/Resources/sl.lproj/InfoPlist.strings new file mode 100644 index 000000000..710865573 --- /dev/null +++ b/Mastodon/Resources/sl.lproj/InfoPlist.strings @@ -0,0 +1,4 @@ +"NSCameraUsageDescription" = "Used to take photo for post status"; +"NSPhotoLibraryAddUsageDescription" = "Used to save photo into the Photo Library"; +"NewPostShortcutItemTitle" = "New Post"; +"SearchShortcutItemTitle" = "Search"; \ No newline at end of file diff --git a/MastodonIntent/cs.lproj/Intents.strings b/MastodonIntent/cs.lproj/Intents.strings new file mode 100644 index 000000000..6f29830a1 --- /dev/null +++ b/MastodonIntent/cs.lproj/Intents.strings @@ -0,0 +1,51 @@ +"16wxgf" = "Příspěvek na Mastodon"; + +"751xkl" = "Textový obsah"; + +"CsR7G2" = "Příspěvek na Mastodon"; + +"HZSGTr" = "Jaký obsah se má přidat?"; + +"HdGikU" = "Odeslání se nezdařilo"; + +"KDNTJ4" = "Důvod selhání"; + +"RHxKOw" = "Odeslat příspěvek s textovým obsahem"; + +"RxSqsb" = "Příspěvek"; + +"WCIR3D" = "Zveřejnit ${content} na Mastodon"; + +"ZKJSNu" = "Příspěvek"; + +"ZS1XaK" = "${content}"; + +"ZbSjzC" = "Viditelnost"; + +"Zo4jgJ" = "Viditelnost příspěvku"; + +"apSxMG-dYQ5NN" = "Existuje ${count} možností odpovídajících 'Veřejný'."; + +"apSxMG-ehFLjY" = "Existuje ${count} možností, které odpovídají „jen sledujícím“."; + +"ayoYEb-dYQ5NN" = "${content}, veřejné"; + +"ayoYEb-ehFLjY" = "${content}, pouze sledující"; + +"dUyuGg" = "Příspěvek na Mastodon"; + +"dYQ5NN" = "Veřejný"; + +"ehFLjY" = "Pouze sledující"; + +"gfePDu" = "Odeslání se nezdařilo. ${failureReason}"; + +"k7dbKQ" = "Příspěvek byl úspěšně odeslán."; + +"oGiqmY-dYQ5NN" = "Jen pro kontrolu, chtěli jste „Veřejný“?"; + +"oGiqmY-ehFLjY" = "Jen pro kontrolu, chtěli jste „Pouze sledující“?"; + +"rM6dvp" = "URL"; + +"ryJLwG" = "Příspěvek byl úspěšně odeslán. "; diff --git a/MastodonIntent/cs.lproj/Intents.stringsdict b/MastodonIntent/cs.lproj/Intents.stringsdict new file mode 100644 index 000000000..5a39d5e64 --- /dev/null +++ b/MastodonIntent/cs.lproj/Intents.stringsdict @@ -0,0 +1,54 @@ + + + + + There are ${count} options matching ‘${content}’. - 2 + + NSStringLocalizedFormatKey + There are %#@count_option@ matching ‘${content}’. + count_option + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + %ld + zero + 0 options + one + 1 option + two + 2 options + few + %ld options + many + %ld options + other + %ld options + + + There are ${count} options matching ‘${visibility}’. + + NSStringLocalizedFormatKey + There are %#@count_option@ matching ‘${visibility}’. + count_option + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + %ld + zero + 0 options + one + 1 option + two + 2 options + few + %ld options + many + %ld options + other + %ld options + + + + diff --git a/MastodonIntent/sl.lproj/Intents.strings b/MastodonIntent/sl.lproj/Intents.strings new file mode 100644 index 000000000..72de87df2 --- /dev/null +++ b/MastodonIntent/sl.lproj/Intents.strings @@ -0,0 +1,51 @@ +"16wxgf" = "Objavi na Mastodonu"; + +"751xkl" = "besedilo"; + +"CsR7G2" = "Objavi na Mastodonu"; + +"HZSGTr" = "Kakšno vsebino želite objaviti?"; + +"HdGikU" = "Objava ni uspela"; + +"KDNTJ4" = "Vzrok za neuspeh"; + +"RHxKOw" = "Pošlji objavo z besedilom"; + +"RxSqsb" = "Objavi"; + +"WCIR3D" = "Objavite ${content} na Mastodonu"; + +"ZKJSNu" = "Objavi"; + +"ZS1XaK" = "${content}"; + +"ZbSjzC" = "Vidnost"; + +"Zo4jgJ" = "Vidnost objave"; + +"apSxMG-dYQ5NN" = "Z \"Javno\" se ujema ${count} možnosti."; + +"apSxMG-ehFLjY" = "S \"Samo sledilci\" se ujema ${count} možnosti."; + +"ayoYEb-dYQ5NN" = "${content}, javno"; + +"ayoYEb-ehFLjY" = "${content}, samo sledilci"; + +"dUyuGg" = "Objavi na Mastodonu"; + +"dYQ5NN" = "Javno"; + +"ehFLjY" = "Samo sledilci"; + +"gfePDu" = "Objava je spodletela. ${failureReason}"; + +"k7dbKQ" = "Uspešno poslana objava."; + +"oGiqmY-dYQ5NN" = "Da ne bo nesporazuma - želeli ste \"Javno\"?"; + +"oGiqmY-ehFLjY" = "Da ne bo nesporazuma - želeli ste \"Samo sledilci\"?"; + +"rM6dvp" = "URL"; + +"ryJLwG" = "Uspešno poslana objava. "; diff --git a/MastodonIntent/sl.lproj/Intents.stringsdict b/MastodonIntent/sl.lproj/Intents.stringsdict new file mode 100644 index 000000000..5a39d5e64 --- /dev/null +++ b/MastodonIntent/sl.lproj/Intents.stringsdict @@ -0,0 +1,54 @@ + + + + + There are ${count} options matching ‘${content}’. - 2 + + NSStringLocalizedFormatKey + There are %#@count_option@ matching ‘${content}’. + count_option + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + %ld + zero + 0 options + one + 1 option + two + 2 options + few + %ld options + many + %ld options + other + %ld options + + + There are ${count} options matching ‘${visibility}’. + + NSStringLocalizedFormatKey + There are %#@count_option@ matching ‘${visibility}’. + count_option + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + %ld + zero + 0 options + one + 1 option + two + 2 options + few + %ld options + many + %ld options + other + %ld options + + + + diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/cs.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/cs.lproj/Localizable.strings new file mode 100644 index 000000000..fbf2ff2f4 --- /dev/null +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/cs.lproj/Localizable.strings @@ -0,0 +1,459 @@ +"Common.Alerts.BlockDomain.BlockEntireDomain" = "Blokovat doménu"; +"Common.Alerts.BlockDomain.Title" = "Opravdu chcete blokovat celou doménu %@? Ve většině případů stačí zablokovat nebo skrýt pár konkrétních uživatelů, což také doporučujeme. Z této domény neuvidíte obsah v žádné veřejné časové ose ani v oznámeních. Vaši sledující z této domény budou odstraněni."; +"Common.Alerts.CleanCache.Message" = "Úspěšně vyčištěno %@ mezipaměti."; +"Common.Alerts.CleanCache.Title" = "Vyčistit mezipaměť"; +"Common.Alerts.Common.PleaseTryAgain" = "Zkuste to prosím znovu."; +"Common.Alerts.Common.PleaseTryAgainLater" = "Zkuste to prosím znovu později."; +"Common.Alerts.DeletePost.Message" = "Opravdu chcete smazat tento příspěvek?"; +"Common.Alerts.DeletePost.Title" = "Odstranit příspěvek"; +"Common.Alerts.DiscardPostContent.Message" = "Potvrďte odstranění obsahu složeného příspěvku."; +"Common.Alerts.DiscardPostContent.Title" = "Zahodit koncept"; +"Common.Alerts.EditProfileFailure.Message" = "Nelze upravit profil. Zkuste to prosím znovu."; +"Common.Alerts.EditProfileFailure.Title" = "Chyba při úpravě profilu"; +"Common.Alerts.PublishPostFailure.AttachmentsMessage.MoreThanOneVideo" = "Nelze připojit více než jedno video."; +"Common.Alerts.PublishPostFailure.AttachmentsMessage.VideoAttachWithPhoto" = "K příspěvku, který již obsahuje obrázky, nelze připojit video."; +"Common.Alerts.PublishPostFailure.Message" = "Nepodařilo se publikovat příspěvek. +Zkontrolujte prosím připojení k internetu."; +"Common.Alerts.PublishPostFailure.Title" = "Publikování selhalo"; +"Common.Alerts.SavePhotoFailure.Message" = "Pro uložení fotografie povolte přístup k knihovně fotografií."; +"Common.Alerts.SavePhotoFailure.Title" = "Uložení fotografie se nezdařilo"; +"Common.Alerts.ServerError.Title" = "Chyba serveru"; +"Common.Alerts.SignOut.Confirm" = "Odhlásit se"; +"Common.Alerts.SignOut.Message" = "Opravdu se chcete odhlásit?"; +"Common.Alerts.SignOut.Title" = "Odhlásit se"; +"Common.Alerts.SignUpFailure.Title" = "Registrace selhala"; +"Common.Alerts.VoteFailure.PollEnded" = "Anketa skončila"; +"Common.Alerts.VoteFailure.Title" = "Selhání hlasování"; +"Common.Controls.Actions.Add" = "Přidat"; +"Common.Controls.Actions.Back" = "Zpět"; +"Common.Controls.Actions.BlockDomain" = "Blokovat %@"; +"Common.Controls.Actions.Cancel" = "Zrušit"; +"Common.Controls.Actions.Compose" = "Napsat"; +"Common.Controls.Actions.Confirm" = "Potvrdit"; +"Common.Controls.Actions.Continue" = "Pokračovat"; +"Common.Controls.Actions.CopyPhoto" = "Kopírovat fotografii"; +"Common.Controls.Actions.Delete" = "Smazat"; +"Common.Controls.Actions.Discard" = "Zahodit"; +"Common.Controls.Actions.Done" = "Hotovo"; +"Common.Controls.Actions.Edit" = "Upravit"; +"Common.Controls.Actions.FindPeople" = "Najít lidi ke sledování"; +"Common.Controls.Actions.ManuallySearch" = "Místo toho ručně vyhledat"; +"Common.Controls.Actions.Next" = "Další"; +"Common.Controls.Actions.Ok" = "OK"; +"Common.Controls.Actions.Open" = "Otevřít"; +"Common.Controls.Actions.OpenInBrowser" = "Otevřít v prohlížeči"; +"Common.Controls.Actions.OpenInSafari" = "Otevřít v Safari"; +"Common.Controls.Actions.Preview" = "Náhled"; +"Common.Controls.Actions.Previous" = "Předchozí"; +"Common.Controls.Actions.Remove" = "Odstranit"; +"Common.Controls.Actions.Reply" = "Odpovědět"; +"Common.Controls.Actions.ReportUser" = "Nahlásit %@"; +"Common.Controls.Actions.Save" = "Uložit"; +"Common.Controls.Actions.SavePhoto" = "Uložit fotku"; +"Common.Controls.Actions.SeeMore" = "Zobrazit více"; +"Common.Controls.Actions.Settings" = "Nastavení"; +"Common.Controls.Actions.Share" = "Sdílet"; +"Common.Controls.Actions.SharePost" = "Sdílet příspěvek"; +"Common.Controls.Actions.ShareUser" = "Sdílet %@"; +"Common.Controls.Actions.SignIn" = "Přihlásit se"; +"Common.Controls.Actions.SignUp" = "Vytvořit účet"; +"Common.Controls.Actions.Skip" = "Přeskočit"; +"Common.Controls.Actions.TakePhoto" = "Vyfotit"; +"Common.Controls.Actions.TryAgain" = "Zkusit znovu"; +"Common.Controls.Actions.UnblockDomain" = "Odblokovat %@"; +"Common.Controls.Friendship.Block" = "Blokovat"; +"Common.Controls.Friendship.BlockDomain" = "Blokovat %@"; +"Common.Controls.Friendship.BlockUser" = "Blokovat %@"; +"Common.Controls.Friendship.Blocked" = "Blokovaný"; +"Common.Controls.Friendship.EditInfo" = "Upravit informace"; +"Common.Controls.Friendship.Follow" = "Sledovat"; +"Common.Controls.Friendship.Following" = "Sleduji"; +"Common.Controls.Friendship.HideReblogs" = "Hide Reblogs"; +"Common.Controls.Friendship.Mute" = "Skrýt"; +"Common.Controls.Friendship.MuteUser" = "Skrýt %@"; +"Common.Controls.Friendship.Muted" = "Skrytý"; +"Common.Controls.Friendship.Pending" = "Čekající"; +"Common.Controls.Friendship.Request" = "Požadavek"; +"Common.Controls.Friendship.ShowReblogs" = "Show Reblogs"; +"Common.Controls.Friendship.Unblock" = "Odblokovat"; +"Common.Controls.Friendship.UnblockUser" = "Odblokovat %@"; +"Common.Controls.Friendship.Unmute" = "Odkrýt"; +"Common.Controls.Friendship.UnmuteUser" = "Odkrýt %@"; +"Common.Controls.Keyboard.Common.ComposeNewPost" = "Vytvořit nový příspěvek"; +"Common.Controls.Keyboard.Common.OpenSettings" = "Otevřít Nastavení"; +"Common.Controls.Keyboard.Common.ShowFavorites" = "Zobrazit Oblíbené"; +"Common.Controls.Keyboard.Common.SwitchToTab" = "Přepnout na %@"; +"Common.Controls.Keyboard.SegmentedControl.NextSection" = "Další sekce"; +"Common.Controls.Keyboard.SegmentedControl.PreviousSection" = "Předchozí sekce"; +"Common.Controls.Keyboard.Timeline.NextStatus" = "Další příspěvek"; +"Common.Controls.Keyboard.Timeline.OpenAuthorProfile" = "Otevřít profil autora"; +"Common.Controls.Keyboard.Timeline.OpenRebloggerProfile" = "Otevřít rebloggerův profil"; +"Common.Controls.Keyboard.Timeline.OpenStatus" = "Otevřít příspěvek"; +"Common.Controls.Keyboard.Timeline.PreviewImage" = "Náhled obrázku"; +"Common.Controls.Keyboard.Timeline.PreviousStatus" = "Předchozí příspěvek"; +"Common.Controls.Keyboard.Timeline.ReplyStatus" = "Odpovědět na příspěvek"; +"Common.Controls.Keyboard.Timeline.ToggleContentWarning" = "Přepnout varování obsahu"; +"Common.Controls.Keyboard.Timeline.ToggleFavorite" = "Toggle Favorite on Post"; +"Common.Controls.Keyboard.Timeline.ToggleReblog" = "Toggle Reblog on Post"; +"Common.Controls.Status.Actions.Favorite" = "Oblíbit"; +"Common.Controls.Status.Actions.Hide" = "Skrýt"; +"Common.Controls.Status.Actions.Menu" = "Nabídka"; +"Common.Controls.Status.Actions.Reblog" = "Boostnout"; +"Common.Controls.Status.Actions.Reply" = "Odpovědět"; +"Common.Controls.Status.Actions.ShowGif" = "Zobrazit GIF"; +"Common.Controls.Status.Actions.ShowImage" = "Zobrazit obrázek"; +"Common.Controls.Status.Actions.ShowVideoPlayer" = "Zobrazit video přehrávač"; +"Common.Controls.Status.Actions.TapThenHoldToShowMenu" = "Klepnutím podržte pro zobrazení nabídky"; +"Common.Controls.Status.Actions.Unfavorite" = "Odebrat z oblízených"; +"Common.Controls.Status.Actions.Unreblog" = "Undo reblog"; +"Common.Controls.Status.ContentWarning" = "Varování o obsahu"; +"Common.Controls.Status.MediaContentWarning" = "Klepnutím kdekoli zobrazíte"; +"Common.Controls.Status.MetaEntity.Email" = "E-mailová adresa: %@"; +"Common.Controls.Status.MetaEntity.Hashtag" = "Hashtag: %@"; +"Common.Controls.Status.MetaEntity.Mention" = "Zobrazit profil: %@"; +"Common.Controls.Status.MetaEntity.Url" = "Odkaz: %@"; +"Common.Controls.Status.Poll.Closed" = "Uzavřeno"; +"Common.Controls.Status.Poll.Vote" = "Hlasovat"; +"Common.Controls.Status.SensitiveContent" = "Citlivý obsah"; +"Common.Controls.Status.ShowPost" = "Zobrazit příspěvek"; +"Common.Controls.Status.ShowUserProfile" = "Zobrazit profil uživatele"; +"Common.Controls.Status.Tag.Email" = "E-mail"; +"Common.Controls.Status.Tag.Emoji" = "Emoji"; +"Common.Controls.Status.Tag.Hashtag" = "Hashtag"; +"Common.Controls.Status.Tag.Link" = "Odkaz"; +"Common.Controls.Status.Tag.Mention" = "Zmínka"; +"Common.Controls.Status.Tag.Url" = "URL"; +"Common.Controls.Status.TapToReveal" = "Klepnutím zobrazit"; +"Common.Controls.Status.UserReblogged" = "%@ reblogged"; +"Common.Controls.Status.UserRepliedTo" = "Odpověděl %@"; +"Common.Controls.Status.Visibility.Direct" = "Pouze zmíněný uživatel může vidět tento příspěvek."; +"Common.Controls.Status.Visibility.Private" = "Pouze jejich sledující mohou vidět tento příspěvek."; +"Common.Controls.Status.Visibility.PrivateFromMe" = "Pouze moji sledující mohou vidět tento příspěvek."; +"Common.Controls.Status.Visibility.Unlisted" = "Každý může vidět tento příspěvek, ale nezobrazovat ve veřejné časové ose."; +"Common.Controls.Tabs.Home" = "Domů"; +"Common.Controls.Tabs.Notification" = "Oznamování"; +"Common.Controls.Tabs.Profile" = "Profil"; +"Common.Controls.Tabs.Search" = "Hledat"; +"Common.Controls.Timeline.Filtered" = "Filtrováno"; +"Common.Controls.Timeline.Header.BlockedWarning" = "Nemůžeš zobrazit profil tohoto uživatele, dokud tě neodblokují."; +"Common.Controls.Timeline.Header.BlockingWarning" = "Nemůžete zobrazit profil tohoto uživatele, dokud ho neodblokujete. +Váš profil pro něj vypadá takto."; +"Common.Controls.Timeline.Header.NoStatusFound" = "Nebyl nalezen žádný příspěvek"; +"Common.Controls.Timeline.Header.SuspendedWarning" = "Tento uživatel byl pozastaven."; +"Common.Controls.Timeline.Header.UserBlockedWarning" = "Nemůžete zobrazit profil %@, dokud vás neodblokuje."; +"Common.Controls.Timeline.Header.UserBlockingWarning" = "Nemůžete zobrazit profil %@, dokud ho neodblokujete. +Váš profil pro něj vypadá takto."; +"Common.Controls.Timeline.Header.UserSuspendedWarning" = "Účet %@ byl pozastaven."; +"Common.Controls.Timeline.Loader.LoadMissingPosts" = "Načíst chybějící příspěvky"; +"Common.Controls.Timeline.Loader.LoadingMissingPosts" = "Načíst chybějící příspěvky..."; +"Common.Controls.Timeline.Loader.ShowMoreReplies" = "Zobrazit více odovědí"; +"Common.Controls.Timeline.Timestamp.Now" = "Nyní"; +"Scene.AccountList.AddAccount" = "Přidat účet"; +"Scene.AccountList.DismissAccountSwitcher" = "Zrušit přepínač účtů"; +"Scene.AccountList.TabBarHint" = "Aktuální vybraný profil: %@. Dvojitým poklepáním zobrazíte přepínač účtů"; +"Scene.Bookmark.Title" = "Záložky"; +"Scene.Compose.Accessibility.AppendAttachment" = "Přidat přílohu"; +"Scene.Compose.Accessibility.AppendPoll" = "Přidat anketu"; +"Scene.Compose.Accessibility.CustomEmojiPicker" = "Vlastní výběr Emoji"; +"Scene.Compose.Accessibility.DisableContentWarning" = "Vypnout upozornění na obsah"; +"Scene.Compose.Accessibility.EnableContentWarning" = "Povolit upozornění na obsah"; +"Scene.Compose.Accessibility.PostOptions" = "Post Options"; +"Scene.Compose.Accessibility.PostVisibilityMenu" = "Menu viditelnosti příspěvku"; +"Scene.Compose.Accessibility.PostingAs" = "Posting as %@"; +"Scene.Compose.Accessibility.RemovePoll" = "Odstranit anketu"; +"Scene.Compose.Attachment.AttachmentBroken" = "Tento %@ je poškozený a nemůže být +nahrán do Mastodonu."; +"Scene.Compose.Attachment.AttachmentTooLarge" = "Příloha je příliš velká"; +"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Nelze rozpoznat toto medium přílohy"; +"Scene.Compose.Attachment.CompressingState" = "Probíhá komprese..."; +"Scene.Compose.Attachment.DescriptionPhoto" = "Popište fotografii pro zrakově postižené osoby..."; +"Scene.Compose.Attachment.DescriptionVideo" = "Popište video pro zrakově postižené..."; +"Scene.Compose.Attachment.LoadFailed" = "Načtení se nezdařilo"; +"Scene.Compose.Attachment.Photo" = "fotka"; +"Scene.Compose.Attachment.ServerProcessingState" = "Zpracování serveru..."; +"Scene.Compose.Attachment.UploadFailed" = "Nahrání selhalo"; +"Scene.Compose.Attachment.Video" = "video"; +"Scene.Compose.AutoComplete.SpaceToAdd" = "Mezera k přidání"; +"Scene.Compose.ComposeAction" = "Zveřejnit"; +"Scene.Compose.ContentInputPlaceholder" = "Napište nebo vložte, co je na mysli"; +"Scene.Compose.ContentWarning.Placeholder" = "Zde napište přesné varování..."; +"Scene.Compose.Keyboard.AppendAttachmentEntry" = "Přidat přílohu - %@"; +"Scene.Compose.Keyboard.DiscardPost" = "Zahodit příspěvek"; +"Scene.Compose.Keyboard.PublishPost" = "Publikovat příspěvek"; +"Scene.Compose.Keyboard.SelectVisibilityEntry" = "Vyberte viditelnost - %@"; +"Scene.Compose.Keyboard.ToggleContentWarning" = "Přepnout varování obsahu"; +"Scene.Compose.Keyboard.TogglePoll" = "Přepnout anketu"; +"Scene.Compose.MediaSelection.Browse" = "Procházet"; +"Scene.Compose.MediaSelection.Camera" = "Vyfotit"; +"Scene.Compose.MediaSelection.PhotoLibrary" = "Knihovna fotografií"; +"Scene.Compose.Poll.DurationTime" = "Doba trvání: %@"; +"Scene.Compose.Poll.OneDay" = "1 den"; +"Scene.Compose.Poll.OneHour" = "1 hodina"; +"Scene.Compose.Poll.OptionNumber" = "Možnost %ld"; +"Scene.Compose.Poll.SevenDays" = "7 dní"; +"Scene.Compose.Poll.SixHours" = "6 hodin"; +"Scene.Compose.Poll.ThePollHasEmptyOption" = "Anketa má prázdnou možnost"; +"Scene.Compose.Poll.ThePollIsInvalid" = "Anketa je neplatná"; +"Scene.Compose.Poll.ThirtyMinutes" = "30 minut"; +"Scene.Compose.Poll.ThreeDays" = "3 dny"; +"Scene.Compose.ReplyingToUser" = "odpovídá na %@"; +"Scene.Compose.Title.NewPost" = "Nový příspěvek"; +"Scene.Compose.Title.NewReply" = "Nová odpověď"; +"Scene.Compose.Visibility.Direct" = "Pouze lidé, které zmíním"; +"Scene.Compose.Visibility.Private" = "Pouze sledující"; +"Scene.Compose.Visibility.Public" = "Veřejný"; +"Scene.Compose.Visibility.Unlisted" = "Neuvedeno"; +"Scene.ConfirmEmail.Button.OpenEmailApp" = "Otevřít e-mailovou aplikaci"; +"Scene.ConfirmEmail.Button.Resend" = "Poslat znovu"; +"Scene.ConfirmEmail.DontReceiveEmail.Description" = "Zkontrolujte, zda je vaše e-mailová adresa správná, stejně jako složka nevyžádané pošty, pokud ji máte."; +"Scene.ConfirmEmail.DontReceiveEmail.ResendEmail" = "Znovu odeslat e-mail"; +"Scene.ConfirmEmail.DontReceiveEmail.Title" = "Zkontrolujte svůj e-mail"; +"Scene.ConfirmEmail.OpenEmailApp.Description" = "Právě jsme vám poslali e-mail. Zkontrolujte složku nevyžádané zprávy, pokud ji máte."; +"Scene.ConfirmEmail.OpenEmailApp.Mail" = "Pošta"; +"Scene.ConfirmEmail.OpenEmailApp.OpenEmailClient" = "Otevřít e-mailového klienta"; +"Scene.ConfirmEmail.OpenEmailApp.Title" = "Zkontrolujte doručenou poštu."; +"Scene.ConfirmEmail.Subtitle" = "Klepněte na odkaz, který jsme vám poslali e-mailem, abyste ověřili Váš účet."; +"Scene.ConfirmEmail.TapTheLinkWeEmailedToYouToVerifyYourAccount" = "Klepněte na odkaz, který jsme vám poslali e-mailem, abyste ověřili Váš účet"; +"Scene.ConfirmEmail.Title" = "Ještě jedna věc."; +"Scene.Discovery.Intro" = "Toto jsou příspěvky, které získávají pozornost ve vašem koutu Mastodonu."; +"Scene.Discovery.Tabs.Community" = "Komunita"; +"Scene.Discovery.Tabs.ForYou" = "Pro vás"; +"Scene.Discovery.Tabs.Hashtags" = "Hashtagy"; +"Scene.Discovery.Tabs.News" = "Zprávy"; +"Scene.Discovery.Tabs.Posts" = "Příspěvky"; +"Scene.Familiarfollowers.FollowedByNames" = "Sledován od %@"; +"Scene.Familiarfollowers.Title" = "Sledující, které znáte"; +"Scene.Favorite.Title" = "Vaše oblíbené"; +"Scene.FavoritedBy.Title" = "Oblíben"; +"Scene.Follower.Footer" = "Sledující z jiných serverů nejsou zobrazeni."; +"Scene.Follower.Title" = "sledující"; +"Scene.Following.Footer" = "Sledování z jiných serverů není zobrazeno."; +"Scene.Following.Title" = "sledování"; +"Scene.HomeTimeline.NavigationBarState.Accessibility.LogoHint" = "Klepnutím přejdete nahoru a znovu klepněte na předchozí místo"; +"Scene.HomeTimeline.NavigationBarState.Accessibility.LogoLabel" = "Tlačítko s logem"; +"Scene.HomeTimeline.NavigationBarState.NewPosts" = "Nové příspěvky"; +"Scene.HomeTimeline.NavigationBarState.Offline" = "Offline"; +"Scene.HomeTimeline.NavigationBarState.Published" = "Publikováno!"; +"Scene.HomeTimeline.NavigationBarState.Publishing" = "Publikování příspěvku..."; +"Scene.HomeTimeline.Title" = "Domů"; +"Scene.Login.ServerSearchField.Placeholder" = "Zadejte URL nebo vyhledávejte váš server"; +"Scene.Login.Subtitle" = "Přihlaste se na serveru, na kterém jste si vytvořili účet."; +"Scene.Login.Title" = "Vítejte zpět"; +"Scene.Notification.FollowRequest.Accept" = "Přijmout"; +"Scene.Notification.FollowRequest.Accepted" = "Přijato"; +"Scene.Notification.FollowRequest.Reject" = "odmítnout"; +"Scene.Notification.FollowRequest.Rejected" = "Zamítnuto"; +"Scene.Notification.Keyobard.ShowEverything" = "Zobrazit vše"; +"Scene.Notification.Keyobard.ShowMentions" = "Zobrazit zmínky"; +"Scene.Notification.NotificationDescription.FavoritedYourPost" = "si oblíbil váš příspěvek"; +"Scene.Notification.NotificationDescription.FollowedYou" = "vás sleduje"; +"Scene.Notification.NotificationDescription.MentionedYou" = "vás zmínil/a"; +"Scene.Notification.NotificationDescription.PollHasEnded" = "anketa skončila"; +"Scene.Notification.NotificationDescription.RebloggedYourPost" = "boostnul váš příspěvek"; +"Scene.Notification.NotificationDescription.RequestToFollowYou" = "požádat vás o sledování"; +"Scene.Notification.Title.Everything" = "Všechno"; +"Scene.Notification.Title.Mentions" = "Zmínky"; +"Scene.Preview.Keyboard.ClosePreview" = "Zavřít náhled"; +"Scene.Preview.Keyboard.ShowNext" = "Zobrazit další"; +"Scene.Preview.Keyboard.ShowPrevious" = "Zobrazit předchozí"; +"Scene.Profile.Accessibility.DoubleTapToOpenTheList" = "Dvojitým poklepáním otevřete seznam"; +"Scene.Profile.Accessibility.EditAvatarImage" = "Upravit obrázek avataru"; +"Scene.Profile.Accessibility.ShowAvatarImage" = "Zobrazit obrázek avataru"; +"Scene.Profile.Accessibility.ShowBannerImage" = "Zobrazit obrázek banneru"; +"Scene.Profile.Dashboard.Followers" = "sledující"; +"Scene.Profile.Dashboard.Following" = "sledování"; +"Scene.Profile.Dashboard.Posts" = "příspěvky"; +"Scene.Profile.Fields.AddRow" = "Přidat řádek"; +"Scene.Profile.Fields.Placeholder.Content" = "Obsah"; +"Scene.Profile.Fields.Placeholder.Label" = "Označení"; +"Scene.Profile.Fields.Verified.Long" = "Vlastnictví tohoto odkazu bylo zkontrolováno na %@"; +"Scene.Profile.Fields.Verified.Short" = "Ověřeno na %@"; +"Scene.Profile.Header.FollowsYou" = "Sleduje vás"; +"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Potvrdit blokování %@"; +"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Blokovat účet"; +"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "Confirm to hide reblogs"; +"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Title" = "Hide Reblogs"; +"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Message" = "Potvrdit skrytí %@"; +"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Skrýt účet"; +"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Confirm to show reblogs"; +"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "Show Reblogs"; +"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Potvrďte odblokování %@"; +"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Odblokovat účet"; +"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Potvrďte zrušení ztlumení %@"; +"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Title" = "Zrušit skrytí účtu"; +"Scene.Profile.SegmentedControl.About" = "O uživateli"; +"Scene.Profile.SegmentedControl.Media" = "Média"; +"Scene.Profile.SegmentedControl.Posts" = "Příspěvky"; +"Scene.Profile.SegmentedControl.PostsAndReplies" = "Příspěvky a odpovědi"; +"Scene.Profile.SegmentedControl.Replies" = "Odpovědí"; +"Scene.RebloggedBy.Title" = "Reblogged By"; +"Scene.Register.Error.Item.Agreement" = "Souhlas"; +"Scene.Register.Error.Item.Email" = "E-mail"; +"Scene.Register.Error.Item.Locale" = "Jazyk"; +"Scene.Register.Error.Item.Password" = "Heslo"; +"Scene.Register.Error.Item.Reason" = "Důvod"; +"Scene.Register.Error.Item.Username" = "Uživatelské jméno"; +"Scene.Register.Error.Reason.Accepted" = "%@ musí být přijato"; +"Scene.Register.Error.Reason.Blank" = "%@ je vyžadováno"; +"Scene.Register.Error.Reason.Blocked" = "%@ používá zakázanou e-mailovou službu"; +"Scene.Register.Error.Reason.Inclusion" = "%@ není podporovaná hodnota"; +"Scene.Register.Error.Reason.Invalid" = "%@ je neplatné"; +"Scene.Register.Error.Reason.Reserved" = "%@ je rezervované klíčové slovo"; +"Scene.Register.Error.Reason.Taken" = "%@ se již používá"; +"Scene.Register.Error.Reason.TooLong" = "%@ je příliš dlouhé"; +"Scene.Register.Error.Reason.TooShort" = "%@ je příliš krátké"; +"Scene.Register.Error.Reason.Unreachable" = "%@ pravděpodobně neexistuje"; +"Scene.Register.Error.Special.EmailInvalid" = "Toto není platná e-mailová adresa"; +"Scene.Register.Error.Special.PasswordTooShort" = "Heslo je příliš krátké (musí mít alespoň 8 znaků)"; +"Scene.Register.Error.Special.UsernameInvalid" = "Uživatelské jméno musí obsahovat pouze alfanumerické znaky a podtržítka"; +"Scene.Register.Error.Special.UsernameTooLong" = "Uživatelské jméno je příliš dlouhé (nemůže být delší než 30 znaků)"; +"Scene.Register.Input.Avatar.Delete" = "Smazat"; +"Scene.Register.Input.DisplayName.Placeholder" = "zobrazované jméno"; +"Scene.Register.Input.Email.Placeholder" = "e-mail"; +"Scene.Register.Input.Invite.RegistrationUserInviteRequest" = "Proč se chcete připojit?"; +"Scene.Register.Input.Password.Accessibility.Checked" = "zaškrtnuto"; +"Scene.Register.Input.Password.Accessibility.Unchecked" = "nezaškrtnuto"; +"Scene.Register.Input.Password.CharacterLimit" = "8 znaků"; +"Scene.Register.Input.Password.Hint" = "Vaše heslo musí obsahovat alespoň 8 znaků"; +"Scene.Register.Input.Password.Placeholder" = "heslo"; +"Scene.Register.Input.Password.Require" = "Heslo musí být alespoň:"; +"Scene.Register.Input.Username.DuplicatePrompt" = "Toto uživatelské jméno je použito."; +"Scene.Register.Input.Username.Placeholder" = "uživatelské jméno"; +"Scene.Register.LetsGetYouSetUpOnDomain" = "Pojďme si nastavit %@"; +"Scene.Register.Title" = "Pojďme si nastavit %@"; +"Scene.Report.Content1" = "Existují nějaké další příspěvky, které byste chtěli přidat do zprávy?"; +"Scene.Report.Content2" = "Je o tomto hlášení něco, co by měli vědět moderátoři?"; +"Scene.Report.ReportSentTitle" = "Děkujeme za nahlášení, podíváme se na to."; +"Scene.Report.Reported" = "NAHLÁŠEN"; +"Scene.Report.Send" = "Odeslat hlášení"; +"Scene.Report.SkipToSend" = "Odeslat bez komentáře"; +"Scene.Report.Step1" = "Krok 1 ze 2"; +"Scene.Report.Step2" = "Krok 2 ze 2"; +"Scene.Report.StepFinal.BlockUser" = "Blokovat %@"; +"Scene.Report.StepFinal.DontWantToSeeThis" = "Nechcete to vidět?"; +"Scene.Report.StepFinal.MuteUser" = "Skrýt %@"; +"Scene.Report.StepFinal.TheyWillNoLongerBeAbleToFollowOrSeeYourPostsButTheyCanSeeIfTheyveBeenBlocked" = "Už nebudou moci sledovat nebo vidět vaše příspěvky, ale mohou vidět, zda byly zablokovány."; +"Scene.Report.StepFinal.Unfollow" = "Přestat sledovat"; +"Scene.Report.StepFinal.UnfollowUser" = "Přestat sledovat %@"; +"Scene.Report.StepFinal.Unfollowed" = "Už nesledujete"; +"Scene.Report.StepFinal.WhenYouSeeSomethingYouDontLikeOnMastodonYouCanRemoveThePersonFromYourExperience." = "Když uvidíte něco, co se vám nelíbí na Mastodonu, můžete odstranit tuto osobu ze svého zážitku."; +"Scene.Report.StepFinal.WhileWeReviewThisYouCanTakeActionAgainstUser" = "Zatímco to posuzujeme, můžete podniknout kroky proti %@"; +"Scene.Report.StepFinal.YouWontSeeTheirPostsOrReblogsInYourHomeFeedTheyWontKnowTheyVeBeenMuted" = "Neuvidíte jejich příspěvky nebo boostnutí v domovském kanálu. Nebudou vědět, že jsou skrytí."; +"Scene.Report.StepFour.IsThereAnythingElseWeShouldKnow" = "Je ještě něco jiného, co bychom měli vědět?"; +"Scene.Report.StepFour.Step4Of4" = "Krok 4 ze 4"; +"Scene.Report.StepOne.IDontLikeIt" = "Nelíbí se mi"; +"Scene.Report.StepOne.ItIsNotSomethingYouWantToSee" = "Není to něco, co chcete vidět"; +"Scene.Report.StepOne.ItViolatesServerRules" = "Porušuje pravidla serveru"; +"Scene.Report.StepOne.ItsSomethingElse" = "Jde o něco jiného"; +"Scene.Report.StepOne.ItsSpam" = "Je to spam"; +"Scene.Report.StepOne.MaliciousLinksFakeEngagementOrRepetetiveReplies" = "Škodlivé odkazy, falešné zapojení nebo opakující se odpovědi"; +"Scene.Report.StepOne.SelectTheBestMatch" = "Vyberte nejbližší možnost"; +"Scene.Report.StepOne.Step1Of4" = "Krok 1 ze 4"; +"Scene.Report.StepOne.TheIssueDoesNotFitIntoOtherCategories" = "Problém neodpovídá ostatním kategoriím"; +"Scene.Report.StepOne.WhatsWrongWithThisAccount" = "Co je špatně s tímto účtem?"; +"Scene.Report.StepOne.WhatsWrongWithThisPost" = "Co je na tomto příspěvku špatně?"; +"Scene.Report.StepOne.WhatsWrongWithThisUsername" = "Co je špatně na %@?"; +"Scene.Report.StepOne.YouAreAwareThatItBreaksSpecificRules" = "Máte za to, že porušuje konkrétní pravidla"; +"Scene.Report.StepThree.AreThereAnyPostsThatBackUpThisReport" = "Existují příspěvky dokládající toto hlášení?"; +"Scene.Report.StepThree.SelectAllThatApply" = "Vyberte všechna relevantní"; +"Scene.Report.StepThree.Step3Of4" = "Krok 3 ze 4"; +"Scene.Report.StepTwo.IJustDon’tLikeIt" = "Jen se mi to nelíbí"; +"Scene.Report.StepTwo.SelectAllThatApply" = "Vyberte všechna relevantní"; +"Scene.Report.StepTwo.Step2Of4" = "Krok 2 ze 4"; +"Scene.Report.StepTwo.WhichRulesAreBeingViolated" = "Jaká pravidla jsou porušována?"; +"Scene.Report.TextPlaceholder" = "Napište nebo vložte další komentáře"; +"Scene.Report.Title" = "Nahlásit %@"; +"Scene.Report.TitleReport" = "Nahlásit"; +"Scene.Search.Recommend.Accounts.Description" = "Možná budete chtít sledovat tyto účty"; +"Scene.Search.Recommend.Accounts.Follow" = "Sledovat"; +"Scene.Search.Recommend.Accounts.Title" = "Účty, které by se vám mohly líbit"; +"Scene.Search.Recommend.ButtonText" = "Zobrazit vše"; +"Scene.Search.Recommend.HashTag.Description" = "Hashtagy, kterým se dostává dosti pozornosti"; +"Scene.Search.Recommend.HashTag.PeopleTalking" = "%@ lidí mluví"; +"Scene.Search.Recommend.HashTag.Title" = "Populární na Mastodonu"; +"Scene.Search.SearchBar.Cancel" = "Zrušit"; +"Scene.Search.SearchBar.Placeholder" = "Hledat hashtagy a uživatele"; +"Scene.Search.Searching.Clear" = "Vymazat"; +"Scene.Search.Searching.EmptyState.NoResults" = "Žádné výsledky"; +"Scene.Search.Searching.RecentSearch" = "Nedávná hledání"; +"Scene.Search.Searching.Segment.All" = "Vše"; +"Scene.Search.Searching.Segment.Hashtags" = "Hashtagy"; +"Scene.Search.Searching.Segment.People" = "Lidé"; +"Scene.Search.Searching.Segment.Posts" = "Příspěvky"; +"Scene.Search.Title" = "Hledat"; +"Scene.ServerPicker.Button.Category.Academia" = "akademická sféra"; +"Scene.ServerPicker.Button.Category.Activism" = "aktivismus"; +"Scene.ServerPicker.Button.Category.All" = "Vše"; +"Scene.ServerPicker.Button.Category.AllAccessiblityDescription" = "Kategorie: Vše"; +"Scene.ServerPicker.Button.Category.Art" = "umění"; +"Scene.ServerPicker.Button.Category.Food" = "jídlo"; +"Scene.ServerPicker.Button.Category.Furry" = "furry"; +"Scene.ServerPicker.Button.Category.Games" = "hry"; +"Scene.ServerPicker.Button.Category.General" = "obecné"; +"Scene.ServerPicker.Button.Category.Journalism" = "žurnalistika"; +"Scene.ServerPicker.Button.Category.Lgbt" = "lgbt"; +"Scene.ServerPicker.Button.Category.Music" = "hudba"; +"Scene.ServerPicker.Button.Category.Regional" = "regionální"; +"Scene.ServerPicker.Button.Category.Tech" = "technologie"; +"Scene.ServerPicker.Button.SeeLess" = "Zobrazit méně"; +"Scene.ServerPicker.Button.SeeMore" = "Zobrazit více"; +"Scene.ServerPicker.EmptyState.BadNetwork" = "Při načítání dat nastala chyba. Zkontrolujte připojení k internetu."; +"Scene.ServerPicker.EmptyState.FindingServers" = "Hledání dostupných serverů..."; +"Scene.ServerPicker.EmptyState.NoResults" = "Žádné výsledky"; +"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "Hledejte komunity nebo zadejte URL"; +"Scene.ServerPicker.Label.Category" = "KATEGORIE"; +"Scene.ServerPicker.Label.Language" = "JAZYK"; +"Scene.ServerPicker.Label.Users" = "UŽIVATELÉ"; +"Scene.ServerPicker.Subtitle" = "Vyberte server založený ve vašem regionu, podle zájmů nebo podle obecného účelu. Stále můžete chatovat s kýmkoli na Mastodonu bez ohledu na vaše servery."; +"Scene.ServerPicker.Title" = "Mastodon tvoří uživatelé z různých serverů."; +"Scene.ServerRules.Button.Confirm" = "Souhlasím"; +"Scene.ServerRules.PrivacyPolicy" = "zásady ochrany osobních údajů"; +"Scene.ServerRules.Prompt" = "Pokračováním budete podléhat podmínkám služby a zásad ochrany osobních údajů pro uživatele %@."; +"Scene.ServerRules.Subtitle" = "Ty nastavují a prosazují moderátoři %@."; +"Scene.ServerRules.TermsOfService" = "podmínky služby"; +"Scene.ServerRules.Title" = "Některá základní pravidla."; +"Scene.Settings.Footer.MastodonDescription" = "Mastodon je open source software. Na GitHub můžete nahlásit problémy na %@ (%@)"; +"Scene.Settings.Keyboard.CloseSettingsWindow" = "Zavřít okno nastavení"; +"Scene.Settings.Section.Appearance.Automatic" = "Automaticky"; +"Scene.Settings.Section.Appearance.Dark" = "Vždy tmavý"; +"Scene.Settings.Section.Appearance.Light" = "Vždy světlý"; +"Scene.Settings.Section.Appearance.Title" = "Vzhled"; +"Scene.Settings.Section.BoringZone.AccountSettings" = "Nastavení účtu"; +"Scene.Settings.Section.BoringZone.Privacy" = "Zásady ochrany osobních údajů"; +"Scene.Settings.Section.BoringZone.Terms" = "Podmínky služby"; +"Scene.Settings.Section.BoringZone.Title" = "Nudná část"; +"Scene.Settings.Section.LookAndFeel.Light" = "Světlý"; +"Scene.Settings.Section.LookAndFeel.ReallyDark" = "Skutečně tmavý"; +"Scene.Settings.Section.LookAndFeel.SortaDark" = "Sorta Dark"; +"Scene.Settings.Section.LookAndFeel.Title" = "Vzhled a chování"; +"Scene.Settings.Section.LookAndFeel.UseSystem" = "Použít systém"; +"Scene.Settings.Section.Notifications.Boosts" = "Boostnul můj příspěvek"; +"Scene.Settings.Section.Notifications.Favorites" = "Oblíbil si můj příspěvek"; +"Scene.Settings.Section.Notifications.Follows" = "Sleduje mě"; +"Scene.Settings.Section.Notifications.Mentions" = "Zmiňuje mě"; +"Scene.Settings.Section.Notifications.Title" = "Upozornění"; +"Scene.Settings.Section.Notifications.Trigger.Anyone" = "kdokoliv"; +"Scene.Settings.Section.Notifications.Trigger.Follow" = "kdokoli, koho sleduji"; +"Scene.Settings.Section.Notifications.Trigger.Follower" = "sledující"; +"Scene.Settings.Section.Notifications.Trigger.Noone" = "nikdo"; +"Scene.Settings.Section.Notifications.Trigger.Title" = "Upozornit, když"; +"Scene.Settings.Section.Preference.DisableAvatarAnimation" = "Zakázat animované avatary"; +"Scene.Settings.Section.Preference.DisableEmojiAnimation" = "Zakázat animované emoji"; +"Scene.Settings.Section.Preference.OpenLinksInMastodon" = "Otevřít odkazy v Mastodonu"; +"Scene.Settings.Section.Preference.Title" = "Předvolby"; +"Scene.Settings.Section.Preference.TrueBlackDarkMode" = "Skutečný černý tmavý režim"; +"Scene.Settings.Section.Preference.UsingDefaultBrowser" = "Použít výchozí prohlížeč pro otevírání odkazů"; +"Scene.Settings.Section.SpicyZone.Clear" = "Vymazat mezipaměť médií"; +"Scene.Settings.Section.SpicyZone.Signout" = "Odhlásit se"; +"Scene.Settings.Section.SpicyZone.Title" = "Ostrá část"; +"Scene.Settings.Title" = "Nastavení"; +"Scene.SuggestionAccount.FollowExplain" = "Když někoho sledujete, uvidíte jejich příspěvky ve vašem domovském kanálu."; +"Scene.SuggestionAccount.Title" = "Najít lidi pro sledování"; +"Scene.Thread.BackTitle" = "Příspěvek"; +"Scene.Thread.Title" = "Příspěvek od %@"; +"Scene.Welcome.GetStarted" = "Začínáme"; +"Scene.Welcome.LogIn" = "Přihlásit se"; +"Scene.Welcome.Slogan" = "Sociální sítě opět ve vašich rukou."; +"Scene.Wizard.AccessibilityHint" = "Dvojitým poklepáním tohoto průvodce odmítnete"; +"Scene.Wizard.MultipleAccountSwitchIntroDescription" = "Přepínání mezi více účty podržením tlačítka profilu."; +"Scene.Wizard.NewInMastodon" = "Nový v Mastodonu"; \ No newline at end of file diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/cs.lproj/Localizable.stringsdict b/MastodonSDK/Sources/MastodonLocalization/Resources/cs.lproj/Localizable.stringsdict new file mode 100644 index 000000000..6e44e9f0a --- /dev/null +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/cs.lproj/Localizable.stringsdict @@ -0,0 +1,581 @@ + + + + + a11y.plural.count.unread.notification + + NSStringLocalizedFormatKey + %#@notification_count_unread_notification@ + notification_count_unread_notification + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 nepřečtené oznámení + few + %ld nepřečtené oznámení + many + %ld nepřečtených oznámení + other + %ld nepřečtených oznámení + + + a11y.plural.count.input_limit_exceeds + + NSStringLocalizedFormatKey + Vstupní limit přesahuje %#@character_count@ + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 znak + few + %ld znaky + many + %ld znaků + other + %ld znaků + + + a11y.plural.count.input_limit_remains + + NSStringLocalizedFormatKey + Vstupní limit zůstává %#@character_count@ + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 znak + few + %ld znaky + many + %ld znaků + other + %ld znaků + + + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + %#@character_count@ left + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 znak + few + %ld znaky + many + %ld znaků + other + %ld znaků + + + plural.count.followed_by_and_mutual + + NSStringLocalizedFormatKey + %#@names@%#@count_mutual@ + names + + one + + few + + many + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + other + + + count_mutual + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + Followed by %1$@, and another mutual + few + Followed by %1$@, and %ld mutuals + many + Followed by %1$@, and %ld mutuals + other + Followed by %1$@, and %ld mutuals + + + plural.count.metric_formatted.post + + NSStringLocalizedFormatKey + %@ %#@post_count@ + post_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + příspěvek + few + příspěvky + many + příspěvků + other + příspěvků + + + plural.count.media + + NSStringLocalizedFormatKey + %#@media_count@ + media_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 médium + few + %ld média + many + %ld médií + other + %ld médií + + + plural.count.post + + NSStringLocalizedFormatKey + %#@post_count@ + post_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 příspěvek + few + %ld příspěvky + many + %ld příspěvků + other + %ld příspěvků + + + plural.count.favorite + + NSStringLocalizedFormatKey + %#@favorite_count@ + favorite_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 oblíbený + few + %ld favorites + many + %ld favorites + other + %ld favorites + + + plural.count.reblog + + NSStringLocalizedFormatKey + %#@reblog_count@ + reblog_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 reblog + few + %ld reblogs + many + %ld reblogs + other + %ld reblogs + + + plural.count.reply + + NSStringLocalizedFormatKey + %#@reply_count@ + reply_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 odpověď + few + %ld odpovědi + many + %ld odpovědí + other + %ld odpovědí + + + plural.count.vote + + NSStringLocalizedFormatKey + %#@vote_count@ + vote_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 hlas + few + %ld hlasy + many + %ld hlasů + other + %ld hlasů + + + plural.count.voter + + NSStringLocalizedFormatKey + %#@voter_count@ + voter_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 hlasující + few + %ld hlasující + many + %ld hlasujících + other + %ld hlasujících + + + plural.people_talking + + NSStringLocalizedFormatKey + %#@count_people_talking@ + count_people_talking + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 people talking + few + %ld people talking + many + %ld people talking + other + %ld people talking + + + plural.count.following + + NSStringLocalizedFormatKey + %#@count_following@ + count_following + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 sledující + few + %ld sledující + many + %ld sledujících + other + %ld sledujících + + + plural.count.follower + + NSStringLocalizedFormatKey + %#@count_follower@ + count_follower + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 follower + few + %ld followers + many + %ld followers + other + %ld followers + + + date.year.left + + NSStringLocalizedFormatKey + %#@count_year_left@ + count_year_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + Zbývá 1 rok + few + Zbývají %ld roky + many + Zbývá %ld roků + other + Zbývá %ld roků + + + date.month.left + + NSStringLocalizedFormatKey + %#@count_month_left@ + count_month_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + Zbývá 1 měsíc + few + %ld months left + many + %ld months left + other + %ld months left + + + date.day.left + + NSStringLocalizedFormatKey + %#@count_day_left@ + count_day_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 day left + few + %ld days left + many + %ld days left + other + %ld days left + + + date.hour.left + + NSStringLocalizedFormatKey + %#@count_hour_left@ + count_hour_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 hour left + few + %ld hours left + many + %ld hours left + other + %ld hours left + + + date.minute.left + + NSStringLocalizedFormatKey + %#@count_minute_left@ + count_minute_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 minute left + few + %ld minutes left + many + %ld minutes left + other + %ld minutes left + + + date.second.left + + NSStringLocalizedFormatKey + %#@count_second_left@ + count_second_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 second left + few + %ld seconds left + many + %ld seconds left + other + %ld seconds left + + + date.year.ago.abbr + + NSStringLocalizedFormatKey + %#@count_year_ago_abbr@ + count_year_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1y ago + few + %ldy ago + many + %ldy ago + other + %ldy ago + + + date.month.ago.abbr + + NSStringLocalizedFormatKey + %#@count_month_ago_abbr@ + count_month_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1M ago + few + %ldM ago + many + %ldM ago + other + %ldM ago + + + date.day.ago.abbr + + NSStringLocalizedFormatKey + %#@count_day_ago_abbr@ + count_day_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1d ago + few + %ldd ago + many + %ldd ago + other + %ldd ago + + + date.hour.ago.abbr + + NSStringLocalizedFormatKey + %#@count_hour_ago_abbr@ + count_hour_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1h ago + few + %ldh ago + many + %ldh ago + other + %ldh ago + + + date.minute.ago.abbr + + NSStringLocalizedFormatKey + %#@count_minute_ago_abbr@ + count_minute_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1m ago + few + %ldm ago + many + %ldm ago + other + %ldm ago + + + date.second.ago.abbr + + NSStringLocalizedFormatKey + %#@count_second_ago_abbr@ + count_second_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1s ago + few + %lds ago + many + %lds ago + other + %lds ago + + + + diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/sl.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/sl.lproj/Localizable.strings new file mode 100644 index 000000000..44f868442 --- /dev/null +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/sl.lproj/Localizable.strings @@ -0,0 +1,464 @@ +"Common.Alerts.BlockDomain.BlockEntireDomain" = "Blokiraj domeno"; +"Common.Alerts.BlockDomain.Title" = "Ali ste res, res prepričani, da želite blokirati celotno %@? V večini primerov je nekaj ciljnih blokiranj ali utišanj dovolj in boljše. Vsebine iz te domene ne boste videli na javnih časovnicah ali obvestilih. Vaši sledilci iz te domene bodo odstranjeni."; +"Common.Alerts.CleanCache.Message" = "Uspešno počiščem predpomnilnik %@."; +"Common.Alerts.CleanCache.Title" = "Počisti predpomnilnik"; +"Common.Alerts.Common.PleaseTryAgain" = "Poskusite znova."; +"Common.Alerts.Common.PleaseTryAgainLater" = "Poskusite znova pozneje."; +"Common.Alerts.DeletePost.Message" = "Ali ste prepričani, da želite izbrisati to objavo?"; +"Common.Alerts.DeletePost.Title" = "Izbriši objavo"; +"Common.Alerts.DiscardPostContent.Message" = "Potrdite za opustitev sestavljene vsebine objave."; +"Common.Alerts.DiscardPostContent.Title" = "Zavrzi osnutek"; +"Common.Alerts.EditProfileFailure.Message" = "Profila ni mogoče urejati. Poskusite znova."; +"Common.Alerts.EditProfileFailure.Title" = "Napaka urejanja profila"; +"Common.Alerts.PublishPostFailure.AttachmentsMessage.MoreThanOneVideo" = "Ni možno priložiti več kot enega videoposnetka."; +"Common.Alerts.PublishPostFailure.AttachmentsMessage.VideoAttachWithPhoto" = "Videoposnetka ni mogoče priložiti objavi, ki že vsebuje slike."; +"Common.Alerts.PublishPostFailure.Message" = "Objava je spodletela. +Preverite svojo internetno povezavo."; +"Common.Alerts.PublishPostFailure.Title" = "Spodletela objava"; +"Common.Alerts.SavePhotoFailure.Message" = "Za shranjevanje fotografije omogočite pravice za dostop do knjižnice fotografij."; +"Common.Alerts.SavePhotoFailure.Title" = "Neuspelo shranjevanje fotografije"; +"Common.Alerts.ServerError.Title" = "Napaka strežnika"; +"Common.Alerts.SignOut.Confirm" = "Odjava"; +"Common.Alerts.SignOut.Message" = "Ali ste prepričani, da se želite odjaviti?"; +"Common.Alerts.SignOut.Title" = "Odjava"; +"Common.Alerts.SignUpFailure.Title" = "Neuspela registracija"; +"Common.Alerts.VoteFailure.PollEnded" = "Anketa je zaključena"; +"Common.Alerts.VoteFailure.Title" = "Napaka glasovanja"; +"Common.Controls.Actions.Add" = "Dodaj"; +"Common.Controls.Actions.Back" = "Nazaj"; +"Common.Controls.Actions.BlockDomain" = "Blokiraj %@"; +"Common.Controls.Actions.Cancel" = "Prekliči"; +"Common.Controls.Actions.Compose" = "Sestavi"; +"Common.Controls.Actions.Confirm" = "Potrdi"; +"Common.Controls.Actions.Continue" = "Nadaljuj"; +"Common.Controls.Actions.CopyPhoto" = "Kopiraj fotografijo"; +"Common.Controls.Actions.Delete" = "Izbriši"; +"Common.Controls.Actions.Discard" = "Opusti"; +"Common.Controls.Actions.Done" = "Opravljeno"; +"Common.Controls.Actions.Edit" = "Uredi"; +"Common.Controls.Actions.FindPeople" = "Poiščite osebe, ki jim želite slediti"; +"Common.Controls.Actions.ManuallySearch" = "Raje išči ročno"; +"Common.Controls.Actions.Next" = "Naslednji"; +"Common.Controls.Actions.Ok" = "V redu"; +"Common.Controls.Actions.Open" = "Odpri"; +"Common.Controls.Actions.OpenInBrowser" = "Odpri v brskalniku"; +"Common.Controls.Actions.OpenInSafari" = "Odpri v Safariju"; +"Common.Controls.Actions.Preview" = "Predogled"; +"Common.Controls.Actions.Previous" = "Prejšnji"; +"Common.Controls.Actions.Remove" = "Odstrani"; +"Common.Controls.Actions.Reply" = "Odgovori"; +"Common.Controls.Actions.ReportUser" = "Prijavi %@"; +"Common.Controls.Actions.Save" = "Shrani"; +"Common.Controls.Actions.SavePhoto" = "Shrani fotografijo"; +"Common.Controls.Actions.SeeMore" = "Pokaži več"; +"Common.Controls.Actions.Settings" = "Nastavitve"; +"Common.Controls.Actions.Share" = "Deli"; +"Common.Controls.Actions.SharePost" = "Deli objavo"; +"Common.Controls.Actions.ShareUser" = "Deli %@"; +"Common.Controls.Actions.SignIn" = "Prijava"; +"Common.Controls.Actions.SignUp" = "Ustvari račun"; +"Common.Controls.Actions.Skip" = "Preskoči"; +"Common.Controls.Actions.TakePhoto" = "Posnemi fotografijo"; +"Common.Controls.Actions.TryAgain" = "Poskusi ponovno"; +"Common.Controls.Actions.UnblockDomain" = "Odblokiraj %@"; +"Common.Controls.Friendship.Block" = "Blokiraj"; +"Common.Controls.Friendship.BlockDomain" = "Blokiraj %@"; +"Common.Controls.Friendship.BlockUser" = "Blokiraj %@"; +"Common.Controls.Friendship.Blocked" = "Blokirano"; +"Common.Controls.Friendship.EditInfo" = "Uredi podatke"; +"Common.Controls.Friendship.Follow" = "Sledi"; +"Common.Controls.Friendship.Following" = "Sledi"; +"Common.Controls.Friendship.HideReblogs" = "Skrij poobjave"; +"Common.Controls.Friendship.Mute" = "Utišaj"; +"Common.Controls.Friendship.MuteUser" = "Utišaj %@"; +"Common.Controls.Friendship.Muted" = "Utišan"; +"Common.Controls.Friendship.Pending" = "Na čakanju"; +"Common.Controls.Friendship.Request" = "Zahteva"; +"Common.Controls.Friendship.ShowReblogs" = "Pokaži poobjave"; +"Common.Controls.Friendship.Unblock" = "Odblokiraj"; +"Common.Controls.Friendship.UnblockUser" = "Odblokiraj %@"; +"Common.Controls.Friendship.Unmute" = "Odtišaj"; +"Common.Controls.Friendship.UnmuteUser" = "Odtišaj %@"; +"Common.Controls.Keyboard.Common.ComposeNewPost" = "Sestavi novo objavo"; +"Common.Controls.Keyboard.Common.OpenSettings" = "Odpri nastavitve"; +"Common.Controls.Keyboard.Common.ShowFavorites" = "Pokaži priljubljene"; +"Common.Controls.Keyboard.Common.SwitchToTab" = "Preklopi na %@"; +"Common.Controls.Keyboard.SegmentedControl.NextSection" = "Naslednji odsek"; +"Common.Controls.Keyboard.SegmentedControl.PreviousSection" = "Prejšnji odsek"; +"Common.Controls.Keyboard.Timeline.NextStatus" = "Naslednja objava"; +"Common.Controls.Keyboard.Timeline.OpenAuthorProfile" = "Pokaži profil avtorja"; +"Common.Controls.Keyboard.Timeline.OpenRebloggerProfile" = "Odpri profil poobjavitelja"; +"Common.Controls.Keyboard.Timeline.OpenStatus" = "Odpri objavo"; +"Common.Controls.Keyboard.Timeline.PreviewImage" = "Predogled slike"; +"Common.Controls.Keyboard.Timeline.PreviousStatus" = "Prejšnja objava"; +"Common.Controls.Keyboard.Timeline.ReplyStatus" = "Odgovori"; +"Common.Controls.Keyboard.Timeline.ToggleContentWarning" = "Preklopi opozorilo o vsebini"; +"Common.Controls.Keyboard.Timeline.ToggleFavorite" = "Preklopi priljubljenost objave"; +"Common.Controls.Keyboard.Timeline.ToggleReblog" = "Preklopi poobjavo za objavo"; +"Common.Controls.Status.Actions.Favorite" = "Priljubljen"; +"Common.Controls.Status.Actions.Hide" = "Skrij"; +"Common.Controls.Status.Actions.Menu" = "Meni"; +"Common.Controls.Status.Actions.Reblog" = "Poobjavi"; +"Common.Controls.Status.Actions.Reply" = "Odgovori"; +"Common.Controls.Status.Actions.ShowGif" = "Pokaži GIF"; +"Common.Controls.Status.Actions.ShowImage" = "Pokaži sliko"; +"Common.Controls.Status.Actions.ShowVideoPlayer" = "Pokaži predvajalnik"; +"Common.Controls.Status.Actions.TapThenHoldToShowMenu" = "Tapnite, nato držite, da se pojavi meni"; +"Common.Controls.Status.Actions.Unfavorite" = "Odstrani iz priljubljenih"; +"Common.Controls.Status.Actions.Unreblog" = "Razveljavi poobjavo"; +"Common.Controls.Status.ContentWarning" = "Opozorilo o vsebini"; +"Common.Controls.Status.MediaContentWarning" = "Tapnite kamorkoli, da razkrijete"; +"Common.Controls.Status.MetaEntity.Email" = "E-naslov: %@"; +"Common.Controls.Status.MetaEntity.Hashtag" = "Ključnik: %@"; +"Common.Controls.Status.MetaEntity.Mention" = "Pokaži profil: %@"; +"Common.Controls.Status.MetaEntity.Url" = "Povezava: %@"; +"Common.Controls.Status.Poll.Closed" = "Zaprto"; +"Common.Controls.Status.Poll.Vote" = "Glasuj"; +"Common.Controls.Status.SensitiveContent" = "Občutljiva vsebina"; +"Common.Controls.Status.ShowPost" = "Pokaži objavo"; +"Common.Controls.Status.ShowUserProfile" = "Prikaži uporabnikov profil"; +"Common.Controls.Status.Tag.Email" = "E-naslov"; +"Common.Controls.Status.Tag.Emoji" = "Emotikon"; +"Common.Controls.Status.Tag.Hashtag" = "Ključnik"; +"Common.Controls.Status.Tag.Link" = "Povezava"; +"Common.Controls.Status.Tag.Mention" = "Omeni"; +"Common.Controls.Status.Tag.Url" = "URL"; +"Common.Controls.Status.TapToReveal" = "Tapnite za razkritje"; +"Common.Controls.Status.UserReblogged" = "%@ je poobjavil_a"; +"Common.Controls.Status.UserRepliedTo" = "Odgovarja %@"; +"Common.Controls.Status.Visibility.Direct" = "Samo omenjeni uporabnik lahko vidi to objavo."; +"Common.Controls.Status.Visibility.Private" = "Samo sledilci osebe lahko vidijo to objavo."; +"Common.Controls.Status.Visibility.PrivateFromMe" = "Samo moji sledilci lahko vidijo to objavo."; +"Common.Controls.Status.Visibility.Unlisted" = "Vsak lahko vidi to objavo, ni pa prikazana na javni časovnici."; +"Common.Controls.Tabs.Home" = "Domov"; +"Common.Controls.Tabs.Notification" = "Obvestilo"; +"Common.Controls.Tabs.Profile" = "Profil"; +"Common.Controls.Tabs.Search" = "Iskanje"; +"Common.Controls.Timeline.Filtered" = "Filtrirano"; +"Common.Controls.Timeline.Header.BlockedWarning" = "Profila tega uporabnika ne morete +videti, dokler vas ne odblokirajo."; +"Common.Controls.Timeline.Header.BlockingWarning" = "Profila tega uporabnika ne morete +videti, dokler jih ne odblokirate. +Vaš profil je zanje videti tako."; +"Common.Controls.Timeline.Header.NoStatusFound" = "Ne najdem nobenih objav"; +"Common.Controls.Timeline.Header.SuspendedWarning" = "Ta oseba je bila suspendirana."; +"Common.Controls.Timeline.Header.UserBlockedWarning" = "Profila uporabnika %@ ne morete +videti, dokler vas ne odblokirajo."; +"Common.Controls.Timeline.Header.UserBlockingWarning" = "Profila uporabnika %@ ne morete +videti, dokler jih ne odblokirate. +Vaš profil je zanje videti tako."; +"Common.Controls.Timeline.Header.UserSuspendedWarning" = "Račun osebe %@ je suspendiran."; +"Common.Controls.Timeline.Loader.LoadMissingPosts" = "Naloži manjkajoče objave"; +"Common.Controls.Timeline.Loader.LoadingMissingPosts" = "Nalaganje manjkajočih objav ..."; +"Common.Controls.Timeline.Loader.ShowMoreReplies" = "Pokaži več odgovorov"; +"Common.Controls.Timeline.Timestamp.Now" = "Zdaj"; +"Scene.AccountList.AddAccount" = "Dodaj račun"; +"Scene.AccountList.DismissAccountSwitcher" = "Umakni preklopnik med računi"; +"Scene.AccountList.TabBarHint" = "Trenutno izbran profil: %@. Dvakrat tapnite, nato držite, da se pojavi preklopnik med računi."; +"Scene.Bookmark.Title" = "Zaznamki"; +"Scene.Compose.Accessibility.AppendAttachment" = "Dodaj priponko"; +"Scene.Compose.Accessibility.AppendPoll" = "Dodaj anketo"; +"Scene.Compose.Accessibility.CustomEmojiPicker" = "Izbirnik čustvenčkov po meri"; +"Scene.Compose.Accessibility.DisableContentWarning" = "Onemogoči opozorilo o vsebini"; +"Scene.Compose.Accessibility.EnableContentWarning" = "Omogoči opozorilo o vsebini"; +"Scene.Compose.Accessibility.PostOptions" = "Možnosti objave"; +"Scene.Compose.Accessibility.PostVisibilityMenu" = "Meni vidnosti objave"; +"Scene.Compose.Accessibility.PostingAs" = "Objavljate kot %@"; +"Scene.Compose.Accessibility.RemovePoll" = "Odstrani anketo"; +"Scene.Compose.Attachment.AttachmentBroken" = "To %@ je okvarjeno in ga ni +možno naložiti v Mastodon."; +"Scene.Compose.Attachment.AttachmentTooLarge" = "Priponka je prevelika"; +"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Te medijske priponke ni mogoče prepoznati"; +"Scene.Compose.Attachment.CompressingState" = "Stiskanje ..."; +"Scene.Compose.Attachment.DescriptionPhoto" = "Opiši fotografijo za slabovidne in osebe z okvaro vida ..."; +"Scene.Compose.Attachment.DescriptionVideo" = "Opiši video za slabovidne in osebe z okvaro vida ..."; +"Scene.Compose.Attachment.LoadFailed" = "Nalaganje ni uspelo"; +"Scene.Compose.Attachment.Photo" = "fotografija"; +"Scene.Compose.Attachment.ServerProcessingState" = "Obdelovanje na strežniku ..."; +"Scene.Compose.Attachment.UploadFailed" = "Nalaganje na strežnik ni uspelo"; +"Scene.Compose.Attachment.Video" = "video"; +"Scene.Compose.AutoComplete.SpaceToAdd" = "Preslednica za dodajanje"; +"Scene.Compose.ComposeAction" = "Objavi"; +"Scene.Compose.ContentInputPlaceholder" = "Vnesite ali prilepite, kar vam leži na duši"; +"Scene.Compose.ContentWarning.Placeholder" = "Tukaj zapišite opozorilo ..."; +"Scene.Compose.Keyboard.AppendAttachmentEntry" = "Dodaj priponko - %@"; +"Scene.Compose.Keyboard.DiscardPost" = "Opusti objavo"; +"Scene.Compose.Keyboard.PublishPost" = "Objavi objavo"; +"Scene.Compose.Keyboard.SelectVisibilityEntry" = "Izberite vidnost - %@"; +"Scene.Compose.Keyboard.ToggleContentWarning" = "Preklopi opozorilo o vsebini"; +"Scene.Compose.Keyboard.TogglePoll" = "Preklopi anketo"; +"Scene.Compose.MediaSelection.Browse" = "Prebrskaj"; +"Scene.Compose.MediaSelection.Camera" = "Posnemi fotografijo"; +"Scene.Compose.MediaSelection.PhotoLibrary" = "Knjižnica fotografij"; +"Scene.Compose.Poll.DurationTime" = "Trajanje: %@"; +"Scene.Compose.Poll.OneDay" = "1 dan"; +"Scene.Compose.Poll.OneHour" = "1 ura"; +"Scene.Compose.Poll.OptionNumber" = "Možnost %ld"; +"Scene.Compose.Poll.SevenDays" = "7 dni"; +"Scene.Compose.Poll.SixHours" = "6 ur"; +"Scene.Compose.Poll.ThePollHasEmptyOption" = "Anketa ima prazno izbiro"; +"Scene.Compose.Poll.ThePollIsInvalid" = "Anketa je neveljavna"; +"Scene.Compose.Poll.ThirtyMinutes" = "30 minut"; +"Scene.Compose.Poll.ThreeDays" = "3 dni"; +"Scene.Compose.ReplyingToUser" = "odgovarja %@"; +"Scene.Compose.Title.NewPost" = "Nova objava"; +"Scene.Compose.Title.NewReply" = "Nov odgovor"; +"Scene.Compose.Visibility.Direct" = "Samo osebe, ki jih omenjam"; +"Scene.Compose.Visibility.Private" = "Samo sledilci"; +"Scene.Compose.Visibility.Public" = "Javno"; +"Scene.Compose.Visibility.Unlisted" = "Ni prikazano"; +"Scene.ConfirmEmail.Button.OpenEmailApp" = "Odpri aplikacijo za e-pošto"; +"Scene.ConfirmEmail.Button.Resend" = "Ponovno pošlji"; +"Scene.ConfirmEmail.DontReceiveEmail.Description" = "Preverite, ali je vaš e-naslov pravilen, pa tudi vsebino mape neželene pošte, če tega še niste storili."; +"Scene.ConfirmEmail.DontReceiveEmail.ResendEmail" = "Ponovno pošlji e-pošto"; +"Scene.ConfirmEmail.DontReceiveEmail.Title" = "Preverite svojo e-pošto"; +"Scene.ConfirmEmail.OpenEmailApp.Description" = "Ravnokar smo vam poslali e-sporočilo. Preverite neželeno pošto, če sporočila ne najdete med dohodno pošto."; +"Scene.ConfirmEmail.OpenEmailApp.Mail" = "E-pošta"; +"Scene.ConfirmEmail.OpenEmailApp.OpenEmailClient" = "Odpri odjemalca e-pošte"; +"Scene.ConfirmEmail.OpenEmailApp.Title" = "Preverite svojo dohodno e-pošto."; +"Scene.ConfirmEmail.Subtitle" = "Tapnite povezavo, ki smo vam jo poslali po e-pošti, da overite svoj račun."; +"Scene.ConfirmEmail.TapTheLinkWeEmailedToYouToVerifyYourAccount" = "Tapnite povezavo, ki smo vam jo poslali po e-pošti, da overite svoj račun"; +"Scene.ConfirmEmail.Title" = "Še zadnja stvar."; +"Scene.Discovery.Intro" = "To so objave, ki plenijo pozornost na vašem koncu Mastodona."; +"Scene.Discovery.Tabs.Community" = "Skupnost"; +"Scene.Discovery.Tabs.ForYou" = "Za vas"; +"Scene.Discovery.Tabs.Hashtags" = "Ključniki"; +"Scene.Discovery.Tabs.News" = "Novice"; +"Scene.Discovery.Tabs.Posts" = "Objave"; +"Scene.Familiarfollowers.FollowedByNames" = "Sledijo %@"; +"Scene.Familiarfollowers.Title" = "Znani sledilci"; +"Scene.Favorite.Title" = "Vaši priljubljeni"; +"Scene.FavoritedBy.Title" = "Med priljubljene dal_a"; +"Scene.Follower.Footer" = "Sledilci z drugih strežnikov niso prikazani."; +"Scene.Follower.Title" = "sledilec"; +"Scene.Following.Footer" = "Sledenje z drugih strežnikov ni prikazano."; +"Scene.Following.Title" = "sledi"; +"Scene.HomeTimeline.NavigationBarState.Accessibility.LogoHint" = "Tapnite, da podrsate na vrh; tapnite znova, da se pomaknete na prejšnji položaj"; +"Scene.HomeTimeline.NavigationBarState.Accessibility.LogoLabel" = "Gumb logotipa"; +"Scene.HomeTimeline.NavigationBarState.NewPosts" = "Pokaži nove objave"; +"Scene.HomeTimeline.NavigationBarState.Offline" = "Nepovezan"; +"Scene.HomeTimeline.NavigationBarState.Published" = "Objavljeno!"; +"Scene.HomeTimeline.NavigationBarState.Publishing" = "Objavljanje objave ..."; +"Scene.HomeTimeline.Title" = "Domov"; +"Scene.Login.ServerSearchField.Placeholder" = "Vnesite URL ali poiščite svoj strežnik"; +"Scene.Login.Subtitle" = "Prijavite se na strežniku, na katerem ste ustvarili račun."; +"Scene.Login.Title" = "Dobrodošli nazaj"; +"Scene.Notification.FollowRequest.Accept" = "Sprejmi"; +"Scene.Notification.FollowRequest.Accepted" = "Sprejeto"; +"Scene.Notification.FollowRequest.Reject" = "Zavrni"; +"Scene.Notification.FollowRequest.Rejected" = "Zavrnjeno"; +"Scene.Notification.Keyobard.ShowEverything" = "Pokaži vse"; +"Scene.Notification.Keyobard.ShowMentions" = "Pokaži omembe"; +"Scene.Notification.NotificationDescription.FavoritedYourPost" = "je vzljubil/a vašo objavo"; +"Scene.Notification.NotificationDescription.FollowedYou" = "vam sledi"; +"Scene.Notification.NotificationDescription.MentionedYou" = "vas je omenil/a"; +"Scene.Notification.NotificationDescription.PollHasEnded" = "anketa je zaključena"; +"Scene.Notification.NotificationDescription.RebloggedYourPost" = "je poobjavil_a vašo objavo"; +"Scene.Notification.NotificationDescription.RequestToFollowYou" = "vas je zaprosil za sledenje"; +"Scene.Notification.Title.Everything" = "Vse"; +"Scene.Notification.Title.Mentions" = "Omembe"; +"Scene.Preview.Keyboard.ClosePreview" = "Zapri predogled"; +"Scene.Preview.Keyboard.ShowNext" = "Pokaži naslednje"; +"Scene.Preview.Keyboard.ShowPrevious" = "Pokaži prejšnje"; +"Scene.Profile.Accessibility.DoubleTapToOpenTheList" = "Dvakrat tapnite, da se odpre seznam"; +"Scene.Profile.Accessibility.EditAvatarImage" = "Uredi sliko avatarja"; +"Scene.Profile.Accessibility.ShowAvatarImage" = "Pokaži sliko avatarja"; +"Scene.Profile.Accessibility.ShowBannerImage" = "Pokaži sliko pasice"; +"Scene.Profile.Dashboard.Followers" = "sledilcev"; +"Scene.Profile.Dashboard.Following" = "sledi"; +"Scene.Profile.Dashboard.Posts" = "Objave"; +"Scene.Profile.Fields.AddRow" = "Dodaj vrstico"; +"Scene.Profile.Fields.Placeholder.Content" = "Vsebina"; +"Scene.Profile.Fields.Placeholder.Label" = "Oznaka"; +"Scene.Profile.Fields.Verified.Long" = "Lastništvo te povezave je bilo preverjeno %@"; +"Scene.Profile.Fields.Verified.Short" = "Preverjeno %@"; +"Scene.Profile.Header.FollowsYou" = "Vam sledi"; +"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Potrdite za blokado %@"; +"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Blokiraj račun"; +"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "Potrdite, da poobjave ne bodo prikazane"; +"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Title" = "Skrij poobjave"; +"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Message" = "Potrdite utišanje %@"; +"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Utišaj račun"; +"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Potrdite, da bodo poobjave prikazane"; +"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "Pokaži poobjave"; +"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Potrdite za umik blokade %@"; +"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Odblokiraj račun"; +"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Potrdite umik utišanja %@"; +"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Title" = "Odtišaj račun"; +"Scene.Profile.SegmentedControl.About" = "O programu"; +"Scene.Profile.SegmentedControl.Media" = "Mediji"; +"Scene.Profile.SegmentedControl.Posts" = "Objave"; +"Scene.Profile.SegmentedControl.PostsAndReplies" = "Objave in odgovori"; +"Scene.Profile.SegmentedControl.Replies" = "Odgovori"; +"Scene.RebloggedBy.Title" = "Poobjavil_a"; +"Scene.Register.Error.Item.Agreement" = "Sporazum"; +"Scene.Register.Error.Item.Email" = "E-pošta"; +"Scene.Register.Error.Item.Locale" = "Krajevne nastavitve"; +"Scene.Register.Error.Item.Password" = "Geslo"; +"Scene.Register.Error.Item.Reason" = "Razlog"; +"Scene.Register.Error.Item.Username" = "Uporabniško ime"; +"Scene.Register.Error.Reason.Accepted" = "%@ mora biti sprejet"; +"Scene.Register.Error.Reason.Blank" = "%@ je zahtevan"; +"Scene.Register.Error.Reason.Blocked" = "%@ vsebuje nedovoljenega ponudnika e-poštnih storitev"; +"Scene.Register.Error.Reason.Inclusion" = "%@ ni podprta vrednost"; +"Scene.Register.Error.Reason.Invalid" = "%@ ni veljavno"; +"Scene.Register.Error.Reason.Reserved" = "%@ je rezervirana ključna beseda"; +"Scene.Register.Error.Reason.Taken" = "%@ je že v uporabi"; +"Scene.Register.Error.Reason.TooLong" = "%@ je predolgo"; +"Scene.Register.Error.Reason.TooShort" = "%@ je prekratko"; +"Scene.Register.Error.Reason.Unreachable" = "%@ kot kaže ne obstaja"; +"Scene.Register.Error.Special.EmailInvalid" = "E-naslov ni veljaven"; +"Scene.Register.Error.Special.PasswordTooShort" = "Geslo je prekratko (dolgo mora biti vsaj 8 znakov)"; +"Scene.Register.Error.Special.UsernameInvalid" = "Uporabniško ime lahko vsebuje samo alfanumerične znake ter podčrtaje."; +"Scene.Register.Error.Special.UsernameTooLong" = "Uporabniško ime je predolgo (ne more biti daljše od 30 znakov)"; +"Scene.Register.Input.Avatar.Delete" = "Izbriši"; +"Scene.Register.Input.DisplayName.Placeholder" = "pojavno ime"; +"Scene.Register.Input.Email.Placeholder" = "e-pošta"; +"Scene.Register.Input.Invite.RegistrationUserInviteRequest" = "Zakaj se želite pridružiti?"; +"Scene.Register.Input.Password.Accessibility.Checked" = "potrjeno"; +"Scene.Register.Input.Password.Accessibility.Unchecked" = "nepotrjeno"; +"Scene.Register.Input.Password.CharacterLimit" = "8 znakov"; +"Scene.Register.Input.Password.Hint" = "Geslo mora biti dolgo najmanj 8 znakov."; +"Scene.Register.Input.Password.Placeholder" = "geslo"; +"Scene.Register.Input.Password.Require" = "Vaše geslo potrebuje vsaj:"; +"Scene.Register.Input.Username.DuplicatePrompt" = "To ime je že zasedeno."; +"Scene.Register.Input.Username.Placeholder" = "uporabniško ime"; +"Scene.Register.LetsGetYouSetUpOnDomain" = "Naj vas namestimo na %@"; +"Scene.Register.Title" = "Naj vas namestimo na %@"; +"Scene.Report.Content1" = "Ali so še kakšne druge objave, ki bi jih želeli dodati k prijavi?"; +"Scene.Report.Content2" = "Je kaj, kar bi moderatorji morali vedeti o tem poročilu?"; +"Scene.Report.ReportSentTitle" = "Hvala za poročilo, bomo preverili."; +"Scene.Report.Reported" = "PRIJAVLJEN"; +"Scene.Report.Send" = "Pošlji poročilo"; +"Scene.Report.SkipToSend" = "Pošlji brez komentarja"; +"Scene.Report.Step1" = "Korak 1 od 2"; +"Scene.Report.Step2" = "Korak 2 od 2"; +"Scene.Report.StepFinal.BlockUser" = "Blokiraj %@"; +"Scene.Report.StepFinal.DontWantToSeeThis" = "Ne želite videti tega?"; +"Scene.Report.StepFinal.MuteUser" = "Utišaj %@"; +"Scene.Report.StepFinal.TheyWillNoLongerBeAbleToFollowOrSeeYourPostsButTheyCanSeeIfTheyveBeenBlocked" = "Nič več ne bodo mogli slediti ali videti vaše objave, lahko pa vidijo, če so blokirani."; +"Scene.Report.StepFinal.Unfollow" = "Prenehaj slediti"; +"Scene.Report.StepFinal.UnfollowUser" = "Prenehaj slediti %@"; +"Scene.Report.StepFinal.Unfollowed" = "Ne sledi več"; +"Scene.Report.StepFinal.WhenYouSeeSomethingYouDontLikeOnMastodonYouCanRemoveThePersonFromYourExperience." = "Če vidite nekaj, česar na Masodonu ne želite, lahko odstranite osebo iz svoje izkušnje."; +"Scene.Report.StepFinal.WhileWeReviewThisYouCanTakeActionAgainstUser" = "Medtem, ko to pregledujemo, lahko proti %@ ukrepate"; +"Scene.Report.StepFinal.YouWontSeeTheirPostsOrReblogsInYourHomeFeedTheyWontKnowTheyVeBeenMuted" = "Njihovih objav ali poobjav ne boste videli v svojem domačem viru. Ne bodo vedeli, da so utišani."; +"Scene.Report.StepFour.IsThereAnythingElseWeShouldKnow" = "Je še kaj, za kar menite, da bi morali vedeti?"; +"Scene.Report.StepFour.Step4Of4" = "Korak 4 od 4"; +"Scene.Report.StepOne.IDontLikeIt" = "Ni mi všeč"; +"Scene.Report.StepOne.ItIsNotSomethingYouWantToSee" = "To ni tisto, kar želite videti"; +"Scene.Report.StepOne.ItViolatesServerRules" = "Krši strežniška pravila"; +"Scene.Report.StepOne.ItsSomethingElse" = "Gre za nekaj drugega"; +"Scene.Report.StepOne.ItsSpam" = "To je neželena vsebina"; +"Scene.Report.StepOne.MaliciousLinksFakeEngagementOrRepetetiveReplies" = "Škodljive povezave, lažno prizadevanje ali ponavljajoči se odgovori"; +"Scene.Report.StepOne.SelectTheBestMatch" = "Izberite najboljši zadetek"; +"Scene.Report.StepOne.Step1Of4" = "Korak 1 od 4"; +"Scene.Report.StepOne.TheIssueDoesNotFitIntoOtherCategories" = "Težava ne sodi v druge kategorije"; +"Scene.Report.StepOne.WhatsWrongWithThisAccount" = "Kaj je narobe s tem računom?"; +"Scene.Report.StepOne.WhatsWrongWithThisPost" = "Kaj je narobe s to objavo?"; +"Scene.Report.StepOne.WhatsWrongWithThisUsername" = "Kaj je narobe s/z %@?"; +"Scene.Report.StepOne.YouAreAwareThatItBreaksSpecificRules" = "Zavedate se, da krši določena pravila"; +"Scene.Report.StepThree.AreThereAnyPostsThatBackUpThisReport" = "Ali so kakšne objave, ki dokazujejo trditve iz tega poročila?"; +"Scene.Report.StepThree.SelectAllThatApply" = "Izberite vse, kar ustreza"; +"Scene.Report.StepThree.Step3Of4" = "Korak 3 od 4"; +"Scene.Report.StepTwo.IJustDon’tLikeIt" = "Ni mi všeč"; +"Scene.Report.StepTwo.SelectAllThatApply" = "Izberite vse, kar ustreza"; +"Scene.Report.StepTwo.Step2Of4" = "Korak 2 od 4"; +"Scene.Report.StepTwo.WhichRulesAreBeingViolated" = "Katera pravila so kršena?"; +"Scene.Report.TextPlaceholder" = "Vnesite ali prilepite dodatne komentarje"; +"Scene.Report.Title" = "Prijavi %@"; +"Scene.Report.TitleReport" = "Poročaj"; +"Scene.Search.Recommend.Accounts.Description" = "Morda želite slediti tem računom"; +"Scene.Search.Recommend.Accounts.Follow" = "Sledi"; +"Scene.Search.Recommend.Accounts.Title" = "Računi, ki vam bi bili morda všeč"; +"Scene.Search.Recommend.ButtonText" = "Prikaži vse"; +"Scene.Search.Recommend.HashTag.Description" = "Ključniki, ki imajo veliko pozornosti"; +"Scene.Search.Recommend.HashTag.PeopleTalking" = "%@ oseb se pogovarja"; +"Scene.Search.Recommend.HashTag.Title" = "V trendu na Mastodonu"; +"Scene.Search.SearchBar.Cancel" = "Prekliči"; +"Scene.Search.SearchBar.Placeholder" = "Išči ključnike in uporabnike"; +"Scene.Search.Searching.Clear" = "Počisti"; +"Scene.Search.Searching.EmptyState.NoResults" = "Ni rezultatov"; +"Scene.Search.Searching.RecentSearch" = "Nedavna iskanja"; +"Scene.Search.Searching.Segment.All" = "Vse"; +"Scene.Search.Searching.Segment.Hashtags" = "Ključniki"; +"Scene.Search.Searching.Segment.People" = "Ljudje"; +"Scene.Search.Searching.Segment.Posts" = "Objave"; +"Scene.Search.Title" = "Iskanje"; +"Scene.ServerPicker.Button.Category.Academia" = "akademsko"; +"Scene.ServerPicker.Button.Category.Activism" = "aktivizem"; +"Scene.ServerPicker.Button.Category.All" = "Vse"; +"Scene.ServerPicker.Button.Category.AllAccessiblityDescription" = "Kategorija: vse"; +"Scene.ServerPicker.Button.Category.Art" = "umetnost"; +"Scene.ServerPicker.Button.Category.Food" = "hrana"; +"Scene.ServerPicker.Button.Category.Furry" = "Kosmato"; +"Scene.ServerPicker.Button.Category.Games" = "igre"; +"Scene.ServerPicker.Button.Category.General" = "splošno"; +"Scene.ServerPicker.Button.Category.Journalism" = "novinarstvo"; +"Scene.ServerPicker.Button.Category.Lgbt" = "lgbq+"; +"Scene.ServerPicker.Button.Category.Music" = "glasba"; +"Scene.ServerPicker.Button.Category.Regional" = "regionalno"; +"Scene.ServerPicker.Button.Category.Tech" = "tehnologija"; +"Scene.ServerPicker.Button.SeeLess" = "Pokaži manj"; +"Scene.ServerPicker.Button.SeeMore" = "Pokaži več"; +"Scene.ServerPicker.EmptyState.BadNetwork" = "Med nalaganjem podatkov je prišlo do napake. Preverite svojo internetno povezavo."; +"Scene.ServerPicker.EmptyState.FindingServers" = "Iskanje razpoložljivih strežnikov ..."; +"Scene.ServerPicker.EmptyState.NoResults" = "Ni rezultatov"; +"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "Iščite po skupnostih ali vnesite URL"; +"Scene.ServerPicker.Label.Category" = "KATEGORIJA"; +"Scene.ServerPicker.Label.Language" = "JEZIK"; +"Scene.ServerPicker.Label.Users" = "UPORABNIKI"; +"Scene.ServerPicker.Subtitle" = "Strežnik izberite glede na svojo regijo, zanimanje ali pa kar splošno. Še vedno lahko klepetate s komer koli na Mastodonu, ne glede na strežnik."; +"Scene.ServerPicker.Title" = "Mastodon tvorijo uporabniki z različnih strežnikov."; +"Scene.ServerRules.Button.Confirm" = "Strinjam se"; +"Scene.ServerRules.PrivacyPolicy" = "pravilnik o zasebnosti"; +"Scene.ServerRules.Prompt" = "Če boste nadaljevali, za vas veljajo pogoji storitve in pravilnik o zasebnosti za %@."; +"Scene.ServerRules.Subtitle" = "Slednje določajo in njihovo spoštovanje zagotavljajo moderatorji %@."; +"Scene.ServerRules.TermsOfService" = "pogoji uporabe"; +"Scene.ServerRules.Title" = "Nekaj osnovnih pravil."; +"Scene.Settings.Footer.MastodonDescription" = "Mastodon je odprtokodna programska oprema. Na GitHubu na %@ (%@) lahko poročate o napakah"; +"Scene.Settings.Keyboard.CloseSettingsWindow" = "Zapri okno nastavitev"; +"Scene.Settings.Section.Appearance.Automatic" = "Samodejno"; +"Scene.Settings.Section.Appearance.Dark" = "Vedno temno"; +"Scene.Settings.Section.Appearance.Light" = "Vedno svetlo"; +"Scene.Settings.Section.Appearance.Title" = "Videz"; +"Scene.Settings.Section.BoringZone.AccountSettings" = "Nastavitve računa"; +"Scene.Settings.Section.BoringZone.Privacy" = "Pravilnik o zasebnosti"; +"Scene.Settings.Section.BoringZone.Terms" = "Pogoji uporabe"; +"Scene.Settings.Section.BoringZone.Title" = "Cona dolgočasja"; +"Scene.Settings.Section.LookAndFeel.Light" = "Svetlo"; +"Scene.Settings.Section.LookAndFeel.ReallyDark" = "Zares temno"; +"Scene.Settings.Section.LookAndFeel.SortaDark" = "Nekako temno"; +"Scene.Settings.Section.LookAndFeel.Title" = "Videz in občutek"; +"Scene.Settings.Section.LookAndFeel.UseSystem" = "Uporabi sistemsko"; +"Scene.Settings.Section.Notifications.Boosts" = "prepošlje mojo objavo"; +"Scene.Settings.Section.Notifications.Favorites" = "mojo objavo da med priljubljene"; +"Scene.Settings.Section.Notifications.Follows" = "me sledi"; +"Scene.Settings.Section.Notifications.Mentions" = "me omeni"; +"Scene.Settings.Section.Notifications.Title" = "Obvestila"; +"Scene.Settings.Section.Notifications.Trigger.Anyone" = "kdor koli"; +"Scene.Settings.Section.Notifications.Trigger.Follow" = "nekdo, ki mu sledim,"; +"Scene.Settings.Section.Notifications.Trigger.Follower" = "sledilec/ka"; +"Scene.Settings.Section.Notifications.Trigger.Noone" = "nihče"; +"Scene.Settings.Section.Notifications.Trigger.Title" = "Obvesti me, ko"; +"Scene.Settings.Section.Preference.DisableAvatarAnimation" = "Onemogoči animirane avatarje"; +"Scene.Settings.Section.Preference.DisableEmojiAnimation" = "Onemogoči animirane emotikone"; +"Scene.Settings.Section.Preference.OpenLinksInMastodon" = "Odpri povezave v Mastodonu"; +"Scene.Settings.Section.Preference.Title" = "Nastavitve"; +"Scene.Settings.Section.Preference.TrueBlackDarkMode" = "Resnično črni temni način"; +"Scene.Settings.Section.Preference.UsingDefaultBrowser" = "Uporabi privzeti brskalnik za odpiranje povezav"; +"Scene.Settings.Section.SpicyZone.Clear" = "Počisti medijski predpomnilnik"; +"Scene.Settings.Section.SpicyZone.Signout" = "Odjava"; +"Scene.Settings.Section.SpicyZone.Title" = "Pikantna cona"; +"Scene.Settings.Title" = "Nastavitve"; +"Scene.SuggestionAccount.FollowExplain" = "Ko nekomu sledite, vidite njihove objave v svojem domačem viru."; +"Scene.SuggestionAccount.Title" = "Poiščite osebe, ki jim želite slediti"; +"Scene.Thread.BackTitle" = "Objavi"; +"Scene.Thread.Title" = "Objavil/a"; +"Scene.Welcome.GetStarted" = "Začnite"; +"Scene.Welcome.LogIn" = "Prijava"; +"Scene.Welcome.Slogan" = "Družbeno mreženje +spet v vaših rokah."; +"Scene.Wizard.AccessibilityHint" = "Dvakrat tapnite, da zapustite tega čarovnika"; +"Scene.Wizard.MultipleAccountSwitchIntroDescription" = "Preklopite med več računi s pritiskom gumba profila."; +"Scene.Wizard.NewInMastodon" = "Novo v Mastodonu"; \ No newline at end of file diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/sl.lproj/Localizable.stringsdict b/MastodonSDK/Sources/MastodonLocalization/Resources/sl.lproj/Localizable.stringsdict new file mode 100644 index 000000000..87cc42142 --- /dev/null +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/sl.lproj/Localizable.stringsdict @@ -0,0 +1,581 @@ + + + + + a11y.plural.count.unread.notification + + NSStringLocalizedFormatKey + %#@notification_count_unread_notification@ + notification_count_unread_notification + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + %ld neprebrano obvestilo + two + %ld neprebrani obvestili + few + %ld neprebrana obvestila + other + %ld neprebranih obvestil + + + a11y.plural.count.input_limit_exceeds + + NSStringLocalizedFormatKey + Omejitev vnosa presega %#@character_count@ + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + %ld znak + two + %ld znaka + few + %ld znaki + other + %ld znakov + + + a11y.plural.count.input_limit_remains + + NSStringLocalizedFormatKey + Omejitev vnosa ostaja %#@character_count@ + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + %ld znak + two + %ld znaka + few + %ld znaki + other + %ld znakov + + + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + preostaja %#@character_count@ + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + %ld znak + two + %ld znaka + few + %ld znaki + other + %ld znakov + + + plural.count.followed_by_and_mutual + + NSStringLocalizedFormatKey + %#@names@%#@count_mutual@ + names + + one + + two + + few + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + other + + + count_mutual + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + Sledijo %1$@ in %ld skupni + two + Sledijo %1$@ in %ld skupna + few + Sledijo %1$@ in %ld skupni + other + Sledijo %1$@ in %ld skupnih + + + plural.count.metric_formatted.post + + NSStringLocalizedFormatKey + %@ %#@post_count@ + post_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + objava + two + objavi + few + objave + other + objav + + + plural.count.media + + NSStringLocalizedFormatKey + %#@media_count@ + media_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + %ld medij + two + %ld medija + few + %ld mediji + other + %ld medijev + + + plural.count.post + + NSStringLocalizedFormatKey + %#@post_count@ + post_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + %ld objava + two + %ld objavi + few + %ld objave + other + %ld objav + + + plural.count.favorite + + NSStringLocalizedFormatKey + %#@favorite_count@ + favorite_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + %ld priljubljeni + two + %ld priljubljena + few + %ld priljubljeni + other + %ld priljubljenih + + + plural.count.reblog + + NSStringLocalizedFormatKey + %#@reblog_count@ + reblog_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + %ld poobjava + two + %ld poobjavi + few + %ld poobjave + other + %ld poobjav + + + plural.count.reply + + NSStringLocalizedFormatKey + %#@reply_count@ + reply_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + %ld odgovor + two + %ld odgovora + few + %ld odgovori + other + %ld odgovorov + + + plural.count.vote + + NSStringLocalizedFormatKey + %#@vote_count@ + vote_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + %ld glas + two + %ld glasova + few + %ld glasovi + other + %ld glasov + + + plural.count.voter + + NSStringLocalizedFormatKey + %#@voter_count@ + voter_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + %ld glasovalec + two + %ld glasovalca + few + %ld glasovalci + other + %ld glasovalcev + + + plural.people_talking + + NSStringLocalizedFormatKey + %#@count_people_talking@ + count_people_talking + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + %ld oseba se pogovarja + two + %ld osebi se pogovarjata + few + %ld osebe se pogovarjajo + other + %ld oseb se pogovarja + + + plural.count.following + + NSStringLocalizedFormatKey + %#@count_following@ + count_following + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + %ld sledi + two + %ld sledita + few + %ld sledijo + other + %ld sledijo + + + plural.count.follower + + NSStringLocalizedFormatKey + %#@count_follower@ + count_follower + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + %ld sledilec + two + %ld sledilca + few + %ld sledilci + other + %ld sledilcev + + + date.year.left + + NSStringLocalizedFormatKey + %#@count_year_left@ + count_year_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + na voljo še %ld leto + two + na voljo še %ld leti + few + na voljo še %ld leta + other + na voljo še %ld let + + + date.month.left + + NSStringLocalizedFormatKey + %#@count_month_left@ + count_month_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + na voljo še %ld mesec + two + na voljo še %ld meseca + few + na voljo še %ld mesece + other + na voljo še %ld mesecev + + + date.day.left + + NSStringLocalizedFormatKey + %#@count_day_left@ + count_day_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + še %ld dan + two + še %ld dneva + few + še %ld dnevi + other + še %ld dni + + + date.hour.left + + NSStringLocalizedFormatKey + %#@count_hour_left@ + count_hour_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + na voljo še %ld uro + two + na voljo še %ld uri + few + na voljo še %ld ure + other + na voljo še %ld ur + + + date.minute.left + + NSStringLocalizedFormatKey + %#@count_minute_left@ + count_minute_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + Še %ld min. + two + Še %ld min. + few + Še %ld min. + other + Še %ld min. + + + date.second.left + + NSStringLocalizedFormatKey + %#@count_second_left@ + count_second_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + Preostane še %ld s + two + Preostaneta še %ld s + few + Preostanejo še %ld s + other + Preostane še %ld s + + + date.year.ago.abbr + + NSStringLocalizedFormatKey + %#@count_year_ago_abbr@ + count_year_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + pred %ld letom + two + pred %ld letoma + few + pred %ld leti + other + pred %ld leti + + + date.month.ago.abbr + + NSStringLocalizedFormatKey + %#@count_month_ago_abbr@ + count_month_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + pred %ld mesecem + two + pred %ld mesecema + few + pred %ld meseci + other + pred %ld meseci + + + date.day.ago.abbr + + NSStringLocalizedFormatKey + %#@count_day_ago_abbr@ + count_day_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + pred %ld dnem + two + pred %ld dnevoma + few + pred %ld dnemi + other + pred %ld dnemi + + + date.hour.ago.abbr + + NSStringLocalizedFormatKey + %#@count_hour_ago_abbr@ + count_hour_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + pred %ld uro + two + pred %ld urama + few + pred %ld urami + other + pred %ld urami + + + date.minute.ago.abbr + + NSStringLocalizedFormatKey + %#@count_minute_ago_abbr@ + count_minute_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + pred %ld min + two + pred %ld min + few + pred %ld min + other + pred %ld min + + + date.second.ago.abbr + + NSStringLocalizedFormatKey + %#@count_second_ago_abbr@ + count_second_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + pred %ld s + two + pred %ld s + few + pred %ld s + other + pred %ld s + + + + From 3ee9035758aedfab64c7f5b646e23fc8122b62c9 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 12:58:57 +0100 Subject: [PATCH 503/598] New translations app.json (Korean) --- .../StringsConvertor/input/ko.lproj/app.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Localization/StringsConvertor/input/ko.lproj/app.json b/Localization/StringsConvertor/input/ko.lproj/app.json index 3971b18e9..070386bf9 100644 --- a/Localization/StringsConvertor/input/ko.lproj/app.json +++ b/Localization/StringsConvertor/input/ko.lproj/app.json @@ -74,8 +74,8 @@ "take_photo": "사진 촬영", "save_photo": "사진 저장", "copy_photo": "사진 복사", - "sign_in": "Log in", - "sign_up": "Create account", + "sign_in": "로그인", + "sign_up": "계정 생성", "see_more": "더 보기", "preview": "미리보기", "share": "공유", @@ -219,15 +219,15 @@ "log_in": "로그인" }, "login": { - "title": "Welcome back", - "subtitle": "Log you in on the server you created your account on.", + "title": "돌아오신 것을 환영합니다", + "subtitle": "계정을 만든 서버에 로그인.", "server_search_field": { - "placeholder": "Enter URL or search for your server" + "placeholder": "URL을 입력하거나 서버를 검색" } }, "server_picker": { "title": "서버를 고르세요,\n아무 서버나 좋습니다.", - "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", + "subtitle": "당신의 지역이나, 관심사에 따라, 혹은 그냥 일반적인 목적의 서버를 고르세요. 어떤 서버를 고르더라도 마스토돈의 다른 모두와 소통할 수 있습니다.", "button": { "category": { "all": "모두", @@ -254,7 +254,7 @@ "category": "분류" }, "input": { - "search_servers_or_enter_url": "Search communities or enter URL" + "search_servers_or_enter_url": "커뮤니티를 검색하거나 URL을 입력" }, "empty_state": { "finding_servers": "사용 가능한 서버를 찾는 중입니다...", From fe308e20d56b725e6eb8c8c73bbe6ecacb35888b Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 12:58:58 +0100 Subject: [PATCH 504/598] New translations app.json (Scottish Gaelic) --- .../StringsConvertor/input/gd.lproj/app.json | 60 +++++++++---------- 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/Localization/StringsConvertor/input/gd.lproj/app.json b/Localization/StringsConvertor/input/gd.lproj/app.json index f29f0fa17..74666cb0c 100644 --- a/Localization/StringsConvertor/input/gd.lproj/app.json +++ b/Localization/StringsConvertor/input/gd.lproj/app.json @@ -74,8 +74,8 @@ "take_photo": "Tog dealbh", "save_photo": "Sàbhail an dealbh", "copy_photo": "Dèan lethbhreac dhen dealbh", - "sign_in": "Log in", - "sign_up": "Create account", + "sign_in": "Clàraich a-steach", + "sign_up": "Cruthaich cunntas", "see_more": "Seall a bharrachd", "preview": "Ro-sheall", "share": "Co-roinn", @@ -137,10 +137,10 @@ "closed": "Dùinte" }, "meta_entity": { - "url": "Link: %s", - "hashtag": "Hashtag: %s", - "mention": "Show Profile: %s", - "email": "Email address: %s" + "url": "Ceangal: %s", + "hashtag": "Taga hais: %s", + "mention": "Seall a’ phròifil: %s", + "email": "Seòladh puist-d: %s" }, "actions": { "reply": "Freagair", @@ -187,8 +187,8 @@ "unmute_user": "Dì-mhùch %s", "muted": "’Ga mhùchadh", "edit_info": "Deasaich", - "show_reblogs": "Show Reblogs", - "hide_reblogs": "Hide Reblogs" + "show_reblogs": "Seall na brosnachaidhean", + "hide_reblogs": "Falaich na brosnachaidhean" }, "timeline": { "filtered": "Criathraichte", @@ -219,15 +219,15 @@ "log_in": "Clàraich a-steach" }, "login": { - "title": "Welcome back", - "subtitle": "Log you in on the server you created your account on.", + "title": "Fàilte air ais", + "subtitle": "Clàraich a-steach air an fhrithealaiche far an do chruthaich thu an cunntas agad.", "server_search_field": { - "placeholder": "Enter URL or search for your server" + "placeholder": "Cuir a-steach URL an fhrithealaiche agad" } }, "server_picker": { "title": "Tha cleachdaichean Mhastodon air iomadh frithealaiche eadar-dhealaichte.", - "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", + "subtitle": "Tagh frithealaiche stèidhichte air na sgìre agad, d’ ùidhean, air far a bheil thu no fear coitcheann. ’S urrainn dhut fhathast conaltradh le duine sam bith air Mastodon ge b’ e na frithealaichean agaibh-se.", "button": { "category": { "all": "Na h-uile", @@ -254,7 +254,7 @@ "category": "ROINN-SEÒRSA" }, "input": { - "search_servers_or_enter_url": "Search communities or enter URL" + "search_servers_or_enter_url": "Lorg coimhearsnachd no cuir a-steach URL" }, "empty_state": { "finding_servers": "A’ lorg nam frithealaichean ri am faighinn…", @@ -388,12 +388,12 @@ "attachment_broken": "Seo %s a tha briste is cha ghabh\na luchdadh suas gu Mastodon.", "description_photo": "Mìnich an dealbh dhan fheadhainn air a bheil cion-lèirsinne…", "description_video": "Mìnich a’ video dhan fheadhainn air a bheil cion-lèirsinne…", - "load_failed": "Load Failed", - "upload_failed": "Upload Failed", - "can_not_recognize_this_media_attachment": "Can not recognize this media attachment", - "attachment_too_large": "Attachment too large", - "compressing_state": "Compressing...", - "server_processing_state": "Server Processing..." + "load_failed": "Dh’fhàillig leis an luchdadh", + "upload_failed": "Dh’fhàillig leis an luchdadh suas", + "can_not_recognize_this_media_attachment": "Cha do dh’aithnich sinn an ceanglachan meadhain seo", + "attachment_too_large": "Tha an ceanglachan ro mhòr", + "compressing_state": "’Ga dhùmhlachadh…", + "server_processing_state": "Tha am frithealaiche ’ga phròiseasadh…" }, "poll": { "duration_time": "Faide: %s", @@ -404,8 +404,8 @@ "three_days": "3 làithean", "seven_days": "Seachdain", "option_number": "Roghainn %ld", - "the_poll_is_invalid": "The poll is invalid", - "the_poll_has_empty_option": "The poll has empty option" + "the_poll_is_invalid": "Tha an cunntas-bheachd mì-dhligheach", + "the_poll_has_empty_option": "Tha roghainn fhalamh aig a’ chunntas-bheachd" }, "content_warning": { "placeholder": "Sgrìobh rabhadh pongail an-seo…" @@ -427,8 +427,8 @@ "enable_content_warning": "Cuir rabhadh susbainte an comas", "disable_content_warning": "Cuir rabhadh susbainte à comas", "post_visibility_menu": "Clàr-taice faicsinneachd a’ phuist", - "post_options": "Post Options", - "posting_as": "Posting as %s" + "post_options": "Roghainnean postaidh", + "posting_as": "A’ postadh mar %s" }, "keyboard": { "discard_post": "Tilg air falbh am post", @@ -455,8 +455,8 @@ "content": "Susbaint" }, "verified": { - "short": "Verified on %s", - "long": "Ownership of this link was checked on %s" + "short": "Air a dhearbhadh %s", + "long": "Chaidh dearbhadh cò leis a tha an ceangal seo %s" } }, "segmented_control": { @@ -484,12 +484,12 @@ "message": "Dearbh dì-bhacadh %s" }, "confirm_show_reblogs": { - "title": "Show Reblogs", - "message": "Confirm to show reblogs" + "title": "Seall na brosnachaidhean", + "message": "Dearbh sealladh nam brosnachaidhean" }, "confirm_hide_reblogs": { - "title": "Hide Reblogs", - "message": "Confirm to hide reblogs" + "title": "Falaich na brosnachaidhean", + "message": "Dearbh falach nam brosnachaidhean" } }, "accessibility": { @@ -721,7 +721,7 @@ "accessibility_hint": "Thoir gnogag dhùbailte a’ leigeil seachad an draoidh seo" }, "bookmark": { - "title": "Bookmarks" + "title": "Comharran-lìn" } } } From 64f397b43a84fd742378494253c6134a101fb8fc Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 12:58:59 +0100 Subject: [PATCH 505/598] New translations Localizable.stringsdict (Scottish Gaelic) --- .../input/gd.lproj/Localizable.stringsdict | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Localization/StringsConvertor/input/gd.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/gd.lproj/Localizable.stringsdict index 45ba1e156..9b3e69ea7 100644 --- a/Localization/StringsConvertor/input/gd.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/gd.lproj/Localizable.stringsdict @@ -65,7 +65,7 @@ a11y.plural.count.characters_left NSStringLocalizedFormatKey - %#@character_count@ left + %#@character_count@ air fhàgail character_count NSStringFormatSpecTypeKey @@ -73,13 +73,13 @@ NSStringFormatValueTypeKey ld one - 1 character + %ld charactar two - %ld characters + %ld charactar few - %ld characters + %ld caractaran other - %ld characters + %ld caractar plural.count.followed_by_and_mutual From a1596cb7eae15372ac643637d46fb11702c77660 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 12:59:01 +0100 Subject: [PATCH 506/598] New translations app.json (Chinese Simplified) --- .../input/zh-Hans.lproj/app.json | 60 +++++++++---------- 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/Localization/StringsConvertor/input/zh-Hans.lproj/app.json b/Localization/StringsConvertor/input/zh-Hans.lproj/app.json index 242d9aac2..c503c5186 100644 --- a/Localization/StringsConvertor/input/zh-Hans.lproj/app.json +++ b/Localization/StringsConvertor/input/zh-Hans.lproj/app.json @@ -74,8 +74,8 @@ "take_photo": "拍照", "save_photo": "保存照片", "copy_photo": "拷贝照片", - "sign_in": "Log in", - "sign_up": "Create account", + "sign_in": "登录", + "sign_up": "创建账户", "see_more": "查看更多", "preview": "预览", "share": "分享", @@ -137,10 +137,10 @@ "closed": "已关闭" }, "meta_entity": { - "url": "Link: %s", - "hashtag": "Hashtag: %s", - "mention": "Show Profile: %s", - "email": "Email address: %s" + "url": "链接:%s", + "hashtag": "话题:%s", + "mention": "显示用户资料:%s", + "email": "邮箱地址:%s" }, "actions": { "reply": "回复", @@ -187,8 +187,8 @@ "unmute_user": "取消静音 %s", "muted": "已静音", "edit_info": "编辑", - "show_reblogs": "Show Reblogs", - "hide_reblogs": "Hide Reblogs" + "show_reblogs": "显示转发", + "hide_reblogs": "隐藏转发" }, "timeline": { "filtered": "已过滤", @@ -219,15 +219,15 @@ "log_in": "登录" }, "login": { - "title": "Welcome back", - "subtitle": "Log you in on the server you created your account on.", + "title": "欢迎回来", + "subtitle": "登入您账户所在的服务器。", "server_search_field": { - "placeholder": "Enter URL or search for your server" + "placeholder": "输入网址或搜索您的服务器" } }, "server_picker": { "title": "挑选一个服务器,\n任意服务器。", - "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", + "subtitle": "根据你的地区、兴趣挑选一个服务器。无论你选择哪个服务器,你都可以跟其他服务器的任何人一起聊天。", "button": { "category": { "all": "全部", @@ -254,7 +254,7 @@ "category": "类别" }, "input": { - "search_servers_or_enter_url": "Search communities or enter URL" + "search_servers_or_enter_url": "搜索社区或输入 URL" }, "empty_state": { "finding_servers": "正在查找可用的服务器...", @@ -388,12 +388,12 @@ "attachment_broken": "%s已损坏\n无法上传到 Mastodon", "description_photo": "为视觉障碍人士添加照片的文字说明...", "description_video": "为视觉障碍人士添加视频的文字说明...", - "load_failed": "Load Failed", - "upload_failed": "Upload Failed", - "can_not_recognize_this_media_attachment": "Can not recognize this media attachment", - "attachment_too_large": "Attachment too large", - "compressing_state": "Compressing...", - "server_processing_state": "Server Processing..." + "load_failed": "加载失败", + "upload_failed": "上传失败", + "can_not_recognize_this_media_attachment": "无法识别此媒体", + "attachment_too_large": "附件太大", + "compressing_state": "压缩中...", + "server_processing_state": "服务器正在处理..." }, "poll": { "duration_time": "时长:%s", @@ -404,8 +404,8 @@ "three_days": "3 天", "seven_days": "7 天", "option_number": "选项 %ld", - "the_poll_is_invalid": "The poll is invalid", - "the_poll_has_empty_option": "The poll has empty option" + "the_poll_is_invalid": "投票无效", + "the_poll_has_empty_option": "投票含有空选项" }, "content_warning": { "placeholder": "在这里写下内容的警告消息..." @@ -427,8 +427,8 @@ "enable_content_warning": "启用内容警告", "disable_content_warning": "关闭内容警告", "post_visibility_menu": "帖子可见性", - "post_options": "Post Options", - "posting_as": "Posting as %s" + "post_options": "帖子选项", + "posting_as": "以 %s 身份发布" }, "keyboard": { "discard_post": "丢弃帖子", @@ -455,8 +455,8 @@ "content": "内容" }, "verified": { - "short": "Verified on %s", - "long": "Ownership of this link was checked on %s" + "short": "验证于 %s", + "long": "此链接的所有权已在 %s 上检查通过" } }, "segmented_control": { @@ -484,12 +484,12 @@ "message": "确认取消屏蔽 %s" }, "confirm_show_reblogs": { - "title": "Show Reblogs", - "message": "Confirm to show reblogs" + "title": "显示转发", + "message": "确认显示转发" }, "confirm_hide_reblogs": { - "title": "Hide Reblogs", - "message": "Confirm to hide reblogs" + "title": "隐藏转发", + "message": "确认隐藏转发" } }, "accessibility": { @@ -721,7 +721,7 @@ "accessibility_hint": "双击关闭此向导" }, "bookmark": { - "title": "Bookmarks" + "title": "书签" } } } From c198d2050e10fbdef9caa6d30f36e1a8968dedb0 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 12:59:02 +0100 Subject: [PATCH 507/598] New translations Localizable.stringsdict (Chinese Simplified) --- .../input/zh-Hans.lproj/Localizable.stringsdict | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Localization/StringsConvertor/input/zh-Hans.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/zh-Hans.lproj/Localizable.stringsdict index 915a524b5..362d55c4f 100644 --- a/Localization/StringsConvertor/input/zh-Hans.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/zh-Hans.lproj/Localizable.stringsdict @@ -47,7 +47,7 @@ a11y.plural.count.characters_left NSStringLocalizedFormatKey - %#@character_count@ left + %#@character_count@ 剩余 character_count NSStringFormatSpecTypeKey @@ -55,7 +55,7 @@ NSStringFormatValueTypeKey ld other - %ld characters + %ld 个字符 plural.count.followed_by_and_mutual From 6cd6c8c9db587d7b031a6e9b187e7682be5b580d Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 12:59:02 +0100 Subject: [PATCH 508/598] New translations app.json (Icelandic) --- .../StringsConvertor/input/is.lproj/app.json | 727 ++++++++++++++++++ 1 file changed, 727 insertions(+) create mode 100644 Localization/StringsConvertor/input/is.lproj/app.json diff --git a/Localization/StringsConvertor/input/is.lproj/app.json b/Localization/StringsConvertor/input/is.lproj/app.json new file mode 100644 index 000000000..3113ada74 --- /dev/null +++ b/Localization/StringsConvertor/input/is.lproj/app.json @@ -0,0 +1,727 @@ +{ + "common": { + "alerts": { + "common": { + "please_try_again": "Please try again.", + "please_try_again_later": "Please try again later." + }, + "sign_up_failure": { + "title": "Sign Up Failure" + }, + "server_error": { + "title": "Server Error" + }, + "vote_failure": { + "title": "Vote Failure", + "poll_ended": "The poll has ended" + }, + "discard_post_content": { + "title": "Discard Draft", + "message": "Confirm to discard composed post content." + }, + "publish_post_failure": { + "title": "Publish Failure", + "message": "Failed to publish the post.\nPlease check your internet connection.", + "attachments_message": { + "video_attach_with_photo": "Cannot attach a video to a post that already contains images.", + "more_than_one_video": "Cannot attach more than one video." + } + }, + "edit_profile_failure": { + "title": "Edit Profile Error", + "message": "Cannot edit profile. Please try again." + }, + "sign_out": { + "title": "Sign Out", + "message": "Are you sure you want to sign out?", + "confirm": "Sign Out" + }, + "block_domain": { + "title": "Are you really, really sure you want to block the entire %s? In most cases a few targeted blocks or mutes are sufficient and preferable. You will not see content from that domain and any of your followers from that domain will be removed.", + "block_entire_domain": "Block Domain" + }, + "save_photo_failure": { + "title": "Save Photo Failure", + "message": "Please enable the photo library access permission to save the photo." + }, + "delete_post": { + "title": "Delete Post", + "message": "Are you sure you want to delete this post?" + }, + "clean_cache": { + "title": "Clean Cache", + "message": "Successfully cleaned %s cache." + } + }, + "controls": { + "actions": { + "back": "Back", + "next": "Next", + "previous": "Previous", + "open": "Open", + "add": "Add", + "remove": "Remove", + "edit": "Edit", + "save": "Save", + "ok": "OK", + "done": "Done", + "confirm": "Confirm", + "continue": "Continue", + "compose": "Compose", + "cancel": "Cancel", + "discard": "Discard", + "try_again": "Try Again", + "take_photo": "Take Photo", + "save_photo": "Save Photo", + "copy_photo": "Copy Photo", + "sign_in": "Log in", + "sign_up": "Create account", + "see_more": "See More", + "preview": "Preview", + "share": "Share", + "share_user": "Share %s", + "share_post": "Share Post", + "open_in_safari": "Open in Safari", + "open_in_browser": "Open in Browser", + "find_people": "Find people to follow", + "manually_search": "Manually search instead", + "skip": "Skip", + "reply": "Reply", + "report_user": "Report %s", + "block_domain": "Block %s", + "unblock_domain": "Unblock %s", + "settings": "Settings", + "delete": "Delete" + }, + "tabs": { + "home": "Home", + "search": "Search", + "notification": "Notification", + "profile": "Profile" + }, + "keyboard": { + "common": { + "switch_to_tab": "Switch to %s", + "compose_new_post": "Compose New Post", + "show_favorites": "Show Favorites", + "open_settings": "Open Settings" + }, + "timeline": { + "previous_status": "Previous Post", + "next_status": "Next Post", + "open_status": "Open Post", + "open_author_profile": "Open Author's Profile", + "open_reblogger_profile": "Open Reblogger's Profile", + "reply_status": "Reply to Post", + "toggle_reblog": "Toggle Reblog on Post", + "toggle_favorite": "Toggle Favorite on Post", + "toggle_content_warning": "Toggle Content Warning", + "preview_image": "Preview Image" + }, + "segmented_control": { + "previous_section": "Previous Section", + "next_section": "Next Section" + } + }, + "status": { + "user_reblogged": "%s reblogged", + "user_replied_to": "Replied to %s", + "show_post": "Show Post", + "show_user_profile": "Show user profile", + "content_warning": "Content Warning", + "sensitive_content": "Sensitive Content", + "media_content_warning": "Tap anywhere to reveal", + "tap_to_reveal": "Tap to reveal", + "poll": { + "vote": "Vote", + "closed": "Closed" + }, + "meta_entity": { + "url": "Link: %s", + "hashtag": "Hashtag: %s", + "mention": "Show Profile: %s", + "email": "Email address: %s" + }, + "actions": { + "reply": "Reply", + "reblog": "Reblog", + "unreblog": "Undo reblog", + "favorite": "Favorite", + "unfavorite": "Unfavorite", + "menu": "Menu", + "hide": "Hide", + "show_image": "Show image", + "show_gif": "Show GIF", + "show_video_player": "Show video player", + "tap_then_hold_to_show_menu": "Tap then hold to show menu" + }, + "tag": { + "url": "URL", + "mention": "Mention", + "link": "Link", + "hashtag": "Hashtag", + "email": "Email", + "emoji": "Emoji" + }, + "visibility": { + "unlisted": "Everyone can see this post but not display in the public timeline.", + "private": "Only their followers can see this post.", + "private_from_me": "Only my followers can see this post.", + "direct": "Only mentioned user can see this post." + } + }, + "friendship": { + "follow": "Follow", + "following": "Following", + "request": "Request", + "pending": "Pending", + "block": "Block", + "block_user": "Block %s", + "block_domain": "Block %s", + "unblock": "Unblock", + "unblock_user": "Unblock %s", + "blocked": "Blocked", + "mute": "Mute", + "mute_user": "Mute %s", + "unmute": "Unmute", + "unmute_user": "Unmute %s", + "muted": "Muted", + "edit_info": "Edit Info", + "show_reblogs": "Show Reblogs", + "hide_reblogs": "Hide Reblogs" + }, + "timeline": { + "filtered": "Filtered", + "timestamp": { + "now": "Now" + }, + "loader": { + "load_missing_posts": "Load missing posts", + "loading_missing_posts": "Loading missing posts...", + "show_more_replies": "Show more replies" + }, + "header": { + "no_status_found": "No Post Found", + "blocking_warning": "You can’t view this user's profile\nuntil you unblock them.\nYour profile looks like this to them.", + "user_blocking_warning": "You can’t view %s’s profile\nuntil you unblock them.\nYour profile looks like this to them.", + "blocked_warning": "You can’t view this user’s profile\nuntil they unblock you.", + "user_blocked_warning": "You can’t view %s’s profile\nuntil they unblock you.", + "suspended_warning": "This user has been suspended.", + "user_suspended_warning": "%s’s account has been suspended." + } + } + } + }, + "scene": { + "welcome": { + "slogan": "Social networking\nback in your hands.", + "get_started": "Get Started", + "log_in": "Log In" + }, + "login": { + "title": "Welcome back", + "subtitle": "Log you in on the server you created your account on.", + "server_search_field": { + "placeholder": "Enter URL or search for your server" + } + }, + "server_picker": { + "title": "Mastodon is made of users in different servers.", + "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", + "button": { + "category": { + "all": "All", + "all_accessiblity_description": "Category: All", + "academia": "academia", + "activism": "activism", + "food": "food", + "furry": "furry", + "games": "games", + "general": "general", + "journalism": "journalism", + "lgbt": "lgbt", + "regional": "regional", + "art": "art", + "music": "music", + "tech": "tech" + }, + "see_less": "See Less", + "see_more": "See More" + }, + "label": { + "language": "LANGUAGE", + "users": "USERS", + "category": "CATEGORY" + }, + "input": { + "search_servers_or_enter_url": "Search communities or enter URL" + }, + "empty_state": { + "finding_servers": "Finding available servers...", + "bad_network": "Something went wrong while loading the data. Check your internet connection.", + "no_results": "No results" + } + }, + "register": { + "title": "Let’s get you set up on %s", + "lets_get_you_set_up_on_domain": "Let’s get you set up on %s", + "input": { + "avatar": { + "delete": "Delete" + }, + "username": { + "placeholder": "username", + "duplicate_prompt": "This username is taken." + }, + "display_name": { + "placeholder": "display name" + }, + "email": { + "placeholder": "email" + }, + "password": { + "placeholder": "password", + "require": "Your password needs at least:", + "character_limit": "8 characters", + "accessibility": { + "checked": "checked", + "unchecked": "unchecked" + }, + "hint": "Your password needs at least eight characters" + }, + "invite": { + "registration_user_invite_request": "Why do you want to join?" + } + }, + "error": { + "item": { + "username": "Username", + "email": "Email", + "password": "Password", + "agreement": "Agreement", + "locale": "Locale", + "reason": "Reason" + }, + "reason": { + "blocked": "%s contains a disallowed email provider", + "unreachable": "%s does not seem to exist", + "taken": "%s is already in use", + "reserved": "%s is a reserved keyword", + "accepted": "%s must be accepted", + "blank": "%s is required", + "invalid": "%s is invalid", + "too_long": "%s is too long", + "too_short": "%s is too short", + "inclusion": "%s is not a supported value" + }, + "special": { + "username_invalid": "Username must only contain alphanumeric characters and underscores", + "username_too_long": "Username is too long (can’t be longer than 30 characters)", + "email_invalid": "This is not a valid email address", + "password_too_short": "Password is too short (must be at least 8 characters)" + } + } + }, + "server_rules": { + "title": "Some ground rules.", + "subtitle": "These are set and enforced by the %s moderators.", + "prompt": "By continuing, you’re subject to the terms of service and privacy policy for %s.", + "terms_of_service": "terms of service", + "privacy_policy": "privacy policy", + "button": { + "confirm": "I Agree" + } + }, + "confirm_email": { + "title": "One last thing.", + "subtitle": "Tap the link we emailed to you to verify your account.", + "tap_the_link_we_emailed_to_you_to_verify_your_account": "Tap the link we emailed to you to verify your account", + "button": { + "open_email_app": "Open Email App", + "resend": "Resend" + }, + "dont_receive_email": { + "title": "Check your email", + "description": "Check if your email address is correct as well as your junk folder if you haven’t.", + "resend_email": "Resend Email" + }, + "open_email_app": { + "title": "Check your inbox.", + "description": "We just sent you an email. Check your junk folder if you haven’t.", + "mail": "Mail", + "open_email_client": "Open Email Client" + } + }, + "home_timeline": { + "title": "Home", + "navigation_bar_state": { + "offline": "Offline", + "new_posts": "See new posts", + "published": "Published!", + "Publishing": "Publishing post...", + "accessibility": { + "logo_label": "Logo Button", + "logo_hint": "Tap to scroll to top and tap again to previous location" + } + } + }, + "suggestion_account": { + "title": "Find People to Follow", + "follow_explain": "When you follow someone, you’ll see their posts in your home feed." + }, + "compose": { + "title": { + "new_post": "New Post", + "new_reply": "New Reply" + }, + "media_selection": { + "camera": "Take Photo", + "photo_library": "Photo Library", + "browse": "Browse" + }, + "content_input_placeholder": "Type or paste what’s on your mind", + "compose_action": "Publish", + "replying_to_user": "replying to %s", + "attachment": { + "photo": "photo", + "video": "video", + "attachment_broken": "This %s is broken and can’t be\nuploaded to Mastodon.", + "description_photo": "Describe the photo for the visually-impaired...", + "description_video": "Describe the video for the visually-impaired...", + "load_failed": "Load Failed", + "upload_failed": "Upload Failed", + "can_not_recognize_this_media_attachment": "Can not recognize this media attachment", + "attachment_too_large": "Attachment too large", + "compressing_state": "Compressing...", + "server_processing_state": "Server Processing..." + }, + "poll": { + "duration_time": "Duration: %s", + "thirty_minutes": "30 minutes", + "one_hour": "1 Hour", + "six_hours": "6 Hours", + "one_day": "1 Day", + "three_days": "3 Days", + "seven_days": "7 Days", + "option_number": "Option %ld", + "the_poll_is_invalid": "The poll is invalid", + "the_poll_has_empty_option": "The poll has empty option" + }, + "content_warning": { + "placeholder": "Write an accurate warning here..." + }, + "visibility": { + "public": "Public", + "unlisted": "Unlisted", + "private": "Followers only", + "direct": "Only people I mention" + }, + "auto_complete": { + "space_to_add": "Space to add" + }, + "accessibility": { + "append_attachment": "Add Attachment", + "append_poll": "Add Poll", + "remove_poll": "Remove Poll", + "custom_emoji_picker": "Custom Emoji Picker", + "enable_content_warning": "Enable Content Warning", + "disable_content_warning": "Disable Content Warning", + "post_visibility_menu": "Post Visibility Menu", + "post_options": "Post Options", + "posting_as": "Posting as %s" + }, + "keyboard": { + "discard_post": "Discard Post", + "publish_post": "Publish Post", + "toggle_poll": "Toggle Poll", + "toggle_content_warning": "Toggle Content Warning", + "append_attachment_entry": "Add Attachment - %s", + "select_visibility_entry": "Select Visibility - %s" + } + }, + "profile": { + "header": { + "follows_you": "Follows You" + }, + "dashboard": { + "posts": "posts", + "following": "following", + "followers": "followers" + }, + "fields": { + "add_row": "Add Row", + "placeholder": { + "label": "Label", + "content": "Content" + }, + "verified": { + "short": "Verified on %s", + "long": "Ownership of this link was checked on %s" + } + }, + "segmented_control": { + "posts": "Posts", + "replies": "Replies", + "posts_and_replies": "Posts and Replies", + "media": "Media", + "about": "About" + }, + "relationship_action_alert": { + "confirm_mute_user": { + "title": "Mute Account", + "message": "Confirm to mute %s" + }, + "confirm_unmute_user": { + "title": "Unmute Account", + "message": "Confirm to unmute %s" + }, + "confirm_block_user": { + "title": "Block Account", + "message": "Confirm to block %s" + }, + "confirm_unblock_user": { + "title": "Unblock Account", + "message": "Confirm to unblock %s" + }, + "confirm_show_reblogs": { + "title": "Show Reblogs", + "message": "Confirm to show reblogs" + }, + "confirm_hide_reblogs": { + "title": "Hide Reblogs", + "message": "Confirm to hide reblogs" + } + }, + "accessibility": { + "show_avatar_image": "Show avatar image", + "edit_avatar_image": "Edit avatar image", + "show_banner_image": "Show banner image", + "double_tap_to_open_the_list": "Double tap to open the list" + } + }, + "follower": { + "title": "follower", + "footer": "Followers from other servers are not displayed." + }, + "following": { + "title": "following", + "footer": "Follows from other servers are not displayed." + }, + "familiarFollowers": { + "title": "Followers you familiar", + "followed_by_names": "Followed by %s" + }, + "favorited_by": { + "title": "Favorited By" + }, + "reblogged_by": { + "title": "Reblogged By" + }, + "search": { + "title": "Search", + "search_bar": { + "placeholder": "Search hashtags and users", + "cancel": "Cancel" + }, + "recommend": { + "button_text": "See All", + "hash_tag": { + "title": "Trending on Mastodon", + "description": "Hashtags that are getting quite a bit of attention", + "people_talking": "%s people are talking" + }, + "accounts": { + "title": "Accounts you might like", + "description": "You may like to follow these accounts", + "follow": "Follow" + } + }, + "searching": { + "segment": { + "all": "All", + "people": "People", + "hashtags": "Hashtags", + "posts": "Posts" + }, + "empty_state": { + "no_results": "No results" + }, + "recent_search": "Recent searches", + "clear": "Clear" + } + }, + "discovery": { + "tabs": { + "posts": "Posts", + "hashtags": "Hashtags", + "news": "News", + "community": "Community", + "for_you": "For You" + }, + "intro": "These are the posts gaining traction in your corner of Mastodon." + }, + "favorite": { + "title": "Your Favorites" + }, + "notification": { + "title": { + "Everything": "Everything", + "Mentions": "Mentions" + }, + "notification_description": { + "followed_you": "followed you", + "favorited_your_post": "favorited your post", + "reblogged_your_post": "reblogged your post", + "mentioned_you": "mentioned you", + "request_to_follow_you": "request to follow you", + "poll_has_ended": "poll has ended" + }, + "keyobard": { + "show_everything": "Show Everything", + "show_mentions": "Show Mentions" + }, + "follow_request": { + "accept": "Accept", + "accepted": "Accepted", + "reject": "reject", + "rejected": "Rejected" + } + }, + "thread": { + "back_title": "Post", + "title": "Post from %s" + }, + "settings": { + "title": "Settings", + "section": { + "appearance": { + "title": "Appearance", + "automatic": "Automatic", + "light": "Always Light", + "dark": "Always Dark" + }, + "look_and_feel": { + "title": "Look and Feel", + "use_system": "Use System", + "really_dark": "Really Dark", + "sorta_dark": "Sorta Dark", + "light": "Light" + }, + "notifications": { + "title": "Notifications", + "favorites": "Favorites my post", + "follows": "Follows me", + "boosts": "Reblogs my post", + "mentions": "Mentions me", + "trigger": { + "anyone": "anyone", + "follower": "a follower", + "follow": "anyone I follow", + "noone": "no one", + "title": "Notify me when" + } + }, + "preference": { + "title": "Preferences", + "true_black_dark_mode": "True black dark mode", + "disable_avatar_animation": "Disable animated avatars", + "disable_emoji_animation": "Disable animated emojis", + "using_default_browser": "Use default browser to open links", + "open_links_in_mastodon": "Open links in Mastodon" + }, + "boring_zone": { + "title": "The Boring Zone", + "account_settings": "Account Settings", + "terms": "Terms of Service", + "privacy": "Privacy Policy" + }, + "spicy_zone": { + "title": "The Spicy Zone", + "clear": "Clear Media Cache", + "signout": "Sign Out" + } + }, + "footer": { + "mastodon_description": "Mastodon is open source software. You can report issues on GitHub at %s (%s)" + }, + "keyboard": { + "close_settings_window": "Close Settings Window" + } + }, + "report": { + "title_report": "Report", + "title": "Report %s", + "step1": "Step 1 of 2", + "step2": "Step 2 of 2", + "content1": "Are there any other posts you’d like to add to the report?", + "content2": "Is there anything the moderators should know about this report?", + "report_sent_title": "Thanks for reporting, we’ll look into this.", + "send": "Send Report", + "skip_to_send": "Send without comment", + "text_placeholder": "Type or paste additional comments", + "reported": "REPORTED", + "step_one": { + "step_1_of_4": "Step 1 of 4", + "whats_wrong_with_this_post": "What's wrong with this post?", + "whats_wrong_with_this_account": "What's wrong with this account?", + "whats_wrong_with_this_username": "What's wrong with %s?", + "select_the_best_match": "Select the best match", + "i_dont_like_it": "I don’t like it", + "it_is_not_something_you_want_to_see": "It is not something you want to see", + "its_spam": "It’s spam", + "malicious_links_fake_engagement_or_repetetive_replies": "Malicious links, fake engagement, or repetetive replies", + "it_violates_server_rules": "It violates server rules", + "you_are_aware_that_it_breaks_specific_rules": "You are aware that it breaks specific rules", + "its_something_else": "It’s something else", + "the_issue_does_not_fit_into_other_categories": "The issue does not fit into other categories" + }, + "step_two": { + "step_2_of_4": "Step 2 of 4", + "which_rules_are_being_violated": "Which rules are being violated?", + "select_all_that_apply": "Select all that apply", + "i_just_don’t_like_it": "I just don’t like it" + }, + "step_three": { + "step_3_of_4": "Step 3 of 4", + "are_there_any_posts_that_back_up_this_report": "Are there any posts that back up this report?", + "select_all_that_apply": "Select all that apply" + }, + "step_four": { + "step_4_of_4": "Step 4 of 4", + "is_there_anything_else_we_should_know": "Is there anything else we should know?" + }, + "step_final": { + "dont_want_to_see_this": "Don’t want to see this?", + "when_you_see_something_you_dont_like_on_mastodon_you_can_remove_the_person_from_your_experience.": "When you see something you don’t like on Mastodon, you can remove the person from your experience.", + "unfollow": "Unfollow", + "unfollowed": "Unfollowed", + "unfollow_user": "Unfollow %s", + "mute_user": "Mute %s", + "you_wont_see_their_posts_or_reblogs_in_your_home_feed_they_wont_know_they_ve_been_muted": "You won’t see their posts or reblogs in your home feed. They won’t know they’ve been muted.", + "block_user": "Block %s", + "they_will_no_longer_be_able_to_follow_or_see_your_posts_but_they_can_see_if_theyve_been_blocked": "They will no longer be able to follow or see your posts, but they can see if they’ve been blocked.", + "while_we_review_this_you_can_take_action_against_user": "While we review this, you can take action against %s" + } + }, + "preview": { + "keyboard": { + "close_preview": "Close Preview", + "show_next": "Show Next", + "show_previous": "Show Previous" + } + }, + "account_list": { + "tab_bar_hint": "Current selected profile: %s. Double tap then hold to show account switcher", + "dismiss_account_switcher": "Dismiss Account Switcher", + "add_account": "Add Account" + }, + "wizard": { + "new_in_mastodon": "New in Mastodon", + "multiple_account_switch_intro_description": "Switch between multiple accounts by holding the profile button.", + "accessibility_hint": "Double tap to dismiss this wizard" + }, + "bookmark": { + "title": "Bookmarks" + } + } +} From 22f10bbc348808b2366c2d133504cca4ae3e3c6e Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 12:59:03 +0100 Subject: [PATCH 509/598] New translations ios-infoPlist.json (Icelandic) --- .../StringsConvertor/input/is.lproj/ios-infoPlist.json | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 Localization/StringsConvertor/input/is.lproj/ios-infoPlist.json diff --git a/Localization/StringsConvertor/input/is.lproj/ios-infoPlist.json b/Localization/StringsConvertor/input/is.lproj/ios-infoPlist.json new file mode 100644 index 000000000..c6db73de0 --- /dev/null +++ b/Localization/StringsConvertor/input/is.lproj/ios-infoPlist.json @@ -0,0 +1,6 @@ +{ + "NSCameraUsageDescription": "Used to take photo for post status", + "NSPhotoLibraryAddUsageDescription": "Used to save photo into the Photo Library", + "NewPostShortcutItemTitle": "New Post", + "SearchShortcutItemTitle": "Search" +} From beabb10bc653442057a7e133f6c23fe7d6cbd125 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 12:59:04 +0100 Subject: [PATCH 510/598] New translations Localizable.stringsdict (Icelandic) --- .../input/is.lproj/Localizable.stringsdict | 465 ++++++++++++++++++ 1 file changed, 465 insertions(+) create mode 100644 Localization/StringsConvertor/input/is.lproj/Localizable.stringsdict diff --git a/Localization/StringsConvertor/input/is.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/is.lproj/Localizable.stringsdict new file mode 100644 index 000000000..eabdc3c32 --- /dev/null +++ b/Localization/StringsConvertor/input/is.lproj/Localizable.stringsdict @@ -0,0 +1,465 @@ + + + + + a11y.plural.count.unread.notification + + NSStringLocalizedFormatKey + %#@notification_count_unread_notification@ + notification_count_unread_notification + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 unread notification + other + %ld unread notification + + + a11y.plural.count.input_limit_exceeds + + NSStringLocalizedFormatKey + Input limit exceeds %#@character_count@ + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 character + other + %ld characters + + + a11y.plural.count.input_limit_remains + + NSStringLocalizedFormatKey + Input limit remains %#@character_count@ + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 character + other + %ld characters + + + a11y.plural.count.characters_left + + NSStringLocalizedFormatKey + %#@character_count@ left + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 character + other + %ld characters + + + plural.count.followed_by_and_mutual + + NSStringLocalizedFormatKey + %#@names@%#@count_mutual@ + names + + one + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + other + + + count_mutual + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + Followed by %1$@, and another mutual + other + Followed by %1$@, and %ld mutuals + + + plural.count.metric_formatted.post + + NSStringLocalizedFormatKey + %@ %#@post_count@ + post_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + post + other + posts + + + plural.count.media + + NSStringLocalizedFormatKey + %#@media_count@ + media_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 media + other + %ld media + + + plural.count.post + + NSStringLocalizedFormatKey + %#@post_count@ + post_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 post + other + %ld posts + + + plural.count.favorite + + NSStringLocalizedFormatKey + %#@favorite_count@ + favorite_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 favorite + other + %ld favorites + + + plural.count.reblog + + NSStringLocalizedFormatKey + %#@reblog_count@ + reblog_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 reblog + other + %ld reblogs + + + plural.count.reply + + NSStringLocalizedFormatKey + %#@reply_count@ + reply_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 reply + other + %ld replies + + + plural.count.vote + + NSStringLocalizedFormatKey + %#@vote_count@ + vote_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 vote + other + %ld votes + + + plural.count.voter + + NSStringLocalizedFormatKey + %#@voter_count@ + voter_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 voter + other + %ld voters + + + plural.people_talking + + NSStringLocalizedFormatKey + %#@count_people_talking@ + count_people_talking + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 people talking + other + %ld people talking + + + plural.count.following + + NSStringLocalizedFormatKey + %#@count_following@ + count_following + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 following + other + %ld following + + + plural.count.follower + + NSStringLocalizedFormatKey + %#@count_follower@ + count_follower + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 follower + other + %ld followers + + + date.year.left + + NSStringLocalizedFormatKey + %#@count_year_left@ + count_year_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 year left + other + %ld years left + + + date.month.left + + NSStringLocalizedFormatKey + %#@count_month_left@ + count_month_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 months left + other + %ld months left + + + date.day.left + + NSStringLocalizedFormatKey + %#@count_day_left@ + count_day_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 day left + other + %ld days left + + + date.hour.left + + NSStringLocalizedFormatKey + %#@count_hour_left@ + count_hour_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 hour left + other + %ld hours left + + + date.minute.left + + NSStringLocalizedFormatKey + %#@count_minute_left@ + count_minute_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 minute left + other + %ld minutes left + + + date.second.left + + NSStringLocalizedFormatKey + %#@count_second_left@ + count_second_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 second left + other + %ld seconds left + + + date.year.ago.abbr + + NSStringLocalizedFormatKey + %#@count_year_ago_abbr@ + count_year_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1y ago + other + %ldy ago + + + date.month.ago.abbr + + NSStringLocalizedFormatKey + %#@count_month_ago_abbr@ + count_month_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1M ago + other + %ldM ago + + + date.day.ago.abbr + + NSStringLocalizedFormatKey + %#@count_day_ago_abbr@ + count_day_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1d ago + other + %ldd ago + + + date.hour.ago.abbr + + NSStringLocalizedFormatKey + %#@count_hour_ago_abbr@ + count_hour_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1h ago + other + %ldh ago + + + date.minute.ago.abbr + + NSStringLocalizedFormatKey + %#@count_minute_ago_abbr@ + count_minute_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1m ago + other + %ldm ago + + + date.second.ago.abbr + + NSStringLocalizedFormatKey + %#@count_second_ago_abbr@ + count_second_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1s ago + other + %lds ago + + + + From 4e1b2672878dbe5aa1ae4daf7b171d822c975eb9 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 12:59:05 +0100 Subject: [PATCH 511/598] New translations Intents.strings (Icelandic) --- .../Intents/input/is.lproj/Intents.strings | 51 +++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 Localization/StringsConvertor/Intents/input/is.lproj/Intents.strings diff --git a/Localization/StringsConvertor/Intents/input/is.lproj/Intents.strings b/Localization/StringsConvertor/Intents/input/is.lproj/Intents.strings new file mode 100644 index 000000000..6877490ba --- /dev/null +++ b/Localization/StringsConvertor/Intents/input/is.lproj/Intents.strings @@ -0,0 +1,51 @@ +"16wxgf" = "Post on Mastodon"; + +"751xkl" = "Text Content"; + +"CsR7G2" = "Post on Mastodon"; + +"HZSGTr" = "What content to post?"; + +"HdGikU" = "Posting failed"; + +"KDNTJ4" = "Failure Reason"; + +"RHxKOw" = "Send Post with text content"; + +"RxSqsb" = "Post"; + +"WCIR3D" = "Post ${content} on Mastodon"; + +"ZKJSNu" = "Post"; + +"ZS1XaK" = "${content}"; + +"ZbSjzC" = "Visibility"; + +"Zo4jgJ" = "Post Visibility"; + +"apSxMG-dYQ5NN" = "There are ${count} options matching ‘Public’."; + +"apSxMG-ehFLjY" = "There are ${count} options matching ‘Followers Only’."; + +"ayoYEb-dYQ5NN" = "${content}, Public"; + +"ayoYEb-ehFLjY" = "${content}, Followers Only"; + +"dUyuGg" = "Post on Mastodon"; + +"dYQ5NN" = "Public"; + +"ehFLjY" = "Followers Only"; + +"gfePDu" = "Posting failed. ${failureReason}"; + +"k7dbKQ" = "Post was sent successfully."; + +"oGiqmY-dYQ5NN" = "Just to confirm, you wanted ‘Public’?"; + +"oGiqmY-ehFLjY" = "Just to confirm, you wanted ‘Followers Only’?"; + +"rM6dvp" = "URL"; + +"ryJLwG" = "Post was sent successfully. "; From 67cdd1928477dfe4e39e85ca4af4d64846f90642 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 12:59:06 +0100 Subject: [PATCH 512/598] New translations Intents.stringsdict (Icelandic) --- .../input/is.lproj/Intents.stringsdict | 38 +++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 Localization/StringsConvertor/Intents/input/is.lproj/Intents.stringsdict diff --git a/Localization/StringsConvertor/Intents/input/is.lproj/Intents.stringsdict b/Localization/StringsConvertor/Intents/input/is.lproj/Intents.stringsdict new file mode 100644 index 000000000..18422c772 --- /dev/null +++ b/Localization/StringsConvertor/Intents/input/is.lproj/Intents.stringsdict @@ -0,0 +1,38 @@ + + + + + There are ${count} options matching ‘${content}’. - 2 + + NSStringLocalizedFormatKey + There are %#@count_option@ matching ‘${content}’. + count_option + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + %ld + one + 1 option + other + %ld options + + + There are ${count} options matching ‘${visibility}’. + + NSStringLocalizedFormatKey + There are %#@count_option@ matching ‘${visibility}’. + count_option + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + %ld + one + 1 option + other + %ld options + + + + From 1f63f68014cba20b58c6dae1ec3ccf4bb4849f29 Mon Sep 17 00:00:00 2001 From: CMK Date: Wed, 16 Nov 2022 20:02:09 +0800 Subject: [PATCH 513/598] fix: not copy translation resource for info.plist issue --- Mastodon/Resources/Base.lproj/infoPlist.strings | 4 ++++ Mastodon/Resources/ar.lproj/InfoPlist.strings | 2 +- Mastodon/Resources/ckb.lproj/InfoPlist.strings | 8 ++++---- Mastodon/Resources/cs.lproj/InfoPlist.strings | 8 ++++---- Mastodon/Resources/de.lproj/infoPlist.strings | 6 +++--- Mastodon/Resources/eu.lproj/InfoPlist.strings | 8 ++++---- Mastodon/Resources/fi.lproj/InfoPlist.strings | 8 ++++---- Mastodon/Resources/gd.lproj/InfoPlist.strings | 8 ++++---- Mastodon/Resources/gl.lproj/InfoPlist.strings | 8 ++++---- Mastodon/Resources/it.lproj/InfoPlist.strings | 8 ++++---- Mastodon/Resources/kab.lproj/InfoPlist.strings | 8 ++++---- Mastodon/Resources/ku.lproj/InfoPlist.strings | 8 ++++---- Mastodon/Resources/nl.lproj/InfoPlist.strings | 2 +- Mastodon/Resources/sl.lproj/InfoPlist.strings | 8 ++++---- Mastodon/Resources/sv.lproj/InfoPlist.strings | 8 ++++---- Mastodon/Resources/tr.lproj/InfoPlist.strings | 8 ++++---- Mastodon/Resources/vi.lproj/InfoPlist.strings | 8 ++++---- Mastodon/Resources/zh-Hant.lproj/InfoPlist.strings | 8 ++++---- update_localization.sh | 1 + 19 files changed, 66 insertions(+), 61 deletions(-) create mode 100644 Mastodon/Resources/Base.lproj/infoPlist.strings diff --git a/Mastodon/Resources/Base.lproj/infoPlist.strings b/Mastodon/Resources/Base.lproj/infoPlist.strings new file mode 100644 index 000000000..710865573 --- /dev/null +++ b/Mastodon/Resources/Base.lproj/infoPlist.strings @@ -0,0 +1,4 @@ +"NSCameraUsageDescription" = "Used to take photo for post status"; +"NSPhotoLibraryAddUsageDescription" = "Used to save photo into the Photo Library"; +"NewPostShortcutItemTitle" = "New Post"; +"SearchShortcutItemTitle" = "Search"; \ No newline at end of file diff --git a/Mastodon/Resources/ar.lproj/InfoPlist.strings b/Mastodon/Resources/ar.lproj/InfoPlist.strings index c3b26f14a..ecb81ddd4 100644 --- a/Mastodon/Resources/ar.lproj/InfoPlist.strings +++ b/Mastodon/Resources/ar.lproj/InfoPlist.strings @@ -1,4 +1,4 @@ "NSCameraUsageDescription" = "يُستخدم لالتقاط الصورة عِندَ نشر الحالات"; "NSPhotoLibraryAddUsageDescription" = "يُستخدم لحِفظ الصورة في مكتبة الصور"; -"NewPostShortcutItemTitle" = "منشور جديد"; +"NewPostShortcutItemTitle" = "مَنشُورٌ جَديد"; "SearchShortcutItemTitle" = "البحث"; \ No newline at end of file diff --git a/Mastodon/Resources/ckb.lproj/InfoPlist.strings b/Mastodon/Resources/ckb.lproj/InfoPlist.strings index 710865573..8c4946d2d 100644 --- a/Mastodon/Resources/ckb.lproj/InfoPlist.strings +++ b/Mastodon/Resources/ckb.lproj/InfoPlist.strings @@ -1,4 +1,4 @@ -"NSCameraUsageDescription" = "Used to take photo for post status"; -"NSPhotoLibraryAddUsageDescription" = "Used to save photo into the Photo Library"; -"NewPostShortcutItemTitle" = "New Post"; -"SearchShortcutItemTitle" = "Search"; \ No newline at end of file +"NSCameraUsageDescription" = "بەکار دێت بۆ گرتنی وێنەیەک بۆ پۆستەکە"; +"NSPhotoLibraryAddUsageDescription" = "بەکار دێت بۆ هەڵگرتنی وێنە"; +"NewPostShortcutItemTitle" = "پۆستی نوێ"; +"SearchShortcutItemTitle" = "بگەڕێ"; \ No newline at end of file diff --git a/Mastodon/Resources/cs.lproj/InfoPlist.strings b/Mastodon/Resources/cs.lproj/InfoPlist.strings index 710865573..6989cfcb1 100644 --- a/Mastodon/Resources/cs.lproj/InfoPlist.strings +++ b/Mastodon/Resources/cs.lproj/InfoPlist.strings @@ -1,4 +1,4 @@ -"NSCameraUsageDescription" = "Used to take photo for post status"; -"NSPhotoLibraryAddUsageDescription" = "Used to save photo into the Photo Library"; -"NewPostShortcutItemTitle" = "New Post"; -"SearchShortcutItemTitle" = "Search"; \ No newline at end of file +"NSCameraUsageDescription" = "Slouží k pořízení fotografie pro příspěvek"; +"NSPhotoLibraryAddUsageDescription" = "Slouží k uložení fotografie do knihovny fotografií"; +"NewPostShortcutItemTitle" = "Nový příspěvek"; +"SearchShortcutItemTitle" = "Hledat"; \ No newline at end of file diff --git a/Mastodon/Resources/de.lproj/infoPlist.strings b/Mastodon/Resources/de.lproj/infoPlist.strings index 9c5feae53..9c8438653 100644 --- a/Mastodon/Resources/de.lproj/infoPlist.strings +++ b/Mastodon/Resources/de.lproj/infoPlist.strings @@ -1,4 +1,4 @@ -"NSCameraUsageDescription" = "Verwendet um Fotos für neue Beiträge aufzunehmen"; -"NSPhotoLibraryAddUsageDescription" = "Verwendet um Fotos zu speichern"; +"NSCameraUsageDescription" = "Wird verwendet, um Fotos für neue Beiträge aufzunehmen"; +"NSPhotoLibraryAddUsageDescription" = "Wird verwendet, um Foto in der Foto-Mediathek zu speichern"; "NewPostShortcutItemTitle" = "Neuer Beitrag"; -"SearchShortcutItemTitle" = "Suche"; \ No newline at end of file +"SearchShortcutItemTitle" = "Suchen"; \ No newline at end of file diff --git a/Mastodon/Resources/eu.lproj/InfoPlist.strings b/Mastodon/Resources/eu.lproj/InfoPlist.strings index 710865573..e9d36a901 100644 --- a/Mastodon/Resources/eu.lproj/InfoPlist.strings +++ b/Mastodon/Resources/eu.lproj/InfoPlist.strings @@ -1,4 +1,4 @@ -"NSCameraUsageDescription" = "Used to take photo for post status"; -"NSPhotoLibraryAddUsageDescription" = "Used to save photo into the Photo Library"; -"NewPostShortcutItemTitle" = "New Post"; -"SearchShortcutItemTitle" = "Search"; \ No newline at end of file +"NSCameraUsageDescription" = "Bidalketetarako argazkiak ateratzeko erabiltzen da"; +"NSPhotoLibraryAddUsageDescription" = "Argazkiak Argazki-liburutegian gordetzeko erabiltzen da"; +"NewPostShortcutItemTitle" = "Bidalketa berria"; +"SearchShortcutItemTitle" = "Bilatu"; \ No newline at end of file diff --git a/Mastodon/Resources/fi.lproj/InfoPlist.strings b/Mastodon/Resources/fi.lproj/InfoPlist.strings index 710865573..040b25d69 100644 --- a/Mastodon/Resources/fi.lproj/InfoPlist.strings +++ b/Mastodon/Resources/fi.lproj/InfoPlist.strings @@ -1,4 +1,4 @@ -"NSCameraUsageDescription" = "Used to take photo for post status"; -"NSPhotoLibraryAddUsageDescription" = "Used to save photo into the Photo Library"; -"NewPostShortcutItemTitle" = "New Post"; -"SearchShortcutItemTitle" = "Search"; \ No newline at end of file +"NSCameraUsageDescription" = "Käytetään kuvan ottamiseen julkaisua varten"; +"NSPhotoLibraryAddUsageDescription" = "Käytetään kuvan tallentamiseen kuvakirjastoon"; +"NewPostShortcutItemTitle" = "Uusi julkaisu"; +"SearchShortcutItemTitle" = "Haku"; \ No newline at end of file diff --git a/Mastodon/Resources/gd.lproj/InfoPlist.strings b/Mastodon/Resources/gd.lproj/InfoPlist.strings index 710865573..ccb39b44e 100644 --- a/Mastodon/Resources/gd.lproj/InfoPlist.strings +++ b/Mastodon/Resources/gd.lproj/InfoPlist.strings @@ -1,4 +1,4 @@ -"NSCameraUsageDescription" = "Used to take photo for post status"; -"NSPhotoLibraryAddUsageDescription" = "Used to save photo into the Photo Library"; -"NewPostShortcutItemTitle" = "New Post"; -"SearchShortcutItemTitle" = "Search"; \ No newline at end of file +"NSCameraUsageDescription" = "’Ga chleachdadh airson dealbh a thogail do staid puist"; +"NSPhotoLibraryAddUsageDescription" = "’Ga chleachdadh airson dealbh a shàbhaladh ann an tasg-lann nan dealbhan"; +"NewPostShortcutItemTitle" = "Post ùr"; +"SearchShortcutItemTitle" = "Lorg"; \ No newline at end of file diff --git a/Mastodon/Resources/gl.lproj/InfoPlist.strings b/Mastodon/Resources/gl.lproj/InfoPlist.strings index 710865573..3d6df3f0f 100644 --- a/Mastodon/Resources/gl.lproj/InfoPlist.strings +++ b/Mastodon/Resources/gl.lproj/InfoPlist.strings @@ -1,4 +1,4 @@ -"NSCameraUsageDescription" = "Used to take photo for post status"; -"NSPhotoLibraryAddUsageDescription" = "Used to save photo into the Photo Library"; -"NewPostShortcutItemTitle" = "New Post"; -"SearchShortcutItemTitle" = "Search"; \ No newline at end of file +"NSCameraUsageDescription" = "Utilizado para facer foto e publicar estado"; +"NSPhotoLibraryAddUsageDescription" = "Utilizado para gardar a foto na Biblioteca"; +"NewPostShortcutItemTitle" = "Nova publicación"; +"SearchShortcutItemTitle" = "Buscar"; \ No newline at end of file diff --git a/Mastodon/Resources/it.lproj/InfoPlist.strings b/Mastodon/Resources/it.lproj/InfoPlist.strings index 710865573..0da468639 100644 --- a/Mastodon/Resources/it.lproj/InfoPlist.strings +++ b/Mastodon/Resources/it.lproj/InfoPlist.strings @@ -1,4 +1,4 @@ -"NSCameraUsageDescription" = "Used to take photo for post status"; -"NSPhotoLibraryAddUsageDescription" = "Used to save photo into the Photo Library"; -"NewPostShortcutItemTitle" = "New Post"; -"SearchShortcutItemTitle" = "Search"; \ No newline at end of file +"NSCameraUsageDescription" = "Usato per scattare foto per lo stato del post"; +"NSPhotoLibraryAddUsageDescription" = "Utilizzato per salvare la foto nella galleria immagini"; +"NewPostShortcutItemTitle" = "Nuovo post"; +"SearchShortcutItemTitle" = "Cerca"; \ No newline at end of file diff --git a/Mastodon/Resources/kab.lproj/InfoPlist.strings b/Mastodon/Resources/kab.lproj/InfoPlist.strings index 710865573..42adc4cfc 100644 --- a/Mastodon/Resources/kab.lproj/InfoPlist.strings +++ b/Mastodon/Resources/kab.lproj/InfoPlist.strings @@ -1,4 +1,4 @@ -"NSCameraUsageDescription" = "Used to take photo for post status"; -"NSPhotoLibraryAddUsageDescription" = "Used to save photo into the Photo Library"; -"NewPostShortcutItemTitle" = "New Post"; -"SearchShortcutItemTitle" = "Search"; \ No newline at end of file +"NSCameraUsageDescription" = "Yettwaseqdac i tuṭṭfa n tewlafin deg usuffeɣ n waddaden"; +"NSPhotoLibraryAddUsageDescription" = "Yettwaseqdac i usekles n tewlafin deg temkarḍit n tewlafin"; +"NewPostShortcutItemTitle" = "Tasuffeɣt tamaynut"; +"SearchShortcutItemTitle" = "Nadi"; \ No newline at end of file diff --git a/Mastodon/Resources/ku.lproj/InfoPlist.strings b/Mastodon/Resources/ku.lproj/InfoPlist.strings index 710865573..669ecfacf 100644 --- a/Mastodon/Resources/ku.lproj/InfoPlist.strings +++ b/Mastodon/Resources/ku.lproj/InfoPlist.strings @@ -1,4 +1,4 @@ -"NSCameraUsageDescription" = "Used to take photo for post status"; -"NSPhotoLibraryAddUsageDescription" = "Used to save photo into the Photo Library"; -"NewPostShortcutItemTitle" = "New Post"; -"SearchShortcutItemTitle" = "Search"; \ No newline at end of file +"NSCameraUsageDescription" = "Bo kişandina wêneyê ji bo rewşa şandiyan tê bikaranîn"; +"NSPhotoLibraryAddUsageDescription" = "Ji bo tomarkirina wêneyê di pirtûkxaneya wêneyan de tê bikaranîn"; +"NewPostShortcutItemTitle" = "Şandiya nû"; +"SearchShortcutItemTitle" = "Bigere"; \ No newline at end of file diff --git a/Mastodon/Resources/nl.lproj/InfoPlist.strings b/Mastodon/Resources/nl.lproj/InfoPlist.strings index a45991068..36b6e9802 100644 --- a/Mastodon/Resources/nl.lproj/InfoPlist.strings +++ b/Mastodon/Resources/nl.lproj/InfoPlist.strings @@ -1,4 +1,4 @@ "NSCameraUsageDescription" = "Gebruikt om foto's te nemen voor je berichten"; "NSPhotoLibraryAddUsageDescription" = "Gebruikt om foto's op te slaan in de fotobibliotheek"; "NewPostShortcutItemTitle" = "Nieuw Bericht"; -"SearchShortcutItemTitle" = "Zoeken"; \ No newline at end of file +"SearchShortcutItemTitle" = "Zoek"; \ No newline at end of file diff --git a/Mastodon/Resources/sl.lproj/InfoPlist.strings b/Mastodon/Resources/sl.lproj/InfoPlist.strings index 710865573..57c8319f5 100644 --- a/Mastodon/Resources/sl.lproj/InfoPlist.strings +++ b/Mastodon/Resources/sl.lproj/InfoPlist.strings @@ -1,4 +1,4 @@ -"NSCameraUsageDescription" = "Used to take photo for post status"; -"NSPhotoLibraryAddUsageDescription" = "Used to save photo into the Photo Library"; -"NewPostShortcutItemTitle" = "New Post"; -"SearchShortcutItemTitle" = "Search"; \ No newline at end of file +"NSCameraUsageDescription" = "Uporabljeno za zajem fotografij za stanje objave"; +"NSPhotoLibraryAddUsageDescription" = "Uporabljeno za shranjevanje fotografije v knjižnico fotografij"; +"NewPostShortcutItemTitle" = "Nova objava"; +"SearchShortcutItemTitle" = "Iskanje"; \ No newline at end of file diff --git a/Mastodon/Resources/sv.lproj/InfoPlist.strings b/Mastodon/Resources/sv.lproj/InfoPlist.strings index 710865573..e0facc1d2 100644 --- a/Mastodon/Resources/sv.lproj/InfoPlist.strings +++ b/Mastodon/Resources/sv.lproj/InfoPlist.strings @@ -1,4 +1,4 @@ -"NSCameraUsageDescription" = "Used to take photo for post status"; -"NSPhotoLibraryAddUsageDescription" = "Used to save photo into the Photo Library"; -"NewPostShortcutItemTitle" = "New Post"; -"SearchShortcutItemTitle" = "Search"; \ No newline at end of file +"NSCameraUsageDescription" = "Används för att ta foto till inlägg"; +"NSPhotoLibraryAddUsageDescription" = "Används för att spara foto till bildbiblioteket"; +"NewPostShortcutItemTitle" = "Nytt inlägg"; +"SearchShortcutItemTitle" = "Sök"; \ No newline at end of file diff --git a/Mastodon/Resources/tr.lproj/InfoPlist.strings b/Mastodon/Resources/tr.lproj/InfoPlist.strings index 710865573..1c4e05659 100644 --- a/Mastodon/Resources/tr.lproj/InfoPlist.strings +++ b/Mastodon/Resources/tr.lproj/InfoPlist.strings @@ -1,4 +1,4 @@ -"NSCameraUsageDescription" = "Used to take photo for post status"; -"NSPhotoLibraryAddUsageDescription" = "Used to save photo into the Photo Library"; -"NewPostShortcutItemTitle" = "New Post"; -"SearchShortcutItemTitle" = "Search"; \ No newline at end of file +"NSCameraUsageDescription" = "Fotoğraf çekerek durum paylaşmak için kullanılır"; +"NSPhotoLibraryAddUsageDescription" = "Fotoğraf Albümü'ne fotoğraf kaydetmek için kullanılır"; +"NewPostShortcutItemTitle" = "Yeni Gönderi"; +"SearchShortcutItemTitle" = "Arama"; \ No newline at end of file diff --git a/Mastodon/Resources/vi.lproj/InfoPlist.strings b/Mastodon/Resources/vi.lproj/InfoPlist.strings index 710865573..5dd27b7bc 100644 --- a/Mastodon/Resources/vi.lproj/InfoPlist.strings +++ b/Mastodon/Resources/vi.lproj/InfoPlist.strings @@ -1,4 +1,4 @@ -"NSCameraUsageDescription" = "Used to take photo for post status"; -"NSPhotoLibraryAddUsageDescription" = "Used to save photo into the Photo Library"; -"NewPostShortcutItemTitle" = "New Post"; -"SearchShortcutItemTitle" = "Search"; \ No newline at end of file +"NSCameraUsageDescription" = "Được sử dụng để chụp ảnh cho tút"; +"NSPhotoLibraryAddUsageDescription" = "Được sử dụng để lưu ảnh vào Thư viện ảnh"; +"NewPostShortcutItemTitle" = "Viết tút"; +"SearchShortcutItemTitle" = "Tìm kiếm"; \ No newline at end of file diff --git a/Mastodon/Resources/zh-Hant.lproj/InfoPlist.strings b/Mastodon/Resources/zh-Hant.lproj/InfoPlist.strings index 710865573..737d2f857 100644 --- a/Mastodon/Resources/zh-Hant.lproj/InfoPlist.strings +++ b/Mastodon/Resources/zh-Hant.lproj/InfoPlist.strings @@ -1,4 +1,4 @@ -"NSCameraUsageDescription" = "Used to take photo for post status"; -"NSPhotoLibraryAddUsageDescription" = "Used to save photo into the Photo Library"; -"NewPostShortcutItemTitle" = "New Post"; -"SearchShortcutItemTitle" = "Search"; \ No newline at end of file +"NSCameraUsageDescription" = "用來拍照發嘟文"; +"NSPhotoLibraryAddUsageDescription" = "用來儲存照片到圖片庫"; +"NewPostShortcutItemTitle" = "新增嘟文"; +"SearchShortcutItemTitle" = "搜尋"; \ No newline at end of file diff --git a/update_localization.sh b/update_localization.sh index 87477bdaa..1a240c893 100755 --- a/update_localization.sh +++ b/update_localization.sh @@ -25,6 +25,7 @@ cd ${SRCROOT}/Localization/StringsConvertor sh ./scripts/build.sh # Task 3 copy strings file +cp -R ${SRCROOT}/Localization/StringsConvertor/output/main/ ${SRCROOT}/Mastodon/Resources cp -R ${SRCROOT}/Localization/StringsConvertor/output/module/ ${SRCROOT}/MastodonSDK/Sources/MastodonLocalization/Resources cp -R ${SRCROOT}/Localization/StringsConvertor/Intents/output/ ${SRCROOT}/MastodonIntent From 9e1140dc7865d0421fe8faefa927cfd0c4bad2e2 Mon Sep 17 00:00:00 2001 From: CMK Date: Wed, 16 Nov 2022 20:20:42 +0800 Subject: [PATCH 514/598] chore: disable Xcode Cloud and using GitHub action to make the TestFlight build --- .github/workflows/develop-build.yml | 1 + .github/workflows/main.yml | 3 +++ 2 files changed, 4 insertions(+) diff --git a/.github/workflows/develop-build.yml b/.github/workflows/develop-build.yml index c37f00731..4b3a4a04c 100644 --- a/.github/workflows/develop-build.yml +++ b/.github/workflows/develop-build.yml @@ -4,6 +4,7 @@ on: push: branches: - develop + - release* - ci-test jobs: diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 827276208..1c40b6556 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -6,6 +6,9 @@ on: - master - develop - feature/* + - feature-* + - issue/* + - issue-* pull_request: branches: - develop From 634796e9dc7ba721426a245e3f3003d37b8b4710 Mon Sep 17 00:00:00 2001 From: Marcus Kida Date: Wed, 16 Nov 2022 13:43:54 +0100 Subject: [PATCH 515/598] fix: Only allow double-tap account toggle if more than 1 account exists --- Mastodon/Scene/Root/MainTab/MainTabBarController.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mastodon/Scene/Root/MainTab/MainTabBarController.swift b/Mastodon/Scene/Root/MainTab/MainTabBarController.swift index 158cd769b..5f77d9584 100644 --- a/Mastodon/Scene/Root/MainTab/MainTabBarController.swift +++ b/Mastodon/Scene/Root/MainTab/MainTabBarController.swift @@ -407,7 +407,7 @@ extension MainTabBarController { assert(Thread.isMainThread) let request = MastodonAuthentication.sortedFetchRequest - guard let accounts = try? context.managedObjectContext.fetch(request) else { return } + guard let accounts = try? context.managedObjectContext.fetch(request), accounts.count > 1 else { return } let nextSelectedAccountIndex: Int? = { for (index, account) in accounts.enumerated() { From 0d3c9de0026675ab7d8b4a649e69388b0862d650 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 13:57:28 +0100 Subject: [PATCH 516/598] New translations app.json (Icelandic) --- .../StringsConvertor/input/is.lproj/app.json | 502 +++++++++--------- 1 file changed, 251 insertions(+), 251 deletions(-) diff --git a/Localization/StringsConvertor/input/is.lproj/app.json b/Localization/StringsConvertor/input/is.lproj/app.json index 3113ada74..c5e73dacd 100644 --- a/Localization/StringsConvertor/input/is.lproj/app.json +++ b/Localization/StringsConvertor/input/is.lproj/app.json @@ -2,21 +2,21 @@ "common": { "alerts": { "common": { - "please_try_again": "Please try again.", - "please_try_again_later": "Please try again later." + "please_try_again": "Endilega reyndu aftur.", + "please_try_again_later": "Reyndu aftur síðar." }, "sign_up_failure": { "title": "Sign Up Failure" }, "server_error": { - "title": "Server Error" + "title": "Villa á þjóni" }, "vote_failure": { "title": "Vote Failure", "poll_ended": "The poll has ended" }, "discard_post_content": { - "title": "Discard Draft", + "title": "Henda drögum", "message": "Confirm to discard composed post content." }, "publish_post_failure": { @@ -32,9 +32,9 @@ "message": "Cannot edit profile. Please try again." }, "sign_out": { - "title": "Sign Out", - "message": "Are you sure you want to sign out?", - "confirm": "Sign Out" + "title": "Skrá út", + "message": "Ertu viss um að þú viljir skrá þig út?", + "confirm": "Skrá út" }, "block_domain": { "title": "Are you really, really sure you want to block the entire %s? In most cases a few targeted blocks or mutes are sufficient and preferable. You will not see content from that domain and any of your followers from that domain will be removed.", @@ -45,66 +45,66 @@ "message": "Please enable the photo library access permission to save the photo." }, "delete_post": { - "title": "Delete Post", - "message": "Are you sure you want to delete this post?" + "title": "Eyða færslu", + "message": "Ertu viss um að þú viljir eyða þessari færslu?" }, "clean_cache": { - "title": "Clean Cache", + "title": "Hreinsa skyndiminni", "message": "Successfully cleaned %s cache." } }, "controls": { "actions": { - "back": "Back", - "next": "Next", - "previous": "Previous", - "open": "Open", - "add": "Add", - "remove": "Remove", - "edit": "Edit", - "save": "Save", - "ok": "OK", - "done": "Done", - "confirm": "Confirm", - "continue": "Continue", - "compose": "Compose", - "cancel": "Cancel", - "discard": "Discard", - "try_again": "Try Again", - "take_photo": "Take Photo", - "save_photo": "Save Photo", - "copy_photo": "Copy Photo", - "sign_in": "Log in", - "sign_up": "Create account", - "see_more": "See More", - "preview": "Preview", - "share": "Share", - "share_user": "Share %s", - "share_post": "Share Post", - "open_in_safari": "Open in Safari", - "open_in_browser": "Open in Browser", - "find_people": "Find people to follow", - "manually_search": "Manually search instead", - "skip": "Skip", - "reply": "Reply", - "report_user": "Report %s", - "block_domain": "Block %s", - "unblock_domain": "Unblock %s", - "settings": "Settings", - "delete": "Delete" + "back": "Til baka", + "next": "Næsta", + "previous": "Fyrri", + "open": "Opna", + "add": "Bæta við", + "remove": "Fjarlægja", + "edit": "Breyta", + "save": "Vista", + "ok": "Í lagi", + "done": "Lokið", + "confirm": "Staðfesta", + "continue": "Halda áfram", + "compose": "Skrifa", + "cancel": "Hætta við", + "discard": "Henda", + "try_again": "Reyna aftur", + "take_photo": "Taka ljósmynd", + "save_photo": "Vista mynd", + "copy_photo": "Afrita mynd", + "sign_in": "Skrá inn", + "sign_up": "Stofna notandaaðgang", + "see_more": "Sjá fleira", + "preview": "Forskoða", + "share": "Deila", + "share_user": "Deila %s", + "share_post": "Deila færslu", + "open_in_safari": "Opna í Safari", + "open_in_browser": "Opna í vafra", + "find_people": "Finna fólk til að fylgjast með", + "manually_search": "Leita handvirkt í staðinn", + "skip": "Sleppa", + "reply": "Svara", + "report_user": "Kæra %s", + "block_domain": "Útiloka %s", + "unblock_domain": "Opna á %s", + "settings": "Stillingar", + "delete": "Eyða" }, "tabs": { - "home": "Home", - "search": "Search", - "notification": "Notification", + "home": "Heim", + "search": "Leita", + "notification": "Tilkynning", "profile": "Profile" }, "keyboard": { "common": { "switch_to_tab": "Switch to %s", "compose_new_post": "Compose New Post", - "show_favorites": "Show Favorites", - "open_settings": "Open Settings" + "show_favorites": "Birta eftirlæti", + "open_settings": "Opna stillingar" }, "timeline": { "previous_status": "Previous Post", @@ -127,41 +127,41 @@ "user_reblogged": "%s reblogged", "user_replied_to": "Replied to %s", "show_post": "Show Post", - "show_user_profile": "Show user profile", - "content_warning": "Content Warning", - "sensitive_content": "Sensitive Content", - "media_content_warning": "Tap anywhere to reveal", - "tap_to_reveal": "Tap to reveal", + "show_user_profile": "Birta notandasnið", + "content_warning": "Viðvörun vegna efnis", + "sensitive_content": "Viðkvæmt efni", + "media_content_warning": "Ýttu hvar sem er til að birta", + "tap_to_reveal": "Ýttu til að birta", "poll": { - "vote": "Vote", - "closed": "Closed" + "vote": "Greiða atkvæði", + "closed": "Lokið" }, "meta_entity": { - "url": "Link: %s", - "hashtag": "Hashtag: %s", - "mention": "Show Profile: %s", - "email": "Email address: %s" + "url": "Tengill: %s", + "hashtag": "Myllumerki: %s", + "mention": "Sýna notandasnið: %s", + "email": "Tölvupóstfang: %s" }, "actions": { - "reply": "Reply", - "reblog": "Reblog", - "unreblog": "Undo reblog", - "favorite": "Favorite", - "unfavorite": "Unfavorite", - "menu": "Menu", - "hide": "Hide", - "show_image": "Show image", - "show_gif": "Show GIF", + "reply": "Svara", + "reblog": "Endurbirta", + "unreblog": "Afturkalla endurbirtingu", + "favorite": "Eftirlæti", + "unfavorite": "Taka úr eftirlætum", + "menu": "Valmynd", + "hide": "Fela", + "show_image": "Sýna mynd", + "show_gif": "Birta GIF", "show_video_player": "Show video player", "tap_then_hold_to_show_menu": "Tap then hold to show menu" }, "tag": { - "url": "URL", - "mention": "Mention", - "link": "Link", - "hashtag": "Hashtag", - "email": "Email", - "emoji": "Emoji" + "url": "URL-slóð", + "mention": "Minnst á", + "link": "Tengill", + "hashtag": "Myllumerki", + "email": "Tölvupóstur", + "emoji": "Tjáningartákn" }, "visibility": { "unlisted": "Everyone can see this post but not display in the public timeline.", @@ -171,29 +171,29 @@ } }, "friendship": { - "follow": "Follow", - "following": "Following", - "request": "Request", - "pending": "Pending", - "block": "Block", - "block_user": "Block %s", - "block_domain": "Block %s", - "unblock": "Unblock", - "unblock_user": "Unblock %s", - "blocked": "Blocked", - "mute": "Mute", - "mute_user": "Mute %s", - "unmute": "Unmute", - "unmute_user": "Unmute %s", - "muted": "Muted", + "follow": "Fylgja", + "following": "Fylgist með", + "request": "Beiðni", + "pending": "Í bið", + "block": "Útilokun", + "block_user": "Útiloka %s", + "block_domain": "Útiloka %s", + "unblock": "Aflétta útilokun", + "unblock_user": "Opna á %s", + "blocked": "Útilokað", + "mute": "Þagga niður", + "mute_user": "Þagga niður í %s", + "unmute": "Afþagga", + "unmute_user": "Afþagga %s", + "muted": "Þaggað", "edit_info": "Edit Info", "show_reblogs": "Show Reblogs", - "hide_reblogs": "Hide Reblogs" + "hide_reblogs": "Fela endurbirtingar" }, "timeline": { - "filtered": "Filtered", + "filtered": "Síað", "timestamp": { - "now": "Now" + "now": "Núna" }, "loader": { "load_missing_posts": "Load missing posts", @@ -214,12 +214,12 @@ }, "scene": { "welcome": { - "slogan": "Social networking\nback in your hands.", - "get_started": "Get Started", + "slogan": "Samfélagsmiðlar\naftur í þínar hendur.", + "get_started": "Komast í gang", "log_in": "Log In" }, "login": { - "title": "Welcome back", + "title": "Velkomin aftur", "subtitle": "Log you in on the server you created your account on.", "server_search_field": { "placeholder": "Enter URL or search for your server" @@ -230,28 +230,28 @@ "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", "button": { "category": { - "all": "All", - "all_accessiblity_description": "Category: All", - "academia": "academia", + "all": "Allt", + "all_accessiblity_description": "Flokkur: Allt", + "academia": "akademískt", "activism": "activism", - "food": "food", - "furry": "furry", - "games": "games", - "general": "general", - "journalism": "journalism", + "food": "matur", + "furry": "loðið", + "games": "leikir", + "general": "almennt", + "journalism": "blaðamennska", "lgbt": "lgbt", - "regional": "regional", - "art": "art", - "music": "music", - "tech": "tech" + "regional": "svæðisbundið", + "art": "listir", + "music": "tónlist", + "tech": "tækni" }, - "see_less": "See Less", - "see_more": "See More" + "see_less": "Sjá minna", + "see_more": "Sjá meira" }, "label": { - "language": "LANGUAGE", - "users": "USERS", - "category": "CATEGORY" + "language": "TUNGUMÁL", + "users": "NOTENDUR", + "category": "FLOKKUR" }, "input": { "search_servers_or_enter_url": "Search communities or enter URL" @@ -259,7 +259,7 @@ "empty_state": { "finding_servers": "Finding available servers...", "bad_network": "Something went wrong while loading the data. Check your internet connection.", - "no_results": "No results" + "no_results": "Engar niðurstöður" } }, "register": { @@ -267,40 +267,40 @@ "lets_get_you_set_up_on_domain": "Let’s get you set up on %s", "input": { "avatar": { - "delete": "Delete" + "delete": "Eyða" }, "username": { - "placeholder": "username", + "placeholder": "notandanafn", "duplicate_prompt": "This username is taken." }, "display_name": { - "placeholder": "display name" + "placeholder": "birtingarnafn" }, "email": { - "placeholder": "email" + "placeholder": "tölvupóstur" }, "password": { - "placeholder": "password", - "require": "Your password needs at least:", - "character_limit": "8 characters", + "placeholder": "lykilorð", + "require": "Lykilorðið þitt þarf að minnsta kosti:", + "character_limit": "8 stafi", "accessibility": { - "checked": "checked", - "unchecked": "unchecked" + "checked": "merkt", + "unchecked": "ekki merkt" }, - "hint": "Your password needs at least eight characters" + "hint": "Lykilorðið þitt verður að vera að minnsta kosti 8 stafa langt" }, "invite": { - "registration_user_invite_request": "Why do you want to join?" + "registration_user_invite_request": "Hvers vegna vilt þú taka þátt?" } }, "error": { "item": { - "username": "Username", - "email": "Email", - "password": "Password", - "agreement": "Agreement", - "locale": "Locale", - "reason": "Reason" + "username": "Notandanafn", + "email": "Tölvupóstur", + "password": "Lykilorð", + "agreement": "Notkunarskilmálar", + "locale": "Staðfærsla", + "reason": "Ástæða" }, "reason": { "blocked": "%s contains a disallowed email provider", @@ -326,10 +326,10 @@ "title": "Some ground rules.", "subtitle": "These are set and enforced by the %s moderators.", "prompt": "By continuing, you’re subject to the terms of service and privacy policy for %s.", - "terms_of_service": "terms of service", - "privacy_policy": "privacy policy", + "terms_of_service": "þjónustuskilmálar", + "privacy_policy": "persónuverndarstefna", "button": { - "confirm": "I Agree" + "confirm": "Ég samþykki" } }, "confirm_email": { @@ -338,27 +338,27 @@ "tap_the_link_we_emailed_to_you_to_verify_your_account": "Tap the link we emailed to you to verify your account", "button": { "open_email_app": "Open Email App", - "resend": "Resend" + "resend": "Endursenda" }, "dont_receive_email": { - "title": "Check your email", + "title": "Athugaðu tölvupóstinn þinn", "description": "Check if your email address is correct as well as your junk folder if you haven’t.", - "resend_email": "Resend Email" + "resend_email": "Endursenda tölvupóst" }, "open_email_app": { - "title": "Check your inbox.", + "title": "Athugaðu pósthólfið þitt.", "description": "We just sent you an email. Check your junk folder if you haven’t.", - "mail": "Mail", - "open_email_client": "Open Email Client" + "mail": "Tölvupóstur", + "open_email_client": "Opna tölvupóstforrit" } }, "home_timeline": { - "title": "Home", + "title": "Heim", "navigation_bar_state": { - "offline": "Offline", - "new_posts": "See new posts", - "published": "Published!", - "Publishing": "Publishing post...", + "offline": "Ónettengt", + "new_posts": "Skoða nýjar færslur", + "published": "Birt!", + "Publishing": "Birti færslu...", "accessibility": { "logo_label": "Logo Button", "logo_hint": "Tap to scroll to top and tap again to previous location" @@ -371,38 +371,38 @@ }, "compose": { "title": { - "new_post": "New Post", - "new_reply": "New Reply" + "new_post": "Ný færsla", + "new_reply": "Nýtt svar" }, "media_selection": { - "camera": "Take Photo", - "photo_library": "Photo Library", - "browse": "Browse" + "camera": "Taktu mynd", + "photo_library": "Myndasafn", + "browse": "Flakka" }, "content_input_placeholder": "Type or paste what’s on your mind", - "compose_action": "Publish", + "compose_action": "Birta", "replying_to_user": "replying to %s", "attachment": { - "photo": "photo", - "video": "video", + "photo": "ljósmynd", + "video": "myndskeið", "attachment_broken": "This %s is broken and can’t be\nuploaded to Mastodon.", "description_photo": "Describe the photo for the visually-impaired...", "description_video": "Describe the video for the visually-impaired...", - "load_failed": "Load Failed", - "upload_failed": "Upload Failed", + "load_failed": "Hleðsla mistókst", + "upload_failed": "Innsending mistókst", "can_not_recognize_this_media_attachment": "Can not recognize this media attachment", "attachment_too_large": "Attachment too large", - "compressing_state": "Compressing...", - "server_processing_state": "Server Processing..." + "compressing_state": "Þjappa...", + "server_processing_state": "Netþjónn er að vinna..." }, "poll": { - "duration_time": "Duration: %s", - "thirty_minutes": "30 minutes", - "one_hour": "1 Hour", - "six_hours": "6 Hours", - "one_day": "1 Day", - "three_days": "3 Days", - "seven_days": "7 Days", + "duration_time": "Tímalengd: %s", + "thirty_minutes": "30 mínútur", + "one_hour": "1 klukkustund", + "six_hours": "6 klukkustundir", + "one_day": "1 dagur", + "three_days": "3 dagar", + "seven_days": "7 dagar", "option_number": "Option %ld", "the_poll_is_invalid": "The poll is invalid", "the_poll_has_empty_option": "The poll has empty option" @@ -411,8 +411,8 @@ "placeholder": "Write an accurate warning here..." }, "visibility": { - "public": "Public", - "unlisted": "Unlisted", + "public": "Opinbert", + "unlisted": "Óskráð", "private": "Followers only", "direct": "Only people I mention" }, @@ -420,10 +420,10 @@ "space_to_add": "Space to add" }, "accessibility": { - "append_attachment": "Add Attachment", - "append_poll": "Add Poll", - "remove_poll": "Remove Poll", - "custom_emoji_picker": "Custom Emoji Picker", + "append_attachment": "Bæta við viðhengi", + "append_poll": "Bæta við könnun", + "remove_poll": "Fjarlægja könnun", + "custom_emoji_picker": "Sérsniðið emoji-tánmyndaval", "enable_content_warning": "Enable Content Warning", "disable_content_warning": "Disable Content Warning", "post_visibility_menu": "Post Visibility Menu", @@ -441,18 +441,18 @@ }, "profile": { "header": { - "follows_you": "Follows You" + "follows_you": "Fylgist með þér" }, "dashboard": { - "posts": "posts", - "following": "following", - "followers": "followers" + "posts": "færslur", + "following": "fylgist með", + "followers": "fylgjendur" }, "fields": { - "add_row": "Add Row", + "add_row": "Bæta við röð", "placeholder": { - "label": "Label", - "content": "Content" + "label": "Skýring", + "content": "Efni" }, "verified": { "short": "Verified on %s", @@ -460,11 +460,11 @@ } }, "segmented_control": { - "posts": "Posts", - "replies": "Replies", - "posts_and_replies": "Posts and Replies", - "media": "Media", - "about": "About" + "posts": "Færslur", + "replies": "Svör", + "posts_and_replies": "Færslur og svör", + "media": "Gagnamiðlar", + "about": "Um hugbúnaðinn" }, "relationship_action_alert": { "confirm_mute_user": { @@ -500,11 +500,11 @@ } }, "follower": { - "title": "follower", + "title": "fylgjandi", "footer": "Followers from other servers are not displayed." }, "following": { - "title": "following", + "title": "fylgist með", "footer": "Follows from other servers are not displayed." }, "familiarFollowers": { @@ -518,13 +518,13 @@ "title": "Reblogged By" }, "search": { - "title": "Search", + "title": "Leita", "search_bar": { "placeholder": "Search hashtags and users", - "cancel": "Cancel" + "cancel": "Hætta við" }, "recommend": { - "button_text": "See All", + "button_text": "Sjá allt", "hash_tag": { "title": "Trending on Mastodon", "description": "Hashtags that are getting quite a bit of attention", @@ -533,29 +533,29 @@ "accounts": { "title": "Accounts you might like", "description": "You may like to follow these accounts", - "follow": "Follow" + "follow": "Fylgjast með" } }, "searching": { "segment": { - "all": "All", - "people": "People", - "hashtags": "Hashtags", - "posts": "Posts" + "all": "Allt", + "people": "Fólk", + "hashtags": "Myllumerki", + "posts": "Færslur" }, "empty_state": { - "no_results": "No results" + "no_results": "Engar niðurstöður" }, - "recent_search": "Recent searches", - "clear": "Clear" + "recent_search": "Nýlegar leitir", + "clear": "Hreinsa" } }, "discovery": { "tabs": { - "posts": "Posts", - "hashtags": "Hashtags", - "news": "News", - "community": "Community", + "posts": "Færslur", + "hashtags": "Myllumerki", + "news": "Fréttir", + "community": "Samfélag", "for_you": "For You" }, "intro": "These are the posts gaining traction in your corner of Mastodon." @@ -565,7 +565,7 @@ }, "notification": { "title": { - "Everything": "Everything", + "Everything": "Allt", "Mentions": "Mentions" }, "notification_description": { @@ -581,87 +581,87 @@ "show_mentions": "Show Mentions" }, "follow_request": { - "accept": "Accept", - "accepted": "Accepted", - "reject": "reject", - "rejected": "Rejected" + "accept": "Samþykkja", + "accepted": "Samþykkt", + "reject": "hafna", + "rejected": "Hafnað" } }, "thread": { - "back_title": "Post", - "title": "Post from %s" + "back_title": "Færsla", + "title": "Færsla frá %s" }, "settings": { - "title": "Settings", + "title": "Stillingar", "section": { "appearance": { - "title": "Appearance", - "automatic": "Automatic", - "light": "Always Light", - "dark": "Always Dark" + "title": "Útlit", + "automatic": "Sjálfvirkt", + "light": "Alltaf ljóst", + "dark": "Alltaf dökkt" }, "look_and_feel": { - "title": "Look and Feel", - "use_system": "Use System", - "really_dark": "Really Dark", - "sorta_dark": "Sorta Dark", - "light": "Light" + "title": "Útlit og viðmót", + "use_system": "Nota stillingar kerfis", + "really_dark": "Mjög dökkt", + "sorta_dark": "Nokkuð dökkt", + "light": "Ljóst" }, "notifications": { - "title": "Notifications", + "title": "Tilkynningar", "favorites": "Favorites my post", "follows": "Follows me", "boosts": "Reblogs my post", "mentions": "Mentions me", "trigger": { - "anyone": "anyone", - "follower": "a follower", - "follow": "anyone I follow", - "noone": "no one", + "anyone": "hver sem er", + "follower": "fylgjandi", + "follow": "hverjum sá sem ég fylgi", + "noone": "enginn", "title": "Notify me when" } }, "preference": { - "title": "Preferences", + "title": "Kjörstillingar", "true_black_dark_mode": "True black dark mode", "disable_avatar_animation": "Disable animated avatars", "disable_emoji_animation": "Disable animated emojis", "using_default_browser": "Use default browser to open links", - "open_links_in_mastodon": "Open links in Mastodon" + "open_links_in_mastodon": "Opna tengla í Mastodon" }, "boring_zone": { "title": "The Boring Zone", - "account_settings": "Account Settings", - "terms": "Terms of Service", - "privacy": "Privacy Policy" + "account_settings": "Stillingar aðgangs", + "terms": "Þjónustuskilmálar", + "privacy": "Meðferð persónuupplýsinga" }, "spicy_zone": { "title": "The Spicy Zone", - "clear": "Clear Media Cache", - "signout": "Sign Out" + "clear": "Hreinsa skyndiminni margmiðlunarefnis", + "signout": "Skrá út" } }, "footer": { "mastodon_description": "Mastodon is open source software. You can report issues on GitHub at %s (%s)" }, "keyboard": { - "close_settings_window": "Close Settings Window" + "close_settings_window": "Loka stillingaglugga" } }, "report": { - "title_report": "Report", - "title": "Report %s", - "step1": "Step 1 of 2", - "step2": "Step 2 of 2", + "title_report": "Kæra", + "title": "Kæra %s", + "step1": "Skref 1 af 2", + "step2": "Skref 2 af 2", "content1": "Are there any other posts you’d like to add to the report?", "content2": "Is there anything the moderators should know about this report?", "report_sent_title": "Thanks for reporting, we’ll look into this.", - "send": "Send Report", - "skip_to_send": "Send without comment", + "send": "Senda kæru", + "skip_to_send": "Senda án athugasemdar", "text_placeholder": "Type or paste additional comments", - "reported": "REPORTED", + "reported": "TILKYNNT", "step_one": { - "step_1_of_4": "Step 1 of 4", + "step_1_of_4": "Skref 1 af 4", "whats_wrong_with_this_post": "What's wrong with this post?", "whats_wrong_with_this_account": "What's wrong with this account?", "whats_wrong_with_this_username": "What's wrong with %s?", @@ -676,44 +676,44 @@ "the_issue_does_not_fit_into_other_categories": "The issue does not fit into other categories" }, "step_two": { - "step_2_of_4": "Step 2 of 4", + "step_2_of_4": "Skref 2 af 4", "which_rules_are_being_violated": "Which rules are being violated?", "select_all_that_apply": "Select all that apply", "i_just_don’t_like_it": "I just don’t like it" }, "step_three": { - "step_3_of_4": "Step 3 of 4", + "step_3_of_4": "Skref 3 af 4", "are_there_any_posts_that_back_up_this_report": "Are there any posts that back up this report?", "select_all_that_apply": "Select all that apply" }, "step_four": { - "step_4_of_4": "Step 4 of 4", + "step_4_of_4": "Skref 4 af 4", "is_there_anything_else_we_should_know": "Is there anything else we should know?" }, "step_final": { "dont_want_to_see_this": "Don’t want to see this?", "when_you_see_something_you_dont_like_on_mastodon_you_can_remove_the_person_from_your_experience.": "When you see something you don’t like on Mastodon, you can remove the person from your experience.", - "unfollow": "Unfollow", + "unfollow": "Hætta að fylgjast með", "unfollowed": "Unfollowed", "unfollow_user": "Unfollow %s", - "mute_user": "Mute %s", + "mute_user": "Þagga niður í %s", "you_wont_see_their_posts_or_reblogs_in_your_home_feed_they_wont_know_they_ve_been_muted": "You won’t see their posts or reblogs in your home feed. They won’t know they’ve been muted.", - "block_user": "Block %s", + "block_user": "Útiloka %s", "they_will_no_longer_be_able_to_follow_or_see_your_posts_but_they_can_see_if_theyve_been_blocked": "They will no longer be able to follow or see your posts, but they can see if they’ve been blocked.", "while_we_review_this_you_can_take_action_against_user": "While we review this, you can take action against %s" } }, "preview": { "keyboard": { - "close_preview": "Close Preview", - "show_next": "Show Next", - "show_previous": "Show Previous" + "close_preview": "Loka forskoðun", + "show_next": "Sýna næsta", + "show_previous": "Sýna fyrri" } }, "account_list": { "tab_bar_hint": "Current selected profile: %s. Double tap then hold to show account switcher", "dismiss_account_switcher": "Dismiss Account Switcher", - "add_account": "Add Account" + "add_account": "Bæta við notandaaðgangi" }, "wizard": { "new_in_mastodon": "New in Mastodon", @@ -721,7 +721,7 @@ "accessibility_hint": "Double tap to dismiss this wizard" }, "bookmark": { - "title": "Bookmarks" + "title": "Bókamerki" } } } From 0a2678aca41dd96d1dd745e2dce0ab770069cd6c Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 13:57:29 +0100 Subject: [PATCH 517/598] New translations ios-infoPlist.json (Icelandic) --- .../StringsConvertor/input/is.lproj/ios-infoPlist.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Localization/StringsConvertor/input/is.lproj/ios-infoPlist.json b/Localization/StringsConvertor/input/is.lproj/ios-infoPlist.json index c6db73de0..4d46176af 100644 --- a/Localization/StringsConvertor/input/is.lproj/ios-infoPlist.json +++ b/Localization/StringsConvertor/input/is.lproj/ios-infoPlist.json @@ -1,6 +1,6 @@ { "NSCameraUsageDescription": "Used to take photo for post status", "NSPhotoLibraryAddUsageDescription": "Used to save photo into the Photo Library", - "NewPostShortcutItemTitle": "New Post", - "SearchShortcutItemTitle": "Search" + "NewPostShortcutItemTitle": "Ný færsla", + "SearchShortcutItemTitle": "Leita" } From 5864ef1505f478b14b40973fc16b8711fae41868 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 13:57:31 +0100 Subject: [PATCH 518/598] New translations Localizable.stringsdict (Icelandic) --- .../input/is.lproj/Localizable.stringsdict | 30 +++++++++---------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/Localization/StringsConvertor/input/is.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/is.lproj/Localizable.stringsdict index eabdc3c32..aae13ffb9 100644 --- a/Localization/StringsConvertor/input/is.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/is.lproj/Localizable.stringsdict @@ -29,7 +29,7 @@ NSStringFormatValueTypeKey ld one - 1 character + 1 stafur other %ld characters @@ -45,7 +45,7 @@ NSStringFormatValueTypeKey ld one - 1 character + 1 stafur other %ld characters @@ -61,7 +61,7 @@ NSStringFormatValueTypeKey ld one - 1 character + 1 stafur other %ld characters @@ -104,7 +104,7 @@ NSStringFormatValueTypeKey ld one - post + færsla other posts @@ -120,7 +120,7 @@ NSStringFormatValueTypeKey ld one - 1 media + 1 gagnamiðill other %ld media @@ -136,7 +136,7 @@ NSStringFormatValueTypeKey ld one - 1 post + 1 færsla other %ld posts @@ -152,7 +152,7 @@ NSStringFormatValueTypeKey ld one - 1 favorite + 1 eftirlæti other %ld favorites @@ -168,7 +168,7 @@ NSStringFormatValueTypeKey ld one - 1 reblog + 1 endurbirting other %ld reblogs @@ -184,7 +184,7 @@ NSStringFormatValueTypeKey ld one - 1 reply + 1 svar other %ld replies @@ -200,7 +200,7 @@ NSStringFormatValueTypeKey ld one - 1 vote + 1 atkvæði other %ld votes @@ -216,7 +216,7 @@ NSStringFormatValueTypeKey ld one - 1 voter + 1 kjósandi other %ld voters @@ -248,7 +248,7 @@ NSStringFormatValueTypeKey ld one - 1 following + Eftirfarandi villur komu upp: other %ld following @@ -424,7 +424,7 @@ NSStringFormatValueTypeKey ld one - 1h ago + 1klst síðan other %ldh ago @@ -440,7 +440,7 @@ NSStringFormatValueTypeKey ld one - 1m ago + 1m síðan other %ldm ago @@ -456,7 +456,7 @@ NSStringFormatValueTypeKey ld one - 1s ago + 1s síðan other %lds ago From ae642b72b27bb18874e66efc9137832388d1163f Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 13:57:32 +0100 Subject: [PATCH 519/598] New translations Intents.strings (Icelandic) --- .../Intents/input/is.lproj/Intents.strings | 30 +++++++++---------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/Localization/StringsConvertor/Intents/input/is.lproj/Intents.strings b/Localization/StringsConvertor/Intents/input/is.lproj/Intents.strings index 6877490ba..dbe022814 100644 --- a/Localization/StringsConvertor/Intents/input/is.lproj/Intents.strings +++ b/Localization/StringsConvertor/Intents/input/is.lproj/Intents.strings @@ -1,42 +1,42 @@ -"16wxgf" = "Post on Mastodon"; +"16wxgf" = "Birta á Mastodon"; -"751xkl" = "Text Content"; +"751xkl" = "Efni texta"; "CsR7G2" = "Post on Mastodon"; "HZSGTr" = "What content to post?"; -"HdGikU" = "Posting failed"; +"HdGikU" = "Birting færslu mistókst"; -"KDNTJ4" = "Failure Reason"; +"KDNTJ4" = "Ástæða bilunar"; "RHxKOw" = "Send Post with text content"; -"RxSqsb" = "Post"; +"RxSqsb" = "Færsla"; -"WCIR3D" = "Post ${content} on Mastodon"; +"WCIR3D" = "Birta ${content} á Mastodon"; -"ZKJSNu" = "Post"; +"ZKJSNu" = "Færsla"; "ZS1XaK" = "${content}"; -"ZbSjzC" = "Visibility"; +"ZbSjzC" = "Sýnileiki"; -"Zo4jgJ" = "Post Visibility"; +"Zo4jgJ" = "Sýnileiki færslu"; "apSxMG-dYQ5NN" = "There are ${count} options matching ‘Public’."; "apSxMG-ehFLjY" = "There are ${count} options matching ‘Followers Only’."; -"ayoYEb-dYQ5NN" = "${content}, Public"; +"ayoYEb-dYQ5NN" = "${content}, opinbert"; -"ayoYEb-ehFLjY" = "${content}, Followers Only"; +"ayoYEb-ehFLjY" = "${content}, einungis fylgjendur"; -"dUyuGg" = "Post on Mastodon"; +"dUyuGg" = "Birta á Mastodon"; -"dYQ5NN" = "Public"; +"dYQ5NN" = "Opinbert"; -"ehFLjY" = "Followers Only"; +"ehFLjY" = "Einungis fylgjendur"; "gfePDu" = "Posting failed. ${failureReason}"; @@ -46,6 +46,6 @@ "oGiqmY-ehFLjY" = "Just to confirm, you wanted ‘Followers Only’?"; -"rM6dvp" = "URL"; +"rM6dvp" = "URL-slóð"; "ryJLwG" = "Post was sent successfully. "; From e89677bff425e535479f7cff55be125e16edd6cf Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 13:57:33 +0100 Subject: [PATCH 520/598] New translations Intents.stringsdict (Icelandic) --- .../Intents/input/is.lproj/Intents.stringsdict | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Localization/StringsConvertor/Intents/input/is.lproj/Intents.stringsdict b/Localization/StringsConvertor/Intents/input/is.lproj/Intents.stringsdict index 18422c772..9212186f0 100644 --- a/Localization/StringsConvertor/Intents/input/is.lproj/Intents.stringsdict +++ b/Localization/StringsConvertor/Intents/input/is.lproj/Intents.stringsdict @@ -13,7 +13,7 @@ NSStringFormatValueTypeKey %ld one - 1 option + 1 valkostur other %ld options @@ -29,7 +29,7 @@ NSStringFormatValueTypeKey %ld one - 1 option + 1 valkostur other %ld options From ac281be9a132a18d88a9c2f994ee40ccdd95b4a2 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 14:52:42 +0100 Subject: [PATCH 521/598] New translations app.json (Catalan) --- .../StringsConvertor/input/ca.lproj/app.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Localization/StringsConvertor/input/ca.lproj/app.json b/Localization/StringsConvertor/input/ca.lproj/app.json index a417ffdbb..52bb67c77 100644 --- a/Localization/StringsConvertor/input/ca.lproj/app.json +++ b/Localization/StringsConvertor/input/ca.lproj/app.json @@ -74,8 +74,8 @@ "take_photo": "Fes una foto", "save_photo": "Desa la foto", "copy_photo": "Copia la foto", - "sign_in": "Log in", - "sign_up": "Create account", + "sign_in": "Iniciar sessió", + "sign_up": "Crea un compte", "see_more": "Veure més", "preview": "Vista prèvia", "share": "Comparteix", @@ -219,15 +219,15 @@ "log_in": "Inicia sessió" }, "login": { - "title": "Welcome back", - "subtitle": "Log you in on the server you created your account on.", + "title": "Ben tornat", + "subtitle": "T'inicia sessió en el servidor on has creat el teu compte.", "server_search_field": { - "placeholder": "Enter URL or search for your server" + "placeholder": "Insereix la URL o cerca el teu servidor" } }, "server_picker": { "title": "Mastodon està fet d'usuaris en diferents comunitats.", - "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", + "subtitle": "Tria un servidor en funció de la teva regió, interessos o un de propòsit general. Seguiràs podent connectar amb tothom a Mastodon, independentment del servidor.", "button": { "category": { "all": "Totes", @@ -254,7 +254,7 @@ "category": "CATEGORIA" }, "input": { - "search_servers_or_enter_url": "Search communities or enter URL" + "search_servers_or_enter_url": "Cerca comunitats o introdueix l'URL" }, "empty_state": { "finding_servers": "Cercant els servidors disponibles...", From bd71e24a18742e13f383384aa2cc5ec49932265e Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 14:52:43 +0100 Subject: [PATCH 522/598] New translations app.json (Icelandic) --- .../StringsConvertor/input/is.lproj/app.json | 144 +++++++++--------- 1 file changed, 72 insertions(+), 72 deletions(-) diff --git a/Localization/StringsConvertor/input/is.lproj/app.json b/Localization/StringsConvertor/input/is.lproj/app.json index c5e73dacd..5635ae4f7 100644 --- a/Localization/StringsConvertor/input/is.lproj/app.json +++ b/Localization/StringsConvertor/input/is.lproj/app.json @@ -6,30 +6,30 @@ "please_try_again_later": "Reyndu aftur síðar." }, "sign_up_failure": { - "title": "Sign Up Failure" + "title": "Innskráning mistókst" }, "server_error": { "title": "Villa á þjóni" }, "vote_failure": { - "title": "Vote Failure", - "poll_ended": "The poll has ended" + "title": "Greiðsla atkvæðis mistókst", + "poll_ended": "Könnuninni er lokið" }, "discard_post_content": { "title": "Henda drögum", "message": "Confirm to discard composed post content." }, "publish_post_failure": { - "title": "Publish Failure", - "message": "Failed to publish the post.\nPlease check your internet connection.", + "title": "Mistókst að birta", + "message": "Mistókst að birta færsluna.\nAthugaðu nettenginguna þína.", "attachments_message": { - "video_attach_with_photo": "Cannot attach a video to a post that already contains images.", - "more_than_one_video": "Cannot attach more than one video." + "video_attach_with_photo": "Ekki er hægt að hengja myndskeið við færslu sem þegar inniheldur myndir.", + "more_than_one_video": "Ekki er hægt að hengja við fleiri en eitt myndskeið." } }, "edit_profile_failure": { - "title": "Edit Profile Error", - "message": "Cannot edit profile. Please try again." + "title": "Villa við breytingu á notandasniði", + "message": "Mistókst að breyta notandasniði. Endilega reyndu aftur." }, "sign_out": { "title": "Skrá út", @@ -37,11 +37,11 @@ "confirm": "Skrá út" }, "block_domain": { - "title": "Are you really, really sure you want to block the entire %s? In most cases a few targeted blocks or mutes are sufficient and preferable. You will not see content from that domain and any of your followers from that domain will be removed.", - "block_entire_domain": "Block Domain" + "title": "Ertu alveg algjörlega viss um að þú viljir loka á allt %s? Í flestum tilfellum er vænlegra að nota færri en markvissari útilokanir eða að þagga niður tiltekna aðila. Þú munt ekki sjá neitt efni frá þessu léni og fylgjendur þínir frá þessu léni verða fjarlægðir.", + "block_entire_domain": "Útiloka lén" }, "save_photo_failure": { - "title": "Save Photo Failure", + "title": "Mistókst að vista mynd", "message": "Please enable the photo library access permission to save the photo." }, "delete_post": { @@ -50,7 +50,7 @@ }, "clean_cache": { "title": "Hreinsa skyndiminni", - "message": "Successfully cleaned %s cache." + "message": "Tókst að hreinsa %s skyndiminni." } }, "controls": { @@ -97,36 +97,36 @@ "home": "Heim", "search": "Leita", "notification": "Tilkynning", - "profile": "Profile" + "profile": "Notandasnið" }, "keyboard": { "common": { - "switch_to_tab": "Switch to %s", - "compose_new_post": "Compose New Post", + "switch_to_tab": "Skipta yfir í %s", + "compose_new_post": "Semja nýja færslu", "show_favorites": "Birta eftirlæti", "open_settings": "Opna stillingar" }, "timeline": { - "previous_status": "Previous Post", - "next_status": "Next Post", - "open_status": "Open Post", - "open_author_profile": "Open Author's Profile", - "open_reblogger_profile": "Open Reblogger's Profile", - "reply_status": "Reply to Post", - "toggle_reblog": "Toggle Reblog on Post", - "toggle_favorite": "Toggle Favorite on Post", - "toggle_content_warning": "Toggle Content Warning", - "preview_image": "Preview Image" + "previous_status": "Fyrri færsla", + "next_status": "Næsta færsla", + "open_status": "Opna færslu", + "open_author_profile": "Opna notandasnið höfundar", + "open_reblogger_profile": "Opna notandasnið þess sem endurbirtir", + "reply_status": "Svara færslu", + "toggle_reblog": "Víxla endurbirtingu færslu af/á", + "toggle_favorite": "Víxla eftirlæti færslu af/á", + "toggle_content_warning": "Víxla af/á viðvörun vegna efnis", + "preview_image": "Forskoða mynd" }, "segmented_control": { - "previous_section": "Previous Section", - "next_section": "Next Section" + "previous_section": "Fyrri hluti", + "next_section": "Næsti hluti" } }, "status": { - "user_reblogged": "%s reblogged", - "user_replied_to": "Replied to %s", - "show_post": "Show Post", + "user_reblogged": "%s endurbirti", + "user_replied_to": "Svaraði %s", + "show_post": "Sýna færslu", "show_user_profile": "Birta notandasnið", "content_warning": "Viðvörun vegna efnis", "sensitive_content": "Viðkvæmt efni", @@ -152,8 +152,8 @@ "hide": "Fela", "show_image": "Sýna mynd", "show_gif": "Birta GIF", - "show_video_player": "Show video player", - "tap_then_hold_to_show_menu": "Tap then hold to show menu" + "show_video_player": "Sýna myndspilara", + "tap_then_hold_to_show_menu": "Ýttu og haltu til að sýna valmynd" }, "tag": { "url": "URL-slóð", @@ -164,10 +164,10 @@ "emoji": "Tjáningartákn" }, "visibility": { - "unlisted": "Everyone can see this post but not display in the public timeline.", - "private": "Only their followers can see this post.", - "private_from_me": "Only my followers can see this post.", - "direct": "Only mentioned user can see this post." + "unlisted": "Allir geta skoðað þessa færslu, en er ekki birt á opinberum tímalínum.", + "private": "Einungis fylgjendur þeirra geta séð þessa færslu.", + "private_from_me": "Einungis fylgjendur mínir geta séð þessa færslu.", + "direct": "Einungis notendur sem minnst er á geta séð þessa færslu." } }, "friendship": { @@ -186,8 +186,8 @@ "unmute": "Afþagga", "unmute_user": "Afþagga %s", "muted": "Þaggað", - "edit_info": "Edit Info", - "show_reblogs": "Show Reblogs", + "edit_info": "Breyta upplýsingum", + "show_reblogs": "Sýna endurbirtingar", "hide_reblogs": "Fela endurbirtingar" }, "timeline": { @@ -196,18 +196,18 @@ "now": "Núna" }, "loader": { - "load_missing_posts": "Load missing posts", - "loading_missing_posts": "Loading missing posts...", - "show_more_replies": "Show more replies" + "load_missing_posts": "Hlaða inn færslum sem vantar", + "loading_missing_posts": "Hleð inn færslum sem vantar...", + "show_more_replies": "Birta fleiri svör" }, "header": { - "no_status_found": "No Post Found", + "no_status_found": "Engar færslur fundust", "blocking_warning": "You can’t view this user's profile\nuntil you unblock them.\nYour profile looks like this to them.", "user_blocking_warning": "You can’t view %s’s profile\nuntil you unblock them.\nYour profile looks like this to them.", "blocked_warning": "You can’t view this user’s profile\nuntil they unblock you.", "user_blocked_warning": "You can’t view %s’s profile\nuntil they unblock you.", - "suspended_warning": "This user has been suspended.", - "user_suspended_warning": "%s’s account has been suspended." + "suspended_warning": "Þessi notandi hefur verið settur í bið.", + "user_suspended_warning": "Notandaaðgangurinn %s hefur verið settur í bið." } } } @@ -216,24 +216,24 @@ "welcome": { "slogan": "Samfélagsmiðlar\naftur í þínar hendur.", "get_started": "Komast í gang", - "log_in": "Log In" + "log_in": "Skrá inn" }, "login": { "title": "Velkomin aftur", - "subtitle": "Log you in on the server you created your account on.", + "subtitle": "Skráðu þig inn á netþjóninum þar sem þú útbjóst aðganginn þinn.", "server_search_field": { - "placeholder": "Enter URL or search for your server" + "placeholder": "Settu inn slóð eða leitaðu að þjóninum þínum" } }, "server_picker": { - "title": "Mastodon is made of users in different servers.", + "title": "Mastodon isamanstendur af notendum á mismunandi netþjónum.", "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", "button": { "category": { "all": "Allt", "all_accessiblity_description": "Flokkur: Allt", "academia": "akademískt", - "activism": "activism", + "activism": "aðgerðasinnar", "food": "matur", "furry": "loðið", "games": "leikir", @@ -254,24 +254,24 @@ "category": "FLOKKUR" }, "input": { - "search_servers_or_enter_url": "Search communities or enter URL" + "search_servers_or_enter_url": "Leitaðu að samfélögum eða settu inn slóð" }, "empty_state": { - "finding_servers": "Finding available servers...", - "bad_network": "Something went wrong while loading the data. Check your internet connection.", + "finding_servers": "Finn tiltæka netþjóna...", + "bad_network": "Eitthvað fór úrskeiðis við að hlaða inn gögnunum. Athugaðu nettenginguna þína.", "no_results": "Engar niðurstöður" } }, "register": { - "title": "Let’s get you set up on %s", - "lets_get_you_set_up_on_domain": "Let’s get you set up on %s", + "title": "Við skulum koma þér í gang á %s", + "lets_get_you_set_up_on_domain": "Við skulum koma þér í gang á %s", "input": { "avatar": { "delete": "Eyða" }, "username": { "placeholder": "notandanafn", - "duplicate_prompt": "This username is taken." + "duplicate_prompt": "Þetta notandanafn er þegar í notkun." }, "display_name": { "placeholder": "birtingarnafn" @@ -303,27 +303,27 @@ "reason": "Ástæða" }, "reason": { - "blocked": "%s contains a disallowed email provider", - "unreachable": "%s does not seem to exist", - "taken": "%s is already in use", - "reserved": "%s is a reserved keyword", - "accepted": "%s must be accepted", - "blank": "%s is required", - "invalid": "%s is invalid", - "too_long": "%s is too long", - "too_short": "%s is too short", - "inclusion": "%s is not a supported value" + "blocked": "%s notar óleyfilega tölvupóstþjónustu", + "unreachable": "%s virðist ekki vera til", + "taken": "%s er þegar í notkun", + "reserved": "%s er frátekið stikkorð", + "accepted": "%s verður að samþykkja", + "blank": "%s ier nauðsynlegt", + "invalid": "%s er ógilt", + "too_long": "%s er of langt", + "too_short": "%s er of stutt", + "inclusion": "%s er ekki stutt gildi" }, "special": { - "username_invalid": "Username must only contain alphanumeric characters and underscores", - "username_too_long": "Username is too long (can’t be longer than 30 characters)", - "email_invalid": "This is not a valid email address", - "password_too_short": "Password is too short (must be at least 8 characters)" + "username_invalid": "Notendanöfn geta einungis innihaldið bókstafi og undirstrikun", + "username_too_long": "Notandanafnið er of langt (má ekki vera lengra en 30 stafir)", + "email_invalid": "Þetta lítur ekki út eins og löglegt tölvupóstfang", + "password_too_short": "Lykilorð er of stutt (verður að hafa minnst 8 stafi)" } } }, "server_rules": { - "title": "Some ground rules.", + "title": "Nokkrar grunnreglur.", "subtitle": "These are set and enforced by the %s moderators.", "prompt": "By continuing, you’re subject to the terms of service and privacy policy for %s.", "terms_of_service": "þjónustuskilmálar", @@ -515,7 +515,7 @@ "title": "Favorited By" }, "reblogged_by": { - "title": "Reblogged By" + "title": "Endurbirt af" }, "search": { "title": "Leita", From ffd1734a95d7a9e8cb3c2e158ba6274e7e194272 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 14:52:44 +0100 Subject: [PATCH 523/598] New translations ios-infoPlist.json (Icelandic) --- .../StringsConvertor/input/is.lproj/ios-infoPlist.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Localization/StringsConvertor/input/is.lproj/ios-infoPlist.json b/Localization/StringsConvertor/input/is.lproj/ios-infoPlist.json index 4d46176af..24af18431 100644 --- a/Localization/StringsConvertor/input/is.lproj/ios-infoPlist.json +++ b/Localization/StringsConvertor/input/is.lproj/ios-infoPlist.json @@ -1,6 +1,6 @@ { - "NSCameraUsageDescription": "Used to take photo for post status", - "NSPhotoLibraryAddUsageDescription": "Used to save photo into the Photo Library", + "NSCameraUsageDescription": "Notað til að taka mynd fyrir stöðufærslu", + "NSPhotoLibraryAddUsageDescription": "Notað til að vista mynd inn í ljósmyndasafnið", "NewPostShortcutItemTitle": "Ný færsla", "SearchShortcutItemTitle": "Leita" } From ccaffe031e8a84b34f42da6776c8178f43c96915 Mon Sep 17 00:00:00 2001 From: Marcus Kida Date: Wed, 16 Nov 2022 15:01:49 +0100 Subject: [PATCH 524/598] fix: Local user's domain is shown for remote users when sharing a post --- Mastodon/Protocol/Provider/DataSourceFacade+Status.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mastodon/Protocol/Provider/DataSourceFacade+Status.swift b/Mastodon/Protocol/Provider/DataSourceFacade+Status.swift index 332ed75e4..3d6c49ddd 100644 --- a/Mastodon/Protocol/Provider/DataSourceFacade+Status.swift +++ b/Mastodon/Protocol/Provider/DataSourceFacade+Status.swift @@ -84,7 +84,7 @@ extension DataSourceFacade { self.url = url self.metadata = LPLinkMetadata() metadata.url = url - metadata.title = "\(status.author.displayName) (@\(status.author.username)@\(status.author.domain))" + metadata.title = "\(status.author.displayName) (@\(status.author.acctWithDomain))" metadata.iconProvider = NSItemProvider(object: IconProvider(url: status.author.avatarImageURLWithFallback(domain: status.author.domain))) } From 8b7b6c4067acd23d21b894c76572a9632de8072c Mon Sep 17 00:00:00 2001 From: CMK Date: Wed, 16 Nov 2022 22:31:21 +0800 Subject: [PATCH 525/598] fix: configure header code not dispatch on UI thread issue --- .../MastodonUI/View/Content/StatusView+Configuration.swift | 1 + .../Sources/MastodonUI/View/Content/StatusView+ViewModel.swift | 1 + 2 files changed, 2 insertions(+) diff --git a/MastodonSDK/Sources/MastodonUI/View/Content/StatusView+Configuration.swift b/MastodonSDK/Sources/MastodonUI/View/Content/StatusView+Configuration.swift index 353dfc097..47e4f18ff 100644 --- a/MastodonSDK/Sources/MastodonUI/View/Content/StatusView+Configuration.swift +++ b/MastodonSDK/Sources/MastodonUI/View/Content/StatusView+Configuration.swift @@ -130,6 +130,7 @@ extension StatusView { authorization: authenticationBox.userAuthorization ).singleOutput() } + .receive(on: DispatchQueue.main) .sink { completion in // do nothing } receiveValue: { [weak self] response in diff --git a/MastodonSDK/Sources/MastodonUI/View/Content/StatusView+ViewModel.swift b/MastodonSDK/Sources/MastodonUI/View/Content/StatusView+ViewModel.swift index 416226cbb..1c09cd3f3 100644 --- a/MastodonSDK/Sources/MastodonUI/View/Content/StatusView+ViewModel.swift +++ b/MastodonSDK/Sources/MastodonUI/View/Content/StatusView+ViewModel.swift @@ -203,6 +203,7 @@ extension StatusView.ViewModel { statusView.headerInfoLabel.configure(content: info.header) statusView.setHeaderDisplay() case .reply(let info): + assert(Thread.isMainThread) statusView.headerIconImageView.image = UIImage(systemName: "arrowshape.turn.up.left.fill") statusView.headerInfoLabel.configure(content: info.header) statusView.setHeaderDisplay() From 101eaeecc1648ee57301a72802f039097df96195 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 16:08:11 +0100 Subject: [PATCH 526/598] New translations app.json (Kurmanji (Kurdish)) --- .../StringsConvertor/input/kmr.lproj/app.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Localization/StringsConvertor/input/kmr.lproj/app.json b/Localization/StringsConvertor/input/kmr.lproj/app.json index 4a2bc3283..eb553885c 100644 --- a/Localization/StringsConvertor/input/kmr.lproj/app.json +++ b/Localization/StringsConvertor/input/kmr.lproj/app.json @@ -74,8 +74,8 @@ "take_photo": "Wêne bikişîne", "save_photo": "Wêneyê tomar bike", "copy_photo": "Wêneyê jê bigire", - "sign_in": "Log in", - "sign_up": "Create account", + "sign_in": "Têkeve", + "sign_up": "Ajimêr biafirîne", "see_more": "Bêtir bibîne", "preview": "Pêşdîtin", "share": "Parve bike", @@ -219,15 +219,15 @@ "log_in": "Têkeve" }, "login": { - "title": "Welcome back", - "subtitle": "Log you in on the server you created your account on.", + "title": "Dîsa bi xêr hatî", + "subtitle": "Têketinê bike ser rajekarê ku te ajimêrê xwe tê de çê kiriye.", "server_search_field": { - "placeholder": "Enter URL or search for your server" + "placeholder": "Girêdanê têxe an jî li rajekarê xwe bigere" } }, "server_picker": { "title": "Mastodon ji bikarhênerên di civakên cuda de pêk tê.", - "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", + "subtitle": "Li gorî herêm, berjewendî, an jî armanceke giştî rajekarekê hilbijêre. Tu hîn jî dikarî li ser Mastodon bi her kesî re biaxivî, her rajekarê te çi be.", "button": { "category": { "all": "Hemû", @@ -254,7 +254,7 @@ "category": "BEŞ" }, "input": { - "search_servers_or_enter_url": "Search communities or enter URL" + "search_servers_or_enter_url": "Li civakan bigere an jî girêdanê têxe" }, "empty_state": { "finding_servers": "Peydakirina rajekarên berdest...", From 995761aac2d52b7cd71f6871297f1db9606ec1d9 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 17:26:35 +0100 Subject: [PATCH 527/598] New translations app.json (French) --- .../StringsConvertor/input/fr.lproj/app.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Localization/StringsConvertor/input/fr.lproj/app.json b/Localization/StringsConvertor/input/fr.lproj/app.json index effeafe12..fc8fd0e7a 100644 --- a/Localization/StringsConvertor/input/fr.lproj/app.json +++ b/Localization/StringsConvertor/input/fr.lproj/app.json @@ -74,8 +74,8 @@ "take_photo": "Prendre une photo", "save_photo": "Enregistrer la photo", "copy_photo": "Copier la photo", - "sign_in": "Log in", - "sign_up": "Create account", + "sign_in": "Se connecter", + "sign_up": "Créer un compte", "see_more": "Voir plus", "preview": "Aperçu", "share": "Partager", @@ -219,15 +219,15 @@ "log_in": "Se connecter" }, "login": { - "title": "Welcome back", - "subtitle": "Log you in on the server you created your account on.", + "title": "Content de vous revoir", + "subtitle": "Connectez-vous sur le serveur sur lequel vous avez créé votre compte.", "server_search_field": { - "placeholder": "Enter URL or search for your server" + "placeholder": "Entrez l'URL ou recherchez votre serveur" } }, "server_picker": { "title": "Choisissez un serveur,\nn'importe quel serveur.", - "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", + "subtitle": "Choisissez un serveur basé sur votre région, vos intérêts ou un généraliste. Vous pouvez toujours discuter avec n'importe qui sur Mastodon, indépendamment de vos serveurs.", "button": { "category": { "all": "Tout", @@ -254,7 +254,7 @@ "category": "CATÉGORIE" }, "input": { - "search_servers_or_enter_url": "Search communities or enter URL" + "search_servers_or_enter_url": "Rechercher parmi les communautés ou renseigner une URL" }, "empty_state": { "finding_servers": "Recherche des serveurs disponibles...", From 26e9ed808f381e50553d56d24dd77bf364e6bcfe Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 17:26:36 +0100 Subject: [PATCH 528/598] New translations app.json (Icelandic) --- Localization/StringsConvertor/input/is.lproj/app.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Localization/StringsConvertor/input/is.lproj/app.json b/Localization/StringsConvertor/input/is.lproj/app.json index 5635ae4f7..089332935 100644 --- a/Localization/StringsConvertor/input/is.lproj/app.json +++ b/Localization/StringsConvertor/input/is.lproj/app.json @@ -324,8 +324,8 @@ }, "server_rules": { "title": "Nokkrar grunnreglur.", - "subtitle": "These are set and enforced by the %s moderators.", - "prompt": "By continuing, you’re subject to the terms of service and privacy policy for %s.", + "subtitle": "Þær eru settar og séð um að þeim sé fylgt af umsjónarmönnum %s.", + "prompt": "Með því að halda áfram samþykkir þú þjónustuskilmála og persónuverndarstefnu %s.", "terms_of_service": "þjónustuskilmálar", "privacy_policy": "persónuverndarstefna", "button": { @@ -333,7 +333,7 @@ } }, "confirm_email": { - "title": "One last thing.", + "title": "Eitt að lokum.", "subtitle": "Tap the link we emailed to you to verify your account.", "tap_the_link_we_emailed_to_you_to_verify_your_account": "Tap the link we emailed to you to verify your account", "button": { From 2d62cf1ffda3531a2436077b7ec9ca08373a8a71 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 18:23:58 +0100 Subject: [PATCH 529/598] New translations app.json (Portuguese, Brazilian) --- .../StringsConvertor/input/pt-BR.lproj/app.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Localization/StringsConvertor/input/pt-BR.lproj/app.json b/Localization/StringsConvertor/input/pt-BR.lproj/app.json index 98bb960cc..60d858235 100644 --- a/Localization/StringsConvertor/input/pt-BR.lproj/app.json +++ b/Localization/StringsConvertor/input/pt-BR.lproj/app.json @@ -74,8 +74,8 @@ "take_photo": "Tirar foto", "save_photo": "Salvar foto", "copy_photo": "Copiar foto", - "sign_in": "Log in", - "sign_up": "Create account", + "sign_in": "Entrar", + "sign_up": "Criar conta", "see_more": "Ver mais", "preview": "Pré-visualização", "share": "Compartilhar", @@ -219,15 +219,15 @@ "log_in": "Entrar" }, "login": { - "title": "Welcome back", - "subtitle": "Log you in on the server you created your account on.", + "title": "Bem-vindo de volta", + "subtitle": "Logado na instância em que você criou a sua conta.", "server_search_field": { - "placeholder": "Enter URL or search for your server" + "placeholder": "Insira a URL ou procure pela sua instância" } }, "server_picker": { "title": "Mastodon é feito de usuários em instâncias diferentes.", - "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", + "subtitle": "Escolha uma instância baseada na sua região, interesses, ou uma de uso geral. Você ainda poderá conversar com qualquer um no Mastodon, independente da instância.", "button": { "category": { "all": "Todos", @@ -254,7 +254,7 @@ "category": "Categoria" }, "input": { - "search_servers_or_enter_url": "Search communities or enter URL" + "search_servers_or_enter_url": "Procurar comunidades ou inserir URL" }, "empty_state": { "finding_servers": "Procurando instâncias disponíveis...", From 180dc4cb8080a7c06fd496ce0f35652572e4b39c Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 18:23:59 +0100 Subject: [PATCH 530/598] New translations app.json (Icelandic) --- .../StringsConvertor/input/is.lproj/app.json | 184 +++++++++--------- 1 file changed, 92 insertions(+), 92 deletions(-) diff --git a/Localization/StringsConvertor/input/is.lproj/app.json b/Localization/StringsConvertor/input/is.lproj/app.json index 089332935..58d4e3307 100644 --- a/Localization/StringsConvertor/input/is.lproj/app.json +++ b/Localization/StringsConvertor/input/is.lproj/app.json @@ -334,20 +334,20 @@ }, "confirm_email": { "title": "Eitt að lokum.", - "subtitle": "Tap the link we emailed to you to verify your account.", - "tap_the_link_we_emailed_to_you_to_verify_your_account": "Tap the link we emailed to you to verify your account", + "subtitle": "Ýttu á tengilinn sem við sendum þér til að staðfesta tölvupóstfangið þitt.", + "tap_the_link_we_emailed_to_you_to_verify_your_account": "Ýttu á tengilinn sem við sendum þér til að staðfesta tölvupóstfangið þitt", "button": { - "open_email_app": "Open Email App", + "open_email_app": "Opna tölvupóstforrit", "resend": "Endursenda" }, "dont_receive_email": { "title": "Athugaðu tölvupóstinn þinn", - "description": "Check if your email address is correct as well as your junk folder if you haven’t.", + "description": "Athugaðu hvort tölvupóstfangið þitt sé rétt auk þess að skoða í ruslpóstmöppuna þína ef þú hefur ekki gert það.", "resend_email": "Endursenda tölvupóst" }, "open_email_app": { "title": "Athugaðu pósthólfið þitt.", - "description": "We just sent you an email. Check your junk folder if you haven’t.", + "description": "Við vorum að senda þér tölvupóst. Skoðaðu í ruslpóstmöppuna þína ef þú hefur ekki gert það.", "mail": "Tölvupóstur", "open_email_client": "Opna tölvupóstforrit" } @@ -360,14 +360,14 @@ "published": "Birt!", "Publishing": "Birti færslu...", "accessibility": { - "logo_label": "Logo Button", + "logo_label": "Hnappur með táknmerki", "logo_hint": "Tap to scroll to top and tap again to previous location" } } }, "suggestion_account": { - "title": "Find People to Follow", - "follow_explain": "When you follow someone, you’ll see their posts in your home feed." + "title": "Finndu fólk til að fylgjast með", + "follow_explain": "Þegar þú fylgist með einhverjum, muntu sjá færslur frá viðkomandi á streyminu þínu." }, "compose": { "title": { @@ -379,19 +379,19 @@ "photo_library": "Myndasafn", "browse": "Flakka" }, - "content_input_placeholder": "Type or paste what’s on your mind", + "content_input_placeholder": "Skrifaðu eða límdu það sem þér liggur á hjarta", "compose_action": "Birta", - "replying_to_user": "replying to %s", + "replying_to_user": "svarar til @%s", "attachment": { "photo": "ljósmynd", "video": "myndskeið", "attachment_broken": "This %s is broken and can’t be\nuploaded to Mastodon.", - "description_photo": "Describe the photo for the visually-impaired...", - "description_video": "Describe the video for the visually-impaired...", + "description_photo": "Lýstu myndinni fyrir sjónskerta...", + "description_video": "Lýstu myndskeiðinu fyrir sjónskerta...", "load_failed": "Hleðsla mistókst", "upload_failed": "Innsending mistókst", - "can_not_recognize_this_media_attachment": "Can not recognize this media attachment", - "attachment_too_large": "Attachment too large", + "can_not_recognize_this_media_attachment": "Þekki ekki þetta myndviðhengi", + "attachment_too_large": "Viðhengi of stórt", "compressing_state": "Þjappa...", "server_processing_state": "Netþjónn er að vinna..." }, @@ -403,40 +403,40 @@ "one_day": "1 dagur", "three_days": "3 dagar", "seven_days": "7 dagar", - "option_number": "Option %ld", - "the_poll_is_invalid": "The poll is invalid", - "the_poll_has_empty_option": "The poll has empty option" + "option_number": "Valkostur %ld", + "the_poll_is_invalid": "Könnunin er ógild", + "the_poll_has_empty_option": "Könnunin er með auðan valkost" }, "content_warning": { - "placeholder": "Write an accurate warning here..." + "placeholder": "Skrifaðu nákvæma aðvörun hér..." }, "visibility": { "public": "Opinbert", "unlisted": "Óskráð", - "private": "Followers only", - "direct": "Only people I mention" + "private": "Einungis fylgjendur", + "direct": "Einungis fólk sem ég minnist á" }, "auto_complete": { - "space_to_add": "Space to add" + "space_to_add": "Bil sem á að bæta við" }, "accessibility": { "append_attachment": "Bæta við viðhengi", "append_poll": "Bæta við könnun", "remove_poll": "Fjarlægja könnun", "custom_emoji_picker": "Sérsniðið emoji-tánmyndaval", - "enable_content_warning": "Enable Content Warning", - "disable_content_warning": "Disable Content Warning", - "post_visibility_menu": "Post Visibility Menu", - "post_options": "Post Options", - "posting_as": "Posting as %s" + "enable_content_warning": "Virkja viðvörun vegna efnis", + "disable_content_warning": "Gera viðvörun vegna efnis óvirka", + "post_visibility_menu": "Sýnileikavalmynd færslu", + "post_options": "Valkostir færslu", + "posting_as": "Birti sem %s" }, "keyboard": { - "discard_post": "Discard Post", - "publish_post": "Publish Post", - "toggle_poll": "Toggle Poll", - "toggle_content_warning": "Toggle Content Warning", - "append_attachment_entry": "Add Attachment - %s", - "select_visibility_entry": "Select Visibility - %s" + "discard_post": "Henda færslu", + "publish_post": "Birta færslu", + "toggle_poll": "Víxla könnun af/á", + "toggle_content_warning": "Víxla af/á viðvörun vegna efnis", + "append_attachment_entry": "Bæta við viðhengi - %s", + "select_visibility_entry": "Veldu sýnileika - %s" } }, "profile": { @@ -455,8 +455,8 @@ "content": "Efni" }, "verified": { - "short": "Verified on %s", - "long": "Ownership of this link was checked on %s" + "short": "Sannreynt þann %s", + "long": "Eignarhald á þessum tengli var athugað þann %s" } }, "segmented_control": { @@ -468,51 +468,51 @@ }, "relationship_action_alert": { "confirm_mute_user": { - "title": "Mute Account", - "message": "Confirm to mute %s" + "title": "Þagga niður í aðgangi", + "message": "Staðfestu til að þagga niður í %s" }, "confirm_unmute_user": { - "title": "Unmute Account", - "message": "Confirm to unmute %s" + "title": "Hætta að þagga niður í aðgangi", + "message": "Staðfestu til hætta að að þagga niður í %s" }, "confirm_block_user": { - "title": "Block Account", - "message": "Confirm to block %s" + "title": "Útiloka notandaaðgang", + "message": "Staðfestu til að útiloka %s" }, "confirm_unblock_user": { - "title": "Unblock Account", - "message": "Confirm to unblock %s" + "title": "Aflétta útilokun aðgangs", + "message": "Staðfestu til að hætta að útiloka %s" }, "confirm_show_reblogs": { - "title": "Show Reblogs", - "message": "Confirm to show reblogs" + "title": "Sýna endurbirtingar", + "message": "Staðfestu til að sýna endurbirtingar" }, "confirm_hide_reblogs": { - "title": "Hide Reblogs", - "message": "Confirm to hide reblogs" + "title": "Fela endurbirtingar", + "message": "Staðfestu til að fela endurbirtingar" } }, "accessibility": { - "show_avatar_image": "Show avatar image", - "edit_avatar_image": "Edit avatar image", - "show_banner_image": "Show banner image", - "double_tap_to_open_the_list": "Double tap to open the list" + "show_avatar_image": "Sýna auðkennismynd", + "edit_avatar_image": "Breyta auðkennismynd", + "show_banner_image": "Sýna myndborða", + "double_tap_to_open_the_list": "Tvípikkaðu til að opna listann" } }, "follower": { "title": "fylgjandi", - "footer": "Followers from other servers are not displayed." + "footer": "Fylgjendur af öðrum netþjónum birtast ekki." }, "following": { "title": "fylgist með", - "footer": "Follows from other servers are not displayed." + "footer": "Fylgjendur af öðrum netþjónum birtast ekki." }, "familiarFollowers": { - "title": "Followers you familiar", - "followed_by_names": "Followed by %s" + "title": "Fylgjendur sem þú kannast við", + "followed_by_names": "Fylgt af %s" }, "favorited_by": { - "title": "Favorited By" + "title": "Sett í eftirlæti af" }, "reblogged_by": { "title": "Endurbirt af" @@ -520,19 +520,19 @@ "search": { "title": "Leita", "search_bar": { - "placeholder": "Search hashtags and users", + "placeholder": "Leita að myllumerkjum og notendum", "cancel": "Hætta við" }, "recommend": { "button_text": "Sjá allt", "hash_tag": { - "title": "Trending on Mastodon", + "title": "Vinsælt á Mastodon", "description": "Hashtags that are getting quite a bit of attention", - "people_talking": "%s people are talking" + "people_talking": "%s manns eru að spjalla" }, "accounts": { - "title": "Accounts you might like", - "description": "You may like to follow these accounts", + "title": "Notandaaðgangar sem þú gætir haft áhuga á", + "description": "Þú gætir viljað fylgjast með þessum aðgöngum", "follow": "Fylgjast með" } }, @@ -556,29 +556,29 @@ "hashtags": "Myllumerki", "news": "Fréttir", "community": "Samfélag", - "for_you": "For You" + "for_you": "Fyrir þig" }, "intro": "These are the posts gaining traction in your corner of Mastodon." }, "favorite": { - "title": "Your Favorites" + "title": "Eftirlætin þín" }, "notification": { "title": { "Everything": "Allt", - "Mentions": "Mentions" + "Mentions": "Minnst á" }, "notification_description": { - "followed_you": "followed you", - "favorited_your_post": "favorited your post", - "reblogged_your_post": "reblogged your post", - "mentioned_you": "mentioned you", - "request_to_follow_you": "request to follow you", - "poll_has_ended": "poll has ended" + "followed_you": "fylgdi þér", + "favorited_your_post": "setti færslu frá þér í eftirlæti", + "reblogged_your_post": "endurbirti færsluna þína", + "mentioned_you": "minntist á þig", + "request_to_follow_you": "bað um að fylgjast með þér", + "poll_has_ended": "könnun er lokið" }, "keyobard": { - "show_everything": "Show Everything", - "show_mentions": "Show Mentions" + "show_everything": "Sýna allt", + "show_mentions": "Sýna þegar minnst er á" }, "follow_request": { "accept": "Samþykkja", @@ -609,40 +609,40 @@ }, "notifications": { "title": "Tilkynningar", - "favorites": "Favorites my post", - "follows": "Follows me", - "boosts": "Reblogs my post", - "mentions": "Mentions me", + "favorites": "Setur færsluna mína í eftirlæti", + "follows": "Fylgist með mér", + "boosts": "Endurbirtir færsluna mína", + "mentions": "Minnist á mig", "trigger": { "anyone": "hver sem er", "follower": "fylgjandi", "follow": "hverjum sá sem ég fylgi", "noone": "enginn", - "title": "Notify me when" + "title": "Tilkynna mér þegar" } }, "preference": { "title": "Kjörstillingar", - "true_black_dark_mode": "True black dark mode", - "disable_avatar_animation": "Disable animated avatars", - "disable_emoji_animation": "Disable animated emojis", - "using_default_browser": "Use default browser to open links", + "true_black_dark_mode": "Sannur svartur dökkur hamur", + "disable_avatar_animation": "Gera auðkennismyndir með hreyfingu óvirkar", + "disable_emoji_animation": "Gera tjáningartákn með hreyfingu óvirkar", + "using_default_browser": "Nota sjálfgefinn vafra til að opna tengla", "open_links_in_mastodon": "Opna tengla í Mastodon" }, "boring_zone": { - "title": "The Boring Zone", + "title": "Óhressa svæðið", "account_settings": "Stillingar aðgangs", "terms": "Þjónustuskilmálar", "privacy": "Meðferð persónuupplýsinga" }, "spicy_zone": { - "title": "The Spicy Zone", + "title": "Kryddaða svæðið", "clear": "Hreinsa skyndiminni margmiðlunarefnis", "signout": "Skrá út" } }, "footer": { - "mastodon_description": "Mastodon is open source software. You can report issues on GitHub at %s (%s)" + "mastodon_description": "Mastodon er frjáls hugbúnaður með opinn grunnkóða. Þú getur tilkynnt vandamál í gegnum GitHub á %s (%s)" }, "keyboard": { "close_settings_window": "Loka stillingaglugga" @@ -662,12 +662,12 @@ "reported": "TILKYNNT", "step_one": { "step_1_of_4": "Skref 1 af 4", - "whats_wrong_with_this_post": "What's wrong with this post?", - "whats_wrong_with_this_account": "What's wrong with this account?", - "whats_wrong_with_this_username": "What's wrong with %s?", - "select_the_best_match": "Select the best match", - "i_dont_like_it": "I don’t like it", - "it_is_not_something_you_want_to_see": "It is not something you want to see", + "whats_wrong_with_this_post": "Hvað er athugavert við þessa færslu?", + "whats_wrong_with_this_account": "Hvað er athugavert við þennan notandaaðgang?", + "whats_wrong_with_this_username": "Hvað er athugavert við %s?", + "select_the_best_match": "Velja bestu samsvörun", + "i_dont_like_it": "Mér líkar það ekki", + "it_is_not_something_you_want_to_see": "Þetta er ekki eitthvað sem þið viljið sjá", "its_spam": "It’s spam", "malicious_links_fake_engagement_or_repetetive_replies": "Malicious links, fake engagement, or repetetive replies", "it_violates_server_rules": "It violates server rules", @@ -694,8 +694,8 @@ "dont_want_to_see_this": "Don’t want to see this?", "when_you_see_something_you_dont_like_on_mastodon_you_can_remove_the_person_from_your_experience.": "When you see something you don’t like on Mastodon, you can remove the person from your experience.", "unfollow": "Hætta að fylgjast með", - "unfollowed": "Unfollowed", - "unfollow_user": "Unfollow %s", + "unfollowed": "Hætti að fylgjast með", + "unfollow_user": "Hætta að fylgjast með %s", "mute_user": "Þagga niður í %s", "you_wont_see_their_posts_or_reblogs_in_your_home_feed_they_wont_know_they_ve_been_muted": "You won’t see their posts or reblogs in your home feed. They won’t know they’ve been muted.", "block_user": "Útiloka %s", @@ -716,7 +716,7 @@ "add_account": "Bæta við notandaaðgangi" }, "wizard": { - "new_in_mastodon": "New in Mastodon", + "new_in_mastodon": "Nýtt í Mastodon", "multiple_account_switch_intro_description": "Switch between multiple accounts by holding the profile button.", "accessibility_hint": "Double tap to dismiss this wizard" }, From df9598f49dc8b36d72ca4846b6d61bca022086f6 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 18:24:01 +0100 Subject: [PATCH 531/598] New translations Localizable.stringsdict (Icelandic) --- .../input/is.lproj/Localizable.stringsdict | 86 +++++++++---------- 1 file changed, 43 insertions(+), 43 deletions(-) diff --git a/Localization/StringsConvertor/input/is.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/is.lproj/Localizable.stringsdict index aae13ffb9..2a821608d 100644 --- a/Localization/StringsConvertor/input/is.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/is.lproj/Localizable.stringsdict @@ -13,9 +13,9 @@ NSStringFormatValueTypeKey ld one - 1 unread notification + 1 ólesin tilkynning other - %ld unread notification + %ld ólesnar tilkynningar a11y.plural.count.input_limit_exceeds @@ -31,7 +31,7 @@ one 1 stafur other - %ld characters + %ld stafir a11y.plural.count.input_limit_remains @@ -47,13 +47,13 @@ one 1 stafur other - %ld characters + %ld stafir a11y.plural.count.characters_left NSStringLocalizedFormatKey - %#@character_count@ left + %#@character_count@ eftir character_count NSStringFormatSpecTypeKey @@ -63,7 +63,7 @@ one 1 stafur other - %ld characters + %ld stafir plural.count.followed_by_and_mutual @@ -88,9 +88,9 @@ NSStringFormatValueTypeKey ld one - Followed by %1$@, and another mutual + Fylgt af %1$@ og öðrum sameiginlegum other - Followed by %1$@, and %ld mutuals + Fylgt af %1$@ og %ld sameiginlegum plural.count.metric_formatted.post @@ -106,7 +106,7 @@ one færsla other - posts + færslur plural.count.media @@ -122,7 +122,7 @@ one 1 gagnamiðill other - %ld media + %ld gagnamiðlar plural.count.post @@ -138,7 +138,7 @@ one 1 færsla other - %ld posts + %ld færslur plural.count.favorite @@ -154,7 +154,7 @@ one 1 eftirlæti other - %ld favorites + %ld eftirlæti plural.count.reblog @@ -170,7 +170,7 @@ one 1 endurbirting other - %ld reblogs + %ld endurbirtingar plural.count.reply @@ -186,7 +186,7 @@ one 1 svar other - %ld replies + %ld svör plural.count.vote @@ -202,7 +202,7 @@ one 1 atkvæði other - %ld votes + %ld atkvæði plural.count.voter @@ -218,7 +218,7 @@ one 1 kjósandi other - %ld voters + %ld kjósendur plural.people_talking @@ -232,9 +232,9 @@ NSStringFormatValueTypeKey ld one - 1 people talking + 1 aðili að spjalla other - %ld people talking + %ld aðilar að spjalla plural.count.following @@ -248,9 +248,9 @@ NSStringFormatValueTypeKey ld one - Eftirfarandi villur komu upp: + 1 fylgist með other - %ld following + %ld fylgjast með plural.count.follower @@ -264,9 +264,9 @@ NSStringFormatValueTypeKey ld one - 1 follower + 1 fylgjandi other - %ld followers + %ld fylgjendur date.year.left @@ -280,9 +280,9 @@ NSStringFormatValueTypeKey ld one - 1 year left + 1 ár eftir other - %ld years left + %ld ár eftir date.month.left @@ -296,9 +296,9 @@ NSStringFormatValueTypeKey ld one - 1 months left + 1 mánuður eftir other - %ld months left + %ld mánuðir eftir date.day.left @@ -312,9 +312,9 @@ NSStringFormatValueTypeKey ld one - 1 day left + 1 dagur eftir other - %ld days left + %ld dagar eftir date.hour.left @@ -328,9 +328,9 @@ NSStringFormatValueTypeKey ld one - 1 hour left + 1 klukkustund eftir other - %ld hours left + %ld klukkustundir eftir date.minute.left @@ -344,9 +344,9 @@ NSStringFormatValueTypeKey ld one - 1 minute left + 1 mínúta eftir other - %ld minutes left + %ld mínútur eftir date.second.left @@ -360,9 +360,9 @@ NSStringFormatValueTypeKey ld one - 1 second left + 1 sekúnda eftir other - %ld seconds left + %ld sekúndur eftir date.year.ago.abbr @@ -376,9 +376,9 @@ NSStringFormatValueTypeKey ld one - 1y ago + Fyrir 1 ári síðan other - %ldy ago + Fyrir %ld árum síðan date.month.ago.abbr @@ -392,9 +392,9 @@ NSStringFormatValueTypeKey ld one - 1M ago + Fyrir 1mín síðan other - %ldM ago + Fyrir %ldmín síðan date.day.ago.abbr @@ -408,9 +408,9 @@ NSStringFormatValueTypeKey ld one - 1d ago + Fyrir 1 degi síðan other - %ldd ago + Fyrir %ld dögum síðan date.hour.ago.abbr @@ -426,7 +426,7 @@ one 1klst síðan other - %ldh ago + %ldklst síðan date.minute.ago.abbr @@ -442,7 +442,7 @@ one 1m síðan other - %ldm ago + %ldm síðan date.second.ago.abbr @@ -458,7 +458,7 @@ one 1s síðan other - %lds ago + %lds síðan From 170e843d861c107e1d09973cbc41b8967c07e0ba Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 18:24:03 +0100 Subject: [PATCH 532/598] New translations Intents.strings (Icelandic) --- .../Intents/input/is.lproj/Intents.strings | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Localization/StringsConvertor/Intents/input/is.lproj/Intents.strings b/Localization/StringsConvertor/Intents/input/is.lproj/Intents.strings index dbe022814..af8070895 100644 --- a/Localization/StringsConvertor/Intents/input/is.lproj/Intents.strings +++ b/Localization/StringsConvertor/Intents/input/is.lproj/Intents.strings @@ -2,9 +2,9 @@ "751xkl" = "Efni texta"; -"CsR7G2" = "Post on Mastodon"; +"CsR7G2" = "Birta á Mastodon"; -"HZSGTr" = "What content to post?"; +"HZSGTr" = "Hvaða efni á að birta?"; "HdGikU" = "Birting færslu mistókst"; @@ -42,10 +42,10 @@ "k7dbKQ" = "Post was sent successfully."; -"oGiqmY-dYQ5NN" = "Just to confirm, you wanted ‘Public’?"; +"oGiqmY-dYQ5NN" = "Bara til að staðfesta, þú vildir 'Opinbert'?"; -"oGiqmY-ehFLjY" = "Just to confirm, you wanted ‘Followers Only’?"; +"oGiqmY-ehFLjY" = "Bara til að staðfesta, þú vildir ''Einungis fylgjendur'?"; "rM6dvp" = "URL-slóð"; -"ryJLwG" = "Post was sent successfully. "; +"ryJLwG" = "Það tókst að senda færsluna. "; From f2a8b29768c3102e8076f1969db1c8dae47bd4e4 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 19:34:01 +0100 Subject: [PATCH 533/598] New translations app.json (Icelandic) --- .../StringsConvertor/input/is.lproj/app.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Localization/StringsConvertor/input/is.lproj/app.json b/Localization/StringsConvertor/input/is.lproj/app.json index 58d4e3307..ea97304ac 100644 --- a/Localization/StringsConvertor/input/is.lproj/app.json +++ b/Localization/StringsConvertor/input/is.lproj/app.json @@ -17,7 +17,7 @@ }, "discard_post_content": { "title": "Henda drögum", - "message": "Confirm to discard composed post content." + "message": "Staðfestu til að henda efni úr saminni færslu." }, "publish_post_failure": { "title": "Mistókst að birta", @@ -202,10 +202,10 @@ }, "header": { "no_status_found": "Engar færslur fundust", - "blocking_warning": "You can’t view this user's profile\nuntil you unblock them.\nYour profile looks like this to them.", - "user_blocking_warning": "You can’t view %s’s profile\nuntil you unblock them.\nYour profile looks like this to them.", - "blocked_warning": "You can’t view this user’s profile\nuntil they unblock you.", - "user_blocked_warning": "You can’t view %s’s profile\nuntil they unblock you.", + "blocking_warning": "Þú getur ekki séð snið þessa notanda\nfyrr en þú hættir að útiloka hann.\nSniðið þitt lítur svona út hjá honum.", + "user_blocking_warning": "Þú getur ekki séð sniðið hjá %s\nfyrr en þú hættir að útiloka hann.\nSniðið þitt lítur svona út hjá honum.", + "blocked_warning": "Þú getur ekki séð sniðið hjá þessum notanda\nfyrr en hann hættir að útiloka þig.", + "user_blocked_warning": "Þú getur ekki séð sniðið hjá %s\nfyrr en hann hættir að útiloka þig.", "suspended_warning": "Þessi notandi hefur verið settur í bið.", "user_suspended_warning": "Notandaaðgangurinn %s hefur verið settur í bið." } @@ -226,7 +226,7 @@ } }, "server_picker": { - "title": "Mastodon isamanstendur af notendum á mismunandi netþjónum.", + "title": "Mastodon samanstendur af notendum á mismunandi netþjónum.", "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", "button": { "category": { From 638f70b06dc8dca5665a455fcb35c535140fbafc Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 19:34:03 +0100 Subject: [PATCH 534/598] New translations Localizable.stringsdict (Icelandic) --- .../StringsConvertor/input/is.lproj/Localizable.stringsdict | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Localization/StringsConvertor/input/is.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/is.lproj/Localizable.stringsdict index 2a821608d..03b29f09b 100644 --- a/Localization/StringsConvertor/input/is.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/is.lproj/Localizable.stringsdict @@ -21,7 +21,7 @@ a11y.plural.count.input_limit_exceeds NSStringLocalizedFormatKey - Input limit exceeds %#@character_count@ + Inntak fer fram úr takmörkunum %#@character_count@ character_count NSStringFormatSpecTypeKey @@ -37,7 +37,7 @@ a11y.plural.count.input_limit_remains NSStringLocalizedFormatKey - Input limit remains %#@character_count@ + Inntakstakmörk haldast %#@character_count@ character_count NSStringFormatSpecTypeKey From 8664a121dc88a16d075f8ac2281f4034092206b1 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 19:34:04 +0100 Subject: [PATCH 535/598] New translations Intents.strings (Icelandic) --- .../Intents/input/is.lproj/Intents.strings | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Localization/StringsConvertor/Intents/input/is.lproj/Intents.strings b/Localization/StringsConvertor/Intents/input/is.lproj/Intents.strings index af8070895..196c33e70 100644 --- a/Localization/StringsConvertor/Intents/input/is.lproj/Intents.strings +++ b/Localization/StringsConvertor/Intents/input/is.lproj/Intents.strings @@ -10,7 +10,7 @@ "KDNTJ4" = "Ástæða bilunar"; -"RHxKOw" = "Send Post with text content"; +"RHxKOw" = "Senda færslu með textaefni"; "RxSqsb" = "Færsla"; @@ -24,9 +24,9 @@ "Zo4jgJ" = "Sýnileiki færslu"; -"apSxMG-dYQ5NN" = "There are ${count} options matching ‘Public’."; +"apSxMG-dYQ5NN" = "Það eru ${count} valkostir sem samsvara ‘Opinbert’."; -"apSxMG-ehFLjY" = "There are ${count} options matching ‘Followers Only’."; +"apSxMG-ehFLjY" = "Það eru ${count} valkostir sem samsvara ‘Einungis fylgjendur’."; "ayoYEb-dYQ5NN" = "${content}, opinbert"; @@ -38,9 +38,9 @@ "ehFLjY" = "Einungis fylgjendur"; -"gfePDu" = "Posting failed. ${failureReason}"; +"gfePDu" = "Birting færslu mistókst. ${failureReason}"; -"k7dbKQ" = "Post was sent successfully."; +"k7dbKQ" = "Það tókst að senda færsluna."; "oGiqmY-dYQ5NN" = "Bara til að staðfesta, þú vildir 'Opinbert'?"; From 1a1004b524edbbbe64d52bc2c83a707b6408149e Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 19:34:05 +0100 Subject: [PATCH 536/598] New translations Intents.stringsdict (Icelandic) --- .../Intents/input/is.lproj/Intents.stringsdict | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Localization/StringsConvertor/Intents/input/is.lproj/Intents.stringsdict b/Localization/StringsConvertor/Intents/input/is.lproj/Intents.stringsdict index 9212186f0..0c4754adf 100644 --- a/Localization/StringsConvertor/Intents/input/is.lproj/Intents.stringsdict +++ b/Localization/StringsConvertor/Intents/input/is.lproj/Intents.stringsdict @@ -5,7 +5,7 @@ There are ${count} options matching ‘${content}’. - 2 NSStringLocalizedFormatKey - There are %#@count_option@ matching ‘${content}’. + Það eru %#@count_option@ sem samsvara ‘${content}’. count_option NSStringFormatSpecTypeKey @@ -21,7 +21,7 @@ There are ${count} options matching ‘${visibility}’. NSStringLocalizedFormatKey - There are %#@count_option@ matching ‘${visibility}’. + Það eru %#@count_option@ sem samsvara ‘${visibility}’. count_option NSStringFormatSpecTypeKey From b54c290a4f1c8c862958ea920f7bb55661aeb08e Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 20:35:45 +0100 Subject: [PATCH 537/598] New translations app.json (Icelandic) --- .../StringsConvertor/input/is.lproj/app.json | 46 +++++++++---------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/Localization/StringsConvertor/input/is.lproj/app.json b/Localization/StringsConvertor/input/is.lproj/app.json index ea97304ac..1cd72f356 100644 --- a/Localization/StringsConvertor/input/is.lproj/app.json +++ b/Localization/StringsConvertor/input/is.lproj/app.json @@ -42,7 +42,7 @@ }, "save_photo_failure": { "title": "Mistókst að vista mynd", - "message": "Please enable the photo library access permission to save the photo." + "message": "Virkjaðu heimild til aðgangs að ljósmyndasafninu til að vista myndina." }, "delete_post": { "title": "Eyða færslu", @@ -151,7 +151,7 @@ "menu": "Valmynd", "hide": "Fela", "show_image": "Sýna mynd", - "show_gif": "Birta GIF", + "show_gif": "Birta GIF-myndir", "show_video_player": "Sýna myndspilara", "tap_then_hold_to_show_menu": "Ýttu og haltu til að sýna valmynd" }, @@ -227,7 +227,7 @@ }, "server_picker": { "title": "Mastodon samanstendur af notendum á mismunandi netþjónum.", - "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", + "subtitle": "Veldu netþjón út frá svæðinu þínu, áhugamálum, nú eða einhvern almennan. Þú getur samt spjallað við hvern sem er á Mastodon, burtséð frá á hvaða netþjóni þú ert.", "button": { "category": { "all": "Allt", @@ -385,7 +385,7 @@ "attachment": { "photo": "ljósmynd", "video": "myndskeið", - "attachment_broken": "This %s is broken and can’t be\nuploaded to Mastodon.", + "attachment_broken": "Þetta %s er skemmt og því ekki\nhægt að senda inn á Mastodon.", "description_photo": "Lýstu myndinni fyrir sjónskerta...", "description_video": "Lýstu myndskeiðinu fyrir sjónskerta...", "load_failed": "Hleðsla mistókst", @@ -527,7 +527,7 @@ "button_text": "Sjá allt", "hash_tag": { "title": "Vinsælt á Mastodon", - "description": "Hashtags that are getting quite a bit of attention", + "description": "Myllumerki sem eru að fá þónokkra athygli", "people_talking": "%s manns eru að spjalla" }, "accounts": { @@ -653,12 +653,12 @@ "title": "Kæra %s", "step1": "Skref 1 af 2", "step2": "Skref 2 af 2", - "content1": "Are there any other posts you’d like to add to the report?", - "content2": "Is there anything the moderators should know about this report?", - "report_sent_title": "Thanks for reporting, we’ll look into this.", + "content1": "Eru einhverjar færslur sem þú myndir vilja bæta við kæruna?", + "content2": "Er eitthvað fleira sem umsjónarmenn ættu að vita varðandi þessa kæru?", + "report_sent_title": "Takk fyrir tilkynninguna, við munum skoða málið.", "send": "Senda kæru", "skip_to_send": "Senda án athugasemdar", - "text_placeholder": "Type or paste additional comments", + "text_placeholder": "Skrifaðu eða límdu aðrar athugasemdir", "reported": "TILKYNNT", "step_one": { "step_1_of_4": "Skref 1 af 4", @@ -668,30 +668,30 @@ "select_the_best_match": "Velja bestu samsvörun", "i_dont_like_it": "Mér líkar það ekki", "it_is_not_something_you_want_to_see": "Þetta er ekki eitthvað sem þið viljið sjá", - "its_spam": "It’s spam", - "malicious_links_fake_engagement_or_repetetive_replies": "Malicious links, fake engagement, or repetetive replies", - "it_violates_server_rules": "It violates server rules", - "you_are_aware_that_it_breaks_specific_rules": "You are aware that it breaks specific rules", - "its_something_else": "It’s something else", - "the_issue_does_not_fit_into_other_categories": "The issue does not fit into other categories" + "its_spam": "Þetta er ruslpóstur", + "malicious_links_fake_engagement_or_repetetive_replies": "Slæmir tenglar, fölsk samskipti eða endurtekin svör", + "it_violates_server_rules": "Það gengur þvert á reglur fyrir netþjóninn", + "you_are_aware_that_it_breaks_specific_rules": "Þið eruð meðvituð um að þetta brýtur sértækar reglur", + "its_something_else": "Það er eitthvað annað", + "the_issue_does_not_fit_into_other_categories": "Vandamálið fellur ekki í aðra flokka" }, "step_two": { "step_2_of_4": "Skref 2 af 4", - "which_rules_are_being_violated": "Which rules are being violated?", - "select_all_that_apply": "Select all that apply", - "i_just_don’t_like_it": "I just don’t like it" + "which_rules_are_being_violated": "Hvaða reglur eru brotnar?", + "select_all_that_apply": "Veldu allt sem á við", + "i_just_don’t_like_it": "Mér bara líkar það ekki" }, "step_three": { "step_3_of_4": "Skref 3 af 4", - "are_there_any_posts_that_back_up_this_report": "Are there any posts that back up this report?", - "select_all_that_apply": "Select all that apply" + "are_there_any_posts_that_back_up_this_report": "Eru einhverjar færslur sem styðja þessa kæru?", + "select_all_that_apply": "Veldu allt sem á við" }, "step_four": { "step_4_of_4": "Skref 4 af 4", - "is_there_anything_else_we_should_know": "Is there anything else we should know?" + "is_there_anything_else_we_should_know": "Er eitthvað fleira sem við ættum að vita?" }, "step_final": { - "dont_want_to_see_this": "Don’t want to see this?", + "dont_want_to_see_this": "Langar þig ekki að sjá þetta?", "when_you_see_something_you_dont_like_on_mastodon_you_can_remove_the_person_from_your_experience.": "When you see something you don’t like on Mastodon, you can remove the person from your experience.", "unfollow": "Hætta að fylgjast með", "unfollowed": "Hætti að fylgjast með", @@ -700,7 +700,7 @@ "you_wont_see_their_posts_or_reblogs_in_your_home_feed_they_wont_know_they_ve_been_muted": "You won’t see their posts or reblogs in your home feed. They won’t know they’ve been muted.", "block_user": "Útiloka %s", "they_will_no_longer_be_able_to_follow_or_see_your_posts_but_they_can_see_if_theyve_been_blocked": "They will no longer be able to follow or see your posts, but they can see if they’ve been blocked.", - "while_we_review_this_you_can_take_action_against_user": "While we review this, you can take action against %s" + "while_we_review_this_you_can_take_action_against_user": "Á meðan við yfirförum þetta, geturðu tekið til aðgerða gegn %s" } }, "preview": { From b906d3e6e418ae075bd60118fd2bfe55633849cc Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 20:35:48 +0100 Subject: [PATCH 538/598] New translations Intents.stringsdict (Icelandic) --- .../Intents/input/is.lproj/Intents.stringsdict | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Localization/StringsConvertor/Intents/input/is.lproj/Intents.stringsdict b/Localization/StringsConvertor/Intents/input/is.lproj/Intents.stringsdict index 0c4754adf..fe12c972a 100644 --- a/Localization/StringsConvertor/Intents/input/is.lproj/Intents.stringsdict +++ b/Localization/StringsConvertor/Intents/input/is.lproj/Intents.stringsdict @@ -15,7 +15,7 @@ one 1 valkostur other - %ld options + %ld valkostir There are ${count} options matching ‘${visibility}’. @@ -31,7 +31,7 @@ one 1 valkostur other - %ld options + %ld valkostir From f39c8245e1f3c8ef3333ad832c26663639f51db4 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 21:34:39 +0100 Subject: [PATCH 539/598] New translations app.json (Chinese Traditional) --- .../input/zh-Hant.lproj/app.json | 28 +++++++++---------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/Localization/StringsConvertor/input/zh-Hant.lproj/app.json b/Localization/StringsConvertor/input/zh-Hant.lproj/app.json index c7607ba2a..e2dfaad64 100644 --- a/Localization/StringsConvertor/input/zh-Hant.lproj/app.json +++ b/Localization/StringsConvertor/input/zh-Hant.lproj/app.json @@ -74,8 +74,8 @@ "take_photo": "拍攝照片", "save_photo": "儲存照片", "copy_photo": "複製照片", - "sign_in": "Log in", - "sign_up": "Create account", + "sign_in": "登入", + "sign_up": "新增帳號", "see_more": "檢視更多", "preview": "預覽", "share": "分享", @@ -219,15 +219,15 @@ "log_in": "登入" }, "login": { - "title": "Welcome back", - "subtitle": "Log you in on the server you created your account on.", + "title": "歡迎回來", + "subtitle": "登入您新增帳號之伺服器", "server_search_field": { - "placeholder": "Enter URL or search for your server" + "placeholder": "請輸入 URL 或搜尋您的伺服器" } }, "server_picker": { "title": "Mastodon 由不同伺服器的使用者組成。", - "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", + "subtitle": "基於您的興趣、地區、或一般用途選定一個伺服器。您仍會與任何伺服器中的每個人連結。", "button": { "category": { "all": "全部", @@ -254,7 +254,7 @@ "category": "分類" }, "input": { - "search_servers_or_enter_url": "Search communities or enter URL" + "search_servers_or_enter_url": "搜尋社群或輸入 URL 地址" }, "empty_state": { "finding_servers": "尋找可用的伺服器...", @@ -390,10 +390,10 @@ "description_video": "為視障人士提供影片說明...", "load_failed": "讀取失敗", "upload_failed": "上傳失敗", - "can_not_recognize_this_media_attachment": "Can not recognize this media attachment", + "can_not_recognize_this_media_attachment": "無法識別此媒體附加檔案", "attachment_too_large": "附加檔案大小過大", - "compressing_state": "Compressing...", - "server_processing_state": "Server Processing..." + "compressing_state": "正在壓縮...", + "server_processing_state": "伺服器處理中..." }, "poll": { "duration_time": "持續時間:%s", @@ -404,8 +404,8 @@ "three_days": "三天", "seven_days": "七天", "option_number": "選項 %ld", - "the_poll_is_invalid": "The poll is invalid", - "the_poll_has_empty_option": "The poll has empty option" + "the_poll_is_invalid": "此投票是無效的", + "the_poll_has_empty_option": "此投票有空白選項" }, "content_warning": { "placeholder": "請於此處寫下精準的警告..." @@ -455,8 +455,8 @@ "content": "內容" }, "verified": { - "short": "Verified on %s", - "long": "Ownership of this link was checked on %s" + "short": "於 %s 上已驗證", + "long": "已在 %s 檢查此連結的擁有者權限" } }, "segmented_control": { From d17b9e4a1d44d1b06510dd1defe534b81e80d675 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 21:34:40 +0100 Subject: [PATCH 540/598] New translations app.json (German) --- .../StringsConvertor/input/de.lproj/app.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Localization/StringsConvertor/input/de.lproj/app.json b/Localization/StringsConvertor/input/de.lproj/app.json index bda8161a1..894a0245e 100644 --- a/Localization/StringsConvertor/input/de.lproj/app.json +++ b/Localization/StringsConvertor/input/de.lproj/app.json @@ -74,8 +74,8 @@ "take_photo": "Foto aufnehmen", "save_photo": "Foto speichern", "copy_photo": "Foto kopieren", - "sign_in": "Log in", - "sign_up": "Create account", + "sign_in": "Anmelden", + "sign_up": "Konto erstellen", "see_more": "Mehr anzeigen", "preview": "Vorschau", "share": "Teilen", @@ -219,15 +219,15 @@ "log_in": "Anmelden" }, "login": { - "title": "Welcome back", - "subtitle": "Log you in on the server you created your account on.", + "title": "Willkommen zurück", + "subtitle": "Melden Sie sich auf dem Server an, auf dem Sie Ihr Konto erstellt haben.", "server_search_field": { - "placeholder": "Enter URL or search for your server" + "placeholder": "URL eingeben oder nach Server suchen" } }, "server_picker": { "title": "Wähle einen Server,\nbeliebigen Server.", - "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", + "subtitle": "Wähle einen Server basierend auf deinen Interessen oder deiner Region – oder einfach einen allgemeinen. Du kannst trotzdem mit jedem interagieren, egal auf welchem Server.", "button": { "category": { "all": "Alle", @@ -254,7 +254,7 @@ "category": "KATEGORIE" }, "input": { - "search_servers_or_enter_url": "Search communities or enter URL" + "search_servers_or_enter_url": "Suche nach einer Community oder gib eine URL ein" }, "empty_state": { "finding_servers": "Verfügbare Server werden gesucht...", @@ -455,7 +455,7 @@ "content": "Inhalt" }, "verified": { - "short": "Verified on %s", + "short": "Überprüft am %s", "long": "Besitz des Links wurde überprüft am %s" } }, From 8d4b50018b342a8898542756762de9434eadc130 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 21:34:41 +0100 Subject: [PATCH 541/598] New translations app.json (Thai) --- .../StringsConvertor/input/th.lproj/app.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Localization/StringsConvertor/input/th.lproj/app.json b/Localization/StringsConvertor/input/th.lproj/app.json index 50f43375e..7b1a3d08e 100644 --- a/Localization/StringsConvertor/input/th.lproj/app.json +++ b/Localization/StringsConvertor/input/th.lproj/app.json @@ -74,8 +74,8 @@ "take_photo": "ถ่ายรูป", "save_photo": "บันทึกรูปภาพ", "copy_photo": "คัดลอกรูปภาพ", - "sign_in": "Log in", - "sign_up": "Create account", + "sign_in": "เข้าสู่ระบบ", + "sign_up": "สร้างบัญชี", "see_more": "ดูเพิ่มเติม", "preview": "แสดงตัวอย่าง", "share": "แบ่งปัน", @@ -219,15 +219,15 @@ "log_in": "เข้าสู่ระบบ" }, "login": { - "title": "Welcome back", - "subtitle": "Log you in on the server you created your account on.", + "title": "ยินดีต้อนรับกลับมา", + "subtitle": "นำคุณเข้าสู่ระบบในเซิร์ฟเวอร์ที่คุณได้สร้างบัญชีของคุณไว้ใน", "server_search_field": { - "placeholder": "Enter URL or search for your server" + "placeholder": "ป้อน URL หรือค้นหาสำหรับเซิร์ฟเวอร์ของคุณ" } }, "server_picker": { "title": "Mastodon ประกอบด้วยผู้ใช้ในเซิร์ฟเวอร์ต่าง ๆ", - "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", + "subtitle": "เลือกเซิร์ฟเวอร์ตามภูมิภาค, ความสนใจ หรือวัตถุประสงค์ทั่วไปของคุณ คุณยังคงสามารถแชทกับใครก็ตามใน Mastodon โดยไม่คำนึงถึงเซิร์ฟเวอร์ของคุณ", "button": { "category": { "all": "ทั้งหมด", @@ -254,7 +254,7 @@ "category": "หมวดหมู่" }, "input": { - "search_servers_or_enter_url": "Search communities or enter URL" + "search_servers_or_enter_url": "ค้นหาชุมชนหรือป้อน URL" }, "empty_state": { "finding_servers": "กำลังค้นหาเซิร์ฟเวอร์ที่พร้อมใช้งาน...", From e7af8667e93202b5403e68e15e65b3d1b61bd29f Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2022 21:34:42 +0100 Subject: [PATCH 542/598] New translations app.json (Icelandic) --- .../StringsConvertor/input/is.lproj/app.json | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/Localization/StringsConvertor/input/is.lproj/app.json b/Localization/StringsConvertor/input/is.lproj/app.json index 1cd72f356..191a670ed 100644 --- a/Localization/StringsConvertor/input/is.lproj/app.json +++ b/Localization/StringsConvertor/input/is.lproj/app.json @@ -361,7 +361,7 @@ "Publishing": "Birti færslu...", "accessibility": { "logo_label": "Hnappur með táknmerki", - "logo_hint": "Tap to scroll to top and tap again to previous location" + "logo_hint": "Ýttu til að skruna efst og ýttu aftur til að fara aftur á fyrri staðsetningu" } } }, @@ -558,7 +558,7 @@ "community": "Samfélag", "for_you": "Fyrir þig" }, - "intro": "These are the posts gaining traction in your corner of Mastodon." + "intro": "Þetta eru færslurnar sem eru að fá aukna athygli í þínu horni á Mastodon." }, "favorite": { "title": "Eftirlætin þín" @@ -692,14 +692,14 @@ }, "step_final": { "dont_want_to_see_this": "Langar þig ekki að sjá þetta?", - "when_you_see_something_you_dont_like_on_mastodon_you_can_remove_the_person_from_your_experience.": "When you see something you don’t like on Mastodon, you can remove the person from your experience.", + "when_you_see_something_you_dont_like_on_mastodon_you_can_remove_the_person_from_your_experience.": "Þegar þú sér eitthvað á Mastodon sem þér líkar ekki, þá geturðu fjarlægt viðkomandi eintakling úr umhverfinu þínu.", "unfollow": "Hætta að fylgjast með", "unfollowed": "Hætti að fylgjast með", "unfollow_user": "Hætta að fylgjast með %s", "mute_user": "Þagga niður í %s", - "you_wont_see_their_posts_or_reblogs_in_your_home_feed_they_wont_know_they_ve_been_muted": "You won’t see their posts or reblogs in your home feed. They won’t know they’ve been muted.", + "you_wont_see_their_posts_or_reblogs_in_your_home_feed_they_wont_know_they_ve_been_muted": "Þú munt ekki sjá færslur eða endurbirtingar frá viðkomandi á streyminu þínu. Viðkomandi aðilar munu ekki vita að þaggað hefur verið niður í þeim.", "block_user": "Útiloka %s", - "they_will_no_longer_be_able_to_follow_or_see_your_posts_but_they_can_see_if_theyve_been_blocked": "They will no longer be able to follow or see your posts, but they can see if they’ve been blocked.", + "they_will_no_longer_be_able_to_follow_or_see_your_posts_but_they_can_see_if_theyve_been_blocked": "Viðkomandi mun ekki lengur geta fylgst með eða séð færslurnar þínar, en munu sjá ef viðkomandi hefur verið útilokaður.", "while_we_review_this_you_can_take_action_against_user": "Á meðan við yfirförum þetta, geturðu tekið til aðgerða gegn %s" } }, @@ -711,14 +711,14 @@ } }, "account_list": { - "tab_bar_hint": "Current selected profile: %s. Double tap then hold to show account switcher", - "dismiss_account_switcher": "Dismiss Account Switcher", + "tab_bar_hint": "Fyrirliggjandi valið notandasnið: %s. Tvípikkaðu og haltu niðri til að birta aðgangaskiptinn", + "dismiss_account_switcher": "Loka aðgangaskipti", "add_account": "Bæta við notandaaðgangi" }, "wizard": { "new_in_mastodon": "Nýtt í Mastodon", - "multiple_account_switch_intro_description": "Switch between multiple accounts by holding the profile button.", - "accessibility_hint": "Double tap to dismiss this wizard" + "multiple_account_switch_intro_description": "Skiptu milli notandaaðganga með því að halda niðri notandasniðshnappnum.", + "accessibility_hint": "Tvípikkaðu til að loka þessum leiðarvísi" }, "bookmark": { "title": "Bókamerki" From 5d91bcf8b58efd4bb2e41ad7cc50f686fc5ce4a6 Mon Sep 17 00:00:00 2001 From: Jed Fox Date: Wed, 16 Nov 2022 22:49:49 -0500 Subject: [PATCH 543/598] Basic banner editing support --- .../Header/ProfileHeaderViewController.swift | 26 +++++++++++++----- .../Header/ProfileHeaderViewModel.swift | 5 ++++ .../View/ProfileHeaderView+ViewModel.swift | 7 +++++ .../Header/View/ProfileHeaderView.swift | 27 ++++++++++++++++--- Mastodon/Scene/Profile/ProfileViewModel.swift | 11 +++++--- 5 files changed, 62 insertions(+), 14 deletions(-) diff --git a/Mastodon/Scene/Profile/Header/ProfileHeaderViewController.swift b/Mastodon/Scene/Profile/Header/ProfileHeaderViewController.swift index c5dbbecd4..26ecbb4db 100644 --- a/Mastodon/Scene/Profile/Header/ProfileHeaderViewController.swift +++ b/Mastodon/Scene/Profile/Header/ProfileHeaderViewController.swift @@ -60,7 +60,8 @@ final class ProfileHeaderViewController: UIViewController, NeedsDependency, Medi // private var isAdjustBannerImageViewForSafeAreaInset = false private var containerSafeAreaInset: UIEdgeInsets = .zero - + + private var currentImageType = ImageType.avatar private(set) lazy var imagePicker: PHPickerViewController = { var configuration = PHPickerConfiguration() configuration.filter = .images @@ -125,7 +126,9 @@ extension ProfileHeaderViewController { } .store(in: &disposeBag) - profileHeaderView.editAvatarButtonOverlayIndicatorView.menu = createAvatarContextMenu() + profileHeaderView.editBannerButton.menu = createImageContextMenu(.banner) + profileHeaderView.editBannerButton.showsMenuAsPrimaryAction = true + profileHeaderView.editAvatarButtonOverlayIndicatorView.menu = createImageContextMenu(.avatar) profileHeaderView.editAvatarButtonOverlayIndicatorView.showsMenuAsPrimaryAction = true profileHeaderView.delegate = self @@ -173,7 +176,7 @@ extension ProfileHeaderViewController { profileHeaderView.viewModel.viewDidAppear.send() // set display after view appear - profileHeaderView.setupAvatarOverlayViews() + profileHeaderView.setupImageOverlayViews() } override func viewDidLayoutSubviews() { @@ -185,11 +188,15 @@ extension ProfileHeaderViewController { } extension ProfileHeaderViewController { - private func createAvatarContextMenu() -> UIMenu { + fileprivate enum ImageType { + case avatar + case banner + } + private func createImageContextMenu(_ type: ImageType) -> UIMenu { var children: [UIMenuElement] = [] let photoLibraryAction = UIAction(title: L10n.Scene.Compose.MediaSelection.photoLibrary, image: UIImage(systemName: "rectangle.on.rectangle"), identifier: nil, discoverabilityTitle: nil, attributes: [], state: .off) { [weak self] _ in guard let self = self else { return } - os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s: mediaSelectionType: .photoLibaray", ((#file as NSString).lastPathComponent), #line, #function) + self.currentImageType = type self.present(self.imagePicker, animated: true, completion: nil) } children.append(photoLibraryAction) @@ -197,6 +204,7 @@ extension ProfileHeaderViewController { let cameraAction = UIAction(title: L10n.Scene.Compose.MediaSelection.camera, image: UIImage(systemName: "camera"), identifier: nil, discoverabilityTitle: nil, attributes: [], state: .off, handler: { [weak self] _ in guard let self = self else { return } os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s: mediaSelectionType: .camera", ((#file as NSString).lastPathComponent), #line, #function) + self.currentImageType = type self.present(self.imagePickerController, animated: true, completion: nil) }) children.append(cameraAction) @@ -204,6 +212,7 @@ extension ProfileHeaderViewController { let browseAction = UIAction(title: L10n.Scene.Compose.MediaSelection.browse, image: UIImage(systemName: "ellipsis"), identifier: nil, discoverabilityTitle: nil, attributes: [], state: .off) { [weak self] _ in guard let self = self else { return } os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s: mediaSelectionType: .browse", ((#file as NSString).lastPathComponent), #line, #function) + self.currentImageType = type self.present(self.documentPickerController, animated: true, completion: nil) } children.append(browseAction) @@ -443,7 +452,12 @@ extension ProfileHeaderViewController: UIDocumentPickerDelegate { // MARK: - CropViewControllerDelegate extension ProfileHeaderViewController: CropViewControllerDelegate { public func cropViewController(_ cropViewController: CropViewController, didCropToImage image: UIImage, withRect cropRect: CGRect, angle: Int) { - viewModel.profileInfoEditing.avatar = image + switch currentImageType { + case .banner: + viewModel.profileInfoEditing.header = image + case .avatar: + viewModel.profileInfoEditing.avatar = image + } cropViewController.dismiss(animated: true, completion: nil) } } diff --git a/Mastodon/Scene/Profile/Header/ProfileHeaderViewModel.swift b/Mastodon/Scene/Profile/Header/ProfileHeaderViewModel.swift index 65f15efa7..2504153e2 100644 --- a/Mastodon/Scene/Profile/Header/ProfileHeaderViewModel.swift +++ b/Mastodon/Scene/Profile/Header/ProfileHeaderViewModel.swift @@ -52,6 +52,9 @@ final class ProfileHeaderViewModel { .sink { [weak self] account in guard let self = self else { return } guard let account = account else { return } + // banner + self.profileInfo.header = nil + self.profileInfoEditing.header = nil // avatar self.profileInfo.avatar = nil self.profileInfoEditing.avatar = nil @@ -72,6 +75,7 @@ final class ProfileHeaderViewModel { extension ProfileHeaderViewModel { class ProfileInfo { // input + @Published var header: UIImage? @Published var avatar: UIImage? @Published var name: String? @Published var note: String? @@ -99,6 +103,7 @@ extension ProfileHeaderViewModel: ProfileViewModelEditable { var isEdited: Bool { guard isEditing else { return false } + guard profileInfoEditing.header == nil else { return true } guard profileInfoEditing.avatar == nil else { return true } guard profileInfo.name == profileInfoEditing.name else { return true } guard profileInfo.note == profileInfoEditing.note else { return true } diff --git a/Mastodon/Scene/Profile/Header/View/ProfileHeaderView+ViewModel.swift b/Mastodon/Scene/Profile/Header/View/ProfileHeaderView+ViewModel.swift index c51ccfab3..ceb291bac 100644 --- a/Mastodon/Scene/Profile/Header/View/ProfileHeaderView+ViewModel.swift +++ b/Mastodon/Scene/Profile/Header/View/ProfileHeaderView+ViewModel.swift @@ -262,22 +262,29 @@ extension ProfileHeaderView { animator.addAnimations { self.bannerImageViewOverlayVisualEffectView.backgroundColor = ProfileHeaderView.bannerImageViewOverlayViewBackgroundNormalColor self.nameTextFieldBackgroundView.backgroundColor = .clear + self.editBannerButton.alpha = 0 self.editAvatarBackgroundView.alpha = 0 } animator.addCompletion { _ in + self.editBannerButton.isHidden = true self.editAvatarBackgroundView.isHidden = true + self.bannerImageViewSingleTapGestureRecognizer.isEnabled = true } case .editing: nameMetaText.textView.alpha = 0 nameTextField.isEnabled = true nameTextField.alpha = 1 + editBannerButton.isHidden = false + editBannerButton.alpha = 0 editAvatarBackgroundView.isHidden = false editAvatarBackgroundView.alpha = 0 bioMetaText.textView.backgroundColor = .clear + bannerImageViewSingleTapGestureRecognizer.isEnabled = false animator.addAnimations { self.bannerImageViewOverlayVisualEffectView.backgroundColor = ProfileHeaderView.bannerImageViewOverlayViewBackgroundEditingColor self.nameTextFieldBackgroundView.backgroundColor = Asset.Scene.Profile.Banner.nameEditBackgroundGray.color + self.editBannerButton.alpha = 1 self.editAvatarBackgroundView.alpha = 1 self.bioMetaText.textView.backgroundColor = Asset.Scene.Profile.Banner.bioEditBackgroundGray.color } diff --git a/Mastodon/Scene/Profile/Header/View/ProfileHeaderView.swift b/Mastodon/Scene/Profile/Header/View/ProfileHeaderView.swift index a2194758b..a9941453b 100644 --- a/Mastodon/Scene/Profile/Header/View/ProfileHeaderView.swift +++ b/Mastodon/Scene/Profile/Header/View/ProfileHeaderView.swift @@ -50,6 +50,7 @@ final class ProfileHeaderView: UIView { return viewModel }() + let bannerImageViewSingleTapGestureRecognizer = UITapGestureRecognizer.singleTapGestureRecognizer let bannerContainerView = UIView() let bannerImageView: UIImageView = { let imageView = UIImageView() @@ -101,7 +102,9 @@ final class ProfileHeaderView: UIView { return button }() - func setupAvatarOverlayViews() { + func setupImageOverlayViews() { + editBannerButton.tintColor = .white + editAvatarBackgroundView.backgroundColor = UIColor.black.withAlphaComponent(0.6) editAvatarButtonOverlayIndicatorView.tintColor = .white } @@ -113,6 +116,13 @@ final class ProfileHeaderView: UIView { return visualEffectView }() + let editBannerButton: HighlightDimmableButton = { + let button = HighlightDimmableButton() + button.setImage(UIImage(systemName: "photo", withConfiguration: UIImage.SymbolConfiguration(pointSize: 28)), for: .normal) + button.tintColor = .clear + return button + }() + let editAvatarBackgroundView: UIView = { let view = UIView() view.backgroundColor = .clear // set value after view appeared @@ -271,7 +281,17 @@ extension ProfileHeaderView { bannerImageViewOverlayVisualEffectView.trailingAnchor.constraint(equalTo: bannerImageView.trailingAnchor), bannerImageViewOverlayVisualEffectView.bottomAnchor.constraint(equalTo: bannerImageView.bottomAnchor), ]) - + + editBannerButton.translatesAutoresizingMaskIntoConstraints = false + bannerContainerView.addSubview(editBannerButton) + NSLayoutConstraint.activate([ + editBannerButton.topAnchor.constraint(equalTo: bannerImageView.topAnchor), + editBannerButton.leadingAnchor.constraint(equalTo: bannerImageView.leadingAnchor), + editBannerButton.trailingAnchor.constraint(equalTo: bannerImageView.trailingAnchor), + editBannerButton.bottomAnchor.constraint(equalTo: bannerImageView.bottomAnchor), + ]) + bannerContainerView.isUserInteractionEnabled = true + // follows you followsYouBlurEffectView.translatesAutoresizingMaskIntoConstraints = false addSubview(followsYouBlurEffectView) @@ -455,8 +475,7 @@ extension ProfileHeaderView { statusDashboardView.delegate = self bioMetaText.textView.delegate = self bioMetaText.textView.linkDelegate = self - - let bannerImageViewSingleTapGestureRecognizer = UITapGestureRecognizer.singleTapGestureRecognizer + bannerImageView.addGestureRecognizer(bannerImageViewSingleTapGestureRecognizer) bannerImageViewSingleTapGestureRecognizer.addTarget(self, action: #selector(ProfileHeaderView.bannerImageViewDidPressed(_:))) diff --git a/Mastodon/Scene/Profile/ProfileViewModel.swift b/Mastodon/Scene/Profile/ProfileViewModel.swift index e23b465d4..1ca1d4bea 100644 --- a/Mastodon/Scene/Profile/ProfileViewModel.swift +++ b/Mastodon/Scene/Profile/ProfileViewModel.swift @@ -215,8 +215,11 @@ extension ProfileViewModel { let authenticationBox = authContext.mastodonAuthenticationBox let domain = authenticationBox.domain let authorization = authenticationBox.userAuthorization - - let _image: UIImage? = { + + // TODO: constrain size? + let _header: UIImage? = headerProfileInfo.header + + let _avatar: UIImage? = { guard let image = headerProfileInfo.avatar else { return nil } guard image.size.width <= ProfileHeaderViewModel.avatarImageMaxSizeInPixel.width else { return image.af.imageScaled(to: ProfileHeaderViewModel.avatarImageMaxSizeInPixel) @@ -233,8 +236,8 @@ extension ProfileViewModel { bot: nil, displayName: headerProfileInfo.name, note: headerProfileInfo.note, - avatar: _image.flatMap { Mastodon.Query.MediaAttachment.png($0.pngData()) }, - header: nil, + avatar: _avatar.flatMap { Mastodon.Query.MediaAttachment.png($0.pngData()) }, + header: _header.flatMap { Mastodon.Query.MediaAttachment.png($0.pngData()) }, locked: nil, source: nil, fieldsAttributes: fieldsAttributes From 23a0943b12351eba8a98975cac69b4d886d7d33d Mon Sep 17 00:00:00 2001 From: Jed Fox Date: Wed, 16 Nov 2022 22:52:44 -0500 Subject: [PATCH 544/598] Constrain size --- .../Scene/Profile/Header/ProfileHeaderViewModel.swift | 1 + Mastodon/Scene/Profile/ProfileViewModel.swift | 8 +++++++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/Mastodon/Scene/Profile/Header/ProfileHeaderViewModel.swift b/Mastodon/Scene/Profile/Header/ProfileHeaderViewModel.swift index 2504153e2..c66789cca 100644 --- a/Mastodon/Scene/Profile/Header/ProfileHeaderViewModel.swift +++ b/Mastodon/Scene/Profile/Header/ProfileHeaderViewModel.swift @@ -18,6 +18,7 @@ import MastodonUI final class ProfileHeaderViewModel { static let avatarImageMaxSizeInPixel = CGSize(width: 400, height: 400) + static let bannerImageMaxSizeInPixel = CGSize(width: 1500, height: 500) static let maxProfileFieldCount = 4 var disposeBag = Set() diff --git a/Mastodon/Scene/Profile/ProfileViewModel.swift b/Mastodon/Scene/Profile/ProfileViewModel.swift index 1ca1d4bea..5c81c7920 100644 --- a/Mastodon/Scene/Profile/ProfileViewModel.swift +++ b/Mastodon/Scene/Profile/ProfileViewModel.swift @@ -217,7 +217,13 @@ extension ProfileViewModel { let authorization = authenticationBox.userAuthorization // TODO: constrain size? - let _header: UIImage? = headerProfileInfo.header + let _header: UIImage? = { + guard let image = headerProfileInfo.header else { return nil } + guard image.size.width <= ProfileHeaderViewModel.bannerImageMaxSizeInPixel.width else { + return image.af.imageScaled(to: ProfileHeaderViewModel.bannerImageMaxSizeInPixel) + } + return image + }() let _avatar: UIImage? = { guard let image = headerProfileInfo.avatar else { return nil } From 4af5d3910a7f2f3476fd205c0cfd9ed97669c7ae Mon Sep 17 00:00:00 2001 From: Jed Fox Date: Wed, 16 Nov 2022 23:05:48 -0500 Subject: [PATCH 545/598] Wire up the header image to be actually displayed --- .../Header/ProfileHeaderViewController.swift | 11 ++++++++++- .../Header/View/ProfileHeaderView+ViewModel.swift | 14 ++++++++++---- 2 files changed, 20 insertions(+), 5 deletions(-) diff --git a/Mastodon/Scene/Profile/Header/ProfileHeaderViewController.swift b/Mastodon/Scene/Profile/Header/ProfileHeaderViewController.swift index 26ecbb4db..1a0dda44e 100644 --- a/Mastodon/Scene/Profile/Header/ProfileHeaderViewController.swift +++ b/Mastodon/Scene/Profile/Header/ProfileHeaderViewController.swift @@ -159,6 +159,9 @@ extension ProfileHeaderViewController { viewModel.$isUpdating .assign(to: \.isUpdating, on: profileHeaderView.viewModel) .store(in: &disposeBag) + viewModel.profileInfoEditing.$header + .assign(to: \.headerImageEditing, on: profileHeaderView.viewModel) + .store(in: &disposeBag) viewModel.profileInfoEditing.$avatar .assign(to: \.avatarImageEditing, on: profileHeaderView.viewModel) .store(in: &disposeBag) @@ -224,7 +227,13 @@ extension ProfileHeaderViewController { DispatchQueue.main.async { let cropController = CropViewController(croppingStyle: .default, image: image) cropController.delegate = self - cropController.setAspectRatioPreset(.presetSquare, animated: true) + switch self.currentImageType { + case .banner: + cropController.customAspectRatio = CGSize(width: 3, height: 1) + cropController.setAspectRatioPreset(.presetCustom, animated: true) + case .avatar: + cropController.setAspectRatioPreset(.presetSquare, animated: true) + } cropController.aspectRatioPickerButtonHidden = true cropController.aspectRatioLockEnabled = true pickerViewController.dismiss(animated: true, completion: { diff --git a/Mastodon/Scene/Profile/Header/View/ProfileHeaderView+ViewModel.swift b/Mastodon/Scene/Profile/Header/View/ProfileHeaderView+ViewModel.swift index ceb291bac..5095d7ac0 100644 --- a/Mastodon/Scene/Profile/Header/View/ProfileHeaderView+ViewModel.swift +++ b/Mastodon/Scene/Profile/Header/View/ProfileHeaderView+ViewModel.swift @@ -28,6 +28,7 @@ extension ProfileHeaderView { @Published var emojiMeta: MastodonContent.Emojis = [:] @Published var headerImageURL: URL? + @Published var headerImageEditing: UIImage? @Published var avatarImageURL: URL? @Published var avatarImageEditing: UIImage? @@ -61,14 +62,19 @@ extension ProfileHeaderView.ViewModel { func bind(view: ProfileHeaderView) { // header - Publishers.CombineLatest( + Publishers.CombineLatest4( $headerImageURL, + $headerImageEditing, + $isEditing, viewDidAppear ) - .sink { headerImageURL, _ in + .sink { headerImageURL, headerImageEditing, isEditing, _ in view.bannerImageView.af.cancelImageRequest() - let placeholder = UIImage.placeholder(color: ProfileHeaderView.bannerImageViewPlaceholderColor) - guard let bannerImageURL = headerImageURL else { + let defaultPlaceholder = UIImage.placeholder(color: ProfileHeaderView.bannerImageViewPlaceholderColor) + let placeholder = isEditing ? (headerImageEditing ?? defaultPlaceholder) : defaultPlaceholder + guard let bannerImageURL = headerImageURL, + !isEditing || headerImageEditing == nil + else { view.bannerImageView.image = placeholder return } From bb72150aedb692aea4ac08f41a3fb157f432266f Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Thu, 17 Nov 2022 05:09:48 +0100 Subject: [PATCH 546/598] New translations app.json (Galician) --- Localization/StringsConvertor/input/gl.lproj/app.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Localization/StringsConvertor/input/gl.lproj/app.json b/Localization/StringsConvertor/input/gl.lproj/app.json index f6e01439a..f87322abb 100644 --- a/Localization/StringsConvertor/input/gl.lproj/app.json +++ b/Localization/StringsConvertor/input/gl.lproj/app.json @@ -74,8 +74,8 @@ "take_photo": "Facer foto", "save_photo": "Gardar foto", "copy_photo": "Copiar foto", - "sign_in": "Log in", - "sign_up": "Create account", + "sign_in": "Acceder", + "sign_up": "Crear conta", "see_more": "Ver máis", "preview": "Vista previa", "share": "Compartir", From 506cd46a8d0c09aa86a387affe68e7e6730bf556 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Thu, 17 Nov 2022 06:19:30 +0100 Subject: [PATCH 547/598] New translations app.json (Galician) --- Localization/StringsConvertor/input/gl.lproj/app.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Localization/StringsConvertor/input/gl.lproj/app.json b/Localization/StringsConvertor/input/gl.lproj/app.json index f87322abb..15c7a612a 100644 --- a/Localization/StringsConvertor/input/gl.lproj/app.json +++ b/Localization/StringsConvertor/input/gl.lproj/app.json @@ -219,15 +219,15 @@ "log_in": "Acceder" }, "login": { - "title": "Welcome back", - "subtitle": "Log you in on the server you created your account on.", + "title": "Benvido outra vez", + "subtitle": "Conéctate ao servidor no que creaches a conta.", "server_search_field": { - "placeholder": "Enter URL or search for your server" + "placeholder": "Escribe o URL ou busca o teu servidor" } }, "server_picker": { "title": "Mastodon fórmano as persoas das diferentes comunidades.", - "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", + "subtitle": "Elixe un servidor en función dos teus intereses, rexión o un de propósito xeral. Poderás conversar con calquera en Mastodon, independentemente do servidor que elixas.", "button": { "category": { "all": "Todo", @@ -254,7 +254,7 @@ "category": "CATEGORÍA" }, "input": { - "search_servers_or_enter_url": "Search communities or enter URL" + "search_servers_or_enter_url": "Busca comunidades ou escribe URL" }, "empty_state": { "finding_servers": "Buscando servidores dispoñibles...", From ce1f6b3e8f480e293b4a3430891dfe6b64fe5c60 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Thu, 17 Nov 2022 06:19:31 +0100 Subject: [PATCH 548/598] New translations app.json (Indonesian) --- .../StringsConvertor/input/id.lproj/app.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Localization/StringsConvertor/input/id.lproj/app.json b/Localization/StringsConvertor/input/id.lproj/app.json index dba617b0b..59ef1e0fe 100644 --- a/Localization/StringsConvertor/input/id.lproj/app.json +++ b/Localization/StringsConvertor/input/id.lproj/app.json @@ -74,8 +74,8 @@ "take_photo": "Ambil Foto", "save_photo": "Simpan Foto", "copy_photo": "Salin Foto", - "sign_in": "Log in", - "sign_up": "Create account", + "sign_in": "Masuk", + "sign_up": "Buat akun", "see_more": "Lihat lebih banyak", "preview": "Pratinjau", "share": "Bagikan", @@ -219,15 +219,15 @@ "log_in": "Login" }, "login": { - "title": "Welcome back", - "subtitle": "Log you in on the server you created your account on.", + "title": "Selamat datang kembali", + "subtitle": "Masuklah pada server yang Anda buat di mana akun Anda berada.", "server_search_field": { - "placeholder": "Enter URL or search for your server" + "placeholder": "Masukkan URL atau pencarian di server Anda" } }, "server_picker": { "title": "Pilih sebuah server,\nserver manapun.", - "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.", + "subtitle": "Pilih server berdasarkan agamamu, minat, atau subjek umum lainnya. Kamu masih bisa berkomunikasi dengan semua orang di Mastodon, tanpa memperdulikan server Anda.", "button": { "category": { "all": "Semua", @@ -254,7 +254,7 @@ "category": "KATEGORI" }, "input": { - "search_servers_or_enter_url": "Search communities or enter URL" + "search_servers_or_enter_url": "Cari komunitas atau masukkan URL" }, "empty_state": { "finding_servers": "Mencari server yang tersedia...", @@ -315,7 +315,7 @@ "inclusion": "%s is not a supported value" }, "special": { - "username_invalid": "Username must only contain alphanumeric characters and underscores", + "username_invalid": "Nama pengguna hanya berisi angka karakter dan garis bawah", "username_too_long": "Nama pengguna terlalu panjang (tidak boleh lebih dari 30 karakter)", "email_invalid": "Ini bukan alamat surel yang valid", "password_too_short": "Kata sandi terlalu pendek (harus sekurang-kurangnya 8 karakter)" From d8164c2bc9ced34893771956f528b6aa00cdabf4 Mon Sep 17 00:00:00 2001 From: Stefan Painhapp <4242986+painhapp@users.noreply.github.com> Date: Thu, 17 Nov 2022 14:26:40 +0900 Subject: [PATCH 549/598] Fix Video Player Constraints issue --- Gemfile.lock | 2 ++ .../Video/MediaPreviewVideoViewController.swift | 7 ++++++- .../MastodonCore/Service/API/APIService+APIError.swift | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index e0ed91c5b..15d02a8ec 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -100,7 +100,9 @@ GEM PLATFORMS arm64-darwin-21 + arm64-darwin-22 x86_64-darwin-21 + x86_64-darwin-22 DEPENDENCIES arkana diff --git a/Mastodon/Scene/MediaPreview/Video/MediaPreviewVideoViewController.swift b/Mastodon/Scene/MediaPreview/Video/MediaPreviewVideoViewController.swift index 7bdbbfed2..cc559d8bb 100644 --- a/Mastodon/Scene/MediaPreview/Video/MediaPreviewVideoViewController.swift +++ b/Mastodon/Scene/MediaPreview/Video/MediaPreviewVideoViewController.swift @@ -45,7 +45,6 @@ extension MediaPreviewVideoViewController { playerViewController.view.widthAnchor.constraint(equalTo: view.widthAnchor), playerViewController.view.heightAnchor.constraint(equalTo: view.heightAnchor), ]) - playerViewController.didMove(toParent: self) if let contentOverlayView = playerViewController.contentOverlayView { previewImageView.translatesAutoresizingMaskIntoConstraints = false @@ -90,6 +89,12 @@ extension MediaPreviewVideoViewController { } } + override func viewDidLayoutSubviews() { + super.viewDidLayoutSubviews() + + playerViewController.didMove(toParent: self) + } + } // MARK: - ShareActivityProvider diff --git a/MastodonSDK/Sources/MastodonCore/Service/API/APIService+APIError.swift b/MastodonSDK/Sources/MastodonCore/Service/API/APIService+APIError.swift index 6fdb973da..52b6d4678 100644 --- a/MastodonSDK/Sources/MastodonCore/Service/API/APIService+APIError.swift +++ b/MastodonSDK/Sources/MastodonCore/Service/API/APIService+APIError.swift @@ -43,7 +43,7 @@ extension APIService.APIError: LocalizedError { public var errorDescription: String? { switch errorReason { - case .authenticationMissing: return "Fail to Authenticatie" + case .authenticationMissing: return "Fail to Authenticate" case .badRequest: return "Bad Request" case .badResponse: return "Bad Response" case .requestThrottle: return "Request Throttled" From cb5d027ce9428b47e5e37b7d9f7b69a09b64fd8f Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Thu, 17 Nov 2022 08:19:27 +0100 Subject: [PATCH 550/598] New translations app.json (Kabyle) --- Localization/StringsConvertor/input/kab.lproj/app.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Localization/StringsConvertor/input/kab.lproj/app.json b/Localization/StringsConvertor/input/kab.lproj/app.json index fb8add87b..9c4a533bb 100644 --- a/Localization/StringsConvertor/input/kab.lproj/app.json +++ b/Localization/StringsConvertor/input/kab.lproj/app.json @@ -74,8 +74,8 @@ "take_photo": "Ṭṭef tawlaft", "save_photo": "Sekles tawlaft", "copy_photo": "Nɣel tawlaft", - "sign_in": "Log in", - "sign_up": "Create account", + "sign_in": "Qqen", + "sign_up": "Snulfu-d amiḍan", "see_more": "Wali ugar", "preview": "Taskant", "share": "Bḍu", @@ -219,7 +219,7 @@ "log_in": "Qqen" }, "login": { - "title": "Welcome back", + "title": "Ansuf yess·ek·em", "subtitle": "Log you in on the server you created your account on.", "server_search_field": { "placeholder": "Enter URL or search for your server" @@ -254,7 +254,7 @@ "category": "TAGGAYT" }, "input": { - "search_servers_or_enter_url": "Search communities or enter URL" + "search_servers_or_enter_url": "Nadi timɣiwnin neɣ sekcem URL" }, "empty_state": { "finding_servers": "Tifin n yiqeddacen yellan...", From ab094199502f3a3674a654f35c6f2641cac1552d Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Thu, 17 Nov 2022 08:19:28 +0100 Subject: [PATCH 551/598] New translations Localizable.stringsdict (Kabyle) --- .../StringsConvertor/input/kab.lproj/Localizable.stringsdict | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Localization/StringsConvertor/input/kab.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/kab.lproj/Localizable.stringsdict index fd7cac605..dd66c70d3 100644 --- a/Localization/StringsConvertor/input/kab.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/kab.lproj/Localizable.stringsdict @@ -61,9 +61,9 @@ NSStringFormatValueTypeKey ld one - 1 character + 1 n usekkil other - %ld characters + %ld n isekkilen plural.count.followed_by_and_mutual From a0db294abeaa3cf3fc2fe82c7c92d0149aa3fd58 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Thu, 17 Nov 2022 09:45:18 +0100 Subject: [PATCH 552/598] New translations app.json (Kabyle) --- .../StringsConvertor/input/kab.lproj/app.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Localization/StringsConvertor/input/kab.lproj/app.json b/Localization/StringsConvertor/input/kab.lproj/app.json index 9c4a533bb..62cea8780 100644 --- a/Localization/StringsConvertor/input/kab.lproj/app.json +++ b/Localization/StringsConvertor/input/kab.lproj/app.json @@ -137,10 +137,10 @@ "closed": "Ifukk" }, "meta_entity": { - "url": "Link: %s", - "hashtag": "Hashtag: %s", - "mention": "Show Profile: %s", - "email": "Email address: %s" + "url": "Asaɣ : %s", + "hashtag": "Ahacṭag : %s", + "mention": "Sken-d amaɣnu : %s", + "email": "Tansa imayl : %s" }, "actions": { "reply": "Err", @@ -222,7 +222,7 @@ "title": "Ansuf yess·ek·em", "subtitle": "Log you in on the server you created your account on.", "server_search_field": { - "placeholder": "Enter URL or search for your server" + "placeholder": "Sekcem URL neɣ nadi ɣef uqeddac-ik·im" } }, "server_picker": { @@ -357,8 +357,8 @@ "navigation_bar_state": { "offline": "Beṛṛa n tuqqna", "new_posts": "Tissufaɣ timaynutin", - "published": "Yettwasuffeɣ!", - "Publishing": "Asuffeɣ tasuffeɣt...", + "published": "Tettwasuffeɣ!", + "Publishing": "Asuffeɣ n tasuffeɣt...", "accessibility": { "logo_label": "Taqeffalt n ulugu", "logo_hint": "Sit i wakken ad tɛeddiḍ i usawen, sit tikkelt-nniḍen i wakken ad tɛeddiḍ ɣer wadig yezrin" @@ -671,7 +671,7 @@ "its_spam": "D aspam", "malicious_links_fake_engagement_or_repetetive_replies": "Yir iseɣwan, yir agman d tririyin i d-yettuɣalen", "it_violates_server_rules": "Truẓi n yilugan n uqeddac", - "you_are_aware_that_it_breaks_specific_rules": "Teẓriḍ y•tettruẓu kra n yilugan", + "you_are_aware_that_it_breaks_specific_rules": "Teẓriḍ y·tettruẓu kra n yilugan", "its_something_else": "Ɣef ssebba-nniḍen", "the_issue_does_not_fit_into_other_categories": "Ugur ur yemṣada ara akk d taggayin-nniḍen" }, From 6366d26f4b9b37ceaeaef5a83eea3641380aeb3e Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Thu, 17 Nov 2022 09:45:19 +0100 Subject: [PATCH 553/598] New translations Localizable.stringsdict (Kabyle) --- .../input/kab.lproj/Localizable.stringsdict | 42 +++++++++---------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/Localization/StringsConvertor/input/kab.lproj/Localizable.stringsdict b/Localization/StringsConvertor/input/kab.lproj/Localizable.stringsdict index dd66c70d3..f18a906c0 100644 --- a/Localization/StringsConvertor/input/kab.lproj/Localizable.stringsdict +++ b/Localization/StringsConvertor/input/kab.lproj/Localizable.stringsdict @@ -136,7 +136,7 @@ NSStringFormatValueTypeKey ld one - 1 tsuffeɣt + 1 n tsuffeɣt other %ld n tsuffaɣ @@ -312,9 +312,9 @@ NSStringFormatValueTypeKey ld one - Yeqqim-d 1 wass + Yeqqim-d 1 n wass other - Qqimen-d %ld wussan + Qqimen-d %ld n wussan date.hour.left @@ -328,9 +328,9 @@ NSStringFormatValueTypeKey ld one - Yeqqim-d 1 usrag + Yeqqim-d 1 n wesrag other - Qqimen-d %ld yisragen + Qqimen-d %ld n yisragen date.minute.left @@ -344,9 +344,9 @@ NSStringFormatValueTypeKey ld one - 1 tesdat i d-yeqqimen + 1 n tesdat i d-yeqqimen other - %ld tesdatin i d-yeqqimen + %ld n tesdatin i d-yeqqimen date.second.left @@ -360,9 +360,9 @@ NSStringFormatValueTypeKey ld one - 1 tasint i d-yeqqimen + 1 n tasint i d-yeqqimen other - %ld tsinin i d-yeqqimen + %ld n tasinin i d-yeqqimen date.year.ago.abbr @@ -376,9 +376,9 @@ NSStringFormatValueTypeKey ld one - 1 useggas aya + %ld n useggas aya other - %ld yiseggasen aya + %ld n yiseggasen aya date.month.ago.abbr @@ -392,9 +392,9 @@ NSStringFormatValueTypeKey ld one - 1 wayyur aya + %ld n wayyur aya other - %ld wayyuren aya + %ld n wayyuren aya date.day.ago.abbr @@ -408,9 +408,9 @@ NSStringFormatValueTypeKey ld one - 1 wass aya + %ld n wass aya other - %ld wussan aya + %ld n wussan aya date.hour.ago.abbr @@ -424,9 +424,9 @@ NSStringFormatValueTypeKey ld one - 1 usrag aya + %ld n wesrag aya other - %ld yisragen aya + %ld n yisragen aya date.minute.ago.abbr @@ -440,9 +440,9 @@ NSStringFormatValueTypeKey ld one - 1 tesdat aya + %ld n tesdat aya other - %ld tesdatin aya + %ld n tesdatin aya date.second.ago.abbr @@ -456,9 +456,9 @@ NSStringFormatValueTypeKey ld one - 1 tasint aya + %ld n tasint aya other - %ld tsinin aya + %ld n tasinin aya From 936b9b9ac6f100a16b1fd552c187d805d7cd7534 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Thu, 17 Nov 2022 09:45:21 +0100 Subject: [PATCH 554/598] New translations Intents.stringsdict (Kabyle) --- .../Intents/input/kab.lproj/Intents.stringsdict | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Localization/StringsConvertor/Intents/input/kab.lproj/Intents.stringsdict b/Localization/StringsConvertor/Intents/input/kab.lproj/Intents.stringsdict index a8aeeaaf1..6cead6f34 100644 --- a/Localization/StringsConvertor/Intents/input/kab.lproj/Intents.stringsdict +++ b/Localization/StringsConvertor/Intents/input/kab.lproj/Intents.stringsdict @@ -29,9 +29,9 @@ NSStringFormatValueTypeKey %ld one - 1 uɣewwaṛ + %ld n uɣewwaṛ other - %ld iɣewwaṛen + %ld n iɣewwaṛen From 60d9d3537d9a98ff7ed15dc34d8761231f76539e Mon Sep 17 00:00:00 2001 From: Marcus Kida Date: Thu, 17 Nov 2022 10:22:13 +0100 Subject: [PATCH 555/598] feat: Implement double-tap account switching on iPad --- Mastodon.xcodeproj/project.pbxproj | 4 ++ .../Extension/AppContext+NextAccount.swift | 47 +++++++++++++++++++ .../Root/ContentSplitViewController.swift | 13 +++++ .../Root/MainTab/MainTabBarController.swift | 25 +--------- .../Root/Sidebar/SidebarViewController.swift | 23 +++++++++ 5 files changed, 88 insertions(+), 24 deletions(-) create mode 100644 Mastodon/Extension/AppContext+NextAccount.swift diff --git a/Mastodon.xcodeproj/project.pbxproj b/Mastodon.xcodeproj/project.pbxproj index 5724244b6..d8020fb3f 100644 --- a/Mastodon.xcodeproj/project.pbxproj +++ b/Mastodon.xcodeproj/project.pbxproj @@ -23,6 +23,7 @@ 0FB3D33825E6401400AAD544 /* PickServerCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FB3D33725E6401400AAD544 /* PickServerCell.swift */; }; 164F0EBC267D4FE400249499 /* BoopSound.caf in Resources */ = {isa = PBXBuildFile; fileRef = 164F0EBB267D4FE400249499 /* BoopSound.caf */; }; 18BC7629F65E6DB12CB8416D /* Pods_Mastodon_MastodonUITests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3C030226D3C73DCC23D67452 /* Pods_Mastodon_MastodonUITests.framework */; }; + 2A82294F29262EE000D2A1F7 /* AppContext+NextAccount.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2A82294E29262EE000D2A1F7 /* AppContext+NextAccount.swift */; }; 2D198643261BF09500F0B013 /* SearchResultItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2D198642261BF09500F0B013 /* SearchResultItem.swift */; }; 2D198649261C0B8500F0B013 /* SearchResultSection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2D198648261C0B8500F0B013 /* SearchResultSection.swift */; }; 2D206B8625F5FB0900143C56 /* Double.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2D206B8525F5FB0900143C56 /* Double.swift */; }; @@ -518,6 +519,7 @@ 0FB3D33725E6401400AAD544 /* PickServerCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PickServerCell.swift; sourceTree = ""; }; 164F0EBB267D4FE400249499 /* BoopSound.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = BoopSound.caf; sourceTree = ""; }; 1D6D967E77A5357E2C6110D9 /* Pods-Mastodon.asdk - debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Mastodon.asdk - debug.xcconfig"; path = "Target Support Files/Pods-Mastodon/Pods-Mastodon.asdk - debug.xcconfig"; sourceTree = ""; }; + 2A82294E29262EE000D2A1F7 /* AppContext+NextAccount.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "AppContext+NextAccount.swift"; sourceTree = ""; }; 2D198642261BF09500F0B013 /* SearchResultItem.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SearchResultItem.swift; sourceTree = ""; }; 2D198648261C0B8500F0B013 /* SearchResultSection.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SearchResultSection.swift; sourceTree = ""; }; 2D206B8525F5FB0900143C56 /* Double.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Double.swift; sourceTree = ""; }; @@ -2222,6 +2224,7 @@ isa = PBXGroup; children = ( 2DF123A625C3B0210020F248 /* ActiveLabel.swift */, + 2A82294E29262EE000D2A1F7 /* AppContext+NextAccount.swift */, 5DF1056325F887CB00D6C0D4 /* AVPlayer.swift */, 2D206B8525F5FB0900143C56 /* Double.swift */, DBB3BA2926A81C020004F2D4 /* FLAnimatedImageView.swift */, @@ -3465,6 +3468,7 @@ DBFEEC99279BDCDE004F81DD /* ProfileAboutViewModel.swift in Sources */, 2D198649261C0B8500F0B013 /* SearchResultSection.swift in Sources */, DB4F097B26A039FF00D62E92 /* SearchHistorySection.swift in Sources */, + 2A82294F29262EE000D2A1F7 /* AppContext+NextAccount.swift in Sources */, DBB525302611EBF3002F1F29 /* ProfilePagingViewModel.swift in Sources */, DB9F58EC26EF435000E7BBE9 /* AccountViewController.swift in Sources */, 2D5A3D6225CFD9CB002347D6 /* HomeTimelineViewController+DebugAction.swift in Sources */, diff --git a/Mastodon/Extension/AppContext+NextAccount.swift b/Mastodon/Extension/AppContext+NextAccount.swift new file mode 100644 index 000000000..a8eae1e13 --- /dev/null +++ b/Mastodon/Extension/AppContext+NextAccount.swift @@ -0,0 +1,47 @@ +// +// AppContext+NextAccount.swift +// Mastodon +// +// Created by Marcus Kida on 17.11.22. +// + +import CoreData +import CoreDataStack +import MastodonCore +import MastodonSDK + +extension AppContext { + func nextAccount(in authContext: AuthContext) -> MastodonAuthentication? { + let request = MastodonAuthentication.sortedFetchRequest + guard + let accounts = try? managedObjectContext.fetch(request), + accounts.count > 1 + else { return nil } + + let nextSelectedAccountIndex: Int? = { + for (index, account) in accounts.enumerated() { + guard account == authContext.mastodonAuthenticationBox + .authenticationRecord + .object(in: managedObjectContext) + else { continue } + + let nextAccountIndex = index + 1 + + if accounts.count > nextAccountIndex { + return nextAccountIndex + } else { + return 0 + } + } + + return nil + }() + + guard + let nextSelectedAccountIndex = nextSelectedAccountIndex, + accounts.count > nextSelectedAccountIndex + else { return nil } + + return accounts[nextSelectedAccountIndex] + } +} diff --git a/Mastodon/Scene/Root/ContentSplitViewController.swift b/Mastodon/Scene/Root/ContentSplitViewController.swift index 3f4758e8e..a10f0ed9b 100644 --- a/Mastodon/Scene/Root/ContentSplitViewController.swift +++ b/Mastodon/Scene/Root/ContentSplitViewController.swift @@ -124,4 +124,17 @@ extension ContentSplitViewController: SidebarViewControllerDelegate { accountListViewController.preferredContentSize = CGSize(width: 375, height: 400) } + func sidebarViewController(_ sidebarViewController: SidebarViewController, didDoubleTapItem item: SidebarViewModel.Item, sourceView: UIView) { + guard case let .tab(tab) = item, tab == .me else { return } + guard let authContext = authContext else { return } + assert(Thread.isMainThread) + + guard let nextAccount = context.nextAccount(in: authContext) else { return } + + Task { @MainActor in + let isActive = try await context.authenticationService.activeMastodonUser(domain: nextAccount.domain, userID: nextAccount.userID) + guard isActive else { return } + self.coordinator.setup() + } + } } diff --git a/Mastodon/Scene/Root/MainTab/MainTabBarController.swift b/Mastodon/Scene/Root/MainTab/MainTabBarController.swift index 5f77d9584..5143e00c9 100644 --- a/Mastodon/Scene/Root/MainTab/MainTabBarController.swift +++ b/Mastodon/Scene/Root/MainTab/MainTabBarController.swift @@ -406,30 +406,7 @@ extension MainTabBarController { guard let authContext = authContext else { return } assert(Thread.isMainThread) - let request = MastodonAuthentication.sortedFetchRequest - guard let accounts = try? context.managedObjectContext.fetch(request), accounts.count > 1 else { return } - - let nextSelectedAccountIndex: Int? = { - for (index, account) in accounts.enumerated() { - guard account == authContext.mastodonAuthenticationBox - .authenticationRecord - .object(in: context.managedObjectContext) - else { continue } - - let nextAccountIndex = index + 1 - - if accounts.count > nextAccountIndex { - return nextAccountIndex - } else { - return 0 - } - } - - return nil - }() - - guard let nextSelectedAccountIndex = nextSelectedAccountIndex, accounts.count > nextSelectedAccountIndex else { return } - let nextAccount = accounts[nextSelectedAccountIndex] + guard let nextAccount = context.nextAccount(in: authContext) else { return } Task { @MainActor in let isActive = try await context.authenticationService.activeMastodonUser(domain: nextAccount.domain, userID: nextAccount.userID) diff --git a/Mastodon/Scene/Root/Sidebar/SidebarViewController.swift b/Mastodon/Scene/Root/Sidebar/SidebarViewController.swift index 70e1239b6..c1faafca7 100644 --- a/Mastodon/Scene/Root/Sidebar/SidebarViewController.swift +++ b/Mastodon/Scene/Root/Sidebar/SidebarViewController.swift @@ -15,6 +15,7 @@ import MastodonUI protocol SidebarViewControllerDelegate: AnyObject { func sidebarViewController(_ sidebarViewController: SidebarViewController, didSelectTab tab: MainTabBarController.Tab) func sidebarViewController(_ sidebarViewController: SidebarViewController, didLongPressItem item: SidebarViewModel.Item, sourceView: UIView) + func sidebarViewController(_ sidebarViewController: SidebarViewController, didDoubleTapItem item: SidebarViewModel.Item, sourceView: UIView) } final class SidebarViewController: UIViewController, NeedsDependency { @@ -143,6 +144,14 @@ extension SidebarViewController { let sidebarLongPressGestureRecognizer = UILongPressGestureRecognizer() sidebarLongPressGestureRecognizer.addTarget(self, action: #selector(SidebarViewController.sidebarLongPressGestureRecognizerHandler(_:))) collectionView.addGestureRecognizer(sidebarLongPressGestureRecognizer) + + let sidebarDoubleTapGestureRecognizer = UITapGestureRecognizer() + sidebarDoubleTapGestureRecognizer.numberOfTapsRequired = 2 + sidebarDoubleTapGestureRecognizer.addTarget(self, action: #selector(SidebarViewController.sidebarDoubleTapGestureRecognizerHandler(_:))) + sidebarDoubleTapGestureRecognizer.delaysTouchesBegan = true + sidebarDoubleTapGestureRecognizer.cancelsTouchesInView = true + collectionView.addGestureRecognizer(sidebarDoubleTapGestureRecognizer) + } private func setupBackground(theme: Theme) { @@ -176,6 +185,20 @@ extension SidebarViewController { guard let cell = collectionView.cellForItem(at: indexPath) else { return } delegate?.sidebarViewController(self, didLongPressItem: item, sourceView: cell) } + + @objc private func sidebarDoubleTapGestureRecognizerHandler(_ sender: UITapGestureRecognizer) { + guard sender.state == .ended else { return } + + logger.log(level: .debug, "\((#file as NSString).lastPathComponent, privacy: .public)[\(#line, privacy: .public)], \(#function, privacy: .public)") + assert(sender.view === collectionView) + + let position = sender.location(in: collectionView) + guard let indexPath = collectionView.indexPathForItem(at: position) else { return } + guard let diffableDataSource = viewModel.diffableDataSource else { return } + guard let item = diffableDataSource.itemIdentifier(for: indexPath) else { return } + guard let cell = collectionView.cellForItem(at: indexPath) else { return } + delegate?.sidebarViewController(self, didDoubleTapItem: item, sourceView: cell) + } } From f4018935f90257e97bf03a6eb6c5025ef5ffcc1e Mon Sep 17 00:00:00 2001 From: Jed Fox Date: Thu, 17 Nov 2022 07:25:16 -0500 Subject: [PATCH 556/598] Re-add missing debug line --- Mastodon/Scene/Profile/Header/ProfileHeaderViewController.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/Mastodon/Scene/Profile/Header/ProfileHeaderViewController.swift b/Mastodon/Scene/Profile/Header/ProfileHeaderViewController.swift index 1a0dda44e..7ca819b41 100644 --- a/Mastodon/Scene/Profile/Header/ProfileHeaderViewController.swift +++ b/Mastodon/Scene/Profile/Header/ProfileHeaderViewController.swift @@ -199,6 +199,7 @@ extension ProfileHeaderViewController { var children: [UIMenuElement] = [] let photoLibraryAction = UIAction(title: L10n.Scene.Compose.MediaSelection.photoLibrary, image: UIImage(systemName: "rectangle.on.rectangle"), identifier: nil, discoverabilityTitle: nil, attributes: [], state: .off) { [weak self] _ in guard let self = self else { return } + os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s: mediaSelectionType: .photoLibaray", ((#file as NSString).lastPathComponent), #line, #function) self.currentImageType = type self.present(self.imagePicker, animated: true, completion: nil) } From be255ff53b504dbf2efd8f667f53dd1298d99b86 Mon Sep 17 00:00:00 2001 From: CMK Date: Thu, 17 Nov 2022 20:41:55 +0800 Subject: [PATCH 557/598] fix: compose content could not post media only issue --- .../ComposeContentViewModel.swift | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel.swift index 06d84566b..61ccd9e3a 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel.swift @@ -359,7 +359,7 @@ extension ComposeContentViewModel { let isMediaUploadAllSuccess = $attachmentViewModels .map { attachmentViewModels in return Publishers.MergeMany(attachmentViewModels.map { $0.$uploadState }) - .delay(for: 0.5, scheduler: DispatchQueue.main) // convert to outputs with delay. Due to @Published emit before changes + .delay(for: 0.3, scheduler: DispatchQueue.main) // convert to outputs with delay. Due to @Published emit before changes .map { _ in attachmentViewModels.map { $0.uploadState } } } .switchToLatest() @@ -367,18 +367,20 @@ extension ComposeContentViewModel { guard outputs.allSatisfy({ $0 == .finish }) else { return false } return true } + .prepend(true) let isPollOptionsAllValid = $pollOptions .map { options in return Publishers.MergeMany(options.map { $0.$text }) - .delay(for: 0.5, scheduler: DispatchQueue.main) // convert to outputs with delay. Due to @Published emit before changes + .delay(for: 0.3, scheduler: DispatchQueue.main) // convert to outputs with delay. Due to @Published emit before changes .map { _ in options.map { $0.text } } } .switchToLatest() .map { outputs in return outputs.allSatisfy { !$0.trimmingCharacters(in: .whitespacesAndNewlines).isEmpty } } - + .prepend(true) + let isPublishBarButtonItemEnabledPrecondition1 = Publishers.CombineLatest4( isComposeContentEmpty, isComposeContentValid, @@ -394,17 +396,15 @@ extension ComposeContentViewModel { } .eraseToAnyPublisher() - let isPublishBarButtonItemEnabledPrecondition2 = Publishers.CombineLatest4( - isComposeContentEmpty, - isComposeContentValid, + let isPublishBarButtonItemEnabledPrecondition2 = Publishers.CombineLatest( $isPollActive, isPollOptionsAllValid ) - .map { isComposeContentEmpty, isComposeContentValid, isPollComposing, isPollOptionsAllValid -> Bool in - if isPollComposing { - return isComposeContentValid && !isComposeContentEmpty && isPollOptionsAllValid + .map { isPollActive, isPollOptionsAllValid -> Bool in + if isPollActive { + return isPollOptionsAllValid } else { - return isComposeContentValid && !isComposeContentEmpty + return true } } .eraseToAnyPublisher() From 1d6d059718fa8fcfc7cfb76e15e5e245786e72ae Mon Sep 17 00:00:00 2001 From: CMK Date: Fri, 22 Jul 2022 17:48:04 +0800 Subject: [PATCH 558/598] cherry-pick: 79a76b39c657fe5ecd63ead48b756e82738e7b4d --- Documentation/How-it-works.md | 75 +++++++++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 Documentation/How-it-works.md diff --git a/Documentation/How-it-works.md b/Documentation/How-it-works.md new file mode 100644 index 000000000..a1e12b186 --- /dev/null +++ b/Documentation/How-it-works.md @@ -0,0 +1,75 @@ +# How it works +The app is currently built for iOS and iPadOS. We use the MVVM architecture to construct the whole app. Some design detail may not be the best practice and welcome any suggestions for improvements. + +## Data +A typical status timeline fetches results from the database using a predicate that specifies active account-related entities displayed. Then table view data source dequeues an item to configure the view. Likes many other MVVM applications. The app binds the Core Data entity to view via Combine publisher. Because the RunLoop dispatch drawing on the next loop. So we could return quickly. + +## Layout +A timeline has many posts and each post has many components. For example avatar, name, username, timestamp, content, media, and toolbar. The app uses `AutoLayout` with `UIStackView` to place it and control whether it should hide or not. + +## Performance +Although it's easily loading timeline with hundreds of thousands of entities due to the Core Data fault mechanism. Some old devices may have slow performance when I/O bottleneck. There are two potential profile chances for entities preload fulfill and background drawing layout. + +## SwiftUI +Some view models already migrate to `@Published` annotated output. It's future-proof support for SwiftUI. There are some views already transformed to `SwiftUI` likes `MastodonRegisterView` and `ReportReasonView`. + +# Take it apart +## Targets +The app builds with those targets: + +- Mastodon: the app itself +- NotificationService: E2E push notification service +- ShareActionExtension: iOS share action +- MastodonIntent: Siri shortcuts +- AppShared: SwiftPM dependency resolve + + +## MastodonSDK +There is a self-hosted Swift Package that contains the common libraries to build this app. + +- CoreDataStack: Core Data model definition and util methods +- MastodonAsset: image and font assets +- MastodonCommon: store App Group ID +- MastodonExtension: system API extension utility +- MastodonLocalization: i18n resources +- MastodonSDK: Mastodon API client +- MastodonUI: App UI components + +#### CoreDataStack +App uses Core Data as the backend to persist all entitles from the server. So the app has the capability to keep the timeline and notifications. Another reason for using a database is it makes the app could respond to entity changes between different sources. For example, a user could skim in the home timeline and then interact with the same post on other pages with favorite or reblog actions. Core Data will handle the property modifications and notify the home timeline to update the view. + +To simplify the database operations. There is only one persistent store for all accounts. We use `domain` to identify entity for different servers (a.k.a instance). Do not mix the `domain` with the Mastodon remote server name. The domain is `mastodon.online` whatever the post (e.g. post at `mstdn.jp`) and friends from for an account sign in `mastodon.online`. Also, do not only rely on `id` because it has conflict potential in others `domain`. + +The app use one stack two context Core Data setup. There is one main managed object context for UI displaying and another background managed context for entities creating and updating. We assert the background context performs in a queue. But derive a new background context for long-time database operation to avoid concurrency persistent conflict issues should be considered. + +#### MastodonAsset +Sourcery powered assets packet. + +#### MastodonCommon +Shared code for preference and configuration. + +#### MastodonExtension +Utility extension codes for SDK. + +#### MastodonLocalization +Sourcery powered i18n packet. + +#### MastodonSDK +Mastodon API wrapper with Combine style API. + +#### MastodonUI +Mastodon app UI components. + +## NotificationService +Mastodon server accepts push notification register and we use the [toot-relay](https://github.com/DagAgren/toot-relay) to pass the server notifications to APNs. The message is E2E encrypted. The app will create an on-device private key for notification and save it into the keychain. + +When the push notification is incoming. iOS will spawn our NotificationService extension to handle the message. At that time the message is decrypted and displayed as a banner or in-app silent notification event when the app is in the foreground. All the notification count and deep-link logic are handled by the main app. + +## ShareActionExtension +The iOS Share Extension allows users to share links or media from other apps. The app uses the UIKit implementation. For simplifying we using the SwiftUI implementing a replica one but with fewer features. + +## MastodonIntent +iOS Siri shortcut supports. It allows iOS directly publish posts via Shortcut without app launching. + +## AppShared +A framework for SwiftPM packet dependency resolve. Also, for CocoaPods-Key integration but we migrate to Arkana now. From d8cf4606e2a9e53a0b23ce4fbd128696175bc750 Mon Sep 17 00:00:00 2001 From: Marcus Kida Date: Thu, 17 Nov 2022 15:33:21 +0100 Subject: [PATCH 559/598] fix: TabBar has noticeable delay when selecting next tab --- Mastodon/Scene/Root/MainTab/MainTabBarController.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/Mastodon/Scene/Root/MainTab/MainTabBarController.swift b/Mastodon/Scene/Root/MainTab/MainTabBarController.swift index 5f77d9584..d2596cefb 100644 --- a/Mastodon/Scene/Root/MainTab/MainTabBarController.swift +++ b/Mastodon/Scene/Root/MainTab/MainTabBarController.swift @@ -329,6 +329,7 @@ extension MainTabBarController { let tabBarDoubleTapGestureRecognizer = UITapGestureRecognizer() tabBarDoubleTapGestureRecognizer.numberOfTapsRequired = 2 tabBarDoubleTapGestureRecognizer.addTarget(self, action: #selector(MainTabBarController.tabBarDoubleTapGestureRecognizerHandler(_:))) + tabBarDoubleTapGestureRecognizer.delaysTouchesEnded = false tabBar.addGestureRecognizer(tabBarDoubleTapGestureRecognizer) self.isReadyForWizardAvatarButton = authContext != nil From e8e8a2a4c962e8a9fdab36eb9caf55323370d4af Mon Sep 17 00:00:00 2001 From: Marcus Kida Date: Thu, 17 Nov 2022 15:45:25 +0100 Subject: [PATCH 560/598] fix: Don't delay touches ended --- Mastodon/Scene/Root/Sidebar/SidebarViewController.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mastodon/Scene/Root/Sidebar/SidebarViewController.swift b/Mastodon/Scene/Root/Sidebar/SidebarViewController.swift index c1faafca7..8a0ed763a 100644 --- a/Mastodon/Scene/Root/Sidebar/SidebarViewController.swift +++ b/Mastodon/Scene/Root/Sidebar/SidebarViewController.swift @@ -148,7 +148,7 @@ extension SidebarViewController { let sidebarDoubleTapGestureRecognizer = UITapGestureRecognizer() sidebarDoubleTapGestureRecognizer.numberOfTapsRequired = 2 sidebarDoubleTapGestureRecognizer.addTarget(self, action: #selector(SidebarViewController.sidebarDoubleTapGestureRecognizerHandler(_:))) - sidebarDoubleTapGestureRecognizer.delaysTouchesBegan = true + sidebarDoubleTapGestureRecognizer.delaysTouchesEnded = false sidebarDoubleTapGestureRecognizer.cancelsTouchesInView = true collectionView.addGestureRecognizer(sidebarDoubleTapGestureRecognizer) From 3b1e7ed3909d6084352176b7347f4de9e186ab8c Mon Sep 17 00:00:00 2001 From: CMK Date: Thu, 17 Nov 2022 23:29:42 +0800 Subject: [PATCH 561/598] chore: update doc for how-it-works --- Documentation/How-it-works.md | 49 +++++++++++++++++++++++++---------- 1 file changed, 35 insertions(+), 14 deletions(-) diff --git a/Documentation/How-it-works.md b/Documentation/How-it-works.md index a1e12b186..1a1969623 100644 --- a/Documentation/How-it-works.md +++ b/Documentation/How-it-works.md @@ -1,14 +1,17 @@ # How it works -The app is currently built for iOS and iPadOS. We use the MVVM architecture to construct the whole app. Some design detail may not be the best practice and welcome any suggestions for improvements. +The app is currently build for iOS and iPadOS. We use the MVVM architecture to construct the whole app. Some design detail may not be the best practice. And any suggestions for improvements are welcome. ## Data -A typical status timeline fetches results from the database using a predicate that specifies active account-related entities displayed. Then table view data source dequeues an item to configure the view. Likes many other MVVM applications. The app binds the Core Data entity to view via Combine publisher. Because the RunLoop dispatch drawing on the next loop. So we could return quickly. +A typical status timeline fetches results from the database using a predicate that fetch the active account's entities. Then data source dequeues an item then configure the view. Likes many other MVVM applications. The app binds the Core Data entity to view via Combine publisher. Because the RunLoop dispatch drawing on the next loop. So we could return quickly. ## Layout -A timeline has many posts and each post has many components. For example avatar, name, username, timestamp, content, media, and toolbar. The app uses `AutoLayout` with `UIStackView` to place it and control whether it should hide or not. +A timeline has many posts and each post has many components. For example avatar, name, username, timestamp, content, media, toolbar and e.t.c. The app uses `AutoLayout` with `UIStackView` to place it and control whether it should hide or not. ## Performance -Although it's easily loading timeline with hundreds of thousands of entities due to the Core Data fault mechanism. Some old devices may have slow performance when I/O bottleneck. There are two potential profile chances for entities preload fulfill and background drawing layout. +Although it's easily loading timeline with hundreds of thousands of entities due to the Core Data fault mechanism. Some old devices may have slow performance when I/O bottleneck. There are three potential profile chances for entities: +- preload fulfill +- layout in background +- limit the data fetching ## SwiftUI Some view models already migrate to `@Published` annotated output. It's future-proof support for SwiftUI. There are some views already transformed to `SwiftUI` likes `MastodonRegisterView` and `ReportReasonView`. @@ -21,8 +24,6 @@ The app builds with those targets: - NotificationService: E2E push notification service - ShareActionExtension: iOS share action - MastodonIntent: Siri shortcuts -- AppShared: SwiftPM dependency resolve - ## MastodonSDK There is a self-hosted Swift Package that contains the common libraries to build this app. @@ -30,29 +31,52 @@ There is a self-hosted Swift Package that contains the common libraries to build - CoreDataStack: Core Data model definition and util methods - MastodonAsset: image and font assets - MastodonCommon: store App Group ID +- MastodonCore: the logic for the app - MastodonExtension: system API extension utility - MastodonLocalization: i18n resources - MastodonSDK: Mastodon API client - MastodonUI: App UI components #### CoreDataStack -App uses Core Data as the backend to persist all entitles from the server. So the app has the capability to keep the timeline and notifications. Another reason for using a database is it makes the app could respond to entity changes between different sources. For example, a user could skim in the home timeline and then interact with the same post on other pages with favorite or reblog actions. Core Data will handle the property modifications and notify the home timeline to update the view. +App uses Core Data as the backend to persist all entitles from the server. So the app has the capability to keep the timeline and notifications. Another reason for using a database is it makes the app could respond to entity changes between different sources. For example, a user could skim in the home timeline and then interact with the same post on other pages with favorite or reblog action. Core Data will handle the property modifications and notify the home timeline to update the view. -To simplify the database operations. There is only one persistent store for all accounts. We use `domain` to identify entity for different servers (a.k.a instance). Do not mix the `domain` with the Mastodon remote server name. The domain is `mastodon.online` whatever the post (e.g. post at `mstdn.jp`) and friends from for an account sign in `mastodon.online`. Also, do not only rely on `id` because it has conflict potential in others `domain`. +To simplify the database operations. There is only one persistent store for all accounts. We use `domain` to identify entity for different servers (a.k.a instance). Do not mix the `domain` with the Mastodon remote server name. For example. The domain is `mastodon.online` whereever the post (e.g. post come from `mstdn.jp`) and friends from for the account sign in `mastodon.online`. Also, do not only rely on `id` because it has conflict potential between different `domain`. The unique predicate is `domain` + `id`. -The app use one stack two context Core Data setup. There is one main managed object context for UI displaying and another background managed context for entities creating and updating. We assert the background context performs in a queue. But derive a new background context for long-time database operation to avoid concurrency persistent conflict issues should be considered. +The app use "One stack, two context" setup. There is one main managed object context for UI displaying and another background managed context for entities creating and updating. We assert the background context performs in a queue. Also, the app could accept mulitple background context model. Then the flag `-com.apple.CoreData.ConcurrencyDebug 1` will be usful. + +###### How to create a new Entity +First, select the `CoreData.xcdatamodeld` file and in menu `Editor > Add Model Version…` to create a new version. Make sure active the new version in the inspect panel. e.g. `Model Version. Current > "Core Data 5"` + +Then use the `Add Entity` button create new Entity. +1. Give a name in data model inspect panel. +2. Also, set the `Module` to `CoreDataStack`. +3. Set the `Codegen` to `Manual/None`. We use `Sourery` generates the template code. +4. Create the `Entity.swift` file and declear the properties and relationships. + +###### How to add or remove property for Entity +We using the Core Data lightweight migration. Please check the rules detail [here](https://developer.apple.com/documentation/coredata/using_lightweight_migration). And keep in mind that we using two-way relationship. And a relationship could be one-to-one, one-to-many/many-to-one. + +Tip: + +Please check the `Soucery` and use that generates getter and setter for properties and relationships. It's could save you time. To take the benefit from the dynamic property. We can declare a raw value property and then use compute property to construct the struct we want (e.g. `Feed.acct`). Or control the primitive by hand and declare the mirror type for this value (e.g `Status.attachments`). + +###### How to persist the Entity +Please check the `Persistence+Status.swift`. We follow the pattern: migrate the old one if exists. Otherwise, create a new one. (Maybe some improvements could be adopted?) #### MastodonAsset -Sourcery powered assets packet. +Sourcery powered assets package. #### MastodonCommon Shared code for preference and configuration. +### MastodonCore +The core logic to drive the app. + #### MastodonExtension Utility extension codes for SDK. #### MastodonLocalization -Sourcery powered i18n packet. +Sourcery powered i18n package. #### MastodonSDK Mastodon API wrapper with Combine style API. @@ -70,6 +94,3 @@ The iOS Share Extension allows users to share links or media from other apps. Th ## MastodonIntent iOS Siri shortcut supports. It allows iOS directly publish posts via Shortcut without app launching. - -## AppShared -A framework for SwiftPM packet dependency resolve. Also, for CocoaPods-Key integration but we migrate to Arkana now. From 75edb750714ac37d2f9c2b25aea54f64a57264cb Mon Sep 17 00:00:00 2001 From: CMK Date: Thu, 17 Nov 2022 23:39:46 +0800 Subject: [PATCH 562/598] chore: update the describe for the share extension --- Documentation/How-it-works.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/How-it-works.md b/Documentation/How-it-works.md index 1a1969623..6b48159e5 100644 --- a/Documentation/How-it-works.md +++ b/Documentation/How-it-works.md @@ -90,7 +90,7 @@ Mastodon server accepts push notification register and we use the [toot-relay](h When the push notification is incoming. iOS will spawn our NotificationService extension to handle the message. At that time the message is decrypted and displayed as a banner or in-app silent notification event when the app is in the foreground. All the notification count and deep-link logic are handled by the main app. ## ShareActionExtension -The iOS Share Extension allows users to share links or media from other apps. The app uses the UIKit implementation. For simplifying we using the SwiftUI implementing a replica one but with fewer features. +The iOS Share Extension allows users to share links or media from other apps. The app uses the same implementation for the main app and the share extension. Then different is less available memoery for extension so maybe some memory bounded task could crash the app. (Plesae file the issue) ## MastodonIntent iOS Siri shortcut supports. It allows iOS directly publish posts via Shortcut without app launching. From 1ca3b66e404059d7a20b3251e83adaf36aff5824 Mon Sep 17 00:00:00 2001 From: CMK Date: Fri, 18 Nov 2022 00:00:17 +0800 Subject: [PATCH 563/598] chore: code cleanup --- Mastodon/Scene/Thread/ThreadViewModel.swift | 126 -------------------- 1 file changed, 126 deletions(-) diff --git a/Mastodon/Scene/Thread/ThreadViewModel.swift b/Mastodon/Scene/Thread/ThreadViewModel.swift index 735d85cd4..c845ce64c 100644 --- a/Mastodon/Scene/Thread/ThreadViewModel.swift +++ b/Mastodon/Scene/Thread/ThreadViewModel.swift @@ -28,12 +28,6 @@ class ThreadViewModel { let context: AppContext let authContext: AuthContext let mastodonStatusThreadViewModel: MastodonStatusThreadViewModel - -// let cellFrameCache = NSCache() -// let existStatusFetchedResultsController: StatusFetchedResultsController - -// weak var contentOffsetAdjustableTimelineViewControllerDelegate: ContentOffsetAdjustableTimelineViewControllerDelegate? -// weak var tableView: UITableView? // output var diffableDataSource: UITableViewDiffableDataSource? @@ -62,12 +56,6 @@ class ThreadViewModel { self.authContext = authContext self.root = optionalRoot self.mastodonStatusThreadViewModel = MastodonStatusThreadViewModel(context: context) -// self.rootNode = CurrentValueSubject(optionalStatus.flatMap { RootNode(domain: $0.domain, statusID: $0.id, replyToID: $0.inReplyToID) }) -// self.rootItem = CurrentValueSubject(optionalStatus.flatMap { Item.root(statusObjectID: $0.objectID, attribute: Item.StatusAttribute()) }) -// self.existStatusFetchedResultsController = StatusFetchedResultsController(managedObjectContext: context.managedObjectContext, domain: nil, additionalTweetPredicate: nil) -// self.navigationBarTitle = CurrentValueSubject( -// optionalStatus.flatMap { L10n.Scene.Thread.title($0.author.displayNameWithFallback) }) -// self.navigationBarTitleEmojiMeta = CurrentValueSubject(optionalStatus.flatMap { $0.author.emojis.asDictionary } ?? [:]) // end init ManagedObjectObserver.observe(context: context.managedObjectContext) @@ -85,24 +73,6 @@ class ThreadViewModel { }) .store(in: &disposeBag) -// // bind fetcher domain -// context.authenticationService.activeMastodonAuthenticationBox -// .receive(on: RunLoop.main) -// .sink { [weak self] box in -// guard let self = self else { return } -// self.existStatusFetchedResultsController.domain.value = box?.domain -// } -// .store(in: &disposeBag) -// -// rootNode -// .receive(on: DispatchQueue.main) -// .sink { [weak self] rootNode in -// guard let self = self else { return } -// guard rootNode != nil else { return } -// self.loadThreadStateMachine.enter(LoadThreadState.Loading.self) -// } -// .store(in: &disposeBag) - $root .receive(on: DispatchQueue.main) .sink { [weak self] root in @@ -125,102 +95,6 @@ class ThreadViewModel { }() } .store(in: &disposeBag) - -// rootItem -// .receive(on: DispatchQueue.main) -// .sink { [weak self] rootItem in -// guard let self = self else { return } -// guard case let .root(objectID, _) = rootItem else { return } -// self.context.managedObjectContext.perform { -// guard let status = self.context.managedObjectContext.object(with: objectID) as? Status else { -// return -// } -// self.rootItemObserver = ManagedObjectObserver.observe(object: status) -// .receive(on: DispatchQueue.main) -// .sink(receiveCompletion: { _ in -// // do nothing -// }, receiveValue: { [weak self] change in -// guard let self = self else { return } -// switch change.changeType { -// case .delete: -// self.rootItem.value = nil -// default: -// break -// } -// }) -// } -// } -// .store(in: &disposeBag) -// -// ancestorNodes -// .receive(on: DispatchQueue.main) -// .compactMap { [weak self] nodes -> [Item]? in -// guard let self = self else { return nil } -// guard !nodes.isEmpty else { return [] } -// -// guard let diffableDataSource = self.diffableDataSource else { return nil } -// let oldSnapshot = diffableDataSource.snapshot() -// var oldSnapshotAttributeDict: [NSManagedObjectID : Item.StatusAttribute] = [:] -// for item in oldSnapshot.itemIdentifiers { -// switch item { -// case .reply(let objectID, let attribute): -// oldSnapshotAttributeDict[objectID] = attribute -// default: -// break -// } -// } -// -// var items: [Item] = [] -// for node in nodes { -// let attribute = oldSnapshotAttributeDict[node.statusObjectID] ?? Item.StatusAttribute() -// items.append(Item.reply(statusObjectID: node.statusObjectID, attribute: attribute)) -// } -// -// return items.reversed() -// } -// .assign(to: \.value, on: ancestorItems) -// .store(in: &disposeBag) -// -// descendantNodes -// .receive(on: DispatchQueue.main) -// .compactMap { [weak self] nodes -> [Item]? in -// guard let self = self else { return nil } -// guard !nodes.isEmpty else { return [] } -// -// guard let diffableDataSource = self.diffableDataSource else { return nil } -// let oldSnapshot = diffableDataSource.snapshot() -// var oldSnapshotAttributeDict: [NSManagedObjectID : Item.StatusAttribute] = [:] -// for item in oldSnapshot.itemIdentifiers { -// switch item { -// case .leaf(let objectID, let attribute): -// oldSnapshotAttributeDict[objectID] = attribute -// default: -// break -// } -// } -// -// var items: [Item] = [] -// -// func buildThread(node: LeafNode) { -// let attribute = oldSnapshotAttributeDict[node.objectID] ?? Item.StatusAttribute() -// items.append(Item.leaf(statusObjectID: node.objectID, attribute: attribute)) -// // only expand the first child -// if let firstChild = node.children.first { -// if !node.isChildrenExpanded { -// items.append(Item.leafBottomLoader(statusObjectID: node.objectID)) -// } else { -// buildThread(node: firstChild) -// } -// } -// } -// -// for node in nodes { -// buildThread(node: node) -// } -// return items -// } -// .assign(to: \.value, on: descendantItems) -// .store(in: &disposeBag) } deinit { From b5d883865dafa7dbe37596e2ff8c79bca87e758e Mon Sep 17 00:00:00 2001 From: CMK Date: Fri, 18 Nov 2022 00:16:21 +0800 Subject: [PATCH 564/598] fix: prefer the original mode to top-two-tier tree mode --- .../ThreadViewModel+LoadThreadState.swift | 20 +++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/Mastodon/Scene/Thread/ThreadViewModel+LoadThreadState.swift b/Mastodon/Scene/Thread/ThreadViewModel+LoadThreadState.swift index 050670be7..1c6c40190 100644 --- a/Mastodon/Scene/Thread/ThreadViewModel+LoadThreadState.swift +++ b/Mastodon/Scene/Thread/ThreadViewModel+LoadThreadState.swift @@ -92,19 +92,27 @@ extension ThreadViewModel.LoadThreadState { from: response.value.ancestors ) ) + // deprecated: Tree mode replies + // viewModel.mastodonStatusThreadViewModel.appendDescendant( + // domain: threadContext.domain, + // nodes: MastodonStatusThreadViewModel.Node.children( + // of: threadContext.statusID, + // from: response.value.descendants + // ) + // ) + + // new: the same order from API viewModel.mastodonStatusThreadViewModel.appendDescendant( domain: threadContext.domain, - nodes: MastodonStatusThreadViewModel.Node.children( - of: threadContext.statusID, - from: response.value.descendants - ) + nodes: response.value.descendants.map { status in + return .init(statusID: status.id, children: []) + } ) } catch { logger.log(level: .debug, "\((#file as NSString).lastPathComponent, privacy: .public)[\(#line, privacy: .public)], \(#function, privacy: .public): fetch status context for \(threadContext.statusID) fail: \(error.localizedDescription)") await enter(state: Fail.self) } - - } + } // end Task } } From abe25f2156855b4bdb7b31fed220548c9d0f9bb5 Mon Sep 17 00:00:00 2001 From: Stefan Painhapp <4242986+painhapp@users.noreply.github.com> Date: Fri, 18 Nov 2022 01:45:27 +0900 Subject: [PATCH 565/598] Refactor pin to (parent) layout constraints as extension of UIView --- .../Scene/Compose/ComposeViewController.swift | 14 +------ .../DiscoveryCommunityViewController.swift | 7 +--- .../DiscoveryForYouViewController.swift | 7 +--- .../DiscoveryHashtagsViewController.swift | 7 +--- .../News/DiscoveryNewsViewController.swift | 7 +--- .../Posts/DiscoveryPostsViewController.swift | 7 +--- .../HashtagTimelineViewController.swift | 7 +--- .../HomeTimelineViewController.swift | 7 +--- .../HomeTimelineNavigationBarTitleView.swift | 7 +--- .../MediaPreviewViewController.swift | 7 +--- .../MediaPreviewVideoViewController.swift | 14 +------ .../NotificationTimelineViewController.swift | 7 +--- .../View/PickServerCategoryView.swift | 7 +--- ...ckServerServerSectionTableHeaderView.swift | 5 +-- .../MastodonRegisterViewController.swift | 7 +--- .../MastodonResendEmailViewController.swift | 7 +--- .../MastodonServerRulesViewController.swift | 7 +--- .../Share/NavigationActionView.swift | 14 +------ .../OnboardingNavigationController.swift | 7 +--- .../View/WelcomeIllustrationView.swift | 7 +--- .../Welcome/WelcomeViewController.swift | 14 +------ .../About/ProfileAboutViewController.swift | 7 +--- .../Bookmark/BookmarkViewController.swift | 7 +--- .../FamiliarFollowersViewController.swift | 7 +--- .../Favorite/FavoriteViewController.swift | 7 +--- .../Follower/FollowerListViewController.swift | 7 +--- .../FollowingListViewController.swift | 7 +--- .../Header/View/ProfileHeaderView.swift | 40 +++---------------- .../Paging/ProfilePagingViewController.swift | 7 +--- .../Scene/Profile/ProfileViewController.swift | 7 +--- .../Timeline/UserTimelineViewController.swift | 7 +--- .../FavoritedByViewController.swift | 7 +--- .../RebloggedByViewController.swift | 7 +--- .../Report/Report/ReportViewController.swift | 7 +--- .../ReportReasonViewController.swift | 7 +--- .../ReportResultViewController.swift | 7 +--- .../ReportServerRulesViewController.swift | 7 +--- .../ReportStatusViewController.swift | 7 +--- .../ReportSupplementaryViewController.swift | 7 +--- .../Cell/ReportCommentTableViewCell.swift | 5 +-- .../ReportResultActionTableViewCell.swift | 7 +--- .../Root/MainTab/MainTabBarController.swift | 7 +--- .../Root/Sidebar/SidebarViewController.swift | 7 +--- .../Search/Cell/TrendCollectionViewCell.swift | 7 +--- .../Search/Search/SearchViewController.swift | 14 +------ .../SearchRecommendCollectionHeader.swift | 7 +--- .../SearchDetailViewController.swift | 14 +------ .../SearchHistoryViewController.swift | 7 +--- .../SearchResultViewController.swift | 7 +--- .../SettingsAppearanceTableViewCell.swift | 7 +--- .../Settings/SettingsViewController.swift | 7 +--- .../Scene/Settings/View/AppearanceView.swift | 12 +----- ...ontextMenuImagePreviewViewController.swift | 7 +--- .../Content/ContentWarningOverlayView.swift | 21 ++-------- ...ubleTitleLabelNavigationBarTitleView.swift | 7 +--- .../Share/Webview/WebViewController.swift | 7 +--- .../SuggestionAccountCollectionViewCell.swift | 7 +--- .../SuggestionAccountTableViewCell.swift | 7 +--- .../Scene/Thread/ThreadViewController.swift | 7 +--- .../Sources/MastodonExtension/UIView.swift | 17 ++++++++ .../AutoCompleteViewController.swift | 7 +--- .../View/AutoCompleteTopChevronView.swift | 7 +--- .../ComposeContentViewController.swift | 7 +--- .../CustomEmojiPickerInputView.swift | 7 +--- ...tomEmojiPickerItemCollectionViewCell.swift | 7 +--- .../MastodonUI/SwiftUI/AnimatedImage.swift | 7 +--- .../MastodonUI/View/Button/AvatarButton.swift | 7 +--- .../Container/MediaGridContainerView.swift | 14 +------ .../FamiliarFollowersDashboardView.swift | 7 +--- .../MastodonUI/View/Content/MediaView.swift | 35 +++------------- .../MastodonUI/View/Content/NewsView.swift | 7 +--- .../View/Content/NotificationView.swift | 28 ++----------- .../View/Content/PollOptionView.swift | 14 +------ .../View/Content/ProfileCardView.swift | 12 +----- .../MastodonUI/View/Content/StatusView.swift | 21 ++-------- .../MastodonUI/View/Content/UserView.swift | 7 +--- .../View/Control/SpoilerOverlayView.swift | 7 +--- .../PollOptionTableViewCell.swift | 7 +--- .../ProfileCardTableViewCell.swift | 7 +--- .../TimelineLoaderTableViewCell.swift | 7 +--- .../Scene/ShareViewController.swift | 7 +--- 81 files changed, 123 insertions(+), 626 deletions(-) diff --git a/Mastodon/Scene/Compose/ComposeViewController.swift b/Mastodon/Scene/Compose/ComposeViewController.swift index fd5ed5817..c0b83e6c8 100644 --- a/Mastodon/Scene/Compose/ComposeViewController.swift +++ b/Mastodon/Scene/Compose/ComposeViewController.swift @@ -58,12 +58,7 @@ final class ComposeViewController: UIViewController, NeedsDependency { let shadowBackgroundContainer = ShadowBackgroundContainer() publishButton.translatesAutoresizingMaskIntoConstraints = false shadowBackgroundContainer.addSubview(publishButton) - NSLayoutConstraint.activate([ - publishButton.topAnchor.constraint(equalTo: shadowBackgroundContainer.topAnchor), - publishButton.leadingAnchor.constraint(equalTo: shadowBackgroundContainer.leadingAnchor), - publishButton.trailingAnchor.constraint(equalTo: shadowBackgroundContainer.trailingAnchor), - publishButton.bottomAnchor.constraint(equalTo: shadowBackgroundContainer.bottomAnchor), - ]) + publishButton.pinToParent() let barButtonItem = UIBarButtonItem(customView: shadowBackgroundContainer) return barButtonItem }() @@ -105,12 +100,7 @@ extension ComposeViewController { addChild(composeContentViewController) composeContentViewController.view.translatesAutoresizingMaskIntoConstraints = false view.addSubview(composeContentViewController.view) - NSLayoutConstraint.activate([ - composeContentViewController.view.topAnchor.constraint(equalTo: view.topAnchor), - composeContentViewController.view.leadingAnchor.constraint(equalTo: view.leadingAnchor), - composeContentViewController.view.trailingAnchor.constraint(equalTo: view.trailingAnchor), - composeContentViewController.view.bottomAnchor.constraint(equalTo: view.bottomAnchor), - ]) + composeContentViewController.view.pinToParent() composeContentViewController.didMove(toParent: self) // bind title diff --git a/Mastodon/Scene/Discovery/Community/DiscoveryCommunityViewController.swift b/Mastodon/Scene/Discovery/Community/DiscoveryCommunityViewController.swift index 31635dc85..870bfc72a 100644 --- a/Mastodon/Scene/Discovery/Community/DiscoveryCommunityViewController.swift +++ b/Mastodon/Scene/Discovery/Community/DiscoveryCommunityViewController.swift @@ -57,12 +57,7 @@ extension DiscoveryCommunityViewController { tableView.translatesAutoresizingMaskIntoConstraints = false view.addSubview(tableView) - NSLayoutConstraint.activate([ - tableView.topAnchor.constraint(equalTo: view.topAnchor), - tableView.leadingAnchor.constraint(equalTo: view.leadingAnchor), - tableView.trailingAnchor.constraint(equalTo: view.trailingAnchor), - tableView.bottomAnchor.constraint(equalTo: view.bottomAnchor), - ]) + tableView.pinToParent() tableView.refreshControl = refreshControl refreshControl.addTarget(self, action: #selector(DiscoveryCommunityViewController.refreshControlValueChanged(_:)), for: .valueChanged) diff --git a/Mastodon/Scene/Discovery/ForYou/DiscoveryForYouViewController.swift b/Mastodon/Scene/Discovery/ForYou/DiscoveryForYouViewController.swift index 52e5e1856..dec1d9c72 100644 --- a/Mastodon/Scene/Discovery/ForYou/DiscoveryForYouViewController.swift +++ b/Mastodon/Scene/Discovery/ForYou/DiscoveryForYouViewController.swift @@ -56,12 +56,7 @@ extension DiscoveryForYouViewController { tableView.translatesAutoresizingMaskIntoConstraints = false view.addSubview(tableView) - NSLayoutConstraint.activate([ - tableView.topAnchor.constraint(equalTo: view.topAnchor), - tableView.leadingAnchor.constraint(equalTo: view.leadingAnchor), - tableView.trailingAnchor.constraint(equalTo: view.trailingAnchor), - tableView.bottomAnchor.constraint(equalTo: view.bottomAnchor), - ]) + tableView.pinToParent() tableView.delegate = self viewModel.setupDiffableDataSource( diff --git a/Mastodon/Scene/Discovery/Hashtags/DiscoveryHashtagsViewController.swift b/Mastodon/Scene/Discovery/Hashtags/DiscoveryHashtagsViewController.swift index 1c855c254..2d8212ca9 100644 --- a/Mastodon/Scene/Discovery/Hashtags/DiscoveryHashtagsViewController.swift +++ b/Mastodon/Scene/Discovery/Hashtags/DiscoveryHashtagsViewController.swift @@ -56,12 +56,7 @@ extension DiscoveryHashtagsViewController { tableView.translatesAutoresizingMaskIntoConstraints = false view.addSubview(tableView) - NSLayoutConstraint.activate([ - tableView.topAnchor.constraint(equalTo: view.topAnchor), - tableView.leadingAnchor.constraint(equalTo: view.leadingAnchor), - tableView.trailingAnchor.constraint(equalTo: view.trailingAnchor), - tableView.bottomAnchor.constraint(equalTo: view.bottomAnchor), - ]) + tableView.pinToParent() tableView.refreshControl = refreshControl refreshControl.addTarget(self, action: #selector(DiscoveryHashtagsViewController.refreshControlValueChanged(_:)), for: .valueChanged) diff --git a/Mastodon/Scene/Discovery/News/DiscoveryNewsViewController.swift b/Mastodon/Scene/Discovery/News/DiscoveryNewsViewController.swift index d1634db82..7b9579a4b 100644 --- a/Mastodon/Scene/Discovery/News/DiscoveryNewsViewController.swift +++ b/Mastodon/Scene/Discovery/News/DiscoveryNewsViewController.swift @@ -56,12 +56,7 @@ extension DiscoveryNewsViewController { tableView.translatesAutoresizingMaskIntoConstraints = false view.addSubview(tableView) - NSLayoutConstraint.activate([ - tableView.topAnchor.constraint(equalTo: view.topAnchor), - tableView.leadingAnchor.constraint(equalTo: view.leadingAnchor), - tableView.trailingAnchor.constraint(equalTo: view.trailingAnchor), - tableView.bottomAnchor.constraint(equalTo: view.bottomAnchor), - ]) + tableView.pinToParent() tableView.delegate = self viewModel.setupDiffableDataSource( diff --git a/Mastodon/Scene/Discovery/Posts/DiscoveryPostsViewController.swift b/Mastodon/Scene/Discovery/Posts/DiscoveryPostsViewController.swift index 893f564a3..9d772a27e 100644 --- a/Mastodon/Scene/Discovery/Posts/DiscoveryPostsViewController.swift +++ b/Mastodon/Scene/Discovery/Posts/DiscoveryPostsViewController.swift @@ -58,12 +58,7 @@ extension DiscoveryPostsViewController { tableView.translatesAutoresizingMaskIntoConstraints = false view.addSubview(tableView) - NSLayoutConstraint.activate([ - tableView.topAnchor.constraint(equalTo: view.topAnchor), - tableView.leadingAnchor.constraint(equalTo: view.leadingAnchor), - tableView.trailingAnchor.constraint(equalTo: view.trailingAnchor), - tableView.bottomAnchor.constraint(equalTo: view.bottomAnchor), - ]) + tableView.pinToParent() discoveryIntroBannerView.translatesAutoresizingMaskIntoConstraints = false view.addSubview(discoveryIntroBannerView) diff --git a/Mastodon/Scene/HashtagTimeline/HashtagTimelineViewController.swift b/Mastodon/Scene/HashtagTimeline/HashtagTimelineViewController.swift index aad97283c..4a0be3816 100644 --- a/Mastodon/Scene/HashtagTimeline/HashtagTimelineViewController.swift +++ b/Mastodon/Scene/HashtagTimeline/HashtagTimelineViewController.swift @@ -80,12 +80,7 @@ extension HashtagTimelineViewController { tableView.translatesAutoresizingMaskIntoConstraints = false view.addSubview(tableView) - NSLayoutConstraint.activate([ - tableView.topAnchor.constraint(equalTo: view.topAnchor), - tableView.leadingAnchor.constraint(equalTo: view.leadingAnchor), - tableView.trailingAnchor.constraint(equalTo: view.trailingAnchor), - tableView.bottomAnchor.constraint(equalTo: view.bottomAnchor), - ]) + tableView.pinToParent() tableView.delegate = self viewModel.setupDiffableDataSource( diff --git a/Mastodon/Scene/HomeTimeline/HomeTimelineViewController.swift b/Mastodon/Scene/HomeTimeline/HomeTimelineViewController.swift index e83101796..831fc4ce0 100644 --- a/Mastodon/Scene/HomeTimeline/HomeTimelineViewController.swift +++ b/Mastodon/Scene/HomeTimeline/HomeTimelineViewController.swift @@ -158,12 +158,7 @@ extension HomeTimelineViewController { tableView.translatesAutoresizingMaskIntoConstraints = false view.addSubview(tableView) - NSLayoutConstraint.activate([ - tableView.topAnchor.constraint(equalTo: view.topAnchor), - tableView.leadingAnchor.constraint(equalTo: view.leadingAnchor), - tableView.trailingAnchor.constraint(equalTo: view.trailingAnchor), - tableView.bottomAnchor.constraint(equalTo: view.bottomAnchor), - ]) + tableView.pinToParent() // // layout publish progress publishProgressView.translatesAutoresizingMaskIntoConstraints = false diff --git a/Mastodon/Scene/HomeTimeline/View/HomeTimelineNavigationBarTitleView.swift b/Mastodon/Scene/HomeTimeline/View/HomeTimelineNavigationBarTitleView.swift index 400b4ee98..38b80fe28 100644 --- a/Mastodon/Scene/HomeTimeline/View/HomeTimelineNavigationBarTitleView.swift +++ b/Mastodon/Scene/HomeTimeline/View/HomeTimelineNavigationBarTitleView.swift @@ -47,12 +47,7 @@ extension HomeTimelineNavigationBarTitleView { private func _init() { containerView.translatesAutoresizingMaskIntoConstraints = false addSubview(containerView) - NSLayoutConstraint.activate([ - containerView.topAnchor.constraint(equalTo: topAnchor), - containerView.leadingAnchor.constraint(equalTo: leadingAnchor), - containerView.trailingAnchor.constraint(equalTo: trailingAnchor), - containerView.bottomAnchor.constraint(equalTo: bottomAnchor), - ]) + containerView.pinToParent() containerView.addArrangedSubview(logoButton) button.translatesAutoresizingMaskIntoConstraints = false diff --git a/Mastodon/Scene/MediaPreview/MediaPreviewViewController.swift b/Mastodon/Scene/MediaPreview/MediaPreviewViewController.swift index c6552bcba..df3fed7d1 100644 --- a/Mastodon/Scene/MediaPreview/MediaPreviewViewController.swift +++ b/Mastodon/Scene/MediaPreview/MediaPreviewViewController.swift @@ -65,12 +65,7 @@ extension MediaPreviewViewController { pagingViewController.view.translatesAutoresizingMaskIntoConstraints = false addChild(pagingViewController) visualEffectView.contentView.addSubview(pagingViewController.view) - NSLayoutConstraint.activate([ - visualEffectView.topAnchor.constraint(equalTo: pagingViewController.view.topAnchor), - visualEffectView.bottomAnchor.constraint(equalTo: pagingViewController.view.bottomAnchor), - visualEffectView.leadingAnchor.constraint(equalTo: pagingViewController.view.leadingAnchor), - visualEffectView.trailingAnchor.constraint(equalTo: pagingViewController.view.trailingAnchor), - ]) + visualEffectView.pinTo(to: pagingViewController.view) pagingViewController.didMove(toParent: self) closeButtonBackground.translatesAutoresizingMaskIntoConstraints = false diff --git a/Mastodon/Scene/MediaPreview/Video/MediaPreviewVideoViewController.swift b/Mastodon/Scene/MediaPreview/Video/MediaPreviewVideoViewController.swift index 7bdbbfed2..5c18c1e5e 100644 --- a/Mastodon/Scene/MediaPreview/Video/MediaPreviewVideoViewController.swift +++ b/Mastodon/Scene/MediaPreview/Video/MediaPreviewVideoViewController.swift @@ -39,23 +39,13 @@ extension MediaPreviewVideoViewController { addChild(playerViewController) playerViewController.view.translatesAutoresizingMaskIntoConstraints = false view.addSubview(playerViewController.view) - NSLayoutConstraint.activate([ - playerViewController.view.centerXAnchor.constraint(equalTo: view.centerXAnchor), - playerViewController.view.centerYAnchor.constraint(equalTo: view.centerYAnchor), - playerViewController.view.widthAnchor.constraint(equalTo: view.widthAnchor), - playerViewController.view.heightAnchor.constraint(equalTo: view.heightAnchor), - ]) + playerViewController.pinToParent() playerViewController.didMove(toParent: self) if let contentOverlayView = playerViewController.contentOverlayView { previewImageView.translatesAutoresizingMaskIntoConstraints = false contentOverlayView.addSubview(previewImageView) - NSLayoutConstraint.activate([ - previewImageView.topAnchor.constraint(equalTo: contentOverlayView.topAnchor), - previewImageView.leadingAnchor.constraint(equalTo: contentOverlayView.leadingAnchor), - previewImageView.trailingAnchor.constraint(equalTo: contentOverlayView.trailingAnchor), - previewImageView.bottomAnchor.constraint(equalTo: contentOverlayView.bottomAnchor), - ]) + previewImageView.pinToParent() } playerViewController.delegate = self diff --git a/Mastodon/Scene/Notification/NotificationTimeline/NotificationTimelineViewController.swift b/Mastodon/Scene/Notification/NotificationTimeline/NotificationTimelineViewController.swift index d088bb783..9b7416afc 100644 --- a/Mastodon/Scene/Notification/NotificationTimeline/NotificationTimelineViewController.swift +++ b/Mastodon/Scene/Notification/NotificationTimeline/NotificationTimelineViewController.swift @@ -55,12 +55,7 @@ extension NotificationTimelineViewController { tableView.translatesAutoresizingMaskIntoConstraints = false view.addSubview(tableView) - NSLayoutConstraint.activate([ - tableView.topAnchor.constraint(equalTo: view.topAnchor), - tableView.leadingAnchor.constraint(equalTo: view.leadingAnchor), - tableView.trailingAnchor.constraint(equalTo: view.trailingAnchor), - tableView.bottomAnchor.constraint(equalTo: view.bottomAnchor), - ]) + tableView.pinToParent() tableView.delegate = self viewModel.setupDiffableDataSource( diff --git a/Mastodon/Scene/Onboarding/PickServer/View/PickServerCategoryView.swift b/Mastodon/Scene/Onboarding/PickServer/View/PickServerCategoryView.swift index bfa3343bd..aba5a87dc 100644 --- a/Mastodon/Scene/Onboarding/PickServer/View/PickServerCategoryView.swift +++ b/Mastodon/Scene/Onboarding/PickServer/View/PickServerCategoryView.swift @@ -48,12 +48,7 @@ extension PickServerCategoryView { container.translatesAutoresizingMaskIntoConstraints = false addSubview(container) - NSLayoutConstraint.activate([ - container.topAnchor.constraint(equalTo: topAnchor), - container.leadingAnchor.constraint(equalTo: leadingAnchor), - container.trailingAnchor.constraint(equalTo: trailingAnchor), - container.bottomAnchor.constraint(equalTo: bottomAnchor), - ]) + container.pinToParent() container.addArrangedSubview(titleLabel) highlightedIndicatorView.translatesAutoresizingMaskIntoConstraints = false diff --git a/Mastodon/Scene/Onboarding/PickServer/View/PickServerServerSectionTableHeaderView.swift b/Mastodon/Scene/Onboarding/PickServer/View/PickServerServerSectionTableHeaderView.swift index ae8c16bb8..f4b05cab3 100644 --- a/Mastodon/Scene/Onboarding/PickServer/View/PickServerServerSectionTableHeaderView.swift +++ b/Mastodon/Scene/Onboarding/PickServer/View/PickServerServerSectionTableHeaderView.swift @@ -83,11 +83,8 @@ final class PickServerServerSectionTableHeaderView: UIView { let paddingView = UIView() paddingView.translatesAutoresizingMaskIntoConstraints = false containerView.addSubview(paddingView) + paddingView.pinToParent() NSLayoutConstraint.activate([ - paddingView.topAnchor.constraint(equalTo: containerView.topAnchor), - paddingView.leadingAnchor.constraint(equalTo: imageView.trailingAnchor), - paddingView.trailingAnchor.constraint(equalTo: containerView.trailingAnchor), - paddingView.bottomAnchor.constraint(equalTo: containerView.bottomAnchor), paddingView.widthAnchor.constraint(equalToConstant: 4).priority(.defaultHigh), ]) return containerView diff --git a/Mastodon/Scene/Onboarding/Register/MastodonRegisterViewController.swift b/Mastodon/Scene/Onboarding/Register/MastodonRegisterViewController.swift index dc5152f98..f239e59b7 100644 --- a/Mastodon/Scene/Onboarding/Register/MastodonRegisterViewController.swift +++ b/Mastodon/Scene/Onboarding/Register/MastodonRegisterViewController.swift @@ -85,12 +85,7 @@ extension MastodonRegisterViewController { addChild(hostingViewController) hostingViewController.view.translatesAutoresizingMaskIntoConstraints = false view.addSubview(hostingViewController.view) - NSLayoutConstraint.activate([ - hostingViewController.view.topAnchor.constraint(equalTo: view.topAnchor), - hostingViewController.view.leadingAnchor.constraint(equalTo: view.leadingAnchor), - hostingViewController.view.trailingAnchor.constraint(equalTo: view.trailingAnchor), - hostingViewController.view.bottomAnchor.constraint(equalTo: view.bottomAnchor), - ]) + hostingViewController.view.pinToParent() navigationActionView.translatesAutoresizingMaskIntoConstraints = false view.addSubview(navigationActionView) diff --git a/Mastodon/Scene/Onboarding/ResendEmail/MastodonResendEmailViewController.swift b/Mastodon/Scene/Onboarding/ResendEmail/MastodonResendEmailViewController.swift index 178d489be..d6870785c 100644 --- a/Mastodon/Scene/Onboarding/ResendEmail/MastodonResendEmailViewController.swift +++ b/Mastodon/Scene/Onboarding/ResendEmail/MastodonResendEmailViewController.swift @@ -49,12 +49,7 @@ extension MastodonResendEmailViewController { webView.translatesAutoresizingMaskIntoConstraints = false view.addSubview(webView) - NSLayoutConstraint.activate([ - webView.topAnchor.constraint(equalTo: view.topAnchor), - webView.leadingAnchor.constraint(equalTo: view.leadingAnchor), - webView.trailingAnchor.constraint(equalTo: view.trailingAnchor), - webView.bottomAnchor.constraint(equalTo: view.bottomAnchor), - ]) + webView.pinToParent() let request = URLRequest(url: viewModel.resendEmailURL) webView.navigationDelegate = self.viewModel.navigationDelegate diff --git a/Mastodon/Scene/Onboarding/ServerRules/MastodonServerRulesViewController.swift b/Mastodon/Scene/Onboarding/ServerRules/MastodonServerRulesViewController.swift index e22ea5748..ea0b58e28 100644 --- a/Mastodon/Scene/Onboarding/ServerRules/MastodonServerRulesViewController.swift +++ b/Mastodon/Scene/Onboarding/ServerRules/MastodonServerRulesViewController.swift @@ -69,12 +69,7 @@ extension MastodonServerRulesViewController { tableView.translatesAutoresizingMaskIntoConstraints = false view.addSubview(tableView) - NSLayoutConstraint.activate([ - tableView.topAnchor.constraint(equalTo: view.topAnchor), - tableView.leadingAnchor.constraint(equalTo: view.leadingAnchor), - tableView.trailingAnchor.constraint(equalTo: view.trailingAnchor), - tableView.bottomAnchor.constraint(equalTo: view.bottomAnchor), - ]) + tableView.pinToParent() navigationActionView.translatesAutoresizingMaskIntoConstraints = false view.addSubview(navigationActionView) diff --git a/Mastodon/Scene/Onboarding/Share/NavigationActionView.swift b/Mastodon/Scene/Onboarding/Share/NavigationActionView.swift index c3236bdb4..54b473df8 100644 --- a/Mastodon/Scene/Onboarding/Share/NavigationActionView.swift +++ b/Mastodon/Scene/Onboarding/Share/NavigationActionView.swift @@ -84,21 +84,11 @@ extension NavigationActionView { backButton.translatesAutoresizingMaskIntoConstraints = false backButtonShadowContainer.addSubview(backButton) - NSLayoutConstraint.activate([ - backButton.topAnchor.constraint(equalTo: backButtonShadowContainer.topAnchor), - backButton.leadingAnchor.constraint(equalTo: backButtonShadowContainer.leadingAnchor), - backButton.trailingAnchor.constraint(equalTo: backButtonShadowContainer.trailingAnchor), - backButton.bottomAnchor.constraint(equalTo: backButtonShadowContainer.bottomAnchor), - ]) + backButton.pinToParent() nextButton.translatesAutoresizingMaskIntoConstraints = false nextButtonShadowContainer.addSubview(nextButton) - NSLayoutConstraint.activate([ - nextButton.topAnchor.constraint(equalTo: nextButtonShadowContainer.topAnchor), - nextButton.leadingAnchor.constraint(equalTo: nextButtonShadowContainer.leadingAnchor), - nextButton.trailingAnchor.constraint(equalTo: nextButtonShadowContainer.trailingAnchor), - nextButton.bottomAnchor.constraint(equalTo: nextButtonShadowContainer.bottomAnchor), - ]) + nextButton.pinToParent() } } diff --git a/Mastodon/Scene/Onboarding/Share/OnboardingNavigationController.swift b/Mastodon/Scene/Onboarding/Share/OnboardingNavigationController.swift index 537102dc9..ac2e5b171 100644 --- a/Mastodon/Scene/Onboarding/Share/OnboardingNavigationController.swift +++ b/Mastodon/Scene/Onboarding/Share/OnboardingNavigationController.swift @@ -20,12 +20,7 @@ extension OnboardingNavigationController { gradientBorderView.translatesAutoresizingMaskIntoConstraints = false view.addSubview(gradientBorderView) - NSLayoutConstraint.activate([ - gradientBorderView.topAnchor.constraint(equalTo: view.topAnchor), - gradientBorderView.leadingAnchor.constraint(equalTo: view.leadingAnchor), - gradientBorderView.trailingAnchor.constraint(equalTo: view.trailingAnchor), - gradientBorderView.bottomAnchor.constraint(equalTo: view.bottomAnchor), - ]) + gradientBorderView.pinToParent() updateBorderViewDisplay() } diff --git a/Mastodon/Scene/Onboarding/Welcome/View/WelcomeIllustrationView.swift b/Mastodon/Scene/Onboarding/Welcome/View/WelcomeIllustrationView.swift index 0530539a2..1fca1afef 100644 --- a/Mastodon/Scene/Onboarding/Welcome/View/WelcomeIllustrationView.swift +++ b/Mastodon/Scene/Onboarding/Welcome/View/WelcomeIllustrationView.swift @@ -96,12 +96,7 @@ extension WelcomeIllustrationView { ].forEach { imageView in imageView.translatesAutoresizingMaskIntoConstraints = false addSubview(imageView) - NSLayoutConstraint.activate([ - imageView.topAnchor.constraint(equalTo: cloudBaseImageView.topAnchor), - imageView.leadingAnchor.constraint(equalTo: cloudBaseImageView.leadingAnchor), - imageView.trailingAnchor.constraint(equalTo: cloudBaseImageView.trailingAnchor), - imageView.bottomAnchor.constraint(equalTo: cloudBaseImageView.bottomAnchor), - ]) + imageView.pinTo(to: cloudBaseImageView) } aspectLayoutConstraint = cloudBaseImageView.widthAnchor.constraint(equalTo: cloudBaseImageView.heightAnchor, multiplier: layout.artworkImageSize.width / layout.artworkImageSize.height) diff --git a/Mastodon/Scene/Onboarding/Welcome/WelcomeViewController.swift b/Mastodon/Scene/Onboarding/Welcome/WelcomeViewController.swift index 32696d197..86a4af800 100644 --- a/Mastodon/Scene/Onboarding/Welcome/WelcomeViewController.swift +++ b/Mastodon/Scene/Onboarding/Welcome/WelcomeViewController.swift @@ -124,22 +124,12 @@ extension WelcomeViewController { signUpButtonShadowView.translatesAutoresizingMaskIntoConstraints = false buttonContainer.addSubview(signUpButtonShadowView) buttonContainer.sendSubviewToBack(signUpButtonShadowView) - NSLayoutConstraint.activate([ - signUpButtonShadowView.topAnchor.constraint(equalTo: signUpButton.topAnchor), - signUpButtonShadowView.leadingAnchor.constraint(equalTo: signUpButton.leadingAnchor), - signUpButtonShadowView.trailingAnchor.constraint(equalTo: signUpButton.trailingAnchor), - signUpButtonShadowView.bottomAnchor.constraint(equalTo: signUpButton.bottomAnchor), - ]) + signUpButtonShadowView.pinTo(to: signUpButton) signInButtonShadowView.translatesAutoresizingMaskIntoConstraints = false buttonContainer.addSubview(signInButtonShadowView) buttonContainer.sendSubviewToBack(signInButtonShadowView) - NSLayoutConstraint.activate([ - signInButtonShadowView.topAnchor.constraint(equalTo: signInButton.topAnchor), - signInButtonShadowView.leadingAnchor.constraint(equalTo: signInButton.leadingAnchor), - signInButtonShadowView.trailingAnchor.constraint(equalTo: signInButton.trailingAnchor), - signInButtonShadowView.bottomAnchor.constraint(equalTo: signInButton.bottomAnchor), - ]) + signInButtonShadowView.pinTo(to: signInButton) signUpButton.addTarget(self, action: #selector(signUpButtonDidClicked(_:)), for: .touchUpInside) signInButton.addTarget(self, action: #selector(signInButtonDidClicked(_:)), for: .touchUpInside) diff --git a/Mastodon/Scene/Profile/About/ProfileAboutViewController.swift b/Mastodon/Scene/Profile/About/ProfileAboutViewController.swift index eb1e6b39c..fe92d2ac4 100644 --- a/Mastodon/Scene/Profile/About/ProfileAboutViewController.swift +++ b/Mastodon/Scene/Profile/About/ProfileAboutViewController.swift @@ -60,12 +60,7 @@ extension ProfileAboutViewController { collectionView.translatesAutoresizingMaskIntoConstraints = false view.addSubview(collectionView) - NSLayoutConstraint.activate([ - collectionView.topAnchor.constraint(equalTo: view.topAnchor), - collectionView.leadingAnchor.constraint(equalTo: view.leadingAnchor), - collectionView.trailingAnchor.constraint(equalTo: view.trailingAnchor), - collectionView.bottomAnchor.constraint(equalTo: view.bottomAnchor), - ]) + collectionView.pinToParent() collectionView.delegate = self viewModel.setupDiffableDataSource( diff --git a/Mastodon/Scene/Profile/Bookmark/BookmarkViewController.swift b/Mastodon/Scene/Profile/Bookmark/BookmarkViewController.swift index 5edec2618..458c47335 100644 --- a/Mastodon/Scene/Profile/Bookmark/BookmarkViewController.swift +++ b/Mastodon/Scene/Profile/Bookmark/BookmarkViewController.swift @@ -64,12 +64,7 @@ extension BookmarkViewController { tableView.translatesAutoresizingMaskIntoConstraints = false view.addSubview(tableView) - NSLayoutConstraint.activate([ - tableView.topAnchor.constraint(equalTo: view.topAnchor), - tableView.leadingAnchor.constraint(equalTo: view.leadingAnchor), - tableView.trailingAnchor.constraint(equalTo: view.trailingAnchor), - tableView.bottomAnchor.constraint(equalTo: view.bottomAnchor), - ]) + tableView.pinToParent() tableView.delegate = self viewModel.setupDiffableDataSource( diff --git a/Mastodon/Scene/Profile/FamiliarFollowers/FamiliarFollowersViewController.swift b/Mastodon/Scene/Profile/FamiliarFollowers/FamiliarFollowersViewController.swift index b6d6f8313..3595303d9 100644 --- a/Mastodon/Scene/Profile/FamiliarFollowers/FamiliarFollowersViewController.swift +++ b/Mastodon/Scene/Profile/FamiliarFollowers/FamiliarFollowersViewController.swift @@ -53,12 +53,7 @@ extension FamiliarFollowersViewController { tableView.translatesAutoresizingMaskIntoConstraints = false view.addSubview(tableView) - NSLayoutConstraint.activate([ - tableView.topAnchor.constraint(equalTo: view.topAnchor), - tableView.leadingAnchor.constraint(equalTo: view.leadingAnchor), - tableView.trailingAnchor.constraint(equalTo: view.trailingAnchor), - tableView.bottomAnchor.constraint(equalTo: view.bottomAnchor), - ]) + tableView.pinToParent() tableView.delegate = self viewModel.setupDiffableDataSource( diff --git a/Mastodon/Scene/Profile/Favorite/FavoriteViewController.swift b/Mastodon/Scene/Profile/Favorite/FavoriteViewController.swift index c15adcf83..19f25f3ad 100644 --- a/Mastodon/Scene/Profile/Favorite/FavoriteViewController.swift +++ b/Mastodon/Scene/Profile/Favorite/FavoriteViewController.swift @@ -67,12 +67,7 @@ extension FavoriteViewController { tableView.translatesAutoresizingMaskIntoConstraints = false view.addSubview(tableView) - NSLayoutConstraint.activate([ - tableView.topAnchor.constraint(equalTo: view.topAnchor), - tableView.leadingAnchor.constraint(equalTo: view.leadingAnchor), - tableView.trailingAnchor.constraint(equalTo: view.trailingAnchor), - tableView.bottomAnchor.constraint(equalTo: view.bottomAnchor), - ]) + tableView.pinToParent() tableView.delegate = self viewModel.setupDiffableDataSource( diff --git a/Mastodon/Scene/Profile/Follower/FollowerListViewController.swift b/Mastodon/Scene/Profile/Follower/FollowerListViewController.swift index 190fa27e5..c111d13d0 100644 --- a/Mastodon/Scene/Profile/Follower/FollowerListViewController.swift +++ b/Mastodon/Scene/Profile/Follower/FollowerListViewController.swift @@ -58,12 +58,7 @@ extension FollowerListViewController { tableView.translatesAutoresizingMaskIntoConstraints = false view.addSubview(tableView) - NSLayoutConstraint.activate([ - tableView.topAnchor.constraint(equalTo: view.topAnchor), - tableView.leadingAnchor.constraint(equalTo: view.leadingAnchor), - tableView.trailingAnchor.constraint(equalTo: view.trailingAnchor), - tableView.bottomAnchor.constraint(equalTo: view.bottomAnchor), - ]) + tableView.pinToParent() tableView.delegate = self viewModel.setupDiffableDataSource( diff --git a/Mastodon/Scene/Profile/Following/FollowingListViewController.swift b/Mastodon/Scene/Profile/Following/FollowingListViewController.swift index e16b600c2..3fa65918a 100644 --- a/Mastodon/Scene/Profile/Following/FollowingListViewController.swift +++ b/Mastodon/Scene/Profile/Following/FollowingListViewController.swift @@ -58,12 +58,7 @@ extension FollowingListViewController { tableView.translatesAutoresizingMaskIntoConstraints = false view.addSubview(tableView) - NSLayoutConstraint.activate([ - tableView.topAnchor.constraint(equalTo: view.topAnchor), - tableView.leadingAnchor.constraint(equalTo: view.leadingAnchor), - tableView.trailingAnchor.constraint(equalTo: view.trailingAnchor), - tableView.bottomAnchor.constraint(equalTo: view.bottomAnchor), - ]) + tableView.pinToParent() tableView.delegate = self viewModel.setupDiffableDataSource( diff --git a/Mastodon/Scene/Profile/Header/View/ProfileHeaderView.swift b/Mastodon/Scene/Profile/Header/View/ProfileHeaderView.swift index a2194758b..49963f7fb 100644 --- a/Mastodon/Scene/Profile/Header/View/ProfileHeaderView.swift +++ b/Mastodon/Scene/Profile/Header/View/ProfileHeaderView.swift @@ -265,12 +265,7 @@ extension ProfileHeaderView { bannerImageViewOverlayVisualEffectView.translatesAutoresizingMaskIntoConstraints = false bannerImageView.addSubview(bannerImageViewOverlayVisualEffectView) - NSLayoutConstraint.activate([ - bannerImageViewOverlayVisualEffectView.topAnchor.constraint(equalTo: bannerImageView.topAnchor), - bannerImageViewOverlayVisualEffectView.leadingAnchor.constraint(equalTo: bannerImageView.leadingAnchor), - bannerImageViewOverlayVisualEffectView.trailingAnchor.constraint(equalTo: bannerImageView.trailingAnchor), - bannerImageViewOverlayVisualEffectView.bottomAnchor.constraint(equalTo: bannerImageView.bottomAnchor), - ]) + bannerImageViewOverlayVisualEffectView.pinToParent() // follows you followsYouBlurEffectView.translatesAutoresizingMaskIntoConstraints = false @@ -286,12 +281,7 @@ extension ProfileHeaderView { followsYouVibrantEffectView.translatesAutoresizingMaskIntoConstraints = false followsYouBlurEffectView.contentView.addSubview(followsYouVibrantEffectView) - NSLayoutConstraint.activate([ - followsYouVibrantEffectView.topAnchor.constraint(equalTo: followsYouBlurEffectView.topAnchor), - followsYouVibrantEffectView.leadingAnchor.constraint(equalTo: followsYouBlurEffectView.leadingAnchor), - followsYouVibrantEffectView.trailingAnchor.constraint(equalTo: followsYouBlurEffectView.trailingAnchor), - followsYouVibrantEffectView.bottomAnchor.constraint(equalTo: followsYouBlurEffectView.bottomAnchor), - ]) + followsYouVibrantEffectView.pinToParent() followsYouLabel.translatesAutoresizingMaskIntoConstraints = false followsYouVibrantEffectView.contentView.addSubview(followsYouLabel) @@ -327,30 +317,15 @@ extension ProfileHeaderView { avatarImageViewOverlayVisualEffectView.translatesAutoresizingMaskIntoConstraints = false avatarImageViewBackgroundView.addSubview(avatarImageViewOverlayVisualEffectView) - NSLayoutConstraint.activate([ - avatarImageViewOverlayVisualEffectView.topAnchor.constraint(equalTo: avatarImageViewBackgroundView.topAnchor), - avatarImageViewOverlayVisualEffectView.leadingAnchor.constraint(equalTo: avatarImageViewBackgroundView.leadingAnchor), - avatarImageViewOverlayVisualEffectView.trailingAnchor.constraint(equalTo: avatarImageViewBackgroundView.trailingAnchor), - avatarImageViewOverlayVisualEffectView.bottomAnchor.constraint(equalTo: avatarImageViewBackgroundView.bottomAnchor), - ]) + avatarImageViewOverlayVisualEffectView.pinToParent() editAvatarBackgroundView.translatesAutoresizingMaskIntoConstraints = false avatarButton.addSubview(editAvatarBackgroundView) - NSLayoutConstraint.activate([ - editAvatarBackgroundView.topAnchor.constraint(equalTo: avatarButton.topAnchor), - editAvatarBackgroundView.leadingAnchor.constraint(equalTo: avatarButton.leadingAnchor), - editAvatarBackgroundView.trailingAnchor.constraint(equalTo: avatarButton.trailingAnchor), - editAvatarBackgroundView.bottomAnchor.constraint(equalTo: avatarButton.bottomAnchor), - ]) + editAvatarBackgroundView.pinToParent() editAvatarButtonOverlayIndicatorView.translatesAutoresizingMaskIntoConstraints = false editAvatarBackgroundView.addSubview(editAvatarButtonOverlayIndicatorView) - NSLayoutConstraint.activate([ - editAvatarButtonOverlayIndicatorView.topAnchor.constraint(equalTo: editAvatarBackgroundView.topAnchor), - editAvatarButtonOverlayIndicatorView.leadingAnchor.constraint(equalTo: editAvatarBackgroundView.leadingAnchor), - editAvatarButtonOverlayIndicatorView.trailingAnchor.constraint(equalTo: editAvatarBackgroundView.trailingAnchor), - editAvatarButtonOverlayIndicatorView.bottomAnchor.constraint(equalTo: editAvatarBackgroundView.bottomAnchor), - ]) + editAvatarButtonOverlayIndicatorView.pinToParent() editAvatarBackgroundView.isUserInteractionEnabled = true avatarButton.isUserInteractionEnabled = true @@ -436,11 +411,8 @@ extension ProfileHeaderView { relationshipActionButton.translatesAutoresizingMaskIntoConstraints = false relationshipActionButtonShadowContainer.addSubview(relationshipActionButton) + relationshipActionButton.pinToParent() NSLayoutConstraint.activate([ - relationshipActionButton.topAnchor.constraint(equalTo: relationshipActionButtonShadowContainer.topAnchor), - relationshipActionButton.leadingAnchor.constraint(equalTo: relationshipActionButtonShadowContainer.leadingAnchor), - relationshipActionButton.trailingAnchor.constraint(equalTo: relationshipActionButtonShadowContainer.trailingAnchor), - relationshipActionButton.bottomAnchor.constraint(equalTo: relationshipActionButtonShadowContainer.bottomAnchor), relationshipActionButton.widthAnchor.constraint(greaterThanOrEqualToConstant: ProfileHeaderView.friendshipActionButtonSize.width).priority(.required - 1), relationshipActionButton.heightAnchor.constraint(equalToConstant: ProfileHeaderView.friendshipActionButtonSize.height).priority(.defaultHigh), ]) diff --git a/Mastodon/Scene/Profile/Paging/ProfilePagingViewController.swift b/Mastodon/Scene/Profile/Paging/ProfilePagingViewController.swift index db92617b7..27c539d18 100644 --- a/Mastodon/Scene/Profile/Paging/ProfilePagingViewController.swift +++ b/Mastodon/Scene/Profile/Paging/ProfilePagingViewController.swift @@ -99,12 +99,7 @@ extension ProfilePagingViewController { if let buttonBarView = self.buttonBarView { buttonBarShadowView.translatesAutoresizingMaskIntoConstraints = false view.insertSubview(buttonBarShadowView, belowSubview: buttonBarView) - NSLayoutConstraint.activate([ - buttonBarShadowView.topAnchor.constraint(equalTo: buttonBarView.topAnchor), - buttonBarShadowView.leadingAnchor.constraint(equalTo: buttonBarView.leadingAnchor), - buttonBarShadowView.trailingAnchor.constraint(equalTo: buttonBarView.trailingAnchor), - buttonBarShadowView.bottomAnchor.constraint(equalTo: buttonBarView.bottomAnchor), - ]) + buttonBarShadowView.pinTo(to: buttonBarView) viewModel.$needsSetupBottomShadow .receive(on: DispatchQueue.main) diff --git a/Mastodon/Scene/Profile/ProfileViewController.swift b/Mastodon/Scene/Profile/ProfileViewController.swift index d9e56630f..f3893c105 100644 --- a/Mastodon/Scene/Profile/ProfileViewController.swift +++ b/Mastodon/Scene/Profile/ProfileViewController.swift @@ -259,12 +259,7 @@ extension ProfileViewController { tabBarPagerController.view.translatesAutoresizingMaskIntoConstraints = false view.addSubview(tabBarPagerController.view) tabBarPagerController.didMove(toParent: self) - NSLayoutConstraint.activate([ - tabBarPagerController.view.topAnchor.constraint(equalTo: view.topAnchor), - tabBarPagerController.view.leadingAnchor.constraint(equalTo: view.leadingAnchor), - tabBarPagerController.view.trailingAnchor.constraint(equalTo: view.trailingAnchor), - tabBarPagerController.view.bottomAnchor.constraint(equalTo: view.bottomAnchor), - ]) + tabBarPagerController.view.pinToParent() tabBarPagerController.delegate = self tabBarPagerController.dataSource = self diff --git a/Mastodon/Scene/Profile/Timeline/UserTimelineViewController.swift b/Mastodon/Scene/Profile/Timeline/UserTimelineViewController.swift index 8a983da33..6cdd6a594 100644 --- a/Mastodon/Scene/Profile/Timeline/UserTimelineViewController.swift +++ b/Mastodon/Scene/Profile/Timeline/UserTimelineViewController.swift @@ -60,12 +60,7 @@ extension UserTimelineViewController { tableView.translatesAutoresizingMaskIntoConstraints = false view.addSubview(tableView) - NSLayoutConstraint.activate([ - tableView.topAnchor.constraint(equalTo: view.topAnchor), - tableView.leadingAnchor.constraint(equalTo: view.leadingAnchor), - tableView.trailingAnchor.constraint(equalTo: view.trailingAnchor), - tableView.bottomAnchor.constraint(equalTo: view.bottomAnchor), - ]) + tableView.pinToParent() tableView.delegate = self viewModel.setupDiffableDataSource( diff --git a/Mastodon/Scene/Profile/UserLIst/FavoritedBy/FavoritedByViewController.swift b/Mastodon/Scene/Profile/UserLIst/FavoritedBy/FavoritedByViewController.swift index ebce374e7..07316cd3d 100644 --- a/Mastodon/Scene/Profile/UserLIst/FavoritedBy/FavoritedByViewController.swift +++ b/Mastodon/Scene/Profile/UserLIst/FavoritedBy/FavoritedByViewController.swift @@ -61,12 +61,7 @@ extension FavoritedByViewController { tableView.translatesAutoresizingMaskIntoConstraints = false view.addSubview(tableView) - NSLayoutConstraint.activate([ - tableView.topAnchor.constraint(equalTo: view.topAnchor), - tableView.leadingAnchor.constraint(equalTo: view.leadingAnchor), - tableView.trailingAnchor.constraint(equalTo: view.trailingAnchor), - tableView.bottomAnchor.constraint(equalTo: view.bottomAnchor), - ]) + tableView.pinToParent() tableView.delegate = self viewModel.setupDiffableDataSource( diff --git a/Mastodon/Scene/Profile/UserLIst/RebloggedBy/RebloggedByViewController.swift b/Mastodon/Scene/Profile/UserLIst/RebloggedBy/RebloggedByViewController.swift index 0688bcccb..a45c491fc 100644 --- a/Mastodon/Scene/Profile/UserLIst/RebloggedBy/RebloggedByViewController.swift +++ b/Mastodon/Scene/Profile/UserLIst/RebloggedBy/RebloggedByViewController.swift @@ -61,12 +61,7 @@ extension RebloggedByViewController { tableView.translatesAutoresizingMaskIntoConstraints = false view.addSubview(tableView) - NSLayoutConstraint.activate([ - tableView.topAnchor.constraint(equalTo: view.topAnchor), - tableView.leadingAnchor.constraint(equalTo: view.leadingAnchor), - tableView.trailingAnchor.constraint(equalTo: view.trailingAnchor), - tableView.bottomAnchor.constraint(equalTo: view.bottomAnchor), - ]) + tableView.pinToParent() tableView.delegate = self viewModel.setupDiffableDataSource( diff --git a/Mastodon/Scene/Report/Report/ReportViewController.swift b/Mastodon/Scene/Report/Report/ReportViewController.swift index f1418c5a1..120f96d09 100644 --- a/Mastodon/Scene/Report/Report/ReportViewController.swift +++ b/Mastodon/Scene/Report/Report/ReportViewController.swift @@ -61,12 +61,7 @@ extension ReportViewController { reportReasonViewController.view.translatesAutoresizingMaskIntoConstraints = false view.addSubview(reportReasonViewController.view) reportReasonViewController.didMove(toParent: self) - NSLayoutConstraint.activate([ - reportReasonViewController.view.topAnchor.constraint(equalTo: view.topAnchor), - reportReasonViewController.view.leadingAnchor.constraint(equalTo: view.leadingAnchor), - reportReasonViewController.view.trailingAnchor.constraint(equalTo: view.trailingAnchor), - reportReasonViewController.view.bottomAnchor.constraint(equalTo: view.bottomAnchor), - ]) + reportReasonViewController.view.pinToParent() } } diff --git a/Mastodon/Scene/Report/ReportReason/ReportReasonViewController.swift b/Mastodon/Scene/Report/ReportReason/ReportReasonViewController.swift index 2e8e53d18..517873abe 100644 --- a/Mastodon/Scene/Report/ReportReason/ReportReasonViewController.swift +++ b/Mastodon/Scene/Report/ReportReason/ReportReasonViewController.swift @@ -57,12 +57,7 @@ extension ReportReasonViewController { addChild(hostingViewController) hostingViewController.view.translatesAutoresizingMaskIntoConstraints = false view.addSubview(hostingViewController.view) - NSLayoutConstraint.activate([ - hostingViewController.view.topAnchor.constraint(equalTo: view.topAnchor), - hostingViewController.view.leadingAnchor.constraint(equalTo: view.leadingAnchor), - hostingViewController.view.trailingAnchor.constraint(equalTo: view.trailingAnchor), - hostingViewController.view.bottomAnchor.constraint(equalTo: view.bottomAnchor), - ]) + hostingViewController.view.pinToParent() navigationActionView.translatesAutoresizingMaskIntoConstraints = false view.addSubview(navigationActionView) diff --git a/Mastodon/Scene/Report/ReportResult/ReportResultViewController.swift b/Mastodon/Scene/Report/ReportResult/ReportResultViewController.swift index 10dcdf373..1d67ad6c3 100644 --- a/Mastodon/Scene/Report/ReportResult/ReportResultViewController.swift +++ b/Mastodon/Scene/Report/ReportResult/ReportResultViewController.swift @@ -60,12 +60,7 @@ extension ReportResultViewController { addChild(hostingViewController) hostingViewController.view.translatesAutoresizingMaskIntoConstraints = false view.addSubview(hostingViewController.view) - NSLayoutConstraint.activate([ - hostingViewController.view.topAnchor.constraint(equalTo: view.topAnchor), - hostingViewController.view.leadingAnchor.constraint(equalTo: view.leadingAnchor), - hostingViewController.view.trailingAnchor.constraint(equalTo: view.trailingAnchor), - hostingViewController.view.bottomAnchor.constraint(equalTo: view.bottomAnchor), - ]) + hostingViewController.view.pinToParent() navigationActionView.translatesAutoresizingMaskIntoConstraints = false view.addSubview(navigationActionView) diff --git a/Mastodon/Scene/Report/ReportServerRules/ReportServerRulesViewController.swift b/Mastodon/Scene/Report/ReportServerRules/ReportServerRulesViewController.swift index 3f1cdf331..00be4d800 100644 --- a/Mastodon/Scene/Report/ReportServerRules/ReportServerRulesViewController.swift +++ b/Mastodon/Scene/Report/ReportServerRules/ReportServerRulesViewController.swift @@ -63,12 +63,7 @@ extension ReportServerRulesViewController { addChild(hostingViewController) hostingViewController.view.translatesAutoresizingMaskIntoConstraints = false view.addSubview(hostingViewController.view) - NSLayoutConstraint.activate([ - hostingViewController.view.topAnchor.constraint(equalTo: view.topAnchor), - hostingViewController.view.leadingAnchor.constraint(equalTo: view.leadingAnchor), - hostingViewController.view.trailingAnchor.constraint(equalTo: view.trailingAnchor), - hostingViewController.view.bottomAnchor.constraint(equalTo: view.bottomAnchor), - ]) + hostingViewController.view.pinToParent() navigationActionView.translatesAutoresizingMaskIntoConstraints = false view.addSubview(navigationActionView) diff --git a/Mastodon/Scene/Report/ReportStatus/ReportStatusViewController.swift b/Mastodon/Scene/Report/ReportStatus/ReportStatusViewController.swift index d45c196cd..6f934e13d 100644 --- a/Mastodon/Scene/Report/ReportStatus/ReportStatusViewController.swift +++ b/Mastodon/Scene/Report/ReportStatus/ReportStatusViewController.swift @@ -80,12 +80,7 @@ extension ReportStatusViewController { tableView.translatesAutoresizingMaskIntoConstraints = false view.addSubview(tableView) - NSLayoutConstraint.activate([ - tableView.topAnchor.constraint(equalTo: view.topAnchor), - tableView.leadingAnchor.constraint(equalTo: view.leadingAnchor), - tableView.trailingAnchor.constraint(equalTo: view.trailingAnchor), - tableView.bottomAnchor.constraint(equalTo: view.bottomAnchor), - ]) + tableView.pinToParent() tableView.delegate = self viewModel.setupDiffableDataSource( diff --git a/Mastodon/Scene/Report/ReportSupplementary/ReportSupplementaryViewController.swift b/Mastodon/Scene/Report/ReportSupplementary/ReportSupplementaryViewController.swift index e644c29ea..76f312273 100644 --- a/Mastodon/Scene/Report/ReportSupplementary/ReportSupplementaryViewController.swift +++ b/Mastodon/Scene/Report/ReportSupplementary/ReportSupplementaryViewController.swift @@ -93,12 +93,7 @@ extension ReportSupplementaryViewController { tableView.translatesAutoresizingMaskIntoConstraints = false view.addSubview(tableView) - NSLayoutConstraint.activate([ - tableView.topAnchor.constraint(equalTo: view.topAnchor), - tableView.leadingAnchor.constraint(equalTo: view.leadingAnchor), - tableView.trailingAnchor.constraint(equalTo: view.trailingAnchor), - tableView.bottomAnchor.constraint(equalTo: view.bottomAnchor), - ]) + tableView.pinToParent() tableView.delegate = self viewModel.setupDiffableDataSource( diff --git a/Mastodon/Scene/Report/Share/Cell/ReportCommentTableViewCell.swift b/Mastodon/Scene/Report/Share/Cell/ReportCommentTableViewCell.swift index d735a094c..ad6ce252a 100644 --- a/Mastodon/Scene/Report/Share/Cell/ReportCommentTableViewCell.swift +++ b/Mastodon/Scene/Report/Share/Cell/ReportCommentTableViewCell.swift @@ -74,11 +74,8 @@ extension ReportCommentTableViewCell { commentTextView.translatesAutoresizingMaskIntoConstraints = false commentTextViewShadowBackgroundContainer.addSubview(commentTextView) + commentTextView.pinToParent() NSLayoutConstraint.activate([ - commentTextView.topAnchor.constraint(equalTo: commentTextViewShadowBackgroundContainer.topAnchor), - commentTextView.leadingAnchor.constraint(equalTo: commentTextViewShadowBackgroundContainer.leadingAnchor), - commentTextView.trailingAnchor.constraint(equalTo: commentTextViewShadowBackgroundContainer.trailingAnchor), - commentTextView.bottomAnchor.constraint(equalTo: commentTextViewShadowBackgroundContainer.bottomAnchor), commentTextView.heightAnchor.constraint(greaterThanOrEqualToConstant: 100).priority(.defaultHigh), ]) } diff --git a/Mastodon/Scene/Report/Share/Cell/ReportResultActionTableViewCell.swift b/Mastodon/Scene/Report/Share/Cell/ReportResultActionTableViewCell.swift index 9b605a0c7..1828035a6 100644 --- a/Mastodon/Scene/Report/Share/Cell/ReportResultActionTableViewCell.swift +++ b/Mastodon/Scene/Report/Share/Cell/ReportResultActionTableViewCell.swift @@ -103,12 +103,7 @@ extension ReportResultActionTableViewCell { reportBannerLabel.translatesAutoresizingMaskIntoConstraints = false reportBannerShadowContainer.addSubview(reportBannerLabel) - NSLayoutConstraint.activate([ - reportBannerLabel.topAnchor.constraint(equalTo: reportBannerShadowContainer.topAnchor), - reportBannerLabel.leadingAnchor.constraint(equalTo: reportBannerShadowContainer.leadingAnchor), - reportBannerLabel.trailingAnchor.constraint(equalTo: reportBannerShadowContainer.trailingAnchor), - reportBannerLabel.bottomAnchor.constraint(equalTo: reportBannerShadowContainer.bottomAnchor), - ]) + reportBannerLabel.pinToParent() } diff --git a/Mastodon/Scene/Root/MainTab/MainTabBarController.swift b/Mastodon/Scene/Root/MainTab/MainTabBarController.swift index 48d974358..67efeb33c 100644 --- a/Mastodon/Scene/Root/MainTab/MainTabBarController.swift +++ b/Mastodon/Scene/Root/MainTab/MainTabBarController.swift @@ -442,12 +442,7 @@ extension MainTabBarController { composeButton.translatesAutoresizingMaskIntoConstraints = false composeButttonShadowBackgroundContainer.addSubview(composeButton) - NSLayoutConstraint.activate([ - composeButton.topAnchor.constraint(equalTo: composeButttonShadowBackgroundContainer.topAnchor), - composeButton.leadingAnchor.constraint(equalTo: composeButttonShadowBackgroundContainer.leadingAnchor), - composeButton.trailingAnchor.constraint(equalTo: composeButttonShadowBackgroundContainer.trailingAnchor), - composeButton.bottomAnchor.constraint(equalTo: composeButttonShadowBackgroundContainer.bottomAnchor), - ]) + composeButton.pinToParent() composeButton.setContentHuggingPriority(.required - 1, for: .horizontal) composeButton.setContentHuggingPriority(.required - 1, for: .vertical) } diff --git a/Mastodon/Scene/Root/Sidebar/SidebarViewController.swift b/Mastodon/Scene/Root/Sidebar/SidebarViewController.swift index 70e1239b6..0133648a2 100644 --- a/Mastodon/Scene/Root/Sidebar/SidebarViewController.swift +++ b/Mastodon/Scene/Root/Sidebar/SidebarViewController.swift @@ -101,12 +101,7 @@ extension SidebarViewController { collectionView.translatesAutoresizingMaskIntoConstraints = false view.addSubview(collectionView) - NSLayoutConstraint.activate([ - collectionView.topAnchor.constraint(equalTo: view.topAnchor), - collectionView.leadingAnchor.constraint(equalTo: view.leadingAnchor), - collectionView.trailingAnchor.constraint(equalTo: view.trailingAnchor), - collectionView.bottomAnchor.constraint(equalTo: view.bottomAnchor), - ]) + collectionView.pinToParent() secondaryCollectionView.translatesAutoresizingMaskIntoConstraints = false view.addSubview(secondaryCollectionView) diff --git a/Mastodon/Scene/Search/Search/Cell/TrendCollectionViewCell.swift b/Mastodon/Scene/Search/Search/Cell/TrendCollectionViewCell.swift index 30f618625..4436459fb 100644 --- a/Mastodon/Scene/Search/Search/Cell/TrendCollectionViewCell.swift +++ b/Mastodon/Scene/Search/Search/Cell/TrendCollectionViewCell.swift @@ -48,12 +48,7 @@ extension TrendCollectionViewCell { trendView.translatesAutoresizingMaskIntoConstraints = false contentView.addSubview(trendView) - NSLayoutConstraint.activate([ - trendView.topAnchor.constraint(equalTo: contentView.topAnchor), - trendView.leadingAnchor.constraint(equalTo: contentView.leadingAnchor), - trendView.trailingAnchor.constraint(equalTo: contentView.trailingAnchor), - trendView.bottomAnchor.constraint(equalTo: contentView.bottomAnchor), - ]) + trendView.pinToParent() } override func updateConfiguration(using state: UICellConfigurationState) { diff --git a/Mastodon/Scene/Search/Search/SearchViewController.swift b/Mastodon/Scene/Search/Search/SearchViewController.swift index 581fa08b3..a8423aaf9 100644 --- a/Mastodon/Scene/Search/Search/SearchViewController.swift +++ b/Mastodon/Scene/Search/Search/SearchViewController.swift @@ -105,12 +105,7 @@ extension SearchViewController { addChild(discoveryViewController) discoveryViewController.view.translatesAutoresizingMaskIntoConstraints = false view.addSubview(discoveryViewController.view) - NSLayoutConstraint.activate([ - discoveryViewController.view.topAnchor.constraint(equalTo: view.topAnchor), - discoveryViewController.view.leadingAnchor.constraint(equalTo: view.leadingAnchor), - discoveryViewController.view.trailingAnchor.constraint(equalTo: view.trailingAnchor), - discoveryViewController.view.bottomAnchor.constraint(equalTo: view.bottomAnchor), - ]) + discoveryViewController.view.pinToParent() // discoveryViewController.view.isHidden = true @@ -151,12 +146,7 @@ extension SearchViewController { searchBar.delegate = self searchBar.translatesAutoresizingMaskIntoConstraints = false titleViewContainer.addSubview(searchBar) - NSLayoutConstraint.activate([ - searchBar.topAnchor.constraint(equalTo: titleViewContainer.topAnchor), - searchBar.leadingAnchor.constraint(equalTo: titleViewContainer.leadingAnchor), - searchBar.trailingAnchor.constraint(equalTo: titleViewContainer.trailingAnchor), - searchBar.bottomAnchor.constraint(equalTo: titleViewContainer.bottomAnchor), - ]) + searchBar.pinToParent() searchBar.setContentHuggingPriority(.required, for: .horizontal) searchBar.setContentHuggingPriority(.required, for: .vertical) navigationItem.titleView = titleViewContainer diff --git a/Mastodon/Scene/Search/Search/View/SearchRecommendCollectionHeader.swift b/Mastodon/Scene/Search/Search/View/SearchRecommendCollectionHeader.swift index 1d4788ac8..0a65c6a25 100644 --- a/Mastodon/Scene/Search/Search/View/SearchRecommendCollectionHeader.swift +++ b/Mastodon/Scene/Search/Search/View/SearchRecommendCollectionHeader.swift @@ -62,12 +62,7 @@ extension SearchRecommendCollectionHeader { containerStackView.isLayoutMarginsRelativeArrangement = true containerStackView.translatesAutoresizingMaskIntoConstraints = false addSubview(containerStackView) - NSLayoutConstraint.activate([ - containerStackView.topAnchor.constraint(equalTo: topAnchor), - containerStackView.leadingAnchor.constraint(equalTo: leadingAnchor), - containerStackView.bottomAnchor.constraint(equalTo: bottomAnchor), - containerStackView.trailingAnchor.constraint(equalTo: trailingAnchor) - ]) + containerStackView.pinToParent() let horizontalStackView = UIStackView() horizontalStackView.spacing = 8 diff --git a/Mastodon/Scene/Search/SearchDetail/SearchDetailViewController.swift b/Mastodon/Scene/Search/SearchDetail/SearchDetailViewController.swift index 62dd1a2cc..f3ebcad00 100644 --- a/Mastodon/Scene/Search/SearchDetail/SearchDetailViewController.swift +++ b/Mastodon/Scene/Search/SearchDetail/SearchDetailViewController.swift @@ -116,12 +116,7 @@ extension SearchDetailViewController { searchHistoryViewController.view.bottomAnchor.constraint(equalTo: view.bottomAnchor), ]) } else { - NSLayoutConstraint.activate([ - searchHistoryViewController.view.topAnchor.constraint(equalTo: view.topAnchor), - searchHistoryViewController.view.leadingAnchor.constraint(equalTo: view.leadingAnchor), - searchHistoryViewController.view.trailingAnchor.constraint(equalTo: view.trailingAnchor), - searchHistoryViewController.view.bottomAnchor.constraint(equalTo: view.bottomAnchor), - ]) + searchHistoryViewController.view.pinToParent() } transition = Transition(style: .fade, duration: 0.1) @@ -289,12 +284,7 @@ extension SearchDetailViewController { navigationBarVisualEffectBackgroundView.translatesAutoresizingMaskIntoConstraints = false view.insertSubview(navigationBarVisualEffectBackgroundView, belowSubview: navigationBarBackgroundView) - NSLayoutConstraint.activate([ - navigationBarVisualEffectBackgroundView.topAnchor.constraint(equalTo: navigationBarBackgroundView.topAnchor), - navigationBarVisualEffectBackgroundView.leadingAnchor.constraint(equalTo: navigationBarBackgroundView.leadingAnchor), - navigationBarVisualEffectBackgroundView.trailingAnchor.constraint(equalTo: navigationBarBackgroundView.trailingAnchor), - navigationBarVisualEffectBackgroundView.bottomAnchor.constraint(equalTo: navigationBarBackgroundView.bottomAnchor), - ]) + navigationBarVisualEffectBackgroundView.pinTo(to: navigationBarBackgroundView) } else { navigationItem.setHidesBackButton(true, animated: false) navigationItem.titleView = nil diff --git a/Mastodon/Scene/Search/SearchDetail/SearchHistory/SearchHistoryViewController.swift b/Mastodon/Scene/Search/SearchDetail/SearchHistory/SearchHistoryViewController.swift index 52d0ffb9c..ac08e7906 100644 --- a/Mastodon/Scene/Search/SearchDetail/SearchHistory/SearchHistoryViewController.swift +++ b/Mastodon/Scene/Search/SearchDetail/SearchHistory/SearchHistoryViewController.swift @@ -47,12 +47,7 @@ extension SearchHistoryViewController { collectionView.translatesAutoresizingMaskIntoConstraints = false view.addSubview(collectionView) - NSLayoutConstraint.activate([ - collectionView.topAnchor.constraint(equalTo: view.topAnchor), - collectionView.leadingAnchor.constraint(equalTo: view.leadingAnchor), - collectionView.trailingAnchor.constraint(equalTo: view.trailingAnchor), - collectionView.bottomAnchor.constraint(equalTo: view.bottomAnchor), - ]) + collectionView.pinToParent() collectionView.delegate = self viewModel.setupDiffableDataSource( diff --git a/Mastodon/Scene/Search/SearchDetail/SearchResult/SearchResultViewController.swift b/Mastodon/Scene/Search/SearchDetail/SearchResult/SearchResultViewController.swift index 67de62bf3..6a840f9b5 100644 --- a/Mastodon/Scene/Search/SearchDetail/SearchResult/SearchResultViewController.swift +++ b/Mastodon/Scene/Search/SearchDetail/SearchResult/SearchResultViewController.swift @@ -49,12 +49,7 @@ extension SearchResultViewController { tableView.translatesAutoresizingMaskIntoConstraints = false view.addSubview(tableView) - NSLayoutConstraint.activate([ - tableView.topAnchor.constraint(equalTo: view.topAnchor), - tableView.leadingAnchor.constraint(equalTo: view.leadingAnchor), - tableView.trailingAnchor.constraint(equalTo: view.trailingAnchor), - tableView.bottomAnchor.constraint(equalTo: view.bottomAnchor), - ]) + tableView.pinToParent() tableView.delegate = self // tableView.prefetchDataSource = self diff --git a/Mastodon/Scene/Settings/Cell/SettingsAppearanceTableViewCell.swift b/Mastodon/Scene/Settings/Cell/SettingsAppearanceTableViewCell.swift index 44b6b39c3..efad9693d 100644 --- a/Mastodon/Scene/Settings/Cell/SettingsAppearanceTableViewCell.swift +++ b/Mastodon/Scene/Settings/Cell/SettingsAppearanceTableViewCell.swift @@ -101,12 +101,7 @@ extension SettingsAppearanceTableViewCell { stackView.translatesAutoresizingMaskIntoConstraints = false contentView.addSubview(stackView) - NSLayoutConstraint.activate([ - stackView.topAnchor.constraint(equalTo: contentView.topAnchor), - stackView.leadingAnchor.constraint(equalTo: contentView.leadingAnchor), - stackView.bottomAnchor.constraint(equalTo: contentView.bottomAnchor), - stackView.trailingAnchor.constraint(equalTo: contentView.trailingAnchor), - ]) + stackView.pinToParent() stackView.addArrangedSubview(systemAppearanceView) stackView.addArrangedSubview(darkAppearanceView) diff --git a/Mastodon/Scene/Settings/SettingsViewController.swift b/Mastodon/Scene/Settings/SettingsViewController.swift index 53a856fd0..95f6e312e 100644 --- a/Mastodon/Scene/Settings/SettingsViewController.swift +++ b/Mastodon/Scene/Settings/SettingsViewController.swift @@ -225,12 +225,7 @@ extension SettingsViewController { setupNavigation() view.addSubview(tableView) - NSLayoutConstraint.activate([ - tableView.topAnchor.constraint(equalTo: view.topAnchor), - tableView.leadingAnchor.constraint(equalTo: view.leadingAnchor), - tableView.trailingAnchor.constraint(equalTo: view.trailingAnchor), - tableView.bottomAnchor.constraint(equalTo: view.bottomAnchor), - ]) + tableView.pinToParent() setupTableView() updateSectionHeaderStackViewLayout() diff --git a/Mastodon/Scene/Settings/View/AppearanceView.swift b/Mastodon/Scene/Settings/View/AppearanceView.swift index cdc29100b..a09401537 100644 --- a/Mastodon/Scene/Settings/View/AppearanceView.swift +++ b/Mastodon/Scene/Settings/View/AppearanceView.swift @@ -85,12 +85,7 @@ extension AppearanceView { private func setupUI() { imageView.translatesAutoresizingMaskIntoConstraints = false imageViewShadowBackgroundContainer.addSubview(imageView) - NSLayoutConstraint.activate([ - imageView.topAnchor.constraint(equalTo: imageViewShadowBackgroundContainer.topAnchor), - imageView.leadingAnchor.constraint(equalTo: imageViewShadowBackgroundContainer.leadingAnchor), - imageView.trailingAnchor.constraint(equalTo: imageViewShadowBackgroundContainer.trailingAnchor), - imageView.bottomAnchor.constraint(equalTo: imageViewShadowBackgroundContainer.bottomAnchor), - ]) + imageView.pinToParent() imageViewShadowBackgroundContainer.cornerRadius = 4 stackView.addArrangedSubview(imageViewShadowBackgroundContainer) @@ -100,11 +95,8 @@ extension AppearanceView { addSubview(stackView) translatesAutoresizingMaskIntoConstraints = false stackView.translatesAutoresizingMaskIntoConstraints = false + stackView.pinToParent() NSLayoutConstraint.activate([ - stackView.topAnchor.constraint(equalTo: self.topAnchor), - stackView.leadingAnchor.constraint(equalTo: self.leadingAnchor), - stackView.bottomAnchor.constraint(equalTo: self.bottomAnchor), - stackView.trailingAnchor.constraint(equalTo: self.trailingAnchor), imageView.heightAnchor.constraint(equalTo: imageView.widthAnchor, multiplier: 121.0 / 100.0), // height / width ]) } diff --git a/Mastodon/Scene/Share/ContextMenu/ImagePreview/ContextMenuImagePreviewViewController.swift b/Mastodon/Scene/Share/ContextMenu/ImagePreview/ContextMenuImagePreviewViewController.swift index 0d3c4f574..12820e627 100644 --- a/Mastodon/Scene/Share/ContextMenu/ImagePreview/ContextMenuImagePreviewViewController.swift +++ b/Mastodon/Scene/Share/ContextMenu/ImagePreview/ContextMenuImagePreviewViewController.swift @@ -31,12 +31,7 @@ extension ContextMenuImagePreviewViewController { imageView.translatesAutoresizingMaskIntoConstraints = false view.addSubview(imageView) - NSLayoutConstraint.activate([ - imageView.topAnchor.constraint(equalTo: view.topAnchor), - imageView.leadingAnchor.constraint(equalTo: view.leadingAnchor), - imageView.trailingAnchor.constraint(equalTo: view.trailingAnchor), - imageView.bottomAnchor.constraint(equalTo: view.bottomAnchor), - ]) + imageView.pinToParent() imageView.image = viewModel.thumbnail diff --git a/Mastodon/Scene/Share/View/Content/ContentWarningOverlayView.swift b/Mastodon/Scene/Share/View/Content/ContentWarningOverlayView.swift index ca46193b6..8a0901dfe 100644 --- a/Mastodon/Scene/Share/View/Content/ContentWarningOverlayView.swift +++ b/Mastodon/Scene/Share/View/Content/ContentWarningOverlayView.swift @@ -93,12 +93,7 @@ extension ContentWarningOverlayView { vibrancyVisualEffectView.translatesAutoresizingMaskIntoConstraints = false blurVisualEffectView.contentView.addSubview(vibrancyVisualEffectView) - NSLayoutConstraint.activate([ - vibrancyVisualEffectView.topAnchor.constraint(equalTo: blurVisualEffectView.topAnchor), - vibrancyVisualEffectView.leadingAnchor.constraint(equalTo: blurVisualEffectView.leadingAnchor), - vibrancyVisualEffectView.trailingAnchor.constraint(equalTo: blurVisualEffectView.trailingAnchor), - vibrancyVisualEffectView.bottomAnchor.constraint(equalTo: blurVisualEffectView.bottomAnchor), - ]) + vibrancyVisualEffectView.pinToParent() vibrancyContentWarningLabel.translatesAutoresizingMaskIntoConstraints = false vibrancyVisualEffectView.contentView.addSubview(vibrancyContentWarningLabel) @@ -110,12 +105,7 @@ extension ContentWarningOverlayView { blurVisualEffectView.translatesAutoresizingMaskIntoConstraints = false addSubview(blurVisualEffectView) - NSLayoutConstraint.activate([ - blurVisualEffectView.topAnchor.constraint(equalTo: topAnchor), - blurVisualEffectView.leadingAnchor.constraint(equalTo: leadingAnchor), - blurVisualEffectView.trailingAnchor.constraint(equalTo: trailingAnchor), - blurVisualEffectView.bottomAnchor.constraint(equalTo: bottomAnchor), - ]) + blurVisualEffectView.pinToParent() // blur image style contentOverlayView.translatesAutoresizingMaskIntoConstraints = false @@ -134,12 +124,7 @@ extension ContentWarningOverlayView { blurContentWarningLabelContainer.translatesAutoresizingMaskIntoConstraints = false contentOverlayView.addSubview(blurContentWarningLabelContainer) - NSLayoutConstraint.activate([ - blurContentWarningLabelContainer.topAnchor.constraint(equalTo: topAnchor), - blurContentWarningLabelContainer.leadingAnchor.constraint(equalTo: leadingAnchor), - blurContentWarningLabelContainer.trailingAnchor.constraint(equalTo: trailingAnchor), - blurContentWarningLabelContainer.bottomAnchor.constraint(equalTo: bottomAnchor), - ]) + blurContentWarningLabelContainer.pinTo(to: self) let topPaddingView = UIView() let bottomPaddingView = UIView() diff --git a/Mastodon/Scene/Share/View/Content/DoubleTitleLabelNavigationBarTitleView.swift b/Mastodon/Scene/Share/View/Content/DoubleTitleLabelNavigationBarTitleView.swift index 6734b7b77..f5ac0f8ec 100644 --- a/Mastodon/Scene/Share/View/Content/DoubleTitleLabelNavigationBarTitleView.swift +++ b/Mastodon/Scene/Share/View/Content/DoubleTitleLabelNavigationBarTitleView.swift @@ -47,12 +47,7 @@ extension DoubleTitleLabelNavigationBarTitleView { containerView.distribution = .fill containerView.translatesAutoresizingMaskIntoConstraints = false addSubview(containerView) - NSLayoutConstraint.activate([ - containerView.topAnchor.constraint(equalTo: topAnchor), - containerView.leadingAnchor.constraint(equalTo: leadingAnchor), - containerView.trailingAnchor.constraint(equalTo: trailingAnchor), - containerView.bottomAnchor.constraint(equalTo: bottomAnchor), - ]) + containerView.pinToParent() containerView.addArrangedSubview(titleLabel) containerView.addArrangedSubview(subtitleLabel) diff --git a/Mastodon/Scene/Share/Webview/WebViewController.swift b/Mastodon/Scene/Share/Webview/WebViewController.swift index cb690de93..209ee483d 100644 --- a/Mastodon/Scene/Share/Webview/WebViewController.swift +++ b/Mastodon/Scene/Share/Webview/WebViewController.swift @@ -49,12 +49,7 @@ extension WebViewController { webView.translatesAutoresizingMaskIntoConstraints = false view.addSubview(webView) - NSLayoutConstraint.activate([ - webView.topAnchor.constraint(equalTo: view.topAnchor), - webView.leadingAnchor.constraint(equalTo: view.leadingAnchor), - webView.trailingAnchor.constraint(equalTo: view.trailingAnchor), - webView.bottomAnchor.constraint(equalTo: view.bottomAnchor), - ]) + webView.pinToParent() let request = URLRequest(url: viewModel.url) webView.load(request) diff --git a/Mastodon/Scene/SuggestionAccount/CollectionViewCell/SuggestionAccountCollectionViewCell.swift b/Mastodon/Scene/SuggestionAccount/CollectionViewCell/SuggestionAccountCollectionViewCell.swift index 2fb467fbd..296935521 100644 --- a/Mastodon/Scene/SuggestionAccount/CollectionViewCell/SuggestionAccountCollectionViewCell.swift +++ b/Mastodon/Scene/SuggestionAccount/CollectionViewCell/SuggestionAccountCollectionViewCell.swift @@ -53,11 +53,6 @@ extension SuggestionAccountCollectionViewCell { private func configure() { contentView.addSubview(imageView) imageView.translatesAutoresizingMaskIntoConstraints = false - NSLayoutConstraint.activate([ - imageView.topAnchor.constraint(equalTo: contentView.topAnchor), - imageView.leadingAnchor.constraint(equalTo: contentView.leadingAnchor), - imageView.trailingAnchor.constraint(equalTo: contentView.trailingAnchor), - imageView.bottomAnchor.constraint(equalTo: contentView.bottomAnchor), - ]) + imageView.pinToParent() } } diff --git a/Mastodon/Scene/SuggestionAccount/TableViewCell/SuggestionAccountTableViewCell.swift b/Mastodon/Scene/SuggestionAccount/TableViewCell/SuggestionAccountTableViewCell.swift index 47bd9d6b3..d259ebed4 100644 --- a/Mastodon/Scene/SuggestionAccount/TableViewCell/SuggestionAccountTableViewCell.swift +++ b/Mastodon/Scene/SuggestionAccount/TableViewCell/SuggestionAccountTableViewCell.swift @@ -97,12 +97,7 @@ extension SuggestionAccountTableViewCell { containerStackView.isLayoutMarginsRelativeArrangement = true containerStackView.translatesAutoresizingMaskIntoConstraints = false contentView.addSubview(containerStackView) - NSLayoutConstraint.activate([ - containerStackView.topAnchor.constraint(equalTo: contentView.topAnchor), - containerStackView.leadingAnchor.constraint(equalTo: contentView.leadingAnchor), - containerStackView.trailingAnchor.constraint(equalTo: contentView.trailingAnchor), - containerStackView.bottomAnchor.constraint(equalTo: contentView.bottomAnchor), - ]) + containerStackView.pinToParent() avatarButton.translatesAutoresizingMaskIntoConstraints = false containerStackView.addArrangedSubview(avatarButton) diff --git a/Mastodon/Scene/Thread/ThreadViewController.swift b/Mastodon/Scene/Thread/ThreadViewController.swift index 5dee182c6..e8e6ce130 100644 --- a/Mastodon/Scene/Thread/ThreadViewController.swift +++ b/Mastodon/Scene/Thread/ThreadViewController.swift @@ -87,12 +87,7 @@ extension ThreadViewController { tableView.translatesAutoresizingMaskIntoConstraints = false view.addSubview(tableView) - NSLayoutConstraint.activate([ - tableView.topAnchor.constraint(equalTo: view.topAnchor), - tableView.leadingAnchor.constraint(equalTo: view.leadingAnchor), - tableView.trailingAnchor.constraint(equalTo: view.trailingAnchor), - tableView.bottomAnchor.constraint(equalTo: view.bottomAnchor), - ]) + tableView.pinToParent() tableView.delegate = self viewModel.setupDiffableDataSource( diff --git a/MastodonSDK/Sources/MastodonExtension/UIView.swift b/MastodonSDK/Sources/MastodonExtension/UIView.swift index f96d1618a..fa62be6c0 100644 --- a/MastodonSDK/Sources/MastodonExtension/UIView.swift +++ b/MastodonSDK/Sources/MastodonExtension/UIView.swift @@ -46,3 +46,20 @@ extension UIView { return self } } + +public extension UIView { + + func pinToParent() { + pinTo(to: self.superview) + } + + func pinTo(to view: UIView?) { + guard let pinToView = view else { return } + NSLayoutConstraint.activate([ + topAnchor.constraint(equalTo: pinToView.topAnchor), + leadingAnchor.constraint(equalTo: pinToView.leadingAnchor), + trailingAnchor.constraint(equalTo: pinToView.trailingAnchor), + bottomAnchor.constraint(equalTo: pinToView.bottomAnchor), + ]) + } +} diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/AutoComplete/AutoCompleteViewController.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/AutoComplete/AutoCompleteViewController.swift index 9af1ce9bf..ccb483f35 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/AutoComplete/AutoCompleteViewController.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/AutoComplete/AutoCompleteViewController.swift @@ -80,12 +80,7 @@ extension AutoCompleteViewController { tableView.translatesAutoresizingMaskIntoConstraints = false containerBackgroundView.addSubview(tableView) - NSLayoutConstraint.activate([ - tableView.topAnchor.constraint(equalTo: containerBackgroundView.topAnchor), - tableView.leadingAnchor.constraint(equalTo: containerBackgroundView.leadingAnchor), - tableView.trailingAnchor.constraint(equalTo: containerBackgroundView.trailingAnchor), - tableView.bottomAnchor.constraint(equalTo: containerBackgroundView.bottomAnchor), - ]) + tableView.pinToParent() tableView.delegate = self viewModel.setupDiffableDataSource(tableView: tableView) diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/AutoComplete/View/AutoCompleteTopChevronView.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/AutoComplete/View/AutoCompleteTopChevronView.swift index 6b842c9f1..98690a3ce 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/AutoComplete/View/AutoCompleteTopChevronView.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/AutoComplete/View/AutoCompleteTopChevronView.swift @@ -65,12 +65,7 @@ extension AutoCompleteTopChevronView { shadowView.translatesAutoresizingMaskIntoConstraints = false addSubview(shadowView) - NSLayoutConstraint.activate([ - shadowView.topAnchor.constraint(equalTo: topAnchor), - shadowView.leadingAnchor.constraint(equalTo: leadingAnchor), - shadowView.trailingAnchor.constraint(equalTo: trailingAnchor), - shadowView.bottomAnchor.constraint(equalTo: bottomAnchor), - ]) + shadowView.pinToParent() shadowLayer.fillColor = topViewBackgroundColor.cgColor shadowView.layer.addSublayer(shadowLayer) diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewController.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewController.swift index b84b47385..48e27aaf2 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewController.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewController.swift @@ -108,12 +108,7 @@ extension ComposeContentViewController { // setup tableView tableView.translatesAutoresizingMaskIntoConstraints = false view.addSubview(tableView) - NSLayoutConstraint.activate([ - tableView.topAnchor.constraint(equalTo: view.topAnchor), - tableView.leadingAnchor.constraint(equalTo: view.leadingAnchor), - tableView.trailingAnchor.constraint(equalTo: view.trailingAnchor), - tableView.bottomAnchor.constraint(equalTo: view.bottomAnchor), - ]) + tableView.pinToParent() tableView.delegate = self viewModel.setupDataSource(tableView: tableView) diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/EmojiPicker/CustomEmojiPickerInputView.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/EmojiPicker/CustomEmojiPickerInputView.swift index 2fa582883..237164ae2 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/EmojiPicker/CustomEmojiPickerInputView.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/EmojiPicker/CustomEmojiPickerInputView.swift @@ -44,12 +44,7 @@ extension CustomEmojiPickerInputView { collectionView.translatesAutoresizingMaskIntoConstraints = false addSubview(collectionView) - NSLayoutConstraint.activate([ - collectionView.topAnchor.constraint(equalTo: topAnchor), - collectionView.leadingAnchor.constraint(equalTo: leadingAnchor), - collectionView.trailingAnchor.constraint(equalTo: trailingAnchor), - collectionView.bottomAnchor.constraint(equalTo: bottomAnchor), - ]) + collectionView.pinToParent() activityIndicatorView.hidesWhenStopped = true activityIndicatorView.startAnimating() diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/EmojiPicker/CustomEmojiPickerItemCollectionViewCell.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/EmojiPicker/CustomEmojiPickerItemCollectionViewCell.swift index c92e689bc..49b1a8269 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/EmojiPicker/CustomEmojiPickerItemCollectionViewCell.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/EmojiPicker/CustomEmojiPickerItemCollectionViewCell.swift @@ -46,12 +46,7 @@ extension CustomEmojiPickerItemCollectionViewCell { private func _init() { emojiImageView.translatesAutoresizingMaskIntoConstraints = false contentView.addSubview(emojiImageView) - NSLayoutConstraint.activate([ - emojiImageView.topAnchor.constraint(equalTo: contentView.topAnchor), - emojiImageView.leadingAnchor.constraint(equalTo: contentView.leadingAnchor), - emojiImageView.trailingAnchor.constraint(equalTo: contentView.trailingAnchor), - emojiImageView.bottomAnchor.constraint(equalTo: contentView.bottomAnchor), - ]) + emojiImageView.pinToParent() isAccessibilityElement = true accessibilityTraits = .button diff --git a/MastodonSDK/Sources/MastodonUI/SwiftUI/AnimatedImage.swift b/MastodonSDK/Sources/MastodonUI/SwiftUI/AnimatedImage.swift index 9a0f65108..29dd16549 100644 --- a/MastodonSDK/Sources/MastodonUI/SwiftUI/AnimatedImage.swift +++ b/MastodonSDK/Sources/MastodonUI/SwiftUI/AnimatedImage.swift @@ -37,12 +37,7 @@ final public class FLAnimatedImageViewProxy: UIView { imageView.translatesAutoresizingMaskIntoConstraints = false addSubview(imageView) - NSLayoutConstraint.activate([ - imageView.topAnchor.constraint(equalTo: topAnchor), - imageView.leadingAnchor.constraint(equalTo: leadingAnchor), - imageView.trailingAnchor.constraint(equalTo: trailingAnchor), - imageView.bottomAnchor.constraint(equalTo: bottomAnchor), - ]) + imageView.pinToParent() } required init?(coder: NSCoder) { diff --git a/MastodonSDK/Sources/MastodonUI/View/Button/AvatarButton.swift b/MastodonSDK/Sources/MastodonUI/View/Button/AvatarButton.swift index 57257fd89..d970ac69c 100644 --- a/MastodonSDK/Sources/MastodonUI/View/Button/AvatarButton.swift +++ b/MastodonSDK/Sources/MastodonUI/View/Button/AvatarButton.swift @@ -32,12 +32,7 @@ open class AvatarButton: UIControl { avatarImageView.frame = bounds avatarImageView.translatesAutoresizingMaskIntoConstraints = false addSubview(avatarImageView) - NSLayoutConstraint.activate([ - avatarImageView.topAnchor.constraint(equalTo: topAnchor), - avatarImageView.leadingAnchor.constraint(equalTo: leadingAnchor), - avatarImageView.trailingAnchor.constraint(equalTo: trailingAnchor), - avatarImageView.bottomAnchor.constraint(equalTo: bottomAnchor), - ]) + avatarImageView.pinToParent() isAccessibilityElement = true accessibilityLabel = L10n.Common.Controls.Status.showUserProfile diff --git a/MastodonSDK/Sources/MastodonUI/View/Container/MediaGridContainerView.swift b/MastodonSDK/Sources/MastodonUI/View/Container/MediaGridContainerView.swift index e3359fb58..b28f63942 100644 --- a/MastodonSDK/Sources/MastodonUI/View/Container/MediaGridContainerView.swift +++ b/MastodonSDK/Sources/MastodonUI/View/Container/MediaGridContainerView.swift @@ -136,12 +136,7 @@ extension MediaGridContainerView { private func layoutContentWarningOverlay() { contentWarningOverlay.translatesAutoresizingMaskIntoConstraints = false addSubview(contentWarningOverlay) - NSLayoutConstraint.activate([ - contentWarningOverlay.topAnchor.constraint(equalTo: topAnchor), - contentWarningOverlay.leadingAnchor.constraint(equalTo: leadingAnchor), - contentWarningOverlay.trailingAnchor.constraint(equalTo: trailingAnchor), - contentWarningOverlay.bottomAnchor.constraint(equalTo: bottomAnchor), - ]) + contentWarningOverlay.pinToParent() } } @@ -208,12 +203,7 @@ extension MediaGridContainerView { let containerVerticalStackView = createStackView(axis: .vertical) containerVerticalStackView.translatesAutoresizingMaskIntoConstraints = false view.addSubview(containerVerticalStackView) - NSLayoutConstraint.activate([ - containerVerticalStackView.topAnchor.constraint(equalTo: view.topAnchor), - containerVerticalStackView.leadingAnchor.constraint(equalTo: view.leadingAnchor), - containerVerticalStackView.trailingAnchor.constraint(equalTo: view.trailingAnchor), - containerVerticalStackView.bottomAnchor.constraint(equalTo: view.bottomAnchor), - ]) + containerVerticalStackView.pinToParent() let count = mediaViews.count switch count { diff --git a/MastodonSDK/Sources/MastodonUI/View/Content/FamiliarFollowersDashboardView.swift b/MastodonSDK/Sources/MastodonUI/View/Content/FamiliarFollowersDashboardView.swift index c15f8878a..32d9bce96 100644 --- a/MastodonSDK/Sources/MastodonUI/View/Content/FamiliarFollowersDashboardView.swift +++ b/MastodonSDK/Sources/MastodonUI/View/Content/FamiliarFollowersDashboardView.swift @@ -45,12 +45,7 @@ extension FamiliarFollowersDashboardView { stackView.translatesAutoresizingMaskIntoConstraints = false addSubview(stackView) - NSLayoutConstraint.activate([ - stackView.topAnchor.constraint(equalTo: topAnchor), - stackView.leadingAnchor.constraint(equalTo: leadingAnchor), - stackView.trailingAnchor.constraint(equalTo: trailingAnchor), - stackView.bottomAnchor.constraint(equalTo: bottomAnchor), - ]) + stackView.pinToParent() avatarContainerView.translatesAutoresizingMaskIntoConstraints = false stackView.addArrangedSubview(avatarContainerView) diff --git a/MastodonSDK/Sources/MastodonUI/View/Content/MediaView.swift b/MastodonSDK/Sources/MastodonUI/View/Content/MediaView.swift index f4cee0922..54560a8ce 100644 --- a/MastodonSDK/Sources/MastodonUI/View/Content/MediaView.swift +++ b/MastodonSDK/Sources/MastodonUI/View/Content/MediaView.swift @@ -138,12 +138,7 @@ extension MediaView { private func layoutImage() { imageView.translatesAutoresizingMaskIntoConstraints = false container.addSubview(imageView) - NSLayoutConstraint.activate([ - imageView.topAnchor.constraint(equalTo: container.topAnchor), - imageView.leadingAnchor.constraint(equalTo: container.leadingAnchor), - imageView.trailingAnchor.constraint(equalTo: container.trailingAnchor), - imageView.bottomAnchor.constraint(equalTo: container.bottomAnchor), - ]) + imageView.pinToParent() } private func bindImage(configuration: Configuration, info: Configuration.ImageInfo) { @@ -168,12 +163,7 @@ extension MediaView { // use view controller as View here playerViewController.view.translatesAutoresizingMaskIntoConstraints = false container.addSubview(playerViewController.view) - NSLayoutConstraint.activate([ - playerViewController.view.topAnchor.constraint(equalTo: container.topAnchor), - playerViewController.view.leadingAnchor.constraint(equalTo: container.leadingAnchor), - playerViewController.view.trailingAnchor.constraint(equalTo: container.trailingAnchor), - playerViewController.view.bottomAnchor.constraint(equalTo: container.bottomAnchor), - ]) + playerViewController.view.pinToParent() setupIndicatorViewHierarchy() playerIndicatorLabel.attributedText = NSAttributedString(string: "GIF") @@ -213,12 +203,7 @@ extension MediaView { private func layoutBlurhash() { blurhashImageView.translatesAutoresizingMaskIntoConstraints = false container.addSubview(blurhashImageView) - NSLayoutConstraint.activate([ - blurhashImageView.topAnchor.constraint(equalTo: container.topAnchor), - blurhashImageView.leadingAnchor.constraint(equalTo: container.leadingAnchor), - blurhashImageView.trailingAnchor.constraint(equalTo: container.trailingAnchor), - blurhashImageView.bottomAnchor.constraint(equalTo: container.bottomAnchor), - ]) + blurhashImageView.pinToParent() } private func bindBlurhash(configuration: Configuration) { @@ -304,12 +289,7 @@ extension MediaView { guard container.superview == nil else { return } container.translatesAutoresizingMaskIntoConstraints = false addSubview(container) - NSLayoutConstraint.activate([ - container.topAnchor.constraint(equalTo: topAnchor), - container.leadingAnchor.constraint(equalTo: leadingAnchor), - container.trailingAnchor.constraint(equalTo: trailingAnchor), - container.bottomAnchor.constraint(equalTo: bottomAnchor), - ]) + container.pinToParent() } private func setupIndicatorViewHierarchy() { @@ -329,12 +309,7 @@ extension MediaView { if vibrancyEffectView.superview == nil { vibrancyEffectView.translatesAutoresizingMaskIntoConstraints = false blurEffectView.contentView.addSubview(vibrancyEffectView) - NSLayoutConstraint.activate([ - vibrancyEffectView.topAnchor.constraint(equalTo: blurEffectView.contentView.topAnchor), - vibrancyEffectView.leadingAnchor.constraint(equalTo: blurEffectView.contentView.leadingAnchor), - vibrancyEffectView.trailingAnchor.constraint(equalTo: blurEffectView.contentView.trailingAnchor), - vibrancyEffectView.bottomAnchor.constraint(equalTo: blurEffectView.contentView.bottomAnchor), - ]) + vibrancyEffectView.pinToParent() } if playerIndicatorLabel.superview == nil { diff --git a/MastodonSDK/Sources/MastodonUI/View/Content/NewsView.swift b/MastodonSDK/Sources/MastodonUI/View/Content/NewsView.swift index 0d4298035..304bcebc4 100644 --- a/MastodonSDK/Sources/MastodonUI/View/Content/NewsView.swift +++ b/MastodonSDK/Sources/MastodonUI/View/Content/NewsView.swift @@ -79,12 +79,7 @@ extension NewsView { container.spacing = 8 container.translatesAutoresizingMaskIntoConstraints = false addSubview(container) - NSLayoutConstraint.activate([ - container.topAnchor.constraint(equalTo: topAnchor), - container.leadingAnchor.constraint(equalTo: leadingAnchor), - container.trailingAnchor.constraint(equalTo: trailingAnchor), - container.bottomAnchor.constraint(equalTo: bottomAnchor), - ]) + container.pinToParent() // textContainer: V - [ providerContainer | headlineLabel | (spacer) | footnoteLabel ] let textContainer = UIStackView() diff --git a/MastodonSDK/Sources/MastodonUI/View/Content/NotificationView.swift b/MastodonSDK/Sources/MastodonUI/View/Content/NotificationView.swift index e52422770..dea3c6c58 100644 --- a/MastodonSDK/Sources/MastodonUI/View/Content/NotificationView.swift +++ b/MastodonSDK/Sources/MastodonUI/View/Content/NotificationView.swift @@ -292,21 +292,11 @@ extension NotificationView { acceptFollowRequestButton.translatesAutoresizingMaskIntoConstraints = false acceptFollowRequestButtonShadowBackgroundContainer.addSubview(acceptFollowRequestButton) - NSLayoutConstraint.activate([ - acceptFollowRequestButton.topAnchor.constraint(equalTo: acceptFollowRequestButtonShadowBackgroundContainer.topAnchor), - acceptFollowRequestButton.leadingAnchor.constraint(equalTo: acceptFollowRequestButtonShadowBackgroundContainer.leadingAnchor), - acceptFollowRequestButton.trailingAnchor.constraint(equalTo: acceptFollowRequestButtonShadowBackgroundContainer.trailingAnchor), - acceptFollowRequestButton.bottomAnchor.constraint(equalTo: acceptFollowRequestButtonShadowBackgroundContainer.bottomAnchor), - ]) + acceptFollowRequestButton.pinToParent() rejectFollowRequestButton.translatesAutoresizingMaskIntoConstraints = false rejectFollowRequestButtonShadowBackgroundContainer.addSubview(rejectFollowRequestButton) - NSLayoutConstraint.activate([ - rejectFollowRequestButton.topAnchor.constraint(equalTo: rejectFollowRequestButtonShadowBackgroundContainer.topAnchor), - rejectFollowRequestButton.leadingAnchor.constraint(equalTo: rejectFollowRequestButtonShadowBackgroundContainer.leadingAnchor), - rejectFollowRequestButton.trailingAnchor.constraint(equalTo: rejectFollowRequestButtonShadowBackgroundContainer.trailingAnchor), - rejectFollowRequestButton.bottomAnchor.constraint(equalTo: rejectFollowRequestButtonShadowBackgroundContainer.bottomAnchor), - ]) + rejectFollowRequestButton.pinToParent() followRequestContainerView.axis = .horizontal followRequestContainerView.distribution = .fillEqually @@ -348,12 +338,7 @@ extension NotificationView { quoteBackgroundView.layoutMargins = UIEdgeInsets(top: 16, left: 0, bottom: 0, right: 0) quoteBackgroundView.translatesAutoresizingMaskIntoConstraints = false quoteStatusViewContainerView.addSubview(quoteBackgroundView) - NSLayoutConstraint.activate([ - quoteBackgroundView.topAnchor.constraint(equalTo: quoteStatusViewContainerView.layoutMarginsGuide.topAnchor), - quoteBackgroundView.leadingAnchor.constraint(equalTo: quoteStatusViewContainerView.layoutMarginsGuide.leadingAnchor), - quoteBackgroundView.trailingAnchor.constraint(equalTo: quoteStatusViewContainerView.layoutMarginsGuide.trailingAnchor), - quoteBackgroundView.bottomAnchor.constraint(equalTo: quoteStatusViewContainerView.layoutMarginsGuide.bottomAnchor), - ]) + quoteBackgroundView.pinToParent() quoteBackgroundView.backgroundColor = .secondarySystemBackground quoteBackgroundView.layer.masksToBounds = true quoteBackgroundView.layer.cornerCurve = .continuous @@ -363,12 +348,7 @@ extension NotificationView { quoteStatusView.translatesAutoresizingMaskIntoConstraints = false quoteBackgroundView.addSubview(quoteStatusView) - NSLayoutConstraint.activate([ - quoteStatusView.topAnchor.constraint(equalTo: quoteBackgroundView.layoutMarginsGuide.topAnchor), - quoteStatusView.leadingAnchor.constraint(equalTo: quoteBackgroundView.layoutMarginsGuide.leadingAnchor), - quoteStatusView.trailingAnchor.constraint(equalTo: quoteBackgroundView.layoutMarginsGuide.trailingAnchor), - quoteStatusView.bottomAnchor.constraint(equalTo: quoteBackgroundView.layoutMarginsGuide.bottomAnchor), - ]) + quoteStatusView.pinToParent() quoteStatusView.setup(style: .notificationQuote) statusView.isHidden = true diff --git a/MastodonSDK/Sources/MastodonUI/View/Content/PollOptionView.swift b/MastodonSDK/Sources/MastodonUI/View/Content/PollOptionView.swift index 04a032563..06672aab6 100644 --- a/MastodonSDK/Sources/MastodonUI/View/Content/PollOptionView.swift +++ b/MastodonSDK/Sources/MastodonUI/View/Content/PollOptionView.swift @@ -110,12 +110,7 @@ extension PollOptionView { voteProgressStripView.translatesAutoresizingMaskIntoConstraints = false roundedBackgroundView.addSubview(voteProgressStripView) - NSLayoutConstraint.activate([ - voteProgressStripView.topAnchor.constraint(equalTo: roundedBackgroundView.topAnchor), - voteProgressStripView.leadingAnchor.constraint(equalTo: roundedBackgroundView.leadingAnchor), - voteProgressStripView.trailingAnchor.constraint(equalTo: roundedBackgroundView.trailingAnchor), - voteProgressStripView.bottomAnchor.constraint(equalTo: roundedBackgroundView.bottomAnchor), - ]) + voteProgressStripView.pinToParent() checkmarkBackgroundView.translatesAutoresizingMaskIntoConstraints = false roundedBackgroundView.addSubview(checkmarkBackgroundView) @@ -138,12 +133,7 @@ extension PollOptionView { plusCircleImageView.translatesAutoresizingMaskIntoConstraints = false addSubview(plusCircleImageView) - NSLayoutConstraint.activate([ - plusCircleImageView.topAnchor.constraint(equalTo: checkmarkBackgroundView.topAnchor), - plusCircleImageView.leadingAnchor.constraint(equalTo: checkmarkBackgroundView.leadingAnchor), - plusCircleImageView.trailingAnchor.constraint(equalTo: checkmarkBackgroundView.trailingAnchor), - plusCircleImageView.bottomAnchor.constraint(equalTo: checkmarkBackgroundView.bottomAnchor), - ]) + plusCircleImageView.pinToParent() optionTextField.translatesAutoresizingMaskIntoConstraints = false roundedBackgroundView.addSubview(optionTextField) diff --git a/MastodonSDK/Sources/MastodonUI/View/Content/ProfileCardView.swift b/MastodonSDK/Sources/MastodonUI/View/Content/ProfileCardView.swift index b93d44b73..cb7d8f839 100644 --- a/MastodonSDK/Sources/MastodonUI/View/Content/ProfileCardView.swift +++ b/MastodonSDK/Sources/MastodonUI/View/Content/ProfileCardView.swift @@ -137,12 +137,7 @@ extension ProfileCardView { container.spacing = 8 container.translatesAutoresizingMaskIntoConstraints = false addSubview(container) - NSLayoutConstraint.activate([ - container.topAnchor.constraint(equalTo: topAnchor), - container.leadingAnchor.constraint(equalTo: leadingAnchor), - container.trailingAnchor.constraint(equalTo: trailingAnchor), - container.bottomAnchor.constraint(equalTo: bottomAnchor), - ]) + container.pinToParent() // bannerContainer let bannerContainer = UIView() @@ -237,11 +232,8 @@ extension ProfileCardView { relationshipActionButton.translatesAutoresizingMaskIntoConstraints = false relationshipActionButtonShadowContainer.addSubview(relationshipActionButton) + relationshipActionButton.pinToParent() NSLayoutConstraint.activate([ - relationshipActionButton.topAnchor.constraint(equalTo: relationshipActionButtonShadowContainer.topAnchor), - relationshipActionButton.leadingAnchor.constraint(equalTo: relationshipActionButtonShadowContainer.leadingAnchor), - relationshipActionButton.trailingAnchor.constraint(equalTo: relationshipActionButtonShadowContainer.trailingAnchor), - relationshipActionButton.bottomAnchor.constraint(equalTo: relationshipActionButtonShadowContainer.bottomAnchor), relationshipActionButtonShadowContainer.widthAnchor.constraint(greaterThanOrEqualToConstant: ProfileCardView.friendshipActionButtonSize.width).priority(.required - 1), relationshipActionButtonShadowContainer.heightAnchor.constraint(equalToConstant: ProfileCardView.friendshipActionButtonSize.height).priority(.required - 1), ]) diff --git a/MastodonSDK/Sources/MastodonUI/View/Content/StatusView.swift b/MastodonSDK/Sources/MastodonUI/View/Content/StatusView.swift index 563bc7e3d..4943746b1 100644 --- a/MastodonSDK/Sources/MastodonUI/View/Content/StatusView.swift +++ b/MastodonSDK/Sources/MastodonUI/View/Content/StatusView.swift @@ -236,12 +236,7 @@ extension StatusView { // container containerStackView.translatesAutoresizingMaskIntoConstraints = false addSubview(containerStackView) - NSLayoutConstraint.activate([ - containerStackView.topAnchor.constraint(equalTo: topAnchor), - containerStackView.leadingAnchor.constraint(equalTo: leadingAnchor), - containerStackView.trailingAnchor.constraint(equalTo: trailingAnchor), - containerStackView.bottomAnchor.constraint(equalTo: bottomAnchor), - ]) + containerStackView.pinToParent() // header headerIconImageView.isUserInteractionEnabled = false @@ -392,12 +387,7 @@ extension StatusView.Style { statusView.spoilerOverlayView.translatesAutoresizingMaskIntoConstraints = false statusView.containerStackView.addSubview(statusView.spoilerOverlayView) - NSLayoutConstraint.activate([ - statusView.contentContainer.topAnchor.constraint(equalTo: statusView.spoilerOverlayView.topAnchor), - statusView.contentContainer.leadingAnchor.constraint(equalTo: statusView.spoilerOverlayView.leadingAnchor), - statusView.contentContainer.trailingAnchor.constraint(equalTo: statusView.spoilerOverlayView.trailingAnchor), - statusView.contentContainer.bottomAnchor.constraint(equalTo: statusView.spoilerOverlayView.bottomAnchor), - ]) + statusView.contentContainer.pinTo(to: statusView.spoilerOverlayView) // media container: V - [ mediaGridContainerView ] statusView.mediaContainerView.translatesAutoresizingMaskIntoConstraints = false @@ -409,12 +399,7 @@ extension StatusView.Style { statusView.mediaGridContainerView.translatesAutoresizingMaskIntoConstraints = false statusView.mediaContainerView.addSubview(statusView.mediaGridContainerView) - NSLayoutConstraint.activate([ - statusView.mediaGridContainerView.topAnchor.constraint(equalTo: statusView.mediaContainerView.topAnchor), - statusView.mediaGridContainerView.leadingAnchor.constraint(equalTo: statusView.mediaContainerView.leadingAnchor), - statusView.mediaGridContainerView.trailingAnchor.constraint(equalTo: statusView.mediaContainerView.trailingAnchor), - statusView.mediaGridContainerView.bottomAnchor.constraint(equalTo: statusView.mediaContainerView.bottomAnchor), - ]) + statusView.mediaGridContainerView.pinToParent() // pollContainerView: V - [ pollTableView | pollStatusStackView ] statusView.pollAdaptiveMarginContainerView.contentView = statusView.pollContainerView diff --git a/MastodonSDK/Sources/MastodonUI/View/Content/UserView.swift b/MastodonSDK/Sources/MastodonUI/View/Content/UserView.swift index cb066abfd..901a6547f 100644 --- a/MastodonSDK/Sources/MastodonUI/View/Content/UserView.swift +++ b/MastodonSDK/Sources/MastodonUI/View/Content/UserView.swift @@ -66,12 +66,7 @@ extension UserView { // container containerStackView.translatesAutoresizingMaskIntoConstraints = false addSubview(containerStackView) - NSLayoutConstraint.activate([ - containerStackView.topAnchor.constraint(equalTo: topAnchor), - containerStackView.leadingAnchor.constraint(equalTo: leadingAnchor), - containerStackView.trailingAnchor.constraint(equalTo: trailingAnchor), - containerStackView.bottomAnchor.constraint(equalTo: bottomAnchor) - ]) + containerStackView.pinToParent() avatarButton.translatesAutoresizingMaskIntoConstraints = false containerStackView.addArrangedSubview(avatarButton) diff --git a/MastodonSDK/Sources/MastodonUI/View/Control/SpoilerOverlayView.swift b/MastodonSDK/Sources/MastodonUI/View/Control/SpoilerOverlayView.swift index 98139b00e..c9074f9b5 100644 --- a/MastodonSDK/Sources/MastodonUI/View/Control/SpoilerOverlayView.swift +++ b/MastodonSDK/Sources/MastodonUI/View/Control/SpoilerOverlayView.swift @@ -48,12 +48,7 @@ extension SpoilerOverlayView { private func _init() { containerStackView.translatesAutoresizingMaskIntoConstraints = false addSubview(containerStackView) - NSLayoutConstraint.activate([ - containerStackView.topAnchor.constraint(equalTo: topAnchor), - containerStackView.leadingAnchor.constraint(equalTo: leadingAnchor), - containerStackView.trailingAnchor.constraint(equalTo: trailingAnchor), - containerStackView.bottomAnchor.constraint(equalTo: bottomAnchor), - ]) + containerStackView.pinToParent() let topPaddingView = UIView() topPaddingView.translatesAutoresizingMaskIntoConstraints = false diff --git a/MastodonSDK/Sources/MastodonUI/View/TableViewCell/PollOptionTableViewCell.swift b/MastodonSDK/Sources/MastodonUI/View/TableViewCell/PollOptionTableViewCell.swift index 6ae6ea0b5..d1e1a90f4 100644 --- a/MastodonSDK/Sources/MastodonUI/View/TableViewCell/PollOptionTableViewCell.swift +++ b/MastodonSDK/Sources/MastodonUI/View/TableViewCell/PollOptionTableViewCell.swift @@ -53,12 +53,7 @@ extension PollOptionTableViewCell { pollOptionView.translatesAutoresizingMaskIntoConstraints = false contentView.addSubview(pollOptionView) - NSLayoutConstraint.activate([ - pollOptionView.topAnchor.constraint(equalTo: contentView.topAnchor), - pollOptionView.leadingAnchor.constraint(equalTo: contentView.leadingAnchor), - pollOptionView.trailingAnchor.constraint(equalTo: contentView.trailingAnchor), - pollOptionView.bottomAnchor.constraint(equalTo: contentView.bottomAnchor), - ]) + pollOptionView.pinToParent() pollOptionView.setup(style: .plain) } diff --git a/MastodonSDK/Sources/MastodonUI/View/TableViewCell/ProfileCardTableViewCell.swift b/MastodonSDK/Sources/MastodonUI/View/TableViewCell/ProfileCardTableViewCell.swift index 2d210f20c..a14028ea2 100644 --- a/MastodonSDK/Sources/MastodonUI/View/TableViewCell/ProfileCardTableViewCell.swift +++ b/MastodonSDK/Sources/MastodonUI/View/TableViewCell/ProfileCardTableViewCell.swift @@ -67,12 +67,7 @@ extension ProfileCardTableViewCell { profileCardView.translatesAutoresizingMaskIntoConstraints = false contentView.addSubview(profileCardView) - NSLayoutConstraint.activate([ - profileCardView.topAnchor.constraint(equalTo: shadowBackgroundContainer.topAnchor), - profileCardView.leadingAnchor.constraint(equalTo: shadowBackgroundContainer.leadingAnchor), - profileCardView.trailingAnchor.constraint(equalTo: shadowBackgroundContainer.trailingAnchor), - profileCardView.bottomAnchor.constraint(equalTo: shadowBackgroundContainer.bottomAnchor), - ]) + profileCardView.pinTo(to: shadowBackgroundContainer) profileCardView.delegate = self diff --git a/MastodonSDK/Sources/MastodonUI/View/TableViewCell/TimelineLoaderTableViewCell.swift b/MastodonSDK/Sources/MastodonUI/View/TableViewCell/TimelineLoaderTableViewCell.swift index 6e396dc6d..7f5b355d3 100644 --- a/MastodonSDK/Sources/MastodonUI/View/TableViewCell/TimelineLoaderTableViewCell.swift +++ b/MastodonSDK/Sources/MastodonUI/View/TableViewCell/TimelineLoaderTableViewCell.swift @@ -96,12 +96,7 @@ open class TimelineLoaderTableViewCell: UITableViewCell { stackView.translatesAutoresizingMaskIntoConstraints = false stackView.isUserInteractionEnabled = false contentView.addSubview(stackView) - NSLayoutConstraint.activate([ - stackView.topAnchor.constraint(equalTo: loadMoreButton.topAnchor), - stackView.leadingAnchor.constraint(equalTo: loadMoreButton.leadingAnchor), - stackView.trailingAnchor.constraint(equalTo: loadMoreButton.trailingAnchor), - stackView.bottomAnchor.constraint(equalTo: loadMoreButton.bottomAnchor), - ]) + stackView.pinTo(to: loadMoreButton) let leftPaddingView = UIView() leftPaddingView.translatesAutoresizingMaskIntoConstraints = false stackView.addArrangedSubview(leftPaddingView) diff --git a/ShareActionExtension/Scene/ShareViewController.swift b/ShareActionExtension/Scene/ShareViewController.swift index 7757452cd..372ce5876 100644 --- a/ShareActionExtension/Scene/ShareViewController.swift +++ b/ShareActionExtension/Scene/ShareViewController.swift @@ -102,12 +102,7 @@ extension ShareViewController { addChild(composeContentViewController) composeContentViewController.view.translatesAutoresizingMaskIntoConstraints = false view.addSubview(composeContentViewController.view) - NSLayoutConstraint.activate([ - composeContentViewController.view.topAnchor.constraint(equalTo: view.topAnchor), - composeContentViewController.view.leadingAnchor.constraint(equalTo: view.leadingAnchor), - composeContentViewController.view.trailingAnchor.constraint(equalTo: view.trailingAnchor), - composeContentViewController.view.bottomAnchor.constraint(equalTo: view.bottomAnchor), - ]) + composeContentViewController.view.pinToParent() composeContentViewController.didMove(toParent: self) self.composeContentViewModel = composeContentViewModel From 60235c3989b205828e411e7ae9dd40991e3d03d4 Mon Sep 17 00:00:00 2001 From: Stefan Painhapp <4242986+painhapp@users.noreply.github.com> Date: Fri, 18 Nov 2022 01:47:55 +0900 Subject: [PATCH 566/598] Add missing view --- .../MediaPreview/Video/MediaPreviewVideoViewController.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mastodon/Scene/MediaPreview/Video/MediaPreviewVideoViewController.swift b/Mastodon/Scene/MediaPreview/Video/MediaPreviewVideoViewController.swift index 5c18c1e5e..3981c485a 100644 --- a/Mastodon/Scene/MediaPreview/Video/MediaPreviewVideoViewController.swift +++ b/Mastodon/Scene/MediaPreview/Video/MediaPreviewVideoViewController.swift @@ -39,7 +39,7 @@ extension MediaPreviewVideoViewController { addChild(playerViewController) playerViewController.view.translatesAutoresizingMaskIntoConstraints = false view.addSubview(playerViewController.view) - playerViewController.pinToParent() + playerViewController.view.pinToParent() playerViewController.didMove(toParent: self) if let contentOverlayView = playerViewController.contentOverlayView { From bf01ef80f698874bcba18e0e31b784b482632ab0 Mon Sep 17 00:00:00 2001 From: Stefan Painhapp <4242986+painhapp@users.noreply.github.com> Date: Fri, 18 Nov 2022 01:54:03 +0900 Subject: [PATCH 567/598] Revert changes in NotificationView --- .../MastodonUI/View/Content/NotificationView.swift | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/MastodonSDK/Sources/MastodonUI/View/Content/NotificationView.swift b/MastodonSDK/Sources/MastodonUI/View/Content/NotificationView.swift index dea3c6c58..e6263dda9 100644 --- a/MastodonSDK/Sources/MastodonUI/View/Content/NotificationView.swift +++ b/MastodonSDK/Sources/MastodonUI/View/Content/NotificationView.swift @@ -338,7 +338,12 @@ extension NotificationView { quoteBackgroundView.layoutMargins = UIEdgeInsets(top: 16, left: 0, bottom: 0, right: 0) quoteBackgroundView.translatesAutoresizingMaskIntoConstraints = false quoteStatusViewContainerView.addSubview(quoteBackgroundView) - quoteBackgroundView.pinToParent() + NSLayoutConstraint.activate([ + quoteBackgroundView.topAnchor.constraint(equalTo: quoteStatusViewContainerView.layoutMarginsGuide.topAnchor), + quoteBackgroundView.leadingAnchor.constraint(equalTo: quoteStatusViewContainerView.layoutMarginsGuide.leadingAnchor), + quoteBackgroundView.trailingAnchor.constraint(equalTo: quoteStatusViewContainerView.layoutMarginsGuide.trailingAnchor), + quoteBackgroundView.bottomAnchor.constraint(equalTo: quoteStatusViewContainerView.layoutMarginsGuide.bottomAnchor), + ]) quoteBackgroundView.backgroundColor = .secondarySystemBackground quoteBackgroundView.layer.masksToBounds = true quoteBackgroundView.layer.cornerCurve = .continuous @@ -348,7 +353,12 @@ extension NotificationView { quoteStatusView.translatesAutoresizingMaskIntoConstraints = false quoteBackgroundView.addSubview(quoteStatusView) - quoteStatusView.pinToParent() + NSLayoutConstraint.activate([ + quoteStatusView.topAnchor.constraint(equalTo: quoteBackgroundView.layoutMarginsGuide.topAnchor), + quoteStatusView.leadingAnchor.constraint(equalTo: quoteBackgroundView.layoutMarginsGuide.leadingAnchor), + quoteStatusView.trailingAnchor.constraint(equalTo: quoteBackgroundView.layoutMarginsGuide.trailingAnchor), + quoteStatusView.bottomAnchor.constraint(equalTo: quoteBackgroundView.layoutMarginsGuide.bottomAnchor), + ]) quoteStatusView.setup(style: .notificationQuote) statusView.isHidden = true From 9e65ccfd7eb25fcd425d1afe881b64d1777d2709 Mon Sep 17 00:00:00 2001 From: Stefan Painhapp <4242986+painhapp@users.noreply.github.com> Date: Fri, 18 Nov 2022 01:56:39 +0900 Subject: [PATCH 568/598] Pin plusCircleImageView to checkmarkBackgroundView --- .../Sources/MastodonUI/View/Content/PollOptionView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MastodonSDK/Sources/MastodonUI/View/Content/PollOptionView.swift b/MastodonSDK/Sources/MastodonUI/View/Content/PollOptionView.swift index 06672aab6..514657e62 100644 --- a/MastodonSDK/Sources/MastodonUI/View/Content/PollOptionView.swift +++ b/MastodonSDK/Sources/MastodonUI/View/Content/PollOptionView.swift @@ -133,7 +133,7 @@ extension PollOptionView { plusCircleImageView.translatesAutoresizingMaskIntoConstraints = false addSubview(plusCircleImageView) - plusCircleImageView.pinToParent() + plusCircleImageView.pinTo(to: checkmarkBackgroundView) optionTextField.translatesAutoresizingMaskIntoConstraints = false roundedBackgroundView.addSubview(optionTextField) From e56104c7569afd7ac916241a1bcb366c3a5287aa Mon Sep 17 00:00:00 2001 From: Stefan Painhapp <4242986+painhapp@users.noreply.github.com> Date: Fri, 18 Nov 2022 02:07:33 +0900 Subject: [PATCH 569/598] Revert paddingView.pinToParent --- .../View/PickServerServerSectionTableHeaderView.swift | 5 ++++- Mastodon/Scene/Profile/Header/View/ProfileHeaderView.swift | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/Mastodon/Scene/Onboarding/PickServer/View/PickServerServerSectionTableHeaderView.swift b/Mastodon/Scene/Onboarding/PickServer/View/PickServerServerSectionTableHeaderView.swift index f4b05cab3..ae8c16bb8 100644 --- a/Mastodon/Scene/Onboarding/PickServer/View/PickServerServerSectionTableHeaderView.swift +++ b/Mastodon/Scene/Onboarding/PickServer/View/PickServerServerSectionTableHeaderView.swift @@ -83,8 +83,11 @@ final class PickServerServerSectionTableHeaderView: UIView { let paddingView = UIView() paddingView.translatesAutoresizingMaskIntoConstraints = false containerView.addSubview(paddingView) - paddingView.pinToParent() NSLayoutConstraint.activate([ + paddingView.topAnchor.constraint(equalTo: containerView.topAnchor), + paddingView.leadingAnchor.constraint(equalTo: imageView.trailingAnchor), + paddingView.trailingAnchor.constraint(equalTo: containerView.trailingAnchor), + paddingView.bottomAnchor.constraint(equalTo: containerView.bottomAnchor), paddingView.widthAnchor.constraint(equalToConstant: 4).priority(.defaultHigh), ]) return containerView diff --git a/Mastodon/Scene/Profile/Header/View/ProfileHeaderView.swift b/Mastodon/Scene/Profile/Header/View/ProfileHeaderView.swift index 49963f7fb..d832debd7 100644 --- a/Mastodon/Scene/Profile/Header/View/ProfileHeaderView.swift +++ b/Mastodon/Scene/Profile/Header/View/ProfileHeaderView.swift @@ -281,7 +281,7 @@ extension ProfileHeaderView { followsYouVibrantEffectView.translatesAutoresizingMaskIntoConstraints = false followsYouBlurEffectView.contentView.addSubview(followsYouVibrantEffectView) - followsYouVibrantEffectView.pinToParent() + followsYouVibrantEffectView.pinTo(to: followsYouBlurEffectView) followsYouLabel.translatesAutoresizingMaskIntoConstraints = false followsYouVibrantEffectView.contentView.addSubview(followsYouLabel) From ebe293216c43bd12015d427e610ca666f3b2a35b Mon Sep 17 00:00:00 2001 From: Stefan Painhapp <4242986+painhapp@users.noreply.github.com> Date: Fri, 18 Nov 2022 02:32:26 +0900 Subject: [PATCH 570/598] Pin vibrancyVisualEffectView to blurVisualEffectView --- .../Scene/Share/View/Content/ContentWarningOverlayView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mastodon/Scene/Share/View/Content/ContentWarningOverlayView.swift b/Mastodon/Scene/Share/View/Content/ContentWarningOverlayView.swift index 8a0901dfe..eb55dc575 100644 --- a/Mastodon/Scene/Share/View/Content/ContentWarningOverlayView.swift +++ b/Mastodon/Scene/Share/View/Content/ContentWarningOverlayView.swift @@ -93,7 +93,7 @@ extension ContentWarningOverlayView { vibrancyVisualEffectView.translatesAutoresizingMaskIntoConstraints = false blurVisualEffectView.contentView.addSubview(vibrancyVisualEffectView) - vibrancyVisualEffectView.pinToParent() + vibrancyVisualEffectView.pinTo(to: blurVisualEffectView) vibrancyContentWarningLabel.translatesAutoresizingMaskIntoConstraints = false vibrancyVisualEffectView.contentView.addSubview(vibrancyContentWarningLabel) From e2e93bdaf0dfd606b776d88d97075a5a25d891e7 Mon Sep 17 00:00:00 2001 From: Stefan Painhapp <4242986+painhapp@users.noreply.github.com> Date: Fri, 18 Nov 2022 03:53:52 +0900 Subject: [PATCH 571/598] #607 Use safe areas for image preview --- .../Image/MediaPreviewImageViewController.swift | 8 ++++---- ...oMediaPreviewViewControllerAnimatedTransitioning.swift | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Mastodon/Scene/MediaPreview/Image/MediaPreviewImageViewController.swift b/Mastodon/Scene/MediaPreview/Image/MediaPreviewImageViewController.swift index 127c4c0c0..e28249312 100644 --- a/Mastodon/Scene/MediaPreview/Image/MediaPreviewImageViewController.swift +++ b/Mastodon/Scene/MediaPreview/Image/MediaPreviewImageViewController.swift @@ -46,10 +46,10 @@ extension MediaPreviewImageViewController { previewImageView.translatesAutoresizingMaskIntoConstraints = false view.addSubview(previewImageView) NSLayoutConstraint.activate([ - previewImageView.frameLayoutGuide.topAnchor.constraint(equalTo: view.topAnchor), - previewImageView.frameLayoutGuide.leadingAnchor.constraint(equalTo: view.leadingAnchor), - previewImageView.frameLayoutGuide.trailingAnchor.constraint(equalTo: view.trailingAnchor), - previewImageView.frameLayoutGuide.bottomAnchor.constraint(equalTo: view.bottomAnchor), + previewImageView.frameLayoutGuide.topAnchor.constraint(equalTo: view.safeAreaLayoutGuide.topAnchor), + previewImageView.frameLayoutGuide.leadingAnchor.constraint(equalTo: view.safeAreaLayoutGuide.leadingAnchor), + previewImageView.frameLayoutGuide.trailingAnchor.constraint(equalTo: view.safeAreaLayoutGuide.trailingAnchor), + previewImageView.frameLayoutGuide.bottomAnchor.constraint(equalTo: view.safeAreaLayoutGuide.bottomAnchor), ]) tapGestureRecognizer.addTarget(self, action: #selector(MediaPreviewImageViewController.tapGestureRecognizerHandler(_:))) diff --git a/Mastodon/Scene/Transition/MediaPreview/MediaHostToMediaPreviewViewControllerAnimatedTransitioning.swift b/Mastodon/Scene/Transition/MediaPreview/MediaHostToMediaPreviewViewControllerAnimatedTransitioning.swift index 5381feb0d..8d6549b60 100644 --- a/Mastodon/Scene/Transition/MediaPreview/MediaHostToMediaPreviewViewControllerAnimatedTransitioning.swift +++ b/Mastodon/Scene/Transition/MediaPreview/MediaHostToMediaPreviewViewControllerAnimatedTransitioning.swift @@ -65,7 +65,7 @@ extension MediaHostToMediaPreviewViewControllerAnimatedTransitioning { let initialFrame = transitionItem.initialFrame ?? toViewEndFrame let transitionTargetFrame: CGRect = { let aspectRatio = transitionItem.aspectRatio ?? CGSize(width: initialFrame.width, height: initialFrame.height) - return AVMakeRect(aspectRatio: aspectRatio, insideRect: toView.bounds) + return AVMakeRect(aspectRatio: aspectRatio, insideRect: toView.bounds.inset(by: toView.safeAreaInsets)) }() let transitionImageView: UIImageView = { let imageView = UIImageView(frame: transitionContext.containerView.convert(initialFrame, from: nil)) From 560a1d9ac573457483ca0d9921843850cd5e8599 Mon Sep 17 00:00:00 2001 From: Jed Fox Date: Thu, 17 Nov 2022 14:15:56 -0500 Subject: [PATCH 572/598] Add names to the Run Script actions --- Mastodon.xcodeproj/project.pbxproj | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/Mastodon.xcodeproj/project.pbxproj b/Mastodon.xcodeproj/project.pbxproj index ae8410c35..ac6370a95 100644 --- a/Mastodon.xcodeproj/project.pbxproj +++ b/Mastodon.xcodeproj/project.pbxproj @@ -2692,9 +2692,9 @@ DB427DCF25BAA00100D1B89D /* Frameworks */, DB89BA0825C10FD0008580ED /* Embed Frameworks */, DBF8AE1B263293E400C9C23C /* Embed Foundation Extensions */, - DB3D100425BAA71500EAA174 /* ShellScript */, - DB025B8E278D6448002F581E /* ShellScript */, - DB697DD2278F48D5004EF2F7 /* ShellScript */, + DB3D100425BAA71500EAA174 /* Run SwiftGen */, + DB025B8E278D6448002F581E /* Run Sourcery: Core Data */, + DB697DD2278F48D5004EF2F7 /* Run Sourcery */, ); buildRules = ( ); @@ -3010,7 +3010,7 @@ shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; showEnvVarsInLog = 0; }; - DB025B8E278D6448002F581E /* ShellScript */ = { + DB025B8E278D6448002F581E /* Run Sourcery: Core Data */ = { isa = PBXShellScriptBuildPhase; alwaysOutOfDate = 1; buildActionMask = 12; @@ -3020,6 +3020,7 @@ ); inputPaths = ( ); + name = "Run Sourcery: Core Data"; outputFileListPaths = ( ); outputPaths = ( @@ -3028,7 +3029,7 @@ shellPath = /bin/sh; shellScript = "if [[ -f \"${PODS_ROOT}/Sourcery/bin/sourcery\" ]]; then\n \"${PODS_ROOT}/Sourcery/bin/sourcery\" --config ./MastodonSDK/Sources/CoreDataStack\nelse\n echo \"warning: Sourcery is not installed. Run 'pod install --repo-update' to install it.\"\nfi\n"; }; - DB3D100425BAA71500EAA174 /* ShellScript */ = { + DB3D100425BAA71500EAA174 /* Run SwiftGen */ = { isa = PBXShellScriptBuildPhase; alwaysOutOfDate = 1; buildActionMask = 12; @@ -3038,6 +3039,7 @@ ); inputPaths = ( ); + name = "Run SwiftGen"; outputFileListPaths = ( ); outputPaths = ( @@ -3046,7 +3048,7 @@ shellPath = /bin/sh; shellScript = "if [[ -f \"${PODS_ROOT}/SwiftGen/bin/swiftgen\" ]]; then\n \"${PODS_ROOT}/SwiftGen/bin/swiftgen\" \nelse\n echo \"warning: SwiftGen is not installed. Run 'pod install --repo-update' to install it.\"\nfi\n"; }; - DB697DD2278F48D5004EF2F7 /* ShellScript */ = { + DB697DD2278F48D5004EF2F7 /* Run Sourcery */ = { isa = PBXShellScriptBuildPhase; alwaysOutOfDate = 1; buildActionMask = 12; @@ -3056,6 +3058,7 @@ ); inputPaths = ( ); + name = "Run Sourcery"; outputFileListPaths = ( ); outputPaths = ( From ae420fac79f0d7d01a2bc89f91e309af9bbcbd39 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Thu, 17 Nov 2022 20:57:36 +0100 Subject: [PATCH 573/598] New translations app.json (Czech) --- Localization/StringsConvertor/input/cs.lproj/app.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Localization/StringsConvertor/input/cs.lproj/app.json b/Localization/StringsConvertor/input/cs.lproj/app.json index f94207c89..680eb01bb 100644 --- a/Localization/StringsConvertor/input/cs.lproj/app.json +++ b/Localization/StringsConvertor/input/cs.lproj/app.json @@ -427,8 +427,8 @@ "enable_content_warning": "Povolit upozornění na obsah", "disable_content_warning": "Vypnout upozornění na obsah", "post_visibility_menu": "Menu viditelnosti příspěvku", - "post_options": "Post Options", - "posting_as": "Posting as %s" + "post_options": "Možnosti příspěvku", + "posting_as": "Odesílání jako %s" }, "keyboard": { "discard_post": "Zahodit příspěvek", From 96c3e17531acbc2e4321466b4a2adb9a860e7eb8 Mon Sep 17 00:00:00 2001 From: Nathan Mattes Date: Thu, 17 Nov 2022 23:02:43 +0100 Subject: [PATCH 574/598] Fix some warnings --- Mastodon/Activity/SafariActivity.swift | 2 +- .../Provider/DataSourceFacade+Follow.swift | 2 +- .../Provider/DataSourceFacade+Hashtag.swift | 4 ++-- .../Provider/DataSourceFacade+Media.swift | 2 +- .../Provider/DataSourceFacade+Meta.swift | 6 +++--- .../Provider/DataSourceFacade+Profile.swift | 6 +++--- .../Provider/DataSourceFacade+Status.swift | 5 +++-- ...rceProvider+StatusTableViewCellDelegate.swift | 4 ++-- .../DataSourceProvider+UITableViewDelegate.swift | 2 +- .../Scene/Compose/ComposeViewController.swift | 7 ++----- .../DiscoveryCommunityViewModel+State.swift | 2 +- .../DiscoveryHashtagsViewController.swift | 4 ++-- .../News/DiscoveryNewsViewController.swift | 4 ++-- .../News/DiscoveryNewsViewModel+State.swift | 3 +-- .../Posts/DiscoveryPostsViewModel+State.swift | 2 +- .../HashtagTimelineViewModel+State.swift | 4 ++-- .../HomeTimelineViewController+DebugAction.swift | 16 ++++++++-------- .../HomeTimelineViewController.swift | 4 ++-- .../HomeTimelineViewModel+LoadLatestState.swift | 2 +- .../MediaPreviewViewController.swift | 2 +- .../MastodonConfirmEmailViewController.swift | 11 +++++------ .../MastodonRegisterViewController+Avatar.swift | 2 +- .../Favorite/FavoriteViewModel+State.swift | 5 ++--- .../Scene/Profile/ProfileViewController.swift | 2 +- .../UserLIst/UserListViewModel+State.swift | 2 +- .../Report/Report/ReportViewController.swift | 2 +- .../ReportStatusViewModel+State.swift | 2 +- .../Root/MainTab/MainTabBarController.swift | 2 +- .../Search/Search/SearchViewController.swift | 2 +- .../Scene/Settings/SettingsViewController.swift | 4 ++-- .../SuggestionAccountViewController.swift | 2 +- ...viewViewControllerAnimatedTransitioning.swift | 2 +- .../AttachmentViewModel+Compress.swift | 2 +- .../Content/NotificationView+ViewModel.swift | 1 - 34 files changed, 59 insertions(+), 65 deletions(-) diff --git a/Mastodon/Activity/SafariActivity.swift b/Mastodon/Activity/SafariActivity.swift index 62a193eaf..e20a9f815 100644 --- a/Mastodon/Activity/SafariActivity.swift +++ b/Mastodon/Activity/SafariActivity.swift @@ -58,7 +58,7 @@ final class SafariActivity: UIActivity { } Task { - await sceneCoordinator?.present(scene: .safari(url: url as URL), from: nil, transition: .safariPresent(animated: true, completion: nil)) + _ = await sceneCoordinator?.present(scene: .safari(url: url as URL), from: nil, transition: .safariPresent(animated: true, completion: nil)) activityDidFinish(true) } } diff --git a/Mastodon/Protocol/Provider/DataSourceFacade+Follow.swift b/Mastodon/Protocol/Provider/DataSourceFacade+Follow.swift index b3812f198..a85de703a 100644 --- a/Mastodon/Protocol/Provider/DataSourceFacade+Follow.swift +++ b/Mastodon/Protocol/Provider/DataSourceFacade+Follow.swift @@ -94,7 +94,7 @@ extension DataSourceFacade { let alertController = await UIAlertController(for: error, title: nil, preferredStyle: .alert) let okAction = await UIAlertAction(title: L10n.Common.Controls.Actions.ok, style: .default) await alertController.addAction(okAction) - await dependency.coordinator.present( + _ = await dependency.coordinator.present( scene: .alertController(alertController: alertController), from: nil, transition: .alertController(animated: true, completion: nil) diff --git a/Mastodon/Protocol/Provider/DataSourceFacade+Hashtag.swift b/Mastodon/Protocol/Provider/DataSourceFacade+Hashtag.swift index 43d6b954b..6135c904a 100644 --- a/Mastodon/Protocol/Provider/DataSourceFacade+Hashtag.swift +++ b/Mastodon/Protocol/Provider/DataSourceFacade+Hashtag.swift @@ -35,7 +35,7 @@ extension DataSourceFacade { hashtag: tag.name ) - provider.coordinator.present( + _ = provider.coordinator.present( scene: .hashtagTimeline(viewModel: hashtagTimelineViewModel), from: provider, transition: .show @@ -61,7 +61,7 @@ extension DataSourceFacade { hashtag: name ) - provider.coordinator.present( + _ = provider.coordinator.present( scene: .hashtagTimeline(viewModel: hashtagTimelineViewModel), from: provider, transition: .show diff --git a/Mastodon/Protocol/Provider/DataSourceFacade+Media.swift b/Mastodon/Protocol/Provider/DataSourceFacade+Media.swift index 3e767f2d3..9dd97f38a 100644 --- a/Mastodon/Protocol/Provider/DataSourceFacade+Media.swift +++ b/Mastodon/Protocol/Provider/DataSourceFacade+Media.swift @@ -24,7 +24,7 @@ extension DataSourceFacade { item: mediaPreviewItem, transitionItem: mediaPreviewTransitionItem ) - dependency.coordinator.present( + _ = dependency.coordinator.present( scene: .mediaPreview(viewModel: mediaPreviewViewModel), from: dependency, transition: .custom(transitioningDelegate: dependency.mediaPreviewTransitionController) diff --git a/Mastodon/Protocol/Provider/DataSourceFacade+Meta.swift b/Mastodon/Protocol/Provider/DataSourceFacade+Meta.swift index 7e0ed37fc..dd3c4903a 100644 --- a/Mastodon/Protocol/Provider/DataSourceFacade+Meta.swift +++ b/Mastodon/Protocol/Provider/DataSourceFacade+Meta.swift @@ -56,13 +56,13 @@ extension DataSourceFacade { url.pathComponents[2] == "statuses" { let statusID = url.pathComponents[3] let threadViewModel = RemoteThreadViewModel(context: provider.context, authContext: provider.authContext, statusID: statusID) - await provider.coordinator.present(scene: .thread(viewModel: threadViewModel), from: nil, transition: .show) + _ = await provider.coordinator.present(scene: .thread(viewModel: threadViewModel), from: nil, transition: .show) } else { - await provider.coordinator.present(scene: .safari(url: url), from: nil, transition: .safariPresent(animated: true, completion: nil)) + _ = await provider.coordinator.present(scene: .safari(url: url), from: nil, transition: .safariPresent(animated: true, completion: nil)) } case .hashtag(_, let hashtag, _): let hashtagTimelineViewModel = HashtagTimelineViewModel(context: provider.context, authContext: provider.authContext, hashtag: hashtag) - await provider.coordinator.present(scene: .hashtagTimeline(viewModel: hashtagTimelineViewModel), from: provider, transition: .show) + _ = await provider.coordinator.present(scene: .hashtagTimeline(viewModel: hashtagTimelineViewModel), from: provider, transition: .show) case .mention(_, let mention, let userInfo): await coordinateToProfileScene( provider: provider, diff --git a/Mastodon/Protocol/Provider/DataSourceFacade+Profile.swift b/Mastodon/Protocol/Provider/DataSourceFacade+Profile.swift index ef01b8394..3c0509d2c 100644 --- a/Mastodon/Protocol/Provider/DataSourceFacade+Profile.swift +++ b/Mastodon/Protocol/Provider/DataSourceFacade+Profile.swift @@ -47,7 +47,7 @@ extension DataSourceFacade { mastodonUser: user ) - provider.coordinator.present( + _ = provider.coordinator.present( scene: .profile(viewModel: profileViewModel), from: provider, transition: .show @@ -75,7 +75,7 @@ extension DataSourceFacade { } guard let mention = mentions?.first(where: { $0.username == mention }) else { - await provider.coordinator.present( + _ = await provider.coordinator.present( scene: .safari(url: url), from: provider, transition: .safariPresent(animated: true, completion: nil) @@ -102,7 +102,7 @@ extension DataSourceFacade { } }() - await provider.coordinator.present( + _ = await provider.coordinator.present( scene: .profile(viewModel: profileViewModel), from: provider, transition: .show diff --git a/Mastodon/Protocol/Provider/DataSourceFacade+Status.swift b/Mastodon/Protocol/Provider/DataSourceFacade+Status.swift index 332ed75e4..506048bbf 100644 --- a/Mastodon/Protocol/Provider/DataSourceFacade+Status.swift +++ b/Mastodon/Protocol/Provider/DataSourceFacade+Status.swift @@ -43,7 +43,7 @@ extension DataSourceFacade { dependency: provider, status: status ) - provider.coordinator.present( + _ = provider.coordinator.present( scene: .activityViewController( activityViewController: activityViewController, sourceView: button, @@ -358,7 +358,8 @@ extension DataSourceFacade { dependency: dependency, status: status ) - await dependency.coordinator.present( + + _ = dependency.coordinator.present( scene: .activityViewController( activityViewController: activityViewController, sourceView: menuContext.button, diff --git a/Mastodon/Protocol/Provider/DataSourceProvider+StatusTableViewCellDelegate.swift b/Mastodon/Protocol/Provider/DataSourceProvider+StatusTableViewCellDelegate.swift index 82c25d040..c157b7086 100644 --- a/Mastodon/Protocol/Provider/DataSourceProvider+StatusTableViewCellDelegate.swift +++ b/Mastodon/Protocol/Provider/DataSourceProvider+StatusTableViewCellDelegate.swift @@ -487,7 +487,7 @@ extension StatusTableViewCellDelegate where Self: DataSourceProvider & AuthConte authContext: authContext, kind: .rebloggedBy(status: status) ) - await coordinator.present( + _ = await coordinator.present( scene: .rebloggedBy(viewModel: userListViewModel), from: self, transition: .show @@ -511,7 +511,7 @@ extension StatusTableViewCellDelegate where Self: DataSourceProvider & AuthConte authContext: authContext, kind: .favoritedBy(status: status) ) - await coordinator.present( + _ = await coordinator.present( scene: .favoritedBy(viewModel: userListViewModel), from: self, transition: .show diff --git a/Mastodon/Protocol/Provider/DataSourceProvider+UITableViewDelegate.swift b/Mastodon/Protocol/Provider/DataSourceProvider+UITableViewDelegate.swift index 3a71e5346..6ced42601 100644 --- a/Mastodon/Protocol/Provider/DataSourceProvider+UITableViewDelegate.swift +++ b/Mastodon/Protocol/Provider/DataSourceProvider+UITableViewDelegate.swift @@ -143,7 +143,7 @@ extension UITableViewDelegate where Self: DataSourceProvider & MediaPreviewableV title: L10n.Common.Alerts.SavePhotoFailure.title, message: L10n.Common.Alerts.SavePhotoFailure.message ) - self.coordinator.present( + _ = self.coordinator.present( scene: .alertController(alertController: alertController), from: self, transition: .alertController(animated: true, completion: nil) diff --git a/Mastodon/Scene/Compose/ComposeViewController.swift b/Mastodon/Scene/Compose/ComposeViewController.swift index fd5ed5817..0cc4557a4 100644 --- a/Mastodon/Scene/Compose/ComposeViewController.swift +++ b/Mastodon/Scene/Compose/ComposeViewController.swift @@ -93,10 +93,7 @@ extension ComposeViewController { .sink { [weak self] _ in guard let self = self else { return } guard self.traitCollection.userInterfaceIdiom == .pad else { return } - var items = [self.publishBarButtonItem] - // if self.traitCollection.horizontalSizeClass == .regular { - // items.append(self.characterCountBarButtonItem) - // } + let items = [self.publishBarButtonItem] self.navigationItem.rightBarButtonItems = items } .store(in: &disposeBag) @@ -175,7 +172,7 @@ extension ComposeViewController { let alertController = UIAlertController(for: error, title: nil, preferredStyle: .alert) let okAction = UIAlertAction(title: L10n.Common.Controls.Actions.ok, style: .default, handler: nil) alertController.addAction(okAction) - coordinator.present(scene: .alertController(alertController: alertController), from: nil, transition: .alertController(animated: true, completion: nil)) + _ = coordinator.present(scene: .alertController(alertController: alertController), from: nil, transition: .alertController(animated: true, completion: nil)) return } diff --git a/Mastodon/Scene/Discovery/Community/DiscoveryCommunityViewModel+State.swift b/Mastodon/Scene/Discovery/Community/DiscoveryCommunityViewModel+State.swift index 476832b69..5045e825a 100644 --- a/Mastodon/Scene/Discovery/Community/DiscoveryCommunityViewModel+State.swift +++ b/Mastodon/Scene/Discovery/Community/DiscoveryCommunityViewModel+State.swift @@ -125,7 +125,7 @@ extension DiscoveryCommunityViewModel.State { override func didEnter(from previousState: GKState?) { super.didEnter(from: previousState) - guard let viewModel = viewModel, let stateMachine = stateMachine else { return } + guard let viewModel else { return } switch previousState { case is Reloading: diff --git a/Mastodon/Scene/Discovery/Hashtags/DiscoveryHashtagsViewController.swift b/Mastodon/Scene/Discovery/Hashtags/DiscoveryHashtagsViewController.swift index 1c855c254..b56098b58 100644 --- a/Mastodon/Scene/Discovery/Hashtags/DiscoveryHashtagsViewController.swift +++ b/Mastodon/Scene/Discovery/Hashtags/DiscoveryHashtagsViewController.swift @@ -108,7 +108,7 @@ extension DiscoveryHashtagsViewController: UITableViewDelegate { logger.log(level: .debug, "\((#file as NSString).lastPathComponent, privacy: .public)[\(#line, privacy: .public)], \(#function, privacy: .public): \(indexPath)") guard case let .hashtag(tag) = viewModel.diffableDataSource?.itemIdentifier(for: indexPath) else { return } let hashtagTimelineViewModel = HashtagTimelineViewModel(context: context, authContext: viewModel.authContext, hashtag: tag.name) - coordinator.present( + _ = coordinator.present( scene: .hashtagTimeline(viewModel: hashtagTimelineViewModel), from: self, transition: .show @@ -218,7 +218,7 @@ extension DiscoveryHashtagsViewController: TableViewControllerNavigateable { guard case let .hashtag(tag) = item else { return } let hashtagTimelineViewModel = HashtagTimelineViewModel(context: context, authContext: viewModel.authContext, hashtag: tag.name) - coordinator.present( + _ = coordinator.present( scene: .hashtagTimeline(viewModel: hashtagTimelineViewModel), from: self, transition: .show diff --git a/Mastodon/Scene/Discovery/News/DiscoveryNewsViewController.swift b/Mastodon/Scene/Discovery/News/DiscoveryNewsViewController.swift index d1634db82..558830473 100644 --- a/Mastodon/Scene/Discovery/News/DiscoveryNewsViewController.swift +++ b/Mastodon/Scene/Discovery/News/DiscoveryNewsViewController.swift @@ -117,7 +117,7 @@ extension DiscoveryNewsViewController: UITableViewDelegate { logger.log(level: .debug, "\((#file as NSString).lastPathComponent, privacy: .public)[\(#line, privacy: .public)], \(#function, privacy: .public): \(indexPath)") guard case let .link(link) = viewModel.diffableDataSource?.itemIdentifier(for: indexPath) else { return } guard let url = URL(string: link.url) else { return } - coordinator.present( + _ = coordinator.present( scene: .safari(url: url), from: self, transition: .safariPresent(animated: true, completion: nil) @@ -214,7 +214,7 @@ extension DiscoveryNewsViewController: TableViewControllerNavigateable { guard case let .link(link) = item else { return } guard let url = URL(string: link.url) else { return } - coordinator.present( + _ = coordinator.present( scene: .safari(url: url), from: self, transition: .safariPresent(animated: true, completion: nil) diff --git a/Mastodon/Scene/Discovery/News/DiscoveryNewsViewModel+State.swift b/Mastodon/Scene/Discovery/News/DiscoveryNewsViewModel+State.swift index 7c802cde3..8170d5b1c 100644 --- a/Mastodon/Scene/Discovery/News/DiscoveryNewsViewModel+State.swift +++ b/Mastodon/Scene/Discovery/News/DiscoveryNewsViewModel+State.swift @@ -125,8 +125,7 @@ extension DiscoveryNewsViewModel.State { override func didEnter(from previousState: GKState?) { super.didEnter(from: previousState) - guard let viewModel = viewModel, let stateMachine = stateMachine else { return } - + guard let viewModel else { return } switch previousState { case is Reloading: diff --git a/Mastodon/Scene/Discovery/Posts/DiscoveryPostsViewModel+State.swift b/Mastodon/Scene/Discovery/Posts/DiscoveryPostsViewModel+State.swift index 3ed245e99..fd413927e 100644 --- a/Mastodon/Scene/Discovery/Posts/DiscoveryPostsViewModel+State.swift +++ b/Mastodon/Scene/Discovery/Posts/DiscoveryPostsViewModel+State.swift @@ -126,7 +126,7 @@ extension DiscoveryPostsViewModel.State { override func didEnter(from previousState: GKState?) { super.didEnter(from: previousState) - guard let viewModel = viewModel, let stateMachine = stateMachine else { return } + guard let viewModel else { return } switch previousState { case is Reloading: diff --git a/Mastodon/Scene/HashtagTimeline/HashtagTimelineViewModel+State.swift b/Mastodon/Scene/HashtagTimeline/HashtagTimelineViewModel+State.swift index deb9de0a2..c35715f1e 100644 --- a/Mastodon/Scene/HashtagTimeline/HashtagTimelineViewModel+State.swift +++ b/Mastodon/Scene/HashtagTimeline/HashtagTimelineViewModel+State.swift @@ -70,7 +70,7 @@ extension HashtagTimelineViewModel.State { override func didEnter(from previousState: GKState?) { super.didEnter(from: previousState) - guard let viewModel = viewModel, let stateMachine = stateMachine else { return } + guard let stateMachine = stateMachine else { return } stateMachine.enter(Loading.self) } @@ -127,7 +127,7 @@ extension HashtagTimelineViewModel.State { override func didEnter(from previousState: GKState?) { super.didEnter(from: previousState) - guard let viewModel = viewModel, let stateMachine = stateMachine else { return } + guard let viewModel else { return } switch previousState { case is Reloading: diff --git a/Mastodon/Scene/HomeTimeline/HomeTimelineViewController+DebugAction.swift b/Mastodon/Scene/HomeTimeline/HomeTimelineViewController+DebugAction.swift index d057c0376..ff90775ff 100644 --- a/Mastodon/Scene/HomeTimeline/HomeTimelineViewController+DebugAction.swift +++ b/Mastodon/Scene/HomeTimeline/HomeTimelineViewController+DebugAction.swift @@ -300,7 +300,7 @@ extension HomeTimelineViewController { } @objc private func showWelcomeAction(_ sender: UIAction) { - coordinator.present(scene: .welcome, from: self, transition: .modal(animated: true, completion: nil)) + _ = coordinator.present(scene: .welcome, from: self, transition: .modal(animated: true, completion: nil)) } @objc private func showRegisterAction(_ sender: UIAction) { @@ -332,12 +332,12 @@ extension HomeTimelineViewController { @objc private func showConfirmEmail(_ sender: UIAction) { let mastodonConfirmEmailViewModel = MastodonConfirmEmailViewModel() - coordinator.present(scene: .mastodonConfirmEmail(viewModel: mastodonConfirmEmailViewModel), from: nil, transition: .modal(animated: true, completion: nil)) + _ = coordinator.present(scene: .mastodonConfirmEmail(viewModel: mastodonConfirmEmailViewModel), from: nil, transition: .modal(animated: true, completion: nil)) } @objc private func showAccountList(_ sender: UIAction) { let accountListViewModel = AccountListViewModel(context: context, authContext: viewModel.authContext) - coordinator.present(scene: .accountList(viewModel: accountListViewModel), from: self, transition: .modal(animated: true, completion: nil)) + _ = coordinator.present(scene: .accountList(viewModel: accountListViewModel), from: self, transition: .modal(animated: true, completion: nil)) } @objc private func showProfileAction(_ sender: UIAction) { @@ -347,12 +347,12 @@ extension HomeTimelineViewController { guard let self = self else { return } guard let textField = alertController?.textFields?.first else { return } let profileViewModel = RemoteProfileViewModel(context: self.context, authContext: self.viewModel.authContext, userID: textField.text ?? "") - self.coordinator.present(scene: .profile(viewModel: profileViewModel), from: self, transition: .show) + _ = self.coordinator.present(scene: .profile(viewModel: profileViewModel), from: self, transition: .show) } alertController.addAction(showAction) let cancelAction = UIAlertAction(title: "Cancel", style: .cancel, handler: nil) alertController.addAction(cancelAction) - coordinator.present(scene: .alertController(alertController: alertController), from: self, transition: .alertController(animated: true, completion: nil)) + _ = coordinator.present(scene: .alertController(alertController: alertController), from: self, transition: .alertController(animated: true, completion: nil)) } @objc private func showThreadAction(_ sender: UIAction) { @@ -362,12 +362,12 @@ extension HomeTimelineViewController { guard let self = self else { return } guard let textField = alertController?.textFields?.first else { return } let threadViewModel = RemoteThreadViewModel(context: self.context, authContext: self.viewModel.authContext, statusID: textField.text ?? "") - self.coordinator.present(scene: .thread(viewModel: threadViewModel), from: self, transition: .show) + _ = self.coordinator.present(scene: .thread(viewModel: threadViewModel), from: self, transition: .show) } alertController.addAction(showAction) let cancelAction = UIAlertAction(title: "Cancel", style: .cancel, handler: nil) alertController.addAction(cancelAction) - coordinator.present(scene: .alertController(alertController: alertController), from: self, transition: .alertController(animated: true, completion: nil)) + _ = coordinator.present(scene: .alertController(alertController: alertController), from: self, transition: .alertController(animated: true, completion: nil)) } private func showNotification(_ sender: UIAction, notificationType: Mastodon.Entity.Notification.NotificationType) { @@ -436,7 +436,7 @@ extension HomeTimelineViewController { authContext: viewModel.authContext, setting: currentSetting ) - coordinator.present( + _ = coordinator.present( scene: .settings(viewModel: settingsViewModel), from: self, transition: .modal(animated: true, completion: nil) diff --git a/Mastodon/Scene/HomeTimeline/HomeTimelineViewController.swift b/Mastodon/Scene/HomeTimeline/HomeTimelineViewController.swift index e83101796..c7633fffa 100644 --- a/Mastodon/Scene/HomeTimeline/HomeTimelineViewController.swift +++ b/Mastodon/Scene/HomeTimeline/HomeTimelineViewController.swift @@ -388,14 +388,14 @@ extension HomeTimelineViewController { @objc private func manuallySearchButtonPressed(_ sender: UIButton) { os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s", ((#file as NSString).lastPathComponent), #line, #function) let searchDetailViewModel = SearchDetailViewModel(authContext: viewModel.authContext) - coordinator.present(scene: .searchDetail(viewModel: searchDetailViewModel), from: self, transition: .modal(animated: true, completion: nil)) + _ = coordinator.present(scene: .searchDetail(viewModel: searchDetailViewModel), from: self, transition: .modal(animated: true, completion: nil)) } @objc private func settingBarButtonItemPressed(_ sender: UIBarButtonItem) { os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s", ((#file as NSString).lastPathComponent), #line, #function) guard let setting = context.settingService.currentSetting.value else { return } let settingsViewModel = SettingsViewModel(context: context, authContext: viewModel.authContext, setting: setting) - coordinator.present(scene: .settings(viewModel: settingsViewModel), from: self, transition: .modal(animated: true, completion: nil)) + _ = coordinator.present(scene: .settings(viewModel: settingsViewModel), from: self, transition: .modal(animated: true, completion: nil)) } @objc private func refreshControlValueChanged(_ sender: RefreshControl) { diff --git a/Mastodon/Scene/HomeTimeline/HomeTimelineViewModel+LoadLatestState.swift b/Mastodon/Scene/HomeTimeline/HomeTimelineViewModel+LoadLatestState.swift index 41cea6b58..8bf1421b1 100644 --- a/Mastodon/Scene/HomeTimeline/HomeTimelineViewModel+LoadLatestState.swift +++ b/Mastodon/Scene/HomeTimeline/HomeTimelineViewModel+LoadLatestState.swift @@ -62,7 +62,7 @@ extension HomeTimelineViewModel.LoadLatestState { override func didEnter(from previousState: GKState?) { super.didEnter(from: previousState) - guard let viewModel = viewModel, let stateMachine = stateMachine else { return } + guard let viewModel else { return } let latestFeedRecords = viewModel.fetchedResultsController.records.prefix(APIService.onceRequestStatusMaxCount) let parentManagedObjectContext = viewModel.fetchedResultsController.fetchedResultsController.managedObjectContext diff --git a/Mastodon/Scene/MediaPreview/MediaPreviewViewController.swift b/Mastodon/Scene/MediaPreview/MediaPreviewViewController.swift index c6552bcba..7f80bfe3c 100644 --- a/Mastodon/Scene/MediaPreview/MediaPreviewViewController.swift +++ b/Mastodon/Scene/MediaPreview/MediaPreviewViewController.swift @@ -276,7 +276,7 @@ extension MediaPreviewViewController: MediaPreviewImageViewControllerDelegate { title: L10n.Common.Alerts.SavePhotoFailure.title, message: L10n.Common.Alerts.SavePhotoFailure.message ) - self.coordinator.present( + _ = self.coordinator.present( scene: .alertController(alertController: alertController), from: self, transition: .alertController(animated: true, completion: nil) diff --git a/Mastodon/Scene/Onboarding/ConfirmEmail/MastodonConfirmEmailViewController.swift b/Mastodon/Scene/Onboarding/ConfirmEmail/MastodonConfirmEmailViewController.swift index a90da1e81..ae8a4933e 100644 --- a/Mastodon/Scene/Onboarding/ConfirmEmail/MastodonConfirmEmailViewController.swift +++ b/Mastodon/Scene/Onboarding/ConfirmEmail/MastodonConfirmEmailViewController.swift @@ -189,7 +189,7 @@ extension MastodonConfirmEmailViewController { alertController.addAction(openEmailAction) alertController.addAction(cancelAction) alertController.preferredAction = openEmailAction - self.coordinator.present(scene: .alertController(alertController: alertController), from: self, transition: .alertController(animated: true, completion: nil)) + _ = self.coordinator.present(scene: .alertController(alertController: alertController), from: self, transition: .alertController(animated: true, completion: nil)) } @objc private func resendButtonPressed(_ sender: UIButton) { @@ -197,18 +197,17 @@ extension MastodonConfirmEmailViewController { let resendAction = UIAlertAction(title: L10n.Scene.ConfirmEmail.DontReceiveEmail.resendEmail, style: .default) { _ in let url = Mastodon.API.resendEmailURL(domain: self.viewModel.authenticateInfo.domain) let viewModel = MastodonResendEmailViewModel(resendEmailURL: url, email: self.viewModel.email) - self.coordinator.present(scene: .mastodonResendEmail(viewModel: viewModel), from: self, transition: .modal(animated: true, completion: nil)) + _ = self.coordinator.present(scene: .mastodonResendEmail(viewModel: viewModel), from: self, transition: .modal(animated: true, completion: nil)) } let okAction = UIAlertAction(title: L10n.Common.Controls.Actions.ok, style: .default) { _ in } alertController.addAction(resendAction) alertController.addAction(okAction) - self.coordinator.present(scene: .alertController(alertController: alertController), from: self, transition: .alertController(animated: true, completion: nil)) + _ = self.coordinator.present(scene: .alertController(alertController: alertController), from: self, transition: .alertController(animated: true, completion: nil)) } func showEmailAppAlert() { let clients = ThirdPartyMailClient.clients - let application = UIApplication.shared let availableClients = clients.filter { client -> Bool in ThirdPartyMailer.isMailClientAvailable(client) } @@ -220,14 +219,14 @@ extension MastodonConfirmEmailViewController { alertController.addAction(alertAction) _ = availableClients.compactMap { client -> UIAlertAction in let alertAction = UIAlertAction(title: client.name, style: .default) { _ in - _ = ThirdPartyMailer.open(client, completionHandler: nil) + ThirdPartyMailer.open(client, completionHandler: nil) } alertController.addAction(alertAction) return alertAction } let cancelAction = UIAlertAction(title: L10n.Common.Controls.Actions.cancel, style: .cancel, handler: nil) alertController.addAction(cancelAction) - self.coordinator.present(scene: .alertController(alertController: alertController), from: self, transition: .alertController(animated: true, completion: nil)) + _ = self.coordinator.present(scene: .alertController(alertController: alertController), from: self, transition: .alertController(animated: true, completion: nil)) } } diff --git a/Mastodon/Scene/Onboarding/Register/MastodonRegisterViewController+Avatar.swift b/Mastodon/Scene/Onboarding/Register/MastodonRegisterViewController+Avatar.swift index 9260f9e21..81924d812 100644 --- a/Mastodon/Scene/Onboarding/Register/MastodonRegisterViewController+Avatar.swift +++ b/Mastodon/Scene/Onboarding/Register/MastodonRegisterViewController+Avatar.swift @@ -49,7 +49,7 @@ extension MastodonRegisterViewController: PHPickerViewControllerDelegate { let alertController = UIAlertController(for: error, title: "", preferredStyle: .alert) let okAction = UIAlertAction(title: L10n.Common.Controls.Actions.ok, style: .default, handler: nil) alertController.addAction(okAction) - self.coordinator.present( + _ = self.coordinator.present( scene: .alertController(alertController: alertController), from: nil, transition: .alertController(animated: true, completion: nil) diff --git a/Mastodon/Scene/Profile/Favorite/FavoriteViewModel+State.swift b/Mastodon/Scene/Profile/Favorite/FavoriteViewModel+State.swift index 803a9d45e..c2dc27201 100644 --- a/Mastodon/Scene/Profile/Favorite/FavoriteViewModel+State.swift +++ b/Mastodon/Scene/Profile/Favorite/FavoriteViewModel+State.swift @@ -46,7 +46,7 @@ extension FavoriteViewModel { extension FavoriteViewModel.State { class Initial: FavoriteViewModel.State { override func isValidNextState(_ stateClass: AnyClass) -> Bool { - guard let viewModel = viewModel else { return false } + guard viewModel != nil else { return false } switch stateClass { case is Reloading.Type: return true @@ -130,13 +130,12 @@ extension FavoriteViewModel.State { override func didEnter(from previousState: GKState?) { super.didEnter(from: previousState) - guard let viewModel = viewModel, let stateMachine = stateMachine else { return } + guard let viewModel else { return } if previousState is Reloading { maxID = nil } - Task { do { let response = try await viewModel.context.apiService.favoritedStatuses( diff --git a/Mastodon/Scene/Profile/ProfileViewController.swift b/Mastodon/Scene/Profile/ProfileViewController.swift index d9e56630f..4b3cd5b20 100644 --- a/Mastodon/Scene/Profile/ProfileViewController.swift +++ b/Mastodon/Scene/Profile/ProfileViewController.swift @@ -503,7 +503,7 @@ extension ProfileViewController { os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s", ((#file as NSString).lastPathComponent), #line, #function) guard let setting = context.settingService.currentSetting.value else { return } let settingsViewModel = SettingsViewModel(context: context, authContext: viewModel.authContext, setting: setting) - coordinator.present(scene: .settings(viewModel: settingsViewModel), from: self, transition: .modal(animated: true, completion: nil)) + _ = coordinator.present(scene: .settings(viewModel: settingsViewModel), from: self, transition: .modal(animated: true, completion: nil)) } @objc private func shareBarButtonItemPressed(_ sender: UIBarButtonItem) { diff --git a/Mastodon/Scene/Profile/UserLIst/UserListViewModel+State.swift b/Mastodon/Scene/Profile/UserLIst/UserListViewModel+State.swift index c7b3e20cd..d0f7feb88 100644 --- a/Mastodon/Scene/Profile/UserLIst/UserListViewModel+State.swift +++ b/Mastodon/Scene/Profile/UserLIst/UserListViewModel+State.swift @@ -134,7 +134,7 @@ extension UserListViewModel.State { maxID = nil } - guard let viewModel = viewModel, let stateMachine = stateMachine else { return } + guard let viewModel = viewModel else { return } let maxID = self.maxID diff --git a/Mastodon/Scene/Report/Report/ReportViewController.swift b/Mastodon/Scene/Report/Report/ReportViewController.swift index f1418c5a1..793f07b2e 100644 --- a/Mastodon/Scene/Report/Report/ReportViewController.swift +++ b/Mastodon/Scene/Report/Report/ReportViewController.swift @@ -126,7 +126,7 @@ extension ReportViewController: ReportServerRulesViewControllerDelegate { return } - coordinator.present( + _ = coordinator.present( scene: .reportStatus(viewModel: viewModel.reportStatusViewModel), from: self, transition: .show diff --git a/Mastodon/Scene/Report/ReportStatus/ReportStatusViewModel+State.swift b/Mastodon/Scene/Report/ReportStatus/ReportStatusViewModel+State.swift index 01e8715d1..79807cf0f 100644 --- a/Mastodon/Scene/Report/ReportStatus/ReportStatusViewModel+State.swift +++ b/Mastodon/Scene/Report/ReportStatus/ReportStatusViewModel+State.swift @@ -75,7 +75,7 @@ extension ReportStatusViewModel.State { override func didEnter(from previousState: GKState?) { super.didEnter(from: previousState) - guard let viewModel = viewModel, let stateMachine = stateMachine else { return } + guard let viewModel else { return } let maxID = viewModel.statusFetchedResultsController.statusIDs.last diff --git a/Mastodon/Scene/Root/MainTab/MainTabBarController.swift b/Mastodon/Scene/Root/MainTab/MainTabBarController.swift index 48d974358..df0c66fab 100644 --- a/Mastodon/Scene/Root/MainTab/MainTabBarController.swift +++ b/Mastodon/Scene/Root/MainTab/MainTabBarController.swift @@ -218,7 +218,7 @@ extension MainTabBarController { let alertController = UIAlertController(for: error, title: nil, preferredStyle: .alert) let okAction = UIAlertAction(title: "OK", style: .default, handler: nil) alertController.addAction(okAction) - coordinator.present( + _ = coordinator.present( scene: .alertController(alertController: alertController), from: nil, transition: .alertController(animated: true, completion: nil) diff --git a/Mastodon/Scene/Search/Search/SearchViewController.swift b/Mastodon/Scene/Search/Search/SearchViewController.swift index 581fa08b3..d5ac8e6bf 100644 --- a/Mastodon/Scene/Search/Search/SearchViewController.swift +++ b/Mastodon/Scene/Search/Search/SearchViewController.swift @@ -174,7 +174,7 @@ extension SearchViewController { // FIXME: // use `.customPush(animated: false)` false to disable navigation bar animation for searchBar layout // but that should be a fade transition whe fixed size searchBar - self.coordinator.present(scene: .searchDetail(viewModel: searchDetailViewModel), from: self, transition: .customPush(animated: false)) + _ = self.coordinator.present(scene: .searchDetail(viewModel: searchDetailViewModel), from: self, transition: .customPush(animated: false)) } .store(in: &disposeBag) } diff --git a/Mastodon/Scene/Settings/SettingsViewController.swift b/Mastodon/Scene/Settings/SettingsViewController.swift index 53a856fd0..fc42968d4 100644 --- a/Mastodon/Scene/Settings/SettingsViewController.swift +++ b/Mastodon/Scene/Settings/SettingsViewController.swift @@ -401,7 +401,7 @@ extension SettingsViewController: UITableViewDelegate { ) let okAction = UIAlertAction(title: L10n.Common.Controls.Actions.ok, style: .default, handler: nil) alertController.addAction(okAction) - self.coordinator.present(scene: .alertController(alertController: alertController), from: nil, transition: .alertController(animated: true, completion: nil)) + _ = self.coordinator.present(scene: .alertController(alertController: alertController), from: nil, transition: .alertController(animated: true, completion: nil)) } .store(in: &disposeBag) case .signOut: @@ -549,7 +549,7 @@ extension SettingsViewController: MetaLabelDelegate { switch meta { case .url(_, _, let url, _): guard let url = URL(string: url) else { return } - coordinator.present(scene: .safari(url: url), from: self, transition: .safariPresent(animated: true, completion: nil)) + _ = coordinator.present(scene: .safari(url: url), from: self, transition: .safariPresent(animated: true, completion: nil)) default: assertionFailure() } diff --git a/Mastodon/Scene/SuggestionAccount/SuggestionAccountViewController.swift b/Mastodon/Scene/SuggestionAccount/SuggestionAccountViewController.swift index 13c8311c7..7eacdc205 100644 --- a/Mastodon/Scene/SuggestionAccount/SuggestionAccountViewController.swift +++ b/Mastodon/Scene/SuggestionAccount/SuggestionAccountViewController.swift @@ -161,7 +161,7 @@ extension SuggestionAccountViewController: UITableViewDelegate { case .account(let record): guard let account = record.object(in: context.managedObjectContext) else { return } let cachedProfileViewModel = CachedProfileViewModel(context: context, authContext: viewModel.authContext, mastodonUser: account) - coordinator.present( + _ = coordinator.present( scene: .profile(viewModel: cachedProfileViewModel), from: self, transition: .show diff --git a/Mastodon/Scene/Transition/MediaPreview/MediaHostToMediaPreviewViewControllerAnimatedTransitioning.swift b/Mastodon/Scene/Transition/MediaPreview/MediaHostToMediaPreviewViewControllerAnimatedTransitioning.swift index 5381feb0d..8219859a2 100644 --- a/Mastodon/Scene/Transition/MediaPreview/MediaHostToMediaPreviewViewControllerAnimatedTransitioning.swift +++ b/Mastodon/Scene/Transition/MediaPreview/MediaHostToMediaPreviewViewControllerAnimatedTransitioning.swift @@ -263,7 +263,7 @@ extension MediaHostToMediaPreviewViewControllerAnimatedTransitioning { }() // FIXME: - let maskLayerToFinalPath = maskLayerToFinalRect.flatMap { UIBezierPath(rect: $0) }?.cgPath + _ = maskLayerToFinalRect.flatMap { UIBezierPath(rect: $0) }?.cgPath if let maskLayerToPath = maskLayerToPath { maskLayer.path = maskLayerToPath diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel+Compress.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel+Compress.swift index ac1811a06..e5d6702ad 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel+Compress.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel+Compress.swift @@ -17,7 +17,7 @@ extension AttachmentViewModel { let exporter = NextLevelSessionExporter(withAsset: urlAsset) exporter.outputFileType = .mp4 - var isLandscape: Bool = { + let isLandscape: Bool = { guard let track = urlAsset.tracks(withMediaType: .video).first else { return true } diff --git a/MastodonSDK/Sources/MastodonUI/View/Content/NotificationView+ViewModel.swift b/MastodonSDK/Sources/MastodonUI/View/Content/NotificationView+ViewModel.swift index d7ba51e17..7c751d756 100644 --- a/MastodonSDK/Sources/MastodonUI/View/Content/NotificationView+ViewModel.swift +++ b/MastodonSDK/Sources/MastodonUI/View/Content/NotificationView+ViewModel.swift @@ -105,7 +105,6 @@ extension NotificationView.ViewModel { timestampUpdatePublisher.prepend(Date()).eraseToAnyPublisher() ) .sink { [weak self] timestamp, _ in - guard let self = self else { return } guard let timestamp = timestamp else { notificationView.dateLabel.configure(content: PlaintextMetaContent(string: "")) return From df198d81ed857dbf60e255d205d972d5e08e4b1c Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Fri, 18 Nov 2022 02:19:24 +0100 Subject: [PATCH 575/598] New translations app.json (Indonesian) --- .../StringsConvertor/input/id.lproj/app.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Localization/StringsConvertor/input/id.lproj/app.json b/Localization/StringsConvertor/input/id.lproj/app.json index 59ef1e0fe..4f2050792 100644 --- a/Localization/StringsConvertor/input/id.lproj/app.json +++ b/Localization/StringsConvertor/input/id.lproj/app.json @@ -372,12 +372,12 @@ "compose": { "title": { "new_post": "Postingan Baru", - "new_reply": "New Reply" + "new_reply": "Pesan Baru" }, "media_selection": { - "camera": "Take Photo", + "camera": "Ambil Foto", "photo_library": "Photo Library", - "browse": "Browse" + "browse": "Telusuri" }, "content_input_placeholder": "Ketik atau tempel apa yang Anda pada pikiran Anda", "compose_action": "Publikasikan", @@ -388,10 +388,10 @@ "attachment_broken": "%s ini rusak dan tidak dapat diunggah ke Mastodon.", "description_photo": "Jelaskan fotonya untuk mereka yang tidak dapat melihat dengan jelas...", "description_video": "Jelaskan videonya untuk mereka yang tidak dapat melihat dengan jelas...", - "load_failed": "Load Failed", - "upload_failed": "Upload Failed", - "can_not_recognize_this_media_attachment": "Can not recognize this media attachment", - "attachment_too_large": "Attachment too large", + "load_failed": "Gagal Memuat", + "upload_failed": "Gagal Mengunggah", + "can_not_recognize_this_media_attachment": "Tidak dapat mengenali lampiran media ini", + "attachment_too_large": "Lampiran terlalu besar", "compressing_state": "Compressing...", "server_processing_state": "Server Processing..." }, @@ -412,7 +412,7 @@ }, "visibility": { "public": "Publik", - "unlisted": "Unlisted", + "unlisted": "Tidak terdaftar", "private": "Pengikut saja", "direct": "Hanya orang yang saya sebut" }, From 3020f28ef42d204bf184f5426e6d0f1649d67388 Mon Sep 17 00:00:00 2001 From: Marcus Kida Date: Fri, 18 Nov 2022 09:40:45 +0100 Subject: [PATCH 576/598] chore: Disable double-tap-to-switch-account --- .../Scene/Root/MainTab/MainTabBarController.swift | 11 ++++++----- .../Scene/Root/Sidebar/SidebarViewController.swift | 13 +++++++------ 2 files changed, 13 insertions(+), 11 deletions(-) diff --git a/Mastodon/Scene/Root/MainTab/MainTabBarController.swift b/Mastodon/Scene/Root/MainTab/MainTabBarController.swift index d31cc5c84..7f7918732 100644 --- a/Mastodon/Scene/Root/MainTab/MainTabBarController.swift +++ b/Mastodon/Scene/Root/MainTab/MainTabBarController.swift @@ -326,11 +326,12 @@ extension MainTabBarController { tabBarLongPressGestureRecognizer.addTarget(self, action: #selector(MainTabBarController.tabBarLongPressGestureRecognizerHandler(_:))) tabBar.addGestureRecognizer(tabBarLongPressGestureRecognizer) - let tabBarDoubleTapGestureRecognizer = UITapGestureRecognizer() - tabBarDoubleTapGestureRecognizer.numberOfTapsRequired = 2 - tabBarDoubleTapGestureRecognizer.addTarget(self, action: #selector(MainTabBarController.tabBarDoubleTapGestureRecognizerHandler(_:))) - tabBarDoubleTapGestureRecognizer.delaysTouchesEnded = false - tabBar.addGestureRecognizer(tabBarDoubleTapGestureRecognizer) + // todo: reconsider the "double tap to change account" feature +// let tabBarDoubleTapGestureRecognizer = UITapGestureRecognizer() +// tabBarDoubleTapGestureRecognizer.numberOfTapsRequired = 2 +// tabBarDoubleTapGestureRecognizer.addTarget(self, action: #selector(MainTabBarController.tabBarDoubleTapGestureRecognizerHandler(_:))) +// tabBarDoubleTapGestureRecognizer.delaysTouchesEnded = false +// tabBar.addGestureRecognizer(tabBarDoubleTapGestureRecognizer) self.isReadyForWizardAvatarButton = authContext != nil diff --git a/Mastodon/Scene/Root/Sidebar/SidebarViewController.swift b/Mastodon/Scene/Root/Sidebar/SidebarViewController.swift index 8a0ed763a..0bb88c7c6 100644 --- a/Mastodon/Scene/Root/Sidebar/SidebarViewController.swift +++ b/Mastodon/Scene/Root/Sidebar/SidebarViewController.swift @@ -145,12 +145,13 @@ extension SidebarViewController { sidebarLongPressGestureRecognizer.addTarget(self, action: #selector(SidebarViewController.sidebarLongPressGestureRecognizerHandler(_:))) collectionView.addGestureRecognizer(sidebarLongPressGestureRecognizer) - let sidebarDoubleTapGestureRecognizer = UITapGestureRecognizer() - sidebarDoubleTapGestureRecognizer.numberOfTapsRequired = 2 - sidebarDoubleTapGestureRecognizer.addTarget(self, action: #selector(SidebarViewController.sidebarDoubleTapGestureRecognizerHandler(_:))) - sidebarDoubleTapGestureRecognizer.delaysTouchesEnded = false - sidebarDoubleTapGestureRecognizer.cancelsTouchesInView = true - collectionView.addGestureRecognizer(sidebarDoubleTapGestureRecognizer) + // todo: reconsider the "double tap to change account" feature +// let sidebarDoubleTapGestureRecognizer = UITapGestureRecognizer() +// sidebarDoubleTapGestureRecognizer.numberOfTapsRequired = 2 +// sidebarDoubleTapGestureRecognizer.addTarget(self, action: #selector(SidebarViewController.sidebarDoubleTapGestureRecognizerHandler(_:))) +// sidebarDoubleTapGestureRecognizer.delaysTouchesEnded = false +// sidebarDoubleTapGestureRecognizer.cancelsTouchesInView = true +// collectionView.addGestureRecognizer(sidebarDoubleTapGestureRecognizer) } From 4cc734fac9b3790a08d1e643a3cfd43ababd8ac7 Mon Sep 17 00:00:00 2001 From: Marcus Kida Date: Fri, 18 Nov 2022 09:56:02 +0100 Subject: [PATCH 577/598] chore: Link related GitHub issue to commented-out code --- Mastodon/Scene/Root/MainTab/MainTabBarController.swift | 2 +- Mastodon/Scene/Root/Sidebar/SidebarViewController.swift | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Mastodon/Scene/Root/MainTab/MainTabBarController.swift b/Mastodon/Scene/Root/MainTab/MainTabBarController.swift index 7f7918732..9728c551a 100644 --- a/Mastodon/Scene/Root/MainTab/MainTabBarController.swift +++ b/Mastodon/Scene/Root/MainTab/MainTabBarController.swift @@ -326,7 +326,7 @@ extension MainTabBarController { tabBarLongPressGestureRecognizer.addTarget(self, action: #selector(MainTabBarController.tabBarLongPressGestureRecognizerHandler(_:))) tabBar.addGestureRecognizer(tabBarLongPressGestureRecognizer) - // todo: reconsider the "double tap to change account" feature + // todo: reconsider the "double tap to change account" feature -> https://github.com/mastodon/mastodon-ios/issues/628 // let tabBarDoubleTapGestureRecognizer = UITapGestureRecognizer() // tabBarDoubleTapGestureRecognizer.numberOfTapsRequired = 2 // tabBarDoubleTapGestureRecognizer.addTarget(self, action: #selector(MainTabBarController.tabBarDoubleTapGestureRecognizerHandler(_:))) diff --git a/Mastodon/Scene/Root/Sidebar/SidebarViewController.swift b/Mastodon/Scene/Root/Sidebar/SidebarViewController.swift index 0bb88c7c6..65d7d5520 100644 --- a/Mastodon/Scene/Root/Sidebar/SidebarViewController.swift +++ b/Mastodon/Scene/Root/Sidebar/SidebarViewController.swift @@ -145,7 +145,7 @@ extension SidebarViewController { sidebarLongPressGestureRecognizer.addTarget(self, action: #selector(SidebarViewController.sidebarLongPressGestureRecognizerHandler(_:))) collectionView.addGestureRecognizer(sidebarLongPressGestureRecognizer) - // todo: reconsider the "double tap to change account" feature + // todo: reconsider the "double tap to change account" feature -> https://github.com/mastodon/mastodon-ios/issues/628 // let sidebarDoubleTapGestureRecognizer = UITapGestureRecognizer() // sidebarDoubleTapGestureRecognizer.numberOfTapsRequired = 2 // sidebarDoubleTapGestureRecognizer.addTarget(self, action: #selector(SidebarViewController.sidebarDoubleTapGestureRecognizerHandler(_:))) From 8fd37c83625b2c0360116d3ef67535ba7af56933 Mon Sep 17 00:00:00 2001 From: Marcus Kida Date: Tue, 15 Nov 2022 11:34:03 +0100 Subject: [PATCH 578/598] feat: Implement more obvious account switcher --- .../Root/MainTab/MainTabBarController.swift | 11 ++++++++++- .../Scene/Root/Sidebar/SidebarViewModel.swift | 4 ++++ .../Sidebar/View/SidebarListContentView.swift | 17 +++++++++++++++-- 3 files changed, 29 insertions(+), 3 deletions(-) diff --git a/Mastodon/Scene/Root/MainTab/MainTabBarController.swift b/Mastodon/Scene/Root/MainTab/MainTabBarController.swift index 9728c551a..c8fa53d2f 100644 --- a/Mastodon/Scene/Root/MainTab/MainTabBarController.swift +++ b/Mastodon/Scene/Root/MainTab/MainTabBarController.swift @@ -43,6 +43,7 @@ class MainTabBarController: UITabBarController { static let avatarButtonSize = CGSize(width: 25, height: 25) let avatarButton = CircleAvatarButton() + let accountSwitcherChevron = UIImageView(image: UIImage(systemName: "chevron.up.chevron.down")) @Published var currentTab: Tab = .home @@ -506,13 +507,20 @@ extension MainTabBarController { } anchorImageView.alpha = 0 + accountSwitcherChevron.translatesAutoresizingMaskIntoConstraints = false + view.addSubview(accountSwitcherChevron) + self.avatarButton.translatesAutoresizingMaskIntoConstraints = false view.addSubview(self.avatarButton) NSLayoutConstraint.activate([ - self.avatarButton.centerXAnchor.constraint(equalTo: anchorImageView.centerXAnchor), + self.avatarButton.centerXAnchor.constraint(equalTo: anchorImageView.centerXAnchor, constant: -16), self.avatarButton.centerYAnchor.constraint(equalTo: anchorImageView.centerYAnchor), self.avatarButton.widthAnchor.constraint(equalToConstant: MainTabBarController.avatarButtonSize.width).priority(.required - 1), self.avatarButton.heightAnchor.constraint(equalToConstant: MainTabBarController.avatarButtonSize.height).priority(.required - 1), + accountSwitcherChevron.widthAnchor.constraint(equalToConstant: 10), + accountSwitcherChevron.heightAnchor.constraint(equalToConstant: 18), + accountSwitcherChevron.leadingAnchor.constraint(equalTo: avatarButton.trailingAnchor, constant: 8), + accountSwitcherChevron.centerYAnchor.constraint(equalTo: avatarButton.centerYAnchor) ]) self.avatarButton.setContentHuggingPriority(.required - 1, for: .horizontal) self.avatarButton.setContentHuggingPriority(.required - 1, for: .vertical) @@ -520,6 +528,7 @@ extension MainTabBarController { } private func updateAvatarButtonAppearance() { + accountSwitcherChevron.tintColor = currentTab == .me ? .label : .secondaryLabel avatarButton.borderColor = currentTab == .me ? .label : .systemFill avatarButton.setNeedsLayout() } diff --git a/Mastodon/Scene/Root/Sidebar/SidebarViewModel.swift b/Mastodon/Scene/Root/Sidebar/SidebarViewModel.swift index c3f9e3e36..607637c7c 100644 --- a/Mastodon/Scene/Root/Sidebar/SidebarViewModel.swift +++ b/Mastodon/Scene/Root/Sidebar/SidebarViewModel.swift @@ -80,6 +80,7 @@ extension SidebarViewModel { }() cell.item = SidebarListContentView.Item( isActive: false, + showAccountSwitcher: item == .me, title: item.title, image: item.image, activeImage: item.selectedImage, @@ -157,6 +158,7 @@ extension SidebarViewModel { case .setting: let item = SidebarListContentView.Item( isActive: false, + showAccountSwitcher: false, title: L10n.Common.Controls.Actions.settings, image: Asset.ObjectsAndTools.gear.image.withRenderingMode(.alwaysTemplate), activeImage: Asset.ObjectsAndTools.gear.image.withRenderingMode(.alwaysTemplate), @@ -166,6 +168,7 @@ extension SidebarViewModel { case .compose: let item = SidebarListContentView.Item( isActive: false, + showAccountSwitcher: self.currentTab == .me, title: L10n.Common.Controls.Actions.compose, image: Asset.ObjectsAndTools.squareAndPencil.image.withRenderingMode(.alwaysTemplate), activeImage: Asset.ObjectsAndTools.squareAndPencil.image.withRenderingMode(.alwaysTemplate), @@ -213,6 +216,7 @@ extension SidebarViewModel { let item = SidebarListContentView.Item( isActive: false, + showAccountSwitcher: false, title: L10n.Common.Controls.Actions.compose, image: Asset.ObjectsAndTools.squareAndPencil.image.withRenderingMode(.alwaysTemplate), activeImage: Asset.ObjectsAndTools.squareAndPencil.image.withRenderingMode(.alwaysTemplate), diff --git a/Mastodon/Scene/Root/Sidebar/View/SidebarListContentView.swift b/Mastodon/Scene/Root/Sidebar/View/SidebarListContentView.swift index 515988405..0ef99c0a3 100644 --- a/Mastodon/Scene/Root/Sidebar/View/SidebarListContentView.swift +++ b/Mastodon/Scene/Root/Sidebar/View/SidebarListContentView.swift @@ -23,7 +23,8 @@ final class SidebarListContentView: UIView, UIContentView { button.borderColor = UIColor.label return button }() - + let accountSwitcherChevron = UIImageView(image: UIImage(systemName: "chevron.up.chevron.down")) + private var currentConfiguration: ContentConfiguration! var configuration: UIContentConfiguration { get { @@ -60,6 +61,9 @@ extension SidebarListContentView { imageView.widthAnchor.constraint(equalToConstant: 40).priority(.required - 1), imageView.heightAnchor.constraint(equalToConstant: 40).priority(.required - 1), ]) + + accountSwitcherChevron.translatesAutoresizingMaskIntoConstraints = false + addSubview(accountSwitcherChevron) avatarButton.translatesAutoresizingMaskIntoConstraints = false addSubview(avatarButton) @@ -68,6 +72,10 @@ extension SidebarListContentView { avatarButton.centerYAnchor.constraint(equalTo: imageView.centerYAnchor), avatarButton.widthAnchor.constraint(equalTo: imageView.widthAnchor, multiplier: 1.0).priority(.required - 2), avatarButton.heightAnchor.constraint(equalTo: imageView.heightAnchor, multiplier: 1.0).priority(.required - 2), + accountSwitcherChevron.widthAnchor.constraint(equalToConstant: 12), + accountSwitcherChevron.heightAnchor.constraint(equalToConstant: 22), + accountSwitcherChevron.leadingAnchor.constraint(equalTo: avatarButton.trailingAnchor, constant: 4), + accountSwitcherChevron.centerYAnchor.constraint(equalTo: avatarButton.centerYAnchor) ]) avatarButton.setContentHuggingPriority(.defaultLow - 10, for: .vertical) avatarButton.setContentHuggingPriority(.defaultLow - 10, for: .horizontal) @@ -96,6 +104,8 @@ extension SidebarListContentView { imageView.isHidden = item.imageURL != nil avatarButton.isHidden = item.imageURL == nil imageView.image = item.isActive ? item.activeImage.withRenderingMode(.alwaysTemplate) : item.image.withRenderingMode(.alwaysTemplate) + accountSwitcherChevron.isHidden = !item.showAccountSwitcher + accountSwitcherChevron.tintColor = item.isActive ? .label : .secondaryLabel avatarButton.avatarImageView.setImage( url: item.imageURL, placeholder: avatarButton.avatarImageView.image ?? .placeholder(color: .systemFill), // reuse to avoid blink @@ -112,7 +122,8 @@ extension SidebarListContentView { var isSelected: Bool = false var isHighlighted: Bool = false var isActive: Bool - + var showAccountSwitcher: Bool + // model let title: String var image: UIImage @@ -124,6 +135,7 @@ extension SidebarListContentView { return lhs.isSelected == rhs.isSelected && lhs.isHighlighted == rhs.isHighlighted && lhs.isActive == rhs.isActive + && lhs.showAccountSwitcher == rhs.showAccountSwitcher && lhs.title == rhs.title && lhs.image == rhs.image && lhs.activeImage == rhs.activeImage @@ -134,6 +146,7 @@ extension SidebarListContentView { hasher.combine(isSelected) hasher.combine(isHighlighted) hasher.combine(isActive) + hasher.combine(showAccountSwitcher) hasher.combine(title) hasher.combine(image) hasher.combine(activeImage) From 533e62609412f01da63b24a57c9147ffe980ba1d Mon Sep 17 00:00:00 2001 From: Marcus Kida Date: Tue, 15 Nov 2022 13:54:44 +0100 Subject: [PATCH 579/598] chore: Rename accountSwitcherChevron -> accountToggleIndicator --- .../Root/MainTab/MainTabBarController.swift | 16 ++++++++-------- .../Sidebar/View/SidebarListContentView.swift | 18 +++++++++--------- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/Mastodon/Scene/Root/MainTab/MainTabBarController.swift b/Mastodon/Scene/Root/MainTab/MainTabBarController.swift index c8fa53d2f..b00bc0597 100644 --- a/Mastodon/Scene/Root/MainTab/MainTabBarController.swift +++ b/Mastodon/Scene/Root/MainTab/MainTabBarController.swift @@ -43,7 +43,7 @@ class MainTabBarController: UITabBarController { static let avatarButtonSize = CGSize(width: 25, height: 25) let avatarButton = CircleAvatarButton() - let accountSwitcherChevron = UIImageView(image: UIImage(systemName: "chevron.up.chevron.down")) + private let accountToggleIndicator = UIImageView(image: UIImage(systemName: "chevron.up.chevron.down")) @Published var currentTab: Tab = .home @@ -507,8 +507,8 @@ extension MainTabBarController { } anchorImageView.alpha = 0 - accountSwitcherChevron.translatesAutoresizingMaskIntoConstraints = false - view.addSubview(accountSwitcherChevron) + accountToggleIndicator.translatesAutoresizingMaskIntoConstraints = false + view.addSubview(accountToggleIndicator) self.avatarButton.translatesAutoresizingMaskIntoConstraints = false view.addSubview(self.avatarButton) @@ -517,10 +517,10 @@ extension MainTabBarController { self.avatarButton.centerYAnchor.constraint(equalTo: anchorImageView.centerYAnchor), self.avatarButton.widthAnchor.constraint(equalToConstant: MainTabBarController.avatarButtonSize.width).priority(.required - 1), self.avatarButton.heightAnchor.constraint(equalToConstant: MainTabBarController.avatarButtonSize.height).priority(.required - 1), - accountSwitcherChevron.widthAnchor.constraint(equalToConstant: 10), - accountSwitcherChevron.heightAnchor.constraint(equalToConstant: 18), - accountSwitcherChevron.leadingAnchor.constraint(equalTo: avatarButton.trailingAnchor, constant: 8), - accountSwitcherChevron.centerYAnchor.constraint(equalTo: avatarButton.centerYAnchor) + accountToggleIndicator.widthAnchor.constraint(equalToConstant: 10), + accountToggleIndicator.heightAnchor.constraint(equalToConstant: 18), + accountToggleIndicator.leadingAnchor.constraint(equalTo: avatarButton.trailingAnchor, constant: 8), + accountToggleIndicator.centerYAnchor.constraint(equalTo: avatarButton.centerYAnchor) ]) self.avatarButton.setContentHuggingPriority(.required - 1, for: .horizontal) self.avatarButton.setContentHuggingPriority(.required - 1, for: .vertical) @@ -528,7 +528,7 @@ extension MainTabBarController { } private func updateAvatarButtonAppearance() { - accountSwitcherChevron.tintColor = currentTab == .me ? .label : .secondaryLabel + accountToggleIndicator.tintColor = currentTab == .me ? .label : .secondaryLabel avatarButton.borderColor = currentTab == .me ? .label : .systemFill avatarButton.setNeedsLayout() } diff --git a/Mastodon/Scene/Root/Sidebar/View/SidebarListContentView.swift b/Mastodon/Scene/Root/Sidebar/View/SidebarListContentView.swift index 0ef99c0a3..2e8cbc2c1 100644 --- a/Mastodon/Scene/Root/Sidebar/View/SidebarListContentView.swift +++ b/Mastodon/Scene/Root/Sidebar/View/SidebarListContentView.swift @@ -23,7 +23,7 @@ final class SidebarListContentView: UIView, UIContentView { button.borderColor = UIColor.label return button }() - let accountSwitcherChevron = UIImageView(image: UIImage(systemName: "chevron.up.chevron.down")) + private let accountToggleIndicator = UIImageView(image: UIImage(systemName: "chevron.up.chevron.down")) private var currentConfiguration: ContentConfiguration! var configuration: UIContentConfiguration { @@ -62,8 +62,8 @@ extension SidebarListContentView { imageView.heightAnchor.constraint(equalToConstant: 40).priority(.required - 1), ]) - accountSwitcherChevron.translatesAutoresizingMaskIntoConstraints = false - addSubview(accountSwitcherChevron) + accountToggleIndicator.translatesAutoresizingMaskIntoConstraints = false + addSubview(accountToggleIndicator) avatarButton.translatesAutoresizingMaskIntoConstraints = false addSubview(avatarButton) @@ -72,10 +72,10 @@ extension SidebarListContentView { avatarButton.centerYAnchor.constraint(equalTo: imageView.centerYAnchor), avatarButton.widthAnchor.constraint(equalTo: imageView.widthAnchor, multiplier: 1.0).priority(.required - 2), avatarButton.heightAnchor.constraint(equalTo: imageView.heightAnchor, multiplier: 1.0).priority(.required - 2), - accountSwitcherChevron.widthAnchor.constraint(equalToConstant: 12), - accountSwitcherChevron.heightAnchor.constraint(equalToConstant: 22), - accountSwitcherChevron.leadingAnchor.constraint(equalTo: avatarButton.trailingAnchor, constant: 4), - accountSwitcherChevron.centerYAnchor.constraint(equalTo: avatarButton.centerYAnchor) + accountToggleIndicator.widthAnchor.constraint(equalToConstant: 12), + accountToggleIndicator.heightAnchor.constraint(equalToConstant: 22), + accountToggleIndicator.leadingAnchor.constraint(equalTo: avatarButton.trailingAnchor, constant: 4), + accountToggleIndicator.centerYAnchor.constraint(equalTo: avatarButton.centerYAnchor) ]) avatarButton.setContentHuggingPriority(.defaultLow - 10, for: .vertical) avatarButton.setContentHuggingPriority(.defaultLow - 10, for: .horizontal) @@ -104,8 +104,8 @@ extension SidebarListContentView { imageView.isHidden = item.imageURL != nil avatarButton.isHidden = item.imageURL == nil imageView.image = item.isActive ? item.activeImage.withRenderingMode(.alwaysTemplate) : item.image.withRenderingMode(.alwaysTemplate) - accountSwitcherChevron.isHidden = !item.showAccountSwitcher - accountSwitcherChevron.tintColor = item.isActive ? .label : .secondaryLabel + accountToggleIndicator.isHidden = !item.showAccountSwitcher + accountToggleIndicator.tintColor = item.isActive ? .label : .secondaryLabel avatarButton.avatarImageView.setImage( url: item.imageURL, placeholder: avatarButton.avatarImageView.image ?? .placeholder(color: .systemFill), // reuse to avoid blink From 3acdbcc2cef04d2f63e93bf511afb0e1dcc7fb9c Mon Sep 17 00:00:00 2001 From: Marcus Kida Date: Tue, 15 Nov 2022 14:07:22 +0100 Subject: [PATCH 580/598] chore: Make accessoryImageView more universal --- .../Scene/Root/Sidebar/SidebarViewModel.swift | 6 ++--- .../Sidebar/View/SidebarListContentView.swift | 25 ++++++++++--------- 2 files changed, 15 insertions(+), 16 deletions(-) diff --git a/Mastodon/Scene/Root/Sidebar/SidebarViewModel.swift b/Mastodon/Scene/Root/Sidebar/SidebarViewModel.swift index 607637c7c..b6a30ee60 100644 --- a/Mastodon/Scene/Root/Sidebar/SidebarViewModel.swift +++ b/Mastodon/Scene/Root/Sidebar/SidebarViewModel.swift @@ -80,7 +80,7 @@ extension SidebarViewModel { }() cell.item = SidebarListContentView.Item( isActive: false, - showAccountSwitcher: item == .me, + accessoryImage: item == .me ? UIImage(systemName: "chevron.up.chevron.down") : nil, title: item.title, image: item.image, activeImage: item.selectedImage, @@ -158,7 +158,6 @@ extension SidebarViewModel { case .setting: let item = SidebarListContentView.Item( isActive: false, - showAccountSwitcher: false, title: L10n.Common.Controls.Actions.settings, image: Asset.ObjectsAndTools.gear.image.withRenderingMode(.alwaysTemplate), activeImage: Asset.ObjectsAndTools.gear.image.withRenderingMode(.alwaysTemplate), @@ -168,7 +167,7 @@ extension SidebarViewModel { case .compose: let item = SidebarListContentView.Item( isActive: false, - showAccountSwitcher: self.currentTab == .me, + accessoryImage: self.currentTab == .me ? UIImage(systemName: "chevron.up.chevron.down") : nil, title: L10n.Common.Controls.Actions.compose, image: Asset.ObjectsAndTools.squareAndPencil.image.withRenderingMode(.alwaysTemplate), activeImage: Asset.ObjectsAndTools.squareAndPencil.image.withRenderingMode(.alwaysTemplate), @@ -216,7 +215,6 @@ extension SidebarViewModel { let item = SidebarListContentView.Item( isActive: false, - showAccountSwitcher: false, title: L10n.Common.Controls.Actions.compose, image: Asset.ObjectsAndTools.squareAndPencil.image.withRenderingMode(.alwaysTemplate), activeImage: Asset.ObjectsAndTools.squareAndPencil.image.withRenderingMode(.alwaysTemplate), diff --git a/Mastodon/Scene/Root/Sidebar/View/SidebarListContentView.swift b/Mastodon/Scene/Root/Sidebar/View/SidebarListContentView.swift index 2e8cbc2c1..c2aa1a4f5 100644 --- a/Mastodon/Scene/Root/Sidebar/View/SidebarListContentView.swift +++ b/Mastodon/Scene/Root/Sidebar/View/SidebarListContentView.swift @@ -23,7 +23,7 @@ final class SidebarListContentView: UIView, UIContentView { button.borderColor = UIColor.label return button }() - private let accountToggleIndicator = UIImageView(image: UIImage(systemName: "chevron.up.chevron.down")) + private let accessoryImageView = UIImageView(image: nil) private var currentConfiguration: ContentConfiguration! var configuration: UIContentConfiguration { @@ -62,8 +62,8 @@ extension SidebarListContentView { imageView.heightAnchor.constraint(equalToConstant: 40).priority(.required - 1), ]) - accountToggleIndicator.translatesAutoresizingMaskIntoConstraints = false - addSubview(accountToggleIndicator) + accessoryImageView.translatesAutoresizingMaskIntoConstraints = false + addSubview(accessoryImageView) avatarButton.translatesAutoresizingMaskIntoConstraints = false addSubview(avatarButton) @@ -72,10 +72,10 @@ extension SidebarListContentView { avatarButton.centerYAnchor.constraint(equalTo: imageView.centerYAnchor), avatarButton.widthAnchor.constraint(equalTo: imageView.widthAnchor, multiplier: 1.0).priority(.required - 2), avatarButton.heightAnchor.constraint(equalTo: imageView.heightAnchor, multiplier: 1.0).priority(.required - 2), - accountToggleIndicator.widthAnchor.constraint(equalToConstant: 12), - accountToggleIndicator.heightAnchor.constraint(equalToConstant: 22), - accountToggleIndicator.leadingAnchor.constraint(equalTo: avatarButton.trailingAnchor, constant: 4), - accountToggleIndicator.centerYAnchor.constraint(equalTo: avatarButton.centerYAnchor) + accessoryImageView.widthAnchor.constraint(equalToConstant: 12), + accessoryImageView.heightAnchor.constraint(equalToConstant: 22), + accessoryImageView.leadingAnchor.constraint(equalTo: avatarButton.trailingAnchor, constant: 4), + accessoryImageView.centerYAnchor.constraint(equalTo: avatarButton.centerYAnchor) ]) avatarButton.setContentHuggingPriority(.defaultLow - 10, for: .vertical) avatarButton.setContentHuggingPriority(.defaultLow - 10, for: .horizontal) @@ -104,8 +104,9 @@ extension SidebarListContentView { imageView.isHidden = item.imageURL != nil avatarButton.isHidden = item.imageURL == nil imageView.image = item.isActive ? item.activeImage.withRenderingMode(.alwaysTemplate) : item.image.withRenderingMode(.alwaysTemplate) - accountToggleIndicator.isHidden = !item.showAccountSwitcher - accountToggleIndicator.tintColor = item.isActive ? .label : .secondaryLabel + accessoryImageView.image = item.accessoryImage + accessoryImageView.isHidden = item.accessoryImage == nil + accessoryImageView.tintColor = item.isActive ? .label : .secondaryLabel avatarButton.avatarImageView.setImage( url: item.imageURL, placeholder: avatarButton.avatarImageView.image ?? .placeholder(color: .systemFill), // reuse to avoid blink @@ -122,7 +123,7 @@ extension SidebarListContentView { var isSelected: Bool = false var isHighlighted: Bool = false var isActive: Bool - var showAccountSwitcher: Bool + var accessoryImage: UIImage? = nil // model let title: String @@ -135,7 +136,7 @@ extension SidebarListContentView { return lhs.isSelected == rhs.isSelected && lhs.isHighlighted == rhs.isHighlighted && lhs.isActive == rhs.isActive - && lhs.showAccountSwitcher == rhs.showAccountSwitcher + && lhs.accessoryImage == rhs.accessoryImage && lhs.title == rhs.title && lhs.image == rhs.image && lhs.activeImage == rhs.activeImage @@ -146,7 +147,7 @@ extension SidebarListContentView { hasher.combine(isSelected) hasher.combine(isHighlighted) hasher.combine(isActive) - hasher.combine(showAccountSwitcher) + hasher.combine(accessoryImage) hasher.combine(title) hasher.combine(image) hasher.combine(activeImage) From 3a2c99c75af27b8133a5dde1b6edfcc51a26ca31 Mon Sep 17 00:00:00 2001 From: Marcus Kida Date: Tue, 15 Nov 2022 14:09:51 +0100 Subject: [PATCH 581/598] chore: Move accountToggleIndicator to Constants --- Mastodon/Scene/Root/Sidebar/SidebarViewModel.swift | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Mastodon/Scene/Root/Sidebar/SidebarViewModel.swift b/Mastodon/Scene/Root/Sidebar/SidebarViewModel.swift index b6a30ee60..6ceb20527 100644 --- a/Mastodon/Scene/Root/Sidebar/SidebarViewModel.swift +++ b/Mastodon/Scene/Root/Sidebar/SidebarViewModel.swift @@ -16,6 +16,9 @@ import MastodonCore import MastodonLocalization final class SidebarViewModel { + private enum Constants { + static let accountToggleIndicator = UIImage(systemName: "chevron.up.chevron.down") + } var disposeBag = Set() @@ -80,7 +83,7 @@ extension SidebarViewModel { }() cell.item = SidebarListContentView.Item( isActive: false, - accessoryImage: item == .me ? UIImage(systemName: "chevron.up.chevron.down") : nil, + accessoryImage: item == .me ? Constants.accountToggleIndicator : nil, title: item.title, image: item.image, activeImage: item.selectedImage, @@ -167,7 +170,7 @@ extension SidebarViewModel { case .compose: let item = SidebarListContentView.Item( isActive: false, - accessoryImage: self.currentTab == .me ? UIImage(systemName: "chevron.up.chevron.down") : nil, + accessoryImage: self.currentTab == .me ? Constants.accountToggleIndicator : nil, title: L10n.Common.Controls.Actions.compose, image: Asset.ObjectsAndTools.squareAndPencil.image.withRenderingMode(.alwaysTemplate), activeImage: Asset.ObjectsAndTools.squareAndPencil.image.withRenderingMode(.alwaysTemplate), From be2583094dfab6f4b3f71bb99cbce0dcbb2b2d26 Mon Sep 17 00:00:00 2001 From: Marcus Kida Date: Fri, 18 Nov 2022 10:10:54 +0100 Subject: [PATCH 582/598] chore: Move UIImage(systemName: "chevron.up.chevron.down") to UIImage Extension --- Mastodon.xcodeproj/project.pbxproj | 4 ++++ Mastodon/Extension/UIImage+SFSymbols.swift | 12 ++++++++++++ .../Root/MainTab/MainTabBarController.swift | 16 ++++++++-------- .../Scene/Root/Sidebar/SidebarViewModel.swift | 8 ++------ 4 files changed, 26 insertions(+), 14 deletions(-) create mode 100644 Mastodon/Extension/UIImage+SFSymbols.swift diff --git a/Mastodon.xcodeproj/project.pbxproj b/Mastodon.xcodeproj/project.pbxproj index d8020fb3f..0a48bf4ab 100644 --- a/Mastodon.xcodeproj/project.pbxproj +++ b/Mastodon.xcodeproj/project.pbxproj @@ -24,6 +24,7 @@ 164F0EBC267D4FE400249499 /* BoopSound.caf in Resources */ = {isa = PBXBuildFile; fileRef = 164F0EBB267D4FE400249499 /* BoopSound.caf */; }; 18BC7629F65E6DB12CB8416D /* Pods_Mastodon_MastodonUITests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3C030226D3C73DCC23D67452 /* Pods_Mastodon_MastodonUITests.framework */; }; 2A82294F29262EE000D2A1F7 /* AppContext+NextAccount.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2A82294E29262EE000D2A1F7 /* AppContext+NextAccount.swift */; }; + 2AE244482927831100BDBF7C /* UIImage+SFSymbols.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2AE244472927831100BDBF7C /* UIImage+SFSymbols.swift */; }; 2D198643261BF09500F0B013 /* SearchResultItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2D198642261BF09500F0B013 /* SearchResultItem.swift */; }; 2D198649261C0B8500F0B013 /* SearchResultSection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2D198648261C0B8500F0B013 /* SearchResultSection.swift */; }; 2D206B8625F5FB0900143C56 /* Double.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2D206B8525F5FB0900143C56 /* Double.swift */; }; @@ -520,6 +521,7 @@ 164F0EBB267D4FE400249499 /* BoopSound.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = BoopSound.caf; sourceTree = ""; }; 1D6D967E77A5357E2C6110D9 /* Pods-Mastodon.asdk - debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Mastodon.asdk - debug.xcconfig"; path = "Target Support Files/Pods-Mastodon/Pods-Mastodon.asdk - debug.xcconfig"; sourceTree = ""; }; 2A82294E29262EE000D2A1F7 /* AppContext+NextAccount.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "AppContext+NextAccount.swift"; sourceTree = ""; }; + 2AE244472927831100BDBF7C /* UIImage+SFSymbols.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIImage+SFSymbols.swift"; sourceTree = ""; }; 2D198642261BF09500F0B013 /* SearchResultItem.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SearchResultItem.swift; sourceTree = ""; }; 2D198648261C0B8500F0B013 /* SearchResultSection.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SearchResultSection.swift; sourceTree = ""; }; 2D206B8525F5FB0900143C56 /* Double.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Double.swift; sourceTree = ""; }; @@ -2244,6 +2246,7 @@ 2D3F9E0325DFA133004262D9 /* UITapGestureRecognizer.swift */, 2D84350425FF858100EECE90 /* UIScrollView.swift */, DB9E0D6E25EE008500CFDD76 /* UIInterpolatingMotionEffect.swift */, + 2AE244472927831100BDBF7C /* UIImage+SFSymbols.swift */, DBCC3B2F261440A50045B23D /* UITabBarController.swift */, DB73BF4827140BA300781945 /* UICollectionViewDiffableDataSource.swift */, DB73BF4A27140C0800781945 /* UITableViewDiffableDataSource.swift */, @@ -3273,6 +3276,7 @@ DB73BF4927140BA300781945 /* UICollectionViewDiffableDataSource.swift in Sources */, DBA5E7AB263BD3F5004598BB /* TimelineTableViewCellContextMenuConfiguration.swift in Sources */, DB73B490261F030A002E9E9F /* SafariActivity.swift in Sources */, + 2AE244482927831100BDBF7C /* UIImage+SFSymbols.swift in Sources */, DB63F7492799126300455B82 /* FollowerListViewController+DataSourceProvider.swift in Sources */, 2D198643261BF09500F0B013 /* SearchResultItem.swift in Sources */, 2DAC9E38262FC2320062E1A6 /* SuggestionAccountViewController.swift in Sources */, diff --git a/Mastodon/Extension/UIImage+SFSymbols.swift b/Mastodon/Extension/UIImage+SFSymbols.swift new file mode 100644 index 000000000..cf20055ea --- /dev/null +++ b/Mastodon/Extension/UIImage+SFSymbols.swift @@ -0,0 +1,12 @@ +// +// UIImage+SFSymbols.swift +// Mastodon +// +// Created by Marcus Kida on 18.11.22. +// + +import UIKit + +extension UIImage { + static let chevronUpChevronDown = UIImage(systemName: "chevron.up.chevron.down") +} diff --git a/Mastodon/Scene/Root/MainTab/MainTabBarController.swift b/Mastodon/Scene/Root/MainTab/MainTabBarController.swift index b00bc0597..5aef74e3c 100644 --- a/Mastodon/Scene/Root/MainTab/MainTabBarController.swift +++ b/Mastodon/Scene/Root/MainTab/MainTabBarController.swift @@ -43,7 +43,7 @@ class MainTabBarController: UITabBarController { static let avatarButtonSize = CGSize(width: 25, height: 25) let avatarButton = CircleAvatarButton() - private let accountToggleIndicator = UIImageView(image: UIImage(systemName: "chevron.up.chevron.down")) + let accountSwitcherChevron = UIImageView(image: .chevronUpChevronDown) @Published var currentTab: Tab = .home @@ -507,8 +507,8 @@ extension MainTabBarController { } anchorImageView.alpha = 0 - accountToggleIndicator.translatesAutoresizingMaskIntoConstraints = false - view.addSubview(accountToggleIndicator) + accountSwitcherChevron.translatesAutoresizingMaskIntoConstraints = false + view.addSubview(accountSwitcherChevron) self.avatarButton.translatesAutoresizingMaskIntoConstraints = false view.addSubview(self.avatarButton) @@ -517,10 +517,10 @@ extension MainTabBarController { self.avatarButton.centerYAnchor.constraint(equalTo: anchorImageView.centerYAnchor), self.avatarButton.widthAnchor.constraint(equalToConstant: MainTabBarController.avatarButtonSize.width).priority(.required - 1), self.avatarButton.heightAnchor.constraint(equalToConstant: MainTabBarController.avatarButtonSize.height).priority(.required - 1), - accountToggleIndicator.widthAnchor.constraint(equalToConstant: 10), - accountToggleIndicator.heightAnchor.constraint(equalToConstant: 18), - accountToggleIndicator.leadingAnchor.constraint(equalTo: avatarButton.trailingAnchor, constant: 8), - accountToggleIndicator.centerYAnchor.constraint(equalTo: avatarButton.centerYAnchor) + accountSwitcherChevron.widthAnchor.constraint(equalToConstant: 10), + accountSwitcherChevron.heightAnchor.constraint(equalToConstant: 18), + accountSwitcherChevron.leadingAnchor.constraint(equalTo: avatarButton.trailingAnchor, constant: 8), + accountSwitcherChevron.centerYAnchor.constraint(equalTo: avatarButton.centerYAnchor) ]) self.avatarButton.setContentHuggingPriority(.required - 1, for: .horizontal) self.avatarButton.setContentHuggingPriority(.required - 1, for: .vertical) @@ -528,7 +528,7 @@ extension MainTabBarController { } private func updateAvatarButtonAppearance() { - accountToggleIndicator.tintColor = currentTab == .me ? .label : .secondaryLabel + accountSwitcherChevron.tintColor = currentTab == .me ? .label : .secondaryLabel avatarButton.borderColor = currentTab == .me ? .label : .systemFill avatarButton.setNeedsLayout() } diff --git a/Mastodon/Scene/Root/Sidebar/SidebarViewModel.swift b/Mastodon/Scene/Root/Sidebar/SidebarViewModel.swift index 6ceb20527..2e1a0f361 100644 --- a/Mastodon/Scene/Root/Sidebar/SidebarViewModel.swift +++ b/Mastodon/Scene/Root/Sidebar/SidebarViewModel.swift @@ -16,10 +16,6 @@ import MastodonCore import MastodonLocalization final class SidebarViewModel { - private enum Constants { - static let accountToggleIndicator = UIImage(systemName: "chevron.up.chevron.down") - } - var disposeBag = Set() // input @@ -83,7 +79,7 @@ extension SidebarViewModel { }() cell.item = SidebarListContentView.Item( isActive: false, - accessoryImage: item == .me ? Constants.accountToggleIndicator : nil, + accessoryImage: item == .me ? .chevronUpChevronDown : nil, title: item.title, image: item.image, activeImage: item.selectedImage, @@ -170,7 +166,7 @@ extension SidebarViewModel { case .compose: let item = SidebarListContentView.Item( isActive: false, - accessoryImage: self.currentTab == .me ? Constants.accountToggleIndicator : nil, + accessoryImage: self.currentTab == .me ? .chevronUpChevronDown : nil, title: L10n.Common.Controls.Actions.compose, image: Asset.ObjectsAndTools.squareAndPencil.image.withRenderingMode(.alwaysTemplate), activeImage: Asset.ObjectsAndTools.squareAndPencil.image.withRenderingMode(.alwaysTemplate), From ad7904e863bb0ee4a39722a721e29e2ab4747b71 Mon Sep 17 00:00:00 2001 From: Marcus Kida Date: Fri, 18 Nov 2022 10:54:40 +0100 Subject: [PATCH 583/598] fix: Status notification shows "mentioned you" text --- Mastodon/Extension/String.swift | 2 ++ .../Share/View/Content/NotificationView+Configuration.swift | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Mastodon/Extension/String.swift b/Mastodon/Extension/String.swift index bf70c8937..0aa8acb3a 100644 --- a/Mastodon/Extension/String.swift +++ b/Mastodon/Extension/String.swift @@ -15,6 +15,8 @@ extension String { mutating func capitalizeFirstLetter() { self = self.capitalizingFirstLetter() } + + static let empty = "" } extension String { diff --git a/Mastodon/Scene/Share/View/Content/NotificationView+Configuration.swift b/Mastodon/Scene/Share/View/Content/NotificationView+Configuration.swift index 98d06fd92..c7dbdb33f 100644 --- a/Mastodon/Scene/Share/View/Content/NotificationView+Configuration.swift +++ b/Mastodon/Scene/Share/View/Content/NotificationView+Configuration.swift @@ -154,7 +154,7 @@ extension NotificationView { ) case .status: self.viewModel.notificationIndicatorText = createMetaContent( - text: L10n.Scene.Notification.NotificationDescription.mentionedYou, + text: .empty, emojis: emojis.asDictionary ) case ._other: From 7ab62394de1c5d6964cb354f676048ba193d8d67 Mon Sep 17 00:00:00 2001 From: Stefan Painhapp <4242986+painhapp@users.noreply.github.com> Date: Fri, 18 Nov 2022 19:07:44 +0900 Subject: [PATCH 584/598] Handle safe areas for image preview --- .../Image/MediaPreviewImageView.swift | 16 ++-------------- .../Image/MediaPreviewImageViewController.swift | 8 ++++---- 2 files changed, 6 insertions(+), 18 deletions(-) diff --git a/Mastodon/Scene/MediaPreview/Image/MediaPreviewImageView.swift b/Mastodon/Scene/MediaPreview/Image/MediaPreviewImageView.swift index 05f2ce70f..bb7d2d49f 100644 --- a/Mastodon/Scene/MediaPreview/Image/MediaPreviewImageView.swift +++ b/Mastodon/Scene/MediaPreview/Image/MediaPreviewImageView.swift @@ -112,23 +112,14 @@ extension MediaPreviewImageView { // reset to normal zoomScale = minimumZoomScale - let imageViewSize = AVMakeRect(aspectRatio: image.size, insideRect: container.bounds).size - let imageContentInset: UIEdgeInsets = { - if imageViewSize.width == container.bounds.width { - return UIEdgeInsets(top: 0.5 * (container.bounds.height - imageViewSize.height), left: 0, bottom: 0, right: 0) - } else { - return UIEdgeInsets(top: 0, left: 0.5 * (container.bounds.width - imageViewSize.width), bottom: 0, right: 0) - } - }() + let imageViewSize = AVMakeRect(aspectRatio: image.size, insideRect: container.bounds.inset(by: container.safeAreaInsets)).size imageView.frame = CGRect(origin: .zero, size: imageViewSize) if imageView.image == nil { imageView.image = image } contentSize = imageViewSize - contentInset = imageContentInset centerScrollViewContents() - contentOffset = CGPoint(x: -contentInset.left, y: -contentInset.top) os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s: setup image for container %s", ((#file as NSString).lastPathComponent), #line, #function, container.frame.debugDescription) } @@ -192,10 +183,7 @@ extension MediaPreviewImageView { frame.size = realImageSize imageView.frame = frame - let screenSize = self.frame.size - let offsetX = screenSize.width > realImageSize.width ? (screenSize.width - realImageSize.width) / 2 : 0 - let offsetY = screenSize.height > realImageSize.height ? (screenSize.height - realImageSize.height) / 2 : 0 - contentInset = UIEdgeInsets(top: offsetY, left: offsetX, bottom: offsetY, right: offsetX) + contentInset = self.safeAreaInsets // The scroll view has zoomed, so you need to re-center the contents let scrollViewSize = scrollViewVisibleSize diff --git a/Mastodon/Scene/MediaPreview/Image/MediaPreviewImageViewController.swift b/Mastodon/Scene/MediaPreview/Image/MediaPreviewImageViewController.swift index e28249312..127c4c0c0 100644 --- a/Mastodon/Scene/MediaPreview/Image/MediaPreviewImageViewController.swift +++ b/Mastodon/Scene/MediaPreview/Image/MediaPreviewImageViewController.swift @@ -46,10 +46,10 @@ extension MediaPreviewImageViewController { previewImageView.translatesAutoresizingMaskIntoConstraints = false view.addSubview(previewImageView) NSLayoutConstraint.activate([ - previewImageView.frameLayoutGuide.topAnchor.constraint(equalTo: view.safeAreaLayoutGuide.topAnchor), - previewImageView.frameLayoutGuide.leadingAnchor.constraint(equalTo: view.safeAreaLayoutGuide.leadingAnchor), - previewImageView.frameLayoutGuide.trailingAnchor.constraint(equalTo: view.safeAreaLayoutGuide.trailingAnchor), - previewImageView.frameLayoutGuide.bottomAnchor.constraint(equalTo: view.safeAreaLayoutGuide.bottomAnchor), + previewImageView.frameLayoutGuide.topAnchor.constraint(equalTo: view.topAnchor), + previewImageView.frameLayoutGuide.leadingAnchor.constraint(equalTo: view.leadingAnchor), + previewImageView.frameLayoutGuide.trailingAnchor.constraint(equalTo: view.trailingAnchor), + previewImageView.frameLayoutGuide.bottomAnchor.constraint(equalTo: view.bottomAnchor), ]) tapGestureRecognizer.addTarget(self, action: #selector(MediaPreviewImageViewController.tapGestureRecognizerHandler(_:))) From 31699ea9fcf6e812c750da7532e2eef10ab85835 Mon Sep 17 00:00:00 2001 From: CMK Date: Fri, 18 Nov 2022 19:04:22 +0800 Subject: [PATCH 585/598] chore: update i18n resources --- .../Resources/ca.lproj/Localizable.strings | 14 ++--- .../Resources/cs.lproj/Localizable.strings | 4 +- .../Resources/de.lproj/Localizable.strings | 16 ++--- .../Resources/fr.lproj/Localizable.strings | 14 ++--- .../Resources/gd.lproj/Localizable.strings | 60 +++++++++---------- .../gd.lproj/Localizable.stringsdict | 10 ++-- .../Resources/gl.lproj/Localizable.strings | 14 ++--- .../Resources/kab.lproj/Localizable.strings | 24 ++++---- .../kab.lproj/Localizable.stringsdict | 46 +++++++------- .../Resources/ku.lproj/Localizable.strings | 14 ++--- .../Resources/th.lproj/Localizable.strings | 14 ++--- .../zh-Hans.lproj/Localizable.strings | 60 +++++++++---------- .../zh-Hans.lproj/Localizable.stringsdict | 4 +- .../zh-Hant.lproj/Localizable.strings | 28 ++++----- 14 files changed, 161 insertions(+), 161 deletions(-) diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/ca.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/ca.lproj/Localizable.strings index d8fa6a739..43c63deda 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/ca.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/ca.lproj/Localizable.strings @@ -55,8 +55,8 @@ Comprova la teva connexió a Internet."; "Common.Controls.Actions.Share" = "Comparteix"; "Common.Controls.Actions.SharePost" = "Compartir Publicació"; "Common.Controls.Actions.ShareUser" = "Compartir %@"; -"Common.Controls.Actions.SignIn" = "Log in"; -"Common.Controls.Actions.SignUp" = "Create account"; +"Common.Controls.Actions.SignIn" = "Iniciar sessió"; +"Common.Controls.Actions.SignUp" = "Crea un compte"; "Common.Controls.Actions.Skip" = "Omet"; "Common.Controls.Actions.TakePhoto" = "Fes una foto"; "Common.Controls.Actions.TryAgain" = "Torna a provar"; @@ -240,9 +240,9 @@ carregat a Mastodon."; "Scene.HomeTimeline.NavigationBarState.Published" = "Publicat!"; "Scene.HomeTimeline.NavigationBarState.Publishing" = "S'està publicant..."; "Scene.HomeTimeline.Title" = "Inici"; -"Scene.Login.ServerSearchField.Placeholder" = "Enter URL or search for your server"; -"Scene.Login.Subtitle" = "Log you in on the server you created your account on."; -"Scene.Login.Title" = "Welcome back"; +"Scene.Login.ServerSearchField.Placeholder" = "Insereix la URL o cerca el teu servidor"; +"Scene.Login.Subtitle" = "T'inicia sessió en el servidor on has creat el teu compte."; +"Scene.Login.Title" = "Ben tornat"; "Scene.Notification.FollowRequest.Accept" = "Acceptar"; "Scene.Notification.FollowRequest.Accepted" = "Acceptat"; "Scene.Notification.FollowRequest.Reject" = "rebutjar"; @@ -404,11 +404,11 @@ carregat a Mastodon."; "Scene.ServerPicker.EmptyState.BadNetwork" = "Alguna cosa no ha anat bé en carregar les dades. Comprova la teva connexió a Internet."; "Scene.ServerPicker.EmptyState.FindingServers" = "Cercant els servidors disponibles..."; "Scene.ServerPicker.EmptyState.NoResults" = "No hi ha resultats"; -"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "Search communities or enter URL"; +"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "Cerca comunitats o introdueix l'URL"; "Scene.ServerPicker.Label.Category" = "CATEGORIA"; "Scene.ServerPicker.Label.Language" = "LLENGUATGE"; "Scene.ServerPicker.Label.Users" = "USUARIS"; -"Scene.ServerPicker.Subtitle" = "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers."; +"Scene.ServerPicker.Subtitle" = "Tria un servidor en funció de la teva regió, interessos o un de propòsit general. Seguiràs podent connectar amb tothom a Mastodon, independentment del servidor."; "Scene.ServerPicker.Title" = "Mastodon està fet d'usuaris en diferents comunitats."; "Scene.ServerRules.Button.Confirm" = "Hi estic d'acord"; "Scene.ServerRules.PrivacyPolicy" = "política de privadesa"; diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/cs.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/cs.lproj/Localizable.strings index fbf2ff2f4..22260e380 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/cs.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/cs.lproj/Localizable.strings @@ -157,9 +157,9 @@ Váš profil pro něj vypadá takto."; "Scene.Compose.Accessibility.CustomEmojiPicker" = "Vlastní výběr Emoji"; "Scene.Compose.Accessibility.DisableContentWarning" = "Vypnout upozornění na obsah"; "Scene.Compose.Accessibility.EnableContentWarning" = "Povolit upozornění na obsah"; -"Scene.Compose.Accessibility.PostOptions" = "Post Options"; +"Scene.Compose.Accessibility.PostOptions" = "Možnosti příspěvku"; "Scene.Compose.Accessibility.PostVisibilityMenu" = "Menu viditelnosti příspěvku"; -"Scene.Compose.Accessibility.PostingAs" = "Posting as %@"; +"Scene.Compose.Accessibility.PostingAs" = "Odesílání jako %@"; "Scene.Compose.Accessibility.RemovePoll" = "Odstranit anketu"; "Scene.Compose.Attachment.AttachmentBroken" = "Tento %@ je poškozený a nemůže být nahrán do Mastodonu."; diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/de.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/de.lproj/Localizable.strings index 89e826349..29f3d16f5 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/de.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/de.lproj/Localizable.strings @@ -55,8 +55,8 @@ Bitte überprüfe deine Internetverbindung."; "Common.Controls.Actions.Share" = "Teilen"; "Common.Controls.Actions.SharePost" = "Beitrag teilen"; "Common.Controls.Actions.ShareUser" = "%@ teilen"; -"Common.Controls.Actions.SignIn" = "Log in"; -"Common.Controls.Actions.SignUp" = "Create account"; +"Common.Controls.Actions.SignIn" = "Anmelden"; +"Common.Controls.Actions.SignUp" = "Konto erstellen"; "Common.Controls.Actions.Skip" = "Überspringen"; "Common.Controls.Actions.TakePhoto" = "Foto aufnehmen"; "Common.Controls.Actions.TryAgain" = "Nochmals versuchen"; @@ -240,9 +240,9 @@ kann nicht auf Mastodon hochgeladen werden."; "Scene.HomeTimeline.NavigationBarState.Published" = "Veröffentlicht!"; "Scene.HomeTimeline.NavigationBarState.Publishing" = "Beitrag wird veröffentlicht..."; "Scene.HomeTimeline.Title" = "Startseite"; -"Scene.Login.ServerSearchField.Placeholder" = "Enter URL or search for your server"; -"Scene.Login.Subtitle" = "Log you in on the server you created your account on."; -"Scene.Login.Title" = "Welcome back"; +"Scene.Login.ServerSearchField.Placeholder" = "URL eingeben oder nach Server suchen"; +"Scene.Login.Subtitle" = "Melden Sie sich auf dem Server an, auf dem Sie Ihr Konto erstellt haben."; +"Scene.Login.Title" = "Willkommen zurück"; "Scene.Notification.FollowRequest.Accept" = "Akzeptieren"; "Scene.Notification.FollowRequest.Accepted" = "Akzeptiert"; "Scene.Notification.FollowRequest.Reject" = "Ablehnen"; @@ -271,7 +271,7 @@ kann nicht auf Mastodon hochgeladen werden."; "Scene.Profile.Fields.Placeholder.Content" = "Inhalt"; "Scene.Profile.Fields.Placeholder.Label" = "Bezeichnung"; "Scene.Profile.Fields.Verified.Long" = "Besitz des Links wurde überprüft am %@"; -"Scene.Profile.Fields.Verified.Short" = "Verified on %@"; +"Scene.Profile.Fields.Verified.Short" = "Überprüft am %@"; "Scene.Profile.Header.FollowsYou" = "Folgt dir"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Bestätige %@ zu blockieren"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Konto blockieren"; @@ -404,11 +404,11 @@ kann nicht auf Mastodon hochgeladen werden."; "Scene.ServerPicker.EmptyState.BadNetwork" = "Beim Laden der Daten ist etwas schief gelaufen. Überprüfe deine Internetverbindung."; "Scene.ServerPicker.EmptyState.FindingServers" = "Verfügbare Server werden gesucht..."; "Scene.ServerPicker.EmptyState.NoResults" = "Keine Ergebnisse"; -"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "Search communities or enter URL"; +"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "Suche nach einer Community oder gib eine URL ein"; "Scene.ServerPicker.Label.Category" = "KATEGORIE"; "Scene.ServerPicker.Label.Language" = "SPRACHE"; "Scene.ServerPicker.Label.Users" = "BENUTZER"; -"Scene.ServerPicker.Subtitle" = "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers."; +"Scene.ServerPicker.Subtitle" = "Wähle einen Server basierend auf deinen Interessen oder deiner Region – oder einfach einen allgemeinen. Du kannst trotzdem mit jedem interagieren, egal auf welchem Server."; "Scene.ServerPicker.Title" = "Wähle einen Server, beliebigen Server."; "Scene.ServerRules.Button.Confirm" = "Ich stimme zu"; diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/fr.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/fr.lproj/Localizable.strings index 59590f612..f393adec1 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/fr.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/fr.lproj/Localizable.strings @@ -55,8 +55,8 @@ Veuillez vérifier votre accès à Internet."; "Common.Controls.Actions.Share" = "Partager"; "Common.Controls.Actions.SharePost" = "Partager la publication"; "Common.Controls.Actions.ShareUser" = "Partager %@"; -"Common.Controls.Actions.SignIn" = "Log in"; -"Common.Controls.Actions.SignUp" = "Create account"; +"Common.Controls.Actions.SignIn" = "Se connecter"; +"Common.Controls.Actions.SignUp" = "Créer un compte"; "Common.Controls.Actions.Skip" = "Passer"; "Common.Controls.Actions.TakePhoto" = "Prendre une photo"; "Common.Controls.Actions.TryAgain" = "Réessayer"; @@ -240,9 +240,9 @@ téléversé sur Mastodon."; "Scene.HomeTimeline.NavigationBarState.Published" = "Publié!"; "Scene.HomeTimeline.NavigationBarState.Publishing" = "Publication en cours ..."; "Scene.HomeTimeline.Title" = "Accueil"; -"Scene.Login.ServerSearchField.Placeholder" = "Enter URL or search for your server"; -"Scene.Login.Subtitle" = "Log you in on the server you created your account on."; -"Scene.Login.Title" = "Welcome back"; +"Scene.Login.ServerSearchField.Placeholder" = "Entrez l'URL ou recherchez votre serveur"; +"Scene.Login.Subtitle" = "Connectez-vous sur le serveur sur lequel vous avez créé votre compte."; +"Scene.Login.Title" = "Content de vous revoir"; "Scene.Notification.FollowRequest.Accept" = "Accepter"; "Scene.Notification.FollowRequest.Accepted" = "Accepté"; "Scene.Notification.FollowRequest.Reject" = "rejeter"; @@ -404,11 +404,11 @@ téléversé sur Mastodon."; "Scene.ServerPicker.EmptyState.BadNetwork" = "Une erreur s'est produite lors du chargement des données. Vérifiez votre connexion Internet."; "Scene.ServerPicker.EmptyState.FindingServers" = "Recherche des serveurs disponibles..."; "Scene.ServerPicker.EmptyState.NoResults" = "Aucun résultat"; -"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "Search communities or enter URL"; +"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "Rechercher parmi les communautés ou renseigner une URL"; "Scene.ServerPicker.Label.Category" = "CATÉGORIE"; "Scene.ServerPicker.Label.Language" = "LANGUE"; "Scene.ServerPicker.Label.Users" = "UTILISATEUR·RICE·S"; -"Scene.ServerPicker.Subtitle" = "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers."; +"Scene.ServerPicker.Subtitle" = "Choisissez un serveur basé sur votre région, vos intérêts ou un généraliste. Vous pouvez toujours discuter avec n'importe qui sur Mastodon, indépendamment de vos serveurs."; "Scene.ServerPicker.Title" = "Choisissez un serveur, n'importe quel serveur."; "Scene.ServerRules.Button.Confirm" = "J’accepte"; diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/gd.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/gd.lproj/Localizable.strings index aea2902fc..6ccf6cf15 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/gd.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/gd.lproj/Localizable.strings @@ -55,8 +55,8 @@ Thoir sùil air a’ cheangal agad ris an eadar-lìon."; "Common.Controls.Actions.Share" = "Co-roinn"; "Common.Controls.Actions.SharePost" = "Co-roinn am post"; "Common.Controls.Actions.ShareUser" = "Co-roinn %@"; -"Common.Controls.Actions.SignIn" = "Log in"; -"Common.Controls.Actions.SignUp" = "Create account"; +"Common.Controls.Actions.SignIn" = "Clàraich a-steach"; +"Common.Controls.Actions.SignUp" = "Cruthaich cunntas"; "Common.Controls.Actions.Skip" = "Leum thairis air"; "Common.Controls.Actions.TakePhoto" = "Tog dealbh"; "Common.Controls.Actions.TryAgain" = "Feuch ris a-rithist"; @@ -68,13 +68,13 @@ Thoir sùil air a’ cheangal agad ris an eadar-lìon."; "Common.Controls.Friendship.EditInfo" = "Deasaich"; "Common.Controls.Friendship.Follow" = "Lean"; "Common.Controls.Friendship.Following" = "’Ga leantainn"; -"Common.Controls.Friendship.HideReblogs" = "Hide Reblogs"; +"Common.Controls.Friendship.HideReblogs" = "Falaich na brosnachaidhean"; "Common.Controls.Friendship.Mute" = "Mùch"; "Common.Controls.Friendship.MuteUser" = "Mùch %@"; "Common.Controls.Friendship.Muted" = "’Ga mhùchadh"; "Common.Controls.Friendship.Pending" = "Ri dhèiligeadh"; "Common.Controls.Friendship.Request" = "Iarrtas"; -"Common.Controls.Friendship.ShowReblogs" = "Show Reblogs"; +"Common.Controls.Friendship.ShowReblogs" = "Seall na brosnachaidhean"; "Common.Controls.Friendship.Unblock" = "Dì-bhac"; "Common.Controls.Friendship.UnblockUser" = "Dì-bhac %@"; "Common.Controls.Friendship.Unmute" = "Dì-mhùch"; @@ -108,10 +108,10 @@ Thoir sùil air a’ cheangal agad ris an eadar-lìon."; "Common.Controls.Status.Actions.Unreblog" = "Na brosnaich tuilleadh"; "Common.Controls.Status.ContentWarning" = "Rabhadh susbainte"; "Common.Controls.Status.MediaContentWarning" = "Thoir gnogag àite sam bith gus a nochdadh"; -"Common.Controls.Status.MetaEntity.Email" = "Email address: %@"; -"Common.Controls.Status.MetaEntity.Hashtag" = "Hashtag: %@"; -"Common.Controls.Status.MetaEntity.Mention" = "Show Profile: %@"; -"Common.Controls.Status.MetaEntity.Url" = "Link: %@"; +"Common.Controls.Status.MetaEntity.Email" = "Seòladh puist-d: %@"; +"Common.Controls.Status.MetaEntity.Hashtag" = "Taga hais: %@"; +"Common.Controls.Status.MetaEntity.Mention" = "Seall a’ phròifil: %@"; +"Common.Controls.Status.MetaEntity.Url" = "Ceangal: %@"; "Common.Controls.Status.Poll.Closed" = "Dùinte"; "Common.Controls.Status.Poll.Vote" = "Cuir bhòt"; "Common.Controls.Status.SensitiveContent" = "Susbaint fhrionasach"; @@ -155,27 +155,27 @@ Seo an coltas a th’ air a’ phròifil agad dhaibh-san."; "Scene.AccountList.AddAccount" = "Cuir cunntas ris"; "Scene.AccountList.DismissAccountSwitcher" = "Leig seachad taghadh a’ chunntais"; "Scene.AccountList.TabBarHint" = "A’ phròifil air a taghadh: %@. Thoir gnogag dhùbailte is cùm sìos a ghearradh leum gu cunntas eile"; -"Scene.Bookmark.Title" = "Bookmarks"; +"Scene.Bookmark.Title" = "Comharran-lìn"; "Scene.Compose.Accessibility.AppendAttachment" = "Cuir ceanglachan ris"; "Scene.Compose.Accessibility.AppendPoll" = "Cuir cunntas-bheachd ris"; "Scene.Compose.Accessibility.CustomEmojiPicker" = "Roghnaichear nan Emoji gnàthaichte"; "Scene.Compose.Accessibility.DisableContentWarning" = "Cuir rabhadh susbainte à comas"; "Scene.Compose.Accessibility.EnableContentWarning" = "Cuir rabhadh susbainte an comas"; -"Scene.Compose.Accessibility.PostOptions" = "Post Options"; +"Scene.Compose.Accessibility.PostOptions" = "Roghainnean postaidh"; "Scene.Compose.Accessibility.PostVisibilityMenu" = "Clàr-taice faicsinneachd a’ phuist"; -"Scene.Compose.Accessibility.PostingAs" = "Posting as %@"; +"Scene.Compose.Accessibility.PostingAs" = "A’ postadh mar %@"; "Scene.Compose.Accessibility.RemovePoll" = "Thoir air falbh an cunntas-bheachd"; "Scene.Compose.Attachment.AttachmentBroken" = "Seo %@ a tha briste is cha ghabh a luchdadh suas gu Mastodon."; -"Scene.Compose.Attachment.AttachmentTooLarge" = "Attachment too large"; -"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Can not recognize this media attachment"; -"Scene.Compose.Attachment.CompressingState" = "Compressing..."; +"Scene.Compose.Attachment.AttachmentTooLarge" = "Tha an ceanglachan ro mhòr"; +"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Cha do dh’aithnich sinn an ceanglachan meadhain seo"; +"Scene.Compose.Attachment.CompressingState" = "’Ga dhùmhlachadh…"; "Scene.Compose.Attachment.DescriptionPhoto" = "Mìnich an dealbh dhan fheadhainn air a bheil cion-lèirsinne…"; "Scene.Compose.Attachment.DescriptionVideo" = "Mìnich a’ video dhan fheadhainn air a bheil cion-lèirsinne…"; -"Scene.Compose.Attachment.LoadFailed" = "Load Failed"; +"Scene.Compose.Attachment.LoadFailed" = "Dh’fhàillig leis an luchdadh"; "Scene.Compose.Attachment.Photo" = "dealbh"; -"Scene.Compose.Attachment.ServerProcessingState" = "Server Processing..."; -"Scene.Compose.Attachment.UploadFailed" = "Upload Failed"; +"Scene.Compose.Attachment.ServerProcessingState" = "Tha am frithealaiche ’ga phròiseasadh…"; +"Scene.Compose.Attachment.UploadFailed" = "Dh’fhàillig leis an luchdadh suas"; "Scene.Compose.Attachment.Video" = "video"; "Scene.Compose.AutoComplete.SpaceToAdd" = "Brùth air Space gus a chur ris"; "Scene.Compose.ComposeAction" = "Foillsich"; @@ -196,8 +196,8 @@ a luchdadh suas gu Mastodon."; "Scene.Compose.Poll.OptionNumber" = "Roghainn %ld"; "Scene.Compose.Poll.SevenDays" = "Seachdain"; "Scene.Compose.Poll.SixHours" = "6 uairean a thìde"; -"Scene.Compose.Poll.ThePollHasEmptyOption" = "The poll has empty option"; -"Scene.Compose.Poll.ThePollIsInvalid" = "The poll is invalid"; +"Scene.Compose.Poll.ThePollHasEmptyOption" = "Tha roghainn fhalamh aig a’ chunntas-bheachd"; +"Scene.Compose.Poll.ThePollIsInvalid" = "Tha an cunntas-bheachd mì-dhligheach"; "Scene.Compose.Poll.ThirtyMinutes" = "Leth-uair a thìde"; "Scene.Compose.Poll.ThreeDays" = "3 làithean"; "Scene.Compose.ReplyingToUser" = "a’ freagairt gu %@"; @@ -240,9 +240,9 @@ a luchdadh suas gu Mastodon."; "Scene.HomeTimeline.NavigationBarState.Published" = "Chaidh fhoillseachadh!"; "Scene.HomeTimeline.NavigationBarState.Publishing" = "A’ foillseachadh a’ phuist…"; "Scene.HomeTimeline.Title" = "Dachaigh"; -"Scene.Login.ServerSearchField.Placeholder" = "Enter URL or search for your server"; -"Scene.Login.Subtitle" = "Log you in on the server you created your account on."; -"Scene.Login.Title" = "Welcome back"; +"Scene.Login.ServerSearchField.Placeholder" = "Cuir a-steach URL an fhrithealaiche agad"; +"Scene.Login.Subtitle" = "Clàraich a-steach air an fhrithealaiche far an do chruthaich thu an cunntas agad."; +"Scene.Login.Title" = "Fàilte air ais"; "Scene.Notification.FollowRequest.Accept" = "Gabh ris"; "Scene.Notification.FollowRequest.Accepted" = "Air a ghabhail ris"; "Scene.Notification.FollowRequest.Reject" = "diùlt"; @@ -270,17 +270,17 @@ a luchdadh suas gu Mastodon."; "Scene.Profile.Fields.AddRow" = "Cuir ràgh ris"; "Scene.Profile.Fields.Placeholder.Content" = "Susbaint"; "Scene.Profile.Fields.Placeholder.Label" = "Leubail"; -"Scene.Profile.Fields.Verified.Long" = "Ownership of this link was checked on %@"; -"Scene.Profile.Fields.Verified.Short" = "Verified on %@"; +"Scene.Profile.Fields.Verified.Long" = "Chaidh dearbhadh cò leis a tha an ceangal seo %@"; +"Scene.Profile.Fields.Verified.Short" = "Air a dhearbhadh %@"; "Scene.Profile.Header.FollowsYou" = "’Gad leantainn"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Dearbh bacadh %@"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Bac an cunntas"; -"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "Confirm to hide reblogs"; -"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Title" = "Hide Reblogs"; +"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "Dearbh falach nam brosnachaidhean"; +"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Title" = "Falaich na brosnachaidhean"; "Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Message" = "Dearbh mùchadh %@"; "Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Mùch an cunntas"; -"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Confirm to show reblogs"; -"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "Show Reblogs"; +"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Dearbh sealladh nam brosnachaidhean"; +"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "Seall na brosnachaidhean"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Dearbh dì-bhacadh %@"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Dì-bhac an cunntas"; "Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Dearbh dì-mhùchadh %@"; @@ -404,11 +404,11 @@ a luchdadh suas gu Mastodon."; "Scene.ServerPicker.EmptyState.BadNetwork" = "Chaidh rudeigin ceàrr le luchdadh an dàta. Thoir sùil air a’ cheangal agad ris an eadar-lìon."; "Scene.ServerPicker.EmptyState.FindingServers" = "A’ lorg nam frithealaichean ri am faighinn…"; "Scene.ServerPicker.EmptyState.NoResults" = "Gun toradh"; -"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "Search communities or enter URL"; +"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "Lorg coimhearsnachd no cuir a-steach URL"; "Scene.ServerPicker.Label.Category" = "ROINN-SEÒRSA"; "Scene.ServerPicker.Label.Language" = "CÀNAN"; "Scene.ServerPicker.Label.Users" = "CLEACHDAICHEAN"; -"Scene.ServerPicker.Subtitle" = "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers."; +"Scene.ServerPicker.Subtitle" = "Tagh frithealaiche stèidhichte air na sgìre agad, d’ ùidhean, air far a bheil thu no fear coitcheann. ’S urrainn dhut fhathast conaltradh le duine sam bith air Mastodon ge b’ e na frithealaichean agaibh-se."; "Scene.ServerPicker.Title" = "Tha cleachdaichean Mhastodon air iomadh frithealaiche eadar-dhealaichte."; "Scene.ServerRules.Button.Confirm" = "Gabhaidh mi ris"; "Scene.ServerRules.PrivacyPolicy" = "poileasaidh prìobhaideachd"; diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/gd.lproj/Localizable.stringsdict b/MastodonSDK/Sources/MastodonLocalization/Resources/gd.lproj/Localizable.stringsdict index 45ba1e156..9b3e69ea7 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/gd.lproj/Localizable.stringsdict +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/gd.lproj/Localizable.stringsdict @@ -65,7 +65,7 @@ a11y.plural.count.characters_left NSStringLocalizedFormatKey - %#@character_count@ left + %#@character_count@ air fhàgail character_count NSStringFormatSpecTypeKey @@ -73,13 +73,13 @@ NSStringFormatValueTypeKey ld one - 1 character + %ld charactar two - %ld characters + %ld charactar few - %ld characters + %ld caractaran other - %ld characters + %ld caractar plural.count.followed_by_and_mutual diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/gl.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/gl.lproj/Localizable.strings index b388ad5c3..f9e1c6589 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/gl.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/gl.lproj/Localizable.strings @@ -55,8 +55,8 @@ Comproba a conexión a internet."; "Common.Controls.Actions.Share" = "Compartir"; "Common.Controls.Actions.SharePost" = "Compartir publicación"; "Common.Controls.Actions.ShareUser" = "Compartir %@"; -"Common.Controls.Actions.SignIn" = "Log in"; -"Common.Controls.Actions.SignUp" = "Create account"; +"Common.Controls.Actions.SignIn" = "Acceder"; +"Common.Controls.Actions.SignUp" = "Crear conta"; "Common.Controls.Actions.Skip" = "Omitir"; "Common.Controls.Actions.TakePhoto" = "Facer foto"; "Common.Controls.Actions.TryAgain" = "Intentar de novo"; @@ -240,9 +240,9 @@ ser subido a Mastodon."; "Scene.HomeTimeline.NavigationBarState.Published" = "Publicado!"; "Scene.HomeTimeline.NavigationBarState.Publishing" = "Publicando..."; "Scene.HomeTimeline.Title" = "Inicio"; -"Scene.Login.ServerSearchField.Placeholder" = "Enter URL or search for your server"; -"Scene.Login.Subtitle" = "Log you in on the server you created your account on."; -"Scene.Login.Title" = "Welcome back"; +"Scene.Login.ServerSearchField.Placeholder" = "Escribe o URL ou busca o teu servidor"; +"Scene.Login.Subtitle" = "Conéctate ao servidor no que creaches a conta."; +"Scene.Login.Title" = "Benvido outra vez"; "Scene.Notification.FollowRequest.Accept" = "Aceptar"; "Scene.Notification.FollowRequest.Accepted" = "Aceptada"; "Scene.Notification.FollowRequest.Reject" = "rexeitar"; @@ -404,11 +404,11 @@ ser subido a Mastodon."; "Scene.ServerPicker.EmptyState.BadNetwork" = "Algo fallou ao cargar os datos. Comproba a conexión a internet."; "Scene.ServerPicker.EmptyState.FindingServers" = "Buscando servidores dispoñibles..."; "Scene.ServerPicker.EmptyState.NoResults" = "Sen resultados"; -"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "Search communities or enter URL"; +"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "Busca comunidades ou escribe URL"; "Scene.ServerPicker.Label.Category" = "CATEGORÍA"; "Scene.ServerPicker.Label.Language" = "IDIOMA"; "Scene.ServerPicker.Label.Users" = "USUARIAS"; -"Scene.ServerPicker.Subtitle" = "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers."; +"Scene.ServerPicker.Subtitle" = "Elixe un servidor en función dos teus intereses, rexión o un de propósito xeral. Poderás conversar con calquera en Mastodon, independentemente do servidor que elixas."; "Scene.ServerPicker.Title" = "Mastodon fórmano as persoas das diferentes comunidades."; "Scene.ServerRules.Button.Confirm" = "Acepto"; "Scene.ServerRules.PrivacyPolicy" = "polícica de privacidade"; diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/kab.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/kab.lproj/Localizable.strings index c80c8ef77..781143b71 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/kab.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/kab.lproj/Localizable.strings @@ -55,8 +55,8 @@ Ma ulac aɣilif, senqed tuqqna-inek internet."; "Common.Controls.Actions.Share" = "Bḍu"; "Common.Controls.Actions.SharePost" = "Bḍu tasuffeɣt"; "Common.Controls.Actions.ShareUser" = "Bḍu %@"; -"Common.Controls.Actions.SignIn" = "Log in"; -"Common.Controls.Actions.SignUp" = "Create account"; +"Common.Controls.Actions.SignIn" = "Qqen"; +"Common.Controls.Actions.SignUp" = "Snulfu-d amiḍan"; "Common.Controls.Actions.Skip" = "Zgel"; "Common.Controls.Actions.TakePhoto" = "Ṭṭef tawlaft"; "Common.Controls.Actions.TryAgain" = "Ɛreḍ tikkelt-nniḍen"; @@ -108,10 +108,10 @@ Ma ulac aɣilif, senqed tuqqna-inek internet."; "Common.Controls.Status.Actions.Unreblog" = "Sefsex allus n usuffeɣ"; "Common.Controls.Status.ContentWarning" = "Alɣu n ugbur"; "Common.Controls.Status.MediaContentWarning" = "Sit anida tebɣiḍ i wakken ad twaliḍ"; -"Common.Controls.Status.MetaEntity.Email" = "Email address: %@"; -"Common.Controls.Status.MetaEntity.Hashtag" = "Hashtag: %@"; -"Common.Controls.Status.MetaEntity.Mention" = "Show Profile: %@"; -"Common.Controls.Status.MetaEntity.Url" = "Link: %@"; +"Common.Controls.Status.MetaEntity.Email" = "Tansa imayl : %@"; +"Common.Controls.Status.MetaEntity.Hashtag" = "Ahacṭag : %@"; +"Common.Controls.Status.MetaEntity.Mention" = "Sken-d amaɣnu : %@"; +"Common.Controls.Status.MetaEntity.Url" = "Asaɣ : %@"; "Common.Controls.Status.Poll.Closed" = "Ifukk"; "Common.Controls.Status.Poll.Vote" = "Dɣeṛ"; "Common.Controls.Status.SensitiveContent" = "Agbur amḥulfu"; @@ -237,12 +237,12 @@ Ad d-yettwasali ɣef Mastodon."; "Scene.HomeTimeline.NavigationBarState.Accessibility.LogoLabel" = "Taqeffalt n ulugu"; "Scene.HomeTimeline.NavigationBarState.NewPosts" = "Tissufaɣ timaynutin"; "Scene.HomeTimeline.NavigationBarState.Offline" = "Beṛṛa n tuqqna"; -"Scene.HomeTimeline.NavigationBarState.Published" = "Yettwasuffeɣ!"; -"Scene.HomeTimeline.NavigationBarState.Publishing" = "Asuffeɣ tasuffeɣt..."; +"Scene.HomeTimeline.NavigationBarState.Published" = "Tettwasuffeɣ!"; +"Scene.HomeTimeline.NavigationBarState.Publishing" = "Asuffeɣ n tasuffeɣt..."; "Scene.HomeTimeline.Title" = "Agejdan"; -"Scene.Login.ServerSearchField.Placeholder" = "Enter URL or search for your server"; +"Scene.Login.ServerSearchField.Placeholder" = "Sekcem URL neɣ nadi ɣef uqeddac-ik·im"; "Scene.Login.Subtitle" = "Log you in on the server you created your account on."; -"Scene.Login.Title" = "Welcome back"; +"Scene.Login.Title" = "Ansuf yess·ek·em"; "Scene.Notification.FollowRequest.Accept" = "Accept"; "Scene.Notification.FollowRequest.Accepted" = "Accepted"; "Scene.Notification.FollowRequest.Reject" = "agi"; @@ -357,7 +357,7 @@ Ad d-yettwasali ɣef Mastodon."; "Scene.Report.StepOne.WhatsWrongWithThisAccount" = "Acu n wugur yellan deg umiḍan-a?"; "Scene.Report.StepOne.WhatsWrongWithThisPost" = "Acu n wugur yellan d tsuffeɣt-a?"; "Scene.Report.StepOne.WhatsWrongWithThisUsername" = "Acu n wugur yellan d %@?"; -"Scene.Report.StepOne.YouAreAwareThatItBreaksSpecificRules" = "Teẓriḍ y•tettruẓu kra n yilugan"; +"Scene.Report.StepOne.YouAreAwareThatItBreaksSpecificRules" = "Teẓriḍ y·tettruẓu kra n yilugan"; "Scene.Report.StepThree.AreThereAnyPostsThatBackUpThisReport" = "Llant tsuffaɣ ara isdemren aneqqis-a?"; "Scene.Report.StepThree.SelectAllThatApply" = "Fren akk tifrat ara yettusnasen"; "Scene.Report.StepThree.Step3Of4" = "Aḥric 3 seg 4"; @@ -404,7 +404,7 @@ Ad d-yettwasali ɣef Mastodon."; "Scene.ServerPicker.EmptyState.BadNetwork" = "Tella-d tuccḍa lawan n usali n yisefka. Senqed tuqqna-ink internet."; "Scene.ServerPicker.EmptyState.FindingServers" = "Tifin n yiqeddacen yellan..."; "Scene.ServerPicker.EmptyState.NoResults" = "Ulac igemmaḍ"; -"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "Search communities or enter URL"; +"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "Nadi timɣiwnin neɣ sekcem URL"; "Scene.ServerPicker.Label.Category" = "TAGGAYT"; "Scene.ServerPicker.Label.Language" = "TUTLAYT"; "Scene.ServerPicker.Label.Users" = "ISEQDACEN"; diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/kab.lproj/Localizable.stringsdict b/MastodonSDK/Sources/MastodonLocalization/Resources/kab.lproj/Localizable.stringsdict index fd7cac605..f18a906c0 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/kab.lproj/Localizable.stringsdict +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/kab.lproj/Localizable.stringsdict @@ -61,9 +61,9 @@ NSStringFormatValueTypeKey ld one - 1 character + 1 n usekkil other - %ld characters + %ld n isekkilen plural.count.followed_by_and_mutual @@ -136,7 +136,7 @@ NSStringFormatValueTypeKey ld one - 1 tsuffeɣt + 1 n tsuffeɣt other %ld n tsuffaɣ @@ -312,9 +312,9 @@ NSStringFormatValueTypeKey ld one - Yeqqim-d 1 wass + Yeqqim-d 1 n wass other - Qqimen-d %ld wussan + Qqimen-d %ld n wussan date.hour.left @@ -328,9 +328,9 @@ NSStringFormatValueTypeKey ld one - Yeqqim-d 1 usrag + Yeqqim-d 1 n wesrag other - Qqimen-d %ld yisragen + Qqimen-d %ld n yisragen date.minute.left @@ -344,9 +344,9 @@ NSStringFormatValueTypeKey ld one - 1 tesdat i d-yeqqimen + 1 n tesdat i d-yeqqimen other - %ld tesdatin i d-yeqqimen + %ld n tesdatin i d-yeqqimen date.second.left @@ -360,9 +360,9 @@ NSStringFormatValueTypeKey ld one - 1 tasint i d-yeqqimen + 1 n tasint i d-yeqqimen other - %ld tsinin i d-yeqqimen + %ld n tasinin i d-yeqqimen date.year.ago.abbr @@ -376,9 +376,9 @@ NSStringFormatValueTypeKey ld one - 1 useggas aya + %ld n useggas aya other - %ld yiseggasen aya + %ld n yiseggasen aya date.month.ago.abbr @@ -392,9 +392,9 @@ NSStringFormatValueTypeKey ld one - 1 wayyur aya + %ld n wayyur aya other - %ld wayyuren aya + %ld n wayyuren aya date.day.ago.abbr @@ -408,9 +408,9 @@ NSStringFormatValueTypeKey ld one - 1 wass aya + %ld n wass aya other - %ld wussan aya + %ld n wussan aya date.hour.ago.abbr @@ -424,9 +424,9 @@ NSStringFormatValueTypeKey ld one - 1 usrag aya + %ld n wesrag aya other - %ld yisragen aya + %ld n yisragen aya date.minute.ago.abbr @@ -440,9 +440,9 @@ NSStringFormatValueTypeKey ld one - 1 tesdat aya + %ld n tesdat aya other - %ld tesdatin aya + %ld n tesdatin aya date.second.ago.abbr @@ -456,9 +456,9 @@ NSStringFormatValueTypeKey ld one - 1 tasint aya + %ld n tasint aya other - %ld tsinin aya + %ld n tasinin aya diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/ku.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/ku.lproj/Localizable.strings index 758a9190b..03ac1f46d 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/ku.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/ku.lproj/Localizable.strings @@ -55,8 +55,8 @@ Jkx girêdana înternetê xwe kontrol bike."; "Common.Controls.Actions.Share" = "Parve bike"; "Common.Controls.Actions.SharePost" = "Şandiyê parve bike"; "Common.Controls.Actions.ShareUser" = "%@ parve bike"; -"Common.Controls.Actions.SignIn" = "Log in"; -"Common.Controls.Actions.SignUp" = "Create account"; +"Common.Controls.Actions.SignIn" = "Têkeve"; +"Common.Controls.Actions.SignUp" = "Ajimêr biafirîne"; "Common.Controls.Actions.Skip" = "Derbas bike"; "Common.Controls.Actions.TakePhoto" = "Wêne bikişîne"; "Common.Controls.Actions.TryAgain" = "Dîsa biceribîne"; @@ -241,9 +241,9 @@ girêdanê bitikne da ku ajimêra xwe bidî piştrastkirin."; "Scene.HomeTimeline.NavigationBarState.Published" = "Hate weşandin!"; "Scene.HomeTimeline.NavigationBarState.Publishing" = "Şandî tê weşandin..."; "Scene.HomeTimeline.Title" = "Serrûpel"; -"Scene.Login.ServerSearchField.Placeholder" = "Enter URL or search for your server"; -"Scene.Login.Subtitle" = "Log you in on the server you created your account on."; -"Scene.Login.Title" = "Welcome back"; +"Scene.Login.ServerSearchField.Placeholder" = "Girêdanê têxe an jî li rajekarê xwe bigere"; +"Scene.Login.Subtitle" = "Têketinê bike ser rajekarê ku te ajimêrê xwe tê de çê kiriye."; +"Scene.Login.Title" = "Dîsa bi xêr hatî"; "Scene.Notification.FollowRequest.Accept" = "Bipejirîne"; "Scene.Notification.FollowRequest.Accepted" = "Pejirandî"; "Scene.Notification.FollowRequest.Reject" = "nepejirîne"; @@ -405,11 +405,11 @@ girêdanê bitikne da ku ajimêra xwe bidî piştrastkirin."; "Scene.ServerPicker.EmptyState.BadNetwork" = "Di dema barkirina daneyan da çewtî derket. Girêdana xwe ya înternetê kontrol bike."; "Scene.ServerPicker.EmptyState.FindingServers" = "Peydakirina rajekarên berdest..."; "Scene.ServerPicker.EmptyState.NoResults" = "Encam tune"; -"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "Search communities or enter URL"; +"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "Li civakan bigere an jî girêdanê têxe"; "Scene.ServerPicker.Label.Category" = "BEŞ"; "Scene.ServerPicker.Label.Language" = "ZIMAN"; "Scene.ServerPicker.Label.Users" = "BIKARHÊNER"; -"Scene.ServerPicker.Subtitle" = "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers."; +"Scene.ServerPicker.Subtitle" = "Li gorî herêm, berjewendî, an jî armanceke giştî rajekarekê hilbijêre. Tu hîn jî dikarî li ser Mastodon bi her kesî re biaxivî, her rajekarê te çi be."; "Scene.ServerPicker.Title" = "Mastodon ji bikarhênerên di civakên cuda de pêk tê."; "Scene.ServerRules.Button.Confirm" = "Ez dipejirînim"; "Scene.ServerRules.PrivacyPolicy" = "polîtikaya nihêniyê"; diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/th.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/th.lproj/Localizable.strings index 8e63e0269..25c7e37f8 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/th.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/th.lproj/Localizable.strings @@ -55,8 +55,8 @@ "Common.Controls.Actions.Share" = "แบ่งปัน"; "Common.Controls.Actions.SharePost" = "แบ่งปันโพสต์"; "Common.Controls.Actions.ShareUser" = "แบ่งปัน %@"; -"Common.Controls.Actions.SignIn" = "Log in"; -"Common.Controls.Actions.SignUp" = "Create account"; +"Common.Controls.Actions.SignIn" = "เข้าสู่ระบบ"; +"Common.Controls.Actions.SignUp" = "สร้างบัญชี"; "Common.Controls.Actions.Skip" = "ข้าม"; "Common.Controls.Actions.TakePhoto" = "ถ่ายรูป"; "Common.Controls.Actions.TryAgain" = "ลองอีกครั้ง"; @@ -240,9 +240,9 @@ "Scene.HomeTimeline.NavigationBarState.Published" = "เผยแพร่แล้ว!"; "Scene.HomeTimeline.NavigationBarState.Publishing" = "กำลังเผยแพร่โพสต์..."; "Scene.HomeTimeline.Title" = "หน้าแรก"; -"Scene.Login.ServerSearchField.Placeholder" = "Enter URL or search for your server"; -"Scene.Login.Subtitle" = "Log you in on the server you created your account on."; -"Scene.Login.Title" = "Welcome back"; +"Scene.Login.ServerSearchField.Placeholder" = "ป้อน URL หรือค้นหาสำหรับเซิร์ฟเวอร์ของคุณ"; +"Scene.Login.Subtitle" = "นำคุณเข้าสู่ระบบในเซิร์ฟเวอร์ที่คุณได้สร้างบัญชีของคุณไว้ใน"; +"Scene.Login.Title" = "ยินดีต้อนรับกลับมา"; "Scene.Notification.FollowRequest.Accept" = "ยอมรับ"; "Scene.Notification.FollowRequest.Accepted" = "ยอมรับแล้ว"; "Scene.Notification.FollowRequest.Reject" = "ปฏิเสธ"; @@ -404,11 +404,11 @@ "Scene.ServerPicker.EmptyState.BadNetwork" = "มีบางอย่างผิดพลาดขณะโหลดข้อมูล ตรวจสอบการเชื่อมต่ออินเทอร์เน็ตของคุณ"; "Scene.ServerPicker.EmptyState.FindingServers" = "กำลังค้นหาเซิร์ฟเวอร์ที่พร้อมใช้งาน..."; "Scene.ServerPicker.EmptyState.NoResults" = "ไม่มีผลลัพธ์"; -"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "Search communities or enter URL"; +"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "ค้นหาชุมชนหรือป้อน URL"; "Scene.ServerPicker.Label.Category" = "หมวดหมู่"; "Scene.ServerPicker.Label.Language" = "ภาษา"; "Scene.ServerPicker.Label.Users" = "ผู้ใช้"; -"Scene.ServerPicker.Subtitle" = "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers."; +"Scene.ServerPicker.Subtitle" = "เลือกเซิร์ฟเวอร์ตามภูมิภาค, ความสนใจ หรือวัตถุประสงค์ทั่วไปของคุณ คุณยังคงสามารถแชทกับใครก็ตามใน Mastodon โดยไม่คำนึงถึงเซิร์ฟเวอร์ของคุณ"; "Scene.ServerPicker.Title" = "Mastodon ประกอบด้วยผู้ใช้ในเซิร์ฟเวอร์ต่าง ๆ"; "Scene.ServerRules.Button.Confirm" = "ฉันเห็นด้วย"; "Scene.ServerRules.PrivacyPolicy" = "นโยบายความเป็นส่วนตัว"; diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/zh-Hans.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/zh-Hans.lproj/Localizable.strings index cb362ea9d..0c779d293 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/zh-Hans.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/zh-Hans.lproj/Localizable.strings @@ -55,8 +55,8 @@ "Common.Controls.Actions.Share" = "分享"; "Common.Controls.Actions.SharePost" = "分享帖子"; "Common.Controls.Actions.ShareUser" = "分享 %@"; -"Common.Controls.Actions.SignIn" = "Log in"; -"Common.Controls.Actions.SignUp" = "Create account"; +"Common.Controls.Actions.SignIn" = "登录"; +"Common.Controls.Actions.SignUp" = "创建账户"; "Common.Controls.Actions.Skip" = "跳过"; "Common.Controls.Actions.TakePhoto" = "拍照"; "Common.Controls.Actions.TryAgain" = "再试一次"; @@ -68,13 +68,13 @@ "Common.Controls.Friendship.EditInfo" = "编辑"; "Common.Controls.Friendship.Follow" = "关注"; "Common.Controls.Friendship.Following" = "正在关注"; -"Common.Controls.Friendship.HideReblogs" = "Hide Reblogs"; +"Common.Controls.Friendship.HideReblogs" = "隐藏转发"; "Common.Controls.Friendship.Mute" = "静音"; "Common.Controls.Friendship.MuteUser" = "静音 %@"; "Common.Controls.Friendship.Muted" = "已静音"; "Common.Controls.Friendship.Pending" = "待确认"; "Common.Controls.Friendship.Request" = "请求"; -"Common.Controls.Friendship.ShowReblogs" = "Show Reblogs"; +"Common.Controls.Friendship.ShowReblogs" = "显示转发"; "Common.Controls.Friendship.Unblock" = "解除屏蔽"; "Common.Controls.Friendship.UnblockUser" = "解除屏蔽 %@"; "Common.Controls.Friendship.Unmute" = "取消静音"; @@ -108,10 +108,10 @@ "Common.Controls.Status.Actions.Unreblog" = "取消转发"; "Common.Controls.Status.ContentWarning" = "内容警告"; "Common.Controls.Status.MediaContentWarning" = "点击任意位置显示"; -"Common.Controls.Status.MetaEntity.Email" = "Email address: %@"; -"Common.Controls.Status.MetaEntity.Hashtag" = "Hashtag: %@"; -"Common.Controls.Status.MetaEntity.Mention" = "Show Profile: %@"; -"Common.Controls.Status.MetaEntity.Url" = "Link: %@"; +"Common.Controls.Status.MetaEntity.Email" = "邮箱地址:%@"; +"Common.Controls.Status.MetaEntity.Hashtag" = "话题:%@"; +"Common.Controls.Status.MetaEntity.Mention" = "显示用户资料:%@"; +"Common.Controls.Status.MetaEntity.Url" = "链接:%@"; "Common.Controls.Status.Poll.Closed" = "已关闭"; "Common.Controls.Status.Poll.Vote" = "投票"; "Common.Controls.Status.SensitiveContent" = "敏感内容"; @@ -155,27 +155,27 @@ "Scene.AccountList.AddAccount" = "添加账户"; "Scene.AccountList.DismissAccountSwitcher" = "关闭账户切换页面"; "Scene.AccountList.TabBarHint" = "当前账户:%@。 双击并按住来打开账户切换页面"; -"Scene.Bookmark.Title" = "Bookmarks"; +"Scene.Bookmark.Title" = "书签"; "Scene.Compose.Accessibility.AppendAttachment" = "添加附件"; "Scene.Compose.Accessibility.AppendPoll" = "添加投票"; "Scene.Compose.Accessibility.CustomEmojiPicker" = "自定义表情选择器"; "Scene.Compose.Accessibility.DisableContentWarning" = "关闭内容警告"; "Scene.Compose.Accessibility.EnableContentWarning" = "启用内容警告"; -"Scene.Compose.Accessibility.PostOptions" = "Post Options"; +"Scene.Compose.Accessibility.PostOptions" = "帖子选项"; "Scene.Compose.Accessibility.PostVisibilityMenu" = "帖子可见性"; -"Scene.Compose.Accessibility.PostingAs" = "Posting as %@"; +"Scene.Compose.Accessibility.PostingAs" = "以 %@ 身份发布"; "Scene.Compose.Accessibility.RemovePoll" = "移除投票"; "Scene.Compose.Attachment.AttachmentBroken" = "%@已损坏 无法上传到 Mastodon"; -"Scene.Compose.Attachment.AttachmentTooLarge" = "Attachment too large"; -"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Can not recognize this media attachment"; -"Scene.Compose.Attachment.CompressingState" = "Compressing..."; +"Scene.Compose.Attachment.AttachmentTooLarge" = "附件太大"; +"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "无法识别此媒体"; +"Scene.Compose.Attachment.CompressingState" = "压缩中..."; "Scene.Compose.Attachment.DescriptionPhoto" = "为视觉障碍人士添加照片的文字说明..."; "Scene.Compose.Attachment.DescriptionVideo" = "为视觉障碍人士添加视频的文字说明..."; -"Scene.Compose.Attachment.LoadFailed" = "Load Failed"; +"Scene.Compose.Attachment.LoadFailed" = "加载失败"; "Scene.Compose.Attachment.Photo" = "照片"; -"Scene.Compose.Attachment.ServerProcessingState" = "Server Processing..."; -"Scene.Compose.Attachment.UploadFailed" = "Upload Failed"; +"Scene.Compose.Attachment.ServerProcessingState" = "服务器正在处理..."; +"Scene.Compose.Attachment.UploadFailed" = "上传失败"; "Scene.Compose.Attachment.Video" = "视频"; "Scene.Compose.AutoComplete.SpaceToAdd" = "输入空格键入"; "Scene.Compose.ComposeAction" = "发送"; @@ -196,8 +196,8 @@ "Scene.Compose.Poll.OptionNumber" = "选项 %ld"; "Scene.Compose.Poll.SevenDays" = "7 天"; "Scene.Compose.Poll.SixHours" = "6 小时"; -"Scene.Compose.Poll.ThePollHasEmptyOption" = "The poll has empty option"; -"Scene.Compose.Poll.ThePollIsInvalid" = "The poll is invalid"; +"Scene.Compose.Poll.ThePollHasEmptyOption" = "投票含有空选项"; +"Scene.Compose.Poll.ThePollIsInvalid" = "投票无效"; "Scene.Compose.Poll.ThirtyMinutes" = "30 分钟"; "Scene.Compose.Poll.ThreeDays" = "3 天"; "Scene.Compose.ReplyingToUser" = "回复给 %@"; @@ -240,9 +240,9 @@ "Scene.HomeTimeline.NavigationBarState.Published" = "已发送"; "Scene.HomeTimeline.NavigationBarState.Publishing" = "正在发送..."; "Scene.HomeTimeline.Title" = "主页"; -"Scene.Login.ServerSearchField.Placeholder" = "Enter URL or search for your server"; -"Scene.Login.Subtitle" = "Log you in on the server you created your account on."; -"Scene.Login.Title" = "Welcome back"; +"Scene.Login.ServerSearchField.Placeholder" = "输入网址或搜索您的服务器"; +"Scene.Login.Subtitle" = "登入您账户所在的服务器。"; +"Scene.Login.Title" = "欢迎回来"; "Scene.Notification.FollowRequest.Accept" = "接受"; "Scene.Notification.FollowRequest.Accepted" = "已接受"; "Scene.Notification.FollowRequest.Reject" = "拒绝"; @@ -270,17 +270,17 @@ "Scene.Profile.Fields.AddRow" = "添加"; "Scene.Profile.Fields.Placeholder.Content" = "内容"; "Scene.Profile.Fields.Placeholder.Label" = "标签"; -"Scene.Profile.Fields.Verified.Long" = "Ownership of this link was checked on %@"; -"Scene.Profile.Fields.Verified.Short" = "Verified on %@"; +"Scene.Profile.Fields.Verified.Long" = "此链接的所有权已在 %@ 上检查通过"; +"Scene.Profile.Fields.Verified.Short" = "验证于 %@"; "Scene.Profile.Header.FollowsYou" = "关注了你"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "确认屏蔽 %@"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "屏蔽帐户"; -"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "Confirm to hide reblogs"; -"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Title" = "Hide Reblogs"; +"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "确认隐藏转发"; +"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Title" = "隐藏转发"; "Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Message" = "确认静音 %@"; "Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "静音账户"; -"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Confirm to show reblogs"; -"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "Show Reblogs"; +"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "确认显示转发"; +"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "显示转发"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "确认取消屏蔽 %@"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "解除屏蔽帐户"; "Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "确认取消静音 %@"; @@ -404,11 +404,11 @@ "Scene.ServerPicker.EmptyState.BadNetwork" = "出了些问题。请检查你的互联网连接"; "Scene.ServerPicker.EmptyState.FindingServers" = "正在查找可用的服务器..."; "Scene.ServerPicker.EmptyState.NoResults" = "无结果"; -"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "Search communities or enter URL"; +"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "搜索社区或输入 URL"; "Scene.ServerPicker.Label.Category" = "类别"; "Scene.ServerPicker.Label.Language" = "语言"; "Scene.ServerPicker.Label.Users" = "用户"; -"Scene.ServerPicker.Subtitle" = "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers."; +"Scene.ServerPicker.Subtitle" = "根据你的地区、兴趣挑选一个服务器。无论你选择哪个服务器,你都可以跟其他服务器的任何人一起聊天。"; "Scene.ServerPicker.Title" = "挑选一个服务器, 任意服务器。"; "Scene.ServerRules.Button.Confirm" = "我同意"; diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/zh-Hans.lproj/Localizable.stringsdict b/MastodonSDK/Sources/MastodonLocalization/Resources/zh-Hans.lproj/Localizable.stringsdict index 915a524b5..362d55c4f 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/zh-Hans.lproj/Localizable.stringsdict +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/zh-Hans.lproj/Localizable.stringsdict @@ -47,7 +47,7 @@ a11y.plural.count.characters_left NSStringLocalizedFormatKey - %#@character_count@ left + %#@character_count@ 剩余 character_count NSStringFormatSpecTypeKey @@ -55,7 +55,7 @@ NSStringFormatValueTypeKey ld other - %ld characters + %ld 个字符 plural.count.followed_by_and_mutual diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/zh-Hant.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/zh-Hant.lproj/Localizable.strings index 60dcd2077..10dbbf8ca 100644 --- a/MastodonSDK/Sources/MastodonLocalization/Resources/zh-Hant.lproj/Localizable.strings +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/zh-Hant.lproj/Localizable.strings @@ -55,8 +55,8 @@ "Common.Controls.Actions.Share" = "分享"; "Common.Controls.Actions.SharePost" = "分享嘟文"; "Common.Controls.Actions.ShareUser" = "分享 %@"; -"Common.Controls.Actions.SignIn" = "Log in"; -"Common.Controls.Actions.SignUp" = "Create account"; +"Common.Controls.Actions.SignIn" = "登入"; +"Common.Controls.Actions.SignUp" = "新增帳號"; "Common.Controls.Actions.Skip" = "跳過"; "Common.Controls.Actions.TakePhoto" = "拍攝照片"; "Common.Controls.Actions.TryAgain" = "再試一次"; @@ -163,13 +163,13 @@ "Scene.Compose.Accessibility.RemovePoll" = "移除投票"; "Scene.Compose.Attachment.AttachmentBroken" = "此 %@ 已損毀,並無法被上傳至 Mastodon。"; "Scene.Compose.Attachment.AttachmentTooLarge" = "附加檔案大小過大"; -"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "Can not recognize this media attachment"; -"Scene.Compose.Attachment.CompressingState" = "Compressing..."; +"Scene.Compose.Attachment.CanNotRecognizeThisMediaAttachment" = "無法識別此媒體附加檔案"; +"Scene.Compose.Attachment.CompressingState" = "正在壓縮..."; "Scene.Compose.Attachment.DescriptionPhoto" = "為視障人士提供圖片說明..."; "Scene.Compose.Attachment.DescriptionVideo" = "為視障人士提供影片說明..."; "Scene.Compose.Attachment.LoadFailed" = "讀取失敗"; "Scene.Compose.Attachment.Photo" = "照片"; -"Scene.Compose.Attachment.ServerProcessingState" = "Server Processing..."; +"Scene.Compose.Attachment.ServerProcessingState" = "伺服器處理中..."; "Scene.Compose.Attachment.UploadFailed" = "上傳失敗"; "Scene.Compose.Attachment.Video" = "影片"; "Scene.Compose.AutoComplete.SpaceToAdd" = "添加的空白"; @@ -191,8 +191,8 @@ "Scene.Compose.Poll.OptionNumber" = "選項 %ld"; "Scene.Compose.Poll.SevenDays" = "七天"; "Scene.Compose.Poll.SixHours" = "六小時"; -"Scene.Compose.Poll.ThePollHasEmptyOption" = "The poll has empty option"; -"Scene.Compose.Poll.ThePollIsInvalid" = "The poll is invalid"; +"Scene.Compose.Poll.ThePollHasEmptyOption" = "此投票有空白選項"; +"Scene.Compose.Poll.ThePollIsInvalid" = "此投票是無效的"; "Scene.Compose.Poll.ThirtyMinutes" = "30 分鐘"; "Scene.Compose.Poll.ThreeDays" = "三天"; "Scene.Compose.ReplyingToUser" = "正在回覆 %@"; @@ -235,9 +235,9 @@ "Scene.HomeTimeline.NavigationBarState.Published" = "嘟出去!"; "Scene.HomeTimeline.NavigationBarState.Publishing" = "發表嘟文..."; "Scene.HomeTimeline.Title" = "首頁"; -"Scene.Login.ServerSearchField.Placeholder" = "Enter URL or search for your server"; -"Scene.Login.Subtitle" = "Log you in on the server you created your account on."; -"Scene.Login.Title" = "Welcome back"; +"Scene.Login.ServerSearchField.Placeholder" = "請輸入 URL 或搜尋您的伺服器"; +"Scene.Login.Subtitle" = "登入您新增帳號之伺服器"; +"Scene.Login.Title" = "歡迎回來"; "Scene.Notification.FollowRequest.Accept" = "接受"; "Scene.Notification.FollowRequest.Accepted" = "已接受"; "Scene.Notification.FollowRequest.Reject" = "拒絕"; @@ -265,8 +265,8 @@ "Scene.Profile.Fields.AddRow" = "新增列"; "Scene.Profile.Fields.Placeholder.Content" = "內容"; "Scene.Profile.Fields.Placeholder.Label" = "標籤"; -"Scene.Profile.Fields.Verified.Long" = "Ownership of this link was checked on %@"; -"Scene.Profile.Fields.Verified.Short" = "Verified on %@"; +"Scene.Profile.Fields.Verified.Long" = "已在 %@ 檢查此連結的擁有者權限"; +"Scene.Profile.Fields.Verified.Short" = "於 %@ 上已驗證"; "Scene.Profile.Header.FollowsYou" = "跟隨了您"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "確認將 %@ 封鎖"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "封鎖"; @@ -399,11 +399,11 @@ "Scene.ServerPicker.EmptyState.BadNetwork" = "讀取資料時發生錯誤。請檢查您的網路連線。"; "Scene.ServerPicker.EmptyState.FindingServers" = "尋找可用的伺服器..."; "Scene.ServerPicker.EmptyState.NoResults" = "沒有結果"; -"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "Search communities or enter URL"; +"Scene.ServerPicker.Input.SearchServersOrEnterUrl" = "搜尋社群或輸入 URL 地址"; "Scene.ServerPicker.Label.Category" = "分類"; "Scene.ServerPicker.Label.Language" = "語言"; "Scene.ServerPicker.Label.Users" = "使用者"; -"Scene.ServerPicker.Subtitle" = "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers."; +"Scene.ServerPicker.Subtitle" = "基於您的興趣、地區、或一般用途選定一個伺服器。您仍會與任何伺服器中的每個人連結。"; "Scene.ServerPicker.Title" = "Mastodon 由不同伺服器的使用者組成。"; "Scene.ServerRules.Button.Confirm" = "我已閱讀並同意"; "Scene.ServerRules.PrivacyPolicy" = "隱私權政策"; From 356b8f2c008397e592c86ad875709087b1e9e408 Mon Sep 17 00:00:00 2001 From: CMK Date: Fri, 18 Nov 2022 21:36:51 +0800 Subject: [PATCH 586/598] chore: try tag the build --- .github/scripts/build-release.sh | 2 ++ .github/workflows/develop-build.yml | 15 +++++++++++---- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/.github/scripts/build-release.sh b/.github/scripts/build-release.sh index e3efc59df..0b88b9a98 100755 --- a/.github/scripts/build-release.sh +++ b/.github/scripts/build-release.sh @@ -36,6 +36,8 @@ BUILD_NUMBER=$(app-store-connect get-latest-testflight-build-number $ENV_APP_ID BUILD_NUMBER=$((BUILD_NUMBER+1)) CURRENT_PROJECT_VERSION=${BUILD_NUMBER:-0} +echo "GITHUB_TAG_NAME=build-$CURRENT_PROJECT_VERSION" >> $GITHUB_TAG_NAME + agvtool new-version -all $CURRENT_PROJECT_VERSION xcrun xcodebuild clean \ diff --git a/.github/workflows/develop-build.yml b/.github/workflows/develop-build.yml index 4b3a4a04c..ede061098 100644 --- a/.github/workflows/develop-build.yml +++ b/.github/workflows/develop-build.yml @@ -12,16 +12,17 @@ jobs: name: Build runs-on: macOS-12 steps: - - name: checkout + - name: Checkout uses: actions/checkout@v2 - - name: setup + - name: Setup env: NotificationEndpointDebug: ${{ secrets.NotificationEndpointDebug }} NotificationEndpointRelease: ${{ secrets.NotificationEndpointRelease }} run: exec ./.github/scripts/setup.sh - - uses: actions/setup-python@v4 + - name: Install codemagic-cli-tools + uses: actions/setup-python@v4 with: python-version: '3.11' - run: | @@ -44,7 +45,7 @@ jobs: api-key-id: ${{ secrets.APPSTORE_KEY_ID }} api-private-key: ${{ secrets.APPSTORE_PRIVATE_KEY }} - - name: build + - name: Build env: ENV_APP_ID: ${{ secrets.APP_ID }} ENV_ISSUER_ID: ${{ secrets.APPSTORE_ISSUER_ID }} @@ -61,6 +62,12 @@ jobs: api-key-id: ${{ secrets.APPSTORE_KEY_ID }} api-private-key: ${{ secrets.APPSTORE_PRIVATE_KEY }} + - name: Tag commit + uses: tvdias/github-tagger@v0.0.1 + with: + repo-token: "${{ secrets.GITHUB_TOKEN }}" + tag: "${{ env.GITHUB_TAG_NAME }}" + - name: Clean up keychain and provisioning profile if: ${{ always() }} run: | From 5fbafe4fdb1dfa2cddbc1a672be2fe406b5a4cb5 Mon Sep 17 00:00:00 2001 From: CMK Date: Fri, 18 Nov 2022 21:42:49 +0800 Subject: [PATCH 587/598] fix: the wrong command to set GitHub env --- .github/scripts/build-release.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/build-release.sh b/.github/scripts/build-release.sh index 0b88b9a98..069aa673e 100755 --- a/.github/scripts/build-release.sh +++ b/.github/scripts/build-release.sh @@ -36,7 +36,7 @@ BUILD_NUMBER=$(app-store-connect get-latest-testflight-build-number $ENV_APP_ID BUILD_NUMBER=$((BUILD_NUMBER+1)) CURRENT_PROJECT_VERSION=${BUILD_NUMBER:-0} -echo "GITHUB_TAG_NAME=build-$CURRENT_PROJECT_VERSION" >> $GITHUB_TAG_NAME +echo "GITHUB_TAG_NAME=build-$CURRENT_PROJECT_VERSION" >> $GITHUB_ENV agvtool new-version -all $CURRENT_PROJECT_VERSION From f0bf9c6937ef0bb3054edf36a59d73777a27d163 Mon Sep 17 00:00:00 2001 From: Jed Fox Date: Fri, 18 Nov 2022 10:55:25 -0500 Subject: [PATCH 588/598] Bump the timeout interval for all requests to 60s --- MastodonSDK/Sources/MastodonSDK/API/Mastodon+API.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MastodonSDK/Sources/MastodonSDK/API/Mastodon+API.swift b/MastodonSDK/Sources/MastodonSDK/API/Mastodon+API.swift index 43d5873d0..5d507bace 100644 --- a/MastodonSDK/Sources/MastodonSDK/API/Mastodon+API.swift +++ b/MastodonSDK/Sources/MastodonSDK/API/Mastodon+API.swift @@ -11,7 +11,7 @@ import enum NIOHTTP1.HTTPResponseStatus extension Mastodon.API { - static let timeoutInterval: TimeInterval = 10 + static let timeoutInterval: TimeInterval = 60 static let httpHeaderDateFormatter: ISO8601DateFormatter = { var formatter = ISO8601DateFormatter() From ce076b264b14efb2531f4162c0f48b6c4adb286c Mon Sep 17 00:00:00 2001 From: CMK Date: Sat, 19 Nov 2022 00:56:44 +0800 Subject: [PATCH 589/598] fix: hashtag auto complete issue --- .../ComposeContent/ComposeContentViewController.swift | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewController.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewController.swift index b84b47385..c5c2d267b 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewController.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewController.swift @@ -627,10 +627,10 @@ extension ComposeContentViewController: ComposeContentViewModelDelegate { let _replacedText: String? = { var text: String switch item { - case .hashtag(let hashtag): - text = "#" + hashtag.name - case .hashtagV1(let hashtagName): - text = "#" + hashtagName + case .hashtag, .hashtagV1: + // do no fill the hashtag + // allow user delete suffix and post they want + return nil case .account(let account): text = "@" + account.acct case .emoji(let emoji): From 977b38c489649e6310829cacc933d28a1e85b984 Mon Sep 17 00:00:00 2001 From: Nathan Mattes Date: Mon, 21 Nov 2022 05:47:27 +0100 Subject: [PATCH 590/598] Bump build so that Testflight works again --- Mastodon.xcodeproj/project.pbxproj | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Mastodon.xcodeproj/project.pbxproj b/Mastodon.xcodeproj/project.pbxproj index 5dcf06eae..0c43b71df 100644 --- a/Mastodon.xcodeproj/project.pbxproj +++ b/Mastodon.xcodeproj/project.pbxproj @@ -3864,7 +3864,7 @@ "$(inherited)", "@executable_path/Frameworks", ); - MARKETING_VERSION = 1.4.7; + MARKETING_VERSION = 1.4.8; PRODUCT_BUNDLE_IDENTIFIER = org.joinmastodon.app; PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = ""; @@ -3893,7 +3893,7 @@ "$(inherited)", "@executable_path/Frameworks", ); - MARKETING_VERSION = 1.4.7; + MARKETING_VERSION = 1.4.8; PRODUCT_BUNDLE_IDENTIFIER = org.joinmastodon.app; PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = ""; @@ -4066,7 +4066,7 @@ "$(inherited)", "@executable_path/Frameworks", ); - MARKETING_VERSION = 1.4.7; + MARKETING_VERSION = 1.4.8; PRODUCT_BUNDLE_IDENTIFIER = org.joinmastodon.app; PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = ""; @@ -4349,7 +4349,7 @@ "$(inherited)", "@executable_path/Frameworks", ); - MARKETING_VERSION = 1.4.7; + MARKETING_VERSION = 1.4.8; PRODUCT_BUNDLE_IDENTIFIER = org.joinmastodon.app; PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = ""; From 2314646d980092f07bd8dae00856638d5b4ac517 Mon Sep 17 00:00:00 2001 From: Marcus Kida Date: Mon, 21 Nov 2022 11:27:14 +0100 Subject: [PATCH 591/598] fix: Always allow to continue when reporting a post if at least one is selected --- .../Report/ReportStatus/ReportStatusViewController.swift | 1 + .../Scene/Report/ReportStatus/ReportStatusViewModel.swift | 4 +--- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Mastodon/Scene/Report/ReportStatus/ReportStatusViewController.swift b/Mastodon/Scene/Report/ReportStatus/ReportStatusViewController.swift index 6f934e13d..f56af1f1e 100644 --- a/Mastodon/Scene/Report/ReportStatus/ReportStatusViewController.swift +++ b/Mastodon/Scene/Report/ReportStatus/ReportStatusViewController.swift @@ -59,6 +59,7 @@ class ReportStatusViewController: UIViewController, NeedsDependency, ReportViewC let navigationActionView = NavigationActionView() navigationActionView.backgroundColor = Asset.Scene.Onboarding.background.color navigationActionView.backButton.setTitle(L10n.Common.Controls.Actions.skip, for: .normal) + navigationActionView.hidesBackButton = true return navigationActionView }() diff --git a/Mastodon/Scene/Report/ReportStatus/ReportStatusViewModel.swift b/Mastodon/Scene/Report/ReportStatus/ReportStatusViewModel.swift index 5b80a9f3a..c1c79af48 100644 --- a/Mastodon/Scene/Report/ReportStatus/ReportStatusViewModel.swift +++ b/Mastodon/Scene/Report/ReportStatus/ReportStatusViewModel.swift @@ -71,9 +71,7 @@ class ReportStatusViewModel { } $selectStatuses - .map { statuses -> Bool in - return status == nil ? !statuses.isEmpty : statuses.count > 1 - } + .map { !$0.isEmpty } .assign(to: &$isNextButtonEnabled) } From 8d9e6ca8746ad263ef87f343db5b0dbe016487c8 Mon Sep 17 00:00:00 2001 From: Marcus Kida Date: Mon, 21 Nov 2022 11:31:57 +0100 Subject: [PATCH 592/598] chore: Remove back button title --- .../Scene/Report/ReportStatus/ReportStatusViewController.swift | 1 - 1 file changed, 1 deletion(-) diff --git a/Mastodon/Scene/Report/ReportStatus/ReportStatusViewController.swift b/Mastodon/Scene/Report/ReportStatus/ReportStatusViewController.swift index f56af1f1e..02c3ccecb 100644 --- a/Mastodon/Scene/Report/ReportStatus/ReportStatusViewController.swift +++ b/Mastodon/Scene/Report/ReportStatus/ReportStatusViewController.swift @@ -58,7 +58,6 @@ class ReportStatusViewController: UIViewController, NeedsDependency, ReportViewC let navigationActionView: NavigationActionView = { let navigationActionView = NavigationActionView() navigationActionView.backgroundColor = Asset.Scene.Onboarding.background.color - navigationActionView.backButton.setTitle(L10n.Common.Controls.Actions.skip, for: .normal) navigationActionView.hidesBackButton = true return navigationActionView }() From 9ffed8f3198a498671db85aaf075e039ad3818e7 Mon Sep 17 00:00:00 2001 From: Marcus Kida Date: Mon, 21 Nov 2022 11:53:26 +0100 Subject: [PATCH 593/598] Revert "chore: Remove back button title" This reverts commit 8d9e6ca8746ad263ef87f343db5b0dbe016487c8. --- .../Scene/Report/ReportStatus/ReportStatusViewController.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/Mastodon/Scene/Report/ReportStatus/ReportStatusViewController.swift b/Mastodon/Scene/Report/ReportStatus/ReportStatusViewController.swift index 02c3ccecb..f56af1f1e 100644 --- a/Mastodon/Scene/Report/ReportStatus/ReportStatusViewController.swift +++ b/Mastodon/Scene/Report/ReportStatus/ReportStatusViewController.swift @@ -58,6 +58,7 @@ class ReportStatusViewController: UIViewController, NeedsDependency, ReportViewC let navigationActionView: NavigationActionView = { let navigationActionView = NavigationActionView() navigationActionView.backgroundColor = Asset.Scene.Onboarding.background.color + navigationActionView.backButton.setTitle(L10n.Common.Controls.Actions.skip, for: .normal) navigationActionView.hidesBackButton = true return navigationActionView }() From 8f28999a937c35a0f929beae7445305d60b8b98b Mon Sep 17 00:00:00 2001 From: Marcus Kida Date: Mon, 21 Nov 2022 11:57:02 +0100 Subject: [PATCH 594/598] chore: Only hide skip button if post has been selected --- .../Report/ReportStatus/ReportStatusViewController.swift | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Mastodon/Scene/Report/ReportStatus/ReportStatusViewController.swift b/Mastodon/Scene/Report/ReportStatus/ReportStatusViewController.swift index f56af1f1e..10e1ec3cd 100644 --- a/Mastodon/Scene/Report/ReportStatus/ReportStatusViewController.swift +++ b/Mastodon/Scene/Report/ReportStatus/ReportStatusViewController.swift @@ -59,7 +59,6 @@ class ReportStatusViewController: UIViewController, NeedsDependency, ReportViewC let navigationActionView = NavigationActionView() navigationActionView.backgroundColor = Asset.Scene.Onboarding.background.color navigationActionView.backButton.setTitle(L10n.Common.Controls.Actions.skip, for: .normal) - navigationActionView.hidesBackButton = true return navigationActionView }() @@ -124,6 +123,10 @@ extension ReportStatusViewController { .assign(to: \.isEnabled, on: navigationActionView.nextButton) .store(in: &disposeBag) + if !viewModel.selectStatuses.isEmpty { + navigationActionView.hidesBackButton = true + } + navigationActionView.backButton.addTarget(self, action: #selector(ReportStatusViewController.skipButtonDidPressed(_:)), for: .touchUpInside) navigationActionView.nextButton.addTarget(self, action: #selector(ReportStatusViewController.nextButtonDidPressed(_:)), for: .touchUpInside) } From 788bdb14f8673fae67b0c2f15a8ce7dc92ce42a0 Mon Sep 17 00:00:00 2001 From: Jed Fox Date: Mon, 21 Nov 2022 08:40:04 -0500 Subject: [PATCH 595/598] Remove duplicate timestamps --- .../MastodonUI/View/Content/NotificationView+ViewModel.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/MastodonSDK/Sources/MastodonUI/View/Content/NotificationView+ViewModel.swift b/MastodonSDK/Sources/MastodonUI/View/Content/NotificationView+ViewModel.swift index 64b120ec9..f29b0e6fd 100644 --- a/MastodonSDK/Sources/MastodonUI/View/Content/NotificationView+ViewModel.swift +++ b/MastodonSDK/Sources/MastodonUI/View/Content/NotificationView+ViewModel.swift @@ -108,6 +108,7 @@ extension NotificationView.ViewModel { .map { timestamp, _ in timestamp?.localizedTimeAgoSinceNow ?? "" } + .removeDuplicates() formattedTimestamp .sink { timestamp in From 228a9a1798e7e3ddb1b5e2b025553e122af22162 Mon Sep 17 00:00:00 2001 From: Jed Fox Date: Mon, 21 Nov 2022 08:46:49 -0500 Subject: [PATCH 596/598] Revert auto-formatter changes to file --- MastodonSDK/Package.resolved | 492 +++++++++--------- .../Content/NotificationView+ViewModel.swift | 53 +- 2 files changed, 281 insertions(+), 264 deletions(-) diff --git a/MastodonSDK/Package.resolved b/MastodonSDK/Package.resolved index 06843faa3..4a4fa51de 100644 --- a/MastodonSDK/Package.resolved +++ b/MastodonSDK/Package.resolved @@ -1,241 +1,257 @@ { - "object": { - "pins": [ - { - "package": "Alamofire", - "repositoryURL": "https://github.com/Alamofire/Alamofire.git", - "state": { - "branch": null, - "revision": "8dd85aee02e39dd280c75eef88ffdb86eed4b07b", - "version": "5.6.2" - } - }, - { - "package": "AlamofireImage", - "repositoryURL": "https://github.com/Alamofire/AlamofireImage.git", - "state": { - "branch": null, - "revision": "98cbb00ce0ec5fc8e52a5b50a6bfc08d3e5aee10", - "version": "4.2.0" - } - }, - { - "package": "CommonOSLog", - "repositoryURL": "https://github.com/MainasuK/CommonOSLog", - "state": { - "branch": null, - "revision": "c121624a30698e9886efe38aebb36ff51c01b6c2", - "version": "0.1.1" - } - }, - { - "package": "FaviconFinder", - "repositoryURL": "https://github.com/will-lumley/FaviconFinder.git", - "state": { - "branch": null, - "revision": "1f74844f77f79b95c0bb0130b3a87d4f340e6d3a", - "version": "3.3.0" - } - }, - { - "package": "FLAnimatedImage", - "repositoryURL": "https://github.com/Flipboard/FLAnimatedImage.git", - "state": { - "branch": null, - "revision": "d4f07b6f164d53c1212c3e54d6460738b1981e9f", - "version": "1.0.17" - } - }, - { - "package": "FPSIndicator", - "repositoryURL": "https://github.com/MainasuK/FPSIndicator.git", - "state": { - "branch": null, - "revision": "e4a5067ccd5293b024c767f09e51056afd4a4796", - "version": "1.1.0" - } - }, - { - "package": "Fuzi", - "repositoryURL": "https://github.com/cezheng/Fuzi.git", - "state": { - "branch": null, - "revision": "f08c8323da21e985f3772610753bcfc652c2103f", - "version": "3.1.3" - } - }, - { - "package": "KeychainAccess", - "repositoryURL": "https://github.com/kishikawakatsumi/KeychainAccess.git", - "state": { - "branch": null, - "revision": "84e546727d66f1adc5439debad16270d0fdd04e7", - "version": "4.2.2" - } - }, - { - "package": "MetaTextKit", - "repositoryURL": "https://github.com/TwidereProject/MetaTextKit.git", - "state": { - "branch": null, - "revision": "dcd5255d6930c2fab408dc8562c577547e477624", - "version": "2.2.5" - } - }, - { - "package": "Nuke", - "repositoryURL": "https://github.com/kean/Nuke.git", - "state": { - "branch": null, - "revision": "a002b7fd786f2df2ed4333fe73a9727499fd9d97", - "version": "10.11.2" - } - }, - { - "package": "NukeFLAnimatedImagePlugin", - "repositoryURL": "https://github.com/kean/Nuke-FLAnimatedImage-Plugin.git", - "state": { - "branch": null, - "revision": "b59c346a7d536336db3b0f12c72c6e53ee709e16", - "version": "8.0.0" - } - }, - { - "package": "Pageboy", - "repositoryURL": "https://github.com/uias/Pageboy", - "state": { - "branch": null, - "revision": "af8fa81788b893205e1ff42ddd88c5b0b315d7c5", - "version": "3.7.0" - } - }, - { - "package": "PanModal", - "repositoryURL": "https://github.com/slackhq/PanModal.git", - "state": { - "branch": null, - "revision": "b012aecb6b67a8e46369227f893c12544846613f", - "version": "1.2.7" - } - }, - { - "package": "SDWebImage", - "repositoryURL": "https://github.com/SDWebImage/SDWebImage.git", - "state": { - "branch": null, - "revision": "9248fe561a2a153916fb9597e3af4434784c6d32", - "version": "5.13.4" - } - }, - { - "package": "swift-collections", - "repositoryURL": "https://github.com/apple/swift-collections.git", - "state": { - "branch": null, - "revision": "f504716c27d2e5d4144fa4794b12129301d17729", - "version": "1.0.3" - } - }, - { - "package": "swift-nio", - "repositoryURL": "https://github.com/apple/swift-nio.git", - "state": { - "branch": null, - "revision": "546610d52b19be3e19935e0880bb06b9c03f5cef", - "version": "1.14.4" - } - }, - { - "package": "swift-nio-zlib-support", - "repositoryURL": "https://github.com/apple/swift-nio-zlib-support.git", - "state": { - "branch": null, - "revision": "37760e9a52030bb9011972c5213c3350fa9d41fd", - "version": "1.0.0" - } - }, - { - "package": "SwiftSoup", - "repositoryURL": "https://github.com/scinfu/SwiftSoup.git", - "state": { - "branch": null, - "revision": "6778575285177365cbad3e5b8a72f2a20583cfec", - "version": "2.4.3" - } - }, - { - "package": "Introspect", - "repositoryURL": "https://github.com/siteline/SwiftUI-Introspect.git", - "state": { - "branch": null, - "revision": "f2616860a41f9d9932da412a8978fec79c06fe24", - "version": "0.1.4" - } - }, - { - "package": "SwiftyJSON", - "repositoryURL": "https://github.com/SwiftyJSON/SwiftyJSON.git", - "state": { - "branch": null, - "revision": "b3dcd7dbd0d488e1a7077cb33b00f2083e382f07", - "version": "5.0.1" - } - }, - { - "package": "TabBarPager", - "repositoryURL": "https://github.com/TwidereProject/TabBarPager.git", - "state": { - "branch": null, - "revision": "488aa66d157a648901b61721212c0dec23d27ee5", - "version": "0.1.0" - } - }, - { - "package": "Tabman", - "repositoryURL": "https://github.com/uias/Tabman", - "state": { - "branch": null, - "revision": "4a4f7c755b875ffd4f9ef10d67a67883669d2465", - "version": "2.13.0" - } - }, - { - "package": "ThirdPartyMailer", - "repositoryURL": "https://github.com/vtourraine/ThirdPartyMailer.git", - "state": { - "branch": null, - "revision": "44c1cfaa6969963f22691aa67f88a69e3b6d651f", - "version": "2.1.0" - } - }, - { - "package": "TOCropViewController", - "repositoryURL": "https://github.com/TimOliver/TOCropViewController.git", - "state": { - "branch": null, - "revision": "d0470491f56e734731bbf77991944c0dfdee3e0e", - "version": "2.6.1" - } - }, - { - "package": "UIHostingConfigurationBackport", - "repositoryURL": "https://github.com/woxtu/UIHostingConfigurationBackport.git", - "state": { - "branch": null, - "revision": "6091f2d38faa4b24fc2ca0389c651e2f666624a3", - "version": "0.1.0" - } - }, - { - "package": "UITextView+Placeholder", - "repositoryURL": "https://github.com/MainasuK/UITextView-Placeholder.git", - "state": { - "branch": null, - "revision": "20f513ded04a040cdf5467f0891849b1763ede3b", - "version": "1.4.1" - } + "pins" : [ + { + "identity" : "alamofire", + "kind" : "remoteSourceControl", + "location" : "https://github.com/Alamofire/Alamofire.git", + "state" : { + "revision" : "8dd85aee02e39dd280c75eef88ffdb86eed4b07b", + "version" : "5.6.2" } - ] - }, - "version": 1 + }, + { + "identity" : "alamofireimage", + "kind" : "remoteSourceControl", + "location" : "https://github.com/Alamofire/AlamofireImage.git", + "state" : { + "revision" : "98cbb00ce0ec5fc8e52a5b50a6bfc08d3e5aee10", + "version" : "4.2.0" + } + }, + { + "identity" : "commonoslog", + "kind" : "remoteSourceControl", + "location" : "https://github.com/MainasuK/CommonOSLog", + "state" : { + "revision" : "c121624a30698e9886efe38aebb36ff51c01b6c2", + "version" : "0.1.1" + } + }, + { + "identity" : "faviconfinder", + "kind" : "remoteSourceControl", + "location" : "https://github.com/will-lumley/FaviconFinder.git", + "state" : { + "revision" : "1f74844f77f79b95c0bb0130b3a87d4f340e6d3a", + "version" : "3.3.0" + } + }, + { + "identity" : "flanimatedimage", + "kind" : "remoteSourceControl", + "location" : "https://github.com/Flipboard/FLAnimatedImage.git", + "state" : { + "revision" : "d4f07b6f164d53c1212c3e54d6460738b1981e9f", + "version" : "1.0.17" + } + }, + { + "identity" : "fpsindicator", + "kind" : "remoteSourceControl", + "location" : "https://github.com/MainasuK/FPSIndicator.git", + "state" : { + "revision" : "e4a5067ccd5293b024c767f09e51056afd4a4796", + "version" : "1.1.0" + } + }, + { + "identity" : "fuzi", + "kind" : "remoteSourceControl", + "location" : "https://github.com/cezheng/Fuzi.git", + "state" : { + "revision" : "f08c8323da21e985f3772610753bcfc652c2103f", + "version" : "3.1.3" + } + }, + { + "identity" : "keychainaccess", + "kind" : "remoteSourceControl", + "location" : "https://github.com/kishikawakatsumi/KeychainAccess.git", + "state" : { + "revision" : "84e546727d66f1adc5439debad16270d0fdd04e7", + "version" : "4.2.2" + } + }, + { + "identity" : "kingfisher", + "kind" : "remoteSourceControl", + "location" : "https://github.com/onevcat/Kingfisher.git", + "state" : { + "revision" : "44e891bdb61426a95e31492a67c7c0dfad1f87c5", + "version" : "7.4.1" + } + }, + { + "identity" : "metatextkit", + "kind" : "remoteSourceControl", + "location" : "https://github.com/TwidereProject/MetaTextKit.git", + "state" : { + "revision" : "dcd5255d6930c2fab408dc8562c577547e477624", + "version" : "2.2.5" + } + }, + { + "identity" : "nextlevelsessionexporter", + "kind" : "remoteSourceControl", + "location" : "https://github.com/NextLevel/NextLevelSessionExporter.git", + "state" : { + "revision" : "b6c0cce1aa37fe1547d694f958fac3c3524b74da", + "version" : "0.4.6" + } + }, + { + "identity" : "nuke", + "kind" : "remoteSourceControl", + "location" : "https://github.com/kean/Nuke.git", + "state" : { + "revision" : "a002b7fd786f2df2ed4333fe73a9727499fd9d97", + "version" : "10.11.2" + } + }, + { + "identity" : "nuke-flanimatedimage-plugin", + "kind" : "remoteSourceControl", + "location" : "https://github.com/kean/Nuke-FLAnimatedImage-Plugin.git", + "state" : { + "revision" : "b59c346a7d536336db3b0f12c72c6e53ee709e16", + "version" : "8.0.0" + } + }, + { + "identity" : "pageboy", + "kind" : "remoteSourceControl", + "location" : "https://github.com/uias/Pageboy", + "state" : { + "revision" : "af8fa81788b893205e1ff42ddd88c5b0b315d7c5", + "version" : "3.7.0" + } + }, + { + "identity" : "panmodal", + "kind" : "remoteSourceControl", + "location" : "https://github.com/slackhq/PanModal.git", + "state" : { + "revision" : "b012aecb6b67a8e46369227f893c12544846613f", + "version" : "1.2.7" + } + }, + { + "identity" : "sdwebimage", + "kind" : "remoteSourceControl", + "location" : "https://github.com/SDWebImage/SDWebImage.git", + "state" : { + "revision" : "9248fe561a2a153916fb9597e3af4434784c6d32", + "version" : "5.13.4" + } + }, + { + "identity" : "stripes", + "kind" : "remoteSourceControl", + "location" : "https://github.com/eneko/Stripes.git", + "state" : { + "revision" : "d533fd44b8043a3abbf523e733599173d6f98c11", + "version" : "0.2.0" + } + }, + { + "identity" : "swift-collections", + "kind" : "remoteSourceControl", + "location" : "https://github.com/apple/swift-collections.git", + "state" : { + "revision" : "f504716c27d2e5d4144fa4794b12129301d17729", + "version" : "1.0.3" + } + }, + { + "identity" : "swift-nio", + "kind" : "remoteSourceControl", + "location" : "https://github.com/apple/swift-nio.git", + "state" : { + "revision" : "546610d52b19be3e19935e0880bb06b9c03f5cef", + "version" : "1.14.4" + } + }, + { + "identity" : "swift-nio-zlib-support", + "kind" : "remoteSourceControl", + "location" : "https://github.com/apple/swift-nio-zlib-support.git", + "state" : { + "revision" : "37760e9a52030bb9011972c5213c3350fa9d41fd", + "version" : "1.0.0" + } + }, + { + "identity" : "swiftsoup", + "kind" : "remoteSourceControl", + "location" : "https://github.com/scinfu/SwiftSoup.git", + "state" : { + "revision" : "6778575285177365cbad3e5b8a72f2a20583cfec", + "version" : "2.4.3" + } + }, + { + "identity" : "swiftui-introspect", + "kind" : "remoteSourceControl", + "location" : "https://github.com/siteline/SwiftUI-Introspect.git", + "state" : { + "revision" : "f2616860a41f9d9932da412a8978fec79c06fe24", + "version" : "0.1.4" + } + }, + { + "identity" : "tabbarpager", + "kind" : "remoteSourceControl", + "location" : "https://github.com/TwidereProject/TabBarPager.git", + "state" : { + "revision" : "488aa66d157a648901b61721212c0dec23d27ee5", + "version" : "0.1.0" + } + }, + { + "identity" : "tabman", + "kind" : "remoteSourceControl", + "location" : "https://github.com/uias/Tabman", + "state" : { + "revision" : "4a4f7c755b875ffd4f9ef10d67a67883669d2465", + "version" : "2.13.0" + } + }, + { + "identity" : "thirdpartymailer", + "kind" : "remoteSourceControl", + "location" : "https://github.com/vtourraine/ThirdPartyMailer.git", + "state" : { + "revision" : "44c1cfaa6969963f22691aa67f88a69e3b6d651f", + "version" : "2.1.0" + } + }, + { + "identity" : "tocropviewcontroller", + "kind" : "remoteSourceControl", + "location" : "https://github.com/TimOliver/TOCropViewController.git", + "state" : { + "revision" : "d0470491f56e734731bbf77991944c0dfdee3e0e", + "version" : "2.6.1" + } + }, + { + "identity" : "uihostingconfigurationbackport", + "kind" : "remoteSourceControl", + "location" : "https://github.com/woxtu/UIHostingConfigurationBackport.git", + "state" : { + "revision" : "6091f2d38faa4b24fc2ca0389c651e2f666624a3", + "version" : "0.1.0" + } + }, + { + "identity" : "uitextview-placeholder", + "kind" : "remoteSourceControl", + "location" : "https://github.com/MainasuK/UITextView-Placeholder.git", + "state" : { + "revision" : "20f513ded04a040cdf5467f0891849b1763ede3b", + "version" : "1.4.1" + } + } + ], + "version" : 2 } diff --git a/MastodonSDK/Sources/MastodonUI/View/Content/NotificationView+ViewModel.swift b/MastodonSDK/Sources/MastodonUI/View/Content/NotificationView+ViewModel.swift index f29b0e6fd..714cf676d 100644 --- a/MastodonSDK/Sources/MastodonUI/View/Content/NotificationView+ViewModel.swift +++ b/MastodonSDK/Sources/MastodonUI/View/Content/NotificationView+ViewModel.swift @@ -1,29 +1,29 @@ // // NotificationView+ViewModel.swift -// +// // // Created by MainasuK on 2022-1-21. // -import Combine -import CoreData -import CoreDataStack -import MastodonAsset -import MastodonCore -import MastodonExtension -import MastodonLocalization -import MastodonSDK -import Meta import os.log import UIKit +import Combine +import Meta +import MastodonSDK +import MastodonAsset +import MastodonLocalization +import MastodonExtension +import MastodonCore +import CoreData +import CoreDataStack -public extension NotificationView { - final class ViewModel: ObservableObject { +extension NotificationView { + public final class ViewModel: ObservableObject { public var disposeBag = Set() public var objects = Set() let logger = Logger(subsystem: "NotificationView", category: "ViewModel") - + @Published public var authContext: AuthContext? @Published public var type: MastodonNotificationType? @@ -33,16 +33,16 @@ public extension NotificationView { @Published public var authorAvatarImageURL: URL? @Published public var authorName: MetaContent? @Published public var authorUsername: String? - + @Published public var isMyself = false @Published public var isMuting = false @Published public var isBlocking = false - + @Published public var timestamp: Date? - + @Published public var followRequestState = MastodonFollowRequestState(state: .none) @Published public var transientFollowRequestState = MastodonFollowRequestState(state: .none) - + let timestampUpdatePublisher = Timer.publish(every: 1.0, on: .main, in: .common) .autoconnect() .share() @@ -63,7 +63,7 @@ extension NotificationView.ViewModel { .assign(to: \.authContext, on: notificationView.quoteStatusView.viewModel) .store(in: &disposeBag) } - + private func bindAuthor(notificationView: NotificationView) { // avatar Publishers.CombineLatest( @@ -137,7 +137,7 @@ extension NotificationView.ViewModel { notificationView.accessibilityLabel = [ "\(name?.string ?? "") \(type?.string ?? "")", username.map { "@\($0)" } ?? "", - timestamp, + timestamp ].joined(separator: ", ") if !notificationView.statusView.isHidden { notificationView.accessibilityLabel! += ", " + (notificationView.statusView.accessibilityLabel ?? "") @@ -197,7 +197,7 @@ extension NotificationView.ViewModel { } .store(in: &disposeBag) } - + private func bindAuthorMenu(notificationView: NotificationView) { Publishers.CombineLatest4( $authorName, @@ -210,24 +210,24 @@ extension NotificationView.ViewModel { notificationView.menuButton.menu = nil return } - + let menuContext = NotificationView.AuthorMenuContext( name: name, isMuting: isMuting, isBlocking: isBlocking, isMyself: isMyself, - isBookmarking: false // no bookmark action display for notification item + isBookmarking: false // no bookmark action display for notification item ) let (menu, actions) = notificationView.setupAuthorMenu(menuContext: menuContext) notificationView.menuButton.menu = menu notificationView.authorActions = actions notificationView.menuButton.showsMenuAsPrimaryAction = true - + notificationView.menuButton.isHidden = menuContext.isMyself } .store(in: &disposeBag) } - + private func bindFollowRequest(notificationView: NotificationView) { Publishers.CombineLatest( $followRequestState, @@ -248,7 +248,7 @@ extension NotificationView.ViewModel { default: break } - + let state = transientFollowRequestState.state if state == .isAccepting { notificationView.acceptFollowRequestActivityIndicatorView.startAnimating() @@ -268,7 +268,7 @@ extension NotificationView.ViewModel { notificationView.rejectFollowRequestButton.tintColor = .black notificationView.rejectFollowRequestButton.setTitleColor(.black, for: .normal) } - + UIView.animate(withDuration: 0.3) { if state == .isAccept { notificationView.rejectFollowRequestButtonShadowBackgroundContainer.isHidden = true @@ -280,4 +280,5 @@ extension NotificationView.ViewModel { } .store(in: &disposeBag) } + } From f784df912d1bd1eb859bce47ace5ced2dbf3a7fa Mon Sep 17 00:00:00 2001 From: CMK Date: Tue, 22 Nov 2022 15:58:31 +0800 Subject: [PATCH 597/598] fix: no downscaling for raw image from camera issue --- .../Scene/Compose/ComposeViewController.swift | 1 + .../MastodonUI/Extension/UIImage.swift | 11 ++++ .../AttachmentViewModel+Compress.swift | 59 ++++++++++++++++++- .../Attachment/AttachmentViewModel+Load.swift | 2 +- .../Attachment/AttachmentViewModel.swift | 25 ++++---- .../ComposeContentViewController.swift | 3 + .../ComposeContentViewModel.swift | 14 ++++- .../Scene/ShareViewController.swift | 2 + 8 files changed, 101 insertions(+), 16 deletions(-) diff --git a/Mastodon/Scene/Compose/ComposeViewController.swift b/Mastodon/Scene/Compose/ComposeViewController.swift index ca33487ab..fbdbc7d12 100644 --- a/Mastodon/Scene/Compose/ComposeViewController.swift +++ b/Mastodon/Scene/Compose/ComposeViewController.swift @@ -209,6 +209,7 @@ extension ComposeViewController { api: viewModel.context.apiService, authContext: viewModel.authContext, input: .image(image), + sizeLimit: composeContentViewModel.sizeLimit, delegate: composeContentViewModel ) } diff --git a/MastodonSDK/Sources/MastodonUI/Extension/UIImage.swift b/MastodonSDK/Sources/MastodonUI/Extension/UIImage.swift index 141b723bc..5a83e1d61 100644 --- a/MastodonSDK/Sources/MastodonUI/Extension/UIImage.swift +++ b/MastodonSDK/Sources/MastodonUI/Extension/UIImage.swift @@ -16,3 +16,14 @@ extension UIImage { } } + +extension UIImage { + public func normalized() -> UIImage? { + if imageOrientation == .up { return self } + UIGraphicsBeginImageContext(size) + draw(in: CGRect(origin: CGPoint.zero, size: size)) + let image = UIGraphicsGetImageFromCurrentImageContext() + UIGraphicsEndImageContext() + return image + } + } diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel+Compress.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel+Compress.swift index e5d6702ad..6df22d324 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel+Compress.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel+Compress.swift @@ -8,11 +8,12 @@ import os.log import UIKit import AVKit -import SessionExporter import MastodonCore +import SessionExporter +import Kingfisher extension AttachmentViewModel { - func comporessVideo(url: URL) async throws -> URL { + func compressVideo(url: URL) async throws -> URL { let urlAsset = AVURLAsset(url: url) let exporter = NextLevelSessionExporter(withAsset: urlAsset) exporter.outputFileType = .mp4 @@ -92,3 +93,57 @@ extension AttachmentViewModel { } } // end func } + +extension AttachmentViewModel { + @AttachmentViewModelActor + func compressImage(data: Data, sizeLimit: SizeLimit) throws -> Output { + let maxPayloadSizeInBytes = sizeLimit.image ?? 10 * 1024 * 1024 + + guard let image = KFCrossPlatformImage(data: data)?.kf.normalized, + var imageData = image.kf.pngRepresentation() + else { + throw AttachmentError.invalidAttachmentType + } + + repeat { + guard let image = KFCrossPlatformImage(data: imageData) else { + throw AttachmentError.invalidAttachmentType + } + + if imageData.kf.imageFormat == .PNG { + // A. png image + if imageData.count > maxPayloadSizeInBytes { + guard let compressedJpegData = image.jpegData(compressionQuality: 0.8) else { + throw AttachmentError.invalidAttachmentType + } + os_log("%{public}s[%{public}ld], %{public}s: compress png %.2fMiB -> jpeg %.2fMiB", ((#file as NSString).lastPathComponent), #line, #function, Double(imageData.count) / 1024 / 1024, Double(compressedJpegData.count) / 1024 / 1024) + imageData = compressedJpegData + } else { + os_log("%{public}s[%{public}ld], %{public}s: png %.2fMiB", ((#file as NSString).lastPathComponent), #line, #function, Double(imageData.count) / 1024 / 1024) + break + } + } else { + // B. other image + if imageData.count > maxPayloadSizeInBytes { + let targetSize = CGSize(width: image.size.width * 0.8, height: image.size.height * 0.8) + let scaledImage = image.kf.resize(to: targetSize) + guard let compressedJpegData = scaledImage.jpegData(compressionQuality: 0.8) else { + throw AttachmentError.invalidAttachmentType + } + os_log("%{public}s[%{public}ld], %{public}s: compress jpeg %.2fMiB -> jpeg %.2fMiB", ((#file as NSString).lastPathComponent), #line, #function, Double(imageData.count) / 1024 / 1024, Double(compressedJpegData.count) / 1024 / 1024) + imageData = compressedJpegData + } else { + os_log("%{public}s[%{public}ld], %{public}s: jpeg %.2fMiB", ((#file as NSString).lastPathComponent), #line, #function, Double(imageData.count) / 1024 / 1024) + break + } + } + } while (imageData.count > maxPayloadSizeInBytes) + + + return .image(imageData, imageKind: imageData.kf.imageFormat == .PNG ? .png : .jpg) + } +} + +@globalActor actor AttachmentViewModelActor { + static var shared = AttachmentViewModelActor() +} diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel+Load.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel+Load.swift index a259485f1..7cfd51eb5 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel+Load.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel+Load.swift @@ -16,7 +16,7 @@ extension AttachmentViewModel { func load(input: Input) async throws -> Output { switch input { case .image(let image): - guard let data = image.pngData() else { + guard let data = image.normalized()?.pngData() else { throw AttachmentError.invalidAttachmentType } return .image(data, imageKind: .png) diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel.swift index 18da157c5..e420d9ad1 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel.swift @@ -48,8 +48,8 @@ final public class AttachmentViewModel: NSObject, ObservableObject, Identifiable public let api: APIService public let authContext: AuthContext public let input: Input + public let sizeLimit: SizeLimit @Published var caption = "" - // @Published var sizeLimit = SizeLimit() // output @Published public private(set) var output: Output? @@ -77,11 +77,13 @@ final public class AttachmentViewModel: NSObject, ObservableObject, Identifiable api: APIService, authContext: AuthContext, input: Input, + sizeLimit: SizeLimit, delegate: AttachmentViewModelDelegate ) { self.api = api self.authContext = authContext self.input = input + self.sizeLimit = sizeLimit self.delegate = delegate super.init() // end init @@ -137,14 +139,17 @@ final public class AttachmentViewModel: NSObject, ObservableObject, Identifiable var output = try await load(input: input) switch output { + case .image(let data, _): + self.output = output + self.update(uploadState: .compressing) + let compressedOutput = try await compressImage(data: data, sizeLimit: sizeLimit) + output = compressedOutput case .video(let fileURL, let mimeType): self.output = output self.update(uploadState: .compressing) - let compressedFileURL = try await comporessVideo(url: fileURL) + let compressedFileURL = try await compressVideo(url: fileURL) output = .video(compressedFileURL, mimeType: mimeType) try? FileManager.default.removeItem(at: fileURL) // remove old file - default: - break } self.outputSizeInByte = output.asAttachment.sizeInByte.flatMap { Int64($0) } ?? 0 @@ -262,19 +267,15 @@ extension AttachmentViewModel { } } - // not in using public struct SizeLimit { - public let image: Int - public let gif: Int - public let video: Int + public let image: Int? + public let video: Int? public init( - image: Int = 10 * 1024 * 1024, // 10 MiB - gif: Int = 40 * 1024 * 1024, // 40 MiB - video: Int = 40 * 1024 * 1024 // 40 MiB + image: Int?, + video: Int? ) { self.image = image - self.gif = gif self.video = video } } diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewController.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewController.swift index 811da063a..319804fb1 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewController.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewController.swift @@ -435,6 +435,7 @@ extension ComposeContentViewController: PHPickerViewControllerDelegate { api: viewModel.context.apiService, authContext: viewModel.authContext, input: .pickerResult(result), + sizeLimit: viewModel.sizeLimit, delegate: viewModel ) } @@ -453,6 +454,7 @@ extension ComposeContentViewController: UIImagePickerControllerDelegate & UINavi api: viewModel.context.apiService, authContext: viewModel.authContext, input: .image(image), + sizeLimit: viewModel.sizeLimit, delegate: viewModel ) viewModel.attachmentViewModels += [attachmentViewModel] @@ -473,6 +475,7 @@ extension ComposeContentViewController: UIDocumentPickerDelegate { api: viewModel.context.apiService, authContext: viewModel.authContext, input: .url(url), + sizeLimit: viewModel.sizeLimit, delegate: viewModel ) viewModel.attachmentViewModels += [attachmentViewModel] diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel.swift index 3321aeab7..a1ddb6101 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel.swift @@ -88,7 +88,7 @@ public final class ComposeContentViewModel: NSObject, ObservableObject { // attachment @Published public var attachmentViewModels: [AttachmentViewModel] = [] @Published public var maxMediaAttachmentLimit = 4 - // @Published public internal(set) var isMediaValid = true + @Published public internal(set) var maxImageMediaSizeLimitInByte = 10 * 1024 * 1024 // 10 MiB // poll @Published public var isPollActive = false @@ -126,6 +126,14 @@ public final class ComposeContentViewModel: NSObject, ObservableObject { @Published var isPollButtonEnabled = false @Published public private(set) var shouldDismiss = true + + // size limit + public var sizeLimit: AttachmentViewModel.SizeLimit { + AttachmentViewModel.SizeLimit( + image: maxImageMediaSizeLimitInByte, + video: nil + ) + } public init( context: AppContext, @@ -252,6 +260,10 @@ public final class ComposeContentViewModel: NSObject, ObservableObject { if let maxOptions = configuration.polls?.maxOptions { maxPollOptionLimit = maxOptions } + // set photo attachment limit + if let imageSizeLimit = configuration.mediaAttachments?.imageSizeLimit { + maxImageMediaSizeLimitInByte = imageSizeLimit + } // TODO: more limit } diff --git a/ShareActionExtension/Scene/ShareViewController.swift b/ShareActionExtension/Scene/ShareViewController.swift index 372ce5876..4a093becd 100644 --- a/ShareActionExtension/Scene/ShareViewController.swift +++ b/ShareActionExtension/Scene/ShareViewController.swift @@ -276,6 +276,7 @@ extension ShareViewController { api: context.apiService, authContext: authContext, input: .itemProvider(movieProvider), + sizeLimit: .init(image: nil, video: nil), delegate: composeContentViewModel ) composeContentViewModel.attachmentViewModels.append(attachmentViewModel) @@ -285,6 +286,7 @@ extension ShareViewController { api: context.apiService, authContext: authContext, input: .itemProvider(provider), + sizeLimit: .init(image: nil, video: nil), delegate: composeContentViewModel ) } From a45fa65802761f9bb43b993813fb2f4a8b771b09 Mon Sep 17 00:00:00 2001 From: CMK Date: Wed, 23 Nov 2022 12:27:46 +0800 Subject: [PATCH 598/598] chore: set minimal size limit for photo to 1MiB --- .../Attachment/AttachmentViewModel+Compress.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel+Compress.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel+Compress.swift index 6df22d324..417bc773a 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel+Compress.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/Attachment/AttachmentViewModel+Compress.swift @@ -97,7 +97,7 @@ extension AttachmentViewModel { extension AttachmentViewModel { @AttachmentViewModelActor func compressImage(data: Data, sizeLimit: SizeLimit) throws -> Output { - let maxPayloadSizeInBytes = sizeLimit.image ?? 10 * 1024 * 1024 + let maxPayloadSizeInBytes = max((sizeLimit.image ?? 10 * 1024 * 1024), 1 * 1024 * 1024) guard let image = KFCrossPlatformImage(data: data)?.kf.normalized, var imageData = image.kf.pngRepresentation()