GNOME Bugzilla – Bug 347102
inform user about 'gnucash-docs' package when Help is selected with no content
Last modified: 2018-06-29 21:09:13 UTC
If the user hasn't installed 'gnucash-docs', then they click on the help link in the menu, nothing happens. We should detect the error and say "you need to install gnucash-docs", or maybe install stub documentation that says as much.
What about --- gnc-gnome-utils.c (revision 670) +++ gnc-gnome-utils.c (local) @@ -242,6 +242,11 @@ return; g_assert(error != NULL); + { + const gchar *message = _("Could not open show help. " + "Please install the 'gnucash-docs' package."); + gnc_error_dialog(NULL, message); + } PERR ("%s", error->message); g_error_free(error); } Input on wording needed desperately :)
Maybe "The help documents could not be found. Please install the 'gnucash-docs' package." or "Could not open the files for the help documentation. Please..."
Fixed in r15081. Used wording as result of a poll in IRC: GnuCash could not find the files for the help documentation. This is likely because the 'gnucash-docs' package is not installed.
Backported to 2.0 as r15104 by Andreas.
GnuCash bug tracking has moved to a new Bugzilla host. This bug has been copied to https://bugs.gnucash.org/show_bug.cgi?id=347102. Please update any external references or bookmarks.