Rename second tab to “Search and Explore”
This commit is contained in:
parent
7aed050ded
commit
2003e4987c
|
@ -95,7 +95,7 @@
|
||||||
},
|
},
|
||||||
"tabs": {
|
"tabs": {
|
||||||
"home": "Home",
|
"home": "Home",
|
||||||
"search": "Search",
|
"search_and_explore": "Search and Explore",
|
||||||
"notifications": "Notifications",
|
"notifications": "Notifications",
|
||||||
"profile": "Profile"
|
"profile": "Profile"
|
||||||
},
|
},
|
||||||
|
|
|
@ -95,7 +95,7 @@
|
||||||
},
|
},
|
||||||
"tabs": {
|
"tabs": {
|
||||||
"home": "Home",
|
"home": "Home",
|
||||||
"search": "Search",
|
"search_and_explore": "Search and Explore",
|
||||||
"notifications": "Notifications",
|
"notifications": "Notifications",
|
||||||
"profile": "Profile"
|
"profile": "Profile"
|
||||||
},
|
},
|
||||||
|
|
|
@ -61,7 +61,7 @@ class MainTabBarController: UITabBarController {
|
||||||
var title: String {
|
var title: String {
|
||||||
switch self {
|
switch self {
|
||||||
case .home: return L10n.Common.Controls.Tabs.home
|
case .home: return L10n.Common.Controls.Tabs.home
|
||||||
case .search: return L10n.Common.Controls.Tabs.search
|
case .search: return L10n.Common.Controls.Tabs.searchAndExplore
|
||||||
case .compose: return L10n.Common.Controls.Actions.compose
|
case .compose: return L10n.Common.Controls.Actions.compose
|
||||||
case .notifications: return L10n.Common.Controls.Tabs.notifications
|
case .notifications: return L10n.Common.Controls.Tabs.notifications
|
||||||
case .me: return L10n.Common.Controls.Tabs.profile
|
case .me: return L10n.Common.Controls.Tabs.profile
|
||||||
|
|
|
@ -370,8 +370,8 @@ public enum L10n {
|
||||||
public static let notifications = L10n.tr("Localizable", "Common.Controls.Tabs.Notifications", fallback: "Notifications")
|
public static let notifications = L10n.tr("Localizable", "Common.Controls.Tabs.Notifications", fallback: "Notifications")
|
||||||
/// Profile
|
/// Profile
|
||||||
public static let profile = L10n.tr("Localizable", "Common.Controls.Tabs.Profile", fallback: "Profile")
|
public static let profile = L10n.tr("Localizable", "Common.Controls.Tabs.Profile", fallback: "Profile")
|
||||||
/// Search
|
/// Search and Explore
|
||||||
public static let search = L10n.tr("Localizable", "Common.Controls.Tabs.Search", fallback: "Search")
|
public static let searchAndExplore = L10n.tr("Localizable", "Common.Controls.Tabs.SearchAndExplore", fallback: "Search and Explore")
|
||||||
}
|
}
|
||||||
public enum Timeline {
|
public enum Timeline {
|
||||||
/// Filtered
|
/// Filtered
|
||||||
|
|
|
@ -133,7 +133,7 @@ Please check your internet connection.";
|
||||||
"Common.Controls.Tabs.Home" = "Home";
|
"Common.Controls.Tabs.Home" = "Home";
|
||||||
"Common.Controls.Tabs.Notifications" = "Notifications";
|
"Common.Controls.Tabs.Notifications" = "Notifications";
|
||||||
"Common.Controls.Tabs.Profile" = "Profile";
|
"Common.Controls.Tabs.Profile" = "Profile";
|
||||||
"Common.Controls.Tabs.Search" = "Search";
|
"Common.Controls.Tabs.SearchAndExplore" = "Search and Explore";
|
||||||
"Common.Controls.Timeline.Filtered" = "Filtered";
|
"Common.Controls.Timeline.Filtered" = "Filtered";
|
||||||
"Common.Controls.Timeline.Header.BlockedWarning" = "You can’t view this user’s profile
|
"Common.Controls.Timeline.Header.BlockedWarning" = "You can’t view this user’s profile
|
||||||
until they unblock you.";
|
until they unblock you.";
|
||||||
|
|
Loading…
Reference in New Issue