Make WordPress Core


Ignore:
Timestamp:
06/29/2016 03:15:40 PM (8 years ago)
Author:
ocean90
Message:

Text Changes: Unify permission error messages.

The new format looks like "Sorry, you are not allowed to <action>.". This provides a consistent experience for all error messages related to missing permissions. It also reduces the number of similar strings and allows translators to provide a consistent style in their language.

Props ramiy, Presskopp.
Fixes #34521.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/plugin-editor.php

    r37680 r37914  
    1616
    1717if ( !current_user_can('edit_plugins') )
    18     wp_die( __('You do not have sufficient permissions to edit plugins for this site.') );
     18    wp_die( __('Sorry, you are not allowed to edit plugins for this site.') );
    1919
    2020$title = __("Edit Plugins");
Note: See TracChangeset for help on using the changeset viewer.