mirror of
https://github.com/yattee/yattee.git
synced 2025-08-05 02:04:07 +00:00
Fix localizations
This commit is contained in:
@@ -10,7 +10,7 @@ struct ListingStyleButtons: View {
|
||||
Button {
|
||||
listingStyle = listingStyle.next()
|
||||
} label: {
|
||||
Label(listingStyle.rawValue.capitalized, systemImage: listingStyle.systemImage)
|
||||
Label(listingStyle.rawValue.capitalized.localized(), systemImage: listingStyle.systemImage)
|
||||
#if os(tvOS)
|
||||
.font(.caption)
|
||||
.imageScale(.small)
|
||||
@@ -25,7 +25,7 @@ struct ListingStyleButtons: View {
|
||||
Button {
|
||||
listingStyle = style
|
||||
} label: {
|
||||
Label(style.rawValue.capitalized, systemImage: style.systemImage)
|
||||
Label(style.rawValue.capitalized.localized(), systemImage: style.systemImage)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user