[pdfmod] Update About dialog Copyright statement



commit 0c32c79c0c823924f2a837aad7fb53dfb4065eec
Author: Gabriel Burt <gabriel burt gmail com>
Date:   Tue Mar 30 14:23:59 2010 -0700

    Update About dialog Copyright statement

 src/PdfMod/Gui/Actions.cs |   10 ++++++++--
 1 files changed, 8 insertions(+), 2 deletions(-)
---
diff --git a/src/PdfMod/Gui/Actions.cs b/src/PdfMod/Gui/Actions.cs
index fb8a8b1..0f4020b 100644
--- a/src/PdfMod/Gui/Actions.cs
+++ b/src/PdfMod/Gui/Actions.cs
@@ -452,7 +452,12 @@ namespace PdfMod.Gui
                 },
                 Documenters = new string [] { "Gabriel Burt" },
                 Artists = new string [] { "Kalle Persson" },
-                Copyright = "Copyright 2009 Novell Inc.",
+                Copyright = String.Format (
+                    // Translators: {0} and {1} are the years the copyright assertion covers; put into
+                    // variables so you don't have to re-translate this every year
+                    Catalog.GetString ("Copyright {0} Novell Inc.\nCopyright {1} Other PDF Mod Contributors"),
+                    "2009-2010", "2009"
+                ),
                 TranslatorCredits = Catalog.GetString ("translator-credits")
             };
 
@@ -463,7 +468,8 @@ namespace PdfMod.Gui
             string [] license_paths = new string [] {
                 Core.Defines.PREFIX + "/share/doc/packages/pdfmod/COPYING",
                 "/usr/local/share/doc/packages/pdfmod/COPYING",
-                "COPYING"
+                "COPYING",
+                "../COPYING"
             };
 
             foreach (var path in license_paths) {



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