Skip to content

Commit

Permalink
I18N: Unify thanks phrase in business reports
Browse files Browse the repository at this point in the history
  • Loading branch information
fellen committed Mar 5, 2019
1 parent 05606f2 commit c3678d5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion gnucash/report/business-reports/invoice.scm
Expand Up @@ -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))
Expand Down
2 changes: 1 addition & 1 deletion gnucash/report/business-reports/job-report.scm
Expand Up @@ -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"))))
)

Expand Down
2 changes: 1 addition & 1 deletion gnucash/report/business-reports/receipt.scm
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion gnucash/report/business-reports/taxinvoice.scm
Expand Up @@ -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
Expand Down

0 comments on commit c3678d5

Please sign in to comment.