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

@@ -121,9 +121,9 @@ struct VideoListRow<Content: View>: View {
.fill(Color.gray.opacity(0.3))
.frame(width: 120, height: 68)
VStack(alignment: .leading) {
Text("Video Title \(index + 1)")
Text(verbatim: "Video Title \(index + 1)")
.font(.subheadline)
Text("Channel Name")
Text(verbatim: "Channel Name")
.font(.caption)
.foregroundStyle(.secondary)
}
@@ -152,9 +152,9 @@ struct VideoListRow<Content: View>: View {
.fill(Color.gray.opacity(0.3))
.frame(width: 120, height: 68)
VStack(alignment: .leading) {
Text("Video Title \(index + 1)")
Text(verbatim: "Video Title \(index + 1)")
.font(.subheadline)
Text("Channel Name")
Text(verbatim: "Channel Name")
.font(.caption)
.foregroundStyle(.secondary)
}