Changeset 568
- Timestamp:
- 11/21/2008 10:11:39 PM (18 years ago)
- Location:
- trunk/buddypress-theme/member-themes/buddypress-member
- Files:
-
- 3 edited
-
profile/edit.php (modified) (1 diff)
-
wire/post-form.php (modified) (2 diffs)
-
wire/post-list.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/buddypress-theme/member-themes/buddypress-member/profile/edit.php
r566 r568 9 9 <div id="content"> 10 10 11 <h2><?php _e( 'Editing', 'buddypress' ) ?> '<?php bp_profile_group_name() ?>'</h2>11 <h2><?php printf( __( "Editing '%s'", "buddypress" ), bp_profile_group_name(false) ); ?></h2> 12 12 13 13 <?php bp_edit_profile_form() ?> -
trunk/buddypress-theme/member-themes/buddypress-member/wire/post-form.php
r566 r568 2 2 <form action="<?php bp_wire_get_action() ?>" id="wire-post-new-form" method="post"> 3 3 <div id="wire-post-new-metadata"> 4 <?php bp_wire_poster_avatar() ?> 5 On <?php bp_wire_poster_date() ?> 6 <?php bp_wire_poster_name() ?> said: 4 <?php printf ( __( 'On %1$s %2$s said:', "buddypress" ), bp_wire_poster_date( null, false ), bp_wire_poster_name( false ) ) ?> 7 5 </div> 8 6 … … 11 9 12 10 <?php if ( bp_wire_show_email_notify() ) : ?> 13 <p><input type="checkbox" name="wire-post-email-notify" id="wire-post-email-notify" value="1" /> Notify members via email (will slow down posting)</p>11 <p><input type="checkbox" name="wire-post-email-notify" id="wire-post-email-notify" value="1" /> <?php _e( 'Notify members via email (will slow down posting)', 'buddypress' ) ?></p> 14 12 <?php endif; ?> 15 13 -
trunk/buddypress-theme/member-themes/buddypress-member/wire/post-list.php
r566 r568 1 1 <div class="info-group"> 2 <h4><?php bp_wire_title() ?> <a href="<?php bp_wire_see_all_link() ?>"> See All »</a></h4>2 <h4><?php bp_wire_title() ?> <a href="<?php bp_wire_see_all_link() ?>"><?php _e( "See All »", "buddypress" ) ?></a></h4> 3 3 4 4 <form name="wire-post-list-form" id="wire-post-list-form" action="" method="post"> … … 8 8 <div id="wire-count" class="pag-count"> 9 9 <?php bp_wire_pagination_count() ?> 10 <img id="ajax-loader" src="<?php bp_wire_ajax_loader_src() ?>" height="7" alt=" Loading" style="display: none;" />10 <img id="ajax-loader" src="<?php bp_wire_ajax_loader_src() ?>" height="7" alt="<?php _e( "Loading", "buddypress" ) ?>" style="display: none;" /> 11 11 </div> 12 12 … … 21 21 <div class="wire-post-metadata"> 22 22 <?php bp_wire_post_author_avatar() ?> 23 On <?php bp_wire_post_date() ?> 24 <?php bp_wire_post_author_name() ?> said: 23 <?php printf ( __( 'On %1$s %2$s said:', "buddypress" ), bp_wire_post_date( null, false ), bp_wire_post_author_name( false ) ) ?> 25 24 <?php bp_wire_delete_link() ?> 26 25 </div>
Note: See TracChangeset
for help on using the changeset viewer.