Make WordPress Core

Changeset 29233


Ignore:
Timestamp:
07/18/2014 11:47:54 PM (10 years ago)
Author:
SergeyBiryukov
Message:

Reverse the order of roles in help text on Add New User screen to match [25695].

fixes #28914.

File:
1 edited

Legend:

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

    r29030 r29233  
    172172'content' => '<p>' . __('Here is a basic overview of the different user roles and the permissions associated with each one:') . '</p>' .
    173173                '<ul>' .
     174                '<li>' . __('Subscribers can read comments/comment/receive newsletters, etc. but cannot create regular site content.') . '</li>' .
     175                '<li>' . __('Contributors can write and manage their posts but not publish posts or upload media files.') . '</li>' .
     176                '<li>' . __('Authors can publish and manage their own posts, and are able to upload files.') . '</li>' .
     177                '<li>' . __('Editors can publish posts, manage posts as well as manage other people&#8217;s posts, etc.') . '</li>' .
    174178                '<li>' . __('Administrators have access to all the administration features.') . '</li>' .
    175                 '<li>' . __('Editors can publish posts, manage posts as well as manage other people&#8217;s posts, etc.') . '</li>' .
    176                 '<li>' . __('Authors can publish and manage their own posts, and are able to upload files.') . '</li>' .
    177                 '<li>' . __('Contributors can write and manage their posts but not publish posts or upload media files.') . '</li>' .
    178                 '<li>' . __('Subscribers can read comments/comment/receive newsletters, etc. but cannot create regular site content.') . '</li>' .
    179179                '</ul>'
    180180) );
Note: See TracChangeset for help on using the changeset viewer.