[Goodies-commits] r5703 - in xfce4-dict/trunk: lib src

Enrico Troeger enrico at xfce.org
Sun Oct 19 11:30:22 CEST 2008


Author: enrico
Date: 2008-10-19 09:30:22 +0000 (Sun, 19 Oct 2008)
New Revision: 5703

Modified:
   xfce4-dict/trunk/lib/dictd.c
   xfce4-dict/trunk/lib/prefs.c
   xfce4-dict/trunk/src/xfce4-dict.c
Log:
Fix a few strings.

Modified: xfce4-dict/trunk/lib/dictd.c
===================================================================
--- xfce4-dict/trunk/lib/dictd.c	2008-10-19 09:30:19 UTC (rev 5702)
+++ xfce4-dict/trunk/lib/dictd.c	2008-10-19 09:30:22 UTC (rev 5703)
@@ -539,7 +539,7 @@
 	end = strstr(buffer, ".\r\n250");
 	*end = '\0';
 
-	text = g_strdup_printf(_("Server Information for %s"), server);
+	text = g_strdup_printf(_("Server Information for \"%s\""), server);
 	dialog = gtk_dialog_new_with_buttons(text,
 				GTK_WINDOW(dd->window),
 				GTK_DIALOG_DESTROY_WITH_PARENT,

Modified: xfce4-dict/trunk/lib/prefs.c
===================================================================
--- xfce4-dict/trunk/lib/prefs.c	2008-10-19 09:30:19 UTC (rev 5702)
+++ xfce4-dict/trunk/lib/prefs.c	2008-10-19 09:30:22 UTC (rev 5703)
@@ -541,7 +541,7 @@
 		gtk_container_set_border_width(GTK_CONTAINER(inner_vbox), 5);
 		gtk_widget_show(inner_vbox);
 		gtk_notebook_insert_page(GTK_NOTEBOOK(notebook),
-			notebook_vbox, gtk_label_new(_("Aspell")), NOTEBOOK_PAGE_ASPELL);
+			notebook_vbox, gtk_label_new(_("Spell Check")), NOTEBOOK_PAGE_ASPELL);
 
 		label1 = gtk_label_new_with_mnemonic(_("Aspell program:"));
 		gtk_widget_show(label1);

Modified: xfce4-dict/trunk/src/xfce4-dict.c
===================================================================
--- xfce4-dict/trunk/src/xfce4-dict.c	2008-10-19 09:30:19 UTC (rev 5702)
+++ xfce4-dict/trunk/src/xfce4-dict.c	2008-10-19 09:30:22 UTC (rev 5703)
@@ -59,7 +59,7 @@
 	{ "spell", 's', 0, G_OPTION_ARG_NONE, &mode_spell, N_("Check the given text with a spell checker"), NULL },
 	{ "text-field", 't', 0, G_OPTION_ARG_NONE, &focus_panel_entry, N_("Grab the focus on the text field in the panel"), NULL },
 	{ "ignore-plugin", 'i', 0, G_OPTION_ARG_NONE, &ignore_plugin, N_("Start stand-alone application even if the panel plugin is loaded"), NULL },
-	{ "clipboard", 'c', 0, G_OPTION_ARG_NONE, &use_clipboard, N_("Grabs the PRIMARY selection content and uses it as search text."), NULL },
+	{ "clipboard", 'c', 0, G_OPTION_ARG_NONE, &use_clipboard, N_("Grabs the PRIMARY selection content and uses it as search text"), NULL },
 	{ "version", 'v', 0, G_OPTION_ARG_NONE, &show_version, N_("Show version information"), NULL },
 	{ NULL, 0, 0, 0, NULL, NULL, NULL }
 };




More information about the Goodies-commits mailing list