[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/05: substitute: Internationalize signature and download messages.
From: |
Ludovic Courtès |
Subject: |
03/05: substitute: Internationalize signature and download messages. |
Date: |
Wed, 20 Apr 2016 21:29:52 +0000 |
civodul pushed a commit to branch master
in repository guix.
commit f954c9b5da256009fc41483e8fccd9bee1504870
Author: Ludovic Courtès <address@hidden>
Date: Wed Apr 20 23:16:02 2016 +0200
substitute: Internationalize signature and download messages.
* guix/scripts/substitute.scm (assert-valid-narinfo): Use gettext for
messages.
---
guix/scripts/substitute.scm | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/guix/scripts/substitute.scm b/guix/scripts/substitute.scm
index 0f0677f..e0a694a 100755
--- a/guix/scripts/substitute.scm
+++ b/guix/scripts/substitute.scm
@@ -400,8 +400,10 @@ or is signed by an unauthorized key."
(when verbose?
;; Visually separate substitutions with a newline.
(format (current-error-port)
- "~%Found valid signature for ~a~%From ~a~%"
- (narinfo-path narinfo)
+ (_ "~%Found valid signature for ~a~%")
+ (narinfo-path narinfo))
+ (format (current-error-port)
+ (_ "From ~a~%")
(uri->string (narinfo-uri narinfo)))))
narinfo))))