AUDIT: r14646 - gnucash/trunk/src/report - Fix all last untranslated report titles. Deactivated Test Graphing report because it is untranslated completely.
Christian Stimming
cstim at cvs.gnucash.org
Sat Aug 12 10:38:42 EDT 2006
Author: cstim
Date: 2006-08-12 10:38:39 -0400 (Sat, 12 Aug 2006)
New Revision: 14646
Trac: http://svn.gnucash.org/trac/changeset/14646
Modified:
gnucash/trunk/src/report/report-system/html-utilities.scm
gnucash/trunk/src/report/standard-reports/account-summary.scm
gnucash/trunk/src/report/standard-reports/balance-sheet.scm
gnucash/trunk/src/report/standard-reports/equity-statement.scm
gnucash/trunk/src/report/standard-reports/general-journal.scm
gnucash/trunk/src/report/standard-reports/income-statement.scm
gnucash/trunk/src/report/standard-reports/trial-balance.scm
gnucash/trunk/src/report/utility-reports/Makefile.am
gnucash/trunk/src/report/utility-reports/utility-reports.scm
Log:
Fix all last untranslated report titles. Deactivated Test Graphing report because it is untranslated completely.
BP
Modified: gnucash/trunk/src/report/report-system/html-utilities.scm
===================================================================
--- gnucash/trunk/src/report/report-system/html-utilities.scm 2006-08-11 20:30:30 UTC (rev 14645)
+++ gnucash/trunk/src/report/report-system/html-utilities.scm 2006-08-12 14:38:39 UTC (rev 14646)
@@ -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
Modified: gnucash/trunk/src/report/standard-reports/account-summary.scm
===================================================================
--- gnucash/trunk/src/report/standard-reports/account-summary.scm 2006-08-11 20:30:30 UTC (rev 14645)
+++ gnucash/trunk/src/report/standard-reports/account-summary.scm 2006-08-12 14:38:39 UTC (rev 14646)
@@ -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
Modified: gnucash/trunk/src/report/standard-reports/balance-sheet.scm
===================================================================
--- gnucash/trunk/src/report/standard-reports/balance-sheet.scm 2006-08-11 20:30:30 UTC (rev 14645)
+++ gnucash/trunk/src/report/standard-reports/balance-sheet.scm 2006-08-12 14:38:39 UTC (rev 14646)
@@ -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
Modified: gnucash/trunk/src/report/standard-reports/equity-statement.scm
===================================================================
--- gnucash/trunk/src/report/standard-reports/equity-statement.scm 2006-08-11 20:30:30 UTC (rev 14645)
+++ gnucash/trunk/src/report/standard-reports/equity-statement.scm 2006-08-12 14:38:39 UTC (rev 14646)
@@ -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
Modified: gnucash/trunk/src/report/standard-reports/general-journal.scm
===================================================================
--- gnucash/trunk/src/report/standard-reports/general-journal.scm 2006-08-11 20:30:30 UTC (rev 14645)
+++ gnucash/trunk/src/report/standard-reports/general-journal.scm 2006-08-12 14:38:39 UTC (rev 14646)
@@ -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... :(
Modified: gnucash/trunk/src/report/standard-reports/income-statement.scm
===================================================================
--- gnucash/trunk/src/report/standard-reports/income-statement.scm 2006-08-11 20:30:30 UTC (rev 14645)
+++ gnucash/trunk/src/report/standard-reports/income-statement.scm 2006-08-12 14:38:39 UTC (rev 14646)
@@ -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
Modified: gnucash/trunk/src/report/standard-reports/trial-balance.scm
===================================================================
--- gnucash/trunk/src/report/standard-reports/trial-balance.scm 2006-08-11 20:30:30 UTC (rev 14645)
+++ gnucash/trunk/src/report/standard-reports/trial-balance.scm 2006-08-12 14:38:39 UTC (rev 14646)
@@ -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
Modified: gnucash/trunk/src/report/utility-reports/Makefile.am
===================================================================
--- gnucash/trunk/src/report/utility-reports/Makefile.am 2006-08-11 20:30:30 UTC (rev 14645)
+++ gnucash/trunk/src/report/utility-reports/Makefile.am 2006-08-12 14:38:39 UTC (rev 14646)
@@ -21,9 +21,10 @@
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
SCM_FILE_LINKS = \
Modified: gnucash/trunk/src/report/utility-reports/utility-reports.scm
===================================================================
--- gnucash/trunk/src/report/utility-reports/utility-reports.scm 2006-08-11 20:30:30 UTC (rev 14645)
+++ gnucash/trunk/src/report/utility-reports/utility-reports.scm 2006-08-12 14:38:39 UTC (rev 14646)
@@ -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)
More information about the gnucash-changes
mailing list