evolution r35759 - trunk/shell



Author: tml
Date: Sat Jul 19 18:51:50 2008
New Revision: 35759
URL: http://svn.gnome.org/viewvc/evolution?rev=35759&view=rev

Log:
2008-07-19  Tor Lillqvist  <tml novell com>

	Bug 543758 - Never mark empty strings for translations

	* main.c (main): Change _("") to explicit gettext ("") to avoid
	potentially confusing translation tools or translators.



Modified:
   trunk/shell/ChangeLog
   trunk/shell/main.c

Modified: trunk/shell/main.c
==============================================================================
--- trunk/shell/main.c	(original)
+++ trunk/shell/main.c	Sat Jul 19 18:51:50 2008
@@ -680,7 +680,7 @@
 				      NULL);
 
 #ifdef G_OS_WIN32
-	if (strcmp (_(""), "") == 0) {
+	if (strcmp (gettext (""), "") == 0) {
 		/* No message catalog installed for the current locale language,
 		 * so don't bother with the localisations provided by other things then
 		 * either. Reset thread locale to "en-US" and C library locale to "C".



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