Bug #556713 - inconsistency in report options, partial fix

This commit aligns all occurences of "Current/Previous Year Start/End" to "Start/End of this year"

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@19348 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Geert Janssens 2010-07-07 15:11:25 +00:00
parent 0e80482cc0
commit 3270533024

View File

@ -670,29 +670,28 @@
(define (gnc:reldate-initialize)
(gnc:reldate-string-db
'store 'start-cal-year-string
(N_ "Current Year Start"))
(N_ "Start of this year"))
(gnc:reldate-string-db
'store 'start-cal-year-desc
(N_ "Start of the current calendar year"))
(gnc:reldate-string-db
'store 'end-cal-year-string
(N_ "Current Year End"))
(N_ "End of this year"))
(gnc:reldate-string-db
'store 'end-cal-year-desc
(N_ "End of the current calendar year"))
(gnc:reldate-string-db
'store 'start-prev-year-string
(N_ "Previous Year Start"))
(N_ "Start of previous year"))
(gnc:reldate-string-db
'store 'start-prev-year-desc
(N_ "Beginning of the previous calendar year"))
(gnc:reldate-string-db
'store 'end-prev-year-string
(N_ "Previous Year End"))
(N_ "End of previous year"))
(gnc:reldate-string-db
'store 'end-prev-year-desc
(N_ "End of the Previous Year"))