/* Menu Callback : Display About window */
void
menu_about_cb (GtkAction *action,
	       StickyNotesApplet *applet)
{
	static const gchar *authors[] = {
		"Loban A Rahman <*****@*****.**>",
		"Davyd Madeley <*****@*****.**>",
		NULL
	};

	static const gchar *documenters[] = {
		"Loban A Rahman <*****@*****.**>",
		"Sun GNOME Documentation Team <*****@*****.**>",
		NULL
	};

	mate_show_about_dialog (NULL,
		"version",	VERSION,
		"copyright",	"\xC2\xA9 2002-2003 Loban A Rahman, "
				"\xC2\xA9 2005 Davyd Madeley",
		"comments",	_("Sticky Notes for the "
				  "MATE Desktop Environment"),
		"authors",	authors,
		"documenters",	documenters,
		"translator-credits",	_("translator-credits"),
		"logo-icon-name",	"mate-sticky-notes-applet",
		NULL);
}
예제 #2
0
파일: main.c 프로젝트: braikar/mate-panel
static void about_cb(GtkAction* action, AppletData* data)
{
    const gchar* authors[] = {
        "Havoc Pennington <*****@*****.**>",
        "Anders Carlsson <*****@*****.**>",
        "Vincent Untz <*****@*****.**>",
        NULL
    };

    const char* documenters[] = {
        "Sun GNOME Documentation Team <*****@*****.**>",
        NULL
    };

    const char copyright[] = \
                             "Copyright \xc2\xa9 2002 Red Hat, Inc.\n"
                             "Copyright \xc2\xa9 2003-2006 Vincent Untz\n"
                             "Copyright \xc2\xa9 2011 Perberos";

    mate_show_about_dialog(NULL,
                           "program-name", _("Notification Area"),
                           "authors", authors,
                           //"comments", _(comments),
                           "copyright", copyright,
                           "documenters", documenters,
                           "logo-icon-name", NOTIFICATION_AREA_ICON,
                           "translator-credits", _("translator-credits"),
                           "version", VERSION,
                           NULL);
}
예제 #3
0
void mateweather_about_run(MateWeatherApplet* gw_applet)
{
	static const gchar* authors[] = {
		"Todd Kulesza <*****@*****.**>",
		"Philip Langdale <*****@*****.**>",
		"Ryan Lortie <*****@*****.**>",
		"Davyd Madeley <*****@*****.**>",
		"Spiros Papadimitriou <*****@*****.**>",
		"Kevin Vandersloot <*****@*****.**>",
		NULL
	};

	const gchar* documenters[] = {
		"Dan Mueth <*****@*****.**>",
		"Spiros Papadimitriou <*****@*****.**>",
		"Sun GNOME Documentation Team <*****@*****.**>",
		"Davyd Madeley <*****@*****.**>",
		NULL
	};

	mate_show_about_dialog(NULL,
		"version", VERSION,
		"copyright", _("\xC2\xA9 1999-2005 by S. Papadimitriou and others"),
		"comments", _("A panel application for monitoring local weather conditions."),
		"authors", authors,
		"documenters", documenters,
		"translator-credits", _("translator-credits"),
		"logo-icon-name", "weather-storm",
		NULL);
}
예제 #4
0
static void display_about_dialog(GtkAction* action, TasklistData* tasklist)
{
	static const gchar* authors[] = {
		"Perberos <*****@*****.**>",
		"Steve Zesch <*****@*****.**>",
		"Stefano Karapetsas <*****@*****.**>",
		"Alexander Larsson <*****@*****.**>",
		NULL
	};

	const char* documenters [] = {
		"Sun GNOME Documentation Team <*****@*****.**>",
		NULL
	};

	char copyright[] = \
		"Copyright \xc2\xa9 2011 Perberos\n"
		"Copyright \xc2\xa9 2002 Red Hat, Inc.";

	mate_show_about_dialog(GTK_WINDOW(tasklist->applet),
		"program-name", _("Window List"),
		"authors", authors,
		"comments", _("The Window List shows a list of all windows in a set of buttons and lets you browse them."),
		"copyright", copyright,
		"documenters", documenters,
		"icon-name", WINDOW_LIST_ICON,
		"logo-icon-name", WINDOW_LIST_ICON,
		"translator-credits", _("translator-credits"),
		"version", VERSION,
		"website", "http://www.mate-desktop.org/",
		NULL);
}
예제 #5
0
static void display_about_dialog(GtkAction* action, PagerData* pager)
{
	static const gchar* authors[] = {
		"Perberos <*****@*****.**>",
		"Steve Zesch <*****@*****.**>",
		"Stefano Karapetsas <*****@*****.**>",
		"Alexander Larsson <*****@*****.**>",
		NULL
	};

	const char* documenters[] = {
		"John Fleck <*****@*****.**>",
		"Sun GNOME Documentation Team <*****@*****.**>",
		NULL
	};

	char copyright[] = \
		"Copyright \xc2\xa9 2011 Perberos\n"
		"Copyright \xc2\xa9 2002 Red Hat, Inc.";

	mate_show_about_dialog(GTK_WINDOW(pager->applet),
		"program-name", _("Workspace Switcher"),
		"authors", authors,
		"comments", _("The Workspace Switcher shows you a small version of your workspaces that lets you manage your windows."),
		"copyright", copyright,
		"documenters", documenters,
		"icon-name", WORKSPACE_SWITCHER_ICON,
		"logo-icon-name", WORKSPACE_SWITCHER_ICON,
		"translator-credits", _("translator-credits"),
		"version", VERSION,
		"website", "http://www.mate-desktop.org/",
		NULL);
}
예제 #6
0
static void
cpufreq_applet_about_cb (GtkAction     *action,
                         CPUFreqApplet *applet)
{
        static const gchar *const authors[] = {
                "Carlos Garcia Campos <*****@*****.**>",
                NULL
        };
        static const gchar *const documenters[] = {
                "Carlos Garcia Campos <*****@*****.**>",
                "Davyd Madeley <*****@*****.**>",
                NULL
        };
        static const gchar *const artists[] = {
                "Pablo Arroyo Loma <*****@*****.**>",
                NULL
        };

        mate_show_about_dialog (NULL,
                               "version",       VERSION,
                               "copyright",     "\xC2\xA9 2004 Carlos Garcia Campos",
                               "comments",      _("This utility shows the current CPU "
                                                  "Frequency Scaling."),
                               "authors",       authors,
                               "documenters",   documenters,
                               "artists",       artists,
                               "translator-credits",    _("translator-credits"),
			       "logo-icon-name",        "mate-cpu-frequency-applet",
                               NULL);
}
예제 #7
0
static void
trash_applet_show_about (GtkAction   *action,
                         TrashApplet *applet)
{
  static const char *authors[] = {
    "Michiel Sikkes <*****@*****.**>",
    "Emmanuele Bassi <*****@*****.**>",
    "Sebastian Bacher <*****@*****.**>",
    "James Henstridge <*****@*****.**>",
    "Ryan Lortie <*****@*****.**>",
    NULL
  };
  static const char *documenters[] = {
    "Michiel Sikkes <*****@*****.**>",
    NULL
  };

  mate_show_about_dialog (NULL,
                         "version", VERSION,
                         "copyright", "Copyright \xC2\xA9 2004 Michiel Sikkes,"
                                      "\xC2\xA9 2008 Ryan Lortie",
                         "comments", _("A MATE trash bin that lives in your panel. "
                                       "You can use it to view the trash or drag "
                                       "and drop items into the trash."),
                         "authors", authors,
                         "documenters", documenters,
                         "translator-credits", _("translator-credits"),
                         "logo_icon_name", "user-trash-full",
                         NULL);
}
예제 #8
0
/* cribbed from geyes */
static void about_cb(GtkAction* action, AccessxStatusApplet* sapplet)
{
    static const gchar* authors[] = {
        "Calum Benson <*****@*****.**>",
        "Bill Haneman <*****@*****.**>",
        NULL
    };

    const gchar* documenters[] = {
        "Bill Haneman <*****@*****.**>",
        "Sun GNOME Documentation Team <*****@*****.**>",
        NULL
    };

    mate_show_about_dialog(NULL,
                           "version", VERSION,
                           "comments", _("Shows the state of AccessX features such as latched modifiers"),
                           "copyright", "\xC2\xA9 2003 Sun Microsystems",
                           "authors", authors,
                           "documenters", documenters,
                           "translator-credits", _("translator-credits"),
                           "logo-icon-name", "mate-ax-applet",
                           NULL);
}
예제 #9
0
static void
display_about_dialog (GtkAction *action,
		      DriveList *drive_list)
{
    const gchar *authors[] = {
	"James Henstridge <*****@*****.**>",
	NULL
    };
    const gchar *documenters[] = {
	"Dan Mueth <*****@*****.**>",
	"John Fleck <*****@*****.**>",
	NULL
    };

    mate_show_about_dialog (NULL,
	"version",     VERSION,
	"copyright",   "Copyright \xC2\xA9 2004 Canonical Ltd",
	"comments",    _("Applet for mounting and unmounting block volumes."),
	"authors",     authors,
	"documenters", documenters,
	"translator-credits", _("translator-credits"),
	"logo_icon_name",     "media-floppy",
	NULL);
}
예제 #10
0
static void window_menu_about(GtkAction* action, WindowMenu* window_menu)
{
	static const char* authors[] = {
		"Perberos <*****@*****.**>",
		"Steve Zesch <*****@*****.**>",
		"Stefano Karapetsas <*****@*****.**>",
		"Mark McLoughlin <*****@*****.**>",
		"George Lebl <*****@*****.**>",
		"Jacob Berkman <*****@*****.**>",
		NULL
	};

	const char* documenters[] = {
		"Sun GNOME Documentation Team <*****@*****.**>",
		NULL
	};

	char copyright[] = \
		"Copyright \xc2\xa9 2011 Perberos\n"
		"Copyright \xc2\xa9 2003 Sun Microsystems, Inc.\n"
		"Copyright \xc2\xa9 2001 Free Software Foundation, Inc.\n"
		"Copyright \xc2\xa9 2000 Helix Code, Inc.";

	mate_show_about_dialog(GTK_WINDOW(window_menu->applet),
		"program-name", _("Window Selector"),
		"authors", authors,
		"comments", _("The Window Selector shows a list of all windows in a menu and lets you browse them."),
		"copyright", copyright,
		"documenters", documenters,
		"icon-name", WINDOW_MENU_ICON,
		"logo-icon-name", WINDOW_MENU_ICON,
		"translator-credits", _("translator-credits"),
		"version", VERSION,
		"website", "http://www.mate-desktop.org/",
		NULL);
}
예제 #11
0
static void
action_about_caja_callback (GtkAction *action,
                            gpointer user_data)
{
    const gchar *authors[] =
    {
        "Alexander Larsson",
        "Ali Abdin",
        "Anders Carlsson",
        "Andy Hertzfeld",
        "Arlo Rose",
        "Darin Adler",
        "David Camp",
        "Eli Goldberg",
        "Elliot Lee",
        "Eskil Heyn Olsen",
        "Ettore Perazzoli",
        "Gene Z. Ragan",
        "George Lebl",
        "Ian McKellar",
        "J Shane Culpepper",
        "James Willcox",
        "Jan Arne Petersen",
        "John Harper",
        "John Sullivan",
        "Josh Barrow",
        "Maciej Stachowiak",
        "Mark McLoughlin",
        "Mathieu Lacage",
        "Mike Engber",
        "Mike Fleming",
        "Pavel Cisler",
        "Ramiro Estrugo",
        "Raph Levien",
        "Rebecca Schulman",
        "Robey Pointer",
        "Robin * Slomkowski",
        "Seth Nickell",
        "Susan Kare",
        "Perberos",
        "Steve Zesch",
        "Stefano Karapetsas",
        "Jasmine Hassan",
        NULL
    };
    const gchar *documenters[] =
    {
        "GNOME Documentation Team",
        "Sun Microsystem",
        NULL
    };
    const gchar *license[] =
    {
        N_("Caja is free software; you can redistribute it and/or modify "
        "it under the terms of the GNU General Public License as published by "
        "the Free Software Foundation; either version 2 of the License, or "
        "(at your option) any later version."),
        N_("Caja is distributed in the hope that it will be useful, "
        "but WITHOUT ANY WARRANTY; without even the implied warranty of "
        "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the "
        "GNU General Public License for more details."),
        N_("You should have received a copy of the GNU General Public License "
        "along with Caja; if not, write to the Free Software Foundation, Inc., "
        "51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA")
    };
    gchar *license_trans;

    license_trans = g_strjoin ("\n\n", _(license[0]), _(license[1]),
                               _(license[2]), NULL);

    mate_show_about_dialog (GTK_WINDOW (user_data),
                           "program-name", _("Caja"),
                           "version", VERSION,
                           "comments", _("Caja lets you organize "
                                         "files and folders, both on "
                                         "your computer and online."),
                           "copyright", _("Copyright \xC2\xA9 1999-2009 The Nautilus authors\n"
                                          "Copyright \xC2\xA9 2011-2014 The Caja authors"),
                           "license", license_trans,
                           "wrap-license", TRUE,
                           "authors", authors,
                           "documenters", documenters,
                           /* Translators should localize the following string
                            * which will be displayed at the bottom of the about
                            * box to give credit to the translator(s).
                            */
                           "translator-credits", _("translator-credits"),
                           "logo-icon-name", "system-file-manager",
                           "website", "http://www.mate-desktop.org",
                           "website-label", _("MATE Web Site"),
                           NULL);

    g_free (license_trans);

}