Changeset 6432 for trunk/bp-core/bp-core-widgets.php
- Timestamp:
- 10/20/2012 03:39:59 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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
Note: See TracChangeset
for help on using the changeset viewer.