aboutsummaryrefslogtreecommitdiff
path: root/module/calp/entry-points/ical.scm
diff options
context:
space:
mode:
Diffstat (limited to 'module/calp/entry-points/ical.scm')
-rw-r--r--module/calp/entry-points/ical.scm8
1 files changed, 5 insertions, 3 deletions
diff --git a/module/calp/entry-points/ical.scm b/module/calp/entry-points/ical.scm
index 938b0b35..e164c340 100644
--- a/module/calp/entry-points/ical.scm
+++ b/module/calp/entry-points/ical.scm
@@ -5,14 +5,16 @@
:use-module (vcomponent formats ical output)
:use-module (ice-9 getopt-long)
:use-module (datetime)
+ :use-module (calp translation)
+ :use-module (calp translation)
)
(define opt-spec
- '((from (value #t) (single-char #\F))
+ `((from (value #t) (single-char #\F))
(to (value #t) (single-char #\T)
- (description "Returns all elements between these two dates."))
+ (description ,(_ "Returns all elements between these two dates.")))
(help (single-char #\h)
- (description "Print this help."))))
+ (description ,(_ "Print this help.")))))
(define (main args)
(define opts (getopt-long args (getopt-opt opt-spec)))