From f8ee1842bb6c5b78fbc154628a954e5d234b57f0 Mon Sep 17 00:00:00 2001 From: Laurent MONIN Date: Wed, 3 Oct 2007 11:53:09 +0200 Subject: [PATCH] Make copyright info independent from translations. This is an attempt to make it easier to update without requiring to update all translations. Copyright info is now set in setup.h using COPYRIGHT_STRING --- src/dialogs/info.c | 8 +++----- src/setup.h | 4 ++++ 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/src/dialogs/info.c b/src/dialogs/info.c index f987aee0..9d19d3f5 100644 --- a/src/dialogs/info.c +++ b/src/dialogs/info.c @@ -142,16 +142,14 @@ menu_copying(struct terminal *term, void *xxx, void *xxxx) N_("Copying"), ALIGN_CENTER, msg_text(term, N_("ELinks %s\n" "\n" - "(C) 1999 - 2002 Mikulas Patocka\n" - "(C) 2001 - 2004 Petr Baudis\n" - "(C) 2002 - 2006 Jonas Fonseca\n" - "and others\n" + "%s" + "et al.\n" "\n" "This program is free software; you can redistribute it " "and/or modify it under the terms of the GNU General Public " "License as published by the Free Software Foundation, " "specifically version 2 of the License."), - VERSION_STRING)); + VERSION_STRING, COPYRIGHT_STRING)); } diff --git a/src/setup.h b/src/setup.h index 511b1ca2..795ab20b 100644 --- a/src/setup.h +++ b/src/setup.h @@ -4,6 +4,10 @@ #define VERSION_STRING VERSION +#define COPYRIGHT_STRING "(C) 1999 - 2002 Mikulas Patocka\n" \ + "(C) 2001 - 2004 Petr Baudis\n" \ + "(C) 2002 - 2007 Jonas Fonseca\n" + /* This option will take effect when WWW_HOME environment variable is NOT * set - you'll go automatically to this URL. If the value is just "", * you'll get either goto dialog or empty page, depending on the value of