BUGFIX: render issues index page

This commit is contained in:
Simon Martens
2024-12-23 21:52:06 +01:00
parent 0abb3b1ad7
commit d8892941a6
2 changed files with 12 additions and 4 deletions

View File

@@ -13,6 +13,14 @@ type Weekday struct {
No int
}
func (m Month) String() string {
return m.Full
}
func (w Weekday) String() string {
return w.Full
}
var TRANSLM = []Month{
{"NotAvailable", "NA", "0", 0},
{"Januar", "Jan", "1", 1},