Fix locales

This commit is contained in:
Arkadiusz Fal
2026-02-09 00:13:46 +01:00
parent 05f921d605
commit 8464464199
55 changed files with 644 additions and 548 deletions

View File

@@ -76,7 +76,7 @@ struct ChannelPlaylistRow: View {
}
if style == .compact {
Text("\(playlist.videoCount) videos")
Text("playlist.videoCount \(playlist.videoCount)")
.font(.caption2)
.foregroundStyle(.secondary)
} else {

View File

@@ -780,7 +780,7 @@ struct ChannelView: View {
if let subscriberCount = channel.subscriberCount {
Text(CountFormatter.compact(subscriberCount))
.fontWeight(.bold)
+ Text(" ")
+ Text(verbatim: " ")
+ Text(String(localized: "channel.subscribers"))
}