From 9752daa88c4c11cbfc8087690eb338a1a3d02c12 Mon Sep 17 00:00:00 2001 From: Christopher Lam Date: Fri, 7 Jun 2019 21:11:55 +0800 Subject: [PATCH] [i18n] fix translator comments to be visible to gettext Part of Bug 797270 - Budget Chart report - translation of header and dates Previously, the translator comments were on the same line and were not processed into .po clues -- this commit fixes it. --- gnucash/report/standard-reports/budget.scm | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/gnucash/report/standard-reports/budget.scm b/gnucash/report/standard-reports/budget.scm index fa82bd9ff8..bcbaa99797 100644 --- a/gnucash/report/standard-reports/budget.scm +++ b/gnucash/report/standard-reports/budget.scm @@ -476,15 +476,18 @@ (when show-budget? (gnc:html-table-set-cell/tag! html-table 1 col0 "centered-label-cell" - (_ "Bgt"))) ;; Translators: Abbreviation for "Budget" + ;; Translators: Abbreviation for "Budget" amount + (_ "Bgt"))) (when show-actual? (gnc:html-table-set-cell/tag! html-table 1 col1 "centered-label-cell" - (_ "Act"))) ;; Translators: Abbreviation for "Actual" + ;; Translators: Abbreviation for "Actual" amount + (_ "Act"))) (when show-diff? (gnc:html-table-set-cell/tag! html-table 1 col2 "centered-label-cell" - (_ "Diff"))) ;; Translators: Abbreviation for "Difference" + ;; Translators: Abbreviation for "Difference" amount + (_ "Diff"))) (loop (cdr column-list) col3))))))