gnucash stable: Multiple changes pushed

Christopher Lam clam at code.gnucash.org
Fri Dec 29 09:50:15 EST 2023


Updated	 via  https://github.com/Gnucash/gnucash/commit/4ea3c081 (commit)
	 via  https://github.com/Gnucash/gnucash/commit/6da48a29 (commit)
	 via  https://github.com/Gnucash/gnucash/commit/fb7ac1a6 (commit)
	from  https://github.com/Gnucash/gnucash/commit/694b0829 (commit)



commit 4ea3c081085bf26424431b844e0b6fdb1a918d39
Merge: 694b0829e8 6da48a2942
Author: Christopher Lam <christopher.lck at gmail.com>
Date:   Fri Dec 29 22:49:17 2023 +0800

    Merge Glenn Fowler's branch add-spacing-long-invoice-ID into stable #1844


commit 6da48a2942882444c30c73c594a7c73577d0047e
Author: Glenn Fowler <gfowler1 at outlook.com>
Date:   Sat Dec 23 15:50:59 2023 -0500

    Update invoice.scm
    
    Add spacing for long Invoice ID's w/ CSS (spacing w/ HTML in strings breaks translations)

diff --git a/gnucash/report/reports/standard/invoice.scm b/gnucash/report/reports/standard/invoice.scm
index 4431069e72..e61f436667 100644
--- a/gnucash/report/reports/standard/invoice.scm
+++ b/gnucash/report/reports/standard/invoice.scm
@@ -40,7 +40,7 @@
 .entries-table > table { width: 100% }
 .company-table > table * { padding: 0px; }
 .client-table > table * { padding: 0px; }
-.invoice-details-table > table * { padding: 0px; }
+.invoice-details-table > table * { padding: 0px; text-indent: 0.2em; }
 @media print { .main-table > table { width: 100%; }}
 ")
 
@@ -564,7 +564,7 @@ for styling the invoice. Please see the exported report for the CSS class names.
               (begin
                 (gnc:html-table-append-row! invoice-details-table
                                             (list
-                                             (G_ "Reference: ")
+                                             (G_ "Reference:")
                                              (gnc:make-html-div/markup
                                               "div-align-right"
                                               (multiline-to-html-text billing-id))))

commit fb7ac1a6d07bb479c0b8f6b29a6a0ac2346fa828
Author: Glenn Fowler <gfowler1 at outlook.com>
Date:   Fri Dec 22 17:07:23 2023 -0500

    Update invoice.scm
    
    Add spacing for long Invoice ID's (Displayed as "Reference" on the Invoice)

diff --git a/gnucash/report/reports/standard/invoice.scm b/gnucash/report/reports/standard/invoice.scm
index 04035a74fd..4431069e72 100644
--- a/gnucash/report/reports/standard/invoice.scm
+++ b/gnucash/report/reports/standard/invoice.scm
@@ -564,7 +564,7 @@ for styling the invoice. Please see the exported report for the CSS class names.
               (begin
                 (gnc:html-table-append-row! invoice-details-table
                                             (list
-                                             (G_ "Reference:")
+                                             (G_ "Reference: ")
                                              (gnc:make-html-div/markup
                                               "div-align-right"
                                               (multiline-to-html-text billing-id))))



Summary of changes:
 gnucash/report/reports/standard/invoice.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



More information about the gnucash-changes mailing list