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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -12,6 +12,6 @@
(use-modules (gnucash report view-column)) (use-modules (gnucash report view-column))
(use-modules (gnucash report welcome-to-gnucash)) (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) (re-export gnc:make-welcome-report)