From eb7d6f395eee76e939509a63a409a91ce2fbbc84 Mon Sep 17 00:00:00 2001 From: Mathieu Lutfy Date: Mon, 18 Mar 2013 11:21:03 -0400 Subject: [PATCH] fixes CRM-12135: translation of title links, must provide gettext 'context'. --- CRM/Core/I18n.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Core/I18n.php b/CRM/Core/I18n.php index f21cfdb48f..889d88ae45 100644 --- a/CRM/Core/I18n.php +++ b/CRM/Core/I18n.php @@ -356,7 +356,7 @@ class CRM_Core_I18n { $array[$key] = $value; } elseif ((string ) $key == 'title') { - $array[$key] = ts($value); + $array[$key] = ts($value, array('context' => 'menu')); } } } -- 2.25.1