Slightly modify recently added warning messages

- The term 'scrubbing' is only used internally in code. The gui uses 'check & repair'
- The operations are running rather than pending
This commit is contained in:
Geert Janssens 2020-09-16 21:44:42 +02:00
parent 960b57653f
commit 5bbfdec79a
4 changed files with 3113 additions and 2973 deletions

View File

@ -1148,7 +1148,7 @@ gnc_main_window_all_finish_pending (void)
}
if (gnc_gui_refresh_suspended ())
{
gnc_warning_dialog (NULL, "%s", "An operation is still pending, wait for it to complete before quitting ");
gnc_warning_dialog (NULL, "%s", "An operation is still running, wait for it to complete before quitting.");
return FALSE;
}
return TRUE;

View File

@ -425,7 +425,7 @@ finish (GncPluginPage* page)
{
if (gnc_get_ongoing_scrub ())
{
gboolean ret = gnc_verify_dialog (GTK_WINDOW (gnc_plugin_page_get_window (GNC_PLUGIN_PAGE (page))), FALSE, _("A scrubbing operation is currently pending, do you want to abort it?"));
gboolean ret = gnc_verify_dialog (GTK_WINDOW (gnc_plugin_page_get_window (GNC_PLUGIN_PAGE (page))), FALSE, _("'Check & Repair' is currently running, do you want to abort it?"));
if (ret)
{
gnc_set_abort_scrub (TRUE);

View File

@ -1917,7 +1917,7 @@ finish_scrub (GncPluginPage* page)
{
if (is_scrubbing)
{
gboolean ret = gnc_verify_dialog (GTK_WINDOW (gnc_plugin_page_get_window (GNC_PLUGIN_PAGE (page))), FALSE, _("A scrubbing operation is currently pending, do you want to abort it?"));
gboolean ret = gnc_verify_dialog (GTK_WINDOW (gnc_plugin_page_get_window (GNC_PLUGIN_PAGE (page))), FALSE, _("'Check & Repair' is currently running, do you want to abort it?"));
if (ret)
{
abort_scrub = TRUE;

6080
po/nl.po

File diff suppressed because it is too large Load Diff