diff options
author | Ludovic Courtès | 2015-06-21 22:18:18 +0200 |
---|---|---|
committer | Ludovic Courtès | 2015-06-21 22:21:14 +0200 |
commit | 12677814ff10cdf466859d7fcf839e09d49c914a (patch) | |
tree | df23867d226b450b967bc6b843836f30da6f9732 /src/guile/skribilo/engine | |
parent | 685fc06e6aa633bd18bab117ecbbcf179c1579bf (diff) | |
download | skribilo-12677814ff10cdf466859d7fcf839e09d49c914a.tar.gz skribilo-12677814ff10cdf466859d7fcf839e09d49c914a.tar.lz skribilo-12677814ff10cdf466859d7fcf839e09d49c914a.zip |
Assorted improvements of user-facing messages.
* src/guile/skribilo.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/sui.scm: Tweak messages for consistency, as
suggested by Benno Schulenberg <coordinator@translationproject.org>.
Diffstat (limited to 'src/guile/skribilo/engine')
-rw-r--r-- | src/guile/skribilo/engine/info.scm | 4 | ||||
-rw-r--r-- | src/guile/skribilo/engine/lout.scm | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/guile/skribilo/engine/info.scm b/src/guile/skribilo/engine/info.scm index 7cf2fad..ce448d9 100644 --- a/src/guile/skribilo/engine/info.scm +++ b/src/guile/skribilo/engine/info.scm @@ -1,7 +1,7 @@ ;;; info.scm -- GNU Info engine. ;;; -*- coding: iso-8859-1 -*- ;;; -;;; Copyright 2008, 2009, 2012 Ludovic Courtès <ludo@gnu.org> +;;; Copyright 2008, 2009, 2012, 2015 Ludovic Courtès <ludo@gnu.org> ;;; Copyright 2001, 2002 Manuel Serrano ;;; ;;; @@ -806,7 +806,7 @@ (string? (markup-option n :file))) :action (lambda (n e) (if (markup-option n :url) - (skribe-warning/ast 1 n (_ "image URLs not supported")) + (skribe-warning/ast 1 n (_ "image URLs are not supported")) (let ((f (let ((f (markup-option n :file))) (convert-image f '("png" "gif" "jpg")))) (h (markup-option n :height)) diff --git a/src/guile/skribilo/engine/lout.scm b/src/guile/skribilo/engine/lout.scm index cf5bd46..a059af1 100644 --- a/src/guile/skribilo/engine/lout.scm +++ b/src/guile/skribilo/engine/lout.scm @@ -2,7 +2,7 @@ ;;; -*- coding: iso-8859-1 -*- ;;; ;;; Copyright 2004, 2005, 2006, 2007, 2008, 2009, 2010, -;;; 2012 Ludovic Courtès <ludo@gnu.org> +;;; 2012, 2015 Ludovic Courtès <ludo@gnu.org> ;;; ;;; ;;; This file is part of Skribilo. @@ -2422,7 +2422,7 @@ '("eps")))))) (cond (url ;; maybe we should run `wget' then? :-) (skribe-warning/ast 1 n - (_ "image URLs not supported"))) + (_ "image URLs are not supported"))) ((string? img) (if width |