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 49181dadde
commit 6b94109277
2 changed files with 10 additions and 10 deletions

View File

@ -33,20 +33,20 @@ const char *words[12] = {
" ", " ",
" 5", " 5",
"10", "10",
"15", "CU",
"20", "20",
"25", "Me",
"30", "ME",
"35", "mE",
"40", "40",
"45", "45",
"50", "50",
"55", "55",
}; };
static const char *past_word = " P"; static const char *past_word = " y";
static const char *to_word = " 2"; static const char *to_word = " -";
static const char *oclock_word = "OC"; static const char *oclock_word = "EP";
// sets when in the five minute period we switch // sets when in the five minute period we switch
// from "X past HH" to "X to HH+1" // from "X past HH" to "X to HH+1"
@ -185,7 +185,7 @@ bool close_enough_clock_face_loop(movement_event_t event, movement_settings_t *s
int words_length = sizeof(words) / sizeof(words[0]); int words_length = sizeof(words) / sizeof(words[0]);
strncpy( strncpy(
first_word, third_word,
five_minute_period >= hour_switch_index ? five_minute_period >= hour_switch_index ?
words[words_length - five_minute_period] : words[words_length - five_minute_period] :
words[five_minute_period], words[five_minute_period],
@ -197,7 +197,7 @@ bool close_enough_clock_face_loop(movement_event_t event, movement_settings_t *s
to_word : past_word, to_word : past_word,
3 3
); );
sprintf(third_word, "%2d", close_enough_hour); sprintf(first_word, "%2d", close_enough_hour);
} }
sprintf( sprintf(

View File

@ -26,7 +26,7 @@
#include "watch_utility.h" #include "watch_utility.h"
const char * watch_utility_get_weekday(watch_date_time date_time) { 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]; 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];
} }