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

@@ -49,16 +49,16 @@ struct VideoStatsRow: View {
Text(publishedText)
.onTapGesture { showFormattedDate.toggle() }
} else if isLoadingAPIStats {
Text("2 weeks ago")
Text(verbatim: "2 weeks ago")
.redacted(reason: .placeholder)
}
// View count
if let viewCount = video.formattedViewCount {
Text("")
Text(verbatim: "")
Text("video.views \(viewCount)")
} else if isLoadingAPIStats {
Text("")
Text(verbatim: "")
Text("video.views 1.2M")
.redacted(reason: .placeholder)
}