Making WordPress.org

Changeset 4977


Ignore:
Timestamp:
02/21/2017 09:31:39 PM (8 years ago)
Author:
SergeyBiryukov
Message:

Support Forums: After [4976], include plugin/theme name in square brackets.

See #2078.

Location:
sites/trunk/wordpress.org/public_html/wp-content/plugins/support-forums/inc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-plugin-directory-compat.php

    r4976 r4977  
    1616    function compat_title() {
    1717        /* translators: %s: plugin title */
    18         return sprintf( _x( '%s Support', 'plugin', 'wporg-forums' ), $this->title() );
     18        return sprintf( _x( '[%s] Support', 'plugin', 'wporg-forums' ), $this->title() );
    1919    }
    2020
    2121    function reviews_title() {
    2222        /* translators: %s: plugin title */
    23         return sprintf( _x( '%s Reviews', 'plugin', 'wporg-forums' ), $this->title() );
     23        return sprintf( _x( '[%s] Reviews', 'plugin', 'wporg-forums' ), $this->title() );
    2424    }
    2525
    2626    function activity_title() {
    2727        /* translators: %s: plugin title */
    28         return sprintf( _x( '%s Recent Activity', 'plugin', 'wporg-forums' ), $this->title() );
     28        return sprintf( _x( '[%s] Recent Activity', 'plugin', 'wporg-forums' ), $this->title() );
    2929    }
    3030
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-theme-directory-compat.php

    r4976 r4977  
    1616    function compat_title() {
    1717        /* translators: %s: theme title */
    18         return sprintf( _x( '%s Support', 'theme', 'wporg-forums' ), $this->title() );
     18        return sprintf( _x( '[%s] Support', 'theme', 'wporg-forums' ), $this->title() );
    1919    }
    2020
    2121    function reviews_title() {
    2222        /* translators: %s: theme title */
    23         return sprintf( _x( '%s Reviews', 'theme', 'wporg-forums' ), $this->title() );
     23        return sprintf( _x( '[%s] Reviews', 'theme', 'wporg-forums' ), $this->title() );
    2424    }
    2525
    2626    function activity_title() {
    2727        /* translators: %s: theme title */
    28         return sprintf( _x( '%s Recent Activity', 'theme', 'wporg-forums' ), $this->title() );
     28        return sprintf( _x( '[%s] Recent Activity', 'theme', 'wporg-forums' ), $this->title() );
    2929    }
    3030
Note: See TracChangeset for help on using the changeset viewer.