* src/business/business-ledger/gncEntryLedgerModel.c -- relabel

the "Account" column to "Income Account" or "Expense Account"
	  to better encourage the user to "choose wisely".


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@7873 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Derek Atkins 2003-01-22 21:10:17 +00:00
parent fdc0ce054a
commit d16e0d846e
2 changed files with 13 additions and 4 deletions

View File

@ -6,6 +6,10 @@
elsewhere so that the reports themselves don't depend on
gnome... This fixes Wilddev's report problem.
* src/business/business-ledger/gncEntryLedgerModel.c -- relabel
the "Account" column to "Income Account" or "Expense Account"
to better encourage the user to "choose wisely".
2003-01-21 David Hampton <hampton@employees.org>
* src/quotes/finance-quote-helper.in: Fix problem getting quotes

View File

@ -34,9 +34,14 @@ static GncEntryLedgerColors reg_colors =
/* GET_LABEL */
static const char * get_acct_label (VirtualLocation virt_loc, gpointer data)
static const char * get_iacct_label (VirtualLocation virt_loc, gpointer data)
{
return _("Account");
return _("Income Account");
}
static const char * get_bacct_label (VirtualLocation virt_loc, gpointer data)
{
return _("Expense Account");
}
static const char * get_actn_label (VirtualLocation virt_loc, gpointer data)
@ -1044,8 +1049,8 @@ static void gnc_entry_ledger_model_new_handlers (TableModel *model,
gpointer help_handler;
gpointer io_flags_handler;
} models[] = {
{ ENTRY_IACCT_CELL, get_iacct_entry, get_acct_label, get_acct_help, get_standard_io_flags },
{ ENTRY_BACCT_CELL, get_bacct_entry, get_acct_label, get_acct_help, get_standard_io_flags },
{ ENTRY_IACCT_CELL, get_iacct_entry, get_iacct_label, get_acct_help, get_standard_io_flags },
{ ENTRY_BACCT_CELL, get_bacct_entry, get_bacct_label, get_acct_help, get_standard_io_flags },
{ ENTRY_ACTN_CELL, get_actn_entry, get_actn_label, get_actn_help, get_standard_io_flags },
{ ENTRY_DATE_CELL, get_date_entry, get_date_label, get_date_help, get_standard_io_flags },
{ ENTRY_DESC_CELL, get_desc_entry, get_desc_label, get_desc_help, get_standard_io_flags },