Version Description
Download this release
Release Info
| Developer | apeatling |
| Plugin | |
| Version | 1.1.1 |
| Comparing to | |
| See all releases | |
Code changes from version 1.1 to 1.1.1
- bp-activity/bp-activity-classes.php +1 -3
- bp-core.php +7 -2
- bp-core/bp-core-activation.php +8 -1
- bp-core/bp-core-admin.php +27 -27
- bp-core/bp-core-avatars.php +2 -2
- bp-core/bp-core-catchuri.php +6 -2
- bp-core/bp-core-cssjs.php +2 -0
- bp-core/deprecated/bp-core-deprecated.php +35 -0
- bp-forums.php +4 -3
- bp-friends/bp-friends-templatetags.php +1 -1
- bp-groups.php +4 -5
- bp-groups/bp-groups-filters.php +1 -1
- bp-groups/bp-groups-templatetags.php +1 -1
- bp-languages/buddypress.pot +189 -747
- bp-loader.php +2 -2
- bp-status.php +5 -3
- bp-status/bp-status-templatetags.php +1 -1
- bp-themes/bp-default/style.css +1 -1
- bp-themes/bp-sn-parent/_inc/ajax.php +11 -19
- bp-themes/bp-sn-parent/_inc/js/ajax.js +10 -13
- bp-themes/bp-sn-parent/groups/single/forum/index.php +1 -1
- bp-themes/bp-sn-parent/groups/single/forum/topic.php +1 -1
- bp-themes/bp-sn-parent/style.css +1 -1
- bp-xprofile/bp-xprofile-classes.php +0 -17
- bp-xprofile/deprecated/bp-xprofile-deprecated.php +84 -28
- readme.txt +5 -1
bp-activity/bp-activity-classes.php
CHANGED
|
@@ -145,9 +145,7 @@ Class BP_Activity_Activity {
|
|
| 145 |
|
| 146 |
function get_activity_for_user( $user_id, $max_items, $limit, $page, $filter ) {
|
| 147 |
global $wpdb, $bp;
|
| 148 |
-
|
| 149 |
-
$since = strtotime($since);
|
| 150 |
-
|
| 151 |
if ( $limit && $page )
|
| 152 |
$pag_sql = $wpdb->prepare( "LIMIT %d, %d", intval( ( $page - 1 ) * $limit), intval( $limit ) );
|
| 153 |
|
| 145 |
|
| 146 |
function get_activity_for_user( $user_id, $max_items, $limit, $page, $filter ) {
|
| 147 |
global $wpdb, $bp;
|
| 148 |
+
|
|
|
|
|
|
|
| 149 |
if ( $limit && $page )
|
| 150 |
$pag_sql = $wpdb->prepare( "LIMIT %d, %d", intval( ( $page - 1 ) * $limit), intval( $limit ) );
|
| 151 |
|
bp-core.php
CHANGED
|
@@ -533,11 +533,16 @@ function bp_core_get_user_domain( $user_id ) {
|
|
| 533 |
|
| 534 |
$ud = get_userdata($user_id);
|
| 535 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 536 |
/* If we are using a members slug, include it. */
|
| 537 |
if ( !defined( 'BP_ENABLE_ROOT_PROFILES' ) )
|
| 538 |
-
return apply_filters( 'bp_core_get_user_domain', $bp->root_domain . '/' . BP_MEMBERS_SLUG . '/' . $
|
| 539 |
else
|
| 540 |
-
return apply_filters( 'bp_core_get_user_domain', $bp->root_domain . '/' . $
|
| 541 |
}
|
| 542 |
|
| 543 |
/**
|
| 533 |
|
| 534 |
$ud = get_userdata($user_id);
|
| 535 |
|
| 536 |
+
if ( defined( 'BP_ENABLE_USERNAME_COMPATIBILITY_MODE' ) )
|
| 537 |
+
$username = $ud->user_login;
|
| 538 |
+
else
|
| 539 |
+
$username = $ud->user_nicename;
|
| 540 |
+
|
| 541 |
/* If we are using a members slug, include it. */
|
| 542 |
if ( !defined( 'BP_ENABLE_ROOT_PROFILES' ) )
|
| 543 |
+
return apply_filters( 'bp_core_get_user_domain', $bp->root_domain . '/' . BP_MEMBERS_SLUG . '/' . $username . '/' );
|
| 544 |
else
|
| 545 |
+
return apply_filters( 'bp_core_get_user_domain', $bp->root_domain . '/' . $username . '/' );
|
| 546 |
}
|
| 547 |
|
| 548 |
/**
|
bp-core/bp-core-activation.php
CHANGED
|
@@ -6,6 +6,10 @@ function bp_core_screen_activation() {
|
|
| 6 |
if ( BP_ACTIVATION_SLUG != $bp->current_component )
|
| 7 |
return false;
|
| 8 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
/* Check if an activation key has been passed */
|
| 10 |
if ( isset( $_GET['key'] ) ) {
|
| 11 |
|
|
@@ -67,7 +71,10 @@ function bp_core_screen_activation() {
|
|
| 67 |
$bp->activation_complete = true;
|
| 68 |
}
|
| 69 |
|
| 70 |
-
|
|
|
|
|
|
|
|
|
|
| 71 |
}
|
| 72 |
add_action( 'wp', 'bp_core_screen_activation', 3 );
|
| 73 |
|
| 6 |
if ( BP_ACTIVATION_SLUG != $bp->current_component )
|
| 7 |
return false;
|
| 8 |
|
| 9 |
+
/* If we are using a BuddyPress 1.0 theme ignore this. */
|
| 10 |
+
if ( file_exists( WP_CONTENT_DIR . '/bp-themes' ) )
|
| 11 |
+
return false;
|
| 12 |
+
|
| 13 |
/* Check if an activation key has been passed */
|
| 14 |
if ( isset( $_GET['key'] ) ) {
|
| 15 |
|
| 71 |
$bp->activation_complete = true;
|
| 72 |
}
|
| 73 |
|
| 74 |
+
if ( '' != locate_template( array( 'registration/activate' ), false ) )
|
| 75 |
+
bp_core_load_template( apply_filters( 'bp_core_template_activate', 'activate' ) );
|
| 76 |
+
else
|
| 77 |
+
bp_core_load_template( apply_filters( 'bp_core_template_activate', 'registration/activate' ) );
|
| 78 |
}
|
| 79 |
add_action( 'wp', 'bp_core_screen_activation', 3 );
|
| 80 |
|
bp-core/bp-core-admin.php
CHANGED
|
@@ -101,34 +101,34 @@ function bp_core_admin_settings() {
|
|
| 101 |
</td>
|
| 102 |
</tr>
|
| 103 |
<?php endif; ?>
|
| 104 |
-
|
| 105 |
-
<?php
|
| 106 |
-
|
| 107 |
-
<
|
| 108 |
-
|
| 109 |
-
|
| 110 |
-
|
| 111 |
-
|
| 112 |
-
|
| 113 |
-
|
| 114 |
-
|
| 115 |
-
|
| 116 |
-
|
| 117 |
-
|
| 118 |
-
|
| 119 |
-
|
| 120 |
-
|
| 121 |
-
|
| 122 |
-
</
|
| 123 |
-
|
| 124 |
-
|
| 125 |
-
|
| 126 |
-
|
| 127 |
-
<p><?php _e( '
|
| 128 |
-
|
| 129 |
-
|
| 130 |
-
</tr>
|
| 131 |
<?php endif; ?>
|
|
|
|
| 132 |
<tr>
|
| 133 |
<th scope="row"><?php _e( 'Default User Avatar', 'buddypress' ) ?></th>
|
| 134 |
<td>
|
| 101 |
</td>
|
| 102 |
</tr>
|
| 103 |
<?php endif; ?>
|
| 104 |
+
|
| 105 |
+
<?php $themes = bp_core_get_buddypress_themes() ?>
|
| 106 |
+
<?php if ( $themes ) : ?>
|
| 107 |
+
<tr>
|
| 108 |
+
<th scope="row"><?php _e('Select theme to use for BuddyPress generated pages', 'buddypress' ) ?>:</th>
|
| 109 |
+
<td>
|
| 110 |
+
<select name="bp-admin[active-member-theme]" id="active-member-theme">
|
| 111 |
+
<?php
|
| 112 |
+
for ( $i = 0; $i < count($themes); $i++ ) {
|
| 113 |
+
if ( $themes[$i]['template'] == get_site_option( 'active-member-theme' ) ) {
|
| 114 |
+
$selected = ' selected="selected"';
|
| 115 |
+
} else {
|
| 116 |
+
$selected = '';
|
| 117 |
+
}
|
| 118 |
+
?>
|
| 119 |
+
<option<?php echo $selected ?> value="<?php echo $themes[$i]['template'] ?>"><?php echo $themes[$i]['name'] ?> (<?php echo $themes[$i]['version'] ?>)</option>
|
| 120 |
+
<?php } ?>
|
| 121 |
+
</select>
|
| 122 |
+
</td>
|
| 123 |
+
</tr>
|
| 124 |
+
<?php else : ?>
|
| 125 |
+
<?php if ( '' == locate_template( array( 'registration/register.php' ), false ) && $current_blog->blog_id == BP_ROOT_BLOG ) : ?>
|
| 126 |
+
<div class="error">
|
| 127 |
+
<p><?php _e( '<strong>Your currently active theme is not BuddyPress enabled.</strong><p style="margin: 2px 0">Visit <a href="http://buddypress.org/extend/themes/">http://buddypress.org/extend/themes/</a> to browse themes that include support for BuddyPress features.</p>', 'buddypress' ) ?></p>
|
| 128 |
+
</div>
|
| 129 |
+
<?php endif; ?>
|
|
|
|
| 130 |
<?php endif; ?>
|
| 131 |
+
|
| 132 |
<tr>
|
| 133 |
<th scope="row"><?php _e( 'Default User Avatar', 'buddypress' ) ?></th>
|
| 134 |
<td>
|
bp-core/bp-core-avatars.php
CHANGED
|
@@ -282,7 +282,7 @@ function bp_core_avatar_handle_crop( $args = '' ) {
|
|
| 282 |
|
| 283 |
$r = wp_parse_args( $args, $defaults );
|
| 284 |
extract( $r, EXTR_SKIP );
|
| 285 |
-
|
| 286 |
if ( !$original_file )
|
| 287 |
return false;
|
| 288 |
|
|
@@ -317,7 +317,7 @@ function bp_core_avatar_handle_crop( $args = '' ) {
|
|
| 317 |
/* Crop the image */
|
| 318 |
$full_cropped = wp_crop_image( WP_CONTENT_DIR . $original_file, (int)$crop_x, (int)$crop_y, (int)$crop_w, (int)$crop_h, BP_AVATAR_FULL_WIDTH, BP_AVATAR_FULL_HEIGHT, false, $avatar_folder_dir . '/' . $full_filename );
|
| 319 |
$thumb_cropped = wp_crop_image( WP_CONTENT_DIR . $original_file, (int)$crop_x, (int)$crop_y, (int)$crop_w, (int)$crop_h, BP_AVATAR_THUMB_WIDTH, BP_AVATAR_THUMB_HEIGHT, false, $avatar_folder_dir . '/' . $thumb_filename );
|
| 320 |
-
|
| 321 |
/* Remove the original */
|
| 322 |
@unlink( WP_CONTENT_DIR . $original_file );
|
| 323 |
|
| 282 |
|
| 283 |
$r = wp_parse_args( $args, $defaults );
|
| 284 |
extract( $r, EXTR_SKIP );
|
| 285 |
+
|
| 286 |
if ( !$original_file )
|
| 287 |
return false;
|
| 288 |
|
| 317 |
/* Crop the image */
|
| 318 |
$full_cropped = wp_crop_image( WP_CONTENT_DIR . $original_file, (int)$crop_x, (int)$crop_y, (int)$crop_w, (int)$crop_h, BP_AVATAR_FULL_WIDTH, BP_AVATAR_FULL_HEIGHT, false, $avatar_folder_dir . '/' . $full_filename );
|
| 319 |
$thumb_cropped = wp_crop_image( WP_CONTENT_DIR . $original_file, (int)$crop_x, (int)$crop_y, (int)$crop_w, (int)$crop_h, BP_AVATAR_THUMB_WIDTH, BP_AVATAR_THUMB_HEIGHT, false, $avatar_folder_dir . '/' . $thumb_filename );
|
| 320 |
+
|
| 321 |
/* Remove the original */
|
| 322 |
@unlink( WP_CONTENT_DIR . $original_file );
|
| 323 |
|
bp-core/bp-core-catchuri.php
CHANGED
|
@@ -198,7 +198,8 @@ function bp_core_do_catch_uri() {
|
|
| 198 |
global $bp_no_status_set;
|
| 199 |
global $wp_query;
|
| 200 |
|
| 201 |
-
|
|
|
|
| 202 |
|
| 203 |
/* Don't hijack any URLs on blog pages */
|
| 204 |
if ( bp_is_blog_page() ) {
|
|
@@ -217,7 +218,10 @@ function bp_core_do_catch_uri() {
|
|
| 217 |
$wp_query->is_page = true;
|
| 218 |
}
|
| 219 |
|
| 220 |
-
|
|
|
|
|
|
|
|
|
|
| 221 |
load_template( apply_filters( 'bp_load_template', $located_template ) );
|
| 222 |
} else {
|
| 223 |
if ( $located_template = locate_template( array( '404.php' ) ) ) {
|
| 198 |
global $bp_no_status_set;
|
| 199 |
global $wp_query;
|
| 200 |
|
| 201 |
+
/* Can be a single template or an array of templates */
|
| 202 |
+
$templates = $bp_path;
|
| 203 |
|
| 204 |
/* Don't hijack any URLs on blog pages */
|
| 205 |
if ( bp_is_blog_page() ) {
|
| 218 |
$wp_query->is_page = true;
|
| 219 |
}
|
| 220 |
|
| 221 |
+
foreach ( (array)$templates as $template )
|
| 222 |
+
$filtered_templates[] = $template . '.php';
|
| 223 |
+
|
| 224 |
+
if ( $located_template = apply_filters( 'bp_located_template', locate_template( (array) $filtered_templates, false ), $filtered_templates ) ) {
|
| 225 |
load_template( apply_filters( 'bp_load_template', $located_template ) );
|
| 226 |
} else {
|
| 227 |
if ( $located_template = locate_template( array( '404.php' ) ) ) {
|
bp-core/bp-core-cssjs.php
CHANGED
|
@@ -122,8 +122,10 @@ function bp_core_add_cropper_inline_js() {
|
|
| 122 |
var ry = <?php echo (int) constant( 'BP_AVATAR_FULL_HEIGHT' ) ?> / coords.h;
|
| 123 |
|
| 124 |
jQuery('#avatar-crop-preview').css({
|
|
|
|
| 125 |
width: Math.round(rx * <?php echo $image[0] ?>) + 'px',
|
| 126 |
height: Math.round(ry * <?php echo $image[1] ?>) + 'px',
|
|
|
|
| 127 |
marginLeft: '-' + Math.round(rx * coords.x) + 'px',
|
| 128 |
marginTop: '-' + Math.round(ry * coords.y) + 'px'
|
| 129 |
});
|
| 122 |
var ry = <?php echo (int) constant( 'BP_AVATAR_FULL_HEIGHT' ) ?> / coords.h;
|
| 123 |
|
| 124 |
jQuery('#avatar-crop-preview').css({
|
| 125 |
+
<?php if ( $image ) : ?>
|
| 126 |
width: Math.round(rx * <?php echo $image[0] ?>) + 'px',
|
| 127 |
height: Math.round(ry * <?php echo $image[1] ?>) + 'px',
|
| 128 |
+
<?php endif; ?>
|
| 129 |
marginLeft: '-' + Math.round(rx * coords.x) + 'px',
|
| 130 |
marginTop: '-' + Math.round(ry * coords.y) + 'px'
|
| 131 |
});
|
bp-core/deprecated/bp-core-deprecated.php
CHANGED
|
@@ -711,6 +711,37 @@ function bp_core_avatar_admin( $message = null, $action, $delete_action) { ?>
|
|
| 711 |
</form> <?php
|
| 712 |
}
|
| 713 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 714 |
|
| 715 |
/*** END OLD AVATAR CROPPING SUPPORT **************************/
|
| 716 |
|
|
@@ -726,6 +757,10 @@ function bp_core_avatar_admin( $message = null, $action, $delete_action) { ?>
|
|
| 726 |
function bp_core_get_buddypress_themes() {
|
| 727 |
global $wp_themes;
|
| 728 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 729 |
/* Remove the cached WP themes first */
|
| 730 |
$wp_existing_themes = &$wp_themes;
|
| 731 |
$wp_themes = null;
|
| 711 |
</form> <?php
|
| 712 |
}
|
| 713 |
|
| 714 |
+
function bp_core_handle_avatar_upload($file) {
|
| 715 |
+
global $wp_upload_error;
|
| 716 |
+
|
| 717 |
+
require_once( ABSPATH . '/wp-admin/includes/file.php' );
|
| 718 |
+
|
| 719 |
+
// Change the upload file location to /avatars/user_id
|
| 720 |
+
add_filter( 'upload_dir', 'xprofile_avatar_upload_dir' );
|
| 721 |
+
|
| 722 |
+
$res = wp_handle_upload( $file['file'], array('action'=>'slick_avatars') );
|
| 723 |
+
|
| 724 |
+
if ( !in_array('error', array_keys($res) ) ) {
|
| 725 |
+
return $res['file'];
|
| 726 |
+
} else {
|
| 727 |
+
$wp_upload_error = $res['error'];
|
| 728 |
+
return false;
|
| 729 |
+
}
|
| 730 |
+
}
|
| 731 |
+
|
| 732 |
+
function bp_core_resize_avatar( $file, $size = false ) {
|
| 733 |
+
require_once( ABSPATH . '/wp-admin/includes/image.php' );
|
| 734 |
+
|
| 735 |
+
if ( !$size )
|
| 736 |
+
$size = CORE_CROPPING_CANVAS_MAX;
|
| 737 |
+
|
| 738 |
+
$canvas = wp_create_thumbnail( $file, $size );
|
| 739 |
+
|
| 740 |
+
if ( $canvas->errors )
|
| 741 |
+
return false;
|
| 742 |
+
|
| 743 |
+
return $canvas = str_replace( '//', '/', $canvas );
|
| 744 |
+
}
|
| 745 |
|
| 746 |
/*** END OLD AVATAR CROPPING SUPPORT **************************/
|
| 747 |
|
| 757 |
function bp_core_get_buddypress_themes() {
|
| 758 |
global $wp_themes;
|
| 759 |
|
| 760 |
+
/* If we are using a BuddyPress 1.1+ theme ignore this. */
|
| 761 |
+
if ( !file_exists( WP_CONTENT_DIR . '/bp-themes' ) )
|
| 762 |
+
return false;
|
| 763 |
+
|
| 764 |
/* Remove the cached WP themes first */
|
| 765 |
$wp_existing_themes = &$wp_themes;
|
| 766 |
$wp_themes = null;
|
bp-forums.php
CHANGED
|
@@ -166,12 +166,13 @@ function bp_forums_get_forum_topics( $args = '' ) {
|
|
| 166 |
function bp_forums_get_topic_details( $topic_id ) {
|
| 167 |
do_action( 'bbpress_init' );
|
| 168 |
|
| 169 |
-
$query = new BB_Query( 'topic', 'topic_id=' . $topic_id );
|
|
|
|
| 170 |
return $query->results[0];
|
| 171 |
}
|
| 172 |
|
| 173 |
function bp_forums_get_topic_id_from_slug( $topic_slug ) {
|
| 174 |
-
do_action( 'bbpress_init' );
|
| 175 |
return bb_get_id_from_slug( 'topic', $topic_slug );
|
| 176 |
}
|
| 177 |
|
|
@@ -202,7 +203,7 @@ function bp_forums_new_topic( $args = '' ) {
|
|
| 202 |
|
| 203 |
if ( !$topic_id = bb_insert_topic( array( 'topic_title' => stripslashes( $topic_title ), 'topic_slug' => $topic_slug, 'topic_poster' => $topic_poster, 'topic_poster_name' => $topic_poster_name, 'topic_last_poster' => $topic_last_poster, 'topic_last_poster_name' => $topic_last_poster_name, 'topic_start_time' => $topic_start_time, 'topic_time' => $topic_time, 'topic_open' => $topic_open, 'forum_id' => (int)$forum_id, 'tags' => $topic_tags ) ) )
|
| 204 |
return false;
|
| 205 |
-
|
| 206 |
/* Now insert the first post. */
|
| 207 |
if ( !bp_forums_insert_post( array( 'topic_id' => $topic_id, 'post_text' => $topic_text, 'post_time' => $topic_time, 'poster_id' => $topic_poster ) ) )
|
| 208 |
return false;
|
| 166 |
function bp_forums_get_topic_details( $topic_id ) {
|
| 167 |
do_action( 'bbpress_init' );
|
| 168 |
|
| 169 |
+
$query = new BB_Query( 'topic', 'topic_id=' . $topic_id . '&page=1' /* Page override so bbPress doesn't use the URI */ );
|
| 170 |
+
|
| 171 |
return $query->results[0];
|
| 172 |
}
|
| 173 |
|
| 174 |
function bp_forums_get_topic_id_from_slug( $topic_slug ) {
|
| 175 |
+
do_action( 'bbpress_init' );
|
| 176 |
return bb_get_id_from_slug( 'topic', $topic_slug );
|
| 177 |
}
|
| 178 |
|
| 203 |
|
| 204 |
if ( !$topic_id = bb_insert_topic( array( 'topic_title' => stripslashes( $topic_title ), 'topic_slug' => $topic_slug, 'topic_poster' => $topic_poster, 'topic_poster_name' => $topic_poster_name, 'topic_last_poster' => $topic_last_poster, 'topic_last_poster_name' => $topic_last_poster_name, 'topic_start_time' => $topic_start_time, 'topic_time' => $topic_time, 'topic_open' => $topic_open, 'forum_id' => (int)$forum_id, 'tags' => $topic_tags ) ) )
|
| 205 |
return false;
|
| 206 |
+
|
| 207 |
/* Now insert the first post. */
|
| 208 |
if ( !bp_forums_insert_post( array( 'topic_id' => $topic_id, 'post_text' => $topic_text, 'post_time' => $topic_time, 'poster_id' => $topic_poster ) ) )
|
| 209 |
return false;
|
bp-friends/bp-friends-templatetags.php
CHANGED
|
@@ -303,7 +303,7 @@ function bp_friend_search_form() {
|
|
| 303 |
?>
|
| 304 |
<form action="<?php echo $action ?>" id="friend-search-form" method="post">
|
| 305 |
|
| 306 |
-
<label for="friend-search-box" id="friend-search-label"><?php echo $label
|
| 307 |
<input type="search" name="friend-search-box" id="friend-search-box" value="<?php echo $value ?>"<?php echo $disabled ?> />
|
| 308 |
|
| 309 |
<?php wp_nonce_field( 'friends_search', '_wpnonce_friend_search' ) ?>
|
| 303 |
?>
|
| 304 |
<form action="<?php echo $action ?>" id="friend-search-form" method="post">
|
| 305 |
|
| 306 |
+
<label for="friend-search-box" id="friend-search-label"><?php echo $label ?></label>
|
| 307 |
<input type="search" name="friend-search-box" id="friend-search-box" value="<?php echo $value ?>"<?php echo $disabled ?> />
|
| 308 |
|
| 309 |
<?php wp_nonce_field( 'friends_search', '_wpnonce_friend_search' ) ?>
|
bp-groups.php
CHANGED
|
@@ -568,8 +568,7 @@ function groups_screen_create_group() {
|
|
| 568 |
bp_core_add_message( __( 'The group avatar was uploaded successfully!', 'buddypress' ) );
|
| 569 |
}
|
| 570 |
}
|
| 571 |
-
|
| 572 |
-
//var_dump($_COOKIE);
|
| 573 |
bp_core_load_template( apply_filters( 'groups_template_create_group', 'groups/create' ) );
|
| 574 |
}
|
| 575 |
|
|
@@ -605,7 +604,7 @@ function groups_screen_group_forum() {
|
|
| 605 |
$topic_slug = $bp->action_variables[1];
|
| 606 |
$topic_id = bp_forums_get_topic_id_from_slug( $topic_slug );
|
| 607 |
$forum_id = groups_get_groupmeta( $bp->groups->current_group->id, 'forum_id' );
|
| 608 |
-
|
| 609 |
if ( $topic_slug && $topic_id ) {
|
| 610 |
|
| 611 |
/* Posting a reply */
|
|
@@ -2138,7 +2137,7 @@ function groups_new_group_forum_topic( $topic_title, $topic_text, $topic_tags, $
|
|
| 2138 |
|
| 2139 |
if ( empty( $topic_title ) || empty( $topic_text ) )
|
| 2140 |
return false;
|
| 2141 |
-
|
| 2142 |
if ( $topic_id = bp_forums_new_topic( array( 'topic_title' => $topic_title, 'topic_text' => $topic_text, 'topic_tags' => $topic_tags, 'forum_id' => $forum_id ) ) ) {
|
| 2143 |
$topic = bp_forums_get_topic_details( $topic_id );
|
| 2144 |
|
|
@@ -2155,7 +2154,7 @@ function groups_new_group_forum_topic( $topic_title, $topic_text, $topic_tags, $
|
|
| 2155 |
) );
|
| 2156 |
|
| 2157 |
do_action( 'groups_new_forum_topic', $bp->groups->current_group->id, &$topic );
|
| 2158 |
-
|
| 2159 |
return $topic;
|
| 2160 |
}
|
| 2161 |
|
| 568 |
bp_core_add_message( __( 'The group avatar was uploaded successfully!', 'buddypress' ) );
|
| 569 |
}
|
| 570 |
}
|
| 571 |
+
|
|
|
|
| 572 |
bp_core_load_template( apply_filters( 'groups_template_create_group', 'groups/create' ) );
|
| 573 |
}
|
| 574 |
|
| 604 |
$topic_slug = $bp->action_variables[1];
|
| 605 |
$topic_id = bp_forums_get_topic_id_from_slug( $topic_slug );
|
| 606 |
$forum_id = groups_get_groupmeta( $bp->groups->current_group->id, 'forum_id' );
|
| 607 |
+
|
| 608 |
if ( $topic_slug && $topic_id ) {
|
| 609 |
|
| 610 |
/* Posting a reply */
|
| 2137 |
|
| 2138 |
if ( empty( $topic_title ) || empty( $topic_text ) )
|
| 2139 |
return false;
|
| 2140 |
+
|
| 2141 |
if ( $topic_id = bp_forums_new_topic( array( 'topic_title' => $topic_title, 'topic_text' => $topic_text, 'topic_tags' => $topic_tags, 'forum_id' => $forum_id ) ) ) {
|
| 2142 |
$topic = bp_forums_get_topic_details( $topic_id );
|
| 2143 |
|
| 2154 |
) );
|
| 2155 |
|
| 2156 |
do_action( 'groups_new_forum_topic', $bp->groups->current_group->id, &$topic );
|
| 2157 |
+
|
| 2158 |
return $topic;
|
| 2159 |
}
|
| 2160 |
|
bp-groups/bp-groups-filters.php
CHANGED
|
@@ -62,7 +62,7 @@ function groups_add_forum_privacy_sql() {
|
|
| 62 |
global $bp;
|
| 63 |
|
| 64 |
/* Only filter the forum SQL on group pages or on the forums directory */
|
| 65 |
-
if ( $bp->groups->current_group || bp_is_directory() ) {
|
| 66 |
add_filter( 'get_topics_fields', 'groups_add_forum_fields_sql' );
|
| 67 |
add_filter( 'get_topics_index_hint', 'groups_add_forum_tables_sql' );
|
| 68 |
add_filter( 'get_topics_where', 'groups_add_forum_where_sql' );
|
| 62 |
global $bp;
|
| 63 |
|
| 64 |
/* Only filter the forum SQL on group pages or on the forums directory */
|
| 65 |
+
if ( ( $bp->groups->current_group && 'public' == $bp->groups->current_group->status ) || bp_is_directory() ) {
|
| 66 |
add_filter( 'get_topics_fields', 'groups_add_forum_fields_sql' );
|
| 67 |
add_filter( 'get_topics_index_hint', 'groups_add_forum_tables_sql' );
|
| 68 |
add_filter( 'get_topics_where', 'groups_add_forum_where_sql' );
|
bp-groups/bp-groups-templatetags.php
CHANGED
|
@@ -728,7 +728,7 @@ function bp_group_search_form() {
|
|
| 728 |
$name = 'group-filter-box';
|
| 729 |
?>
|
| 730 |
<form action="<?php echo $action ?>" id="group-search-form" method="post">
|
| 731 |
-
<label for="<?php echo $name ?>" id="<?php echo $name ?>-label"><?php echo $label
|
| 732 |
<input type="search" name="<?php echo $name ?>" id="<?php echo $name ?>" value="<?php echo $value ?>"<?php echo $disabled ?> />
|
| 733 |
|
| 734 |
<?php wp_nonce_field( 'group-filter-box', '_wpnonce_group_filter' ) ?>
|
| 728 |
$name = 'group-filter-box';
|
| 729 |
?>
|
| 730 |
<form action="<?php echo $action ?>" id="group-search-form" method="post">
|
| 731 |
+
<label for="<?php echo $name ?>" id="<?php echo $name ?>-label"><?php echo $label ?></label>
|
| 732 |
<input type="search" name="<?php echo $name ?>" id="<?php echo $name ?>" value="<?php echo $value ?>"<?php echo $disabled ?> />
|
| 733 |
|
| 734 |
<?php wp_nonce_field( 'group-filter-box', '_wpnonce_group_filter' ) ?>
|
bp-languages/buddypress.pot
CHANGED
|
@@ -8,7 +8,7 @@ msgid ""
|
|
| 8 |
msgstr ""
|
| 9 |
"Project-Id-Version: PACKAGE VERSION\n"
|
| 10 |
"Report-Msgid-Bugs-To: wp-polyglots@lists.automattic.com\n"
|
| 11 |
-
"POT-Creation-Date: 2009-
|
| 12 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
| 13 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
| 14 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
|
@@ -29,13 +29,10 @@ msgstr ""
|
|
| 29 |
#: bp-friends/bp-friends-templatetags.php:414
|
| 30 |
#: bp-themes/bp-sn-parent/friends/index.php:10
|
| 31 |
#: bp-themes/bp-sn-parent/profile/index.php:108
|
| 32 |
-
#: bp-themes/deprecated/bpmember/friends/index.php:10
|
| 33 |
-
#: bp-themes/deprecated/bpmember/profile/index.php:81
|
| 34 |
msgid "My Friends"
|
| 35 |
msgstr ""
|
| 36 |
|
| 37 |
#: bp-activity.php:99 bp-themes/bp-sn-parent/activity/just-me.php:22
|
| 38 |
-
#: bp-themes/deprecated/bpmember/activity/just-me.php:31
|
| 39 |
msgid "My Activity"
|
| 40 |
msgstr ""
|
| 41 |
|
|
@@ -65,14 +62,11 @@ msgstr ""
|
|
| 65 |
#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:888
|
| 66 |
#: bp-forums/bbpress/bb-admin/topics.php:128
|
| 67 |
#: bp-forums/bbpress/bb-includes/functions.bb-template.php:1983
|
| 68 |
-
#: bp-forums/bp-forums-templatetags.php:
|
| 69 |
-
#: bp-forums/bp-forums-templatetags.php:
|
| 70 |
#: bp-themes/bp-sn-parent/messages/index.php:52
|
| 71 |
#: bp-themes/bp-sn-parent/messages/notices.php:46
|
| 72 |
#: bp-themes/bp-sn-parent/messages/sentbox.php:47
|
| 73 |
-
#: bp-themes/deprecated/bpmember/messages/index.php:38
|
| 74 |
-
#: bp-themes/deprecated/bpmember/messages/notices.php:33
|
| 75 |
-
#: bp-themes/deprecated/bpmember/messages/sentbox.php:33
|
| 76 |
#: bp-wire/bp-wire-templatetags.php:360 bp-wire/bp-wire-templatetags.php:362
|
| 77 |
#: bp-xprofile/bp-xprofile-admin.php:69 bp-xprofile/bp-xprofile-admin.php:96
|
| 78 |
msgid "Delete"
|
|
@@ -109,8 +103,6 @@ msgid "Site Wide Activity"
|
|
| 109 |
msgstr ""
|
| 110 |
|
| 111 |
#: bp-activity/bp-activity-widgets.php:22 bp-themes/bp-sn-parent/header.php:18
|
| 112 |
-
#: bp-themes/deprecated/bphome/header.php:14
|
| 113 |
-
#: bp-themes/deprecated/bpmember/header.php:18
|
| 114 |
msgid "Site Wide Activity RSS Feed"
|
| 115 |
msgstr ""
|
| 116 |
|
|
@@ -148,34 +140,28 @@ msgstr ""
|
|
| 148 |
msgid "Site Wide Activity Feed"
|
| 149 |
msgstr ""
|
| 150 |
|
| 151 |
-
#: bp-blogs.php:147 bp-core/bp-core-templatetags.php:
|
| 152 |
-
#: bp-core/bp-core-templatetags.php:
|
| 153 |
-
#: bp-themes/deprecated/bphome/header.php:55
|
| 154 |
-
#: bp-themes/deprecated/bpmember/header.php:54
|
| 155 |
msgid "Blogs"
|
| 156 |
msgstr ""
|
| 157 |
|
| 158 |
#: bp-blogs.php:152 bp-blogs.php:161 bp-core/bp-core-adminbar.php:140
|
| 159 |
#: bp-themes/bp-sn-parent/blogs/my-blogs.php:11
|
| 160 |
-
#: bp-themes/deprecated/bpmember/blogs/my-blogs.php:8
|
| 161 |
msgid "My Blogs"
|
| 162 |
msgstr ""
|
| 163 |
|
| 164 |
#: bp-blogs.php:153 bp-forums/bbpress/bb-templates/kakumei/search.php:12
|
| 165 |
#: bp-themes/bp-sn-parent/blogs/recent-posts.php:11
|
| 166 |
-
#: bp-themes/deprecated/bpmember/blogs/recent-posts.php:8
|
| 167 |
msgid "Recent Posts"
|
| 168 |
msgstr ""
|
| 169 |
|
| 170 |
#: bp-blogs.php:154 bp-themes/bp-sn-parent/blogs/recent-comments.php:11
|
| 171 |
-
#: bp-themes/deprecated/bpmember/blogs/recent-comments.php:8
|
| 172 |
msgid "Recent Comments"
|
| 173 |
msgstr ""
|
| 174 |
|
| 175 |
#: bp-blogs.php:155 bp-blogs/bp-blogs-templatetags.php:173
|
| 176 |
#: bp-themes/bp-sn-parent/blogs/create.php:4
|
| 177 |
#: bp-themes/bp-sn-parent/blogs/create.php:11
|
| 178 |
-
#: bp-themes/deprecated/bpmember/blogs/create.php:8
|
| 179 |
msgid "Create a Blog"
|
| 180 |
msgstr ""
|
| 181 |
|
|
@@ -281,11 +267,10 @@ msgstr ""
|
|
| 281 |
#: bp-core/bp-core-admin.php:68 bp-core/bp-core-admin.php:75
|
| 282 |
#: bp-core/bp-core-admin.php:83 bp-core/bp-core-admin.php:91
|
| 283 |
#: bp-core/bp-core-admin.php:99 bp-core/deprecated/bp-core-deprecated.php:119
|
| 284 |
-
#: bp-friends.php:159 bp-groups.php:
|
| 285 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:39
|
| 286 |
-
#: bp-themes/bp-sn-parent/registration/register.php:192
|
| 287 |
-
#: bp-
|
| 288 |
-
#: bp-xprofile.php:447 bp-xprofile/bp-xprofile-admin.php:94
|
| 289 |
msgid "Yes"
|
| 290 |
msgstr ""
|
| 291 |
|
|
@@ -293,11 +278,9 @@ msgstr ""
|
|
| 293 |
#: bp-core/bp-core-admin.php:69 bp-core/bp-core-admin.php:76
|
| 294 |
#: bp-core/bp-core-admin.php:84 bp-core/bp-core-admin.php:92
|
| 295 |
#: bp-core/bp-core-admin.php:100 bp-core/deprecated/bp-core-deprecated.php:123
|
| 296 |
-
#: bp-friends.php:160 bp-groups.php:
|
| 297 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:40
|
| 298 |
-
#: bp-themes/bp-sn-parent/registration/register.php:193
|
| 299 |
-
#: bp-themes/deprecated/bpmember/groups/single/admin.php:36
|
| 300 |
-
#: bp-xprofile.php:448
|
| 301 |
msgid "No"
|
| 302 |
msgstr ""
|
| 303 |
|
|
@@ -315,7 +298,6 @@ msgstr ""
|
|
| 315 |
|
| 316 |
#: bp-blogs/bp-blogs-templatetags.php:187
|
| 317 |
#: bp-themes/bp-sn-parent/blogs/my-blogs.php:11
|
| 318 |
-
#: bp-themes/deprecated/bpmember/blogs/my-blogs.php:8
|
| 319 |
#, php-format
|
| 320 |
msgid "%s's Blogs"
|
| 321 |
msgstr ""
|
|
@@ -367,7 +349,7 @@ msgid "Blog Avatar"
|
|
| 367 |
msgstr ""
|
| 368 |
|
| 369 |
#: bp-blogs/bp-blogs-templatetags.php:1293 bp-core/bp-core-classes.php:64
|
| 370 |
-
#: bp-core/bp-core-templatetags.php:
|
| 371 |
#: bp-groups/bp-groups-templatetags.php:2051
|
| 372 |
#: bp-groups/deprecated/bp-groups-deprecated.php:194
|
| 373 |
#, php-format
|
|
@@ -380,24 +362,23 @@ msgid "Latest Post: %s"
|
|
| 380 |
msgstr ""
|
| 381 |
|
| 382 |
#: bp-blogs/bp-blogs-templatetags.php:1324
|
| 383 |
-
#: bp-core/bp-core-templatetags.php:
|
| 384 |
-
#: bp-forums/bp-forums-templatetags.php:
|
| 385 |
#: bp-groups/bp-groups-templatetags.php:2193
|
| 386 |
msgid "Search anything..."
|
| 387 |
msgstr ""
|
| 388 |
|
| 389 |
#: bp-blogs/bp-blogs-templatetags.php:1325
|
| 390 |
-
#: bp-core/bp-core-templatetags.php:
|
| 391 |
#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:624
|
| 392 |
#: bp-forums/bbpress/bb-includes/class.bb-query.php:1017
|
| 393 |
#: bp-forums/bbpress/bb-templates/kakumei/rss2.php:18
|
| 394 |
#: bp-forums/bbpress/bb-templates/kakumei/search.php:3
|
| 395 |
-
#: bp-forums/bp-forums-templatetags.php:
|
| 396 |
#: bp-groups/bp-groups-templatetags.php:2194
|
| 397 |
#: bp-themes/bp-sn-parent/directories/forums/index.php:63
|
| 398 |
-
#: bp-themes/bp-sn-parent/header.php:
|
| 399 |
#: bp-themes/bp-sn-parent/searchform.php:5
|
| 400 |
-
#: bp-themes/deprecated/bphome/searchform.php:3
|
| 401 |
msgid "Search"
|
| 402 |
msgstr ""
|
| 403 |
|
|
@@ -446,7 +427,7 @@ msgstr ""
|
|
| 446 |
msgid "Public"
|
| 447 |
msgstr ""
|
| 448 |
|
| 449 |
-
#: bp-core.php:360 bp-core/bp-core-templatetags.php:
|
| 450 |
msgid "My Profile"
|
| 451 |
msgstr ""
|
| 452 |
|
|
@@ -477,8 +458,7 @@ msgstr ""
|
|
| 477 |
msgid "%s's"
|
| 478 |
msgstr ""
|
| 479 |
|
| 480 |
-
#: bp-core.php:1163 bp-core/bp-core-templatetags.php:
|
| 481 |
-
#: bp-themes/deprecated/bphome/comments.php:42
|
| 482 |
msgid "at"
|
| 483 |
msgstr ""
|
| 484 |
|
|
@@ -550,22 +530,28 @@ msgstr ""
|
|
| 550 |
msgid "not recently active"
|
| 551 |
msgstr ""
|
| 552 |
|
| 553 |
-
#: bp-core
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 554 |
msgid "There was an error activating your account, please try again."
|
| 555 |
msgstr ""
|
| 556 |
|
| 557 |
-
#: bp-core/bp-core-activation.php:
|
| 558 |
#, php-format
|
| 559 |
msgid "%s became a registered member"
|
| 560 |
msgstr ""
|
| 561 |
|
| 562 |
-
#: bp-core/bp-core-activation.php:
|
| 563 |
#: bp-core/deprecated/bp-core-deprecated.php:509
|
| 564 |
#: bp-core/deprecated/bp-core-deprecated.php:527
|
| 565 |
msgid "Your account is now active!"
|
| 566 |
msgstr ""
|
| 567 |
|
| 568 |
-
#: bp-core/bp-core-activation.php:
|
| 569 |
msgid "After you activate, you will receive *another email* with your login."
|
| 570 |
msgstr ""
|
| 571 |
|
|
@@ -609,22 +595,16 @@ msgstr ""
|
|
| 609 |
msgid "Disable global forum directory?"
|
| 610 |
msgstr ""
|
| 611 |
|
| 612 |
-
#: bp-core/bp-core-admin.php:
|
| 613 |
msgid "Select theme to use for BuddyPress generated pages"
|
| 614 |
msgstr ""
|
| 615 |
|
| 616 |
-
#: bp-core/bp-core-admin.php:125
|
| 617 |
-
#, php-format
|
| 618 |
-
msgid ""
|
| 619 |
-
"<strong>You do not have any BuddyPress themes installed.</strong><p style="
|
| 620 |
-
"\"line-height: 150%%\">Please move the default BuddyPress themes to their "
|
| 621 |
-
"correct location (move %s to %s) and reload this page. You can <a href="
|
| 622 |
-
"\"http://buddypress.org/extend/themes\" title=\"Download\">download more "
|
| 623 |
-
"themes here</a>.</p>"
|
| 624 |
-
msgstr ""
|
| 625 |
-
|
| 626 |
#: bp-core/bp-core-admin.php:127
|
| 627 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
| 628 |
msgstr ""
|
| 629 |
|
| 630 |
#: bp-core/bp-core-admin.php:133
|
|
@@ -728,13 +708,11 @@ msgstr ""
|
|
| 728 |
msgid "Allows the creation of friend connections between users."
|
| 729 |
msgstr ""
|
| 730 |
|
| 731 |
-
#: bp-core/bp-core-admin.php:244 bp-core/bp-core-templatetags.php:
|
| 732 |
-
#: bp-core/bp-core-templatetags.php:
|
| 733 |
-
#: bp-groups.php:
|
| 734 |
-
#: bp-groups.php:
|
| 735 |
-
#: bp-groups/bp-groups-widgets.php:13 bp-themes/bp-sn-parent/header.php:
|
| 736 |
-
#: bp-themes/deprecated/bphome/header.php:51
|
| 737 |
-
#: bp-themes/deprecated/bpmember/header.php:50
|
| 738 |
msgid "Groups"
|
| 739 |
msgstr ""
|
| 740 |
|
|
@@ -777,15 +755,14 @@ msgid "Allow users to post status updates."
|
|
| 777 |
msgstr ""
|
| 778 |
|
| 779 |
#: bp-core/bp-core-adminbar.php:40
|
| 780 |
-
#: bp-core/deprecated/bp-core-deprecated.php:
|
| 781 |
-
#: bp-themes/bp-sn-parent/header.php:
|
| 782 |
-
#: bp-themes/deprecated/bpmember/userbar.php:37
|
| 783 |
msgid "Log In"
|
| 784 |
msgstr ""
|
| 785 |
|
| 786 |
#: bp-core/bp-core-adminbar.php:44
|
| 787 |
-
#: bp-core/deprecated/bp-core-deprecated.php:
|
| 788 |
-
#: bp-themes/bp-sn-parent/header.php:
|
| 789 |
#: bp-themes/bp-sn-parent/registration/register.php:13
|
| 790 |
msgid "Sign Up"
|
| 791 |
msgstr ""
|
|
@@ -796,9 +773,9 @@ msgstr ""
|
|
| 796 |
|
| 797 |
#: bp-core/bp-core-adminbar.php:91 bp-core/bp-core-adminbar.php:93
|
| 798 |
#: bp-core/bp-core-templatetags.php:50 bp-core/bp-core-templatetags.php:52
|
| 799 |
-
#: bp-core/bp-core-templatetags.php:
|
| 800 |
-
#: bp-core/deprecated/bp-core-deprecated.php:
|
| 801 |
-
#: bp-core/deprecated/bp-core-deprecated.php:
|
| 802 |
#: bp-forums/bbpress/bb-includes/functions.bb-template.php:2729
|
| 803 |
msgid "Log Out"
|
| 804 |
msgstr ""
|
|
@@ -889,18 +866,18 @@ msgid "Avatar Image"
|
|
| 889 |
msgstr ""
|
| 890 |
|
| 891 |
#: bp-core/bp-core-avatars.php:214
|
| 892 |
-
#: bp-xprofile/deprecated/bp-xprofile-deprecated.php:
|
| 893 |
msgid "There is no error, the file uploaded with success"
|
| 894 |
msgstr ""
|
| 895 |
|
| 896 |
#: bp-core/bp-core-avatars.php:215 bp-core/bp-core-avatars.php:216
|
| 897 |
-
#: bp-xprofile/deprecated/bp-xprofile-deprecated.php:
|
| 898 |
-
#: bp-xprofile/deprecated/bp-xprofile-deprecated.php:
|
| 899 |
msgid "Your image was bigger than the maximum allowed file size of: "
|
| 900 |
msgstr ""
|
| 901 |
|
| 902 |
#: bp-core/bp-core-avatars.php:217
|
| 903 |
-
#: bp-xprofile/deprecated/bp-xprofile-deprecated.php:
|
| 904 |
msgid "The uploaded file was only partially uploaded"
|
| 905 |
msgstr ""
|
| 906 |
|
|
@@ -909,7 +886,7 @@ msgid "No file was uploaded"
|
|
| 909 |
msgstr ""
|
| 910 |
|
| 911 |
#: bp-core/bp-core-avatars.php:219
|
| 912 |
-
#: bp-xprofile/deprecated/bp-xprofile-deprecated.php:
|
| 913 |
msgid "Missing a temporary folder"
|
| 914 |
msgstr ""
|
| 915 |
|
|
@@ -919,23 +896,23 @@ msgid "Your upload failed, please try again. Error was: %s"
|
|
| 919 |
msgstr ""
|
| 920 |
|
| 921 |
#: bp-core/bp-core-avatars.php:228
|
| 922 |
-
#: bp-xprofile/deprecated/bp-xprofile-deprecated.php:
|
| 923 |
#, php-format
|
| 924 |
msgid "The file you uploaded is too big. Please upload a file under %s"
|
| 925 |
msgstr ""
|
| 926 |
|
| 927 |
#: bp-core/bp-core-avatars.php:233
|
| 928 |
-
#: bp-xprofile/deprecated/bp-xprofile-deprecated.php:
|
| 929 |
msgid "Please upload only JPG, GIF or PNG photos."
|
| 930 |
msgstr ""
|
| 931 |
|
| 932 |
#: bp-core/bp-core-avatars.php:244
|
| 933 |
-
#: bp-xprofile/deprecated/bp-xprofile-deprecated.php:
|
| 934 |
#, php-format
|
| 935 |
msgid "Upload Failed! Error was: %s"
|
| 936 |
msgstr ""
|
| 937 |
|
| 938 |
-
#: bp-core/bp-core-catchuri.php:
|
| 939 |
msgid ""
|
| 940 |
"This user has been marked as a spammer. Only site admins can view this "
|
| 941 |
"profile."
|
|
@@ -968,7 +945,7 @@ msgstr ""
|
|
| 968 |
msgid "%s's group list"
|
| 969 |
msgstr ""
|
| 970 |
|
| 971 |
-
#: bp-core/bp-core-cssjs.php:
|
| 972 |
msgid "Are you sure?"
|
| 973 |
msgstr ""
|
| 974 |
|
|
@@ -1025,10 +1002,6 @@ msgstr ""
|
|
| 1025 |
#: bp-themes/bp-sn-parent/groups/single/forum/edit.php:55
|
| 1026 |
#: bp-themes/bp-sn-parent/groups/single/forum/edit.php:73
|
| 1027 |
#: bp-themes/bp-sn-parent/profile/edit.php:114
|
| 1028 |
-
#: bp-themes/deprecated/bpmember/groups/single/admin.php:39
|
| 1029 |
-
#: bp-themes/deprecated/bpmember/groups/single/admin.php:97
|
| 1030 |
-
#: bp-themes/deprecated/bpmember/groups/single/forum/edit.php:55
|
| 1031 |
-
#: bp-themes/deprecated/bpmember/groups/single/forum/edit.php:73
|
| 1032 |
#: bp-xprofile/deprecated/bp-xprofile-deprecated.php:141
|
| 1033 |
msgid "Save Changes"
|
| 1034 |
msgstr ""
|
|
@@ -1084,122 +1057,105 @@ msgstr ""
|
|
| 1084 |
msgid "Your new avatar was uploaded successfully"
|
| 1085 |
msgstr ""
|
| 1086 |
|
| 1087 |
-
#: bp-core/bp-core-templatetags.php:
|
| 1088 |
msgid "Options"
|
| 1089 |
msgstr ""
|
| 1090 |
|
| 1091 |
-
#: bp-core/bp-core-templatetags.php:
|
| 1092 |
#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:646
|
| 1093 |
#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:650
|
| 1094 |
#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:660
|
| 1095 |
#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:664
|
| 1096 |
#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:926
|
| 1097 |
#: bp-groups/bp-groups-admin.php:72 bp-themes/bp-sn-parent/comments.php:92
|
| 1098 |
-
#: bp-themes/deprecated/bphome/comments-popup.php:64
|
| 1099 |
-
#: bp-themes/deprecated/bphome/comments.php:90
|
| 1100 |
msgid "Name"
|
| 1101 |
msgstr ""
|
| 1102 |
|
| 1103 |
-
#: bp-core/bp-core-templatetags.php:
|
| 1104 |
msgid "About Me"
|
| 1105 |
msgstr ""
|
| 1106 |
|
| 1107 |
-
#: bp-core/bp-core-templatetags.php:
|
| 1108 |
#: bp-forums/bbpress/bb-includes/functions.bb-core.php:901
|
| 1109 |
#: bp-themes/bp-sn-parent/comments.php:102
|
| 1110 |
-
#: bp-themes/deprecated/bphome/comments.php:96
|
| 1111 |
msgid "Website"
|
| 1112 |
msgstr ""
|
| 1113 |
|
| 1114 |
-
#: bp-core/bp-core-templatetags.php:
|
| 1115 |
msgid "Jabber"
|
| 1116 |
msgstr ""
|
| 1117 |
|
| 1118 |
-
#: bp-core/bp-core-templatetags.php:
|
| 1119 |
msgid "AOL Messenger"
|
| 1120 |
msgstr ""
|
| 1121 |
|
| 1122 |
-
#: bp-core/bp-core-templatetags.php:
|
| 1123 |
msgid "Yahoo Messenger"
|
| 1124 |
msgstr ""
|
| 1125 |
|
| 1126 |
-
#: bp-core/bp-core-templatetags.php:
|
| 1127 |
-
#: bp-groups.php:268 bp-themes/bp-sn-parent/header.php:
|
| 1128 |
-
#: bp-themes/bp-sn-parent/header.php:
|
| 1129 |
-
#: bp-themes/deprecated/bphome/header.php:43
|
| 1130 |
-
#: bp-themes/deprecated/bphome/header.php:46
|
| 1131 |
-
#: bp-themes/deprecated/bpmember/header.php:42
|
| 1132 |
-
#: bp-themes/deprecated/bpmember/header.php:45
|
| 1133 |
msgid "Home"
|
| 1134 |
msgstr ""
|
| 1135 |
|
| 1136 |
-
#: bp-core/bp-core-templatetags.php:
|
| 1137 |
msgid "Blog — "
|
| 1138 |
msgstr ""
|
| 1139 |
|
| 1140 |
-
#: bp-core/bp-core-templatetags.php:
|
| 1141 |
msgid "Blog — Categories — "
|
| 1142 |
msgstr ""
|
| 1143 |
|
| 1144 |
-
#: bp-core/bp-core-templatetags.php:
|
| 1145 |
msgid "Blog — Tags — "
|
| 1146 |
msgstr ""
|
| 1147 |
|
| 1148 |
-
#: bp-core/bp-core-templatetags.php:
|
| 1149 |
#: bp-themes/bp-sn-parent/archive.php:9
|
| 1150 |
#: bp-themes/bp-sn-parent/attachment.php:9
|
| 1151 |
-
#: bp-themes/bp-sn-parent/header.php:
|
| 1152 |
#: bp-themes/bp-sn-parent/search.php:9 bp-themes/bp-sn-parent/single.php:9
|
| 1153 |
-
#: bp-themes/deprecated/bphome/archive.php:5
|
| 1154 |
-
#: bp-themes/deprecated/bphome/attachment.php:6
|
| 1155 |
-
#: bp-themes/deprecated/bphome/header.php:47
|
| 1156 |
-
#: bp-themes/deprecated/bphome/index.php:6
|
| 1157 |
-
#: bp-themes/deprecated/bphome/search.php:6
|
| 1158 |
-
#: bp-themes/deprecated/bphome/single.php:6
|
| 1159 |
-
#: bp-themes/deprecated/bpmember/header.php:46
|
| 1160 |
msgid "Blog"
|
| 1161 |
msgstr ""
|
| 1162 |
|
| 1163 |
-
#: bp-core/bp-core-templatetags.php:
|
| 1164 |
#, php-format
|
| 1165 |
msgid "%s Directory"
|
| 1166 |
msgstr ""
|
| 1167 |
|
| 1168 |
-
#: bp-core/bp-core-templatetags.php:
|
| 1169 |
#: bp-core/bp-core-widgets.php:73 bp-groups.php:284
|
| 1170 |
#: bp-groups/bp-groups-admin.php:81
|
| 1171 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:197
|
| 1172 |
-
#: bp-themes/bp-sn-parent/header.php:
|
| 1173 |
-
#: bp-themes/deprecated/bphome/header.php:48
|
| 1174 |
-
#: bp-themes/deprecated/bpmember/groups/single/admin.php:171
|
| 1175 |
-
#: bp-themes/deprecated/bpmember/header.php:47
|
| 1176 |
msgid "Members"
|
| 1177 |
msgstr ""
|
| 1178 |
|
| 1179 |
-
#: bp-core/bp-core-templatetags.php:
|
| 1180 |
#: bp-forums/bbpress/bb-admin/forums.php:42
|
| 1181 |
#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:65
|
| 1182 |
#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:66
|
| 1183 |
#: bp-forums/bbpress/bb-templates/kakumei/front-page.php:48
|
| 1184 |
-
#: bp-forums/bp-forums-admin.php:159 bp-themes/bp-sn-parent/header.php:
|
| 1185 |
msgid "Forums"
|
| 1186 |
msgstr ""
|
| 1187 |
|
| 1188 |
-
#: bp-core/bp-core-templatetags.php:
|
| 1189 |
msgid "Your Avatar"
|
| 1190 |
msgstr ""
|
| 1191 |
|
| 1192 |
-
#: bp-core/bp-core-templatetags.php:
|
| 1193 |
#, php-format
|
| 1194 |
msgid "Viewing member %d to %d (of %d members)"
|
| 1195 |
msgstr ""
|
| 1196 |
|
| 1197 |
-
#: bp-core/bp-core-templatetags.php:
|
| 1198 |
#, php-format
|
| 1199 |
msgid "%d friend"
|
| 1200 |
msgstr ""
|
| 1201 |
|
| 1202 |
-
#: bp-core/bp-core-templatetags.php:
|
| 1203 |
#, php-format
|
| 1204 |
msgid "%d friends"
|
| 1205 |
msgstr ""
|
|
@@ -1216,8 +1172,6 @@ msgstr ""
|
|
| 1216 |
#: bp-core/bp-core-widgets.php:51
|
| 1217 |
#: bp-themes/bp-sn-parent/groups/single/forum/edit.php:47
|
| 1218 |
#: bp-themes/bp-sn-parent/groups/single/forum/index.php:78
|
| 1219 |
-
#: bp-themes/deprecated/bpmember/groups/single/forum/edit.php:47
|
| 1220 |
-
#: bp-themes/deprecated/bpmember/groups/single/forum/index.php:70
|
| 1221 |
msgid "Title:"
|
| 1222 |
msgstr ""
|
| 1223 |
|
|
@@ -1577,13 +1531,13 @@ msgstr ""
|
|
| 1577 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:141
|
| 1578 |
#: bp-themes/bp-sn-parent/profile/change-avatar.php:40
|
| 1579 |
#: bp-themes/bp-sn-parent/registration/register.php:236
|
| 1580 |
-
#: bp-themes/deprecated/bpmember/groups/single/admin.php:119
|
| 1581 |
msgid "Upload Image"
|
| 1582 |
msgstr ""
|
| 1583 |
|
| 1584 |
#: bp-core/deprecated/bp-core-deprecated.php:691
|
| 1585 |
#: bp-themes/bp-sn-parent/profile/change-avatar.php:50
|
| 1586 |
#: bp-themes/bp-sn-parent/registration/register.php:248
|
|
|
|
| 1587 |
msgid "Crop Your New Avatar"
|
| 1588 |
msgstr ""
|
| 1589 |
|
|
@@ -1593,7 +1547,7 @@ msgstr ""
|
|
| 1593 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:153
|
| 1594 |
#: bp-themes/bp-sn-parent/profile/change-avatar.php:52
|
| 1595 |
#: bp-themes/bp-sn-parent/registration/register.php:250
|
| 1596 |
-
#: bp-
|
| 1597 |
msgid "Avatar to crop"
|
| 1598 |
msgstr ""
|
| 1599 |
|
|
@@ -1602,7 +1556,6 @@ msgstr ""
|
|
| 1602 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:156
|
| 1603 |
#: bp-themes/bp-sn-parent/profile/change-avatar.php:55
|
| 1604 |
#: bp-themes/bp-sn-parent/registration/register.php:253
|
| 1605 |
-
#: bp-themes/deprecated/bpmember/groups/single/admin.php:134
|
| 1606 |
msgid "Avatar preview"
|
| 1607 |
msgstr ""
|
| 1608 |
|
|
@@ -1612,11 +1565,11 @@ msgstr ""
|
|
| 1612 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:159
|
| 1613 |
#: bp-themes/bp-sn-parent/profile/change-avatar.php:58
|
| 1614 |
#: bp-themes/bp-sn-parent/registration/register.php:256
|
| 1615 |
-
#: bp-
|
| 1616 |
msgid "Crop Image"
|
| 1617 |
msgstr ""
|
| 1618 |
|
| 1619 |
-
#: bp-core/deprecated/bp-core-deprecated.php:
|
| 1620 |
#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:645
|
| 1621 |
#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:649
|
| 1622 |
#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:659
|
|
@@ -1625,16 +1578,14 @@ msgstr ""
|
|
| 1625 |
#: bp-forums/bbpress/bb-templates/kakumei/login.php:17
|
| 1626 |
#: bp-forums/bbpress/bb-templates/kakumei/login.php:59
|
| 1627 |
#: bp-forums/bbpress/bb-templates/kakumei/register.php:25
|
| 1628 |
-
#: bp-themes/bp-sn-parent/header.php:
|
| 1629 |
#: bp-themes/bp-sn-parent/registration/register.php:27
|
| 1630 |
#: bp-themes/bp-sn-parent/userbar.php:28
|
| 1631 |
-
#: bp-themes/deprecated/bpmember/userbar.php:28
|
| 1632 |
msgid "Username"
|
| 1633 |
msgstr ""
|
| 1634 |
|
| 1635 |
-
#: bp-core/deprecated/bp-core-deprecated.php:
|
| 1636 |
-
#: bp-themes/bp-sn-parent/header.php:
|
| 1637 |
-
#: bp-themes/deprecated/bpmember/userbar.php:35
|
| 1638 |
msgid "Remember Me"
|
| 1639 |
msgstr ""
|
| 1640 |
|
|
@@ -1794,10 +1745,6 @@ msgstr ""
|
|
| 1794 |
#: bp-themes/bp-sn-parent/groups/single/forum/edit.php:32
|
| 1795 |
#: bp-themes/bp-sn-parent/groups/single/forum/index.php:25
|
| 1796 |
#: bp-themes/bp-sn-parent/groups/single/forum/topic.php:28
|
| 1797 |
-
#: bp-themes/deprecated/bpmember/groups/single/forum/edit.php:28
|
| 1798 |
-
#: bp-themes/deprecated/bpmember/groups/single/forum/edit.php:32
|
| 1799 |
-
#: bp-themes/deprecated/bpmember/groups/single/forum/index.php:25
|
| 1800 |
-
#: bp-themes/deprecated/bpmember/groups/single/forum/topic.php:28
|
| 1801 |
msgid "Forum"
|
| 1802 |
msgstr ""
|
| 1803 |
|
|
@@ -2822,7 +2769,6 @@ msgstr ""
|
|
| 2822 |
|
| 2823 |
#: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:2100
|
| 2824 |
#: bp-themes/bp-sn-parent/directories/groups/index.php:106
|
| 2825 |
-
#: bp-themes/deprecated/bpmember/directories/groups/index.php:88
|
| 2826 |
msgid "Description:"
|
| 2827 |
msgstr ""
|
| 2828 |
|
|
@@ -3026,12 +2972,9 @@ msgstr ""
|
|
| 3026 |
#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:886
|
| 3027 |
#: bp-forums/bbpress/bb-includes/functions.bb-core.php:846
|
| 3028 |
#: bp-forums/bbpress/bb-includes/functions.bb-template.php:1926
|
| 3029 |
-
#: bp-forums/bp-forums-templatetags.php:
|
| 3030 |
-
#: bp-forums/bp-forums-templatetags.php:
|
| 3031 |
#: bp-themes/bp-sn-parent/archive.php:35 bp-themes/bp-sn-parent/search.php:29
|
| 3032 |
-
#: bp-themes/deprecated/bphome/archive.php:45
|
| 3033 |
-
#: bp-themes/deprecated/bphome/comments.php:42
|
| 3034 |
-
#: bp-themes/deprecated/bphome/search.php:23
|
| 3035 |
#: bp-xprofile/bp-xprofile-admin.php:68 bp-xprofile/bp-xprofile-admin.php:95
|
| 3036 |
msgid "Edit"
|
| 3037 |
msgstr ""
|
|
@@ -3112,7 +3055,6 @@ msgstr ""
|
|
| 3112 |
|
| 3113 |
#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:647
|
| 3114 |
#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:661
|
| 3115 |
-
#: bp-themes/deprecated/bphome/comments-popup.php:71
|
| 3116 |
msgid "E-mail"
|
| 3117 |
msgstr ""
|
| 3118 |
|
|
@@ -3138,7 +3080,6 @@ msgstr ""
|
|
| 3138 |
#: bp-forums/bbpress/bb-admin/plugins.php:186
|
| 3139 |
#: bp-forums/bbpress/bb-admin/plugins.php:192 bp-groups/bp-groups-admin.php:75
|
| 3140 |
#: bp-themes/bp-sn-parent/groups/single/home.php:46
|
| 3141 |
-
#: bp-themes/deprecated/bpmember/groups/single/home.php:31
|
| 3142 |
msgid "Description"
|
| 3143 |
msgstr ""
|
| 3144 |
|
|
@@ -3151,7 +3092,6 @@ msgid "Position"
|
|
| 3151 |
msgstr ""
|
| 3152 |
|
| 3153 |
#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:956
|
| 3154 |
-
#: bp-themes/deprecated/bphome/archive.php:11
|
| 3155 |
msgid "Category"
|
| 3156 |
msgstr ""
|
| 3157 |
|
|
@@ -4035,7 +3975,6 @@ msgstr ""
|
|
| 4035 |
#: bp-forums/bbpress/bb-admin/posts.php:57
|
| 4036 |
#: bp-forums/bbpress/bb-admin/topics.php:51
|
| 4037 |
#: bp-themes/bp-sn-parent/index.php:21
|
| 4038 |
-
#: bp-themes/deprecated/bphome/index.php:12
|
| 4039 |
#, php-format
|
| 4040 |
msgid "by %s"
|
| 4041 |
msgstr ""
|
|
@@ -4257,7 +4196,7 @@ msgid "Freshness"
|
|
| 4257 |
msgstr ""
|
| 4258 |
|
| 4259 |
#: bp-forums/bbpress/bb-admin/topics.php:127
|
| 4260 |
-
#: bp-forums/bp-forums-templatetags.php:
|
| 4261 |
#: bp-messages/bp-messages-templatetags.php:428
|
| 4262 |
msgid "Close"
|
| 4263 |
msgstr ""
|
|
@@ -5933,7 +5872,6 @@ msgstr ""
|
|
| 5933 |
#: bp-forums/bbpress/bb-templates/kakumei/login.php:27
|
| 5934 |
#: bp-forums/bbpress/bb-templates/kakumei/profile-edit.php:20
|
| 5935 |
#: bp-themes/bp-sn-parent/userbar.php:32
|
| 5936 |
-
#: bp-themes/deprecated/bpmember/userbar.php:32
|
| 5937 |
msgid "Password"
|
| 5938 |
msgstr ""
|
| 5939 |
|
|
@@ -6209,7 +6147,6 @@ msgid "This is a collection of tags that are currently popular on the forums."
|
|
| 6209 |
msgstr ""
|
| 6210 |
|
| 6211 |
#: bp-forums/bbpress/bb-templates/kakumei/topic-tags.php:2
|
| 6212 |
-
#: bp-themes/deprecated/bpmember/groups/single/forum/index.php:76
|
| 6213 |
msgid "Tags:"
|
| 6214 |
msgstr ""
|
| 6215 |
|
|
@@ -6840,24 +6777,24 @@ msgstr ""
|
|
| 6840 |
msgid "%d posts"
|
| 6841 |
msgstr ""
|
| 6842 |
|
| 6843 |
-
#: bp-forums/bp-forums-templatetags.php:
|
| 6844 |
msgid "Sticky"
|
| 6845 |
msgstr ""
|
| 6846 |
|
| 6847 |
-
#: bp-forums/bp-forums-templatetags.php:
|
| 6848 |
msgid "Un-stick"
|
| 6849 |
msgstr ""
|
| 6850 |
|
| 6851 |
-
#: bp-forums/bp-forums-templatetags.php:
|
| 6852 |
msgid "Open"
|
| 6853 |
msgstr ""
|
| 6854 |
|
| 6855 |
-
#: bp-forums/bp-forums-templatetags.php:
|
| 6856 |
#, php-format
|
| 6857 |
msgid "Viewing topic %d to %d (%d total topics)"
|
| 6858 |
msgstr ""
|
| 6859 |
|
| 6860 |
-
#: bp-forums/bp-forums-templatetags.php:
|
| 6861 |
#: bp-wire/bp-wire-templatetags.php:242
|
| 6862 |
#, php-format
|
| 6863 |
msgid "Viewing post %d to %d (%d total posts)"
|
|
@@ -7048,8 +6985,6 @@ msgstr ""
|
|
| 7048 |
#: bp-friends/bp-friends-templatetags.php:414
|
| 7049 |
#: bp-themes/bp-sn-parent/friends/index.php:10
|
| 7050 |
#: bp-themes/bp-sn-parent/profile/index.php:108
|
| 7051 |
-
#: bp-themes/deprecated/bpmember/friends/index.php:10
|
| 7052 |
-
#: bp-themes/deprecated/bpmember/profile/index.php:81
|
| 7053 |
#, php-format
|
| 7054 |
msgid "%s's Friends"
|
| 7055 |
msgstr ""
|
|
@@ -7062,12 +6997,6 @@ msgstr ""
|
|
| 7062 |
#: bp-themes/bp-sn-parent/profile/index.php:79
|
| 7063 |
#: bp-themes/bp-sn-parent/profile/index.php:108
|
| 7064 |
#: bp-themes/bp-sn-parent/wire/post-list.php:4
|
| 7065 |
-
#: bp-themes/deprecated/bpmember/groups/single/home.php:46
|
| 7066 |
-
#: bp-themes/deprecated/bpmember/groups/single/home.php:73
|
| 7067 |
-
#: bp-themes/deprecated/bpmember/profile/index.php:27
|
| 7068 |
-
#: bp-themes/deprecated/bpmember/profile/index.php:58
|
| 7069 |
-
#: bp-themes/deprecated/bpmember/profile/index.php:81
|
| 7070 |
-
#: bp-themes/deprecated/bpmember/wire/post-list.php:2
|
| 7071 |
msgid "See All"
|
| 7072 |
msgstr ""
|
| 7073 |
|
|
@@ -7095,7 +7024,6 @@ msgstr ""
|
|
| 7095 |
|
| 7096 |
#: bp-groups.php:144 bp-groups/bp-groups-templatetags.php:1057
|
| 7097 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:53
|
| 7098 |
-
#: bp-themes/deprecated/bpmember/groups/single/admin.php:47
|
| 7099 |
msgid "Group Settings"
|
| 7100 |
msgstr ""
|
| 7101 |
|
|
@@ -7105,13 +7033,11 @@ msgstr ""
|
|
| 7105 |
#: bp-groups/bp-groups-templatetags.php:2014
|
| 7106 |
#: bp-groups/bp-groups-templatetags.php:2023
|
| 7107 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:121
|
| 7108 |
-
#: bp-themes/deprecated/bpmember/groups/single/admin.php:105
|
| 7109 |
msgid "Group Avatar"
|
| 7110 |
msgstr ""
|
| 7111 |
|
| 7112 |
-
#: bp-groups.php:146 bp-groups.php:
|
| 7113 |
#: bp-themes/bp-sn-parent/groups/invites.php:8
|
| 7114 |
-
#: bp-themes/deprecated/bpmember/groups/invites.php:12
|
| 7115 |
msgid "Group Invites"
|
| 7116 |
msgstr ""
|
| 7117 |
|
|
@@ -7119,13 +7045,10 @@ msgstr ""
|
|
| 7119 |
#: bp-groups/deprecated/bp-groups-deprecated.php:234
|
| 7120 |
#: bp-themes/bp-sn-parent/groups/index.php:11
|
| 7121 |
#: bp-themes/bp-sn-parent/profile/index.php:79
|
| 7122 |
-
#: bp-themes/deprecated/bpmember/groups/index.php:10
|
| 7123 |
-
#: bp-themes/deprecated/bpmember/profile/index.php:58
|
| 7124 |
msgid "My Groups"
|
| 7125 |
msgstr ""
|
| 7126 |
|
| 7127 |
#: bp-groups.php:220 bp-themes/bp-sn-parent/groups/create.php:10
|
| 7128 |
-
#: bp-themes/deprecated/bpmember/groups/create.php:10
|
| 7129 |
msgid "Create a Group"
|
| 7130 |
msgstr ""
|
| 7131 |
|
|
@@ -7137,7 +7060,6 @@ msgstr ""
|
|
| 7137 |
#: bp-groups/deprecated/bp-groups-deprecated.php:835
|
| 7138 |
#: bp-themes/bp-sn-parent/_inc/ajax.php:259
|
| 7139 |
#: bp-themes/bp-sn-parent/groups/single/request-membership.php:28
|
| 7140 |
-
#: bp-themes/deprecated/bpmember/groups/single/request-membership.php:22
|
| 7141 |
msgid "Request Membership"
|
| 7142 |
msgstr ""
|
| 7143 |
|
|
@@ -7148,8 +7070,6 @@ msgstr ""
|
|
| 7148 |
|
| 7149 |
#: bp-groups.php:288 bp-themes/bp-sn-parent/groups/single/send-invite.php:19
|
| 7150 |
#: bp-themes/bp-sn-parent/groups/single/send-invite.php:81
|
| 7151 |
-
#: bp-themes/deprecated/bpmember/groups/single/send-invite.php:15
|
| 7152 |
-
#: bp-themes/deprecated/bpmember/groups/single/send-invite.php:66
|
| 7153 |
msgid "Send Invites"
|
| 7154 |
msgstr ""
|
| 7155 |
|
|
@@ -7167,8 +7087,6 @@ msgstr ""
|
|
| 7167 |
#: bp-groups.php:326 bp-groups/bp-groups-templatetags.php:1067
|
| 7168 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:311
|
| 7169 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:323
|
| 7170 |
-
#: bp-themes/deprecated/bpmember/groups/single/admin.php:255
|
| 7171 |
-
#: bp-themes/deprecated/bpmember/groups/single/admin.php:262
|
| 7172 |
msgid "Delete Group"
|
| 7173 |
msgstr ""
|
| 7174 |
|
|
@@ -7180,7 +7098,7 @@ msgstr ""
|
|
| 7180 |
msgid "Group invite accepted"
|
| 7181 |
msgstr ""
|
| 7182 |
|
| 7183 |
-
#: bp-groups.php:374 bp-groups.php:
|
| 7184 |
#, php-format
|
| 7185 |
msgid "%s joined the group %s"
|
| 7186 |
msgstr ""
|
|
@@ -7218,344 +7136,344 @@ msgstr ""
|
|
| 7218 |
msgid "The group avatar was uploaded successfully!"
|
| 7219 |
msgstr ""
|
| 7220 |
|
| 7221 |
-
#: bp-groups.php:
|
| 7222 |
msgid "There was an error when replying to that topic"
|
| 7223 |
msgstr ""
|
| 7224 |
|
| 7225 |
-
#: bp-groups.php:
|
| 7226 |
msgid "Your reply was posted successfully"
|
| 7227 |
msgstr ""
|
| 7228 |
|
| 7229 |
-
#: bp-groups.php:
|
| 7230 |
msgid "There was an error when making that topic a sticky"
|
| 7231 |
msgstr ""
|
| 7232 |
|
| 7233 |
-
#: bp-groups.php:
|
| 7234 |
msgid "The topic was made sticky successfully"
|
| 7235 |
msgstr ""
|
| 7236 |
|
| 7237 |
-
#: bp-groups.php:
|
| 7238 |
msgid "There was an error when unsticking that topic"
|
| 7239 |
msgstr ""
|
| 7240 |
|
| 7241 |
-
#: bp-groups.php:
|
| 7242 |
msgid "The topic was unstuck successfully"
|
| 7243 |
msgstr ""
|
| 7244 |
|
| 7245 |
-
#: bp-groups.php:
|
| 7246 |
msgid "There was an error when closing that topic"
|
| 7247 |
msgstr ""
|
| 7248 |
|
| 7249 |
-
#: bp-groups.php:
|
| 7250 |
msgid "The topic was closed successfully"
|
| 7251 |
msgstr ""
|
| 7252 |
|
| 7253 |
-
#: bp-groups.php:
|
| 7254 |
msgid "There was an error when opening that topic"
|
| 7255 |
msgstr ""
|
| 7256 |
|
| 7257 |
-
#: bp-groups.php:
|
| 7258 |
msgid "The topic was opened successfully"
|
| 7259 |
msgstr ""
|
| 7260 |
|
| 7261 |
-
#: bp-groups.php:
|
| 7262 |
msgid "There was an error deleting the topic"
|
| 7263 |
msgstr ""
|
| 7264 |
|
| 7265 |
-
#: bp-groups.php:
|
| 7266 |
msgid "The topic was deleted successfully"
|
| 7267 |
msgstr ""
|
| 7268 |
|
| 7269 |
-
#: bp-groups.php:
|
| 7270 |
msgid "There was an error when editing that topic"
|
| 7271 |
msgstr ""
|
| 7272 |
|
| 7273 |
-
#: bp-groups.php:
|
| 7274 |
msgid "The topic was edited successfully"
|
| 7275 |
msgstr ""
|
| 7276 |
|
| 7277 |
-
#: bp-groups.php:
|
| 7278 |
msgid "There was an error deleting that post"
|
| 7279 |
msgstr ""
|
| 7280 |
|
| 7281 |
-
#: bp-groups.php:
|
| 7282 |
msgid "The post was deleted successfully"
|
| 7283 |
msgstr ""
|
| 7284 |
|
| 7285 |
-
#: bp-groups.php:
|
| 7286 |
msgid "There was an error when editing that post"
|
| 7287 |
msgstr ""
|
| 7288 |
|
| 7289 |
-
#: bp-groups.php:
|
| 7290 |
msgid "The post was edited successfully"
|
| 7291 |
msgstr ""
|
| 7292 |
|
| 7293 |
-
#: bp-groups.php:
|
| 7294 |
msgid "There was an error when creating the topic"
|
| 7295 |
msgstr ""
|
| 7296 |
|
| 7297 |
-
#: bp-groups.php:
|
| 7298 |
msgid "The topic was created successfully"
|
| 7299 |
msgstr ""
|
| 7300 |
|
| 7301 |
-
#: bp-groups.php:
|
| 7302 |
msgid "Wire message could not be posted."
|
| 7303 |
msgstr ""
|
| 7304 |
|
| 7305 |
-
#: bp-groups.php:
|
| 7306 |
msgid "Wire message successfully posted."
|
| 7307 |
msgstr ""
|
| 7308 |
|
| 7309 |
-
#: bp-groups.php:
|
| 7310 |
msgid "There was an error deleting the wire message."
|
| 7311 |
msgstr ""
|
| 7312 |
|
| 7313 |
-
#: bp-groups.php:
|
| 7314 |
msgid "Wire message successfully deleted."
|
| 7315 |
msgstr ""
|
| 7316 |
|
| 7317 |
-
#: bp-groups.php:
|
| 7318 |
msgid "Group invites sent."
|
| 7319 |
msgstr ""
|
| 7320 |
|
| 7321 |
-
#: bp-groups.php:
|
| 7322 |
msgid "As the only group administrator, you cannot leave this group."
|
| 7323 |
msgstr ""
|
| 7324 |
|
| 7325 |
-
#: bp-groups.php:
|
| 7326 |
msgid "There was an error leaving the group. Please try again."
|
| 7327 |
msgstr ""
|
| 7328 |
|
| 7329 |
-
#: bp-groups.php:
|
| 7330 |
msgid "You left the group successfully."
|
| 7331 |
msgstr ""
|
| 7332 |
|
| 7333 |
-
#: bp-groups.php:
|
| 7334 |
msgid ""
|
| 7335 |
"There was an error sending your group membership request, please try again."
|
| 7336 |
msgstr ""
|
| 7337 |
|
| 7338 |
-
#: bp-groups.php:
|
| 7339 |
msgid ""
|
| 7340 |
"Your membership request was sent to the group administrator successfully. "
|
| 7341 |
"You will be notified when the group administrator responds to your request."
|
| 7342 |
msgstr ""
|
| 7343 |
|
| 7344 |
-
#: bp-groups.php:
|
| 7345 |
msgid "There was an error updating group details, please try again."
|
| 7346 |
msgstr ""
|
| 7347 |
|
| 7348 |
-
#: bp-groups.php:
|
| 7349 |
msgid "Group details were successfully updated."
|
| 7350 |
msgstr ""
|
| 7351 |
|
| 7352 |
-
#: bp-groups.php:
|
| 7353 |
msgid "There was an error updating group settings, please try again."
|
| 7354 |
msgstr ""
|
| 7355 |
|
| 7356 |
-
#: bp-groups.php:
|
| 7357 |
msgid "Group settings were successfully updated."
|
| 7358 |
msgstr ""
|
| 7359 |
|
| 7360 |
-
#: bp-groups.php:
|
| 7361 |
msgid "Your avatar was deleted successfully!"
|
| 7362 |
msgstr ""
|
| 7363 |
|
| 7364 |
-
#: bp-groups.php:
|
| 7365 |
msgid "There was a problem deleting that avatar, please try again."
|
| 7366 |
msgstr ""
|
| 7367 |
|
| 7368 |
-
#: bp-groups.php:
|
| 7369 |
msgid "There was a problem cropping the avatar, please try uploading it again"
|
| 7370 |
msgstr ""
|
| 7371 |
|
| 7372 |
-
#: bp-groups.php:
|
| 7373 |
msgid "The new group avatar was uploaded successfully!"
|
| 7374 |
msgstr ""
|
| 7375 |
|
| 7376 |
-
#: bp-groups.php:
|
| 7377 |
msgid "There was an error when promoting that user, please try again"
|
| 7378 |
msgstr ""
|
| 7379 |
|
| 7380 |
-
#: bp-groups.php:
|
| 7381 |
msgid "User promoted successfully"
|
| 7382 |
msgstr ""
|
| 7383 |
|
| 7384 |
-
#: bp-groups.php:
|
| 7385 |
msgid "There was an error when demoting that user, please try again"
|
| 7386 |
msgstr ""
|
| 7387 |
|
| 7388 |
-
#: bp-groups.php:
|
| 7389 |
msgid "User demoted successfully"
|
| 7390 |
msgstr ""
|
| 7391 |
|
| 7392 |
-
#: bp-groups.php:
|
| 7393 |
msgid "There was an error when banning that user, please try again"
|
| 7394 |
msgstr ""
|
| 7395 |
|
| 7396 |
-
#: bp-groups.php:
|
| 7397 |
msgid "User banned successfully"
|
| 7398 |
msgstr ""
|
| 7399 |
|
| 7400 |
-
#: bp-groups.php:
|
| 7401 |
msgid "There was an error when unbanning that user, please try again"
|
| 7402 |
msgstr ""
|
| 7403 |
|
| 7404 |
-
#: bp-groups.php:
|
| 7405 |
msgid "User ban removed successfully"
|
| 7406 |
msgstr ""
|
| 7407 |
|
| 7408 |
-
#: bp-groups.php:
|
| 7409 |
msgid "There was an error accepting the membership request, please try again."
|
| 7410 |
msgstr ""
|
| 7411 |
|
| 7412 |
-
#: bp-groups.php:
|
| 7413 |
msgid "Group membership request accepted"
|
| 7414 |
msgstr ""
|
| 7415 |
|
| 7416 |
-
#: bp-groups.php:
|
| 7417 |
msgid "There was an error rejecting the membership request, please try again."
|
| 7418 |
msgstr ""
|
| 7419 |
|
| 7420 |
-
#: bp-groups.php:
|
| 7421 |
msgid "Group membership request rejected"
|
| 7422 |
msgstr ""
|
| 7423 |
|
| 7424 |
-
#: bp-groups.php:
|
| 7425 |
msgid "There was an error deleting the group, please try again."
|
| 7426 |
msgstr ""
|
| 7427 |
|
| 7428 |
-
#: bp-groups.php:
|
| 7429 |
msgid "The group was deleted successfully"
|
| 7430 |
msgstr ""
|
| 7431 |
|
| 7432 |
-
#: bp-groups.php:
|
| 7433 |
msgid "A member invites you to join a group"
|
| 7434 |
msgstr ""
|
| 7435 |
|
| 7436 |
-
#: bp-groups.php:
|
| 7437 |
msgid "Group information is updated"
|
| 7438 |
msgstr ""
|
| 7439 |
|
| 7440 |
-
#: bp-groups.php:
|
| 7441 |
msgid "A member posts on the wire of a group you belong to"
|
| 7442 |
msgstr ""
|
| 7443 |
|
| 7444 |
-
#: bp-groups.php:
|
| 7445 |
msgid "You are promoted to a group administrator or moderator"
|
| 7446 |
msgstr ""
|
| 7447 |
|
| 7448 |
-
#: bp-groups.php:
|
| 7449 |
msgid "A member requests to join a private group for which you are an admin"
|
| 7450 |
msgstr ""
|
| 7451 |
|
| 7452 |
-
#: bp-groups.php:
|
| 7453 |
msgid "There was an error joining the group."
|
| 7454 |
msgstr ""
|
| 7455 |
|
| 7456 |
-
#: bp-groups.php:
|
| 7457 |
msgid "You joined the group!"
|
| 7458 |
msgstr ""
|
| 7459 |
|
| 7460 |
-
#: bp-groups.php:
|
| 7461 |
msgid "Created a group"
|
| 7462 |
msgstr ""
|
| 7463 |
|
| 7464 |
-
#: bp-groups.php:
|
| 7465 |
msgid "Joined a group"
|
| 7466 |
msgstr ""
|
| 7467 |
|
| 7468 |
-
#: bp-groups.php:
|
| 7469 |
msgid "New group wire post"
|
| 7470 |
msgstr ""
|
| 7471 |
|
| 7472 |
-
#: bp-groups.php:
|
| 7473 |
msgid "New group forum topic"
|
| 7474 |
msgstr ""
|
| 7475 |
|
| 7476 |
-
#: bp-groups.php:
|
| 7477 |
msgid "New group forum post"
|
| 7478 |
msgstr ""
|
| 7479 |
|
| 7480 |
-
#: bp-groups.php:
|
| 7481 |
msgid "Group Membership Requests"
|
| 7482 |
msgstr ""
|
| 7483 |
|
| 7484 |
-
#: bp-groups.php:
|
| 7485 |
#, php-format
|
| 7486 |
msgid "%d new membership requests for the group \"%s\""
|
| 7487 |
msgstr ""
|
| 7488 |
|
| 7489 |
-
#: bp-groups.php:
|
| 7490 |
#, php-format
|
| 7491 |
msgid "%s requests membership for the group \"%s\""
|
| 7492 |
msgstr ""
|
| 7493 |
|
| 7494 |
-
#: bp-groups.php:
|
| 7495 |
#, php-format
|
| 7496 |
msgid "%d accepted group membership requests"
|
| 7497 |
msgstr ""
|
| 7498 |
|
| 7499 |
-
#: bp-groups.php:
|
| 7500 |
#, php-format
|
| 7501 |
msgid "Membership for group \"%s\" accepted"
|
| 7502 |
msgstr ""
|
| 7503 |
|
| 7504 |
-
#: bp-groups.php:
|
| 7505 |
#, php-format
|
| 7506 |
msgid "%d rejected group membership requests"
|
| 7507 |
msgstr ""
|
| 7508 |
|
| 7509 |
-
#: bp-groups.php:
|
| 7510 |
#, php-format
|
| 7511 |
msgid "Membership for group \"%s\" rejected"
|
| 7512 |
msgstr ""
|
| 7513 |
|
| 7514 |
-
#: bp-groups.php:
|
| 7515 |
#, php-format
|
| 7516 |
msgid "You were promoted to an admin in %d groups"
|
| 7517 |
msgstr ""
|
| 7518 |
|
| 7519 |
-
#: bp-groups.php:
|
| 7520 |
#, php-format
|
| 7521 |
msgid "You were promoted to an admin in the group %s"
|
| 7522 |
msgstr ""
|
| 7523 |
|
| 7524 |
-
#: bp-groups.php:
|
| 7525 |
#, php-format
|
| 7526 |
msgid "You were promoted to a mod in %d groups"
|
| 7527 |
msgstr ""
|
| 7528 |
|
| 7529 |
-
#: bp-groups.php:
|
| 7530 |
#, php-format
|
| 7531 |
msgid "You were promoted to a mod in the group %s"
|
| 7532 |
msgstr ""
|
| 7533 |
|
| 7534 |
-
#: bp-groups.php:
|
| 7535 |
#, php-format
|
| 7536 |
msgid "You have %d new group invitations"
|
| 7537 |
msgstr ""
|
| 7538 |
|
| 7539 |
-
#: bp-groups.php:
|
| 7540 |
#, php-format
|
| 7541 |
msgid "You have an invitation to the group: %s"
|
| 7542 |
msgstr ""
|
| 7543 |
|
| 7544 |
-
#: bp-groups.php:
|
| 7545 |
msgid "Group Admin"
|
| 7546 |
msgstr ""
|
| 7547 |
|
| 7548 |
-
#: bp-groups.php:
|
| 7549 |
#, php-format
|
| 7550 |
msgid "%s wrote on the wire of the group %s:"
|
| 7551 |
msgstr ""
|
| 7552 |
|
| 7553 |
-
#: bp-groups.php:
|
| 7554 |
#, php-format
|
| 7555 |
msgid "%s posted on the forum topic %s in the group %s:"
|
| 7556 |
msgstr ""
|
| 7557 |
|
| 7558 |
-
#: bp-groups.php:
|
| 7559 |
#, php-format
|
| 7560 |
msgid "%s started the forum topic %s in the group %s:"
|
| 7561 |
msgstr ""
|
|
@@ -7591,7 +7509,6 @@ msgstr ""
|
|
| 7591 |
|
| 7592 |
#: bp-groups/bp-groups-admin.php:118
|
| 7593 |
#: bp-themes/bp-sn-parent/directories/groups/index.php:125
|
| 7594 |
-
#: bp-themes/deprecated/bpmember/directories/groups/index.php:106
|
| 7595 |
msgid "No groups found."
|
| 7596 |
msgstr ""
|
| 7597 |
|
|
@@ -7827,19 +7744,16 @@ msgstr ""
|
|
| 7827 |
|
| 7828 |
#: bp-groups/bp-groups-templatetags.php:1050
|
| 7829 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:22
|
| 7830 |
-
#: bp-themes/deprecated/bpmember/groups/single/admin.php:20
|
| 7831 |
msgid "Edit Details"
|
| 7832 |
msgstr ""
|
| 7833 |
|
| 7834 |
#: bp-groups/bp-groups-templatetags.php:1059
|
| 7835 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:178
|
| 7836 |
-
#: bp-themes/deprecated/bpmember/groups/single/admin.php:156
|
| 7837 |
msgid "Manage Members"
|
| 7838 |
msgstr ""
|
| 7839 |
|
| 7840 |
#: bp-groups/bp-groups-templatetags.php:1062
|
| 7841 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:258
|
| 7842 |
-
#: bp-themes/deprecated/bpmember/groups/single/admin.php:215
|
| 7843 |
msgid "Membership Requests"
|
| 7844 |
msgstr ""
|
| 7845 |
|
|
@@ -7916,21 +7830,17 @@ msgstr ""
|
|
| 7916 |
#: bp-groups/deprecated/bp-groups-deprecated.php:234
|
| 7917 |
#: bp-themes/bp-sn-parent/groups/index.php:11
|
| 7918 |
#: bp-themes/bp-sn-parent/profile/index.php:79
|
| 7919 |
-
#: bp-themes/deprecated/bpmember/groups/index.php:10
|
| 7920 |
-
#: bp-themes/deprecated/bpmember/profile/index.php:58
|
| 7921 |
#, php-format
|
| 7922 |
msgid "%s's Groups"
|
| 7923 |
msgstr ""
|
| 7924 |
|
| 7925 |
#: bp-groups/deprecated/bp-groups-deprecated.php:251
|
| 7926 |
#: bp-themes/bp-sn-parent/groups/group-loop.php:49
|
| 7927 |
-
#: bp-themes/deprecated/bpmember/groups/group-loop.php:28
|
| 7928 |
msgid "You haven't joined any groups yet."
|
| 7929 |
msgstr ""
|
| 7930 |
|
| 7931 |
#: bp-groups/deprecated/bp-groups-deprecated.php:251
|
| 7932 |
#: bp-themes/bp-sn-parent/groups/group-loop.php:49
|
| 7933 |
-
#: bp-themes/deprecated/bpmember/groups/group-loop.php:28
|
| 7934 |
#, php-format
|
| 7935 |
msgid "%s hasn't joined any groups yet."
|
| 7936 |
msgstr ""
|
|
@@ -7941,10 +7851,6 @@ msgstr ""
|
|
| 7941 |
#: bp-themes/bp-sn-parent/groups/single/forum/index.php:47
|
| 7942 |
#: bp-themes/bp-sn-parent/groups/single/home.php:117
|
| 7943 |
#: bp-themes/bp-sn-parent/groups/single/home.php:118
|
| 7944 |
-
#: bp-themes/deprecated/bpmember/groups/single/forum/index.php:42
|
| 7945 |
-
#: bp-themes/deprecated/bpmember/groups/single/forum/index.php:43
|
| 7946 |
-
#: bp-themes/deprecated/bpmember/groups/single/home.php:52
|
| 7947 |
-
#: bp-themes/deprecated/bpmember/groups/single/home.php:53
|
| 7948 |
msgid "Permalink"
|
| 7949 |
msgstr ""
|
| 7950 |
|
|
@@ -7959,22 +7865,17 @@ msgstr ""
|
|
| 7959 |
|
| 7960 |
#: bp-groups/deprecated/bp-groups-deprecated.php:303
|
| 7961 |
#: bp-themes/bp-sn-parent/groups/single/home.php:131
|
| 7962 |
-
#: bp-themes/deprecated/bpmember/groups/single/home.php:62
|
| 7963 |
msgid "There are no active forum topics for this group"
|
| 7964 |
msgstr ""
|
| 7965 |
|
| 7966 |
#: bp-groups/deprecated/bp-groups-deprecated.php:320
|
| 7967 |
#: bp-themes/bp-sn-parent/groups/single/send-invite.php:29
|
| 7968 |
-
#: bp-themes/deprecated/bpmember/groups/create.php:115
|
| 7969 |
-
#: bp-themes/deprecated/bpmember/groups/single/send-invite.php:23
|
| 7970 |
msgid "Select Friends"
|
| 7971 |
msgstr ""
|
| 7972 |
|
| 7973 |
#: bp-groups/deprecated/bp-groups-deprecated.php:329
|
| 7974 |
#: bp-themes/bp-sn-parent/groups/create.php:171
|
| 7975 |
#: bp-themes/bp-sn-parent/groups/single/send-invite.php:44
|
| 7976 |
-
#: bp-themes/deprecated/bpmember/groups/create.php:130
|
| 7977 |
-
#: bp-themes/deprecated/bpmember/groups/single/send-invite.php:38
|
| 7978 |
msgid "Select people to invite from your friends list."
|
| 7979 |
msgstr ""
|
| 7980 |
|
|
@@ -7983,8 +7884,6 @@ msgstr ""
|
|
| 7983 |
#: bp-themes/bp-sn-parent/_inc/ajax.php:92
|
| 7984 |
#: bp-themes/bp-sn-parent/groups/create.php:187
|
| 7985 |
#: bp-themes/bp-sn-parent/groups/single/send-invite.php:64
|
| 7986 |
-
#: bp-themes/deprecated/bpmember/groups/create.php:146
|
| 7987 |
-
#: bp-themes/deprecated/bpmember/groups/single/send-invite.php:54
|
| 7988 |
msgid "Remove Invite"
|
| 7989 |
msgstr ""
|
| 7990 |
|
|
@@ -7995,46 +7894,35 @@ msgstr ""
|
|
| 7995 |
#: bp-groups/deprecated/bp-groups-deprecated.php:443
|
| 7996 |
#: bp-themes/bp-sn-parent/groups/create.php:22
|
| 7997 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:26
|
| 7998 |
-
#: bp-themes/deprecated/bpmember/groups/create.php:18
|
| 7999 |
-
#: bp-themes/deprecated/bpmember/groups/single/admin.php:22
|
| 8000 |
msgid "Group Name"
|
| 8001 |
msgstr ""
|
| 8002 |
|
| 8003 |
#: bp-groups/deprecated/bp-groups-deprecated.php:446
|
| 8004 |
#: bp-themes/bp-sn-parent/groups/create.php:25
|
| 8005 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:29
|
| 8006 |
-
#: bp-themes/deprecated/bpmember/groups/create.php:21
|
| 8007 |
-
#: bp-themes/deprecated/bpmember/groups/single/admin.php:25
|
| 8008 |
msgid "Group Description"
|
| 8009 |
msgstr ""
|
| 8010 |
|
| 8011 |
#: bp-groups/deprecated/bp-groups-deprecated.php:449
|
| 8012 |
#: bp-themes/bp-sn-parent/groups/create.php:28
|
| 8013 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:32
|
| 8014 |
-
#: bp-themes/deprecated/bpmember/groups/create.php:24
|
| 8015 |
-
#: bp-themes/deprecated/bpmember/groups/single/admin.php:28
|
| 8016 |
msgid "Recent News"
|
| 8017 |
msgstr ""
|
| 8018 |
|
| 8019 |
#: bp-groups/deprecated/bp-groups-deprecated.php:462
|
| 8020 |
#: bp-themes/bp-sn-parent/groups/create.php:44
|
| 8021 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:60
|
| 8022 |
-
#: bp-themes/deprecated/bpmember/groups/create.php:38
|
| 8023 |
-
#: bp-themes/deprecated/bpmember/groups/single/admin.php:51
|
| 8024 |
msgid "Enable comment wire"
|
| 8025 |
msgstr ""
|
| 8026 |
|
| 8027 |
#: bp-groups/deprecated/bp-groups-deprecated.php:469
|
| 8028 |
#: bp-themes/bp-sn-parent/groups/create.php:51
|
| 8029 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:70
|
| 8030 |
-
#: bp-themes/deprecated/bpmember/groups/create.php:45
|
| 8031 |
-
#: bp-themes/deprecated/bpmember/groups/single/admin.php:58
|
| 8032 |
msgid "Enable discussion forum"
|
| 8033 |
msgstr ""
|
| 8034 |
|
| 8035 |
#: bp-groups/deprecated/bp-groups-deprecated.php:475
|
| 8036 |
#: bp-themes/bp-sn-parent/groups/create.php:56
|
| 8037 |
-
#: bp-themes/deprecated/bpmember/groups/create.php:50
|
| 8038 |
#, php-format
|
| 8039 |
msgid ""
|
| 8040 |
"<strong>Attention Site Admin:</strong> Group forums require the <a href=\"%s"
|
|
@@ -8056,24 +7944,18 @@ msgstr ""
|
|
| 8056 |
#: bp-groups/deprecated/bp-groups-deprecated.php:492
|
| 8057 |
#: bp-themes/bp-sn-parent/groups/create.php:62
|
| 8058 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:77
|
| 8059 |
-
#: bp-themes/deprecated/bpmember/groups/create.php:56
|
| 8060 |
-
#: bp-themes/deprecated/bpmember/groups/single/admin.php:63
|
| 8061 |
msgid "Privacy Options"
|
| 8062 |
msgstr ""
|
| 8063 |
|
| 8064 |
#: bp-groups/deprecated/bp-groups-deprecated.php:496
|
| 8065 |
#: bp-themes/bp-sn-parent/groups/create.php:66
|
| 8066 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:82
|
| 8067 |
-
#: bp-themes/deprecated/bpmember/groups/create.php:60
|
| 8068 |
-
#: bp-themes/deprecated/bpmember/groups/single/admin.php:68
|
| 8069 |
msgid "This is a public group"
|
| 8070 |
msgstr ""
|
| 8071 |
|
| 8072 |
#: bp-groups/deprecated/bp-groups-deprecated.php:498
|
| 8073 |
#: bp-themes/bp-sn-parent/groups/create.php:68
|
| 8074 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:84
|
| 8075 |
-
#: bp-themes/deprecated/bpmember/groups/create.php:62
|
| 8076 |
-
#: bp-themes/deprecated/bpmember/groups/single/admin.php:70
|
| 8077 |
msgid "Any site member can join this group."
|
| 8078 |
msgstr ""
|
| 8079 |
|
|
@@ -8083,10 +7965,6 @@ msgstr ""
|
|
| 8083 |
#: bp-themes/bp-sn-parent/groups/create.php:78
|
| 8084 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:85
|
| 8085 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:95
|
| 8086 |
-
#: bp-themes/deprecated/bpmember/groups/create.php:63
|
| 8087 |
-
#: bp-themes/deprecated/bpmember/groups/create.php:72
|
| 8088 |
-
#: bp-themes/deprecated/bpmember/groups/single/admin.php:71
|
| 8089 |
-
#: bp-themes/deprecated/bpmember/groups/single/admin.php:81
|
| 8090 |
msgid ""
|
| 8091 |
"This group will be listed in the groups directory and in search results."
|
| 8092 |
msgstr ""
|
|
@@ -8094,24 +7972,18 @@ msgstr ""
|
|
| 8094 |
#: bp-groups/deprecated/bp-groups-deprecated.php:500
|
| 8095 |
#: bp-themes/bp-sn-parent/groups/create.php:70
|
| 8096 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:86
|
| 8097 |
-
#: bp-themes/deprecated/bpmember/groups/create.php:64
|
| 8098 |
-
#: bp-themes/deprecated/bpmember/groups/single/admin.php:72
|
| 8099 |
msgid "Group content and activity will be visible to any site member."
|
| 8100 |
msgstr ""
|
| 8101 |
|
| 8102 |
#: bp-groups/deprecated/bp-groups-deprecated.php:505
|
| 8103 |
#: bp-themes/bp-sn-parent/groups/create.php:75
|
| 8104 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:92
|
| 8105 |
-
#: bp-themes/deprecated/bpmember/groups/create.php:69
|
| 8106 |
-
#: bp-themes/deprecated/bpmember/groups/single/admin.php:78
|
| 8107 |
msgid "This is a private group"
|
| 8108 |
msgstr ""
|
| 8109 |
|
| 8110 |
#: bp-groups/deprecated/bp-groups-deprecated.php:507
|
| 8111 |
#: bp-themes/bp-sn-parent/groups/create.php:77
|
| 8112 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:94
|
| 8113 |
-
#: bp-themes/deprecated/bpmember/groups/create.php:71
|
| 8114 |
-
#: bp-themes/deprecated/bpmember/groups/single/admin.php:80
|
| 8115 |
msgid "Only users who request membership and are accepted can join the group."
|
| 8116 |
msgstr ""
|
| 8117 |
|
|
@@ -8121,10 +7993,6 @@ msgstr ""
|
|
| 8121 |
#: bp-themes/bp-sn-parent/groups/create.php:88
|
| 8122 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:96
|
| 8123 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:106
|
| 8124 |
-
#: bp-themes/deprecated/bpmember/groups/create.php:73
|
| 8125 |
-
#: bp-themes/deprecated/bpmember/groups/create.php:82
|
| 8126 |
-
#: bp-themes/deprecated/bpmember/groups/single/admin.php:82
|
| 8127 |
-
#: bp-themes/deprecated/bpmember/groups/single/admin.php:92
|
| 8128 |
msgid ""
|
| 8129 |
"Group content and activity will only be visible to members of the group."
|
| 8130 |
msgstr ""
|
|
@@ -8132,24 +8000,18 @@ msgstr ""
|
|
| 8132 |
#: bp-groups/deprecated/bp-groups-deprecated.php:514
|
| 8133 |
#: bp-themes/bp-sn-parent/groups/create.php:84
|
| 8134 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:102
|
| 8135 |
-
#: bp-themes/deprecated/bpmember/groups/create.php:78
|
| 8136 |
-
#: bp-themes/deprecated/bpmember/groups/single/admin.php:88
|
| 8137 |
msgid "This is a hidden group"
|
| 8138 |
msgstr ""
|
| 8139 |
|
| 8140 |
#: bp-groups/deprecated/bp-groups-deprecated.php:516
|
| 8141 |
#: bp-themes/bp-sn-parent/groups/create.php:86
|
| 8142 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:104
|
| 8143 |
-
#: bp-themes/deprecated/bpmember/groups/create.php:80
|
| 8144 |
-
#: bp-themes/deprecated/bpmember/groups/single/admin.php:90
|
| 8145 |
msgid "Only users who are invited can join the group."
|
| 8146 |
msgstr ""
|
| 8147 |
|
| 8148 |
#: bp-groups/deprecated/bp-groups-deprecated.php:517
|
| 8149 |
#: bp-themes/bp-sn-parent/groups/create.php:87
|
| 8150 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:105
|
| 8151 |
-
#: bp-themes/deprecated/bpmember/groups/create.php:81
|
| 8152 |
-
#: bp-themes/deprecated/bpmember/groups/single/admin.php:91
|
| 8153 |
msgid ""
|
| 8154 |
"This group will not be listed in the groups directory or search results."
|
| 8155 |
msgstr ""
|
|
@@ -8163,8 +8025,6 @@ msgstr ""
|
|
| 8163 |
#: bp-groups/deprecated/bp-groups-deprecated.php:538
|
| 8164 |
#: bp-themes/bp-sn-parent/groups/create.php:109
|
| 8165 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:137
|
| 8166 |
-
#: bp-themes/deprecated/bpmember/groups/create.php:99
|
| 8167 |
-
#: bp-themes/deprecated/bpmember/groups/single/admin.php:115
|
| 8168 |
msgid ""
|
| 8169 |
"Upload an image to use as an avatar for this group. The image will be shown "
|
| 8170 |
"on the main group page, and in search results."
|
|
@@ -8178,25 +8038,21 @@ msgstr ""
|
|
| 8178 |
|
| 8179 |
#: bp-groups/deprecated/bp-groups-deprecated.php:592
|
| 8180 |
#: bp-themes/bp-sn-parent/groups/create.php:212
|
| 8181 |
-
#: bp-themes/deprecated/bpmember/groups/create.php:165
|
| 8182 |
msgid "Previous Step"
|
| 8183 |
msgstr ""
|
| 8184 |
|
| 8185 |
#: bp-groups/deprecated/bp-groups-deprecated.php:597
|
| 8186 |
#: bp-themes/bp-sn-parent/groups/create.php:217
|
| 8187 |
-
#: bp-themes/deprecated/bpmember/groups/create.php:170
|
| 8188 |
msgid "Next Step"
|
| 8189 |
msgstr ""
|
| 8190 |
|
| 8191 |
#: bp-groups/deprecated/bp-groups-deprecated.php:602
|
| 8192 |
#: bp-themes/bp-sn-parent/groups/create.php:222
|
| 8193 |
-
#: bp-themes/deprecated/bpmember/groups/create.php:175
|
| 8194 |
msgid "Create Group and Continue"
|
| 8195 |
msgstr ""
|
| 8196 |
|
| 8197 |
#: bp-groups/deprecated/bp-groups-deprecated.php:607
|
| 8198 |
#: bp-themes/bp-sn-parent/groups/create.php:227
|
| 8199 |
-
#: bp-themes/deprecated/bpmember/groups/create.php:180
|
| 8200 |
msgid "Finish"
|
| 8201 |
msgstr ""
|
| 8202 |
|
|
@@ -8206,15 +8062,12 @@ msgstr ""
|
|
| 8206 |
#: bp-themes/bp-sn-parent/_inc/ajax.php:196
|
| 8207 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:244
|
| 8208 |
#: bp-themes/bp-sn-parent/groups/single/members.php:103
|
| 8209 |
-
#: bp-themes/deprecated/bpmember/groups/single/admin.php:204
|
| 8210 |
-
#: bp-themes/deprecated/bpmember/groups/single/members.php:68
|
| 8211 |
msgid "This group has no members."
|
| 8212 |
msgstr ""
|
| 8213 |
|
| 8214 |
#: bp-groups/deprecated/bp-groups-deprecated.php:751
|
| 8215 |
#: bp-themes/bp-sn-parent/_inc/ajax.php:183
|
| 8216 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:225
|
| 8217 |
-
#: bp-themes/deprecated/bpmember/groups/single/admin.php:191
|
| 8218 |
msgid "(banned)"
|
| 8219 |
msgstr ""
|
| 8220 |
|
|
@@ -8224,34 +8077,28 @@ msgstr ""
|
|
| 8224 |
#: bp-themes/bp-sn-parent/_inc/ajax.php:187
|
| 8225 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:225
|
| 8226 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:231
|
| 8227 |
-
#: bp-themes/deprecated/bpmember/groups/single/admin.php:191
|
| 8228 |
-
#: bp-themes/deprecated/bpmember/groups/single/admin.php:195
|
| 8229 |
msgid "Kick and ban this member"
|
| 8230 |
msgstr ""
|
| 8231 |
|
| 8232 |
#: bp-groups/deprecated/bp-groups-deprecated.php:751
|
| 8233 |
#: bp-themes/bp-sn-parent/_inc/ajax.php:183
|
| 8234 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:225
|
| 8235 |
-
#: bp-themes/deprecated/bpmember/groups/single/admin.php:191
|
| 8236 |
msgid "Remove Ban"
|
| 8237 |
msgstr ""
|
| 8238 |
|
| 8239 |
#: bp-groups/deprecated/bp-groups-deprecated.php:755
|
| 8240 |
#: bp-themes/bp-sn-parent/_inc/ajax.php:187
|
| 8241 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:231
|
| 8242 |
-
#: bp-themes/deprecated/bpmember/groups/single/admin.php:195
|
| 8243 |
msgid "Kick & Ban"
|
| 8244 |
msgstr ""
|
| 8245 |
|
| 8246 |
#: bp-groups/deprecated/bp-groups-deprecated.php:755
|
| 8247 |
#: bp-themes/bp-sn-parent/_inc/ajax.php:187
|
| 8248 |
-
#: bp-themes/deprecated/bpmember/groups/single/admin.php:195
|
| 8249 |
msgid "Promote this member"
|
| 8250 |
msgstr ""
|
| 8251 |
|
| 8252 |
#: bp-groups/deprecated/bp-groups-deprecated.php:755
|
| 8253 |
#: bp-themes/bp-sn-parent/_inc/ajax.php:187
|
| 8254 |
-
#: bp-themes/deprecated/bpmember/groups/single/admin.php:195
|
| 8255 |
msgid "Promote to Moderator"
|
| 8256 |
msgstr ""
|
| 8257 |
|
|
@@ -8280,12 +8127,10 @@ msgid "Messages"
|
|
| 8280 |
msgstr ""
|
| 8281 |
|
| 8282 |
#: bp-messages.php:123 bp-themes/bp-sn-parent/messages/index.php:12
|
| 8283 |
-
#: bp-themes/deprecated/bpmember/messages/index.php:12
|
| 8284 |
msgid "Inbox"
|
| 8285 |
msgstr ""
|
| 8286 |
|
| 8287 |
#: bp-messages.php:124 bp-themes/bp-sn-parent/messages/sentbox.php:10
|
| 8288 |
-
#: bp-themes/deprecated/bpmember/messages/sentbox.php:10
|
| 8289 |
msgid "Sent Messages"
|
| 8290 |
msgstr ""
|
| 8291 |
|
|
@@ -8583,7 +8428,7 @@ msgstr ""
|
|
| 8583 |
msgid "Page Not Found"
|
| 8584 |
msgstr ""
|
| 8585 |
|
| 8586 |
-
#: bp-themes/bp-sn-parent/404.php:13
|
| 8587 |
msgid "The page you were looking for was not found."
|
| 8588 |
msgstr ""
|
| 8589 |
|
|
@@ -8597,7 +8442,6 @@ msgid "On"
|
|
| 8597 |
msgstr ""
|
| 8598 |
|
| 8599 |
#: bp-themes/bp-sn-parent/_inc/ajax.php:397
|
| 8600 |
-
#: bp-themes/deprecated/bphome/comments.php:33
|
| 8601 |
#: bp-wire/deprecated/bp-wire-deprecated.php:60
|
| 8602 |
msgid "said:"
|
| 8603 |
msgstr ""
|
|
@@ -8607,7 +8451,6 @@ msgid "No wire posts were found"
|
|
| 8607 |
msgstr ""
|
| 8608 |
|
| 8609 |
#: bp-themes/bp-sn-parent/activity/just-me.php:22
|
| 8610 |
-
#: bp-themes/deprecated/bpmember/activity/just-me.php:31
|
| 8611 |
#, php-format
|
| 8612 |
msgid "%s's Activity"
|
| 8613 |
msgstr ""
|
|
@@ -8615,32 +8458,23 @@ msgstr ""
|
|
| 8615 |
#: bp-themes/bp-sn-parent/activity/just-me.php:22
|
| 8616 |
#: bp-themes/bp-sn-parent/activity/my-friends.php:22
|
| 8617 |
#: bp-themes/bp-sn-parent/profile/index.php:40
|
| 8618 |
-
#: bp-themes/deprecated/bpmember/activity/just-me.php:31
|
| 8619 |
-
#: bp-themes/deprecated/bpmember/activity/my-friends.php:23
|
| 8620 |
-
#: bp-themes/deprecated/bpmember/profile/index.php:32
|
| 8621 |
msgid "RSS Feed"
|
| 8622 |
msgstr ""
|
| 8623 |
|
| 8624 |
#: bp-themes/bp-sn-parent/activity/just-me.php:61
|
| 8625 |
-
#: bp-themes/deprecated/bpmember/activity/just-me.php:58
|
| 8626 |
-
#: bp-themes/deprecated/bpmember/profile/index.php:46
|
| 8627 |
msgid "You haven't done anything yet."
|
| 8628 |
msgstr ""
|
| 8629 |
|
| 8630 |
#: bp-themes/bp-sn-parent/activity/just-me.php:61
|
| 8631 |
-
#: bp-themes/deprecated/bpmember/activity/just-me.php:58
|
| 8632 |
-
#: bp-themes/deprecated/bpmember/profile/index.php:46
|
| 8633 |
#, php-format
|
| 8634 |
msgid "%s hasn't done anything yet."
|
| 8635 |
msgstr ""
|
| 8636 |
|
| 8637 |
#: bp-themes/bp-sn-parent/activity/my-friends.php:22
|
| 8638 |
-
#: bp-themes/deprecated/bpmember/activity/my-friends.php:23
|
| 8639 |
msgid "My Friends Activity"
|
| 8640 |
msgstr ""
|
| 8641 |
|
| 8642 |
#: bp-themes/bp-sn-parent/activity/my-friends.php:61
|
| 8643 |
-
#: bp-themes/deprecated/bpmember/activity/my-friends.php:50
|
| 8644 |
msgid "Your friends haven't done anything yet."
|
| 8645 |
msgstr ""
|
| 8646 |
|
|
@@ -8652,103 +8486,66 @@ msgstr ""
|
|
| 8652 |
#: bp-themes/bp-sn-parent/archive.php:17 bp-themes/bp-sn-parent/archive.php:45
|
| 8653 |
#: bp-themes/bp-sn-parent/index.php:37 bp-themes/bp-sn-parent/search.php:16
|
| 8654 |
#: bp-themes/bp-sn-parent/search.php:40 bp-themes/bp-sn-parent/single.php:15
|
| 8655 |
-
#: bp-themes/deprecated/bphome/archive.php:32
|
| 8656 |
-
#: bp-themes/deprecated/bphome/archive.php:52
|
| 8657 |
-
#: bp-themes/deprecated/bphome/index.php:26
|
| 8658 |
-
#: bp-themes/deprecated/bphome/search.php:13
|
| 8659 |
-
#: bp-themes/deprecated/bphome/search.php:29
|
| 8660 |
-
#: bp-themes/deprecated/bphome/single.php:11
|
| 8661 |
msgid "« Previous Entries"
|
| 8662 |
msgstr ""
|
| 8663 |
|
| 8664 |
#: bp-themes/bp-sn-parent/archive.php:18 bp-themes/bp-sn-parent/archive.php:46
|
| 8665 |
#: bp-themes/bp-sn-parent/index.php:38 bp-themes/bp-sn-parent/search.php:17
|
| 8666 |
#: bp-themes/bp-sn-parent/search.php:41 bp-themes/bp-sn-parent/single.php:16
|
| 8667 |
-
#: bp-themes/deprecated/bphome/archive.php:33
|
| 8668 |
-
#: bp-themes/deprecated/bphome/archive.php:53
|
| 8669 |
-
#: bp-themes/deprecated/bphome/index.php:27
|
| 8670 |
-
#: bp-themes/deprecated/bphome/search.php:14
|
| 8671 |
-
#: bp-themes/deprecated/bphome/search.php:30
|
| 8672 |
-
#: bp-themes/deprecated/bphome/single.php:12
|
| 8673 |
msgid "Next Entries »"
|
| 8674 |
msgstr ""
|
| 8675 |
|
| 8676 |
#: bp-themes/bp-sn-parent/archive.php:28 bp-themes/bp-sn-parent/index.php:19
|
| 8677 |
#: bp-themes/bp-sn-parent/search.php:26
|
| 8678 |
-
#: bp-themes/deprecated/bphome/archive.php:38
|
| 8679 |
-
#: bp-themes/deprecated/bphome/index.php:11
|
| 8680 |
-
#: bp-themes/deprecated/bphome/search.php:20
|
| 8681 |
msgid "Permanent Link to"
|
| 8682 |
msgstr ""
|
| 8683 |
|
| 8684 |
#: bp-themes/bp-sn-parent/archive.php:35 bp-themes/bp-sn-parent/search.php:29
|
| 8685 |
-
#: bp-themes/deprecated/bphome/archive.php:45
|
| 8686 |
-
#: bp-themes/deprecated/bphome/search.php:23
|
| 8687 |
msgid "Posted in"
|
| 8688 |
msgstr ""
|
| 8689 |
|
| 8690 |
#: bp-themes/bp-sn-parent/archive.php:35 bp-themes/bp-sn-parent/index.php:27
|
| 8691 |
#: bp-themes/bp-sn-parent/search.php:29
|
| 8692 |
-
#: bp-themes/deprecated/bphome/archive.php:45
|
| 8693 |
-
#: bp-themes/deprecated/bphome/index.php:18
|
| 8694 |
-
#: bp-themes/deprecated/bphome/search.php:23
|
| 8695 |
msgid "No Comments »"
|
| 8696 |
msgstr ""
|
| 8697 |
|
| 8698 |
#: bp-themes/bp-sn-parent/archive.php:35 bp-themes/bp-sn-parent/index.php:27
|
| 8699 |
#: bp-themes/bp-sn-parent/search.php:29
|
| 8700 |
-
#: bp-themes/deprecated/bphome/archive.php:45
|
| 8701 |
-
#: bp-themes/deprecated/bphome/index.php:18
|
| 8702 |
-
#: bp-themes/deprecated/bphome/search.php:23
|
| 8703 |
msgid "1 Comment »"
|
| 8704 |
msgstr ""
|
| 8705 |
|
| 8706 |
#: bp-themes/bp-sn-parent/archive.php:35 bp-themes/bp-sn-parent/index.php:27
|
| 8707 |
#: bp-themes/bp-sn-parent/search.php:29
|
| 8708 |
-
#: bp-themes/deprecated/bphome/archive.php:45
|
| 8709 |
-
#: bp-themes/deprecated/bphome/index.php:18
|
| 8710 |
-
#: bp-themes/deprecated/bphome/search.php:23
|
| 8711 |
msgid "% Comments »"
|
| 8712 |
msgstr ""
|
| 8713 |
|
| 8714 |
#: bp-themes/bp-sn-parent/archive.php:52 bp-themes/bp-sn-parent/index.php:44
|
| 8715 |
-
#: bp-themes/deprecated/bphome/archive.php:58
|
| 8716 |
-
#: bp-themes/deprecated/bphome/index.php:32
|
| 8717 |
msgid "Not Found"
|
| 8718 |
msgstr ""
|
| 8719 |
|
| 8720 |
#: bp-themes/bp-sn-parent/attachment.php:25
|
| 8721 |
#: bp-themes/bp-sn-parent/single.php:28
|
| 8722 |
-
#: bp-themes/deprecated/bphome/attachment.php:16
|
| 8723 |
-
#: bp-themes/deprecated/bphome/single.php:19
|
| 8724 |
msgid "<p class=\"serif\">Read the rest of this entry »</p>"
|
| 8725 |
msgstr ""
|
| 8726 |
|
| 8727 |
#: bp-themes/bp-sn-parent/attachment.php:27 bp-themes/bp-sn-parent/page.php:19
|
| 8728 |
#: bp-themes/bp-sn-parent/single.php:30
|
| 8729 |
-
#: bp-themes/deprecated/bphome/attachment.php:18
|
| 8730 |
-
#: bp-themes/deprecated/bphome/page.php:12
|
| 8731 |
-
#: bp-themes/deprecated/bphome/single.php:21
|
| 8732 |
msgid "<p><strong>Pages:</strong> "
|
| 8733 |
msgstr ""
|
| 8734 |
|
| 8735 |
#: bp-themes/bp-sn-parent/attachment.php:38
|
| 8736 |
-
#: bp-themes/deprecated/bphome/attachment.php:27
|
| 8737 |
msgid "Sorry, no attachments matched your criteria."
|
| 8738 |
msgstr ""
|
| 8739 |
|
| 8740 |
#: bp-themes/bp-sn-parent/blogs/create.php:22
|
| 8741 |
-
#: bp-themes/deprecated/bpmember/blogs/create.php:18
|
| 8742 |
msgid "Blog registration is currently disabled"
|
| 8743 |
msgstr ""
|
| 8744 |
|
| 8745 |
#: bp-themes/bp-sn-parent/blogs/my-blogs.php:35
|
| 8746 |
-
#: bp-themes/deprecated/bpmember/blogs/my-blogs.php:23
|
| 8747 |
msgid "You haven't created any blogs yet."
|
| 8748 |
msgstr ""
|
| 8749 |
|
| 8750 |
#: bp-themes/bp-sn-parent/blogs/my-blogs.php:35
|
| 8751 |
-
#: bp-themes/deprecated/bpmember/blogs/my-blogs.php:23
|
| 8752 |
#, php-format
|
| 8753 |
msgid "%s hasn't created any public blogs yet."
|
| 8754 |
msgstr ""
|
|
@@ -8756,22 +8553,16 @@ msgstr ""
|
|
| 8756 |
#: bp-themes/bp-sn-parent/blogs/recent-comments.php:21
|
| 8757 |
#: bp-themes/bp-sn-parent/wire/post-form.php:21
|
| 8758 |
#: bp-themes/bp-sn-parent/wire/post-list.php:39
|
| 8759 |
-
#: bp-themes/deprecated/bpmember/blogs/recent-comments.php:15
|
| 8760 |
-
#: bp-themes/deprecated/bpmember/wire/post-form.php:5
|
| 8761 |
-
#: bp-themes/deprecated/bpmember/wire/post-list.php:23
|
| 8762 |
#, php-format
|
| 8763 |
msgid "On %1$s %2$s said:"
|
| 8764 |
msgstr ""
|
| 8765 |
|
| 8766 |
#: bp-themes/bp-sn-parent/blogs/recent-comments.php:21
|
| 8767 |
#: bp-themes/bp-sn-parent/blogs/recent-posts.php:23
|
| 8768 |
-
#: bp-themes/deprecated/bpmember/blogs/recent-comments.php:15
|
| 8769 |
-
#: bp-themes/deprecated/bpmember/blogs/recent-posts.php:15
|
| 8770 |
msgid "F jS, Y"
|
| 8771 |
msgstr ""
|
| 8772 |
|
| 8773 |
#: bp-themes/bp-sn-parent/blogs/recent-comments.php:23
|
| 8774 |
-
#: bp-themes/deprecated/bpmember/blogs/recent-comments.php:17
|
| 8775 |
#, php-format
|
| 8776 |
msgid ""
|
| 8777 |
"Commented on the post <a href=\"%1$s\">%2$s</a> on the blog <a href=\"%3$s\">"
|
|
@@ -8779,57 +8570,46 @@ msgid ""
|
|
| 8779 |
msgstr ""
|
| 8780 |
|
| 8781 |
#: bp-themes/bp-sn-parent/blogs/recent-comments.php:36
|
| 8782 |
-
#: bp-themes/deprecated/bpmember/blogs/recent-comments.php:24
|
| 8783 |
msgid "You haven't posted any comments yet."
|
| 8784 |
msgstr ""
|
| 8785 |
|
| 8786 |
#: bp-themes/bp-sn-parent/blogs/recent-comments.php:36
|
| 8787 |
-
#: bp-themes/deprecated/bpmember/blogs/recent-comments.php:24
|
| 8788 |
#, php-format
|
| 8789 |
msgid "%s hasn't posted any comments yet."
|
| 8790 |
msgstr ""
|
| 8791 |
|
| 8792 |
#: bp-themes/bp-sn-parent/blogs/recent-posts.php:21
|
| 8793 |
-
#: bp-themes/deprecated/bpmember/blogs/recent-posts.php:14
|
| 8794 |
#, php-format
|
| 8795 |
msgid "Permanent Link to %s"
|
| 8796 |
msgstr ""
|
| 8797 |
|
| 8798 |
#: bp-themes/bp-sn-parent/blogs/recent-posts.php:23
|
| 8799 |
-
#: bp-themes/deprecated/bpmember/blogs/recent-posts.php:15
|
| 8800 |
#, php-format
|
| 8801 |
msgid "%1$s <em>in %2$s by %3$s</em>"
|
| 8802 |
msgstr ""
|
| 8803 |
|
| 8804 |
#: bp-themes/bp-sn-parent/blogs/recent-posts.php:24
|
| 8805 |
#: bp-themes/bp-sn-parent/index.php:24
|
| 8806 |
-
#: bp-themes/deprecated/bphome/index.php:15
|
| 8807 |
-
#: bp-themes/deprecated/bpmember/blogs/recent-posts.php:16
|
| 8808 |
msgid "Read the rest of this entry »"
|
| 8809 |
msgstr ""
|
| 8810 |
|
| 8811 |
#: bp-themes/bp-sn-parent/blogs/recent-posts.php:25
|
| 8812 |
-
#: bp-themes/deprecated/bpmember/blogs/recent-posts.php:17
|
| 8813 |
msgid "No Comments"
|
| 8814 |
msgstr ""
|
| 8815 |
|
| 8816 |
#: bp-themes/bp-sn-parent/blogs/recent-posts.php:25
|
| 8817 |
-
#: bp-themes/deprecated/bpmember/blogs/recent-posts.php:17
|
| 8818 |
msgid "1 Comment"
|
| 8819 |
msgstr ""
|
| 8820 |
|
| 8821 |
#: bp-themes/bp-sn-parent/blogs/recent-posts.php:25
|
| 8822 |
-
#: bp-themes/deprecated/bpmember/blogs/recent-posts.php:17
|
| 8823 |
msgid "% Comments"
|
| 8824 |
msgstr ""
|
| 8825 |
|
| 8826 |
#: bp-themes/bp-sn-parent/blogs/recent-posts.php:40
|
| 8827 |
-
#: bp-themes/deprecated/bpmember/blogs/recent-posts.php:24
|
| 8828 |
msgid "You haven't made any posts yet."
|
| 8829 |
msgstr ""
|
| 8830 |
|
| 8831 |
#: bp-themes/bp-sn-parent/blogs/recent-posts.php:40
|
| 8832 |
-
#: bp-themes/deprecated/bpmember/blogs/recent-posts.php:24
|
| 8833 |
#, php-format
|
| 8834 |
msgid "%s hasn't made any posts yet."
|
| 8835 |
msgstr ""
|
|
@@ -8865,12 +8645,10 @@ msgid ""
|
|
| 8865 |
msgstr ""
|
| 8866 |
|
| 8867 |
#: bp-themes/bp-sn-parent/comments.php:50
|
| 8868 |
-
#: bp-themes/deprecated/bphome/comments.php:62
|
| 8869 |
msgid "Comments are closed."
|
| 8870 |
msgstr ""
|
| 8871 |
|
| 8872 |
#: bp-themes/bp-sn-parent/comments.php:62
|
| 8873 |
-
#: bp-themes/deprecated/bphome/comments.php:75
|
| 8874 |
msgid "Leave a Reply"
|
| 8875 |
msgstr ""
|
| 8876 |
|
|
@@ -8896,7 +8674,6 @@ msgid "Logged in as <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
|
|
| 8896 |
msgstr ""
|
| 8897 |
|
| 8898 |
#: bp-themes/bp-sn-parent/comments.php:84
|
| 8899 |
-
#: bp-themes/deprecated/bphome/comments-popup.php:60
|
| 8900 |
msgid "Log out of this account"
|
| 8901 |
msgstr ""
|
| 8902 |
|
|
@@ -8922,29 +8699,24 @@ msgid "Reset"
|
|
| 8922 |
msgstr ""
|
| 8923 |
|
| 8924 |
#: bp-themes/bp-sn-parent/directories/blogs/blogs-loop.php:34
|
| 8925 |
-
#: bp-themes/deprecated/bpmember/directories/blogs/blogs-loop.php:28
|
| 8926 |
msgid "Visit Blog"
|
| 8927 |
msgstr ""
|
| 8928 |
|
| 8929 |
#: bp-themes/bp-sn-parent/directories/blogs/blogs-loop.php:55
|
| 8930 |
-
#: bp-themes/deprecated/bpmember/directories/blogs/blogs-loop.php:47
|
| 8931 |
msgid ""
|
| 8932 |
"No blogs found. Blogs must fill in at least one piece of profile data to "
|
| 8933 |
"show in blog lists."
|
| 8934 |
msgstr ""
|
| 8935 |
|
| 8936 |
#: bp-themes/bp-sn-parent/directories/blogs/index.php:10
|
| 8937 |
-
#: bp-themes/deprecated/bpmember/directories/blogs/index.php:6
|
| 8938 |
msgid "Blog Directory"
|
| 8939 |
msgstr ""
|
| 8940 |
|
| 8941 |
#: bp-themes/bp-sn-parent/directories/blogs/index.php:42
|
| 8942 |
-
#: bp-themes/deprecated/bpmember/directories/blogs/index.php:40
|
| 8943 |
msgid "Blog Listing"
|
| 8944 |
msgstr ""
|
| 8945 |
|
| 8946 |
#: bp-themes/bp-sn-parent/directories/blogs/index.php:69
|
| 8947 |
-
#: bp-themes/deprecated/bpmember/directories/blogs/index.php:58
|
| 8948 |
msgid "Find Blogs"
|
| 8949 |
msgstr ""
|
| 8950 |
|
|
@@ -8953,12 +8725,10 @@ msgid "Random Blogs"
|
|
| 8953 |
msgstr ""
|
| 8954 |
|
| 8955 |
#: bp-themes/bp-sn-parent/directories/blogs/index.php:100
|
| 8956 |
-
#: bp-themes/deprecated/bpmember/directories/blogs/index.php:83
|
| 8957 |
msgid "Description: "
|
| 8958 |
msgstr ""
|
| 8959 |
|
| 8960 |
#: bp-themes/bp-sn-parent/directories/blogs/index.php:117
|
| 8961 |
-
#: bp-themes/deprecated/bpmember/directories/blogs/index.php:99
|
| 8962 |
msgid "There are not enough blogs to feature."
|
| 8963 |
msgstr ""
|
| 8964 |
|
|
@@ -9017,22 +8787,18 @@ msgid "Forum Topic Tags"
|
|
| 9017 |
msgstr ""
|
| 9018 |
|
| 9019 |
#: bp-themes/bp-sn-parent/directories/groups/groups-loop.php:55
|
| 9020 |
-
#: bp-themes/deprecated/bpmember/directories/groups/groups-loop.php:47
|
| 9021 |
msgid "There were no groups found."
|
| 9022 |
msgstr ""
|
| 9023 |
|
| 9024 |
#: bp-themes/bp-sn-parent/directories/groups/index.php:10
|
| 9025 |
-
#: bp-themes/deprecated/bpmember/directories/groups/index.php:6
|
| 9026 |
msgid "Groups Directory"
|
| 9027 |
msgstr ""
|
| 9028 |
|
| 9029 |
#: bp-themes/bp-sn-parent/directories/groups/index.php:42
|
| 9030 |
-
#: bp-themes/deprecated/bpmember/directories/groups/index.php:40
|
| 9031 |
msgid "Groups Listing"
|
| 9032 |
msgstr ""
|
| 9033 |
|
| 9034 |
#: bp-themes/bp-sn-parent/directories/groups/index.php:69
|
| 9035 |
-
#: bp-themes/deprecated/bpmember/directories/groups/index.php:58
|
| 9036 |
msgid "Find Groups"
|
| 9037 |
msgstr ""
|
| 9038 |
|
|
@@ -9041,22 +8807,18 @@ msgid "Random Groups"
|
|
| 9041 |
msgstr ""
|
| 9042 |
|
| 9043 |
#: bp-themes/bp-sn-parent/directories/groups/index.php:101
|
| 9044 |
-
#: bp-themes/deprecated/bpmember/directories/groups/index.php:83
|
| 9045 |
msgid "Members:"
|
| 9046 |
msgstr ""
|
| 9047 |
|
| 9048 |
#: bp-themes/bp-sn-parent/directories/members/index.php:10
|
| 9049 |
-
#: bp-themes/deprecated/bpmember/directories/members/index.php:6
|
| 9050 |
msgid "Members Directory"
|
| 9051 |
msgstr ""
|
| 9052 |
|
| 9053 |
#: bp-themes/bp-sn-parent/directories/members/index.php:42
|
| 9054 |
-
#: bp-themes/deprecated/bpmember/directories/members/index.php:40
|
| 9055 |
msgid "Member Listing"
|
| 9056 |
msgstr ""
|
| 9057 |
|
| 9058 |
#: bp-themes/bp-sn-parent/directories/members/index.php:68
|
| 9059 |
-
#: bp-themes/deprecated/bpmember/directories/members/index.php:57
|
| 9060 |
msgid "Find Members"
|
| 9061 |
msgstr ""
|
| 9062 |
|
|
@@ -9065,20 +8827,16 @@ msgid "Random Members"
|
|
| 9065 |
msgstr ""
|
| 9066 |
|
| 9067 |
#: bp-themes/bp-sn-parent/directories/members/index.php:112
|
| 9068 |
-
#: bp-themes/deprecated/bpmember/directories/members/index.php:97
|
| 9069 |
msgid "There are not enough members to feature."
|
| 9070 |
msgstr ""
|
| 9071 |
|
| 9072 |
#: bp-themes/bp-sn-parent/directories/members/members-loop.php:49
|
| 9073 |
-
#: bp-themes/deprecated/bpmember/directories/members/members-loop.php:41
|
| 9074 |
msgid ""
|
| 9075 |
"No members found. Members must fill in at least one piece of profile data to "
|
| 9076 |
"show in member lists."
|
| 9077 |
msgstr ""
|
| 9078 |
|
| 9079 |
#: bp-themes/bp-sn-parent/footer.php:10
|
| 9080 |
-
#: bp-themes/deprecated/bphome/footer.php:5
|
| 9081 |
-
#: bp-themes/deprecated/bpmember/footer.php:4
|
| 9082 |
#, php-format
|
| 9083 |
msgid ""
|
| 9084 |
"%s is proudly powered by <a href=\"http://mu.wordpress.org\">WordPress MU</"
|
|
@@ -9086,51 +8844,39 @@ msgid ""
|
|
| 9086 |
msgstr ""
|
| 9087 |
|
| 9088 |
#: bp-themes/bp-sn-parent/friends/friends-loop.php:48
|
| 9089 |
-
#: bp-themes/deprecated/bpmember/friends/friends-loop.php:28
|
| 9090 |
msgid "No friends matched your search filter terms"
|
| 9091 |
msgstr ""
|
| 9092 |
|
| 9093 |
#: bp-themes/bp-sn-parent/friends/friends-loop.php:54
|
| 9094 |
-
#: bp-themes/deprecated/bpmember/friends/friends-loop.php:32
|
| 9095 |
msgid "Your friends list is currently empty"
|
| 9096 |
msgstr ""
|
| 9097 |
|
| 9098 |
#: bp-themes/bp-sn-parent/friends/friends-loop.php:54
|
| 9099 |
-
#: bp-themes/deprecated/bpmember/friends/friends-loop.php:32
|
| 9100 |
#, php-format
|
| 9101 |
msgid "%s's friends list is currently empty"
|
| 9102 |
msgstr ""
|
| 9103 |
|
| 9104 |
#: bp-themes/bp-sn-parent/friends/friends-loop.php:63
|
| 9105 |
-
#: bp-themes/deprecated/bpmember/friends/friends-loop.php:37
|
| 9106 |
msgid "Why not make friends with some of these members?"
|
| 9107 |
msgstr ""
|
| 9108 |
|
| 9109 |
#: bp-themes/bp-sn-parent/friends/requests.php:16
|
| 9110 |
-
#: bp-themes/deprecated/bpmember/friends/requests.php:11
|
| 9111 |
msgid "Friendship Requests"
|
| 9112 |
msgstr ""
|
| 9113 |
|
| 9114 |
#: bp-themes/bp-sn-parent/friends/requests.php:35
|
| 9115 |
#: bp-themes/bp-sn-parent/groups/invites.php:32
|
| 9116 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:277
|
| 9117 |
-
#: bp-themes/deprecated/bpmember/friends/requests.php:24
|
| 9118 |
-
#: bp-themes/deprecated/bpmember/groups/invites.php:27
|
| 9119 |
-
#: bp-themes/deprecated/bpmember/groups/single/admin.php:227
|
| 9120 |
msgid "Accept"
|
| 9121 |
msgstr ""
|
| 9122 |
|
| 9123 |
#: bp-themes/bp-sn-parent/friends/requests.php:41
|
| 9124 |
#: bp-themes/bp-sn-parent/groups/invites.php:38
|
| 9125 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:283
|
| 9126 |
-
#: bp-themes/deprecated/bpmember/friends/requests.php:30
|
| 9127 |
-
#: bp-themes/deprecated/bpmember/groups/invites.php:33
|
| 9128 |
-
#: bp-themes/deprecated/bpmember/groups/single/admin.php:233
|
| 9129 |
msgid "Reject"
|
| 9130 |
msgstr ""
|
| 9131 |
|
| 9132 |
#: bp-themes/bp-sn-parent/friends/requests.php:56
|
| 9133 |
-
#: bp-themes/deprecated/bpmember/friends/requests.php:40
|
| 9134 |
msgid "You have no pending friendship requests."
|
| 9135 |
msgstr ""
|
| 9136 |
|
|
@@ -9156,8 +8902,6 @@ msgstr ""
|
|
| 9156 |
#: bp-themes/bp-sn-parent/registration/register.php:128
|
| 9157 |
#: bp-themes/bp-sn-parent/registration/register.php:176
|
| 9158 |
#: bp-themes/bp-sn-parent/registration/register.php:185
|
| 9159 |
-
#: bp-themes/deprecated/bphome/comments.php:90
|
| 9160 |
-
#: bp-themes/deprecated/bphome/comments.php:93
|
| 9161 |
#: bp-xprofile/deprecated/bp-xprofile-deprecated.php:58
|
| 9162 |
#: bp-xprofile/deprecated/bp-xprofile-deprecated.php:65
|
| 9163 |
#: bp-xprofile/deprecated/bp-xprofile-deprecated.php:72
|
|
@@ -9174,34 +8918,27 @@ msgstr ""
|
|
| 9174 |
|
| 9175 |
#: bp-themes/bp-sn-parent/groups/group-loop.php:26
|
| 9176 |
#: bp-themes/bp-sn-parent/groups/invites.php:22
|
| 9177 |
-
#: bp-themes/deprecated/bpmember/groups/group-loop.php:11
|
| 9178 |
-
#: bp-themes/deprecated/bpmember/groups/invites.php:20
|
| 9179 |
#, php-format
|
| 9180 |
msgid "%s members"
|
| 9181 |
msgstr ""
|
| 9182 |
|
| 9183 |
#: bp-themes/bp-sn-parent/groups/group-loop.php:29
|
| 9184 |
-
#: bp-themes/deprecated/bpmember/groups/group-loop.php:14
|
| 9185 |
msgid "Membership Pending Approval"
|
| 9186 |
msgstr ""
|
| 9187 |
|
| 9188 |
#: bp-themes/bp-sn-parent/groups/group-loop.php:56
|
| 9189 |
-
#: bp-themes/deprecated/bpmember/groups/group-loop.php:32
|
| 9190 |
msgid "Why not join a few of these groups?"
|
| 9191 |
msgstr ""
|
| 9192 |
|
| 9193 |
#: bp-themes/bp-sn-parent/groups/group-loop.php:66
|
| 9194 |
-
#: bp-themes/deprecated/bpmember/groups/group-loop.php:39
|
| 9195 |
msgid "No matching groups found."
|
| 9196 |
msgstr ""
|
| 9197 |
|
| 9198 |
#: bp-themes/bp-sn-parent/groups/invites.php:53
|
| 9199 |
-
#: bp-themes/deprecated/bpmember/groups/invites.php:44
|
| 9200 |
msgid "You have no outstanding group invites."
|
| 9201 |
msgstr ""
|
| 9202 |
|
| 9203 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:38
|
| 9204 |
-
#: bp-themes/deprecated/bpmember/groups/single/admin.php:34
|
| 9205 |
msgid "Notify group members of changes via email"
|
| 9206 |
msgstr ""
|
| 9207 |
|
|
@@ -9211,21 +8948,16 @@ msgid "Delete Avatar"
|
|
| 9211 |
msgstr ""
|
| 9212 |
|
| 9213 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:151
|
| 9214 |
-
#: bp-themes/deprecated/bpmember/groups/single/admin.php:129
|
| 9215 |
msgid "Crop Avatar"
|
| 9216 |
msgstr ""
|
| 9217 |
|
| 9218 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:183
|
| 9219 |
#: bp-themes/bp-sn-parent/groups/single/members.php:30
|
| 9220 |
-
#: bp-themes/deprecated/bpmember/groups/single/admin.php:159
|
| 9221 |
-
#: bp-themes/deprecated/bpmember/groups/single/members.php:23
|
| 9222 |
msgid "Administrators"
|
| 9223 |
msgstr ""
|
| 9224 |
|
| 9225 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:190
|
| 9226 |
#: bp-themes/bp-sn-parent/groups/single/members.php:41
|
| 9227 |
-
#: bp-themes/deprecated/bpmember/groups/single/admin.php:165
|
| 9228 |
-
#: bp-themes/deprecated/bpmember/groups/single/members.php:29
|
| 9229 |
msgid "Moderators"
|
| 9230 |
msgstr ""
|
| 9231 |
|
|
@@ -9234,58 +8966,46 @@ msgid "Promote to Mod"
|
|
| 9234 |
msgstr ""
|
| 9235 |
|
| 9236 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:297
|
| 9237 |
-
#: bp-themes/deprecated/bpmember/groups/single/admin.php:243
|
| 9238 |
msgid "There are no pending membership requests."
|
| 9239 |
msgstr ""
|
| 9240 |
|
| 9241 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:316
|
| 9242 |
-
#: bp-themes/deprecated/bpmember/groups/single/admin.php:258
|
| 9243 |
msgid ""
|
| 9244 |
"WARNING: Deleting this group will completely remove ALL content associated "
|
| 9245 |
"with it. There is no way back, please be careful with this option."
|
| 9246 |
msgstr ""
|
| 9247 |
|
| 9248 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:319
|
| 9249 |
-
#: bp-themes/deprecated/bpmember/groups/single/admin.php:261
|
| 9250 |
msgid "I understand the consequences of deleting this group."
|
| 9251 |
msgstr ""
|
| 9252 |
|
| 9253 |
#: bp-themes/bp-sn-parent/groups/single/forum/edit.php:45
|
| 9254 |
-
#: bp-themes/deprecated/bpmember/groups/single/forum/edit.php:45
|
| 9255 |
msgid "Edit Topic:"
|
| 9256 |
msgstr ""
|
| 9257 |
|
| 9258 |
#: bp-themes/bp-sn-parent/groups/single/forum/edit.php:50
|
| 9259 |
#: bp-themes/bp-sn-parent/groups/single/forum/index.php:81
|
| 9260 |
-
#: bp-themes/deprecated/bpmember/groups/single/forum/edit.php:50
|
| 9261 |
-
#: bp-themes/deprecated/bpmember/groups/single/forum/index.php:73
|
| 9262 |
msgid "Content:"
|
| 9263 |
msgstr ""
|
| 9264 |
|
| 9265 |
#: bp-themes/bp-sn-parent/groups/single/forum/edit.php:67
|
| 9266 |
-
#: bp-themes/deprecated/bpmember/groups/single/forum/edit.php:67
|
| 9267 |
msgid "Edit Post:"
|
| 9268 |
msgstr ""
|
| 9269 |
|
| 9270 |
#: bp-themes/bp-sn-parent/groups/single/forum/edit.php:87
|
| 9271 |
-
#: bp-themes/deprecated/bpmember/groups/single/forum/edit.php:87
|
| 9272 |
msgid "This topic does not exist."
|
| 9273 |
msgstr ""
|
| 9274 |
|
| 9275 |
#: bp-themes/bp-sn-parent/groups/single/forum/index.php:25
|
| 9276 |
#: bp-themes/bp-sn-parent/groups/single/forum/topic.php:28
|
| 9277 |
-
#: bp-themes/deprecated/bpmember/groups/single/forum/index.php:25
|
| 9278 |
-
#: bp-themes/deprecated/bpmember/groups/single/forum/topic.php:28
|
| 9279 |
msgid "Post New"
|
| 9280 |
msgstr ""
|
| 9281 |
|
| 9282 |
#: bp-themes/bp-sn-parent/groups/single/forum/index.php:25
|
| 9283 |
-
#: bp-themes/deprecated/bpmember/groups/single/forum/index.php:25
|
| 9284 |
msgid "Post New →"
|
| 9285 |
msgstr ""
|
| 9286 |
|
| 9287 |
#: bp-themes/bp-sn-parent/groups/single/forum/index.php:60
|
| 9288 |
-
#: bp-themes/deprecated/bpmember/groups/single/forum/index.php:56
|
| 9289 |
msgid "There are no topics for this group forum."
|
| 9290 |
msgstr ""
|
| 9291 |
|
|
@@ -9294,7 +9014,6 @@ msgid "You will auto join this group when you start a new topic."
|
|
| 9294 |
msgstr ""
|
| 9295 |
|
| 9296 |
#: bp-themes/bp-sn-parent/groups/single/forum/index.php:76
|
| 9297 |
-
#: bp-themes/deprecated/bpmember/groups/single/forum/index.php:68
|
| 9298 |
msgid "Post a New Topic:"
|
| 9299 |
msgstr ""
|
| 9300 |
|
|
@@ -9303,12 +9022,10 @@ msgid "Tags (comma separated):"
|
|
| 9303 |
msgstr ""
|
| 9304 |
|
| 9305 |
#: bp-themes/bp-sn-parent/groups/single/forum/index.php:89
|
| 9306 |
-
#: bp-themes/deprecated/bpmember/groups/single/forum/index.php:81
|
| 9307 |
msgid "Post Topic"
|
| 9308 |
msgstr ""
|
| 9309 |
|
| 9310 |
#: bp-themes/bp-sn-parent/groups/single/forum/topic.php:28
|
| 9311 |
-
#: bp-themes/deprecated/bpmember/groups/single/forum/topic.php:28
|
| 9312 |
msgid "Post Reply →"
|
| 9313 |
msgstr ""
|
| 9314 |
|
|
@@ -9321,7 +9038,6 @@ msgid "Forum Topic Directory"
|
|
| 9321 |
msgstr ""
|
| 9322 |
|
| 9323 |
#: bp-themes/bp-sn-parent/groups/single/forum/topic.php:57
|
| 9324 |
-
#: bp-themes/deprecated/bpmember/groups/single/forum/topic.php:53
|
| 9325 |
#, php-format
|
| 9326 |
msgid "%s said %s ago:"
|
| 9327 |
msgstr ""
|
|
@@ -9331,27 +9047,22 @@ msgid "You will auto join this group when you reply to this topic."
|
|
| 9331 |
msgstr ""
|
| 9332 |
|
| 9333 |
#: bp-themes/bp-sn-parent/groups/single/forum/topic.php:86
|
| 9334 |
-
#: bp-themes/deprecated/bpmember/groups/single/forum/topic.php:78
|
| 9335 |
msgid "Add a reply:"
|
| 9336 |
msgstr ""
|
| 9337 |
|
| 9338 |
#: bp-themes/bp-sn-parent/groups/single/forum/topic.php:90
|
| 9339 |
-
#: bp-themes/deprecated/bpmember/groups/single/forum/topic.php:81
|
| 9340 |
msgid "Post Reply"
|
| 9341 |
msgstr ""
|
| 9342 |
|
| 9343 |
#: bp-themes/bp-sn-parent/groups/single/forum/topic.php:100
|
| 9344 |
-
#: bp-themes/deprecated/bpmember/groups/single/forum/topic.php:91
|
| 9345 |
msgid "This topic is closed, replies are no longer accepted."
|
| 9346 |
msgstr ""
|
| 9347 |
|
| 9348 |
#: bp-themes/bp-sn-parent/groups/single/forum/topic.php:111
|
| 9349 |
-
#: bp-themes/deprecated/bpmember/groups/single/forum/topic.php:102
|
| 9350 |
msgid "There are no posts for this topic."
|
| 9351 |
msgstr ""
|
| 9352 |
|
| 9353 |
#: bp-themes/bp-sn-parent/groups/single/home.php:57
|
| 9354 |
-
#: bp-themes/deprecated/bpmember/groups/single/home.php:37
|
| 9355 |
msgid "News"
|
| 9356 |
msgstr ""
|
| 9357 |
|
|
@@ -9360,101 +9071,81 @@ msgid "Group Activity"
|
|
| 9360 |
msgstr ""
|
| 9361 |
|
| 9362 |
#: bp-themes/bp-sn-parent/groups/single/home.php:109
|
| 9363 |
-
#: bp-themes/deprecated/bpmember/groups/single/home.php:46
|
| 9364 |
msgid "Recently Active Topics"
|
| 9365 |
msgstr ""
|
| 9366 |
|
| 9367 |
#: bp-themes/bp-sn-parent/groups/single/home.php:147
|
| 9368 |
-
#: bp-themes/deprecated/bpmember/groups/single/home.php:73
|
| 9369 |
#, php-format
|
| 9370 |
msgid "Members (%d)"
|
| 9371 |
msgstr ""
|
| 9372 |
|
| 9373 |
#: bp-themes/bp-sn-parent/groups/single/home.php:177
|
| 9374 |
#: bp-themes/bp-sn-parent/groups/single/wire.php:29
|
| 9375 |
-
#: bp-themes/deprecated/bpmember/groups/single/home.php:95
|
| 9376 |
-
#: bp-themes/deprecated/bpmember/groups/single/wire.php:26
|
| 9377 |
msgid "Group Wire"
|
| 9378 |
msgstr ""
|
| 9379 |
|
| 9380 |
#: bp-themes/bp-sn-parent/groups/single/home.php:177
|
| 9381 |
#: bp-themes/bp-sn-parent/groups/single/wire.php:29
|
| 9382 |
-
#: bp-themes/deprecated/bpmember/groups/single/home.php:95
|
| 9383 |
-
#: bp-themes/deprecated/bpmember/groups/single/wire.php:26
|
| 9384 |
#, php-format
|
| 9385 |
msgid "There are no wire posts for %s"
|
| 9386 |
msgstr ""
|
| 9387 |
|
| 9388 |
#: bp-themes/bp-sn-parent/groups/single/home.php:194
|
| 9389 |
-
#: bp-themes/deprecated/bpmember/groups/single/home.php:103
|
| 9390 |
msgid "Sorry, the group does not exist."
|
| 9391 |
msgstr ""
|
| 9392 |
|
| 9393 |
#: bp-themes/bp-sn-parent/groups/single/leave-confirm.php:30
|
| 9394 |
-
#: bp-themes/deprecated/bpmember/groups/single/leave-confirm.php:23
|
| 9395 |
msgid "Confirm Leave Group"
|
| 9396 |
msgstr ""
|
| 9397 |
|
| 9398 |
#: bp-themes/bp-sn-parent/groups/single/leave-confirm.php:31
|
| 9399 |
-
#: bp-themes/deprecated/bpmember/groups/single/leave-confirm.php:24
|
| 9400 |
msgid "Are you sure you want to leave this group?"
|
| 9401 |
msgstr ""
|
| 9402 |
|
| 9403 |
#: bp-themes/bp-sn-parent/groups/single/leave-confirm.php:34
|
| 9404 |
-
#: bp-themes/deprecated/bpmember/groups/single/leave-confirm.php:27
|
| 9405 |
msgid "Yes, I'd like to leave this group."
|
| 9406 |
msgstr ""
|
| 9407 |
|
| 9408 |
#: bp-themes/bp-sn-parent/groups/single/leave-confirm.php:35
|
| 9409 |
-
#: bp-themes/deprecated/bpmember/groups/single/leave-confirm.php:28
|
| 9410 |
msgid "No, I'll stay!"
|
| 9411 |
msgstr ""
|
| 9412 |
|
| 9413 |
#: bp-themes/bp-sn-parent/groups/single/members.php:50
|
| 9414 |
-
#: bp-themes/deprecated/bpmember/groups/single/members.php:35
|
| 9415 |
msgid "Group Members"
|
| 9416 |
msgstr ""
|
| 9417 |
|
| 9418 |
#: bp-themes/bp-sn-parent/groups/single/menu.php:18
|
| 9419 |
-
#: bp-themes/deprecated/bpmember/groups/single/menu.php:10
|
| 9420 |
msgid "Admins"
|
| 9421 |
msgstr ""
|
| 9422 |
|
| 9423 |
#: bp-themes/bp-sn-parent/groups/single/menu.php:27
|
| 9424 |
-
#: bp-themes/deprecated/bpmember/groups/single/menu.php:16
|
| 9425 |
msgid "Mods"
|
| 9426 |
msgstr ""
|
| 9427 |
|
| 9428 |
#: bp-themes/bp-sn-parent/groups/single/request-membership.php:33
|
| 9429 |
-
#: bp-themes/deprecated/bpmember/groups/single/request-membership.php:27
|
| 9430 |
#, php-format
|
| 9431 |
msgid "You are requesting to become a member of the group '%s'."
|
| 9432 |
msgstr ""
|
| 9433 |
|
| 9434 |
#: bp-themes/bp-sn-parent/groups/single/request-membership.php:36
|
| 9435 |
-
#: bp-themes/deprecated/bpmember/groups/single/request-membership.php:30
|
| 9436 |
msgid "Comments (optional)"
|
| 9437 |
msgstr ""
|
| 9438 |
|
| 9439 |
#: bp-themes/bp-sn-parent/groups/single/request-membership.php:41
|
| 9440 |
-
#: bp-themes/deprecated/bpmember/groups/single/request-membership.php:33
|
| 9441 |
msgid "Send Request"
|
| 9442 |
msgstr ""
|
| 9443 |
|
| 9444 |
#: bp-themes/bp-sn-parent/groups/single/send-invite.php:91
|
| 9445 |
-
#: bp-themes/deprecated/bpmember/groups/single/send-invite.php:75
|
| 9446 |
msgid ""
|
| 9447 |
"You either need to build up your friends list, or your friends have already "
|
| 9448 |
"been invited or are current members."
|
| 9449 |
msgstr ""
|
| 9450 |
|
| 9451 |
#: bp-themes/bp-sn-parent/header.php:21
|
| 9452 |
-
#: bp-themes/deprecated/bphome/header.php:17
|
| 9453 |
msgid "Blog Posts RSS Feed"
|
| 9454 |
msgstr ""
|
| 9455 |
|
| 9456 |
#: bp-themes/bp-sn-parent/header.php:22
|
| 9457 |
-
#: bp-themes/deprecated/bphome/header.php:18
|
| 9458 |
msgid "Blog Posts Atom Feed"
|
| 9459 |
msgstr ""
|
| 9460 |
|
|
@@ -9465,20 +9156,10 @@ msgstr ""
|
|
| 9465 |
|
| 9466 |
#: bp-themes/bp-sn-parent/home.php:12 bp-themes/bp-sn-parent/home.php:23
|
| 9467 |
#: bp-themes/bp-sn-parent/home.php:34 bp-themes/bp-sn-parent/sidebar.php:10
|
| 9468 |
-
#: bp-themes/deprecated/bphome/404.php:10
|
| 9469 |
-
#: bp-themes/deprecated/bphome/404.php:21
|
| 9470 |
-
#: bp-themes/deprecated/bphome/activate.php:10
|
| 9471 |
-
#: bp-themes/deprecated/bphome/home.php:9
|
| 9472 |
-
#: bp-themes/deprecated/bphome/home.php:20
|
| 9473 |
-
#: bp-themes/deprecated/bphome/home.php:31
|
| 9474 |
-
#: bp-themes/deprecated/bphome/register.php:10
|
| 9475 |
-
#: bp-themes/deprecated/bphome/register.php:21
|
| 9476 |
-
#: bp-themes/deprecated/bphome/sidebar.php:6
|
| 9477 |
msgid "Add Widgets"
|
| 9478 |
msgstr ""
|
| 9479 |
|
| 9480 |
#: bp-themes/bp-sn-parent/index.php:21
|
| 9481 |
-
#: bp-themes/deprecated/bphome/index.php:12
|
| 9482 |
msgid "in"
|
| 9483 |
msgstr ""
|
| 9484 |
|
|
@@ -9487,7 +9168,6 @@ msgid "Tags: "
|
|
| 9487 |
msgstr ""
|
| 9488 |
|
| 9489 |
#: bp-themes/bp-sn-parent/index.php:45
|
| 9490 |
-
#: bp-themes/deprecated/bphome/index.php:33
|
| 9491 |
msgid "Sorry, but you are looking for something that isn't here."
|
| 9492 |
msgstr ""
|
| 9493 |
|
|
@@ -9496,83 +9176,65 @@ msgid "Links"
|
|
| 9496 |
msgstr ""
|
| 9497 |
|
| 9498 |
#: bp-themes/bp-sn-parent/messages/compose.php:8
|
| 9499 |
-
#: bp-themes/deprecated/bpmember/messages/compose.php:8
|
| 9500 |
msgid "Compose Message"
|
| 9501 |
msgstr ""
|
| 9502 |
|
| 9503 |
#: bp-themes/bp-sn-parent/messages/compose.php:16
|
| 9504 |
-
#: bp-themes/deprecated/bpmember/messages/compose.php:16
|
| 9505 |
msgid "Send To"
|
| 9506 |
msgstr ""
|
| 9507 |
|
| 9508 |
#: bp-themes/bp-sn-parent/messages/compose.php:25
|
| 9509 |
-
#: bp-themes/deprecated/bpmember/messages/compose.php:25
|
| 9510 |
msgid "This is a notice to all users."
|
| 9511 |
msgstr ""
|
| 9512 |
|
| 9513 |
#: bp-themes/bp-sn-parent/messages/compose.php:28
|
| 9514 |
-
#: bp-themes/deprecated/bpmember/messages/compose.php:28
|
| 9515 |
msgid "Subject"
|
| 9516 |
msgstr ""
|
| 9517 |
|
| 9518 |
#: bp-themes/bp-sn-parent/messages/compose.php:31
|
| 9519 |
-
#: bp-themes/deprecated/bpmember/messages/compose.php:31
|
| 9520 |
msgid "Message"
|
| 9521 |
msgstr ""
|
| 9522 |
|
| 9523 |
#: bp-themes/bp-sn-parent/messages/compose.php:39
|
| 9524 |
-
#: bp-themes/deprecated/bpmember/messages/compose.php:39
|
| 9525 |
msgid "Send"
|
| 9526 |
msgstr ""
|
| 9527 |
|
| 9528 |
#: bp-themes/bp-sn-parent/messages/index.php:41
|
| 9529 |
-
#: bp-themes/deprecated/bpmember/messages/index.php:30
|
| 9530 |
msgid "From:"
|
| 9531 |
msgstr ""
|
| 9532 |
|
| 9533 |
#: bp-themes/bp-sn-parent/messages/index.php:45
|
| 9534 |
#: bp-themes/bp-sn-parent/messages/sentbox.php:40
|
| 9535 |
-
#: bp-themes/deprecated/bpmember/messages/index.php:34
|
| 9536 |
-
#: bp-themes/deprecated/bpmember/messages/sentbox.php:29
|
| 9537 |
msgid "View Message"
|
| 9538 |
msgstr ""
|
| 9539 |
|
| 9540 |
#: bp-themes/bp-sn-parent/messages/index.php:52
|
| 9541 |
#: bp-themes/bp-sn-parent/messages/notices.php:46
|
| 9542 |
#: bp-themes/bp-sn-parent/messages/sentbox.php:47
|
| 9543 |
-
#: bp-themes/deprecated/bpmember/messages/index.php:38
|
| 9544 |
-
#: bp-themes/deprecated/bpmember/messages/notices.php:33
|
| 9545 |
-
#: bp-themes/deprecated/bpmember/messages/sentbox.php:33
|
| 9546 |
msgid "Delete Message"
|
| 9547 |
msgstr ""
|
| 9548 |
|
| 9549 |
#: bp-themes/bp-sn-parent/messages/index.php:65
|
| 9550 |
-
#: bp-themes/deprecated/bpmember/messages/index.php:48
|
| 9551 |
msgid "You have no messages in your inbox."
|
| 9552 |
msgstr ""
|
| 9553 |
|
| 9554 |
#: bp-themes/bp-sn-parent/messages/notices.php:17
|
| 9555 |
-
#: bp-themes/deprecated/bpmember/messages/notices.php:12
|
| 9556 |
msgid "Sent Notices"
|
| 9557 |
msgstr ""
|
| 9558 |
|
| 9559 |
#: bp-themes/bp-sn-parent/messages/notices.php:39
|
| 9560 |
-
#: bp-themes/deprecated/bpmember/messages/notices.php:29
|
| 9561 |
msgid "Sent:"
|
| 9562 |
msgstr ""
|
| 9563 |
|
| 9564 |
#: bp-themes/bp-sn-parent/messages/notices.php:58
|
| 9565 |
-
#: bp-themes/deprecated/bpmember/messages/notices.php:42
|
| 9566 |
msgid "You have not sent any notices."
|
| 9567 |
msgstr ""
|
| 9568 |
|
| 9569 |
#: bp-themes/bp-sn-parent/messages/sentbox.php:36
|
| 9570 |
-
#: bp-themes/deprecated/bpmember/messages/sentbox.php:25
|
| 9571 |
msgid "To:"
|
| 9572 |
msgstr ""
|
| 9573 |
|
| 9574 |
#: bp-themes/bp-sn-parent/messages/sentbox.php:60
|
| 9575 |
-
#: bp-themes/deprecated/bpmember/messages/sentbox.php:43
|
| 9576 |
msgid "You have no sent messages."
|
| 9577 |
msgstr ""
|
| 9578 |
|
|
@@ -9581,17 +9243,15 @@ msgstr ""
|
|
| 9581 |
msgid "Sent between %s and %s"
|
| 9582 |
msgstr ""
|
| 9583 |
|
| 9584 |
-
#: bp-themes/bp-sn-parent/page.php:17
|
| 9585 |
msgid "<p class=\"serif\">Read the rest of this page »</p>"
|
| 9586 |
msgstr ""
|
| 9587 |
|
| 9588 |
-
#: bp-themes/bp-sn-parent/page.php:20
|
| 9589 |
msgid "Edit this entry."
|
| 9590 |
msgstr ""
|
| 9591 |
|
| 9592 |
-
#: bp-themes/bp-sn-parent/profile/change-avatar.php:9
|
| 9593 |
-
#: bp-themes/deprecated/bpmember/profile/change-avatar.php:9
|
| 9594 |
-
#: bp-xprofile.php:214
|
| 9595 |
msgid "Change Avatar"
|
| 9596 |
msgstr ""
|
| 9597 |
|
|
@@ -9614,18 +9274,15 @@ msgid ""
|
|
| 9614 |
msgstr ""
|
| 9615 |
|
| 9616 |
#: bp-themes/bp-sn-parent/profile/edit.php:23
|
| 9617 |
-
#: bp-themes/deprecated/bpmember/profile/edit.php:13
|
| 9618 |
#, php-format
|
| 9619 |
msgid "Editing '%s'"
|
| 9620 |
msgstr ""
|
| 9621 |
|
| 9622 |
#: bp-themes/bp-sn-parent/profile/index.php:35
|
| 9623 |
-
#: bp-themes/deprecated/bpmember/profile/index.php:27
|
| 9624 |
msgid "My Latest Activity"
|
| 9625 |
msgstr ""
|
| 9626 |
|
| 9627 |
#: bp-themes/bp-sn-parent/profile/index.php:35
|
| 9628 |
-
#: bp-themes/deprecated/bpmember/profile/index.php:27
|
| 9629 |
#, php-format
|
| 9630 |
msgid "%s's Latest Activity"
|
| 9631 |
msgstr ""
|
|
@@ -9639,36 +9296,28 @@ msgstr ""
|
|
| 9639 |
msgid "%s hasn't done anything recently."
|
| 9640 |
msgstr ""
|
| 9641 |
|
| 9642 |
-
#: bp-themes/bp-sn-parent/profile/index.php:134
|
| 9643 |
-
#: bp-themes/deprecated/bpmember/profile/index.php:104 bp-wire.php:52
|
| 9644 |
msgid "My Wire"
|
| 9645 |
msgstr ""
|
| 9646 |
|
| 9647 |
#: bp-themes/bp-sn-parent/profile/index.php:134
|
| 9648 |
#: bp-themes/bp-sn-parent/wire/latest.php:22
|
| 9649 |
-
#: bp-themes/deprecated/bpmember/profile/index.php:104
|
| 9650 |
-
#: bp-themes/deprecated/bpmember/wire/latest.php:30
|
| 9651 |
#, php-format
|
| 9652 |
msgid "%s's Wire"
|
| 9653 |
msgstr ""
|
| 9654 |
|
| 9655 |
#: bp-themes/bp-sn-parent/profile/index.php:134
|
| 9656 |
#: bp-themes/bp-sn-parent/wire/latest.php:22
|
| 9657 |
-
#: bp-themes/deprecated/bpmember/profile/index.php:104
|
| 9658 |
-
#: bp-themes/deprecated/bpmember/wire/latest.php:30
|
| 9659 |
msgid "No one has posted to your wire yet."
|
| 9660 |
msgstr ""
|
| 9661 |
|
| 9662 |
#: bp-themes/bp-sn-parent/profile/index.php:134
|
| 9663 |
#: bp-themes/bp-sn-parent/wire/latest.php:22
|
| 9664 |
-
#: bp-themes/deprecated/bpmember/profile/index.php:104
|
| 9665 |
-
#: bp-themes/deprecated/bpmember/wire/latest.php:30
|
| 9666 |
#, php-format
|
| 9667 |
msgid "No one has posted to %s's wire yet."
|
| 9668 |
msgstr ""
|
| 9669 |
|
| 9670 |
#: bp-themes/bp-sn-parent/profile/profile-loop.php:55
|
| 9671 |
-
#: bp-themes/deprecated/bpmember/profile/profile-loop.php:40
|
| 9672 |
msgid "Sorry, this person does not have a public profile."
|
| 9673 |
msgstr ""
|
| 9674 |
|
|
@@ -9683,7 +9332,6 @@ msgid ""
|
|
| 9683 |
msgstr ""
|
| 9684 |
|
| 9685 |
#: bp-themes/bp-sn-parent/registration/activate.php:24
|
| 9686 |
-
#: bp-themes/deprecated/bphome/activate.php:18
|
| 9687 |
msgid "Activate your Account"
|
| 9688 |
msgstr ""
|
| 9689 |
|
|
@@ -9764,65 +9412,46 @@ msgid ""
|
|
| 9764 |
msgstr ""
|
| 9765 |
|
| 9766 |
#: bp-themes/bp-sn-parent/search.php:13
|
| 9767 |
-
#: bp-themes/deprecated/bphome/search.php:10
|
| 9768 |
msgid "Search Results"
|
| 9769 |
msgstr ""
|
| 9770 |
|
| 9771 |
#: bp-themes/bp-sn-parent/search.php:46
|
| 9772 |
-
#: bp-themes/deprecated/bphome/search.php:35
|
| 9773 |
msgid "No posts found. Try a different search?"
|
| 9774 |
msgstr ""
|
| 9775 |
|
| 9776 |
#: bp-themes/bp-sn-parent/sidebar.php:10
|
| 9777 |
-
#: bp-themes/deprecated/bphome/404.php:10
|
| 9778 |
-
#: bp-themes/deprecated/bphome/404.php:21
|
| 9779 |
-
#: bp-themes/deprecated/bphome/activate.php:10
|
| 9780 |
-
#: bp-themes/deprecated/bphome/home.php:9
|
| 9781 |
-
#: bp-themes/deprecated/bphome/home.php:20
|
| 9782 |
-
#: bp-themes/deprecated/bphome/home.php:31
|
| 9783 |
-
#: bp-themes/deprecated/bphome/register.php:10
|
| 9784 |
-
#: bp-themes/deprecated/bphome/register.php:21
|
| 9785 |
-
#: bp-themes/deprecated/bphome/sidebar.php:6
|
| 9786 |
msgid "Please log in and add widgets to this column."
|
| 9787 |
msgstr ""
|
| 9788 |
|
| 9789 |
#: bp-themes/bp-sn-parent/single.php:24
|
| 9790 |
-
#: bp-themes/deprecated/bphome/single.php:16
|
| 9791 |
msgid "Permanent link to"
|
| 9792 |
msgstr ""
|
| 9793 |
|
| 9794 |
#: bp-themes/bp-sn-parent/single.php:42
|
| 9795 |
-
#: bp-themes/deprecated/bphome/single.php:31
|
| 9796 |
msgid "Sorry, no posts matched your criteria."
|
| 9797 |
msgstr ""
|
| 9798 |
|
| 9799 |
#: bp-themes/bp-sn-parent/status/post-form.php:6
|
| 9800 |
-
#: bp-themes/deprecated/bpmember/status/post-form.php:2
|
| 9801 |
msgid "What are you up to?"
|
| 9802 |
msgstr ""
|
| 9803 |
|
| 9804 |
#: bp-themes/bp-sn-parent/status/post-form.php:12
|
| 9805 |
-
#: bp-themes/deprecated/bpmember/status/post-form.php:6
|
| 9806 |
msgid "Update"
|
| 9807 |
msgstr ""
|
| 9808 |
|
| 9809 |
#: bp-themes/bp-sn-parent/userbar.php:4
|
| 9810 |
-
#: bp-themes/deprecated/bpmember/userbar.php:2
|
| 9811 |
msgid "Me"
|
| 9812 |
msgstr ""
|
| 9813 |
|
| 9814 |
#: bp-themes/bp-sn-parent/userbar.php:24
|
| 9815 |
-
#: bp-themes/deprecated/bpmember/userbar.php:24
|
| 9816 |
msgid "You must log in to access your account."
|
| 9817 |
msgstr ""
|
| 9818 |
|
| 9819 |
#: bp-themes/bp-sn-parent/wire/latest.php:22
|
| 9820 |
-
#: bp-themes/deprecated/bpmember/wire/latest.php:30
|
| 9821 |
msgid "Your Wire"
|
| 9822 |
msgstr ""
|
| 9823 |
|
| 9824 |
#: bp-themes/bp-sn-parent/wire/post-form.php:24
|
| 9825 |
-
#: bp-themes/deprecated/bpmember/wire/post-form.php:15
|
| 9826 |
msgid "Notify members via email (will slow down posting)"
|
| 9827 |
msgstr ""
|
| 9828 |
|
|
@@ -9831,196 +9460,9 @@ msgid "Start writing a short message..."
|
|
| 9831 |
msgstr ""
|
| 9832 |
|
| 9833 |
#: bp-themes/bp-sn-parent/wire/post-form.php:39
|
| 9834 |
-
#: bp-themes/deprecated/bpmember/wire/post-form.php:20
|
| 9835 |
msgid "Post »"
|
| 9836 |
msgstr ""
|
| 9837 |
|
| 9838 |
-
#: bp-themes/deprecated/bphome/404.php:29
|
| 9839 |
-
msgid "Sorry, that page was not found"
|
| 9840 |
-
msgstr ""
|
| 9841 |
-
|
| 9842 |
-
#: bp-themes/deprecated/bphome/archive.php:11
|
| 9843 |
-
msgid "Archive for the"
|
| 9844 |
-
msgstr ""
|
| 9845 |
-
|
| 9846 |
-
#: bp-themes/deprecated/bphome/archive.php:14
|
| 9847 |
-
#: bp-themes/deprecated/bphome/archive.php:17
|
| 9848 |
-
#: bp-themes/deprecated/bphome/archive.php:20
|
| 9849 |
-
msgid "Archive for"
|
| 9850 |
-
msgstr ""
|
| 9851 |
-
|
| 9852 |
-
#: bp-themes/deprecated/bphome/archive.php:23
|
| 9853 |
-
msgid "Author Archive"
|
| 9854 |
-
msgstr ""
|
| 9855 |
-
|
| 9856 |
-
#: bp-themes/deprecated/bphome/archive.php:26
|
| 9857 |
-
msgid "Blog Archives"
|
| 9858 |
-
msgstr ""
|
| 9859 |
-
|
| 9860 |
-
#: bp-themes/deprecated/bphome/archives.php:13
|
| 9861 |
-
msgid "Archives by Month:"
|
| 9862 |
-
msgstr ""
|
| 9863 |
-
|
| 9864 |
-
#: bp-themes/deprecated/bphome/archives.php:18
|
| 9865 |
-
msgid "Archives by Subject:"
|
| 9866 |
-
msgstr ""
|
| 9867 |
-
|
| 9868 |
-
#: bp-themes/deprecated/bphome/comments-popup.php:9
|
| 9869 |
-
msgid "Comments on"
|
| 9870 |
-
msgstr ""
|
| 9871 |
-
|
| 9872 |
-
#: bp-themes/deprecated/bphome/comments-popup.php:22
|
| 9873 |
-
msgid "Comments"
|
| 9874 |
-
msgstr ""
|
| 9875 |
-
|
| 9876 |
-
#: bp-themes/deprecated/bphome/comments-popup.php:24
|
| 9877 |
-
msgid ""
|
| 9878 |
-
"<abbr title=\"Really Simple Syndication\">RSS</abbr> feed for comments on "
|
| 9879 |
-
"this post."
|
| 9880 |
-
msgstr ""
|
| 9881 |
-
|
| 9882 |
-
#: bp-themes/deprecated/bphome/comments-popup.php:27
|
| 9883 |
-
msgid ""
|
| 9884 |
-
"The <abbr title=\"Universal Resource Locator\">URL</abbr> to TrackBack this "
|
| 9885 |
-
"entry is:"
|
| 9886 |
-
msgstr ""
|
| 9887 |
-
|
| 9888 |
-
#: bp-themes/deprecated/bphome/comments-popup.php:45
|
| 9889 |
-
msgid "by"
|
| 9890 |
-
msgstr ""
|
| 9891 |
-
|
| 9892 |
-
#: bp-themes/deprecated/bphome/comments-popup.php:51
|
| 9893 |
-
msgid "No comments yet."
|
| 9894 |
-
msgstr ""
|
| 9895 |
-
|
| 9896 |
-
#: bp-themes/deprecated/bphome/comments-popup.php:55
|
| 9897 |
-
msgid "Leave a comment"
|
| 9898 |
-
msgstr ""
|
| 9899 |
-
|
| 9900 |
-
#: bp-themes/deprecated/bphome/comments-popup.php:56
|
| 9901 |
-
msgid ""
|
| 9902 |
-
"Line and paragraph breaks automatic, e-mail address never displayed, "
|
| 9903 |
-
"<acronym title=\"Hypertext Markup Language\">HTML</acronym> allowed:"
|
| 9904 |
-
msgstr ""
|
| 9905 |
-
|
| 9906 |
-
#: bp-themes/deprecated/bphome/comments-popup.php:60
|
| 9907 |
-
#: bp-themes/deprecated/bphome/comments.php:85
|
| 9908 |
-
msgid "Logged in as"
|
| 9909 |
-
msgstr ""
|
| 9910 |
-
|
| 9911 |
-
#: bp-themes/deprecated/bphome/comments-popup.php:60
|
| 9912 |
-
#: bp-themes/deprecated/bphome/comments.php:85
|
| 9913 |
-
msgid "Logout"
|
| 9914 |
-
msgstr ""
|
| 9915 |
-
|
| 9916 |
-
#: bp-themes/deprecated/bphome/comments-popup.php:76
|
| 9917 |
-
msgid "URL"
|
| 9918 |
-
msgstr ""
|
| 9919 |
-
|
| 9920 |
-
#: bp-themes/deprecated/bphome/comments-popup.php:81
|
| 9921 |
-
msgid "Your Comment"
|
| 9922 |
-
msgstr ""
|
| 9923 |
-
|
| 9924 |
-
#: bp-themes/deprecated/bphome/comments-popup.php:87
|
| 9925 |
-
msgid "Say It!"
|
| 9926 |
-
msgstr ""
|
| 9927 |
-
|
| 9928 |
-
#: bp-themes/deprecated/bphome/comments-popup.php:92
|
| 9929 |
-
msgid "Sorry, the comment form is closed at this time."
|
| 9930 |
-
msgstr ""
|
| 9931 |
-
|
| 9932 |
-
#: bp-themes/deprecated/bphome/comments-popup.php:97
|
| 9933 |
-
msgid "Close this window."
|
| 9934 |
-
msgstr ""
|
| 9935 |
-
|
| 9936 |
-
#: bp-themes/deprecated/bphome/comments-popup.php:105
|
| 9937 |
-
msgid ""
|
| 9938 |
-
"Powered by <a href=\"http://wordpress.org/\" title=\"Powered by WordPress, "
|
| 9939 |
-
"state-of-the-art semantic personal publishing platform\"><strong>Wordpress</"
|
| 9940 |
-
"strong>"
|
| 9941 |
-
msgstr ""
|
| 9942 |
-
|
| 9943 |
-
#: bp-themes/deprecated/bphome/comments.php:9
|
| 9944 |
-
msgid "This post is password protected. Enter the password to view comments."
|
| 9945 |
-
msgstr ""
|
| 9946 |
-
|
| 9947 |
-
#: bp-themes/deprecated/bphome/comments.php:24
|
| 9948 |
-
msgid "No Responses"
|
| 9949 |
-
msgstr ""
|
| 9950 |
-
|
| 9951 |
-
#: bp-themes/deprecated/bphome/comments.php:24
|
| 9952 |
-
msgid "One Response"
|
| 9953 |
-
msgstr ""
|
| 9954 |
-
|
| 9955 |
-
#: bp-themes/deprecated/bphome/comments.php:24
|
| 9956 |
-
msgid "% Responses"
|
| 9957 |
-
msgstr ""
|
| 9958 |
-
|
| 9959 |
-
#: bp-themes/deprecated/bphome/comments.php:24
|
| 9960 |
-
msgid "to"
|
| 9961 |
-
msgstr ""
|
| 9962 |
-
|
| 9963 |
-
#: bp-themes/deprecated/bphome/comments.php:38
|
| 9964 |
-
msgid "Your comment is awaiting moderation."
|
| 9965 |
-
msgstr ""
|
| 9966 |
-
|
| 9967 |
-
#: bp-themes/deprecated/bphome/comments.php:78
|
| 9968 |
-
#, php-format
|
| 9969 |
-
msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
|
| 9970 |
-
msgstr ""
|
| 9971 |
-
|
| 9972 |
-
#: bp-themes/deprecated/bphome/comments.php:93
|
| 9973 |
-
msgid "Mail (will not be published)"
|
| 9974 |
-
msgstr ""
|
| 9975 |
-
|
| 9976 |
-
#: bp-themes/deprecated/bphome/comments.php:102
|
| 9977 |
-
msgid "Submit Comment"
|
| 9978 |
-
msgstr ""
|
| 9979 |
-
|
| 9980 |
-
#: bp-themes/deprecated/bphome/links.php:11
|
| 9981 |
-
msgid "Links:"
|
| 9982 |
-
msgstr ""
|
| 9983 |
-
|
| 9984 |
-
#: bp-themes/deprecated/bphome/register.php:29
|
| 9985 |
-
msgid "Register for an Account"
|
| 9986 |
-
msgstr ""
|
| 9987 |
-
|
| 9988 |
-
#: bp-themes/deprecated/bpmember/404.php:4
|
| 9989 |
-
msgid "Permission Denied"
|
| 9990 |
-
msgstr ""
|
| 9991 |
-
|
| 9992 |
-
#: bp-themes/deprecated/bpmember/404.php:8
|
| 9993 |
-
msgid "Not Found / No Access"
|
| 9994 |
-
msgstr ""
|
| 9995 |
-
|
| 9996 |
-
#: bp-themes/deprecated/bpmember/404.php:9
|
| 9997 |
-
msgid ""
|
| 9998 |
-
"The page you are looking for either does not exist, or you do not have the "
|
| 9999 |
-
"permissions to access it."
|
| 10000 |
-
msgstr ""
|
| 10001 |
-
|
| 10002 |
-
#: bp-themes/deprecated/bpmember/directories/blogs/index.php:65
|
| 10003 |
-
msgid "Featured Blogs"
|
| 10004 |
-
msgstr ""
|
| 10005 |
-
|
| 10006 |
-
#: bp-themes/deprecated/bpmember/directories/groups/index.php:65
|
| 10007 |
-
msgid "Featured Groups"
|
| 10008 |
-
msgstr ""
|
| 10009 |
-
|
| 10010 |
-
#: bp-themes/deprecated/bpmember/directories/members/index.php:64
|
| 10011 |
-
msgid "Featured Members"
|
| 10012 |
-
msgstr ""
|
| 10013 |
-
|
| 10014 |
-
#: bp-themes/deprecated/bpmember/groups/create.php:103
|
| 10015 |
-
msgid ""
|
| 10016 |
-
"To skip the avatar upload process or move onto the next step, hit the \"Next "
|
| 10017 |
-
"Step\" button."
|
| 10018 |
-
msgstr ""
|
| 10019 |
-
|
| 10020 |
-
#: bp-themes/deprecated/bpmember/groups/single/forum/topic.php:40
|
| 10021 |
-
msgid "Back to Forum"
|
| 10022 |
-
msgstr ""
|
| 10023 |
-
|
| 10024 |
#: bp-wire.php:48
|
| 10025 |
msgid "All Posts"
|
| 10026 |
msgstr ""
|
|
@@ -10379,31 +9821,31 @@ msgstr ""
|
|
| 10379 |
msgid "Profile updated %s ago"
|
| 10380 |
msgstr ""
|
| 10381 |
|
| 10382 |
-
#: bp-xprofile/deprecated/bp-xprofile-deprecated.php:
|
| 10383 |
msgid "Your Profile Details"
|
| 10384 |
msgstr ""
|
| 10385 |
|
| 10386 |
-
#: bp-xprofile/deprecated/bp-xprofile-deprecated.php:
|
| 10387 |
msgid ""
|
| 10388 |
"Please fill in the following fields to start up your member profile. Fields\n"
|
| 10389 |
"\t\t\tmarked with a star are required."
|
| 10390 |
msgstr ""
|
| 10391 |
|
| 10392 |
-
#: bp-xprofile/deprecated/bp-xprofile-deprecated.php:
|
| 10393 |
msgid "Profile Picture (Avatar)"
|
| 10394 |
msgstr ""
|
| 10395 |
|
| 10396 |
-
#: bp-xprofile/deprecated/bp-xprofile-deprecated.php:
|
| 10397 |
msgid ""
|
| 10398 |
"You can upload an image from your computer to use as an avatar. This avatar "
|
| 10399 |
"will appear on your profile page."
|
| 10400 |
msgstr ""
|
| 10401 |
|
| 10402 |
-
#: bp-xprofile/deprecated/bp-xprofile-deprecated.php:
|
| 10403 |
msgid "Select a file:"
|
| 10404 |
msgstr ""
|
| 10405 |
|
| 10406 |
-
#: bp-xprofile/deprecated/bp-xprofile-deprecated.php:
|
| 10407 |
#, php-format
|
| 10408 |
msgid "%s cannot be left blank"
|
| 10409 |
msgstr ""
|
| 8 |
msgstr ""
|
| 9 |
"Project-Id-Version: PACKAGE VERSION\n"
|
| 10 |
"Report-Msgid-Bugs-To: wp-polyglots@lists.automattic.com\n"
|
| 11 |
+
"POT-Creation-Date: 2009-10-03 14:11+0000\n"
|
| 12 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
| 13 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
| 14 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
| 29 |
#: bp-friends/bp-friends-templatetags.php:414
|
| 30 |
#: bp-themes/bp-sn-parent/friends/index.php:10
|
| 31 |
#: bp-themes/bp-sn-parent/profile/index.php:108
|
|
|
|
|
|
|
| 32 |
msgid "My Friends"
|
| 33 |
msgstr ""
|
| 34 |
|
| 35 |
#: bp-activity.php:99 bp-themes/bp-sn-parent/activity/just-me.php:22
|
|
|
|
| 36 |
msgid "My Activity"
|
| 37 |
msgstr ""
|
| 38 |
|
| 62 |
#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:888
|
| 63 |
#: bp-forums/bbpress/bb-admin/topics.php:128
|
| 64 |
#: bp-forums/bbpress/bb-includes/functions.bb-template.php:1983
|
| 65 |
+
#: bp-forums/bp-forums-templatetags.php:547
|
| 66 |
+
#: bp-forums/bp-forums-templatetags.php:899 bp-groups/bp-groups-admin.php:47
|
| 67 |
#: bp-themes/bp-sn-parent/messages/index.php:52
|
| 68 |
#: bp-themes/bp-sn-parent/messages/notices.php:46
|
| 69 |
#: bp-themes/bp-sn-parent/messages/sentbox.php:47
|
|
|
|
|
|
|
|
|
|
| 70 |
#: bp-wire/bp-wire-templatetags.php:360 bp-wire/bp-wire-templatetags.php:362
|
| 71 |
#: bp-xprofile/bp-xprofile-admin.php:69 bp-xprofile/bp-xprofile-admin.php:96
|
| 72 |
msgid "Delete"
|
| 103 |
msgstr ""
|
| 104 |
|
| 105 |
#: bp-activity/bp-activity-widgets.php:22 bp-themes/bp-sn-parent/header.php:18
|
|
|
|
|
|
|
| 106 |
msgid "Site Wide Activity RSS Feed"
|
| 107 |
msgstr ""
|
| 108 |
|
| 140 |
msgid "Site Wide Activity Feed"
|
| 141 |
msgstr ""
|
| 142 |
|
| 143 |
+
#: bp-blogs.php:147 bp-core/bp-core-templatetags.php:606
|
| 144 |
+
#: bp-core/bp-core-templatetags.php:667 bp-themes/bp-sn-parent/header.php:99
|
|
|
|
|
|
|
| 145 |
msgid "Blogs"
|
| 146 |
msgstr ""
|
| 147 |
|
| 148 |
#: bp-blogs.php:152 bp-blogs.php:161 bp-core/bp-core-adminbar.php:140
|
| 149 |
#: bp-themes/bp-sn-parent/blogs/my-blogs.php:11
|
|
|
|
| 150 |
msgid "My Blogs"
|
| 151 |
msgstr ""
|
| 152 |
|
| 153 |
#: bp-blogs.php:153 bp-forums/bbpress/bb-templates/kakumei/search.php:12
|
| 154 |
#: bp-themes/bp-sn-parent/blogs/recent-posts.php:11
|
|
|
|
| 155 |
msgid "Recent Posts"
|
| 156 |
msgstr ""
|
| 157 |
|
| 158 |
#: bp-blogs.php:154 bp-themes/bp-sn-parent/blogs/recent-comments.php:11
|
|
|
|
| 159 |
msgid "Recent Comments"
|
| 160 |
msgstr ""
|
| 161 |
|
| 162 |
#: bp-blogs.php:155 bp-blogs/bp-blogs-templatetags.php:173
|
| 163 |
#: bp-themes/bp-sn-parent/blogs/create.php:4
|
| 164 |
#: bp-themes/bp-sn-parent/blogs/create.php:11
|
|
|
|
| 165 |
msgid "Create a Blog"
|
| 166 |
msgstr ""
|
| 167 |
|
| 267 |
#: bp-core/bp-core-admin.php:68 bp-core/bp-core-admin.php:75
|
| 268 |
#: bp-core/bp-core-admin.php:83 bp-core/bp-core-admin.php:91
|
| 269 |
#: bp-core/bp-core-admin.php:99 bp-core/deprecated/bp-core-deprecated.php:119
|
| 270 |
+
#: bp-friends.php:159 bp-groups.php:1321 bp-messages.php:249
|
| 271 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:39
|
| 272 |
+
#: bp-themes/bp-sn-parent/registration/register.php:192 bp-xprofile.php:447
|
| 273 |
+
#: bp-xprofile/bp-xprofile-admin.php:94
|
|
|
|
| 274 |
msgid "Yes"
|
| 275 |
msgstr ""
|
| 276 |
|
| 278 |
#: bp-core/bp-core-admin.php:69 bp-core/bp-core-admin.php:76
|
| 279 |
#: bp-core/bp-core-admin.php:84 bp-core/bp-core-admin.php:92
|
| 280 |
#: bp-core/bp-core-admin.php:100 bp-core/deprecated/bp-core-deprecated.php:123
|
| 281 |
+
#: bp-friends.php:160 bp-groups.php:1322 bp-messages.php:250
|
| 282 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:40
|
| 283 |
+
#: bp-themes/bp-sn-parent/registration/register.php:193 bp-xprofile.php:448
|
|
|
|
|
|
|
| 284 |
msgid "No"
|
| 285 |
msgstr ""
|
| 286 |
|
| 298 |
|
| 299 |
#: bp-blogs/bp-blogs-templatetags.php:187
|
| 300 |
#: bp-themes/bp-sn-parent/blogs/my-blogs.php:11
|
|
|
|
| 301 |
#, php-format
|
| 302 |
msgid "%s's Blogs"
|
| 303 |
msgstr ""
|
| 349 |
msgstr ""
|
| 350 |
|
| 351 |
#: bp-blogs/bp-blogs-templatetags.php:1293 bp-core/bp-core-classes.php:64
|
| 352 |
+
#: bp-core/bp-core-templatetags.php:287 bp-core/bp-core-widgets.php:298
|
| 353 |
#: bp-groups/bp-groups-templatetags.php:2051
|
| 354 |
#: bp-groups/deprecated/bp-groups-deprecated.php:194
|
| 355 |
#, php-format
|
| 362 |
msgstr ""
|
| 363 |
|
| 364 |
#: bp-blogs/bp-blogs-templatetags.php:1324
|
| 365 |
+
#: bp-core/bp-core-templatetags.php:1158
|
| 366 |
+
#: bp-forums/bp-forums-templatetags.php:938
|
| 367 |
#: bp-groups/bp-groups-templatetags.php:2193
|
| 368 |
msgid "Search anything..."
|
| 369 |
msgstr ""
|
| 370 |
|
| 371 |
#: bp-blogs/bp-blogs-templatetags.php:1325
|
| 372 |
+
#: bp-core/bp-core-templatetags.php:620 bp-core/bp-core-templatetags.php:1159
|
| 373 |
#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:624
|
| 374 |
#: bp-forums/bbpress/bb-includes/class.bb-query.php:1017
|
| 375 |
#: bp-forums/bbpress/bb-templates/kakumei/rss2.php:18
|
| 376 |
#: bp-forums/bbpress/bb-templates/kakumei/search.php:3
|
| 377 |
+
#: bp-forums/bp-forums-templatetags.php:939
|
| 378 |
#: bp-groups/bp-groups-templatetags.php:2194
|
| 379 |
#: bp-themes/bp-sn-parent/directories/forums/index.php:63
|
| 380 |
+
#: bp-themes/bp-sn-parent/header.php:40
|
| 381 |
#: bp-themes/bp-sn-parent/searchform.php:5
|
|
|
|
| 382 |
msgid "Search"
|
| 383 |
msgstr ""
|
| 384 |
|
| 427 |
msgid "Public"
|
| 428 |
msgstr ""
|
| 429 |
|
| 430 |
+
#: bp-core.php:360 bp-core/bp-core-templatetags.php:320 bp-xprofile.php:218
|
| 431 |
msgid "My Profile"
|
| 432 |
msgstr ""
|
| 433 |
|
| 458 |
msgid "%s's"
|
| 459 |
msgstr ""
|
| 460 |
|
| 461 |
+
#: bp-core.php:1163 bp-core/bp-core-templatetags.php:403
|
|
|
|
| 462 |
msgid "at"
|
| 463 |
msgstr ""
|
| 464 |
|
| 530 |
msgid "not recently active"
|
| 531 |
msgstr ""
|
| 532 |
|
| 533 |
+
#: bp-core.php:1753
|
| 534 |
+
msgid ""
|
| 535 |
+
"IMPORTANT: <a href=\"http://codex.buddypress.org/getting-started/upgrading-"
|
| 536 |
+
"from-10x/\">Read this before attempting to update BuddyPress</a>"
|
| 537 |
+
msgstr ""
|
| 538 |
+
|
| 539 |
+
#: bp-core/bp-core-activation.php:23
|
| 540 |
msgid "There was an error activating your account, please try again."
|
| 541 |
msgstr ""
|
| 542 |
|
| 543 |
+
#: bp-core/bp-core-activation.php:61
|
| 544 |
#, php-format
|
| 545 |
msgid "%s became a registered member"
|
| 546 |
msgstr ""
|
| 547 |
|
| 548 |
+
#: bp-core/bp-core-activation.php:69
|
| 549 |
#: bp-core/deprecated/bp-core-deprecated.php:509
|
| 550 |
#: bp-core/deprecated/bp-core-deprecated.php:527
|
| 551 |
msgid "Your account is now active!"
|
| 552 |
msgstr ""
|
| 553 |
|
| 554 |
+
#: bp-core/bp-core-activation.php:108
|
| 555 |
msgid "After you activate, you will receive *another email* with your login."
|
| 556 |
msgstr ""
|
| 557 |
|
| 595 |
msgid "Disable global forum directory?"
|
| 596 |
msgstr ""
|
| 597 |
|
| 598 |
+
#: bp-core/bp-core-admin.php:108
|
| 599 |
msgid "Select theme to use for BuddyPress generated pages"
|
| 600 |
msgstr ""
|
| 601 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 602 |
#: bp-core/bp-core-admin.php:127
|
| 603 |
+
msgid ""
|
| 604 |
+
"<strong>Your currently active theme is not BuddyPress enabled.</strong><p "
|
| 605 |
+
"style=\"margin: 2px 0\">Visit <a href=\"http://buddypress.org/extend/themes/"
|
| 606 |
+
"\">http://buddypress.org/extend/themes/</a> to browse themes that include "
|
| 607 |
+
"support for BuddyPress features.</p>"
|
| 608 |
msgstr ""
|
| 609 |
|
| 610 |
#: bp-core/bp-core-admin.php:133
|
| 708 |
msgid "Allows the creation of friend connections between users."
|
| 709 |
msgstr ""
|
| 710 |
|
| 711 |
+
#: bp-core/bp-core-admin.php:244 bp-core/bp-core-templatetags.php:598
|
| 712 |
+
#: bp-core/bp-core-templatetags.php:663 bp-groups.php:180 bp-groups.php:214
|
| 713 |
+
#: bp-groups.php:1320 bp-groups.php:1517 bp-groups.php:1530 bp-groups.php:1544
|
| 714 |
+
#: bp-groups.php:1557 bp-groups/bp-groups-admin.php:33
|
| 715 |
+
#: bp-groups/bp-groups-widgets.php:13 bp-themes/bp-sn-parent/header.php:91
|
|
|
|
|
|
|
| 716 |
msgid "Groups"
|
| 717 |
msgstr ""
|
| 718 |
|
| 755 |
msgstr ""
|
| 756 |
|
| 757 |
#: bp-core/bp-core-adminbar.php:40
|
| 758 |
+
#: bp-core/deprecated/bp-core-deprecated.php:942
|
| 759 |
+
#: bp-themes/bp-sn-parent/header.php:52 bp-themes/bp-sn-parent/userbar.php:37
|
|
|
|
| 760 |
msgid "Log In"
|
| 761 |
msgstr ""
|
| 762 |
|
| 763 |
#: bp-core/bp-core-adminbar.php:44
|
| 764 |
+
#: bp-core/deprecated/bp-core-deprecated.php:943
|
| 765 |
+
#: bp-themes/bp-sn-parent/header.php:55
|
| 766 |
#: bp-themes/bp-sn-parent/registration/register.php:13
|
| 767 |
msgid "Sign Up"
|
| 768 |
msgstr ""
|
| 773 |
|
| 774 |
#: bp-core/bp-core-adminbar.php:91 bp-core/bp-core-adminbar.php:93
|
| 775 |
#: bp-core/bp-core-templatetags.php:50 bp-core/bp-core-templatetags.php:52
|
| 776 |
+
#: bp-core/bp-core-templatetags.php:631 bp-core/bp-core-templatetags.php:633
|
| 777 |
+
#: bp-core/deprecated/bp-core-deprecated.php:958
|
| 778 |
+
#: bp-core/deprecated/bp-core-deprecated.php:960
|
| 779 |
#: bp-forums/bbpress/bb-includes/functions.bb-template.php:2729
|
| 780 |
msgid "Log Out"
|
| 781 |
msgstr ""
|
| 866 |
msgstr ""
|
| 867 |
|
| 868 |
#: bp-core/bp-core-avatars.php:214
|
| 869 |
+
#: bp-xprofile/deprecated/bp-xprofile-deprecated.php:609
|
| 870 |
msgid "There is no error, the file uploaded with success"
|
| 871 |
msgstr ""
|
| 872 |
|
| 873 |
#: bp-core/bp-core-avatars.php:215 bp-core/bp-core-avatars.php:216
|
| 874 |
+
#: bp-xprofile/deprecated/bp-xprofile-deprecated.php:610
|
| 875 |
+
#: bp-xprofile/deprecated/bp-xprofile-deprecated.php:611
|
| 876 |
msgid "Your image was bigger than the maximum allowed file size of: "
|
| 877 |
msgstr ""
|
| 878 |
|
| 879 |
#: bp-core/bp-core-avatars.php:217
|
| 880 |
+
#: bp-xprofile/deprecated/bp-xprofile-deprecated.php:612
|
| 881 |
msgid "The uploaded file was only partially uploaded"
|
| 882 |
msgstr ""
|
| 883 |
|
| 886 |
msgstr ""
|
| 887 |
|
| 888 |
#: bp-core/bp-core-avatars.php:219
|
| 889 |
+
#: bp-xprofile/deprecated/bp-xprofile-deprecated.php:613
|
| 890 |
msgid "Missing a temporary folder"
|
| 891 |
msgstr ""
|
| 892 |
|
| 896 |
msgstr ""
|
| 897 |
|
| 898 |
#: bp-core/bp-core-avatars.php:228
|
| 899 |
+
#: bp-xprofile/deprecated/bp-xprofile-deprecated.php:627
|
| 900 |
#, php-format
|
| 901 |
msgid "The file you uploaded is too big. Please upload a file under %s"
|
| 902 |
msgstr ""
|
| 903 |
|
| 904 |
#: bp-core/bp-core-avatars.php:233
|
| 905 |
+
#: bp-xprofile/deprecated/bp-xprofile-deprecated.php:632
|
| 906 |
msgid "Please upload only JPG, GIF or PNG photos."
|
| 907 |
msgstr ""
|
| 908 |
|
| 909 |
#: bp-core/bp-core-avatars.php:244
|
| 910 |
+
#: bp-xprofile/deprecated/bp-xprofile-deprecated.php:638
|
| 911 |
#, php-format
|
| 912 |
msgid "Upload Failed! Error was: %s"
|
| 913 |
msgstr ""
|
| 914 |
|
| 915 |
+
#: bp-core/bp-core-catchuri.php:249
|
| 916 |
msgid ""
|
| 917 |
"This user has been marked as a spammer. Only site admins can view this "
|
| 918 |
"profile."
|
| 945 |
msgid "%s's group list"
|
| 946 |
msgstr ""
|
| 947 |
|
| 948 |
+
#: bp-core/bp-core-cssjs.php:65 bp-groups/bp-groups-admin.php:47
|
| 949 |
msgid "Are you sure?"
|
| 950 |
msgstr ""
|
| 951 |
|
| 1002 |
#: bp-themes/bp-sn-parent/groups/single/forum/edit.php:55
|
| 1003 |
#: bp-themes/bp-sn-parent/groups/single/forum/edit.php:73
|
| 1004 |
#: bp-themes/bp-sn-parent/profile/edit.php:114
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1005 |
#: bp-xprofile/deprecated/bp-xprofile-deprecated.php:141
|
| 1006 |
msgid "Save Changes"
|
| 1007 |
msgstr ""
|
| 1057 |
msgid "Your new avatar was uploaded successfully"
|
| 1058 |
msgstr ""
|
| 1059 |
|
| 1060 |
+
#: bp-core/bp-core-templatetags.php:146
|
| 1061 |
msgid "Options"
|
| 1062 |
msgstr ""
|
| 1063 |
|
| 1064 |
+
#: bp-core/bp-core-templatetags.php:326
|
| 1065 |
#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:646
|
| 1066 |
#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:650
|
| 1067 |
#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:660
|
| 1068 |
#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:664
|
| 1069 |
#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:926
|
| 1070 |
#: bp-groups/bp-groups-admin.php:72 bp-themes/bp-sn-parent/comments.php:92
|
|
|
|
|
|
|
| 1071 |
msgid "Name"
|
| 1072 |
msgstr ""
|
| 1073 |
|
| 1074 |
+
#: bp-core/bp-core-templatetags.php:336
|
| 1075 |
msgid "About Me"
|
| 1076 |
msgstr ""
|
| 1077 |
|
| 1078 |
+
#: bp-core/bp-core-templatetags.php:346
|
| 1079 |
#: bp-forums/bbpress/bb-includes/functions.bb-core.php:901
|
| 1080 |
#: bp-themes/bp-sn-parent/comments.php:102
|
|
|
|
| 1081 |
msgid "Website"
|
| 1082 |
msgstr ""
|
| 1083 |
|
| 1084 |
+
#: bp-core/bp-core-templatetags.php:356
|
| 1085 |
msgid "Jabber"
|
| 1086 |
msgstr ""
|
| 1087 |
|
| 1088 |
+
#: bp-core/bp-core-templatetags.php:366
|
| 1089 |
msgid "AOL Messenger"
|
| 1090 |
msgstr ""
|
| 1091 |
|
| 1092 |
+
#: bp-core/bp-core-templatetags.php:376
|
| 1093 |
msgid "Yahoo Messenger"
|
| 1094 |
msgstr ""
|
| 1095 |
|
| 1096 |
+
#: bp-core/bp-core-templatetags.php:480 bp-core/bp-core-templatetags.php:658
|
| 1097 |
+
#: bp-groups.php:268 bp-themes/bp-sn-parent/header.php:83
|
| 1098 |
+
#: bp-themes/bp-sn-parent/header.php:86
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1099 |
msgid "Home"
|
| 1100 |
msgstr ""
|
| 1101 |
|
| 1102 |
+
#: bp-core/bp-core-templatetags.php:483
|
| 1103 |
msgid "Blog — "
|
| 1104 |
msgstr ""
|
| 1105 |
|
| 1106 |
+
#: bp-core/bp-core-templatetags.php:485
|
| 1107 |
msgid "Blog — Categories — "
|
| 1108 |
msgstr ""
|
| 1109 |
|
| 1110 |
+
#: bp-core/bp-core-templatetags.php:487
|
| 1111 |
msgid "Blog — Tags — "
|
| 1112 |
msgstr ""
|
| 1113 |
|
| 1114 |
+
#: bp-core/bp-core-templatetags.php:489 bp-core/bp-core-templatetags.php:659
|
| 1115 |
#: bp-themes/bp-sn-parent/archive.php:9
|
| 1116 |
#: bp-themes/bp-sn-parent/attachment.php:9
|
| 1117 |
+
#: bp-themes/bp-sn-parent/header.php:87 bp-themes/bp-sn-parent/index.php:9
|
| 1118 |
#: bp-themes/bp-sn-parent/search.php:9 bp-themes/bp-sn-parent/single.php:9
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1119 |
msgid "Blog"
|
| 1120 |
msgstr ""
|
| 1121 |
|
| 1122 |
+
#: bp-core/bp-core-templatetags.php:497 bp-core/bp-core-templatetags.php:499
|
| 1123 |
#, php-format
|
| 1124 |
msgid "%s Directory"
|
| 1125 |
msgstr ""
|
| 1126 |
|
| 1127 |
+
#: bp-core/bp-core-templatetags.php:594 bp-core/bp-core-templatetags.php:660
|
| 1128 |
#: bp-core/bp-core-widgets.php:73 bp-groups.php:284
|
| 1129 |
#: bp-groups/bp-groups-admin.php:81
|
| 1130 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:197
|
| 1131 |
+
#: bp-themes/bp-sn-parent/header.php:88
|
|
|
|
|
|
|
|
|
|
| 1132 |
msgid "Members"
|
| 1133 |
msgstr ""
|
| 1134 |
|
| 1135 |
+
#: bp-core/bp-core-templatetags.php:602
|
| 1136 |
#: bp-forums/bbpress/bb-admin/forums.php:42
|
| 1137 |
#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:65
|
| 1138 |
#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:66
|
| 1139 |
#: bp-forums/bbpress/bb-templates/kakumei/front-page.php:48
|
| 1140 |
+
#: bp-forums/bp-forums-admin.php:159 bp-themes/bp-sn-parent/header.php:95
|
| 1141 |
msgid "Forums"
|
| 1142 |
msgstr ""
|
| 1143 |
|
| 1144 |
+
#: bp-core/bp-core-templatetags.php:813
|
| 1145 |
msgid "Your Avatar"
|
| 1146 |
msgstr ""
|
| 1147 |
|
| 1148 |
+
#: bp-core/bp-core-templatetags.php:1034
|
| 1149 |
#, php-format
|
| 1150 |
msgid "Viewing member %d to %d (of %d members)"
|
| 1151 |
msgstr ""
|
| 1152 |
|
| 1153 |
+
#: bp-core/bp-core-templatetags.php:1126
|
| 1154 |
#, php-format
|
| 1155 |
msgid "%d friend"
|
| 1156 |
msgstr ""
|
| 1157 |
|
| 1158 |
+
#: bp-core/bp-core-templatetags.php:1128
|
| 1159 |
#, php-format
|
| 1160 |
msgid "%d friends"
|
| 1161 |
msgstr ""
|
| 1172 |
#: bp-core/bp-core-widgets.php:51
|
| 1173 |
#: bp-themes/bp-sn-parent/groups/single/forum/edit.php:47
|
| 1174 |
#: bp-themes/bp-sn-parent/groups/single/forum/index.php:78
|
|
|
|
|
|
|
| 1175 |
msgid "Title:"
|
| 1176 |
msgstr ""
|
| 1177 |
|
| 1531 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:141
|
| 1532 |
#: bp-themes/bp-sn-parent/profile/change-avatar.php:40
|
| 1533 |
#: bp-themes/bp-sn-parent/registration/register.php:236
|
|
|
|
| 1534 |
msgid "Upload Image"
|
| 1535 |
msgstr ""
|
| 1536 |
|
| 1537 |
#: bp-core/deprecated/bp-core-deprecated.php:691
|
| 1538 |
#: bp-themes/bp-sn-parent/profile/change-avatar.php:50
|
| 1539 |
#: bp-themes/bp-sn-parent/registration/register.php:248
|
| 1540 |
+
#: bp-xprofile/deprecated/bp-xprofile-deprecated.php:769
|
| 1541 |
msgid "Crop Your New Avatar"
|
| 1542 |
msgstr ""
|
| 1543 |
|
| 1547 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:153
|
| 1548 |
#: bp-themes/bp-sn-parent/profile/change-avatar.php:52
|
| 1549 |
#: bp-themes/bp-sn-parent/registration/register.php:250
|
| 1550 |
+
#: bp-xprofile/deprecated/bp-xprofile-deprecated.php:771
|
| 1551 |
msgid "Avatar to crop"
|
| 1552 |
msgstr ""
|
| 1553 |
|
| 1556 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:156
|
| 1557 |
#: bp-themes/bp-sn-parent/profile/change-avatar.php:55
|
| 1558 |
#: bp-themes/bp-sn-parent/registration/register.php:253
|
|
|
|
| 1559 |
msgid "Avatar preview"
|
| 1560 |
msgstr ""
|
| 1561 |
|
| 1565 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:159
|
| 1566 |
#: bp-themes/bp-sn-parent/profile/change-avatar.php:58
|
| 1567 |
#: bp-themes/bp-sn-parent/registration/register.php:256
|
| 1568 |
+
#: bp-xprofile/deprecated/bp-xprofile-deprecated.php:773
|
| 1569 |
msgid "Crop Image"
|
| 1570 |
msgstr ""
|
| 1571 |
|
| 1572 |
+
#: bp-core/deprecated/bp-core-deprecated.php:937
|
| 1573 |
#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:645
|
| 1574 |
#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:649
|
| 1575 |
#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:659
|
| 1578 |
#: bp-forums/bbpress/bb-templates/kakumei/login.php:17
|
| 1579 |
#: bp-forums/bbpress/bb-templates/kakumei/login.php:59
|
| 1580 |
#: bp-forums/bbpress/bb-templates/kakumei/register.php:25
|
| 1581 |
+
#: bp-themes/bp-sn-parent/header.php:47
|
| 1582 |
#: bp-themes/bp-sn-parent/registration/register.php:27
|
| 1583 |
#: bp-themes/bp-sn-parent/userbar.php:28
|
|
|
|
| 1584 |
msgid "Username"
|
| 1585 |
msgstr ""
|
| 1586 |
|
| 1587 |
+
#: bp-core/deprecated/bp-core-deprecated.php:940
|
| 1588 |
+
#: bp-themes/bp-sn-parent/header.php:50 bp-themes/bp-sn-parent/userbar.php:35
|
|
|
|
| 1589 |
msgid "Remember Me"
|
| 1590 |
msgstr ""
|
| 1591 |
|
| 1745 |
#: bp-themes/bp-sn-parent/groups/single/forum/edit.php:32
|
| 1746 |
#: bp-themes/bp-sn-parent/groups/single/forum/index.php:25
|
| 1747 |
#: bp-themes/bp-sn-parent/groups/single/forum/topic.php:28
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1748 |
msgid "Forum"
|
| 1749 |
msgstr ""
|
| 1750 |
|
| 2769 |
|
| 2770 |
#: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:2100
|
| 2771 |
#: bp-themes/bp-sn-parent/directories/groups/index.php:106
|
|
|
|
| 2772 |
msgid "Description:"
|
| 2773 |
msgstr ""
|
| 2774 |
|
| 2972 |
#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:886
|
| 2973 |
#: bp-forums/bbpress/bb-includes/functions.bb-core.php:846
|
| 2974 |
#: bp-forums/bbpress/bb-includes/functions.bb-template.php:1926
|
| 2975 |
+
#: bp-forums/bp-forums-templatetags.php:534
|
| 2976 |
+
#: bp-forums/bp-forums-templatetags.php:898 bp-groups/bp-groups-admin.php:108
|
| 2977 |
#: bp-themes/bp-sn-parent/archive.php:35 bp-themes/bp-sn-parent/search.php:29
|
|
|
|
|
|
|
|
|
|
| 2978 |
#: bp-xprofile/bp-xprofile-admin.php:68 bp-xprofile/bp-xprofile-admin.php:95
|
| 2979 |
msgid "Edit"
|
| 2980 |
msgstr ""
|
| 3055 |
|
| 3056 |
#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:647
|
| 3057 |
#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:661
|
|
|
|
| 3058 |
msgid "E-mail"
|
| 3059 |
msgstr ""
|
| 3060 |
|
| 3080 |
#: bp-forums/bbpress/bb-admin/plugins.php:186
|
| 3081 |
#: bp-forums/bbpress/bb-admin/plugins.php:192 bp-groups/bp-groups-admin.php:75
|
| 3082 |
#: bp-themes/bp-sn-parent/groups/single/home.php:46
|
|
|
|
| 3083 |
msgid "Description"
|
| 3084 |
msgstr ""
|
| 3085 |
|
| 3092 |
msgstr ""
|
| 3093 |
|
| 3094 |
#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:956
|
|
|
|
| 3095 |
msgid "Category"
|
| 3096 |
msgstr ""
|
| 3097 |
|
| 3975 |
#: bp-forums/bbpress/bb-admin/posts.php:57
|
| 3976 |
#: bp-forums/bbpress/bb-admin/topics.php:51
|
| 3977 |
#: bp-themes/bp-sn-parent/index.php:21
|
|
|
|
| 3978 |
#, php-format
|
| 3979 |
msgid "by %s"
|
| 3980 |
msgstr ""
|
| 4196 |
msgstr ""
|
| 4197 |
|
| 4198 |
#: bp-forums/bbpress/bb-admin/topics.php:127
|
| 4199 |
+
#: bp-forums/bp-forums-templatetags.php:545
|
| 4200 |
#: bp-messages/bp-messages-templatetags.php:428
|
| 4201 |
msgid "Close"
|
| 4202 |
msgstr ""
|
| 5872 |
#: bp-forums/bbpress/bb-templates/kakumei/login.php:27
|
| 5873 |
#: bp-forums/bbpress/bb-templates/kakumei/profile-edit.php:20
|
| 5874 |
#: bp-themes/bp-sn-parent/userbar.php:32
|
|
|
|
| 5875 |
msgid "Password"
|
| 5876 |
msgstr ""
|
| 5877 |
|
| 6147 |
msgstr ""
|
| 6148 |
|
| 6149 |
#: bp-forums/bbpress/bb-templates/kakumei/topic-tags.php:2
|
|
|
|
| 6150 |
msgid "Tags:"
|
| 6151 |
msgstr ""
|
| 6152 |
|
| 6777 |
msgid "%d posts"
|
| 6778 |
msgstr ""
|
| 6779 |
|
| 6780 |
+
#: bp-forums/bp-forums-templatetags.php:538
|
| 6781 |
msgid "Sticky"
|
| 6782 |
msgstr ""
|
| 6783 |
|
| 6784 |
+
#: bp-forums/bp-forums-templatetags.php:540
|
| 6785 |
msgid "Un-stick"
|
| 6786 |
msgstr ""
|
| 6787 |
|
| 6788 |
+
#: bp-forums/bp-forums-templatetags.php:543
|
| 6789 |
msgid "Open"
|
| 6790 |
msgstr ""
|
| 6791 |
|
| 6792 |
+
#: bp-forums/bp-forums-templatetags.php:649
|
| 6793 |
#, php-format
|
| 6794 |
msgid "Viewing topic %d to %d (%d total topics)"
|
| 6795 |
msgstr ""
|
| 6796 |
|
| 6797 |
+
#: bp-forums/bp-forums-templatetags.php:929
|
| 6798 |
#: bp-wire/bp-wire-templatetags.php:242
|
| 6799 |
#, php-format
|
| 6800 |
msgid "Viewing post %d to %d (%d total posts)"
|
| 6985 |
#: bp-friends/bp-friends-templatetags.php:414
|
| 6986 |
#: bp-themes/bp-sn-parent/friends/index.php:10
|
| 6987 |
#: bp-themes/bp-sn-parent/profile/index.php:108
|
|
|
|
|
|
|
| 6988 |
#, php-format
|
| 6989 |
msgid "%s's Friends"
|
| 6990 |
msgstr ""
|
| 6997 |
#: bp-themes/bp-sn-parent/profile/index.php:79
|
| 6998 |
#: bp-themes/bp-sn-parent/profile/index.php:108
|
| 6999 |
#: bp-themes/bp-sn-parent/wire/post-list.php:4
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7000 |
msgid "See All"
|
| 7001 |
msgstr ""
|
| 7002 |
|
| 7024 |
|
| 7025 |
#: bp-groups.php:144 bp-groups/bp-groups-templatetags.php:1057
|
| 7026 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:53
|
|
|
|
| 7027 |
msgid "Group Settings"
|
| 7028 |
msgstr ""
|
| 7029 |
|
| 7033 |
#: bp-groups/bp-groups-templatetags.php:2014
|
| 7034 |
#: bp-groups/bp-groups-templatetags.php:2023
|
| 7035 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:121
|
|
|
|
| 7036 |
msgid "Group Avatar"
|
| 7037 |
msgstr ""
|
| 7038 |
|
| 7039 |
+
#: bp-groups.php:146 bp-groups.php:1570 bp-groups.php:1572
|
| 7040 |
#: bp-themes/bp-sn-parent/groups/invites.php:8
|
|
|
|
| 7041 |
msgid "Group Invites"
|
| 7042 |
msgstr ""
|
| 7043 |
|
| 7045 |
#: bp-groups/deprecated/bp-groups-deprecated.php:234
|
| 7046 |
#: bp-themes/bp-sn-parent/groups/index.php:11
|
| 7047 |
#: bp-themes/bp-sn-parent/profile/index.php:79
|
|
|
|
|
|
|
| 7048 |
msgid "My Groups"
|
| 7049 |
msgstr ""
|
| 7050 |
|
| 7051 |
#: bp-groups.php:220 bp-themes/bp-sn-parent/groups/create.php:10
|
|
|
|
| 7052 |
msgid "Create a Group"
|
| 7053 |
msgstr ""
|
| 7054 |
|
| 7060 |
#: bp-groups/deprecated/bp-groups-deprecated.php:835
|
| 7061 |
#: bp-themes/bp-sn-parent/_inc/ajax.php:259
|
| 7062 |
#: bp-themes/bp-sn-parent/groups/single/request-membership.php:28
|
|
|
|
| 7063 |
msgid "Request Membership"
|
| 7064 |
msgstr ""
|
| 7065 |
|
| 7070 |
|
| 7071 |
#: bp-groups.php:288 bp-themes/bp-sn-parent/groups/single/send-invite.php:19
|
| 7072 |
#: bp-themes/bp-sn-parent/groups/single/send-invite.php:81
|
|
|
|
|
|
|
| 7073 |
msgid "Send Invites"
|
| 7074 |
msgstr ""
|
| 7075 |
|
| 7087 |
#: bp-groups.php:326 bp-groups/bp-groups-templatetags.php:1067
|
| 7088 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:311
|
| 7089 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:323
|
|
|
|
|
|
|
| 7090 |
msgid "Delete Group"
|
| 7091 |
msgstr ""
|
| 7092 |
|
| 7098 |
msgid "Group invite accepted"
|
| 7099 |
msgstr ""
|
| 7100 |
|
| 7101 |
+
#: bp-groups.php:374 bp-groups.php:1837 bp-groups.php:2500
|
| 7102 |
#, php-format
|
| 7103 |
msgid "%s joined the group %s"
|
| 7104 |
msgstr ""
|
| 7136 |
msgid "The group avatar was uploaded successfully!"
|
| 7137 |
msgstr ""
|
| 7138 |
|
| 7139 |
+
#: bp-groups.php:620
|
| 7140 |
msgid "There was an error when replying to that topic"
|
| 7141 |
msgstr ""
|
| 7142 |
|
| 7143 |
+
#: bp-groups.php:622
|
| 7144 |
msgid "Your reply was posted successfully"
|
| 7145 |
msgstr ""
|
| 7146 |
|
| 7147 |
+
#: bp-groups.php:636
|
| 7148 |
msgid "There was an error when making that topic a sticky"
|
| 7149 |
msgstr ""
|
| 7150 |
|
| 7151 |
+
#: bp-groups.php:638
|
| 7152 |
msgid "The topic was made sticky successfully"
|
| 7153 |
msgstr ""
|
| 7154 |
|
| 7155 |
+
#: bp-groups.php:650
|
| 7156 |
msgid "There was an error when unsticking that topic"
|
| 7157 |
msgstr ""
|
| 7158 |
|
| 7159 |
+
#: bp-groups.php:652
|
| 7160 |
msgid "The topic was unstuck successfully"
|
| 7161 |
msgstr ""
|
| 7162 |
|
| 7163 |
+
#: bp-groups.php:664
|
| 7164 |
msgid "There was an error when closing that topic"
|
| 7165 |
msgstr ""
|
| 7166 |
|
| 7167 |
+
#: bp-groups.php:666
|
| 7168 |
msgid "The topic was closed successfully"
|
| 7169 |
msgstr ""
|
| 7170 |
|
| 7171 |
+
#: bp-groups.php:678
|
| 7172 |
msgid "There was an error when opening that topic"
|
| 7173 |
msgstr ""
|
| 7174 |
|
| 7175 |
+
#: bp-groups.php:680
|
| 7176 |
msgid "The topic was opened successfully"
|
| 7177 |
msgstr ""
|
| 7178 |
|
| 7179 |
+
#: bp-groups.php:699
|
| 7180 |
msgid "There was an error deleting the topic"
|
| 7181 |
msgstr ""
|
| 7182 |
|
| 7183 |
+
#: bp-groups.php:701
|
| 7184 |
msgid "The topic was deleted successfully"
|
| 7185 |
msgstr ""
|
| 7186 |
|
| 7187 |
+
#: bp-groups.php:721
|
| 7188 |
msgid "There was an error when editing that topic"
|
| 7189 |
msgstr ""
|
| 7190 |
|
| 7191 |
+
#: bp-groups.php:723
|
| 7192 |
msgid "The topic was edited successfully"
|
| 7193 |
msgstr ""
|
| 7194 |
|
| 7195 |
+
#: bp-groups.php:745
|
| 7196 |
msgid "There was an error deleting that post"
|
| 7197 |
msgstr ""
|
| 7198 |
|
| 7199 |
+
#: bp-groups.php:747
|
| 7200 |
msgid "The post was deleted successfully"
|
| 7201 |
msgstr ""
|
| 7202 |
|
| 7203 |
+
#: bp-groups.php:767
|
| 7204 |
msgid "There was an error when editing that post"
|
| 7205 |
msgstr ""
|
| 7206 |
|
| 7207 |
+
#: bp-groups.php:769
|
| 7208 |
msgid "The post was edited successfully"
|
| 7209 |
msgstr ""
|
| 7210 |
|
| 7211 |
+
#: bp-groups.php:798
|
| 7212 |
msgid "There was an error when creating the topic"
|
| 7213 |
msgstr ""
|
| 7214 |
|
| 7215 |
+
#: bp-groups.php:800
|
| 7216 |
msgid "The topic was created successfully"
|
| 7217 |
msgstr ""
|
| 7218 |
|
| 7219 |
+
#: bp-groups.php:827
|
| 7220 |
msgid "Wire message could not be posted."
|
| 7221 |
msgstr ""
|
| 7222 |
|
| 7223 |
+
#: bp-groups.php:829 bp-xprofile.php:536
|
| 7224 |
msgid "Wire message successfully posted."
|
| 7225 |
msgstr ""
|
| 7226 |
|
| 7227 |
+
#: bp-groups.php:844
|
| 7228 |
msgid "There was an error deleting the wire message."
|
| 7229 |
msgstr ""
|
| 7230 |
|
| 7231 |
+
#: bp-groups.php:846 bp-xprofile.php:603
|
| 7232 |
msgid "Wire message successfully deleted."
|
| 7233 |
msgstr ""
|
| 7234 |
|
| 7235 |
+
#: bp-groups.php:892
|
| 7236 |
msgid "Group invites sent."
|
| 7237 |
msgstr ""
|
| 7238 |
|
| 7239 |
+
#: bp-groups.php:915
|
| 7240 |
msgid "As the only group administrator, you cannot leave this group."
|
| 7241 |
msgstr ""
|
| 7242 |
|
| 7243 |
+
#: bp-groups.php:921
|
| 7244 |
msgid "There was an error leaving the group. Please try again."
|
| 7245 |
msgstr ""
|
| 7246 |
|
| 7247 |
+
#: bp-groups.php:924
|
| 7248 |
msgid "You left the group successfully."
|
| 7249 |
msgstr ""
|
| 7250 |
|
| 7251 |
+
#: bp-groups.php:959
|
| 7252 |
msgid ""
|
| 7253 |
"There was an error sending your group membership request, please try again."
|
| 7254 |
msgstr ""
|
| 7255 |
|
| 7256 |
+
#: bp-groups.php:961
|
| 7257 |
msgid ""
|
| 7258 |
"Your membership request was sent to the group administrator successfully. "
|
| 7259 |
"You will be notified when the group administrator responds to your request."
|
| 7260 |
msgstr ""
|
| 7261 |
|
| 7262 |
+
#: bp-groups.php:1001
|
| 7263 |
msgid "There was an error updating group details, please try again."
|
| 7264 |
msgstr ""
|
| 7265 |
|
| 7266 |
+
#: bp-groups.php:1003
|
| 7267 |
msgid "Group details were successfully updated."
|
| 7268 |
msgstr ""
|
| 7269 |
|
| 7270 |
+
#: bp-groups.php:1045
|
| 7271 |
msgid "There was an error updating group settings, please try again."
|
| 7272 |
msgstr ""
|
| 7273 |
|
| 7274 |
+
#: bp-groups.php:1047
|
| 7275 |
msgid "Group settings were successfully updated."
|
| 7276 |
msgstr ""
|
| 7277 |
|
| 7278 |
+
#: bp-groups.php:1080 bp-xprofile.php:501
|
| 7279 |
msgid "Your avatar was deleted successfully!"
|
| 7280 |
msgstr ""
|
| 7281 |
|
| 7282 |
+
#: bp-groups.php:1082 bp-xprofile.php:503
|
| 7283 |
msgid "There was a problem deleting that avatar, please try again."
|
| 7284 |
msgstr ""
|
| 7285 |
|
| 7286 |
+
#: bp-groups.php:1110
|
| 7287 |
msgid "There was a problem cropping the avatar, please try uploading it again"
|
| 7288 |
msgstr ""
|
| 7289 |
|
| 7290 |
+
#: bp-groups.php:1112
|
| 7291 |
msgid "The new group avatar was uploaded successfully!"
|
| 7292 |
msgstr ""
|
| 7293 |
|
| 7294 |
+
#: bp-groups.php:1144
|
| 7295 |
msgid "There was an error when promoting that user, please try again"
|
| 7296 |
msgstr ""
|
| 7297 |
|
| 7298 |
+
#: bp-groups.php:1146
|
| 7299 |
msgid "User promoted successfully"
|
| 7300 |
msgstr ""
|
| 7301 |
|
| 7302 |
+
#: bp-groups.php:1163
|
| 7303 |
msgid "There was an error when demoting that user, please try again"
|
| 7304 |
msgstr ""
|
| 7305 |
|
| 7306 |
+
#: bp-groups.php:1165
|
| 7307 |
msgid "User demoted successfully"
|
| 7308 |
msgstr ""
|
| 7309 |
|
| 7310 |
+
#: bp-groups.php:1182
|
| 7311 |
msgid "There was an error when banning that user, please try again"
|
| 7312 |
msgstr ""
|
| 7313 |
|
| 7314 |
+
#: bp-groups.php:1184
|
| 7315 |
msgid "User banned successfully"
|
| 7316 |
msgstr ""
|
| 7317 |
|
| 7318 |
+
#: bp-groups.php:1201
|
| 7319 |
msgid "There was an error when unbanning that user, please try again"
|
| 7320 |
msgstr ""
|
| 7321 |
|
| 7322 |
+
#: bp-groups.php:1203
|
| 7323 |
msgid "User ban removed successfully"
|
| 7324 |
msgstr ""
|
| 7325 |
|
| 7326 |
+
#: bp-groups.php:1244
|
| 7327 |
msgid "There was an error accepting the membership request, please try again."
|
| 7328 |
msgstr ""
|
| 7329 |
|
| 7330 |
+
#: bp-groups.php:1246
|
| 7331 |
msgid "Group membership request accepted"
|
| 7332 |
msgstr ""
|
| 7333 |
|
| 7334 |
+
#: bp-groups.php:1256
|
| 7335 |
msgid "There was an error rejecting the membership request, please try again."
|
| 7336 |
msgstr ""
|
| 7337 |
|
| 7338 |
+
#: bp-groups.php:1258
|
| 7339 |
msgid "Group membership request rejected"
|
| 7340 |
msgstr ""
|
| 7341 |
|
| 7342 |
+
#: bp-groups.php:1293
|
| 7343 |
msgid "There was an error deleting the group, please try again."
|
| 7344 |
msgstr ""
|
| 7345 |
|
| 7346 |
+
#: bp-groups.php:1295
|
| 7347 |
msgid "The group was deleted successfully"
|
| 7348 |
msgstr ""
|
| 7349 |
|
| 7350 |
+
#: bp-groups.php:1326
|
| 7351 |
msgid "A member invites you to join a group"
|
| 7352 |
msgstr ""
|
| 7353 |
|
| 7354 |
+
#: bp-groups.php:1332
|
| 7355 |
msgid "Group information is updated"
|
| 7356 |
msgstr ""
|
| 7357 |
|
| 7358 |
+
#: bp-groups.php:1339
|
| 7359 |
msgid "A member posts on the wire of a group you belong to"
|
| 7360 |
msgstr ""
|
| 7361 |
|
| 7362 |
+
#: bp-groups.php:1346
|
| 7363 |
msgid "You are promoted to a group administrator or moderator"
|
| 7364 |
msgstr ""
|
| 7365 |
|
| 7366 |
+
#: bp-groups.php:1352
|
| 7367 |
msgid "A member requests to join a private group for which you are an admin"
|
| 7368 |
msgstr ""
|
| 7369 |
|
| 7370 |
+
#: bp-groups.php:1381
|
| 7371 |
msgid "There was an error joining the group."
|
| 7372 |
msgstr ""
|
| 7373 |
|
| 7374 |
+
#: bp-groups.php:1383
|
| 7375 |
msgid "You joined the group!"
|
| 7376 |
msgstr ""
|
| 7377 |
|
| 7378 |
+
#: bp-groups.php:1441
|
| 7379 |
msgid "Created a group"
|
| 7380 |
msgstr ""
|
| 7381 |
|
| 7382 |
+
#: bp-groups.php:1442
|
| 7383 |
msgid "Joined a group"
|
| 7384 |
msgstr ""
|
| 7385 |
|
| 7386 |
+
#: bp-groups.php:1443
|
| 7387 |
msgid "New group wire post"
|
| 7388 |
msgstr ""
|
| 7389 |
|
| 7390 |
+
#: bp-groups.php:1444
|
| 7391 |
msgid "New group forum topic"
|
| 7392 |
msgstr ""
|
| 7393 |
|
| 7394 |
+
#: bp-groups.php:1445
|
| 7395 |
msgid "New group forum post"
|
| 7396 |
msgstr ""
|
| 7397 |
|
| 7398 |
+
#: bp-groups.php:1503
|
| 7399 |
msgid "Group Membership Requests"
|
| 7400 |
msgstr ""
|
| 7401 |
|
| 7402 |
+
#: bp-groups.php:1503
|
| 7403 |
#, php-format
|
| 7404 |
msgid "%d new membership requests for the group \"%s\""
|
| 7405 |
msgstr ""
|
| 7406 |
|
| 7407 |
+
#: bp-groups.php:1506
|
| 7408 |
#, php-format
|
| 7409 |
msgid "%s requests membership for the group \"%s\""
|
| 7410 |
msgstr ""
|
| 7411 |
|
| 7412 |
+
#: bp-groups.php:1517
|
| 7413 |
#, php-format
|
| 7414 |
msgid "%d accepted group membership requests"
|
| 7415 |
msgstr ""
|
| 7416 |
|
| 7417 |
+
#: bp-groups.php:1519
|
| 7418 |
#, php-format
|
| 7419 |
msgid "Membership for group \"%s\" accepted"
|
| 7420 |
msgstr ""
|
| 7421 |
|
| 7422 |
+
#: bp-groups.php:1530
|
| 7423 |
#, php-format
|
| 7424 |
msgid "%d rejected group membership requests"
|
| 7425 |
msgstr ""
|
| 7426 |
|
| 7427 |
+
#: bp-groups.php:1532
|
| 7428 |
#, php-format
|
| 7429 |
msgid "Membership for group \"%s\" rejected"
|
| 7430 |
msgstr ""
|
| 7431 |
|
| 7432 |
+
#: bp-groups.php:1544
|
| 7433 |
#, php-format
|
| 7434 |
msgid "You were promoted to an admin in %d groups"
|
| 7435 |
msgstr ""
|
| 7436 |
|
| 7437 |
+
#: bp-groups.php:1546
|
| 7438 |
#, php-format
|
| 7439 |
msgid "You were promoted to an admin in the group %s"
|
| 7440 |
msgstr ""
|
| 7441 |
|
| 7442 |
+
#: bp-groups.php:1557
|
| 7443 |
#, php-format
|
| 7444 |
msgid "You were promoted to a mod in %d groups"
|
| 7445 |
msgstr ""
|
| 7446 |
|
| 7447 |
+
#: bp-groups.php:1559
|
| 7448 |
#, php-format
|
| 7449 |
msgid "You were promoted to a mod in the group %s"
|
| 7450 |
msgstr ""
|
| 7451 |
|
| 7452 |
+
#: bp-groups.php:1570
|
| 7453 |
#, php-format
|
| 7454 |
msgid "You have %d new group invitations"
|
| 7455 |
msgstr ""
|
| 7456 |
|
| 7457 |
+
#: bp-groups.php:1572
|
| 7458 |
#, php-format
|
| 7459 |
msgid "You have an invitation to the group: %s"
|
| 7460 |
msgstr ""
|
| 7461 |
|
| 7462 |
+
#: bp-groups.php:1663 bp-groups/bp-groups-classes.php:616
|
| 7463 |
msgid "Group Admin"
|
| 7464 |
msgstr ""
|
| 7465 |
|
| 7466 |
+
#: bp-groups.php:2052
|
| 7467 |
#, php-format
|
| 7468 |
msgid "%s wrote on the wire of the group %s:"
|
| 7469 |
msgstr ""
|
| 7470 |
|
| 7471 |
+
#: bp-groups.php:2115 bp-groups.php:2206
|
| 7472 |
#, php-format
|
| 7473 |
msgid "%s posted on the forum topic %s in the group %s:"
|
| 7474 |
msgstr ""
|
| 7475 |
|
| 7476 |
+
#: bp-groups.php:2144 bp-groups.php:2172
|
| 7477 |
#, php-format
|
| 7478 |
msgid "%s started the forum topic %s in the group %s:"
|
| 7479 |
msgstr ""
|
| 7509 |
|
| 7510 |
#: bp-groups/bp-groups-admin.php:118
|
| 7511 |
#: bp-themes/bp-sn-parent/directories/groups/index.php:125
|
|
|
|
| 7512 |
msgid "No groups found."
|
| 7513 |
msgstr ""
|
| 7514 |
|
| 7744 |
|
| 7745 |
#: bp-groups/bp-groups-templatetags.php:1050
|
| 7746 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:22
|
|
|
|
| 7747 |
msgid "Edit Details"
|
| 7748 |
msgstr ""
|
| 7749 |
|
| 7750 |
#: bp-groups/bp-groups-templatetags.php:1059
|
| 7751 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:178
|
|
|
|
| 7752 |
msgid "Manage Members"
|
| 7753 |
msgstr ""
|
| 7754 |
|
| 7755 |
#: bp-groups/bp-groups-templatetags.php:1062
|
| 7756 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:258
|
|
|
|
| 7757 |
msgid "Membership Requests"
|
| 7758 |
msgstr ""
|
| 7759 |
|
| 7830 |
#: bp-groups/deprecated/bp-groups-deprecated.php:234
|
| 7831 |
#: bp-themes/bp-sn-parent/groups/index.php:11
|
| 7832 |
#: bp-themes/bp-sn-parent/profile/index.php:79
|
|
|
|
|
|
|
| 7833 |
#, php-format
|
| 7834 |
msgid "%s's Groups"
|
| 7835 |
msgstr ""
|
| 7836 |
|
| 7837 |
#: bp-groups/deprecated/bp-groups-deprecated.php:251
|
| 7838 |
#: bp-themes/bp-sn-parent/groups/group-loop.php:49
|
|
|
|
| 7839 |
msgid "You haven't joined any groups yet."
|
| 7840 |
msgstr ""
|
| 7841 |
|
| 7842 |
#: bp-groups/deprecated/bp-groups-deprecated.php:251
|
| 7843 |
#: bp-themes/bp-sn-parent/groups/group-loop.php:49
|
|
|
|
| 7844 |
#, php-format
|
| 7845 |
msgid "%s hasn't joined any groups yet."
|
| 7846 |
msgstr ""
|
| 7851 |
#: bp-themes/bp-sn-parent/groups/single/forum/index.php:47
|
| 7852 |
#: bp-themes/bp-sn-parent/groups/single/home.php:117
|
| 7853 |
#: bp-themes/bp-sn-parent/groups/single/home.php:118
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7854 |
msgid "Permalink"
|
| 7855 |
msgstr ""
|
| 7856 |
|
| 7865 |
|
| 7866 |
#: bp-groups/deprecated/bp-groups-deprecated.php:303
|
| 7867 |
#: bp-themes/bp-sn-parent/groups/single/home.php:131
|
|
|
|
| 7868 |
msgid "There are no active forum topics for this group"
|
| 7869 |
msgstr ""
|
| 7870 |
|
| 7871 |
#: bp-groups/deprecated/bp-groups-deprecated.php:320
|
| 7872 |
#: bp-themes/bp-sn-parent/groups/single/send-invite.php:29
|
|
|
|
|
|
|
| 7873 |
msgid "Select Friends"
|
| 7874 |
msgstr ""
|
| 7875 |
|
| 7876 |
#: bp-groups/deprecated/bp-groups-deprecated.php:329
|
| 7877 |
#: bp-themes/bp-sn-parent/groups/create.php:171
|
| 7878 |
#: bp-themes/bp-sn-parent/groups/single/send-invite.php:44
|
|
|
|
|
|
|
| 7879 |
msgid "Select people to invite from your friends list."
|
| 7880 |
msgstr ""
|
| 7881 |
|
| 7884 |
#: bp-themes/bp-sn-parent/_inc/ajax.php:92
|
| 7885 |
#: bp-themes/bp-sn-parent/groups/create.php:187
|
| 7886 |
#: bp-themes/bp-sn-parent/groups/single/send-invite.php:64
|
|
|
|
|
|
|
| 7887 |
msgid "Remove Invite"
|
| 7888 |
msgstr ""
|
| 7889 |
|
| 7894 |
#: bp-groups/deprecated/bp-groups-deprecated.php:443
|
| 7895 |
#: bp-themes/bp-sn-parent/groups/create.php:22
|
| 7896 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:26
|
|
|
|
|
|
|
| 7897 |
msgid "Group Name"
|
| 7898 |
msgstr ""
|
| 7899 |
|
| 7900 |
#: bp-groups/deprecated/bp-groups-deprecated.php:446
|
| 7901 |
#: bp-themes/bp-sn-parent/groups/create.php:25
|
| 7902 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:29
|
|
|
|
|
|
|
| 7903 |
msgid "Group Description"
|
| 7904 |
msgstr ""
|
| 7905 |
|
| 7906 |
#: bp-groups/deprecated/bp-groups-deprecated.php:449
|
| 7907 |
#: bp-themes/bp-sn-parent/groups/create.php:28
|
| 7908 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:32
|
|
|
|
|
|
|
| 7909 |
msgid "Recent News"
|
| 7910 |
msgstr ""
|
| 7911 |
|
| 7912 |
#: bp-groups/deprecated/bp-groups-deprecated.php:462
|
| 7913 |
#: bp-themes/bp-sn-parent/groups/create.php:44
|
| 7914 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:60
|
|
|
|
|
|
|
| 7915 |
msgid "Enable comment wire"
|
| 7916 |
msgstr ""
|
| 7917 |
|
| 7918 |
#: bp-groups/deprecated/bp-groups-deprecated.php:469
|
| 7919 |
#: bp-themes/bp-sn-parent/groups/create.php:51
|
| 7920 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:70
|
|
|
|
|
|
|
| 7921 |
msgid "Enable discussion forum"
|
| 7922 |
msgstr ""
|
| 7923 |
|
| 7924 |
#: bp-groups/deprecated/bp-groups-deprecated.php:475
|
| 7925 |
#: bp-themes/bp-sn-parent/groups/create.php:56
|
|
|
|
| 7926 |
#, php-format
|
| 7927 |
msgid ""
|
| 7928 |
"<strong>Attention Site Admin:</strong> Group forums require the <a href=\"%s"
|
| 7944 |
#: bp-groups/deprecated/bp-groups-deprecated.php:492
|
| 7945 |
#: bp-themes/bp-sn-parent/groups/create.php:62
|
| 7946 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:77
|
|
|
|
|
|
|
| 7947 |
msgid "Privacy Options"
|
| 7948 |
msgstr ""
|
| 7949 |
|
| 7950 |
#: bp-groups/deprecated/bp-groups-deprecated.php:496
|
| 7951 |
#: bp-themes/bp-sn-parent/groups/create.php:66
|
| 7952 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:82
|
|
|
|
|
|
|
| 7953 |
msgid "This is a public group"
|
| 7954 |
msgstr ""
|
| 7955 |
|
| 7956 |
#: bp-groups/deprecated/bp-groups-deprecated.php:498
|
| 7957 |
#: bp-themes/bp-sn-parent/groups/create.php:68
|
| 7958 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:84
|
|
|
|
|
|
|
| 7959 |
msgid "Any site member can join this group."
|
| 7960 |
msgstr ""
|
| 7961 |
|
| 7965 |
#: bp-themes/bp-sn-parent/groups/create.php:78
|
| 7966 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:85
|
| 7967 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:95
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7968 |
msgid ""
|
| 7969 |
"This group will be listed in the groups directory and in search results."
|
| 7970 |
msgstr ""
|
| 7972 |
#: bp-groups/deprecated/bp-groups-deprecated.php:500
|
| 7973 |
#: bp-themes/bp-sn-parent/groups/create.php:70
|
| 7974 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:86
|
|
|
|
|
|
|
| 7975 |
msgid "Group content and activity will be visible to any site member."
|
| 7976 |
msgstr ""
|
| 7977 |
|
| 7978 |
#: bp-groups/deprecated/bp-groups-deprecated.php:505
|
| 7979 |
#: bp-themes/bp-sn-parent/groups/create.php:75
|
| 7980 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:92
|
|
|
|
|
|
|
| 7981 |
msgid "This is a private group"
|
| 7982 |
msgstr ""
|
| 7983 |
|
| 7984 |
#: bp-groups/deprecated/bp-groups-deprecated.php:507
|
| 7985 |
#: bp-themes/bp-sn-parent/groups/create.php:77
|
| 7986 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:94
|
|
|
|
|
|
|
| 7987 |
msgid "Only users who request membership and are accepted can join the group."
|
| 7988 |
msgstr ""
|
| 7989 |
|
| 7993 |
#: bp-themes/bp-sn-parent/groups/create.php:88
|
| 7994 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:96
|
| 7995 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:106
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7996 |
msgid ""
|
| 7997 |
"Group content and activity will only be visible to members of the group."
|
| 7998 |
msgstr ""
|
| 8000 |
#: bp-groups/deprecated/bp-groups-deprecated.php:514
|
| 8001 |
#: bp-themes/bp-sn-parent/groups/create.php:84
|
| 8002 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:102
|
|
|
|
|
|
|
| 8003 |
msgid "This is a hidden group"
|
| 8004 |
msgstr ""
|
| 8005 |
|
| 8006 |
#: bp-groups/deprecated/bp-groups-deprecated.php:516
|
| 8007 |
#: bp-themes/bp-sn-parent/groups/create.php:86
|
| 8008 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:104
|
|
|
|
|
|
|
| 8009 |
msgid "Only users who are invited can join the group."
|
| 8010 |
msgstr ""
|
| 8011 |
|
| 8012 |
#: bp-groups/deprecated/bp-groups-deprecated.php:517
|
| 8013 |
#: bp-themes/bp-sn-parent/groups/create.php:87
|
| 8014 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:105
|
|
|
|
|
|
|
| 8015 |
msgid ""
|
| 8016 |
"This group will not be listed in the groups directory or search results."
|
| 8017 |
msgstr ""
|
| 8025 |
#: bp-groups/deprecated/bp-groups-deprecated.php:538
|
| 8026 |
#: bp-themes/bp-sn-parent/groups/create.php:109
|
| 8027 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:137
|
|
|
|
|
|
|
| 8028 |
msgid ""
|
| 8029 |
"Upload an image to use as an avatar for this group. The image will be shown "
|
| 8030 |
"on the main group page, and in search results."
|
| 8038 |
|
| 8039 |
#: bp-groups/deprecated/bp-groups-deprecated.php:592
|
| 8040 |
#: bp-themes/bp-sn-parent/groups/create.php:212
|
|
|
|
| 8041 |
msgid "Previous Step"
|
| 8042 |
msgstr ""
|
| 8043 |
|
| 8044 |
#: bp-groups/deprecated/bp-groups-deprecated.php:597
|
| 8045 |
#: bp-themes/bp-sn-parent/groups/create.php:217
|
|
|
|
| 8046 |
msgid "Next Step"
|
| 8047 |
msgstr ""
|
| 8048 |
|
| 8049 |
#: bp-groups/deprecated/bp-groups-deprecated.php:602
|
| 8050 |
#: bp-themes/bp-sn-parent/groups/create.php:222
|
|
|
|
| 8051 |
msgid "Create Group and Continue"
|
| 8052 |
msgstr ""
|
| 8053 |
|
| 8054 |
#: bp-groups/deprecated/bp-groups-deprecated.php:607
|
| 8055 |
#: bp-themes/bp-sn-parent/groups/create.php:227
|
|
|
|
| 8056 |
msgid "Finish"
|
| 8057 |
msgstr ""
|
| 8058 |
|
| 8062 |
#: bp-themes/bp-sn-parent/_inc/ajax.php:196
|
| 8063 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:244
|
| 8064 |
#: bp-themes/bp-sn-parent/groups/single/members.php:103
|
|
|
|
|
|
|
| 8065 |
msgid "This group has no members."
|
| 8066 |
msgstr ""
|
| 8067 |
|
| 8068 |
#: bp-groups/deprecated/bp-groups-deprecated.php:751
|
| 8069 |
#: bp-themes/bp-sn-parent/_inc/ajax.php:183
|
| 8070 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:225
|
|
|
|
| 8071 |
msgid "(banned)"
|
| 8072 |
msgstr ""
|
| 8073 |
|
| 8077 |
#: bp-themes/bp-sn-parent/_inc/ajax.php:187
|
| 8078 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:225
|
| 8079 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:231
|
|
|
|
|
|
|
| 8080 |
msgid "Kick and ban this member"
|
| 8081 |
msgstr ""
|
| 8082 |
|
| 8083 |
#: bp-groups/deprecated/bp-groups-deprecated.php:751
|
| 8084 |
#: bp-themes/bp-sn-parent/_inc/ajax.php:183
|
| 8085 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:225
|
|
|
|
| 8086 |
msgid "Remove Ban"
|
| 8087 |
msgstr ""
|
| 8088 |
|
| 8089 |
#: bp-groups/deprecated/bp-groups-deprecated.php:755
|
| 8090 |
#: bp-themes/bp-sn-parent/_inc/ajax.php:187
|
| 8091 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:231
|
|
|
|
| 8092 |
msgid "Kick & Ban"
|
| 8093 |
msgstr ""
|
| 8094 |
|
| 8095 |
#: bp-groups/deprecated/bp-groups-deprecated.php:755
|
| 8096 |
#: bp-themes/bp-sn-parent/_inc/ajax.php:187
|
|
|
|
| 8097 |
msgid "Promote this member"
|
| 8098 |
msgstr ""
|
| 8099 |
|
| 8100 |
#: bp-groups/deprecated/bp-groups-deprecated.php:755
|
| 8101 |
#: bp-themes/bp-sn-parent/_inc/ajax.php:187
|
|
|
|
| 8102 |
msgid "Promote to Moderator"
|
| 8103 |
msgstr ""
|
| 8104 |
|
| 8127 |
msgstr ""
|
| 8128 |
|
| 8129 |
#: bp-messages.php:123 bp-themes/bp-sn-parent/messages/index.php:12
|
|
|
|
| 8130 |
msgid "Inbox"
|
| 8131 |
msgstr ""
|
| 8132 |
|
| 8133 |
#: bp-messages.php:124 bp-themes/bp-sn-parent/messages/sentbox.php:10
|
|
|
|
| 8134 |
msgid "Sent Messages"
|
| 8135 |
msgstr ""
|
| 8136 |
|
| 8428 |
msgid "Page Not Found"
|
| 8429 |
msgstr ""
|
| 8430 |
|
| 8431 |
+
#: bp-themes/bp-sn-parent/404.php:13
|
| 8432 |
msgid "The page you were looking for was not found."
|
| 8433 |
msgstr ""
|
| 8434 |
|
| 8442 |
msgstr ""
|
| 8443 |
|
| 8444 |
#: bp-themes/bp-sn-parent/_inc/ajax.php:397
|
|
|
|
| 8445 |
#: bp-wire/deprecated/bp-wire-deprecated.php:60
|
| 8446 |
msgid "said:"
|
| 8447 |
msgstr ""
|
| 8451 |
msgstr ""
|
| 8452 |
|
| 8453 |
#: bp-themes/bp-sn-parent/activity/just-me.php:22
|
|
|
|
| 8454 |
#, php-format
|
| 8455 |
msgid "%s's Activity"
|
| 8456 |
msgstr ""
|
| 8458 |
#: bp-themes/bp-sn-parent/activity/just-me.php:22
|
| 8459 |
#: bp-themes/bp-sn-parent/activity/my-friends.php:22
|
| 8460 |
#: bp-themes/bp-sn-parent/profile/index.php:40
|
|
|
|
|
|
|
|
|
|
| 8461 |
msgid "RSS Feed"
|
| 8462 |
msgstr ""
|
| 8463 |
|
| 8464 |
#: bp-themes/bp-sn-parent/activity/just-me.php:61
|
|
|
|
|
|
|
| 8465 |
msgid "You haven't done anything yet."
|
| 8466 |
msgstr ""
|
| 8467 |
|
| 8468 |
#: bp-themes/bp-sn-parent/activity/just-me.php:61
|
|
|
|
|
|
|
| 8469 |
#, php-format
|
| 8470 |
msgid "%s hasn't done anything yet."
|
| 8471 |
msgstr ""
|
| 8472 |
|
| 8473 |
#: bp-themes/bp-sn-parent/activity/my-friends.php:22
|
|
|
|
| 8474 |
msgid "My Friends Activity"
|
| 8475 |
msgstr ""
|
| 8476 |
|
| 8477 |
#: bp-themes/bp-sn-parent/activity/my-friends.php:61
|
|
|
|
| 8478 |
msgid "Your friends haven't done anything yet."
|
| 8479 |
msgstr ""
|
| 8480 |
|
| 8486 |
#: bp-themes/bp-sn-parent/archive.php:17 bp-themes/bp-sn-parent/archive.php:45
|
| 8487 |
#: bp-themes/bp-sn-parent/index.php:37 bp-themes/bp-sn-parent/search.php:16
|
| 8488 |
#: bp-themes/bp-sn-parent/search.php:40 bp-themes/bp-sn-parent/single.php:15
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8489 |
msgid "« Previous Entries"
|
| 8490 |
msgstr ""
|
| 8491 |
|
| 8492 |
#: bp-themes/bp-sn-parent/archive.php:18 bp-themes/bp-sn-parent/archive.php:46
|
| 8493 |
#: bp-themes/bp-sn-parent/index.php:38 bp-themes/bp-sn-parent/search.php:17
|
| 8494 |
#: bp-themes/bp-sn-parent/search.php:41 bp-themes/bp-sn-parent/single.php:16
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8495 |
msgid "Next Entries »"
|
| 8496 |
msgstr ""
|
| 8497 |
|
| 8498 |
#: bp-themes/bp-sn-parent/archive.php:28 bp-themes/bp-sn-parent/index.php:19
|
| 8499 |
#: bp-themes/bp-sn-parent/search.php:26
|
|
|
|
|
|
|
|
|
|
| 8500 |
msgid "Permanent Link to"
|
| 8501 |
msgstr ""
|
| 8502 |
|
| 8503 |
#: bp-themes/bp-sn-parent/archive.php:35 bp-themes/bp-sn-parent/search.php:29
|
|
|
|
|
|
|
| 8504 |
msgid "Posted in"
|
| 8505 |
msgstr ""
|
| 8506 |
|
| 8507 |
#: bp-themes/bp-sn-parent/archive.php:35 bp-themes/bp-sn-parent/index.php:27
|
| 8508 |
#: bp-themes/bp-sn-parent/search.php:29
|
|
|
|
|
|
|
|
|
|
| 8509 |
msgid "No Comments »"
|
| 8510 |
msgstr ""
|
| 8511 |
|
| 8512 |
#: bp-themes/bp-sn-parent/archive.php:35 bp-themes/bp-sn-parent/index.php:27
|
| 8513 |
#: bp-themes/bp-sn-parent/search.php:29
|
|
|
|
|
|
|
|
|
|
| 8514 |
msgid "1 Comment »"
|
| 8515 |
msgstr ""
|
| 8516 |
|
| 8517 |
#: bp-themes/bp-sn-parent/archive.php:35 bp-themes/bp-sn-parent/index.php:27
|
| 8518 |
#: bp-themes/bp-sn-parent/search.php:29
|
|
|
|
|
|
|
|
|
|
| 8519 |
msgid "% Comments »"
|
| 8520 |
msgstr ""
|
| 8521 |
|
| 8522 |
#: bp-themes/bp-sn-parent/archive.php:52 bp-themes/bp-sn-parent/index.php:44
|
|
|
|
|
|
|
| 8523 |
msgid "Not Found"
|
| 8524 |
msgstr ""
|
| 8525 |
|
| 8526 |
#: bp-themes/bp-sn-parent/attachment.php:25
|
| 8527 |
#: bp-themes/bp-sn-parent/single.php:28
|
|
|
|
|
|
|
| 8528 |
msgid "<p class=\"serif\">Read the rest of this entry »</p>"
|
| 8529 |
msgstr ""
|
| 8530 |
|
| 8531 |
#: bp-themes/bp-sn-parent/attachment.php:27 bp-themes/bp-sn-parent/page.php:19
|
| 8532 |
#: bp-themes/bp-sn-parent/single.php:30
|
|
|
|
|
|
|
|
|
|
| 8533 |
msgid "<p><strong>Pages:</strong> "
|
| 8534 |
msgstr ""
|
| 8535 |
|
| 8536 |
#: bp-themes/bp-sn-parent/attachment.php:38
|
|
|
|
| 8537 |
msgid "Sorry, no attachments matched your criteria."
|
| 8538 |
msgstr ""
|
| 8539 |
|
| 8540 |
#: bp-themes/bp-sn-parent/blogs/create.php:22
|
|
|
|
| 8541 |
msgid "Blog registration is currently disabled"
|
| 8542 |
msgstr ""
|
| 8543 |
|
| 8544 |
#: bp-themes/bp-sn-parent/blogs/my-blogs.php:35
|
|
|
|
| 8545 |
msgid "You haven't created any blogs yet."
|
| 8546 |
msgstr ""
|
| 8547 |
|
| 8548 |
#: bp-themes/bp-sn-parent/blogs/my-blogs.php:35
|
|
|
|
| 8549 |
#, php-format
|
| 8550 |
msgid "%s hasn't created any public blogs yet."
|
| 8551 |
msgstr ""
|
| 8553 |
#: bp-themes/bp-sn-parent/blogs/recent-comments.php:21
|
| 8554 |
#: bp-themes/bp-sn-parent/wire/post-form.php:21
|
| 8555 |
#: bp-themes/bp-sn-parent/wire/post-list.php:39
|
|
|
|
|
|
|
|
|
|
| 8556 |
#, php-format
|
| 8557 |
msgid "On %1$s %2$s said:"
|
| 8558 |
msgstr ""
|
| 8559 |
|
| 8560 |
#: bp-themes/bp-sn-parent/blogs/recent-comments.php:21
|
| 8561 |
#: bp-themes/bp-sn-parent/blogs/recent-posts.php:23
|
|
|
|
|
|
|
| 8562 |
msgid "F jS, Y"
|
| 8563 |
msgstr ""
|
| 8564 |
|
| 8565 |
#: bp-themes/bp-sn-parent/blogs/recent-comments.php:23
|
|
|
|
| 8566 |
#, php-format
|
| 8567 |
msgid ""
|
| 8568 |
"Commented on the post <a href=\"%1$s\">%2$s</a> on the blog <a href=\"%3$s\">"
|
| 8570 |
msgstr ""
|
| 8571 |
|
| 8572 |
#: bp-themes/bp-sn-parent/blogs/recent-comments.php:36
|
|
|
|
| 8573 |
msgid "You haven't posted any comments yet."
|
| 8574 |
msgstr ""
|
| 8575 |
|
| 8576 |
#: bp-themes/bp-sn-parent/blogs/recent-comments.php:36
|
|
|
|
| 8577 |
#, php-format
|
| 8578 |
msgid "%s hasn't posted any comments yet."
|
| 8579 |
msgstr ""
|
| 8580 |
|
| 8581 |
#: bp-themes/bp-sn-parent/blogs/recent-posts.php:21
|
|
|
|
| 8582 |
#, php-format
|
| 8583 |
msgid "Permanent Link to %s"
|
| 8584 |
msgstr ""
|
| 8585 |
|
| 8586 |
#: bp-themes/bp-sn-parent/blogs/recent-posts.php:23
|
|
|
|
| 8587 |
#, php-format
|
| 8588 |
msgid "%1$s <em>in %2$s by %3$s</em>"
|
| 8589 |
msgstr ""
|
| 8590 |
|
| 8591 |
#: bp-themes/bp-sn-parent/blogs/recent-posts.php:24
|
| 8592 |
#: bp-themes/bp-sn-parent/index.php:24
|
|
|
|
|
|
|
| 8593 |
msgid "Read the rest of this entry »"
|
| 8594 |
msgstr ""
|
| 8595 |
|
| 8596 |
#: bp-themes/bp-sn-parent/blogs/recent-posts.php:25
|
|
|
|
| 8597 |
msgid "No Comments"
|
| 8598 |
msgstr ""
|
| 8599 |
|
| 8600 |
#: bp-themes/bp-sn-parent/blogs/recent-posts.php:25
|
|
|
|
| 8601 |
msgid "1 Comment"
|
| 8602 |
msgstr ""
|
| 8603 |
|
| 8604 |
#: bp-themes/bp-sn-parent/blogs/recent-posts.php:25
|
|
|
|
| 8605 |
msgid "% Comments"
|
| 8606 |
msgstr ""
|
| 8607 |
|
| 8608 |
#: bp-themes/bp-sn-parent/blogs/recent-posts.php:40
|
|
|
|
| 8609 |
msgid "You haven't made any posts yet."
|
| 8610 |
msgstr ""
|
| 8611 |
|
| 8612 |
#: bp-themes/bp-sn-parent/blogs/recent-posts.php:40
|
|
|
|
| 8613 |
#, php-format
|
| 8614 |
msgid "%s hasn't made any posts yet."
|
| 8615 |
msgstr ""
|
| 8645 |
msgstr ""
|
| 8646 |
|
| 8647 |
#: bp-themes/bp-sn-parent/comments.php:50
|
|
|
|
| 8648 |
msgid "Comments are closed."
|
| 8649 |
msgstr ""
|
| 8650 |
|
| 8651 |
#: bp-themes/bp-sn-parent/comments.php:62
|
|
|
|
| 8652 |
msgid "Leave a Reply"
|
| 8653 |
msgstr ""
|
| 8654 |
|
| 8674 |
msgstr ""
|
| 8675 |
|
| 8676 |
#: bp-themes/bp-sn-parent/comments.php:84
|
|
|
|
| 8677 |
msgid "Log out of this account"
|
| 8678 |
msgstr ""
|
| 8679 |
|
| 8699 |
msgstr ""
|
| 8700 |
|
| 8701 |
#: bp-themes/bp-sn-parent/directories/blogs/blogs-loop.php:34
|
|
|
|
| 8702 |
msgid "Visit Blog"
|
| 8703 |
msgstr ""
|
| 8704 |
|
| 8705 |
#: bp-themes/bp-sn-parent/directories/blogs/blogs-loop.php:55
|
|
|
|
| 8706 |
msgid ""
|
| 8707 |
"No blogs found. Blogs must fill in at least one piece of profile data to "
|
| 8708 |
"show in blog lists."
|
| 8709 |
msgstr ""
|
| 8710 |
|
| 8711 |
#: bp-themes/bp-sn-parent/directories/blogs/index.php:10
|
|
|
|
| 8712 |
msgid "Blog Directory"
|
| 8713 |
msgstr ""
|
| 8714 |
|
| 8715 |
#: bp-themes/bp-sn-parent/directories/blogs/index.php:42
|
|
|
|
| 8716 |
msgid "Blog Listing"
|
| 8717 |
msgstr ""
|
| 8718 |
|
| 8719 |
#: bp-themes/bp-sn-parent/directories/blogs/index.php:69
|
|
|
|
| 8720 |
msgid "Find Blogs"
|
| 8721 |
msgstr ""
|
| 8722 |
|
| 8725 |
msgstr ""
|
| 8726 |
|
| 8727 |
#: bp-themes/bp-sn-parent/directories/blogs/index.php:100
|
|
|
|
| 8728 |
msgid "Description: "
|
| 8729 |
msgstr ""
|
| 8730 |
|
| 8731 |
#: bp-themes/bp-sn-parent/directories/blogs/index.php:117
|
|
|
|
| 8732 |
msgid "There are not enough blogs to feature."
|
| 8733 |
msgstr ""
|
| 8734 |
|
| 8787 |
msgstr ""
|
| 8788 |
|
| 8789 |
#: bp-themes/bp-sn-parent/directories/groups/groups-loop.php:55
|
|
|
|
| 8790 |
msgid "There were no groups found."
|
| 8791 |
msgstr ""
|
| 8792 |
|
| 8793 |
#: bp-themes/bp-sn-parent/directories/groups/index.php:10
|
|
|
|
| 8794 |
msgid "Groups Directory"
|
| 8795 |
msgstr ""
|
| 8796 |
|
| 8797 |
#: bp-themes/bp-sn-parent/directories/groups/index.php:42
|
|
|
|
| 8798 |
msgid "Groups Listing"
|
| 8799 |
msgstr ""
|
| 8800 |
|
| 8801 |
#: bp-themes/bp-sn-parent/directories/groups/index.php:69
|
|
|
|
| 8802 |
msgid "Find Groups"
|
| 8803 |
msgstr ""
|
| 8804 |
|
| 8807 |
msgstr ""
|
| 8808 |
|
| 8809 |
#: bp-themes/bp-sn-parent/directories/groups/index.php:101
|
|
|
|
| 8810 |
msgid "Members:"
|
| 8811 |
msgstr ""
|
| 8812 |
|
| 8813 |
#: bp-themes/bp-sn-parent/directories/members/index.php:10
|
|
|
|
| 8814 |
msgid "Members Directory"
|
| 8815 |
msgstr ""
|
| 8816 |
|
| 8817 |
#: bp-themes/bp-sn-parent/directories/members/index.php:42
|
|
|
|
| 8818 |
msgid "Member Listing"
|
| 8819 |
msgstr ""
|
| 8820 |
|
| 8821 |
#: bp-themes/bp-sn-parent/directories/members/index.php:68
|
|
|
|
| 8822 |
msgid "Find Members"
|
| 8823 |
msgstr ""
|
| 8824 |
|
| 8827 |
msgstr ""
|
| 8828 |
|
| 8829 |
#: bp-themes/bp-sn-parent/directories/members/index.php:112
|
|
|
|
| 8830 |
msgid "There are not enough members to feature."
|
| 8831 |
msgstr ""
|
| 8832 |
|
| 8833 |
#: bp-themes/bp-sn-parent/directories/members/members-loop.php:49
|
|
|
|
| 8834 |
msgid ""
|
| 8835 |
"No members found. Members must fill in at least one piece of profile data to "
|
| 8836 |
"show in member lists."
|
| 8837 |
msgstr ""
|
| 8838 |
|
| 8839 |
#: bp-themes/bp-sn-parent/footer.php:10
|
|
|
|
|
|
|
| 8840 |
#, php-format
|
| 8841 |
msgid ""
|
| 8842 |
"%s is proudly powered by <a href=\"http://mu.wordpress.org\">WordPress MU</"
|
| 8844 |
msgstr ""
|
| 8845 |
|
| 8846 |
#: bp-themes/bp-sn-parent/friends/friends-loop.php:48
|
|
|
|
| 8847 |
msgid "No friends matched your search filter terms"
|
| 8848 |
msgstr ""
|
| 8849 |
|
| 8850 |
#: bp-themes/bp-sn-parent/friends/friends-loop.php:54
|
|
|
|
| 8851 |
msgid "Your friends list is currently empty"
|
| 8852 |
msgstr ""
|
| 8853 |
|
| 8854 |
#: bp-themes/bp-sn-parent/friends/friends-loop.php:54
|
|
|
|
| 8855 |
#, php-format
|
| 8856 |
msgid "%s's friends list is currently empty"
|
| 8857 |
msgstr ""
|
| 8858 |
|
| 8859 |
#: bp-themes/bp-sn-parent/friends/friends-loop.php:63
|
|
|
|
| 8860 |
msgid "Why not make friends with some of these members?"
|
| 8861 |
msgstr ""
|
| 8862 |
|
| 8863 |
#: bp-themes/bp-sn-parent/friends/requests.php:16
|
|
|
|
| 8864 |
msgid "Friendship Requests"
|
| 8865 |
msgstr ""
|
| 8866 |
|
| 8867 |
#: bp-themes/bp-sn-parent/friends/requests.php:35
|
| 8868 |
#: bp-themes/bp-sn-parent/groups/invites.php:32
|
| 8869 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:277
|
|
|
|
|
|
|
|
|
|
| 8870 |
msgid "Accept"
|
| 8871 |
msgstr ""
|
| 8872 |
|
| 8873 |
#: bp-themes/bp-sn-parent/friends/requests.php:41
|
| 8874 |
#: bp-themes/bp-sn-parent/groups/invites.php:38
|
| 8875 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:283
|
|
|
|
|
|
|
|
|
|
| 8876 |
msgid "Reject"
|
| 8877 |
msgstr ""
|
| 8878 |
|
| 8879 |
#: bp-themes/bp-sn-parent/friends/requests.php:56
|
|
|
|
| 8880 |
msgid "You have no pending friendship requests."
|
| 8881 |
msgstr ""
|
| 8882 |
|
| 8902 |
#: bp-themes/bp-sn-parent/registration/register.php:128
|
| 8903 |
#: bp-themes/bp-sn-parent/registration/register.php:176
|
| 8904 |
#: bp-themes/bp-sn-parent/registration/register.php:185
|
|
|
|
|
|
|
| 8905 |
#: bp-xprofile/deprecated/bp-xprofile-deprecated.php:58
|
| 8906 |
#: bp-xprofile/deprecated/bp-xprofile-deprecated.php:65
|
| 8907 |
#: bp-xprofile/deprecated/bp-xprofile-deprecated.php:72
|
| 8918 |
|
| 8919 |
#: bp-themes/bp-sn-parent/groups/group-loop.php:26
|
| 8920 |
#: bp-themes/bp-sn-parent/groups/invites.php:22
|
|
|
|
|
|
|
| 8921 |
#, php-format
|
| 8922 |
msgid "%s members"
|
| 8923 |
msgstr ""
|
| 8924 |
|
| 8925 |
#: bp-themes/bp-sn-parent/groups/group-loop.php:29
|
|
|
|
| 8926 |
msgid "Membership Pending Approval"
|
| 8927 |
msgstr ""
|
| 8928 |
|
| 8929 |
#: bp-themes/bp-sn-parent/groups/group-loop.php:56
|
|
|
|
| 8930 |
msgid "Why not join a few of these groups?"
|
| 8931 |
msgstr ""
|
| 8932 |
|
| 8933 |
#: bp-themes/bp-sn-parent/groups/group-loop.php:66
|
|
|
|
| 8934 |
msgid "No matching groups found."
|
| 8935 |
msgstr ""
|
| 8936 |
|
| 8937 |
#: bp-themes/bp-sn-parent/groups/invites.php:53
|
|
|
|
| 8938 |
msgid "You have no outstanding group invites."
|
| 8939 |
msgstr ""
|
| 8940 |
|
| 8941 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:38
|
|
|
|
| 8942 |
msgid "Notify group members of changes via email"
|
| 8943 |
msgstr ""
|
| 8944 |
|
| 8948 |
msgstr ""
|
| 8949 |
|
| 8950 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:151
|
|
|
|
| 8951 |
msgid "Crop Avatar"
|
| 8952 |
msgstr ""
|
| 8953 |
|
| 8954 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:183
|
| 8955 |
#: bp-themes/bp-sn-parent/groups/single/members.php:30
|
|
|
|
|
|
|
| 8956 |
msgid "Administrators"
|
| 8957 |
msgstr ""
|
| 8958 |
|
| 8959 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:190
|
| 8960 |
#: bp-themes/bp-sn-parent/groups/single/members.php:41
|
|
|
|
|
|
|
| 8961 |
msgid "Moderators"
|
| 8962 |
msgstr ""
|
| 8963 |
|
| 8966 |
msgstr ""
|
| 8967 |
|
| 8968 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:297
|
|
|
|
| 8969 |
msgid "There are no pending membership requests."
|
| 8970 |
msgstr ""
|
| 8971 |
|
| 8972 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:316
|
|
|
|
| 8973 |
msgid ""
|
| 8974 |
"WARNING: Deleting this group will completely remove ALL content associated "
|
| 8975 |
"with it. There is no way back, please be careful with this option."
|
| 8976 |
msgstr ""
|
| 8977 |
|
| 8978 |
#: bp-themes/bp-sn-parent/groups/single/admin.php:319
|
|
|
|
| 8979 |
msgid "I understand the consequences of deleting this group."
|
| 8980 |
msgstr ""
|
| 8981 |
|
| 8982 |
#: bp-themes/bp-sn-parent/groups/single/forum/edit.php:45
|
|
|
|
| 8983 |
msgid "Edit Topic:"
|
| 8984 |
msgstr ""
|
| 8985 |
|
| 8986 |
#: bp-themes/bp-sn-parent/groups/single/forum/edit.php:50
|
| 8987 |
#: bp-themes/bp-sn-parent/groups/single/forum/index.php:81
|
|
|
|
|
|
|
| 8988 |
msgid "Content:"
|
| 8989 |
msgstr ""
|
| 8990 |
|
| 8991 |
#: bp-themes/bp-sn-parent/groups/single/forum/edit.php:67
|
|
|
|
| 8992 |
msgid "Edit Post:"
|
| 8993 |
msgstr ""
|
| 8994 |
|
| 8995 |
#: bp-themes/bp-sn-parent/groups/single/forum/edit.php:87
|
|
|
|
| 8996 |
msgid "This topic does not exist."
|
| 8997 |
msgstr ""
|
| 8998 |
|
| 8999 |
#: bp-themes/bp-sn-parent/groups/single/forum/index.php:25
|
| 9000 |
#: bp-themes/bp-sn-parent/groups/single/forum/topic.php:28
|
|
|
|
|
|
|
| 9001 |
msgid "Post New"
|
| 9002 |
msgstr ""
|
| 9003 |
|
| 9004 |
#: bp-themes/bp-sn-parent/groups/single/forum/index.php:25
|
|
|
|
| 9005 |
msgid "Post New →"
|
| 9006 |
msgstr ""
|
| 9007 |
|
| 9008 |
#: bp-themes/bp-sn-parent/groups/single/forum/index.php:60
|
|
|
|
| 9009 |
msgid "There are no topics for this group forum."
|
| 9010 |
msgstr ""
|
| 9011 |
|
| 9014 |
msgstr ""
|
| 9015 |
|
| 9016 |
#: bp-themes/bp-sn-parent/groups/single/forum/index.php:76
|
|
|
|
| 9017 |
msgid "Post a New Topic:"
|
| 9018 |
msgstr ""
|
| 9019 |
|
| 9022 |
msgstr ""
|
| 9023 |
|
| 9024 |
#: bp-themes/bp-sn-parent/groups/single/forum/index.php:89
|
|
|
|
| 9025 |
msgid "Post Topic"
|
| 9026 |
msgstr ""
|
| 9027 |
|
| 9028 |
#: bp-themes/bp-sn-parent/groups/single/forum/topic.php:28
|
|
|
|
| 9029 |
msgid "Post Reply →"
|
| 9030 |
msgstr ""
|
| 9031 |
|
| 9038 |
msgstr ""
|
| 9039 |
|
| 9040 |
#: bp-themes/bp-sn-parent/groups/single/forum/topic.php:57
|
|
|
|
| 9041 |
#, php-format
|
| 9042 |
msgid "%s said %s ago:"
|
| 9043 |
msgstr ""
|
| 9047 |
msgstr ""
|
| 9048 |
|
| 9049 |
#: bp-themes/bp-sn-parent/groups/single/forum/topic.php:86
|
|
|
|
| 9050 |
msgid "Add a reply:"
|
| 9051 |
msgstr ""
|
| 9052 |
|
| 9053 |
#: bp-themes/bp-sn-parent/groups/single/forum/topic.php:90
|
|
|
|
| 9054 |
msgid "Post Reply"
|
| 9055 |
msgstr ""
|
| 9056 |
|
| 9057 |
#: bp-themes/bp-sn-parent/groups/single/forum/topic.php:100
|
|
|
|
| 9058 |
msgid "This topic is closed, replies are no longer accepted."
|
| 9059 |
msgstr ""
|
| 9060 |
|
| 9061 |
#: bp-themes/bp-sn-parent/groups/single/forum/topic.php:111
|
|
|
|
| 9062 |
msgid "There are no posts for this topic."
|
| 9063 |
msgstr ""
|
| 9064 |
|
| 9065 |
#: bp-themes/bp-sn-parent/groups/single/home.php:57
|
|
|
|
| 9066 |
msgid "News"
|
| 9067 |
msgstr ""
|
| 9068 |
|
| 9071 |
msgstr ""
|
| 9072 |
|
| 9073 |
#: bp-themes/bp-sn-parent/groups/single/home.php:109
|
|
|
|
| 9074 |
msgid "Recently Active Topics"
|
| 9075 |
msgstr ""
|
| 9076 |
|
| 9077 |
#: bp-themes/bp-sn-parent/groups/single/home.php:147
|
|
|
|
| 9078 |
#, php-format
|
| 9079 |
msgid "Members (%d)"
|
| 9080 |
msgstr ""
|
| 9081 |
|
| 9082 |
#: bp-themes/bp-sn-parent/groups/single/home.php:177
|
| 9083 |
#: bp-themes/bp-sn-parent/groups/single/wire.php:29
|
|
|
|
|
|
|
| 9084 |
msgid "Group Wire"
|
| 9085 |
msgstr ""
|
| 9086 |
|
| 9087 |
#: bp-themes/bp-sn-parent/groups/single/home.php:177
|
| 9088 |
#: bp-themes/bp-sn-parent/groups/single/wire.php:29
|
|
|
|
|
|
|
| 9089 |
#, php-format
|
| 9090 |
msgid "There are no wire posts for %s"
|
| 9091 |
msgstr ""
|
| 9092 |
|
| 9093 |
#: bp-themes/bp-sn-parent/groups/single/home.php:194
|
|
|
|
| 9094 |
msgid "Sorry, the group does not exist."
|
| 9095 |
msgstr ""
|
| 9096 |
|
| 9097 |
#: bp-themes/bp-sn-parent/groups/single/leave-confirm.php:30
|
|
|
|
| 9098 |
msgid "Confirm Leave Group"
|
| 9099 |
msgstr ""
|
| 9100 |
|
| 9101 |
#: bp-themes/bp-sn-parent/groups/single/leave-confirm.php:31
|
|
|
|
| 9102 |
msgid "Are you sure you want to leave this group?"
|
| 9103 |
msgstr ""
|
| 9104 |
|
| 9105 |
#: bp-themes/bp-sn-parent/groups/single/leave-confirm.php:34
|
|
|
|
| 9106 |
msgid "Yes, I'd like to leave this group."
|
| 9107 |
msgstr ""
|
| 9108 |
|
| 9109 |
#: bp-themes/bp-sn-parent/groups/single/leave-confirm.php:35
|
|
|
|
| 9110 |
msgid "No, I'll stay!"
|
| 9111 |
msgstr ""
|
| 9112 |
|
| 9113 |
#: bp-themes/bp-sn-parent/groups/single/members.php:50
|
|
|
|
| 9114 |
msgid "Group Members"
|
| 9115 |
msgstr ""
|
| 9116 |
|
| 9117 |
#: bp-themes/bp-sn-parent/groups/single/menu.php:18
|
|
|
|
| 9118 |
msgid "Admins"
|
| 9119 |
msgstr ""
|
| 9120 |
|
| 9121 |
#: bp-themes/bp-sn-parent/groups/single/menu.php:27
|
|
|
|
| 9122 |
msgid "Mods"
|
| 9123 |
msgstr ""
|
| 9124 |
|
| 9125 |
#: bp-themes/bp-sn-parent/groups/single/request-membership.php:33
|
|
|
|
| 9126 |
#, php-format
|
| 9127 |
msgid "You are requesting to become a member of the group '%s'."
|
| 9128 |
msgstr ""
|
| 9129 |
|
| 9130 |
#: bp-themes/bp-sn-parent/groups/single/request-membership.php:36
|
|
|
|
| 9131 |
msgid "Comments (optional)"
|
| 9132 |
msgstr ""
|
| 9133 |
|
| 9134 |
#: bp-themes/bp-sn-parent/groups/single/request-membership.php:41
|
|
|
|
| 9135 |
msgid "Send Request"
|
| 9136 |
msgstr ""
|
| 9137 |
|
| 9138 |
#: bp-themes/bp-sn-parent/groups/single/send-invite.php:91
|
|
|
|
| 9139 |
msgid ""
|
| 9140 |
"You either need to build up your friends list, or your friends have already "
|
| 9141 |
"been invited or are current members."
|
| 9142 |
msgstr ""
|
| 9143 |
|
| 9144 |
#: bp-themes/bp-sn-parent/header.php:21
|
|
|
|
| 9145 |
msgid "Blog Posts RSS Feed"
|
| 9146 |
msgstr ""
|
| 9147 |
|
| 9148 |
#: bp-themes/bp-sn-parent/header.php:22
|
|
|
|
| 9149 |
msgid "Blog Posts Atom Feed"
|
| 9150 |
msgstr ""
|
| 9151 |
|
| 9156 |
|
| 9157 |
#: bp-themes/bp-sn-parent/home.php:12 bp-themes/bp-sn-parent/home.php:23
|
| 9158 |
#: bp-themes/bp-sn-parent/home.php:34 bp-themes/bp-sn-parent/sidebar.php:10
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9159 |
msgid "Add Widgets"
|
| 9160 |
msgstr ""
|
| 9161 |
|
| 9162 |
#: bp-themes/bp-sn-parent/index.php:21
|
|
|
|
| 9163 |
msgid "in"
|
| 9164 |
msgstr ""
|
| 9165 |
|
| 9168 |
msgstr ""
|
| 9169 |
|
| 9170 |
#: bp-themes/bp-sn-parent/index.php:45
|
|
|
|
| 9171 |
msgid "Sorry, but you are looking for something that isn't here."
|
| 9172 |
msgstr ""
|
| 9173 |
|
| 9176 |
msgstr ""
|
| 9177 |
|
| 9178 |
#: bp-themes/bp-sn-parent/messages/compose.php:8
|
|
|
|
| 9179 |
msgid "Compose Message"
|
| 9180 |
msgstr ""
|
| 9181 |
|
| 9182 |
#: bp-themes/bp-sn-parent/messages/compose.php:16
|
|
|
|
| 9183 |
msgid "Send To"
|
| 9184 |
msgstr ""
|
| 9185 |
|
| 9186 |
#: bp-themes/bp-sn-parent/messages/compose.php:25
|
|
|
|
| 9187 |
msgid "This is a notice to all users."
|
| 9188 |
msgstr ""
|
| 9189 |
|
| 9190 |
#: bp-themes/bp-sn-parent/messages/compose.php:28
|
|
|
|
| 9191 |
msgid "Subject"
|
| 9192 |
msgstr ""
|
| 9193 |
|
| 9194 |
#: bp-themes/bp-sn-parent/messages/compose.php:31
|
|
|
|
| 9195 |
msgid "Message"
|
| 9196 |
msgstr ""
|
| 9197 |
|
| 9198 |
#: bp-themes/bp-sn-parent/messages/compose.php:39
|
|
|
|
| 9199 |
msgid "Send"
|
| 9200 |
msgstr ""
|
| 9201 |
|
| 9202 |
#: bp-themes/bp-sn-parent/messages/index.php:41
|
|
|
|
| 9203 |
msgid "From:"
|
| 9204 |
msgstr ""
|
| 9205 |
|
| 9206 |
#: bp-themes/bp-sn-parent/messages/index.php:45
|
| 9207 |
#: bp-themes/bp-sn-parent/messages/sentbox.php:40
|
|
|
|
|
|
|
| 9208 |
msgid "View Message"
|
| 9209 |
msgstr ""
|
| 9210 |
|
| 9211 |
#: bp-themes/bp-sn-parent/messages/index.php:52
|
| 9212 |
#: bp-themes/bp-sn-parent/messages/notices.php:46
|
| 9213 |
#: bp-themes/bp-sn-parent/messages/sentbox.php:47
|
|
|
|
|
|
|
|
|
|
| 9214 |
msgid "Delete Message"
|
| 9215 |
msgstr ""
|
| 9216 |
|
| 9217 |
#: bp-themes/bp-sn-parent/messages/index.php:65
|
|
|
|
| 9218 |
msgid "You have no messages in your inbox."
|
| 9219 |
msgstr ""
|
| 9220 |
|
| 9221 |
#: bp-themes/bp-sn-parent/messages/notices.php:17
|
|
|
|
| 9222 |
msgid "Sent Notices"
|
| 9223 |
msgstr ""
|
| 9224 |
|
| 9225 |
#: bp-themes/bp-sn-parent/messages/notices.php:39
|
|
|
|
| 9226 |
msgid "Sent:"
|
| 9227 |
msgstr ""
|
| 9228 |
|
| 9229 |
#: bp-themes/bp-sn-parent/messages/notices.php:58
|
|
|
|
| 9230 |
msgid "You have not sent any notices."
|
| 9231 |
msgstr ""
|
| 9232 |
|
| 9233 |
#: bp-themes/bp-sn-parent/messages/sentbox.php:36
|
|
|
|
| 9234 |
msgid "To:"
|
| 9235 |
msgstr ""
|
| 9236 |
|
| 9237 |
#: bp-themes/bp-sn-parent/messages/sentbox.php:60
|
|
|
|
| 9238 |
msgid "You have no sent messages."
|
| 9239 |
msgstr ""
|
| 9240 |
|
| 9243 |
msgid "Sent between %s and %s"
|
| 9244 |
msgstr ""
|
| 9245 |
|
| 9246 |
+
#: bp-themes/bp-sn-parent/page.php:17
|
| 9247 |
msgid "<p class=\"serif\">Read the rest of this page »</p>"
|
| 9248 |
msgstr ""
|
| 9249 |
|
| 9250 |
+
#: bp-themes/bp-sn-parent/page.php:20
|
| 9251 |
msgid "Edit this entry."
|
| 9252 |
msgstr ""
|
| 9253 |
|
| 9254 |
+
#: bp-themes/bp-sn-parent/profile/change-avatar.php:9 bp-xprofile.php:214
|
|
|
|
|
|
|
| 9255 |
msgid "Change Avatar"
|
| 9256 |
msgstr ""
|
| 9257 |
|
| 9274 |
msgstr ""
|
| 9275 |
|
| 9276 |
#: bp-themes/bp-sn-parent/profile/edit.php:23
|
|
|
|
| 9277 |
#, php-format
|
| 9278 |
msgid "Editing '%s'"
|
| 9279 |
msgstr ""
|
| 9280 |
|
| 9281 |
#: bp-themes/bp-sn-parent/profile/index.php:35
|
|
|
|
| 9282 |
msgid "My Latest Activity"
|
| 9283 |
msgstr ""
|
| 9284 |
|
| 9285 |
#: bp-themes/bp-sn-parent/profile/index.php:35
|
|
|
|
| 9286 |
#, php-format
|
| 9287 |
msgid "%s's Latest Activity"
|
| 9288 |
msgstr ""
|
| 9296 |
msgid "%s hasn't done anything recently."
|
| 9297 |
msgstr ""
|
| 9298 |
|
| 9299 |
+
#: bp-themes/bp-sn-parent/profile/index.php:134 bp-wire.php:52
|
|
|
|
| 9300 |
msgid "My Wire"
|
| 9301 |
msgstr ""
|
| 9302 |
|
| 9303 |
#: bp-themes/bp-sn-parent/profile/index.php:134
|
| 9304 |
#: bp-themes/bp-sn-parent/wire/latest.php:22
|
|
|
|
|
|
|
| 9305 |
#, php-format
|
| 9306 |
msgid "%s's Wire"
|
| 9307 |
msgstr ""
|
| 9308 |
|
| 9309 |
#: bp-themes/bp-sn-parent/profile/index.php:134
|
| 9310 |
#: bp-themes/bp-sn-parent/wire/latest.php:22
|
|
|
|
|
|
|
| 9311 |
msgid "No one has posted to your wire yet."
|
| 9312 |
msgstr ""
|
| 9313 |
|
| 9314 |
#: bp-themes/bp-sn-parent/profile/index.php:134
|
| 9315 |
#: bp-themes/bp-sn-parent/wire/latest.php:22
|
|
|
|
|
|
|
| 9316 |
#, php-format
|
| 9317 |
msgid "No one has posted to %s's wire yet."
|
| 9318 |
msgstr ""
|
| 9319 |
|
| 9320 |
#: bp-themes/bp-sn-parent/profile/profile-loop.php:55
|
|
|
|
| 9321 |
msgid "Sorry, this person does not have a public profile."
|
| 9322 |
msgstr ""
|
| 9323 |
|
| 9332 |
msgstr ""
|
| 9333 |
|
| 9334 |
#: bp-themes/bp-sn-parent/registration/activate.php:24
|
|
|
|
| 9335 |
msgid "Activate your Account"
|
| 9336 |
msgstr ""
|
| 9337 |
|
| 9412 |
msgstr ""
|
| 9413 |
|
| 9414 |
#: bp-themes/bp-sn-parent/search.php:13
|
|
|
|
| 9415 |
msgid "Search Results"
|
| 9416 |
msgstr ""
|
| 9417 |
|
| 9418 |
#: bp-themes/bp-sn-parent/search.php:46
|
|
|
|
| 9419 |
msgid "No posts found. Try a different search?"
|
| 9420 |
msgstr ""
|
| 9421 |
|
| 9422 |
#: bp-themes/bp-sn-parent/sidebar.php:10
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9423 |
msgid "Please log in and add widgets to this column."
|
| 9424 |
msgstr ""
|
| 9425 |
|
| 9426 |
#: bp-themes/bp-sn-parent/single.php:24
|
|
|
|
| 9427 |
msgid "Permanent link to"
|
| 9428 |
msgstr ""
|
| 9429 |
|
| 9430 |
#: bp-themes/bp-sn-parent/single.php:42
|
|
|
|
| 9431 |
msgid "Sorry, no posts matched your criteria."
|
| 9432 |
msgstr ""
|
| 9433 |
|
| 9434 |
#: bp-themes/bp-sn-parent/status/post-form.php:6
|
|
|
|
| 9435 |
msgid "What are you up to?"
|
| 9436 |
msgstr ""
|
| 9437 |
|
| 9438 |
#: bp-themes/bp-sn-parent/status/post-form.php:12
|
|
|
|
| 9439 |
msgid "Update"
|
| 9440 |
msgstr ""
|
| 9441 |
|
| 9442 |
#: bp-themes/bp-sn-parent/userbar.php:4
|
|
|
|
| 9443 |
msgid "Me"
|
| 9444 |
msgstr ""
|
| 9445 |
|
| 9446 |
#: bp-themes/bp-sn-parent/userbar.php:24
|
|
|
|
| 9447 |
msgid "You must log in to access your account."
|
| 9448 |
msgstr ""
|
| 9449 |
|
| 9450 |
#: bp-themes/bp-sn-parent/wire/latest.php:22
|
|
|
|
| 9451 |
msgid "Your Wire"
|
| 9452 |
msgstr ""
|
| 9453 |
|
| 9454 |
#: bp-themes/bp-sn-parent/wire/post-form.php:24
|
|
|
|
| 9455 |
msgid "Notify members via email (will slow down posting)"
|
| 9456 |
msgstr ""
|
| 9457 |
|
| 9460 |
msgstr ""
|
| 9461 |
|
| 9462 |
#: bp-themes/bp-sn-parent/wire/post-form.php:39
|
|
|
|
| 9463 |
msgid "Post »"
|
| 9464 |
msgstr ""
|
| 9465 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9466 |
#: bp-wire.php:48
|
| 9467 |
msgid "All Posts"
|
| 9468 |
msgstr ""
|
| 9821 |
msgid "Profile updated %s ago"
|
| 9822 |
msgstr ""
|
| 9823 |
|
| 9824 |
+
#: bp-xprofile/deprecated/bp-xprofile-deprecated.php:448
|
| 9825 |
msgid "Your Profile Details"
|
| 9826 |
msgstr ""
|
| 9827 |
|
| 9828 |
+
#: bp-xprofile/deprecated/bp-xprofile-deprecated.php:449
|
| 9829 |
msgid ""
|
| 9830 |
"Please fill in the following fields to start up your member profile. Fields\n"
|
| 9831 |
"\t\t\tmarked with a star are required."
|
| 9832 |
msgstr ""
|
| 9833 |
|
| 9834 |
+
#: bp-xprofile/deprecated/bp-xprofile-deprecated.php:477
|
| 9835 |
msgid "Profile Picture (Avatar)"
|
| 9836 |
msgstr ""
|
| 9837 |
|
| 9838 |
+
#: bp-xprofile/deprecated/bp-xprofile-deprecated.php:478
|
| 9839 |
msgid ""
|
| 9840 |
"You can upload an image from your computer to use as an avatar. This avatar "
|
| 9841 |
"will appear on your profile page."
|
| 9842 |
msgstr ""
|
| 9843 |
|
| 9844 |
+
#: bp-xprofile/deprecated/bp-xprofile-deprecated.php:490
|
| 9845 |
msgid "Select a file:"
|
| 9846 |
msgstr ""
|
| 9847 |
|
| 9848 |
+
#: bp-xprofile/deprecated/bp-xprofile-deprecated.php:588
|
| 9849 |
#, php-format
|
| 9850 |
msgid "%s cannot be left blank"
|
| 9851 |
msgstr ""
|
bp-loader.php
CHANGED
|
@@ -4,12 +4,12 @@ Plugin Name: BuddyPress
|
|
| 4 |
Plugin URI: http://buddypress.org/download/
|
| 5 |
Description: BuddyPress will add social networking features to a new or existing WordPress MU installation.
|
| 6 |
Author: The BuddyPress Community
|
| 7 |
-
Version: 1.1
|
| 8 |
Author URI: http://buddypress.org/developers/
|
| 9 |
Site Wide Only: true
|
| 10 |
*/
|
| 11 |
|
| 12 |
-
define( 'BP_VERSION', '1.1' );
|
| 13 |
|
| 14 |
/***
|
| 15 |
* This file will load in each BuddyPress component based on which
|
| 4 |
Plugin URI: http://buddypress.org/download/
|
| 5 |
Description: BuddyPress will add social networking features to a new or existing WordPress MU installation.
|
| 6 |
Author: The BuddyPress Community
|
| 7 |
+
Version: 1.1.1
|
| 8 |
Author URI: http://buddypress.org/developers/
|
| 9 |
Site Wide Only: true
|
| 10 |
*/
|
| 11 |
|
| 12 |
+
define( 'BP_VERSION', '1.1.1' );
|
| 13 |
|
| 14 |
/***
|
| 15 |
* This file will load in each BuddyPress component based on which
|
bp-status.php
CHANGED
|
@@ -84,7 +84,7 @@ function bp_status_register_activity_action( $key, $value ) {
|
|
| 84 |
function bp_status_action_add() {
|
| 85 |
global $bp;
|
| 86 |
|
| 87 |
-
if ( $bp->current_component != BP_STATUS_SLUG
|
| 88 |
return false;
|
| 89 |
|
| 90 |
if ( !check_admin_referer( 'bp_status_add_status', '_wpnonce_add_status' ) )
|
|
@@ -109,11 +109,13 @@ add_action( 'init', 'bp_status_action_add' );
|
|
| 109 |
* true or false on success or failure.
|
| 110 |
*/
|
| 111 |
|
| 112 |
-
function bp_status_add_status( $user_id, $content ) {
|
| 113 |
global $bp;
|
| 114 |
|
| 115 |
$content = apply_filters( 'bp_status_content_before_save', $content );
|
| 116 |
-
|
|
|
|
|
|
|
| 117 |
|
| 118 |
if ( !$content || empty($content) )
|
| 119 |
return false;
|
| 84 |
function bp_status_action_add() {
|
| 85 |
global $bp;
|
| 86 |
|
| 87 |
+
if ( $bp->current_component != BP_STATUS_SLUG || 'add' != $bp->current_action )
|
| 88 |
return false;
|
| 89 |
|
| 90 |
if ( !check_admin_referer( 'bp_status_add_status', '_wpnonce_add_status' ) )
|
| 109 |
* true or false on success or failure.
|
| 110 |
*/
|
| 111 |
|
| 112 |
+
function bp_status_add_status( $user_id, $content, $recorded_time = false ) {
|
| 113 |
global $bp;
|
| 114 |
|
| 115 |
$content = apply_filters( 'bp_status_content_before_save', $content );
|
| 116 |
+
|
| 117 |
+
if ( !$recorded_time )
|
| 118 |
+
$recorded_time = time();
|
| 119 |
|
| 120 |
if ( !$content || empty($content) )
|
| 121 |
return false;
|
bp-status/bp-status-templatetags.php
CHANGED
|
@@ -30,7 +30,7 @@ function bp_the_status( $args = false ) {
|
|
| 30 |
if ( !$user_id )
|
| 31 |
$user_id = $bp->displayed_user->id;
|
| 32 |
|
| 33 |
-
$status = get_usermeta( $user_id, 'bp_status' );
|
| 34 |
|
| 35 |
if ( empty($status) )
|
| 36 |
return bp_get_update_status_button( 'text=' . $new_button_text );
|
| 30 |
if ( !$user_id )
|
| 31 |
$user_id = $bp->displayed_user->id;
|
| 32 |
|
| 33 |
+
$status = apply_filters( 'bp_status_from_usermeta', get_usermeta( $user_id, 'bp_status' ) );
|
| 34 |
|
| 35 |
if ( empty($status) )
|
| 36 |
return bp_get_update_status_button( 'text=' . $new_button_text );
|
bp-themes/bp-default/style.css
CHANGED
|
@@ -2,7 +2,7 @@
|
|
| 2 |
Theme Name: BuddyPress Default
|
| 3 |
Theme URI: http://buddypress.org/extend/themes/
|
| 4 |
Description: The default theme for BuddyPress.
|
| 5 |
-
Version: 1.1
|
| 6 |
Author: BuddyPress.org
|
| 7 |
Author URI: http://buddypress.org
|
| 8 |
Tags: buddypress, three-columns, white, orange, flexible-width
|
| 2 |
Theme Name: BuddyPress Default
|
| 3 |
Theme URI: http://buddypress.org/extend/themes/
|
| 4 |
Description: The default theme for BuddyPress.
|
| 5 |
+
Version: 1.1.1
|
| 6 |
Author: BuddyPress.org
|
| 7 |
Author URI: http://buddypress.org
|
| 8 |
Tags: buddypress, three-columns, white, orange, flexible-width
|
bp-themes/bp-sn-parent/_inc/ajax.php
CHANGED
|
@@ -10,29 +10,25 @@
|
|
| 10 |
*/
|
| 11 |
|
| 12 |
function bp_dtheme_ajax_directory_blogs() {
|
| 13 |
-
global $bp;
|
| 14 |
-
|
| 15 |
check_ajax_referer('directory_blogs');
|
| 16 |
|
| 17 |
-
locate_template( array( 'directories/blogs/blogs-loop.php' ), true );
|
| 18 |
}
|
| 19 |
add_action( 'wp_ajax_directory_blogs', 'bp_dtheme_ajax_directory_blogs' );
|
| 20 |
|
| 21 |
function bp_dtheme_ajax_directory_members() {
|
| 22 |
check_ajax_referer('directory_members');
|
| 23 |
|
| 24 |
-
locate_template( array( 'directories/members/members-loop.php' ), true );
|
| 25 |
}
|
| 26 |
add_action( 'wp_ajax_directory_members', 'bp_dtheme_ajax_directory_members' );
|
| 27 |
|
| 28 |
-
function
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
check_ajax_referer( 'friends_search' );
|
| 32 |
|
| 33 |
-
locate_template( array( 'directories/
|
| 34 |
}
|
| 35 |
-
add_action( '
|
| 36 |
|
| 37 |
function bp_dtheme_ajax_addremove_friend() {
|
| 38 |
global $bp;
|
|
@@ -63,6 +59,11 @@ function bp_dtheme_ajax_addremove_friend() {
|
|
| 63 |
}
|
| 64 |
add_action( 'wp_ajax_addremove_friend', 'bp_dtheme_ajax_addremove_friend' );
|
| 65 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 66 |
function bp_dtheme_ajax_invite_user() {
|
| 67 |
global $bp;
|
| 68 |
|
|
@@ -202,15 +203,6 @@ function bp_dtheme_ajax_member_admin_list() {
|
|
| 202 |
}
|
| 203 |
add_action( 'wp_ajax_get_group_members_admin', 'bp_dtheme_ajax_member_admin_list' );
|
| 204 |
|
| 205 |
-
function bp_dtheme_ajax_directory_groups() {
|
| 206 |
-
global $bp;
|
| 207 |
-
|
| 208 |
-
check_ajax_referer('directory_groups');
|
| 209 |
-
|
| 210 |
-
locate_template( array( 'directories/groups/groups-loop.php' ), true );
|
| 211 |
-
}
|
| 212 |
-
add_action( 'wp_ajax_directory_groups', 'bp_dtheme_ajax_directory_groups' );
|
| 213 |
-
|
| 214 |
function bp_dtheme_ajax_joinleave_group() {
|
| 215 |
global $bp;
|
| 216 |
|
| 10 |
*/
|
| 11 |
|
| 12 |
function bp_dtheme_ajax_directory_blogs() {
|
|
|
|
|
|
|
| 13 |
check_ajax_referer('directory_blogs');
|
| 14 |
|
| 15 |
+
locate_template( array( '/directories/blogs/blogs-loop.php' ), true );
|
| 16 |
}
|
| 17 |
add_action( 'wp_ajax_directory_blogs', 'bp_dtheme_ajax_directory_blogs' );
|
| 18 |
|
| 19 |
function bp_dtheme_ajax_directory_members() {
|
| 20 |
check_ajax_referer('directory_members');
|
| 21 |
|
| 22 |
+
locate_template( array( '/directories/members/members-loop.php' ), true );
|
| 23 |
}
|
| 24 |
add_action( 'wp_ajax_directory_members', 'bp_dtheme_ajax_directory_members' );
|
| 25 |
|
| 26 |
+
function bp_dtheme_ajax_directory_groups() {
|
| 27 |
+
check_ajax_referer('directory_groups');
|
|
|
|
|
|
|
| 28 |
|
| 29 |
+
locate_template( array( 'directories/groups/groups-loop.php' ), true );
|
| 30 |
}
|
| 31 |
+
add_action( 'wp_ajax_directory_groups', 'bp_dtheme_ajax_directory_groups' );
|
| 32 |
|
| 33 |
function bp_dtheme_ajax_addremove_friend() {
|
| 34 |
global $bp;
|
| 59 |
}
|
| 60 |
add_action( 'wp_ajax_addremove_friend', 'bp_dtheme_ajax_addremove_friend' );
|
| 61 |
|
| 62 |
+
function bp_dtheme_ajax_my_friends() {
|
| 63 |
+
locate_template( array( 'friends/friends-loop.php' ), true );
|
| 64 |
+
}
|
| 65 |
+
add_action( 'wp_ajax_my_friends_search', 'bp_dtheme_ajax_my_friends' );
|
| 66 |
+
|
| 67 |
function bp_dtheme_ajax_invite_user() {
|
| 68 |
global $bp;
|
| 69 |
|
| 203 |
}
|
| 204 |
add_action( 'wp_ajax_get_group_members_admin', 'bp_dtheme_ajax_member_admin_list' );
|
| 205 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 206 |
function bp_dtheme_ajax_joinleave_group() {
|
| 207 |
global $bp;
|
| 208 |
|
bp-themes/bp-sn-parent/_inc/js/ajax.js
CHANGED
|
@@ -201,18 +201,17 @@ jQuery(document).ready( function() {
|
|
| 201 |
}
|
| 202 |
);
|
| 203 |
|
| 204 |
-
j("div#pag a").livequery('click',
|
| 205 |
function() {
|
| 206 |
j('.ajax-loader').toggle();
|
| 207 |
|
| 208 |
var frpage = j(this).attr('href');
|
| 209 |
frpage = frpage.split('=');
|
| 210 |
-
|
| 211 |
j.post( ajaxurl, {
|
| 212 |
-
action: '
|
| 213 |
'cookie': encodeURIComponent(document.cookie),
|
| 214 |
'_wpnonce': j("input#_wpnonce_friend_search").val(),
|
| 215 |
-
'initiator_id': j("input#initiator").val(),
|
| 216 |
'frpage': frpage[1],
|
| 217 |
|
| 218 |
'friend-search-box': j("#friend-search-box").val()
|
|
@@ -235,22 +234,21 @@ jQuery(document).ready( function() {
|
|
| 235 |
);
|
| 236 |
|
| 237 |
j("input#friend-search-box").keyup(
|
| 238 |
-
|
| 239 |
function(e) {
|
| 240 |
if ( e.which == 13 ) {
|
| 241 |
j('.ajax-loader').toggle();
|
| 242 |
|
| 243 |
j.post( ajaxurl, {
|
| 244 |
-
action: '
|
| 245 |
'cookie': encodeURIComponent(document.cookie),
|
| 246 |
'_wpnonce': j("input#_wpnonce_friend_search").val(),
|
| 247 |
-
|
| 248 |
'friend-search-box': j("#friend-search-box").val()
|
| 249 |
},
|
| 250 |
function(response)
|
| 251 |
-
{
|
| 252 |
response = response.substr( 0, response.length - 1 );
|
| 253 |
-
|
| 254 |
j("div#friends-loop").fadeOut(200,
|
| 255 |
function() {
|
| 256 |
j('.ajax-loader').toggle();
|
|
@@ -258,9 +256,8 @@ jQuery(document).ready( function() {
|
|
| 258 |
j("div#friends-loop").fadeIn(200);
|
| 259 |
}
|
| 260 |
);
|
| 261 |
-
|
| 262 |
});
|
| 263 |
-
|
| 264 |
return false;
|
| 265 |
}
|
| 266 |
}
|
|
@@ -405,7 +402,7 @@ jQuery(document).ready( function() {
|
|
| 405 |
}
|
| 406 |
);
|
| 407 |
|
| 408 |
-
j("form#group-search-form").submit(
|
| 409 |
function() {
|
| 410 |
return false;
|
| 411 |
}
|
|
@@ -474,7 +471,7 @@ jQuery(document).ready( function() {
|
|
| 474 |
}
|
| 475 |
);
|
| 476 |
|
| 477 |
-
j("div#pag a").livequery('click',
|
| 478 |
function() {
|
| 479 |
j('.ajax-loader').toggle();
|
| 480 |
|
| 201 |
}
|
| 202 |
);
|
| 203 |
|
| 204 |
+
j(".friends div#pag a").livequery('click',
|
| 205 |
function() {
|
| 206 |
j('.ajax-loader').toggle();
|
| 207 |
|
| 208 |
var frpage = j(this).attr('href');
|
| 209 |
frpage = frpage.split('=');
|
| 210 |
+
|
| 211 |
j.post( ajaxurl, {
|
| 212 |
+
action: 'my_friends_search',
|
| 213 |
'cookie': encodeURIComponent(document.cookie),
|
| 214 |
'_wpnonce': j("input#_wpnonce_friend_search").val(),
|
|
|
|
| 215 |
'frpage': frpage[1],
|
| 216 |
|
| 217 |
'friend-search-box': j("#friend-search-box").val()
|
| 234 |
);
|
| 235 |
|
| 236 |
j("input#friend-search-box").keyup(
|
|
|
|
| 237 |
function(e) {
|
| 238 |
if ( e.which == 13 ) {
|
| 239 |
j('.ajax-loader').toggle();
|
| 240 |
|
| 241 |
j.post( ajaxurl, {
|
| 242 |
+
action: 'my_friends_search',
|
| 243 |
'cookie': encodeURIComponent(document.cookie),
|
| 244 |
'_wpnonce': j("input#_wpnonce_friend_search").val(),
|
| 245 |
+
|
| 246 |
'friend-search-box': j("#friend-search-box").val()
|
| 247 |
},
|
| 248 |
function(response)
|
| 249 |
+
{
|
| 250 |
response = response.substr( 0, response.length - 1 );
|
| 251 |
+
|
| 252 |
j("div#friends-loop").fadeOut(200,
|
| 253 |
function() {
|
| 254 |
j('.ajax-loader').toggle();
|
| 256 |
j("div#friends-loop").fadeIn(200);
|
| 257 |
}
|
| 258 |
);
|
|
|
|
| 259 |
});
|
| 260 |
+
|
| 261 |
return false;
|
| 262 |
}
|
| 263 |
}
|
| 402 |
}
|
| 403 |
);
|
| 404 |
|
| 405 |
+
j("form#group-search-form, form#friend-search-form").submit(
|
| 406 |
function() {
|
| 407 |
return false;
|
| 408 |
}
|
| 471 |
}
|
| 472 |
);
|
| 473 |
|
| 474 |
+
j(".groups div#pag a").livequery('click',
|
| 475 |
function() {
|
| 476 |
j('.ajax-loader').toggle();
|
| 477 |
|
bp-themes/bp-sn-parent/groups/single/forum/index.php
CHANGED
|
@@ -22,7 +22,7 @@
|
|
| 22 |
</div>
|
| 23 |
|
| 24 |
<div class="bp-widget">
|
| 25 |
-
<h4><?php _e( 'Forum', 'buddypress' ); ?>
|
| 26 |
|
| 27 |
<form action="<?php bp_forum_action() ?>" method="post" id="forum-topic-form" class="standard-form">
|
| 28 |
<?php if ( bp_has_topics() ) : ?>
|
| 22 |
</div>
|
| 23 |
|
| 24 |
<div class="bp-widget">
|
| 25 |
+
<h4><?php _e( 'Forum', 'buddypress' ); ?> <?php if ( is_user_logged_in() ) : ?><span><a href="#post-new-topic" title="<?php _e( 'Post New', 'buddypress' ) ?>"><?php _e( 'Post New →', 'buddypress' ) ?></a></span><?php endif; ?></h4>
|
| 26 |
|
| 27 |
<form action="<?php bp_forum_action() ?>" method="post" id="forum-topic-form" class="standard-form">
|
| 28 |
<?php if ( bp_has_topics() ) : ?>
|
bp-themes/bp-sn-parent/groups/single/forum/topic.php
CHANGED
|
@@ -25,7 +25,7 @@
|
|
| 25 |
<?php if ( bp_has_topic_posts() ) : ?>
|
| 26 |
<form action="<?php bp_forum_topic_action() ?>" method="post" id="forum-topic-form" class="standard-form">
|
| 27 |
|
| 28 |
-
<h4><a href="<?php bp_forum_permalink() ?>">← <?php _e( 'Forum', 'buddypress' ); ?></a>
|
| 29 |
|
| 30 |
<div class="pagination">
|
| 31 |
|
| 25 |
<?php if ( bp_has_topic_posts() ) : ?>
|
| 26 |
<form action="<?php bp_forum_topic_action() ?>" method="post" id="forum-topic-form" class="standard-form">
|
| 27 |
|
| 28 |
+
<h4><a href="<?php bp_forum_permalink() ?>">← <?php _e( 'Forum', 'buddypress' ); ?></a> <?php if ( is_user_logged_in() ) : ?><span><a href="#post-topic-reply" title="<?php _e( 'Post New', 'buddypress' ) ?>"><?php _e( 'Post Reply →', 'buddypress' ) ?></a></span><?php endif; ?></h4>
|
| 29 |
|
| 30 |
<div class="pagination">
|
| 31 |
|
bp-themes/bp-sn-parent/style.css
CHANGED
|
@@ -2,7 +2,7 @@
|
|
| 2 |
Theme Name: BuddyPress Social Network Parent Theme
|
| 3 |
Theme URI: http://buddypress.org/extend/themes/
|
| 4 |
Description: The social network parent theme for BuddyPress. This theme should not be activated and used directly. BuddyPress themes can be downloaded at: <a href="http://buddypress.org/extend/themes/">http://buddypress.org/extend/themes/</a>
|
| 5 |
-
Version: 1.1
|
| 6 |
Author: BuddyPress.org
|
| 7 |
Author URI: http://buddypress.org
|
| 8 |
*/
|
| 2 |
Theme Name: BuddyPress Social Network Parent Theme
|
| 3 |
Theme URI: http://buddypress.org/extend/themes/
|
| 4 |
Description: The social network parent theme for BuddyPress. This theme should not be activated and used directly. BuddyPress themes can be downloaded at: <a href="http://buddypress.org/extend/themes/">http://buddypress.org/extend/themes/</a>
|
| 5 |
+
Version: 1.1.1
|
| 6 |
Author: BuddyPress.org
|
| 7 |
Author URI: http://buddypress.org
|
| 8 |
*/
|
bp-xprofile/bp-xprofile-classes.php
CHANGED
|
@@ -621,23 +621,6 @@ Class BP_XProfile_Field {
|
|
| 621 |
return true;
|
| 622 |
}
|
| 623 |
}
|
| 624 |
-
|
| 625 |
-
/* Deprecated - Signup fields are now in the template */
|
| 626 |
-
function get_signup_fields() {
|
| 627 |
-
global $wpdb, $bp;
|
| 628 |
-
|
| 629 |
-
$sql = $wpdb->prepare( "SELECT f.id FROM {$bp->profile->table_name_fields} AS f, {$bp->profile->table_name_groups} AS g WHERE g.name = %s AND f.parent_id = 0 AND g.id = f.group_id ORDER BY f.id", get_site_option('bp-xprofile-base-group-name') );
|
| 630 |
-
|
| 631 |
-
if ( !$temp_fields = $wpdb->get_results($sql) )
|
| 632 |
-
return false;
|
| 633 |
-
|
| 634 |
-
for ( $i = 0; $i < count($temp_fields); $i++ ) {
|
| 635 |
-
$fields[] = new BP_XProfile_Field( $temp_fields[$i]->id, null, false );
|
| 636 |
-
}
|
| 637 |
-
|
| 638 |
-
return $fields;
|
| 639 |
-
}
|
| 640 |
-
|
| 641 |
}
|
| 642 |
|
| 643 |
|
| 621 |
return true;
|
| 622 |
}
|
| 623 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 624 |
}
|
| 625 |
|
| 626 |
|
bp-xprofile/deprecated/bp-xprofile-deprecated.php
CHANGED
|
@@ -405,6 +405,23 @@ class BP_XProfile_Field_Deprecated extends BP_XProfile_Field {
|
|
| 405 |
|
| 406 |
return $html;
|
| 407 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 408 |
|
| 409 |
}
|
| 410 |
|
|
@@ -424,7 +441,7 @@ function xprofile_add_signup_fields() {
|
|
| 424 |
global $bp_xprofile_callback, $avatar_error, $avatar_error_msg;
|
| 425 |
|
| 426 |
/* Fetch the fields needed for the signup form */
|
| 427 |
-
$fields =
|
| 428 |
|
| 429 |
if ( $fields ) {
|
| 430 |
?>
|
|
@@ -536,7 +553,7 @@ function xprofile_load_signup_meta() {
|
|
| 536 |
$prev_field_id = -1;
|
| 537 |
|
| 538 |
// Validate all sign up fields
|
| 539 |
-
$fields =
|
| 540 |
|
| 541 |
if ( $fields ) {
|
| 542 |
foreach ( $fields as $field ) {
|
|
@@ -618,7 +635,8 @@ function xprofile_load_signup_meta() {
|
|
| 618 |
// "Handle" upload into temporary location
|
| 619 |
if ( $checked_upload && $checked_size && $checked_type && !$original = bp_core_handle_avatar_upload($_FILES) ) {
|
| 620 |
$bp_signup_avatar_has_errors = true;
|
| 621 |
-
$avatar_error_msg = sprintf( __('Upload Failed! Error was: %s', 'buddypress'), $wp_upload_error );
|
|
|
|
| 622 |
}
|
| 623 |
|
| 624 |
if ( $checked_upload && $checked_size && $checked_type && $original && !$canvas = bp_core_resize_avatar($original) )
|
|
@@ -638,11 +656,18 @@ function xprofile_load_signup_meta() {
|
|
| 638 |
$bp_user_signup_meta['avatar_image_resized'] = $canvas;
|
| 639 |
$bp_user_signup_meta['avatar_image_original'] = $original;
|
| 640 |
|
| 641 |
-
|
| 642 |
}
|
| 643 |
}
|
| 644 |
add_action( 'init', 'xprofile_load_signup_meta' );
|
| 645 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 646 |
function xprofile_load_blog_signup_meta() {
|
| 647 |
global $bp_blog_signup_meta;
|
| 648 |
|
|
@@ -655,8 +680,8 @@ function xprofile_load_blog_signup_meta() {
|
|
| 655 |
'blog_title' => $_POST['blog_title']
|
| 656 |
);
|
| 657 |
|
| 658 |
-
$bp_meta = unserialize( stripslashes( $
|
| 659 |
-
$bp_blog_signup_meta = array_merge( $bp_meta, $blog_meta );
|
| 660 |
}
|
| 661 |
add_action( 'init', 'xprofile_load_blog_signup_meta' );
|
| 662 |
|
|
@@ -670,7 +695,6 @@ function xprofile_on_activate_blog( $blog_id, $user_id, $password, $title, $meta
|
|
| 670 |
}
|
| 671 |
add_action( 'wpmu_activate_blog', 'xprofile_on_activate_blog', 1, 5 );
|
| 672 |
|
| 673 |
-
|
| 674 |
function xprofile_on_activate_user( $user_id, $password, $meta ) {
|
| 675 |
xprofile_extract_signup_meta( $user_id, $meta );
|
| 676 |
|
|
@@ -679,7 +703,7 @@ function xprofile_on_activate_user( $user_id, $password, $meta ) {
|
|
| 679 |
else
|
| 680 |
xprofile_handle_signup_avatar( $user_id, $meta );
|
| 681 |
}
|
| 682 |
-
add_action( 'wpmu_activate_user', 'xprofile_on_activate_user', 1,
|
| 683 |
|
| 684 |
function xprofile_extract_signup_meta( $user_id, $meta ) {
|
| 685 |
// Extract signup meta fields to fill out profile
|
|
@@ -705,12 +729,16 @@ function xprofile_extract_signup_meta( $user_id, $meta ) {
|
|
| 705 |
}
|
| 706 |
|
| 707 |
function xprofile_handle_signup_avatar( $user_id, $meta ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
| 708 |
$resized = $meta['avatar_image_resized'];
|
| 709 |
$original = $meta['avatar_image_original'];
|
| 710 |
-
|
| 711 |
if ( !empty($resized) && !empty($original) ) {
|
| 712 |
// Create and set up the upload dir first.
|
| 713 |
-
$upload_dir =
|
| 714 |
|
| 715 |
$resized_strip_path = explode( '/', $resized );
|
| 716 |
$original_strip_path = explode( '/', $original );
|
|
@@ -729,38 +757,66 @@ function xprofile_handle_signup_avatar( $user_id, $meta ) {
|
|
| 729 |
|
| 730 |
$resized = $resized_new;
|
| 731 |
$original = $original_new;
|
| 732 |
-
|
| 733 |
-
|
| 734 |
-
$
|
| 735 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 736 |
}
|
| 737 |
}
|
| 738 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 739 |
function xprofile_catch_activate_crop() {
|
| 740 |
-
if ( isset( $
|
|
|
|
| 741 |
// The user has cropped their avatar after activating account
|
| 742 |
-
|
| 743 |
// Confirm that the nonce is valid
|
| 744 |
-
|
| 745 |
-
|
| 746 |
-
|
| 747 |
-
|
|
|
|
| 748 |
|
| 749 |
-
if ( $user_id && isset( $_POST['orig'] ) && isset( $_POST['canvas'] ) ) {
|
| 750 |
-
bp_core_check_crop( $_POST['orig'], $_POST['canvas'] );
|
| 751 |
-
$result = bp_core_avatar_cropstore( $_POST['orig'], $_POST['canvas'], $_POST['v1_x1'], $_POST['v1_y1'], $_POST['v1_w'], $_POST['v1_h'], $_POST['v2_x1'], $_POST['v2_y1'], $_POST['v2_w'], $_POST['v2_h'] );
|
| 752 |
-
bp_core_avatar_save( $result, $user_id );
|
| 753 |
-
}
|
| 754 |
-
|
| 755 |
$ud = get_userdata($user_id);
|
| 756 |
$url = site_url( BP_MEMBERS_SLUG . '/' . $ud->user_login );
|
| 757 |
-
|
| 758 |
bp_core_redirect( $url );
|
| 759 |
}
|
| 760 |
}
|
| 761 |
add_action( 'activate_header', 'xprofile_catch_activate_crop' );
|
| 762 |
|
| 763 |
-
|
| 764 |
function xprofile_get_user_by_key($key) {
|
| 765 |
global $wpdb;
|
| 766 |
|
| 405 |
|
| 406 |
return $html;
|
| 407 |
}
|
| 408 |
+
|
| 409 |
+
/* Deprecated - Signup fields are now in the template */
|
| 410 |
+
function get_signup_fields() {
|
| 411 |
+
global $wpdb, $bp;
|
| 412 |
+
|
| 413 |
+
$sql = $wpdb->prepare( "SELECT f.id FROM {$bp->profile->table_name_fields} AS f, {$bp->profile->table_name_groups} AS g WHERE g.name = %s AND f.parent_id = 0 AND g.id = f.group_id ORDER BY f.id", get_site_option('bp-xprofile-base-group-name') );
|
| 414 |
+
|
| 415 |
+
if ( !$temp_fields = $wpdb->get_results($sql) )
|
| 416 |
+
return false;
|
| 417 |
+
|
| 418 |
+
for ( $i = 0; $i < count($temp_fields); $i++ ) {
|
| 419 |
+
$fields[] = new BP_XProfile_Field_Deprecated( $temp_fields[$i]->id, null, false );
|
| 420 |
+
}
|
| 421 |
+
|
| 422 |
+
return $fields;
|
| 423 |
+
}
|
| 424 |
+
|
| 425 |
|
| 426 |
}
|
| 427 |
|
| 441 |
global $bp_xprofile_callback, $avatar_error, $avatar_error_msg;
|
| 442 |
|
| 443 |
/* Fetch the fields needed for the signup form */
|
| 444 |
+
$fields = BP_XProfile_Field_Deprecated::get_signup_fields();
|
| 445 |
|
| 446 |
if ( $fields ) {
|
| 447 |
?>
|
| 553 |
$prev_field_id = -1;
|
| 554 |
|
| 555 |
// Validate all sign up fields
|
| 556 |
+
$fields = BP_XProfile_Field_Deprecated::get_signup_fields();
|
| 557 |
|
| 558 |
if ( $fields ) {
|
| 559 |
foreach ( $fields as $field ) {
|
| 635 |
// "Handle" upload into temporary location
|
| 636 |
if ( $checked_upload && $checked_size && $checked_type && !$original = bp_core_handle_avatar_upload($_FILES) ) {
|
| 637 |
$bp_signup_avatar_has_errors = true;
|
| 638 |
+
$avatar_error_msg = sprintf( __('Upload Failed! Error was: %s', 'buddypress'), $wp_upload_error );
|
| 639 |
+
die;
|
| 640 |
}
|
| 641 |
|
| 642 |
if ( $checked_upload && $checked_size && $checked_type && $original && !$canvas = bp_core_resize_avatar($original) )
|
| 656 |
$bp_user_signup_meta['avatar_image_resized'] = $canvas;
|
| 657 |
$bp_user_signup_meta['avatar_image_original'] = $original;
|
| 658 |
|
| 659 |
+
$bp_user_signup_meta = serialize( $bp_user_signup_meta );
|
| 660 |
}
|
| 661 |
}
|
| 662 |
add_action( 'init', 'xprofile_load_signup_meta' );
|
| 663 |
|
| 664 |
+
function xprofile_render_user_signup_meta() {
|
| 665 |
+
global $bp_user_signup_meta;
|
| 666 |
+
|
| 667 |
+
echo '<input type="hidden" name="bp_xprofile_meta" id="bp_xprofile_meta" value="' . attribute_escape( $bp_user_signup_meta ) . '" />';
|
| 668 |
+
}
|
| 669 |
+
add_action( 'signup_blogform', 'xprofile_render_user_signup_meta' );
|
| 670 |
+
|
| 671 |
function xprofile_load_blog_signup_meta() {
|
| 672 |
global $bp_blog_signup_meta;
|
| 673 |
|
| 680 |
'blog_title' => $_POST['blog_title']
|
| 681 |
);
|
| 682 |
|
| 683 |
+
$bp_meta = unserialize( stripslashes( $_POST['bp_xprofile_meta'] ) );
|
| 684 |
+
$bp_blog_signup_meta = array_merge( (array)$bp_meta, (array)$blog_meta );
|
| 685 |
}
|
| 686 |
add_action( 'init', 'xprofile_load_blog_signup_meta' );
|
| 687 |
|
| 695 |
}
|
| 696 |
add_action( 'wpmu_activate_blog', 'xprofile_on_activate_blog', 1, 5 );
|
| 697 |
|
|
|
|
| 698 |
function xprofile_on_activate_user( $user_id, $password, $meta ) {
|
| 699 |
xprofile_extract_signup_meta( $user_id, $meta );
|
| 700 |
|
| 703 |
else
|
| 704 |
xprofile_handle_signup_avatar( $user_id, $meta );
|
| 705 |
}
|
| 706 |
+
add_action( 'wpmu_activate_user', 'xprofile_on_activate_user', 1, 5 );
|
| 707 |
|
| 708 |
function xprofile_extract_signup_meta( $user_id, $meta ) {
|
| 709 |
// Extract signup meta fields to fill out profile
|
| 729 |
}
|
| 730 |
|
| 731 |
function xprofile_handle_signup_avatar( $user_id, $meta ) {
|
| 732 |
+
global $bp;
|
| 733 |
+
|
| 734 |
+
$meta = maybe_unserialize( $meta );
|
| 735 |
+
|
| 736 |
$resized = $meta['avatar_image_resized'];
|
| 737 |
$original = $meta['avatar_image_original'];
|
| 738 |
+
|
| 739 |
if ( !empty($resized) && !empty($original) ) {
|
| 740 |
// Create and set up the upload dir first.
|
| 741 |
+
$upload_dir = xprofile_avatar_upload_dir( false, $user_id );
|
| 742 |
|
| 743 |
$resized_strip_path = explode( '/', $resized );
|
| 744 |
$original_strip_path = explode( '/', $original );
|
| 757 |
|
| 758 |
$resized = $resized_new;
|
| 759 |
$original = $original_new;
|
| 760 |
+
|
| 761 |
+
$bp->avatar_admin->image = new stdClass;
|
| 762 |
+
$bp->avatar_admin->image->dir = $resized;
|
| 763 |
+
|
| 764 |
+
/* Set the url value for the image */
|
| 765 |
+
$bp->avatar_admin->image->url = str_replace( WP_CONTENT_DIR, WP_CONTENT_URL, $bp->avatar_admin->image->dir );
|
| 766 |
+
|
| 767 |
+
?>
|
| 768 |
+
<form action="<?php echo $bp->root_domain . '/' . BP_ACTIVATION_SLUG ?>" method="post">
|
| 769 |
+
<h3><?php _e( 'Crop Your New Avatar', 'buddypress' ) ?></h3>
|
| 770 |
+
|
| 771 |
+
<img src="<?php echo attribute_escape( $bp->avatar_admin->image->url ) ?>" id="avatar-to-crop" class="avatar" alt="<?php _e( 'Avatar to crop', 'buddypress' ) ?>" />
|
| 772 |
+
|
| 773 |
+
<input type="submit" name="avatar-crop-submit" id="avatar-crop-submit" value="<?php _e( 'Crop Image', 'buddypress' ) ?>" />
|
| 774 |
+
|
| 775 |
+
<input type="hidden" name="image_src" id="image_src" value="<?php echo attribute_escape( $bp->avatar_admin->image->dir ) ?>" />
|
| 776 |
+
<input type="hidden" id="x" name="x" />
|
| 777 |
+
<input type="hidden" id="y" name="y" />
|
| 778 |
+
<input type="hidden" id="w" name="w" />
|
| 779 |
+
<input type="hidden" id="h" name="h" />
|
| 780 |
+
<input type="hidden" id="cropped" name="cropped" />
|
| 781 |
+
<input type="hidden" id="key" name="key" value="<?php echo attribute_escape( $_GET['key'] ) ?>"/>
|
| 782 |
+
|
| 783 |
+
<?php wp_nonce_field( 'bp_avatar_cropstore' ); ?>
|
| 784 |
+
</form><?php
|
| 785 |
}
|
| 786 |
}
|
| 787 |
|
| 788 |
+
function xprofile_deprecated_add_cropper_js() {
|
| 789 |
+
global $bp;
|
| 790 |
+
|
| 791 |
+
/* If we are using a BuddyPress 1.1+ theme ignore this. */
|
| 792 |
+
if ( !file_exists( WP_CONTENT_DIR . '/bp-themes' ) )
|
| 793 |
+
return false;
|
| 794 |
+
|
| 795 |
+
if ( $bp->current_component == BP_ACTIVATION_SLUG )
|
| 796 |
+
add_action( 'wp', 'bp_core_add_jquery_cropper' );
|
| 797 |
+
}
|
| 798 |
+
add_action( 'init', 'xprofile_deprecated_add_cropper_js' );
|
| 799 |
+
|
| 800 |
function xprofile_catch_activate_crop() {
|
| 801 |
+
if ( isset( $_POST['cropped'] ) ) {
|
| 802 |
+
|
| 803 |
// The user has cropped their avatar after activating account
|
| 804 |
+
|
| 805 |
// Confirm that the nonce is valid
|
| 806 |
+
check_admin_referer( 'bp_avatar_cropstore' );
|
| 807 |
+
|
| 808 |
+
$user_id = xprofile_get_user_by_key( $_POST['key'] );
|
| 809 |
+
|
| 810 |
+
bp_core_avatar_handle_crop( array( 'item_id' => $user_id, 'original_file' => str_replace( WP_CONTENT_DIR, '', $_POST['image_src'] ), 'crop_x' => $_POST['x'], 'crop_y' => $_POST['y'], 'crop_w' => $_POST['w'], 'crop_h' => $_POST['h'] ) );
|
| 811 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 812 |
$ud = get_userdata($user_id);
|
| 813 |
$url = site_url( BP_MEMBERS_SLUG . '/' . $ud->user_login );
|
| 814 |
+
|
| 815 |
bp_core_redirect( $url );
|
| 816 |
}
|
| 817 |
}
|
| 818 |
add_action( 'activate_header', 'xprofile_catch_activate_crop' );
|
| 819 |
|
|
|
|
| 820 |
function xprofile_get_user_by_key($key) {
|
| 821 |
global $wpdb;
|
| 822 |
|
readme.txt
CHANGED
|
@@ -3,7 +3,7 @@ Contributors: apeatling
|
|
| 3 |
Tags: wpmu, buddypress, social, networking, profiles, messaging, friends, groups, forums, activity
|
| 4 |
Requires at least: WordPress MU 2.8.4
|
| 5 |
Tested up to: WordPress MU 2.8.4
|
| 6 |
-
Stable tag: 1.1
|
| 7 |
|
| 8 |
BuddyPress is a suite of WordPress MU social networking plugins and themes.
|
| 9 |
|
|
@@ -72,3 +72,7 @@ Bugs can be reported here: http://trac.buddypress.org/newticket
|
|
| 72 |
= Where can checkout the latest bleeding edge? =
|
| 73 |
|
| 74 |
BuddyPress subversion trunk can be found at: http://svn.buddypress.org/trunk/
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
Tags: wpmu, buddypress, social, networking, profiles, messaging, friends, groups, forums, activity
|
| 4 |
Requires at least: WordPress MU 2.8.4
|
| 5 |
Tested up to: WordPress MU 2.8.4
|
| 6 |
+
Stable tag: 1.1.1
|
| 7 |
|
| 8 |
BuddyPress is a suite of WordPress MU social networking plugins and themes.
|
| 9 |
|
| 72 |
= Where can checkout the latest bleeding edge? =
|
| 73 |
|
| 74 |
BuddyPress subversion trunk can be found at: http://svn.buddypress.org/trunk/
|
| 75 |
+
|
| 76 |
+
== Changelog ==
|
| 77 |
+
|
| 78 |
+
See http://buddypress.org/about/release-history/ for a list of changes.
|
