tasque r174 - in trunk: . src



Author: sharm
Date: Tue Dec 23 00:45:47 2008
New Revision: 174
URL: http://svn.gnome.org/viewvc/tasque?rev=174&view=rev

Log:
* tasque/src/Application.cs: Enable translator-credits string for About
  dialog.

Modified:
   trunk/ChangeLog
   trunk/src/Application.cs

Modified: trunk/src/Application.cs
==============================================================================
--- trunk/src/Application.cs	(original)
+++ trunk/src/Application.cs	Tue Dec 23 00:45:47 2008
@@ -107,7 +107,7 @@
 					} catch (Exception e) {
 						Logger.Warn ("Exception cleaning up '{0}': {1}",
 									 tasque.backend.Name,
-									 e.Message);
+									 e);
 					}
 				}
 					
@@ -481,13 +481,12 @@
 			/* string [] documenters = new string [] {
 			   "Calvin Gaisford <calvinrg gmail com>"
 			   };
+			   */
 
-			   string translators = Catalog.GetString ("translator-credits");
-			   if (translators == "translator-credits")
-			   translators = null;
-			 */
-
-
+			string translators = Catalog.GetString ("translator-credits");
+			if (translators == "translator-credits")
+				translators = null;
+			
 			Gtk.AboutDialog about = new Gtk.AboutDialog ();
 			about.Name = "Tasque";
 			about.Version = Defines.Version;
@@ -499,7 +498,7 @@
 			about.WebsiteLabel = Catalog.GetString("Tasque Project Homepage");
 			about.Authors = authors;
 			//about.Documenters = documenters;
-			//about.TranslatorCredits = translators;
+			about.TranslatorCredits = translators;
 			about.IconName = "tasque";
 			about.SetSizeRequest(300, 300);
 			about.Run ();



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