Changeset 11081
- Timestamp:
- 09/10/2016 05:08:19 PM (9 years ago)
- Location:
- trunk/src
- Files:
-
- 2 edited
-
bp-blogs/classes/class-bp-blogs-component.php (modified) (3 diffs)
-
bp-core/bp-core-functions.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-blogs/classes/class-bp-blogs-component.php
r11080 r11081 7 7 * information from those blogs to make querying blogs in bulk more performant. 8 8 * 9 * @package BuddyPress9 * @package BuddyPress 10 10 * @subpackage BlogsCore 11 11 * @since 1.5.0 … … 45 45 * @since 1.5.0 46 46 * 47 * @see BP_Component::setup_globals() for description of parameters.47 * @see BP_Component::setup_globals() for description of parameters. 48 48 * 49 49 * @param array $args See {@link BP_Component::setup_globals()}. … … 155 155 * @param array $main_nav Optional. See BP_Component::setup_nav() for 156 156 * description. 157 * @param array $sub_nav Optional. See BP_Component::setup_nav() for157 * @param array $sub_nav Optional. See BP_Component::setup_nav() for 158 158 * description. 159 159 */ -
trunk/src/bp-core/bp-core-functions.php
r11080 r11081 695 695 */ 696 696 function bp_core_get_directory_page_default_titles() { 697 return array(698 'activity' => _x( 'Activity', 'Page title for the Activity directory.', 'buddypress' ),699 'groups' => _x( 'Groups', 'Page title for the Groups directory.', 'buddypress' ),700 'blogs' => _x( 'Sites', 'Page title for the Sites directory.', 'buddypress' ),701 'members' => _x( 'Members', 'Page title for the Members directory.', 'buddypress' ),702 'activate' => _x( 'Activate', 'Page title for the user activation screen.', 'buddypress' ),703 'register' => _x( 'Register', 'Page title for the user registration screen.', 'buddypress' ),704 );697 return array( 698 'activity' => _x( 'Activity', 'Page title for the Activity directory.', 'buddypress' ), 699 'groups' => _x( 'Groups', 'Page title for the Groups directory.', 'buddypress' ), 700 'blogs' => _x( 'Sites', 'Page title for the Sites directory.', 'buddypress' ), 701 'members' => _x( 'Members', 'Page title for the Members directory.', 'buddypress' ), 702 'activate' => _x( 'Activate', 'Page title for the user activation screen.', 'buddypress' ), 703 'register' => _x( 'Register', 'Page title for the user registration screen.', 'buddypress' ), 704 ); 705 705 } 706 706
Note: See TracChangeset
for help on using the changeset viewer.