1999-04-01 Miguel de Icaza <miguel@nuclecu.unam.mx>

* gcmd.c (gnome_about_cmd): Internationalize about box.  And put
	the right address for bug reports.
This commit is contained in:
Miguel de Icaza 1999-04-01 21:31:55 +00:00
parent a762d74873
commit 584cac757f
2 changed files with 16 additions and 2 deletions

View File

@ -1,3 +1,8 @@
1999-04-01 Miguel de Icaza <miguel@nuclecu.unam.mx>
* gcmd.c (gnome_about_cmd): Internationalize about box. And put
the right address for bug reports.
1999-03-30 Federico Mena Quintero <federico@nuclecu.unam.mx>
* gdesktop-icon.c (desktop_icon_realize): Remove the

View File

@ -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,