Changes from branches/3.1/wp-admin/user-new.php at r17432 to trunk/wp-admin/user-new.php at r18250
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/user-new.php
r17432 r18250 1 1 <?php 2 2 /** 3 * New User Administration Panel.3 * New User Administration Screen. 4 4 * 5 5 * @package WordPress … … 32 32 33 33 function admin_created_user_subject( $text ) { 34 return "[" . get_bloginfo('name') . "] Your site invite";34 return sprintf( __( '[%s] Your site invite' ), get_bloginfo( 'name' ) ); 35 35 } 36 36 } … … 147 147 '<p>' . __('Remember to click the Add User button at the bottom of this screen when you are finished.') . '</p>' . 148 148 '<p><strong>' . __('For more information:') . '</strong></p>' . 149 '<p>' . __('<a href="http://codex.wordpress.org/Users_Add_New_S ubPanel" target="_blank">Documentation on Adding New Users</a>') . '</p>' .149 '<p>' . __('<a href="http://codex.wordpress.org/Users_Add_New_Screen" target="_blank">Documentation on Adding New Users</a>') . '</p>' . 150 150 '<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>' 151 151 );
Note: See TracChangeset
for help on using the changeset viewer.