diff --git a/Shared/Views/ChannelCell.swift b/Shared/Views/ChannelCell.swift index abacc5ae..1fcd49eb 100644 --- a/Shared/Views/ChannelCell.swift +++ b/Shared/Views/ChannelCell.swift @@ -25,7 +25,7 @@ struct ChannelCell: View { VStack { HStack(alignment: .top, spacing: 3) { Image(systemName: "person.crop.rectangle") - Text("Channel".uppercased()) + Text("Channel".localized().uppercased()) .fontWeight(.light) .opacity(0.6) } diff --git a/Shared/Views/ChannelPlaylistCell.swift b/Shared/Views/ChannelPlaylistCell.swift index d2b210fa..d1520927 100644 --- a/Shared/Views/ChannelPlaylistCell.swift +++ b/Shared/Views/ChannelPlaylistCell.swift @@ -23,7 +23,7 @@ struct ChannelPlaylistCell: View { VStack { HStack(alignment: .top, spacing: 3) { Image(systemName: "list.and.film") - Text("Playlist".uppercased()) + Text("Playlist".localized().uppercased()) .fontWeight(.light) .opacity(0.6) }