From bd0409d15be1c994bcce26b9299e47bfdb036b4a Mon Sep 17 00:00:00 2001 From: Ammerhai Date: Sun, 5 Jul 2026 12:37:59 +0200 Subject: [PATCH] add french localisation --- src/localization.c | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/src/localization.c b/src/localization.c index 2767e96..575e74e 100644 --- a/src/localization.c +++ b/src/localization.c @@ -99,5 +99,50 @@ const char *localized_strings_storage[LANGUAGE_COUNT][LOCALIZED_STRING_COUNT] = }, [L_FRENCH] = { [LS_LANGUAGE_NAME] = "Français", + [LS_JANUARY] = "Janvier", + [LS_FEBRUARY] = "Février", + [LS_MARCH] = "Mars", + [LS_APRIL] = "Avril", + [LS_MAY] = "Mai", + [LS_JUNE] = "Juin", + [LS_JULY] = "Juillet", + [LS_AUGUST] = "Août", + [LS_SEPTEMBER] = "Septembre", + [LS_OCTOBER] = "Octobre", + [LS_NOVEMBER] = "Novembre", + [LS_DECEMBER] = "Décembre", + [LS_FILE] = "Fichier", + [LS_OPEN] = "Ouvrir", + [LS_SAVE] = "Enregistrer", + [LS_SAVE_AS] = "Enregistrer sous", + [LS_CLOSE_CALENDAR] = "Fermer le calendrier###CloseCalendar", + [LS_CLOSE_AND_LOAD_CALENDAR] = "Fermer et charger le calendrier###CloseLoadCalendar", + [LS_EXIT] = "Quitter###Close", + [LS_VIEW] = "Affichage", + [LS_LEGEND] = "Légende", + [LS_LANGUAGE] = "Langue", + [LS_HELP] = "Aide", + [LS_DEMO] = "Démo", + [LS_WIKI] = "Wiki", + [LS_ABOUT] = "À propos###About", + [LS_CALENDAR_WEEK_SHORT] = "Sem.", + [LS_MONDAY_SHORT] = "Lu", // Lundi + [LS_TUESDAY_SHORT] = "Ma", // Mardi + [LS_WEDNESDAY_SHORT] = "Me", // Jeudi + [LS_THURSDAY_SHORT] = "Je", // Mercredi + [LS_FRIDAY_SHORT] = "Ve", // Vendredi + [LS_SATURDAY_SHORT] = "Sa", // Samedi + [LS_SUNDAY_SHORT] = "Di", // Dimanche + [LS_TITLE_ENTER_PASSWORD] = "Entrer le mot de passe###Save", + [LS_PASSWORD] = "Mot de passe", + [LS_CONFIRM_PASSWORD] = "Confirmer le mot de passe", + [LS_OK] = "OK", + [LS_CANCEL] = "Annuler", + [LS_TITLE_OPEN_PASSWORD] = "Entrer le mot de passe###Open", + [LS_QUESTION_DO_YOU_REALLY_WANT_TO_QUIT] = "Il reste des modifications non enregistrées.\nVoulez-vous vraiment quitter ?", + [LS_QUESTION_DO_YOU_REALLY_WANT_TO_CLOSE_THE_CALENDAR] = "Il reste des modifications non enregistrées.\nVoulez-vous vraiment fermer le calendrier ?", + [LS_YES] = "Oui", + [LS_NO] = "Non", + [LS_CLOSE] = "Fermer", } }; \ No newline at end of file