Skip to content

Commit

Permalink
Bug #556713 - inconsistency in report options, partial fix
Browse files Browse the repository at this point in the history
This commit aligns all occurences of "Report Accounts" and "Accounts to include" to "Accounts"

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@19339 57a11ea4-9604-0410-9ed3-97b8803252fd
  • Loading branch information
gjanssens committed Jul 6, 2010
1 parent 720dd82 commit 0e80482
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion src/report/standard-reports/account-summary.scm
Expand Up @@ -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"))
Expand Down
2 changes: 1 addition & 1 deletion src/report/standard-reports/balance-sheet.scm
Expand Up @@ -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"))
Expand Down
2 changes: 1 addition & 1 deletion src/report/standard-reports/budget-balance-sheet.scm
Expand Up @@ -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"))
Expand Down
2 changes: 1 addition & 1 deletion src/report/standard-reports/budget-income-statement.scm
Expand Up @@ -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"))
Expand Down
2 changes: 1 addition & 1 deletion src/report/standard-reports/equity-statement.scm
Expand Up @@ -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"))

Expand Down
2 changes: 1 addition & 1 deletion src/report/standard-reports/income-statement.scm
Expand Up @@ -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"))
Expand Down
8 changes: 4 additions & 4 deletions src/report/standard-reports/transaction.scm
Expand Up @@ -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 ()
Expand All @@ -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.
Expand Down Expand Up @@ -1307,8 +1307,8 @@ Credit Card, and Income accounts")))))

(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
Expand Down
2 changes: 1 addition & 1 deletion src/report/standard-reports/trial-balance.scm
Expand Up @@ -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"))
Expand Down

0 comments on commit 0e80482

Please sign in to comment.