Make WordPress Core

Changeset 6178


Ignore:
Timestamp:
09/30/2007 10:09:31 AM (18 years ago)
Author:
westi
Message:

Add string descriptions to the translations of the user roles. Fixes #5102 props RanYanivHartstein

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/schema.php

    r6075 r6178  
    258258
    259259    // Add roles
    260     add_role('administrator', __('Administrator'));
    261     add_role('editor', __('Editor'));
    262     add_role('author', __('Author'));
    263     add_role('contributor', __('Contributor'));
    264     add_role('subscriber', __('Subscriber'));
     260    add_role('administrator', _c('Administrator|User role'));
     261    add_role('editor', _c('Editor|User role'));
     262    add_role('author', _c('Author|User role'));
     263    add_role('contributor', _c('Contributor|User role'));
     264    add_role('subscriber', _c('Subscriber|User role'));
    265265
    266266    // Add caps for Administrator role
Note: See TracChangeset for help on using the changeset viewer.