Skip to content

Commit

Permalink
Merge pull request #25000 from mlutfy/fixMenuTranslation
Browse files Browse the repository at this point in the history
Fix CiviCRM Home/Hide/Logout translation
  • Loading branch information
seamuslee001 authored Nov 18, 2022
2 parents 8d5af7d + 98e27c5 commit 75c1c99
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions CRM/Core/BAO/Navigation.php
Original file line number Diff line number Diff line change
Expand Up @@ -898,23 +898,23 @@ public static function buildHomeMenu(&$menu) {
$item['child'] = [
[
'attributes' => [
'label' => 'CiviCRM Home',
'label' => ts('CiviCRM Home'),
'name' => 'CiviCRM Home',
'url' => 'civicrm/dashboard?reset=1',
'weight' => 1,
],
],
[
'attributes' => [
'label' => 'Hide Menu',
'label' => ts('Hide Menu'),
'name' => 'Hide Menu',
'url' => '#hidemenu',
'weight' => 2,
],
],
[
'attributes' => [
'label' => 'Log out',
'label' => ts('Log out'),
'name' => 'Log out',
'url' => 'civicrm/logout?reset=1',
'weight' => 3,
Expand Down

0 comments on commit 75c1c99

Please sign in to comment.