From eed55110772fb38b5ba7c148e0c277401c96e9b6 Mon Sep 17 00:00:00 2001 From: rbuj Date: Sun, 17 Feb 2019 22:20:08 +0100 Subject: Read authors (updated) and documenters (updated) from eom.about gresource --- src/eom-window.c | 68 +++++++++++++++++++++++++++----------------------------- 1 file changed, 33 insertions(+), 35 deletions(-) (limited to 'src/eom-window.c') diff --git a/src/eom-window.c b/src/eom-window.c index bc5ca59..7b748c8 100644 --- a/src/eom-window.c +++ b/src/eom-window.c @@ -2519,6 +2519,9 @@ eom_window_cmd_help (GtkAction *action, gpointer user_data) eom_util_show_help (NULL, GTK_WINDOW (window)); } +#define ABOUT_GROUP "About" +#define EMAILIFY(string) (g_strdelimit ((string), "%", '@')) + static void eom_window_cmd_about (GtkAction *action, gpointer user_data) { @@ -2526,38 +2529,6 @@ eom_window_cmd_about (GtkAction *action, gpointer user_data) g_return_if_fail (EOM_IS_WINDOW (user_data)); - static const char *authors[] = { - "Perberos ", - "Steve Zesch ", - "Stefano Karapetsas ", - "", - "Claudio Saavedra (maintainer)", - "Felix Riemann (maintainer)", - "", - "Lucas Rocha ", - "Tim Gerla ", - "Philip Van Hoof ", - "Paolo Borelli ", - "Jens Finke ", - "Martin Baulig ", - "Arik Devens ", - "Michael Meeks ", - "Federico Mena-Quintero ", - "Lutz M\xc3\xbcller ", - NULL - }; - - static const char *documenters[] = { - "Eliot Landrum ", - "Federico Mena-Quintero ", - "Sun GNOME Documentation Team ", - NULL - }; - - const char *translators; - - translators = _("translator-credits"); - const char *license[] = { N_("This program is free software; you can redistribute it and/or modify " "it under the terms of the GNU General Public License as published by " @@ -2573,9 +2544,34 @@ eom_window_cmd_about (GtkAction *action, gpointer user_data) }; char *license_trans; + GKeyFile *key_file; + GBytes *bytes; + const guint8 *data; + gsize data_len; + GError *error = NULL; + char **authors, **documenters; + gsize n_authors = 0, n_documenters = 0 , i; + + bytes = g_resources_lookup_data ("/org/mate/eom/ui/eom.about", G_RESOURCE_LOOKUP_FLAGS_NONE, &error); + g_assert_no_error (error); + + data = g_bytes_get_data (bytes, &data_len); + key_file = g_key_file_new (); + g_key_file_load_from_data (key_file, (const char *) data, data_len, 0, &error); + g_assert_no_error (error); + + authors = g_key_file_get_string_list (key_file, ABOUT_GROUP, "Authors", &n_authors, NULL); + documenters = g_key_file_get_string_list (key_file, ABOUT_GROUP, "Documenters", &n_documenters, NULL); + + g_key_file_free (key_file); + g_bytes_unref (bytes); + + for (i = 0; i < n_authors; ++i) + authors[i] = EMAILIFY (authors[i]); + for (i = 0; i < n_documenters; ++i) + documenters[i] = EMAILIFY (documenters[i]); - license_trans = g_strconcat (_(license[0]), "\n", _(license[1]), "\n", - _(license[2]), "\n", NULL); + license_trans = g_strconcat (_(license[0]), "\n", _(license[1]), "\n", _(license[2]), "\n", NULL); window = EOM_WINDOW (user_data); @@ -2589,13 +2585,15 @@ eom_window_cmd_about (GtkAction *action, gpointer user_data) "comments",_("The MATE image viewer."), "authors", authors, "documenters", documenters, - "translator-credits", translators, + "translator-credits", _("translator-credits"), "website", "http://www.mate-desktop.org/", "logo-icon-name", "eom", "wrap-license", TRUE, "license", license_trans, NULL); + g_strfreev (authors); + g_strfreev (documenters); g_free (license_trans); } -- cgit v1.2.1