From e5fa18b6285c59b6e9f8debe0ffde9ef5055f3a2 Mon Sep 17 00:00:00 2001 From: Rostislav Svoboda Date: Sun, 12 May 2024 09:34:29 +0100 Subject: guix: channels: Handle single case with authenticating message. * guix/channels.scm (authenticate-channel): Handle single case with authenticating message. Change-Id: I7759607f37405e6d3bd4b7f5958fd11d908db204 Reviewed-by: Dale Mellor Signed-off-by: Christopher Baines --- guix/channels.scm | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/guix/channels.scm b/guix/channels.scm index 51024dcad4..0d7bc541cc 100644 --- a/guix/channels.scm +++ b/guix/channels.scm @@ -3,6 +3,8 @@ ;;; Copyright © 2018 Ricardo Wurmus ;;; Copyright © 2019 Jan (janneke) Nieuwenhuizen ;;; Copyright © 2021 Brice Waegeneire +;;; Copyright © 2024 Julien Lepiller +;;; Copyright © 2024 Rostislav Svoboda ;;; ;;; This file is part of GNU Guix. ;;; @@ -364,8 +366,11 @@ (define keyring-reference (define (make-reporter start-commit end-commit commits) (format (current-error-port) - (G_ "Authenticating channel '~a', commits ~a to ~a (~h new \ -commits)...~%") + (N_ "Authenticating channel '~a', commits ~a to ~a (~h new \ +commit)...~%" + "Authenticating channel '~a', commits ~a to ~a (~h new \ +commits)...~%" + (length commits)) (channel-name channel) (commit-short-id start-commit) (commit-short-id end-commit) -- cgit v1.2.3