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/tests/phpunit/tests/xmlrpc/wp/editComment.php

    r36163 r37914  
    4545        $this->assertInstanceOf( 'IXR_Error', $result );
    4646        $this->assertEquals( 403, $result->code );
    47         $this->assertEquals( __( 'You are not allowed to moderate or edit this comment.' ), $result->message );
     47        $this->assertEquals( __( 'Sorry, you are not allowed to moderate or edit this comment.' ), $result->message );
    4848    }
    4949
Note: See TracChangeset for help on using the changeset viewer.