mirror of
https://github.com/SideStore/SideStore.git
synced 2026-02-12 08:13:26 +01:00
[CHANGE] Extracted some example strings and replaced them by generated localized strings
This commit is contained in:
@@ -10,6 +10,38 @@ import Foundation
|
||||
// swiftlint:disable explicit_type_interface function_parameter_count identifier_name line_length
|
||||
// swiftlint:disable nesting type_body_length type_name vertical_whitespace_opening_braces
|
||||
internal enum L10n {
|
||||
internal enum BrowseView {
|
||||
/// Search
|
||||
internal static let search = L10n.tr("Localizable", "BrowseView.search", fallback: "Search")
|
||||
/// BrowseView
|
||||
internal static let title = L10n.tr("Localizable", "BrowseView.title", fallback: "Browse")
|
||||
internal enum Actions {
|
||||
/// Sources
|
||||
internal static let sources = L10n.tr("Localizable", "BrowseView.Actions.sources", fallback: "Sources")
|
||||
}
|
||||
internal enum Section {
|
||||
internal enum AllApps {
|
||||
/// All Apps
|
||||
internal static let title = L10n.tr("Localizable", "BrowseView.Section.AllApps.title", fallback: "All Apps")
|
||||
}
|
||||
internal enum PromotedCategories {
|
||||
/// Show all
|
||||
internal static let showAll = L10n.tr("Localizable", "BrowseView.Section.PromotedCategories.showAll", fallback: "Show all")
|
||||
/// Promoted Categories
|
||||
internal static let title = L10n.tr("Localizable", "BrowseView.Section.PromotedCategories.title", fallback: "Promoted Categories")
|
||||
}
|
||||
}
|
||||
}
|
||||
internal enum NewsView {
|
||||
/// NewsView
|
||||
internal static let title = L10n.tr("Localizable", "NewsView.title", fallback: "News")
|
||||
internal enum Section {
|
||||
internal enum FromSources {
|
||||
/// From your Sources
|
||||
internal static let title = L10n.tr("Localizable", "NewsView.Section.FromSources.title", fallback: "From your Sources")
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
// swiftlint:enable explicit_type_interface function_parameter_count identifier_name line_length
|
||||
// swiftlint:enable nesting type_body_length type_name vertical_whitespace_opening_braces
|
||||
|
||||
Reference in New Issue
Block a user