summary refs log tree commit diff
path: root/guix/ui.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2021-02-23 17:00:32 +0100
committerLudovic Courtès <ludo@gnu.org>2021-02-24 23:44:10 +0100
commitb288d0e74950c0471c19e62de6a4094a4b02c828 (patch)
tree922ac12d45f02bbe3789b63ba5b8c3c0ffec542c /guix/ui.scm
parent570c9c97bf64d9d0350044742aef403ad576b4ad (diff)
downloadguix-b288d0e74950c0471c19e62de6a4094a4b02c828.tar.gz
ui: Bug-report URL in '--help' can be translated.
* guix/ui.scm (show-bug-report-information): Add "/en" to the help URL
and pass it to 'G_'.
Diffstat (limited to 'guix/ui.scm')
-rw-r--r--guix/ui.scm4
1 files changed, 3 insertions, 1 deletions
diff --git a/guix/ui.scm b/guix/ui.scm
index 9466a003e0..7fbd4c63a2 100644
--- a/guix/ui.scm
+++ b/guix/ui.scm
@@ -552,7 +552,9 @@ Report bugs to: ~a.") %guix-bug-report-address)
 ~a home page: <~a>") %guix-package-name %guix-home-page-url)
   (format #t (G_ "
 General help using Guix and GNU software: <~a>")
-           "https://guix.gnu.org/help/")
+          ;; TRANSLATORS: Change the "/en" bit of this URL appropriately if
+          ;; the web site is translated in your language.
+          (G_ "https://guix.gnu.org/en/help/"))
   (newline))
 
 (define (augmented-system-error-handler file)