1
0
mirror of https://github.com/yattee/yattee.git synced 2025-01-07 18:10:33 +05:30

Localization fix

This commit is contained in:
Arkadiusz Fal 2023-05-21 19:10:28 +02:00
parent d5f8e35430
commit d7a2564617

View File

@ -44,10 +44,10 @@ struct QueueView: View {
var label: String { var label: String {
if items.count < 2 { if items.count < 2 {
return "Next in Queue" return "Next in Queue".localized()
} }
return "Next in Queue (\(items.count))" return "Next in Queue".localized() + " (\(items.count))"
} }
var limitedItems: [ContentItem] { var limitedItems: [ContentItem] {