mirror of
https://github.com/yattee/yattee.git
synced 2024-11-12 17:18:22 +00:00
Minor strings changes
This commit is contained in:
parent
6d15945c88
commit
c673b45369
@ -10,7 +10,7 @@ struct Playlist: Identifiable, Equatable, Hashable {
|
|||||||
}
|
}
|
||||||
|
|
||||||
var name: String {
|
var name: String {
|
||||||
rawValue.capitalized
|
rawValue.capitalized.localized()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -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)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user