diff src/aim.c @ 350:fd3cc0a28d5d

[gaim-migrate @ 360] Some locale stuff committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Wed, 07 Jun 2000 18:33:21 +0000
parents b402a23f35df
children 29c94613ee63
line wrap: on
line diff
--- a/src/aim.c	Wed Jun 07 17:14:32 2000 +0000
+++ b/src/aim.c	Wed Jun 07 18:33:21 2000 +0000
@@ -298,12 +298,12 @@
         }
         
 	mainwindow = gtk_window_new(GTK_WINDOW_TOPLEVEL);
-        signon   = gtk_button_new_with_label("Signon");
-	cancel   = gtk_button_new_with_label("Cancel");
-	reg      = gtk_button_new_with_label("Register");
-	options  = gtk_button_new_with_label("Options");
+        signon   = gtk_button_new_with_label(_("Signon"));
+	cancel   = gtk_button_new_with_label(_("Cancel"));
+	reg      = gtk_button_new_with_label(_("Register"));
+	options  = gtk_button_new_with_label(_("Options"));
 #ifdef GAIM_PLUGINS
-	plugs    = gtk_button_new_with_label("Plugins");
+	plugs    = gtk_button_new_with_label(_("Plugins"));
 #endif
 	table    = gtk_table_new(8, 2, FALSE);
 	name     = gtk_combo_new();
@@ -366,13 +366,13 @@
 	gtk_table_attach(GTK_TABLE(table), label, 0,1,1,2,0,0, 5, 5);
 	gtk_widget_show(label);
 #endif
-	label = gtk_label_new("Screen Name: ");
+	label = gtk_label_new(_("Screen Name: "));
 	gtk_table_attach(GTK_TABLE(table), label, 0,1,2,3,0,0, 5, 5);
 	gtk_widget_show(label);
-	label = gtk_label_new("Password: ");
+	label = gtk_label_new(_("Password: "));
 	gtk_table_attach(GTK_TABLE(table), label, 0,1,3,4,0,0, 5, 5);
 	gtk_widget_show(label);
-	remember = gtk_check_button_new_with_label("Remember Password");
+	remember = gtk_check_button_new_with_label(_("Remember Password"));
 	gtk_table_attach(GTK_TABLE(table), remember, 0,2,4,5,0,0, 5, 5);
 	gtk_widget_show(remember);