diff --git a/wp-content/plugins/buddypress/bp-blogs.php b/wp-content/plugins/buddypress/bp-blogs.php index 71ddf1e3b8f2cfb4c6173d23a29cac27ee85ae4a..a8b982082aa4106c925e508247742e763bdd8e6a 100644 --- a/wp-content/plugins/buddypress/bp-blogs.php +++ b/wp-content/plugins/buddypress/bp-blogs.php @@ -407,37 +407,38 @@ function bp_blogs_record_post( $post_id, $post, $user_id = false ) { if ( !$user_id ) $user_id = (int)$post->post_author; - /* This is to stop infinite loops with Donncha's sitewide tags plugin */ - if ( (int)$bp->site_options['tags_blog_id'] == (int)$blog_id ) + // This is to stop infinite loops with Donncha's sitewide tags plugin + if ( (int)$blog_id == (int)$bp->site_options['tags_blog_id'] ) return false; - /* Don't record this if it's not a post */ - if ( $post->post_type != 'post' ) + // Don't record this if it's not a post + if ( 'post' != $post->post_type ) return false; - if ( 'publish' == $post->post_status && '' == $post->post_password ) { + if ( 'publish' == $post->post_status && empty( $post->post_password ) ) { if ( (int)get_blog_option( $blog_id, 'blog_public' ) || !bp_core_is_multisite() ) { - /* Record this in activity streams */ - $post_permalink = get_permalink( $post_id ); - - $activity_action = sprintf( __( '%s wrote a new blog post: %s', 'buddypress' ), bp_core_get_userlink( (int)$post->post_author ), '<a href="' . $post_permalink . '">' . $post->post_title . '</a>' ); + // Record this in activity streams + $post_permalink = get_permalink( $post_id ); + $activity_action = sprintf( __( '%s wrote a new blog post: %s', 'buddypress' ), bp_core_get_userlink( (int)$post->post_author ), '<a href="' . $post_permalink . '">' . $post->post_title . '</a>' ); $activity_content = $post->post_content; bp_blogs_record_activity( array( - 'user_id' => (int)$post->post_author, - 'action' => apply_filters( 'bp_blogs_activity_new_post_action', $activity_action, &$post, $post_permalink ), - 'content' => apply_filters( 'bp_blogs_activity_new_post_content', $activity_content, &$post, $post_permalink ), - 'primary_link' => apply_filters( 'bp_blogs_activity_new_post_primary_link', $post_permalink, $post_id ), - 'type' => 'new_blog_post', - 'item_id' => $blog_id, + 'user_id' => (int)$post->post_author, + 'action' => apply_filters( 'bp_blogs_activity_new_post_action', $activity_action, &$post, $post_permalink ), + 'content' => apply_filters( 'bp_blogs_activity_new_post_content', $activity_content, &$post, $post_permalink ), + 'primary_link' => apply_filters( 'bp_blogs_activity_new_post_primary_link', $post_permalink, $post_id ), + 'type' => 'new_blog_post', + 'item_id' => $blog_id, 'secondary_item_id' => $post_id, - 'recorded_time' => $post->post_date_gmt + 'recorded_time' => $post->post_date_gmt )); } - } else - bp_blogs_remove_post( $post_id, $blog_id ); - bp_blogs_update_blogmeta( $blog_id, 'last_activity', bp_core_current_time() ); + // Update the blogs last activity + bp_blogs_update_blogmeta( $blog_id, 'last_activity', bp_core_current_time() ); + } else { + bp_blogs_remove_post( $post_id, $blog_id ); + } do_action( 'bp_blogs_new_blog_post', $post_id, $post, $user_id ); } @@ -463,7 +464,7 @@ function bp_blogs_record_comment( $comment_id, $is_approved = true ) { $recorded_comment = get_comment( $comment_id ); // Don't record activity if the comment hasn't been approved - if ( !$is_approved || !$recorded_comment->comment_approved ) + if ( empty( $is_approved ) ) return false; // Don't record activity if no email address has been included @@ -516,7 +517,7 @@ function bp_blogs_record_comment( $comment_id, $is_approved = true ) { return $recorded_comment; } add_action( 'comment_post', 'bp_blogs_record_comment', 10, 2 ); -add_action( 'edit_comment', 'bp_blogs_record_comment', 10 ); +//add_action( 'edit_comment', 'bp_blogs_record_comment', 10 ); function bp_blogs_manage_comment( $comment_id, $comment_status ) { if ( 'spam' == $comment_status || 'hold' == $comment_status || 'delete' == $comment_status || 'trash' == $comment_status ) diff --git a/wp-content/plugins/buddypress/bp-core.php b/wp-content/plugins/buddypress/bp-core.php index 3a120ee52e30bd4513b5fcf50b03d46bd40fe35b..e18923ef5d939e659e4f34831a232c95db5c7af8 100644 --- a/wp-content/plugins/buddypress/bp-core.php +++ b/wp-content/plugins/buddypress/bp-core.php @@ -254,9 +254,8 @@ function bp_core_install() { require_once( ABSPATH . 'wp-admin/includes/upgrade.php' ); dbDelta( $sql ); - /* Add names of root components to the banned blog list to avoid conflicts */ - if ( bp_core_is_multisite() ) - bp_core_add_illegal_names(); + // Add names of root components to the banned name list to avoid conflicts + bp_core_flush_illegal_names(); update_site_option( 'bp-core-db-version', BP_CORE_DB_VERSION ); } @@ -1678,34 +1677,74 @@ function bp_core_referrer() { } /** - * bp_core_add_illegal_names() + * bp_core_get_illegal_names() * - * Adds illegal names to WP so that root components will not conflict with - * blog names on a subdirectory installation. + * Return a friendly and filtered list of all illegal names to prevent crafty + * individuals from hi-jacking your network's components and/or administration * * For example, it would stop someone creating a blog with the slug "groups". + */ +function bp_core_get_illegal_names() { + + // BuddyPress core illegal names + $bp_illegal_names[] = defined( 'BP_GROUPS_SLUG' ) ? BP_GROUPS_SLUG : 'groups'; + $bp_illegal_names[] = defined( 'BP_MEMBERS_SLUG' ) ? BP_MEMBERS_SLUG : 'members'; + $bp_illegal_names[] = defined( 'BP_FORUMS_SLUG' ) ? BP_FORUMS_SLUG : 'forums'; + $bp_illegal_names[] = defined( 'BP_BLOGS_SLUG' ) ? BP_BLOGS_SLUG : 'blogs'; + $bp_illegal_names[] = defined( 'BP_ACTIVITY_SLUG' ) ? BP_ACTIVITY_SLUG : 'activity'; + $bp_illegal_names[] = defined( 'BP_XPROFILE_SLUG' ) ? BP_XPROFILE_SLUG : 'profile'; + $bp_illegal_names[] = defined( 'BP_FRIENDS_SLUG' ) ? BP_FRIENDS_SLUG : 'friends'; + $bp_illegal_names[] = defined( 'BP_SEARCH_SLUG' ) ? BP_SEARCH_SLUG : 'search'; + $bp_illegal_names[] = defined( 'BP_SETTINGS_SLUG' ) ? BP_SETTINGS_SLUG : 'settings'; + $bp_illegal_names[] = defined( 'BP_REGISTER_SLUG' ) ? BP_REGISTER_SLUG : 'register'; + $bp_illegal_names[] = defined( 'BP_ACTIVATION_SLUG' ) ? BP_ACTIVATION_SLUG : 'activation'; + + // WordPress core illegal names + $wp_illegal_names = array( 'www', 'web', 'root', 'admin', 'main', 'invite', 'administrator', 'files' ); + + // Merge illegal names together and filter them + return apply_filters( 'bp_core_illegal_names', array_merge( $bp_illegal_names, $wp_illegal_names ) ); +} + +/** + * bp_core_update_illegal_names() * - * @package BuddyPress Core - * @global $bp The global BuddyPress settings variable created in bp_core_setup_globals() + * Filter the illegal_names site option and make sure it includes a few + * specific BuddyPress and multi-site slugs + * + * @param array|string $value Illegal names from field + * @param array|string $oldvalue The value as it is currently + * @return array Merged and unique array of illegal names */ -function bp_core_add_illegal_names() { - global $bp; +function bp_core_update_illegal_names( $value = '', $oldvalue = '' ) { + if ( !bp_core_is_multisite() ) + return false; - $current = maybe_unserialize( get_site_option( 'illegal_names' ) ); - $bp_illegal_names = $bp->root_components; + // Make sure $value is array + if ( is_array( $value ) ) + $db_illegal_names = $value; + elseif ( is_string( $value ) ) + $db_illegal_names = implode( ' ', $value ); + elseif ( empty( $value ) ) + $db_illegal_names = array(); - if ( is_array( $current ) ) { - foreach( (array)$bp_illegal_names as $bp_illegal_name ) { - if ( !in_array( $bp_illegal_name, $current ) ) - $current[] = $bp_illegal_name; - } - $new = $current; - } else { - $bp_illegal_names[] = $current; - $new = $bp_illegal_names; - } + // Get illegal names, merge with ones in DB, and remove duplicates + $bp_illegal_names = bp_core_get_illegal_names(); + $merged_names = array_merge( (array)$bp_illegal_names, (array)$db_illegal_names ); + $illegal_names = array_unique( (array)$merged_names ); + + return apply_filters( 'bp_core_update_illegal_names', $illegal_names ); +} +add_filter( 'pre_update_site_option_illegal_names', 'bp_core_update_illegal_names', 10, 2 ); - update_site_option( 'illegal_names', $new ); +/** + * bp_core_flush_illegal_names() + * + * Flush illegal names by getting and setting 'illegal_names' site option + */ +function bp_core_flush_illegal_names() { + $illegal_names = get_site_option( 'illegal_names' ); + update_site_option( 'illegal_names', $illegal_names ); } /** @@ -1727,7 +1766,7 @@ function bp_core_delete_account( $user_id = false ) { $user_id = $bp->loggedin_user->id; /* Make sure account deletion is not disabled */ - if ( (int)get_site_option( 'bp-disable-account-deletion' ) ) + if ( (int)get_site_option( 'bp-disable-account-deletion' ) && !$bp->loggedin_user->is_site_admin ) return false; /* Site admins cannot be deleted */ @@ -1963,11 +2002,17 @@ add_action( 'make_spam_user', 'bp_core_remove_data' ); * @package BuddyPress Core */ function bp_core_load_buddypress_textdomain() { - $locale = apply_filters( 'buddypress_locale', get_locale() ); - $mofile = BP_PLUGIN_DIR . "/bp-languages/buddypress-$locale.mo"; - - if ( file_exists( $mofile ) ) - load_textdomain( 'buddypress', $mofile ); + $locale = apply_filters( 'buddypress_locale', get_locale() ); + $mofile = sprintf( 'buddypress-%s.mo', $locale ); + $mofile_global = WP_LANG_DIR . '/' . $mofile; + $mofile_local = BP_PLUGIN_DIR . '/bp-languages/' . $mofile; + + if ( file_exists( $mofile_global ) ) + return load_textdomain( 'buddypress', $mofile_global ); + elseif ( file_exists( $mofile_local ) ) + return load_textdomain( 'buddypress', $mofile_local ); + else + return false; } add_action ( 'bp_loaded', 'bp_core_load_buddypress_textdomain', 2 ); diff --git a/wp-content/plugins/buddypress/bp-core/bp-core-adminbar.php b/wp-content/plugins/buddypress/bp-core/bp-core-adminbar.php index f7ec5335a799368338790abb2c855306ba5162ac..64ec470906d31a385aac5adeb8bbca84c8a19467 100644 --- a/wp-content/plugins/buddypress/bp-core/bp-core-adminbar.php +++ b/wp-content/plugins/buddypress/bp-core/bp-core-adminbar.php @@ -44,9 +44,8 @@ function bp_adminbar_login_menu() { echo '<li class="bp-login no-arrow"><a href="' . $bp->root_domain . '/wp-login.php?redirect_to=' . urlencode( $bp->root_domain ) . '">' . __( 'Log In', 'buddypress' ) . '</a></li>'; // Show "Sign Up" link if user registrations are allowed - if ( bp_get_signup_allowed() ) { + if ( bp_get_signup_allowed() ) echo '<li class="bp-signup no-arrow"><a href="' . bp_get_signup_page(false) . '">' . __( 'Sign Up', 'buddypress' ) . '</a></li>'; - } } @@ -100,7 +99,10 @@ function bp_adminbar_account_menu() { function bp_adminbar_blogs_menu() { global $bp; - if ( !is_user_logged_in() || !function_exists('bp_blogs_install') ) + if ( !is_user_logged_in() || !bp_is_active( 'blogs' ) ) + return false; + + if ( !is_multisite() ) return false; if ( !$blogs = wp_cache_get( 'bp_blogs_of_user_' . $bp->loggedin_user->id . '_inc_hidden', 'bp' ) ) { @@ -123,14 +125,12 @@ function bp_adminbar_blogs_menu() { echo '<li' . $alt . '>'; echo '<a href="' . $site_url . '">' . esc_html( $blog->name ) . '</a>'; - echo '<ul>'; echo '<li class="alt"><a href="' . $site_url . 'wp-admin/">' . __( 'Dashboard', 'buddypress' ) . '</a></li>'; echo '<li><a href="' . $site_url . 'wp-admin/post-new.php">' . __( 'New Post', 'buddypress' ) . '</a></li>'; echo '<li class="alt"><a href="' . $site_url . 'wp-admin/edit.php">' . __( 'Manage Posts', 'buddypress' ) . '</a></li>'; echo '<li><a href="' . $site_url . 'wp-admin/edit-comments.php">' . __( 'Manage Comments', 'buddypress' ) . '</a></li>'; echo '</ul>'; - echo '</li>'; $counter++; } @@ -148,6 +148,26 @@ function bp_adminbar_blogs_menu() { echo '</li>'; } +function bp_adminbar_thisblog_menu() { + if ( current_user_can( 'edit_posts' ) ) { + echo '<li id="bp-adminbar-thisblog-menu"><a href="' . admin_url() . '">'; + + _e( 'Dashboard', 'buddypress' ); + + echo '</a>'; + echo '<ul>'; + + echo '<li class="alt"><a href="' . admin_url() . 'post-new.php">' . __( 'New Post', 'buddypress' ) . '</a></li>'; + echo '<li><a href="' . admin_url() . 'edit.php">' . __( 'Manage Posts', 'buddypress' ) . '</a></li>'; + echo '<li class="alt"><a href="' . admin_url() . 'edit-comments.php">' . __( 'Manage Comments', 'buddypress' ) . '</a></li>'; + + do_action( 'bp_adminbar_thisblog_items' ); + + echo '</ul>'; + echo '</li>'; + } +} + // **** "Notifications" Menu ********* function bp_adminbar_notifications_menu() { global $bp; @@ -159,22 +179,26 @@ function bp_adminbar_notifications_menu() { _e( 'Notifications', 'buddypress' ); if ( $notifications = bp_core_get_notifications_for_user( $bp->loggedin_user->id ) ) { ?> - <span><?php echo count($notifications) ?></span> + <span><?php echo count( $notifications ) ?></span> <?php } echo '</a>'; echo '<ul>'; - if ( $notifications ) { ?> - <?php $counter = 0; ?> - <?php for ( $i = 0; $i < count($notifications); $i++ ) { ?> - <?php $alt = ( 0 == $counter % 2 ) ? ' class="alt"' : ''; ?> + if ( $notifications ) { + $counter = 0; + for ( $i = 0; $i < count($notifications); $i++ ) { + $alt = ( 0 == $counter % 2 ) ? ' class="alt"' : ''; ?> + <li<?php echo $alt ?>><?php echo $notifications[$i] ?></li> - <?php $counter++; ?> - <?php } ?> - <?php } else { ?> + + <?php $counter++; + } + } else { ?> + <li><a href="<?php echo $bp->loggedin_user->domain ?>"><?php _e( 'No new notifications.', 'buddypress' ); ?></a></li> + <?php } @@ -186,14 +210,19 @@ function bp_adminbar_notifications_menu() { function bp_adminbar_authors_menu() { global $bp, $current_blog, $wpdb; - if ( $current_blog->blog_id == BP_ROOT_BLOG || !function_exists( 'bp_blogs_install' ) ) + // Only for multisite + if ( !is_multisite() ) + return false; + + // Hide on root blog + if ( $current_blog->blog_id == BP_ROOT_BLOG || !bp_is_active( 'blogs' ) ) return false; $blog_prefix = $wpdb->get_blog_prefix( $current_blog->id ); - $authors = $wpdb->get_results( "SELECT user_id, user_login, user_nicename, display_name, user_email, meta_value as caps FROM $wpdb->users u, $wpdb->usermeta um WHERE u.ID = um.user_id AND meta_key = '{$blog_prefix}capabilities' ORDER BY um.user_id" ); + $authors = $wpdb->get_results( "SELECT user_id, user_login, user_nicename, display_name, user_email, meta_value as caps FROM $wpdb->users u, $wpdb->usermeta um WHERE u.ID = um.user_id AND meta_key = '{$blog_prefix}capabilities' ORDER BY um.user_id" ); if ( !empty( $authors ) ) { - /* This is a blog, render a menu with links to all authors */ + // This is a blog, render a menu with links to all authors echo '<li id="bp-adminbar-authors-menu"><a href="/">'; _e('Blog Authors', 'buddypress'); echo '</a>'; @@ -218,41 +247,44 @@ function bp_adminbar_authors_menu() { // **** "Random" Menu (visible when not logged in) ******** function bp_adminbar_random_menu() { global $bp; ?> + <li class="align-right" id="bp-adminbar-visitrandom-menu"> <a href="#"><?php _e( 'Visit', 'buddypress' ) ?></a> <ul class="random-list"> <li><a href="<?php echo $bp->root_domain . '/' . BP_MEMBERS_SLUG . '/?random-member' ?>"><?php _e( 'Random Member', 'buddypress' ) ?></a></li> - <?php if ( function_exists('groups_install') ) : ?> - <li class="alt"><a href="<?php echo $bp->root_domain . '/' . $bp->groups->slug . '/?random-group' ?>"><?php _e( 'Random Group', 'buddypress' ) ?></a></li> + <?php if ( bp_is_active( 'groups' ) ) : ?> + + <li class="alt"><a href="<?php echo $bp->root_domain . '/' . $bp->groups->slug . '/?random-group' ?>"><?php _e( 'Random Group', 'buddypress' ) ?></a></li> + <?php endif; ?> - <?php if ( function_exists('bp_blogs_install') && bp_core_is_multisite() ) : ?> - <li><a href="<?php echo $bp->root_domain . '/' . $bp->blogs->slug . '/?random-blog' ?>"><?php _e( 'Random Blog', 'buddypress' ) ?></a></li> + <?php if ( bp_is_active( 'blogs' ) && is_multisite() ) : ?> + + <li><a href="<?php echo $bp->root_domain . '/' . $bp->blogs->slug . '/?random-blog' ?>"><?php _e( 'Random Blog', 'buddypress' ) ?></a></li> <?php endif; ?> <?php do_action( 'bp_adminbar_random_menu' ) ?> + </ul> </li> + <?php } -add_action( 'bp_adminbar_logo', 'bp_adminbar_logo' ); -add_action( 'bp_adminbar_menus', 'bp_adminbar_login_menu', 2 ); -add_action( 'bp_adminbar_menus', 'bp_adminbar_account_menu', 4 ); - -if ( bp_core_is_multisite() ) - add_action( 'bp_adminbar_menus', 'bp_adminbar_blogs_menu', 6 ); - -add_action( 'bp_adminbar_menus', 'bp_adminbar_notifications_menu', 8 ); - -if ( bp_core_is_multisite() ) - add_action( 'bp_adminbar_menus', 'bp_adminbar_authors_menu', 12 ); - -add_action( 'bp_adminbar_menus', 'bp_adminbar_random_menu', 100 ); - -add_action( 'wp_footer', 'bp_core_admin_bar', 8 ); -add_action( 'admin_footer', 'bp_core_admin_bar' ); +// Actions used to build the admin bar +add_action( 'bp_adminbar_logo', 'bp_adminbar_logo' ); +add_action( 'bp_adminbar_menus', 'bp_adminbar_login_menu', 2 ); +add_action( 'bp_adminbar_menus', 'bp_adminbar_account_menu', 4 ); +add_action( 'bp_adminbar_menus', 'bp_adminbar_blogs_menu', 6 ); +add_action( 'bp_adminbar_menus', 'bp_adminbar_thisblog_menu', 6 ); +add_action( 'bp_adminbar_menus', 'bp_adminbar_notifications_menu', 8 ); +add_action( 'bp_adminbar_menus', 'bp_adminbar_authors_menu', 12 ); +add_action( 'bp_adminbar_menus', 'bp_adminbar_random_menu', 100 ); + +// Actions used to append admin bar to footer +add_action( 'wp_footer', 'bp_core_admin_bar', 8 ); +add_action( 'admin_footer', 'bp_core_admin_bar' ); ?> \ No newline at end of file diff --git a/wp-content/plugins/buddypress/bp-core/bp-core-signup.php b/wp-content/plugins/buddypress/bp-core/bp-core-signup.php index 8f53b1b258051bacbaacfdf634845a32c69e3321..f778313f58bc2a8b09a98e138d6514d2f7aa883b 100644 --- a/wp-content/plugins/buddypress/bp-core/bp-core-signup.php +++ b/wp-content/plugins/buddypress/bp-core/bp-core-signup.php @@ -255,49 +255,6 @@ add_action( 'wp', 'bp_core_screen_activation', 3 ); * true or false on success or failure. */ -/** - * bp_core_flush_illegal_names() - * - * Flush illegal names by getting and setting 'illegal_names' site option - */ -function bp_core_flush_illegal_names() { - $illegal_names = get_site_option( 'illegal_names' ); - update_site_option( 'illegal_names', $illegal_names ); -} - -/** - * bp_core_illegal_names() - * - * Filter the illegal_names site option and make sure it includes a few - * specific BuddyPress and Multi-site slugs - * - * @param array|string $value Illegal names from field - * @param array|string $oldvalue The value as it is currently - * @return array Merged and unique array of illegal names - */ -function bp_core_illegal_names( $value = '', $oldvalue = '' ) { - - // Make sure $value is array - if ( empty( $value ) ) - $db_illegal_names = array(); - if ( is_array( $value ) ) - $db_illegal_names = $value; - elseif ( is_string( $value ) ) - $db_illegal_names = implode( ' ', $names ); - - // Add our slugs to the array and allow them to be filtered - $filtered_illegal_names = apply_filters( 'bp_core_illegal_usernames', array( 'www', 'web', 'root', 'admin', 'main', 'invite', 'administrator', BP_GROUPS_SLUG, BP_MEMBERS_SLUG, BP_FORUMS_SLUG, BP_BLOGS_SLUG, BP_ACTIVITY_SLUG, BP_XPROFILE_SLUG, BP_FRIENDS_SLUG, BP_SEARCH_SLUG, BP_SETTINGS_SLUG, BP_REGISTER_SLUG, BP_ACTIVATION_SLUG ) ); - - // Merge the arrays together - $merged_names = array_merge( (array)$filtered_illegal_names, (array)$db_illegal_names ); - - // Remove duplicates - $illegal_names = array_unique( (array)$merged_names ); - - return apply_filters( 'bp_core_illegal_names', $illegal_names ); -} -add_filter( 'pre_update_site_option_illegal_names', 'bp_core_illegal_names', 10, 2 ); - /** * bp_core_validate_user_signup() * @@ -391,7 +348,7 @@ function bp_core_signup_user( $user_login, $user_password, $user_email, $usermet 'user_email' => $user_email ) ); - if ( !$user_id ) { + if ( is_wp_error( $user_id ) || !$user_id ) { $errors->add( 'registerfail', sprintf( __('<strong>ERROR</strong>: Couldn’t register you... please contact the <a href="mailto:%s">webmaster</a> !', 'buddypress' ), get_option( 'admin_email' ) ) ); return $errors; } diff --git a/wp-content/plugins/buddypress/bp-core/bp-core-templatetags.php b/wp-content/plugins/buddypress/bp-core/bp-core-templatetags.php index 3eabd4a3af3c55efb31068824aceb49c3bfc09fb..22c768de96ee97272294da5d6ace10cd74fe4d9a 100644 --- a/wp-content/plugins/buddypress/bp-core/bp-core-templatetags.php +++ b/wp-content/plugins/buddypress/bp-core/bp-core-templatetags.php @@ -820,15 +820,15 @@ function bp_format_time( $time, $just_date = false ) { $root_blog_offset = get_blog_option( BP_ROOT_BLOG, 'gmt_offset' ); // Calculate offset time - $time_offest = $time + ( $root_blog_offset * 3600 ); + $time_offset = $time + ( $root_blog_offset * 3600 ); // Current date (January 1, 2010) - $date = date( 'F j, Y ', $time_offest ); + $date = date( 'F j, Y ', $time_offset ); // Should we show the time also? if ( !$just_date ) { // Current time (9:50pm) - $time = date( ' g:ia', $time_offest ); + $time = date( ' g:ia', $time_offset ); // Return string formatted with date and time $date = sprintf( __( '%1$s at %2$s', 'buddypress' ), $date, $time ); @@ -977,9 +977,9 @@ function bp_activation_page() { global $bp; if ( bp_has_custom_activation_page() ) - $page = $bp->root_domain . '/' . BP_ACTIVATION_SLUG; + $page = trailingslashit( $bp->root_domain ) . BP_ACTIVATION_SLUG; else - $page = $bp->root_domain . '/wp-activate.php'; + $page = trailingslashit( $bp->root_domain ) . 'wp-activate.php'; return apply_filters( 'bp_get_activation_page', $page ); } diff --git a/wp-content/plugins/buddypress/bp-forums/bp-forums-bbpress.php b/wp-content/plugins/buddypress/bp-forums/bp-forums-bbpress.php index 23db8c49a3434534af4dd3ebced4b2a4565d7696..539f70984bbef84d1db67465ad893b2e24cd3106 100644 --- a/wp-content/plugins/buddypress/bp-forums/bp-forums-bbpress.php +++ b/wp-content/plugins/buddypress/bp-forums/bp-forums-bbpress.php @@ -1,5 +1,4 @@ <?php - function bp_forums_load_bbpress() { global $bp, $wpdb, $wp_roles, $current_user, $wp_users_object; global $bb, $bbdb, $bb_table_prefix, $bb_current_user; @@ -139,6 +138,62 @@ class BP_Forums_BB_Auth { * extend it and use this. */ class BPDB extends WPDB { + var $db_servers = array(); + + function BPDB( $dbuser, $dbpassword, $dbname, $dbhost ) { + parent::WPDB( $dbuser, $dbpassword, $dbname, $dbhost ); + + $args = func_get_args(); + $args = call_user_func_array( array( &$this, '_init' ), $args ); + + if ( $args['host'] ) + $this->db_servers['dbh_global'] = $args; + } + + /** + * Determine if a database supports a particular feature. + * + * Overriden here to work around differences between bbPress', and WordPress', implementation differences. + * In particular, when BuddyPress tries to run bbPress' SQL installation script, the collation check always + * failed. The capability is long supported by WordPress' minimum required MySQL version, so this is safe. + */ + function has_cap( $db_cap, $_table_name='' ) { + if ( 'collation' == $db_cap ) + return true; + + return parent::has_cap( $db_cap ); + } + + /** + * Initialises the class variables based on provided arguments. + * Based on, and taken from, the BackPress class in turn taken from the 1.0 branch of bbPress. + */ + function _init( $args ) + { + if ( 4 == func_num_args() ) { + $args = array( + 'user' => $args, + 'password' => func_get_arg( 1 ), + 'name' => func_get_arg( 2 ), + 'host' => func_get_arg( 3 ), + 'charset' => defined( 'BBDB_CHARSET' ) ? BBDB_CHARSET : false, + 'collate' => defined( 'BBDB_COLLATE' ) ? BBDB_COLLATE : false, + ); + } + + $defaults = array( + 'user' => false, + 'password' => false, + 'name' => false, + 'host' => 'localhost', + 'charset' => false, + 'collate' => false, + 'errors' => false + ); + + return wp_parse_args( $args, $defaults ); + } + function escape_deep( $data ) { if ( is_array( $data ) ) { foreach ( (array) $data as $k => $v ) { @@ -169,7 +224,4 @@ function backpress_convert_object( &$object, $output ) { } } } - - - ?> \ No newline at end of file diff --git a/wp-content/plugins/buddypress/bp-forums/bp-forums-templatetags.php b/wp-content/plugins/buddypress/bp-forums/bp-forums-templatetags.php index 791240596e765b30a6f2f42c22ed4feb1894975e..91980138f7ae9ac1396a300e300c76efb3ed6661 100644 --- a/wp-content/plugins/buddypress/bp-forums/bp-forums-templatetags.php +++ b/wp-content/plugins/buddypress/bp-forums/bp-forums-templatetags.php @@ -958,24 +958,26 @@ function bp_the_topic_post_admin_links( $args = '' ) { function bp_get_the_topic_post_admin_links( $args = '' ) { global $topic_template; - /* Never show for the first post in a topic. */ - if ( 0 == $topic_template->current_post && $topic_template->pag_page == 1 ) + // Never show for the first post in a topic. + if ( 0 == $topic_template->current_post && 1 == $topic_template->pag_page ) return; $defaults = array( - 'seperator' => '|' + 'separator' => ' | ' ); $r = wp_parse_args( $args, $defaults ); extract( $r, EXTR_SKIP ); + $query_vars = ''; if ( $_SERVER['QUERY_STRING'] ) $query_vars = '?' . $_SERVER['QUERY_STRING']; - $links = '<a href="' . wp_nonce_url( bp_get_the_topic_permalink() . 'edit/post/' . $topic_template->post->post_id . '/' . $query_vars, 'bp_forums_edit_post' ) . '">' . __( 'Edit', 'buddypress' ) . '</a> ' . $seperator . ' '; - $links .= '<a class="confirm" id="post-delete-link" href="' . wp_nonce_url( bp_get_the_topic_permalink() . 'delete/post/' . $topic_template->post->post_id, 'bp_forums_delete_post' ) . '">' . __( 'Delete', 'buddypress' ) . '</a> | '; + $links = array(); + $links[] = '<a href="' . wp_nonce_url( bp_get_the_topic_permalink() . 'edit/post/' . $topic_template->post->post_id . '/' . $query_vars, 'bp_forums_edit_post' ) . '">' . __( 'Edit', 'buddypress' ) . '</a>'; + $links[] .= '<a class="confirm" id="post-delete-link" href="' . wp_nonce_url( bp_get_the_topic_permalink() . 'delete/post/' . $topic_template->post->post_id, 'bp_forums_delete_post' ) . '">' . __( 'Delete', 'buddypress' ) . '</a>'; - return $links; + return apply_filters( 'bp_get_the_topic_post_admin_links', implode( $separator, $links ), $links, $r ); } function bp_the_topic_post_edit_text() { diff --git a/wp-content/plugins/buddypress/bp-friends/bp-friends-templatetags.php b/wp-content/plugins/buddypress/bp-friends/bp-friends-templatetags.php index 7545923b9e22965acade44f2d2724173b26f852d..862b316f98f75dad0e3d6ab4c7780264823c5f00 100644 --- a/wp-content/plugins/buddypress/bp-friends/bp-friends-templatetags.php +++ b/wp-content/plugins/buddypress/bp-friends/bp-friends-templatetags.php @@ -345,6 +345,6 @@ function bp_friend_total_requests_count( $user_id = 0 ) { if ( empty( $user_id ) ) $user_id = $bp->loggedin_user->id; - return apply_filters( 'bp_friend_get_total_requests_count', (int) BP_Friends_Friendship::get_friend_user_ids( $user_id, true ) ); + return apply_filters( 'bp_friend_get_total_requests_count', count( BP_Friends_Friendship::get_friend_user_ids( $user_id, true ) ) ); } ?> \ No newline at end of file diff --git a/wp-content/plugins/buddypress/bp-groups/bp-groups-classes.php b/wp-content/plugins/buddypress/bp-groups/bp-groups-classes.php index dc1797e1f37e3cee75d532ec4e91b794852dd65e..c33d29e465ae8d2ca90073ad5c99fb089a452e47 100644 --- a/wp-content/plugins/buddypress/bp-groups/bp-groups-classes.php +++ b/wp-content/plugins/buddypress/bp-groups/bp-groups-classes.php @@ -1195,13 +1195,9 @@ class BP_Group_Extension { } // Construct the admin edit tab for the new group extension - if ( $this->enable_edit_item ) { + if ( $this->enable_edit_item && $bp->is_item_admin ) { add_action( 'groups_admin_tabs', create_function( '$current, $group_slug', 'if ( "' . esc_attr( $this->slug ) . '" == $current ) $selected = " class=\"current\""; echo "<li{$selected}><a href=\"' . $bp->root_domain . '/' . $bp->groups->slug . '/{$group_slug}/admin/' . esc_attr( $this->slug ) . '\">' . esc_attr( $this->name ) . '</a></li>";' ), 10, 2 ); - // Make sure user has access - if ( !$bp->is_item_admin ) - return false; - // Catch the edit screen and forward it to the plugin template if ( $bp->current_component == $bp->groups->slug && 'admin' == $bp->current_action && $this->slug == $bp->action_variables[0] ) { add_action( 'wp', array( &$this, 'edit_screen_save' ) ); diff --git a/wp-content/plugins/buddypress/bp-groups/bp-groups-templatetags.php b/wp-content/plugins/buddypress/bp-groups/bp-groups-templatetags.php index 7d4d40677eb5403f8bab2b14fed321400e63c483..6db64f3719fe631f65c38997c8e3d592deaa5851 100644 --- a/wp-content/plugins/buddypress/bp-groups/bp-groups-templatetags.php +++ b/wp-content/plugins/buddypress/bp-groups/bp-groups-templatetags.php @@ -124,7 +124,7 @@ class BP_Groups_Template { $this->group = new BP_Groups_Group( $this->group->group_id, true ); else { if ( $this->group ) - wp_cache_set( 'groups_group_nouserdata_' . $group->group_id, $this->group, 'bp' ); + wp_cache_set( 'groups_group_nouserdata_' . $this->group->group_id, $this->group, 'bp' ); } if ( 0 == $this->current_group ) // loop has just started diff --git a/wp-content/plugins/buddypress/bp-languages/buddypress.pot b/wp-content/plugins/buddypress/bp-languages/buddypress.pot index bb5084fbc72f6a024dd08aa4f336c33bfab19540..69b737630a6d0ee5420e5d1ccfbffa6fd3535915 100644 --- a/wp-content/plugins/buddypress/bp-languages/buddypress.pot +++ b/wp-content/plugins/buddypress/bp-languages/buddypress.pot @@ -1,695 +1,703 @@ -# Translation of BuddyPress. # Copyright (C) 2010 BuddyPress # This file is distributed under the same license as the BuddyPress package. -# FIRST AUTHOR <EMAIL@ADDRESS>, 2010. -# -#, fuzzy msgid "" msgstr "" "Project-Id-Version: BuddyPress \n" "Report-Msgid-Bugs-To: wp-polyglots@lists.automattic.com\n" -"POT-Creation-Date: 2010-10-13 13:13+0000\n" +"POT-Creation-Date: 2010-12-20 22:28:00+00:00\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" "PO-Revision-Date: 2010-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -#: bp-activity.php:113 bp-activity.php:270 -#: bp-activity/feeds/bp-activity-personal-feed.php:21 -#: bp-themes/bp-default/header.php:53 -msgid "Activity" +#: bp-friends.php:70 +msgid "Friends <span>(%d)</span>" msgstr "" -#: bp-activity.php:120 -msgid "Personal" +#: bp-friends.php:75 bp-friends.php:80 bp-friends.php:320 +#: bp-friends/bp-friends-templatetags.php:40 +msgid "My Friends" msgstr "" -#: bp-activity.php:123 bp-core/bp-core-admin.php:201 bp-friends.php:150 -msgid "Friends" +#: bp-friends.php:76 +msgid "Requests" msgstr "" -#: bp-activity.php:126 bp-core/bp-core-admin.php:210 -#: bp-core/bp-core-templatetags.php:1029 bp-groups.php:986 bp-groups.php:1410 -#: bp-groups.php:1423 bp-groups.php:1436 bp-groups.php:1449 -#: bp-groups/bp-groups-widgets.php:13 bp-themes/bp-default/header.php:63 -msgid "Groups" +#: bp-friends.php:118 +msgid "Friendship accepted" msgstr "" -#: bp-activity.php:128 -msgid "Favorites" +#: bp-friends.php:120 +msgid "Friendship could not be accepted" msgstr "" -#: bp-activity.php:129 bp-themes/bp-default/activity/index.php:50 -#, php-format -msgid "@%s Mentions" +#: bp-friends.php:129 +msgid "Friendship rejected" msgstr "" -#: bp-activity.php:133 -msgid "My Activity" +#: bp-friends.php:131 +msgid "Friendship could not be rejected" msgstr "" -#: bp-activity.php:251 -msgid "You do not have access to this activity." +#: bp-friends.php:150 bp-core/bp-core-admin.php:201 bp-activity.php:123 +msgid "Friends" msgstr "" -#: bp-activity.php:271 bp-blogs/bp-blogs-templatetags.php:409 +#: bp-friends.php:151 bp-blogs/bp-blogs-templatetags.php:409 #: bp-core/bp-core-admin.php:60 bp-core/bp-core-admin.php:68 #: bp-core/bp-core-admin.php:75 bp-core/bp-core-admin.php:82 #: bp-core/bp-core-admin.php:90 bp-core/bp-core-admin.php:99 -#: bp-friends.php:151 bp-groups.php:987 bp-messages.php:245 +#: bp-activity.php:271 bp-xprofile/bp-xprofile-admin.php:93 bp-groups.php:987 +#: bp-messages.php:245 bp-themes/bp-default/registration/register.php:196 #: bp-themes/bp-default/groups/single/admin.php:26 -#: bp-themes/bp-default/registration/register.php:196 -#: bp-xprofile/bp-xprofile-admin.php:93 msgid "Yes" msgstr "" -#: bp-activity.php:272 bp-blogs/bp-blogs-templatetags.php:413 +#: bp-friends.php:152 bp-blogs/bp-blogs-templatetags.php:413 #: bp-core/bp-core-admin.php:61 bp-core/bp-core-admin.php:69 #: bp-core/bp-core-admin.php:76 bp-core/bp-core-admin.php:83 #: bp-core/bp-core-admin.php:91 bp-core/bp-core-admin.php:100 -#: bp-friends.php:152 bp-groups.php:988 bp-messages.php:246 -#: bp-themes/bp-default/groups/single/admin.php:27 +#: bp-activity.php:272 bp-groups.php:988 bp-messages.php:246 #: bp-themes/bp-default/registration/register.php:197 +#: bp-themes/bp-default/groups/single/admin.php:27 msgid "No" msgstr "" -#: bp-activity.php:279 -#, php-format -msgid "A member mentions you in an update using \"@%s\"" +#: bp-friends.php:159 +msgid "A member sends you a friendship request" msgstr "" -#: bp-activity.php:285 -msgid "A member replies to an update or comment you've posted" +#: bp-friends.php:165 +msgid "A member accepts your friendship request" msgstr "" -#: bp-activity.php:366 -msgid "Activity deleted" +#: bp-friends.php:208 bp-themes/bp-default/_inc/ajax.php:351 +msgid "Friendship could not be requested." msgstr "" -#: bp-activity.php:368 -msgid "There was an error when deleting that activity" +#: bp-friends.php:210 +msgid "Friendship requested" msgstr "" -#: bp-activity.php:388 bp-themes/bp-default/_inc/ajax.php:124 -msgid "Please enter some content to post." +#: bp-friends.php:213 +msgid "You are already friends with this user" msgstr "" -#: bp-activity.php:403 -msgid "Update Posted!" +#: bp-friends.php:215 +msgid "You already have a pending friendship request with this user" msgstr "" -#: bp-activity.php:405 -msgid "There was an error when posting your update, please try again." +#: bp-friends.php:246 bp-themes/bp-default/_inc/ajax.php:341 +msgid "Friendship could not be canceled." msgstr "" -#: bp-activity.php:424 bp-themes/bp-default/_inc/ajax.php:162 -msgid "Please do not leave the comment area blank." +#: bp-friends.php:248 +msgid "Friendship canceled" msgstr "" -#: bp-activity.php:435 -msgid "Reply Posted!" +#: bp-friends.php:251 +msgid "You are not yet friends with this user" msgstr "" -#: bp-activity.php:437 bp-themes/bp-default/_inc/ajax.php:167 -#: bp-themes/bp-default/_inc/ajax.php:178 -msgid "There was an error posting that reply, please try again." +#: bp-friends.php:253 +msgid "You have a pending friendship request with this user" msgstr "" -#: bp-activity.php:453 -msgid "Activity marked as favorite." +#: bp-friends.php:308 +msgid "New friendship created" msgstr "" -#: bp-activity.php:455 -msgid "" -"There was an error marking that activity as a favorite, please try again." +#: bp-friends.php:320 +msgid "%d friends accepted your friendship requests" msgstr "" -#: bp-activity.php:471 -msgid "Activity removed as favorite." +#: bp-friends.php:324 bp-friends/bp-friends-notifications.php:62 +msgid "%s accepted your friendship request" msgstr "" -#: bp-activity.php:473 -msgid "" -"There was an error removing that activity as a favorite, please try again." +#: bp-friends.php:330 bp-friends.php:334 +msgid "Friendship requests" msgstr "" -#: bp-activity.php:699 -#, php-format -msgid "%s posted an update:" +#: bp-friends.php:330 +msgid "You have %d pending friendship requests" msgstr "" -#: bp-activity.php:752 -#, php-format -msgid "%s posted a new activity comment:" +#: bp-friends.php:334 +msgid "You have a friendship request from %s" msgstr "" -#: bp-activity.php:967 -msgid "Thumbnail" +#: bp-friends.php:433 bp-friends.php:442 +msgid "%s and %s are now friends" msgstr "" -#: bp-activity.php:1195 -msgid "Posted an update" +#: bp-blogs/bp-blogs-widgets.php:18 +msgid "Recent Site Wide Posts" msgstr "" -#: bp-activity/bp-activity-notifications.php:32 -#, php-format -msgid "%s mentioned you in an update" +#: bp-blogs/bp-blogs-widgets.php:60 +msgid "Sorry, there were no blog posts found. Why not write one?" msgstr "" -#: bp-activity/bp-activity-notifications.php:35 -#, php-format -msgid "" -"%s mentioned you in an update:\n" -"\n" -"\"%s\"\n" -"\n" -"To view and respond to the message, log in and visit: %s\n" -"\n" -"---------------------\n" +#: bp-blogs/bp-blogs-widgets.php:80 +msgid "Max posts to show:" msgstr "" -#: bp-activity/bp-activity-notifications.php:44 -#: bp-activity/bp-activity-notifications.php:88 -#: bp-activity/bp-activity-notifications.php:131 -#: bp-friends/bp-friends-notifications.php:34 -#: bp-friends/bp-friends-notifications.php:72 -#: bp-groups/bp-groups-notifications.php:30 -#: bp-groups/bp-groups-notifications.php:79 -#: bp-groups/bp-groups-notifications.php:133 -#: bp-groups/bp-groups-notifications.php:179 -#: bp-groups/bp-groups-notifications.php:231 -#: bp-groups/bp-groups-notifications.php:289 -#: bp-messages/bp-messages-notifications.php:37 -#, php-format -msgid "To disable these notifications please log in and go to: %s" +#: bp-blogs/bp-blogs-templatetags.php:173 +msgid "Viewing blog %1$s to %2$s (of %3$s blogs)" msgstr "" -#: bp-activity/bp-activity-notifications.php:76 -#, php-format -msgid "%s replied to one of your updates" +#: bp-blogs/bp-blogs-templatetags.php:198 +msgid "Blog avatar" msgstr "" -#: bp-activity/bp-activity-notifications.php:79 -#, php-format -msgid "" -"%s replied to one of your updates:\n" -"\n" -"\"%s\"\n" -"\n" -"To view your original update and all comments, log in and visit: %s\n" -"\n" -"---------------------\n" +#: bp-blogs/bp-blogs-templatetags.php:256 bp-core/bp-core-templatetags.php:355 +#: bp-core/bp-core-templatetags.php:1327 bp-core/bp-core-classes.php:82 +#: bp-groups/bp-groups-widgets.php:119 +#: bp-themes/bp-default/groups/groups-loop.php:31 +#: bp-themes/bp-default/groups/single/group-header.php:31 +msgid "active %s ago" msgstr "" -#: bp-activity/bp-activity-notifications.php:116 -#, php-format -msgid "%s replied to one of your comments" +#: bp-blogs/bp-blogs-templatetags.php:268 +msgid "Latest Post: %s" msgstr "" -#: bp-activity/bp-activity-notifications.php:122 -#, php-format -msgid "" -"%s replied to one of your comments:\n" -"\n" -"\"%s\"\n" -"\n" -"To view the original activity, your comment and all replies, log in and " -"visit: %s\n" -"\n" -"---------------------\n" +#: bp-blogs/bp-blogs-templatetags.php:340 +msgid "There was a problem, please correct the form below and try again." msgstr "" -#: bp-activity/bp-activity-templatetags.php:278 -#, php-format -msgid "Viewing item %1$s to %2$s (of %3$s items)" +#: bp-blogs/bp-blogs-templatetags.php:343 +msgid "By filling out the form below, you can <strong>add a blog to your account</strong>. There is no limit to the number of blogs you can have, so create to your heart's content, but blog responsibly." msgstr "" -#: bp-activity/bp-activity-templatetags.php:430 -#: bp-activity/bp-activity-templatetags.php:476 bp-groups.php:93 -msgid "Avatar" +#: bp-blogs/bp-blogs-templatetags.php:345 +msgid "If you’re not going to use a great blog domain, leave it for a new user. Now have at it!" msgstr "" -#: bp-activity/bp-activity-templatetags.php:577 -#, php-format -msgid " %s ago" +#: bp-blogs/bp-blogs-templatetags.php:354 +msgid "Create Blog →" msgstr "" -#: bp-activity/bp-activity-templatetags.php:580 -#: bp-themes/bp-default/activity/entry.php:46 -msgid "View Thread / Permalink" +#: bp-blogs/bp-blogs-templatetags.php:368 +msgid "Blog Name:" msgstr "" -#: bp-activity/bp-activity-templatetags.php:580 -#: bp-activity/bp-activity-templatetags.php:817 -#: bp-core/bp-core-templatetags.php:379 -#: bp-themes/bp-default/activity/entry.php:46 -msgid "View" +#: bp-blogs/bp-blogs-templatetags.php:370 +msgid "Blog Domain:" msgstr "" -#: bp-activity/bp-activity-templatetags.php:660 -#: bp-themes/bp-default/_inc/ajax.php:190 -#, php-format -msgid "%s ago" +#: bp-blogs/bp-blogs-templatetags.php:382 +msgid "Your address will be " msgstr "" -#: bp-activity/bp-activity-templatetags.php:664 -#: bp-themes/bp-default/_inc/ajax.php:191 -#: bp-themes/bp-default/activity/entry.php:28 -msgid "Reply" +#: bp-blogs/bp-blogs-templatetags.php:385 +msgid "blogname" msgstr "" -#: bp-activity/bp-activity-templatetags.php:668 -#: bp-activity/bp-activity-templatetags.php:801 -#: bp-forums/bp-forums-templatetags.php:976 -#: bp-themes/bp-default/_inc/ajax.php:192 bp-xprofile/bp-xprofile-admin.php:68 -#: bp-xprofile/bp-xprofile-admin.php:95 -msgid "Delete" +#: bp-blogs/bp-blogs-templatetags.php:387 +msgid "domain." msgstr "" -#: bp-activity/bp-activity-templatetags.php:877 -msgid "profile" +#: bp-blogs/bp-blogs-templatetags.php:390 +msgid "Must be at least 4 characters, letters and numbers only. It cannot be changed so choose carefully!)" msgstr "" -#: bp-activity/bp-activity-templatetags.php:877 -msgid "friends" +#: bp-blogs/bp-blogs-templatetags.php:395 +msgid "Blog Title:" msgstr "" -#: bp-activity/bp-activity-templatetags.php:877 bp-core/bp-core-classes.php:98 -msgid "groups" +#: bp-blogs/bp-blogs-templatetags.php:403 +msgid "Privacy:" msgstr "" -#: bp-activity/bp-activity-templatetags.php:877 -msgid "status" +#: bp-blogs/bp-blogs-templatetags.php:404 +msgid "I would like my blog to appear in search engines like Google and Technorati, and in public listings around this site." msgstr "" -#: bp-activity/bp-activity-templatetags.php:877 -msgid "blogs" +#: bp-blogs/bp-blogs-templatetags.php:464 +msgid "Congratulations! You have successfully registered a new blog." msgstr "" -#: bp-activity/bp-activity-templatetags.php:885 -msgid "Clear Filter" +#: bp-blogs/bp-blogs-templatetags.php:466 +msgid "<a href=\"http://%1$s\">http://%2$s</a> is your new blog. <a href=\"%3$s\">Login</a> as \"%4$s\" using your existing password." msgstr "" -#: bp-activity/bp-activity-templatetags.php:956 -msgid "" -"Mention this user in a new public message, this will send the user a " -"notification to get their attention." +#: bp-blogs/bp-blogs-templatetags.php:476 bp-core/bp-core-templatetags.php:928 +#: bp-themes/bp-default/blogs/index.php:8 +#: bp-themes/bp-default/blogs/create.php:10 +msgid "Create a Blog" msgstr "" -#: bp-activity/bp-activity-templatetags.php:957 -msgid "Mention this User" +#: bp-blogs/bp-blogs-templatetags.php:490 +msgid "%s's Blogs" msgstr "" -#: bp-activity/feeds/bp-activity-favorites-feed.php:21 -#: bp-activity/feeds/bp-activity-favorites-feed.php:24 -msgid "Favorite Activity" +#: bp-blogs/bp-blogs-templatetags.php:491 +msgid "%s's Recent Posts" msgstr "" -#: bp-activity/feeds/bp-activity-favorites-feed.php:48 -#: bp-activity/feeds/bp-activity-friends-feed.php:44 -#: bp-activity/feeds/bp-activity-group-feed.php:43 -#: bp-activity/feeds/bp-activity-mentions-feed.php:43 -#: bp-activity/feeds/bp-activity-mygroups-feed.php:48 -#: bp-activity/feeds/bp-activity-personal-feed.php:43 -#: bp-activity/feeds/bp-activity-sitewide-feed.php:44 -#, php-format -msgid "Comments: %s" +#: bp-blogs/bp-blogs-templatetags.php:492 +msgid "%s's Recent Comments" msgstr "" -#: bp-activity/feeds/bp-activity-favorites-feed.php:52 -#: bp-activity/feeds/bp-activity-friends-feed.php:48 -#: bp-activity/feeds/bp-activity-mentions-feed.php:47 -#: bp-activity/feeds/bp-activity-personal-feed.php:47 -#: bp-themes/bp-default/activity/entry.php:45 -msgid "In reply to" -msgstr "" - -#: bp-activity/feeds/bp-activity-friends-feed.php:21 -msgid "Friends Activity" +#: bp-blogs/bp-blogs-templatetags.php:501 bp-core/bp-core-templatetags.php:447 +#: bp-core/bp-core-templatetags.php:453 +#: bp-groups/bp-groups-templatetags.php:1810 +#: bp-groups/bp-groups-templatetags.php:1816 +#: bp-forums/bp-forums-templatetags.php:1028 +#: bp-forums/bp-forums-templatetags.php:1034 +#: bp-themes/bp-default/_inc/ajax.php:56 +msgid "Search anything..." msgstr "" -#: bp-activity/feeds/bp-activity-friends-feed.php:24 -#, php-format -msgid "%s - Friends Activity Feed" +#: bp-blogs/bp-blogs-templatetags.php:502 bp-core/bp-core-templatetags.php:454 +#: bp-core/bp-core-templatetags.php:1048 +#: bp-groups/bp-groups-templatetags.php:1817 +#: bp-forums/bp-forums-templatetags.php:1035 bp-themes/bp-default/header.php:93 +#: bp-themes/bp-default/searchform.php:5 +msgid "Search" msgstr "" -#: bp-activity/feeds/bp-activity-group-feed.php:21 -msgid "Group Activity" +#: bp-blogs/bp-blogs-templatetags.php:534 +#: bp-blogs/bp-blogs-templatetags.php:535 +msgid "Visit Blog" msgstr "" -#: bp-activity/feeds/bp-activity-group-feed.php:24 -#, php-format -msgid "%s - Group Activity Feed" +#: bp-forums.php:56 +msgid "The forums component has not been set up yet." msgstr "" -#: bp-activity/feeds/bp-activity-mentions-feed.php:21 -#: bp-activity/feeds/bp-activity-mentions-feed.php:24 -msgid "Mentions" +#: bp-forums.php:76 bp-groups.php:554 +msgid "There was an error when creating the topic" msgstr "" -#: bp-activity/feeds/bp-activity-mygroups-feed.php:21 -#: bp-activity/feeds/bp-activity-mygroups-feed.php:24 -msgid "My Groups - Public Activity" +#: bp-forums.php:78 bp-groups.php:556 +msgid "The topic was created successfully" msgstr "" -#: bp-activity/feeds/bp-activity-personal-feed.php:24 -#, php-format -msgid "%s - Activity Feed" +#: bp-forums.php:82 +msgid "Please pick the group forum where you would like to post this topic." msgstr "" -#: bp-activity/feeds/bp-activity-sitewide-feed.php:22 -msgid "Site Wide Activity" +#: bp-forums.php:103 bp-forums/bp-forums-admin.php:8 +msgid "Forums Setup" msgstr "" -#: bp-activity/feeds/bp-activity-sitewide-feed.php:25 -msgid "Site Wide Activity Feed" +#: bp-core/bp-core-widgets.php:15 bp-core/bp-core-templatetags.php:1026 +#: bp-themes/bp-default/header.php:58 +#: bp-themes/bp-default/groups/single/admin.php:174 +msgid "Members" msgstr "" -#: bp-blogs.php:109 -#, php-format -msgid "Blogs <span>(%d)</span>" +#: bp-core/bp-core-widgets.php:34 bp-friends/bp-friends-templatetags.php:7 +#: bp-friends/bp-friends-templatetags.php:23 bp-groups/bp-groups-widgets.php:32 +#: bp-themes/bp-default/members/single/blogs.php:9 +#: bp-themes/bp-default/blogs/index.php:31 +msgid "Newest" msgstr "" -#: bp-blogs.php:117 bp-core/bp-core-adminbar.php:113 -msgid "My Blogs" +#: bp-core/bp-core-widgets.php:35 bp-groups/bp-groups-widgets.php:33 +msgid "Active" msgstr "" -#: bp-blogs.php:190 -msgid "New blog created" +#: bp-core/bp-core-widgets.php:39 bp-groups/bp-groups-widgets.php:34 +msgid "Popular" msgstr "" -#: bp-blogs.php:191 -msgid "New blog post published" +#: bp-core/bp-core-widgets.php:66 +msgid "No one has signed up yet!" msgstr "" -#: bp-blogs.php:192 -msgid "New blog post comment posted" +#: bp-core/bp-core-widgets.php:87 bp-core/bp-core-widgets.php:141 +#: bp-core/bp-core-widgets.php:195 +msgid "Max Members to show:" msgstr "" -#: bp-blogs.php:360 -#, php-format -msgid "%s created the blog %s" +#: bp-core/bp-core-widgets.php:96 +msgid "Who's Online Avatars" msgstr "" -#: bp-blogs.php:423 -#, php-format -msgid "%s wrote a new blog post: %s" +#: bp-core/bp-core-widgets.php:120 +msgid "There are no users currently online" msgstr "" -#: bp-blogs.php:497 -#, php-format -msgid "%s commented on the blog post %s" +#: bp-core/bp-core-widgets.php:150 +msgid "Recently Active Member Avatars" msgstr "" -#: bp-blogs/bp-blogs-templatetags.php:173 -#, php-format -msgid "Viewing blog %1$s to %2$s (of %3$s blogs)" +#: bp-core/bp-core-widgets.php:174 +msgid "There are no recently active members" msgstr "" -#: bp-blogs/bp-blogs-templatetags.php:198 -msgid "Blog avatar" +#: bp-core/bp-core-widgets.php:249 +msgid "There were no members found, please try another filter." msgstr "" -#: bp-blogs/bp-blogs-templatetags.php:256 bp-core/bp-core-classes.php:82 -#: bp-core/bp-core-templatetags.php:355 bp-core/bp-core-templatetags.php:1327 -#: bp-groups/bp-groups-widgets.php:119 -#: bp-themes/bp-default/groups/groups-loop.php:31 -#: bp-themes/bp-default/groups/single/group-header.php:31 -#, php-format -msgid "active %s ago" +#: bp-core/bp-core-adminbar.php:44 bp-themes/bp-default/sidebar.php:50 +msgid "Log In" msgstr "" -#: bp-blogs/bp-blogs-templatetags.php:268 -#, php-format -msgid "Latest Post: %s" +#: bp-core/bp-core-adminbar.php:48 +msgid "Sign Up" msgstr "" -#: bp-blogs/bp-blogs-templatetags.php:340 -msgid "There was a problem, please correct the form below and try again." +#: bp-core/bp-core-adminbar.php:61 +msgid "My Account" msgstr "" -#: bp-blogs/bp-blogs-templatetags.php:343 -msgid "" -"By filling out the form below, you can <strong>add a blog to your account</" -"strong>. There is no limit to the number of blogs you can have, so create to " -"your heart's content, but blog responsibly." +#: bp-core/bp-core-adminbar.php:93 bp-core/bp-core-templatetags.php:516 +#: bp-core/bp-core-templatetags.php:518 bp-core/bp-core-templatetags.php:1059 +#: bp-core/bp-core-templatetags.php:1061 bp-themes/bp-default/sidebar.php:18 +msgid "Log Out" msgstr "" -#: bp-blogs/bp-blogs-templatetags.php:345 -msgid "" -"If you’re not going to use a great blog domain, leave it for a new " -"user. Now have at it!" +#: bp-core/bp-core-adminbar.php:115 bp-blogs.php:117 +msgid "My Blogs" msgstr "" -#: bp-blogs/bp-blogs-templatetags.php:354 -msgid "Create Blog →" +#: bp-core/bp-core-adminbar.php:129 bp-core/bp-core-adminbar.php:155 +msgid "Dashboard" msgstr "" -#: bp-blogs/bp-blogs-templatetags.php:368 -msgid "Blog Name:" +#: bp-core/bp-core-adminbar.php:130 bp-core/bp-core-adminbar.php:160 +msgid "New Post" msgstr "" -#: bp-blogs/bp-blogs-templatetags.php:370 -msgid "Blog Domain:" +#: bp-core/bp-core-adminbar.php:131 bp-core/bp-core-adminbar.php:161 +msgid "Manage Posts" msgstr "" -#: bp-blogs/bp-blogs-templatetags.php:382 -msgid "Your address will be " +#: bp-core/bp-core-adminbar.php:132 bp-core/bp-core-adminbar.php:162 +msgid "Manage Comments" msgstr "" -#: bp-blogs/bp-blogs-templatetags.php:385 -msgid "blogname" +#: bp-core/bp-core-adminbar.php:143 +msgid "Create a Blog!" msgstr "" -#: bp-blogs/bp-blogs-templatetags.php:387 -msgid "domain." +#: bp-core/bp-core-adminbar.php:179 bp-core/bp-core-settings.php:22 +msgid "Notifications" msgstr "" -#: bp-blogs/bp-blogs-templatetags.php:390 -msgid "" -"Must be at least 4 characters, letters and numbers only. It cannot be " -"changed so choose carefully!)" +#: bp-core/bp-core-adminbar.php:200 +msgid "No new notifications." msgstr "" -#: bp-blogs/bp-blogs-templatetags.php:395 -msgid "Blog Title:" +#: bp-core/bp-core-adminbar.php:227 +msgid "Blog Authors" msgstr "" -#: bp-blogs/bp-blogs-templatetags.php:403 -msgid "Privacy:" +#: bp-core/bp-core-adminbar.php:252 +msgid "Visit" msgstr "" -#: bp-blogs/bp-blogs-templatetags.php:404 -msgid "" -"I would like my blog to appear in search engines like Google and Technorati, " -"and in public listings around this site." +#: bp-core/bp-core-adminbar.php:254 +msgid "Random Member" msgstr "" -#: bp-blogs/bp-blogs-templatetags.php:464 -msgid "Congratulations! You have successfully registered a new blog." +#: bp-core/bp-core-adminbar.php:258 +msgid "Random Group" msgstr "" -#: bp-blogs/bp-blogs-templatetags.php:466 -#, php-format -msgid "" -"<a href=\"http://%1$s\">http://%2$s</a> is your new blog. <a href=\"%3$s" -"\">Login</a> as \"%4$s\" using your existing password." +#: bp-core/bp-core-adminbar.php:264 +msgid "Random Blog" msgstr "" -#: bp-blogs/bp-blogs-templatetags.php:476 bp-core/bp-core-templatetags.php:928 -#: bp-themes/bp-default/blogs/create.php:10 -#: bp-themes/bp-default/blogs/index.php:8 -msgid "Create a Blog" +#: bp-core/bp-core-avatars.php:67 +msgid "Avatar Image" msgstr "" -#: bp-blogs/bp-blogs-templatetags.php:490 -#, php-format -msgid "%s's Blogs" +#: bp-core/bp-core-avatars.php:332 +msgid "There is no error, the file uploaded with success" msgstr "" -#: bp-blogs/bp-blogs-templatetags.php:491 -#, php-format -msgid "%s's Recent Posts" +#: bp-core/bp-core-avatars.php:333 bp-core/bp-core-avatars.php:334 +msgid "Your image was bigger than the maximum allowed file size of: " msgstr "" -#: bp-blogs/bp-blogs-templatetags.php:492 -#, php-format -msgid "%s's Recent Comments" +#: bp-core/bp-core-avatars.php:335 +msgid "The uploaded file was only partially uploaded" msgstr "" -#: bp-blogs/bp-blogs-templatetags.php:501 bp-core/bp-core-templatetags.php:447 -#: bp-core/bp-core-templatetags.php:453 -#: bp-forums/bp-forums-templatetags.php:1026 -#: bp-forums/bp-forums-templatetags.php:1032 -#: bp-groups/bp-groups-templatetags.php:1810 -#: bp-groups/bp-groups-templatetags.php:1816 -#: bp-themes/bp-default/_inc/ajax.php:56 -msgid "Search anything..." +#: bp-core/bp-core-avatars.php:336 +msgid "No file was uploaded" msgstr "" -#: bp-blogs/bp-blogs-templatetags.php:502 bp-core/bp-core-templatetags.php:454 -#: bp-core/bp-core-templatetags.php:1048 -#: bp-forums/bp-forums-templatetags.php:1033 -#: bp-groups/bp-groups-templatetags.php:1817 -#: bp-themes/bp-default/header.php:93 bp-themes/bp-default/searchform.php:5 -msgid "Search" +#: bp-core/bp-core-avatars.php:337 +msgid "Missing a temporary folder" msgstr "" -#: bp-blogs/bp-blogs-templatetags.php:534 -#: bp-blogs/bp-blogs-templatetags.php:535 -msgid "Visit Blog" +#: bp-core/bp-core-avatars.php:341 +msgid "Your upload failed, please try again. Error was: %s" msgstr "" -#: bp-blogs/bp-blogs-widgets.php:18 -msgid "Recent Site Wide Posts" +#: bp-core/bp-core-avatars.php:346 +msgid "The file you uploaded is too big. Please upload a file under %s" msgstr "" -#: bp-blogs/bp-blogs-widgets.php:60 -msgid "Sorry, there were no blog posts found. Why not write one?" +#: bp-core/bp-core-avatars.php:351 +msgid "Please upload only JPG, GIF or PNG photos." msgstr "" -#: bp-blogs/bp-blogs-widgets.php:80 -msgid "Max posts to show:" +#: bp-core/bp-core-avatars.php:362 bp-core/bp-core-avatars.php:375 +msgid "Upload Failed! Error was: %s" msgstr "" -#: bp-core.php:306 bp-core.php:307 -msgid "BuddyPress" +#: bp-core/bp-core-filters.php:29 +msgid "noreply" msgstr "" -#: bp-core.php:313 bp-core/bp-core-settings.php:69 -msgid "General Settings" +#: bp-core/bp-core-filters.php:133 bp-core/bp-core-filters.php:157 +msgid "[User Set]" msgstr "" -#: bp-core.php:314 -msgid "Component Setup" +#: bp-core/bp-core-filters.php:177 +msgid "" +"Thanks for registering! To complete the activation of your account and blog, please click the following link:\n" +"\n" +"%s\n" +"\n" +"\n" +"\n" +"After you activate, you can visit your blog here:\n" +"\n" +"%s" msgstr "" -#: bp-core.php:359 bp-xprofile.php:172 -msgid "Profile" +#: bp-core/bp-core-filters.php:178 +msgid "Activate %s" msgstr "" -#: bp-core.php:370 bp-groups/bp-groups-templatetags.php:419 -#: bp-xprofile.php:177 -msgid "Public" +#: bp-core/bp-core-filters.php:209 bp-core/bp-core-signup.php:542 +msgid "" +"Thanks for registering! To complete the activation of your account please click the following link:\n" +"\n" +"%s\n" +"\n" msgstr "" -#: bp-core.php:380 bp-core/bp-core-templatetags.php:736 -#: bp-themes/bp-default/activity/post-form.php:41 bp-xprofile.php:183 -msgid "My Profile" +#: bp-core/bp-core-filters.php:210 bp-core/bp-core-signup.php:543 +msgid "Activate Your Account" msgstr "" -#: bp-core.php:476 -msgid "User marked as spammer. Spam users are visible only to site admins." +#: bp-core/bp-core-signup.php:47 +msgid "Please make sure you enter your password twice" msgstr "" -#: bp-core.php:478 -msgid "User removed as spammer." +#: bp-core/bp-core-signup.php:51 +msgid "The passwords you entered do not match." msgstr "" -#: bp-core.php:512 -#, php-format -msgid "%s has been deleted from the system." +#: bp-core/bp-core-signup.php:74 +msgid "This is a required field" msgstr "" -#: bp-core.php:514 -#, php-format -msgid "There was an error deleting %s from the system. Please try again." +#: bp-core/bp-core-signup.php:168 +msgid "There was a problem uploading your avatar, please try uploading it again" msgstr "" -#: bp-core.php:1417 -msgid "year" +#: bp-core/bp-core-signup.php:198 bp-xprofile.php:386 +msgid "There was a problem cropping your avatar, please try uploading it again" msgstr "" -#: bp-core.php:1417 -msgid "years" +#: bp-core/bp-core-signup.php:200 +msgid "Your new avatar was uploaded successfully" msgstr "" -#: bp-core.php:1418 -msgid "month" +#: bp-core/bp-core-signup.php:222 bp-core/bp-core-signup.php:412 +msgid "There was an error activating your account, please try again." msgstr "" -#: bp-core.php:1418 -msgid "months" +#: bp-core/bp-core-signup.php:236 +msgid "Your account is now active!" msgstr "" -#: bp-core.php:1419 -msgid "week" +#: bp-core/bp-core-signup.php:275 +msgid "Please enter a username" msgstr "" -#: bp-core.php:1419 -msgid "weeks" +#: bp-core/bp-core-signup.php:284 +msgid "Only lowercase letters and numbers allowed" msgstr "" -#: bp-core.php:1420 -msgid "day" +#: bp-core/bp-core-signup.php:287 +msgid "Username must be at least 4 characters" msgstr "" -#: bp-core.php:1420 -msgid "days" +#: bp-core/bp-core-signup.php:290 +msgid "Sorry, usernames may not contain the character \"_\"!" msgstr "" -#: bp-core.php:1421 -msgid "hour" +#: bp-core/bp-core-signup.php:297 +msgid "Sorry, usernames must have letters too!" msgstr "" -#: bp-core.php:1421 -msgid "hours" +#: bp-core/bp-core-signup.php:300 +msgid "Please check your email address." msgstr "" -#: bp-core.php:1422 -msgid "minute" +#: bp-core/bp-core-signup.php:308 +msgid "Sorry, that email address is not allowed!" msgstr "" -#: bp-core.php:1422 -msgid "minutes" +#: bp-core/bp-core-signup.php:313 +msgid "Sorry, that username already exists!" msgstr "" -#: bp-core.php:1423 -msgid "second" +#: bp-core/bp-core-signup.php:317 +msgid "Sorry, that email address is already used!" msgstr "" -#: bp-core.php:1423 bp-core.php:1475 -msgid "seconds" +#: bp-core/bp-core-signup.php:352 +msgid "<strong>ERROR</strong>: Couldn’t register you... please contact the <a href=\"mailto:%s\">webmaster</a> !" msgstr "" -#: bp-core.php:1442 -msgid "sometime" +#: bp-core/bp-core-signup.php:437 bp-core/bp-core-signup.php:441 +msgid "Invalid activation key" msgstr "" -#: bp-core.php:1470 -msgctxt "Separator in time since" -msgid "," +#: bp-core/bp-core-signup.php:484 +msgid "%s became a registered member" msgstr "" -#: bp-core.php:1525 -msgid "not recently active" +#: bp-core/bp-core-templatetags.php:184 +msgid "Viewing member %1$s to %2$s (of %3$s active members)" msgstr "" -#: bp-core.php:1989 -msgid "" -"IMPORTANT: <a href=\"http://codex.buddypress.org/getting-started/upgrading-" -"from-10x/\">Read this before attempting to update BuddyPress</a>" +#: bp-core/bp-core-templatetags.php:186 +msgid "Viewing member %1$s to %2$s (of %3$s members with friends)" msgstr "" -#: bp-core.php:2018 -#, php-format -msgid "" -"<strong>BuddyPress is almost ready</strong>. You must <a href=\"%s\">update " -"your permalink structure</a> to something other than the default for it to " -"work." +#: bp-core/bp-core-templatetags.php:188 +msgid "Viewing member %1$s to %2$s (of %3$s members online)" msgstr "" -#: bp-core.php:2027 -#, php-format -msgid "" -"<strong>BuddyPress is ready</strong>. You'll need to <a href='%s'>activate a " -"BuddyPress compatible theme</a> to take advantage of all of the features. " -"We've bundled a default theme, but you can always <a href='%s'>install some " -"other compatible themes</a> or <a href='%s'>upgrade your existing WordPress " -"theme</a>." +#: bp-core/bp-core-templatetags.php:190 +msgid "Viewing member %1$s to %2$s (of %3$s members)" +msgstr "" + +#: bp-core/bp-core-templatetags.php:314 +msgid "Member avatar" +msgstr "" + +#: bp-core/bp-core-templatetags.php:379 +#: bp-themes/bp-default/activity/entry.php:46 +#: bp-activity/bp-activity-templatetags.php:580 +#: bp-activity/bp-activity-templatetags.php:817 +msgid "View" +msgstr "" + +#: bp-core/bp-core-templatetags.php:415 +msgid "registered %s ago" +msgstr "" + +#: bp-core/bp-core-templatetags.php:599 +msgid "Options" +msgstr "" + +#: bp-core/bp-core-templatetags.php:736 bp-core.php:379 bp-xprofile.php:183 +#: bp-themes/bp-default/activity/post-form.php:41 +msgid "My Profile" +msgstr "" + +#: bp-core/bp-core-templatetags.php:742 bp-themes/bp-default/comments.php:120 +msgid "Name" +msgstr "" + +#: bp-core/bp-core-templatetags.php:752 +msgid "About Me" +msgstr "" + +#: bp-core/bp-core-templatetags.php:762 bp-themes/bp-default/comments.php:130 +msgid "Website" +msgstr "" + +#: bp-core/bp-core-templatetags.php:772 +msgid "Jabber" +msgstr "" + +#: bp-core/bp-core-templatetags.php:782 +msgid "AOL Messenger" +msgstr "" + +#: bp-core/bp-core-templatetags.php:792 +msgid "Yahoo Messenger" +msgstr "" + +#: bp-core/bp-core-templatetags.php:834 +msgid "%1$s at %2$s" +msgstr "" + +#: bp-core/bp-core-templatetags.php:892 bp-groups.php:201 +#: bp-themes/bp-default/header.php:44 bp-themes/bp-default/header.php:48 +msgid "Home" +msgstr "" + +#: bp-core/bp-core-templatetags.php:904 bp-themes/bp-default/attachment.php:9 +#: bp-themes/bp-default/search.php:10 +msgid "Blog" +msgstr "" + +#: bp-core/bp-core-templatetags.php:914 bp-core/bp-core-templatetags.php:916 +msgid "%s Directory" +msgstr "" + +#: bp-core/bp-core-templatetags.php:919 +#: bp-themes/bp-default/registration/register.php:14 +msgid "Create an Account" +msgstr "" + +#: bp-core/bp-core-templatetags.php:922 +#: bp-themes/bp-default/registration/activate.php:28 +msgid "Activate your Account" +msgstr "" + +#: bp-core/bp-core-templatetags.php:925 bp-themes/bp-default/groups/index.php:7 +#: bp-themes/bp-default/groups/create.php:7 +msgid "Create a Group" +msgstr "" + +#: bp-core/bp-core-templatetags.php:1029 bp-core/bp-core-admin.php:210 +#: bp-activity.php:126 bp-groups/bp-groups-widgets.php:13 bp-groups.php:986 +#: bp-groups.php:1410 bp-groups.php:1423 bp-groups.php:1436 bp-groups.php:1449 +#: bp-themes/bp-default/header.php:63 +msgid "Groups" +msgstr "" + +#: bp-core/bp-core-templatetags.php:1032 bp-forums/bp-forums-admin.php:159 +#: bp-themes/bp-default/header.php:68 +msgid "Forums" +msgstr "" + +#: bp-core/bp-core-templatetags.php:1035 bp-themes/bp-default/header.php:75 +msgid "Blogs" +msgstr "" + +#: bp-core/bp-core-templatetags.php:1213 +msgid "Your Avatar" +msgstr "" + +#: bp-core/bp-core-templatetags.php:1286 +msgid "a user" +msgstr "" + +#: bp-core/bp-core-cssjs.php:56 +msgid "Are you sure?" +msgstr "" + +#: bp-core/bp-core-classes.php:96 +msgid "group" +msgstr "" + +#: bp-core/bp-core-classes.php:98 bp-activity/bp-activity-templatetags.php:877 +msgid "groups" +msgstr "" + +#: bp-core/bp-core-catchuri.php:262 +msgid "This user has been marked as a spammer. Only site admins can view this profile." msgstr "" #: bp-core/bp-core-admin.php:32 @@ -737,9 +745,7 @@ msgid "Default User Avatar" msgstr "" #: bp-core/bp-core-admin.php:108 -msgid "" -"For users without a custom avatar of their own, you can either display a " -"generic logo or a generated one based on their email address" +msgid "For users without a custom avatar of their own, you can either display a generic logo or a generated one based on their email address" msgstr "" #: bp-core/bp-core-admin.php:110 @@ -767,11 +773,7 @@ msgid "BuddyPress Component Setup" msgstr "" #: bp-core/bp-core-admin.php:166 -msgid "" -"By default, all BuddyPress components are enabled. You can selectively " -"disable any of the components by using the form below. Your BuddyPress " -"installation will continue to function, however the features of the disabled " -"components will no longer be accessible to anyone using the site." +msgid "By default, all BuddyPress components are enabled. You can selectively disable any of the components by using the form below. Your BuddyPress installation will continue to function, however the features of the disabled components will no longer be accessible to anyone using the site." msgstr "" #: bp-core/bp-core-admin.php:174 @@ -779,9 +781,7 @@ msgid "Activity Streams" msgstr "" #: bp-core/bp-core-admin.php:174 -msgid "" -"Allow users to post activity updates and track all activity across the " -"entire site." +msgid "Allow users to post activity updates and track all activity across the entire site." msgstr "" #: bp-core/bp-core-admin.php:176 bp-core/bp-core-admin.php:185 @@ -803,9 +803,7 @@ msgid "Blog Tracking" msgstr "" #: bp-core/bp-core-admin.php:183 -msgid "" -"Tracks blogs, blog posts and blogs comments for a user across a WPMU " -"installation." +msgid "Tracks blogs, blog posts and blogs comments for a user across a WPMU installation." msgstr "" #: bp-core/bp-core-admin.php:192 @@ -813,9 +811,7 @@ msgid "bbPress Forums" msgstr "" #: bp-core/bp-core-admin.php:192 -msgid "" -"Activates bbPress forum support within BuddyPress groups or any other custom " -"component." +msgid "Activates bbPress forum support within BuddyPress groups or any other custom component." msgstr "" #: bp-core/bp-core-admin.php:201 @@ -831,9 +827,7 @@ msgid "Private Messaging" msgstr "" #: bp-core/bp-core-admin.php:219 -msgid "" -"Let users send private messages to one another. Site admins can also send " -"site-wide notices." +msgid "Let users send private messages to one another. Site admins can also send site-wide notices." msgstr "" #: bp-core/bp-core-admin.php:228 @@ -844,3535 +838,3206 @@ msgstr "" msgid "Activates customizable profiles and avatars for site users." msgstr "" -#: bp-core/bp-core-adminbar.php:44 bp-themes/bp-default/sidebar.php:50 -msgid "Log In" +#: bp-core/bp-core-settings.php:17 bp-groups.php:92 +msgid "Settings" msgstr "" -#: bp-core/bp-core-adminbar.php:48 -msgid "Sign Up" +#: bp-core/bp-core-settings.php:21 +msgid "General" msgstr "" -#: bp-core/bp-core-adminbar.php:62 -msgid "My Account" +#: bp-core/bp-core-settings.php:25 bp-core/bp-core-settings.php:176 +msgid "Delete Account" msgstr "" -#: bp-core/bp-core-adminbar.php:94 bp-core/bp-core-templatetags.php:516 -#: bp-core/bp-core-templatetags.php:518 bp-core/bp-core-templatetags.php:1059 -#: bp-core/bp-core-templatetags.php:1061 bp-themes/bp-default/sidebar.php:18 -msgid "Log Out" +#: bp-core/bp-core-settings.php:69 bp-core.php:312 +msgid "General Settings" msgstr "" -#: bp-core/bp-core-adminbar.php:128 -msgid "Dashboard" +#: bp-core/bp-core-settings.php:77 bp-core/bp-core-settings.php:138 +msgid "Changes Saved." msgstr "" -#: bp-core/bp-core-adminbar.php:129 -msgid "New Post" +#: bp-core/bp-core-settings.php:83 +msgid "Your passwords did not match" msgstr "" -#: bp-core/bp-core-adminbar.php:130 -msgid "Manage Posts" +#: bp-core/bp-core-settings.php:88 +msgid "Account Email" msgstr "" -#: bp-core/bp-core-adminbar.php:131 -msgid "Manage Comments" +#: bp-core/bp-core-settings.php:91 +msgid "Change Password <span>(leave blank for no change)</span>" msgstr "" -#: bp-core/bp-core-adminbar.php:143 -msgid "Create a Blog!" +#: bp-core/bp-core-settings.php:92 +msgid "New Password" msgstr "" -#: bp-core/bp-core-adminbar.php:159 bp-core/bp-core-settings.php:22 -msgid "Notifications" +#: bp-core/bp-core-settings.php:93 +msgid "Repeat New Password" msgstr "" -#: bp-core/bp-core-adminbar.php:177 -msgid "No new notifications." +#: bp-core/bp-core-settings.php:96 bp-core/bp-core-settings.php:149 +#: bp-themes/bp-default/members/single/profile/edit.php:111 +#: bp-themes/bp-default/groups/single/forum/edit.php:34 +#: bp-themes/bp-default/groups/single/forum/edit.php:52 +#: bp-themes/bp-default/groups/single/admin.php:32 +#: bp-themes/bp-default/groups/single/admin.php:100 +msgid "Save Changes" msgstr "" -#: bp-core/bp-core-adminbar.php:198 -msgid "Blog Authors" +#: bp-core/bp-core-settings.php:130 +msgid "Notification Settings" msgstr "" -#: bp-core/bp-core-adminbar.php:222 -msgid "Visit" +#: bp-core/bp-core-settings.php:143 +msgid "Email Notifications" msgstr "" -#: bp-core/bp-core-adminbar.php:224 -msgid "Random Member" +#: bp-core/bp-core-settings.php:144 +msgid "Send a notification by email when:" msgstr "" -#: bp-core/bp-core-adminbar.php:227 -msgid "Random Group" +#: bp-core/bp-core-settings.php:185 +msgid "WARNING: Deleting your account will completely remove ALL content associated with it. There is no way back, please be careful with this option." msgstr "" -#: bp-core/bp-core-adminbar.php:231 -msgid "Random Blog" +#: bp-core/bp-core-settings.php:188 +msgid "I understand the consequences of deleting my account." msgstr "" -#: bp-core/bp-core-avatars.php:67 -msgid "Avatar Image" +#: bp-core/bp-core-settings.php:191 +msgid "Delete My Account" msgstr "" -#: bp-core/bp-core-avatars.php:332 -msgid "There is no error, the file uploaded with success" +#: bp-core.php:305 bp-core.php:306 +msgid "BuddyPress" msgstr "" -#: bp-core/bp-core-avatars.php:333 bp-core/bp-core-avatars.php:334 -msgid "Your image was bigger than the maximum allowed file size of: " +#: bp-core.php:313 +msgid "Component Setup" msgstr "" -#: bp-core/bp-core-avatars.php:335 -msgid "The uploaded file was only partially uploaded" +#: bp-core.php:358 bp-xprofile.php:172 +msgid "Profile" msgstr "" -#: bp-core/bp-core-avatars.php:336 -msgid "No file was uploaded" +#: bp-core.php:369 bp-groups/bp-groups-templatetags.php:419 bp-xprofile.php:177 +msgid "Public" msgstr "" -#: bp-core/bp-core-avatars.php:337 -msgid "Missing a temporary folder" +#: bp-core.php:475 +msgid "User marked as spammer. Spam users are visible only to site admins." msgstr "" -#: bp-core/bp-core-avatars.php:341 -#, php-format -msgid "Your upload failed, please try again. Error was: %s" +#: bp-core.php:477 +msgid "User removed as spammer." msgstr "" -#: bp-core/bp-core-avatars.php:346 -#, php-format -msgid "The file you uploaded is too big. Please upload a file under %s" +#: bp-core.php:511 +msgid "%s has been deleted from the system." msgstr "" -#: bp-core/bp-core-avatars.php:351 -msgid "Please upload only JPG, GIF or PNG photos." +#: bp-core.php:513 +msgid "There was an error deleting %s from the system. Please try again." msgstr "" -#: bp-core/bp-core-avatars.php:362 bp-core/bp-core-avatars.php:375 -#, php-format -msgid "Upload Failed! Error was: %s" +#: bp-core.php:1416 +msgid "year" msgstr "" -#: bp-core/bp-core-catchuri.php:262 -msgid "" -"This user has been marked as a spammer. Only site admins can view this " -"profile." +#: bp-core.php:1416 +msgid "years" msgstr "" -#: bp-core/bp-core-classes.php:96 -msgid "group" +#: bp-core.php:1417 +msgid "month" msgstr "" -#: bp-core/bp-core-cssjs.php:56 -msgid "Are you sure?" +#: bp-core.php:1417 +msgid "months" msgstr "" -#: bp-core/bp-core-filters.php:29 -msgid "noreply" +#: bp-core.php:1418 +msgid "week" msgstr "" -#: bp-core/bp-core-filters.php:133 bp-core/bp-core-filters.php:157 -msgid "[User Set]" +#: bp-core.php:1418 +msgid "weeks" msgstr "" -#: bp-core/bp-core-filters.php:177 -#, php-format -msgid "" -"Thanks for registering! To complete the activation of your account and blog, " -"please click the following link:\n" -"\n" -"%s\n" -"\n" -"\n" -"\n" -"After you activate, you can visit your blog here:\n" -"\n" -"%s" +#: bp-core.php:1419 +msgid "day" msgstr "" -#: bp-core/bp-core-filters.php:178 -#, php-format -msgid "Activate %s" +#: bp-core.php:1419 +msgid "days" msgstr "" -#: bp-core/bp-core-filters.php:209 bp-core/bp-core-signup.php:585 -#, php-format -msgid "" -"Thanks for registering! To complete the activation of your account please " -"click the following link:\n" -"\n" -"%s\n" -"\n" +#: bp-core.php:1420 +msgid "hour" msgstr "" -#: bp-core/bp-core-filters.php:210 bp-core/bp-core-signup.php:586 -msgid "Activate Your Account" +#: bp-core.php:1420 +msgid "hours" msgstr "" -#: bp-core/bp-core-settings.php:17 bp-groups.php:92 -msgid "Settings" +#: bp-core.php:1421 +msgid "minute" msgstr "" -#: bp-core/bp-core-settings.php:21 -msgid "General" +#: bp-core.php:1421 +msgid "minutes" msgstr "" -#: bp-core/bp-core-settings.php:25 bp-core/bp-core-settings.php:176 -msgid "Delete Account" +#: bp-core.php:1422 +msgid "second" msgstr "" -#: bp-core/bp-core-settings.php:77 bp-core/bp-core-settings.php:138 -msgid "Changes Saved." +#: bp-core.php:1422 bp-core.php:1474 +msgid "seconds" msgstr "" -#: bp-core/bp-core-settings.php:83 -msgid "Your passwords did not match" +#: bp-core.php:1441 +msgid "sometime" msgstr "" -#: bp-core/bp-core-settings.php:88 -msgid "Account Email" +#: bp-core.php:1469 +msgctxt "Separator in time since" +msgid "," msgstr "" -#: bp-core/bp-core-settings.php:91 -msgid "Change Password <span>(leave blank for no change)</span>" +#: bp-core.php:1524 +msgid "not recently active" msgstr "" -#: bp-core/bp-core-settings.php:92 -msgid "New Password" +#: bp-core.php:2034 +msgid "IMPORTANT: <a href=\"http://codex.buddypress.org/getting-started/upgrading-from-10x/\">Read this before attempting to update BuddyPress</a>" msgstr "" -#: bp-core/bp-core-settings.php:93 -msgid "Repeat New Password" +#: bp-core.php:2063 +msgid "<strong>BuddyPress is almost ready</strong>. You must <a href=\"%s\">update your permalink structure</a> to something other than the default for it to work." msgstr "" -#: bp-core/bp-core-settings.php:96 bp-core/bp-core-settings.php:149 -#: bp-themes/bp-default/groups/single/admin.php:32 -#: bp-themes/bp-default/groups/single/admin.php:100 -#: bp-themes/bp-default/groups/single/forum/edit.php:34 -#: bp-themes/bp-default/groups/single/forum/edit.php:52 -#: bp-themes/bp-default/members/single/profile/edit.php:111 -msgid "Save Changes" +#: bp-core.php:2072 +msgid "<strong>BuddyPress is ready</strong>. You'll need to <a href='%s'>activate a BuddyPress compatible theme</a> to take advantage of all of the features. We've bundled a default theme, but you can always <a href='%s'>install some other compatible themes</a> or <a href='%s'>upgrade your existing WordPress theme</a>." msgstr "" -#: bp-core/bp-core-settings.php:130 -msgid "Notification Settings" +#: bp-friends/bp-friends-templatetags.php:6 +#: bp-friends/bp-friends-templatetags.php:20 +#: bp-groups/bp-groups-templatetags.php:1825 +#: bp-groups/bp-groups-templatetags.php:1842 +msgid "Recently Active" msgstr "" -#: bp-core/bp-core-settings.php:143 -msgid "Email Notifications" +#: bp-friends/bp-friends-templatetags.php:8 +#: bp-friends/bp-friends-templatetags.php:26 +#: bp-groups/bp-groups-templatetags.php:1830 +#: bp-groups/bp-groups-templatetags.php:1857 +msgid "Alphabetically" msgstr "" -#: bp-core/bp-core-settings.php:144 -msgid "Send a notification by email when:" +#: bp-friends/bp-friends-templatetags.php:40 +msgid "%s's Friends" msgstr "" -#: bp-core/bp-core-settings.php:185 -msgid "" -"WARNING: Deleting your account will completely remove ALL content associated " -"with it. There is no way back, please be careful with this option." +#: bp-friends/bp-friends-templatetags.php:40 +msgid "See All" msgstr "" -#: bp-core/bp-core-settings.php:188 -msgid "I understand the consequences of deleting my account." +#: bp-friends/bp-friends-templatetags.php:53 +msgid "You haven't added any friend connections yet." msgstr "" -#: bp-core/bp-core-settings.php:191 -msgid "Delete My Account" +#: bp-friends/bp-friends-templatetags.php:53 +msgid "%s hasn't created any friend connections yet." msgstr "" -#: bp-core/bp-core-signup.php:47 -msgid "Please make sure you enter your password twice" +#: bp-friends/bp-friends-templatetags.php:93 +msgid "There aren't enough site members to show a random sample just yet." msgstr "" -#: bp-core/bp-core-signup.php:51 -msgid "The passwords you entered do not match." +#: bp-friends/bp-friends-templatetags.php:103 +msgid "Filter Friends" msgstr "" -#: bp-core/bp-core-signup.php:74 -msgid "This is a required field" +#: bp-friends/bp-friends-templatetags.php:138 +msgid "%d friend" msgstr "" -#: bp-core/bp-core-signup.php:168 -msgid "" -"There was a problem uploading your avatar, please try uploading it again" +#: bp-friends/bp-friends-templatetags.php:140 +msgid "%d friends" msgstr "" -#: bp-core/bp-core-signup.php:198 bp-xprofile.php:386 -msgid "There was a problem cropping your avatar, please try uploading it again" +#: bp-friends/bp-friends-templatetags.php:224 +#: bp-friends/bp-friends-templatetags.php:225 +#: bp-themes/bp-default/_inc/ajax.php:353 +msgid "Friendship Requested" msgstr "" -#: bp-core/bp-core-signup.php:200 -msgid "Your new avatar was uploaded successfully" +#: bp-friends/bp-friends-templatetags.php:239 +#: bp-friends/bp-friends-templatetags.php:240 +msgid "Cancel Friendship" msgstr "" -#: bp-core/bp-core-signup.php:222 bp-core/bp-core-signup.php:455 -msgid "There was an error activating your account, please try again." +#: bp-friends/bp-friends-templatetags.php:257 +#: bp-friends/bp-friends-templatetags.php:258 +#: bp-themes/bp-default/_inc/ajax.php:343 +msgid "Add Friend" msgstr "" -#: bp-core/bp-core-signup.php:236 -msgid "Your account is now active!" +#: bp-friends/bp-friends-notifications.php:22 +msgid "New friendship request from %s" msgstr "" -#: bp-core/bp-core-signup.php:318 -msgid "Please enter a username" +#: bp-friends/bp-friends-notifications.php:24 +msgid "" +"%s wants to add you as a friend.\n" +"\n" +"To view all of your pending friendship requests: %s\n" +"\n" +"To view %s's profile: %s\n" +"\n" +"---------------------\n" msgstr "" -#: bp-core/bp-core-signup.php:327 -msgid "Only lowercase letters and numbers allowed" +#: bp-friends/bp-friends-notifications.php:34 +#: bp-friends/bp-friends-notifications.php:72 +#: bp-groups/bp-groups-notifications.php:30 +#: bp-groups/bp-groups-notifications.php:79 +#: bp-groups/bp-groups-notifications.php:133 +#: bp-groups/bp-groups-notifications.php:179 +#: bp-groups/bp-groups-notifications.php:231 +#: bp-groups/bp-groups-notifications.php:289 +#: bp-messages/bp-messages-notifications.php:37 +#: bp-activity/bp-activity-notifications.php:44 +#: bp-activity/bp-activity-notifications.php:88 +#: bp-activity/bp-activity-notifications.php:131 +msgid "To disable these notifications please log in and go to: %s" msgstr "" -#: bp-core/bp-core-signup.php:330 -msgid "Username must be at least 4 characters" +#: bp-friends/bp-friends-notifications.php:64 +msgid "" +"%s accepted your friend request.\n" +"\n" +"To view %s's profile: %s\n" +"\n" +"---------------------\n" msgstr "" -#: bp-core/bp-core-signup.php:333 -msgid "Sorry, usernames may not contain the character \"_\"!" +#: bp-activity.php:113 bp-activity.php:270 bp-themes/bp-default/header.php:53 +#: bp-activity/feeds/bp-activity-personal-feed.php:21 +msgid "Activity" msgstr "" -#: bp-core/bp-core-signup.php:340 -msgid "Sorry, usernames must have letters too!" +#: bp-activity.php:120 +msgid "Personal" msgstr "" -#: bp-core/bp-core-signup.php:343 -msgid "Please check your email address." +#: bp-activity.php:128 +msgid "Favorites" msgstr "" -#: bp-core/bp-core-signup.php:351 -msgid "Sorry, that email address is not allowed!" +#: bp-activity.php:129 bp-themes/bp-default/activity/index.php:50 +msgid "@%s Mentions" msgstr "" -#: bp-core/bp-core-signup.php:356 -msgid "Sorry, that username already exists!" +#: bp-activity.php:133 +msgid "My Activity" msgstr "" -#: bp-core/bp-core-signup.php:360 -msgid "Sorry, that email address is already used!" +#: bp-activity.php:251 +msgid "You do not have access to this activity." msgstr "" -#: bp-core/bp-core-signup.php:395 -#, php-format -msgid "" -"<strong>ERROR</strong>: Couldn’t register you... please contact the <a " -"href=\"mailto:%s\">webmaster</a> !" +#: bp-activity.php:279 +msgid "A member mentions you in an update using \"@%s\"" msgstr "" -#: bp-core/bp-core-signup.php:480 bp-core/bp-core-signup.php:484 -msgid "Invalid activation key" +#: bp-activity.php:285 +msgid "A member replies to an update or comment you've posted" msgstr "" -#: bp-core/bp-core-signup.php:527 -#, php-format -msgid "%s became a registered member" +#: bp-activity.php:366 +msgid "Activity deleted" msgstr "" -#: bp-core/bp-core-templatetags.php:184 -#, php-format -msgid "Viewing member %1$s to %2$s (of %3$s active members)" +#: bp-activity.php:368 +msgid "There was an error when deleting that activity" msgstr "" -#: bp-core/bp-core-templatetags.php:186 -#, php-format -msgid "Viewing member %1$s to %2$s (of %3$s members with friends)" +#: bp-activity.php:388 bp-themes/bp-default/_inc/ajax.php:124 +msgid "Please enter some content to post." msgstr "" -#: bp-core/bp-core-templatetags.php:188 -#, php-format -msgid "Viewing member %1$s to %2$s (of %3$s members online)" +#: bp-activity.php:403 +msgid "Update Posted!" msgstr "" -#: bp-core/bp-core-templatetags.php:190 -#, php-format -msgid "Viewing member %1$s to %2$s (of %3$s members)" +#: bp-activity.php:405 +msgid "There was an error when posting your update, please try again." msgstr "" -#: bp-core/bp-core-templatetags.php:314 -msgid "Member avatar" +#: bp-activity.php:424 bp-themes/bp-default/_inc/ajax.php:162 +msgid "Please do not leave the comment area blank." msgstr "" -#: bp-core/bp-core-templatetags.php:415 -#, php-format -msgid "registered %s ago" +#: bp-activity.php:435 +msgid "Reply Posted!" msgstr "" -#: bp-core/bp-core-templatetags.php:599 -msgid "Options" +#: bp-activity.php:437 bp-themes/bp-default/_inc/ajax.php:167 +#: bp-themes/bp-default/_inc/ajax.php:178 +msgid "There was an error posting that reply, please try again." msgstr "" -#: bp-core/bp-core-templatetags.php:742 bp-themes/bp-default/comments.php:120 -msgid "Name" +#: bp-activity.php:453 +msgid "Activity marked as favorite." msgstr "" -#: bp-core/bp-core-templatetags.php:752 -msgid "About Me" +#: bp-activity.php:455 +msgid "There was an error marking that activity as a favorite, please try again." msgstr "" -#: bp-core/bp-core-templatetags.php:762 bp-themes/bp-default/comments.php:130 -msgid "Website" +#: bp-activity.php:471 +msgid "Activity removed as favorite." msgstr "" -#: bp-core/bp-core-templatetags.php:772 -msgid "Jabber" +#: bp-activity.php:473 +msgid "There was an error removing that activity as a favorite, please try again." msgstr "" -#: bp-core/bp-core-templatetags.php:782 -msgid "AOL Messenger" +#: bp-activity.php:699 +msgid "%s posted an update:" msgstr "" -#: bp-core/bp-core-templatetags.php:792 -msgid "Yahoo Messenger" +#: bp-activity.php:752 +msgid "%s posted a new activity comment:" msgstr "" -#: bp-core/bp-core-templatetags.php:834 -#, php-format -msgid "%1$s at %2$s" +#: bp-activity.php:967 +msgid "Thumbnail" msgstr "" -#: bp-core/bp-core-templatetags.php:892 bp-groups.php:201 -#: bp-themes/bp-default/header.php:44 bp-themes/bp-default/header.php:48 -msgid "Home" +#: bp-activity.php:1195 +msgid "Posted an update" msgstr "" -#: bp-core/bp-core-templatetags.php:896 -msgid "Blog | " +#: bp-groups/bp-groups-templatetags.php:252 +msgid "Public Group" msgstr "" -#: bp-core/bp-core-templatetags.php:898 -msgid "Blog | Categories | " +#: bp-groups/bp-groups-templatetags.php:254 +msgid "Hidden Group" msgstr "" -#: bp-core/bp-core-templatetags.php:900 -msgid "Blog | Tags | " +#: bp-groups/bp-groups-templatetags.php:256 +msgid "Private Group" msgstr "" -#: bp-core/bp-core-templatetags.php:904 bp-themes/bp-default/attachment.php:9 -#: bp-themes/bp-default/search.php:10 -msgid "Blog" +#: bp-groups/bp-groups-templatetags.php:258 +msgid "Group" msgstr "" -#: bp-core/bp-core-templatetags.php:914 bp-core/bp-core-templatetags.php:916 -#, php-format -msgid "%s Directory" +#: bp-groups/bp-groups-templatetags.php:288 +#: bp-groups/bp-groups-templatetags.php:1718 +msgid "Group avatar" msgstr "" -#: bp-core/bp-core-templatetags.php:919 -#: bp-themes/bp-default/registration/register.php:14 -msgid "Create an Account" +#: bp-groups/bp-groups-templatetags.php:330 +msgid "not yet active" msgstr "" -#: bp-core/bp-core-templatetags.php:922 -#: bp-themes/bp-default/registration/activate.php:28 -msgid "Activate your Account" +#: bp-groups/bp-groups-templatetags.php:421 +msgid "Private" msgstr "" -#: bp-core/bp-core-templatetags.php:925 -#: bp-themes/bp-default/groups/create.php:7 -#: bp-themes/bp-default/groups/index.php:7 -msgid "Create a Group" +#: bp-groups/bp-groups-templatetags.php:476 +msgid "No Admins" msgstr "" -#: bp-core/bp-core-templatetags.php:1026 bp-core/bp-core-widgets.php:15 -#: bp-themes/bp-default/groups/single/admin.php:174 -#: bp-themes/bp-default/header.php:58 -msgid "Members" +#: bp-groups/bp-groups-templatetags.php:496 +msgid "No Mods" msgstr "" -#: bp-core/bp-core-templatetags.php:1032 bp-forums/bp-forums-admin.php:159 -#: bp-themes/bp-default/header.php:68 -msgid "Forums" +#: bp-groups/bp-groups-templatetags.php:517 +msgid "Filter Groups" msgstr "" -#: bp-core/bp-core-templatetags.php:1035 bp-themes/bp-default/header.php:75 -msgid "Blogs" +#: bp-groups/bp-groups-templatetags.php:565 +msgid "Viewing group %1$s to %2$s (of %3$s groups)" msgstr "" -#: bp-core/bp-core-templatetags.php:1213 -msgid "Your Avatar" +#: bp-groups/bp-groups-templatetags.php:594 +msgid "%s member" msgstr "" -#: bp-core/bp-core-templatetags.php:1286 -msgid "a user" +#: bp-groups/bp-groups-templatetags.php:596 +#: bp-themes/bp-default/members/single/groups/invites.php:11 +msgid "%s members" msgstr "" -#: bp-core/bp-core-widgets.php:34 bp-friends/bp-friends-templatetags.php:7 -#: bp-friends/bp-friends-templatetags.php:23 -#: bp-groups/bp-groups-widgets.php:32 bp-themes/bp-default/blogs/index.php:31 -#: bp-themes/bp-default/members/single/blogs.php:9 -msgid "Newest" +#: bp-groups/bp-groups-templatetags.php:635 +msgid "%d topic" msgstr "" -#: bp-core/bp-core-widgets.php:35 bp-groups/bp-groups-widgets.php:33 -msgid "Active" +#: bp-groups/bp-groups-templatetags.php:637 +msgid "%d topics" msgstr "" -#: bp-core/bp-core-widgets.php:39 bp-groups/bp-groups-widgets.php:34 -msgid "Popular" +#: bp-groups/bp-groups-templatetags.php:669 +#: bp-forums/bp-forums-templatetags.php:464 +msgid "%d post" msgstr "" -#: bp-core/bp-core-widgets.php:66 -msgid "No one has signed up yet!" +#: bp-groups/bp-groups-templatetags.php:671 +#: bp-forums/bp-forums-templatetags.php:466 +msgid "%d posts" msgstr "" -#: bp-core/bp-core-widgets.php:87 bp-core/bp-core-widgets.php:141 -#: bp-core/bp-core-widgets.php:195 -msgid "Max Members to show:" +#: bp-groups/bp-groups-templatetags.php:733 +#: bp-groups/bp-groups-templatetags.php:771 +msgid "Demote to Member" msgstr "" -#: bp-core/bp-core-widgets.php:96 -msgid "Who's Online Avatars" +#: bp-groups/bp-groups-templatetags.php:739 +#: bp-groups/bp-groups-templatetags.php:777 +#: bp-groups/bp-groups-templatetags.php:1490 +msgid "joined %s ago" msgstr "" -#: bp-core/bp-core-widgets.php:120 -msgid "There are no users currently online" +#: bp-groups/bp-groups-templatetags.php:752 +msgid "This group has no administrators" msgstr "" -#: bp-core/bp-core-widgets.php:150 -msgid "Recently Active Member Avatars" +#: bp-groups/bp-groups-templatetags.php:771 +#: bp-themes/bp-default/groups/single/admin.php:215 +msgid "Promote to Admin" msgstr "" -#: bp-core/bp-core-widgets.php:174 -msgid "There are no recently active members" +#: bp-groups/bp-groups-templatetags.php:790 +msgid "This group has no moderators" msgstr "" -#: bp-core/bp-core-widgets.php:249 -msgid "There were no members found, please try another filter." +#: bp-groups/bp-groups-templatetags.php:922 +msgid "Edit Details" msgstr "" -#: bp-forums.php:56 -msgid "The forums component has not been set up yet." +#: bp-groups/bp-groups-templatetags.php:929 +msgid "Group Settings" msgstr "" -#: bp-forums.php:76 bp-groups.php:554 -msgid "There was an error when creating the topic" +#: bp-groups/bp-groups-templatetags.php:930 +#: bp-groups/bp-groups-templatetags.php:1883 bp-groups.php:179 +msgid "Group Avatar" msgstr "" -#: bp-forums.php:78 bp-groups.php:556 -msgid "The topic was created successfully" +#: bp-groups/bp-groups-templatetags.php:931 +msgid "Manage Members" msgstr "" -#: bp-forums.php:82 -msgid "Please pick the group forum where you would like to post this topic." +#: bp-groups/bp-groups-templatetags.php:934 +msgid "Membership Requests" msgstr "" -#: bp-forums.php:103 bp-forums/bp-forums-admin.php:8 -msgid "Forums Setup" +#: bp-groups/bp-groups-templatetags.php:939 bp-groups.php:253 +#: bp-themes/bp-default/groups/single/admin.php:303 +msgid "Delete Group" msgstr "" -#: bp-forums/bp-forums-admin.php:12 -msgid "Settings Saved." +#: bp-groups/bp-groups-templatetags.php:1108 +#: bp-groups/bp-groups-templatetags.php:1109 +#: bp-themes/bp-default/forums/index.php:8 +msgid "New Topic" msgstr "" -#: bp-forums/bp-forums-admin.php:22 -#, php-format -msgid "" -"bbPress forum integration in BuddyPress has been set up correctly. If you " -"are having problems you can <a href=\"%s\" title=\"Reinstall bbPress\">re-" -"install</a>" +#: bp-groups/bp-groups-templatetags.php:1147 +#: bp-groups/bp-groups-templatetags.php:1148 +#: bp-themes/bp-default/_inc/ajax.php:407 +msgid "Leave Group" msgstr "" -#: bp-forums/bp-forums-admin.php:23 -msgid "" -"NOTE: The forums directory will only work if your bbPress tables are in the " -"same database as your WordPress tables. If you are not using an existing " -"bbPress install you can ignore this message." +#: bp-groups/bp-groups-templatetags.php:1170 +#: bp-groups/bp-groups-templatetags.php:1171 +#: bp-themes/bp-default/_inc/ajax.php:429 +msgid "Join Group" msgstr "" -#: bp-forums/bp-forums-admin.php:38 -msgid "" -"The bb-config.php file was not found at that location, please try again." +#: bp-groups/bp-groups-templatetags.php:1188 +#: bp-groups/bp-groups-templatetags.php:1189 bp-groups.php:209 +#: bp-themes/bp-default/_inc/ajax.php:431 +msgid "Request Membership" msgstr "" -#: bp-forums/bp-forums-admin.php:41 -msgid "Forums were set up correctly using your existing bbPress install!" +#: bp-groups/bp-groups-templatetags.php:1203 +#: bp-groups/bp-groups-templatetags.php:1204 +msgid "Request Sent" msgstr "" -#: bp-forums/bp-forums-admin.php:42 -msgid "" -"BuddyPress will now use its internal copy of bbPress to run the forums on " -"your site. If you wish, you can remove your old bbPress installation files, " -"as long as you keep the bb-config.php file in the same location." +#: bp-groups/bp-groups-templatetags.php:1225 +msgid "This is a private group and you must request group membership in order to join." msgstr "" -#: bp-forums/bp-forums-admin.php:47 -msgid "Existing bbPress Installation" +#: bp-groups/bp-groups-templatetags.php:1227 +msgid "This is a private group. To join you must be a registered site member and request group membership." msgstr "" -#: bp-forums/bp-forums-admin.php:48 -msgid "" -"BuddyPress can make use of your existing bbPress install. Just provide the " -"location of your <code>bb-config.php</code> file, and BuddyPress will do the " -"rest." +#: bp-groups/bp-groups-templatetags.php:1229 +msgid "This is a private group. Your membership request is awaiting approval from the group administrator." msgstr "" -#: bp-forums/bp-forums-admin.php:50 bp-forums/bp-forums-admin.php:78 -msgid "Complete Installation" +#: bp-groups/bp-groups-templatetags.php:1231 +msgid "This is a hidden group and only invited members can join." msgstr "" -#: bp-forums/bp-forums-admin.php:65 -msgid "" -"All done! Configuration settings have been saved to the file <code>bb-config." -"php</code> in the root of your WordPress install." +#: bp-groups/bp-groups-templatetags.php:1540 +msgid "Viewing members %1$s to %2$s (of %3$s members)" msgstr "" -#: bp-forums/bp-forums-admin.php:69 -msgid "" -"A configuration file could not be created. No problem, but you will need to " -"save the text shown below into a file named <code>bb-config.php</code> in " -"the root directory of your WordPress installation before you can start using " -"the forum functionality." +#: bp-groups/bp-groups-templatetags.php:1826 +#: bp-groups/bp-groups-templatetags.php:1845 +msgid "Recently Joined" msgstr "" -#: bp-forums/bp-forums-admin.php:75 -msgid "New bbPress Installation" +#: bp-groups/bp-groups-templatetags.php:1827 +#: bp-groups/bp-groups-templatetags.php:1848 +msgid "Most Popular" msgstr "" -#: bp-forums/bp-forums-admin.php:76 -msgid "" -"You've decided to set up a new installation of bbPress for forum management " -"in BuddyPress. This is very simple and is usually just a one click\n" -"\t\t\t\tprocess. When you're ready, hit the link below." +#: bp-groups/bp-groups-templatetags.php:1828 +#: bp-groups/bp-groups-templatetags.php:1851 +msgid "Administrator Of" msgstr "" -#: bp-forums/bp-forums-admin.php:86 -#, php-format -msgid "" -"bbPress files were not found. To install the forums component you must " -"download a copy of bbPress and make sure it is in the folder: \"%s\"" +#: bp-groups/bp-groups-templatetags.php:1829 +#: bp-groups/bp-groups-templatetags.php:1854 +msgid "Moderator Of" msgstr "" -#: bp-forums/bp-forums-admin.php:90 -msgid "" -"Forums in BuddyPress make use of a bbPress installation to function. You can " -"choose to either let BuddyPress set up a new bbPress install, or use an " -"already existing bbPress install. Please choose one of the options below." +#: bp-groups/bp-groups-templatetags.php:1885 +msgid "No Group Avatar" msgstr "" -#: bp-forums/bp-forums-admin.php:92 -msgid "Set up a new bbPress installation" +#: bp-groups/bp-groups-templatetags.php:2089 +msgid "requested %s ago" msgstr "" -#: bp-forums/bp-forums-admin.php:93 -msgid "Use an existing bbPress installation" +#: bp-groups/bp-groups-classes.php:730 +msgid "Group Mod" msgstr "" -#: bp-forums/bp-forums-templatetags.php:304 -#: bp-forums/bp-forums-templatetags.php:353 -#: bp-forums/bp-forums-templatetags.php:923 -msgid "Deleted User" +#: bp-groups/bp-groups-classes.php:736 bp-groups.php:1556 +msgid "Group Admin" msgstr "" -#: bp-forums/bp-forums-templatetags.php:464 -#: bp-groups/bp-groups-templatetags.php:669 -#, php-format -msgid "%d post" +#: bp-groups/bp-groups-notifications.php:8 +msgid "Group Details Updated" msgstr "" -#: bp-forums/bp-forums-templatetags.php:466 -#: bp-groups/bp-groups-templatetags.php:671 -#, php-format -msgid "%d posts" +#: bp-groups/bp-groups-notifications.php:22 +msgid "" +"Group details for the group \"%s\" were updated:\n" +"\n" +"To view the group: %s\n" +"\n" +"---------------------\n" msgstr "" -#: bp-forums/bp-forums-templatetags.php:563 -msgid "Edit Topic" +#: bp-groups/bp-groups-notifications.php:64 +msgid "Membership request for group: %s" msgstr "" -#: bp-forums/bp-forums-templatetags.php:567 -msgid "Sticky Topic" +#: bp-groups/bp-groups-notifications.php:66 +msgid "" +"%s wants to join the group \"%s\".\n" +"\n" +"Because you are the administrator of this group, you must either accept or reject the membership request.\n" +"\n" +"To view all pending membership requests for this group, please visit:\n" +"%s\n" +"\n" +"To view %s's profile: %s\n" +"\n" +"---------------------\n" msgstr "" -#: bp-forums/bp-forums-templatetags.php:569 -msgid "Un-stick Topic" +#: bp-groups/bp-groups-notifications.php:113 +msgid "Membership request for group \"%s\" accepted" msgstr "" -#: bp-forums/bp-forums-templatetags.php:572 -msgid "Open Topic" +#: bp-groups/bp-groups-notifications.php:114 +msgid "" +"Your membership request for the group \"%s\" has been accepted.\n" +"\n" +"To view the group please login and visit: %s\n" +"\n" +"---------------------\n" msgstr "" -#: bp-forums/bp-forums-templatetags.php:574 -msgid "Close Topic" +#: bp-groups/bp-groups-notifications.php:123 +msgid "Membership request for group \"%s\" rejected" msgstr "" -#: bp-forums/bp-forums-templatetags.php:576 -msgid "Delete Topic" +#: bp-groups/bp-groups-notifications.php:124 +msgid "" +"Your membership request for the group \"%s\" has been rejected.\n" +"\n" +"To submit another request please log in and visit: %s\n" +"\n" +"---------------------\n" msgstr "" -#: bp-forums/bp-forums-templatetags.php:682 -#, php-format -msgid " matching tag \"%s\"" +#: bp-groups/bp-groups-notifications.php:147 +msgid "an administrator" msgstr "" -#: bp-forums/bp-forums-templatetags.php:684 -#, php-format -msgid "Viewing topic %1$s to %2$s (%3$s total topics%4$s)" -msgstr "" - -#: bp-forums/bp-forums-templatetags.php:975 -#: bp-themes/bp-default/functions.php:91 bp-xprofile/bp-xprofile-admin.php:67 -#: bp-xprofile/bp-xprofile-admin.php:94 -msgid "Edit" +#: bp-groups/bp-groups-notifications.php:150 +msgid "a moderator" msgstr "" -#: bp-forums/bp-forums-templatetags.php:1008 -#, php-format -msgid "Viewing post %1$s to %2$s (%3$s total posts)" +#: bp-groups/bp-groups-notifications.php:169 +msgid "You have been promoted in the group: \"%s\"" msgstr "" -#: bp-friends.php:70 -#, php-format -msgid "Friends <span>(%d)</span>" +#: bp-groups/bp-groups-notifications.php:171 +msgid "" +"You have been promoted to %s for the group: \"%s\".\n" +"\n" +"To view the group please visit: %s\n" +"\n" +"---------------------\n" msgstr "" -#: bp-friends.php:75 bp-friends.php:80 bp-friends.php:320 -#: bp-friends/bp-friends-templatetags.php:40 -msgid "My Friends" +#: bp-groups/bp-groups-notifications.php:217 +msgid "You have an invitation to the group: \"%s\"" msgstr "" -#: bp-friends.php:76 -msgid "Requests" +#: bp-groups/bp-groups-notifications.php:219 +msgid "" +"One of your friends %s has invited you to the group: \"%s\".\n" +"\n" +"To view your group invites visit: %s\n" +"\n" +"To view the group visit: %s\n" +"\n" +"To view %s's profile visit: %s\n" +"\n" +"---------------------\n" msgstr "" -#: bp-friends.php:118 -msgid "Friendship accepted" +#: bp-groups/bp-groups-notifications.php:277 +msgid "%s mentioned you in the group \"%s\"" msgstr "" -#: bp-friends.php:120 -msgid "Friendship could not be accepted" +#: bp-groups/bp-groups-notifications.php:279 +msgid "" +"%s mentioned you in the group \"%s\":\n" +"\n" +"\"%s\"\n" +"\n" +"To view and respond to the message, log in and visit: %s\n" +"\n" +"---------------------\n" msgstr "" -#: bp-friends.php:129 -msgid "Friendship rejected" +#: bp-groups/bp-groups-widgets.php:58 +msgid "There are no groups to display." msgstr "" -#: bp-friends.php:131 -msgid "Friendship could not be rejected" +#: bp-groups/bp-groups-widgets.php:79 +msgid "Max groups to show:" msgstr "" -#: bp-friends.php:159 -msgid "A member sends you a friendship request" +#: bp-groups/bp-groups-widgets.php:117 +msgid "created %s ago" msgstr "" -#: bp-friends.php:165 -msgid "A member accepts your friendship request" +#: bp-groups/bp-groups-widgets.php:136 +msgid "No groups matched the current filter." msgstr "" -#: bp-friends.php:208 bp-themes/bp-default/_inc/ajax.php:351 -msgid "Friendship could not be requested." +#: bp-xprofile/bp-xprofile-classes.php:158 +msgid "Please make sure you give the group a name." msgstr "" -#: bp-friends.php:210 -msgid "Friendship requested" +#: bp-xprofile/bp-xprofile-classes.php:171 +#: bp-xprofile/bp-xprofile-admin.php:124 +msgid "Add New Field Group" msgstr "" -#: bp-friends.php:213 -msgid "You are already friends with this user" +#: bp-xprofile/bp-xprofile-classes.php:174 +msgid "Edit Field Group" msgstr "" -#: bp-friends.php:215 -msgid "You already have a pending friendship request with this user" +#: bp-xprofile/bp-xprofile-classes.php:195 +msgid "Field Group Name" msgstr "" -#: bp-friends.php:246 bp-themes/bp-default/_inc/ajax.php:341 -msgid "Friendship could not be canceled." +#: bp-xprofile/bp-xprofile-classes.php:494 +msgid "Please enter options for this Field:" msgstr "" -#: bp-friends.php:248 -msgid "Friendship canceled" +#: bp-xprofile/bp-xprofile-classes.php:495 +#: bp-themes/bp-default/members/index.php:28 +#: bp-themes/bp-default/members/single/friends.php:9 +#: bp-themes/bp-default/members/single/groups.php:10 +#: bp-themes/bp-default/members/single/blogs.php:6 +#: bp-themes/bp-default/blogs/index.php:28 +#: bp-themes/bp-default/forums/index.php:91 +#: bp-themes/bp-default/groups/index.php:27 +msgid "Order By:" msgstr "" -#: bp-friends.php:251 -msgid "You are not yet friends with this user" +#: bp-xprofile/bp-xprofile-classes.php:498 +msgid "Order Entered" msgstr "" -#: bp-friends.php:253 -msgid "You have a pending friendship request with this user" +#: bp-xprofile/bp-xprofile-classes.php:499 +msgid "Name - Ascending" msgstr "" -#: bp-friends.php:308 -msgid "New friendship created" +#: bp-xprofile/bp-xprofile-classes.php:500 +msgid "Name - Descending" msgstr "" -#: bp-friends.php:320 -#, php-format -msgid "%d friends accepted your friendship requests" +#: bp-xprofile/bp-xprofile-classes.php:529 +#: bp-xprofile/bp-xprofile-classes.php:550 +msgid "Option" msgstr "" -#: bp-friends.php:324 bp-friends/bp-friends-notifications.php:62 -#, php-format -msgid "%s accepted your friendship request" +#: bp-xprofile/bp-xprofile-classes.php:531 +#: bp-xprofile/bp-xprofile-classes.php:551 +msgid "Default Value" msgstr "" -#: bp-friends.php:330 bp-friends.php:334 -msgid "Friendship requests" +#: bp-xprofile/bp-xprofile-classes.php:557 +msgid "Add Another Option" msgstr "" -#: bp-friends.php:330 -#, php-format -msgid "You have %d pending friendship requests" +#: bp-xprofile/bp-xprofile-classes.php:565 +msgid "Add Field" msgstr "" -#: bp-friends.php:334 -#, php-format -msgid "You have a friendship request from %s" +#: bp-xprofile/bp-xprofile-classes.php:574 +msgid "Edit Field" msgstr "" -#: bp-friends.php:433 bp-friends.php:442 -#, php-format -msgid "%s and %s are now friends" +#: bp-xprofile/bp-xprofile-classes.php:595 +msgid "Field Title" msgstr "" -#: bp-friends/bp-friends-notifications.php:22 -#, php-format -msgid "New friendship request from %s" +#: bp-xprofile/bp-xprofile-classes.php:602 +msgid "Field Description" msgstr "" -#: bp-friends/bp-friends-notifications.php:25 -#, php-format -msgid "" -"%s wants to add you as a friend.\n" -"\n" -"To view all of your pending friendship requests: %s\n" -"\n" -"To view %s's profile: %s\n" -"\n" -"---------------------\n" +#: bp-xprofile/bp-xprofile-classes.php:609 +msgid "Is This Field Required?" msgstr "" -#: bp-friends/bp-friends-notifications.php:65 -#, php-format -msgid "" -"%s accepted your friend request.\n" -"\n" -"To view %s's profile: %s\n" -"\n" -"---------------------\n" +#: bp-xprofile/bp-xprofile-classes.php:611 +msgid "Not Required" msgstr "" -#: bp-friends/bp-friends-templatetags.php:6 -#: bp-friends/bp-friends-templatetags.php:20 -#: bp-groups/bp-groups-templatetags.php:1825 -#: bp-groups/bp-groups-templatetags.php:1842 -msgid "Recently Active" +#: bp-xprofile/bp-xprofile-classes.php:612 +msgid "Required" msgstr "" -#: bp-friends/bp-friends-templatetags.php:8 -#: bp-friends/bp-friends-templatetags.php:26 -#: bp-groups/bp-groups-templatetags.php:1830 -#: bp-groups/bp-groups-templatetags.php:1857 -msgid "Alphabetically" +#: bp-xprofile/bp-xprofile-classes.php:617 bp-xprofile/bp-xprofile-admin.php:74 +msgid "Field Type" msgstr "" -#: bp-friends/bp-friends-templatetags.php:40 -#, php-format -msgid "%s's Friends" +#: bp-xprofile/bp-xprofile-classes.php:619 +msgid "Text Box" msgstr "" -#: bp-friends/bp-friends-templatetags.php:40 -msgid "See All" +#: bp-xprofile/bp-xprofile-classes.php:620 +msgid "Multi-line Text Box" msgstr "" -#: bp-friends/bp-friends-templatetags.php:53 -msgid "You haven't added any friend connections yet." +#: bp-xprofile/bp-xprofile-classes.php:621 +msgid "Date Selector" msgstr "" -#: bp-friends/bp-friends-templatetags.php:53 -#, php-format -msgid "%s hasn't created any friend connections yet." +#: bp-xprofile/bp-xprofile-classes.php:622 +msgid "Radio Buttons" msgstr "" -#: bp-friends/bp-friends-templatetags.php:93 -msgid "There aren't enough site members to show a random sample just yet." +#: bp-xprofile/bp-xprofile-classes.php:623 +msgid "Drop Down Select Box" msgstr "" -#: bp-friends/bp-friends-templatetags.php:103 -msgid "Filter Friends" +#: bp-xprofile/bp-xprofile-classes.php:624 +msgid "Multi Select Box" msgstr "" -#: bp-friends/bp-friends-templatetags.php:138 -#, php-format -msgid "%d friend" +#: bp-xprofile/bp-xprofile-classes.php:625 +msgid "Checkboxes" msgstr "" -#: bp-friends/bp-friends-templatetags.php:140 -#, php-format -msgid "%d friends" +#: bp-xprofile/bp-xprofile-classes.php:632 +msgid "Save" msgstr "" -#: bp-friends/bp-friends-templatetags.php:224 -#: bp-friends/bp-friends-templatetags.php:225 -#: bp-themes/bp-default/_inc/ajax.php:353 -msgid "Friendship Requested" +#: bp-xprofile/bp-xprofile-classes.php:633 +msgid "or" msgstr "" -#: bp-friends/bp-friends-templatetags.php:239 -#: bp-friends/bp-friends-templatetags.php:240 -msgid "Cancel Friendship" +#: bp-xprofile/bp-xprofile-classes.php:633 +#: bp-themes/bp-default/forums/index.php:59 +msgid "Cancel" msgstr "" -#: bp-friends/bp-friends-templatetags.php:257 -#: bp-friends/bp-friends-templatetags.php:258 -#: bp-themes/bp-default/_inc/ajax.php:343 -msgid "Add Friend" +#: bp-xprofile/bp-xprofile-classes.php:655 +msgid "Please make sure you fill out all required fields." msgstr "" -#: bp-groups.php:91 -msgid "Details" +#: bp-xprofile/bp-xprofile-classes.php:658 +msgid "Radio button field types require at least one option. Please add options below." msgstr "" -#: bp-groups.php:97 bp-groups.php:154 -msgid "Invites" +#: bp-xprofile/bp-xprofile-classes.php:661 +#: bp-xprofile/bp-xprofile-classes.php:664 +msgid "Select box field types require at least one option. Please add options below." msgstr "" -#: bp-groups.php:148 -#, php-format -msgid "Groups <span>(%d)</span>" +#: bp-xprofile/bp-xprofile-classes.php:667 +msgid "Checkbox field types require at least one option. Please add options below." msgstr "" -#: bp-groups.php:153 bp-groups.php:160 -msgid "My Groups" +#: bp-xprofile/bp-xprofile-admin.php:38 bp-xprofile.php:148 +msgid "Profile Field Setup" msgstr "" -#: bp-groups.php:179 bp-groups/bp-groups-templatetags.php:930 -#: bp-groups/bp-groups-templatetags.php:1883 -msgid "Group Avatar" +#: bp-xprofile/bp-xprofile-admin.php:40 +msgid "Your users will distinguish themselves through their profile page. You must give them profile fields that allow them to describe themselves in a way that is relevant to the theme of your social network." msgstr "" -#: bp-groups.php:205 -msgid "Admin" +#: bp-xprofile/bp-xprofile-admin.php:41 +msgid "NOTE: Any fields in the first group will appear on the signup page." msgstr "" -#: bp-groups.php:209 bp-groups/bp-groups-templatetags.php:1188 -#: bp-groups/bp-groups-templatetags.php:1189 -#: bp-themes/bp-default/_inc/ajax.php:431 -msgid "Request Membership" +#: bp-xprofile/bp-xprofile-admin.php:67 bp-xprofile/bp-xprofile-admin.php:94 +#: bp-forums/bp-forums-templatetags.php:977 +#: bp-themes/bp-default/functions.php:91 +msgid "Edit" msgstr "" -#: bp-groups.php:212 -msgid "Forum" +#: bp-xprofile/bp-xprofile-admin.php:68 bp-xprofile/bp-xprofile-admin.php:95 +#: bp-forums/bp-forums-templatetags.php:978 +#: bp-themes/bp-default/_inc/ajax.php:192 +#: bp-activity/bp-activity-templatetags.php:668 +#: bp-activity/bp-activity-templatetags.php:801 +msgid "Delete" msgstr "" -#: bp-groups.php:214 -#, php-format -msgid "Members (%s)" +#: bp-xprofile/bp-xprofile-admin.php:73 +msgid "Field Name" msgstr "" -#: bp-groups.php:218 bp-themes/bp-default/groups/single/send-invites.php:60 -msgid "Send Invites" +#: bp-xprofile/bp-xprofile-admin.php:75 +msgid "Required?" msgstr "" -#: bp-groups.php:250 bp-xprofile.php:213 -msgid "Admin Options" +#: bp-xprofile/bp-xprofile-admin.php:76 +msgid "Action" msgstr "" -#: bp-groups.php:253 bp-groups/bp-groups-templatetags.php:939 -#: bp-themes/bp-default/groups/single/admin.php:303 -msgid "Delete Group" +#: bp-xprofile/bp-xprofile-admin.php:90 +msgid "Drag" msgstr "" -#: bp-groups.php:298 -msgid "Group invite could not be accepted" +#: bp-xprofile/bp-xprofile-admin.php:91 +msgid "(Core Field)" msgstr "" -#: bp-groups.php:300 -msgid "Group invite accepted" +#: bp-xprofile/bp-xprofile-admin.php:103 +msgid "There are no fields in this group." msgstr "" -#: bp-groups.php:306 bp-groups.php:1774 bp-groups.php:2479 -#, php-format -msgid "%s joined the group %s" +#: bp-xprofile/bp-xprofile-admin.php:113 +msgid "Add New Field" msgstr "" -#: bp-groups.php:320 -msgid "Group invite could not be rejected" +#: bp-xprofile/bp-xprofile-admin.php:128 +msgid "You have no groups." msgstr "" -#: bp-groups.php:322 -msgid "Group invite rejected" +#: bp-xprofile/bp-xprofile-admin.php:129 +msgid "Add New Group" msgstr "" -#: bp-groups.php:376 -msgid "There was an error when replying to that topic" +#: bp-xprofile/bp-xprofile-admin.php:157 +msgid "There was an error saving the group. Please try again" msgstr "" -#: bp-groups.php:378 -msgid "Your reply was posted successfully" +#: bp-xprofile/bp-xprofile-admin.php:160 +msgid "The group was saved successfully." msgstr "" -#: bp-groups.php:392 -msgid "There was an error when making that topic a sticky" +#: bp-xprofile/bp-xprofile-admin.php:189 +msgid "There was an error deleting the group. Please try again" msgstr "" -#: bp-groups.php:394 -msgid "The topic was made sticky successfully" +#: bp-xprofile/bp-xprofile-admin.php:192 +msgid "The group was deleted successfully." msgstr "" -#: bp-groups.php:406 -msgid "There was an error when unsticking that topic" +#: bp-xprofile/bp-xprofile-admin.php:231 +msgid "There was an error saving the field. Please try again" msgstr "" -#: bp-groups.php:408 -msgid "The topic was unstuck successfully" +#: bp-xprofile/bp-xprofile-admin.php:237 +msgid "The field was saved successfully." msgstr "" -#: bp-groups.php:420 -msgid "There was an error when closing that topic" +#: bp-xprofile/bp-xprofile-admin.php:265 +msgid "field" msgstr "" -#: bp-groups.php:422 -msgid "The topic was closed successfully" +#: bp-xprofile/bp-xprofile-admin.php:267 +msgid "option" msgstr "" -#: bp-groups.php:434 -msgid "There was an error when opening that topic" +#: bp-xprofile/bp-xprofile-admin.php:273 +msgid "There was an error deleting the %s. Please try again" msgstr "" -#: bp-groups.php:436 -msgid "The topic was opened successfully" +#: bp-xprofile/bp-xprofile-admin.php:276 +msgid "The %s was deleted successfully!" msgstr "" -#: bp-groups.php:455 -msgid "There was an error deleting the topic" +#: bp-xprofile/bp-xprofile-templatetags.php:490 +msgid "January" msgstr "" -#: bp-groups.php:457 -msgid "The topic was deleted successfully" +#: bp-xprofile/bp-xprofile-templatetags.php:490 +msgid "February" msgstr "" -#: bp-groups.php:477 -msgid "There was an error when editing that topic" +#: bp-xprofile/bp-xprofile-templatetags.php:490 +msgid "March" msgstr "" -#: bp-groups.php:479 -msgid "The topic was edited successfully" +#: bp-xprofile/bp-xprofile-templatetags.php:491 +msgid "April" msgstr "" -#: bp-groups.php:501 -msgid "There was an error deleting that post" +#: bp-xprofile/bp-xprofile-templatetags.php:491 +msgid "May" msgstr "" -#: bp-groups.php:503 -msgid "The post was deleted successfully" +#: bp-xprofile/bp-xprofile-templatetags.php:491 +msgid "June" msgstr "" -#: bp-groups.php:523 -msgid "There was an error when editing that post" +#: bp-xprofile/bp-xprofile-templatetags.php:492 +msgid "July" msgstr "" -#: bp-groups.php:525 -msgid "The post was edited successfully" +#: bp-xprofile/bp-xprofile-templatetags.php:492 +msgid "August" msgstr "" -#: bp-groups.php:592 -msgid "Group invites sent." +#: bp-xprofile/bp-xprofile-templatetags.php:492 +msgid "September" msgstr "" -#: bp-groups.php:618 -msgid "" -"There was an error sending your group membership request, please try again." +#: bp-xprofile/bp-xprofile-templatetags.php:493 +msgid "October" msgstr "" -#: bp-groups.php:620 -msgid "" -"Your membership request was sent to the group administrator successfully. " -"You will be notified when the group administrator responds to your request." +#: bp-xprofile/bp-xprofile-templatetags.php:493 +msgid "November" msgstr "" -#: bp-groups.php:669 -msgid "There was an error updating group details, please try again." +#: bp-xprofile/bp-xprofile-templatetags.php:493 +msgid "December" msgstr "" -#: bp-groups.php:671 -msgid "Group details were successfully updated." +#: bp-xprofile/bp-xprofile-templatetags.php:634 +msgid "Avatar uploads are currently disabled. Why not use a <a href=\"http://gravatar.com\" target=\"_blank\">gravatar</a> instead?" msgstr "" -#: bp-groups.php:707 -msgid "There was an error updating group settings, please try again." +#: bp-xprofile/bp-xprofile-templatetags.php:643 +msgid "Profile not recently updated" msgstr "" -#: bp-groups.php:709 -msgid "Group settings were successfully updated." +#: bp-xprofile/bp-xprofile-templatetags.php:654 +msgid "Profile updated %s ago" msgstr "" -#: bp-groups.php:739 bp-xprofile.php:433 -msgid "Your avatar was deleted successfully!" +#: bp-xprofile/bp-xprofile-templatetags.php:697 +#: bp-xprofile/bp-xprofile-templatetags.php:698 bp-xprofile.php:178 +msgid "Edit Profile" msgstr "" -#: bp-groups.php:741 bp-xprofile.php:435 -msgid "There was a problem deleting that avatar, please try again." +#: bp-forums/bp-forums-templatetags.php:304 +#: bp-forums/bp-forums-templatetags.php:353 +#: bp-forums/bp-forums-templatetags.php:923 +msgid "Deleted User" msgstr "" -#: bp-groups.php:769 -msgid "There was a problem cropping the avatar, please try uploading it again" +#: bp-forums/bp-forums-templatetags.php:563 +msgid "Edit Topic" msgstr "" -#: bp-groups.php:771 -msgid "The new group avatar was uploaded successfully!" +#: bp-forums/bp-forums-templatetags.php:567 +msgid "Sticky Topic" msgstr "" -#: bp-groups.php:800 -msgid "There was an error when promoting that user, please try again" +#: bp-forums/bp-forums-templatetags.php:569 +msgid "Un-stick Topic" msgstr "" -#: bp-groups.php:802 -msgid "User promoted successfully" +#: bp-forums/bp-forums-templatetags.php:572 +msgid "Open Topic" msgstr "" -#: bp-groups.php:818 -msgid "There was an error when demoting that user, please try again" +#: bp-forums/bp-forums-templatetags.php:574 +msgid "Close Topic" msgstr "" -#: bp-groups.php:820 -msgid "User demoted successfully" +#: bp-forums/bp-forums-templatetags.php:576 +msgid "Delete Topic" msgstr "" -#: bp-groups.php:836 -msgid "There was an error when banning that user, please try again" +#: bp-forums/bp-forums-templatetags.php:682 +msgid " matching tag \"%s\"" msgstr "" -#: bp-groups.php:838 -msgid "User banned successfully" +#: bp-forums/bp-forums-templatetags.php:684 +msgid "Viewing topic %1$s to %2$s (%3$s total topics%4$s)" msgstr "" -#: bp-groups.php:854 -msgid "There was an error when unbanning that user, please try again" +#: bp-forums/bp-forums-templatetags.php:1010 +msgid "Viewing post %1$s to %2$s (%3$s total posts)" msgstr "" -#: bp-groups.php:856 -msgid "User ban removed successfully" +#: bp-forums/bp-forums-admin.php:12 +msgid "Settings Saved." msgstr "" -#: bp-groups.php:872 -msgid "There was an error removing that user from the group, please try again" +#: bp-forums/bp-forums-admin.php:22 +msgid "bbPress forum integration in BuddyPress has been set up correctly. If you are having problems you can <a href=\"%s\" title=\"Reinstall bbPress\">re-install</a>" msgstr "" -#: bp-groups.php:874 -msgid "User removed successfully" +#: bp-forums/bp-forums-admin.php:23 +msgid "NOTE: The forums directory will only work if your bbPress tables are in the same database as your WordPress tables. If you are not using an existing bbPress install you can ignore this message." msgstr "" -#: bp-groups.php:915 -msgid "There was an error accepting the membership request, please try again." +#: bp-forums/bp-forums-admin.php:38 +msgid "The bb-config.php file was not found at that location, please try again." msgstr "" -#: bp-groups.php:917 -msgid "Group membership request accepted" +#: bp-forums/bp-forums-admin.php:41 +msgid "Forums were set up correctly using your existing bbPress install!" msgstr "" -#: bp-groups.php:927 -msgid "There was an error rejecting the membership request, please try again." +#: bp-forums/bp-forums-admin.php:42 +msgid "BuddyPress will now use its internal copy of bbPress to run the forums on your site. If you wish, you can remove your old bbPress installation files, as long as you keep the bb-config.php file in the same location." msgstr "" -#: bp-groups.php:929 -msgid "Group membership request rejected" +#: bp-forums/bp-forums-admin.php:47 +msgid "Existing bbPress Installation" msgstr "" -#: bp-groups.php:961 -msgid "There was an error deleting the group, please try again." +#: bp-forums/bp-forums-admin.php:48 +msgid "BuddyPress can make use of your existing bbPress install. Just provide the location of your <code>bb-config.php</code> file, and BuddyPress will do the rest." msgstr "" -#: bp-groups.php:963 -msgid "The group was deleted successfully" +#: bp-forums/bp-forums-admin.php:50 bp-forums/bp-forums-admin.php:78 +msgid "Complete Installation" msgstr "" -#: bp-groups.php:995 -msgid "A member invites you to join a group" +#: bp-forums/bp-forums-admin.php:65 +msgid "All done! Configuration settings have been saved to the file <code>bb-config.php</code> in the root of your WordPress install." msgstr "" -#: bp-groups.php:1001 -msgid "Group information is updated" +#. Just write the contents to screen + +#: bp-forums/bp-forums-admin.php:69 +msgid "A configuration file could not be created. No problem, but you will need to save the text shown below into a file named <code>bb-config.php</code> in the root directory of your WordPress installation before you can start using the forum functionality." msgstr "" -#: bp-groups.php:1007 -msgid "You are promoted to a group administrator or moderator" +#: bp-forums/bp-forums-admin.php:75 +msgid "New bbPress Installation" msgstr "" -#: bp-groups.php:1013 -msgid "A member requests to join a private group for which you are an admin" +#: bp-forums/bp-forums-admin.php:76 +msgid "" +"You've decided to set up a new installation of bbPress for forum management in BuddyPress. This is very simple and is usually just a one click\n" +"\t\t\t\tprocess. When you're ready, hit the link below." msgstr "" -#: bp-groups.php:1062 -msgid "There was an error saving group details. Please try again." +#: bp-forums/bp-forums-admin.php:86 +msgid "bbPress files were not found. To install the forums component you must download a copy of bbPress and make sure it is in the folder: \"%s\"" msgstr "" -#: bp-groups.php:1084 -msgid "Please fill in all of the required fields" +#: bp-forums/bp-forums-admin.php:90 +msgid "Forums in BuddyPress make use of a bbPress installation to function. You can choose to either let BuddyPress set up a new bbPress install, or use an already existing bbPress install. Please choose one of the options below." msgstr "" -#: bp-groups.php:1089 bp-groups.php:1116 -msgid "There was an error saving group details, please try again." +#: bp-forums/bp-forums-admin.php:92 +msgid "Set up a new bbPress installation" msgstr "" -#: bp-groups.php:1147 -#, php-format -msgid "%s created the group %s" +#: bp-forums/bp-forums-admin.php:93 +msgid "Use an existing bbPress installation" msgstr "" -#: bp-groups.php:1195 -msgid "There was an error saving the group avatar, please try uploading again." +#: bp-xprofile.php:179 +#: bp-themes/bp-default/members/single/profile/change-avatar.php:1 +msgid "Change Avatar" msgstr "" -#: bp-groups.php:1197 -msgid "The group avatar was uploaded successfully!" +#: bp-xprofile.php:213 bp-groups.php:250 +msgid "Admin Options" msgstr "" -#: bp-groups.php:1221 bp-groups.php:1228 -msgid "There was an error joining the group." +#: bp-xprofile.php:216 +msgid "Edit %s's Profile" msgstr "" -#: bp-groups.php:1230 -msgid "You joined the group!" +#: bp-xprofile.php:217 +msgid "Edit %s's Avatar" msgstr "" -#: bp-groups.php:1253 -msgid "There was an error leaving the group." +#: bp-xprofile.php:220 +msgid "Mark as Spammer" msgstr "" -#: bp-groups.php:1255 bp-groups.php:1732 -msgid "You successfully left the group." +#: bp-xprofile.php:222 +msgid "Not a Spammer" msgstr "" -#: bp-groups.php:1333 -msgid "Created a group" +#: bp-xprofile.php:225 +msgid "Delete %s" msgstr "" -#: bp-groups.php:1334 -msgid "Joined a group" +#: bp-xprofile.php:318 +msgid "Please make sure you fill in all required fields in this profile field group before saving." msgstr "" -#: bp-groups.php:1335 -msgid "New group forum topic" +#: bp-xprofile.php:335 +msgid "There was a problem updating some of your profile information, please try again." msgstr "" -#: bp-groups.php:1336 -msgid "New group forum post" +#: bp-xprofile.php:337 +msgid "Changes saved." msgstr "" -#: bp-groups.php:1396 -msgid "Group Membership Requests" +#: bp-xprofile.php:388 +msgid "Your new avatar was uploaded successfully!" msgstr "" -#: bp-groups.php:1396 -#, php-format -msgid "%d new membership requests for the group \"%s\"" +#: bp-xprofile.php:433 bp-groups.php:739 +msgid "Your avatar was deleted successfully!" msgstr "" -#: bp-groups.php:1399 -#, php-format -msgid "%s requests membership for the group \"%s\"" +#: bp-xprofile.php:435 bp-groups.php:741 +msgid "There was a problem deleting that avatar, please try again." msgstr "" -#: bp-groups.php:1410 -#, php-format -msgid "%d accepted group membership requests" +#: bp-xprofile.php:455 +msgid "New member registered" msgstr "" -#: bp-groups.php:1412 -#, php-format -msgid "Membership for group \"%s\" accepted" +#: bp-xprofile.php:456 +msgid "Updated Profile" msgstr "" -#: bp-groups.php:1423 -#, php-format -msgid "%d rejected group membership requests" +#: bp-messages/bp-messages-classes.php:193 +msgid " Recipients" msgstr "" -#: bp-groups.php:1425 -#, php-format -msgid "Membership for group \"%s\" rejected" +#: bp-messages/bp-messages-templatetags.php:335 +msgid "Viewing message %1$s to %2$s (of %3$s messages)" msgstr "" -#: bp-groups.php:1436 -#, php-format -msgid "You were promoted to an admin in %d groups" +#: bp-messages/bp-messages-templatetags.php:376 +msgid "Select:" msgstr "" -#: bp-groups.php:1438 -#, php-format -msgid "You were promoted to an admin in the group %s" +#: bp-messages/bp-messages-templatetags.php:379 +msgid "Read" msgstr "" -#: bp-groups.php:1449 -#, php-format -msgid "You were promoted to a mod in %d groups" +#: bp-messages/bp-messages-templatetags.php:380 +msgid "Unread" msgstr "" -#: bp-groups.php:1451 -#, php-format -msgid "You were promoted to a mod in the group %s" +#: bp-messages/bp-messages-templatetags.php:381 +msgid "All" msgstr "" -#: bp-groups.php:1462 bp-groups.php:1464 -msgid "Group Invites" +#: bp-messages/bp-messages-templatetags.php:384 +msgid "Mark as Read" msgstr "" -#: bp-groups.php:1462 -#, php-format -msgid "You have %d new group invitations" +#: bp-messages/bp-messages-templatetags.php:385 +msgid "Mark as Unread" msgstr "" -#: bp-groups.php:1464 -#, php-format -msgid "You have an invitation to the group: %s" +#: bp-messages/bp-messages-templatetags.php:387 +msgid "Delete Selected" msgstr "" -#: bp-groups.php:1556 bp-groups/bp-groups-classes.php:736 -msgid "Group Admin" +#: bp-messages/bp-messages-templatetags.php:396 +msgid "Currently Active" msgstr "" -#: bp-groups.php:1709 -msgid "As the only Admin, you cannot leave the group." +#: bp-messages/bp-messages-templatetags.php:463 +msgid "Deactivate" msgstr "" -#: bp-groups.php:1962 -#, php-format -msgid "%s posted an update in the group %s:" +#: bp-messages/bp-messages-templatetags.php:465 +#: bp-themes/bp-default/registration/activate.php:40 +msgid "Activate" msgstr "" -#: bp-groups.php:2033 bp-groups.php:2138 -#, php-format -msgid "%s posted on the forum topic %s in the group %s:" +#: bp-messages/bp-messages-templatetags.php:490 +#: bp-themes/bp-default/functions.php:32 +msgid "Close" msgstr "" -#: bp-groups.php:2072 bp-groups.php:2104 -#, php-format -msgid "%s started the forum topic %s in the group %s:" +#: bp-messages/bp-messages-templatetags.php:535 +msgid "Send a private message to this user." msgstr "" -#: bp-groups/bp-groups-classes.php:730 -msgid "Group Mod" +#: bp-messages/bp-messages-templatetags.php:536 +msgid "Send Private Message" msgstr "" -#: bp-groups/bp-groups-notifications.php:8 -msgid "Group Details Updated" +#: bp-messages/bp-messages-templatetags.php:708 +msgid "%d Recipients" msgstr "" -#: bp-groups/bp-groups-notifications.php:23 -#, php-format -msgid "" -"Group details for the group \"%s\" were updated:\n" -"\n" -"To view the group: %s\n" -"\n" -"---------------------\n" +#: bp-messages/bp-messages-templatetags.php:774 +#: bp-themes/bp-default/_inc/ajax.php:468 +msgid "Sent %s ago" msgstr "" -#: bp-groups/bp-groups-notifications.php:64 -#, php-format -msgid "Membership request for group: %s" +#: bp-messages/bp-messages-notifications.php:23 +msgid "New message from %s" msgstr "" -#: bp-groups/bp-groups-notifications.php:67 -#, php-format +#: bp-messages/bp-messages-notifications.php:25 msgid "" -"%s wants to join the group \"%s\".\n" +"%s sent you a new message:\n" "\n" -"Because you are the administrator of this group, you must either accept or " -"reject the membership request.\n" +"Subject: %s\n" "\n" -"To view all pending membership requests for this group, please visit:\n" -"%s\n" +"\"%s\"\n" "\n" -"To view %s's profile: %s\n" +"To view and read your messages please log in and visit: %s\n" "\n" "---------------------\n" msgstr "" -#: bp-groups/bp-groups-notifications.php:113 -#, php-format -msgid "Membership request for group \"%s\" accepted" +#: bp-groups.php:91 +msgid "Details" msgstr "" -#: bp-groups/bp-groups-notifications.php:115 -#, php-format -msgid "" -"Your membership request for the group \"%s\" has been accepted.\n" -"\n" -"To view the group please login and visit: %s\n" -"\n" -"---------------------\n" +#: bp-groups.php:93 bp-activity/bp-activity-templatetags.php:430 +#: bp-activity/bp-activity-templatetags.php:476 +msgid "Avatar" msgstr "" -#: bp-groups/bp-groups-notifications.php:123 -#, php-format -msgid "Membership request for group \"%s\" rejected" +#: bp-groups.php:97 bp-groups.php:154 +msgid "Invites" msgstr "" -#: bp-groups/bp-groups-notifications.php:125 -#, php-format -msgid "" -"Your membership request for the group \"%s\" has been rejected.\n" -"\n" -"To submit another request please log in and visit: %s\n" -"\n" -"---------------------\n" +#: bp-groups.php:148 +msgid "Groups <span>(%d)</span>" msgstr "" -#: bp-groups/bp-groups-notifications.php:147 -msgid "an administrator" +#: bp-groups.php:153 bp-groups.php:160 +msgid "My Groups" msgstr "" -#: bp-groups/bp-groups-notifications.php:150 -msgid "a moderator" +#: bp-groups.php:205 +msgid "Admin" msgstr "" -#: bp-groups/bp-groups-notifications.php:169 -#, php-format -msgid "You have been promoted in the group: \"%s\"" +#: bp-groups.php:212 +msgid "Forum" msgstr "" -#: bp-groups/bp-groups-notifications.php:172 -#, php-format -msgid "" -"You have been promoted to %s for the group: \"%s\".\n" -"\n" -"To view the group please visit: %s\n" -"\n" -"---------------------\n" +#: bp-groups.php:214 +msgid "Members (%s)" msgstr "" -#: bp-groups/bp-groups-notifications.php:217 -#, php-format -msgid "You have an invitation to the group: \"%s\"" +#: bp-groups.php:218 bp-themes/bp-default/groups/single/send-invites.php:60 +msgid "Send Invites" msgstr "" -#: bp-groups/bp-groups-notifications.php:220 -#, php-format -msgid "" -"One of your friends %s has invited you to the group: \"%s\".\n" -"\n" -"To view your group invites visit: %s\n" -"\n" -"To view the group visit: %s\n" -"\n" -"To view %s's profile visit: %s\n" -"\n" -"---------------------\n" +#: bp-groups.php:298 +msgid "Group invite could not be accepted" msgstr "" -#: bp-groups/bp-groups-notifications.php:277 -#, php-format -msgid "%s mentioned you in the group \"%s\"" +#: bp-groups.php:300 +msgid "Group invite accepted" msgstr "" -#: bp-groups/bp-groups-notifications.php:280 -#, php-format -msgid "" -"%s mentioned you in the group \"%s\":\n" -"\n" -"\"%s\"\n" -"\n" -"To view and respond to the message, log in and visit: %s\n" -"\n" -"---------------------\n" +#: bp-groups.php:306 bp-groups.php:1774 bp-groups.php:2479 +msgid "%s joined the group %s" msgstr "" -#: bp-groups/bp-groups-templatetags.php:252 -msgid "Public Group" +#: bp-groups.php:320 +msgid "Group invite could not be rejected" msgstr "" -#: bp-groups/bp-groups-templatetags.php:254 -msgid "Hidden Group" +#: bp-groups.php:322 +msgid "Group invite rejected" msgstr "" -#: bp-groups/bp-groups-templatetags.php:256 -msgid "Private Group" +#: bp-groups.php:376 +msgid "There was an error when replying to that topic" msgstr "" -#: bp-groups/bp-groups-templatetags.php:258 -msgid "Group" +#: bp-groups.php:378 +msgid "Your reply was posted successfully" msgstr "" -#: bp-groups/bp-groups-templatetags.php:288 -#: bp-groups/bp-groups-templatetags.php:1718 -msgid "Group avatar" +#: bp-groups.php:392 +msgid "There was an error when making that topic a sticky" msgstr "" -#: bp-groups/bp-groups-templatetags.php:330 -msgid "not yet active" +#: bp-groups.php:394 +msgid "The topic was made sticky successfully" msgstr "" -#: bp-groups/bp-groups-templatetags.php:421 -msgid "Private" +#: bp-groups.php:406 +msgid "There was an error when unsticking that topic" msgstr "" -#: bp-groups/bp-groups-templatetags.php:476 -msgid "No Admins" +#: bp-groups.php:408 +msgid "The topic was unstuck successfully" msgstr "" -#: bp-groups/bp-groups-templatetags.php:496 -msgid "No Mods" +#: bp-groups.php:420 +msgid "There was an error when closing that topic" msgstr "" -#: bp-groups/bp-groups-templatetags.php:517 -msgid "Filter Groups" +#: bp-groups.php:422 +msgid "The topic was closed successfully" msgstr "" -#: bp-groups/bp-groups-templatetags.php:565 -#, php-format -msgid "Viewing group %1$s to %2$s (of %3$s groups)" +#: bp-groups.php:434 +msgid "There was an error when opening that topic" msgstr "" -#: bp-groups/bp-groups-templatetags.php:594 -#, php-format -msgid "%s member" +#: bp-groups.php:436 +msgid "The topic was opened successfully" msgstr "" -#: bp-groups/bp-groups-templatetags.php:596 -#: bp-themes/bp-default/members/single/groups/invites.php:11 -#, php-format -msgid "%s members" +#: bp-groups.php:455 +msgid "There was an error deleting the topic" msgstr "" -#: bp-groups/bp-groups-templatetags.php:635 -#, php-format -msgid "%d topic" +#: bp-groups.php:457 +msgid "The topic was deleted successfully" msgstr "" -#: bp-groups/bp-groups-templatetags.php:637 -#, php-format -msgid "%d topics" +#: bp-groups.php:477 +msgid "There was an error when editing that topic" msgstr "" -#: bp-groups/bp-groups-templatetags.php:733 -#: bp-groups/bp-groups-templatetags.php:771 -msgid "Demote to Member" +#: bp-groups.php:479 +msgid "The topic was edited successfully" msgstr "" -#: bp-groups/bp-groups-templatetags.php:739 -#: bp-groups/bp-groups-templatetags.php:777 -#: bp-groups/bp-groups-templatetags.php:1490 -#, php-format -msgid "joined %s ago" +#: bp-groups.php:501 +msgid "There was an error deleting that post" msgstr "" -#: bp-groups/bp-groups-templatetags.php:752 -msgid "This group has no administrators" +#: bp-groups.php:503 +msgid "The post was deleted successfully" msgstr "" -#: bp-groups/bp-groups-templatetags.php:771 -#: bp-themes/bp-default/groups/single/admin.php:215 -msgid "Promote to Admin" +#: bp-groups.php:523 +msgid "There was an error when editing that post" msgstr "" -#: bp-groups/bp-groups-templatetags.php:790 -msgid "This group has no moderators" +#: bp-groups.php:525 +msgid "The post was edited successfully" msgstr "" -#: bp-groups/bp-groups-templatetags.php:922 -msgid "Edit Details" +#: bp-groups.php:592 +msgid "Group invites sent." msgstr "" -#: bp-groups/bp-groups-templatetags.php:929 -msgid "Group Settings" +#: bp-groups.php:618 +msgid "There was an error sending your group membership request, please try again." msgstr "" -#: bp-groups/bp-groups-templatetags.php:931 -msgid "Manage Members" +#: bp-groups.php:620 +msgid "Your membership request was sent to the group administrator successfully. You will be notified when the group administrator responds to your request." msgstr "" -#: bp-groups/bp-groups-templatetags.php:934 -msgid "Membership Requests" +#: bp-groups.php:669 +msgid "There was an error updating group details, please try again." msgstr "" -#: bp-groups/bp-groups-templatetags.php:1108 -#: bp-groups/bp-groups-templatetags.php:1109 -#: bp-themes/bp-default/forums/index.php:8 -msgid "New Topic" +#: bp-groups.php:671 +msgid "Group details were successfully updated." msgstr "" -#: bp-groups/bp-groups-templatetags.php:1147 -#: bp-groups/bp-groups-templatetags.php:1148 -#: bp-themes/bp-default/_inc/ajax.php:407 -msgid "Leave Group" +#: bp-groups.php:707 +msgid "There was an error updating group settings, please try again." msgstr "" -#: bp-groups/bp-groups-templatetags.php:1170 -#: bp-groups/bp-groups-templatetags.php:1171 -#: bp-themes/bp-default/_inc/ajax.php:429 -msgid "Join Group" +#: bp-groups.php:709 +msgid "Group settings were successfully updated." msgstr "" -#: bp-groups/bp-groups-templatetags.php:1203 -#: bp-groups/bp-groups-templatetags.php:1204 -msgid "Request Sent" +#: bp-groups.php:769 +msgid "There was a problem cropping the avatar, please try uploading it again" msgstr "" -#: bp-groups/bp-groups-templatetags.php:1225 -msgid "" -"This is a private group and you must request group membership in order to " -"join." +#: bp-groups.php:771 +msgid "The new group avatar was uploaded successfully!" msgstr "" -#: bp-groups/bp-groups-templatetags.php:1227 -msgid "" -"This is a private group. To join you must be a registered site member and " -"request group membership." +#: bp-groups.php:800 +msgid "There was an error when promoting that user, please try again" msgstr "" -#: bp-groups/bp-groups-templatetags.php:1229 -msgid "" -"This is a private group. Your membership request is awaiting approval from " -"the group administrator." +#: bp-groups.php:802 +msgid "User promoted successfully" msgstr "" -#: bp-groups/bp-groups-templatetags.php:1231 -msgid "This is a hidden group and only invited members can join." +#: bp-groups.php:818 +msgid "There was an error when demoting that user, please try again" msgstr "" -#: bp-groups/bp-groups-templatetags.php:1540 -#, php-format -msgid "Viewing members %1$s to %2$s (of %3$s members)" +#: bp-groups.php:820 +msgid "User demoted successfully" msgstr "" -#: bp-groups/bp-groups-templatetags.php:1826 -#: bp-groups/bp-groups-templatetags.php:1845 -msgid "Recently Joined" +#: bp-groups.php:836 +msgid "There was an error when banning that user, please try again" msgstr "" -#: bp-groups/bp-groups-templatetags.php:1827 -#: bp-groups/bp-groups-templatetags.php:1848 -msgid "Most Popular" +#: bp-groups.php:838 +msgid "User banned successfully" msgstr "" -#: bp-groups/bp-groups-templatetags.php:1828 -#: bp-groups/bp-groups-templatetags.php:1851 -msgid "Administrator Of" +#: bp-groups.php:854 +msgid "There was an error when unbanning that user, please try again" msgstr "" -#: bp-groups/bp-groups-templatetags.php:1829 -#: bp-groups/bp-groups-templatetags.php:1854 -msgid "Moderator Of" +#: bp-groups.php:856 +msgid "User ban removed successfully" msgstr "" -#: bp-groups/bp-groups-templatetags.php:1885 -msgid "No Group Avatar" +#: bp-groups.php:872 +msgid "There was an error removing that user from the group, please try again" msgstr "" -#: bp-groups/bp-groups-templatetags.php:2089 -#, php-format -msgid "requested %s ago" +#: bp-groups.php:874 +msgid "User removed successfully" msgstr "" -#: bp-groups/bp-groups-widgets.php:58 -msgid "There are no groups to display." +#: bp-groups.php:915 +msgid "There was an error accepting the membership request, please try again." msgstr "" -#: bp-groups/bp-groups-widgets.php:79 -msgid "Max groups to show:" +#: bp-groups.php:917 +msgid "Group membership request accepted" msgstr "" -#: bp-groups/bp-groups-widgets.php:117 -#, php-format -msgid "created %s ago" +#: bp-groups.php:927 +msgid "There was an error rejecting the membership request, please try again." msgstr "" -#: bp-groups/bp-groups-widgets.php:136 -msgid "No groups matched the current filter." +#: bp-groups.php:929 +msgid "Group membership request rejected" msgstr "" -#: bp-messages.php:105 -#, php-format -msgid "Messages <strong>(%s)</strong>" +#: bp-groups.php:961 +msgid "There was an error deleting the group, please try again." msgstr "" -#: bp-messages.php:107 -msgid "Messages <strong></strong>" +#: bp-groups.php:963 +msgid "The group was deleted successfully" msgstr "" -#: bp-messages.php:115 -msgid "Inbox" +#: bp-groups.php:995 +msgid "A member invites you to join a group" msgstr "" -#: bp-messages.php:116 -msgid "Sent Messages" +#: bp-groups.php:1001 +msgid "Group information is updated" msgstr "" -#: bp-messages.php:117 -msgid "Compose" +#: bp-groups.php:1007 +msgid "You are promoted to a group administrator or moderator" msgstr "" -#: bp-messages.php:120 -msgid "Notices" +#: bp-groups.php:1013 +msgid "A member requests to join a private group for which you are an admin" msgstr "" -#: bp-messages.php:124 -msgid "My Messages" +#: bp-groups.php:1062 +msgid "There was an error saving group details. Please try again." msgstr "" -#: bp-messages.php:167 bp-messages.php:189 -msgid "There was an error sending that message, please try again" +#: bp-groups.php:1084 +msgid "Please fill in all of the required fields" msgstr "" -#: bp-messages.php:172 -msgid "Notice sent successfully!" +#: bp-groups.php:1089 bp-groups.php:1116 +msgid "There was an error saving group details, please try again." msgstr "" -#: bp-messages.php:175 -msgid "There was an error sending that notice, please try again" +#: bp-groups.php:1147 +msgid "%s created the group %s" msgstr "" -#: bp-messages.php:186 -msgid "Message sent successfully!" +#: bp-groups.php:1195 +msgid "There was an error saving the group avatar, please try uploading again." msgstr "" -#: bp-messages.php:213 -msgid "There was a problem deactivating that notice." +#: bp-groups.php:1197 +msgid "The group avatar was uploaded successfully!" msgstr "" -#: bp-messages.php:215 -msgid "Notice deactivated." +#: bp-groups.php:1221 bp-groups.php:1228 +msgid "There was an error joining the group." msgstr "" -#: bp-messages.php:219 -msgid "There was a problem activating that notice." +#: bp-groups.php:1230 +msgid "You joined the group!" msgstr "" -#: bp-messages.php:221 -msgid "Notice activated." +#: bp-groups.php:1253 +msgid "There was an error leaving the group." msgstr "" -#: bp-messages.php:225 -msgid "There was a problem deleting that notice." +#: bp-groups.php:1255 bp-groups.php:1732 +msgid "You successfully left the group." msgstr "" -#: bp-messages.php:227 -msgid "Notice deleted." +#: bp-groups.php:1333 +msgid "Created a group" msgstr "" -#: bp-messages.php:244 -msgid "Messages" +#: bp-groups.php:1334 +msgid "Joined a group" msgstr "" -#: bp-messages.php:253 -msgid "A member sends you a new message" +#: bp-groups.php:1335 +msgid "New group forum topic" msgstr "" -#: bp-messages.php:259 -msgid "A new site notice is posted" +#: bp-groups.php:1336 +msgid "New group forum post" msgstr "" -#: bp-messages.php:299 -msgid "Your reply was sent successfully" +#: bp-groups.php:1396 +msgid "Group Membership Requests" msgstr "" -#: bp-messages.php:301 -msgid "There was a problem sending your reply, please try again" +#: bp-groups.php:1396 +msgid "%d new membership requests for the group \"%s\"" msgstr "" -#: bp-messages.php:311 -#, php-format -msgid "From: %s" +#: bp-groups.php:1399 +msgid "%s requests membership for the group \"%s\"" msgstr "" -#: bp-messages.php:332 -msgid "There was an error deleting that message." +#: bp-groups.php:1410 +msgid "%d accepted group membership requests" msgstr "" -#: bp-messages.php:334 -msgid "Message deleted." +#: bp-groups.php:1412 +msgid "Membership for group \"%s\" accepted" msgstr "" -#: bp-messages.php:356 -msgid "There was an error deleting messages." +#: bp-groups.php:1423 +msgid "%d rejected group membership requests" msgstr "" -#: bp-messages.php:358 bp-themes/bp-default/_inc/ajax.php:534 -msgid "Messages deleted." +#: bp-groups.php:1425 +msgid "Membership for group \"%s\" rejected" msgstr "" -#: bp-messages.php:378 -#, php-format -msgid "You have %d new messages" +#: bp-groups.php:1436 +msgid "You were promoted to an admin in %d groups" msgstr "" -#: bp-messages.php:380 -#, php-format -msgid "You have %d new message" +#: bp-groups.php:1438 +msgid "You were promoted to an admin in the group %s" msgstr "" -#: bp-messages.php:434 -#, php-format -msgid "Re: %s" +#: bp-groups.php:1449 +msgid "You were promoted to a mod in %d groups" msgstr "" -#: bp-messages.php:442 -msgid "No Subject" +#: bp-groups.php:1451 +msgid "You were promoted to a mod in the group %s" msgstr "" -#: bp-messages/bp-messages-classes.php:193 -msgid " Recipients" +#: bp-groups.php:1462 bp-groups.php:1464 +msgid "Group Invites" msgstr "" -#: bp-messages/bp-messages-notifications.php:23 -#, php-format -msgid "New message from %s" +#: bp-groups.php:1462 +msgid "You have %d new group invitations" msgstr "" -#: bp-messages/bp-messages-notifications.php:26 -#, php-format -msgid "" -"%s sent you a new message:\n" -"\n" -"Subject: %s\n" -"\n" -"\"%s\"\n" -"\n" -"To view and read your messages please log in and visit: %s\n" -"\n" -"---------------------\n" +#: bp-groups.php:1464 +msgid "You have an invitation to the group: %s" msgstr "" -#: bp-messages/bp-messages-templatetags.php:335 -#, php-format -msgid "Viewing message %1$s to %2$s (of %3$s messages)" +#: bp-groups.php:1709 +msgid "As the only Admin, you cannot leave the group." msgstr "" -#: bp-messages/bp-messages-templatetags.php:376 -msgid "Select:" +#: bp-groups.php:1962 +msgid "%s posted an update in the group %s:" msgstr "" -#: bp-messages/bp-messages-templatetags.php:379 -msgid "Read" +#: bp-groups.php:2033 bp-groups.php:2138 +msgid "%s posted on the forum topic %s in the group %s:" msgstr "" -#: bp-messages/bp-messages-templatetags.php:380 -msgid "Unread" +#: bp-groups.php:2072 bp-groups.php:2104 +msgid "%s started the forum topic %s in the group %s:" msgstr "" -#: bp-messages/bp-messages-templatetags.php:381 -msgid "All" +#: bp-messages.php:105 +msgid "Messages <strong>(%s)</strong>" msgstr "" -#: bp-messages/bp-messages-templatetags.php:384 -msgid "Mark as Read" +#: bp-messages.php:107 +msgid "Messages <strong></strong>" msgstr "" -#: bp-messages/bp-messages-templatetags.php:385 -msgid "Mark as Unread" +#: bp-messages.php:115 +msgid "Inbox" msgstr "" -#: bp-messages/bp-messages-templatetags.php:387 -msgid "Delete Selected" +#: bp-messages.php:116 +msgid "Sent Messages" msgstr "" -#: bp-messages/bp-messages-templatetags.php:396 -msgid "Currently Active" +#: bp-messages.php:117 +msgid "Compose" msgstr "" -#: bp-messages/bp-messages-templatetags.php:463 -msgid "Deactivate" +#: bp-messages.php:120 +msgid "Notices" msgstr "" -#: bp-messages/bp-messages-templatetags.php:465 -#: bp-themes/bp-default/registration/activate.php:40 -msgid "Activate" +#: bp-messages.php:124 +msgid "My Messages" msgstr "" -#: bp-messages/bp-messages-templatetags.php:490 -#: bp-themes/bp-default/functions.php:32 -msgid "Close" +#: bp-messages.php:167 bp-messages.php:189 +msgid "There was an error sending that message, please try again" msgstr "" -#: bp-messages/bp-messages-templatetags.php:535 -msgid "Send a private message to this user." +#: bp-messages.php:172 +msgid "Notice sent successfully!" msgstr "" -#: bp-messages/bp-messages-templatetags.php:536 -msgid "Send Private Message" +#: bp-messages.php:175 +msgid "There was an error sending that notice, please try again" msgstr "" -#: bp-messages/bp-messages-templatetags.php:708 -#, php-format -msgid "%d Recipients" +#: bp-messages.php:186 +msgid "Message sent successfully!" msgstr "" -#: bp-messages/bp-messages-templatetags.php:774 -#: bp-themes/bp-default/_inc/ajax.php:468 -#, php-format -msgid "Sent %s ago" +#: bp-messages.php:213 +msgid "There was a problem deactivating that notice." msgstr "" -#: bp-themes/bp-default/404.php:10 -msgid "Page Not Found" +#: bp-messages.php:215 +msgid "Notice deactivated." msgstr "" -#: bp-themes/bp-default/404.php:14 -msgid "The page you were looking for was not found." +#: bp-messages.php:219 +msgid "There was a problem activating that notice." msgstr "" -#: bp-themes/bp-default/_inc/ajax.php:137 -msgid "There was a problem posting your update, please try again." +#: bp-messages.php:221 +msgid "Notice activated." msgstr "" -#: bp-themes/bp-default/_inc/ajax.php:229 -#: bp-themes/bp-default/_inc/ajax.php:262 -msgid "There was a problem when deleting. Please try again." +#: bp-messages.php:225 +msgid "There was a problem deleting that notice." msgstr "" -#: bp-themes/bp-default/_inc/ajax.php:275 -#: bp-themes/bp-default/activity/entry.php:35 -msgid "Remove Favorite" +#: bp-messages.php:227 +msgid "Notice deleted." msgstr "" -#: bp-themes/bp-default/_inc/ajax.php:284 -#: bp-themes/bp-default/activity/entry.php:33 -msgid "Favorite" +#: bp-messages.php:244 +msgid "Messages" msgstr "" -#: bp-themes/bp-default/_inc/ajax.php:315 -#: bp-themes/bp-default/groups/create.php:191 -#: bp-themes/bp-default/groups/single/send-invites.php:42 -msgid "Remove Invite" +#: bp-messages.php:253 +msgid "A member sends you a new message" msgstr "" -#: bp-themes/bp-default/_inc/ajax.php:356 -msgid "Request Pending" +#: bp-messages.php:259 +msgid "A new site notice is posted" msgstr "" -#: bp-themes/bp-default/_inc/ajax.php:368 -msgid "There was a problem accepting that request. Please try again." +#: bp-messages.php:299 +msgid "Your reply was sent successfully" msgstr "" -#: bp-themes/bp-default/_inc/ajax.php:379 -msgid "There was a problem rejecting that request. Please try again." +#: bp-messages.php:301 +msgid "There was a problem sending your reply, please try again" msgstr "" -#: bp-themes/bp-default/_inc/ajax.php:405 -msgid "Error joining group" +#: bp-messages.php:311 +msgid "From: %s" msgstr "" -#: bp-themes/bp-default/_inc/ajax.php:415 -msgid "Error requesting membership" +#: bp-messages.php:332 +msgid "There was an error deleting that message." msgstr "" -#: bp-themes/bp-default/_inc/ajax.php:417 -msgid "Membership Requested" +#: bp-messages.php:334 +msgid "Message deleted." msgstr "" -#: bp-themes/bp-default/_inc/ajax.php:426 -msgid "Error leaving group" +#: bp-messages.php:356 +msgid "There was an error deleting messages." msgstr "" -#: bp-themes/bp-default/_inc/ajax.php:443 -msgid "There was a problem closing the notice." +#: bp-messages.php:358 bp-themes/bp-default/_inc/ajax.php:534 +msgid "Messages deleted." msgstr "" -#: bp-themes/bp-default/_inc/ajax.php:485 -msgid "There was a problem sending that reply. Please try again." +#: bp-messages.php:378 +msgid "You have %d new messages" msgstr "" -#: bp-themes/bp-default/_inc/ajax.php:495 -msgid "There was a problem marking messages as unread." +#: bp-messages.php:380 +msgid "You have %d new message" msgstr "" -#: bp-themes/bp-default/_inc/ajax.php:511 -msgid "There was a problem marking messages as read." +#: bp-messages.php:434 +msgid "Re: %s" msgstr "" -#: bp-themes/bp-default/_inc/ajax.php:527 -msgid "There was a problem deleting messages." +#: bp-messages.php:442 +msgid "No Subject" msgstr "" -#: bp-themes/bp-default/_inc/options.php:9 -#: bp-themes/bp-default/_inc/options.php:27 -msgid "Theme Options" +#: bp-blogs.php:109 +msgid "Blogs <span>(%d)</span>" msgstr "" -#: bp-themes/bp-default/_inc/options.php:22 -msgid "Settings saved." +#: bp-blogs.php:190 +msgid "New blog created" msgstr "" -#: bp-themes/bp-default/_inc/options.php:34 -msgid "On front page show:" +#: bp-blogs.php:191 +msgid "New blog post published" msgstr "" -#: bp-themes/bp-default/_inc/options.php:36 -msgid "Blog Posts" +#: bp-blogs.php:192 +msgid "New blog post comment posted" msgstr "" -#: bp-themes/bp-default/_inc/options.php:38 -#: bp-themes/bp-default/functions.php:120 -msgid "Activity Stream" +#: bp-blogs.php:360 +msgid "%s created the blog %s" msgstr "" -#: bp-themes/bp-default/_inc/options.php:46 -msgid "Update Settings" +#: bp-blogs.php:422 +msgid "%s wrote a new blog post: %s" msgstr "" -#: bp-themes/bp-default/activity/activity-loop.php:27 -msgid "Load More" +#: bp-blogs.php:498 +msgid "%s commented on the blog post %s" msgstr "" -#: bp-themes/bp-default/activity/activity-loop.php:37 -msgid "Sorry, there was no activity found. Please try a different filter." +#: bp-themes/bp-default/index.php:20 bp-themes/bp-default/index.php:26 +#: bp-themes/bp-default/search.php:29 bp-themes/bp-default/search.php:35 +#: bp-themes/bp-default/archive.php:29 bp-themes/bp-default/archive.php:35 +#: bp-themes/bp-default/single.php:23 bp-themes/bp-default/single.php:29 +msgid "by %s" msgstr "" -#: bp-themes/bp-default/activity/entry.php:33 -msgid "Mark as Favorite" +#: bp-themes/bp-default/index.php:24 bp-themes/bp-default/search.php:33 +#: bp-themes/bp-default/archive.php:33 bp-themes/bp-default/single.php:27 +msgid "Permanent Link to" msgstr "" -#: bp-themes/bp-default/activity/entry.php:63 -msgid "Post" +#: bp-themes/bp-default/index.php:26 bp-themes/bp-default/search.php:35 +#: bp-themes/bp-default/archive.php:35 bp-themes/bp-default/single.php:29 +msgid "in" msgstr "" -#: bp-themes/bp-default/activity/entry.php:63 -msgid "or press esc to cancel." +#: bp-themes/bp-default/index.php:29 bp-themes/bp-default/search.php:38 +#: bp-themes/bp-default/archive.php:38 bp-themes/bp-default/single.php:32 +msgid "Read the rest of this entry →" msgstr "" -#: bp-themes/bp-default/activity/index.php:7 -msgid "Site Activity" +#: bp-themes/bp-default/index.php:32 bp-themes/bp-default/search.php:41 +#: bp-themes/bp-default/archive.php:41 bp-themes/bp-default/single.php:37 +msgid "Tags: " msgstr "" -#: bp-themes/bp-default/activity/index.php:22 -msgid "The public activity for everyone on this site." +#: bp-themes/bp-default/index.php:32 bp-themes/bp-default/search.php:41 +#: bp-themes/bp-default/archive.php:41 bp-themes/bp-default/single.php:37 +msgid "No Comments »" msgstr "" -#: bp-themes/bp-default/activity/index.php:22 -#: bp-themes/bp-default/members/index.php:18 -#, php-format -msgid "All Members (%s)" +#: bp-themes/bp-default/index.php:32 bp-themes/bp-default/search.php:41 +#: bp-themes/bp-default/archive.php:41 bp-themes/bp-default/single.php:37 +msgid "1 Comment »" msgstr "" -#: bp-themes/bp-default/activity/index.php:30 -msgid "The activity of my friends only." +#: bp-themes/bp-default/index.php:32 bp-themes/bp-default/search.php:41 +#: bp-themes/bp-default/archive.php:41 bp-themes/bp-default/single.php:37 +msgid "% Comments »" msgstr "" -#: bp-themes/bp-default/activity/index.php:30 -#: bp-themes/bp-default/members/index.php:21 -#, php-format -msgid "My Friends (%s)" +#: bp-themes/bp-default/index.php:43 bp-themes/bp-default/search.php:17 +#: bp-themes/bp-default/search.php:51 bp-themes/bp-default/archive.php:16 +#: bp-themes/bp-default/archive.php:52 bp-themes/bp-default/single.php:14 +msgid "← Previous Entries" msgstr "" -#: bp-themes/bp-default/activity/index.php:38 -msgid "The activity of groups I am a member of." +#: bp-themes/bp-default/index.php:44 bp-themes/bp-default/search.php:18 +#: bp-themes/bp-default/search.php:52 bp-themes/bp-default/archive.php:17 +#: bp-themes/bp-default/archive.php:53 bp-themes/bp-default/single.php:15 +msgid "Next Entries →" msgstr "" -#: bp-themes/bp-default/activity/index.php:38 -#: bp-themes/bp-default/groups/index.php:20 -#, php-format -msgid "My Groups (%s)" +#: bp-themes/bp-default/index.php:50 bp-themes/bp-default/archive.php:59 +msgid "Not Found" msgstr "" -#: bp-themes/bp-default/activity/index.php:45 -msgid "The activity I've marked as a favorite." +#: bp-themes/bp-default/index.php:51 +msgid "Sorry, but you are looking for something that isn't here." msgstr "" -#: bp-themes/bp-default/activity/index.php:45 -#, php-format -msgid "My Favorites (<span>%s</span>)" +#: bp-themes/bp-default/registration/activate.php:16 +msgid "Account Activated" msgstr "" -#: bp-themes/bp-default/activity/index.php:50 -msgid "Activity that I have been mentioned in." +#: bp-themes/bp-default/registration/activate.php:21 +msgid "Your account was activated successfully! Your account details have been sent to you in a separate email." msgstr "" -#: bp-themes/bp-default/activity/index.php:50 -#, php-format -msgid "(%s new)" +#: bp-themes/bp-default/registration/activate.php:23 +msgid "Your account was activated successfully! You can now log in with the username and password you provided when you signed up." msgstr "" -#: bp-themes/bp-default/activity/index.php:60 -#: bp-themes/bp-default/groups/single/activity.php:3 -msgid "RSS Feed" +#: bp-themes/bp-default/registration/activate.php:32 +msgid "Please provide a valid activation key." msgstr "" -#: bp-themes/bp-default/activity/index.php:60 -#: bp-themes/bp-default/groups/single/activity.php:3 -msgid "RSS" +#: bp-themes/bp-default/registration/activate.php:36 +msgid "Activation Key:" msgstr "" -#: bp-themes/bp-default/activity/index.php:66 -#: bp-themes/bp-default/groups/single/activity.php:9 -#: bp-themes/bp-default/members/single/activity.php:7 -msgid "No Filter" +#: bp-themes/bp-default/registration/register.php:18 +msgid "Registering for this site is easy, just fill in the fields below and we'll get a new account set up for you in no time." msgstr "" -#: bp-themes/bp-default/activity/index.php:67 -#: bp-themes/bp-default/groups/single/activity.php:10 -#: bp-themes/bp-default/members/single/activity.php:8 -msgid "Show Updates" +#: bp-themes/bp-default/registration/register.php:26 +msgid "Account Details" msgstr "" -#: bp-themes/bp-default/activity/index.php:70 -#: bp-themes/bp-default/members/single/activity.php:12 -msgid "Show Blog Posts" -msgstr "" - -#: bp-themes/bp-default/activity/index.php:71 -#: bp-themes/bp-default/members/single/activity.php:13 -msgid "Show Blog Comments" -msgstr "" - -#: bp-themes/bp-default/activity/index.php:75 -#: bp-themes/bp-default/groups/single/activity.php:13 -#: bp-themes/bp-default/members/single/activity.php:22 -msgid "Show New Forum Topics" -msgstr "" - -#: bp-themes/bp-default/activity/index.php:76 -#: bp-themes/bp-default/groups/single/activity.php:14 -#: bp-themes/bp-default/members/single/activity.php:23 -msgid "Show Forum Replies" -msgstr "" - -#: bp-themes/bp-default/activity/index.php:80 -#: bp-themes/bp-default/members/single/activity.php:27 -msgid "Show New Groups" -msgstr "" - -#: bp-themes/bp-default/activity/index.php:81 -#: bp-themes/bp-default/groups/single/activity.php:17 -#: bp-themes/bp-default/members/single/activity.php:28 -msgid "Show New Group Memberships" +#: bp-themes/bp-default/registration/register.php:28 +#: bp-themes/bp-default/sidebar.php:41 +msgid "Username" msgstr "" -#: bp-themes/bp-default/activity/index.php:85 -#: bp-themes/bp-default/members/single/activity.php:17 -msgid "Show Friendship Connections" +#: bp-themes/bp-default/registration/register.php:28 +#: bp-themes/bp-default/registration/register.php:32 +#: bp-themes/bp-default/registration/register.php:36 +#: bp-themes/bp-default/registration/register.php:40 +#: bp-themes/bp-default/registration/register.php:67 +#: bp-themes/bp-default/registration/register.php:75 +#: bp-themes/bp-default/registration/register.php:83 +#: bp-themes/bp-default/registration/register.php:93 +#: bp-themes/bp-default/registration/register.php:104 +#: bp-themes/bp-default/registration/register.php:119 +#: bp-themes/bp-default/registration/register.php:130 +#: bp-themes/bp-default/registration/register.php:180 +#: bp-themes/bp-default/registration/register.php:189 +#: bp-themes/bp-default/members/single/profile/edit.php:23 +#: bp-themes/bp-default/members/single/profile/edit.php:30 +#: bp-themes/bp-default/members/single/profile/edit.php:37 +#: bp-themes/bp-default/members/single/profile/edit.php:46 +#: bp-themes/bp-default/members/single/profile/edit.php:60 +#: bp-themes/bp-default/members/single/profile/edit.php:74 +#: bp-themes/bp-default/members/single/profile/edit.php:84 +#: bp-themes/bp-default/groups/create.php:26 +#: bp-themes/bp-default/groups/create.php:29 +msgid "(required)" msgstr "" -#: bp-themes/bp-default/activity/index.php:88 -msgid "Show New Members" +#: bp-themes/bp-default/registration/register.php:32 +msgid "Email Address" msgstr "" -#: bp-themes/bp-default/activity/post-form.php:7 -#, php-format -msgid "" -"You are mentioning %s in a new update, this user will be sent a notification " -"of your message." +#: bp-themes/bp-default/registration/register.php:36 +msgid "Choose a Password" msgstr "" -#: bp-themes/bp-default/activity/post-form.php:19 -#, php-format -msgid "What's new in %s, %s?" +#: bp-themes/bp-default/registration/register.php:40 +msgid "Confirm Password" msgstr "" -#: bp-themes/bp-default/activity/post-form.php:21 -#, php-format -msgid "What's new %s?" +#: bp-themes/bp-default/registration/register.php:56 +msgid "Profile Details" msgstr "" -#: bp-themes/bp-default/activity/post-form.php:33 -msgid "Post Update" +#: bp-themes/bp-default/registration/register.php:110 +#: bp-themes/bp-default/members/single/profile/edit.php:52 +#: bp-themes/bp-default/members/single/profile/edit.php:65 +msgid "Clear" msgstr "" -#: bp-themes/bp-default/activity/post-form.php:38 -msgid "Post in" +#: bp-themes/bp-default/registration/register.php:174 +msgid "Blog Details" msgstr "" -#: bp-themes/bp-default/archive.php:10 -#, php-format -msgid "You are browsing the archive for %1$s." +#: bp-themes/bp-default/registration/register.php:176 +msgid "Yes, I'd like to create a new blog" msgstr "" -#: bp-themes/bp-default/archive.php:16 bp-themes/bp-default/archive.php:52 -#: bp-themes/bp-default/index.php:43 bp-themes/bp-default/search.php:17 -#: bp-themes/bp-default/search.php:51 bp-themes/bp-default/single.php:14 -msgid "← Previous Entries" +#: bp-themes/bp-default/registration/register.php:180 +msgid "Blog URL" msgstr "" -#: bp-themes/bp-default/archive.php:17 bp-themes/bp-default/archive.php:53 -#: bp-themes/bp-default/index.php:44 bp-themes/bp-default/search.php:18 -#: bp-themes/bp-default/search.php:52 bp-themes/bp-default/single.php:15 -msgid "Next Entries →" +#: bp-themes/bp-default/registration/register.php:189 +msgid "Blog Title" msgstr "" -#: bp-themes/bp-default/archive.php:29 bp-themes/bp-default/archive.php:35 -#: bp-themes/bp-default/index.php:20 bp-themes/bp-default/index.php:26 -#: bp-themes/bp-default/search.php:29 bp-themes/bp-default/search.php:35 -#: bp-themes/bp-default/single.php:23 bp-themes/bp-default/single.php:29 -#, php-format -msgid "by %s" +#: bp-themes/bp-default/registration/register.php:193 +msgid "I would like my blog to appear in search engines, and in public listings around this site" msgstr "" -#: bp-themes/bp-default/archive.php:33 bp-themes/bp-default/index.php:24 -#: bp-themes/bp-default/search.php:33 bp-themes/bp-default/single.php:27 -msgid "Permanent Link to" +#: bp-themes/bp-default/registration/register.php:210 +msgid "Complete Sign Up" msgstr "" -#: bp-themes/bp-default/archive.php:35 bp-themes/bp-default/index.php:26 -#: bp-themes/bp-default/search.php:35 bp-themes/bp-default/single.php:29 -msgid "in" +#: bp-themes/bp-default/registration/register.php:221 +msgid "Sign Up Complete!" msgstr "" -#: bp-themes/bp-default/archive.php:38 bp-themes/bp-default/index.php:29 -#: bp-themes/bp-default/search.php:38 bp-themes/bp-default/single.php:32 -msgid "Read the rest of this entry →" +#: bp-themes/bp-default/registration/register.php:226 +msgid "You have successfully created your account! To begin using this site you will need to activate your account via the email we have just sent to your address." msgstr "" -#: bp-themes/bp-default/archive.php:41 bp-themes/bp-default/index.php:32 -#: bp-themes/bp-default/search.php:41 bp-themes/bp-default/single.php:37 -msgid "Tags: " +#: bp-themes/bp-default/registration/register.php:228 +msgid "You have successfully created your account! Please log in using the username and password you have just created." msgstr "" -#: bp-themes/bp-default/archive.php:41 bp-themes/bp-default/index.php:32 -#: bp-themes/bp-default/search.php:41 bp-themes/bp-default/single.php:37 -msgid "No Comments »" +#: bp-themes/bp-default/registration/register.php:235 +msgid "Your Current Avatar" msgstr "" -#: bp-themes/bp-default/archive.php:41 bp-themes/bp-default/index.php:32 -#: bp-themes/bp-default/search.php:41 bp-themes/bp-default/single.php:37 -msgid "1 Comment »" +#: bp-themes/bp-default/registration/register.php:236 +msgid "We've fetched an avatar for your new account. If you'd like to change this, why not upload a new one?" msgstr "" -#: bp-themes/bp-default/archive.php:41 bp-themes/bp-default/index.php:32 -#: bp-themes/bp-default/search.php:41 bp-themes/bp-default/single.php:37 -msgid "% Comments »" +#: bp-themes/bp-default/registration/register.php:244 +#: bp-themes/bp-default/members/single/profile/change-avatar.php:17 +#: bp-themes/bp-default/groups/single/admin.php:114 +#: bp-themes/bp-default/groups/create.php:118 +msgid "Upload Image" msgstr "" -#: bp-themes/bp-default/archive.php:59 bp-themes/bp-default/index.php:50 -msgid "Not Found" +#: bp-themes/bp-default/registration/register.php:256 +#: bp-themes/bp-default/members/single/profile/change-avatar.php:32 +msgid "Crop Your New Avatar" msgstr "" -#: bp-themes/bp-default/attachment.php:25 -msgid "<p class=\"serif\">Read the rest of this entry →</p>" +#: bp-themes/bp-default/registration/register.php:258 +#: bp-themes/bp-default/members/single/profile/change-avatar.php:34 +#: bp-themes/bp-default/groups/single/admin.php:134 +#: bp-themes/bp-default/groups/create.php:131 +msgid "Avatar to crop" msgstr "" -#: bp-themes/bp-default/attachment.php:27 bp-themes/bp-default/page.php:20 -#: bp-themes/bp-default/single.php:34 -msgid "<p><strong>Pages:</strong> " +#: bp-themes/bp-default/registration/register.php:261 +#: bp-themes/bp-default/members/single/profile/change-avatar.php:37 +#: bp-themes/bp-default/groups/single/admin.php:137 +#: bp-themes/bp-default/groups/create.php:134 +msgid "Avatar preview" msgstr "" -#: bp-themes/bp-default/attachment.php:38 -msgid "Sorry, no attachments matched your criteria." +#: bp-themes/bp-default/registration/register.php:264 +#: bp-themes/bp-default/members/single/profile/change-avatar.php:40 +#: bp-themes/bp-default/groups/single/admin.php:140 +#: bp-themes/bp-default/groups/create.php:137 +msgid "Crop Image" msgstr "" -#: bp-themes/bp-default/blogs/blogs-loop.php:71 -msgid "Sorry, there were no blogs found." +#: bp-themes/bp-default/_inc/ajax.php:137 +msgid "There was a problem posting your update, please try again." msgstr "" -#: bp-themes/bp-default/blogs/create.php:10 -#: bp-themes/bp-default/blogs/index.php:8 -msgid "Blogs Directory" +#: bp-themes/bp-default/_inc/ajax.php:190 +#: bp-activity/bp-activity-templatetags.php:660 +msgid "%s ago" msgstr "" -#: bp-themes/bp-default/blogs/create.php:21 -msgid "Blog registration is currently disabled" +#: bp-themes/bp-default/_inc/ajax.php:191 +#: bp-themes/bp-default/activity/entry.php:28 +#: bp-activity/bp-activity-templatetags.php:664 +msgid "Reply" msgstr "" -#: bp-themes/bp-default/blogs/index.php:18 -#, php-format -msgid "All Blogs (%s)" +#: bp-themes/bp-default/_inc/ajax.php:229 +#: bp-themes/bp-default/_inc/ajax.php:262 +msgid "There was a problem when deleting. Please try again." msgstr "" -#: bp-themes/bp-default/blogs/index.php:21 -#, php-format -msgid "My Blogs (%s)" +#: bp-themes/bp-default/_inc/ajax.php:275 +#: bp-themes/bp-default/activity/entry.php:35 +msgid "Remove Favorite" msgstr "" -#: bp-themes/bp-default/blogs/index.php:28 -#: bp-themes/bp-default/forums/index.php:91 -#: bp-themes/bp-default/groups/index.php:27 -#: bp-themes/bp-default/members/index.php:28 -#: bp-themes/bp-default/members/single/blogs.php:6 -#: bp-themes/bp-default/members/single/friends.php:9 -#: bp-themes/bp-default/members/single/groups.php:10 -#: bp-xprofile/bp-xprofile-classes.php:495 -msgid "Order By:" +#: bp-themes/bp-default/_inc/ajax.php:284 +#: bp-themes/bp-default/activity/entry.php:33 +msgid "Favorite" msgstr "" -#: bp-themes/bp-default/blogs/index.php:30 -#: bp-themes/bp-default/forums/index.php:93 -#: bp-themes/bp-default/groups/index.php:29 -#: bp-themes/bp-default/members/index.php:30 -#: bp-themes/bp-default/members/single/blogs.php:8 -#: bp-themes/bp-default/members/single/friends.php:11 -#: bp-themes/bp-default/members/single/groups.php:12 -msgid "Last Active" +#: bp-themes/bp-default/_inc/ajax.php:315 +#: bp-themes/bp-default/groups/single/send-invites.php:42 +#: bp-themes/bp-default/groups/create.php:191 +msgid "Remove Invite" msgstr "" -#: bp-themes/bp-default/blogs/index.php:32 -#: bp-themes/bp-default/groups/index.php:32 -#: bp-themes/bp-default/members/index.php:34 -#: bp-themes/bp-default/members/single/blogs.php:10 -#: bp-themes/bp-default/members/single/friends.php:13 -#: bp-themes/bp-default/members/single/groups.php:15 -msgid "Alphabetical" +#: bp-themes/bp-default/_inc/ajax.php:356 +msgid "Request Pending" msgstr "" -#: bp-themes/bp-default/comments.php:3 -msgid "Password Protected" +#: bp-themes/bp-default/_inc/ajax.php:368 +msgid "There was a problem accepting that request. Please try again." msgstr "" -#: bp-themes/bp-default/comments.php:4 -msgid "Enter the password to view comments." +#: bp-themes/bp-default/_inc/ajax.php:379 +msgid "There was a problem rejecting that request. Please try again." msgstr "" -#: bp-themes/bp-default/comments.php:28 -#, php-format -msgid "One Response to %2$s" -msgid_plural "%1$s Responses to %2$s" -msgstr[0] "" -msgstr[1] "" - -#: bp-themes/bp-default/comments.php:58 -#, php-format -msgid "" -"Comments are closed, but <a href=\"%1$s\" title=\"Trackback URL for this post" -"\">trackbacks</a> and pingbacks are open." +#: bp-themes/bp-default/_inc/ajax.php:405 +msgid "Error joining group" msgstr "" -#: bp-themes/bp-default/comments.php:64 -msgid "Comments are closed." +#: bp-themes/bp-default/_inc/ajax.php:415 +msgid "Error requesting membership" msgstr "" -#: bp-themes/bp-default/comments.php:90 -msgid "Leave a Reply" +#: bp-themes/bp-default/_inc/ajax.php:417 +msgid "Membership Requested" msgstr "" -#: bp-themes/bp-default/comments.php:90 -#, php-format -msgid "Leave a Reply to %s" +#: bp-themes/bp-default/_inc/ajax.php:426 +msgid "Error leaving group" msgstr "" -#: bp-themes/bp-default/comments.php:94 -msgid "Click here to cancel reply." +#: bp-themes/bp-default/_inc/ajax.php:443 +msgid "There was a problem closing the notice." msgstr "" -#: bp-themes/bp-default/comments.php:100 -#, php-format -msgid "" -"You must be <a href=\"%1$s\" title=\"Log in\">logged in</a> to post a " -"comment." +#: bp-themes/bp-default/_inc/ajax.php:485 +msgid "There was a problem sending that reply. Please try again." msgstr "" -#: bp-themes/bp-default/comments.php:112 -#, php-format -msgid "Logged in as <a href=\"%1$s\" title=\"%2$s\">%2$s</a>." +#: bp-themes/bp-default/_inc/ajax.php:495 +msgid "There was a problem marking messages as unread." msgstr "" -#: bp-themes/bp-default/comments.php:112 -msgid "Log out of this account" +#: bp-themes/bp-default/_inc/ajax.php:511 +msgid "There was a problem marking messages as read." msgstr "" -#: bp-themes/bp-default/comments.php:112 -msgid "Log out →" +#: bp-themes/bp-default/_inc/ajax.php:527 +msgid "There was a problem deleting messages." msgstr "" -#: bp-themes/bp-default/comments.php:120 bp-themes/bp-default/comments.php:125 -msgid "*" +#: bp-themes/bp-default/_inc/options.php:9 +#: bp-themes/bp-default/_inc/options.php:27 +msgid "Theme Options" msgstr "" -#: bp-themes/bp-default/comments.php:125 -msgid "Email" +#: bp-themes/bp-default/_inc/options.php:22 +msgid "Settings saved." msgstr "" -#: bp-themes/bp-default/comments.php:137 -msgid "Comment" +#: bp-themes/bp-default/_inc/options.php:34 +msgid "On front page show:" msgstr "" -#: bp-themes/bp-default/comments.php:144 -msgid "Submit" +#: bp-themes/bp-default/_inc/options.php:36 +msgid "Blog Posts" msgstr "" -#: bp-themes/bp-default/comments.php:169 -#, php-format -msgid "%d Trackback" +#: bp-themes/bp-default/_inc/options.php:38 +#: bp-themes/bp-default/functions.php:120 +msgid "Activity Stream" msgstr "" -#: bp-themes/bp-default/comments.php:171 -#, php-format -msgid "%d Trackbacks" +#: bp-themes/bp-default/_inc/options.php:46 +msgid "Update Settings" msgstr "" #: bp-themes/bp-default/footer.php:7 -#, php-format -msgid "" -"%s is proudly powered by <a href=\"http://wordpress.org\">WordPress</a> and " -"<a href=\"http://buddypress.org\">BuddyPress</a>" -msgstr "" - -#: bp-themes/bp-default/forums/forums-loop.php:24 -msgid "Topic Title" -msgstr "" - -#: bp-themes/bp-default/forums/forums-loop.php:25 -msgid "Latest Poster" -msgstr "" - -#: bp-themes/bp-default/forums/forums-loop.php:28 -msgid "Posted In Group" -msgstr "" - -#: bp-themes/bp-default/forums/forums-loop.php:31 -msgid "Posts" -msgstr "" - -#: bp-themes/bp-default/forums/forums-loop.php:32 -msgid "Freshness" -msgstr "" - -#: bp-themes/bp-default/forums/forums-loop.php:45 -msgid "Permalink" -msgstr "" - -#: bp-themes/bp-default/forums/forums-loop.php:95 -msgid "Sorry, there were no forum topics found." -msgstr "" - -#: bp-themes/bp-default/forums/index.php:8 -msgid "Group Forums Directory" -msgstr "" - -#: bp-themes/bp-default/forums/index.php:27 -#: bp-themes/bp-default/groups/single/forum.php:33 -msgid "Post a New Topic:" -msgstr "" - -#: bp-themes/bp-default/forums/index.php:29 -#: bp-themes/bp-default/groups/single/forum.php:35 -#: bp-themes/bp-default/groups/single/forum/edit.php:26 -msgid "Title:" -msgstr "" - -#: bp-themes/bp-default/forums/index.php:32 -#: bp-themes/bp-default/groups/single/forum.php:38 -#: bp-themes/bp-default/groups/single/forum/edit.php:29 -msgid "Content:" -msgstr "" - -#: bp-themes/bp-default/forums/index.php:35 -#: bp-themes/bp-default/groups/single/forum.php:41 -msgid "Tags (comma separated):" +msgid "%s is proudly powered by <a href=\"http://wordpress.org\">WordPress</a> and <a href=\"http://buddypress.org\">BuddyPress</a>" msgstr "" -#: bp-themes/bp-default/forums/index.php:38 -msgid "Post In Group Forum:" -msgstr "" - -#: bp-themes/bp-default/forums/index.php:58 -#: bp-themes/bp-default/groups/single/forum.php:47 -msgid "Post Topic" -msgstr "" - -#: bp-themes/bp-default/forums/index.php:59 -#: bp-xprofile/bp-xprofile-classes.php:633 -msgid "Cancel" -msgstr "" - -#: bp-themes/bp-default/forums/index.php:69 -#, php-format -msgid "" -"You are not a member of any groups so you don't have any group forums you " -"can post in. To start posting, first find a group that matches the topic " -"subject you'd like to start. If this group does not exist, why not <a href='%" -"s'>create a new group</a>? Once you have joined or created the group you can " -"post your topic in that group's forum." -msgstr "" - -#: bp-themes/bp-default/forums/index.php:81 -#, php-format -msgid "All Topics (%s)" -msgstr "" - -#: bp-themes/bp-default/forums/index.php:84 -#, php-format -msgid "My Topics (%s)" -msgstr "" - -#: bp-themes/bp-default/forums/index.php:94 -msgid "Most Posts" -msgstr "" - -#: bp-themes/bp-default/forums/index.php:95 -msgid "Unreplied" -msgstr "" - -#: bp-themes/bp-default/functions.php:26 -msgid "My Favorites" -msgstr "" - -#: bp-themes/bp-default/functions.php:27 -msgid "Accepted" -msgstr "" - -#: bp-themes/bp-default/functions.php:28 -msgid "Rejected" +#: bp-themes/bp-default/sidebar.php:34 +msgid "To start connecting please log in first." msgstr "" -#: bp-themes/bp-default/functions.php:29 -msgid "Show all comments for this thread" +#: bp-themes/bp-default/sidebar.php:36 +msgid " You can also <a href=\"%s\" title=\"Create an account\">create an account</a>." msgstr "" -#: bp-themes/bp-default/functions.php:30 -msgid "Show all" +#: bp-themes/bp-default/sidebar.php:44 +msgid "Password" msgstr "" -#: bp-themes/bp-default/functions.php:31 -msgid "comments" +#: bp-themes/bp-default/sidebar.php:47 +msgid "Remember Me" msgstr "" -#: bp-themes/bp-default/functions.php:33 -#, php-format -msgid "" -"%s is a unique identifier for %s that you can type into any message on this " -"site. %s will be sent a notification and a link to your message any time you " -"use it." +#: bp-themes/bp-default/sidebar.php:62 +msgid "Forum Topic Tags" msgstr "" -#: bp-themes/bp-default/functions.php:79 -msgid "said:" +#: bp-themes/bp-default/comments.php:3 +msgid "Password Protected" msgstr "" -#: bp-themes/bp-default/functions.php:80 -msgid "On" +#: bp-themes/bp-default/comments.php:4 +msgid "Enter the password to view comments." msgstr "" -#: bp-themes/bp-default/functions.php:84 -msgid "Your comment is awaiting moderation." -msgstr "" +#: bp-themes/bp-default/comments.php:28 +msgid "One Response to %2$s" +msgid_plural "%1$s Responses to %2$s" +msgstr[0] "" +msgstr[1] "" -#: bp-themes/bp-default/functions.php:328 -#, php-format -msgid "" -"Theme activated! This theme contains <a href=\"%s\">custom header image</a> " -"support and <a href=\"%s\">sidebar widgets</a>." +#: bp-themes/bp-default/comments.php:58 +msgid "Comments are closed, but <a href=\"%1$s\" title=\"Trackback URL for this post\">trackbacks</a> and pingbacks are open." msgstr "" -#: bp-themes/bp-default/groups/create.php:7 -#: bp-themes/bp-default/groups/index.php:7 -msgid "Groups Directory" +#: bp-themes/bp-default/comments.php:64 +msgid "Comments are closed." msgstr "" -#: bp-themes/bp-default/groups/create.php:26 -msgid "* Group Name" +#: bp-themes/bp-default/comments.php:90 +msgid "Leave a Reply" msgstr "" -#: bp-themes/bp-default/groups/create.php:26 -#: bp-themes/bp-default/groups/create.php:29 -#: bp-themes/bp-default/members/single/profile/edit.php:23 -#: bp-themes/bp-default/members/single/profile/edit.php:30 -#: bp-themes/bp-default/members/single/profile/edit.php:37 -#: bp-themes/bp-default/members/single/profile/edit.php:46 -#: bp-themes/bp-default/members/single/profile/edit.php:60 -#: bp-themes/bp-default/members/single/profile/edit.php:74 -#: bp-themes/bp-default/members/single/profile/edit.php:84 -#: bp-themes/bp-default/registration/register.php:28 -#: bp-themes/bp-default/registration/register.php:32 -#: bp-themes/bp-default/registration/register.php:36 -#: bp-themes/bp-default/registration/register.php:40 -#: bp-themes/bp-default/registration/register.php:67 -#: bp-themes/bp-default/registration/register.php:75 -#: bp-themes/bp-default/registration/register.php:83 -#: bp-themes/bp-default/registration/register.php:93 -#: bp-themes/bp-default/registration/register.php:104 -#: bp-themes/bp-default/registration/register.php:119 -#: bp-themes/bp-default/registration/register.php:130 -#: bp-themes/bp-default/registration/register.php:180 -#: bp-themes/bp-default/registration/register.php:189 -msgid "(required)" +#: bp-themes/bp-default/comments.php:90 +msgid "Leave a Reply to %s" msgstr "" -#: bp-themes/bp-default/groups/create.php:29 -msgid "* Group Description" +#: bp-themes/bp-default/comments.php:94 +msgid "Click here to cancel reply." msgstr "" -#: bp-themes/bp-default/groups/create.php:45 -#: bp-themes/bp-default/groups/single/admin.php:45 -msgid "Enable comment wire" +#: bp-themes/bp-default/comments.php:100 +msgid "You must be <a href=\"%1$s\" title=\"Log in\">logged in</a> to post a comment." msgstr "" -#: bp-themes/bp-default/groups/create.php:52 -#: bp-themes/bp-default/groups/single/admin.php:55 -msgid "Enable discussion forum" +#: bp-themes/bp-default/comments.php:112 +msgid "Logged in as <a href=\"%1$s\" title=\"%2$s\">%2$s</a>." msgstr "" -#: bp-themes/bp-default/groups/create.php:57 -#, php-format -msgid "" -"<strong>Attention Site Admin:</strong> Group forums require the <a href=\"%s" -"\">correct setup and configuration</a> of a bbPress installation." +#: bp-themes/bp-default/comments.php:112 +msgid "Log out of this account" msgstr "" -#: bp-themes/bp-default/groups/create.php:65 -#: bp-themes/bp-default/groups/single/admin.php:64 -msgid "Privacy Options" +#: bp-themes/bp-default/comments.php:112 +msgid "Log out →" msgstr "" -#: bp-themes/bp-default/groups/create.php:69 -#: bp-themes/bp-default/groups/single/admin.php:69 -msgid "This is a public group" +#: bp-themes/bp-default/comments.php:120 bp-themes/bp-default/comments.php:125 +msgid "*" msgstr "" -#: bp-themes/bp-default/groups/create.php:71 -#: bp-themes/bp-default/groups/single/admin.php:71 -msgid "Any site member can join this group." +#: bp-themes/bp-default/comments.php:125 +msgid "Email" msgstr "" -#: bp-themes/bp-default/groups/create.php:72 -#: bp-themes/bp-default/groups/create.php:81 -#: bp-themes/bp-default/groups/single/admin.php:72 -#: bp-themes/bp-default/groups/single/admin.php:82 -msgid "" -"This group will be listed in the groups directory and in search results." +#: bp-themes/bp-default/comments.php:137 +msgid "Comment" msgstr "" -#: bp-themes/bp-default/groups/create.php:73 -#: bp-themes/bp-default/groups/single/admin.php:73 -msgid "Group content and activity will be visible to any site member." +#: bp-themes/bp-default/comments.php:144 +msgid "Submit" msgstr "" -#: bp-themes/bp-default/groups/create.php:78 -#: bp-themes/bp-default/groups/single/admin.php:79 -msgid "This is a private group" +#: bp-themes/bp-default/comments.php:169 +msgid "%d Trackback" msgstr "" -#: bp-themes/bp-default/groups/create.php:80 -#: bp-themes/bp-default/groups/single/admin.php:81 -msgid "Only users who request membership and are accepted can join the group." +#: bp-themes/bp-default/comments.php:171 +msgid "%d Trackbacks" msgstr "" -#: bp-themes/bp-default/groups/create.php:82 -#: bp-themes/bp-default/groups/create.php:91 -#: bp-themes/bp-default/groups/single/admin.php:83 -#: bp-themes/bp-default/groups/single/admin.php:93 -msgid "" -"Group content and activity will only be visible to members of the group." +#: bp-themes/bp-default/404.php:10 +msgid "Page Not Found" msgstr "" -#: bp-themes/bp-default/groups/create.php:87 -#: bp-themes/bp-default/groups/single/admin.php:89 -msgid "This is a hidden group" +#: bp-themes/bp-default/404.php:14 +msgid "The page you were looking for was not found." msgstr "" -#: bp-themes/bp-default/groups/create.php:89 -#: bp-themes/bp-default/groups/single/admin.php:91 -msgid "Only users who are invited can join the group." +#: bp-themes/bp-default/functions.php:26 +msgid "My Favorites" msgstr "" -#: bp-themes/bp-default/groups/create.php:90 -#: bp-themes/bp-default/groups/single/admin.php:92 -msgid "" -"This group will not be listed in the groups directory or search results." +#: bp-themes/bp-default/functions.php:27 +msgid "Accepted" msgstr "" -#: bp-themes/bp-default/groups/create.php:114 -#: bp-themes/bp-default/groups/single/admin.php:110 -msgid "" -"Upload an image to use as an avatar for this group. The image will be shown " -"on the main group page, and in search results." +#: bp-themes/bp-default/functions.php:28 +msgid "Rejected" msgstr "" -#: bp-themes/bp-default/groups/create.php:118 -#: bp-themes/bp-default/groups/single/admin.php:114 -#: bp-themes/bp-default/members/single/profile/change-avatar.php:17 -#: bp-themes/bp-default/registration/register.php:244 -msgid "Upload Image" +#: bp-themes/bp-default/functions.php:29 +msgid "Show all comments for this thread" msgstr "" -#: bp-themes/bp-default/groups/create.php:122 -msgid "To skip the avatar upload process, hit the \"Next Step\" button." +#: bp-themes/bp-default/functions.php:30 +msgid "Show all" msgstr "" -#: bp-themes/bp-default/groups/create.php:129 -msgid "Crop Group Avatar" +#: bp-themes/bp-default/functions.php:31 +msgid "comments" msgstr "" -#: bp-themes/bp-default/groups/create.php:131 -#: bp-themes/bp-default/groups/single/admin.php:134 -#: bp-themes/bp-default/members/single/profile/change-avatar.php:34 -#: bp-themes/bp-default/registration/register.php:258 -msgid "Avatar to crop" +#: bp-themes/bp-default/functions.php:33 +msgid "%s is a unique identifier for %s that you can type into any message on this site. %s will be sent a notification and a link to your message any time you use it." msgstr "" -#: bp-themes/bp-default/groups/create.php:134 -#: bp-themes/bp-default/groups/single/admin.php:137 -#: bp-themes/bp-default/members/single/profile/change-avatar.php:37 -#: bp-themes/bp-default/registration/register.php:261 -msgid "Avatar preview" +#: bp-themes/bp-default/functions.php:79 +msgid "said:" msgstr "" -#: bp-themes/bp-default/groups/create.php:137 -#: bp-themes/bp-default/groups/single/admin.php:140 -#: bp-themes/bp-default/members/single/profile/change-avatar.php:40 -#: bp-themes/bp-default/registration/register.php:264 -msgid "Crop Image" +#: bp-themes/bp-default/functions.php:80 +msgid "On" msgstr "" -#: bp-themes/bp-default/groups/create.php:175 -#: bp-themes/bp-default/groups/single/send-invites.php:22 -msgid "Select people to invite from your friends list." +#: bp-themes/bp-default/functions.php:84 +msgid "Your comment is awaiting moderation." msgstr "" -#: bp-themes/bp-default/groups/create.php:206 -#: bp-themes/bp-default/groups/single/send-invites.php:73 -msgid "" -"Once you have built up friend connections you will be able to invite others " -"to your group. You can send invites any time in the future by selecting the " -"\"Send Invites\" option when viewing your new group." +#: bp-themes/bp-default/functions.php:329 +msgid "Theme activated! This theme contains <a href=\"%s\">custom header image</a> support and <a href=\"%s\">sidebar widgets</a>." msgstr "" -#: bp-themes/bp-default/groups/create.php:224 -msgid "Previous Step" +#: bp-themes/bp-default/page.php:18 +msgid "<p class=\"serif\">Read the rest of this page →</p>" msgstr "" -#: bp-themes/bp-default/groups/create.php:229 -msgid "Next Step" +#: bp-themes/bp-default/page.php:20 bp-themes/bp-default/attachment.php:27 +#: bp-themes/bp-default/single.php:34 +msgid "<p><strong>Pages:</strong> " msgstr "" -#: bp-themes/bp-default/groups/create.php:234 -msgid "Create Group and Continue" +#: bp-themes/bp-default/page.php:21 +msgid "Edit this entry." msgstr "" -#: bp-themes/bp-default/groups/create.php:239 -msgid "Finish" +#: bp-themes/bp-default/header.php:18 +msgid "Site Wide Activity RSS Feed" msgstr "" -#: bp-themes/bp-default/groups/groups-loop.php:74 -msgid "There were no groups found." +#: bp-themes/bp-default/header.php:22 +msgid "Activity RSS Feed" msgstr "" -#: bp-themes/bp-default/groups/index.php:17 -#, php-format -msgid "All Groups (%s)" +#: bp-themes/bp-default/header.php:26 +msgid "Group Activity RSS Feed" msgstr "" -#: bp-themes/bp-default/groups/index.php:30 -#: bp-themes/bp-default/members/single/groups.php:13 -msgid "Most Members" +#: bp-themes/bp-default/header.php:29 +msgid "Blog Posts RSS Feed" msgstr "" -#: bp-themes/bp-default/groups/index.php:31 -#: bp-themes/bp-default/members/single/groups.php:14 -msgid "Newly Created" +#: bp-themes/bp-default/header.php:30 +msgid "Blog Posts Atom Feed" msgstr "" -#: bp-themes/bp-default/groups/single/admin.php:16 -msgid "Group Name" +#: bp-themes/bp-default/members/index.php:8 +msgid "Members Directory" msgstr "" -#: bp-themes/bp-default/groups/single/admin.php:19 -msgid "Group Description" +#: bp-themes/bp-default/members/index.php:18 +#: bp-themes/bp-default/activity/index.php:22 +msgid "All Members (%s)" msgstr "" -#: bp-themes/bp-default/groups/single/admin.php:25 -msgid "Notify group members of changes via email" +#: bp-themes/bp-default/members/index.php:21 +#: bp-themes/bp-default/activity/index.php:30 +msgid "My Friends (%s)" msgstr "" -#: bp-themes/bp-default/groups/single/admin.php:120 -msgid "" -"If you'd like to remove the existing avatar but not upload a new one, please " -"use the delete avatar button." +#: bp-themes/bp-default/members/index.php:30 +#: bp-themes/bp-default/members/single/friends.php:11 +#: bp-themes/bp-default/members/single/groups.php:12 +#: bp-themes/bp-default/members/single/blogs.php:8 +#: bp-themes/bp-default/blogs/index.php:30 +#: bp-themes/bp-default/forums/index.php:93 +#: bp-themes/bp-default/groups/index.php:29 +msgid "Last Active" msgstr "" -#: bp-themes/bp-default/groups/single/admin.php:122 -#: bp-themes/bp-default/members/single/profile/change-avatar.php:23 -msgid "Delete Avatar" +#: bp-themes/bp-default/members/index.php:31 +#: bp-themes/bp-default/members/single/friends.php:12 +msgid "Newest Registered" msgstr "" -#: bp-themes/bp-default/groups/single/admin.php:132 -msgid "Crop Avatar" +#: bp-themes/bp-default/members/index.php:34 +#: bp-themes/bp-default/members/single/friends.php:13 +#: bp-themes/bp-default/members/single/groups.php:15 +#: bp-themes/bp-default/members/single/blogs.php:10 +#: bp-themes/bp-default/blogs/index.php:32 +#: bp-themes/bp-default/groups/index.php:32 +msgid "Alphabetical" msgstr "" -#: bp-themes/bp-default/groups/single/admin.php:160 -msgid "Administrators" +#: bp-themes/bp-default/members/members-loop.php:87 +msgid "Sorry, no members were found." msgstr "" -#: bp-themes/bp-default/groups/single/admin.php:167 -msgid "Moderators" +#: bp-themes/bp-default/members/single/profile/change-avatar.php:7 +msgid "Your avatar will be used on your profile and throughout the site. If there is a <a href=\"http://gravatar.com\">Gravatar</a> associated with your account email we will use that, or you can upload an image from your computer." msgstr "" -#: bp-themes/bp-default/groups/single/admin.php:203 -msgid "(banned)" +#: bp-themes/bp-default/members/single/profile/change-avatar.php:13 +msgid "Click below to select a JPG, GIF or PNG format photo from your computer and then click 'Upload Image' to proceed." msgstr "" -#: bp-themes/bp-default/groups/single/admin.php:209 -msgid "Unban this member" +#: bp-themes/bp-default/members/single/profile/change-avatar.php:22 +msgid "If you'd like to delete your current avatar but not upload a new one, please use the delete avatar button." msgstr "" -#: bp-themes/bp-default/groups/single/admin.php:209 -msgid "Remove Ban" +#: bp-themes/bp-default/members/single/profile/change-avatar.php:23 +#: bp-themes/bp-default/groups/single/admin.php:122 +msgid "Delete Avatar" msgstr "" -#: bp-themes/bp-default/groups/single/admin.php:213 -msgid "Kick and ban this member" +#: bp-themes/bp-default/members/single/profile/change-avatar.php:23 +msgid "Delete My Avatar" msgstr "" -#: bp-themes/bp-default/groups/single/admin.php:213 -msgid "Kick & Ban" +#: bp-themes/bp-default/members/single/profile/change-avatar.php:56 +msgid "Your avatar will be used on your profile and throughout the site. To change your avatar, please create an account with <a href=\"http://gravatar.com\">Gravatar</a> using the same email address as you used to register with this site." msgstr "" -#: bp-themes/bp-default/groups/single/admin.php:214 -msgid "Promote to Mod" +#: bp-themes/bp-default/members/single/profile/edit.php:9 +msgid "Editing '%s' Profile Group" msgstr "" -#: bp-themes/bp-default/groups/single/admin.php:219 -msgid "Remove this member" +#: bp-themes/bp-default/members/single/groups.php:13 +#: bp-themes/bp-default/groups/index.php:30 +msgid "Most Members" msgstr "" -#: bp-themes/bp-default/groups/single/admin.php:219 -msgid "Remove from group" +#: bp-themes/bp-default/members/single/groups.php:14 +#: bp-themes/bp-default/groups/index.php:31 +msgid "Newly Created" msgstr "" -#: bp-themes/bp-default/groups/single/admin.php:233 -#: bp-themes/bp-default/groups/single/members.php:51 -msgid "This group has no members." +#: bp-themes/bp-default/members/single/messages/compose.php:5 +msgid "Send To (Username or Friend's Name)" msgstr "" -#: bp-themes/bp-default/groups/single/admin.php:263 -#: bp-themes/bp-default/members/single/friends/requests.php:21 -#: bp-themes/bp-default/members/single/groups/invites.php:20 -msgid "Accept" +#: bp-themes/bp-default/members/single/messages/compose.php:14 +msgid "This is a notice to all users." msgstr "" -#: bp-themes/bp-default/groups/single/admin.php:265 -#: bp-themes/bp-default/members/single/friends/requests.php:22 -#: bp-themes/bp-default/members/single/groups/invites.php:21 -msgid "Reject" +#: bp-themes/bp-default/members/single/messages/compose.php:17 +msgid "Subject" msgstr "" -#: bp-themes/bp-default/groups/single/admin.php:278 -msgid "There are no pending membership requests." +#: bp-themes/bp-default/members/single/messages/compose.php:20 +msgid "Message" msgstr "" -#: bp-themes/bp-default/groups/single/admin.php:295 -msgid "" -"WARNING: Deleting this group will completely remove ALL content associated " -"with it. There is no way back, please be careful with this option." +#: bp-themes/bp-default/members/single/messages/compose.php:28 +msgid "Send Message" msgstr "" -#: bp-themes/bp-default/groups/single/admin.php:298 -msgid "I understand the consequences of deleting this group." +#: bp-themes/bp-default/members/single/messages/notices-loop.php:31 +msgid "Sent:" msgstr "" -#: bp-themes/bp-default/groups/single/forum.php:29 -msgid "You will auto join this group when you start a new topic." +#: bp-themes/bp-default/members/single/messages/notices-loop.php:38 +#: bp-themes/bp-default/members/single/messages/messages-loop.php:50 +msgid "Delete Message" msgstr "" -#: bp-themes/bp-default/groups/single/forum/edit.php:9 -#: bp-themes/bp-default/groups/single/forum/topic.php:21 -msgid "Group Forum" +#: bp-themes/bp-default/members/single/messages/notices-loop.php:49 +msgid "Sorry, no notices were found." msgstr "" -#: bp-themes/bp-default/groups/single/forum/edit.php:9 -#: bp-themes/bp-default/groups/single/forum/topic.php:21 -msgid "Group Forum Directory" +#: bp-themes/bp-default/members/single/messages/messages-loop.php:31 +msgid "From:" msgstr "" -#: bp-themes/bp-default/groups/single/forum/edit.php:24 -msgid "Edit Topic:" +#: bp-themes/bp-default/members/single/messages/messages-loop.php:36 +msgid "To:" msgstr "" -#: bp-themes/bp-default/groups/single/forum/edit.php:46 -msgid "Edit Post:" +#: bp-themes/bp-default/members/single/messages/messages-loop.php:42 +msgid "View Message" msgstr "" -#: bp-themes/bp-default/groups/single/forum/edit.php:67 -msgid "This topic does not exist." +#: bp-themes/bp-default/members/single/messages/messages-loop.php:68 +msgid "Sorry, no messages were found." msgstr "" -#: bp-themes/bp-default/groups/single/forum/topic.php:42 -#, php-format -msgid "%s said %s ago:" +#: bp-themes/bp-default/members/single/messages/single.php:11 +msgid "Sent between %s and %s" msgstr "" -#: bp-themes/bp-default/groups/single/forum/topic.php:56 -msgid "Permanent link to this post" +#: bp-themes/bp-default/members/single/messages/single.php:63 +msgid "Send a Reply" msgstr "" -#: bp-themes/bp-default/groups/single/forum/topic.php:87 -msgid "You will auto join this group when you reply to this topic." +#: bp-themes/bp-default/members/single/messages/single.php:79 +msgid "Send Reply" msgstr "" -#: bp-themes/bp-default/groups/single/forum/topic.php:92 -msgid "Add a reply:" +#: bp-themes/bp-default/members/single/groups/invites.php:20 +#: bp-themes/bp-default/members/single/friends/requests.php:21 +#: bp-themes/bp-default/groups/single/admin.php:263 +msgid "Accept" msgstr "" -#: bp-themes/bp-default/groups/single/forum/topic.php:97 -msgid "Post Reply" +#: bp-themes/bp-default/members/single/groups/invites.php:21 +#: bp-themes/bp-default/members/single/friends/requests.php:22 +#: bp-themes/bp-default/groups/single/admin.php:265 +msgid "Reject" msgstr "" -#: bp-themes/bp-default/groups/single/forum/topic.php:108 -msgid "This topic is closed, replies are no longer accepted." +#: bp-themes/bp-default/members/single/groups/invites.php:34 +msgid "You have no outstanding group invites." msgstr "" -#: bp-themes/bp-default/groups/single/forum/topic.php:121 -msgid "There are no posts for this topic." +#: bp-themes/bp-default/members/single/friends/requests.php:36 +msgid "You have no pending friendship requests." msgstr "" -#: bp-themes/bp-default/groups/single/group-header.php:6 -msgid "Group Admins" +#: bp-themes/bp-default/members/single/activity.php:7 +#: bp-themes/bp-default/activity/index.php:66 +#: bp-themes/bp-default/groups/single/activity.php:9 +msgid "No Filter" msgstr "" -#: bp-themes/bp-default/groups/single/group-header.php:14 -msgid "Group Mods" +#: bp-themes/bp-default/members/single/activity.php:8 +#: bp-themes/bp-default/activity/index.php:67 +#: bp-themes/bp-default/groups/single/activity.php:10 +msgid "Show Updates" msgstr "" -#: bp-themes/bp-default/groups/single/request-membership.php:4 -#, php-format -msgid "You are requesting to become a member of the group '%s'." +#: bp-themes/bp-default/members/single/activity.php:12 +#: bp-themes/bp-default/activity/index.php:70 +msgid "Show Blog Posts" msgstr "" -#: bp-themes/bp-default/groups/single/request-membership.php:7 -msgid "Comments (optional)" +#: bp-themes/bp-default/members/single/activity.php:13 +#: bp-themes/bp-default/activity/index.php:71 +msgid "Show Blog Comments" msgstr "" -#: bp-themes/bp-default/groups/single/request-membership.php:12 -msgid "Send Request" +#: bp-themes/bp-default/members/single/activity.php:17 +#: bp-themes/bp-default/activity/index.php:85 +msgid "Show Friendship Connections" msgstr "" -#: bp-themes/bp-default/header.php:18 -msgid "Site Wide Activity RSS Feed" +#: bp-themes/bp-default/members/single/activity.php:22 +#: bp-themes/bp-default/activity/index.php:75 +#: bp-themes/bp-default/groups/single/activity.php:13 +msgid "Show New Forum Topics" msgstr "" -#: bp-themes/bp-default/header.php:22 -msgid "Activity RSS Feed" +#: bp-themes/bp-default/members/single/activity.php:23 +#: bp-themes/bp-default/activity/index.php:76 +#: bp-themes/bp-default/groups/single/activity.php:14 +msgid "Show Forum Replies" msgstr "" -#: bp-themes/bp-default/header.php:26 -msgid "Group Activity RSS Feed" +#: bp-themes/bp-default/members/single/activity.php:27 +#: bp-themes/bp-default/activity/index.php:80 +msgid "Show New Groups" msgstr "" -#: bp-themes/bp-default/header.php:29 -msgid "Blog Posts RSS Feed" +#: bp-themes/bp-default/members/single/activity.php:28 +#: bp-themes/bp-default/activity/index.php:81 +#: bp-themes/bp-default/groups/single/activity.php:17 +msgid "Show New Group Memberships" msgstr "" -#: bp-themes/bp-default/header.php:30 -msgid "Blog Posts Atom Feed" +#: bp-themes/bp-default/activity/index.php:7 +msgid "Site Activity" msgstr "" -#: bp-themes/bp-default/index.php:51 -msgid "Sorry, but you are looking for something that isn't here." +#: bp-themes/bp-default/activity/index.php:22 +msgid "The public activity for everyone on this site." msgstr "" -#: bp-themes/bp-default/links.php:16 -msgid "Links" +#: bp-themes/bp-default/activity/index.php:30 +msgid "The activity of my friends only." msgstr "" -#: bp-themes/bp-default/members/index.php:8 -msgid "Members Directory" +#: bp-themes/bp-default/activity/index.php:38 +msgid "The activity of groups I am a member of." msgstr "" -#: bp-themes/bp-default/members/index.php:31 -#: bp-themes/bp-default/members/single/friends.php:12 -msgid "Newest Registered" +#: bp-themes/bp-default/activity/index.php:38 +#: bp-themes/bp-default/groups/index.php:20 +msgid "My Groups (%s)" msgstr "" -#: bp-themes/bp-default/members/members-loop.php:87 -msgid "Sorry, no members were found." +#: bp-themes/bp-default/activity/index.php:45 +msgid "The activity I've marked as a favorite." msgstr "" -#: bp-themes/bp-default/members/single/friends/requests.php:36 -msgid "You have no pending friendship requests." +#: bp-themes/bp-default/activity/index.php:45 +msgid "My Favorites (<span>%s</span>)" msgstr "" -#: bp-themes/bp-default/members/single/groups/invites.php:34 -msgid "You have no outstanding group invites." +#: bp-themes/bp-default/activity/index.php:50 +msgid "Activity that I have been mentioned in." msgstr "" -#: bp-themes/bp-default/members/single/messages/compose.php:5 -msgid "Send To (Username or Friend's Name)" +#: bp-themes/bp-default/activity/index.php:50 +msgid "(%s new)" msgstr "" -#: bp-themes/bp-default/members/single/messages/compose.php:14 -msgid "This is a notice to all users." +#: bp-themes/bp-default/activity/index.php:60 +#: bp-themes/bp-default/groups/single/activity.php:3 +msgid "RSS Feed" msgstr "" -#: bp-themes/bp-default/members/single/messages/compose.php:17 -msgid "Subject" +#: bp-themes/bp-default/activity/index.php:60 +#: bp-themes/bp-default/groups/single/activity.php:3 +msgid "RSS" msgstr "" -#: bp-themes/bp-default/members/single/messages/compose.php:20 -msgid "Message" +#: bp-themes/bp-default/activity/index.php:88 +msgid "Show New Members" msgstr "" -#: bp-themes/bp-default/members/single/messages/compose.php:28 -msgid "Send Message" +#: bp-themes/bp-default/activity/post-form.php:7 +msgid "You are mentioning %s in a new update, this user will be sent a notification of your message." msgstr "" -#: bp-themes/bp-default/members/single/messages/messages-loop.php:31 -msgid "From:" +#: bp-themes/bp-default/activity/post-form.php:19 +msgid "What's new in %s, %s?" msgstr "" -#: bp-themes/bp-default/members/single/messages/messages-loop.php:36 -msgid "To:" +#: bp-themes/bp-default/activity/post-form.php:21 +msgid "What's new %s?" msgstr "" -#: bp-themes/bp-default/members/single/messages/messages-loop.php:42 -msgid "View Message" +#: bp-themes/bp-default/activity/post-form.php:33 +msgid "Post Update" msgstr "" -#: bp-themes/bp-default/members/single/messages/messages-loop.php:50 -#: bp-themes/bp-default/members/single/messages/notices-loop.php:38 -msgid "Delete Message" +#: bp-themes/bp-default/activity/post-form.php:38 +msgid "Post in" msgstr "" -#: bp-themes/bp-default/members/single/messages/messages-loop.php:68 -msgid "Sorry, no messages were found." +#: bp-themes/bp-default/activity/entry.php:33 +msgid "Mark as Favorite" msgstr "" -#: bp-themes/bp-default/members/single/messages/notices-loop.php:31 -msgid "Sent:" +#: bp-themes/bp-default/activity/entry.php:45 +#: bp-activity/feeds/bp-activity-friends-feed.php:48 +#: bp-activity/feeds/bp-activity-mentions-feed.php:47 +#: bp-activity/feeds/bp-activity-personal-feed.php:47 +#: bp-activity/feeds/bp-activity-favorites-feed.php:52 +msgid "In reply to" msgstr "" -#: bp-themes/bp-default/members/single/messages/notices-loop.php:49 -msgid "Sorry, no notices were found." +#: bp-themes/bp-default/activity/entry.php:46 +#: bp-activity/bp-activity-templatetags.php:580 +msgid "View Thread / Permalink" msgstr "" -#: bp-themes/bp-default/members/single/messages/single.php:11 -#, php-format -msgid "Sent between %s and %s" +#: bp-themes/bp-default/activity/entry.php:63 +msgid "Post" msgstr "" -#: bp-themes/bp-default/members/single/messages/single.php:63 -msgid "Send a Reply" +#: bp-themes/bp-default/activity/entry.php:63 +msgid "or press esc to cancel." msgstr "" -#: bp-themes/bp-default/members/single/messages/single.php:79 -msgid "Send Reply" +#: bp-themes/bp-default/activity/activity-loop.php:27 +msgid "Load More" msgstr "" -#: bp-themes/bp-default/members/single/profile/change-avatar.php:1 -#: bp-xprofile.php:179 -msgid "Change Avatar" +#: bp-themes/bp-default/activity/activity-loop.php:37 +msgid "Sorry, there was no activity found. Please try a different filter." msgstr "" -#: bp-themes/bp-default/members/single/profile/change-avatar.php:7 -msgid "" -"Your avatar will be used on your profile and throughout the site. If there " -"is a <a href=\"http://gravatar.com\">Gravatar</a> associated with your " -"account email we will use that, or you can upload an image from your " -"computer." +#: bp-themes/bp-default/blogs/index.php:8 +#: bp-themes/bp-default/blogs/create.php:10 +msgid "Blogs Directory" msgstr "" -#: bp-themes/bp-default/members/single/profile/change-avatar.php:13 -msgid "" -"Click below to select a JPG, GIF or PNG format photo from your computer and " -"then click 'Upload Image' to proceed." +#: bp-themes/bp-default/blogs/index.php:18 +msgid "All Blogs (%s)" msgstr "" -#: bp-themes/bp-default/members/single/profile/change-avatar.php:22 -msgid "" -"If you'd like to delete your current avatar but not upload a new one, please " -"use the delete avatar button." +#: bp-themes/bp-default/blogs/index.php:21 +msgid "My Blogs (%s)" msgstr "" -#: bp-themes/bp-default/members/single/profile/change-avatar.php:23 -msgid "Delete My Avatar" +#: bp-themes/bp-default/blogs/blogs-loop.php:71 +msgid "Sorry, there were no blogs found." msgstr "" -#: bp-themes/bp-default/members/single/profile/change-avatar.php:32 -#: bp-themes/bp-default/registration/register.php:256 -msgid "Crop Your New Avatar" +#: bp-themes/bp-default/blogs/create.php:21 +msgid "Blog registration is currently disabled" msgstr "" -#: bp-themes/bp-default/members/single/profile/change-avatar.php:56 -msgid "" -"Your avatar will be used on your profile and throughout the site. To change " -"your avatar, please create an account with <a href=\"http://gravatar.com" -"\">Gravatar</a> using the same email address as you used to register with " -"this site." +#: bp-themes/bp-default/forums/index.php:8 +msgid "Group Forums Directory" msgstr "" -#: bp-themes/bp-default/members/single/profile/edit.php:9 -#, php-format -msgid "Editing '%s' Profile Group" +#: bp-themes/bp-default/forums/index.php:27 +#: bp-themes/bp-default/groups/single/forum.php:33 +msgid "Post a New Topic:" msgstr "" -#: bp-themes/bp-default/members/single/profile/edit.php:52 -#: bp-themes/bp-default/members/single/profile/edit.php:65 -#: bp-themes/bp-default/registration/register.php:110 -msgid "Clear" +#: bp-themes/bp-default/forums/index.php:29 +#: bp-themes/bp-default/groups/single/forum/edit.php:26 +#: bp-themes/bp-default/groups/single/forum.php:35 +msgid "Title:" msgstr "" -#: bp-themes/bp-default/page.php:18 -msgid "<p class=\"serif\">Read the rest of this page →</p>" +#: bp-themes/bp-default/forums/index.php:32 +#: bp-themes/bp-default/groups/single/forum/edit.php:29 +#: bp-themes/bp-default/groups/single/forum.php:38 +msgid "Content:" msgstr "" -#: bp-themes/bp-default/page.php:21 -msgid "Edit this entry." +#: bp-themes/bp-default/forums/index.php:35 +#: bp-themes/bp-default/groups/single/forum.php:41 +msgid "Tags (comma separated):" msgstr "" -#: bp-themes/bp-default/registration/activate.php:16 -msgid "Account Activated" +#: bp-themes/bp-default/forums/index.php:38 +msgid "Post In Group Forum:" msgstr "" -#: bp-themes/bp-default/registration/activate.php:21 -msgid "" -"Your account was activated successfully! Your account details have been sent " -"to you in a separate email." +#: bp-themes/bp-default/forums/index.php:58 +#: bp-themes/bp-default/groups/single/forum.php:47 +msgid "Post Topic" msgstr "" -#: bp-themes/bp-default/registration/activate.php:23 -msgid "" -"Your account was activated successfully! You can now log in with the " -"username and password you provided when you signed up." +#: bp-themes/bp-default/forums/index.php:69 +msgid "You are not a member of any groups so you don't have any group forums you can post in. To start posting, first find a group that matches the topic subject you'd like to start. If this group does not exist, why not <a href='%s'>create a new group</a>? Once you have joined or created the group you can post your topic in that group's forum." msgstr "" -#: bp-themes/bp-default/registration/activate.php:32 -msgid "Please provide a valid activation key." +#: bp-themes/bp-default/forums/index.php:81 +msgid "All Topics (%s)" msgstr "" -#: bp-themes/bp-default/registration/activate.php:36 -msgid "Activation Key:" +#: bp-themes/bp-default/forums/index.php:84 +msgid "My Topics (%s)" msgstr "" -#: bp-themes/bp-default/registration/register.php:18 -msgid "" -"Registering for this site is easy, just fill in the fields below and we'll " -"get a new account set up for you in no time." +#: bp-themes/bp-default/forums/index.php:94 +msgid "Most Posts" msgstr "" -#: bp-themes/bp-default/registration/register.php:26 -msgid "Account Details" +#: bp-themes/bp-default/forums/index.php:95 +msgid "Unreplied" msgstr "" -#: bp-themes/bp-default/registration/register.php:28 -#: bp-themes/bp-default/sidebar.php:41 -msgid "Username" +#: bp-themes/bp-default/forums/forums-loop.php:24 +msgid "Topic Title" msgstr "" -#: bp-themes/bp-default/registration/register.php:32 -msgid "Email Address" +#: bp-themes/bp-default/forums/forums-loop.php:25 +msgid "Latest Poster" msgstr "" -#: bp-themes/bp-default/registration/register.php:36 -msgid "Choose a Password" +#: bp-themes/bp-default/forums/forums-loop.php:28 +msgid "Posted In Group" msgstr "" -#: bp-themes/bp-default/registration/register.php:40 -msgid "Confirm Password" +#: bp-themes/bp-default/forums/forums-loop.php:31 +msgid "Posts" msgstr "" -#: bp-themes/bp-default/registration/register.php:56 -msgid "Profile Details" +#: bp-themes/bp-default/forums/forums-loop.php:32 +msgid "Freshness" msgstr "" -#: bp-themes/bp-default/registration/register.php:174 -msgid "Blog Details" +#: bp-themes/bp-default/forums/forums-loop.php:45 +msgid "Permalink" msgstr "" -#: bp-themes/bp-default/registration/register.php:176 -msgid "Yes, I'd like to create a new blog" +#: bp-themes/bp-default/forums/forums-loop.php:95 +msgid "Sorry, there were no forum topics found." msgstr "" -#: bp-themes/bp-default/registration/register.php:180 -msgid "Blog URL" +#: bp-themes/bp-default/groups/index.php:7 +#: bp-themes/bp-default/groups/create.php:7 +msgid "Groups Directory" msgstr "" -#: bp-themes/bp-default/registration/register.php:189 -msgid "Blog Title" +#: bp-themes/bp-default/groups/index.php:17 +msgid "All Groups (%s)" msgstr "" -#: bp-themes/bp-default/registration/register.php:193 -msgid "" -"I would like my blog to appear in search engines, and in public listings " -"around this site" +#: bp-themes/bp-default/groups/groups-loop.php:74 +msgid "There were no groups found." msgstr "" -#: bp-themes/bp-default/registration/register.php:210 -msgid "Complete Sign Up" +#: bp-themes/bp-default/groups/single/members.php:51 +#: bp-themes/bp-default/groups/single/admin.php:233 +msgid "This group has no members." msgstr "" -#: bp-themes/bp-default/registration/register.php:221 -msgid "Sign Up Complete!" +#: bp-themes/bp-default/groups/single/forum/edit.php:9 +#: bp-themes/bp-default/groups/single/forum/topic.php:21 +msgid "Group Forum" msgstr "" -#: bp-themes/bp-default/registration/register.php:226 -msgid "" -"You have successfully created your account! To begin using this site you " -"will need to activate your account via the email we have just sent to your " -"address." +#: bp-themes/bp-default/groups/single/forum/edit.php:9 +#: bp-themes/bp-default/groups/single/forum/topic.php:21 +msgid "Group Forum Directory" msgstr "" -#: bp-themes/bp-default/registration/register.php:228 -msgid "" -"You have successfully created your account! Please log in using the username " -"and password you have just created." +#: bp-themes/bp-default/groups/single/forum/edit.php:24 +msgid "Edit Topic:" msgstr "" -#: bp-themes/bp-default/registration/register.php:235 -msgid "Your Current Avatar" +#: bp-themes/bp-default/groups/single/forum/edit.php:46 +msgid "Edit Post:" msgstr "" -#: bp-themes/bp-default/registration/register.php:236 -msgid "" -"We've fetched an avatar for your new account. If you'd like to change this, " -"why not upload a new one?" +#: bp-themes/bp-default/groups/single/forum/edit.php:67 +msgid "This topic does not exist." msgstr "" -#: bp-themes/bp-default/search.php:14 -msgid "Search Results" +#: bp-themes/bp-default/groups/single/forum/topic.php:42 +msgid "%s said %s ago:" msgstr "" -#: bp-themes/bp-default/search.php:57 -msgid "No posts found. Try a different search?" +#: bp-themes/bp-default/groups/single/forum/topic.php:56 +msgid "Permanent link to this post" msgstr "" -#: bp-themes/bp-default/sidebar.php:34 -msgid "To start connecting please log in first." +#: bp-themes/bp-default/groups/single/forum/topic.php:87 +msgid "You will auto join this group when you reply to this topic." msgstr "" -#: bp-themes/bp-default/sidebar.php:36 -#, php-format -msgid "" -" You can also <a href=\"%s\" title=\"Create an account\">create an account</" -"a>." +#: bp-themes/bp-default/groups/single/forum/topic.php:92 +msgid "Add a reply:" msgstr "" -#: bp-themes/bp-default/sidebar.php:44 -msgid "Password" +#: bp-themes/bp-default/groups/single/forum/topic.php:97 +msgid "Post Reply" msgstr "" -#: bp-themes/bp-default/sidebar.php:47 -msgid "Remember Me" +#: bp-themes/bp-default/groups/single/forum/topic.php:108 +msgid "This topic is closed, replies are no longer accepted." msgstr "" -#: bp-themes/bp-default/sidebar.php:62 -msgid "Forum Topic Tags" +#: bp-themes/bp-default/groups/single/forum/topic.php:121 +msgid "There are no posts for this topic." msgstr "" -#: bp-themes/bp-default/single.php:29 -msgid "Edit this entry" +#: bp-themes/bp-default/groups/single/request-membership.php:4 +msgid "You are requesting to become a member of the group '%s'." msgstr "" -#: bp-themes/bp-default/single.php:46 -msgid "Sorry, no posts matched your criteria." +#: bp-themes/bp-default/groups/single/request-membership.php:7 +msgid "Comments (optional)" msgstr "" -#: bp-xprofile.php:148 bp-xprofile/bp-xprofile-admin.php:38 -msgid "Profile Field Setup" +#: bp-themes/bp-default/groups/single/request-membership.php:12 +msgid "Send Request" msgstr "" -#: bp-xprofile.php:178 bp-xprofile/bp-xprofile-templatetags.php:695 -#: bp-xprofile/bp-xprofile-templatetags.php:696 -msgid "Edit Profile" +#: bp-themes/bp-default/groups/single/send-invites.php:22 +#: bp-themes/bp-default/groups/create.php:175 +msgid "Select people to invite from your friends list." msgstr "" -#: bp-xprofile.php:216 -#, php-format -msgid "Edit %s's Profile" +#: bp-themes/bp-default/groups/single/send-invites.php:73 +#: bp-themes/bp-default/groups/create.php:206 +msgid "Once you have built up friend connections you will be able to invite others to your group. You can send invites any time in the future by selecting the \"Send Invites\" option when viewing your new group." msgstr "" -#: bp-xprofile.php:217 -#, php-format -msgid "Edit %s's Avatar" +#: bp-themes/bp-default/groups/single/forum.php:29 +msgid "You will auto join this group when you start a new topic." msgstr "" -#: bp-xprofile.php:220 -msgid "Mark as Spammer" +#: bp-themes/bp-default/groups/single/group-header.php:6 +msgid "Group Admins" msgstr "" -#: bp-xprofile.php:222 -msgid "Not a Spammer" +#: bp-themes/bp-default/groups/single/group-header.php:14 +msgid "Group Mods" msgstr "" -#: bp-xprofile.php:225 -#, php-format -msgid "Delete %s" +#: bp-themes/bp-default/groups/single/admin.php:16 +msgid "Group Name" msgstr "" -#: bp-xprofile.php:318 -msgid "" -"Please make sure you fill in all required fields in this profile field group " -"before saving." +#: bp-themes/bp-default/groups/single/admin.php:19 +msgid "Group Description" msgstr "" -#: bp-xprofile.php:335 -msgid "" -"There was a problem updating some of your profile information, please try " -"again." +#: bp-themes/bp-default/groups/single/admin.php:25 +msgid "Notify group members of changes via email" msgstr "" -#: bp-xprofile.php:337 -msgid "Changes saved." +#: bp-themes/bp-default/groups/single/admin.php:45 +#: bp-themes/bp-default/groups/create.php:45 +msgid "Enable comment wire" msgstr "" -#: bp-xprofile.php:388 -msgid "Your new avatar was uploaded successfully!" +#: bp-themes/bp-default/groups/single/admin.php:55 +#: bp-themes/bp-default/groups/create.php:52 +msgid "Enable discussion forum" msgstr "" -#: bp-xprofile.php:455 -msgid "New member registered" +#: bp-themes/bp-default/groups/single/admin.php:64 +#: bp-themes/bp-default/groups/create.php:65 +msgid "Privacy Options" msgstr "" -#: bp-xprofile.php:456 -msgid "Updated Profile" +#: bp-themes/bp-default/groups/single/admin.php:69 +#: bp-themes/bp-default/groups/create.php:69 +msgid "This is a public group" msgstr "" -#: bp-xprofile/bp-xprofile-admin.php:40 -msgid "" -"Your users will distinguish themselves through their profile page. You must " -"give them profile fields that allow them to describe themselves in a way " -"that is relevant to the theme of your social network." +#: bp-themes/bp-default/groups/single/admin.php:71 +#: bp-themes/bp-default/groups/create.php:71 +msgid "Any site member can join this group." msgstr "" -#: bp-xprofile/bp-xprofile-admin.php:41 -msgid "NOTE: Any fields in the first group will appear on the signup page." +#: bp-themes/bp-default/groups/single/admin.php:72 +#: bp-themes/bp-default/groups/single/admin.php:82 +#: bp-themes/bp-default/groups/create.php:72 +#: bp-themes/bp-default/groups/create.php:81 +msgid "This group will be listed in the groups directory and in search results." msgstr "" -#: bp-xprofile/bp-xprofile-admin.php:73 -msgid "Field Name" +#: bp-themes/bp-default/groups/single/admin.php:73 +#: bp-themes/bp-default/groups/create.php:73 +msgid "Group content and activity will be visible to any site member." msgstr "" -#: bp-xprofile/bp-xprofile-admin.php:74 -#: bp-xprofile/bp-xprofile-classes.php:617 -msgid "Field Type" +#: bp-themes/bp-default/groups/single/admin.php:79 +#: bp-themes/bp-default/groups/create.php:78 +msgid "This is a private group" msgstr "" -#: bp-xprofile/bp-xprofile-admin.php:75 -msgid "Required?" +#: bp-themes/bp-default/groups/single/admin.php:81 +#: bp-themes/bp-default/groups/create.php:80 +msgid "Only users who request membership and are accepted can join the group." msgstr "" -#: bp-xprofile/bp-xprofile-admin.php:76 -msgid "Action" +#: bp-themes/bp-default/groups/single/admin.php:83 +#: bp-themes/bp-default/groups/single/admin.php:93 +#: bp-themes/bp-default/groups/create.php:82 +#: bp-themes/bp-default/groups/create.php:91 +msgid "Group content and activity will only be visible to members of the group." msgstr "" -#: bp-xprofile/bp-xprofile-admin.php:90 -msgid "Drag" +#: bp-themes/bp-default/groups/single/admin.php:89 +#: bp-themes/bp-default/groups/create.php:87 +msgid "This is a hidden group" msgstr "" -#: bp-xprofile/bp-xprofile-admin.php:91 -msgid "(Core Field)" +#: bp-themes/bp-default/groups/single/admin.php:91 +#: bp-themes/bp-default/groups/create.php:89 +msgid "Only users who are invited can join the group." msgstr "" -#: bp-xprofile/bp-xprofile-admin.php:103 -msgid "There are no fields in this group." +#: bp-themes/bp-default/groups/single/admin.php:92 +#: bp-themes/bp-default/groups/create.php:90 +msgid "This group will not be listed in the groups directory or search results." msgstr "" -#: bp-xprofile/bp-xprofile-admin.php:113 -msgid "Add New Field" +#: bp-themes/bp-default/groups/single/admin.php:110 +#: bp-themes/bp-default/groups/create.php:114 +msgid "Upload an image to use as an avatar for this group. The image will be shown on the main group page, and in search results." msgstr "" -#: bp-xprofile/bp-xprofile-admin.php:124 -#: bp-xprofile/bp-xprofile-classes.php:171 -msgid "Add New Field Group" +#: bp-themes/bp-default/groups/single/admin.php:120 +msgid "If you'd like to remove the existing avatar but not upload a new one, please use the delete avatar button." msgstr "" -#: bp-xprofile/bp-xprofile-admin.php:128 -msgid "You have no groups." +#: bp-themes/bp-default/groups/single/admin.php:132 +msgid "Crop Avatar" msgstr "" -#: bp-xprofile/bp-xprofile-admin.php:129 -msgid "Add New Group" +#: bp-themes/bp-default/groups/single/admin.php:160 +msgid "Administrators" msgstr "" -#: bp-xprofile/bp-xprofile-admin.php:157 -msgid "There was an error saving the group. Please try again" +#: bp-themes/bp-default/groups/single/admin.php:167 +msgid "Moderators" msgstr "" -#: bp-xprofile/bp-xprofile-admin.php:160 -msgid "The group was saved successfully." +#: bp-themes/bp-default/groups/single/admin.php:203 +msgid "(banned)" msgstr "" -#: bp-xprofile/bp-xprofile-admin.php:189 -msgid "There was an error deleting the group. Please try again" +#: bp-themes/bp-default/groups/single/admin.php:209 +msgid "Unban this member" msgstr "" -#: bp-xprofile/bp-xprofile-admin.php:192 -msgid "The group was deleted successfully." +#: bp-themes/bp-default/groups/single/admin.php:209 +msgid "Remove Ban" msgstr "" -#: bp-xprofile/bp-xprofile-admin.php:231 -msgid "There was an error saving the field. Please try again" +#: bp-themes/bp-default/groups/single/admin.php:213 +msgid "Kick and ban this member" msgstr "" -#: bp-xprofile/bp-xprofile-admin.php:237 -msgid "The field was saved successfully." +#: bp-themes/bp-default/groups/single/admin.php:213 +msgid "Kick & Ban" msgstr "" -#: bp-xprofile/bp-xprofile-admin.php:265 -msgid "field" +#: bp-themes/bp-default/groups/single/admin.php:214 +msgid "Promote to Mod" msgstr "" -#: bp-xprofile/bp-xprofile-admin.php:267 -msgid "option" +#: bp-themes/bp-default/groups/single/admin.php:219 +msgid "Remove this member" msgstr "" -#: bp-xprofile/bp-xprofile-admin.php:273 -#, php-format -msgid "There was an error deleting the %s. Please try again" +#: bp-themes/bp-default/groups/single/admin.php:219 +msgid "Remove from group" msgstr "" -#: bp-xprofile/bp-xprofile-admin.php:276 -#, php-format -msgid "The %s was deleted successfully!" +#: bp-themes/bp-default/groups/single/admin.php:278 +msgid "There are no pending membership requests." msgstr "" -#: bp-xprofile/bp-xprofile-classes.php:158 -msgid "Please make sure you give the group a name." +#: bp-themes/bp-default/groups/single/admin.php:295 +msgid "WARNING: Deleting this group will completely remove ALL content associated with it. There is no way back, please be careful with this option." msgstr "" -#: bp-xprofile/bp-xprofile-classes.php:174 -msgid "Edit Field Group" +#: bp-themes/bp-default/groups/single/admin.php:298 +msgid "I understand the consequences of deleting this group." msgstr "" -#: bp-xprofile/bp-xprofile-classes.php:195 -msgid "Field Group Name" +#: bp-themes/bp-default/groups/create.php:26 +msgid "* Group Name" msgstr "" -#: bp-xprofile/bp-xprofile-classes.php:494 -msgid "Please enter options for this Field:" +#: bp-themes/bp-default/groups/create.php:29 +msgid "* Group Description" msgstr "" -#: bp-xprofile/bp-xprofile-classes.php:498 -msgid "Order Entered" +#: bp-themes/bp-default/groups/create.php:57 +msgid "<strong>Attention Site Admin:</strong> Group forums require the <a href=\"%s\">correct setup and configuration</a> of a bbPress installation." msgstr "" -#: bp-xprofile/bp-xprofile-classes.php:499 -msgid "Name - Ascending" +#: bp-themes/bp-default/groups/create.php:122 +msgid "To skip the avatar upload process, hit the \"Next Step\" button." msgstr "" -#: bp-xprofile/bp-xprofile-classes.php:500 -msgid "Name - Descending" +#: bp-themes/bp-default/groups/create.php:129 +msgid "Crop Group Avatar" msgstr "" -#: bp-xprofile/bp-xprofile-classes.php:529 -#: bp-xprofile/bp-xprofile-classes.php:550 -msgid "Option" +#: bp-themes/bp-default/groups/create.php:224 +msgid "Previous Step" msgstr "" -#: bp-xprofile/bp-xprofile-classes.php:531 -#: bp-xprofile/bp-xprofile-classes.php:551 -msgid "Default Value" +#: bp-themes/bp-default/groups/create.php:229 +msgid "Next Step" msgstr "" -#: bp-xprofile/bp-xprofile-classes.php:557 -msgid "Add Another Option" +#: bp-themes/bp-default/groups/create.php:234 +msgid "Create Group and Continue" msgstr "" -#: bp-xprofile/bp-xprofile-classes.php:565 -msgid "Add Field" +#: bp-themes/bp-default/groups/create.php:239 +msgid "Finish" msgstr "" -#: bp-xprofile/bp-xprofile-classes.php:574 -msgid "Edit Field" +#: bp-themes/bp-default/attachment.php:25 +msgid "<p class=\"serif\">Read the rest of this entry →</p>" msgstr "" -#: bp-xprofile/bp-xprofile-classes.php:595 -msgid "Field Title" +#: bp-themes/bp-default/attachment.php:38 +msgid "Sorry, no attachments matched your criteria." msgstr "" -#: bp-xprofile/bp-xprofile-classes.php:602 -msgid "Field Description" +#: bp-themes/bp-default/search.php:14 +msgid "Search Results" msgstr "" -#: bp-xprofile/bp-xprofile-classes.php:609 -msgid "Is This Field Required?" +#: bp-themes/bp-default/search.php:57 +msgid "No posts found. Try a different search?" msgstr "" -#: bp-xprofile/bp-xprofile-classes.php:611 -msgid "Not Required" +#: bp-themes/bp-default/archive.php:10 +msgid "You are browsing the archive for %1$s." msgstr "" -#: bp-xprofile/bp-xprofile-classes.php:612 -msgid "Required" +#: bp-themes/bp-default/links.php:16 +msgid "Links" msgstr "" -#: bp-xprofile/bp-xprofile-classes.php:619 -msgid "Text Box" +#: bp-themes/bp-default/single.php:29 +msgid "Edit this entry" msgstr "" -#: bp-xprofile/bp-xprofile-classes.php:620 -msgid "Multi-line Text Box" +#: bp-themes/bp-default/single.php:46 +msgid "Sorry, no posts matched your criteria." msgstr "" -#: bp-xprofile/bp-xprofile-classes.php:621 -msgid "Date Selector" +#: bp-activity/bp-activity-notifications.php:32 +msgid "%s mentioned you in an update" msgstr "" -#: bp-xprofile/bp-xprofile-classes.php:622 -msgid "Radio Buttons" +#: bp-activity/bp-activity-notifications.php:34 +msgid "" +"%s mentioned you in an update:\n" +"\n" +"\"%s\"\n" +"\n" +"To view and respond to the message, log in and visit: %s\n" +"\n" +"---------------------\n" msgstr "" -#: bp-xprofile/bp-xprofile-classes.php:623 -msgid "Drop Down Select Box" +#: bp-activity/bp-activity-notifications.php:76 +msgid "%s replied to one of your updates" msgstr "" -#: bp-xprofile/bp-xprofile-classes.php:624 -msgid "Multi Select Box" +#: bp-activity/bp-activity-notifications.php:78 +msgid "" +"%s replied to one of your updates:\n" +"\n" +"\"%s\"\n" +"\n" +"To view your original update and all comments, log in and visit: %s\n" +"\n" +"---------------------\n" msgstr "" -#: bp-xprofile/bp-xprofile-classes.php:625 -msgid "Checkboxes" +#: bp-activity/bp-activity-notifications.php:116 +msgid "%s replied to one of your comments" msgstr "" -#: bp-xprofile/bp-xprofile-classes.php:632 -msgid "Save" +#: bp-activity/bp-activity-notifications.php:121 +msgid "" +"%s replied to one of your comments:\n" +"\n" +"\"%s\"\n" +"\n" +"To view the original activity, your comment and all replies, log in and visit: %s\n" +"\n" +"---------------------\n" msgstr "" -#: bp-xprofile/bp-xprofile-classes.php:633 -msgid "or" +#: bp-activity/bp-activity-templatetags.php:278 +msgid "Viewing item %1$s to %2$s (of %3$s items)" msgstr "" -#: bp-xprofile/bp-xprofile-classes.php:655 -msgid "Please make sure you fill out all required fields." +#: bp-activity/bp-activity-templatetags.php:577 +msgid " %s ago" msgstr "" -#: bp-xprofile/bp-xprofile-classes.php:658 -msgid "" -"Radio button field types require at least one option. Please add options " -"below." +#: bp-activity/bp-activity-templatetags.php:877 +msgid "profile" msgstr "" -#: bp-xprofile/bp-xprofile-classes.php:661 -#: bp-xprofile/bp-xprofile-classes.php:664 -msgid "" -"Select box field types require at least one option. Please add options below." +#: bp-activity/bp-activity-templatetags.php:877 +msgid "friends" msgstr "" -#: bp-xprofile/bp-xprofile-classes.php:667 -msgid "" -"Checkbox field types require at least one option. Please add options below." +#: bp-activity/bp-activity-templatetags.php:877 +msgid "status" msgstr "" -#: bp-xprofile/bp-xprofile-templatetags.php:490 -msgid "January" +#: bp-activity/bp-activity-templatetags.php:877 +msgid "blogs" msgstr "" -#: bp-xprofile/bp-xprofile-templatetags.php:490 -msgid "February" +#: bp-activity/bp-activity-templatetags.php:885 +msgid "Clear Filter" msgstr "" -#: bp-xprofile/bp-xprofile-templatetags.php:490 -msgid "March" +#: bp-activity/bp-activity-templatetags.php:956 +msgid "Mention this user in a new public message, this will send the user a notification to get their attention." msgstr "" -#: bp-xprofile/bp-xprofile-templatetags.php:491 -msgid "April" +#: bp-activity/bp-activity-templatetags.php:957 +msgid "Mention this User" msgstr "" -#: bp-xprofile/bp-xprofile-templatetags.php:491 -msgid "May" +#: bp-activity/feeds/bp-activity-friends-feed.php:21 +msgid "Friends Activity" msgstr "" -#: bp-xprofile/bp-xprofile-templatetags.php:491 -msgid "June" +#: bp-activity/feeds/bp-activity-friends-feed.php:24 +msgid "%s - Friends Activity Feed" msgstr "" -#: bp-xprofile/bp-xprofile-templatetags.php:492 -msgid "July" +#: bp-activity/feeds/bp-activity-friends-feed.php:44 +#: bp-activity/feeds/bp-activity-mentions-feed.php:43 +#: bp-activity/feeds/bp-activity-personal-feed.php:43 +#: bp-activity/feeds/bp-activity-favorites-feed.php:48 +#: bp-activity/feeds/bp-activity-group-feed.php:43 +#: bp-activity/feeds/bp-activity-sitewide-feed.php:44 +#: bp-activity/feeds/bp-activity-mygroups-feed.php:48 +msgid "Comments: %s" msgstr "" -#: bp-xprofile/bp-xprofile-templatetags.php:492 -msgid "August" +#: bp-activity/feeds/bp-activity-mentions-feed.php:21 +#: bp-activity/feeds/bp-activity-mentions-feed.php:24 +msgid "Mentions" msgstr "" -#: bp-xprofile/bp-xprofile-templatetags.php:492 -msgid "September" +#: bp-activity/feeds/bp-activity-personal-feed.php:24 +msgid "%s - Activity Feed" msgstr "" -#: bp-xprofile/bp-xprofile-templatetags.php:493 -msgid "October" +#: bp-activity/feeds/bp-activity-favorites-feed.php:21 +#: bp-activity/feeds/bp-activity-favorites-feed.php:24 +msgid "Favorite Activity" msgstr "" -#: bp-xprofile/bp-xprofile-templatetags.php:493 -msgid "November" +#: bp-activity/feeds/bp-activity-group-feed.php:21 +msgid "Group Activity" msgstr "" -#: bp-xprofile/bp-xprofile-templatetags.php:493 -msgid "December" +#: bp-activity/feeds/bp-activity-group-feed.php:24 +msgid "%s - Group Activity Feed" msgstr "" -#: bp-xprofile/bp-xprofile-templatetags.php:632 -msgid "" -"Avatar uploads are currently disabled. Why not use a <a href=\"http://" -"gravatar.com\" target=\"_blank\">gravatar</a> instead?" +#: bp-activity/feeds/bp-activity-sitewide-feed.php:22 +msgid "Site Wide Activity" msgstr "" -#: bp-xprofile/bp-xprofile-templatetags.php:641 -msgid "Profile not recently updated" +#: bp-activity/feeds/bp-activity-sitewide-feed.php:25 +msgid "Site Wide Activity Feed" msgstr "" -#: bp-xprofile/bp-xprofile-templatetags.php:652 -#, php-format -msgid "Profile updated %s ago" -msgstr "" +#: bp-activity/feeds/bp-activity-mygroups-feed.php:21 +#: bp-activity/feeds/bp-activity-mygroups-feed.php:24 +msgid "My Groups - Public Activity" +msgstr "" \ No newline at end of file diff --git a/wp-content/plugins/buddypress/bp-loader.php b/wp-content/plugins/buddypress/bp-loader.php index e47c524ef471634d6eaf2cb321e959785bca548b..032a9df8df40a71bbdb877fdf75dd191183f9fee 100644 --- a/wp-content/plugins/buddypress/bp-loader.php +++ b/wp-content/plugins/buddypress/bp-loader.php @@ -4,13 +4,13 @@ Plugin Name: BuddyPress Plugin URI: http://buddypress.org Description: Social networking in a box. Build a social network for your company, school, sports team or niche community all based on the power and flexibility of WordPress. Author: The BuddyPress Community -Version: 1.2.6 +Version: 1.2.7 Author URI: http://buddypress.org/community/members/ Site Wide Only: true Network: true */ -define( 'BP_VERSION', '1.2.6' ); +define( 'BP_VERSION', '1.2.7' ); /*** * This file will load in each BuddyPress component based on which diff --git a/wp-content/plugins/buddypress/bp-messages/bp-messages-templatetags.php b/wp-content/plugins/buddypress/bp-messages/bp-messages-templatetags.php index 2823b74e3881ac3e03b23129fdf2a929eb0ea84f..446554763361005e37e893a4fe8c1e4e087d9720 100644 --- a/wp-content/plugins/buddypress/bp-messages/bp-messages-templatetags.php +++ b/wp-content/plugins/buddypress/bp-messages/bp-messages-templatetags.php @@ -291,7 +291,7 @@ function bp_message_thread_last_post_date() { function bp_get_message_thread_last_post_date() { global $messages_template; - return apply_filters( 'bp_get_message_thread_last_post_date', bp_format_time( get_date_from_gmt( $messages_template->thread->last_message_date, 'U' ) ) ); + return apply_filters( 'bp_get_message_thread_last_post_date', bp_format_time( strtotime( $messages_template->thread->last_message_date ) ) ); } function bp_message_thread_avatar() { diff --git a/wp-content/plugins/buddypress/bp-themes/bp-default/functions.php b/wp-content/plugins/buddypress/bp-themes/bp-default/functions.php index 2a8235d1a6fa2b8e49f555f2c0da908b21ab4e45..eaed8c9c95feab723baf575d77951be6db531ee9 100644 --- a/wp-content/plugins/buddypress/bp-themes/bp-default/functions.php +++ b/wp-content/plugins/buddypress/bp-themes/bp-default/functions.php @@ -211,6 +211,8 @@ function bp_dtheme_fix_the_posts_on_activity_front( $posts ) { add_filter( 'the_posts', 'bp_dtheme_fix_the_posts_on_activity_front' ); /** + * bp_dtheme_activity_secondary_avatars() + * * Add secondary avatar image to this activity stream's record, if supported * * @param string $action The text of this activity @@ -222,7 +224,6 @@ add_filter( 'the_posts', 'bp_dtheme_fix_the_posts_on_activity_front' ); function bp_dtheme_activity_secondary_avatars( $action, $activity ) { switch ( $activity->component ) { case 'groups' : - case 'blogs' : case 'friends' : // Only insert avatar if one exists if ( $secondary_avatar = bp_get_activity_secondary_avatar() ) { diff --git a/wp-content/plugins/buddypress/bp-themes/bp-default/sidebar.php b/wp-content/plugins/buddypress/bp-themes/bp-default/sidebar.php index ba968c09f15b01af59733c6c3d13b52c8c9446c0..c1579d7c0cd6a15243b0cf61a59c5b755f338b7d 100644 --- a/wp-content/plugins/buddypress/bp-themes/bp-default/sidebar.php +++ b/wp-content/plugins/buddypress/bp-themes/bp-default/sidebar.php @@ -39,12 +39,12 @@ <form name="login-form" id="sidebar-login-form" class="standard-form" action="<?php echo site_url( 'wp-login.php', 'login_post' ) ?>" method="post"> <label><?php _e( 'Username', 'buddypress' ) ?><br /> - <input type="text" name="log" id="sidebar-user-login" class="input" value="<?php echo esc_attr(stripslashes($user_login)); ?>" /></label> + <input type="text" name="log" id="sidebar-user-login" class="input" value="<?php echo esc_attr(stripslashes($user_login)); ?>" tabindex="97" /></label> <label><?php _e( 'Password', 'buddypress' ) ?><br /> - <input type="password" name="pwd" id="sidebar-user-pass" class="input" value="" /></label> + <input type="password" name="pwd" id="sidebar-user-pass" class="input" value="" tabindex="98" /></label> - <p class="forgetmenot"><label><input name="rememberme" type="checkbox" id="sidebar-rememberme" value="forever" /> <?php _e( 'Remember Me', 'buddypress' ) ?></label></p> + <p class="forgetmenot"><label><input name="rememberme" type="checkbox" id="sidebar-rememberme" value="forever" tabindex="99" /> <?php _e( 'Remember Me', 'buddypress' ) ?></label></p> <?php do_action( 'bp_sidebar_login_form' ) ?> <input type="submit" name="wp-submit" id="sidebar-wp-submit" value="<?php _e('Log In'); ?>" tabindex="100" /> diff --git a/wp-content/plugins/buddypress/bp-themes/bp-default/style.css b/wp-content/plugins/buddypress/bp-themes/bp-default/style.css index 8273295f6b67ecabb30f5d11706eee9a75e49ee3..03ccd06692afa949632de5c1d22852a74fc1056b 100644 --- a/wp-content/plugins/buddypress/bp-themes/bp-default/style.css +++ b/wp-content/plugins/buddypress/bp-themes/bp-default/style.css @@ -2,7 +2,7 @@ Theme Name: BuddyPress Default Theme URI: http://buddypress.org/extend/themes/ Description: The default theme for BuddyPress. -Version: 1.2.6 +Version: 1.2.7 Author: BuddyPress.org Author URI: http://buddypress.org Tags: buddypress, two-columns, custom-header, white, blue diff --git a/wp-content/plugins/buddypress/bp-xprofile/bp-xprofile-classes.php b/wp-content/plugins/buddypress/bp-xprofile/bp-xprofile-classes.php index 9597c46d909bc47829805639757a5230dd6d6208..bad3246bebc0d97a4315ec79ebb9392a6ec80a60 100644 --- a/wp-content/plugins/buddypress/bp-xprofile/bp-xprofile-classes.php +++ b/wp-content/plugins/buddypress/bp-xprofile/bp-xprofile-classes.php @@ -527,7 +527,7 @@ Class BP_XProfile_Field { <p> <?php _e('Option', 'buddypress') ?> <?php echo $j ?>: - <input type="text" name="<?php echo $type ?>_option[<?php echo $j ?>]" id="<?php echo $type ?>_option<?php echo $j ?>" value="<?php echo esc_attr( $options[$i]->name ) ?>" /> + <input type="text" name="<?php echo $type ?>_option[<?php echo $j ?>]" id="<?php echo $type ?>_option<?php echo $j ?>" value="<?php echo stripslashes( esc_attr( $options[$i]->name ) ) ?>" /> <input type="<?php echo $default_input ?>" name="isDefault_<?php echo $type ?>_option<?php echo $default_name ?>" <?php if ( (int) $options[$i]->is_default_option ) {?> checked="checked"<?php } ?> value="<?php echo $j ?>" /> <?php _e( 'Default Value', 'buddypress' ) ?> <?php if ( $j != 1 && $options[$i]->id != -1 ) : ?> @@ -693,57 +693,68 @@ Class BP_XProfile_ProfileData { if ( $profiledata = $wpdb->get_row($sql) ) { - $this->id = $profiledata->id; - $this->user_id = $profiledata->user_id; - $this->field_id = $profiledata->field_id; - $this->value = stripslashes($profiledata->value); + $this->id = $profiledata->id; + $this->user_id = $profiledata->user_id; + $this->field_id = $profiledata->field_id; + $this->value = stripslashes($profiledata->value); $this->last_updated = $profiledata->last_updated; } } + /** + * exists () + * + * Check if there is data already for the user. + * + * @global object $wpdb + * @global array $bp + * @return bool + */ function exists() { global $wpdb, $bp; - // check to see if there is data already for the user. - $sql = $wpdb->prepare( "SELECT id FROM {$bp->profile->table_name_data} WHERE user_id = %d AND field_id = %d", $this->user_id, $this->field_id ); + $retval = $wpdb->get_row( $wpdb->prepare( "SELECT id FROM {$bp->profile->table_name_data} WHERE user_id = %d AND field_id = %d", $this->user_id, $this->field_id ) ); - if ( !$wpdb->get_row($sql) ) - return false; - - return true; + return apply_filters( 'xprofile_data_exists', (bool)$retval, $this ); } + /** + * is_valid_field() + * + * Check if this data is for a valid field. + * + * @global object $wpdb + * @global array $bp + * @return bool + */ function is_valid_field() { global $wpdb, $bp; - // check to see if this data is actually for a valid field. - $sql = $wpdb->prepare("SELECT id FROM {$bp->profile->table_name_fields} WHERE id = %d", $this->field_id ); + $retval = $wpdb->get_row( $wpdb->prepare( "SELECT id FROM {$bp->profile->table_name_fields} WHERE id = %d", $this->field_id ) ); - if ( !$wpdb->get_row($sql) ) - return false; - - return true; + return apply_filters( 'xprofile_data_is_valid_field', (bool)$retval, $this ); } function save() { global $wpdb, $bp; - $this->user_id = apply_filters( 'xprofile_data_user_id_before_save', $this->user_id, $this->id ); - $this->field_id = apply_filters( 'xprofile_data_field_id_before_save', $this->field_id, $this->id ); - $this->value = apply_filters( 'xprofile_data_value_before_save', $this->value, $this->id ); + $this->user_id = apply_filters( 'xprofile_data_user_id_before_save', $this->user_id, $this->id ); + $this->field_id = apply_filters( 'xprofile_data_field_id_before_save', $this->field_id, $this->id ); + $this->value = apply_filters( 'xprofile_data_value_before_save', $this->value, $this->id ); $this->last_updated = apply_filters( 'xprofile_data_last_updated_before_save', date( 'Y-m-d H:i:s' ), $this->id ); do_action( 'xprofile_data_before_save', $this ); if ( $this->is_valid_field() ) { - if ( $this->exists() && !empty( $this->value ) && strlen( trim( $this->value ) ) ) { + if ( $this->exists() && !empty( $this->value ) && strlen( trim( $this->value ) ) ) $result = $wpdb->query( $wpdb->prepare( "UPDATE {$bp->profile->table_name_data} SET value = %s, last_updated = %s WHERE user_id = %d AND field_id = %d", $this->value, $this->last_updated, $this->user_id, $this->field_id ) ); - } else if ( $this->exists() && empty( $this->value ) ) { - // Data removed, delete the entry. + + // Data removed, delete the entry. + elseif ( $this->exists() && empty( $this->value ) ) $result = $this->delete(); - } else { + + else $result = $wpdb->query( $wpdb->prepare("INSERT INTO {$bp->profile->table_name_data} (user_id, field_id, value, last_updated) VALUES (%d, %d, %s, %s)", $this->user_id, $this->field_id, $this->value, $this->last_updated ) ); - } if ( !$result ) return false; @@ -812,7 +823,7 @@ Class BP_XProfile_ProfileData { $data = $wpdb->get_var( $wpdb->prepare( "SELECT value FROM {$bp->profile->table_name_data} WHERE field_id = %d AND user_id = %d", $field_id, $user_ids ) ); } - return maybe_unserialize( $data ); + return $data; } function get_value_byfieldname( $fields, $user_id = null ) { diff --git a/wp-content/plugins/buddypress/bp-xprofile/bp-xprofile-templatetags.php b/wp-content/plugins/buddypress/bp-xprofile/bp-xprofile-templatetags.php index 78163357afa7f84003472eb26de0944c27fdd286..ee471029e4e8fcd0cfac8fb9c545ca67b8619444 100644 --- a/wp-content/plugins/buddypress/bp-xprofile/bp-xprofile-templatetags.php +++ b/wp-content/plugins/buddypress/bp-xprofile/bp-xprofile-templatetags.php @@ -376,7 +376,7 @@ function bp_the_profile_field_options( $args = '' ) { $html .= '<option value="">--------</option>'; for ( $k = 0; $k < count($options); $k++ ) { - $option_values = BP_XProfile_ProfileData::get_value_byid( $options[$k]->parent_id ); + $option_values = maybe_unserialize( BP_XProfile_ProfileData::get_value_byid( $options[$k]->parent_id ) ); $option_values = (array)$option_values; /* Check for updated posted values, but errors preventing them from being saved first time */ @@ -393,7 +393,7 @@ function bp_the_profile_field_options( $args = '' ) { $selected = ''; } - $html .= apply_filters( 'bp_get_the_profile_field_options_select', '<option' . $selected . ' value="' . esc_attr( $options[$k]->name ) . '">' . esc_attr( $options[$k]->name ) . '</option>', $options[$k] ); + $html .= apply_filters( 'bp_get_the_profile_field_options_select', '<option' . $selected . ' value="' . stripslashes( esc_attr( $options[$k]->name ) ) . '">' . stripslashes( esc_attr( $options[$k]->name ) ) . '</option>', $options[$k] ); } break; @@ -409,13 +409,13 @@ function bp_the_profile_field_options( $args = '' ) { $option_value = $_POST['field_' . $field->id]; } - if ( $option_value == $options[$k]->name || $value == $options[$k]->name || $options[$k]->is_default_option ) { + if ( $option_value == $options[$k]->name || $value == $options[$k]->name || ( empty( $option_value ) && $options[$k]->is_default_option ) ) { $selected = ' checked="checked"'; } else { $selected = ''; } - $html .= apply_filters( 'bp_get_the_profile_field_options_radio', '<label><input' . $selected . ' type="radio" name="field_' . $field->id . '" id="option_' . $options[$k]->id . '" value="' . esc_attr( $options[$k]->name ) . '"> ' . esc_attr( $options[$k]->name ) . '</label>', $options[$k] ); + $html .= apply_filters( 'bp_get_the_profile_field_options_radio', '<label><input' . $selected . ' type="radio" name="field_' . $field->id . '" id="option_' . $options[$k]->id . '" value="' . stripslashes( esc_attr( $options[$k]->name ) ) . '"> ' . stripslashes( esc_attr( $options[$k]->name ) ) . '</label>', $options[$k] ); } $html .= '</div>'; @@ -440,7 +440,7 @@ function bp_the_profile_field_options( $args = '' ) { } } - $html .= apply_filters( 'bp_get_the_profile_field_options_checkbox', '<label><input' . $selected . ' type="checkbox" name="field_' . $field->id . '[]" id="field_' . $options[$k]->id . '_' . $k . '" value="' . esc_attr( $options[$k]->name ) . '"> ' . esc_attr( $options[$k]->name ) . '</label>', $options[$k] ); + $html .= apply_filters( 'bp_get_the_profile_field_options_checkbox', '<label><input' . $selected . ' type="checkbox" name="field_' . $field->id . '[]" id="field_' . $options[$k]->id . '_' . $k . '" value="' . stripslashes( esc_attr( $options[$k]->name ) ) . '"> ' . stripslashes( esc_attr( $options[$k]->name ) ) . '</label>', $options[$k] ); $selected = ''; } break; @@ -552,10 +552,12 @@ function bp_profile_field_data( $args = '' ) { echo bp_get_profile_field_data( $args ); } function bp_get_profile_field_data( $args = '' ) { + global $bp; + $defaults = array( - 'field' => false, // Field name or ID. + 'field' => false, // Field name or ID. 'user_id' => $bp->displayed_user->id - ); + ); $r = wp_parse_args( $args, $defaults ); extract( $r, EXTR_SKIP ); diff --git a/wp-content/plugins/buddypress/readme.txt b/wp-content/plugins/buddypress/readme.txt index 70d409b008ae038a6cae8d4a268437dc5a439b39..7eab7349a3dda4ac3bf839b66fe8558b15703762 100644 --- a/wp-content/plugins/buddypress/readme.txt +++ b/wp-content/plugins/buddypress/readme.txt @@ -1,9 +1,9 @@ === Plugin Name === -Contributors: apeatling, johnjamesjacoby, djpaul, boonebgorges, MrMaz +Contributors: apeatling, johnjamesjacoby, MrMaz, DJPaul, boonebgorges Tags: buddypress, social networking, activity, profiles, messaging, friends, groups, forums, microblogging, twitter, facebook, mingle, social, community, networks, networking, cms Requires at least: 3.0 -Tested up to: 3.0 -Stable tag: 1.2.6 +Tested up to: 3.0.3 +Stable tag: 1.2.7 == Description == @@ -25,19 +25,17 @@ More and more WordPress with BuddyPress powered sites are popping up. You can ta BuddyPress boasts an ever growing array of new features developed by the awesome plugin development community. Some of most popular BuddyPress plugins currently available are: -* <a href="http://wordpress.org/extend/plugins/wp-fb-autoconnect">WP-FB-AutoConnect</a> - allow your users to instantly log in to your site using their Facebook credentials. * <a href="http://wordpress.org/extend/plugins/buddypress-like">BuddyPress Like</a> - add a "like" button to site activity. * <a href="http://wordpress.org/extend/plugins/buddypress-links">BuddyPress Links</a> - rich media embedding for your BuddyPress powered site. -* <a href="http://wordpress.org/extend/plugins/tweetstream">BuddyPress Tweetstream</a> - allow your users to sync and post to their Twitter stream. -* <a href="http://wordpress.org/extend/plugins/facestream">BuddyPress Facestream</a> - allow your users to sync and post to their Facebook stream. +* <a href="http://wordpress.org/extend/plugins/buddystream/">BuddyStream</a> - synchronizes all of your favorite social networks to the BuddyPress activity stream. * <a href="http://wordpress.org/extend/plugins/bp-album">BuddyPress Album+</a> - allow your users to upload photos and create albums. * <a href="http://wordpress.org/extend/plugins/buddypress-group-documents">BuddyPress Group Documents</a> - add file upload and document repositories to your groups. * <a href="http://wordpress.org/extend/plugins/bp-profile-privacy">BuddyPress Profile Privacy</a> - allow your users to set privacy options on their profile data. * <a href="http://wordpress.org/extend/plugins/welcome-pack">BuddyPress Welcome Pack</a> - set defaults for new users, auto join them to groups or send welcome messages. * <a href="http://wordpress.org/extend/plugins/bp-groupblog">BuddyPress Group Blog</a> (WordPress MU only) - allow your groups to include a fully functional WordPress blog. -* <a href="http://wordpress.org/extend/plugins/buddypress-group-wiki/">BuddyPress Group Wiki</a> - add wiki functionality to your groups so all members can contribute to pages. +* <a href="http://wordpress.org/extend/plugins/bp-wiki/">BuddyPress Wiki Component</a> - adds wiki functionality. -There are already more than 125 BuddyPress plugins available, the list is growing every day. For a full list of plugins, please visit the <a href="http://buddypress.org/extend/plugins/">BuddyPress.org plugins page</a>. You can also install any of these plugins automatically through the plugin installer menu inside of your WordPress installation. +There are more than 300 BuddyPress plugins available, the list is growing every day. For a full list of plugins, please visit the <a href="http://buddypress.org/extend/plugins/">BuddyPress.org plugins page</a>. You can also install any of these plugins automatically through the plugin installer menu inside of your WordPress installation. <h4>More Information</h4> @@ -123,8 +121,8 @@ The <a href="http://i18n.svn.buddypress.org/">BuddyPress langauge file repositor == Upgrade Notice == -= 1.2.6 = -Bug fixes and improved WordPress 3.0 support. Important upgrade. += 1.2.7 = +Fixes over 10 bugs. == Changelog ==