Minor strings changes

This commit is contained in:
Arkadiusz Fal 2022-09-26 17:30:59 +02:00
parent 6d15945c88
commit c673b45369
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ struct Playlist: Identifiable, Equatable, Hashable {
} }
var name: String { var name: String {
rawValue.capitalized rawValue.capitalized.localized()
} }
} }

View File

@ -56,7 +56,7 @@ struct NowPlayingView: View {
if sections.contains(.playingNext) { if sections.contains(.playingNext) {
Section(header: Text("Playing Next")) { Section(header: Text("Playing Next")) {
if player.queue.isEmpty { if player.queue.isEmpty {
Text("Playback queue is empty") Text("Queue is empty")
.padding([.vertical, .leading], 40) .padding([.vertical, .leading], 40)
.foregroundColor(.secondary) .foregroundColor(.secondary)
} }