]> granicus.if.org Git - neomutt/commitdiff
Split Copyright and Thanks in help output.
authorOlaf Hering <olaf@aepfle.de>
Tue, 16 Jan 2018 08:40:06 +0000 (09:40 +0100)
committerRichard Russon <rich@flatcap.org>
Tue, 16 Jan 2018 23:57:33 +0000 (23:57 +0000)
The Copyright string is changing often, and its content is obvious.
It does not need translation. The remaining string can be translated.
This change avoids a stale translation once one of the years change.

Signed-off-by: Olaf Hering <olaf@aepfle.de>
version.c

index b9ebadbe38cf9899887e102e1ed5b392d1016a80..7811cddd480c38c46fcb4bafa94a862902b6ebdd 100644 (file)
--- a/version.c
+++ b/version.c
@@ -48,18 +48,19 @@ extern unsigned char cc_cflags[];
 extern unsigned char configure_options[];
 
 static const char *Copyright =
-    N_("Copyright (C) 1996-2016 Michael R. Elkins <me@mutt.org>\n"
-       "Copyright (C) 1996-2002 Brandon Long <blong@fiction.net>\n"
-       "Copyright (C) 1997-2009 Thomas Roessler <roessler@does-not-exist.org>\n"
-       "Copyright (C) 1998-2005 Werner Koch <wk@isil.d.shuttle.de>\n"
-       "Copyright (C) 1999-2017 Brendan Cully <brendan@kublai.com>\n"
-       "Copyright (C) 1999-2002 Tommi Komulainen <Tommi.Komulainen@iki.fi>\n"
-       "Copyright (C) 2000-2004 Edmund Grimley Evans <edmundo@rano.org>\n"
-       "Copyright (C) 2006-2009 Rocco Rutte <pdmef@gmx.net>\n"
-       "Copyright (C) 2014-2017 Kevin J. McCarthy <kevin@8t8.us>\n"
-       "Copyright (C) 2015-2017 Richard Russon <rich@flatcap.org>\n"
-       "\n"
-       "Many others not mentioned here contributed code, fixes,\n"
+    "Copyright (C) 1996-2016 Michael R. Elkins <me@mutt.org>\n"
+    "Copyright (C) 1996-2002 Brandon Long <blong@fiction.net>\n"
+    "Copyright (C) 1997-2009 Thomas Roessler <roessler@does-not-exist.org>\n"
+    "Copyright (C) 1998-2005 Werner Koch <wk@isil.d.shuttle.de>\n"
+    "Copyright (C) 1999-2017 Brendan Cully <brendan@kublai.com>\n"
+    "Copyright (C) 1999-2002 Tommi Komulainen <Tommi.Komulainen@iki.fi>\n"
+    "Copyright (C) 2000-2004 Edmund Grimley Evans <edmundo@rano.org>\n"
+    "Copyright (C) 2006-2009 Rocco Rutte <pdmef@gmx.net>\n"
+    "Copyright (C) 2014-2017 Kevin J. McCarthy <kevin@8t8.us>\n"
+    "Copyright (C) 2015-2017 Richard Russon <rich@flatcap.org>\n";
+
+static const char *Thanks =
+    N_("Many others not mentioned here contributed code, fixes,\n"
        "and suggestions.\n");
 
 static const char *License = N_(
@@ -435,7 +436,8 @@ void print_version(void)
 void print_copyright(void)
 {
   puts(mutt_make_version());
-  puts(_(Copyright));
+  puts(Copyright);
+  puts(_(Thanks));
   puts(_(License));
   puts(_(Obtaining));
   puts(_(ReachingUs));