aboutsummaryrefslogtreecommitdiff
path: root/src/guile/skribilo/package
diff options
context:
space:
mode:
Diffstat (limited to 'src/guile/skribilo/package')
-rw-r--r--src/guile/skribilo/package/base.scm12
-rw-r--r--src/guile/skribilo/package/lncs.scm16
2 files changed, 14 insertions, 14 deletions
diff --git a/src/guile/skribilo/package/base.scm b/src/guile/skribilo/package/base.scm
index f5a4829..fa89c81 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, 2016 Ludovic Courtès <ludo@gnu.org>
+;;; Copyright 2005, 2006, 2007, 2008, 2009, 2013, 2015, 2016, 2018 Ludovic Courtès <ludo@gnu.org>
;;; Copyright 2003, 2004 Manuel Serrano
;;;
;;;
@@ -539,21 +539,21 @@
;; 'definition' denote parameter names; they must not
;; be translated. Likewise for the 3 subsequent
;; strings.
- (_ "file, start/stop, and definition\
+ (G_ "file, start/stop, and definition\
cannot be combined with body")
body))
((and start stop definition)
(skribe-error 'source
- (_ "start/stop are exclusive with a definition")
+ (G_ "start/stop are exclusive with a definition")
body))
((and (or start stop definition) (not file))
(skribe-error 'source
- (_ "start/stop and definition require a\
+ (G_ "start/stop and definition require a\
file specification")
file))
((and definition (not language))
(skribe-error 'source
- (_ "definition requires a language specification")
+ (G_ "definition requires a language specification")
definition))
((and file (not (string? file)))
(invalid-argument-error 'source file 'file))
@@ -563,7 +563,7 @@
(invalid-argument-error 'source stop 'stop))
((and (integer? start) (integer? stop) (> start stop))
(skribe-error 'source
- (_ "start line is greater than stop line")
+ (G_ "start line is greater than stop line")
(format #f "~a/~a" start stop)))
((and language (not (language? language)))
(invalid-argument-error 'source language 'language))
diff --git a/src/guile/skribilo/package/lncs.scm b/src/guile/skribilo/package/lncs.scm
index 8a3acbe..4678e76 100644
--- a/src/guile/skribilo/package/lncs.scm
+++ b/src/guile/skribilo/package/lncs.scm
@@ -2,7 +2,7 @@
;;; -*- coding: iso-8859-1 -*-
;;;
;;; Copyright 2003, 2004 Manuel Serrano
-;;; Copyright 2007, 2015 Ludovic Courtès <ludovic.courtes@laas.fr>
+;;; Copyright 2007, 2015, 2018 Ludovic Courtès <ludovic.courtes@laas.fr>
;;;
;;;
;;; This file is part of Skribilo.
@@ -214,20 +214,20 @@
`(author ": " (or title url documenturl) ". "
;; TRANSLATORS: The next few msgids are fragments of
;; bibliography items.
- ,(_ "Technical Report") " " number
+ ,(G_ "Technical Report") " " number
(", " institution)
(", " address)
(", " pages)
(" (" year ")")))
((article)
`(author ": " (or title url documenturl) ". "
- ,(_ "In: ") journal ", " volume
+ ,(G_ "In: ") journal ", " volume
("(" number ")") ", "
(address ", ")
("pp. " pages) (" (" year ")")))
((inproceedings)
'(author ": " (or title url documenturl) ". "
- ,(_ "In: ") booktitle ", "
+ ,(G_ "In: ") booktitle ", "
(series)
("(" number "), ")
(publisher ", ")
@@ -243,14 +243,14 @@
(", pp. " pages)))
((inbook)
`(author ": " (or title url documenturl) ". "
- ,(_ "In: ") booktitle ", " publisher
- (", " editor " (" ,(_ "editor") ")")
- (", " ,(_ "Chapter ") chapter)
+ ,(G_ "In: ") booktitle ", " publisher
+ (", " editor " (" ,(G_ "editor") ")")
+ (", " ,(G_ "Chapter ") chapter)
(", pp. " pages)
(" (" year ")")))
((phdthesis)
`(author ": " (or title url documenturl)
- ", " ,(_ "PhD Thesis")
+ ", " ,(G_ "PhD Thesis")
(", " (or school institution))
(", " address)
(", " month)