| 1 |
<?php |
| 2 |
/** |
| 3 |
* This template contains the Friends 4.2 news entry. |
| 4 |
* |
| 5 |
* @package Friends |
| 6 |
*/ |
| 7 |
|
| 8 |
?> |
| 9 |
<div class="friends-news-entry-body"> |
| 10 |
<h2><?php esc_html_e( 'Friends 4.2: Direct Messages', 'friends' ); ?></h2> |
| 11 |
|
| 12 |
<div class="friends-news-changes"> |
| 13 |
<div class="friends-news-change"> |
| 14 |
<h4><?php esc_html_e( 'Direct Messages Page', 'friends' ); ?></h4> |
| 15 |
<p> |
| 16 |
<?php |
| 17 |
echo wp_kses( |
| 18 |
sprintf( |
| 19 |
// translators: %s is the direct messages page link. |
| 20 |
__( 'Read and reply to direct messages from %s with a conversation list, chat-style thread view, live refresh, drafts, profile links, and support for messages from ActivityPub users you do not follow.', 'friends' ), |
| 21 |
'<a href="' . esc_url( home_url( '/friends/messages/' ) ) . '">' . esc_html__( 'the direct messages page', 'friends' ) . '</a>' |
| 22 |
), |
| 23 |
array( |
| 24 |
'a' => array( |
| 25 |
'href' => true, |
| 26 |
), |
| 27 |
) |
| 28 |
); |
| 29 |
?> |
| 30 |
</p> |
| 31 |
</div> |
| 32 |
|
| 33 |
<div class="friends-news-change"> |
| 34 |
<h4><?php esc_html_e( 'Custom Emoji in Actor Names', 'friends' ); ?></h4> |
| 35 |
<p><?php esc_html_e( 'ActivityPub actor names now render custom emoji in timelines, profiles, and boosted posts.', 'friends' ); ?></p> |
| 36 |
</div> |
| 37 |
</div> |
| 38 |
</div> |
| 39 |
|