Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
06/06/2011 08:44:17 PM (14 years ago)
Author:
djpaul
Message:

s/blogs/sites. Fixes #2164

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-core/bp-core-template.php

    r4455 r4466  
    230230    } elseif ( bp_is_blog_page() ) {
    231231        if ( is_single() ) {
    232             $title = sprintf( __( 'Blog | %s', 'buddypress' ), $post->post_title );
     232            $title = sprintf( __( 'Site | %s', 'buddypress' ), $post->post_title );
    233233        } else if ( is_category() ) {
    234             $title = sprintf( __( 'Blog | Categories | %s', 'buddypress' ), ucwords( $wp_query->query_vars['category_name'] ) );
     234            $title = sprintf( __( 'Site | Categories | %s', 'buddypress' ), ucwords( $wp_query->query_vars['category_name'] ) );
    235235        } else if ( is_tag() ) {
    236             $title = sprintf( __( 'Blog | Tags | %s', 'buddypress' ), ucwords( $wp_query->query_vars['tag'] ) );
     236            $title = sprintf( __( 'Site | Tags | %s', 'buddypress' ), ucwords( $wp_query->query_vars['tag'] ) );
    237237        } else if ( is_page() ){
    238238            $title = $post->post_title;
    239239        } else
    240             $title = __( 'Blog', 'buddypress' );
     240            $title = __( 'Site', 'buddypress' );
    241241
    242242    // Displayed user
     
    276276    // Blog creation page
    277277    } elseif ( bp_is_create_blog() ) {
    278         $title = __( 'Create a Blog', 'buddypress' );
     278        $title = __( 'Create a Site', 'buddypress' );
    279279    }
    280280
Note: See TracChangeset for help on using the changeset viewer.