Skip to content

Commit 6d0b9ab

Browse files
Koan-Botclaude
authored andcommitted
fix: correct Greek September spelling (Σεπτεμτου → Σεπτεμβρίου)
The genitive form of September was missing the βρί syllable, rendering as "Σεπτεμτου" instead of the correct "Σεπτεμβρίου". Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 507bd76 commit 6d0b9ab

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

lib/Date/Language/Greek.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ our (@DoW, @DoWs, @MoY, @MoYs, @AMPM, @Dsuf, %MoY, %DoW);
4343
"Ιουνίου",
4444
"Ιουλίου",
4545
"Αυγούστου",
46-
"Σεπτεμτου",
46+
"Σεπτεμβρίου",
4747
"Οκτωβρίου",
4848
"Νοεμβρίου",
4949
"Δεκεμβρίου",

t/lang-data.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ my %expected = (
2626
French => { A => "mardi", a => "mar", B => "septembre", b => "sep" },
2727
Gedeo => { A => "Masano", a => "Mas", B => "Canissa", b => "Can" },
2828
German => { A => "Dienstag", a => "Di", B => "September", b => "Sep" },
29-
Greek => { A => "\x{3a4}\x{3c1}\x{3af}\x{3c4}\x{3b7}", a => "\x{3a4}\x{3c1}", B => "\x{3a3}\x{3b5}\x{3c0}\x{3c4}\x{3b5}\x{3bc}\x{3c4}\x{3bf}\x{3c5}", b => "\x{3a3}\x{3b5}\x{3c0}" },
29+
Greek => { A => "\x{3a4}\x{3c1}\x{3af}\x{3c4}\x{3b7}", a => "\x{3a4}\x{3c1}", B => "\x{3a3}\x{3b5}\x{3c0}\x{3c4}\x{3b5}\x{3bc}\x{3b2}\x{3c1}\x{3af}\x{3bf}\x{3c5}", b => "\x{3a3}\x{3b5}\x{3c0}" },
3030
Hungarian => { A => "Kedd", a => "Ked", B => "Szeptember", b => "Sze" },
3131
Icelandic => { A => "\x{de}ri\x{f0}judagur", a => "\x{de}ri", B => "September", b => "Sep" },
3232
Italian => { A => "Martedi", a => "Mar", B => "Settembre", b => "Set" },

0 commit comments

Comments
 (0)