mirror of
https://gitlab.gnome.org/GNOME/nautilus
synced 2024-11-05 16:04:31 +00:00
Fix an accent.
2000-05-28 Pavel Cisler <pavel@eazel.com> * src/nautilus-window-menus.c: (help_menu_about_nautilus_callback): Fix an accent.
This commit is contained in:
parent
3bc14c4473
commit
fc04ff6d6e
3 changed files with 55 additions and 52 deletions
|
@ -1,3 +1,8 @@
|
|||
2000-05-28 Pavel Cisler <pavel@eazel.com>
|
||||
|
||||
* src/nautilus-window-menus.c: (help_menu_about_nautilus_callback):
|
||||
Fix an accent.
|
||||
|
||||
2000-05-27 Pavel Cisler <pavel@eazel.com>
|
||||
|
||||
* src/nautilus-application.c: (nautilus_app_quit):
|
||||
|
|
|
@ -291,36 +291,35 @@ help_menu_about_nautilus_callback (BonoboUIHandler *ui_handler,
|
|||
gpointer user_data,
|
||||
const char *path)
|
||||
{
|
||||
static GtkWidget *aboot = NULL;
|
||||
static GtkWidget *aboot = NULL;
|
||||
|
||||
if (aboot == NULL)
|
||||
{
|
||||
const char *authors[] = {
|
||||
"Darin Adler",
|
||||
"Pavel Cisler", /* fixme: needs accent mark on the i */
|
||||
"Ramiro Estrugo",
|
||||
"Andy Hertzfeld",
|
||||
"Elliot Lee",
|
||||
"Ettore Perazzoli",
|
||||
"Gene Ragan",
|
||||
"Arlo Rose",
|
||||
"Rebecca Schulman",
|
||||
"Maciej Stachowiak",
|
||||
"John Sullivan",
|
||||
NULL
|
||||
};
|
||||
if (aboot == NULL) {
|
||||
const char *authors[] = {
|
||||
"Darin Adler",
|
||||
"Pavel Císler",
|
||||
"Ramiro Estrugo",
|
||||
"Andy Hertzfeld",
|
||||
"Elliot Lee",
|
||||
"Ettore Perazzoli",
|
||||
"Gene Ragan",
|
||||
"Arlo Rose",
|
||||
"Rebecca Schulman",
|
||||
"Maciej Stachowiak",
|
||||
"John Sullivan",
|
||||
NULL
|
||||
};
|
||||
|
||||
aboot = gnome_about_new(_("Nautilus"),
|
||||
VERSION,
|
||||
"Copyright (C) 1999, 2000",
|
||||
authors,
|
||||
_("The Gnome Shell"),
|
||||
"nautilus/About_Image.png");
|
||||
aboot = gnome_about_new(_("Nautilus"),
|
||||
VERSION,
|
||||
"Copyright (C) 1999, 2000",
|
||||
authors,
|
||||
_("The Gnome Shell"),
|
||||
"nautilus/About_Image.png");
|
||||
|
||||
gnome_dialog_close_hides (GNOME_DIALOG (aboot), TRUE);
|
||||
}
|
||||
gnome_dialog_close_hides (GNOME_DIALOG (aboot), TRUE);
|
||||
}
|
||||
|
||||
nautilus_gtk_window_present (GTK_WINDOW (aboot));
|
||||
nautilus_gtk_window_present (GTK_WINDOW (aboot));
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -291,36 +291,35 @@ help_menu_about_nautilus_callback (BonoboUIHandler *ui_handler,
|
|||
gpointer user_data,
|
||||
const char *path)
|
||||
{
|
||||
static GtkWidget *aboot = NULL;
|
||||
static GtkWidget *aboot = NULL;
|
||||
|
||||
if (aboot == NULL)
|
||||
{
|
||||
const char *authors[] = {
|
||||
"Darin Adler",
|
||||
"Pavel Cisler", /* fixme: needs accent mark on the i */
|
||||
"Ramiro Estrugo",
|
||||
"Andy Hertzfeld",
|
||||
"Elliot Lee",
|
||||
"Ettore Perazzoli",
|
||||
"Gene Ragan",
|
||||
"Arlo Rose",
|
||||
"Rebecca Schulman",
|
||||
"Maciej Stachowiak",
|
||||
"John Sullivan",
|
||||
NULL
|
||||
};
|
||||
if (aboot == NULL) {
|
||||
const char *authors[] = {
|
||||
"Darin Adler",
|
||||
"Pavel Císler",
|
||||
"Ramiro Estrugo",
|
||||
"Andy Hertzfeld",
|
||||
"Elliot Lee",
|
||||
"Ettore Perazzoli",
|
||||
"Gene Ragan",
|
||||
"Arlo Rose",
|
||||
"Rebecca Schulman",
|
||||
"Maciej Stachowiak",
|
||||
"John Sullivan",
|
||||
NULL
|
||||
};
|
||||
|
||||
aboot = gnome_about_new(_("Nautilus"),
|
||||
VERSION,
|
||||
"Copyright (C) 1999, 2000",
|
||||
authors,
|
||||
_("The Gnome Shell"),
|
||||
"nautilus/About_Image.png");
|
||||
aboot = gnome_about_new(_("Nautilus"),
|
||||
VERSION,
|
||||
"Copyright (C) 1999, 2000",
|
||||
authors,
|
||||
_("The Gnome Shell"),
|
||||
"nautilus/About_Image.png");
|
||||
|
||||
gnome_dialog_close_hides (GNOME_DIALOG (aboot), TRUE);
|
||||
}
|
||||
gnome_dialog_close_hides (GNOME_DIALOG (aboot), TRUE);
|
||||
}
|
||||
|
||||
nautilus_gtk_window_present (GTK_WINDOW (aboot));
|
||||
nautilus_gtk_window_present (GTK_WINDOW (aboot));
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
Loading…
Reference in a new issue