diff --git a/src/apps/haikudepot/HaikuDepotConstants.h b/src/apps/haikudepot/HaikuDepotConstants.h index 4e79b348ca..ba01cd06d3 100644 --- a/src/apps/haikudepot/HaikuDepotConstants.h +++ b/src/apps/haikudepot/HaikuDepotConstants.h @@ -78,4 +78,7 @@ enum UserUsageConditionsSelectionMode { #define STR_MDASH "\xE2\x80\x94" +#define ALERT_MSG_LOGS_USER_GUIDE "Information about how to view the logs is " \ + "available in the HaikuDepot section of the user guide." + #endif // HAIKU_DEPOT_CONSTANTS_H \ No newline at end of file diff --git a/src/apps/haikudepot/ui/MainWindow.cpp b/src/apps/haikudepot/ui/MainWindow.cpp index f2c8a9967c..1882c393c2 100644 --- a/src/apps/haikudepot/ui/MainWindow.cpp +++ b/src/apps/haikudepot/ui/MainWindow.cpp @@ -972,7 +972,8 @@ MainWindow::_BulkLoadProcessCoordinatorFinished( "that may cause data to be outdated or missing from the " "application's display. Additional details regarding this " "problem may be able to be obtained from the application " - "logs.")); + "logs." + ALERT_MSG_LOGS_USER_GUIDE)); } BMessenger messenger(this); messenger.SendMessage(MSG_BULK_LOAD_DONE); diff --git a/src/apps/haikudepot/ui/UserLoginWindow.cpp b/src/apps/haikudepot/ui/UserLoginWindow.cpp index 6a4e5eb84f..23b90c9a1d 100644 --- a/src/apps/haikudepot/ui/UserLoginWindow.cpp +++ b/src/apps/haikudepot/ui/UserLoginWindow.cpp @@ -785,7 +785,8 @@ UserLoginWindow::_CreateAccountUserUsageConditionsSetupThread( B_TRANSLATE("Usage conditions download problem"), B_TRANSLATE("An error has arisen downloading the usage " "conditions required to create a new user. Check the log for " - "details and try again.")); + "details and try again. " + ALERT_MSG_LOGS_USER_GUIDE)); } return result; diff --git a/src/apps/haikudepot/ui/UserUsageConditionsWindow.cpp b/src/apps/haikudepot/ui/UserUsageConditionsWindow.cpp index 62bb88de02..dc7bd042f4 100644 --- a/src/apps/haikudepot/ui/UserUsageConditionsWindow.cpp +++ b/src/apps/haikudepot/ui/UserUsageConditionsWindow.cpp @@ -391,7 +391,8 @@ UserUsageConditionsWindow::_NotifyFetchProblem() AppUtils::NotifySimpleError( B_TRANSLATE("Usage conditions download problem"), B_TRANSLATE("An error has arisen downloading the usage " - "conditions. Check the log for details and try again.")); + "conditions. Check the log for details and try again. " + ALERT_MSG_LOGS_USER_GUIDE)); }