aboutsummaryrefslogtreecommitdiff
path: root/src/guile/skribilo/package/lncs.scm
diff options
context:
space:
mode:
authorLudovic Courtès2018-03-30 15:04:09 +0200
committerLudovic Courtès2018-03-30 15:42:50 +0200
commit6c7778dd9ec5e6cdc635238619dd18bfecfdf555 (patch)
treedf09548cc8d6185683d57e20ad0fcfb7479bc001 /src/guile/skribilo/package/lncs.scm
parentc3d1019b8f2d5af0637ae2f055099e51b9706675 (diff)
downloadskribilo-6c7778dd9ec5e6cdc635238619dd18bfecfdf555.tar.gz
skribilo-6c7778dd9ec5e6cdc635238619dd18bfecfdf555.tar.lz
skribilo-6c7778dd9ec5e6cdc635238619dd18bfecfdf555.zip
syntax: Rename '_' to 'G_' to avoid issues on Guile 2.2.
Failing to do that, literal '_' would not match in contexts such as 'match' patterns on Guile 2.2. * src/guile/skribilo/utils/syntax.scm (_): Rename to... (G_): ... this. * po/Makevars (XGETTEXT_OPTIONS): Adjust accordingly. * src/guile/skribilo.scm, src/guile/skribilo/ast.scm, src/guile/skribilo/biblio.scm, src/guile/skribilo/biblio/author.scm, src/guile/skribilo/condition.scm, src/guile/skribilo/engine.scm, src/guile/skribilo/engine/info.scm, src/guile/skribilo/engine/lout.scm, src/guile/skribilo/index.scm, src/guile/skribilo/package/base.scm, src/guile/skribilo/package/lncs.scm, src/guile/skribilo/reader/rss-2.scm, src/guile/skribilo/source.scm, src/guile/skribilo/sui.scm, src/guile/skribilo/biblio/template.scm, src/guile/skribilo/verify.scm: Use 'G_' instead of '_'.
Diffstat (limited to 'src/guile/skribilo/package/lncs.scm')
-rw-r--r--src/guile/skribilo/package/lncs.scm16
1 files changed, 8 insertions, 8 deletions
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)