diff options
Diffstat (limited to 'mate-about/mate-about.h')
-rw-r--r-- | mate-about/mate-about.h | 47 |
1 files changed, 23 insertions, 24 deletions
diff --git a/mate-about/mate-about.h b/mate-about/mate-about.h index 91cd4c4..b99c6fc 100644 --- a/mate-about/mate-about.h +++ b/mate-about/mate-about.h @@ -24,6 +24,7 @@ #include <gtk/gtk.h> #include <libintl.h> // for gettext + #include <config.h> // autogenerated by ./configure #ifdef USE_UNIQUE @@ -32,15 +33,12 @@ //mate-about //{ - const gchar* gettext_package = GETTEXT_PACKAGE; // mate-desktop-2.0 - const gchar* locale_dir = LOCALE_DIR; // /usr/local/share/locale - - const gchar* program_name = "MATE Desktop Environment"; // MATE @PACKAGE_NAME@ - const gchar* version = PACKAGE_VERSION; - const gchar* icon = "desktop"; - const gchar* website = "http://www.matsusoft.com.ar/projects/mate/"; + const char* program_name = "MATE Desktop Environment"; // MATE @PACKAGE_NAME@ + const char* version = PACKAGE_VERSION; + const char* icon = "desktop"; + const char* website = "http://www.matsusoft.com.ar/projects/mate/"; - const gchar* copyright = "" + const char* copyright = "" "Copyright © 1997-2011 GNOME developers\n" "Copyright © 2011 Perberos"; // egoista! @@ -49,8 +47,8 @@ * en comments[]. Porque, este valor es usado en un random para obtener el * indice de la cadena. */ - const gint comments_count = 6; - const gchar* comments[] = { + const int comments_count = 6; + const char* comments_array[] = { "MATE also includes a complete development platform for applications " "programmers, allowing the creation of powerful and complex applications.", @@ -71,7 +69,7 @@ "translations, documentation, and quality assurance.", }; - const gchar* authors[] = { + const char* authors[] = { "Jérôme Abela", "Rob Adams", "Djihed Afifi", @@ -113,7 +111,7 @@ "Žygimantas Beručka", "Runa Bhattacharjee", "Robert Bihlmeyer", - "Jonathan Blandford", + "Jonathan Blandford <[email protected]>", "Christopher Blizzard", "Bruno Boaventura", "Евгени Боевски (Evgeni Boevski)", @@ -259,7 +257,7 @@ "Scott Heavner", "Sebastian Heinlein", "Jon K Hellan", - "James Henstridge", + "James Henstridge <[email protected]>", "Fernando Herrera", "Richard Hestilow", "Raphael Higino", @@ -275,7 +273,7 @@ "David Huggins-Daines", "Richard Hult", "Andreas Hyden", - "Miguel de Icaza", + "Miguel de Icaza <[email protected]>", "Hiroyuki Ikezoe", "Khandakar Mujahidul Islam", "Johnny Jacob", @@ -337,7 +335,7 @@ "Jason Leach", "George Lebl", "Gregory Leblanc", - "Elliot Lee", + "Elliot Lee <[email protected]>", "Marc Lehmann", "Noah Levitt", "Raph Levien", @@ -371,7 +369,7 @@ "James Mastros", "Peter Mattis", "Gordon Matzigkeit", - "Dietmar Maurer", + "Dietmar Maurer <[email protected]>", "Justin Maurer", "Shaun McCance", "William Jon McCann", @@ -391,7 +389,7 @@ "Paolo Molaro", "Lynn Monsanto", "David Mosberger", - "Rodrigo Moya", + "Rodrigo Moya <[email protected]>", "Dan Mueth", "Thomas Muldowney", "Alexandre Muñiz", @@ -552,7 +550,7 @@ "Chris Toshok", "Christoph Toshok", "Malcolm Tredinnick", - "Tom Tromey", + "Tom Tromey <[email protected]>", "David Trowbridge", "Jon Trowbridge", "段 活 文", @@ -605,19 +603,20 @@ "Jason van Zyl", // MATE start here "Perberos <[email protected]>", + "Stefano Karapetsas <[email protected]>", NULL }; // documentacion - /*const gchar* documenters[] = { - "TODO", // TODO: fillme + const gchar* documenters[] = { + "...", // TODO: fillme NULL - };*/ + }; // artistas - /*const gchar* artists[] = { - "TODO", // TODO: fillme + const gchar* artists[] = { + "...", // TODO: fillme NULL - };*/ + }; // widget de la unica ventana GtkWidget* mate_about_dialog = FALSE; |