[nautilus] Hardcode about dialog copyright date, in English



commit 55850204702a89c8db85e6c159b2b61b7d91e110
Author: Michael Catanzaro <mcatanzaro gnome org>
Date:   Fri Jul 25 18:12:02 2014 -0500

    Hardcode about dialog copyright date, in English
    
    A copyright notice:
    
    * cannot be from the future, relative to when we released
    * should never be translated

 src/nautilus-window.c |   15 +--------------
 1 files changed, 1 insertions(+), 14 deletions(-)
---
diff --git a/src/nautilus-window.c b/src/nautilus-window.c
index 12701de..2f30799 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);
 }


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