[Goodies-commits] r6521 - in xfce4-dict/trunk: . lib

Enrico Troeger enrico at xfce.org
Wed Jan 21 17:15:11 CET 2009


Author: enrico
Date: 2009-01-21 16:15:11 +0000 (Wed, 21 Jan 2009)
New Revision: 6521

Modified:
   xfce4-dict/trunk/ChangeLog
   xfce4-dict/trunk/lib/dictd.c
Log:
Fix untranslated search engine description (#4835).

Modified: xfce4-dict/trunk/ChangeLog
===================================================================
--- xfce4-dict/trunk/ChangeLog	2009-01-21 09:49:50 UTC (rev 6520)
+++ xfce4-dict/trunk/ChangeLog	2009-01-21 16:15:11 UTC (rev 6521)
@@ -1,3 +1,8 @@
+2009-01-21  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
+
+ * Fix untranslated search engine description (#4835).
+
+
 2009-01-19  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
 
  * Improve some strings, thanks to Jérôme Guelfucci for the suggestions.

Modified: xfce4-dict/trunk/lib/dictd.c
===================================================================
--- xfce4-dict/trunk/lib/dictd.c	2009-01-21 09:49:50 UTC (rev 6520)
+++ xfce4-dict/trunk/lib/dictd.c	2009-01-21 16:15:11 UTC (rev 6521)
@@ -426,7 +426,8 @@
 			gchar *text = g_strdup_printf(
 				/* for translators: the first wildcard is the search term, the second wildcard
 				 * is the name of the preferred web search engine */
-				_("Search \"%s\" using \"%s\""), dd->searched_word, dict_prefs_get_web_url_label(dd));
+				_("Search \"%s\" using \"%s\""),
+				dd->searched_word, _(dict_prefs_get_web_url_label(dd)));
 			gtk_text_buffer_insert(dd->main_textbuffer, &dd->textiter, "\n\n", 2);
 			gtk_text_buffer_insert_with_tags_by_name(dd->main_textbuffer, &dd->textiter,
 				text, -1, "link", NULL);




More information about the Goodies-commits mailing list