diff --git a/Localizations/en.lproj/Localizable.strings b/Localizations/en.lproj/Localizable.strings index 4689fa2..5d49ab6 100644 --- a/Localizations/en.lproj/Localizable.strings +++ b/Localizations/en.lproj/Localizable.strings @@ -327,9 +327,9 @@ "status.favorite-button.accessibility-label" = "Favorite"; "status.favorite-button.undo.accessibility-label" = "Unfavorite"; "status.show-more" = "Show More"; -"status.show-more-all-button.accessibilty-label" = "Show more for all"; +"status.show-more-all-button.accessibility-label" = "Show more for all"; "status.show-less" = "Show Less"; -"status.show-less-all-button.accessibilty-label" = "Show less for all"; +"status.show-less-all-button.accessibility-label" = "Show less for all"; "status.show-thread" = "Show thread"; "status.spoiler-text-placeholder" = "Write your warning here"; "status.unbookmark" = "Unbookmark"; diff --git a/View Controllers/TableViewController.swift b/View Controllers/TableViewController.swift index 5b09c67..ba321d9 100644 --- a/View Controllers/TableViewController.swift +++ b/View Controllers/TableViewController.swift @@ -187,12 +187,12 @@ class TableViewController: UITableViewController { navigationItem.rightBarButtonItem = nil case .expand: navigationItem.rightBarButtonItem = UIBarButtonItem( - title: NSLocalizedString("status.show-more-all-button.accessibilty-label", comment: ""), + title: NSLocalizedString("status.show-more-all-button.accessibility-label", comment: ""), image: UIImage(systemName: "eye"), primaryAction: UIAction { [weak self] _ in self?.viewModel.toggleExpandAll() }) case .collapse: navigationItem.rightBarButtonItem = UIBarButtonItem( - title: NSLocalizedString("status.show-less-all-button.accessibilty-label", comment: ""), + title: NSLocalizedString("status.show-less-all-button.accessibility-label", comment: ""), image: UIImage(systemName: "eye.slash"), primaryAction: UIAction { [weak self] _ in self?.viewModel.toggleExpandAll() }) }