From d0d4d95e3ba01b13069df9fba2cfd30ca1336cd9 Mon Sep 17 00:00:00 2001 From: jean <27791933+jeanlaroche@users.noreply.github.com> Date: Wed, 22 Sep 2021 23:53:46 -0700 Subject: [PATCH] Change the wording of the dialog when no new transactions need to be reviewed --- gnucash/import-export/ofx/gnc-ofx-import.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnucash/import-export/ofx/gnc-ofx-import.c b/gnucash/import-export/ofx/gnc-ofx-import.c index f759523450..c7de890bd5 100644 --- a/gnucash/import-export/ofx/gnc-ofx-import.c +++ b/gnucash/import-export/ofx/gnc-ofx-import.c @@ -1199,7 +1199,7 @@ runMatcher(ofx_info* info, char * selected_filename, gboolean go_to_next_file) if (info->num_trans_processed) { gchar* acct_name = gnc_get_account_name_for_register (first_account); - gnc_info_dialog (parent, _("OFX file '%s', imported transactions for account '%s'\n%d transactions processed, no transactions to match"), + gnc_info_dialog (parent, _("While importing transactions from OFX file '%s' into account '%s', found %d previously imported transactions, no new transactions."), selected_filename, acct_name, info->num_trans_processed); g_free (acct_name); gnc_ofx_match_done (NULL,info);