guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/01: ui: Keep the word "Copyright" untranslated.


From: Ludovic Courtès
Subject: 01/01: ui: Keep the word "Copyright" untranslated.
Date: Mon, 2 Jan 2017 22:15:19 +0000 (UTC)

civodul pushed a commit to branch master
in repository guix.

commit d925cdc35f1ffe79f6e17b2284fa20ca3082b0fe
Author: Ludovic Courtès <address@hidden>
Date:   Mon Jan 2 23:13:46 2017 +0100

    ui: Keep the word "Copyright" untranslated.
    
    Suggested by John Darrington <address@hidden>.
    
    * guix/ui.scm (show-version-and-exit): Make "Copyright (C) 2017"
    untranslatable, except "(C)" itself, like Gnulib's version-etc does.
---
 guix/ui.scm |    8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/guix/ui.scm b/guix/ui.scm
index dba41a0..7d4c437 100644
--- a/guix/ui.scm
+++ b/guix/ui.scm
@@ -306,7 +306,13 @@ exiting.  ARGS is the list of arguments received by the 
'throw' handler."
   "Display version information for COMMAND and `(exit 0)'."
   (simple-format #t "~a (~a) ~a~%"
                  command %guix-package-name %guix-version)
-  (display (_ "Copyright (C) 2017 the Guix authors
+  (format #t "Copyright ~a 2017 ~a"
+          ;; TRANSLATORS: Translate "(C)" to the copyright symbol
+          ;; (C-in-a-circle), if this symbol is available in the user's
+          ;; locale.  Otherwise, do not translate "(C)"; leave it as-is.  */
+          (_ "(C)")
+          (_ "the Guix authors\n"))
+  (display (_"\
 License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
 This is free software: you are free to change and redistribute it.
 There is NO WARRANTY, to the extent permitted by law.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]