projects
/
civicrm-core.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6e5197f
)
fixes CRM-12135: translation of title links, must provide gettext 'context'.
author
Mathieu Lutfy
<mathieu@bidon.ca>
Mon, 18 Mar 2013 15:21:03 +0000
(11:21 -0400)
committer
Mathieu Lutfy
<mathieu@bidon.ca>
Mon, 18 Mar 2013 15:21:03 +0000
(11:21 -0400)
CRM/Core/I18n.php
patch
|
blob
|
blame
|
history
diff --git
a/CRM/Core/I18n.php
b/CRM/Core/I18n.php
index f21cfdb48f7e9eaca977fcffee51026461252131..889d88ae4591981608e4f44a29dd7c8815a1116a 100644
(file)
--- 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')
);
}
}
}