PluginProbe
Friends / 2.8.1
Friends v2.8.1
4.3.2 4.3.1 4.3.0 4.2.2 4.2.1 4.2.0 4.1.0 2.7.4 2.7.5 2.7.6 2.7.7 2.7.8 2.7.9 2.8.0 2.8.1 2.8.2 2.8.3 2.8.4 2.8.5 2.8.6 2.8.7 2.8.8 2.8.9 2.9.0 2.9.1 All 88 releases
friends / templates / email / accepted-friend-request.php

accepted-friend-request.php in Friends 2.8.1, at templates/email/accepted-friend-request.php

30 lines 685 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * This template contains the HTML for the Accepted Friend Request notification e-mail.
4 *
5 * @version 1.0
6 * @package Friends
7 */
8
9 ?>
10 <p>
11 <?php
12 // translators: %s is a user display name.
13 printf( __( 'Howdy, %s!', 'friends' ), esc_html( $args['user']->display_name ) );
14 ?>
15 </p>
16
17 <p>
18 <?php
19 // translators: %s is a username.
20 printf( __( 'Good news, %s has accepted your friend request.', 'friends' ), esc_html( $args['friend_user']->display_name ) );
21 ?>
22 </p>
23
24 <p>
25 <?php
26 // translators: %s is a URL.
27 printf( __( 'Go to your <a href=%s>friends page</a> and look at their posts.', 'friends' ), esc_url( $args['friend_user']->get_local_friends_page_url() ) );
28 ?>
29 </p>
30