style(analysis): use full month names in variation table

This commit is contained in:
Jose Selesan
2026-08-27 11:16:39 -03:00
parent 88fa05d5b8
commit 873fd63ea4

View File

@@ -20,18 +20,18 @@ type MonthRow = {
}; };
const MONTH_NAMES = [ const MONTH_NAMES = [
"Ene", "Enero",
"Feb", "Febrero",
"Mar", "Marzo",
"Abr", "Abril",
"May", "Mayo",
"Jun", "Junio",
"Jul", "Julio",
"Ago", "Agosto",
"Sep", "Septiembre",
"Oct", "Octubre",
"Nov", "Noviembre",
"Dic", "Diciembre",
]; ];
function formatMonth(monthKey: string): string { function formatMonth(monthKey: string): string {