Skip to content

Commit

Permalink
Fix and standardize 'columns' labels
Browse files Browse the repository at this point in the history
  • Loading branch information
Brent McBride committed Jun 11, 2024
1 parent 3be8777 commit 81172be
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions gnucash/report/reports/standard/investment-lots.scm
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@
(define optname-show-sold-columns (N_ "Show sold columns"))
(define optname-show-end-columns (N_ "Show end columns"))
(define optname-show-realized-gain-columns
(N_ "Show realized gain column(s)"))
(N_ "Show realized gain columns"))
(define optname-show-unrealized-gain-columns
(N_ "Show unrealized gain column(s)"))
(N_ "Show unrealized gain columns"))
(define optname-group-gains-by-age
(N_ "Group gains by age (short term and long term)"))
(define optname-long-term-years (N_ "Long term gains age (years)"))
Expand Down Expand Up @@ -314,14 +314,14 @@
pagename-columns
optname-show-roi-columns
"j"
(N_ "Show Return On Investment (ROI) columns(s)")
(N_ "Show Return On Investment (ROI) columns")
#f)

(gnc-register-simple-boolean-option options
pagename-columns
optname-show-cagr-columns
"k"
(N_ "Show Compound Annual Growth Rate (CAGR) columns(s)")
(N_ "Show Compound Annual Growth Rate (CAGR) columns")
#t)

;; Display tab
Expand Down Expand Up @@ -637,8 +637,8 @@
(zero? years))
#f ; Unable to compute CAGR.
(- (expt (/ end-value basis)
(/ 1 years))
1)))
(/ 1 years))
1)))

;; Gets the account name.
(define (account->name account)
Expand Down

0 comments on commit 81172be

Please sign in to comment.