diff src/gtkhtml.c @ 353:a4df8f1cc61a

[gaim-migrate @ 363] Hm de hm hm committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Wed, 07 Jun 2000 22:32:44 +0000
parents b402a23f35df
children 64afc8f41bcb
line wrap: on
line diff
--- a/src/gtkhtml.c	Wed Jun 07 22:04:18 2000 +0000
+++ b/src/gtkhtml.c	Wed Jun 07 22:32:44 2000 +0000
@@ -1388,7 +1388,7 @@
 			gap = 2;
 		baseline_skip = style->font->ascent + style->font->descent + gap;
 
-		w = 8 + MAX(gdk_string_width(style->font, "HTML Link:"),
+		w = 8 + MAX(gdk_string_width(style->font, _("HTML Link:")),
 					gdk_string_width(style->font, html->tooltip_hb->url));
 		;
 		h = 8 - gap;
@@ -1797,7 +1797,7 @@
 			   
 			   if (web_browser == BROWSER_NETSCAPE) {
 			   
-			   button = gtk_menu_item_new_with_label("Open URL in existing window");
+			   button = gtk_menu_item_new_with_label(_("Open URL in existing window"));
 			   gtk_signal_connect(GTK_OBJECT(button), "activate",
 			   GTK_SIGNAL_FUNC(open_url), hb->url);
 			   gtk_menu_append(GTK_MENU(menu), button);
@@ -1806,7 +1806,7 @@
 			   }
 			   
 			   
-			   button = gtk_menu_item_new_with_label("Open URL in new window");
+			   button = gtk_menu_item_new_with_label(_("Open URL in new window"));
 			   gtk_signal_connect(GTK_OBJECT(button), "activate",
 			   GTK_SIGNAL_FUNC(open_url_nw), hb->url);
 			   gtk_menu_append(GTK_MENU(menu), button);
@@ -1814,7 +1814,7 @@
 			   
 			   if (web_browser == BROWSER_NETSCAPE) {
 			   
-			   button = gtk_menu_item_new_with_label("Add URL as bookmark");
+			   button = gtk_menu_item_new_with_label(_("Add URL as bookmark"));
 			   gtk_signal_connect(GTK_OBJECT(button), "activate",
 			   GTK_SIGNAL_FUNC(add_bookmark), hb->url);
 			   gtk_menu_append(GTK_MENU(menu), button);