[nautilus/update-about-dialog] window: Update about dialog



commit 46b2284fec81cce748d59c72e35e517a4aad7782
Author: Carlos Soriano <csoriano redhat com>
Date:   Tue Oct 30 20:19:59 2018 +0100

    window: Update about dialog
    
    This work removes the manually curated lis of contributors, both because
    of its maintenership burden and because contributions come from a very
    diverse sources, including marketing, QA, translation, design,
    mouth-to-mouth preaching, etc. By creditting just a few of them we
    undermine all the others that make such a great and sometimes invisible
    effort.
    
    This also updates the program name to mention the codename Nautilus, so
    those looking at the about dialog, most likely developers, know the code
    name of the project.
    
    And finally, it adds the website so people know where to find more
    information, issues, and to contribute.

 src/nautilus-window.c | 62 +++++----------------------------------------------
 1 file changed, 5 insertions(+), 57 deletions(-)
---
diff --git a/src/nautilus-window.c b/src/nautilus-window.c
index 7fe090987..efce42223 100644
--- a/src/nautilus-window.c
+++ b/src/nautilus-window.c
@@ -2796,76 +2796,24 @@ nautilus_event_get_window_open_flags (void)
 void
 nautilus_window_show_about_dialog (NautilusWindow *window)
 {
-    const gchar *artists[] =
-    {
-        "The GNOME Project",
-        NULL
-    };
-    const gchar *authors[] =
-    {
-        "Alexander Larsson",
-        "Ali Abdin",
-        "Anders Carlsson",
-        "Andrew Walton",
-        "Andy Hertzfeld",
-        "Arlo Rose",
-        "Christian Neumair",
-        "Cosimo Cecchi",
-        "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",
-        "Tomas Bzatek",
-        "William Jon McCann",
-        NULL
-    };
-    const gchar *documenters[] =
-    {
-        "GNOME Documentation Team",
-        "Sun Microsystems",
-        NULL
-    };
     g_autofree gchar *program_name = NULL;
+    const gchar *authors[] = { "The Nautilus contributors", NULL };
 
     /* “Files” is the generic application name and the suffix is
      * an arbitrary and deliberately unlocalized string only shown
      * in development builds.
      */
-    program_name = g_strconcat (_("Files"), NAME_SUFFIX, NULL);
+    program_name = g_strconcat (_("Files (Nautilus)"), NAME_SUFFIX, NULL);
 
     gtk_show_about_dialog (window ? GTK_WINDOW (window) : NULL,
                            "program-name", program_name,
                            "version", VERSION,
                            "comments", _("Access and organize your files"),
-                           "copyright", "© 1999–2018 The Files Authors",
+                           "copyright", "© 2018 The Nautilus contributors",
                            "license-type", GTK_LICENSE_GPL_3_0,
-                           "artists", artists,
+                           "website", "https://gitlab.gnome.org/GNOME/nautilus";,
+                           "website-label", "Nautilus Website",
                            "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).


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]