mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 12:56:51 +03:00
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:
parent
a762d74873
commit
584cac757f
@ -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
|
||||
|
13
gnome/gcmd.c
13
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,
|
||||
|
Loading…
Reference in New Issue
Block a user