Make WordPress Core

Ticket #32286: 32286-helptab.diff

File 32286-helptab.diff, 1.6 KB (added by carolinegeven, 11 years ago)
  • src/wp-admin/user-edit.php

     
    3636else
    3737        $parent_file = 'profile.php';
    3838
     39$gravatar_link = sprintf( '<a href="%s">Gravatar</a>', __( 'https://en.gravatar.com/' ) );
     40
    3941$profile_help = '<p>' . __('Your profile contains information about you (your &#8220;account&#8221;) as well as some personal options related to using WordPress.') . '</p>' .
    4042        '<p>' . __('You can change your password, turn on keyboard shortcuts, change the color scheme of your WordPress administration screens, and turn off the WYSIWYG (Visual) editor, among other things. You can hide the Toolbar (formerly called the Admin Bar) from the front end of your site, however it cannot be disabled on the admin screens.') . '</p>' .
    4143        '<p>' . __('Your username cannot be changed, but you can use other fields to enter your real name or a nickname, and change which name to display on your posts.') . '</p>' .
     44    /* translators: %s: link to Gravatar.  */
     45        '<p>' . sprintf( __( 'You can change your profile picture on %s.' ), $gravatar_link ) . '</p>' .
    4246        '<p>' . __( 'You can log out of other devices, such as your phone or a public computer, by clicking the Log Out Everywhere Else button.' ) . '</p>' .
    4347        '<p>' . __('Required fields are indicated; the rest are optional. Profile information will only be displayed if your theme is set up to do so.') . '</p>' .
    4448        '<p>' . __('Remember to click the Update Profile button when you are finished.') . '</p>';