Provide contexts for a 'Welcome' string. Sometimes we're saying hello, other times referring to the welcome panel. props pavelevap, fixes #19698.
git-svn-id: http://svn.automattic.com/wordpress/trunk@19807 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
00db8b7053
commit
c1b4310367
|
@ -811,7 +811,7 @@ final class WP_Screen {
|
|||
}
|
||||
echo '<label for="wp_welcome_panel-hide">';
|
||||
echo '<input type="checkbox" id="wp_welcome_panel-hide"' . checked( (bool) $welcome_checked, true, false ) . ' />';
|
||||
echo __( 'Welcome' ) . "</label>\n";
|
||||
echo _x( 'Welcome', 'Welcome panel' ) . "</label>\n";
|
||||
}
|
||||
?>
|
||||
<br class="clear" />
|
||||
|
|
|
@ -167,7 +167,7 @@ switch($step) {
|
|||
case 1: // Step 1, direct link.
|
||||
display_header();
|
||||
?>
|
||||
<h1><?php _e( 'Welcome' ); ?></h1>
|
||||
<h1><?php _ex( 'Welcome', 'hello' ); ?></h1>
|
||||
<p><?php printf( __( 'Welcome to the famous five minute WordPress installation process! You may want to browse the <a href="%s">ReadMe documentation</a> at your leisure. Otherwise, just fill in the information below and you’ll be on your way to using the most extendable and powerful personal publishing platform in the world.' ), '../readme.html' ); ?></p>
|
||||
|
||||
<h1><?php _e( 'Information needed' ); ?></h1>
|
||||
|
|
Loading…
Reference in New Issue