r19339 - gnucash/trunk/src/report/standard-reports - Bug #556713 - inconsistency in report options, partial fix

Geert Janssens gjanssens at code.gnucash.org
Tue Jul 6 12:52:44 EDT 2010


Author: gjanssens
Date: 2010-07-06 12:52:44 -0400 (Tue, 06 Jul 2010)
New Revision: 19339
Trac: http://svn.gnucash.org/trac/changeset/19339

Modified:
   gnucash/trunk/src/report/standard-reports/account-summary.scm
   gnucash/trunk/src/report/standard-reports/balance-sheet.scm
   gnucash/trunk/src/report/standard-reports/budget-balance-sheet.scm
   gnucash/trunk/src/report/standard-reports/budget-income-statement.scm
   gnucash/trunk/src/report/standard-reports/equity-statement.scm
   gnucash/trunk/src/report/standard-reports/income-statement.scm
   gnucash/trunk/src/report/standard-reports/transaction.scm
   gnucash/trunk/src/report/standard-reports/trial-balance.scm
Log:
Bug #556713 - inconsistency in report options, partial fix
This commit aligns all occurences of "Report Accounts" and "Accounts to include" to "Accounts"

Modified: gnucash/trunk/src/report/standard-reports/account-summary.scm
===================================================================
--- gnucash/trunk/src/report/standard-reports/account-summary.scm	2010-07-06 16:47:38 UTC (rev 19338)
+++ gnucash/trunk/src/report/standard-reports/account-summary.scm	2010-07-06 16:52:44 UTC (rev 19339)
@@ -71,7 +71,7 @@
 (define optname-date (N_ "Date"))
 ;; FIXME this needs an indent option
 
-(define optname-accounts (N_ "Accounts to include"))
+(define optname-accounts (N_ "Accounts"))
 (define opthelp-accounts
   (N_ "Report on these accounts, if display depth allows."))
 (define optname-depth-limit (N_ "Levels of Subaccounts"))

Modified: gnucash/trunk/src/report/standard-reports/balance-sheet.scm
===================================================================
--- gnucash/trunk/src/report/standard-reports/balance-sheet.scm	2010-07-06 16:47:38 UTC (rev 19338)
+++ gnucash/trunk/src/report/standard-reports/balance-sheet.scm	2010-07-06 16:52:44 UTC (rev 19339)
@@ -84,7 +84,7 @@
   (N_ "Print liability/equity section in the same column under the assets section as opposed to a second column right of the assets section"))
 ;; FIXME this needs an indent option
 
-(define optname-accounts (N_ "Accounts to include"))
+(define optname-accounts (N_ "Accounts"))
 (define opthelp-accounts
   (N_ "Report on these accounts, if display depth allows."))
 (define optname-depth-limit (N_ "Levels of Subaccounts"))

Modified: gnucash/trunk/src/report/standard-reports/budget-balance-sheet.scm
===================================================================
--- gnucash/trunk/src/report/standard-reports/budget-balance-sheet.scm	2010-07-06 16:47:38 UTC (rev 19338)
+++ gnucash/trunk/src/report/standard-reports/budget-balance-sheet.scm	2010-07-06 16:52:44 UTC (rev 19339)
@@ -49,7 +49,7 @@
   (N_ "Print liability/equity section in the same column under the assets section as opposed to a second column right of the assets section"))
 ;; FIXME this needs an indent option
 
-(define optname-accounts (N_ "Accounts to include"))
+(define optname-accounts (N_ "Accounts"))
 (define opthelp-accounts
   (N_ "Report on these accounts, if display depth allows."))
 (define optname-depth-limit (N_ "Levels of Subaccounts"))

Modified: gnucash/trunk/src/report/standard-reports/budget-income-statement.scm
===================================================================
--- gnucash/trunk/src/report/standard-reports/budget-income-statement.scm	2010-07-06 16:47:38 UTC (rev 19338)
+++ gnucash/trunk/src/report/standard-reports/budget-income-statement.scm	2010-07-06 16:52:44 UTC (rev 19339)
@@ -73,7 +73,7 @@
 
 ;; FIXME this could use an indent option
 
