mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-24 16:04:35 +00:00
Merge "Bidi-embed user names and page names in secondary links"
This commit is contained in:
commit
1696589ffd
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue