Merge "Bidi-embed user names and page names in secondary links"

This commit is contained in:
jenkins-bot 2016-02-29 21:24:16 +00:00 committed by Gerrit Code Review
commit 1696589ffd

View file

@ -406,7 +406,7 @@ abstract class EchoEventPresentationModel implements JsonSerializable {
return array(
'url' => $url,
'label' => $truncatedLabel,
'label' => $this->language->embedBidi( $truncatedLabel ),
'tooltip' => $isTruncated ? $label : '',
'description' => '',
'icon' => 'userAvatar',
@ -429,9 +429,12 @@ abstract class EchoEventPresentationModel implements JsonSerializable {
} else {
$icon = 'article';
}
return array(
'url' => $title->getFullURL( $query ),
'label' => $this->language->truncate( $title->getText(), self::PAGE_NAME_AS_LABEL_RECOMMENDED_LENGTH ),
'label' => $this->language->embedBidi(
$this->language->truncate( $title->getText(), self::PAGE_NAME_AS_LABEL_RECOMMENDED_LENGTH )
),
'tooltip' => $title->getPrefixedText(),
'description' => $description,
'icon' => $icon,