package: Fix i18n of the number of packages message.
* guix/scripts/package.scm (guix-package)[process-actions]: Use `N_' for i18n of the number of packages message.
This commit is contained in:
parent
a85060efec
commit
fe1818e26a
|
@ -846,11 +846,13 @@ more information.~%"))
|
||||||
(current-error-port)
|
(current-error-port)
|
||||||
(%make-void-port "w"))))
|
(%make-void-port "w"))))
|
||||||
(build-derivations (%store) (list prof-drv)))
|
(build-derivations (%store) (list prof-drv)))
|
||||||
(begin
|
(let ((count (length packages)))
|
||||||
(switch-symlinks name prof)
|
(switch-symlinks name prof)
|
||||||
(switch-symlinks profile name)
|
(switch-symlinks profile name)
|
||||||
(format #t (_ "~a packages in profile~%")
|
(format #t (N_ "~a package in profile~%"
|
||||||
(length packages))
|
"~a packages in profile~%"
|
||||||
|
count)
|
||||||
|
count)
|
||||||
(display-search-paths packages
|
(display-search-paths packages
|
||||||
profile))))))))))
|
profile))))))))))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue