Excuse me, I see the patch was not loaded properly; here it is inline: PATCH_BEGIN From: saloniamatteo Date: Thu, 2 Dec 2021 10:00:00 +0100 Subject: Fix it_IT locale Week days should be capitalized, not all lowercase. diff --git a/localedata/locales/it_IT b/localedata/locales/it_IT index 8a10545de0..089b2c3d25 100644 --- a/localedata/locales/it_IT +++ b/localedata/locales/it_IT @@ -93,35 +93,35 @@ grouping 3;3 END LC_NUMERIC LC_TIME -abday "dom";"lun";/ - "mar";"mer";/ - "gio";"ven";/ - "sab" -day "domenica";/ - "luned";/ - "marted";/ - "mercoled";/ - "gioved";/ - "venerd";/ - "sabato" -abmon "gen";"feb";/ - "mar";"apr";/ - "mag";"giu";/ - "lug";"ago";/ - "set";"ott";/ - "nov";"dic" -mon "gennaio";/ - "febbraio";/ - "marzo";/ - "aprile";/ - "maggio";/ - "giugno";/ - "luglio";/ - "agosto";/ - "settembre";/ - "ottobre";/ - "novembre";/ - "dicembre" +abday "Dom";"Lun";/ + "Mar";"Mer";/ + "Gio";"Ven";/ + "Sab" +day "Domenica";/ + "Luned";/ + "Marted";/ + "Mercoled";/ + "Gioved";/ + "Venerd";/ + "Sabato" +abmon "Gen";"Feb";/ + "Mar";"Apr";/ + "Mag";"Giu";/ + "Lug";"Ago";/ + "Set";"Ott";/ + "Nov";"Dic" +mon "Gennaio";/ + "Febbraio";/ + "Marzo";/ + "Aprile";/ + "Maggio";/ + "Giugno";/ + "Luglio";/ + "Agosto";/ + "Settembre";/ + "Ottobre";/ + "Novembre";/ + "Dicembre" d_t_fmt "%a %-d %b %Y, %T" d_fmt "%d//%m//%Y" t_fmt "%T" @@ -158,7 +158,7 @@ country_ab3 "ITA" country_num 380 country_isbn "978-88,979-12" country_car "I" -lang_name "italiano" +lang_name "Italiano" lang_ab "it" lang_term "ita" lang_lib "ita" PATCH_END ‐‐‐‐‐‐‐ Original Message ‐‐‐‐‐‐‐ On Thursday, December 2nd, 2021 at 10:54 AM, Salonia Matteo via Libc-locales wrote: > Greetings, > > I have noticed glibc's it_IT locale has quite a few mistakes: > > - Abbreviated and Full week days (e.g. Monday/Lunedì) do not have a capital letter (should be Lunedì but it is lunedì) > - Abbreviated and Full months have the same problem as above, e.g. gennaio should be Gennaio > - Language name (lang_name) still has the same problem as above (italiano instead of Italiano) > > This bug is not present in other locales, as far as I know. > > Latest source check date: 02/12/2021 @ 10:45 > > Version found in version.h: "2.34.9000" (development) > > I have made the following patch: fix-italian.patch (you can find it in the attachments) > > Here's a preview: > > [patch.png]