aboutsummaryrefslogtreecommitdiff
path: root/module
diff options
context:
space:
mode:
Diffstat (limited to 'module')
-rw-r--r--module/output/html.scm4
1 files changed, 3 insertions, 1 deletions
diff --git a/module/output/html.scm b/module/output/html.scm
index 39172318..fe877ca0 100644
--- a/module/output/html.scm
+++ b/module/output/html.scm
@@ -243,7 +243,9 @@
(class "hidelink")) ,d))))))
`(table (@ (class "small-calendar"))
- (thead (tr ,@(map (lambda (d) `(td ,d)) '(MÅ TI ON TO FR LÖ SÖ))))
+ ;; NOTE Sunday first since my code assumes that is the first day of the week.
+ ;; TODO make displayed first day of the week configurable.
+ (thead (tr ,@(map (lambda (d) `(td ,d)) '(SÖ MÅ TI ON TO FR LÖ))))
(tbody ,@(let recur
((lst (let* ((month (month date))
(month-len (days-in-month date))