diff --git a/gnome/ChangeLog b/gnome/ChangeLog index 1324a105a..80855b069 100644 --- a/gnome/ChangeLog +++ b/gnome/ChangeLog @@ -1,3 +1,8 @@ +1999-04-01 Miguel de Icaza + + * gcmd.c (gnome_about_cmd): Internationalize about box. And put + the right address for bug reports. + 1999-03-30 Federico Mena Quintero * gdesktop-icon.c (desktop_icon_realize): Remove the diff --git a/gnome/gcmd.c b/gnome/gcmd.c index fcbf50e11..038344b29 100644 --- a/gnome/gcmd.c +++ b/gnome/gcmd.c @@ -103,13 +103,22 @@ void gnome_about_cmd (void) { GtkWidget *about; + static int translated; const gchar *authors[] = { - "The Midnight Commander Team", + N_("The Midnight Commander Team"), "http://www.gnome.org/mc/", - "bug reports: mc-bugs@nuclecu.unam.mx", + N_("bug reports: http://bugs.gnome.org, or use gnome-bug"), NULL }; + if (!translated){ + int i; + + for (i = 0; authors [i]; i++) + authors [i] = _(authors [i]); + translated = TRUE; + } + about = gnome_about_new (_("GNU Midnight Commander"), VERSION, "Copyright 1994-1999 the Free Software Foundation", authors,