summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Catanzaro <mcatanzaro@gnome.org>2014-07-25 18:12:02 -0500
committerMichael Catanzaro <mcatanzaro@gnome.org>2014-07-25 18:23:13 -0500
commit55850204702a89c8db85e6c159b2b61b7d91e110 (patch)
treec32aea631d2383de0975b8a8a5a4dc340b9d975e
parentaf96d2b21414e10574020854d2a5a5387209d7af (diff)
downloadnautilus-55850204702a89c8db85e6c159b2b61b7d91e110.tar.gz
Hardcode about dialog copyright date, in English
A copyright notice: * cannot be from the future, relative to when we released * should never be translated
-rw-r--r--src/nautilus-window.c15
1 files changed, 1 insertions, 14 deletions
diff --git a/src/nautilus-window.c b/src/nautilus-window.c
index 12701de92..2f3079919 100644
--- a/src/nautilus-window.c
+++ b/src/nautilus-window.c
@@ -2330,22 +2330,12 @@ nautilus_window_show_about_dialog (NautilusWindow *window)
"Sun Microsystems",
NULL
};
- gchar *copyright_str;
- GDateTime *date;
-
- date = g_date_time_new_now_local ();
-
- /* Translators: these two strings here indicate the copyright time span,
- * e.g. 1999-2011.
- */
- copyright_str = g_strdup_printf (_("Copyright \xC2\xA9 %Id\xE2\x80\x93%Id "
- "The Files authors"), 1999, g_date_time_get_year (date));
gtk_show_about_dialog (window ? GTK_WINDOW (window) : NULL,
"program-name", _("Files"),
"version", VERSION,
"comments", _("Access and organize your files."),
- "copyright", copyright_str,
+ "copyright", "Copyright © 1999–2014 The Files Authors",
"license-type", GTK_LICENSE_GPL_2_0,
"authors", authors,
"documenters", documenters,
@@ -2356,7 +2346,4 @@ nautilus_window_show_about_dialog (NautilusWindow *window)
"translator-credits", _("translator-credits"),
"logo-icon-name", "system-file-manager",
NULL);
-
- g_free (copyright_str);
- g_date_time_unref (date);
}