gnucash maint: Bug 797104 - Translations not showing in receipt options

Frank H.Ellenberger fell at code.gnucash.org
Tue Mar 5 14:56:46 EST 2019


Updated	 via  https://github.com/Gnucash/gnucash/commit/05606f24 (commit)
	from  https://github.com/Gnucash/gnucash/commit/c419c6d9 (commit)



commit 05606f240e8bec41510331b123344449c9f588eb
Author: Frank H. Ellenberger <frank.h.ellenberger at gmail.com>
Date:   Tue Mar 5 20:56:23 2019 +0100

    Bug 797104 - Translations not showing in receipt options

diff --git a/gnucash/report/business-reports/receipt.scm b/gnucash/report/business-reports/receipt.scm
index 780dbf0ee..1114298cb 100644
--- a/gnucash/report/business-reports/receipt.scm
+++ b/gnucash/report/business-reports/receipt.scm
@@ -160,29 +160,29 @@
   ;; 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")))



Summary of changes:
 gnucash/report/business-reports/receipt.scm | 24 ++++++++++++------------
 1 file changed, 12 insertions(+), 12 deletions(-)



More information about the gnucash-changes mailing list