From 8354c6183a0865c285f8fd5199372289252e9704 Mon Sep 17 00:00:00 2001 From: Rocco Rutte Date: Mon, 17 Sep 2007 17:32:35 +0200 Subject: [PATCH] Backoug changeset 6f06b7f1f76f --- main.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/main.c b/main.c index 2469a8e7..03543e1a 100644 --- a/main.c +++ b/main.c @@ -163,33 +163,33 @@ static void show_version (void) uname (&uts); #ifdef _AIX - printf (_("System: %s %s.%s"), uts.sysname, uts.version, uts.release); + printf ("System: %s %s.%s", uts.sysname, uts.version, uts.release); #elif defined (SCO) - printf (_("System: SCO %s"), uts.release); + printf ("System: SCO %s", uts.release); #else - printf (_("System: %s %s"), uts.sysname, uts.release); + printf ("System: %s %s", uts.sysname, uts.release); #endif printf (" (%s)", uts.machine); #ifdef NCURSES_VERSION - printf (_("\nncurses: %s (compiled with %s)"), curses_version(), NCURSES_VERSION); + printf ("\nncurses: %s (compiled with %s)", curses_version(), NCURSES_VERSION); #elif defined(USE_SLANG_CURSES) - printf (_("\nslang: %d"), SLANG_VERSION); + printf ("\nslang: %d", SLANG_VERSION); #endif #ifdef _LIBICONV_VERSION - printf (_("\nlibiconv: %d.%d"), _LIBICONV_VERSION >> 8, + printf ("\nlibiconv: %d.%d", _LIBICONV_VERSION >> 8, _LIBICONV_VERSION & 0xff); #endif #ifdef HAVE_LIBIDN - printf (_("\nlibidn: %s (compiled with %s)"), stringprep_check_version (NULL), + printf ("\nlibidn: %s (compiled with %s)", stringprep_check_version (NULL), STRINGPREP_VERSION); #endif #ifdef USE_HCACHE - printf (_("\nhcache backend: %s"), mutt_hcache_backend ()); + printf ("\nhcache backend: %s", mutt_hcache_backend ()); #endif puts (_("\nCompile options:")); -- 2.40.0