mirror of
https://github.com/metabolist/metatext.git
synced 2024-11-29 03:21:02 +00:00
spelling: accessibility
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
parent
667e39554a
commit
2a47dbba4a
2 changed files with 4 additions and 4 deletions
|
@ -327,9 +327,9 @@
|
||||||
"status.favorite-button.accessibility-label" = "Favorite";
|
"status.favorite-button.accessibility-label" = "Favorite";
|
||||||
"status.favorite-button.undo.accessibility-label" = "Unfavorite";
|
"status.favorite-button.undo.accessibility-label" = "Unfavorite";
|
||||||
"status.show-more" = "Show More";
|
"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" = "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.show-thread" = "Show thread";
|
||||||
"status.spoiler-text-placeholder" = "Write your warning here";
|
"status.spoiler-text-placeholder" = "Write your warning here";
|
||||||
"status.unbookmark" = "Unbookmark";
|
"status.unbookmark" = "Unbookmark";
|
||||||
|
|
|
@ -187,12 +187,12 @@ class TableViewController: UITableViewController {
|
||||||
navigationItem.rightBarButtonItem = nil
|
navigationItem.rightBarButtonItem = nil
|
||||||
case .expand:
|
case .expand:
|
||||||
navigationItem.rightBarButtonItem = UIBarButtonItem(
|
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"),
|
image: UIImage(systemName: "eye"),
|
||||||
primaryAction: UIAction { [weak self] _ in self?.viewModel.toggleExpandAll() })
|
primaryAction: UIAction { [weak self] _ in self?.viewModel.toggleExpandAll() })
|
||||||
case .collapse:
|
case .collapse:
|
||||||
navigationItem.rightBarButtonItem = UIBarButtonItem(
|
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"),
|
image: UIImage(systemName: "eye.slash"),
|
||||||
primaryAction: UIAction { [weak self] _ in self?.viewModel.toggleExpandAll() })
|
primaryAction: UIAction { [weak self] _ in self?.viewModel.toggleExpandAll() })
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue