Fix all last untranslated report titles. Deactivated Test Graphing report because it is untranslated completely.

BP

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@14646 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Christian Stimming 2006-08-12 14:38:39 +00:00
parent c59ec41913
commit 6757d16770
9 changed files with 15 additions and 14 deletions

View File

@ -794,9 +794,9 @@
(gnc:html-text-append!
p
(gnc:html-markup-h2 (string-append
report-title-string
(_ report-title-string)
":"))
(gnc:html-markup-h2 (_ ""))
(gnc:html-markup-h2 "")
(gnc:html-markup-p
(_ "This report requires you to specify certain report options.")))
(if report-id
@ -818,7 +818,7 @@
(gnc:html-text-append!
p
(gnc:html-markup-h2 (string-append
report-title-string
(_ report-title-string)
":"))
(gnc:html-markup-h2 (_ "No accounts selected"))
(gnc:html-markup-p

View File

@ -133,7 +133,7 @@
(add-option
(gnc:make-string-option
gnc:pagename-general optname-report-title
"a" opthelp-report-title reportname))
"a" opthelp-report-title (_ reportname)))
(add-option
(gnc:make-string-option
gnc:pagename-general optname-party-name

View File

@ -151,7 +151,7 @@
(add-option
(gnc:make-string-option
gnc:pagename-general optname-report-title
"a" opthelp-report-title reportname))
"a" opthelp-report-title (_ reportname)))
(add-option
(gnc:make-string-option
gnc:pagename-general optname-party-name

View File

@ -107,7 +107,7 @@
(add-option
(gnc:make-string-option
(N_ "General") optname-report-title
"a" opthelp-report-title reportname))
"a" opthelp-report-title (_ reportname)))
(add-option
(gnc:make-string-option
(N_ "General") optname-party-name

View File

@ -83,15 +83,15 @@
(list "query" (gnc:query->scm query)) ;; think this wants an scm...
(list "journal" #t)
(list "double" #t)
(list "debit-string" (N_ "Debit"))
(list "credit-string" (N_ "Credit"))
(list "debit-string" (_ "Debit"))
(list "credit-string" (_ "Credit"))
)
)
;; we'll leave query malloc'd in case this is required by the C side...
;; set options in the general tab...
(set-option!
gnc:pagename-general (N_ "Title") (N_ "General Journal"))
gnc:pagename-general (N_ "Title") (_ reportname))
;; we can't (currently) set the Report name here
;; because it is automatically set to the template
;; name... :(

View File

@ -134,7 +134,7 @@
(add-option
(gnc:make-string-option
gnc:pagename-general optname-report-title
"a" opthelp-report-title reportname))
"a" opthelp-report-title (_ reportname)))
(add-option
(gnc:make-string-option
gnc:pagename-general optname-party-name

View File

@ -144,7 +144,7 @@
(add-option
(gnc:make-string-option
(N_ "General") optname-report-title
"a" opthelp-report-title reportname))
"a" opthelp-report-title (_ reportname)))
(add-option
(gnc:make-string-option
(N_ "General") optname-party-name

View File

@ -21,8 +21,9 @@ gncscmmod_DATA = \
hello-world.scm \
utility-reports.scm \
view-column.scm \
welcome-to-gnucash.scm \
test-graphing.scm
welcome-to-gnucash.scm
# test-graphing.scm -- not intended for general public?!? Surely not translated at all.
if GNUCASH_SEPARATE_BUILDDIR
#For separate build directory

View File

@ -12,6 +12,6 @@
(use-modules (gnucash report view-column))
(use-modules (gnucash report welcome-to-gnucash))
(use-modules (gnucash report test-graphing))
;;(use-modules (gnucash report test-graphing))
(re-export gnc:make-welcome-report)