Standardize Administer
authorlarssandergreen <lars@wildsight.ca>
Thu, 13 Jul 2023 21:34:47 +0000 (15:34 -0600)
committerlarssandergreen <lars@wildsight.ca>
Thu, 13 Jul 2023 21:34:47 +0000 (15:34 -0600)
CRM/Admin/Page/Job.php
CRM/Admin/Page/JobLog.php
CRM/Admin/Page/PaymentProcessor.php
CRM/Contact/Form/Domain.php
CRM/Core/xml/Menu/Admin.xml
ext/afform/core/CRM/Afform/Page/AfformBase.php

index abfa14bfbcba8796e9ae780d11de8dc080c69b33..005b38f5ee177fe13e51a5469fc13ba5de90810f 100644 (file)
@@ -102,7 +102,7 @@ class CRM_Admin_Page_Job extends CRM_Core_Page_Basic {
     CRM_Utils_System::setTitle(ts('Settings - Scheduled Jobs'));
     CRM_Utils_System::appendBreadCrumb([
       [
-        'title' => ts('Administer CiviCRM'),
+        'title' => ts('Administer'),
         'url' => CRM_Utils_System::url('civicrm/admin', 'reset=1'),
       ],
     ]);
index 0303147efd82d5839d03cf49386760f0a59c2f58..d155a184a2715321989ebc674601caf31e543329 100644 (file)
@@ -60,7 +60,7 @@ class CRM_Admin_Page_JobLog extends CRM_Core_Page_Basic {
     CRM_Utils_System::setTitle(ts('Settings - Scheduled Jobs Log'));
     CRM_Utils_System::appendBreadCrumb([
       [
-        'title' => ts('Administration'),
+        'title' => ts('Administer'),
         'url' => CRM_Utils_System::url('civicrm/admin',
           'reset=1'
         ),
index 523262b6d3044c8ef83910a6b785e7c118e7ef2b..7849c2aad9e51a5b4e1561a99617d99e1861f3e7 100644 (file)
@@ -44,7 +44,7 @@ class CRM_Admin_Page_PaymentProcessor extends CRM_Core_Page_Basic {
     CRM_Utils_System::setTitle(ts('Settings - Payment Processor'));
     $breadCrumb = [
       [
-        'title' => ts('Administration'),
+        'title' => ts('Administer'),
         'url' => CRM_Utils_System::url('civicrm/admin',
           'reset=1'
         ),
index 2ccf0843e771027c39cc3b3b3504cf4b19af2808..42121b0371367431f75928962b8df53228bcec11 100644 (file)
@@ -65,7 +65,7 @@ class CRM_Contact_Form_Domain extends CRM_Core_Form {
   public function preProcess() {
     $this->setTitle(ts('Organization Address and Contact Info'));
     $breadCrumbPath = CRM_Utils_System::url('civicrm/admin', 'reset=1');
-    CRM_Utils_System::appendBreadCrumb(ts('Administer CiviCRM'), $breadCrumbPath);
+    CRM_Utils_System::appendBreadCrumb(ts('Administer'), $breadCrumbPath);
     $session = CRM_Core_Session::singleton();
     $session->replaceUserContext(CRM_Utils_System::url('civicrm/admin', 'reset=1'));
 
index fc29dd479eb5cd59c86cdf1231b3a4927d00598a..0aa9b984b20a4a7054c0fa3311908196757fd84e 100644 (file)
   </item>
   <item>
      <path>civicrm/admin</path>
-     <title>Administer CiviCRM</title>
+     <title>Administer</title>
      <access_arguments>administer CiviCRM system,administer CiviCRM data,access CiviCRM</access_arguments>
      <page_type>1</page_type>
      <page_callback>CRM_Admin_Page_Admin</page_callback>
index e8b18fcb08913e7ecb4dbebd787640e230af3da7..d01b9d781454d3eab1a5220a900fa6f2a908d5de 100644 (file)
@@ -26,7 +26,7 @@ class CRM_Afform_Page_AfformBase extends CRM_Core_Page {
       // If the user has "admin civicrm" & the admin extension is enabled
       if (CRM_Core_Permission::check('administer CiviCRM')) {
         if (($pagePath[1] ?? NULL) === 'admin') {
-          CRM_Utils_System::appendBreadCrumb([['title' => E::ts('Admin'), 'url' => CRM_Utils_System::url('civicrm/admin')]]);
+          CRM_Utils_System::appendBreadCrumb([['title' => E::ts('Administer'), 'url' => CRM_Utils_System::url('civicrm/admin')]]);
         }
         if ($afform['type'] !== 'system' &&
           \CRM_Extension_System::singleton()->getMapper()->isActiveModule('afform_admin')