Changeset 4669
- Timestamp:
- 07/17/2011 06:17:19 AM (14 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-activity/bp-activity-template.php
r4668 r4669 1400 1400 'wrapper_id' => 'post-mention', 1401 1401 'link_href' => bp_get_send_public_message_link(), 1402 'link_title' => __( ' Mention this user in a new public message, this will send the user a notification to get their attention.', 'buddypress' ),1403 'link_text' => __( ' Mention this User', 'buddypress' ),1402 'link_title' => __( 'Send a public message on your activity stream.', 'buddypress' ), 1403 'link_text' => __( 'Public Message', 'buddypress' ), 1404 1404 'link_class' => 'activity-button mention' 1405 1405 ); -
trunk/bp-messages/bp-messages-template.php
r4638 r4669 585 585 'link_href' => bp_get_send_private_message_link(), 586 586 'link_title' => __( 'Send a private message to this user.', 'buddypress' ), 587 'link_text' => __( ' SendPrivate Message', 'buddypress' ),587 'link_text' => __( 'Private Message', 'buddypress' ), 588 588 'link_class' => 'send-message', 589 589 ) ) -
trunk/bp-themes/bp-default/_inc/css/default.css
r4668 r4669 1895 1895 padding: 1px 8px; 1896 1896 } 1897 span.user-nicename { 1898 display: inline-block; 1899 padding: 1px 8px; 1900 font-size: 11px; 1901 font-family: Consolas, Monaco, monospace; 1902 background: #f4f4f4; 1903 border-bottom: 1px solid #ccc; 1904 border-right: 1px solid #ccc; 1905 color: #aaa; 1906 -moz-border-radius: 3px; 1907 -webkit-border-radius: 3px; 1908 border-radius: 3px; 1909 font-weight: normal; 1910 margin-top: 6px; 1911 text-decoration: none; 1912 } 1897 1913 span.activity, 1898 1914 div#message p { -
trunk/bp-themes/bp-default/activity/post-form.php
r4632 r4669 13 13 14 14 <?php do_action( 'bp_before_activity_post_form' ); ?> 15 16 <?php if ( isset( $_GET['r'] ) ) : ?>17 <div id="message" class="info">18 <p><?php printf( __( 'You are mentioning %s in a new update, this user will be sent a notification of your message.', 'buddypress' ), bp_get_mentioned_user_display_name( $_GET['r'] ) ); ?></p>19 </div>20 <?php endif; ?>21 15 22 16 <div id="whats-new-avatar"> -
trunk/bp-themes/bp-default/members/single/member-header.php
r4285 r4669 22 22 <div id="item-header-content"> 23 23 24 <h2 class="fn">24 <h2> 25 25 <a href="<?php bp_displayed_user_link(); ?>"><?php bp_displayed_user_fullname(); ?></a> 26 <span class="highlight">@<?php bp_displayed_user_username(); ?> <span title="<?php printf( __( '%1$s is a unique identifier for %2$s that you can type into any message on this site. %2$s will be sent a notification and a link to your message any time you use it.', 'buddypress' ), '@' . bp_get_displayed_user_username(), bp_get_user_firstname( bp_get_displayed_user_fullname() ) ); ?>">?</span></span>27 26 </h2> 27 28 <span class="user-nicename">@<?php bp_displayed_user_username(); ?></span> 28 29 <span class="activity"><?php bp_last_activity( bp_displayed_user_id() ); ?></span> 29 30
Note: See TracChangeset
for help on using the changeset viewer.