Localization fixes

This commit is contained in:
Arkadiusz Fal 2022-12-04 13:43:09 +01:00
parent 1d64c84137
commit 7bb978d02c
2 changed files with 2 additions and 2 deletions

View File

@ -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)
}

View File

@ -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)
}