comparison src/prefs.c @ 5281:eae93f3e46bd

[gaim-migrate @ 5653] Miloslav Trmac (trmac) writes: " Hello, attached patch contains two trivial message changes * Use "Entry field" instead of "Entry widget". "widget" is a technical term, it's non-technical meaning ("any random thing") is not great. And translating it is a pain for the same reason. * "because the chosen filename does not exist" s/filename/file/. " committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Fri, 02 May 2003 01:57:52 +0000
parents d635e8fe2fba
children 399390d74514
comparison
equal deleted inserted replaced
5280:c9116905a08c 5281:eae93f3e46bd
660 _("Pictures and text"), OPT_IM_BUTTON_XPM | OPT_IM_BUTTON_TEXT, NULL); 660 _("Pictures and text"), OPT_IM_BUTTON_XPM | OPT_IM_BUTTON_TEXT, NULL);
661 gtk_size_group_add_widget(sg, widge); 661 gtk_size_group_add_widget(sg, widge);
662 gtk_misc_set_alignment(GTK_MISC(widge), 0, 0); 662 gtk_misc_set_alignment(GTK_MISC(widge), 0, 0);
663 gaim_labeled_spin_button(vbox, _("New window _width:"), &conv_size.width, 25, 9999, sg); 663 gaim_labeled_spin_button(vbox, _("New window _width:"), &conv_size.width, 25, 9999, sg);
664 gaim_labeled_spin_button(vbox, _("New window _height:"), &conv_size.height, 25, 9999, sg); 664 gaim_labeled_spin_button(vbox, _("New window _height:"), &conv_size.height, 25, 9999, sg);
665 gaim_labeled_spin_button(vbox, _("_Entry widget height:"), &conv_size.entry_height, 25, 9999, sg); 665 gaim_labeled_spin_button(vbox, _("_Entry field height:"), &conv_size.entry_height, 25, 9999, sg);
666 gaim_button(_("_Raise windows on events"), &im_options, OPT_IM_POPUP, vbox); 666 gaim_button(_("_Raise windows on events"), &im_options, OPT_IM_POPUP, vbox);
667 gaim_button(_("Hide window on _send"), &im_options, OPT_IM_POPDOWN, vbox); 667 gaim_button(_("Hide window on _send"), &im_options, OPT_IM_POPDOWN, vbox);
668 gtk_widget_show (vbox); 668 gtk_widget_show (vbox);
669 669
670 vbox = make_frame (ret, _("Buddy Icons")); 670 vbox = make_frame (ret, _("Buddy Icons"));
703 _("Pictures and text"), OPT_CHAT_BUTTON_XPM | OPT_CHAT_BUTTON_TEXT, NULL); 703 _("Pictures and text"), OPT_CHAT_BUTTON_XPM | OPT_CHAT_BUTTON_TEXT, NULL);
704 gtk_size_group_add_widget(sg, dd); 704 gtk_size_group_add_widget(sg, dd);
705 gtk_misc_set_alignment(GTK_MISC(dd), 0, 0); 705 gtk_misc_set_alignment(GTK_MISC(dd), 0, 0);
706 gaim_labeled_spin_button(vbox, _("New window _width:"), &buddy_chat_size.width, 25, 9999, sg); 706 gaim_labeled_spin_button(vbox, _("New window _width:"), &buddy_chat_size.width, 25, 9999, sg);
707 gaim_labeled_spin_button(vbox, _("New window _height:"), &buddy_chat_size.height, 25, 9999, sg); 707 gaim_labeled_spin_button(vbox, _("New window _height:"), &buddy_chat_size.height, 25, 9999, sg);
708 gaim_labeled_spin_button(vbox, _("_Entry widget height:"), &buddy_chat_size.entry_height, 25, 9999, sg); 708 gaim_labeled_spin_button(vbox, _("_Entry field height:"), &buddy_chat_size.entry_height, 25, 9999, sg);
709 gaim_button(_("_Raise windows on events"), &chat_options, OPT_CHAT_POPUP, vbox); 709 gaim_button(_("_Raise windows on events"), &chat_options, OPT_CHAT_POPUP, vbox);
710 710
711 vbox = make_frame (ret, _("Tab Completion")); 711 vbox = make_frame (ret, _("Tab Completion"));
712 gaim_button(_("_Tab-complete nicks"), &chat_options, OPT_CHAT_TAB_COMPLETE, vbox); 712 gaim_button(_("_Tab-complete nicks"), &chat_options, OPT_CHAT_TAB_COMPLETE, vbox);
713 gaim_button(_("_Old-style tab completion"), &chat_options, OPT_CHAT_OLD_STYLE_TAB, vbox); 713 gaim_button(_("_Old-style tab completion"), &chat_options, OPT_CHAT_OLD_STYLE_TAB, vbox);