aboutsummaryrefslogtreecommitdiff
path: root/module/vcomponent
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2022-04-11 19:41:31 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2022-04-11 19:41:57 +0200
commit8ce606878812cfbd4be0c1aa58ead8141b0f3f46 (patch)
tree8c704e13be0cb75e5c62e424cf3aeb58743134d2 /module/vcomponent
parentRemove location lines from po files. (diff)
downloadcalp-8ce606878812cfbd4be0c1aa58ead8141b0f3f46.tar.gz
calp-8ce606878812cfbd4be0c1aa58ead8141b0f3f46.tar.xz
Translate newly added strings.
Diffstat (limited to 'module/vcomponent')
-rw-r--r--module/vcomponent/formats/vdir/save-delete.scm9
1 files changed, 7 insertions, 2 deletions
diff --git a/module/vcomponent/formats/vdir/save-delete.scm b/module/vcomponent/formats/vdir/save-delete.scm
index ee97f331..82f678da 100644
--- a/module/vcomponent/formats/vdir/save-delete.scm
+++ b/module/vcomponent/formats/vdir/save-delete.scm
@@ -31,7 +31,10 @@
(unless (eq? 'vdir (prop calendar '-X-HNH-SOURCETYPE))
(scm-error 'wrong-type-arg "save-event"
- (_ "Can only save events belonging to vdir calendars. Calendar is of type ~s")
+ (string-append
+ (_ "Can only save events belonging to vdir calendars.")
+ " "
+ (_ "Calendar is of type ~s"))
(list (prop calendar '-X-HNH-SOURCETYPE))
#f))
@@ -51,7 +54,9 @@
(define calendar (parent event))
(unless (eq? 'vdir (prop calendar '-X-HNH-SOURCETYPE))
(scm-error 'wrong-type-arg "remove-event"
- (_ "Can only remove events belonging to vdir calendars. Calendar is of type ~s")
+ (string-append (_ "Can only remove events belonging to vdir calendars.")
+ " "
+ (_ "Calendar is of type ~s"))
(list (prop calendar '-X-HNH-SOURCETYPE))
#f))
(delete-file (prop event '-X-HNH-FILENAME)))