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

@@ -737,8 +737,8 @@ private struct TVHomeItemRow: View {
.frame(width: 30, height: 24)
}
.buttonStyle(TVCompactButtonStyle())
.alert("Remove from Home?", isPresented: $showingDeleteConfirmation) {
Button("Cancel", role: .cancel) { }
.alert(String(localized: "home.removeConfirmation.title"), isPresented: $showingDeleteConfirmation) {
Button(String(localized: "common.cancel"), role: .cancel) { }
Button("Remove", role: .destructive) {
onDelete?()
}