changeset 4169:40d35a98f481

[gaim-migrate @ 4398] Taku YASUI (tach) provided more gettextizing committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Thu, 02 Jan 2003 15:53:44 +0000
parents ebfb80bbe1ed
children 11e643c9ef51
files src/multi.c
diffstat 1 files changed, 5 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/src/multi.c	Thu Jan 02 05:20:55 2003 +0000
+++ b/src/multi.c	Thu Jan 02 15:53:44 2003 +0000
@@ -764,7 +764,7 @@
 	if (!op)
 		return;
 
-	g_snprintf(buf, sizeof(buf), "%s Options", p->name);
+	g_snprintf(buf, sizeof(buf), _("%s Options"), p->name);
 	frame = make_frame(box, buf);
 
 	/* BLEH */
@@ -1021,7 +1021,7 @@
 	gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 5);
 	gtk_widget_show(hbox);
 
-	g_snprintf(buf, sizeof(buf), "Password for %s:", u->username);
+	g_snprintf(buf, sizeof(buf), _("Password for %s:"), u->username);
 	label = gtk_label_new(buf);
 	gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 5);
 	gtk_widget_show(label);
@@ -1305,7 +1305,7 @@
 	gtk_widget_set_sensitive (meter->button, FALSE);
 	gtk_progress_bar_update(GTK_PROGRESS_BAR(meter->progress), 1);
 	gtk_statusbar_pop(GTK_STATUSBAR(meter->status), 1);
-	gtk_statusbar_push(GTK_STATUSBAR(meter->status), 1, "Done.");
+	gtk_statusbar_push(GTK_STATUSBAR(meter->status), 1, _("Done."));
 	meter_win->active_count--;
 	if (meter_win->active_count == 0) {
 		gtk_widget_destroy(meter_win->window);
@@ -1445,7 +1445,7 @@
 	
 	nest_vbox = gtk_vbox_new (FALSE, 0);
 	
-	name_to_print = g_string_prepend(name_to_print, "Signon: ");
+	name_to_print = g_string_prepend(name_to_print, _("Signon: "));
 	label = gtk_label_new (name_to_print->str);
 	gtk_misc_set_alignment (GTK_MISC (label), 0, 0.5);
 		
@@ -1502,7 +1502,7 @@
 		gtk_window_set_policy(GTK_WINDOW(meter_win->window), 0, 0, 1);
 		gtk_window_set_role(GTK_WINDOW(meter_win->window), "signon");
 		gtk_container_set_border_width(GTK_CONTAINER(meter_win->window), 5);
-		gtk_window_set_title (GTK_WINDOW (meter_win->window), "Gaim Account Signon");
+		gtk_window_set_title (GTK_WINDOW (meter_win->window), _("Gaim Account Signon"));
 		gtk_widget_realize(meter_win->window);
 		
 		vbox = gtk_vbox_new (FALSE, 0);