Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ class StoriesFeedViewController: UIViewController,

// MARK: Helper functions
private func setupNavigationBar(animated: Bool) {
title = .FirefoxHomepage.Pocket.TopStories.TopStoriesViewTitle
title = .FirefoxHomepage.Pocket.AllStories.AllStoriesViewTitle
navigationController?.setNavigationBarHidden(false, animated: animated)
}

Expand Down
18 changes: 9 additions & 9 deletions firefox-ios/Shared/Strings.swift
Original file line number Diff line number Diff line change
Expand Up @@ -1036,14 +1036,14 @@ extension String {
value: "Stories",
comment: "This is the title of the Stories section on Firefox Homepage.")
public static let PopularTodaySectionTitle = MZLocalizedString(
key: "FirefoxHome.Stories.PopularTodaySectionTitle.v144",
key: "FirefoxHome.Stories.PopularTodaySectionTitle.v145",
tableName: "FirefoxHomepage",
value: "Popular today",
value: "Popular Today",
comment: "This is the title of the stories section on Firefox Homepage, which displays a collection of trending news articles")
public static let AllStoriesButtonTitle = MZLocalizedString(
key: "FirefoxHome.Stories.AllStoriesButtonTitle.v144",
key: "FirefoxHome.Stories.AllStoriesButtonTitle.v145",
tableName: "FirefoxHomepage",
value: "All stories",
value: "All Stories",
comment: "This is the title for the button next to the stories section title on Firefox Homepage that, when tapped, transitions you to the Top Stories view which displays a collection of trending news articles.")
public static let NumberOfMinutes = MZLocalizedString(
key: "FirefoxHome.Stories.Minutes.v140",
Expand Down Expand Up @@ -1073,12 +1073,12 @@ extension String {
value: "%@ of %@",
comment: "On the homepage, in the Stories section, this is the accessibility hint for the position of the current story in the stories stack. The first placeholder, %1$@, is the current position; the second placeholder, %2$@, is the total story count. Example: '1 of 5'")

public struct TopStories {
public static let TopStoriesViewTitle = MZLocalizedString(
key: "FirefoxHome.Stories.TopStoriesViewTitle.v144",
public struct AllStories {
public static let AllStoriesViewTitle = MZLocalizedString(
key: "FirefoxHome.Stories.AllStoriesViewTitle.v145",
tableName: "FirefoxHomepage",
value: "Top stories",
comment: "This is the title that appears in the navigation bar for the Top Stories view, a screen that displays a collection of trending news articles")
value: "All Stories",
comment: "This is the title that appears in the navigation bar for the All Stories view, a screen that displays a collection of trending news articles")
}
}

Expand Down
Loading