Changeset 6432
- Timestamp:
- 10/20/2012 03:39:59 PM (13 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-blogs/bp-blogs-widgets.php
r6342 r6432 23 23 24 24 function __construct() { 25 parent::__construct( false, $name = _ _( 'Recent Networkwide Posts', 'buddypress' ) );25 parent::__construct( false, $name = _x( '(BuddyPress) Recent Networkwide Posts', 'widget name', 'buddypress' ) ); 26 26 } 27 27 -
trunk/bp-core/bp-core-widgets.php
r6342 r6432 17 17 function __construct() { 18 18 $widget_ops = array( 'description' => __( 'A dynamic list of recently active, popular, and newest members', 'buddypress' ) ); 19 parent::__construct( false, $name = _ _( 'Members', 'buddypress' ), $widget_ops );19 parent::__construct( false, $name = _x( '(BuddyPress) Members', 'widget name', 'buddypress' ), $widget_ops ); 20 20 21 21 if ( is_active_widget( false, false, $this->id_base ) && !is_admin() && !is_network_admin() ) { … … 145 145 function __construct() { 146 146 $widget_ops = array( 'description' => __( 'Avatars of users who are currently online', 'buddypress' ) ); 147 parent::__construct( false, $name = _ _( "Who's Online Avatars", 'buddypress' ), $widget_ops );147 parent::__construct( false, $name = _x( "(BuddyPress) Who's Online", 'widget name', 'buddypress' ), $widget_ops ); 148 148 } 149 149 … … 209 209 function __construct() { 210 210 $widget_ops = array( 'description' => __( 'Avatars of recently active members', 'buddypress' ) ); 211 parent::__construct( false, $name = _ _( 'Recently Active Member Avatars', 'buddypress' ), $widget_ops );211 parent::__construct( false, $name = _x( '(BuddyPress) Recently Active Members', 'widget name', 'buddypress' ), $widget_ops ); 212 212 } 213 213 -
trunk/bp-groups/bp-groups-widgets.php
r6342 r6432 26 26 function __construct() { 27 27 $widget_ops = array( 'description' => __( 'A dynamic list of recently active, popular, and newest groups', 'buddypress' ) ); 28 parent::__construct( false, _ _( 'Groups', 'buddypress' ), $widget_ops );28 parent::__construct( false, _x( '(BuddyPress) Groups', 'widget name', 'buddypress' ), $widget_ops ); 29 29 30 30 if ( is_active_widget( false, false, $this->id_base ) && !is_admin() && !is_network_admin() ) {
Note: See TracChangeset
for help on using the changeset viewer.