From 15e9af8399680cf64274e970559021a8a8d6c376 Mon Sep 17 00:00:00 2001
From: "google-labs-jules[bot]"
<161369871+google-labs-jules[bot]@users.noreply.github.com>
Date: Thu, 5 Feb 2026 22:14:26 +0000
Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20Palette:=20Spanish=20localizatio?=
=?UTF-8?q?n=20and=20accessibility=20polish?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
- Added missing aria-labels to icon-only buttons in NotificationBell, TaskCalendar, and TaskFilters.
- Corrected numerous Spanish spelling errors and missing tildes (accents) in UI text across several components (Día, Mañana, Búsqueda, Título, Descripción, etc.).
- Improved overall accessibility and visual polish of the Spanish interface.
Co-authored-by: Rumazor <87402949+Rumazor@users.noreply.github.com>
---
.Jules/palette.md | 5 +++++
frontend/components/calendar/task-calendar.tsx | 8 +++++---
frontend/components/notifications/notification-bell.tsx | 2 +-
frontend/components/tasks/task-dashboard.tsx | 4 ++--
frontend/components/tasks/task-filters.tsx | 8 +++++++-
frontend/components/tasks/task-form.tsx | 8 ++++----
frontend/components/tasks/task-list.tsx | 6 +++---
7 files changed, 27 insertions(+), 14 deletions(-)
create mode 100644 .Jules/palette.md
diff --git a/.Jules/palette.md b/.Jules/palette.md
new file mode 100644
index 0000000..039c529
--- /dev/null
+++ b/.Jules/palette.md
@@ -0,0 +1,5 @@
+## 2025-05-22 - Spanish Tildes and ARIA labels in icon-only buttons
+
+**Learning:** In this application, many Spanish UI strings were missing proper accentuation (tildes), especially in common words like "Día", "más", "Mañana", "descripción", and "Búsqueda". Additionally, several icon-only buttons (notification bell, calendar navigation, filter toggle) lacked ARIA labels, making them inaccessible to screen readers.
+
+**Action:** Always check for proper Spanish accentuation in UI text and ensure every icon-only button has an `aria-label` or a screen-reader-only span.
diff --git a/frontend/components/calendar/task-calendar.tsx b/frontend/components/calendar/task-calendar.tsx
index 448910a..43ce258 100644
--- a/frontend/components/calendar/task-calendar.tsx
+++ b/frontend/components/calendar/task-calendar.tsx
@@ -109,6 +109,7 @@ export default function TaskCalendar({ token, onTaskClick }: TaskCalendarProps)
variant="outline"
size="icon"
onClick={() => onNavigate("PREV")}
+ aria-label="Anterior"
>
@@ -116,6 +117,7 @@ export default function TaskCalendar({ token, onTaskClick }: TaskCalendarProps)
variant="outline"
size="icon"
onClick={() => onNavigate("NEXT")}
+ aria-label="Siguiente"
>
@@ -150,7 +152,7 @@ export default function TaskCalendar({ token, onTaskClick }: TaskCalendarProps)
size="sm"
onClick={() => setView(Views.DAY)}
>
- Dia
+ Día
@@ -162,13 +164,13 @@ export default function TaskCalendar({ token, onTaskClick }: TaskCalendarProps)
next: "Siguiente",
month: "Mes",
week: "Semana",
- day: "Dia",
+ day: "Día",
agenda: "Agenda",
date: "Fecha",
time: "Hora",
event: "Evento",
noEventsInRange: "No hay tareas en este rango",
- showMore: (total: number) => `+ ${total} mas`,
+ showMore: (total: number) => `+ ${total} más`,
};
return (
diff --git a/frontend/components/notifications/notification-bell.tsx b/frontend/components/notifications/notification-bell.tsx
index 3c19cdb..1e6f534 100644
--- a/frontend/components/notifications/notification-bell.tsx
+++ b/frontend/components/notifications/notification-bell.tsx
@@ -97,7 +97,7 @@ export default function NotificationBell({ token }: NotificationBellProps) {
return (
-