From d0d5e23866efcc56a32a24aac67c64be2550c2c2 Mon Sep 17 00:00:00 2001 From: Tim Otten Date: Wed, 8 Jul 2020 15:01:24 -0700 Subject: [PATCH] Status Checks - Use more specific label regarding "Domain"/"Organization" check Before ------ Suppose you install CiviCRM anew. The installer shows a bulleted list of things to do. One of those takes you to another, much longer list of things to do. And *then* there's a popup on the sidebar which says you need to "Complete Setup". You say to yourself, "I thought that's what I was doing!" But you click it anyway. That takes you to a page with another list of things to do, one of which is to "Complete Setup". The text and link clarify that "Complete Setup" actually means *set the name and address of the organization*. After ----- There are still several different pages telling you what to do after setup. But at least the label is more precise. :) --- CRM/Utils/Check/Component/Env.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Utils/Check/Component/Env.php b/CRM/Utils/Check/Component/Env.php index 5a34553f3c..d6c19a0973 100644 --- a/CRM/Utils/Check/Component/Env.php +++ b/CRM/Utils/Check/Component/Env.php @@ -218,7 +218,7 @@ class CRM_Utils_Check_Component_Env extends CRM_Utils_Check_Component { $messages[] = new CRM_Utils_Check_Message( __FUNCTION__, $msg, - ts('Complete Setup'), + ts('Organization Setup'), \Psr\Log\LogLevel::WARNING, 'fa-check-square-o' ); -- 2.25.1