From: Olaf Hering Date: Tue, 16 Jan 2018 08:40:06 +0000 (+0100) Subject: Split Copyright and Thanks in help output. X-Git-Tag: neomutt-20180223~45^2~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1a028043810246b34ebdf4961b132347de3e7849;p=neomutt Split Copyright and Thanks in help output. 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 --- diff --git a/version.c b/version.c index b9ebadbe3..7811cddd4 100644 --- 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 \n" - "Copyright (C) 1996-2002 Brandon Long \n" - "Copyright (C) 1997-2009 Thomas Roessler \n" - "Copyright (C) 1998-2005 Werner Koch \n" - "Copyright (C) 1999-2017 Brendan Cully \n" - "Copyright (C) 1999-2002 Tommi Komulainen \n" - "Copyright (C) 2000-2004 Edmund Grimley Evans \n" - "Copyright (C) 2006-2009 Rocco Rutte \n" - "Copyright (C) 2014-2017 Kevin J. McCarthy \n" - "Copyright (C) 2015-2017 Richard Russon \n" - "\n" - "Many others not mentioned here contributed code, fixes,\n" + "Copyright (C) 1996-2016 Michael R. Elkins \n" + "Copyright (C) 1996-2002 Brandon Long \n" + "Copyright (C) 1997-2009 Thomas Roessler \n" + "Copyright (C) 1998-2005 Werner Koch \n" + "Copyright (C) 1999-2017 Brendan Cully \n" + "Copyright (C) 1999-2002 Tommi Komulainen \n" + "Copyright (C) 2000-2004 Edmund Grimley Evans \n" + "Copyright (C) 2006-2009 Rocco Rutte \n" + "Copyright (C) 2014-2017 Kevin J. McCarthy \n" + "Copyright (C) 2015-2017 Richard Russon \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));