From 8b0cbceec2487f50dd6c950d766e36714affdce0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Sat, 11 Jun 2022 22:20:13 +0200 Subject: Fix a few strings where translations wheren't applied. --- module/calp/html/vcomponent.scm | 4 ++-- module/calp/server/routes.scm | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'module') diff --git a/module/calp/html/vcomponent.scm b/module/calp/html/vcomponent.scm index 574ad954..9e70f910 100644 --- a/module/calp/html/vcomponent.scm +++ b/module/calp/html/vcomponent.scm @@ -481,7 +481,7 @@ ;; description in sidebar / tab of popup ;; Template data for (define-public (description-template) - '(template + `(template (@ (id "vevent-description")) (div (@ (class " vevent eventtext summary-tab " ())) (h3 ((span (@ (class "repeating")) @@ -563,7 +563,7 @@ (dd (input-list (@ (name ,name)) (input (@ (type "number") (min ,min) (max ,max))))))) - '((bysecond ,(_ "By Second") 0 60) + `((bysecond ,(_ "By Second") 0 60) (byminute ,(_ "By Minute") 0 59) (byhour ,(_ "By Hour") 0 23) (bymonthday ,(_ "By Month Day") -31 31) ; except 0 diff --git a/module/calp/server/routes.scm b/module/calp/server/routes.scm index 0876aed4..896219cd 100644 --- a/module/calp/server/routes.scm +++ b/module/calp/server/routes.scm @@ -66,7 +66,7 @@ (drop-right 1) (xcons "/static") path-join))) - "Return up"))) + ,(_ "Return up")))) ,@(map (lambda (k) (let* ((stat (lstat (path-append prefix dir k)))) `(tr (td ,(case (stat:type stat) @@ -440,7 +440,7 @@ '((content-type text/html)) (sxml->html-string `(html - (head (title (_ "Calp directory listing for ") path) + (head (title ,(_ "Calp directory listing for ") path) ,((@ (calp html components) include-css) "/static/directory-listing.css")) (body ,(directory-table (static-dir) path)))))) (lambda (err proc fmt fmt-args data) -- cgit v1.2.3