Changeset 4977
- Timestamp:
- 02/21/2017 09:31:39 PM (8 years ago)
- 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 16 16 function compat_title() { 17 17 /* translators: %s: plugin title */ 18 return sprintf( _x( ' %sSupport', 'plugin', 'wporg-forums' ), $this->title() );18 return sprintf( _x( '[%s] Support', 'plugin', 'wporg-forums' ), $this->title() ); 19 19 } 20 20 21 21 function reviews_title() { 22 22 /* translators: %s: plugin title */ 23 return sprintf( _x( ' %sReviews', 'plugin', 'wporg-forums' ), $this->title() );23 return sprintf( _x( '[%s] Reviews', 'plugin', 'wporg-forums' ), $this->title() ); 24 24 } 25 25 26 26 function activity_title() { 27 27 /* translators: %s: plugin title */ 28 return sprintf( _x( ' %sRecent Activity', 'plugin', 'wporg-forums' ), $this->title() );28 return sprintf( _x( '[%s] Recent Activity', 'plugin', 'wporg-forums' ), $this->title() ); 29 29 } 30 30 -
sites/trunk/wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-theme-directory-compat.php
r4976 r4977 16 16 function compat_title() { 17 17 /* translators: %s: theme title */ 18 return sprintf( _x( ' %sSupport', 'theme', 'wporg-forums' ), $this->title() );18 return sprintf( _x( '[%s] Support', 'theme', 'wporg-forums' ), $this->title() ); 19 19 } 20 20 21 21 function reviews_title() { 22 22 /* translators: %s: theme title */ 23 return sprintf( _x( ' %sReviews', 'theme', 'wporg-forums' ), $this->title() );23 return sprintf( _x( '[%s] Reviews', 'theme', 'wporg-forums' ), $this->title() ); 24 24 } 25 25 26 26 function activity_title() { 27 27 /* translators: %s: theme title */ 28 return sprintf( _x( ' %sRecent Activity', 'theme', 'wporg-forums' ), $this->title() );28 return sprintf( _x( '[%s] Recent Activity', 'theme', 'wporg-forums' ), $this->title() ); 29 29 } 30 30
Note: See TracChangeset
for help on using the changeset viewer.