diff --git a/Shared/Views/ListingStyleButtons.swift b/Shared/Views/ListingStyleButtons.swift index dc266d2a..187158f7 100644 --- a/Shared/Views/ListingStyleButtons.swift +++ b/Shared/Views/ListingStyleButtons.swift @@ -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) } } }