Remove spurious string from new-user.glade.

Tweak menu help in window-main.c.


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@3970 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Dave Peticolas 2001-04-15 08:16:35 +00:00
parent 21cd26048f
commit cacc719f15
3 changed files with 8 additions and 3 deletions

View File

@ -54,6 +54,9 @@ create_newUserDialog (void)
GtkWidget *newAccountsTypeList_SelectAllButton; GtkWidget *newAccountsTypeList_SelectAllButton;
GtkWidget *newAccountsTypeList_ClearAllButton; GtkWidget *newAccountsTypeList_ClearAllButton;
GtkWidget *finalAccountDruidPage; GtkWidget *finalAccountDruidPage;
GdkColor finalAccountDruidPage_bg_color = { 0, 6425, 6425, 28784 };
GdkColor finalAccountDruidPage_logo_bg_color = { 0, 65535, 65535, 65535 };
GdkColor finalAccountDruidPage_title_color = { 0, 65535, 65535, 65535 };
GtkWidget *druid_vbox3; GtkWidget *druid_vbox3;
GtkWidget *label6; GtkWidget *label6;
GtkWidget *hbox4; GtkWidget *hbox4;
@ -286,6 +289,9 @@ create_newUserDialog (void)
(GtkDestroyNotify) gtk_widget_unref); (GtkDestroyNotify) gtk_widget_unref);
gtk_widget_show_all (finalAccountDruidPage); gtk_widget_show_all (finalAccountDruidPage);
gnome_druid_append_page (GNOME_DRUID (accountChooseDruidPage), GNOME_DRUID_PAGE (finalAccountDruidPage)); gnome_druid_append_page (GNOME_DRUID (accountChooseDruidPage), GNOME_DRUID_PAGE (finalAccountDruidPage));
gnome_druid_page_standard_set_bg_color (GNOME_DRUID_PAGE_STANDARD (finalAccountDruidPage), &finalAccountDruidPage_bg_color);
gnome_druid_page_standard_set_logo_bg_color (GNOME_DRUID_PAGE_STANDARD (finalAccountDruidPage), &finalAccountDruidPage_logo_bg_color);
gnome_druid_page_standard_set_title_color (GNOME_DRUID_PAGE_STANDARD (finalAccountDruidPage), &finalAccountDruidPage_title_color);
gnome_druid_page_standard_set_title (GNOME_DRUID_PAGE_STANDARD (finalAccountDruidPage), _("Check and Enter Final Account Info")); gnome_druid_page_standard_set_title (GNOME_DRUID_PAGE_STANDARD (finalAccountDruidPage), _("Check and Enter Final Account Info"));
druid_vbox3 = GNOME_DRUID_PAGE_STANDARD (finalAccountDruidPage)->vbox; druid_vbox3 = GNOME_DRUID_PAGE_STANDARD (finalAccountDruidPage)->vbox;
@ -390,7 +396,6 @@ create_newUserDialog (void)
(GtkDestroyNotify) gtk_widget_unref); (GtkDestroyNotify) gtk_widget_unref);
gtk_widget_show (checkAccount_StartBalanceEntry); gtk_widget_show (checkAccount_StartBalanceEntry);
gtk_box_pack_start (GTK_BOX (vbox5), checkAccount_StartBalanceEntry, FALSE, FALSE, 0); gtk_box_pack_start (GTK_BOX (vbox5), checkAccount_StartBalanceEntry, FALSE, FALSE, 0);
gtk_entry_set_text (GTK_ENTRY (checkAccount_StartBalanceEntry), _("$ x.x"));
newUserDruidFinishPage = gnome_druid_page_finish_new (); newUserDruidFinishPage = gnome_druid_page_finish_new ();
gtk_widget_set_name (newUserDruidFinishPage, "newUserDruidFinishPage"); gtk_widget_set_name (newUserDruidFinishPage, "newUserDruidFinishPage");

View File

@ -515,7 +515,7 @@
<editable>True</editable> <editable>True</editable>
<text_visible>True</text_visible> <text_visible>True</text_visible>
<text_max_length>20</text_max_length> <text_max_length>20</text_max_length>
<text>$ x.x</text> <text></text>
<child> <child>
<padding>0</padding> <padding>0</padding>
<expand>False</expand> <expand>False</expand>

View File

@ -710,7 +710,7 @@ gnc_main_window_create_menus(GNCMainInfo * maininfo) {
{ {
GNOME_APP_UI_ITEM, GNOME_APP_UI_ITEM,
N_("Close _Window"), N_("Close _Window"),
N_("Close this MDI window"), N_("Close the current notebook page"),
gnc_main_window_file_close_cb, NULL, NULL, gnc_main_window_file_close_cb, NULL, NULL,
GNOME_APP_PIXMAP_NONE, NULL, 0, 0, NULL GNOME_APP_PIXMAP_NONE, NULL, 0, 0, NULL
}, },