Make WordPress Core


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/user-new.php

    r17432 r18250  
    11<?php
    22/**
    3  * New User Administration Panel.
     3 * New User Administration Screen.
    44 *
    55 * @package WordPress
     
    3232
    3333    function admin_created_user_subject( $text ) {
    34         return "[" . get_bloginfo('name') . "] Your site invite";
     34        return sprintf( __( '[%s] Your site invite' ), get_bloginfo( 'name' ) );
    3535    }
    3636}
     
    147147    '<p>' . __('Remember to click the Add User button at the bottom of this screen when you are finished.') . '</p>' .
    148148    '<p><strong>' . __('For more information:') . '</strong></p>' .
    149     '<p>' . __('<a href="http://codex.wordpress.org/Users_Add_New_SubPanel" 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>' .
    150150    '<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
    151151);
Note: See TracChangeset for help on using the changeset viewer.