summaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>1998-10-01 10:11:41 +0000
committerThomas Roessler <roessler@does-not-exist.org>1998-10-01 10:11:41 +0000
commit4e74c7b9630415261677cef40e7fff58b5929069 (patch)
treece9da4eba9e36b4ed3e412d91e92be13ec9c6fe4 /main.c
parent4a59e7fbbc114e9c15e56ac07b095c79fbf250cf (diff)
More i18n fixes.
Diffstat (limited to 'main.c')
-rw-r--r--main.c22
1 files changed, 13 insertions, 9 deletions
diff --git a/main.c b/main.c
index e2b71eeb..bfe55f36 100644
--- a/main.c
+++ b/main.c
@@ -32,16 +32,16 @@
#include <sys/stat.h>
#include <sys/utsname.h>
-const char ReachingUs[] = "\
-To contact the developers, please mail to <mutt-dev@mutt.org>.\n";
+const char ReachingUs[] = N_("\
+To contact the developers, please mail to <mutt-dev@mutt.org>.\n");
-const char Notice[] = "\
+const char Notice[] = N_("\
Copyright (C) 1996-8 Michael R. Elkins and others.\n\
Mutt comes with ABSOLUTELY NO WARRANTY; for details type `mutt -vv'.\n\
Mutt is free software, and you are welcome to redistribute it\n\
-under certain conditions; type `mutt -vv' for details.\n";
+under certain conditions; type `mutt -vv' for details.\n");
-const char Copyright[] = "\
+const char Copyright[] = N_("\
Copyright (C) 1996-8 Michael R. Elkins <me@cs.hmc.edu>\n\
Copyright (C) 1997-8 Thomas Roessler <roessler@guug.de>\n\
Copyright (C) 1998 Werner Koch <wk@isil.d.shuttle.de>\n\
@@ -60,9 +60,10 @@ Copyright (C) 1998 Ruslan Ermilov <ru@ucb.crimea.ua>\n\
You should have received a copy of the GNU General Public License\n\
along with this program; if not, write to the Free Software\n\
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.\n\
-"
+");
#ifdef _PGPPATH
-"\n\
+
+const char ShaCopyright[] = N_("\n\
SHA1 implementation Copyright (C) 1995-7 Eric A. Young <eay@cryptsoft.com>\n\
\n\
Redistribution and use in source and binary forms, with or without\n\
@@ -74,9 +75,9 @@ SHA1 implementation Copyright (C) 1995-7 Eric A. Young <eay@cryptsoft.com>\n\
\n\
You should have received a copy of the full distribution terms\n\
along with this program; if not, write to the program's developers.\n\
-"
+");
#endif
-;
+
void mutt_exit (int code)
{
@@ -462,6 +463,9 @@ int main (int argc, char **argv)
default:
printf ("Mutt %s (%s)\n", MUTT_VERSION, ReleaseDate);
puts (Copyright);
+#ifdef _PGPPATH
+ puts(ShaCopyright);
+#endif
puts (ReachingUs);
exit (0);
}