mirror of
https://github.com/Gnucash/gnucash.git
synced 2024-11-22 08:57:17 -06:00
*** empty log message ***
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@2122 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
764bf4b168
commit
80668d6360
@ -1,5 +1,10 @@
|
||||
2000-03-26 Dave Peticolas <peticola@cs.ucdavis.edu>
|
||||
|
||||
* src/scm/report/transaction-report.scm: i18n the report
|
||||
|
||||
* src/gnome/window-register.c (gnc_transaction_delete_query):
|
||||
destroy on close, don't hide.
|
||||
|
||||
* src/register/splitreg.c: several new functions for saving and
|
||||
restore the contents of the cursor.
|
||||
|
||||
|
@ -439,6 +439,10 @@
|
||||
|
||||
<dd>for German text and euro date rework</dd>
|
||||
|
||||
<dt> <a href="mailto:parys@freewwweb.com"> Robby Stephenson</a></dt>
|
||||
|
||||
<dd>register patch</dd>
|
||||
|
||||
<dt> <a href="mailto:tma@iis.fhg.de"> Herbert Thoma</a></dt>
|
||||
|
||||
<dd>gnome register patch</dd>
|
||||
|
1
README
1
README
@ -582,6 +582,7 @@ Christopher Seawood <cls@seawood.org> for XbaeMatrix core dump
|
||||
Mike Simons <msimons@fsimons01.erols.com> misc configure.in patches
|
||||
Richard Skelton <rich@brake.demon.co.uk> for Solaris cleanup
|
||||
Henning Spruth <spruth@bigfoot.com> for German text & euro date rework
|
||||
Robby Stephenson <parys@freewwweb.com> register patch
|
||||
Herbert Thoma <tma@iis.fhg.de> gnome register patch
|
||||
Diane Trout <detrout@earthlink.net> scheme qif import patch
|
||||
Rob Walker <rob@valinux.com> guile and register patches
|
||||
|
1117
po/en_GB.po
1117
po/en_GB.po
File diff suppressed because it is too large
Load Diff
1126
po/gnucash.pot
1126
po/gnucash.pot
File diff suppressed because it is too large
Load Diff
@ -26,6 +26,7 @@ _("The background color for an active split in multi-line mode and the auto mode
|
||||
_("Double mode active background")
|
||||
_("This is a string option")
|
||||
_("Main Window")
|
||||
_("Debit")
|
||||
_("_Account Transactions")
|
||||
_("The date option is %s.")
|
||||
_("Account Transactions")
|
||||
@ -70,6 +71,7 @@ _("_Budget")
|
||||
_("Continental Europe: dd.mm.yyyy")
|
||||
_("account_edit_win_height")
|
||||
_("Import QIF File - Scripted in Guile.")
|
||||
_("Category")
|
||||
_("Show Horizontal Borders")
|
||||
_("Sort by check/transaction number")
|
||||
_("The background color for the active transaction in double mode")
|
||||
@ -86,6 +88,7 @@ _("Secondary Key")
|
||||
_("Save window sizes and positions.")
|
||||
_("Bank")
|
||||
_("Number Option")
|
||||
_("There are no accounts to report on.")
|
||||
_("Report for %s.")
|
||||
_("Reverse Income and Expense Accounts")
|
||||
_("Europe")
|
||||
@ -137,11 +140,13 @@ _("Number of Rows")
|
||||
_("/ (Slash)")
|
||||
_("Asset")
|
||||
_("Use 24-hour time format")
|
||||
_("Num")
|
||||
_("Date Format")
|
||||
_("A list option")
|
||||
_("ISO Standard: yyyy-mm-dd")
|
||||
_("Default Currency")
|
||||
_("Do transaction report on this account")
|
||||
_("Net Inflow")
|
||||
_("Single mode default even row background")
|
||||
_("Double mode default even row background")
|
||||
_("The multi-choice option is %s.")
|
||||
@ -248,6 +253,7 @@ _("main_win_width")
|
||||
_("Sort by amount")
|
||||
_("This is an account list option")
|
||||
_("Average Balance")
|
||||
_("Totals")
|
||||
_("Show All Transactions")
|
||||
_("Display the Profit and Loss report.")
|
||||
_("Display the Account Balance Tracker report.")
|
||||
|
@ -406,7 +406,7 @@ configLayout (SplitRegister *reg)
|
||||
FANCY (DEBT, debit, 5, 0);
|
||||
FANCY (CRED, credit, 6, 0);
|
||||
FANCY (BALN, balance, 7, 0);
|
||||
|
||||
|
||||
FANCY (ACTN, action, 1, 1);
|
||||
FANCY (MEMO, memo, 2, 1);
|
||||
|
||||
@ -418,7 +418,7 @@ configLayout (SplitRegister *reg)
|
||||
FANCY (DEBT, debit, 5, 0);
|
||||
FANCY (CRED, credit, 6, 0);
|
||||
FANCY (BALN, balance, 7, 0);
|
||||
|
||||
|
||||
curs = reg->split_cursor;
|
||||
FANCY (ACTN, action, 1, 0);
|
||||
FANCY (MEMO, memo, 2, 0);
|
||||
|
@ -73,7 +73,7 @@
|
||||
#define PORTFOLIO 13
|
||||
#define REG_TYPE_MASK 0xff
|
||||
|
||||
/*
|
||||
/*
|
||||
* enumerated display styles
|
||||
* REG_DOUBLE_LINE -- show two lines per transaction
|
||||
* REG_MULTI_LINE -- show multiple lines per transaction
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,15 +1,8 @@
|
||||
;;; $Id$
|
||||
|
||||
(gnc:support "text-export.scm")
|
||||
|
||||
(require 'pretty-print)
|
||||
(define (gnc:group-map-accounts thunk group)
|
||||
(let loop ((num-accounts (gnc:group-get-num-accounts group))
|
||||
(i 0))
|
||||
(if (= i num-accounts)
|
||||
'()
|
||||
(cons (thunk (gnc:group-get-account group i))
|
||||
(loop num-accounts (+ i 1))))))
|
||||
(gnc:support "text-export.scm")
|
||||
(gnc:depend "report-utilities.scm")
|
||||
|
||||
; (define (gnc:account-transactions-for-each thunk account)
|
||||
; ;; You must call gnc:group-reset-write-flags on the account group
|
||||
|
Loading…
Reference in New Issue
Block a user