Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions ChangeLog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@
Entries may not always be in chronological/commit order.
See license at the end of file. */

2026-09-01 16:11 UTC+0200 Aleksander Czajczynski (hb fki.pl)
* src/lang/l_pl.c
* PL language rules normalize that the first letter of a month name
and day of the week is not capital. Comparing also to l_cs.c, l_sk.c
so it's not a standard in Harbour to keep it Upper.

2026-09-01 15:52 UTC+0200 Aleksander Czajczynski (hb fki.pl)
* contrib/hbfbird/firebird.c
* contrib/hbfbird/tfirebrd.prg
Expand Down
38 changes: 19 additions & 19 deletions src/lang/l_pl.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,28 +16,28 @@ static HB_LANG s_lang =

/* Month names */

"Styczeń",
"Luty",
"Marzec",
"Kwiecień",
"Maj",
"Czerwiec",
"Lipiec",
"Sierpień",
"Wrzesień",
"Październik",
"Listopad",
"Grudzień",
"styczeń",
"luty",
"marzec",
"kwiecień",
"maj",
"czerwiec",
"lipiec",
"sierpień",
"wrzesień",
"październik",
"listopad",
"grudzień",

/* Day names */

"Niedziela",
"Poniedziałek",
"Wtorek",
"Środa",
"Czwartek",
"Piątek",
"Sobota",
"niedziela",
"poniedziałek",
"wtorek",
"środa",
"czwartek",
"piątek",
"sobota",

/* CA-Cl*pper compatible natmsg items */

Expand Down
Loading