diff options
author | Ludovic Courtès | 2015-06-21 22:11:01 +0200 |
---|---|---|
committer | Ludovic Courtès | 2015-06-21 22:11:45 +0200 |
commit | 685fc06e6aa633bd18bab117ecbbcf179c1579bf (patch) | |
tree | 3ab764562f813737b31a538e29a9c70614101ffa /src/guile | |
parent | c9a46e104098f0e56873915cef5744924bc19d7b (diff) | |
download | skribilo-685fc06e6aa633bd18bab117ecbbcf179c1579bf.tar.gz skribilo-685fc06e6aa633bd18bab117ecbbcf179c1579bf.tar.lz skribilo-685fc06e6aa633bd18bab117ecbbcf179c1579bf.zip |
biblio: Internationalize the word "In".
Reported by Benno Schulenberg <coordinator@translationproject.org>.
* src/guile/skribilo/biblio/template.scm (make-bib-entry-template/default):
Gettextize "In".
Diffstat (limited to 'src/guile')
-rw-r--r-- | src/guile/skribilo/biblio/template.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/guile/skribilo/biblio/template.scm b/src/guile/skribilo/biblio/template.scm index 2f9c838..6cbeed8 100644 --- a/src/guile/skribilo/biblio/template.scm +++ b/src/guile/skribilo/biblio/template.scm @@ -157,13 +157,13 @@ (", pp. " pages) ".")) ((article) '(author ". " (or title url documenturl) ". " - "In " journal ", " volume + ,(_ "In ") journal ", " volume ("(" number ") ")", " (address ", ") month " " year ", " ("pp. " pages) ".")) ((inproceedings) '(author ". " (or title url documenturl) ". " - "In " booktitle ", " + ,(_ "In ") booktitle ", " (series ", ") ("(" number ")") ("pp. " pages ", ") @@ -179,7 +179,7 @@ (", pp. " pages) ".")) ((inbook) `(author ". " (or title url documenturl) ". " - "In " booktitle ", " publisher + ,(_ "In ") booktitle ", " publisher (", " editor " (" ,(_ "editor") ")") (", " ,(_ "Chapter ") chapter) (", pp. " pages) ", " |