]> granicus.if.org Git - mutt/commitdiff
Mark interesting items in mutt -v output for translation
authorRocco Rutte <pdmef@gmx.net>
Mon, 17 Sep 2007 11:05:33 +0000 (13:05 +0200)
committerRocco Rutte <pdmef@gmx.net>
Mon, 17 Sep 2007 11:05:33 +0000 (13:05 +0200)
main.c

diff --git a/main.c b/main.c
index 03543e1a92c165a0fa2dc5785a4b0584aa08ff96..2469a8e7f3eea23d9abaae53575e2be4a4ebb6c1 100644 (file)
--- 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:"));