summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlos Soriano <csoriano@redhat.com>2018-10-30 20:19:59 +0100
committerCarlos Soriano <csoriano@redhat.com>2018-10-30 20:23:38 +0100
commit46b2284fec81cce748d59c72e35e517a4aad7782 (patch)
treecf95d95841f9946e40275586f8cbba1c1e674dd0
parenta22096003c36fc4f9f10607c5341f7c1dea3943f (diff)
downloadnautilus-update-about-dialog.tar.gz
window: Update about dialogupdate-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.
-rw-r--r--src/nautilus-window.c62
1 files 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).