Skip to content

Commit 81172be

Browse files
author
Brent McBride
committed
Fix and standardize 'columns' labels
1 parent 3be8777 commit 81172be

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

gnucash/report/reports/standard/investment-lots.scm

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@
6060
(define optname-show-sold-columns (N_ "Show sold columns"))
6161
(define optname-show-end-columns (N_ "Show end columns"))
6262
(define optname-show-realized-gain-columns
63-
(N_ "Show realized gain column(s)"))
63+
(N_ "Show realized gain columns"))
6464
(define optname-show-unrealized-gain-columns
65-
(N_ "Show unrealized gain column(s)"))
65+
(N_ "Show unrealized gain columns"))
6666
(define optname-group-gains-by-age
6767
(N_ "Group gains by age (short term and long term)"))
6868
(define optname-long-term-years (N_ "Long term gains age (years)"))
@@ -314,14 +314,14 @@
314314
pagename-columns
315315
optname-show-roi-columns
316316
"j"
317-
(N_ "Show Return On Investment (ROI) columns(s)")
317+
(N_ "Show Return On Investment (ROI) columns")
318318
#f)
319319

320320
(gnc-register-simple-boolean-option options
321321
pagename-columns
322322
optname-show-cagr-columns
323323
"k"
324-
(N_ "Show Compound Annual Growth Rate (CAGR) columns(s)")
324+
(N_ "Show Compound Annual Growth Rate (CAGR) columns")
325325
#t)
326326

327327
;; Display tab
@@ -637,8 +637,8 @@
637637
(zero? years))
638638
#f ; Unable to compute CAGR.
639639
(- (expt (/ end-value basis)
640-
(/ 1 years))
641-
1)))
640+
(/ 1 years))
641+
1)))
642642

643643
;; Gets the account name.
644644
(define (account->name account)

0 commit comments

Comments
 (0)