spanish translations
Some checks failed
Build / build (push) Has been cancelled
Build / build-simulator (push) Has been cancelled

This commit is contained in:
hueso
2025-05-15 11:28:53 -03:00
parent 48399312be
commit cb7563fa2a
2 changed files with 10 additions and 10 deletions

View File

@@ -26,7 +26,7 @@
#include "watch_utility.h"
const char * watch_utility_get_weekday(watch_date_time date_time) {
static const char weekdays[7][3] = {"MO", "TU", "WE", "TH", "FR", "SA", "SU"};
static const char weekdays[7][3] = {"LU", "MA", "MI", "JU", "VI", "SA", "do"};
return weekdays[watch_utility_get_iso8601_weekday_number(date_time.unit.year + WATCH_RTC_REFERENCE_YEAR, date_time.unit.month, date_time.unit.day) - 1];
}