gnucash maint: Bug 760052 - missing flag translatable in Custom Report

Frank H. Ellenberger fell at code.gnucash.org
Fri Jan 1 17:17:39 EST 2016


Updated	 via  https://github.com/Gnucash/gnucash/commit/b4f39ebf (commit)
	from  https://github.com/Gnucash/gnucash/commit/c6987290 (commit)



commit b4f39ebfb8beeb9dca71deac59f0dc5d939653b0
Author: fell <f.ellenberger at online.de>
Date:   Fri Jan 1 22:53:06 2016 +0100

    Bug 760052 - missing flag translatable in Custom Report

diff --git a/src/report/report-gnome/dialog-custom-report.c b/src/report/report-gnome/dialog-custom-report.c
index 8daf692..b4277bc 100644
--- a/src/report/report-gnome/dialog-custom-report.c
+++ b/src/report/report-gnome/dialog-custom-report.c
@@ -312,7 +312,7 @@ custom_report_delete (SCM guid, CustomReportDialog *crd)
     report_name = gnc_scm_to_utf8_string(scm_call_2(template_menu_name, guid, SCM_BOOL_F));
 
     /* we must confirm the user wants to delete their precious custom report! */
-    if (gnc_verify_dialog(crd->dialog, FALSE, "Are you sure you want to delete %s?", report_name))
+    if (gnc_verify_dialog(crd->dialog, FALSE, _("Are you sure you want to delete %s?"), report_name))
     {
         SCM del_report = scm_c_eval_string("gnc:delete-report");
         scm_call_1(del_report, guid);



Summary of changes:
 src/report/report-gnome/dialog-custom-report.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



More information about the gnucash-changes mailing list