Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
10/12/2008 08:19:04 PM (17 years ago)
Author:
apeatling
Message:

Added the 'buddypress' textdomain

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-core/homebase-creation/bp-core-homebase-functions.php

    r359 r391  
    77        ?>
    88        <div id="update-nag">
    9             <p><a href="admin.php?page=bp-core/homebase-creation/bp-core-homebase-tab.php"><?php _e('Create a Home Base!') ?></a><br />
    10             <?php _e('Create your home base and start using all the new social networking features') ?></p>
     9            <p><a href="admin.php?page=bp-core/homebase-creation/bp-core-homebase-tab.php"><?php _e('Create a Home Base!', 'buddypress') ?></a><br />
     10            <?php _e('Create your home base and start using all the new social networking features', 'buddypress') ?></p>
    1111        </div>
    1212        <?php
     
    1717function bp_core_add_createhomebase_tab() {
    1818    if ( !bp_core_user_has_home() ) {
    19         add_menu_page( __('Create Home Base'), __('Create Home Base'), 1, 'bp-core/homebase-creation/bp-core-homebase-tab.php');
     19        add_menu_page( __('Create Home Base', 'buddypress'), __('Create Home Base', 'buddypress'), 1, 'bp-core/homebase-creation/bp-core-homebase-tab.php');
    2020    }
    2121}
     
    2727    if ( ( is_site_admin() && $bp['current_userid'] != $bp['loggedin_userid'] ) && ( $wpdb->blogid == $bp['current_homebase_id'] ) ) { ?>
    2828        <div id="update-nag">
    29             <p><strong><?php _e('Administrator Notice:') ?></strong> <?php _e('This is a user home base, not a blog.') ?></p>
     29            <p><strong><?php _e('Administrator Notice:', 'buddypress') ?></strong> <?php _e('This is a user home base, not a blog.', 'buddypress') ?></p>
    3030        </div> 
    3131    <?php   
     
    5858
    5959    if ( $errors->get_error_code() ) {
    60         echo "<p>" . __('There was a problem, please correct the form below and try again.') . "</p>";
     60        echo "<p>" . __('There was a problem, please correct the form below and try again.', 'buddypress') . "</p>";
    6161    }
    6262    ?>
    6363   
    6464    <div class="wrap">
    65         <p><h2><?php _e('Create Your Home Base') ?></h2></p>
     65        <p><h2><?php _e('Create Your Home Base', 'buddypress') ?></h2></p>
    6666        <div>
    67             <h3><?php _e('What\'s a home base and how do I make one?') ?></h3>
    68             <p><?php _e('Your home base will be where you and other members go to view your profile, groups, friends and more.') ?></p>
    69             <p><?php _e('Creating a home base is easy, all you have to do is fill in the form below. Once your home base is created, you can start using all the new features. Any existing blogs will be linked with your home base.') ?></p>
     67            <h3><?php _e('What\'s a home base and how do I make one?', 'buddypress') ?></h3>
     68            <p><?php _e('Your home base will be where you and other members go to view your profile, groups, friends and more.', 'buddypress') ?></p>
     69            <p><?php _e('Creating a home base is easy, all you have to do is fill in the form below. Once your home base is created, you can start using all the new features. Any existing blogs will be linked with your home base.', 'buddypress') ?></p>
    7070
    7171            <form id="setupform" method="post" action="admin.php?page=bp-core/homebase-creation/bp-core-homebase-tab.php">
     
    7575                <?php do_action( 'signup_extra_fields', $errors ); ?>
    7676                <p>
    77                     <input id="submit" type="submit" name="submit" value="<?php _e('Create Home Base &raquo;') ?>" /></p>
     77                    <input id="submit" type="submit" name="submit" value="<?php _e('Create Home Base &raquo;', 'buddypress') ?>" /></p>
    7878            </form>
    7979        </div>
     
    8888    <tbody>
    8989        <tr>
    90             <th scope="row"><?php _e('Username') ?></th>
     90            <th scope="row"><?php _e('Username', 'buddypress') ?></th>
    9191            <td>
    9292            <?php
     
    112112    ?>
    113113    <?php if ( !function_exists('xprofile_install') ) { ?>
    114         <label for="blog_title"><?php _e('Full Name:') ?></label>   
     114        <label for="blog_title"><?php _e('Full Name:', 'buddypress') ?></label>
    115115        <?php if ( $errmsg = $errors->get_error_message('blog_title') ) { ?>
    116116            <p class="error"><?php echo $errmsg ?></p>
Note: See TracChangeset for help on using the changeset viewer.