-(define optname-accounts (N_ "Accounts to include"))
+(define optname-accounts (N_ "Accounts"))
 (define opthelp-accounts
   (N_ "Report on these accounts, if display depth allows."))
 (define optname-depth-limit (N_ "Levels of Subaccounts"))

Modified: gnucash/trunk/src/report/standard-reports/equity-statement.scm
===================================================================
--- gnucash/trunk/src/report/standard-reports/equity-statement.scm	2010-07-06 16:47:38 UTC (rev 19338)
+++ gnucash/trunk/src/report/standard-reports/equity-statement.scm	2010-07-06 16:52:44 UTC (rev 19339)
@@ -66,7 +66,7 @@
 (define optname-start-date (N_ "Start Date"))
 (define optname-end-date (N_ "End Date"))
 
-(define optname-accounts (N_ "Accounts to include"))
+(define optname-accounts (N_ "Accounts"))
 (define opthelp-accounts
   (N_ "Report only on these accounts"))
 

Modified: gnucash/trunk/src/report/standard-reports/income-statement.scm
===================================================================
--- gnucash/trunk/src/report/standard-reports/income-statement.scm	2010-07-06 16:47:38 UTC (rev 19338)
+++ gnucash/trunk/src/report/standard-reports/income-statement.scm	2010-07-06 16:52:44 UTC (rev 19339)
@@ -60,7 +60,7 @@
 (define optname-end-date (N_ "End Date"))
 ;; FIXME this could use an indent option
 
-(define optname-accounts (N_ "Accounts to include"))
+(define optname-accounts (N_ "Accounts"))
 (define opthelp-accounts
   (N_ "Report on these accounts, if display depth allows."))
 (define optname-depth-limit (N_ "Levels of Subaccounts"))

Modified: gnucash/trunk/src/report/standard-reports/transaction.scm
===================================================================
--- gnucash/trunk/src/report/standard-reports/transaction.scm	2010-07-06 16:47:38 UTC (rev 19338)
+++ gnucash/trunk/src/report/standard-reports/transaction.scm	2010-07-06 16:52:44 UTC (rev 19339)
@@ -604,7 +604,7 @@
   ;; account to do report on
   (gnc:register-trep-option
    (gnc:make-account-list-option
-    gnc:pagename-accounts (N_ "Report Accounts")
+    gnc:pagename-accounts (N_ "Accounts")
     "a" (N_ "Report on these accounts")
     ;; select, by default, all accounts...
     (lambda ()
@@ -620,7 +620,7 @@
 
   (gnc:register-trep-option
    (gnc:make-account-list-option
-    gnc:pagename-accounts (N_ "Filter Accounts")
+    gnc:pagename-accounts (N_ "Filter By...")
     "b" (N_ "Filter on these accounts")
     (lambda ()
       ;; FIXME : gnc:get-current-accounts disappeared.
@@ -1307,8 +1307,8 @@
 
   (gnc:report-starting reportname)
   (let ((document (gnc:make-html-document))
-	(c_account_1 (opt-val gnc:pagename-accounts "Report Accounts"))
-	(c_account_2 (opt-val gnc:pagename-accounts "Filter Accounts"))
+	(c_account_1 (opt-val gnc:pagename-accounts "Accounts"))
+	(c_account_2 (opt-val gnc:pagename-accounts "Filter By..."))
 	(filter-mode (opt-val gnc:pagename-accounts "Filter Type"))
         (begindate (gnc:timepair-start-day-time
                     (gnc:date-option-absolute-time

Modified: gnucash/trunk/src/report/standard-reports/trial-balance.scm
===================================================================
--- gnucash/trunk/src/report/standard-reports/trial-balance.scm	2010-07-06 16:47:38 UTC (rev 19338)
+++ gnucash/trunk/src/report/standard-reports/trial-balance.scm	2010-07-06 16:52:44 UTC (rev 19339)
@@ -73,7 +73,7 @@
 (define opthelp-report-variant (N_ "Kind of trial balance to generate"))
 ;; FIXME this needs an indent option
 
-(define optname-accounts (N_ "Accounts to include"))
+(define optname-accounts (N_ "Accounts"))
 (define opthelp-accounts
   (N_ "Report on these accounts"))
 (define optname-depth-limit (N_ "Levels of Subaccounts"))



More information about the gnucash-changes mailing list