aboutsummaryrefslogtreecommitdiff
path: root/module/calp/html/config.scm
diff options
context:
space:
mode:
Diffstat (limited to 'module/calp/html/config.scm')
-rw-r--r--module/calp/html/config.scm5
1 files changed, 3 insertions, 2 deletions
diff --git a/module/calp/html/config.scm b/module/calp/html/config.scm
index 6bd1e0ec..08a4b2e8 100644
--- a/module/calp/html/config.scm
+++ b/module/calp/html/config.scm
@@ -1,11 +1,12 @@
(define-module (calp html config)
:use-module (hnh util)
:use-module (calp util config)
+ :use-module (calp translation)
)
(define-public debug (make-parameter #f))
(define-config debug #f
- description: "Places the generated thingy in debug mode"
+ description: (_ "Places the generated thingy in debug mode")
post: debug)
@@ -13,6 +14,6 @@
;;; but this works for the time being.
(define-public edit-mode (make-parameter #t))
(define-config edit-mode #t
- description: "Makes the document editable"
+ description: (_ "Makes the document editable")
post: edit-mode)