r22009 - gnucash/branches/2.4/src/report/business-reports - Fix translatable strings code for tax invoice report.

Cristian Marchi cmarchi at code.gnucash.org
Sun Feb 12 05:34:46 EST 2012


Author: cmarchi
Date: 2012-02-12 05:34:46 -0500 (Sun, 12 Feb 2012)
New Revision: 22009
Trac: http://svn.gnucash.org/trac/changeset/22009

Modified:
   gnucash/branches/2.4/src/report/business-reports/taxinvoice.scm
Log:
Fix translatable strings code for tax invoice report.

Modified: gnucash/branches/2.4/src/report/business-reports/taxinvoice.scm
===================================================================
--- gnucash/branches/2.4/src/report/business-reports/taxinvoice.scm	2012-02-12 10:29:47 UTC (rev 22008)
+++ gnucash/branches/2.4/src/report/business-reports/taxinvoice.scm	2012-02-12 10:34:46 UTC (rev 22009)
@@ -159,36 +159,36 @@
   ;; Heading options
   (add-option (gnc:make-string-option
                 ; page / name / orderkey / tooltip / default
-                headingpage optname-report-title "a" "" (N_ "Invoice")))
+                headingpage optname-report-title "a" "" (_ "Invoice")))
   (add-option (gnc:make-string-option
-                headingpage optname-units "b" "" (N_ "Units")))
+                headingpage optname-units "b" "" (_ "Units")))
   (add-option (gnc:make-string-option
-                headingpage optname-qty "c" "" (N_ "Qty")))
+                headingpage optname-qty "c" "" (_ "Qty")))
   (add-option (gnc:make-string-option
-                headingpage optname-unit-price "d" "" (N_ "Unit Price")))
+                headingpage optname-unit-price "d" "" (_ "Unit Price")))
   (add-option (gnc:make-string-option
-                headingpage optname-disc-rate "e" "" (N_ "Discount Rate")))
+                headingpage optname-disc-rate "e" "" (_ "Discount Rate")))
   (add-option (gnc:make-string-option
-                headingpage optname-disc-amount "f" "" (N_ "Discount Amount")))
+                headingpage optname-disc-amount "f" "" (_ "Discount Amount")))
   (add-option (gnc:make-string-option
-                headingpage optname-net-price "g" "" (N_ "Net Price")))
+                headingpage optname-net-price "g" "" (_ "Net Price")))
   (add-option (gnc:make-string-option
-                headingpage optname-tax-rate "h" "" (N_ "Tax Rate")))
+                headingpage optname-tax-rate "h" "" (_ "Tax Rate")))
   (add-option (gnc:make-string-option
-                headingpage optname-tax-amount "i" "" (N_ "Tax Amount")))
+                headingpage optname-tax-amount "i" "" (_ "Tax Amount")))
   (add-option (gnc:make-string-option
-                headingpage optname-total-price "j" "" (N_ "Total Price")))
+                headingpage optname-total-price "j" "" (_ "Total Price")))
   (add-option (gnc:make-string-option
-                headingpage2 optname-subtotal "a" "" (N_ "Sub-total")))
+                headingpage2 optname-subtotal "a" "" (_ "Sub-total")))
   (add-option (gnc:make-string-option
-                headingpage2 optname-amount-due "b" "" (N_ "Amount Due")))
+                headingpage2 optname-amount-due "b" "" (_ "Amount Due")))
   (add-option (gnc:make-string-option
                 headingpage2 optname-payment-recd "c" "" 
-                (N_ "Payment received, thank you")))
+                (_ "Payment received, thank you")))
 
   (add-option (gnc:make-text-option
                 notespage optname-extra-notes "a"
-                (N_ "Notes added at end of invoice -- may contain HTML markup") 
+                (_ "Notes added at end of invoice -- may contain HTML markup") 
                 ""))
                 ;(N_ "(Development version -- don't rely on the numbers on this report without double-checking them.<br>Change the 'Extra Notes' option to get rid of this message)")))
 



More information about the gnucash-changes mailing list