From 98e27c5edb280b6f3388196b8d092c4935f46262 Mon Sep 17 00:00:00 2001 From: Mathieu Lutfy Date: Fri, 18 Nov 2022 13:59:51 -0500 Subject: [PATCH] Fix CiviCRM Home/Hide/Logout translation --- CRM/Core/BAO/Navigation.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CRM/Core/BAO/Navigation.php b/CRM/Core/BAO/Navigation.php index 4651c710b68b..1f4345fbeeb5 100644 --- a/CRM/Core/BAO/Navigation.php +++ b/CRM/Core/BAO/Navigation.php @@ -898,7 +898,7 @@ 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, @@ -906,7 +906,7 @@ public static function buildHomeMenu(&$menu) { ], [ 'attributes' => [ - 'label' => 'Hide Menu', + 'label' => ts('Hide Menu'), 'name' => 'Hide Menu', 'url' => '#hidemenu', 'weight' => 2, @@ -914,7 +914,7 @@ public static function buildHomeMenu(&$menu) { ], [ 'attributes' => [ - 'label' => 'Log out', + 'label' => ts('Log out'), 'name' => 'Log out', 'url' => 'civicrm/logout?reset=1', 'weight' => 3,