diff options
author | Ludovic Courtès | 2016-03-01 14:44:24 +0100 |
---|---|---|
committer | Ludovic Courtès | 2016-03-01 14:44:24 +0100 |
commit | dfcdee7f3ec224cab9bcc6e26a331b725e080043 (patch) | |
tree | 1a81de112b3f0969f4be0f863498b4826f3b60cb /src | |
parent | b1612cf3f3673f43e798a39e30ed47bf9053ab01 (diff) | |
download | skribilo-dfcdee7f3ec224cab9bcc6e26a331b725e080043.tar.gz skribilo-dfcdee7f3ec224cab9bcc6e26a331b725e080043.tar.lz skribilo-dfcdee7f3ec224cab9bcc6e26a331b725e080043.zip |
'base' package: Add note about non-translatable bits.
* src/guile/skribilo/package/base.scm (source): Add 'TRANSLATORS'
comment. Suggested by Anders Jonsson <anders.jonsson@norsjovallen.se>.
Diffstat (limited to 'src')
-rw-r--r-- | src/guile/skribilo/package/base.scm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/guile/skribilo/package/base.scm b/src/guile/skribilo/package/base.scm index 084493e..f5a4829 100644 --- a/src/guile/skribilo/package/base.scm +++ b/src/guile/skribilo/package/base.scm @@ -1,7 +1,7 @@ ;;; base.scm -- The base markup package of Skribe/Skribilo. ;;; -*- coding: iso-8859-1 -*- ;;; -;;; Copyright 2005, 2006, 2007, 2008, 2009, 2013, 2015 Ludovic Courtès <ludo@gnu.org> +;;; Copyright 2005, 2006, 2007, 2008, 2009, 2013, 2015, 2016 Ludovic Courtès <ludo@gnu.org> ;;; Copyright 2003, 2004 Manuel Serrano ;;; ;;; @@ -535,6 +535,10 @@ (cond ((and (not (null? body)) (or file start stop definition)) (skribe-error 'source + ;; TRANSLATORS: 'file', 'start', 'stop', and + ;; 'definition' denote parameter names; they must not + ;; be translated. Likewise for the 3 subsequent + ;; strings. (_ "file, start/stop, and definition\ cannot be combined with body") body)) |