Rename Global feed to Universe

Changelog-Changed: Rename global feed to universe
This commit is contained in:
William Casarin
2023-02-19 09:53:06 -08:00
parent d5c45dc8ba
commit 795577a0a1

View File

@@ -163,7 +163,7 @@ struct ContentView: View {
Text("Notifications", comment: "Toolbar label for Notifications view.") Text("Notifications", comment: "Toolbar label for Notifications view.")
.bold() .bold()
case .search: case .search:
Text("Global", comment: "Toolbar label for Global view where posts from all connected relay servers appear.") Text("Universe 🛸", comment: "Toolbar label for the universal view where posts from all connected relay servers appear.")
.bold() .bold()
case .none: case .none:
Text("", comment: "Toolbar label for unknown views. This label would be displayed only if a new timeline view is added but a toolbar label was not explicitly assigned to it yet.") Text("", comment: "Toolbar label for unknown views. This label would be displayed only if a new timeline view is added but a toolbar label was not explicitly assigned to it yet.")
@@ -202,7 +202,7 @@ struct ContentView: View {
EmptyView() EmptyView()
} }
} }
.navigationBarTitle(selected_timeline == .home ? NSLocalizedString("Home", comment: "Navigation bar title for Home view where posts and replies appear from those who the user is following.") : NSLocalizedString("Global", comment: "Navigation bar title for Global view where posts from all connected relay servers appear."), displayMode: .inline) .navigationBarTitle(selected_timeline == .home ? NSLocalizedString("Home", comment: "Navigation bar title for Home view where posts and replies appear from those who the user is following.") : NSLocalizedString("Universe 🛸", comment: "Navigation bar title for universal view where posts from all connected relay servers appear."), displayMode: .inline)
.toolbar { .toolbar {
ToolbarItem(placement: .principal) { ToolbarItem(placement: .principal) {
timelineNavItem timelineNavItem