gnucash maint: I18N: Unify thanks phrase in business reports

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


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



commit c3678d56b952b7ac0d55262d1f8cc6100b2e7859
Author: Frank H. Ellenberger <frank.h.ellenberger at gmail.com>
Date:   Tue Mar 5 21:29:50 2019 +0100

    I18N: Unify thanks phrase in business reports

diff --git a/gnucash/report/business-reports/invoice.scm b/gnucash/report/business-reports/invoice.scm
index 6c7d0bd47..a020c600d 100644
--- a/gnucash/report/business-reports/invoice.scm
+++ b/gnucash/report/business-reports/invoice.scm
@@ -447,7 +447,7 @@ for styling the invoice. Please see the exported report for the CSS class names.
                  (qof-print-date (xaccTransGetDate t)))
 
           (addif (description-col used-columns)
-                 (_ "Payment, thank you"))
+                 (_ "Payment, thank you!"))
 
           (list (gnc:make-html-table-cell/size/markup
                  1 (- (max 3 (num-columns-required used-columns))
diff --git a/gnucash/report/business-reports/job-report.scm b/gnucash/report/business-reports/job-report.scm
index e58f5a33d..82b4fd101 100644
--- a/gnucash/report/business-reports/job-report.scm
+++ b/gnucash/report/business-reports/job-report.scm
@@ -239,7 +239,7 @@
 		  (gnc:invoice-anchor-text invoice)
 		  inv-str))
 		inv-str))
-	   ((equal? type TXN-TYPE-PAYMENT) (_ "Payment, thank you"))
+	   ((equal? type TXN-TYPE-PAYMENT) (_ "Payment, thank you!"))
 	   (else (_ "Unknown"))))
 	 )
 
diff --git a/gnucash/report/business-reports/receipt.scm b/gnucash/report/business-reports/receipt.scm
index 1114298cb..4f2079e95 100644
--- a/gnucash/report/business-reports/receipt.scm
+++ b/gnucash/report/business-reports/receipt.scm
@@ -185,7 +185,7 @@
                 headingpage2 optname-amount-due "b" "" (_ "Amount Due")))
   (add-option (gnc:make-string-option
                 headingpage2 optname-payment-recd "c" ""
-                (N_ "Payment received, thank you")))
+                (N_ "Payment received, thank you!")))
 
   (add-option (gnc:make-text-option
                 notespage optname-extra-notes "a"
diff --git a/gnucash/report/business-reports/taxinvoice.scm b/gnucash/report/business-reports/taxinvoice.scm
index 685afdbc6..c988556e8 100644
--- a/gnucash/report/business-reports/taxinvoice.scm
+++ b/gnucash/report/business-reports/taxinvoice.scm
@@ -221,7 +221,7 @@
                 headingpage2 optname-amount-due "b" "" (_ "Amount Due")))
   (add-option (gnc:make-string-option
                 headingpage2 optname-payment-recd "c" "" 
-                (_ "Payment received, thank you.")))
+                (_ "Payment received, thank you")))
   (add-option (gnc:make-string-option	headingpage2	optname-invoice-number-text
     "d" "" (_ "Invoice number: ")))
   (add-option (gnc:make-string-option	headingpage2	optname-to-text



Summary of changes:
 gnucash/report/business-reports/invoice.scm    | 2 +-
 gnucash/report/business-reports/job-report.scm | 2 +-
 gnucash/report/business-reports/receipt.scm    | 2 +-
 gnucash/report/business-reports/taxinvoice.scm | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)



More information about the gnucash-changes mailing list