mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
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:
parent
960b57653f
commit
5bbfdec79a
@ -1148,7 +1148,7 @@ gnc_main_window_all_finish_pending (void)
|
|||||||
}
|
}
|
||||||
if (gnc_gui_refresh_suspended ())
|
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 FALSE;
|
||||||
}
|
}
|
||||||
return TRUE;
|
return TRUE;
|
||||||
|
@ -425,7 +425,7 @@ finish (GncPluginPage* page)
|
|||||||
{
|
{
|
||||||
if (gnc_get_ongoing_scrub ())
|
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)
|
if (ret)
|
||||||
{
|
{
|
||||||
gnc_set_abort_scrub (TRUE);
|
gnc_set_abort_scrub (TRUE);
|
||||||
|
@ -1917,7 +1917,7 @@ finish_scrub (GncPluginPage* page)
|
|||||||
{
|
{
|
||||||
if (is_scrubbing)
|
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)
|
if (ret)
|
||||||
{
|
{
|
||||||
abort_scrub = TRUE;
|
abort_scrub = TRUE;
|
||||||
|
Loading…
Reference in New Issue
Block a user