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 @@ fails." (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)