Make WordPress Core


Ignore:
Timestamp:
06/29/2016 03:15:40 PM (7 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/network/site-users.php

    r37488 r37914  
    1515
    1616if ( ! current_user_can('manage_sites') )
    17     wp_die(__('You do not have sufficient permissions to edit this site.'));
     17    wp_die(__('Sorry, you are not allowed to edit this site.'));
    1818
    1919$wp_list_table = _get_list_table('WP_Users_List_Table');
     
    6161
    6262if ( ! can_edit_network( $details->site_id ) )
    63     wp_die( __( 'You do not have permission to access this page.' ), 403 );
     63    wp_die( __( 'Sorry, you are not allowed to access this page.' ), 403 );
    6464
    6565$is_main_site = is_main_site( $id );
Note: See TracChangeset for help on using the changeset viewer.