BuddyPress - Version 1.2.7

Version Description

Fixes over 10 bugs.

=

Download this release

Release Info

Developer DJPaul
Plugin Icon 128x128 BuddyPress
Version 1.2.7
Comparing to
See all releases

Code changes from version 1.2.6 to 1.2.7

bp-blogs.php CHANGED
@@ -407,37 +407,38 @@ function bp_blogs_record_post( $post_id, $post, $user_id = false ) {
407
  if ( !$user_id )
408
  $user_id = (int)$post->post_author;
409
 
410
- /* This is to stop infinite loops with Donncha's sitewide tags plugin */
411
- if ( (int)$bp->site_options['tags_blog_id'] == (int)$blog_id )
412
  return false;
413
 
414
- /* Don't record this if it's not a post */
415
- if ( $post->post_type != 'post' )
416
  return false;
417
 
418
- if ( 'publish' == $post->post_status && '' == $post->post_password ) {
419
  if ( (int)get_blog_option( $blog_id, 'blog_public' ) || !bp_core_is_multisite() ) {
420
- /* Record this in activity streams */
421
- $post_permalink = get_permalink( $post_id );
422
-
423
- $activity_action = sprintf( __( '%s wrote a new blog post: %s', 'buddypress' ), bp_core_get_userlink( (int)$post->post_author ), '<a href="' . $post_permalink . '">' . $post->post_title . '</a>' );
424
  $activity_content = $post->post_content;
425
 
426
  bp_blogs_record_activity( array(
427
- 'user_id' => (int)$post->post_author,
428
- 'action' => apply_filters( 'bp_blogs_activity_new_post_action', $activity_action, &$post, $post_permalink ),
429
- 'content' => apply_filters( 'bp_blogs_activity_new_post_content', $activity_content, &$post, $post_permalink ),
430
- 'primary_link' => apply_filters( 'bp_blogs_activity_new_post_primary_link', $post_permalink, $post_id ),
431
- 'type' => 'new_blog_post',
432
- 'item_id' => $blog_id,
433
  'secondary_item_id' => $post_id,
434
- 'recorded_time' => $post->post_date_gmt
435
  ));
436
  }
437
- } else
438
- bp_blogs_remove_post( $post_id, $blog_id );
439
 
440
- bp_blogs_update_blogmeta( $blog_id, 'last_activity', bp_core_current_time() );
 
 
 
 
441
 
442
  do_action( 'bp_blogs_new_blog_post', $post_id, $post, $user_id );
443
  }
@@ -463,7 +464,7 @@ function bp_blogs_record_comment( $comment_id, $is_approved = true ) {
463
  $recorded_comment = get_comment( $comment_id );
464
 
465
  // Don't record activity if the comment hasn't been approved
466
- if ( !$is_approved || !$recorded_comment->comment_approved )
467
  return false;
468
 
469
  // Don't record activity if no email address has been included
@@ -516,7 +517,7 @@ function bp_blogs_record_comment( $comment_id, $is_approved = true ) {
516
  return $recorded_comment;
517
  }
518
  add_action( 'comment_post', 'bp_blogs_record_comment', 10, 2 );
519
- add_action( 'edit_comment', 'bp_blogs_record_comment', 10 );
520
 
521
  function bp_blogs_manage_comment( $comment_id, $comment_status ) {
522
  if ( 'spam' == $comment_status || 'hold' == $comment_status || 'delete' == $comment_status || 'trash' == $comment_status )
407
  if ( !$user_id )
408
  $user_id = (int)$post->post_author;
409
 
410
+ // This is to stop infinite loops with Donncha's sitewide tags plugin
411
+ if ( (int)$blog_id == (int)$bp->site_options['tags_blog_id'] )
412
  return false;
413
 
414
+ // Don't record this if it's not a post
415
+ if ( 'post' != $post->post_type )
416
  return false;
417
 
418
+ if ( 'publish' == $post->post_status && empty( $post->post_password ) ) {
419
  if ( (int)get_blog_option( $blog_id, 'blog_public' ) || !bp_core_is_multisite() ) {
420
+ // Record this in activity streams
421
+ $post_permalink = get_permalink( $post_id );
422
+ $activity_action = sprintf( __( '%s wrote a new blog post: %s', 'buddypress' ), bp_core_get_userlink( (int)$post->post_author ), '<a href="' . $post_permalink . '">' . $post->post_title . '</a>' );
 
423
  $activity_content = $post->post_content;
424
 
425
  bp_blogs_record_activity( array(
426
+ 'user_id' => (int)$post->post_author,
427
+ 'action' => apply_filters( 'bp_blogs_activity_new_post_action', $activity_action, &$post, $post_permalink ),
428
+ 'content' => apply_filters( 'bp_blogs_activity_new_post_content', $activity_content, &$post, $post_permalink ),
429
+ 'primary_link' => apply_filters( 'bp_blogs_activity_new_post_primary_link', $post_permalink, $post_id ),
430
+ 'type' => 'new_blog_post',
431
+ 'item_id' => $blog_id,
432
  'secondary_item_id' => $post_id,
433
+ 'recorded_time' => $post->post_date_gmt
434
  ));
435
  }
 
 
436
 
437
+ // Update the blogs last activity
438
+ bp_blogs_update_blogmeta( $blog_id, 'last_activity', bp_core_current_time() );
439
+ } else {
440
+ bp_blogs_remove_post( $post_id, $blog_id );
441
+ }
442
 
443
  do_action( 'bp_blogs_new_blog_post', $post_id, $post, $user_id );
444
  }
464
  $recorded_comment = get_comment( $comment_id );
465
 
466
  // Don't record activity if the comment hasn't been approved
467
+ if ( empty( $is_approved ) )
468
  return false;
469
 
470
  // Don't record activity if no email address has been included
517
  return $recorded_comment;
518
  }
519
  add_action( 'comment_post', 'bp_blogs_record_comment', 10, 2 );
520
+ //add_action( 'edit_comment', 'bp_blogs_record_comment', 10 );
521
 
522
  function bp_blogs_manage_comment( $comment_id, $comment_status ) {
523
  if ( 'spam' == $comment_status || 'hold' == $comment_status || 'delete' == $comment_status || 'trash' == $comment_status )
bp-core.php CHANGED
@@ -254,9 +254,8 @@ function bp_core_install() {
254
  require_once( ABSPATH . 'wp-admin/includes/upgrade.php' );
255
  dbDelta( $sql );
256
 
257
- /* Add names of root components to the banned blog list to avoid conflicts */
258
- if ( bp_core_is_multisite() )
259
- bp_core_add_illegal_names();
260
 
261
  update_site_option( 'bp-core-db-version', BP_CORE_DB_VERSION );
262
  }
@@ -1678,34 +1677,74 @@ function bp_core_referrer() {
1678
  }
1679
 
1680
  /**
1681
- * bp_core_add_illegal_names()
1682
  *
1683
- * Adds illegal names to WP so that root components will not conflict with
1684
- * blog names on a subdirectory installation.
1685
  *
1686
  * For example, it would stop someone creating a blog with the slug "groups".
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1687
  *
1688
- * @package BuddyPress Core
1689
- * @global $bp The global BuddyPress settings variable created in bp_core_setup_globals()
 
 
 
 
1690
  */
1691
- function bp_core_add_illegal_names() {
1692
- global $bp;
 
1693
 
1694
- $current = maybe_unserialize( get_site_option( 'illegal_names' ) );
1695
- $bp_illegal_names = $bp->root_components;
 
 
 
 
 
1696
 
1697
- if ( is_array( $current ) ) {
1698
- foreach( (array)$bp_illegal_names as $bp_illegal_name ) {
1699
- if ( !in_array( $bp_illegal_name, $current ) )
1700
- $current[] = $bp_illegal_name;
1701
- }
1702
- $new = $current;
1703
- } else {
1704
- $bp_illegal_names[] = $current;
1705
- $new = $bp_illegal_names;
1706
- }
1707
 
1708
- update_site_option( 'illegal_names', $new );
 
 
 
 
 
 
 
1709
  }
1710
 
1711
  /**
@@ -1727,7 +1766,7 @@ function bp_core_delete_account( $user_id = false ) {
1727
  $user_id = $bp->loggedin_user->id;
1728
 
1729
  /* Make sure account deletion is not disabled */
1730
- if ( (int)get_site_option( 'bp-disable-account-deletion' ) )
1731
  return false;
1732
 
1733
  /* Site admins cannot be deleted */
@@ -1963,11 +2002,17 @@ add_action( 'make_spam_user', 'bp_core_remove_data' );
1963
  * @package BuddyPress Core
1964
  */
1965
  function bp_core_load_buddypress_textdomain() {
1966
- $locale = apply_filters( 'buddypress_locale', get_locale() );
1967
- $mofile = BP_PLUGIN_DIR . "/bp-languages/buddypress-$locale.mo";
1968
-
1969
- if ( file_exists( $mofile ) )
1970
- load_textdomain( 'buddypress', $mofile );
 
 
 
 
 
 
1971
  }
1972
  add_action ( 'bp_loaded', 'bp_core_load_buddypress_textdomain', 2 );
1973
 
254
  require_once( ABSPATH . 'wp-admin/includes/upgrade.php' );
255
  dbDelta( $sql );
256
 
257
+ // Add names of root components to the banned name list to avoid conflicts
258
+ bp_core_flush_illegal_names();
 
259
 
260
  update_site_option( 'bp-core-db-version', BP_CORE_DB_VERSION );
261
  }
1677
  }
1678
 
1679
  /**
1680
+ * bp_core_get_illegal_names()
1681
  *
1682
+ * Return a friendly and filtered list of all illegal names to prevent crafty
1683
+ * individuals from hi-jacking your network's components and/or administration
1684
  *
1685
  * For example, it would stop someone creating a blog with the slug "groups".
1686
+ */
1687
+ function bp_core_get_illegal_names() {
1688
+
1689
+ // BuddyPress core illegal names
1690
+ $bp_illegal_names[] = defined( 'BP_GROUPS_SLUG' ) ? BP_GROUPS_SLUG : 'groups';
1691
+ $bp_illegal_names[] = defined( 'BP_MEMBERS_SLUG' ) ? BP_MEMBERS_SLUG : 'members';
1692
+ $bp_illegal_names[] = defined( 'BP_FORUMS_SLUG' ) ? BP_FORUMS_SLUG : 'forums';
1693
+ $bp_illegal_names[] = defined( 'BP_BLOGS_SLUG' ) ? BP_BLOGS_SLUG : 'blogs';
1694
+ $bp_illegal_names[] = defined( 'BP_ACTIVITY_SLUG' ) ? BP_ACTIVITY_SLUG : 'activity';
1695
+ $bp_illegal_names[] = defined( 'BP_XPROFILE_SLUG' ) ? BP_XPROFILE_SLUG : 'profile';
1696
+ $bp_illegal_names[] = defined( 'BP_FRIENDS_SLUG' ) ? BP_FRIENDS_SLUG : 'friends';
1697
+ $bp_illegal_names[] = defined( 'BP_SEARCH_SLUG' ) ? BP_SEARCH_SLUG : 'search';
1698
+ $bp_illegal_names[] = defined( 'BP_SETTINGS_SLUG' ) ? BP_SETTINGS_SLUG : 'settings';
1699
+ $bp_illegal_names[] = defined( 'BP_REGISTER_SLUG' ) ? BP_REGISTER_SLUG : 'register';
1700
+ $bp_illegal_names[] = defined( 'BP_ACTIVATION_SLUG' ) ? BP_ACTIVATION_SLUG : 'activation';
1701
+
1702
+ // WordPress core illegal names
1703
+ $wp_illegal_names = array( 'www', 'web', 'root', 'admin', 'main', 'invite', 'administrator', 'files' );
1704
+
1705
+ // Merge illegal names together and filter them
1706
+ return apply_filters( 'bp_core_illegal_names', array_merge( $bp_illegal_names, $wp_illegal_names ) );
1707
+ }
1708
+
1709
+ /**
1710
+ * bp_core_update_illegal_names()
1711
  *
1712
+ * Filter the illegal_names site option and make sure it includes a few
1713
+ * specific BuddyPress and multi-site slugs
1714
+ *
1715
+ * @param array|string $value Illegal names from field
1716
+ * @param array|string $oldvalue The value as it is currently
1717
+ * @return array Merged and unique array of illegal names
1718
  */
1719
+ function bp_core_update_illegal_names( $value = '', $oldvalue = '' ) {
1720
+ if ( !bp_core_is_multisite() )
1721
+ return false;
1722
 
1723
+ // Make sure $value is array
1724
+ if ( is_array( $value ) )
1725
+ $db_illegal_names = $value;
1726
+ elseif ( is_string( $value ) )
1727
+ $db_illegal_names = implode( ' ', $value );
1728
+ elseif ( empty( $value ) )
1729
+ $db_illegal_names = array();
1730
 
1731
+ // Get illegal names, merge with ones in DB, and remove duplicates
1732
+ $bp_illegal_names = bp_core_get_illegal_names();
1733
+ $merged_names = array_merge( (array)$bp_illegal_names, (array)$db_illegal_names );
1734
+ $illegal_names = array_unique( (array)$merged_names );
1735
+
1736
+ return apply_filters( 'bp_core_update_illegal_names', $illegal_names );
1737
+ }
1738
+ add_filter( 'pre_update_site_option_illegal_names', 'bp_core_update_illegal_names', 10, 2 );
 
 
1739
 
1740
+ /**
1741
+ * bp_core_flush_illegal_names()
1742
+ *
1743
+ * Flush illegal names by getting and setting 'illegal_names' site option
1744
+ */
1745
+ function bp_core_flush_illegal_names() {
1746
+ $illegal_names = get_site_option( 'illegal_names' );
1747
+ update_site_option( 'illegal_names', $illegal_names );
1748
  }
1749
 
1750
  /**
1766
  $user_id = $bp->loggedin_user->id;
1767
 
1768
  /* Make sure account deletion is not disabled */
1769
+ if ( (int)get_site_option( 'bp-disable-account-deletion' ) && !$bp->loggedin_user->is_site_admin )
1770
  return false;
1771
 
1772
  /* Site admins cannot be deleted */
2002
  * @package BuddyPress Core
2003
  */
2004
  function bp_core_load_buddypress_textdomain() {
2005
+ $locale = apply_filters( 'buddypress_locale', get_locale() );
2006
+ $mofile = sprintf( 'buddypress-%s.mo', $locale );
2007
+ $mofile_global = WP_LANG_DIR . '/' . $mofile;
2008
+ $mofile_local = BP_PLUGIN_DIR . '/bp-languages/' . $mofile;
2009
+
2010
+ if ( file_exists( $mofile_global ) )
2011
+ return load_textdomain( 'buddypress', $mofile_global );
2012
+ elseif ( file_exists( $mofile_local ) )
2013
+ return load_textdomain( 'buddypress', $mofile_local );
2014
+ else
2015
+ return false;
2016
  }
2017
  add_action ( 'bp_loaded', 'bp_core_load_buddypress_textdomain', 2 );
2018
 
bp-core/bp-core-adminbar.php CHANGED
@@ -44,9 +44,8 @@ function bp_adminbar_login_menu() {
44
  echo '<li class="bp-login no-arrow"><a href="' . $bp->root_domain . '/wp-login.php?redirect_to=' . urlencode( $bp->root_domain ) . '">' . __( 'Log In', 'buddypress' ) . '</a></li>';
45
 
46
  // Show "Sign Up" link if user registrations are allowed
47
- if ( bp_get_signup_allowed() ) {
48
  echo '<li class="bp-signup no-arrow"><a href="' . bp_get_signup_page(false) . '">' . __( 'Sign Up', 'buddypress' ) . '</a></li>';
49
- }
50
  }
51
 
52
 
@@ -100,7 +99,10 @@ function bp_adminbar_account_menu() {
100
  function bp_adminbar_blogs_menu() {
101
  global $bp;
102
 
103
- if ( !is_user_logged_in() || !function_exists('bp_blogs_install') )
 
 
 
104
  return false;
105
 
106
  if ( !$blogs = wp_cache_get( 'bp_blogs_of_user_' . $bp->loggedin_user->id . '_inc_hidden', 'bp' ) ) {
@@ -123,14 +125,12 @@ function bp_adminbar_blogs_menu() {
123
 
124
  echo '<li' . $alt . '>';
125
  echo '<a href="' . $site_url . '">' . esc_html( $blog->name ) . '</a>';
126
-
127
  echo '<ul>';
128
  echo '<li class="alt"><a href="' . $site_url . 'wp-admin/">' . __( 'Dashboard', 'buddypress' ) . '</a></li>';
129
  echo '<li><a href="' . $site_url . 'wp-admin/post-new.php">' . __( 'New Post', 'buddypress' ) . '</a></li>';
130
  echo '<li class="alt"><a href="' . $site_url . 'wp-admin/edit.php">' . __( 'Manage Posts', 'buddypress' ) . '</a></li>';
131
  echo '<li><a href="' . $site_url . 'wp-admin/edit-comments.php">' . __( 'Manage Comments', 'buddypress' ) . '</a></li>';
132
  echo '</ul>';
133
-
134
  echo '</li>';
135
  $counter++;
136
  }
@@ -148,6 +148,26 @@ function bp_adminbar_blogs_menu() {
148
  echo '</li>';
149
  }
150
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
151
  // **** "Notifications" Menu *********
152
  function bp_adminbar_notifications_menu() {
153
  global $bp;
@@ -159,22 +179,26 @@ function bp_adminbar_notifications_menu() {
159
  _e( 'Notifications', 'buddypress' );
160
 
161
  if ( $notifications = bp_core_get_notifications_for_user( $bp->loggedin_user->id ) ) { ?>
162
- <span><?php echo count($notifications) ?></span>
163
  <?php
164
  }
165
 
166
  echo '</a>';
167
  echo '<ul>';
168
 
169
- if ( $notifications ) { ?>
170
- <?php $counter = 0; ?>
171
- <?php for ( $i = 0; $i < count($notifications); $i++ ) { ?>
172
- <?php $alt = ( 0 == $counter % 2 ) ? ' class="alt"' : ''; ?>
 
173
  <li<?php echo $alt ?>><?php echo $notifications[$i] ?></li>
174
- <?php $counter++; ?>
175
- <?php } ?>
176
- <?php } else { ?>
 
 
177
  <li><a href="<?php echo $bp->loggedin_user->domain ?>"><?php _e( 'No new notifications.', 'buddypress' ); ?></a></li>
 
178
  <?php
179
  }
180
 
@@ -186,14 +210,19 @@ function bp_adminbar_notifications_menu() {
186
  function bp_adminbar_authors_menu() {
187
  global $bp, $current_blog, $wpdb;
188
 
189
- if ( $current_blog->blog_id == BP_ROOT_BLOG || !function_exists( 'bp_blogs_install' ) )
 
 
 
 
 
190
  return false;
191
 
192
  $blog_prefix = $wpdb->get_blog_prefix( $current_blog->id );
193
- $authors = $wpdb->get_results( "SELECT user_id, user_login, user_nicename, display_name, user_email, meta_value as caps FROM $wpdb->users u, $wpdb->usermeta um WHERE u.ID = um.user_id AND meta_key = '{$blog_prefix}capabilities' ORDER BY um.user_id" );
194
 
195
  if ( !empty( $authors ) ) {
196
- /* This is a blog, render a menu with links to all authors */
197
  echo '<li id="bp-adminbar-authors-menu"><a href="/">';
198
  _e('Blog Authors', 'buddypress');
199
  echo '</a>';
@@ -218,41 +247,44 @@ function bp_adminbar_authors_menu() {
218
  // **** "Random" Menu (visible when not logged in) ********
219
  function bp_adminbar_random_menu() {
220
  global $bp; ?>
 
221
  <li class="align-right" id="bp-adminbar-visitrandom-menu">
222
  <a href="#"><?php _e( 'Visit', 'buddypress' ) ?></a>
223
  <ul class="random-list">
224
  <li><a href="<?php echo $bp->root_domain . '/' . BP_MEMBERS_SLUG . '/?random-member' ?>"><?php _e( 'Random Member', 'buddypress' ) ?></a></li>
225
 
226
- <?php if ( function_exists('groups_install') ) : ?>
227
- <li class="alt"><a href="<?php echo $bp->root_domain . '/' . $bp->groups->slug . '/?random-group' ?>"><?php _e( 'Random Group', 'buddypress' ) ?></a></li>
 
 
228
  <?php endif; ?>
229
 
230
- <?php if ( function_exists('bp_blogs_install') && bp_core_is_multisite() ) : ?>
231
- <li><a href="<?php echo $bp->root_domain . '/' . $bp->blogs->slug . '/?random-blog' ?>"><?php _e( 'Random Blog', 'buddypress' ) ?></a></li>
 
232
 
233
  <?php endif; ?>
234
 
235
  <?php do_action( 'bp_adminbar_random_menu' ) ?>
 
236
  </ul>
237
  </li>
 
238
  <?php
239
  }
240
 
241
- add_action( 'bp_adminbar_logo', 'bp_adminbar_logo' );
242
- add_action( 'bp_adminbar_menus', 'bp_adminbar_login_menu', 2 );
243
- add_action( 'bp_adminbar_menus', 'bp_adminbar_account_menu', 4 );
244
-
245
- if ( bp_core_is_multisite() )
246
- add_action( 'bp_adminbar_menus', 'bp_adminbar_blogs_menu', 6 );
247
-
248
- add_action( 'bp_adminbar_menus', 'bp_adminbar_notifications_menu', 8 );
249
-
250
- if ( bp_core_is_multisite() )
251
- add_action( 'bp_adminbar_menus', 'bp_adminbar_authors_menu', 12 );
252
-
253
- add_action( 'bp_adminbar_menus', 'bp_adminbar_random_menu', 100 );
254
-
255
- add_action( 'wp_footer', 'bp_core_admin_bar', 8 );
256
- add_action( 'admin_footer', 'bp_core_admin_bar' );
257
 
258
  ?>
44
  echo '<li class="bp-login no-arrow"><a href="' . $bp->root_domain . '/wp-login.php?redirect_to=' . urlencode( $bp->root_domain ) . '">' . __( 'Log In', 'buddypress' ) . '</a></li>';
45
 
46
  // Show "Sign Up" link if user registrations are allowed
47
+ if ( bp_get_signup_allowed() )
48
  echo '<li class="bp-signup no-arrow"><a href="' . bp_get_signup_page(false) . '">' . __( 'Sign Up', 'buddypress' ) . '</a></li>';
 
49
  }
50
 
51
 
99
  function bp_adminbar_blogs_menu() {
100
  global $bp;
101
 
102
+ if ( !is_user_logged_in() || !bp_is_active( 'blogs' ) )
103
+ return false;
104
+
105
+ if ( !is_multisite() )
106
  return false;
107
 
108
  if ( !$blogs = wp_cache_get( 'bp_blogs_of_user_' . $bp->loggedin_user->id . '_inc_hidden', 'bp' ) ) {
125
 
126
  echo '<li' . $alt . '>';
127
  echo '<a href="' . $site_url . '">' . esc_html( $blog->name ) . '</a>';
 
128
  echo '<ul>';
129
  echo '<li class="alt"><a href="' . $site_url . 'wp-admin/">' . __( 'Dashboard', 'buddypress' ) . '</a></li>';
130
  echo '<li><a href="' . $site_url . 'wp-admin/post-new.php">' . __( 'New Post', 'buddypress' ) . '</a></li>';
131
  echo '<li class="alt"><a href="' . $site_url . 'wp-admin/edit.php">' . __( 'Manage Posts', 'buddypress' ) . '</a></li>';
132
  echo '<li><a href="' . $site_url . 'wp-admin/edit-comments.php">' . __( 'Manage Comments', 'buddypress' ) . '</a></li>';
133
  echo '</ul>';
 
134
  echo '</li>';
135
  $counter++;
136
  }
148
  echo '</li>';
149
  }
150
 
151
+ function bp_adminbar_thisblog_menu() {
152
+ if ( current_user_can( 'edit_posts' ) ) {
153
+ echo '<li id="bp-adminbar-thisblog-menu"><a href="' . admin_url() . '">';
154
+
155
+ _e( 'Dashboard', 'buddypress' );
156
+
157
+ echo '</a>';
158
+ echo '<ul>';
159
+
160
+ echo '<li class="alt"><a href="' . admin_url() . 'post-new.php">' . __( 'New Post', 'buddypress' ) . '</a></li>';
161
+ echo '<li><a href="' . admin_url() . 'edit.php">' . __( 'Manage Posts', 'buddypress' ) . '</a></li>';
162
+ echo '<li class="alt"><a href="' . admin_url() . 'edit-comments.php">' . __( 'Manage Comments', 'buddypress' ) . '</a></li>';
163
+
164
+ do_action( 'bp_adminbar_thisblog_items' );
165
+
166
+ echo '</ul>';
167
+ echo '</li>';
168
+ }
169
+ }
170
+
171
  // **** "Notifications" Menu *********
172
  function bp_adminbar_notifications_menu() {
173
  global $bp;
179
  _e( 'Notifications', 'buddypress' );
180
 
181
  if ( $notifications = bp_core_get_notifications_for_user( $bp->loggedin_user->id ) ) { ?>
182
+ <span><?php echo count( $notifications ) ?></span>
183
  <?php
184
  }
185
 
186
  echo '</a>';
187
  echo '<ul>';
188
 
189
+ if ( $notifications ) {
190
+ $counter = 0;
191
+ for ( $i = 0; $i < count($notifications); $i++ ) {
192
+ $alt = ( 0 == $counter % 2 ) ? ' class="alt"' : ''; ?>
193
+
194
  <li<?php echo $alt ?>><?php echo $notifications[$i] ?></li>
195
+
196
+ <?php $counter++;
197
+ }
198
+ } else { ?>
199
+
200
  <li><a href="<?php echo $bp->loggedin_user->domain ?>"><?php _e( 'No new notifications.', 'buddypress' ); ?></a></li>
201
+
202
  <?php
203
  }
204
 
210
  function bp_adminbar_authors_menu() {
211
  global $bp, $current_blog, $wpdb;
212
 
213
+ // Only for multisite
214
+ if ( !is_multisite() )
215
+ return false;
216
+
217
+ // Hide on root blog
218
+ if ( $current_blog->blog_id == BP_ROOT_BLOG || !bp_is_active( 'blogs' ) )
219
  return false;
220
 
221
  $blog_prefix = $wpdb->get_blog_prefix( $current_blog->id );
222
+ $authors = $wpdb->get_results( "SELECT user_id, user_login, user_nicename, display_name, user_email, meta_value as caps FROM $wpdb->users u, $wpdb->usermeta um WHERE u.ID = um.user_id AND meta_key = '{$blog_prefix}capabilities' ORDER BY um.user_id" );
223
 
224
  if ( !empty( $authors ) ) {
225
+ // This is a blog, render a menu with links to all authors
226
  echo '<li id="bp-adminbar-authors-menu"><a href="/">';
227
  _e('Blog Authors', 'buddypress');
228
  echo '</a>';
247
  // **** "Random" Menu (visible when not logged in) ********
248
  function bp_adminbar_random_menu() {
249
  global $bp; ?>
250
+
251
  <li class="align-right" id="bp-adminbar-visitrandom-menu">
252
  <a href="#"><?php _e( 'Visit', 'buddypress' ) ?></a>
253
  <ul class="random-list">
254
  <li><a href="<?php echo $bp->root_domain . '/' . BP_MEMBERS_SLUG . '/?random-member' ?>"><?php _e( 'Random Member', 'buddypress' ) ?></a></li>
255
 
256
+ <?php if ( bp_is_active( 'groups' ) ) : ?>
257
+
258
+ <li class="alt"><a href="<?php echo $bp->root_domain . '/' . $bp->groups->slug . '/?random-group' ?>"><?php _e( 'Random Group', 'buddypress' ) ?></a></li>
259
+
260
  <?php endif; ?>
261
 
262
+ <?php if ( bp_is_active( 'blogs' ) && is_multisite() ) : ?>
263
+
264
+ <li><a href="<?php echo $bp->root_domain . '/' . $bp->blogs->slug . '/?random-blog' ?>"><?php _e( 'Random Blog', 'buddypress' ) ?></a></li>
265
 
266
  <?php endif; ?>
267
 
268
  <?php do_action( 'bp_adminbar_random_menu' ) ?>
269
+
270
  </ul>
271
  </li>
272
+
273
  <?php
274
  }
275
 
276
+ // Actions used to build the admin bar
277
+ add_action( 'bp_adminbar_logo', 'bp_adminbar_logo' );
278
+ add_action( 'bp_adminbar_menus', 'bp_adminbar_login_menu', 2 );
279
+ add_action( 'bp_adminbar_menus', 'bp_adminbar_account_menu', 4 );
280
+ add_action( 'bp_adminbar_menus', 'bp_adminbar_blogs_menu', 6 );
281
+ add_action( 'bp_adminbar_menus', 'bp_adminbar_thisblog_menu', 6 );
282
+ add_action( 'bp_adminbar_menus', 'bp_adminbar_notifications_menu', 8 );
283
+ add_action( 'bp_adminbar_menus', 'bp_adminbar_authors_menu', 12 );
284
+ add_action( 'bp_adminbar_menus', 'bp_adminbar_random_menu', 100 );
285
+
286
+ // Actions used to append admin bar to footer
287
+ add_action( 'wp_footer', 'bp_core_admin_bar', 8 );
288
+ add_action( 'admin_footer', 'bp_core_admin_bar' );
 
 
 
289
 
290
  ?>
bp-core/bp-core-signup.php CHANGED
@@ -255,49 +255,6 @@ add_action( 'wp', 'bp_core_screen_activation', 3 );
255
  * true or false on success or failure.
256
  */
257
 
258
- /**
259
- * bp_core_flush_illegal_names()
260
- *
261
- * Flush illegal names by getting and setting 'illegal_names' site option
262
- */
263
- function bp_core_flush_illegal_names() {
264
- $illegal_names = get_site_option( 'illegal_names' );
265
- update_site_option( 'illegal_names', $illegal_names );
266
- }
267
-
268
- /**
269
- * bp_core_illegal_names()
270
- *
271
- * Filter the illegal_names site option and make sure it includes a few
272
- * specific BuddyPress and Multi-site slugs
273
- *
274
- * @param array|string $value Illegal names from field
275
- * @param array|string $oldvalue The value as it is currently
276
- * @return array Merged and unique array of illegal names
277
- */
278
- function bp_core_illegal_names( $value = '', $oldvalue = '' ) {
279
-
280
- // Make sure $value is array
281
- if ( empty( $value ) )
282
- $db_illegal_names = array();
283
- if ( is_array( $value ) )
284
- $db_illegal_names = $value;
285
- elseif ( is_string( $value ) )
286
- $db_illegal_names = implode( ' ', $names );
287
-
288
- // Add our slugs to the array and allow them to be filtered
289
- $filtered_illegal_names = apply_filters( 'bp_core_illegal_usernames', array( 'www', 'web', 'root', 'admin', 'main', 'invite', 'administrator', BP_GROUPS_SLUG, BP_MEMBERS_SLUG, BP_FORUMS_SLUG, BP_BLOGS_SLUG, BP_ACTIVITY_SLUG, BP_XPROFILE_SLUG, BP_FRIENDS_SLUG, BP_SEARCH_SLUG, BP_SETTINGS_SLUG, BP_REGISTER_SLUG, BP_ACTIVATION_SLUG ) );
290
-
291
- // Merge the arrays together
292
- $merged_names = array_merge( (array)$filtered_illegal_names, (array)$db_illegal_names );
293
-
294
- // Remove duplicates
295
- $illegal_names = array_unique( (array)$merged_names );
296
-
297
- return apply_filters( 'bp_core_illegal_names', $illegal_names );
298
- }
299
- add_filter( 'pre_update_site_option_illegal_names', 'bp_core_illegal_names', 10, 2 );
300
-
301
  /**
302
  * bp_core_validate_user_signup()
303
  *
@@ -391,7 +348,7 @@ function bp_core_signup_user( $user_login, $user_password, $user_email, $usermet
391
  'user_email' => $user_email
392
  ) );
393
 
394
- if ( !$user_id ) {
395
  $errors->add( 'registerfail', sprintf( __('<strong>ERROR</strong>: Couldn&#8217;t register you... please contact the <a href="mailto:%s">webmaster</a> !', 'buddypress' ), get_option( 'admin_email' ) ) );
396
  return $errors;
397
  }
255
  * true or false on success or failure.
256
  */
257
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
258
  /**
259
  * bp_core_validate_user_signup()
260
  *
348
  'user_email' => $user_email
349
  ) );
350
 
351
+ if ( is_wp_error( $user_id ) || !$user_id ) {
352
  $errors->add( 'registerfail', sprintf( __('<strong>ERROR</strong>: Couldn&#8217;t register you... please contact the <a href="mailto:%s">webmaster</a> !', 'buddypress' ), get_option( 'admin_email' ) ) );
353
  return $errors;
354
  }
bp-core/bp-core-templatetags.php CHANGED
@@ -820,15 +820,15 @@ function bp_format_time( $time, $just_date = false ) {
820
  $root_blog_offset = get_blog_option( BP_ROOT_BLOG, 'gmt_offset' );
821
 
822
  // Calculate offset time
823
- $time_offest = $time + ( $root_blog_offset * 3600 );
824
 
825
  // Current date (January 1, 2010)
826
- $date = date( 'F j, Y ', $time_offest );
827
 
828
  // Should we show the time also?
829
  if ( !$just_date ) {
830
  // Current time (9:50pm)
831
- $time = date( ' g:ia', $time_offest );
832
 
833
  // Return string formatted with date and time
834
  $date = sprintf( __( '%1$s at %2$s', 'buddypress' ), $date, $time );
@@ -977,9 +977,9 @@ function bp_activation_page() {
977
  global $bp;
978
 
979
  if ( bp_has_custom_activation_page() )
980
- $page = $bp->root_domain . '/' . BP_ACTIVATION_SLUG;
981
  else
982
- $page = $bp->root_domain . '/wp-activate.php';
983
 
984
  return apply_filters( 'bp_get_activation_page', $page );
985
  }
820
  $root_blog_offset = get_blog_option( BP_ROOT_BLOG, 'gmt_offset' );
821
 
822
  // Calculate offset time
823
+ $time_offset = $time + ( $root_blog_offset * 3600 );
824
 
825
  // Current date (January 1, 2010)
826
+ $date = date( 'F j, Y ', $time_offset );
827
 
828
  // Should we show the time also?
829
  if ( !$just_date ) {
830
  // Current time (9:50pm)
831
+ $time = date( ' g:ia', $time_offset );
832
 
833
  // Return string formatted with date and time
834
  $date = sprintf( __( '%1$s at %2$s', 'buddypress' ), $date, $time );
977
  global $bp;
978
 
979
  if ( bp_has_custom_activation_page() )
980
+ $page = trailingslashit( $bp->root_domain ) . BP_ACTIVATION_SLUG;
981
  else
982
+ $page = trailingslashit( $bp->root_domain ) . 'wp-activate.php';
983
 
984
  return apply_filters( 'bp_get_activation_page', $page );
985
  }
bp-forums/bp-forums-bbpress.php CHANGED
@@ -1,5 +1,4 @@
1
  <?php
2
-
3
  function bp_forums_load_bbpress() {
4
  global $bp, $wpdb, $wp_roles, $current_user, $wp_users_object;
5
  global $bb, $bbdb, $bb_table_prefix, $bb_current_user;
@@ -139,6 +138,62 @@ class BP_Forums_BB_Auth {
139
  * extend it and use this.
140
  */
141
  class BPDB extends WPDB {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
142
  function escape_deep( $data ) {
143
  if ( is_array( $data ) ) {
144
  foreach ( (array) $data as $k => $v ) {
@@ -169,7 +224,4 @@ function backpress_convert_object( &$object, $output ) {
169
  }
170
  }
171
  }
172
-
173
-
174
-
175
  ?>
1
  <?php
 
2
  function bp_forums_load_bbpress() {
3
  global $bp, $wpdb, $wp_roles, $current_user, $wp_users_object;
4
  global $bb, $bbdb, $bb_table_prefix, $bb_current_user;
138
  * extend it and use this.
139
  */
140
  class BPDB extends WPDB {
141
+ var $db_servers = array();
142
+
143
+ function BPDB( $dbuser, $dbpassword, $dbname, $dbhost ) {
144
+ parent::WPDB( $dbuser, $dbpassword, $dbname, $dbhost );
145
+
146
+ $args = func_get_args();
147
+ $args = call_user_func_array( array( &$this, '_init' ), $args );
148
+
149
+ if ( $args['host'] )
150
+ $this->db_servers['dbh_global'] = $args;
151
+ }
152
+
153
+ /**
154
+ * Determine if a database supports a particular feature.
155
+ *
156
+ * Overriden here to work around differences between bbPress', and WordPress', implementation differences.
157
+ * In particular, when BuddyPress tries to run bbPress' SQL installation script, the collation check always
158
+ * failed. The capability is long supported by WordPress' minimum required MySQL version, so this is safe.
159
+ */
160
+ function has_cap( $db_cap, $_table_name='' ) {
161
+ if ( 'collation' == $db_cap )
162
+ return true;
163
+
164
+ return parent::has_cap( $db_cap );
165
+ }
166
+
167
+ /**
168
+ * Initialises the class variables based on provided arguments.
169
+ * Based on, and taken from, the BackPress class in turn taken from the 1.0 branch of bbPress.
170
+ */
171
+ function _init( $args )
172
+ {
173
+ if ( 4 == func_num_args() ) {
174
+ $args = array(
175
+ 'user' => $args,
176
+ 'password' => func_get_arg( 1 ),
177
+ 'name' => func_get_arg( 2 ),
178
+ 'host' => func_get_arg( 3 ),
179
+ 'charset' => defined( 'BBDB_CHARSET' ) ? BBDB_CHARSET : false,
180
+ 'collate' => defined( 'BBDB_COLLATE' ) ? BBDB_COLLATE : false,
181
+ );
182
+ }
183
+
184
+ $defaults = array(
185
+ 'user' => false,
186
+ 'password' => false,
187
+ 'name' => false,
188
+ 'host' => 'localhost',
189
+ 'charset' => false,
190
+ 'collate' => false,
191
+ 'errors' => false
192
+ );
193
+
194
+ return wp_parse_args( $args, $defaults );
195
+ }
196
+
197
  function escape_deep( $data ) {
198
  if ( is_array( $data ) ) {
199
  foreach ( (array) $data as $k => $v ) {
224
  }
225
  }
226
  }
 
 
 
227
  ?>
bp-forums/bp-forums-templatetags.php CHANGED
@@ -958,24 +958,26 @@ function bp_the_topic_post_admin_links( $args = '' ) {
958
  function bp_get_the_topic_post_admin_links( $args = '' ) {
959
  global $topic_template;
960
 
961
- /* Never show for the first post in a topic. */
962
- if ( 0 == $topic_template->current_post && $topic_template->pag_page == 1 )
963
  return;
964
 
965
  $defaults = array(
966
- 'seperator' => '|'
967
  );
968
 
969
  $r = wp_parse_args( $args, $defaults );
970
  extract( $r, EXTR_SKIP );
971
 
 
972
  if ( $_SERVER['QUERY_STRING'] )
973
  $query_vars = '?' . $_SERVER['QUERY_STRING'];
974
 
975
- $links = '<a href="' . wp_nonce_url( bp_get_the_topic_permalink() . 'edit/post/' . $topic_template->post->post_id . '/' . $query_vars, 'bp_forums_edit_post' ) . '">' . __( 'Edit', 'buddypress' ) . '</a> ' . $seperator . ' ';
976
- $links .= '<a class="confirm" id="post-delete-link" href="' . wp_nonce_url( bp_get_the_topic_permalink() . 'delete/post/' . $topic_template->post->post_id, 'bp_forums_delete_post' ) . '">' . __( 'Delete', 'buddypress' ) . '</a> | ';
 
977
 
978
- return $links;
979
  }
980
 
981
  function bp_the_topic_post_edit_text() {
958
  function bp_get_the_topic_post_admin_links( $args = '' ) {
959
  global $topic_template;
960
 
961
+ // Never show for the first post in a topic.
962
+ if ( 0 == $topic_template->current_post && 1 == $topic_template->pag_page )
963
  return;
964
 
965
  $defaults = array(
966
+ 'separator' => ' | '
967
  );
968
 
969
  $r = wp_parse_args( $args, $defaults );
970
  extract( $r, EXTR_SKIP );
971
 
972
+ $query_vars = '';
973
  if ( $_SERVER['QUERY_STRING'] )
974
  $query_vars = '?' . $_SERVER['QUERY_STRING'];
975
 
976
+ $links = array();
977
+ $links[] = '<a href="' . wp_nonce_url( bp_get_the_topic_permalink() . 'edit/post/' . $topic_template->post->post_id . '/' . $query_vars, 'bp_forums_edit_post' ) . '">' . __( 'Edit', 'buddypress' ) . '</a>';
978
+ $links[] .= '<a class="confirm" id="post-delete-link" href="' . wp_nonce_url( bp_get_the_topic_permalink() . 'delete/post/' . $topic_template->post->post_id, 'bp_forums_delete_post' ) . '">' . __( 'Delete', 'buddypress' ) . '</a>';
979
 
980
+ return apply_filters( 'bp_get_the_topic_post_admin_links', implode( $separator, $links ), $links, $r );
981
  }
982
 
983
  function bp_the_topic_post_edit_text() {
bp-friends/bp-friends-templatetags.php CHANGED
@@ -345,6 +345,6 @@ function bp_friend_total_requests_count( $user_id = 0 ) {
345
  if ( empty( $user_id ) )
346
  $user_id = $bp->loggedin_user->id;
347
 
348
- return apply_filters( 'bp_friend_get_total_requests_count', (int) BP_Friends_Friendship::get_friend_user_ids( $user_id, true ) );
349
  }
350
  ?>
345
  if ( empty( $user_id ) )
346
  $user_id = $bp->loggedin_user->id;
347
 
348
+ return apply_filters( 'bp_friend_get_total_requests_count', count( BP_Friends_Friendship::get_friend_user_ids( $user_id, true ) ) );
349
  }
350
  ?>
bp-groups/bp-groups-classes.php CHANGED
@@ -1195,13 +1195,9 @@ class BP_Group_Extension {
1195
  }
1196
 
1197
  // Construct the admin edit tab for the new group extension
1198
- if ( $this->enable_edit_item ) {
1199
  add_action( 'groups_admin_tabs', create_function( '$current, $group_slug', 'if ( "' . esc_attr( $this->slug ) . '" == $current ) $selected = " class=\"current\""; echo "<li{$selected}><a href=\"' . $bp->root_domain . '/' . $bp->groups->slug . '/{$group_slug}/admin/' . esc_attr( $this->slug ) . '\">' . esc_attr( $this->name ) . '</a></li>";' ), 10, 2 );
1200
 
1201
- // Make sure user has access
1202
- if ( !$bp->is_item_admin )
1203
- return false;
1204
-
1205
  // Catch the edit screen and forward it to the plugin template
1206
  if ( $bp->current_component == $bp->groups->slug && 'admin' == $bp->current_action && $this->slug == $bp->action_variables[0] ) {
1207
  add_action( 'wp', array( &$this, 'edit_screen_save' ) );
1195
  }
1196
 
1197
  // Construct the admin edit tab for the new group extension
1198
+ if ( $this->enable_edit_item && $bp->is_item_admin ) {
1199
  add_action( 'groups_admin_tabs', create_function( '$current, $group_slug', 'if ( "' . esc_attr( $this->slug ) . '" == $current ) $selected = " class=\"current\""; echo "<li{$selected}><a href=\"' . $bp->root_domain . '/' . $bp->groups->slug . '/{$group_slug}/admin/' . esc_attr( $this->slug ) . '\">' . esc_attr( $this->name ) . '</a></li>";' ), 10, 2 );
1200
 
 
 
 
 
1201
  // Catch the edit screen and forward it to the plugin template
1202
  if ( $bp->current_component == $bp->groups->slug && 'admin' == $bp->current_action && $this->slug == $bp->action_variables[0] ) {
1203
  add_action( 'wp', array( &$this, 'edit_screen_save' ) );
bp-groups/bp-groups-templatetags.php CHANGED
@@ -124,7 +124,7 @@ class BP_Groups_Template {
124
  $this->group = new BP_Groups_Group( $this->group->group_id, true );
125
  else {
126
  if ( $this->group )
127
- wp_cache_set( 'groups_group_nouserdata_' . $group->group_id, $this->group, 'bp' );
128
  }
129
 
130
  if ( 0 == $this->current_group ) // loop has just started
124
  $this->group = new BP_Groups_Group( $this->group->group_id, true );
125
  else {
126
  if ( $this->group )
127
+ wp_cache_set( 'groups_group_nouserdata_' . $this->group->group_id, $this->group, 'bp' );
128
  }
129
 
130
  if ( 0 == $this->current_group ) // loop has just started
bp-languages/buddypress.pot CHANGED
@@ -1,695 +1,703 @@
1
- # Translation of BuddyPress.
2
  # Copyright (C) 2010 BuddyPress
3
  # This file is distributed under the same license as the BuddyPress package.
4
- # FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
5
- #
6
- #, fuzzy
7
  msgid ""
8
  msgstr ""
9
  "Project-Id-Version: BuddyPress \n"
10
  "Report-Msgid-Bugs-To: wp-polyglots@lists.automattic.com\n"
11
- "POT-Creation-Date: 2010-10-13 13:13+0000\n"
 
 
 
12
  "PO-Revision-Date: 2010-MO-DA HO:MI+ZONE\n"
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
15
- "MIME-Version: 1.0\n"
16
- "Content-Type: text/plain; charset=utf-8\n"
17
- "Content-Transfer-Encoding: 8bit\n"
18
- "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
19
 
20
- #: bp-activity.php:113 bp-activity.php:270
21
- #: bp-activity/feeds/bp-activity-personal-feed.php:21
22
- #: bp-themes/bp-default/header.php:53
23
- msgid "Activity"
24
  msgstr ""
25
 
26
- #: bp-activity.php:120
27
- msgid "Personal"
 
28
  msgstr ""
29
 
30
- #: bp-activity.php:123 bp-core/bp-core-admin.php:201 bp-friends.php:150
31
- msgid "Friends"
32
  msgstr ""
33
 
34
- #: bp-activity.php:126 bp-core/bp-core-admin.php:210
35
- #: bp-core/bp-core-templatetags.php:1029 bp-groups.php:986 bp-groups.php:1410
36
- #: bp-groups.php:1423 bp-groups.php:1436 bp-groups.php:1449
37
- #: bp-groups/bp-groups-widgets.php:13 bp-themes/bp-default/header.php:63
38
- msgid "Groups"
39
  msgstr ""
40
 
41
- #: bp-activity.php:128
42
- msgid "Favorites"
43
  msgstr ""
44
 
45
- #: bp-activity.php:129 bp-themes/bp-default/activity/index.php:50
46
- #, php-format
47
- msgid "@%s Mentions"
48
  msgstr ""
49
 
50
- #: bp-activity.php:133
51
- msgid "My Activity"
52
  msgstr ""
53
 
54
- #: bp-activity.php:251
55
- msgid "You do not have access to this activity."
56
  msgstr ""
57
 
58
- #: bp-activity.php:271 bp-blogs/bp-blogs-templatetags.php:409
59
  #: bp-core/bp-core-admin.php:60 bp-core/bp-core-admin.php:68
60
  #: bp-core/bp-core-admin.php:75 bp-core/bp-core-admin.php:82
61
  #: bp-core/bp-core-admin.php:90 bp-core/bp-core-admin.php:99
62
- #: bp-friends.php:151 bp-groups.php:987 bp-messages.php:245
 
63
  #: bp-themes/bp-default/groups/single/admin.php:26
64
- #: bp-themes/bp-default/registration/register.php:196
65
- #: bp-xprofile/bp-xprofile-admin.php:93
66
  msgid "Yes"
67
  msgstr ""
68
 
69
- #: bp-activity.php:272 bp-blogs/bp-blogs-templatetags.php:413
70
  #: bp-core/bp-core-admin.php:61 bp-core/bp-core-admin.php:69
71
  #: bp-core/bp-core-admin.php:76 bp-core/bp-core-admin.php:83
72
  #: bp-core/bp-core-admin.php:91 bp-core/bp-core-admin.php:100
73
- #: bp-friends.php:152 bp-groups.php:988 bp-messages.php:246
74
- #: bp-themes/bp-default/groups/single/admin.php:27
75
  #: bp-themes/bp-default/registration/register.php:197
 
76
  msgid "No"
77
  msgstr ""
78
 
79
- #: bp-activity.php:279
80
- #, php-format
81
- msgid "A member mentions you in an update using \"@%s\""
82
  msgstr ""
83
 
84
- #: bp-activity.php:285
85
- msgid "A member replies to an update or comment you've posted"
86
  msgstr ""
87
 
88
- #: bp-activity.php:366
89
- msgid "Activity deleted"
90
  msgstr ""
91
 
92
- #: bp-activity.php:368
93
- msgid "There was an error when deleting that activity"
94
  msgstr ""
95
 
96
- #: bp-activity.php:388 bp-themes/bp-default/_inc/ajax.php:124
97
- msgid "Please enter some content to post."
98
  msgstr ""
99
 
100
- #: bp-activity.php:403
101
- msgid "Update Posted!"
102
  msgstr ""
103
 
104
- #: bp-activity.php:405
105
- msgid "There was an error when posting your update, please try again."
106
  msgstr ""
107
 
108
- #: bp-activity.php:424 bp-themes/bp-default/_inc/ajax.php:162
109
- msgid "Please do not leave the comment area blank."
110
  msgstr ""
111
 
112
- #: bp-activity.php:435
113
- msgid "Reply Posted!"
114
  msgstr ""
115
 
116
- #: bp-activity.php:437 bp-themes/bp-default/_inc/ajax.php:167
117
- #: bp-themes/bp-default/_inc/ajax.php:178
118
- msgid "There was an error posting that reply, please try again."
119
  msgstr ""
120
 
121
- #: bp-activity.php:453
122
- msgid "Activity marked as favorite."
123
  msgstr ""
124
 
125
- #: bp-activity.php:455
126
- msgid ""
127
- "There was an error marking that activity as a favorite, please try again."
128
  msgstr ""
129
 
130
- #: bp-activity.php:471
131
- msgid "Activity removed as favorite."
132
  msgstr ""
133
 
134
- #: bp-activity.php:473
135
- msgid ""
136
- "There was an error removing that activity as a favorite, please try again."
137
  msgstr ""
138
 
139
- #: bp-activity.php:699
140
- #, php-format
141
- msgid "%s posted an update:"
142
  msgstr ""
143
 
144
- #: bp-activity.php:752
145
- #, php-format
146
- msgid "%s posted a new activity comment:"
147
  msgstr ""
148
 
149
- #: bp-activity.php:967
150
- msgid "Thumbnail"
151
  msgstr ""
152
 
153
- #: bp-activity.php:1195
154
- msgid "Posted an update"
155
  msgstr ""
156
 
157
- #: bp-activity/bp-activity-notifications.php:32
158
- #, php-format
159
- msgid "%s mentioned you in an update"
160
  msgstr ""
161
 
162
- #: bp-activity/bp-activity-notifications.php:35
163
- #, php-format
164
- msgid ""
165
- "%s mentioned you in an update:\n"
166
- "\n"
167
- "\"%s\"\n"
168
- "\n"
169
- "To view and respond to the message, log in and visit: %s\n"
170
- "\n"
171
- "---------------------\n"
172
  msgstr ""
173
 
174
- #: bp-activity/bp-activity-notifications.php:44
175
- #: bp-activity/bp-activity-notifications.php:88
176
- #: bp-activity/bp-activity-notifications.php:131
177
- #: bp-friends/bp-friends-notifications.php:34
178
- #: bp-friends/bp-friends-notifications.php:72
179
- #: bp-groups/bp-groups-notifications.php:30
180
- #: bp-groups/bp-groups-notifications.php:79
181
- #: bp-groups/bp-groups-notifications.php:133
182
- #: bp-groups/bp-groups-notifications.php:179
183
- #: bp-groups/bp-groups-notifications.php:231
184
- #: bp-groups/bp-groups-notifications.php:289
185
- #: bp-messages/bp-messages-notifications.php:37
186
- #, php-format
187
- msgid "To disable these notifications please log in and go to: %s"
188
  msgstr ""
189
 
190
- #: bp-activity/bp-activity-notifications.php:76
191
- #, php-format
192
- msgid "%s replied to one of your updates"
193
  msgstr ""
194
 
195
- #: bp-activity/bp-activity-notifications.php:79
196
- #, php-format
197
- msgid ""
198
- "%s replied to one of your updates:\n"
199
- "\n"
200
- "\"%s\"\n"
201
- "\n"
202
- "To view your original update and all comments, log in and visit: %s\n"
203
- "\n"
204
- "---------------------\n"
205
  msgstr ""
206
 
207
- #: bp-activity/bp-activity-notifications.php:116
208
- #, php-format
209
- msgid "%s replied to one of your comments"
210
  msgstr ""
211
 
212
- #: bp-activity/bp-activity-notifications.php:122
213
- #, php-format
214
- msgid ""
215
- "%s replied to one of your comments:\n"
216
- "\n"
217
- "\"%s\"\n"
218
- "\n"
219
- "To view the original activity, your comment and all replies, log in and "
220
- "visit: %s\n"
221
- "\n"
222
- "---------------------\n"
223
  msgstr ""
224
 
225
- #: bp-activity/bp-activity-templatetags.php:278
226
- #, php-format
227
- msgid "Viewing item %1$s to %2$s (of %3$s items)"
228
  msgstr ""
229
 
230
- #: bp-activity/bp-activity-templatetags.php:430
231
- #: bp-activity/bp-activity-templatetags.php:476 bp-groups.php:93
232
- msgid "Avatar"
233
  msgstr ""
234
 
235
- #: bp-activity/bp-activity-templatetags.php:577
236
- #, php-format
237
- msgid "&nbsp; %s ago"
238
  msgstr ""
239
 
240
- #: bp-activity/bp-activity-templatetags.php:580
241
- #: bp-themes/bp-default/activity/entry.php:46
242
- msgid "View Thread / Permalink"
243
  msgstr ""
244
 
245
- #: bp-activity/bp-activity-templatetags.php:580
246
- #: bp-activity/bp-activity-templatetags.php:817
247
- #: bp-core/bp-core-templatetags.php:379
248
- #: bp-themes/bp-default/activity/entry.php:46
249
- msgid "View"
250
  msgstr ""
251
 
252
- #: bp-activity/bp-activity-templatetags.php:660
253
- #: bp-themes/bp-default/_inc/ajax.php:190
254
- #, php-format
255
- msgid "%s ago"
256
  msgstr ""
257
 
258
- #: bp-activity/bp-activity-templatetags.php:664
259
- #: bp-themes/bp-default/_inc/ajax.php:191
260
- #: bp-themes/bp-default/activity/entry.php:28
261
- msgid "Reply"
262
  msgstr ""
263
 
264
- #: bp-activity/bp-activity-templatetags.php:668
265
- #: bp-activity/bp-activity-templatetags.php:801
266
- #: bp-forums/bp-forums-templatetags.php:976
267
- #: bp-themes/bp-default/_inc/ajax.php:192 bp-xprofile/bp-xprofile-admin.php:68
268
- #: bp-xprofile/bp-xprofile-admin.php:95
269
- msgid "Delete"
270
  msgstr ""
271
 
272
- #: bp-activity/bp-activity-templatetags.php:877
273
- msgid "profile"
274
  msgstr ""
275
 
276
- #: bp-activity/bp-activity-templatetags.php:877
277
- msgid "friends"
278
  msgstr ""
279
 
280
- #: bp-activity/bp-activity-templatetags.php:877 bp-core/bp-core-classes.php:98
281
- msgid "groups"
282
  msgstr ""
283
 
284
- #: bp-activity/bp-activity-templatetags.php:877
285
- msgid "status"
286
  msgstr ""
287
 
288
- #: bp-activity/bp-activity-templatetags.php:877
289
- msgid "blogs"
290
  msgstr ""
291
 
292
- #: bp-activity/bp-activity-templatetags.php:885
293
- msgid "Clear Filter"
294
  msgstr ""
295
 
296
- #: bp-activity/bp-activity-templatetags.php:956
297
- msgid ""
298
- "Mention this user in a new public message, this will send the user a "
299
- "notification to get their attention."
300
  msgstr ""
301
 
302
- #: bp-activity/bp-activity-templatetags.php:957
303
- msgid "Mention this User"
304
  msgstr ""
305
 
306
- #: bp-activity/feeds/bp-activity-favorites-feed.php:21
307
- #: bp-activity/feeds/bp-activity-favorites-feed.php:24
308
- msgid "Favorite Activity"
309
  msgstr ""
310
 
311
- #: bp-activity/feeds/bp-activity-favorites-feed.php:48
312
- #: bp-activity/feeds/bp-activity-friends-feed.php:44
313
- #: bp-activity/feeds/bp-activity-group-feed.php:43
314
- #: bp-activity/feeds/bp-activity-mentions-feed.php:43
315
- #: bp-activity/feeds/bp-activity-mygroups-feed.php:48
316
- #: bp-activity/feeds/bp-activity-personal-feed.php:43
317
- #: bp-activity/feeds/bp-activity-sitewide-feed.php:44
318
- #, php-format
319
- msgid "Comments: %s"
320
  msgstr ""
321
 
322
- #: bp-activity/feeds/bp-activity-favorites-feed.php:52
323
- #: bp-activity/feeds/bp-activity-friends-feed.php:48
324
- #: bp-activity/feeds/bp-activity-mentions-feed.php:47
325
- #: bp-activity/feeds/bp-activity-personal-feed.php:47
326
- #: bp-themes/bp-default/activity/entry.php:45
327
- msgid "In reply to"
328
- msgstr ""
329
-
330
- #: bp-activity/feeds/bp-activity-friends-feed.php:21
331
- msgid "Friends Activity"
332
  msgstr ""
333
 
334
- #: bp-activity/feeds/bp-activity-friends-feed.php:24
335
- #, php-format
336
- msgid "%s - Friends Activity Feed"
 
 
 
337
  msgstr ""
338
 
339
- #: bp-activity/feeds/bp-activity-group-feed.php:21
340
- msgid "Group Activity"
 
341
  msgstr ""
342
 
343
- #: bp-activity/feeds/bp-activity-group-feed.php:24
344
- #, php-format
345
- msgid "%s - Group Activity Feed"
346
  msgstr ""
347
 
348
- #: bp-activity/feeds/bp-activity-mentions-feed.php:21
349
- #: bp-activity/feeds/bp-activity-mentions-feed.php:24
350
- msgid "Mentions"
351
  msgstr ""
352
 
353
- #: bp-activity/feeds/bp-activity-mygroups-feed.php:21
354
- #: bp-activity/feeds/bp-activity-mygroups-feed.php:24
355
- msgid "My Groups - Public Activity"
356
  msgstr ""
357
 
358
- #: bp-activity/feeds/bp-activity-personal-feed.php:24
359
- #, php-format
360
- msgid "%s - Activity Feed"
361
  msgstr ""
362
 
363
- #: bp-activity/feeds/bp-activity-sitewide-feed.php:22
364
- msgid "Site Wide Activity"
365
  msgstr ""
366
 
367
- #: bp-activity/feeds/bp-activity-sitewide-feed.php:25
368
- msgid "Site Wide Activity Feed"
 
 
369
  msgstr ""
370
 
371
- #: bp-blogs.php:109
372
- #, php-format
373
- msgid "Blogs <span>(%d)</span>"
 
 
374
  msgstr ""
375
 
376
- #: bp-blogs.php:117 bp-core/bp-core-adminbar.php:113
377
- msgid "My Blogs"
378
  msgstr ""
379
 
380
- #: bp-blogs.php:190
381
- msgid "New blog created"
382
  msgstr ""
383
 
384
- #: bp-blogs.php:191
385
- msgid "New blog post published"
386
  msgstr ""
387
 
388
- #: bp-blogs.php:192
389
- msgid "New blog post comment posted"
 
390
  msgstr ""
391
 
392
- #: bp-blogs.php:360
393
- #, php-format
394
- msgid "%s created the blog %s"
395
  msgstr ""
396
 
397
- #: bp-blogs.php:423
398
- #, php-format
399
- msgid "%s wrote a new blog post: %s"
400
  msgstr ""
401
 
402
- #: bp-blogs.php:497
403
- #, php-format
404
- msgid "%s commented on the blog post %s"
405
  msgstr ""
406
 
407
- #: bp-blogs/bp-blogs-templatetags.php:173
408
- #, php-format
409
- msgid "Viewing blog %1$s to %2$s (of %3$s blogs)"
410
  msgstr ""
411
 
412
- #: bp-blogs/bp-blogs-templatetags.php:198
413
- msgid "Blog avatar"
414
  msgstr ""
415
 
416
- #: bp-blogs/bp-blogs-templatetags.php:256 bp-core/bp-core-classes.php:82
417
- #: bp-core/bp-core-templatetags.php:355 bp-core/bp-core-templatetags.php:1327
418
- #: bp-groups/bp-groups-widgets.php:119
419
- #: bp-themes/bp-default/groups/groups-loop.php:31
420
- #: bp-themes/bp-default/groups/single/group-header.php:31
421
- #, php-format
422
- msgid "active %s ago"
423
  msgstr ""
424
 
425
- #: bp-blogs/bp-blogs-templatetags.php:268
426
- #, php-format
427
- msgid "Latest Post: %s"
428
  msgstr ""
429
 
430
- #: bp-blogs/bp-blogs-templatetags.php:340
431
- msgid "There was a problem, please correct the form below and try again."
432
  msgstr ""
433
 
434
- #: bp-blogs/bp-blogs-templatetags.php:343
435
- msgid ""
436
- "By filling out the form below, you can <strong>add a blog to your account</"
437
- "strong>. There is no limit to the number of blogs you can have, so create to "
438
- "your heart's content, but blog responsibly."
439
  msgstr ""
440
 
441
- #: bp-blogs/bp-blogs-templatetags.php:345
442
- msgid ""
443
- "If you&#8217;re not going to use a great blog domain, leave it for a new "
444
- "user. Now have at it!"
445
  msgstr ""
446
 
447
- #: bp-blogs/bp-blogs-templatetags.php:354
448
- msgid "Create Blog &rarr;"
449
  msgstr ""
450
 
451
- #: bp-blogs/bp-blogs-templatetags.php:368
452
- msgid "Blog Name:"
453
  msgstr ""
454
 
455
- #: bp-blogs/bp-blogs-templatetags.php:370
456
- msgid "Blog Domain:"
457
  msgstr ""
458
 
459
- #: bp-blogs/bp-blogs-templatetags.php:382
460
- msgid "Your address will be "
461
  msgstr ""
462
 
463
- #: bp-blogs/bp-blogs-templatetags.php:385
464
- msgid "blogname"
465
  msgstr ""
466
 
467
- #: bp-blogs/bp-blogs-templatetags.php:387
468
- msgid "domain."
469
  msgstr ""
470
 
471
- #: bp-blogs/bp-blogs-templatetags.php:390
472
- msgid ""
473
- "Must be at least 4 characters, letters and numbers only. It cannot be "
474
- "changed so choose carefully!)"
475
  msgstr ""
476
 
477
- #: bp-blogs/bp-blogs-templatetags.php:395
478
- msgid "Blog Title:"
479
  msgstr ""
480
 
481
- #: bp-blogs/bp-blogs-templatetags.php:403
482
- msgid "Privacy:"
483
  msgstr ""
484
 
485
- #: bp-blogs/bp-blogs-templatetags.php:404
486
- msgid ""
487
- "I would like my blog to appear in search engines like Google and Technorati, "
488
- "and in public listings around this site."
489
  msgstr ""
490
 
491
- #: bp-blogs/bp-blogs-templatetags.php:464
492
- msgid "Congratulations! You have successfully registered a new blog."
493
  msgstr ""
494
 
495
- #: bp-blogs/bp-blogs-templatetags.php:466
496
- #, php-format
497
- msgid ""
498
- "<a href=\"http://%1$s\">http://%2$s</a> is your new blog. <a href=\"%3$s"
499
- "\">Login</a> as \"%4$s\" using your existing password."
500
  msgstr ""
501
 
502
- #: bp-blogs/bp-blogs-templatetags.php:476 bp-core/bp-core-templatetags.php:928
503
- #: bp-themes/bp-default/blogs/create.php:10
504
- #: bp-themes/bp-default/blogs/index.php:8
505
- msgid "Create a Blog"
506
  msgstr ""
507
 
508
- #: bp-blogs/bp-blogs-templatetags.php:490
509
- #, php-format
510
- msgid "%s's Blogs"
511
  msgstr ""
512
 
513
- #: bp-blogs/bp-blogs-templatetags.php:491
514
- #, php-format
515
- msgid "%s's Recent Posts"
516
  msgstr ""
517
 
518
- #: bp-blogs/bp-blogs-templatetags.php:492
519
- #, php-format
520
- msgid "%s's Recent Comments"
521
  msgstr ""
522
 
523
- #: bp-blogs/bp-blogs-templatetags.php:501 bp-core/bp-core-templatetags.php:447
524
- #: bp-core/bp-core-templatetags.php:453
525
- #: bp-forums/bp-forums-templatetags.php:1026
526
- #: bp-forums/bp-forums-templatetags.php:1032
527
- #: bp-groups/bp-groups-templatetags.php:1810
528
- #: bp-groups/bp-groups-templatetags.php:1816
529
- #: bp-themes/bp-default/_inc/ajax.php:56
530
- msgid "Search anything..."
531
  msgstr ""
532
 
533
- #: bp-blogs/bp-blogs-templatetags.php:502 bp-core/bp-core-templatetags.php:454
534
- #: bp-core/bp-core-templatetags.php:1048
535
- #: bp-forums/bp-forums-templatetags.php:1033
536
- #: bp-groups/bp-groups-templatetags.php:1817
537
- #: bp-themes/bp-default/header.php:93 bp-themes/bp-default/searchform.php:5
538
- msgid "Search"
539
  msgstr ""
540
 
541
- #: bp-blogs/bp-blogs-templatetags.php:534
542
- #: bp-blogs/bp-blogs-templatetags.php:535
543
- msgid "Visit Blog"
544
  msgstr ""
545
 
546
- #: bp-blogs/bp-blogs-widgets.php:18
547
- msgid "Recent Site Wide Posts"
548
  msgstr ""
549
 
550
- #: bp-blogs/bp-blogs-widgets.php:60
551
- msgid "Sorry, there were no blog posts found. Why not write one?"
552
  msgstr ""
553
 
554
- #: bp-blogs/bp-blogs-widgets.php:80
555
- msgid "Max posts to show:"
556
  msgstr ""
557
 
558
- #: bp-core.php:306 bp-core.php:307
559
- msgid "BuddyPress"
560
  msgstr ""
561
 
562
- #: bp-core.php:313 bp-core/bp-core-settings.php:69
563
- msgid "General Settings"
564
  msgstr ""
565
 
566
- #: bp-core.php:314
567
- msgid "Component Setup"
 
 
 
 
 
 
 
 
 
568
  msgstr ""
569
 
570
- #: bp-core.php:359 bp-xprofile.php:172
571
- msgid "Profile"
572
  msgstr ""
573
 
574
- #: bp-core.php:370 bp-groups/bp-groups-templatetags.php:419
575
- #: bp-xprofile.php:177
576
- msgid "Public"
 
 
 
577
  msgstr ""
578
 
579
- #: bp-core.php:380 bp-core/bp-core-templatetags.php:736
580
- #: bp-themes/bp-default/activity/post-form.php:41 bp-xprofile.php:183
581
- msgid "My Profile"
582
  msgstr ""
583
 
584
- #: bp-core.php:476
585
- msgid "User marked as spammer. Spam users are visible only to site admins."
586
  msgstr ""
587
 
588
- #: bp-core.php:478
589
- msgid "User removed as spammer."
590
  msgstr ""
591
 
592
- #: bp-core.php:512
593
- #, php-format
594
- msgid "%s has been deleted from the system."
595
  msgstr ""
596
 
597
- #: bp-core.php:514
598
- #, php-format
599
- msgid "There was an error deleting %s from the system. Please try again."
600
  msgstr ""
601
 
602
- #: bp-core.php:1417
603
- msgid "year"
604
  msgstr ""
605
 
606
- #: bp-core.php:1417
607
- msgid "years"
608
  msgstr ""
609
 
610
- #: bp-core.php:1418
611
- msgid "month"
612
  msgstr ""
613
 
614
- #: bp-core.php:1418
615
- msgid "months"
616
  msgstr ""
617
 
618
- #: bp-core.php:1419
619
- msgid "week"
620
  msgstr ""
621
 
622
- #: bp-core.php:1419
623
- msgid "weeks"
624
  msgstr ""
625
 
626
- #: bp-core.php:1420
627
- msgid "day"
628
  msgstr ""
629
 
630
- #: bp-core.php:1420
631
- msgid "days"
632
  msgstr ""
633
 
634
- #: bp-core.php:1421
635
- msgid "hour"
636
  msgstr ""
637
 
638
- #: bp-core.php:1421
639
- msgid "hours"
640
  msgstr ""
641
 
642
- #: bp-core.php:1422
643
- msgid "minute"
644
  msgstr ""
645
 
646
- #: bp-core.php:1422
647
- msgid "minutes"
648
  msgstr ""
649
 
650
- #: bp-core.php:1423
651
- msgid "second"
652
  msgstr ""
653
 
654
- #: bp-core.php:1423 bp-core.php:1475
655
- msgid "seconds"
656
  msgstr ""
657
 
658
- #: bp-core.php:1442
659
- msgid "sometime"
660
  msgstr ""
661
 
662
- #: bp-core.php:1470
663
- msgctxt "Separator in time since"
664
- msgid ","
665
  msgstr ""
666
 
667
- #: bp-core.php:1525
668
- msgid "not recently active"
669
  msgstr ""
670
 
671
- #: bp-core.php:1989
672
- msgid ""
673
- "IMPORTANT: <a href=\"http://codex.buddypress.org/getting-started/upgrading-"
674
- "from-10x/\">Read this before attempting to update BuddyPress</a>"
675
  msgstr ""
676
 
677
- #: bp-core.php:2018
678
- #, php-format
679
- msgid ""
680
- "<strong>BuddyPress is almost ready</strong>. You must <a href=\"%s\">update "
681
- "your permalink structure</a> to something other than the default for it to "
682
- "work."
683
  msgstr ""
684
 
685
- #: bp-core.php:2027
686
- #, php-format
687
- msgid ""
688
- "<strong>BuddyPress is ready</strong>. You'll need to <a href='%s'>activate a "
689
- "BuddyPress compatible theme</a> to take advantage of all of the features. "
690
- "We've bundled a default theme, but you can always <a href='%s'>install some "
691
- "other compatible themes</a> or <a href='%s'>upgrade your existing WordPress "
692
- "theme</a>."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
693
  msgstr ""
694
 
695
  #: bp-core/bp-core-admin.php:32
@@ -737,9 +745,7 @@ msgid "Default User Avatar"
737
  msgstr ""
738
 
739
  #: bp-core/bp-core-admin.php:108
740
- msgid ""
741
- "For users without a custom avatar of their own, you can either display a "
742
- "generic logo or a generated one based on their email address"
743
  msgstr ""
744
 
745
  #: bp-core/bp-core-admin.php:110
@@ -767,11 +773,7 @@ msgid "BuddyPress Component Setup"
767
  msgstr ""
768
 
769
  #: bp-core/bp-core-admin.php:166
770
- msgid ""
771
- "By default, all BuddyPress components are enabled. You can selectively "
772
- "disable any of the components by using the form below. Your BuddyPress "
773
- "installation will continue to function, however the features of the disabled "
774
- "components will no longer be accessible to anyone using the site."
775
  msgstr ""
776
 
777
  #: bp-core/bp-core-admin.php:174
@@ -779,9 +781,7 @@ msgid "Activity Streams"
779
  msgstr ""
780
 
781
  #: bp-core/bp-core-admin.php:174
782
- msgid ""
783
- "Allow users to post activity updates and track all activity across the "
784
- "entire site."
785
  msgstr ""
786
 
787
  #: bp-core/bp-core-admin.php:176 bp-core/bp-core-admin.php:185
@@ -803,9 +803,7 @@ msgid "Blog Tracking"
803
  msgstr ""
804
 
805
  #: bp-core/bp-core-admin.php:183
806
- msgid ""
807
- "Tracks blogs, blog posts and blogs comments for a user across a WPMU "
808
- "installation."
809
  msgstr ""
810
 
811
  #: bp-core/bp-core-admin.php:192
@@ -813,9 +811,7 @@ msgid "bbPress Forums"
813
  msgstr ""
814
 
815
  #: bp-core/bp-core-admin.php:192
816
- msgid ""
817
- "Activates bbPress forum support within BuddyPress groups or any other custom "
818
- "component."
819
  msgstr ""
820
 
821
  #: bp-core/bp-core-admin.php:201
@@ -831,9 +827,7 @@ msgid "Private Messaging"
831
  msgstr ""
832
 
833
  #: bp-core/bp-core-admin.php:219
834
- msgid ""
835
- "Let users send private messages to one another. Site admins can also send "
836
- "site-wide notices."
837
  msgstr ""
838
 
839
  #: bp-core/bp-core-admin.php:228
@@ -844,3535 +838,3206 @@ msgstr ""
844
  msgid "Activates customizable profiles and avatars for site users."
845
  msgstr ""
846
 
847
- #: bp-core/bp-core-adminbar.php:44 bp-themes/bp-default/sidebar.php:50
848
- msgid "Log In"
849
  msgstr ""
850
 
851
- #: bp-core/bp-core-adminbar.php:48
852
- msgid "Sign Up"
853
  msgstr ""
854
 
855
- #: bp-core/bp-core-adminbar.php:62
856
- msgid "My Account"
857
  msgstr ""
858
 
859
- #: bp-core/bp-core-adminbar.php:94 bp-core/bp-core-templatetags.php:516
860
- #: bp-core/bp-core-templatetags.php:518 bp-core/bp-core-templatetags.php:1059
861
- #: bp-core/bp-core-templatetags.php:1061 bp-themes/bp-default/sidebar.php:18
862
- msgid "Log Out"
863
  msgstr ""
864
 
865
- #: bp-core/bp-core-adminbar.php:128
866
- msgid "Dashboard"
867
  msgstr ""
868
 
869
- #: bp-core/bp-core-adminbar.php:129
870
- msgid "New Post"
871
  msgstr ""
872
 
873
- #: bp-core/bp-core-adminbar.php:130
874
- msgid "Manage Posts"
875
  msgstr ""
876
 
877
- #: bp-core/bp-core-adminbar.php:131
878
- msgid "Manage Comments"
879
  msgstr ""
880
 
881
- #: bp-core/bp-core-adminbar.php:143
882
- msgid "Create a Blog!"
883
  msgstr ""
884
 
885
- #: bp-core/bp-core-adminbar.php:159 bp-core/bp-core-settings.php:22
886
- msgid "Notifications"
887
  msgstr ""
888
 
889
- #: bp-core/bp-core-adminbar.php:177
890
- msgid "No new notifications."
 
 
 
 
 
891
  msgstr ""
892
 
893
- #: bp-core/bp-core-adminbar.php:198
894
- msgid "Blog Authors"
895
  msgstr ""
896
 
897
- #: bp-core/bp-core-adminbar.php:222
898
- msgid "Visit"
899
  msgstr ""
900
 
901
- #: bp-core/bp-core-adminbar.php:224
902
- msgid "Random Member"
903
  msgstr ""
904
 
905
- #: bp-core/bp-core-adminbar.php:227
906
- msgid "Random Group"
907
  msgstr ""
908
 
909
- #: bp-core/bp-core-adminbar.php:231
910
- msgid "Random Blog"
911
  msgstr ""
912
 
913
- #: bp-core/bp-core-avatars.php:67
914
- msgid "Avatar Image"
915
  msgstr ""
916
 
917
- #: bp-core/bp-core-avatars.php:332
918
- msgid "There is no error, the file uploaded with success"
919
  msgstr ""
920
 
921
- #: bp-core/bp-core-avatars.php:333 bp-core/bp-core-avatars.php:334
922
- msgid "Your image was bigger than the maximum allowed file size of: "
923
  msgstr ""
924
 
925
- #: bp-core/bp-core-avatars.php:335
926
- msgid "The uploaded file was only partially uploaded"
927
  msgstr ""
928
 
929
- #: bp-core/bp-core-avatars.php:336
930
- msgid "No file was uploaded"
931
  msgstr ""
932
 
933
- #: bp-core/bp-core-avatars.php:337
934
- msgid "Missing a temporary folder"
935
  msgstr ""
936
 
937
- #: bp-core/bp-core-avatars.php:341
938
- #, php-format
939
- msgid "Your upload failed, please try again. Error was: %s"
940
  msgstr ""
941
 
942
- #: bp-core/bp-core-avatars.php:346
943
- #, php-format
944
- msgid "The file you uploaded is too big. Please upload a file under %s"
945
  msgstr ""
946
 
947
- #: bp-core/bp-core-avatars.php:351
948
- msgid "Please upload only JPG, GIF or PNG photos."
949
  msgstr ""
950
 
951
- #: bp-core/bp-core-avatars.php:362 bp-core/bp-core-avatars.php:375
952
- #, php-format
953
- msgid "Upload Failed! Error was: %s"
954
  msgstr ""
955
 
956
- #: bp-core/bp-core-catchuri.php:262
957
- msgid ""
958
- "This user has been marked as a spammer. Only site admins can view this "
959
- "profile."
960
  msgstr ""
961
 
962
- #: bp-core/bp-core-classes.php:96
963
- msgid "group"
964
  msgstr ""
965
 
966
- #: bp-core/bp-core-cssjs.php:56
967
- msgid "Are you sure?"
968
  msgstr ""
969
 
970
- #: bp-core/bp-core-filters.php:29
971
- msgid "noreply"
972
  msgstr ""
973
 
974
- #: bp-core/bp-core-filters.php:133 bp-core/bp-core-filters.php:157
975
- msgid "[User Set]"
976
  msgstr ""
977
 
978
- #: bp-core/bp-core-filters.php:177
979
- #, php-format
980
- msgid ""
981
- "Thanks for registering! To complete the activation of your account and blog, "
982
- "please click the following link:\n"
983
- "\n"
984
- "%s\n"
985
- "\n"
986
- "\n"
987
- "\n"
988
- "After you activate, you can visit your blog here:\n"
989
- "\n"
990
- "%s"
991
  msgstr ""
992
 
993
- #: bp-core/bp-core-filters.php:178
994
- #, php-format
995
- msgid "Activate %s"
996
  msgstr ""
997
 
998
- #: bp-core/bp-core-filters.php:209 bp-core/bp-core-signup.php:585
999
- #, php-format
1000
- msgid ""
1001
- "Thanks for registering! To complete the activation of your account please "
1002
- "click the following link:\n"
1003
- "\n"
1004
- "%s\n"
1005
- "\n"
1006
  msgstr ""
1007
 
1008
- #: bp-core/bp-core-filters.php:210 bp-core/bp-core-signup.php:586
1009
- msgid "Activate Your Account"
1010
  msgstr ""
1011
 
1012
- #: bp-core/bp-core-settings.php:17 bp-groups.php:92
1013
- msgid "Settings"
1014
  msgstr ""
1015
 
1016
- #: bp-core/bp-core-settings.php:21
1017
- msgid "General"
1018
  msgstr ""
1019
 
1020
- #: bp-core/bp-core-settings.php:25 bp-core/bp-core-settings.php:176
1021
- msgid "Delete Account"
1022
  msgstr ""
1023
 
1024
- #: bp-core/bp-core-settings.php:77 bp-core/bp-core-settings.php:138
1025
- msgid "Changes Saved."
1026
  msgstr ""
1027
 
1028
- #: bp-core/bp-core-settings.php:83
1029
- msgid "Your passwords did not match"
1030
  msgstr ""
1031
 
1032
- #: bp-core/bp-core-settings.php:88
1033
- msgid "Account Email"
 
1034
  msgstr ""
1035
 
1036
- #: bp-core/bp-core-settings.php:91
1037
- msgid "Change Password <span>(leave blank for no change)</span>"
1038
  msgstr ""
1039
 
1040
- #: bp-core/bp-core-settings.php:92
1041
- msgid "New Password"
1042
  msgstr ""
1043
 
1044
- #: bp-core/bp-core-settings.php:93
1045
- msgid "Repeat New Password"
1046
  msgstr ""
1047
 
1048
- #: bp-core/bp-core-settings.php:96 bp-core/bp-core-settings.php:149
1049
- #: bp-themes/bp-default/groups/single/admin.php:32
1050
- #: bp-themes/bp-default/groups/single/admin.php:100
1051
- #: bp-themes/bp-default/groups/single/forum/edit.php:34
1052
- #: bp-themes/bp-default/groups/single/forum/edit.php:52
1053
- #: bp-themes/bp-default/members/single/profile/edit.php:111
1054
- msgid "Save Changes"
1055
  msgstr ""
1056
 
1057
- #: bp-core/bp-core-settings.php:130
1058
- msgid "Notification Settings"
 
 
 
1059
  msgstr ""
1060
 
1061
- #: bp-core/bp-core-settings.php:143
1062
- msgid "Email Notifications"
 
 
 
1063
  msgstr ""
1064
 
1065
- #: bp-core/bp-core-settings.php:144
1066
- msgid "Send a notification by email when:"
1067
  msgstr ""
1068
 
1069
- #: bp-core/bp-core-settings.php:185
1070
- msgid ""
1071
- "WARNING: Deleting your account will completely remove ALL content associated "
1072
- "with it. There is no way back, please be careful with this option."
1073
  msgstr ""
1074
 
1075
- #: bp-core/bp-core-settings.php:188
1076
- msgid "I understand the consequences of deleting my account."
1077
  msgstr ""
1078
 
1079
- #: bp-core/bp-core-settings.php:191
1080
- msgid "Delete My Account"
1081
  msgstr ""
1082
 
1083
- #: bp-core/bp-core-signup.php:47
1084
- msgid "Please make sure you enter your password twice"
1085
  msgstr ""
1086
 
1087
- #: bp-core/bp-core-signup.php:51
1088
- msgid "The passwords you entered do not match."
1089
  msgstr ""
1090
 
1091
- #: bp-core/bp-core-signup.php:74
1092
- msgid "This is a required field"
1093
  msgstr ""
1094
 
1095
- #: bp-core/bp-core-signup.php:168
1096
- msgid ""
1097
- "There was a problem uploading your avatar, please try uploading it again"
1098
  msgstr ""
1099
 
1100
- #: bp-core/bp-core-signup.php:198 bp-xprofile.php:386
1101
- msgid "There was a problem cropping your avatar, please try uploading it again"
 
 
1102
  msgstr ""
1103
 
1104
- #: bp-core/bp-core-signup.php:200
1105
- msgid "Your new avatar was uploaded successfully"
 
1106
  msgstr ""
1107
 
1108
- #: bp-core/bp-core-signup.php:222 bp-core/bp-core-signup.php:455
1109
- msgid "There was an error activating your account, please try again."
 
 
1110
  msgstr ""
1111
 
1112
- #: bp-core/bp-core-signup.php:236
1113
- msgid "Your account is now active!"
1114
  msgstr ""
1115
 
1116
- #: bp-core/bp-core-signup.php:318
1117
- msgid "Please enter a username"
 
 
 
 
 
 
 
1118
  msgstr ""
1119
 
1120
- #: bp-core/bp-core-signup.php:327
1121
- msgid "Only lowercase letters and numbers allowed"
 
 
 
 
 
 
 
 
 
 
 
1122
  msgstr ""
1123
 
1124
- #: bp-core/bp-core-signup.php:330
1125
- msgid "Username must be at least 4 characters"
 
 
 
 
 
1126
  msgstr ""
1127
 
1128
- #: bp-core/bp-core-signup.php:333
1129
- msgid "Sorry, usernames may not contain the character \"_\"!"
 
1130
  msgstr ""
1131
 
1132
- #: bp-core/bp-core-signup.php:340
1133
- msgid "Sorry, usernames must have letters too!"
1134
  msgstr ""
1135
 
1136
- #: bp-core/bp-core-signup.php:343
1137
- msgid "Please check your email address."
1138
  msgstr ""
1139
 
1140
- #: bp-core/bp-core-signup.php:351
1141
- msgid "Sorry, that email address is not allowed!"
1142
  msgstr ""
1143
 
1144
- #: bp-core/bp-core-signup.php:356
1145
- msgid "Sorry, that username already exists!"
1146
  msgstr ""
1147
 
1148
- #: bp-core/bp-core-signup.php:360
1149
- msgid "Sorry, that email address is already used!"
1150
  msgstr ""
1151
 
1152
- #: bp-core/bp-core-signup.php:395
1153
- #, php-format
1154
- msgid ""
1155
- "<strong>ERROR</strong>: Couldn&#8217;t register you... please contact the <a "
1156
- "href=\"mailto:%s\">webmaster</a> !"
1157
  msgstr ""
1158
 
1159
- #: bp-core/bp-core-signup.php:480 bp-core/bp-core-signup.php:484
1160
- msgid "Invalid activation key"
1161
  msgstr ""
1162
 
1163
- #: bp-core/bp-core-signup.php:527
1164
- #, php-format
1165
- msgid "%s became a registered member"
1166
  msgstr ""
1167
 
1168
- #: bp-core/bp-core-templatetags.php:184
1169
- #, php-format
1170
- msgid "Viewing member %1$s to %2$s (of %3$s active members)"
1171
  msgstr ""
1172
 
1173
- #: bp-core/bp-core-templatetags.php:186
1174
- #, php-format
1175
- msgid "Viewing member %1$s to %2$s (of %3$s members with friends)"
1176
  msgstr ""
1177
 
1178
- #: bp-core/bp-core-templatetags.php:188
1179
- #, php-format
1180
- msgid "Viewing member %1$s to %2$s (of %3$s members online)"
1181
  msgstr ""
1182
 
1183
- #: bp-core/bp-core-templatetags.php:190
1184
- #, php-format
1185
- msgid "Viewing member %1$s to %2$s (of %3$s members)"
1186
  msgstr ""
1187
 
1188
- #: bp-core/bp-core-templatetags.php:314
1189
- msgid "Member avatar"
1190
  msgstr ""
1191
 
1192
- #: bp-core/bp-core-templatetags.php:415
1193
- #, php-format
1194
- msgid "registered %s ago"
1195
  msgstr ""
1196
 
1197
- #: bp-core/bp-core-templatetags.php:599
1198
- msgid "Options"
 
1199
  msgstr ""
1200
 
1201
- #: bp-core/bp-core-templatetags.php:742 bp-themes/bp-default/comments.php:120
1202
- msgid "Name"
1203
  msgstr ""
1204
 
1205
- #: bp-core/bp-core-templatetags.php:752
1206
- msgid "About Me"
1207
  msgstr ""
1208
 
1209
- #: bp-core/bp-core-templatetags.php:762 bp-themes/bp-default/comments.php:130
1210
- msgid "Website"
1211
  msgstr ""
1212
 
1213
- #: bp-core/bp-core-templatetags.php:772
1214
- msgid "Jabber"
1215
  msgstr ""
1216
 
1217
- #: bp-core/bp-core-templatetags.php:782
1218
- msgid "AOL Messenger"
1219
  msgstr ""
1220
 
1221
- #: bp-core/bp-core-templatetags.php:792
1222
- msgid "Yahoo Messenger"
1223
  msgstr ""
1224
 
1225
- #: bp-core/bp-core-templatetags.php:834
1226
- #, php-format
1227
- msgid "%1$s at %2$s"
1228
  msgstr ""
1229
 
1230
- #: bp-core/bp-core-templatetags.php:892 bp-groups.php:201
1231
- #: bp-themes/bp-default/header.php:44 bp-themes/bp-default/header.php:48
1232
- msgid "Home"
1233
  msgstr ""
1234
 
1235
- #: bp-core/bp-core-templatetags.php:896
1236
- msgid "Blog &#124; "
1237
  msgstr ""
1238
 
1239
- #: bp-core/bp-core-templatetags.php:898
1240
- msgid "Blog &#124; Categories &#124; "
1241
  msgstr ""
1242
 
1243
- #: bp-core/bp-core-templatetags.php:900
1244
- msgid "Blog &#124; Tags &#124; "
1245
  msgstr ""
1246
 
1247
- #: bp-core/bp-core-templatetags.php:904 bp-themes/bp-default/attachment.php:9
1248
- #: bp-themes/bp-default/search.php:10
1249
- msgid "Blog"
1250
  msgstr ""
1251
 
1252
- #: bp-core/bp-core-templatetags.php:914 bp-core/bp-core-templatetags.php:916
1253
- #, php-format
1254
- msgid "%s Directory"
1255
  msgstr ""
1256
 
1257
- #: bp-core/bp-core-templatetags.php:919
1258
- #: bp-themes/bp-default/registration/register.php:14
1259
- msgid "Create an Account"
1260
  msgstr ""
1261
 
1262
- #: bp-core/bp-core-templatetags.php:922
1263
- #: bp-themes/bp-default/registration/activate.php:28
1264
- msgid "Activate your Account"
1265
  msgstr ""
1266
 
1267
- #: bp-core/bp-core-templatetags.php:925
1268
- #: bp-themes/bp-default/groups/create.php:7
1269
- #: bp-themes/bp-default/groups/index.php:7
1270
- msgid "Create a Group"
1271
  msgstr ""
1272
 
1273
- #: bp-core/bp-core-templatetags.php:1026 bp-core/bp-core-widgets.php:15
1274
- #: bp-themes/bp-default/groups/single/admin.php:174
1275
- #: bp-themes/bp-default/header.php:58
1276
- msgid "Members"
1277
  msgstr ""
1278
 
1279
- #: bp-core/bp-core-templatetags.php:1032 bp-forums/bp-forums-admin.php:159
1280
- #: bp-themes/bp-default/header.php:68
1281
- msgid "Forums"
1282
  msgstr ""
1283
 
1284
- #: bp-core/bp-core-templatetags.php:1035 bp-themes/bp-default/header.php:75
1285
- msgid "Blogs"
1286
  msgstr ""
1287
 
1288
- #: bp-core/bp-core-templatetags.php:1213
1289
- msgid "Your Avatar"
1290
  msgstr ""
1291
 
1292
- #: bp-core/bp-core-templatetags.php:1286
1293
- msgid "a user"
 
1294
  msgstr ""
1295
 
1296
- #: bp-core/bp-core-widgets.php:34 bp-friends/bp-friends-templatetags.php:7
1297
- #: bp-friends/bp-friends-templatetags.php:23
1298
- #: bp-groups/bp-groups-widgets.php:32 bp-themes/bp-default/blogs/index.php:31
1299
- #: bp-themes/bp-default/members/single/blogs.php:9
1300
- msgid "Newest"
1301
  msgstr ""
1302
 
1303
- #: bp-core/bp-core-widgets.php:35 bp-groups/bp-groups-widgets.php:33
1304
- msgid "Active"
1305
  msgstr ""
1306
 
1307
- #: bp-core/bp-core-widgets.php:39 bp-groups/bp-groups-widgets.php:34
1308
- msgid "Popular"
 
1309
  msgstr ""
1310
 
1311
- #: bp-core/bp-core-widgets.php:66
1312
- msgid "No one has signed up yet!"
 
1313
  msgstr ""
1314
 
1315
- #: bp-core/bp-core-widgets.php:87 bp-core/bp-core-widgets.php:141
1316
- #: bp-core/bp-core-widgets.php:195
1317
- msgid "Max Members to show:"
1318
  msgstr ""
1319
 
1320
- #: bp-core/bp-core-widgets.php:96
1321
- msgid "Who's Online Avatars"
 
 
1322
  msgstr ""
1323
 
1324
- #: bp-core/bp-core-widgets.php:120
1325
- msgid "There are no users currently online"
1326
  msgstr ""
1327
 
1328
- #: bp-core/bp-core-widgets.php:150
1329
- msgid "Recently Active Member Avatars"
 
1330
  msgstr ""
1331
 
1332
- #: bp-core/bp-core-widgets.php:174
1333
- msgid "There are no recently active members"
1334
  msgstr ""
1335
 
1336
- #: bp-core/bp-core-widgets.php:249
1337
- msgid "There were no members found, please try another filter."
1338
  msgstr ""
1339
 
1340
- #: bp-forums.php:56
1341
- msgid "The forums component has not been set up yet."
1342
  msgstr ""
1343
 
1344
- #: bp-forums.php:76 bp-groups.php:554
1345
- msgid "There was an error when creating the topic"
 
1346
  msgstr ""
1347
 
1348
- #: bp-forums.php:78 bp-groups.php:556
1349
- msgid "The topic was created successfully"
1350
  msgstr ""
1351
 
1352
- #: bp-forums.php:82
1353
- msgid "Please pick the group forum where you would like to post this topic."
1354
  msgstr ""
1355
 
1356
- #: bp-forums.php:103 bp-forums/bp-forums-admin.php:8
1357
- msgid "Forums Setup"
 
1358
  msgstr ""
1359
 
1360
- #: bp-forums/bp-forums-admin.php:12
1361
- msgid "Settings Saved."
 
 
1362
  msgstr ""
1363
 
1364
- #: bp-forums/bp-forums-admin.php:22
1365
- #, php-format
1366
- msgid ""
1367
- "bbPress forum integration in BuddyPress has been set up correctly. If you "
1368
- "are having problems you can <a href=\"%s\" title=\"Reinstall bbPress\">re-"
1369
- "install</a>"
1370
  msgstr ""
1371
 
1372
- #: bp-forums/bp-forums-admin.php:23
1373
- msgid ""
1374
- "NOTE: The forums directory will only work if your bbPress tables are in the "
1375
- "same database as your WordPress tables. If you are not using an existing "
1376
- "bbPress install you can ignore this message."
1377
  msgstr ""
1378
 
1379
- #: bp-forums/bp-forums-admin.php:38
1380
- msgid ""
1381
- "The bb-config.php file was not found at that location, please try again."
 
1382
  msgstr ""
1383
 
1384
- #: bp-forums/bp-forums-admin.php:41
1385
- msgid "Forums were set up correctly using your existing bbPress install!"
 
1386
  msgstr ""
1387
 
1388
- #: bp-forums/bp-forums-admin.php:42
1389
- msgid ""
1390
- "BuddyPress will now use its internal copy of bbPress to run the forums on "
1391
- "your site. If you wish, you can remove your old bbPress installation files, "
1392
- "as long as you keep the bb-config.php file in the same location."
1393
  msgstr ""
1394
 
1395
- #: bp-forums/bp-forums-admin.php:47
1396
- msgid "Existing bbPress Installation"
1397
  msgstr ""
1398
 
1399
- #: bp-forums/bp-forums-admin.php:48
1400
- msgid ""
1401
- "BuddyPress can make use of your existing bbPress install. Just provide the "
1402
- "location of your <code>bb-config.php</code> file, and BuddyPress will do the "
1403
- "rest."
1404
  msgstr ""
1405
 
1406
- #: bp-forums/bp-forums-admin.php:50 bp-forums/bp-forums-admin.php:78
1407
- msgid "Complete Installation"
1408
  msgstr ""
1409
 
1410
- #: bp-forums/bp-forums-admin.php:65
1411
- msgid ""
1412
- "All done! Configuration settings have been saved to the file <code>bb-config."
1413
- "php</code> in the root of your WordPress install."
1414
  msgstr ""
1415
 
1416
- #: bp-forums/bp-forums-admin.php:69
1417
- msgid ""
1418
- "A configuration file could not be created. No problem, but you will need to "
1419
- "save the text shown below into a file named <code>bb-config.php</code> in "
1420
- "the root directory of your WordPress installation before you can start using "
1421
- "the forum functionality."
1422
  msgstr ""
1423
 
1424
- #: bp-forums/bp-forums-admin.php:75
1425
- msgid "New bbPress Installation"
 
1426
  msgstr ""
1427
 
1428
- #: bp-forums/bp-forums-admin.php:76
1429
- msgid ""
1430
- "You've decided to set up a new installation of bbPress for forum management "
1431
- "in BuddyPress. This is very simple and is usually just a one click\n"
1432
- "\t\t\t\tprocess. When you're ready, hit the link below."
1433
  msgstr ""
1434
 
1435
- #: bp-forums/bp-forums-admin.php:86
1436
- #, php-format
1437
- msgid ""
1438
- "bbPress files were not found. To install the forums component you must "
1439
- "download a copy of bbPress and make sure it is in the folder: \"%s\""
1440
  msgstr ""
1441
 
1442
- #: bp-forums/bp-forums-admin.php:90
1443
- msgid ""
1444
- "Forums in BuddyPress make use of a bbPress installation to function. You can "
1445
- "choose to either let BuddyPress set up a new bbPress install, or use an "
1446
- "already existing bbPress install. Please choose one of the options below."
1447
  msgstr ""
1448
 
1449
- #: bp-forums/bp-forums-admin.php:92
1450
- msgid "Set up a new bbPress installation"
1451
  msgstr ""
1452
 
1453
- #: bp-forums/bp-forums-admin.php:93
1454
- msgid "Use an existing bbPress installation"
1455
  msgstr ""
1456
 
1457
- #: bp-forums/bp-forums-templatetags.php:304
1458
- #: bp-forums/bp-forums-templatetags.php:353
1459
- #: bp-forums/bp-forums-templatetags.php:923
1460
- msgid "Deleted User"
1461
  msgstr ""
1462
 
1463
- #: bp-forums/bp-forums-templatetags.php:464
1464
- #: bp-groups/bp-groups-templatetags.php:669
1465
- #, php-format
1466
- msgid "%d post"
1467
  msgstr ""
1468
 
1469
- #: bp-forums/bp-forums-templatetags.php:466
1470
- #: bp-groups/bp-groups-templatetags.php:671
1471
- #, php-format
1472
- msgid "%d posts"
 
 
 
1473
  msgstr ""
1474
 
1475
- #: bp-forums/bp-forums-templatetags.php:563
1476
- msgid "Edit Topic"
1477
  msgstr ""
1478
 
1479
- #: bp-forums/bp-forums-templatetags.php:567
1480
- msgid "Sticky Topic"
 
 
 
 
 
 
 
 
 
 
1481
  msgstr ""
1482
 
1483
- #: bp-forums/bp-forums-templatetags.php:569
1484
- msgid "Un-stick Topic"
1485
  msgstr ""
1486
 
1487
- #: bp-forums/bp-forums-templatetags.php:572
1488
- msgid "Open Topic"
 
 
 
 
 
1489
  msgstr ""
1490
 
1491
- #: bp-forums/bp-forums-templatetags.php:574
1492
- msgid "Close Topic"
1493
  msgstr ""
1494
 
1495
- #: bp-forums/bp-forums-templatetags.php:576
1496
- msgid "Delete Topic"
 
 
 
 
 
1497
  msgstr ""
1498
 
1499
- #: bp-forums/bp-forums-templatetags.php:682
1500
- #, php-format
1501
- msgid " matching tag \"%s\""
1502
  msgstr ""
1503
 
1504
- #: bp-forums/bp-forums-templatetags.php:684
1505
- #, php-format
1506
- msgid "Viewing topic %1$s to %2$s (%3$s total topics%4$s)"
1507
- msgstr ""
1508
-
1509
- #: bp-forums/bp-forums-templatetags.php:975
1510
- #: bp-themes/bp-default/functions.php:91 bp-xprofile/bp-xprofile-admin.php:67
1511
- #: bp-xprofile/bp-xprofile-admin.php:94
1512
- msgid "Edit"
1513
  msgstr ""
1514
 
1515
- #: bp-forums/bp-forums-templatetags.php:1008
1516
- #, php-format
1517
- msgid "Viewing post %1$s to %2$s (%3$s total posts)"
1518
  msgstr ""
1519
 
1520
- #: bp-friends.php:70
1521
- #, php-format
1522
- msgid "Friends <span>(%d)</span>"
 
 
 
 
1523
  msgstr ""
1524
 
1525
- #: bp-friends.php:75 bp-friends.php:80 bp-friends.php:320
1526
- #: bp-friends/bp-friends-templatetags.php:40
1527
- msgid "My Friends"
1528
  msgstr ""
1529
 
1530
- #: bp-friends.php:76
1531
- msgid "Requests"
 
 
 
 
 
 
 
 
 
1532
  msgstr ""
1533
 
1534
- #: bp-friends.php:118
1535
- msgid "Friendship accepted"
1536
  msgstr ""
1537
 
1538
- #: bp-friends.php:120
1539
- msgid "Friendship could not be accepted"
 
 
 
 
 
 
 
1540
  msgstr ""
1541
 
1542
- #: bp-friends.php:129
1543
- msgid "Friendship rejected"
1544
  msgstr ""
1545
 
1546
- #: bp-friends.php:131
1547
- msgid "Friendship could not be rejected"
1548
  msgstr ""
1549
 
1550
- #: bp-friends.php:159
1551
- msgid "A member sends you a friendship request"
1552
  msgstr ""
1553
 
1554
- #: bp-friends.php:165
1555
- msgid "A member accepts your friendship request"
1556
  msgstr ""
1557
 
1558
- #: bp-friends.php:208 bp-themes/bp-default/_inc/ajax.php:351
1559
- msgid "Friendship could not be requested."
1560
  msgstr ""
1561
 
1562
- #: bp-friends.php:210
1563
- msgid "Friendship requested"
 
1564
  msgstr ""
1565
 
1566
- #: bp-friends.php:213
1567
- msgid "You are already friends with this user"
1568
  msgstr ""
1569
 
1570
- #: bp-friends.php:215
1571
- msgid "You already have a pending friendship request with this user"
1572
  msgstr ""
1573
 
1574
- #: bp-friends.php:246 bp-themes/bp-default/_inc/ajax.php:341
1575
- msgid "Friendship could not be canceled."
1576
  msgstr ""
1577
 
1578
- #: bp-friends.php:248
1579
- msgid "Friendship canceled"
 
 
 
 
 
 
 
1580
  msgstr ""
1581
 
1582
- #: bp-friends.php:251
1583
- msgid "You are not yet friends with this user"
1584
  msgstr ""
1585
 
1586
- #: bp-friends.php:253
1587
- msgid "You have a pending friendship request with this user"
1588
  msgstr ""
1589
 
1590
- #: bp-friends.php:308
1591
- msgid "New friendship created"
1592
  msgstr ""
1593
 
1594
- #: bp-friends.php:320
1595
- #, php-format
1596
- msgid "%d friends accepted your friendship requests"
1597
  msgstr ""
1598
 
1599
- #: bp-friends.php:324 bp-friends/bp-friends-notifications.php:62
1600
- #, php-format
1601
- msgid "%s accepted your friendship request"
1602
  msgstr ""
1603
 
1604
- #: bp-friends.php:330 bp-friends.php:334
1605
- msgid "Friendship requests"
1606
  msgstr ""
1607
 
1608
- #: bp-friends.php:330
1609
- #, php-format
1610
- msgid "You have %d pending friendship requests"
1611
  msgstr ""
1612
 
1613
- #: bp-friends.php:334
1614
- #, php-format
1615
- msgid "You have a friendship request from %s"
1616
  msgstr ""
1617
 
1618
- #: bp-friends.php:433 bp-friends.php:442
1619
- #, php-format
1620
- msgid "%s and %s are now friends"
1621
  msgstr ""
1622
 
1623
- #: bp-friends/bp-friends-notifications.php:22
1624
- #, php-format
1625
- msgid "New friendship request from %s"
1626
  msgstr ""
1627
 
1628
- #: bp-friends/bp-friends-notifications.php:25
1629
- #, php-format
1630
- msgid ""
1631
- "%s wants to add you as a friend.\n"
1632
- "\n"
1633
- "To view all of your pending friendship requests: %s\n"
1634
- "\n"
1635
- "To view %s's profile: %s\n"
1636
- "\n"
1637
- "---------------------\n"
1638
  msgstr ""
1639
 
1640
- #: bp-friends/bp-friends-notifications.php:65
1641
- #, php-format
1642
- msgid ""
1643
- "%s accepted your friend request.\n"
1644
- "\n"
1645
- "To view %s's profile: %s\n"
1646
- "\n"
1647
- "---------------------\n"
1648
  msgstr ""
1649
 
1650
- #: bp-friends/bp-friends-templatetags.php:6
1651
- #: bp-friends/bp-friends-templatetags.php:20
1652
- #: bp-groups/bp-groups-templatetags.php:1825
1653
- #: bp-groups/bp-groups-templatetags.php:1842
1654
- msgid "Recently Active"
1655
  msgstr ""
1656
 
1657
- #: bp-friends/bp-friends-templatetags.php:8
1658
- #: bp-friends/bp-friends-templatetags.php:26
1659
- #: bp-groups/bp-groups-templatetags.php:1830
1660
- #: bp-groups/bp-groups-templatetags.php:1857
1661
- msgid "Alphabetically"
1662
  msgstr ""
1663
 
1664
- #: bp-friends/bp-friends-templatetags.php:40
1665
- #, php-format
1666
- msgid "%s's Friends"
1667
  msgstr ""
1668
 
1669
- #: bp-friends/bp-friends-templatetags.php:40
1670
- msgid "See All"
1671
  msgstr ""
1672
 
1673
- #: bp-friends/bp-friends-templatetags.php:53
1674
- msgid "You haven't added any friend connections yet."
1675
  msgstr ""
1676
 
1677
- #: bp-friends/bp-friends-templatetags.php:53
1678
- #, php-format
1679
- msgid "%s hasn't created any friend connections yet."
1680
  msgstr ""
1681
 
1682
- #: bp-friends/bp-friends-templatetags.php:93
1683
- msgid "There aren't enough site members to show a random sample just yet."
1684
  msgstr ""
1685
 
1686
- #: bp-friends/bp-friends-templatetags.php:103
1687
- msgid "Filter Friends"
1688
  msgstr ""
1689
 
1690
- #: bp-friends/bp-friends-templatetags.php:138
1691
- #, php-format
1692
- msgid "%d friend"
1693
  msgstr ""
1694
 
1695
- #: bp-friends/bp-friends-templatetags.php:140
1696
- #, php-format
1697
- msgid "%d friends"
1698
  msgstr ""
1699
 
1700
- #: bp-friends/bp-friends-templatetags.php:224
1701
- #: bp-friends/bp-friends-templatetags.php:225
1702
- #: bp-themes/bp-default/_inc/ajax.php:353
1703
- msgid "Friendship Requested"
1704
  msgstr ""
1705
 
1706
- #: bp-friends/bp-friends-templatetags.php:239
1707
- #: bp-friends/bp-friends-templatetags.php:240
1708
- msgid "Cancel Friendship"
1709
  msgstr ""
1710
 
1711
- #: bp-friends/bp-friends-templatetags.php:257
1712
- #: bp-friends/bp-friends-templatetags.php:258
1713
- #: bp-themes/bp-default/_inc/ajax.php:343
1714
- msgid "Add Friend"
1715
  msgstr ""
1716
 
1717
- #: bp-groups.php:91
1718
- msgid "Details"
1719
  msgstr ""
1720
 
1721
- #: bp-groups.php:97 bp-groups.php:154
1722
- msgid "Invites"
 
1723
  msgstr ""
1724
 
1725
- #: bp-groups.php:148
1726
- #, php-format
1727
- msgid "Groups <span>(%d)</span>"
1728
  msgstr ""
1729
 
1730
- #: bp-groups.php:153 bp-groups.php:160
1731
- msgid "My Groups"
1732
  msgstr ""
1733
 
1734
- #: bp-groups.php:179 bp-groups/bp-groups-templatetags.php:930
1735
- #: bp-groups/bp-groups-templatetags.php:1883
1736
- msgid "Group Avatar"
1737
  msgstr ""
1738
 
1739
- #: bp-groups.php:205
1740
- msgid "Admin"
1741
  msgstr ""
1742
 
1743
- #: bp-groups.php:209 bp-groups/bp-groups-templatetags.php:1188
1744
- #: bp-groups/bp-groups-templatetags.php:1189
1745
- #: bp-themes/bp-default/_inc/ajax.php:431
1746
- msgid "Request Membership"
1747
  msgstr ""
1748
 
1749
- #: bp-groups.php:212
1750
- msgid "Forum"
 
 
 
 
1751
  msgstr ""
1752
 
1753
- #: bp-groups.php:214
1754
- #, php-format
1755
- msgid "Members (%s)"
1756
  msgstr ""
1757
 
1758
- #: bp-groups.php:218 bp-themes/bp-default/groups/single/send-invites.php:60
1759
- msgid "Send Invites"
1760
  msgstr ""
1761
 
1762
- #: bp-groups.php:250 bp-xprofile.php:213
1763
- msgid "Admin Options"
1764
  msgstr ""
1765
 
1766
- #: bp-groups.php:253 bp-groups/bp-groups-templatetags.php:939
1767
- #: bp-themes/bp-default/groups/single/admin.php:303
1768
- msgid "Delete Group"
1769
  msgstr ""
1770
 
1771
- #: bp-groups.php:298
1772
- msgid "Group invite could not be accepted"
1773
  msgstr ""
1774
 
1775
- #: bp-groups.php:300
1776
- msgid "Group invite accepted"
1777
  msgstr ""
1778
 
1779
- #: bp-groups.php:306 bp-groups.php:1774 bp-groups.php:2479
1780
- #, php-format
1781
- msgid "%s joined the group %s"
1782
  msgstr ""
1783
 
1784
- #: bp-groups.php:320
1785
- msgid "Group invite could not be rejected"
1786
  msgstr ""
1787
 
1788
- #: bp-groups.php:322
1789
- msgid "Group invite rejected"
1790
  msgstr ""
1791
 
1792
- #: bp-groups.php:376
1793
- msgid "There was an error when replying to that topic"
1794
  msgstr ""
1795
 
1796
- #: bp-groups.php:378
1797
- msgid "Your reply was posted successfully"
1798
  msgstr ""
1799
 
1800
- #: bp-groups.php:392
1801
- msgid "There was an error when making that topic a sticky"
1802
  msgstr ""
1803
 
1804
- #: bp-groups.php:394
1805
- msgid "The topic was made sticky successfully"
1806
  msgstr ""
1807
 
1808
- #: bp-groups.php:406
1809
- msgid "There was an error when unsticking that topic"
1810
  msgstr ""
1811
 
1812
- #: bp-groups.php:408
1813
- msgid "The topic was unstuck successfully"
1814
  msgstr ""
1815
 
1816
- #: bp-groups.php:420
1817
- msgid "There was an error when closing that topic"
1818
  msgstr ""
1819
 
1820
- #: bp-groups.php:422
1821
- msgid "The topic was closed successfully"
1822
  msgstr ""
1823
 
1824
- #: bp-groups.php:434
1825
- msgid "There was an error when opening that topic"
1826
  msgstr ""
1827
 
1828
- #: bp-groups.php:436
1829
- msgid "The topic was opened successfully"
1830
  msgstr ""
1831
 
1832
- #: bp-groups.php:455
1833
- msgid "There was an error deleting the topic"
1834
  msgstr ""
1835
 
1836
- #: bp-groups.php:457
1837
- msgid "The topic was deleted successfully"
1838
  msgstr ""
1839
 
1840
- #: bp-groups.php:477
1841
- msgid "There was an error when editing that topic"
1842
  msgstr ""
1843
 
1844
- #: bp-groups.php:479
1845
- msgid "The topic was edited successfully"
1846
  msgstr ""
1847
 
1848
- #: bp-groups.php:501
1849
- msgid "There was an error deleting that post"
1850
  msgstr ""
1851
 
1852
- #: bp-groups.php:503
1853
- msgid "The post was deleted successfully"
1854
  msgstr ""
1855
 
1856
- #: bp-groups.php:523
1857
- msgid "There was an error when editing that post"
1858
  msgstr ""
1859
 
1860
- #: bp-groups.php:525
1861
- msgid "The post was edited successfully"
1862
  msgstr ""
1863
 
1864
- #: bp-groups.php:592
1865
- msgid "Group invites sent."
1866
  msgstr ""
1867
 
1868
- #: bp-groups.php:618
1869
- msgid ""
1870
- "There was an error sending your group membership request, please try again."
1871
  msgstr ""
1872
 
1873
- #: bp-groups.php:620
1874
- msgid ""
1875
- "Your membership request was sent to the group administrator successfully. "
1876
- "You will be notified when the group administrator responds to your request."
1877
  msgstr ""
1878
 
1879
- #: bp-groups.php:669
1880
- msgid "There was an error updating group details, please try again."
1881
  msgstr ""
1882
 
1883
- #: bp-groups.php:671
1884
- msgid "Group details were successfully updated."
1885
  msgstr ""
1886
 
1887
- #: bp-groups.php:707
1888
- msgid "There was an error updating group settings, please try again."
1889
  msgstr ""
1890
 
1891
- #: bp-groups.php:709
1892
- msgid "Group settings were successfully updated."
1893
  msgstr ""
1894
 
1895
- #: bp-groups.php:739 bp-xprofile.php:433
1896
- msgid "Your avatar was deleted successfully!"
 
1897
  msgstr ""
1898
 
1899
- #: bp-groups.php:741 bp-xprofile.php:435
1900
- msgid "There was a problem deleting that avatar, please try again."
 
 
1901
  msgstr ""
1902
 
1903
- #: bp-groups.php:769
1904
- msgid "There was a problem cropping the avatar, please try uploading it again"
1905
  msgstr ""
1906
 
1907
- #: bp-groups.php:771
1908
- msgid "The new group avatar was uploaded successfully!"
1909
  msgstr ""
1910
 
1911
- #: bp-groups.php:800
1912
- msgid "There was an error when promoting that user, please try again"
1913
  msgstr ""
1914
 
1915
- #: bp-groups.php:802
1916
- msgid "User promoted successfully"
1917
  msgstr ""
1918
 
1919
- #: bp-groups.php:818
1920
- msgid "There was an error when demoting that user, please try again"
1921
  msgstr ""
1922
 
1923
- #: bp-groups.php:820
1924
- msgid "User demoted successfully"
1925
  msgstr ""
1926
 
1927
- #: bp-groups.php:836
1928
- msgid "There was an error when banning that user, please try again"
1929
  msgstr ""
1930
 
1931
- #: bp-groups.php:838
1932
- msgid "User banned successfully"
1933
  msgstr ""
1934
 
1935
- #: bp-groups.php:854
1936
- msgid "There was an error when unbanning that user, please try again"
1937
  msgstr ""
1938
 
1939
- #: bp-groups.php:856
1940
- msgid "User ban removed successfully"
1941
  msgstr ""
1942
 
1943
- #: bp-groups.php:872
1944
- msgid "There was an error removing that user from the group, please try again"
1945
  msgstr ""
1946
 
1947
- #: bp-groups.php:874
1948
- msgid "User removed successfully"
1949
  msgstr ""
1950
 
1951
- #: bp-groups.php:915
1952
- msgid "There was an error accepting the membership request, please try again."
1953
  msgstr ""
1954
 
1955
- #: bp-groups.php:917
1956
- msgid "Group membership request accepted"
1957
  msgstr ""
1958
 
1959
- #: bp-groups.php:927
1960
- msgid "There was an error rejecting the membership request, please try again."
1961
  msgstr ""
1962
 
1963
- #: bp-groups.php:929
1964
- msgid "Group membership request rejected"
1965
  msgstr ""
1966
 
1967
- #: bp-groups.php:961
1968
- msgid "There was an error deleting the group, please try again."
1969
  msgstr ""
1970
 
1971
- #: bp-groups.php:963
1972
- msgid "The group was deleted successfully"
1973
  msgstr ""
1974
 
1975
- #: bp-groups.php:995
1976
- msgid "A member invites you to join a group"
1977
  msgstr ""
1978
 
1979
- #: bp-groups.php:1001
1980
- msgid "Group information is updated"
 
 
1981
  msgstr ""
1982
 
1983
- #: bp-groups.php:1007
1984
- msgid "You are promoted to a group administrator or moderator"
1985
  msgstr ""
1986
 
1987
- #: bp-groups.php:1013
1988
- msgid "A member requests to join a private group for which you are an admin"
 
 
1989
  msgstr ""
1990
 
1991
- #: bp-groups.php:1062
1992
- msgid "There was an error saving group details. Please try again."
1993
  msgstr ""
1994
 
1995
- #: bp-groups.php:1084
1996
- msgid "Please fill in all of the required fields"
1997
  msgstr ""
1998
 
1999
- #: bp-groups.php:1089 bp-groups.php:1116
2000
- msgid "There was an error saving group details, please try again."
2001
  msgstr ""
2002
 
2003
- #: bp-groups.php:1147
2004
- #, php-format
2005
- msgid "%s created the group %s"
2006
  msgstr ""
2007
 
2008
- #: bp-groups.php:1195
2009
- msgid "There was an error saving the group avatar, please try uploading again."
 
2010
  msgstr ""
2011
 
2012
- #: bp-groups.php:1197
2013
- msgid "The group avatar was uploaded successfully!"
2014
  msgstr ""
2015
 
2016
- #: bp-groups.php:1221 bp-groups.php:1228
2017
- msgid "There was an error joining the group."
2018
  msgstr ""
2019
 
2020
- #: bp-groups.php:1230
2021
- msgid "You joined the group!"
2022
  msgstr ""
2023
 
2024
- #: bp-groups.php:1253
2025
- msgid "There was an error leaving the group."
2026
  msgstr ""
2027
 
2028
- #: bp-groups.php:1255 bp-groups.php:1732
2029
- msgid "You successfully left the group."
2030
  msgstr ""
2031
 
2032
- #: bp-groups.php:1333
2033
- msgid "Created a group"
2034
  msgstr ""
2035
 
2036
- #: bp-groups.php:1334
2037
- msgid "Joined a group"
2038
  msgstr ""
2039
 
2040
- #: bp-groups.php:1335
2041
- msgid "New group forum topic"
2042
  msgstr ""
2043
 
2044
- #: bp-groups.php:1336
2045
- msgid "New group forum post"
2046
  msgstr ""
2047
 
2048
- #: bp-groups.php:1396
2049
- msgid "Group Membership Requests"
2050
  msgstr ""
2051
 
2052
- #: bp-groups.php:1396
2053
- #, php-format
2054
- msgid "%d new membership requests for the group \"%s\""
2055
  msgstr ""
2056
 
2057
- #: bp-groups.php:1399
2058
- #, php-format
2059
- msgid "%s requests membership for the group \"%s\""
2060
  msgstr ""
2061
 
2062
- #: bp-groups.php:1410
2063
- #, php-format
2064
- msgid "%d accepted group membership requests"
2065
  msgstr ""
2066
 
2067
- #: bp-groups.php:1412
2068
- #, php-format
2069
- msgid "Membership for group \"%s\" accepted"
2070
  msgstr ""
2071
 
2072
- #: bp-groups.php:1423
2073
- #, php-format
2074
- msgid "%d rejected group membership requests"
2075
  msgstr ""
2076
 
2077
- #: bp-groups.php:1425
2078
- #, php-format
2079
- msgid "Membership for group \"%s\" rejected"
2080
  msgstr ""
2081
 
2082
- #: bp-groups.php:1436
2083
- #, php-format
2084
- msgid "You were promoted to an admin in %d groups"
2085
  msgstr ""
2086
 
2087
- #: bp-groups.php:1438
2088
- #, php-format
2089
- msgid "You were promoted to an admin in the group %s"
2090
  msgstr ""
2091
 
2092
- #: bp-groups.php:1449
2093
- #, php-format
2094
- msgid "You were promoted to a mod in %d groups"
2095
  msgstr ""
2096
 
2097
- #: bp-groups.php:1451
2098
- #, php-format
2099
- msgid "You were promoted to a mod in the group %s"
2100
  msgstr ""
2101
 
2102
- #: bp-groups.php:1462 bp-groups.php:1464
2103
- msgid "Group Invites"
2104
  msgstr ""
2105
 
2106
- #: bp-groups.php:1462
2107
- #, php-format
2108
- msgid "You have %d new group invitations"
2109
  msgstr ""
2110
 
2111
- #: bp-groups.php:1464
2112
- #, php-format
2113
- msgid "You have an invitation to the group: %s"
2114
  msgstr ""
2115
 
2116
- #: bp-groups.php:1556 bp-groups/bp-groups-classes.php:736
2117
- msgid "Group Admin"
2118
  msgstr ""
2119
 
2120
- #: bp-groups.php:1709
2121
- msgid "As the only Admin, you cannot leave the group."
2122
  msgstr ""
2123
 
2124
- #: bp-groups.php:1962
2125
- #, php-format
2126
- msgid "%s posted an update in the group %s:"
2127
  msgstr ""
2128
 
2129
- #: bp-groups.php:2033 bp-groups.php:2138
2130
- #, php-format
2131
- msgid "%s posted on the forum topic %s in the group %s:"
2132
  msgstr ""
2133
 
2134
- #: bp-groups.php:2072 bp-groups.php:2104
2135
- #, php-format
2136
- msgid "%s started the forum topic %s in the group %s:"
2137
  msgstr ""
2138
 
2139
- #: bp-groups/bp-groups-classes.php:730
2140
- msgid "Group Mod"
2141
  msgstr ""
2142
 
2143
- #: bp-groups/bp-groups-notifications.php:8
2144
- msgid "Group Details Updated"
2145
  msgstr ""
2146
 
2147
- #: bp-groups/bp-groups-notifications.php:23
2148
- #, php-format
2149
- msgid ""
2150
- "Group details for the group \"%s\" were updated:\n"
2151
- "\n"
2152
- "To view the group: %s\n"
2153
- "\n"
2154
- "---------------------\n"
2155
  msgstr ""
2156
 
2157
- #: bp-groups/bp-groups-notifications.php:64
2158
- #, php-format
2159
- msgid "Membership request for group: %s"
2160
  msgstr ""
2161
 
2162
- #: bp-groups/bp-groups-notifications.php:67
2163
- #, php-format
2164
  msgid ""
2165
- "%s wants to join the group \"%s\".\n"
2166
  "\n"
2167
- "Because you are the administrator of this group, you must either accept or "
2168
- "reject the membership request.\n"
2169
  "\n"
2170
- "To view all pending membership requests for this group, please visit:\n"
2171
- "%s\n"
2172
  "\n"
2173
- "To view %s's profile: %s\n"
2174
  "\n"
2175
  "---------------------\n"
2176
  msgstr ""
2177
 
2178
- #: bp-groups/bp-groups-notifications.php:113
2179
- #, php-format
2180
- msgid "Membership request for group \"%s\" accepted"
2181
  msgstr ""
2182
 
2183
- #: bp-groups/bp-groups-notifications.php:115
2184
- #, php-format
2185
- msgid ""
2186
- "Your membership request for the group \"%s\" has been accepted.\n"
2187
- "\n"
2188
- "To view the group please login and visit: %s\n"
2189
- "\n"
2190
- "---------------------\n"
2191
  msgstr ""
2192
 
2193
- #: bp-groups/bp-groups-notifications.php:123
2194
- #, php-format
2195
- msgid "Membership request for group \"%s\" rejected"
2196
  msgstr ""
2197
 
2198
- #: bp-groups/bp-groups-notifications.php:125
2199
- #, php-format
2200
- msgid ""
2201
- "Your membership request for the group \"%s\" has been rejected.\n"
2202
- "\n"
2203
- "To submit another request please log in and visit: %s\n"
2204
- "\n"
2205
- "---------------------\n"
2206
  msgstr ""
2207
 
2208
- #: bp-groups/bp-groups-notifications.php:147
2209
- msgid "an administrator"
2210
  msgstr ""
2211
 
2212
- #: bp-groups/bp-groups-notifications.php:150
2213
- msgid "a moderator"
2214
  msgstr ""
2215
 
2216
- #: bp-groups/bp-groups-notifications.php:169
2217
- #, php-format
2218
- msgid "You have been promoted in the group: \"%s\""
2219
  msgstr ""
2220
 
2221
- #: bp-groups/bp-groups-notifications.php:172
2222
- #, php-format
2223
- msgid ""
2224
- "You have been promoted to %s for the group: \"%s\".\n"
2225
- "\n"
2226
- "To view the group please visit: %s\n"
2227
- "\n"
2228
- "---------------------\n"
2229
  msgstr ""
2230
 
2231
- #: bp-groups/bp-groups-notifications.php:217
2232
- #, php-format
2233
- msgid "You have an invitation to the group: \"%s\""
2234
  msgstr ""
2235
 
2236
- #: bp-groups/bp-groups-notifications.php:220
2237
- #, php-format
2238
- msgid ""
2239
- "One of your friends %s has invited you to the group: \"%s\".\n"
2240
- "\n"
2241
- "To view your group invites visit: %s\n"
2242
- "\n"
2243
- "To view the group visit: %s\n"
2244
- "\n"
2245
- "To view %s's profile visit: %s\n"
2246
- "\n"
2247
- "---------------------\n"
2248
  msgstr ""
2249
 
2250
- #: bp-groups/bp-groups-notifications.php:277
2251
- #, php-format
2252
- msgid "%s mentioned you in the group \"%s\""
2253
  msgstr ""
2254
 
2255
- #: bp-groups/bp-groups-notifications.php:280
2256
- #, php-format
2257
- msgid ""
2258
- "%s mentioned you in the group \"%s\":\n"
2259
- "\n"
2260
- "\"%s\"\n"
2261
- "\n"
2262
- "To view and respond to the message, log in and visit: %s\n"
2263
- "\n"
2264
- "---------------------\n"
2265
  msgstr ""
2266
 
2267
- #: bp-groups/bp-groups-templatetags.php:252
2268
- msgid "Public Group"
2269
  msgstr ""
2270
 
2271
- #: bp-groups/bp-groups-templatetags.php:254
2272
- msgid "Hidden Group"
2273
  msgstr ""
2274
 
2275
- #: bp-groups/bp-groups-templatetags.php:256
2276
- msgid "Private Group"
2277
  msgstr ""
2278
 
2279
- #: bp-groups/bp-groups-templatetags.php:258
2280
- msgid "Group"
2281
  msgstr ""
2282
 
2283
- #: bp-groups/bp-groups-templatetags.php:288
2284
- #: bp-groups/bp-groups-templatetags.php:1718
2285
- msgid "Group avatar"
2286
  msgstr ""
2287
 
2288
- #: bp-groups/bp-groups-templatetags.php:330
2289
- msgid "not yet active"
2290
  msgstr ""
2291
 
2292
- #: bp-groups/bp-groups-templatetags.php:421
2293
- msgid "Private"
2294
  msgstr ""
2295
 
2296
- #: bp-groups/bp-groups-templatetags.php:476
2297
- msgid "No Admins"
2298
  msgstr ""
2299
 
2300
- #: bp-groups/bp-groups-templatetags.php:496
2301
- msgid "No Mods"
2302
  msgstr ""
2303
 
2304
- #: bp-groups/bp-groups-templatetags.php:517
2305
- msgid "Filter Groups"
2306
  msgstr ""
2307
 
2308
- #: bp-groups/bp-groups-templatetags.php:565
2309
- #, php-format
2310
- msgid "Viewing group %1$s to %2$s (of %3$s groups)"
2311
  msgstr ""
2312
 
2313
- #: bp-groups/bp-groups-templatetags.php:594
2314
- #, php-format
2315
- msgid "%s member"
2316
  msgstr ""
2317
 
2318
- #: bp-groups/bp-groups-templatetags.php:596
2319
- #: bp-themes/bp-default/members/single/groups/invites.php:11
2320
- #, php-format
2321
- msgid "%s members"
2322
  msgstr ""
2323
 
2324
- #: bp-groups/bp-groups-templatetags.php:635
2325
- #, php-format
2326
- msgid "%d topic"
2327
  msgstr ""
2328
 
2329
- #: bp-groups/bp-groups-templatetags.php:637
2330
- #, php-format
2331
- msgid "%d topics"
2332
  msgstr ""
2333
 
2334
- #: bp-groups/bp-groups-templatetags.php:733
2335
- #: bp-groups/bp-groups-templatetags.php:771
2336
- msgid "Demote to Member"
2337
  msgstr ""
2338
 
2339
- #: bp-groups/bp-groups-templatetags.php:739
2340
- #: bp-groups/bp-groups-templatetags.php:777
2341
- #: bp-groups/bp-groups-templatetags.php:1490
2342
- #, php-format
2343
- msgid "joined %s ago"
2344
  msgstr ""
2345
 
2346
- #: bp-groups/bp-groups-templatetags.php:752
2347
- msgid "This group has no administrators"
2348
  msgstr ""
2349
 
2350
- #: bp-groups/bp-groups-templatetags.php:771
2351
- #: bp-themes/bp-default/groups/single/admin.php:215
2352
- msgid "Promote to Admin"
2353
  msgstr ""
2354
 
2355
- #: bp-groups/bp-groups-templatetags.php:790
2356
- msgid "This group has no moderators"
2357
  msgstr ""
2358
 
2359
- #: bp-groups/bp-groups-templatetags.php:922
2360
- msgid "Edit Details"
2361
  msgstr ""
2362
 
2363
- #: bp-groups/bp-groups-templatetags.php:929
2364
- msgid "Group Settings"
2365
  msgstr ""
2366
 
2367
- #: bp-groups/bp-groups-templatetags.php:931
2368
- msgid "Manage Members"
2369
  msgstr ""
2370
 
2371
- #: bp-groups/bp-groups-templatetags.php:934
2372
- msgid "Membership Requests"
2373
  msgstr ""
2374
 
2375
- #: bp-groups/bp-groups-templatetags.php:1108
2376
- #: bp-groups/bp-groups-templatetags.php:1109
2377
- #: bp-themes/bp-default/forums/index.php:8
2378
- msgid "New Topic"
2379
  msgstr ""
2380
 
2381
- #: bp-groups/bp-groups-templatetags.php:1147
2382
- #: bp-groups/bp-groups-templatetags.php:1148
2383
- #: bp-themes/bp-default/_inc/ajax.php:407
2384
- msgid "Leave Group"
2385
  msgstr ""
2386
 
2387
- #: bp-groups/bp-groups-templatetags.php:1170
2388
- #: bp-groups/bp-groups-templatetags.php:1171
2389
- #: bp-themes/bp-default/_inc/ajax.php:429
2390
- msgid "Join Group"
2391
  msgstr ""
2392
 
2393
- #: bp-groups/bp-groups-templatetags.php:1203
2394
- #: bp-groups/bp-groups-templatetags.php:1204
2395
- msgid "Request Sent"
2396
  msgstr ""
2397
 
2398
- #: bp-groups/bp-groups-templatetags.php:1225
2399
- msgid ""
2400
- "This is a private group and you must request group membership in order to "
2401
- "join."
2402
  msgstr ""
2403
 
2404
- #: bp-groups/bp-groups-templatetags.php:1227
2405
- msgid ""
2406
- "This is a private group. To join you must be a registered site member and "
2407
- "request group membership."
2408
  msgstr ""
2409
 
2410
- #: bp-groups/bp-groups-templatetags.php:1229
2411
- msgid ""
2412
- "This is a private group. Your membership request is awaiting approval from "
2413
- "the group administrator."
2414
  msgstr ""
2415
 
2416
- #: bp-groups/bp-groups-templatetags.php:1231
2417
- msgid "This is a hidden group and only invited members can join."
2418
  msgstr ""
2419
 
2420
- #: bp-groups/bp-groups-templatetags.php:1540
2421
- #, php-format
2422
- msgid "Viewing members %1$s to %2$s (of %3$s members)"
2423
  msgstr ""
2424
 
2425
- #: bp-groups/bp-groups-templatetags.php:1826
2426
- #: bp-groups/bp-groups-templatetags.php:1845
2427
- msgid "Recently Joined"
2428
  msgstr ""
2429
 
2430
- #: bp-groups/bp-groups-templatetags.php:1827
2431
- #: bp-groups/bp-groups-templatetags.php:1848
2432
- msgid "Most Popular"
2433
  msgstr ""
2434
 
2435
- #: bp-groups/bp-groups-templatetags.php:1828
2436
- #: bp-groups/bp-groups-templatetags.php:1851
2437
- msgid "Administrator Of"
2438
  msgstr ""
2439
 
2440
- #: bp-groups/bp-groups-templatetags.php:1829
2441
- #: bp-groups/bp-groups-templatetags.php:1854
2442
- msgid "Moderator Of"
2443
  msgstr ""
2444
 
2445
- #: bp-groups/bp-groups-templatetags.php:1885
2446
- msgid "No Group Avatar"
2447
  msgstr ""
2448
 
2449
- #: bp-groups/bp-groups-templatetags.php:2089
2450
- #, php-format
2451
- msgid "requested %s ago"
2452
  msgstr ""
2453
 
2454
- #: bp-groups/bp-groups-widgets.php:58
2455
- msgid "There are no groups to display."
2456
  msgstr ""
2457
 
2458
- #: bp-groups/bp-groups-widgets.php:79
2459
- msgid "Max groups to show:"
2460
  msgstr ""
2461
 
2462
- #: bp-groups/bp-groups-widgets.php:117
2463
- #, php-format
2464
- msgid "created %s ago"
2465
  msgstr ""
2466
 
2467
- #: bp-groups/bp-groups-widgets.php:136
2468
- msgid "No groups matched the current filter."
2469
  msgstr ""
2470
 
2471
- #: bp-messages.php:105
2472
- #, php-format
2473
- msgid "Messages <strong>(%s)</strong>"
2474
  msgstr ""
2475
 
2476
- #: bp-messages.php:107
2477
- msgid "Messages <strong></strong>"
2478
  msgstr ""
2479
 
2480
- #: bp-messages.php:115
2481
- msgid "Inbox"
2482
  msgstr ""
2483
 
2484
- #: bp-messages.php:116
2485
- msgid "Sent Messages"
2486
  msgstr ""
2487
 
2488
- #: bp-messages.php:117
2489
- msgid "Compose"
2490
  msgstr ""
2491
 
2492
- #: bp-messages.php:120
2493
- msgid "Notices"
2494
  msgstr ""
2495
 
2496
- #: bp-messages.php:124
2497
- msgid "My Messages"
2498
  msgstr ""
2499
 
2500
- #: bp-messages.php:167 bp-messages.php:189
2501
- msgid "There was an error sending that message, please try again"
2502
  msgstr ""
2503
 
2504
- #: bp-messages.php:172
2505
- msgid "Notice sent successfully!"
2506
  msgstr ""
2507
 
2508
- #: bp-messages.php:175
2509
- msgid "There was an error sending that notice, please try again"
2510
  msgstr ""
2511
 
2512
- #: bp-messages.php:186
2513
- msgid "Message sent successfully!"
2514
  msgstr ""
2515
 
2516
- #: bp-messages.php:213
2517
- msgid "There was a problem deactivating that notice."
2518
  msgstr ""
2519
 
2520
- #: bp-messages.php:215
2521
- msgid "Notice deactivated."
2522
  msgstr ""
2523
 
2524
- #: bp-messages.php:219
2525
- msgid "There was a problem activating that notice."
2526
  msgstr ""
2527
 
2528
- #: bp-messages.php:221
2529
- msgid "Notice activated."
2530
  msgstr ""
2531
 
2532
- #: bp-messages.php:225
2533
- msgid "There was a problem deleting that notice."
2534
  msgstr ""
2535
 
2536
- #: bp-messages.php:227
2537
- msgid "Notice deleted."
2538
  msgstr ""
2539
 
2540
- #: bp-messages.php:244
2541
- msgid "Messages"
2542
  msgstr ""
2543
 
2544
- #: bp-messages.php:253
2545
- msgid "A member sends you a new message"
2546
  msgstr ""
2547
 
2548
- #: bp-messages.php:259
2549
- msgid "A new site notice is posted"
2550
  msgstr ""
2551
 
2552
- #: bp-messages.php:299
2553
- msgid "Your reply was sent successfully"
2554
  msgstr ""
2555
 
2556
- #: bp-messages.php:301
2557
- msgid "There was a problem sending your reply, please try again"
2558
  msgstr ""
2559
 
2560
- #: bp-messages.php:311
2561
- #, php-format
2562
- msgid "From: %s"
2563
  msgstr ""
2564
 
2565
- #: bp-messages.php:332
2566
- msgid "There was an error deleting that message."
2567
  msgstr ""
2568
 
2569
- #: bp-messages.php:334
2570
- msgid "Message deleted."
2571
  msgstr ""
2572
 
2573
- #: bp-messages.php:356
2574
- msgid "There was an error deleting messages."
2575
  msgstr ""
2576
 
2577
- #: bp-messages.php:358 bp-themes/bp-default/_inc/ajax.php:534
2578
- msgid "Messages deleted."
2579
  msgstr ""
2580
 
2581
- #: bp-messages.php:378
2582
- #, php-format
2583
- msgid "You have %d new messages"
2584
  msgstr ""
2585
 
2586
- #: bp-messages.php:380
2587
- #, php-format
2588
- msgid "You have %d new message"
2589
  msgstr ""
2590
 
2591
- #: bp-messages.php:434
2592
- #, php-format
2593
- msgid "Re: %s"
2594
  msgstr ""
2595
 
2596
- #: bp-messages.php:442
2597
- msgid "No Subject"
2598
  msgstr ""
2599
 
2600
- #: bp-messages/bp-messages-classes.php:193
2601
- msgid " Recipients"
2602
  msgstr ""
2603
 
2604
- #: bp-messages/bp-messages-notifications.php:23
2605
- #, php-format
2606
- msgid "New message from %s"
2607
  msgstr ""
2608
 
2609
- #: bp-messages/bp-messages-notifications.php:26
2610
- #, php-format
2611
- msgid ""
2612
- "%s sent you a new message:\n"
2613
- "\n"
2614
- "Subject: %s\n"
2615
- "\n"
2616
- "\"%s\"\n"
2617
- "\n"
2618
- "To view and read your messages please log in and visit: %s\n"
2619
- "\n"
2620
- "---------------------\n"
2621
  msgstr ""
2622
 
2623
- #: bp-messages/bp-messages-templatetags.php:335
2624
- #, php-format
2625
- msgid "Viewing message %1$s to %2$s (of %3$s messages)"
2626
  msgstr ""
2627
 
2628
- #: bp-messages/bp-messages-templatetags.php:376
2629
- msgid "Select:"
2630
  msgstr ""
2631
 
2632
- #: bp-messages/bp-messages-templatetags.php:379
2633
- msgid "Read"
2634
  msgstr ""
2635
 
2636
- #: bp-messages/bp-messages-templatetags.php:380
2637
- msgid "Unread"
2638
  msgstr ""
2639
 
2640
- #: bp-messages/bp-messages-templatetags.php:381
2641
- msgid "All"
2642
  msgstr ""
2643
 
2644
- #: bp-messages/bp-messages-templatetags.php:384
2645
- msgid "Mark as Read"
2646
  msgstr ""
2647
 
2648
- #: bp-messages/bp-messages-templatetags.php:385
2649
- msgid "Mark as Unread"
2650
  msgstr ""
2651
 
2652
- #: bp-messages/bp-messages-templatetags.php:387
2653
- msgid "Delete Selected"
2654
  msgstr ""
2655
 
2656
- #: bp-messages/bp-messages-templatetags.php:396
2657
- msgid "Currently Active"
2658
  msgstr ""
2659
 
2660
- #: bp-messages/bp-messages-templatetags.php:463
2661
- msgid "Deactivate"
2662
  msgstr ""
2663
 
2664
- #: bp-messages/bp-messages-templatetags.php:465
2665
- #: bp-themes/bp-default/registration/activate.php:40
2666
- msgid "Activate"
2667
  msgstr ""
2668
 
2669
- #: bp-messages/bp-messages-templatetags.php:490
2670
- #: bp-themes/bp-default/functions.php:32
2671
- msgid "Close"
2672
  msgstr ""
2673
 
2674
- #: bp-messages/bp-messages-templatetags.php:535
2675
- msgid "Send a private message to this user."
2676
  msgstr ""
2677
 
2678
- #: bp-messages/bp-messages-templatetags.php:536
2679
- msgid "Send Private Message"
2680
  msgstr ""
2681
 
2682
- #: bp-messages/bp-messages-templatetags.php:708
2683
- #, php-format
2684
- msgid "%d Recipients"
2685
  msgstr ""
2686
 
2687
- #: bp-messages/bp-messages-templatetags.php:774
2688
- #: bp-themes/bp-default/_inc/ajax.php:468
2689
- #, php-format
2690
- msgid "Sent %s ago"
2691
  msgstr ""
2692
 
2693
- #: bp-themes/bp-default/404.php:10
2694
- msgid "Page Not Found"
2695
  msgstr ""
2696
 
2697
- #: bp-themes/bp-default/404.php:14
2698
- msgid "The page you were looking for was not found."
2699
  msgstr ""
2700
 
2701
- #: bp-themes/bp-default/_inc/ajax.php:137
2702
- msgid "There was a problem posting your update, please try again."
2703
  msgstr ""
2704
 
2705
- #: bp-themes/bp-default/_inc/ajax.php:229
2706
- #: bp-themes/bp-default/_inc/ajax.php:262
2707
- msgid "There was a problem when deleting. Please try again."
2708
  msgstr ""
2709
 
2710
- #: bp-themes/bp-default/_inc/ajax.php:275
2711
- #: bp-themes/bp-default/activity/entry.php:35
2712
- msgid "Remove Favorite"
2713
  msgstr ""
2714
 
2715
- #: bp-themes/bp-default/_inc/ajax.php:284
2716
- #: bp-themes/bp-default/activity/entry.php:33
2717
- msgid "Favorite"
2718
  msgstr ""
2719
 
2720
- #: bp-themes/bp-default/_inc/ajax.php:315
2721
- #: bp-themes/bp-default/groups/create.php:191
2722
- #: bp-themes/bp-default/groups/single/send-invites.php:42
2723
- msgid "Remove Invite"
2724
  msgstr ""
2725
 
2726
- #: bp-themes/bp-default/_inc/ajax.php:356
2727
- msgid "Request Pending"
2728
  msgstr ""
2729
 
2730
- #: bp-themes/bp-default/_inc/ajax.php:368
2731
- msgid "There was a problem accepting that request. Please try again."
2732
  msgstr ""
2733
 
2734
- #: bp-themes/bp-default/_inc/ajax.php:379
2735
- msgid "There was a problem rejecting that request. Please try again."
2736
  msgstr ""
2737
 
2738
- #: bp-themes/bp-default/_inc/ajax.php:405
2739
- msgid "Error joining group"
2740
  msgstr ""
2741
 
2742
- #: bp-themes/bp-default/_inc/ajax.php:415
2743
- msgid "Error requesting membership"
2744
  msgstr ""
2745
 
2746
- #: bp-themes/bp-default/_inc/ajax.php:417
2747
- msgid "Membership Requested"
2748
  msgstr ""
2749
 
2750
- #: bp-themes/bp-default/_inc/ajax.php:426
2751
- msgid "Error leaving group"
2752
  msgstr ""
2753
 
2754
- #: bp-themes/bp-default/_inc/ajax.php:443
2755
- msgid "There was a problem closing the notice."
2756
  msgstr ""
2757
 
2758
- #: bp-themes/bp-default/_inc/ajax.php:485
2759
- msgid "There was a problem sending that reply. Please try again."
2760
  msgstr ""
2761
 
2762
- #: bp-themes/bp-default/_inc/ajax.php:495
2763
- msgid "There was a problem marking messages as unread."
2764
  msgstr ""
2765
 
2766
- #: bp-themes/bp-default/_inc/ajax.php:511
2767
- msgid "There was a problem marking messages as read."
2768
  msgstr ""
2769
 
2770
- #: bp-themes/bp-default/_inc/ajax.php:527
2771
- msgid "There was a problem deleting messages."
2772
  msgstr ""
2773
 
2774
- #: bp-themes/bp-default/_inc/options.php:9
2775
- #: bp-themes/bp-default/_inc/options.php:27
2776
- msgid "Theme Options"
2777
  msgstr ""
2778
 
2779
- #: bp-themes/bp-default/_inc/options.php:22
2780
- msgid "Settings saved."
2781
  msgstr ""
2782
 
2783
- #: bp-themes/bp-default/_inc/options.php:34
2784
- msgid "On front page show:"
2785
  msgstr ""
2786
 
2787
- #: bp-themes/bp-default/_inc/options.php:36
2788
- msgid "Blog Posts"
2789
  msgstr ""
2790
 
2791
- #: bp-themes/bp-default/_inc/options.php:38
2792
- #: bp-themes/bp-default/functions.php:120
2793
- msgid "Activity Stream"
2794
  msgstr ""
2795
 
2796
- #: bp-themes/bp-default/_inc/options.php:46
2797
- msgid "Update Settings"
2798
  msgstr ""
2799
 
2800
- #: bp-themes/bp-default/activity/activity-loop.php:27
2801
- msgid "Load More"
2802
  msgstr ""
2803
 
2804
- #: bp-themes/bp-default/activity/activity-loop.php:37
2805
- msgid "Sorry, there was no activity found. Please try a different filter."
 
 
 
2806
  msgstr ""
2807
 
2808
- #: bp-themes/bp-default/activity/entry.php:33
2809
- msgid "Mark as Favorite"
 
2810
  msgstr ""
2811
 
2812
- #: bp-themes/bp-default/activity/entry.php:63
2813
- msgid "Post"
 
2814
  msgstr ""
2815
 
2816
- #: bp-themes/bp-default/activity/entry.php:63
2817
- msgid "or press esc to cancel."
 
2818
  msgstr ""
2819
 
2820
- #: bp-themes/bp-default/activity/index.php:7
2821
- msgid "Site Activity"
 
2822
  msgstr ""
2823
 
2824
- #: bp-themes/bp-default/activity/index.php:22
2825
- msgid "The public activity for everyone on this site."
 
2826
  msgstr ""
2827
 
2828
- #: bp-themes/bp-default/activity/index.php:22
2829
- #: bp-themes/bp-default/members/index.php:18
2830
- #, php-format
2831
- msgid "All Members (%s)"
2832
  msgstr ""
2833
 
2834
- #: bp-themes/bp-default/activity/index.php:30
2835
- msgid "The activity of my friends only."
 
2836
  msgstr ""
2837
 
2838
- #: bp-themes/bp-default/activity/index.php:30
2839
- #: bp-themes/bp-default/members/index.php:21
2840
- #, php-format
2841
- msgid "My Friends (%s)"
2842
  msgstr ""
2843
 
2844
- #: bp-themes/bp-default/activity/index.php:38
2845
- msgid "The activity of groups I am a member of."
 
 
2846
  msgstr ""
2847
 
2848
- #: bp-themes/bp-default/activity/index.php:38
2849
- #: bp-themes/bp-default/groups/index.php:20
2850
- #, php-format
2851
- msgid "My Groups (%s)"
2852
  msgstr ""
2853
 
2854
- #: bp-themes/bp-default/activity/index.php:45
2855
- msgid "The activity I've marked as a favorite."
2856
  msgstr ""
2857
 
2858
- #: bp-themes/bp-default/activity/index.php:45
2859
- #, php-format
2860
- msgid "My Favorites (<span>%s</span>)"
2861
  msgstr ""
2862
 
2863
- #: bp-themes/bp-default/activity/index.php:50
2864
- msgid "Activity that I have been mentioned in."
2865
  msgstr ""
2866
 
2867
- #: bp-themes/bp-default/activity/index.php:50
2868
- #, php-format
2869
- msgid "(%s new)"
2870
  msgstr ""
2871
 
2872
- #: bp-themes/bp-default/activity/index.php:60
2873
- #: bp-themes/bp-default/groups/single/activity.php:3
2874
- msgid "RSS Feed"
2875
  msgstr ""
2876
 
2877
- #: bp-themes/bp-default/activity/index.php:60
2878
- #: bp-themes/bp-default/groups/single/activity.php:3
2879
- msgid "RSS"
2880
  msgstr ""
2881
 
2882
- #: bp-themes/bp-default/activity/index.php:66
2883
- #: bp-themes/bp-default/groups/single/activity.php:9
2884
- #: bp-themes/bp-default/members/single/activity.php:7
2885
- msgid "No Filter"
2886
  msgstr ""
2887
 
2888
- #: bp-themes/bp-default/activity/index.php:67
2889
- #: bp-themes/bp-default/groups/single/activity.php:10
2890
- #: bp-themes/bp-default/members/single/activity.php:8
2891
- msgid "Show Updates"
2892
  msgstr ""
2893
 
2894
- #: bp-themes/bp-default/activity/index.php:70
2895
- #: bp-themes/bp-default/members/single/activity.php:12
2896
- msgid "Show Blog Posts"
2897
- msgstr ""
2898
-
2899
- #: bp-themes/bp-default/activity/index.php:71
2900
- #: bp-themes/bp-default/members/single/activity.php:13
2901
- msgid "Show Blog Comments"
2902
- msgstr ""
2903
-
2904
- #: bp-themes/bp-default/activity/index.php:75
2905
- #: bp-themes/bp-default/groups/single/activity.php:13
2906
- #: bp-themes/bp-default/members/single/activity.php:22
2907
- msgid "Show New Forum Topics"
2908
- msgstr ""
2909
-
2910
- #: bp-themes/bp-default/activity/index.php:76
2911
- #: bp-themes/bp-default/groups/single/activity.php:14
2912
- #: bp-themes/bp-default/members/single/activity.php:23
2913
- msgid "Show Forum Replies"
2914
- msgstr ""
2915
-
2916
- #: bp-themes/bp-default/activity/index.php:80
2917
- #: bp-themes/bp-default/members/single/activity.php:27
2918
- msgid "Show New Groups"
2919
- msgstr ""
2920
-
2921
- #: bp-themes/bp-default/activity/index.php:81
2922
- #: bp-themes/bp-default/groups/single/activity.php:17
2923
- #: bp-themes/bp-default/members/single/activity.php:28
2924
- msgid "Show New Group Memberships"
2925
  msgstr ""
2926
 
2927
- #: bp-themes/bp-default/activity/index.php:85
2928
- #: bp-themes/bp-default/members/single/activity.php:17
2929
- msgid "Show Friendship Connections"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2930
  msgstr ""
2931
 
2932
- #: bp-themes/bp-default/activity/index.php:88
2933
- msgid "Show New Members"
2934
  msgstr ""
2935
 
2936
- #: bp-themes/bp-default/activity/post-form.php:7
2937
- #, php-format
2938
- msgid ""
2939
- "You are mentioning %s in a new update, this user will be sent a notification "
2940
- "of your message."
2941
  msgstr ""
2942
 
2943
- #: bp-themes/bp-default/activity/post-form.php:19
2944
- #, php-format
2945
- msgid "What's new in %s, %s?"
2946
  msgstr ""
2947
 
2948
- #: bp-themes/bp-default/activity/post-form.php:21
2949
- #, php-format
2950
- msgid "What's new %s?"
2951
  msgstr ""
2952
 
2953
- #: bp-themes/bp-default/activity/post-form.php:33
2954
- msgid "Post Update"
 
 
2955
  msgstr ""
2956
 
2957
- #: bp-themes/bp-default/activity/post-form.php:38
2958
- msgid "Post in"
2959
  msgstr ""
2960
 
2961
- #: bp-themes/bp-default/archive.php:10
2962
- #, php-format
2963
- msgid "You are browsing the archive for %1$s."
2964
  msgstr ""
2965
 
2966
- #: bp-themes/bp-default/archive.php:16 bp-themes/bp-default/archive.php:52
2967
- #: bp-themes/bp-default/index.php:43 bp-themes/bp-default/search.php:17
2968
- #: bp-themes/bp-default/search.php:51 bp-themes/bp-default/single.php:14
2969
- msgid "&larr; Previous Entries"
2970
  msgstr ""
2971
 
2972
- #: bp-themes/bp-default/archive.php:17 bp-themes/bp-default/archive.php:53
2973
- #: bp-themes/bp-default/index.php:44 bp-themes/bp-default/search.php:18
2974
- #: bp-themes/bp-default/search.php:52 bp-themes/bp-default/single.php:15
2975
- msgid "Next Entries &rarr;"
2976
  msgstr ""
2977
 
2978
- #: bp-themes/bp-default/archive.php:29 bp-themes/bp-default/archive.php:35
2979
- #: bp-themes/bp-default/index.php:20 bp-themes/bp-default/index.php:26
2980
- #: bp-themes/bp-default/search.php:29 bp-themes/bp-default/search.php:35
2981
- #: bp-themes/bp-default/single.php:23 bp-themes/bp-default/single.php:29
2982
- #, php-format
2983
- msgid "by %s"
2984
  msgstr ""
2985
 
2986
- #: bp-themes/bp-default/archive.php:33 bp-themes/bp-default/index.php:24
2987
- #: bp-themes/bp-default/search.php:33 bp-themes/bp-default/single.php:27
2988
- msgid "Permanent Link to"
2989
  msgstr ""
2990
 
2991
- #: bp-themes/bp-default/archive.php:35 bp-themes/bp-default/index.php:26
2992
- #: bp-themes/bp-default/search.php:35 bp-themes/bp-default/single.php:29
2993
- msgid "in"
2994
  msgstr ""
2995
 
2996
- #: bp-themes/bp-default/archive.php:38 bp-themes/bp-default/index.php:29
2997
- #: bp-themes/bp-default/search.php:38 bp-themes/bp-default/single.php:32
2998
- msgid "Read the rest of this entry &rarr;"
2999
  msgstr ""
3000
 
3001
- #: bp-themes/bp-default/archive.php:41 bp-themes/bp-default/index.php:32
3002
- #: bp-themes/bp-default/search.php:41 bp-themes/bp-default/single.php:37
3003
- msgid "Tags: "
3004
  msgstr ""
3005
 
3006
- #: bp-themes/bp-default/archive.php:41 bp-themes/bp-default/index.php:32
3007
- #: bp-themes/bp-default/search.php:41 bp-themes/bp-default/single.php:37
3008
- msgid "No Comments &#187;"
3009
  msgstr ""
3010
 
3011
- #: bp-themes/bp-default/archive.php:41 bp-themes/bp-default/index.php:32
3012
- #: bp-themes/bp-default/search.php:41 bp-themes/bp-default/single.php:37
3013
- msgid "1 Comment &#187;"
3014
  msgstr ""
3015
 
3016
- #: bp-themes/bp-default/archive.php:41 bp-themes/bp-default/index.php:32
3017
- #: bp-themes/bp-default/search.php:41 bp-themes/bp-default/single.php:37
3018
- msgid "% Comments &#187;"
 
 
3019
  msgstr ""
3020
 
3021
- #: bp-themes/bp-default/archive.php:59 bp-themes/bp-default/index.php:50
3022
- msgid "Not Found"
 
3023
  msgstr ""
3024
 
3025
- #: bp-themes/bp-default/attachment.php:25
3026
- msgid "<p class=\"serif\">Read the rest of this entry &rarr;</p>"
 
 
 
3027
  msgstr ""
3028
 
3029
- #: bp-themes/bp-default/attachment.php:27 bp-themes/bp-default/page.php:20
3030
- #: bp-themes/bp-default/single.php:34
3031
- msgid "<p><strong>Pages:</strong> "
 
 
3032
  msgstr ""
3033
 
3034
- #: bp-themes/bp-default/attachment.php:38
3035
- msgid "Sorry, no attachments matched your criteria."
 
 
 
3036
  msgstr ""
3037
 
3038
- #: bp-themes/bp-default/blogs/blogs-loop.php:71
3039
- msgid "Sorry, there were no blogs found."
3040
  msgstr ""
3041
 
3042
- #: bp-themes/bp-default/blogs/create.php:10
3043
- #: bp-themes/bp-default/blogs/index.php:8
3044
- msgid "Blogs Directory"
3045
  msgstr ""
3046
 
3047
- #: bp-themes/bp-default/blogs/create.php:21
3048
- msgid "Blog registration is currently disabled"
 
 
3049
  msgstr ""
3050
 
3051
- #: bp-themes/bp-default/blogs/index.php:18
3052
- #, php-format
3053
- msgid "All Blogs (%s)"
3054
  msgstr ""
3055
 
3056
- #: bp-themes/bp-default/blogs/index.php:21
3057
- #, php-format
3058
- msgid "My Blogs (%s)"
3059
  msgstr ""
3060
 
3061
- #: bp-themes/bp-default/blogs/index.php:28
3062
- #: bp-themes/bp-default/forums/index.php:91
3063
- #: bp-themes/bp-default/groups/index.php:27
3064
- #: bp-themes/bp-default/members/index.php:28
3065
- #: bp-themes/bp-default/members/single/blogs.php:6
3066
- #: bp-themes/bp-default/members/single/friends.php:9
3067
- #: bp-themes/bp-default/members/single/groups.php:10
3068
- #: bp-xprofile/bp-xprofile-classes.php:495
3069
- msgid "Order By:"
3070
  msgstr ""
3071
 
3072
- #: bp-themes/bp-default/blogs/index.php:30
3073
- #: bp-themes/bp-default/forums/index.php:93
3074
- #: bp-themes/bp-default/groups/index.php:29
3075
- #: bp-themes/bp-default/members/index.php:30
3076
- #: bp-themes/bp-default/members/single/blogs.php:8
3077
- #: bp-themes/bp-default/members/single/friends.php:11
3078
- #: bp-themes/bp-default/members/single/groups.php:12
3079
- msgid "Last Active"
3080
  msgstr ""
3081
 
3082
- #: bp-themes/bp-default/blogs/index.php:32
3083
- #: bp-themes/bp-default/groups/index.php:32
3084
- #: bp-themes/bp-default/members/index.php:34
3085
- #: bp-themes/bp-default/members/single/blogs.php:10
3086
- #: bp-themes/bp-default/members/single/friends.php:13
3087
- #: bp-themes/bp-default/members/single/groups.php:15
3088
- msgid "Alphabetical"
3089
  msgstr ""
3090
 
3091
- #: bp-themes/bp-default/comments.php:3
3092
- msgid "Password Protected"
3093
  msgstr ""
3094
 
3095
- #: bp-themes/bp-default/comments.php:4
3096
- msgid "Enter the password to view comments."
3097
  msgstr ""
3098
 
3099
- #: bp-themes/bp-default/comments.php:28
3100
- #, php-format
3101
- msgid "One Response to %2$s"
3102
- msgid_plural "%1$s Responses to %2$s"
3103
- msgstr[0] ""
3104
- msgstr[1] ""
3105
-
3106
- #: bp-themes/bp-default/comments.php:58
3107
- #, php-format
3108
- msgid ""
3109
- "Comments are closed, but <a href=\"%1$s\" title=\"Trackback URL for this post"
3110
- "\">trackbacks</a> and pingbacks are open."
3111
  msgstr ""
3112
 
3113
- #: bp-themes/bp-default/comments.php:64
3114
- msgid "Comments are closed."
3115
  msgstr ""
3116
 
3117
- #: bp-themes/bp-default/comments.php:90
3118
- msgid "Leave a Reply"
3119
  msgstr ""
3120
 
3121
- #: bp-themes/bp-default/comments.php:90
3122
- #, php-format
3123
- msgid "Leave a Reply to %s"
3124
  msgstr ""
3125
 
3126
- #: bp-themes/bp-default/comments.php:94
3127
- msgid "Click here to cancel reply."
3128
  msgstr ""
3129
 
3130
- #: bp-themes/bp-default/comments.php:100
3131
- #, php-format
3132
- msgid ""
3133
- "You must be <a href=\"%1$s\" title=\"Log in\">logged in</a> to post a "
3134
- "comment."
3135
  msgstr ""
3136
 
3137
- #: bp-themes/bp-default/comments.php:112
3138
- #, php-format
3139
- msgid "Logged in as <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
3140
  msgstr ""
3141
 
3142
- #: bp-themes/bp-default/comments.php:112
3143
- msgid "Log out of this account"
3144
  msgstr ""
3145
 
3146
- #: bp-themes/bp-default/comments.php:112
3147
- msgid "Log out &rarr;"
3148
  msgstr ""
3149
 
3150
- #: bp-themes/bp-default/comments.php:120 bp-themes/bp-default/comments.php:125
3151
- msgid "*"
 
3152
  msgstr ""
3153
 
3154
- #: bp-themes/bp-default/comments.php:125
3155
- msgid "Email"
3156
  msgstr ""
3157
 
3158
- #: bp-themes/bp-default/comments.php:137
3159
- msgid "Comment"
3160
  msgstr ""
3161
 
3162
- #: bp-themes/bp-default/comments.php:144
3163
- msgid "Submit"
3164
  msgstr ""
3165
 
3166
- #: bp-themes/bp-default/comments.php:169
3167
- #, php-format
3168
- msgid "%d Trackback"
3169
  msgstr ""
3170
 
3171
- #: bp-themes/bp-default/comments.php:171
3172
- #, php-format
3173
- msgid "%d Trackbacks"
3174
  msgstr ""
3175
 
3176
  #: bp-themes/bp-default/footer.php:7
3177
- #, php-format
3178
- msgid ""
3179
- "%s is proudly powered by <a href=\"http://wordpress.org\">WordPress</a> and "
3180
- "<a href=\"http://buddypress.org\">BuddyPress</a>"
3181
- msgstr ""
3182
-
3183
- #: bp-themes/bp-default/forums/forums-loop.php:24
3184
- msgid "Topic Title"
3185
- msgstr ""
3186
-
3187
- #: bp-themes/bp-default/forums/forums-loop.php:25
3188
- msgid "Latest Poster"
3189
- msgstr ""
3190
-
3191
- #: bp-themes/bp-default/forums/forums-loop.php:28
3192
- msgid "Posted In Group"
3193
- msgstr ""
3194
-
3195
- #: bp-themes/bp-default/forums/forums-loop.php:31
3196
- msgid "Posts"
3197
- msgstr ""
3198
-
3199
- #: bp-themes/bp-default/forums/forums-loop.php:32
3200
- msgid "Freshness"
3201
- msgstr ""
3202
-
3203
- #: bp-themes/bp-default/forums/forums-loop.php:45
3204
- msgid "Permalink"
3205
- msgstr ""
3206
-
3207
- #: bp-themes/bp-default/forums/forums-loop.php:95
3208
- msgid "Sorry, there were no forum topics found."
3209
- msgstr ""
3210
-
3211
- #: bp-themes/bp-default/forums/index.php:8
3212
- msgid "Group Forums Directory"
3213
- msgstr ""
3214
-
3215
- #: bp-themes/bp-default/forums/index.php:27
3216
- #: bp-themes/bp-default/groups/single/forum.php:33
3217
- msgid "Post a New Topic:"
3218
- msgstr ""
3219
-
3220
- #: bp-themes/bp-default/forums/index.php:29
3221
- #: bp-themes/bp-default/groups/single/forum.php:35
3222
- #: bp-themes/bp-default/groups/single/forum/edit.php:26
3223
- msgid "Title:"
3224
- msgstr ""
3225
-
3226
- #: bp-themes/bp-default/forums/index.php:32
3227
- #: bp-themes/bp-default/groups/single/forum.php:38
3228
- #: bp-themes/bp-default/groups/single/forum/edit.php:29
3229
- msgid "Content:"
3230
- msgstr ""
3231
-
3232
- #: bp-themes/bp-default/forums/index.php:35
3233
- #: bp-themes/bp-default/groups/single/forum.php:41
3234
- msgid "Tags (comma separated):"
3235
  msgstr ""
3236
 
3237
- #: bp-themes/bp-default/forums/index.php:38
3238
- msgid "Post In Group Forum:"
3239
- msgstr ""
3240
-
3241
- #: bp-themes/bp-default/forums/index.php:58
3242
- #: bp-themes/bp-default/groups/single/forum.php:47
3243
- msgid "Post Topic"
3244
- msgstr ""
3245
-
3246
- #: bp-themes/bp-default/forums/index.php:59
3247
- #: bp-xprofile/bp-xprofile-classes.php:633
3248
- msgid "Cancel"
3249
- msgstr ""
3250
-
3251
- #: bp-themes/bp-default/forums/index.php:69
3252
- #, php-format
3253
- msgid ""
3254
- "You are not a member of any groups so you don't have any group forums you "
3255
- "can post in. To start posting, first find a group that matches the topic "
3256
- "subject you'd like to start. If this group does not exist, why not <a href='%"
3257
- "s'>create a new group</a>? Once you have joined or created the group you can "
3258
- "post your topic in that group's forum."
3259
- msgstr ""
3260
-
3261
- #: bp-themes/bp-default/forums/index.php:81
3262
- #, php-format
3263
- msgid "All Topics (%s)"
3264
- msgstr ""
3265
-
3266
- #: bp-themes/bp-default/forums/index.php:84
3267
- #, php-format
3268
- msgid "My Topics (%s)"
3269
- msgstr ""
3270
-
3271
- #: bp-themes/bp-default/forums/index.php:94
3272
- msgid "Most Posts"
3273
- msgstr ""
3274
-
3275
- #: bp-themes/bp-default/forums/index.php:95
3276
- msgid "Unreplied"
3277
- msgstr ""
3278
-
3279
- #: bp-themes/bp-default/functions.php:26
3280
- msgid "My Favorites"
3281
- msgstr ""
3282
-
3283
- #: bp-themes/bp-default/functions.php:27
3284
- msgid "Accepted"
3285
- msgstr ""
3286
-
3287
- #: bp-themes/bp-default/functions.php:28
3288
- msgid "Rejected"
3289
  msgstr ""
3290
 
3291
- #: bp-themes/bp-default/functions.php:29
3292
- msgid "Show all comments for this thread"
3293
  msgstr ""
3294
 
3295
- #: bp-themes/bp-default/functions.php:30
3296
- msgid "Show all"
3297
  msgstr ""
3298
 
3299
- #: bp-themes/bp-default/functions.php:31
3300
- msgid "comments"
3301
  msgstr ""
3302
 
3303
- #: bp-themes/bp-default/functions.php:33
3304
- #, php-format
3305
- msgid ""
3306
- "%s is a unique identifier for %s that you can type into any message on this "
3307
- "site. %s will be sent a notification and a link to your message any time you "
3308
- "use it."
3309
  msgstr ""
3310
 
3311
- #: bp-themes/bp-default/functions.php:79
3312
- msgid "said:"
3313
  msgstr ""
3314
 
3315
- #: bp-themes/bp-default/functions.php:80
3316
- msgid "On"
3317
  msgstr ""
3318
 
3319
- #: bp-themes/bp-default/functions.php:84
3320
- msgid "Your comment is awaiting moderation."
3321
- msgstr ""
 
 
3322
 
3323
- #: bp-themes/bp-default/functions.php:328
3324
- #, php-format
3325
- msgid ""
3326
- "Theme activated! This theme contains <a href=\"%s\">custom header image</a> "
3327
- "support and <a href=\"%s\">sidebar widgets</a>."
3328
  msgstr ""
3329
 
3330
- #: bp-themes/bp-default/groups/create.php:7
3331
- #: bp-themes/bp-default/groups/index.php:7
3332
- msgid "Groups Directory"
3333
  msgstr ""
3334
 
3335
- #: bp-themes/bp-default/groups/create.php:26
3336
- msgid "* Group Name"
3337
  msgstr ""
3338
 
3339
- #: bp-themes/bp-default/groups/create.php:26
3340
- #: bp-themes/bp-default/groups/create.php:29
3341
- #: bp-themes/bp-default/members/single/profile/edit.php:23
3342
- #: bp-themes/bp-default/members/single/profile/edit.php:30
3343
- #: bp-themes/bp-default/members/single/profile/edit.php:37
3344
- #: bp-themes/bp-default/members/single/profile/edit.php:46
3345
- #: bp-themes/bp-default/members/single/profile/edit.php:60
3346
- #: bp-themes/bp-default/members/single/profile/edit.php:74
3347
- #: bp-themes/bp-default/members/single/profile/edit.php:84
3348
- #: bp-themes/bp-default/registration/register.php:28
3349
- #: bp-themes/bp-default/registration/register.php:32
3350
- #: bp-themes/bp-default/registration/register.php:36
3351
- #: bp-themes/bp-default/registration/register.php:40
3352
- #: bp-themes/bp-default/registration/register.php:67
3353
- #: bp-themes/bp-default/registration/register.php:75
3354
- #: bp-themes/bp-default/registration/register.php:83
3355
- #: bp-themes/bp-default/registration/register.php:93
3356
- #: bp-themes/bp-default/registration/register.php:104
3357
- #: bp-themes/bp-default/registration/register.php:119
3358
- #: bp-themes/bp-default/registration/register.php:130
3359
- #: bp-themes/bp-default/registration/register.php:180
3360
- #: bp-themes/bp-default/registration/register.php:189
3361
- msgid "(required)"
3362
  msgstr ""
3363
 
3364
- #: bp-themes/bp-default/groups/create.php:29
3365
- msgid "* Group Description"
3366
  msgstr ""
3367
 
3368
- #: bp-themes/bp-default/groups/create.php:45
3369
- #: bp-themes/bp-default/groups/single/admin.php:45
3370
- msgid "Enable comment wire"
3371
  msgstr ""
3372
 
3373
- #: bp-themes/bp-default/groups/create.php:52
3374
- #: bp-themes/bp-default/groups/single/admin.php:55
3375
- msgid "Enable discussion forum"
3376
  msgstr ""
3377
 
3378
- #: bp-themes/bp-default/groups/create.php:57
3379
- #, php-format
3380
- msgid ""
3381
- "<strong>Attention Site Admin:</strong> Group forums require the <a href=\"%s"
3382
- "\">correct setup and configuration</a> of a bbPress installation."
3383
  msgstr ""
3384
 
3385
- #: bp-themes/bp-default/groups/create.php:65
3386
- #: bp-themes/bp-default/groups/single/admin.php:64
3387
- msgid "Privacy Options"
3388
  msgstr ""
3389
 
3390
- #: bp-themes/bp-default/groups/create.php:69
3391
- #: bp-themes/bp-default/groups/single/admin.php:69
3392
- msgid "This is a public group"
3393
  msgstr ""
3394
 
3395
- #: bp-themes/bp-default/groups/create.php:71
3396
- #: bp-themes/bp-default/groups/single/admin.php:71
3397
- msgid "Any site member can join this group."
3398
  msgstr ""
3399
 
3400
- #: bp-themes/bp-default/groups/create.php:72
3401
- #: bp-themes/bp-default/groups/create.php:81
3402
- #: bp-themes/bp-default/groups/single/admin.php:72
3403
- #: bp-themes/bp-default/groups/single/admin.php:82
3404
- msgid ""
3405
- "This group will be listed in the groups directory and in search results."
3406
  msgstr ""
3407
 
3408
- #: bp-themes/bp-default/groups/create.php:73
3409
- #: bp-themes/bp-default/groups/single/admin.php:73
3410
- msgid "Group content and activity will be visible to any site member."
3411
  msgstr ""
3412
 
3413
- #: bp-themes/bp-default/groups/create.php:78
3414
- #: bp-themes/bp-default/groups/single/admin.php:79
3415
- msgid "This is a private group"
3416
  msgstr ""
3417
 
3418
- #: bp-themes/bp-default/groups/create.php:80
3419
- #: bp-themes/bp-default/groups/single/admin.php:81
3420
- msgid "Only users who request membership and are accepted can join the group."
3421
  msgstr ""
3422
 
3423
- #: bp-themes/bp-default/groups/create.php:82
3424
- #: bp-themes/bp-default/groups/create.php:91
3425
- #: bp-themes/bp-default/groups/single/admin.php:83
3426
- #: bp-themes/bp-default/groups/single/admin.php:93
3427
- msgid ""
3428
- "Group content and activity will only be visible to members of the group."
3429
  msgstr ""
3430
 
3431
- #: bp-themes/bp-default/groups/create.php:87
3432
- #: bp-themes/bp-default/groups/single/admin.php:89
3433
- msgid "This is a hidden group"
3434
  msgstr ""
3435
 
3436
- #: bp-themes/bp-default/groups/create.php:89
3437
- #: bp-themes/bp-default/groups/single/admin.php:91
3438
- msgid "Only users who are invited can join the group."
3439
  msgstr ""
3440
 
3441
- #: bp-themes/bp-default/groups/create.php:90
3442
- #: bp-themes/bp-default/groups/single/admin.php:92
3443
- msgid ""
3444
- "This group will not be listed in the groups directory or search results."
3445
  msgstr ""
3446
 
3447
- #: bp-themes/bp-default/groups/create.php:114
3448
- #: bp-themes/bp-default/groups/single/admin.php:110
3449
- msgid ""
3450
- "Upload an image to use as an avatar for this group. The image will be shown "
3451
- "on the main group page, and in search results."
3452
  msgstr ""
3453
 
3454
- #: bp-themes/bp-default/groups/create.php:118
3455
- #: bp-themes/bp-default/groups/single/admin.php:114
3456
- #: bp-themes/bp-default/members/single/profile/change-avatar.php:17
3457
- #: bp-themes/bp-default/registration/register.php:244
3458
- msgid "Upload Image"
3459
  msgstr ""
3460
 
3461
- #: bp-themes/bp-default/groups/create.php:122
3462
- msgid "To skip the avatar upload process, hit the \"Next Step\" button."
3463
  msgstr ""
3464
 
3465
- #: bp-themes/bp-default/groups/create.php:129
3466
- msgid "Crop Group Avatar"
3467
  msgstr ""
3468
 
3469
- #: bp-themes/bp-default/groups/create.php:131
3470
- #: bp-themes/bp-default/groups/single/admin.php:134
3471
- #: bp-themes/bp-default/members/single/profile/change-avatar.php:34
3472
- #: bp-themes/bp-default/registration/register.php:258
3473
- msgid "Avatar to crop"
3474
  msgstr ""
3475
 
3476
- #: bp-themes/bp-default/groups/create.php:134
3477
- #: bp-themes/bp-default/groups/single/admin.php:137
3478
- #: bp-themes/bp-default/members/single/profile/change-avatar.php:37
3479
- #: bp-themes/bp-default/registration/register.php:261
3480
- msgid "Avatar preview"
3481
  msgstr ""
3482
 
3483
- #: bp-themes/bp-default/groups/create.php:137
3484
- #: bp-themes/bp-default/groups/single/admin.php:140
3485
- #: bp-themes/bp-default/members/single/profile/change-avatar.php:40
3486
- #: bp-themes/bp-default/registration/register.php:264
3487
- msgid "Crop Image"
3488
  msgstr ""
3489
 
3490
- #: bp-themes/bp-default/groups/create.php:175
3491
- #: bp-themes/bp-default/groups/single/send-invites.php:22
3492
- msgid "Select people to invite from your friends list."
3493
  msgstr ""
3494
 
3495
- #: bp-themes/bp-default/groups/create.php:206
3496
- #: bp-themes/bp-default/groups/single/send-invites.php:73
3497
- msgid ""
3498
- "Once you have built up friend connections you will be able to invite others "
3499
- "to your group. You can send invites any time in the future by selecting the "
3500
- "\"Send Invites\" option when viewing your new group."
3501
  msgstr ""
3502
 
3503
- #: bp-themes/bp-default/groups/create.php:224
3504
- msgid "Previous Step"
3505
  msgstr ""
3506
 
3507
- #: bp-themes/bp-default/groups/create.php:229
3508
- msgid "Next Step"
 
3509
  msgstr ""
3510
 
3511
- #: bp-themes/bp-default/groups/create.php:234
3512
- msgid "Create Group and Continue"
3513
  msgstr ""
3514
 
3515
- #: bp-themes/bp-default/groups/create.php:239
3516
- msgid "Finish"
3517
  msgstr ""
3518
 
3519
- #: bp-themes/bp-default/groups/groups-loop.php:74
3520
- msgid "There were no groups found."
3521
  msgstr ""
3522
 
3523
- #: bp-themes/bp-default/groups/index.php:17
3524
- #, php-format
3525
- msgid "All Groups (%s)"
3526
  msgstr ""
3527
 
3528
- #: bp-themes/bp-default/groups/index.php:30
3529
- #: bp-themes/bp-default/members/single/groups.php:13
3530
- msgid "Most Members"
3531
  msgstr ""
3532
 
3533
- #: bp-themes/bp-default/groups/index.php:31
3534
- #: bp-themes/bp-default/members/single/groups.php:14
3535
- msgid "Newly Created"
3536
  msgstr ""
3537
 
3538
- #: bp-themes/bp-default/groups/single/admin.php:16
3539
- msgid "Group Name"
3540
  msgstr ""
3541
 
3542
- #: bp-themes/bp-default/groups/single/admin.php:19
3543
- msgid "Group Description"
 
3544
  msgstr ""
3545
 
3546
- #: bp-themes/bp-default/groups/single/admin.php:25
3547
- msgid "Notify group members of changes via email"
 
3548
  msgstr ""
3549
 
3550
- #: bp-themes/bp-default/groups/single/admin.php:120
3551
- msgid ""
3552
- "If you'd like to remove the existing avatar but not upload a new one, please "
3553
- "use the delete avatar button."
 
 
 
 
3554
  msgstr ""
3555
 
3556
- #: bp-themes/bp-default/groups/single/admin.php:122
3557
- #: bp-themes/bp-default/members/single/profile/change-avatar.php:23
3558
- msgid "Delete Avatar"
3559
  msgstr ""
3560
 
3561
- #: bp-themes/bp-default/groups/single/admin.php:132
3562
- msgid "Crop Avatar"
 
 
 
 
 
3563
  msgstr ""
3564
 
3565
- #: bp-themes/bp-default/groups/single/admin.php:160
3566
- msgid "Administrators"
3567
  msgstr ""
3568
 
3569
- #: bp-themes/bp-default/groups/single/admin.php:167
3570
- msgid "Moderators"
3571
  msgstr ""
3572
 
3573
- #: bp-themes/bp-default/groups/single/admin.php:203
3574
- msgid "(banned)"
3575
  msgstr ""
3576
 
3577
- #: bp-themes/bp-default/groups/single/admin.php:209
3578
- msgid "Unban this member"
3579
  msgstr ""
3580
 
3581
- #: bp-themes/bp-default/groups/single/admin.php:209
3582
- msgid "Remove Ban"
 
3583
  msgstr ""
3584
 
3585
- #: bp-themes/bp-default/groups/single/admin.php:213
3586
- msgid "Kick and ban this member"
3587
  msgstr ""
3588
 
3589
- #: bp-themes/bp-default/groups/single/admin.php:213
3590
- msgid "Kick &amp; Ban"
3591
  msgstr ""
3592
 
3593
- #: bp-themes/bp-default/groups/single/admin.php:214
3594
- msgid "Promote to Mod"
3595
  msgstr ""
3596
 
3597
- #: bp-themes/bp-default/groups/single/admin.php:219
3598
- msgid "Remove this member"
 
3599
  msgstr ""
3600
 
3601
- #: bp-themes/bp-default/groups/single/admin.php:219
3602
- msgid "Remove from group"
 
3603
  msgstr ""
3604
 
3605
- #: bp-themes/bp-default/groups/single/admin.php:233
3606
- #: bp-themes/bp-default/groups/single/members.php:51
3607
- msgid "This group has no members."
3608
  msgstr ""
3609
 
3610
- #: bp-themes/bp-default/groups/single/admin.php:263
3611
- #: bp-themes/bp-default/members/single/friends/requests.php:21
3612
- #: bp-themes/bp-default/members/single/groups/invites.php:20
3613
- msgid "Accept"
3614
  msgstr ""
3615
 
3616
- #: bp-themes/bp-default/groups/single/admin.php:265
3617
- #: bp-themes/bp-default/members/single/friends/requests.php:22
3618
- #: bp-themes/bp-default/members/single/groups/invites.php:21
3619
- msgid "Reject"
3620
  msgstr ""
3621
 
3622
- #: bp-themes/bp-default/groups/single/admin.php:278
3623
- msgid "There are no pending membership requests."
3624
  msgstr ""
3625
 
3626
- #: bp-themes/bp-default/groups/single/admin.php:295
3627
- msgid ""
3628
- "WARNING: Deleting this group will completely remove ALL content associated "
3629
- "with it. There is no way back, please be careful with this option."
3630
  msgstr ""
3631
 
3632
- #: bp-themes/bp-default/groups/single/admin.php:298
3633
- msgid "I understand the consequences of deleting this group."
3634
  msgstr ""
3635
 
3636
- #: bp-themes/bp-default/groups/single/forum.php:29
3637
- msgid "You will auto join this group when you start a new topic."
 
3638
  msgstr ""
3639
 
3640
- #: bp-themes/bp-default/groups/single/forum/edit.php:9
3641
- #: bp-themes/bp-default/groups/single/forum/topic.php:21
3642
- msgid "Group Forum"
3643
  msgstr ""
3644
 
3645
- #: bp-themes/bp-default/groups/single/forum/edit.php:9
3646
- #: bp-themes/bp-default/groups/single/forum/topic.php:21
3647
- msgid "Group Forum Directory"
3648
  msgstr ""
3649
 
3650
- #: bp-themes/bp-default/groups/single/forum/edit.php:24
3651
- msgid "Edit Topic:"
3652
  msgstr ""
3653
 
3654
- #: bp-themes/bp-default/groups/single/forum/edit.php:46
3655
- msgid "Edit Post:"
3656
  msgstr ""
3657
 
3658
- #: bp-themes/bp-default/groups/single/forum/edit.php:67
3659
- msgid "This topic does not exist."
3660
  msgstr ""
3661
 
3662
- #: bp-themes/bp-default/groups/single/forum/topic.php:42
3663
- #, php-format
3664
- msgid "%s said %s ago:"
3665
  msgstr ""
3666
 
3667
- #: bp-themes/bp-default/groups/single/forum/topic.php:56
3668
- msgid "Permanent link to this post"
3669
  msgstr ""
3670
 
3671
- #: bp-themes/bp-default/groups/single/forum/topic.php:87
3672
- msgid "You will auto join this group when you reply to this topic."
3673
  msgstr ""
3674
 
3675
- #: bp-themes/bp-default/groups/single/forum/topic.php:92
3676
- msgid "Add a reply:"
 
 
3677
  msgstr ""
3678
 
3679
- #: bp-themes/bp-default/groups/single/forum/topic.php:97
3680
- msgid "Post Reply"
 
 
3681
  msgstr ""
3682
 
3683
- #: bp-themes/bp-default/groups/single/forum/topic.php:108
3684
- msgid "This topic is closed, replies are no longer accepted."
3685
  msgstr ""
3686
 
3687
- #: bp-themes/bp-default/groups/single/forum/topic.php:121
3688
- msgid "There are no posts for this topic."
3689
  msgstr ""
3690
 
3691
- #: bp-themes/bp-default/groups/single/group-header.php:6
3692
- msgid "Group Admins"
 
 
3693
  msgstr ""
3694
 
3695
- #: bp-themes/bp-default/groups/single/group-header.php:14
3696
- msgid "Group Mods"
 
 
3697
  msgstr ""
3698
 
3699
- #: bp-themes/bp-default/groups/single/request-membership.php:4
3700
- #, php-format
3701
- msgid "You are requesting to become a member of the group '%s'."
3702
  msgstr ""
3703
 
3704
- #: bp-themes/bp-default/groups/single/request-membership.php:7
3705
- msgid "Comments (optional)"
 
3706
  msgstr ""
3707
 
3708
- #: bp-themes/bp-default/groups/single/request-membership.php:12
3709
- msgid "Send Request"
 
3710
  msgstr ""
3711
 
3712
- #: bp-themes/bp-default/header.php:18
3713
- msgid "Site Wide Activity RSS Feed"
 
 
3714
  msgstr ""
3715
 
3716
- #: bp-themes/bp-default/header.php:22
3717
- msgid "Activity RSS Feed"
 
 
3718
  msgstr ""
3719
 
3720
- #: bp-themes/bp-default/header.php:26
3721
- msgid "Group Activity RSS Feed"
 
3722
  msgstr ""
3723
 
3724
- #: bp-themes/bp-default/header.php:29
3725
- msgid "Blog Posts RSS Feed"
 
 
3726
  msgstr ""
3727
 
3728
- #: bp-themes/bp-default/header.php:30
3729
- msgid "Blog Posts Atom Feed"
3730
  msgstr ""
3731
 
3732
- #: bp-themes/bp-default/index.php:51
3733
- msgid "Sorry, but you are looking for something that isn't here."
3734
  msgstr ""
3735
 
3736
- #: bp-themes/bp-default/links.php:16
3737
- msgid "Links"
3738
  msgstr ""
3739
 
3740
- #: bp-themes/bp-default/members/index.php:8
3741
- msgid "Members Directory"
3742
  msgstr ""
3743
 
3744
- #: bp-themes/bp-default/members/index.php:31
3745
- #: bp-themes/bp-default/members/single/friends.php:12
3746
- msgid "Newest Registered"
3747
  msgstr ""
3748
 
3749
- #: bp-themes/bp-default/members/members-loop.php:87
3750
- msgid "Sorry, no members were found."
3751
  msgstr ""
3752
 
3753
- #: bp-themes/bp-default/members/single/friends/requests.php:36
3754
- msgid "You have no pending friendship requests."
3755
  msgstr ""
3756
 
3757
- #: bp-themes/bp-default/members/single/groups/invites.php:34
3758
- msgid "You have no outstanding group invites."
3759
  msgstr ""
3760
 
3761
- #: bp-themes/bp-default/members/single/messages/compose.php:5
3762
- msgid "Send To (Username or Friend's Name)"
3763
  msgstr ""
3764
 
3765
- #: bp-themes/bp-default/members/single/messages/compose.php:14
3766
- msgid "This is a notice to all users."
 
3767
  msgstr ""
3768
 
3769
- #: bp-themes/bp-default/members/single/messages/compose.php:17
3770
- msgid "Subject"
 
3771
  msgstr ""
3772
 
3773
- #: bp-themes/bp-default/members/single/messages/compose.php:20
3774
- msgid "Message"
3775
  msgstr ""
3776
 
3777
- #: bp-themes/bp-default/members/single/messages/compose.php:28
3778
- msgid "Send Message"
3779
  msgstr ""
3780
 
3781
- #: bp-themes/bp-default/members/single/messages/messages-loop.php:31
3782
- msgid "From:"
3783
  msgstr ""
3784
 
3785
- #: bp-themes/bp-default/members/single/messages/messages-loop.php:36
3786
- msgid "To:"
3787
  msgstr ""
3788
 
3789
- #: bp-themes/bp-default/members/single/messages/messages-loop.php:42
3790
- msgid "View Message"
3791
  msgstr ""
3792
 
3793
- #: bp-themes/bp-default/members/single/messages/messages-loop.php:50
3794
- #: bp-themes/bp-default/members/single/messages/notices-loop.php:38
3795
- msgid "Delete Message"
3796
  msgstr ""
3797
 
3798
- #: bp-themes/bp-default/members/single/messages/messages-loop.php:68
3799
- msgid "Sorry, no messages were found."
3800
  msgstr ""
3801
 
3802
- #: bp-themes/bp-default/members/single/messages/notices-loop.php:31
3803
- msgid "Sent:"
 
 
 
 
3804
  msgstr ""
3805
 
3806
- #: bp-themes/bp-default/members/single/messages/notices-loop.php:49
3807
- msgid "Sorry, no notices were found."
 
3808
  msgstr ""
3809
 
3810
- #: bp-themes/bp-default/members/single/messages/single.php:11
3811
- #, php-format
3812
- msgid "Sent between %s and %s"
3813
  msgstr ""
3814
 
3815
- #: bp-themes/bp-default/members/single/messages/single.php:63
3816
- msgid "Send a Reply"
3817
  msgstr ""
3818
 
3819
- #: bp-themes/bp-default/members/single/messages/single.php:79
3820
- msgid "Send Reply"
3821
  msgstr ""
3822
 
3823
- #: bp-themes/bp-default/members/single/profile/change-avatar.php:1
3824
- #: bp-xprofile.php:179
3825
- msgid "Change Avatar"
3826
  msgstr ""
3827
 
3828
- #: bp-themes/bp-default/members/single/profile/change-avatar.php:7
3829
- msgid ""
3830
- "Your avatar will be used on your profile and throughout the site. If there "
3831
- "is a <a href=\"http://gravatar.com\">Gravatar</a> associated with your "
3832
- "account email we will use that, or you can upload an image from your "
3833
- "computer."
3834
  msgstr ""
3835
 
3836
- #: bp-themes/bp-default/members/single/profile/change-avatar.php:13
3837
- msgid ""
3838
- "Click below to select a JPG, GIF or PNG format photo from your computer and "
3839
- "then click 'Upload Image' to proceed."
3840
  msgstr ""
3841
 
3842
- #: bp-themes/bp-default/members/single/profile/change-avatar.php:22
3843
- msgid ""
3844
- "If you'd like to delete your current avatar but not upload a new one, please "
3845
- "use the delete avatar button."
3846
  msgstr ""
3847
 
3848
- #: bp-themes/bp-default/members/single/profile/change-avatar.php:23
3849
- msgid "Delete My Avatar"
3850
  msgstr ""
3851
 
3852
- #: bp-themes/bp-default/members/single/profile/change-avatar.php:32
3853
- #: bp-themes/bp-default/registration/register.php:256
3854
- msgid "Crop Your New Avatar"
3855
  msgstr ""
3856
 
3857
- #: bp-themes/bp-default/members/single/profile/change-avatar.php:56
3858
- msgid ""
3859
- "Your avatar will be used on your profile and throughout the site. To change "
3860
- "your avatar, please create an account with <a href=\"http://gravatar.com"
3861
- "\">Gravatar</a> using the same email address as you used to register with "
3862
- "this site."
3863
  msgstr ""
3864
 
3865
- #: bp-themes/bp-default/members/single/profile/edit.php:9
3866
- #, php-format
3867
- msgid "Editing '%s' Profile Group"
3868
  msgstr ""
3869
 
3870
- #: bp-themes/bp-default/members/single/profile/edit.php:52
3871
- #: bp-themes/bp-default/members/single/profile/edit.php:65
3872
- #: bp-themes/bp-default/registration/register.php:110
3873
- msgid "Clear"
3874
  msgstr ""
3875
 
3876
- #: bp-themes/bp-default/page.php:18
3877
- msgid "<p class=\"serif\">Read the rest of this page &rarr;</p>"
 
 
3878
  msgstr ""
3879
 
3880
- #: bp-themes/bp-default/page.php:21
3881
- msgid "Edit this entry."
 
3882
  msgstr ""
3883
 
3884
- #: bp-themes/bp-default/registration/activate.php:16
3885
- msgid "Account Activated"
3886
  msgstr ""
3887
 
3888
- #: bp-themes/bp-default/registration/activate.php:21
3889
- msgid ""
3890
- "Your account was activated successfully! Your account details have been sent "
3891
- "to you in a separate email."
3892
  msgstr ""
3893
 
3894
- #: bp-themes/bp-default/registration/activate.php:23
3895
- msgid ""
3896
- "Your account was activated successfully! You can now log in with the "
3897
- "username and password you provided when you signed up."
3898
  msgstr ""
3899
 
3900
- #: bp-themes/bp-default/registration/activate.php:32
3901
- msgid "Please provide a valid activation key."
3902
  msgstr ""
3903
 
3904
- #: bp-themes/bp-default/registration/activate.php:36
3905
- msgid "Activation Key:"
3906
  msgstr ""
3907
 
3908
- #: bp-themes/bp-default/registration/register.php:18
3909
- msgid ""
3910
- "Registering for this site is easy, just fill in the fields below and we'll "
3911
- "get a new account set up for you in no time."
3912
  msgstr ""
3913
 
3914
- #: bp-themes/bp-default/registration/register.php:26
3915
- msgid "Account Details"
3916
  msgstr ""
3917
 
3918
- #: bp-themes/bp-default/registration/register.php:28
3919
- #: bp-themes/bp-default/sidebar.php:41
3920
- msgid "Username"
3921
  msgstr ""
3922
 
3923
- #: bp-themes/bp-default/registration/register.php:32
3924
- msgid "Email Address"
3925
  msgstr ""
3926
 
3927
- #: bp-themes/bp-default/registration/register.php:36
3928
- msgid "Choose a Password"
3929
  msgstr ""
3930
 
3931
- #: bp-themes/bp-default/registration/register.php:40
3932
- msgid "Confirm Password"
3933
  msgstr ""
3934
 
3935
- #: bp-themes/bp-default/registration/register.php:56
3936
- msgid "Profile Details"
3937
  msgstr ""
3938
 
3939
- #: bp-themes/bp-default/registration/register.php:174
3940
- msgid "Blog Details"
3941
  msgstr ""
3942
 
3943
- #: bp-themes/bp-default/registration/register.php:176
3944
- msgid "Yes, I'd like to create a new blog"
3945
  msgstr ""
3946
 
3947
- #: bp-themes/bp-default/registration/register.php:180
3948
- msgid "Blog URL"
 
3949
  msgstr ""
3950
 
3951
- #: bp-themes/bp-default/registration/register.php:189
3952
- msgid "Blog Title"
3953
  msgstr ""
3954
 
3955
- #: bp-themes/bp-default/registration/register.php:193
3956
- msgid ""
3957
- "I would like my blog to appear in search engines, and in public listings "
3958
- "around this site"
3959
  msgstr ""
3960
 
3961
- #: bp-themes/bp-default/registration/register.php:210
3962
- msgid "Complete Sign Up"
 
3963
  msgstr ""
3964
 
3965
- #: bp-themes/bp-default/registration/register.php:221
3966
- msgid "Sign Up Complete!"
 
3967
  msgstr ""
3968
 
3969
- #: bp-themes/bp-default/registration/register.php:226
3970
- msgid ""
3971
- "You have successfully created your account! To begin using this site you "
3972
- "will need to activate your account via the email we have just sent to your "
3973
- "address."
3974
  msgstr ""
3975
 
3976
- #: bp-themes/bp-default/registration/register.php:228
3977
- msgid ""
3978
- "You have successfully created your account! Please log in using the username "
3979
- "and password you have just created."
3980
  msgstr ""
3981
 
3982
- #: bp-themes/bp-default/registration/register.php:235
3983
- msgid "Your Current Avatar"
3984
  msgstr ""
3985
 
3986
- #: bp-themes/bp-default/registration/register.php:236
3987
- msgid ""
3988
- "We've fetched an avatar for your new account. If you'd like to change this, "
3989
- "why not upload a new one?"
3990
  msgstr ""
3991
 
3992
- #: bp-themes/bp-default/search.php:14
3993
- msgid "Search Results"
3994
  msgstr ""
3995
 
3996
- #: bp-themes/bp-default/search.php:57
3997
- msgid "No posts found. Try a different search?"
3998
  msgstr ""
3999
 
4000
- #: bp-themes/bp-default/sidebar.php:34
4001
- msgid "To start connecting please log in first."
4002
  msgstr ""
4003
 
4004
- #: bp-themes/bp-default/sidebar.php:36
4005
- #, php-format
4006
- msgid ""
4007
- " You can also <a href=\"%s\" title=\"Create an account\">create an account</"
4008
- "a>."
4009
  msgstr ""
4010
 
4011
- #: bp-themes/bp-default/sidebar.php:44
4012
- msgid "Password"
4013
  msgstr ""
4014
 
4015
- #: bp-themes/bp-default/sidebar.php:47
4016
- msgid "Remember Me"
4017
  msgstr ""
4018
 
4019
- #: bp-themes/bp-default/sidebar.php:62
4020
- msgid "Forum Topic Tags"
4021
  msgstr ""
4022
 
4023
- #: bp-themes/bp-default/single.php:29
4024
- msgid "Edit this entry"
4025
  msgstr ""
4026
 
4027
- #: bp-themes/bp-default/single.php:46
4028
- msgid "Sorry, no posts matched your criteria."
4029
  msgstr ""
4030
 
4031
- #: bp-xprofile.php:148 bp-xprofile/bp-xprofile-admin.php:38
4032
- msgid "Profile Field Setup"
4033
  msgstr ""
4034
 
4035
- #: bp-xprofile.php:178 bp-xprofile/bp-xprofile-templatetags.php:695
4036
- #: bp-xprofile/bp-xprofile-templatetags.php:696
4037
- msgid "Edit Profile"
4038
  msgstr ""
4039
 
4040
- #: bp-xprofile.php:216
4041
- #, php-format
4042
- msgid "Edit %s's Profile"
4043
  msgstr ""
4044
 
4045
- #: bp-xprofile.php:217
4046
- #, php-format
4047
- msgid "Edit %s's Avatar"
4048
  msgstr ""
4049
 
4050
- #: bp-xprofile.php:220
4051
- msgid "Mark as Spammer"
4052
  msgstr ""
4053
 
4054
- #: bp-xprofile.php:222
4055
- msgid "Not a Spammer"
4056
  msgstr ""
4057
 
4058
- #: bp-xprofile.php:225
4059
- #, php-format
4060
- msgid "Delete %s"
4061
  msgstr ""
4062
 
4063
- #: bp-xprofile.php:318
4064
- msgid ""
4065
- "Please make sure you fill in all required fields in this profile field group "
4066
- "before saving."
4067
  msgstr ""
4068
 
4069
- #: bp-xprofile.php:335
4070
- msgid ""
4071
- "There was a problem updating some of your profile information, please try "
4072
- "again."
4073
  msgstr ""
4074
 
4075
- #: bp-xprofile.php:337
4076
- msgid "Changes saved."
 
4077
  msgstr ""
4078
 
4079
- #: bp-xprofile.php:388
4080
- msgid "Your new avatar was uploaded successfully!"
 
4081
  msgstr ""
4082
 
4083
- #: bp-xprofile.php:455
4084
- msgid "New member registered"
 
4085
  msgstr ""
4086
 
4087
- #: bp-xprofile.php:456
4088
- msgid "Updated Profile"
 
4089
  msgstr ""
4090
 
4091
- #: bp-xprofile/bp-xprofile-admin.php:40
4092
- msgid ""
4093
- "Your users will distinguish themselves through their profile page. You must "
4094
- "give them profile fields that allow them to describe themselves in a way "
4095
- "that is relevant to the theme of your social network."
4096
  msgstr ""
4097
 
4098
- #: bp-xprofile/bp-xprofile-admin.php:41
4099
- msgid "NOTE: Any fields in the first group will appear on the signup page."
 
 
 
4100
  msgstr ""
4101
 
4102
- #: bp-xprofile/bp-xprofile-admin.php:73
4103
- msgid "Field Name"
 
4104
  msgstr ""
4105
 
4106
- #: bp-xprofile/bp-xprofile-admin.php:74
4107
- #: bp-xprofile/bp-xprofile-classes.php:617
4108
- msgid "Field Type"
4109
  msgstr ""
4110
 
4111
- #: bp-xprofile/bp-xprofile-admin.php:75
4112
- msgid "Required?"
 
4113
  msgstr ""
4114
 
4115
- #: bp-xprofile/bp-xprofile-admin.php:76
4116
- msgid "Action"
 
 
 
4117
  msgstr ""
4118
 
4119
- #: bp-xprofile/bp-xprofile-admin.php:90
4120
- msgid "Drag"
 
4121
  msgstr ""
4122
 
4123
- #: bp-xprofile/bp-xprofile-admin.php:91
4124
- msgid "(Core Field)"
 
4125
  msgstr ""
4126
 
4127
- #: bp-xprofile/bp-xprofile-admin.php:103
4128
- msgid "There are no fields in this group."
 
4129
  msgstr ""
4130
 
4131
- #: bp-xprofile/bp-xprofile-admin.php:113
4132
- msgid "Add New Field"
 
4133
  msgstr ""
4134
 
4135
- #: bp-xprofile/bp-xprofile-admin.php:124
4136
- #: bp-xprofile/bp-xprofile-classes.php:171
4137
- msgid "Add New Field Group"
4138
  msgstr ""
4139
 
4140
- #: bp-xprofile/bp-xprofile-admin.php:128
4141
- msgid "You have no groups."
4142
  msgstr ""
4143
 
4144
- #: bp-xprofile/bp-xprofile-admin.php:129
4145
- msgid "Add New Group"
4146
  msgstr ""
4147
 
4148
- #: bp-xprofile/bp-xprofile-admin.php:157
4149
- msgid "There was an error saving the group. Please try again"
4150
  msgstr ""
4151
 
4152
- #: bp-xprofile/bp-xprofile-admin.php:160
4153
- msgid "The group was saved successfully."
4154
  msgstr ""
4155
 
4156
- #: bp-xprofile/bp-xprofile-admin.php:189
4157
- msgid "There was an error deleting the group. Please try again"
4158
  msgstr ""
4159
 
4160
- #: bp-xprofile/bp-xprofile-admin.php:192
4161
- msgid "The group was deleted successfully."
4162
  msgstr ""
4163
 
4164
- #: bp-xprofile/bp-xprofile-admin.php:231
4165
- msgid "There was an error saving the field. Please try again"
4166
  msgstr ""
4167
 
4168
- #: bp-xprofile/bp-xprofile-admin.php:237
4169
- msgid "The field was saved successfully."
4170
  msgstr ""
4171
 
4172
- #: bp-xprofile/bp-xprofile-admin.php:265
4173
- msgid "field"
4174
  msgstr ""
4175
 
4176
- #: bp-xprofile/bp-xprofile-admin.php:267
4177
- msgid "option"
4178
  msgstr ""
4179
 
4180
- #: bp-xprofile/bp-xprofile-admin.php:273
4181
- #, php-format
4182
- msgid "There was an error deleting the %s. Please try again"
4183
  msgstr ""
4184
 
4185
- #: bp-xprofile/bp-xprofile-admin.php:276
4186
- #, php-format
4187
- msgid "The %s was deleted successfully!"
4188
  msgstr ""
4189
 
4190
- #: bp-xprofile/bp-xprofile-classes.php:158
4191
- msgid "Please make sure you give the group a name."
4192
  msgstr ""
4193
 
4194
- #: bp-xprofile/bp-xprofile-classes.php:174
4195
- msgid "Edit Field Group"
4196
  msgstr ""
4197
 
4198
- #: bp-xprofile/bp-xprofile-classes.php:195
4199
- msgid "Field Group Name"
4200
  msgstr ""
4201
 
4202
- #: bp-xprofile/bp-xprofile-classes.php:494
4203
- msgid "Please enter options for this Field:"
4204
  msgstr ""
4205
 
4206
- #: bp-xprofile/bp-xprofile-classes.php:498
4207
- msgid "Order Entered"
4208
  msgstr ""
4209
 
4210
- #: bp-xprofile/bp-xprofile-classes.php:499
4211
- msgid "Name - Ascending"
4212
  msgstr ""
4213
 
4214
- #: bp-xprofile/bp-xprofile-classes.php:500
4215
- msgid "Name - Descending"
4216
  msgstr ""
4217
 
4218
- #: bp-xprofile/bp-xprofile-classes.php:529
4219
- #: bp-xprofile/bp-xprofile-classes.php:550
4220
- msgid "Option"
4221
  msgstr ""
4222
 
4223
- #: bp-xprofile/bp-xprofile-classes.php:531
4224
- #: bp-xprofile/bp-xprofile-classes.php:551
4225
- msgid "Default Value"
4226
  msgstr ""
4227
 
4228
- #: bp-xprofile/bp-xprofile-classes.php:557
4229
- msgid "Add Another Option"
4230
  msgstr ""
4231
 
4232
- #: bp-xprofile/bp-xprofile-classes.php:565
4233
- msgid "Add Field"
4234
  msgstr ""
4235
 
4236
- #: bp-xprofile/bp-xprofile-classes.php:574
4237
- msgid "Edit Field"
4238
  msgstr ""
4239
 
4240
- #: bp-xprofile/bp-xprofile-classes.php:595
4241
- msgid "Field Title"
4242
  msgstr ""
4243
 
4244
- #: bp-xprofile/bp-xprofile-classes.php:602
4245
- msgid "Field Description"
4246
  msgstr ""
4247
 
4248
- #: bp-xprofile/bp-xprofile-classes.php:609
4249
- msgid "Is This Field Required?"
4250
  msgstr ""
4251
 
4252
- #: bp-xprofile/bp-xprofile-classes.php:611
4253
- msgid "Not Required"
4254
  msgstr ""
4255
 
4256
- #: bp-xprofile/bp-xprofile-classes.php:612
4257
- msgid "Required"
4258
  msgstr ""
4259
 
4260
- #: bp-xprofile/bp-xprofile-classes.php:619
4261
- msgid "Text Box"
4262
  msgstr ""
4263
 
4264
- #: bp-xprofile/bp-xprofile-classes.php:620
4265
- msgid "Multi-line Text Box"
4266
  msgstr ""
4267
 
4268
- #: bp-xprofile/bp-xprofile-classes.php:621
4269
- msgid "Date Selector"
4270
  msgstr ""
4271
 
4272
- #: bp-xprofile/bp-xprofile-classes.php:622
4273
- msgid "Radio Buttons"
 
 
 
 
 
 
 
4274
  msgstr ""
4275
 
4276
- #: bp-xprofile/bp-xprofile-classes.php:623
4277
- msgid "Drop Down Select Box"
4278
  msgstr ""
4279
 
4280
- #: bp-xprofile/bp-xprofile-classes.php:624
4281
- msgid "Multi Select Box"
 
 
 
 
 
 
 
4282
  msgstr ""
4283
 
4284
- #: bp-xprofile/bp-xprofile-classes.php:625
4285
- msgid "Checkboxes"
4286
  msgstr ""
4287
 
4288
- #: bp-xprofile/bp-xprofile-classes.php:632
4289
- msgid "Save"
 
 
 
 
 
 
 
4290
  msgstr ""
4291
 
4292
- #: bp-xprofile/bp-xprofile-classes.php:633
4293
- msgid "or"
4294
  msgstr ""
4295
 
4296
- #: bp-xprofile/bp-xprofile-classes.php:655
4297
- msgid "Please make sure you fill out all required fields."
4298
  msgstr ""
4299
 
4300
- #: bp-xprofile/bp-xprofile-classes.php:658
4301
- msgid ""
4302
- "Radio button field types require at least one option. Please add options "
4303
- "below."
4304
  msgstr ""
4305
 
4306
- #: bp-xprofile/bp-xprofile-classes.php:661
4307
- #: bp-xprofile/bp-xprofile-classes.php:664
4308
- msgid ""
4309
- "Select box field types require at least one option. Please add options below."
4310
  msgstr ""
4311
 
4312
- #: bp-xprofile/bp-xprofile-classes.php:667
4313
- msgid ""
4314
- "Checkbox field types require at least one option. Please add options below."
4315
  msgstr ""
4316
 
4317
- #: bp-xprofile/bp-xprofile-templatetags.php:490
4318
- msgid "January"
4319
  msgstr ""
4320
 
4321
- #: bp-xprofile/bp-xprofile-templatetags.php:490
4322
- msgid "February"
4323
  msgstr ""
4324
 
4325
- #: bp-xprofile/bp-xprofile-templatetags.php:490
4326
- msgid "March"
4327
  msgstr ""
4328
 
4329
- #: bp-xprofile/bp-xprofile-templatetags.php:491
4330
- msgid "April"
4331
  msgstr ""
4332
 
4333
- #: bp-xprofile/bp-xprofile-templatetags.php:491
4334
- msgid "May"
4335
  msgstr ""
4336
 
4337
- #: bp-xprofile/bp-xprofile-templatetags.php:491
4338
- msgid "June"
4339
  msgstr ""
4340
 
4341
- #: bp-xprofile/bp-xprofile-templatetags.php:492
4342
- msgid "July"
 
 
 
 
 
 
4343
  msgstr ""
4344
 
4345
- #: bp-xprofile/bp-xprofile-templatetags.php:492
4346
- msgid "August"
 
4347
  msgstr ""
4348
 
4349
- #: bp-xprofile/bp-xprofile-templatetags.php:492
4350
- msgid "September"
4351
  msgstr ""
4352
 
4353
- #: bp-xprofile/bp-xprofile-templatetags.php:493
4354
- msgid "October"
 
4355
  msgstr ""
4356
 
4357
- #: bp-xprofile/bp-xprofile-templatetags.php:493
4358
- msgid "November"
4359
  msgstr ""
4360
 
4361
- #: bp-xprofile/bp-xprofile-templatetags.php:493
4362
- msgid "December"
4363
  msgstr ""
4364
 
4365
- #: bp-xprofile/bp-xprofile-templatetags.php:632
4366
- msgid ""
4367
- "Avatar uploads are currently disabled. Why not use a <a href=\"http://"
4368
- "gravatar.com\" target=\"_blank\">gravatar</a> instead?"
4369
  msgstr ""
4370
 
4371
- #: bp-xprofile/bp-xprofile-templatetags.php:641
4372
- msgid "Profile not recently updated"
4373
  msgstr ""
4374
 
4375
- #: bp-xprofile/bp-xprofile-templatetags.php:652
4376
- #, php-format
4377
- msgid "Profile updated %s ago"
4378
- msgstr ""
 
1
  # Copyright (C) 2010 BuddyPress
2
  # This file is distributed under the same license as the BuddyPress package.
 
 
 
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: BuddyPress \n"
6
  "Report-Msgid-Bugs-To: wp-polyglots@lists.automattic.com\n"
7
+ "POT-Creation-Date: 2010-12-20 22:28:00+00:00\n"
8
+ "MIME-Version: 1.0\n"
9
+ "Content-Type: text/plain; charset=UTF-8\n"
10
+ "Content-Transfer-Encoding: 8bit\n"
11
  "PO-Revision-Date: 2010-MO-DA HO:MI+ZONE\n"
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
 
 
 
 
14
 
15
+ #: bp-friends.php:70
16
+ msgid "Friends <span>(%d)</span>"
 
 
17
  msgstr ""
18
 
19
+ #: bp-friends.php:75 bp-friends.php:80 bp-friends.php:320
20
+ #: bp-friends/bp-friends-templatetags.php:40
21
+ msgid "My Friends"
22
  msgstr ""
23
 
24
+ #: bp-friends.php:76
25
+ msgid "Requests"
26
  msgstr ""
27
 
28
+ #: bp-friends.php:118
29
+ msgid "Friendship accepted"
 
 
 
30
  msgstr ""
31
 
32
+ #: bp-friends.php:120
33
+ msgid "Friendship could not be accepted"
34
  msgstr ""
35
 
36
+ #: bp-friends.php:129
37
+ msgid "Friendship rejected"
 
38
  msgstr ""
39
 
40
+ #: bp-friends.php:131
41
+ msgid "Friendship could not be rejected"
42
  msgstr ""
43
 
44
+ #: bp-friends.php:150 bp-core/bp-core-admin.php:201 bp-activity.php:123
45
+ msgid "Friends"
46
  msgstr ""
47
 
48
+ #: bp-friends.php:151 bp-blogs/bp-blogs-templatetags.php:409
49
  #: bp-core/bp-core-admin.php:60 bp-core/bp-core-admin.php:68
50
  #: bp-core/bp-core-admin.php:75 bp-core/bp-core-admin.php:82
51
  #: bp-core/bp-core-admin.php:90 bp-core/bp-core-admin.php:99
52
+ #: bp-activity.php:271 bp-xprofile/bp-xprofile-admin.php:93 bp-groups.php:987
53
+ #: bp-messages.php:245 bp-themes/bp-default/registration/register.php:196
54
  #: bp-themes/bp-default/groups/single/admin.php:26
 
 
55
  msgid "Yes"
56
  msgstr ""
57
 
58
+ #: bp-friends.php:152 bp-blogs/bp-blogs-templatetags.php:413
59
  #: bp-core/bp-core-admin.php:61 bp-core/bp-core-admin.php:69
60
  #: bp-core/bp-core-admin.php:76 bp-core/bp-core-admin.php:83
61
  #: bp-core/bp-core-admin.php:91 bp-core/bp-core-admin.php:100
62
+ #: bp-activity.php:272 bp-groups.php:988 bp-messages.php:246
 
63
  #: bp-themes/bp-default/registration/register.php:197
64
+ #: bp-themes/bp-default/groups/single/admin.php:27
65
  msgid "No"
66
  msgstr ""
67
 
68
+ #: bp-friends.php:159
69
+ msgid "A member sends you a friendship request"
 
70
  msgstr ""
71
 
72
+ #: bp-friends.php:165
73
+ msgid "A member accepts your friendship request"
74
  msgstr ""
75
 
76
+ #: bp-friends.php:208 bp-themes/bp-default/_inc/ajax.php:351
77
+ msgid "Friendship could not be requested."
78
  msgstr ""
79
 
80
+ #: bp-friends.php:210
81
+ msgid "Friendship requested"
82
  msgstr ""
83
 
84
+ #: bp-friends.php:213
85
+ msgid "You are already friends with this user"
86
  msgstr ""
87
 
88
+ #: bp-friends.php:215
89
+ msgid "You already have a pending friendship request with this user"
90
  msgstr ""
91
 
92
+ #: bp-friends.php:246 bp-themes/bp-default/_inc/ajax.php:341
93
+ msgid "Friendship could not be canceled."
94
  msgstr ""
95
 
96
+ #: bp-friends.php:248
97
+ msgid "Friendship canceled"
98
  msgstr ""
99
 
100
+ #: bp-friends.php:251
101
+ msgid "You are not yet friends with this user"
102
  msgstr ""
103
 
104
+ #: bp-friends.php:253
105
+ msgid "You have a pending friendship request with this user"
 
106
  msgstr ""
107
 
108
+ #: bp-friends.php:308
109
+ msgid "New friendship created"
110
  msgstr ""
111
 
112
+ #: bp-friends.php:320
113
+ msgid "%d friends accepted your friendship requests"
 
114
  msgstr ""
115
 
116
+ #: bp-friends.php:324 bp-friends/bp-friends-notifications.php:62
117
+ msgid "%s accepted your friendship request"
118
  msgstr ""
119
 
120
+ #: bp-friends.php:330 bp-friends.php:334
121
+ msgid "Friendship requests"
 
122
  msgstr ""
123
 
124
+ #: bp-friends.php:330
125
+ msgid "You have %d pending friendship requests"
 
126
  msgstr ""
127
 
128
+ #: bp-friends.php:334
129
+ msgid "You have a friendship request from %s"
 
130
  msgstr ""
131
 
132
+ #: bp-friends.php:433 bp-friends.php:442
133
+ msgid "%s and %s are now friends"
134
  msgstr ""
135
 
136
+ #: bp-blogs/bp-blogs-widgets.php:18
137
+ msgid "Recent Site Wide Posts"
138
  msgstr ""
139
 
140
+ #: bp-blogs/bp-blogs-widgets.php:60
141
+ msgid "Sorry, there were no blog posts found. Why not write one?"
 
142
  msgstr ""
143
 
144
+ #: bp-blogs/bp-blogs-widgets.php:80
145
+ msgid "Max posts to show:"
 
 
 
 
 
 
 
 
146
  msgstr ""
147
 
148
+ #: bp-blogs/bp-blogs-templatetags.php:173
149
+ msgid "Viewing blog %1$s to %2$s (of %3$s blogs)"
 
 
 
 
 
 
 
 
 
 
 
 
150
  msgstr ""
151
 
152
+ #: bp-blogs/bp-blogs-templatetags.php:198
153
+ msgid "Blog avatar"
 
154
  msgstr ""
155
 
156
+ #: bp-blogs/bp-blogs-templatetags.php:256 bp-core/bp-core-templatetags.php:355
157
+ #: bp-core/bp-core-templatetags.php:1327 bp-core/bp-core-classes.php:82
158
+ #: bp-groups/bp-groups-widgets.php:119
159
+ #: bp-themes/bp-default/groups/groups-loop.php:31
160
+ #: bp-themes/bp-default/groups/single/group-header.php:31
161
+ msgid "active %s ago"
 
 
 
 
162
  msgstr ""
163
 
164
+ #: bp-blogs/bp-blogs-templatetags.php:268
165
+ msgid "Latest Post: %s"
 
166
  msgstr ""
167
 
168
+ #: bp-blogs/bp-blogs-templatetags.php:340
169
+ msgid "There was a problem, please correct the form below and try again."
 
 
 
 
 
 
 
 
 
170
  msgstr ""
171
 
172
+ #: bp-blogs/bp-blogs-templatetags.php:343
173
+ msgid "By filling out the form below, you can <strong>add a blog to your account</strong>. There is no limit to the number of blogs you can have, so create to your heart's content, but blog responsibly."
 
174
  msgstr ""
175
 
176
+ #: bp-blogs/bp-blogs-templatetags.php:345
177
+ msgid "If you&#8217;re not going to use a great blog domain, leave it for a new user. Now have at it!"
 
178
  msgstr ""
179
 
180
+ #: bp-blogs/bp-blogs-templatetags.php:354
181
+ msgid "Create Blog &rarr;"
 
182
  msgstr ""
183
 
184
+ #: bp-blogs/bp-blogs-templatetags.php:368
185
+ msgid "Blog Name:"
 
186
  msgstr ""
187
 
188
+ #: bp-blogs/bp-blogs-templatetags.php:370
189
+ msgid "Blog Domain:"
 
 
 
190
  msgstr ""
191
 
192
+ #: bp-blogs/bp-blogs-templatetags.php:382
193
+ msgid "Your address will be "
 
 
194
  msgstr ""
195
 
196
+ #: bp-blogs/bp-blogs-templatetags.php:385
197
+ msgid "blogname"
 
 
198
  msgstr ""
199
 
200
+ #: bp-blogs/bp-blogs-templatetags.php:387
201
+ msgid "domain."
 
 
 
 
202
  msgstr ""
203
 
204
+ #: bp-blogs/bp-blogs-templatetags.php:390
205
+ msgid "Must be at least 4 characters, letters and numbers only. It cannot be changed so choose carefully!)"
206
  msgstr ""
207
 
208
+ #: bp-blogs/bp-blogs-templatetags.php:395
209
+ msgid "Blog Title:"
210
  msgstr ""
211
 
212
+ #: bp-blogs/bp-blogs-templatetags.php:403
213
+ msgid "Privacy:"
214
  msgstr ""
215
 
216
+ #: bp-blogs/bp-blogs-templatetags.php:404
217
+ msgid "I would like my blog to appear in search engines like Google and Technorati, and in public listings around this site."
218
  msgstr ""
219
 
220
+ #: bp-blogs/bp-blogs-templatetags.php:464
221
+ msgid "Congratulations! You have successfully registered a new blog."
222
  msgstr ""
223
 
224
+ #: bp-blogs/bp-blogs-templatetags.php:466
225
+ msgid "<a href=\"http://%1$s\">http://%2$s</a> is your new blog. <a href=\"%3$s\">Login</a> as \"%4$s\" using your existing password."
226
  msgstr ""
227
 
228
+ #: bp-blogs/bp-blogs-templatetags.php:476 bp-core/bp-core-templatetags.php:928
229
+ #: bp-themes/bp-default/blogs/index.php:8
230
+ #: bp-themes/bp-default/blogs/create.php:10
231
+ msgid "Create a Blog"
232
  msgstr ""
233
 
234
+ #: bp-blogs/bp-blogs-templatetags.php:490
235
+ msgid "%s's Blogs"
236
  msgstr ""
237
 
238
+ #: bp-blogs/bp-blogs-templatetags.php:491
239
+ msgid "%s's Recent Posts"
 
240
  msgstr ""
241
 
242
+ #: bp-blogs/bp-blogs-templatetags.php:492
243
+ msgid "%s's Recent Comments"
 
 
 
 
 
 
 
244
  msgstr ""
245
 
246
+ #: bp-blogs/bp-blogs-templatetags.php:501 bp-core/bp-core-templatetags.php:447
247
+ #: bp-core/bp-core-templatetags.php:453
248
+ #: bp-groups/bp-groups-templatetags.php:1810
249
+ #: bp-groups/bp-groups-templatetags.php:1816
250
+ #: bp-forums/bp-forums-templatetags.php:1028
251
+ #: bp-forums/bp-forums-templatetags.php:1034
252
+ #: bp-themes/bp-default/_inc/ajax.php:56
253
+ msgid "Search anything..."
 
 
254
  msgstr ""
255
 
256
+ #: bp-blogs/bp-blogs-templatetags.php:502 bp-core/bp-core-templatetags.php:454
257
+ #: bp-core/bp-core-templatetags.php:1048
258
+ #: bp-groups/bp-groups-templatetags.php:1817
259
+ #: bp-forums/bp-forums-templatetags.php:1035 bp-themes/bp-default/header.php:93
260
+ #: bp-themes/bp-default/searchform.php:5
261
+ msgid "Search"
262
  msgstr ""
263
 
264
+ #: bp-blogs/bp-blogs-templatetags.php:534
265
+ #: bp-blogs/bp-blogs-templatetags.php:535
266
+ msgid "Visit Blog"
267
  msgstr ""
268
 
269
+ #: bp-forums.php:56
270
+ msgid "The forums component has not been set up yet."
 
271
  msgstr ""
272
 
273
+ #: bp-forums.php:76 bp-groups.php:554
274
+ msgid "There was an error when creating the topic"
 
275
  msgstr ""
276
 
277
+ #: bp-forums.php:78 bp-groups.php:556
278
+ msgid "The topic was created successfully"
 
279
  msgstr ""
280
 
281
+ #: bp-forums.php:82
282
+ msgid "Please pick the group forum where you would like to post this topic."
 
283
  msgstr ""
284
 
285
+ #: bp-forums.php:103 bp-forums/bp-forums-admin.php:8
286
+ msgid "Forums Setup"
287
  msgstr ""
288
 
289
+ #: bp-core/bp-core-widgets.php:15 bp-core/bp-core-templatetags.php:1026
290
+ #: bp-themes/bp-default/header.php:58
291
+ #: bp-themes/bp-default/groups/single/admin.php:174
292
+ msgid "Members"
293
  msgstr ""
294
 
295
+ #: bp-core/bp-core-widgets.php:34 bp-friends/bp-friends-templatetags.php:7
296
+ #: bp-friends/bp-friends-templatetags.php:23 bp-groups/bp-groups-widgets.php:32
297
+ #: bp-themes/bp-default/members/single/blogs.php:9
298
+ #: bp-themes/bp-default/blogs/index.php:31
299
+ msgid "Newest"
300
  msgstr ""
301
 
302
+ #: bp-core/bp-core-widgets.php:35 bp-groups/bp-groups-widgets.php:33
303
+ msgid "Active"
304
  msgstr ""
305
 
306
+ #: bp-core/bp-core-widgets.php:39 bp-groups/bp-groups-widgets.php:34
307
+ msgid "Popular"
308
  msgstr ""
309
 
310
+ #: bp-core/bp-core-widgets.php:66
311
+ msgid "No one has signed up yet!"
312
  msgstr ""
313
 
314
+ #: bp-core/bp-core-widgets.php:87 bp-core/bp-core-widgets.php:141
315
+ #: bp-core/bp-core-widgets.php:195
316
+ msgid "Max Members to show:"
317
  msgstr ""
318
 
319
+ #: bp-core/bp-core-widgets.php:96
320
+ msgid "Who's Online Avatars"
 
321
  msgstr ""
322
 
323
+ #: bp-core/bp-core-widgets.php:120
324
+ msgid "There are no users currently online"
 
325
  msgstr ""
326
 
327
+ #: bp-core/bp-core-widgets.php:150
328
+ msgid "Recently Active Member Avatars"
 
329
  msgstr ""
330
 
331
+ #: bp-core/bp-core-widgets.php:174
332
+ msgid "There are no recently active members"
 
333
  msgstr ""
334
 
335
+ #: bp-core/bp-core-widgets.php:249
336
+ msgid "There were no members found, please try another filter."
337
  msgstr ""
338
 
339
+ #: bp-core/bp-core-adminbar.php:44 bp-themes/bp-default/sidebar.php:50
340
+ msgid "Log In"
 
 
 
 
 
341
  msgstr ""
342
 
343
+ #: bp-core/bp-core-adminbar.php:48
344
+ msgid "Sign Up"
 
345
  msgstr ""
346
 
347
+ #: bp-core/bp-core-adminbar.php:61
348
+ msgid "My Account"
349
  msgstr ""
350
 
351
+ #: bp-core/bp-core-adminbar.php:93 bp-core/bp-core-templatetags.php:516
352
+ #: bp-core/bp-core-templatetags.php:518 bp-core/bp-core-templatetags.php:1059
353
+ #: bp-core/bp-core-templatetags.php:1061 bp-themes/bp-default/sidebar.php:18
354
+ msgid "Log Out"
 
355
  msgstr ""
356
 
357
+ #: bp-core/bp-core-adminbar.php:115 bp-blogs.php:117
358
+ msgid "My Blogs"
 
 
359
  msgstr ""
360
 
361
+ #: bp-core/bp-core-adminbar.php:129 bp-core/bp-core-adminbar.php:155
362
+ msgid "Dashboard"
363
  msgstr ""
364
 
365
+ #: bp-core/bp-core-adminbar.php:130 bp-core/bp-core-adminbar.php:160
366
+ msgid "New Post"
367
  msgstr ""
368
 
369
+ #: bp-core/bp-core-adminbar.php:131 bp-core/bp-core-adminbar.php:161
370
+ msgid "Manage Posts"
371
  msgstr ""
372
 
373
+ #: bp-core/bp-core-adminbar.php:132 bp-core/bp-core-adminbar.php:162
374
+ msgid "Manage Comments"
375
  msgstr ""
376
 
377
+ #: bp-core/bp-core-adminbar.php:143
378
+ msgid "Create a Blog!"
379
  msgstr ""
380
 
381
+ #: bp-core/bp-core-adminbar.php:179 bp-core/bp-core-settings.php:22
382
+ msgid "Notifications"
383
  msgstr ""
384
 
385
+ #: bp-core/bp-core-adminbar.php:200
386
+ msgid "No new notifications."
 
 
387
  msgstr ""
388
 
389
+ #: bp-core/bp-core-adminbar.php:227
390
+ msgid "Blog Authors"
391
  msgstr ""
392
 
393
+ #: bp-core/bp-core-adminbar.php:252
394
+ msgid "Visit"
395
  msgstr ""
396
 
397
+ #: bp-core/bp-core-adminbar.php:254
398
+ msgid "Random Member"
 
 
399
  msgstr ""
400
 
401
+ #: bp-core/bp-core-adminbar.php:258
402
+ msgid "Random Group"
403
  msgstr ""
404
 
405
+ #: bp-core/bp-core-adminbar.php:264
406
+ msgid "Random Blog"
 
 
 
407
  msgstr ""
408
 
409
+ #: bp-core/bp-core-avatars.php:67
410
+ msgid "Avatar Image"
 
 
411
  msgstr ""
412
 
413
+ #: bp-core/bp-core-avatars.php:332
414
+ msgid "There is no error, the file uploaded with success"
 
415
  msgstr ""
416
 
417
+ #: bp-core/bp-core-avatars.php:333 bp-core/bp-core-avatars.php:334
418
+ msgid "Your image was bigger than the maximum allowed file size of: "
 
419
  msgstr ""
420
 
421
+ #: bp-core/bp-core-avatars.php:335
422
+ msgid "The uploaded file was only partially uploaded"
 
423
  msgstr ""
424
 
425
+ #: bp-core/bp-core-avatars.php:336
426
+ msgid "No file was uploaded"
 
 
 
 
 
 
427
  msgstr ""
428
 
429
+ #: bp-core/bp-core-avatars.php:337
430
+ msgid "Missing a temporary folder"
 
 
 
 
431
  msgstr ""
432
 
433
+ #: bp-core/bp-core-avatars.php:341
434
+ msgid "Your upload failed, please try again. Error was: %s"
 
435
  msgstr ""
436
 
437
+ #: bp-core/bp-core-avatars.php:346
438
+ msgid "The file you uploaded is too big. Please upload a file under %s"
439
  msgstr ""
440
 
441
+ #: bp-core/bp-core-avatars.php:351
442
+ msgid "Please upload only JPG, GIF or PNG photos."
443
  msgstr ""
444
 
445
+ #: bp-core/bp-core-avatars.php:362 bp-core/bp-core-avatars.php:375
446
+ msgid "Upload Failed! Error was: %s"
447
  msgstr ""
448
 
449
+ #: bp-core/bp-core-filters.php:29
450
+ msgid "noreply"
451
  msgstr ""
452
 
453
+ #: bp-core/bp-core-filters.php:133 bp-core/bp-core-filters.php:157
454
+ msgid "[User Set]"
455
  msgstr ""
456
 
457
+ #: bp-core/bp-core-filters.php:177
458
+ msgid ""
459
+ "Thanks for registering! To complete the activation of your account and blog, please click the following link:\n"
460
+ "\n"
461
+ "%s\n"
462
+ "\n"
463
+ "\n"
464
+ "\n"
465
+ "After you activate, you can visit your blog here:\n"
466
+ "\n"
467
+ "%s"
468
  msgstr ""
469
 
470
+ #: bp-core/bp-core-filters.php:178
471
+ msgid "Activate %s"
472
  msgstr ""
473
 
474
+ #: bp-core/bp-core-filters.php:209 bp-core/bp-core-signup.php:542
475
+ msgid ""
476
+ "Thanks for registering! To complete the activation of your account please click the following link:\n"
477
+ "\n"
478
+ "%s\n"
479
+ "\n"
480
  msgstr ""
481
 
482
+ #: bp-core/bp-core-filters.php:210 bp-core/bp-core-signup.php:543
483
+ msgid "Activate Your Account"
 
484
  msgstr ""
485
 
486
+ #: bp-core/bp-core-signup.php:47
487
+ msgid "Please make sure you enter your password twice"
488
  msgstr ""
489
 
490
+ #: bp-core/bp-core-signup.php:51
491
+ msgid "The passwords you entered do not match."
492
  msgstr ""
493
 
494
+ #: bp-core/bp-core-signup.php:74
495
+ msgid "This is a required field"
 
496
  msgstr ""
497
 
498
+ #: bp-core/bp-core-signup.php:168
499
+ msgid "There was a problem uploading your avatar, please try uploading it again"
 
500
  msgstr ""
501
 
502
+ #: bp-core/bp-core-signup.php:198 bp-xprofile.php:386
503
+ msgid "There was a problem cropping your avatar, please try uploading it again"
504
  msgstr ""
505
 
506
+ #: bp-core/bp-core-signup.php:200
507
+ msgid "Your new avatar was uploaded successfully"
508
  msgstr ""
509
 
510
+ #: bp-core/bp-core-signup.php:222 bp-core/bp-core-signup.php:412
511
+ msgid "There was an error activating your account, please try again."
512
  msgstr ""
513
 
514
+ #: bp-core/bp-core-signup.php:236
515
+ msgid "Your account is now active!"
516
  msgstr ""
517
 
518
+ #: bp-core/bp-core-signup.php:275
519
+ msgid "Please enter a username"
520
  msgstr ""
521
 
522
+ #: bp-core/bp-core-signup.php:284
523
+ msgid "Only lowercase letters and numbers allowed"
524
  msgstr ""
525
 
526
+ #: bp-core/bp-core-signup.php:287
527
+ msgid "Username must be at least 4 characters"
528
  msgstr ""
529
 
530
+ #: bp-core/bp-core-signup.php:290
531
+ msgid "Sorry, usernames may not contain the character \"_\"!"
532
  msgstr ""
533
 
534
+ #: bp-core/bp-core-signup.php:297
535
+ msgid "Sorry, usernames must have letters too!"
536
  msgstr ""
537
 
538
+ #: bp-core/bp-core-signup.php:300
539
+ msgid "Please check your email address."
540
  msgstr ""
541
 
542
+ #: bp-core/bp-core-signup.php:308
543
+ msgid "Sorry, that email address is not allowed!"
544
  msgstr ""
545
 
546
+ #: bp-core/bp-core-signup.php:313
547
+ msgid "Sorry, that username already exists!"
548
  msgstr ""
549
 
550
+ #: bp-core/bp-core-signup.php:317
551
+ msgid "Sorry, that email address is already used!"
552
  msgstr ""
553
 
554
+ #: bp-core/bp-core-signup.php:352
555
+ msgid "<strong>ERROR</strong>: Couldn&#8217;t register you... please contact the <a href=\"mailto:%s\">webmaster</a> !"
556
  msgstr ""
557
 
558
+ #: bp-core/bp-core-signup.php:437 bp-core/bp-core-signup.php:441
559
+ msgid "Invalid activation key"
560
  msgstr ""
561
 
562
+ #: bp-core/bp-core-signup.php:484
563
+ msgid "%s became a registered member"
 
564
  msgstr ""
565
 
566
+ #: bp-core/bp-core-templatetags.php:184
567
+ msgid "Viewing member %1$s to %2$s (of %3$s active members)"
568
  msgstr ""
569
 
570
+ #: bp-core/bp-core-templatetags.php:186
571
+ msgid "Viewing member %1$s to %2$s (of %3$s members with friends)"
 
 
572
  msgstr ""
573
 
574
+ #: bp-core/bp-core-templatetags.php:188
575
+ msgid "Viewing member %1$s to %2$s (of %3$s members online)"
 
 
 
 
576
  msgstr ""
577
 
578
+ #: bp-core/bp-core-templatetags.php:190
579
+ msgid "Viewing member %1$s to %2$s (of %3$s members)"
580
+ msgstr ""
581
+
582
+ #: bp-core/bp-core-templatetags.php:314
583
+ msgid "Member avatar"
584
+ msgstr ""
585
+
586
+ #: bp-core/bp-core-templatetags.php:379
587
+ #: bp-themes/bp-default/activity/entry.php:46
588
+ #: bp-activity/bp-activity-templatetags.php:580
589
+ #: bp-activity/bp-activity-templatetags.php:817
590
+ msgid "View"
591
+ msgstr ""
592
+
593
+ #: bp-core/bp-core-templatetags.php:415
594
+ msgid "registered %s ago"
595
+ msgstr ""
596
+
597
+ #: bp-core/bp-core-templatetags.php:599
598
+ msgid "Options"
599
+ msgstr ""
600
+
601
+ #: bp-core/bp-core-templatetags.php:736 bp-core.php:379 bp-xprofile.php:183
602
+ #: bp-themes/bp-default/activity/post-form.php:41
603
+ msgid "My Profile"
604
+ msgstr ""
605
+
606
+ #: bp-core/bp-core-templatetags.php:742 bp-themes/bp-default/comments.php:120
607
+ msgid "Name"
608
+ msgstr ""
609
+
610
+ #: bp-core/bp-core-templatetags.php:752
611
+ msgid "About Me"
612
+ msgstr ""
613
+
614
+ #: bp-core/bp-core-templatetags.php:762 bp-themes/bp-default/comments.php:130
615
+ msgid "Website"
616
+ msgstr ""
617
+
618
+ #: bp-core/bp-core-templatetags.php:772
619
+ msgid "Jabber"
620
+ msgstr ""
621
+
622
+ #: bp-core/bp-core-templatetags.php:782
623
+ msgid "AOL Messenger"
624
+ msgstr ""
625
+
626
+ #: bp-core/bp-core-templatetags.php:792
627
+ msgid "Yahoo Messenger"
628
+ msgstr ""
629
+
630
+ #: bp-core/bp-core-templatetags.php:834
631
+ msgid "%1$s at %2$s"
632
+ msgstr ""
633
+
634
+ #: bp-core/bp-core-templatetags.php:892 bp-groups.php:201
635
+ #: bp-themes/bp-default/header.php:44 bp-themes/bp-default/header.php:48
636
+ msgid "Home"
637
+ msgstr ""
638
+
639
+ #: bp-core/bp-core-templatetags.php:904 bp-themes/bp-default/attachment.php:9
640
+ #: bp-themes/bp-default/search.php:10
641
+ msgid "Blog"
642
+ msgstr ""
643
+
644
+ #: bp-core/bp-core-templatetags.php:914 bp-core/bp-core-templatetags.php:916
645
+ msgid "%s Directory"
646
+ msgstr ""
647
+
648
+ #: bp-core/bp-core-templatetags.php:919
649
+ #: bp-themes/bp-default/registration/register.php:14
650
+ msgid "Create an Account"
651
+ msgstr ""
652
+
653
+ #: bp-core/bp-core-templatetags.php:922
654
+ #: bp-themes/bp-default/registration/activate.php:28
655
+ msgid "Activate your Account"
656
+ msgstr ""
657
+
658
+ #: bp-core/bp-core-templatetags.php:925 bp-themes/bp-default/groups/index.php:7
659
+ #: bp-themes/bp-default/groups/create.php:7
660
+ msgid "Create a Group"
661
+ msgstr ""
662
+
663
+ #: bp-core/bp-core-templatetags.php:1029 bp-core/bp-core-admin.php:210
664
+ #: bp-activity.php:126 bp-groups/bp-groups-widgets.php:13 bp-groups.php:986
665
+ #: bp-groups.php:1410 bp-groups.php:1423 bp-groups.php:1436 bp-groups.php:1449
666
+ #: bp-themes/bp-default/header.php:63
667
+ msgid "Groups"
668
+ msgstr ""
669
+
670
+ #: bp-core/bp-core-templatetags.php:1032 bp-forums/bp-forums-admin.php:159
671
+ #: bp-themes/bp-default/header.php:68
672
+ msgid "Forums"
673
+ msgstr ""
674
+
675
+ #: bp-core/bp-core-templatetags.php:1035 bp-themes/bp-default/header.php:75
676
+ msgid "Blogs"
677
+ msgstr ""
678
+
679
+ #: bp-core/bp-core-templatetags.php:1213
680
+ msgid "Your Avatar"
681
+ msgstr ""
682
+
683
+ #: bp-core/bp-core-templatetags.php:1286
684
+ msgid "a user"
685
+ msgstr ""
686
+
687
+ #: bp-core/bp-core-cssjs.php:56
688
+ msgid "Are you sure?"
689
+ msgstr ""
690
+
691
+ #: bp-core/bp-core-classes.php:96
692
+ msgid "group"
693
+ msgstr ""
694
+
695
+ #: bp-core/bp-core-classes.php:98 bp-activity/bp-activity-templatetags.php:877
696
+ msgid "groups"
697
+ msgstr ""
698
+
699
+ #: bp-core/bp-core-catchuri.php:262
700
+ msgid "This user has been marked as a spammer. Only site admins can view this profile."
701
  msgstr ""
702
 
703
  #: bp-core/bp-core-admin.php:32
745
  msgstr ""
746
 
747
  #: bp-core/bp-core-admin.php:108
748
+ msgid "For users without a custom avatar of their own, you can either display a generic logo or a generated one based on their email address"
 
 
749
  msgstr ""
750
 
751
  #: bp-core/bp-core-admin.php:110
773
  msgstr ""
774
 
775
  #: bp-core/bp-core-admin.php:166
776
+ msgid "By default, all BuddyPress components are enabled. You can selectively disable any of the components by using the form below. Your BuddyPress installation will continue to function, however the features of the disabled components will no longer be accessible to anyone using the site."
 
 
 
 
777
  msgstr ""
778
 
779
  #: bp-core/bp-core-admin.php:174
781
  msgstr ""
782
 
783
  #: bp-core/bp-core-admin.php:174
784
+ msgid "Allow users to post activity updates and track all activity across the entire site."
 
 
785
  msgstr ""
786
 
787
  #: bp-core/bp-core-admin.php:176 bp-core/bp-core-admin.php:185
803
  msgstr ""
804
 
805
  #: bp-core/bp-core-admin.php:183
806
+ msgid "Tracks blogs, blog posts and blogs comments for a user across a WPMU installation."
 
 
807
  msgstr ""
808
 
809
  #: bp-core/bp-core-admin.php:192
811
  msgstr ""
812
 
813
  #: bp-core/bp-core-admin.php:192
814
+ msgid "Activates bbPress forum support within BuddyPress groups or any other custom component."
 
 
815
  msgstr ""
816
 
817
  #: bp-core/bp-core-admin.php:201
827
  msgstr ""
828
 
829
  #: bp-core/bp-core-admin.php:219
830
+ msgid "Let users send private messages to one another. Site admins can also send site-wide notices."
 
 
831
  msgstr ""
832
 
833
  #: bp-core/bp-core-admin.php:228
838
  msgid "Activates customizable profiles and avatars for site users."
839
  msgstr ""
840
 
841
+ #: bp-core/bp-core-settings.php:17 bp-groups.php:92
842
+ msgid "Settings"
843
  msgstr ""
844
 
845
+ #: bp-core/bp-core-settings.php:21
846
+ msgid "General"
847
  msgstr ""
848
 
849
+ #: bp-core/bp-core-settings.php:25 bp-core/bp-core-settings.php:176
850
+ msgid "Delete Account"
851
  msgstr ""
852
 
853
+ #: bp-core/bp-core-settings.php:69 bp-core.php:312
854
+ msgid "General Settings"
 
 
855
  msgstr ""
856
 
857
+ #: bp-core/bp-core-settings.php:77 bp-core/bp-core-settings.php:138
858
+ msgid "Changes Saved."
859
  msgstr ""
860
 
861
+ #: bp-core/bp-core-settings.php:83
862
+ msgid "Your passwords did not match"
863
  msgstr ""
864
 
865
+ #: bp-core/bp-core-settings.php:88
866
+ msgid "Account Email"
867
  msgstr ""
868
 
869
+ #: bp-core/bp-core-settings.php:91
870
+ msgid "Change Password <span>(leave blank for no change)</span>"
871
  msgstr ""
872
 
873
+ #: bp-core/bp-core-settings.php:92
874
+ msgid "New Password"
875
  msgstr ""
876
 
877
+ #: bp-core/bp-core-settings.php:93
878
+ msgid "Repeat New Password"
879
  msgstr ""
880
 
881
+ #: bp-core/bp-core-settings.php:96 bp-core/bp-core-settings.php:149
882
+ #: bp-themes/bp-default/members/single/profile/edit.php:111
883
+ #: bp-themes/bp-default/groups/single/forum/edit.php:34
884
+ #: bp-themes/bp-default/groups/single/forum/edit.php:52
885
+ #: bp-themes/bp-default/groups/single/admin.php:32
886
+ #: bp-themes/bp-default/groups/single/admin.php:100
887
+ msgid "Save Changes"
888
  msgstr ""
889
 
890
+ #: bp-core/bp-core-settings.php:130
891
+ msgid "Notification Settings"
892
  msgstr ""
893
 
894
+ #: bp-core/bp-core-settings.php:143
895
+ msgid "Email Notifications"
896
  msgstr ""
897
 
898
+ #: bp-core/bp-core-settings.php:144
899
+ msgid "Send a notification by email when:"
900
  msgstr ""
901
 
902
+ #: bp-core/bp-core-settings.php:185
903
+ msgid "WARNING: Deleting your account will completely remove ALL content associated with it. There is no way back, please be careful with this option."
904
  msgstr ""
905
 
906
+ #: bp-core/bp-core-settings.php:188
907
+ msgid "I understand the consequences of deleting my account."
908
  msgstr ""
909
 
910
+ #: bp-core/bp-core-settings.php:191
911
+ msgid "Delete My Account"
912
  msgstr ""
913
 
914
+ #: bp-core.php:305 bp-core.php:306
915
+ msgid "BuddyPress"
916
  msgstr ""
917
 
918
+ #: bp-core.php:313
919
+ msgid "Component Setup"
920
  msgstr ""
921
 
922
+ #: bp-core.php:358 bp-xprofile.php:172
923
+ msgid "Profile"
924
  msgstr ""
925
 
926
+ #: bp-core.php:369 bp-groups/bp-groups-templatetags.php:419 bp-xprofile.php:177
927
+ msgid "Public"
928
  msgstr ""
929
 
930
+ #: bp-core.php:475
931
+ msgid "User marked as spammer. Spam users are visible only to site admins."
932
  msgstr ""
933
 
934
+ #: bp-core.php:477
935
+ msgid "User removed as spammer."
 
936
  msgstr ""
937
 
938
+ #: bp-core.php:511
939
+ msgid "%s has been deleted from the system."
 
940
  msgstr ""
941
 
942
+ #: bp-core.php:513
943
+ msgid "There was an error deleting %s from the system. Please try again."
944
  msgstr ""
945
 
946
+ #: bp-core.php:1416
947
+ msgid "year"
 
948
  msgstr ""
949
 
950
+ #: bp-core.php:1416
951
+ msgid "years"
 
 
952
  msgstr ""
953
 
954
+ #: bp-core.php:1417
955
+ msgid "month"
956
  msgstr ""
957
 
958
+ #: bp-core.php:1417
959
+ msgid "months"
960
  msgstr ""
961
 
962
+ #: bp-core.php:1418
963
+ msgid "week"
964
  msgstr ""
965
 
966
+ #: bp-core.php:1418
967
+ msgid "weeks"
968
  msgstr ""
969
 
970
+ #: bp-core.php:1419
971
+ msgid "day"
 
 
 
 
 
 
 
 
 
 
 
972
  msgstr ""
973
 
974
+ #: bp-core.php:1419
975
+ msgid "days"
 
976
  msgstr ""
977
 
978
+ #: bp-core.php:1420
979
+ msgid "hour"
 
 
 
 
 
 
980
  msgstr ""
981
 
982
+ #: bp-core.php:1420
983
+ msgid "hours"
984
  msgstr ""
985
 
986
+ #: bp-core.php:1421
987
+ msgid "minute"
988
  msgstr ""
989
 
990
+ #: bp-core.php:1421
991
+ msgid "minutes"
992
  msgstr ""
993
 
994
+ #: bp-core.php:1422
995
+ msgid "second"
996
  msgstr ""
997
 
998
+ #: bp-core.php:1422 bp-core.php:1474
999
+ msgid "seconds"
1000
  msgstr ""
1001
 
1002
+ #: bp-core.php:1441
1003
+ msgid "sometime"
1004
  msgstr ""
1005
 
1006
+ #: bp-core.php:1469
1007
+ msgctxt "Separator in time since"
1008
+ msgid ","
1009
  msgstr ""
1010
 
1011
+ #: bp-core.php:1524
1012
+ msgid "not recently active"
1013
  msgstr ""
1014
 
1015
+ #: bp-core.php:2034
1016
+ msgid "IMPORTANT: <a href=\"http://codex.buddypress.org/getting-started/upgrading-from-10x/\">Read this before attempting to update BuddyPress</a>"
1017
  msgstr ""
1018
 
1019
+ #: bp-core.php:2063
1020
+ msgid "<strong>BuddyPress is almost ready</strong>. You must <a href=\"%s\">update your permalink structure</a> to something other than the default for it to work."
1021
  msgstr ""
1022
 
1023
+ #: bp-core.php:2072
1024
+ msgid "<strong>BuddyPress is ready</strong>. You'll need to <a href='%s'>activate a BuddyPress compatible theme</a> to take advantage of all of the features. We've bundled a default theme, but you can always <a href='%s'>install some other compatible themes</a> or <a href='%s'>upgrade your existing WordPress theme</a>."
 
 
 
 
 
1025
  msgstr ""
1026
 
1027
+ #: bp-friends/bp-friends-templatetags.php:6
1028
+ #: bp-friends/bp-friends-templatetags.php:20
1029
+ #: bp-groups/bp-groups-templatetags.php:1825
1030
+ #: bp-groups/bp-groups-templatetags.php:1842
1031
+ msgid "Recently Active"
1032
  msgstr ""
1033
 
1034
+ #: bp-friends/bp-friends-templatetags.php:8
1035
+ #: bp-friends/bp-friends-templatetags.php:26
1036
+ #: bp-groups/bp-groups-templatetags.php:1830
1037
+ #: bp-groups/bp-groups-templatetags.php:1857
1038
+ msgid "Alphabetically"
1039
  msgstr ""
1040
 
1041
+ #: bp-friends/bp-friends-templatetags.php:40
1042
+ msgid "%s's Friends"
1043
  msgstr ""
1044
 
1045
+ #: bp-friends/bp-friends-templatetags.php:40
1046
+ msgid "See All"
 
 
1047
  msgstr ""
1048
 
1049
+ #: bp-friends/bp-friends-templatetags.php:53
1050
+ msgid "You haven't added any friend connections yet."
1051
  msgstr ""
1052
 
1053
+ #: bp-friends/bp-friends-templatetags.php:53
1054
+ msgid "%s hasn't created any friend connections yet."
1055
  msgstr ""
1056
 
1057
+ #: bp-friends/bp-friends-templatetags.php:93
1058
+ msgid "There aren't enough site members to show a random sample just yet."
1059
  msgstr ""
1060
 
1061
+ #: bp-friends/bp-friends-templatetags.php:103
1062
+ msgid "Filter Friends"
1063
  msgstr ""
1064
 
1065
+ #: bp-friends/bp-friends-templatetags.php:138
1066
+ msgid "%d friend"
1067
  msgstr ""
1068
 
1069
+ #: bp-friends/bp-friends-templatetags.php:140
1070
+ msgid "%d friends"
 
1071
  msgstr ""
1072
 
1073
+ #: bp-friends/bp-friends-templatetags.php:224
1074
+ #: bp-friends/bp-friends-templatetags.php:225
1075
+ #: bp-themes/bp-default/_inc/ajax.php:353
1076
+ msgid "Friendship Requested"
1077
  msgstr ""
1078
 
1079
+ #: bp-friends/bp-friends-templatetags.php:239
1080
+ #: bp-friends/bp-friends-templatetags.php:240
1081
+ msgid "Cancel Friendship"
1082
  msgstr ""
1083
 
1084
+ #: bp-friends/bp-friends-templatetags.php:257
1085
+ #: bp-friends/bp-friends-templatetags.php:258
1086
+ #: bp-themes/bp-default/_inc/ajax.php:343
1087
+ msgid "Add Friend"
1088
  msgstr ""
1089
 
1090
+ #: bp-friends/bp-friends-notifications.php:22
1091
+ msgid "New friendship request from %s"
1092
  msgstr ""
1093
 
1094
+ #: bp-friends/bp-friends-notifications.php:24
1095
+ msgid ""
1096
+ "%s wants to add you as a friend.\n"
1097
+ "\n"
1098
+ "To view all of your pending friendship requests: %s\n"
1099
+ "\n"
1100
+ "To view %s's profile: %s\n"
1101
+ "\n"
1102
+ "---------------------\n"
1103
  msgstr ""
1104
 
1105
+ #: bp-friends/bp-friends-notifications.php:34
1106
+ #: bp-friends/bp-friends-notifications.php:72
1107
+ #: bp-groups/bp-groups-notifications.php:30
1108
+ #: bp-groups/bp-groups-notifications.php:79
1109
+ #: bp-groups/bp-groups-notifications.php:133
1110
+ #: bp-groups/bp-groups-notifications.php:179
1111
+ #: bp-groups/bp-groups-notifications.php:231
1112
+ #: bp-groups/bp-groups-notifications.php:289
1113
+ #: bp-messages/bp-messages-notifications.php:37
1114
+ #: bp-activity/bp-activity-notifications.php:44
1115
+ #: bp-activity/bp-activity-notifications.php:88
1116
+ #: bp-activity/bp-activity-notifications.php:131
1117
+ msgid "To disable these notifications please log in and go to: %s"
1118
  msgstr ""
1119
 
1120
+ #: bp-friends/bp-friends-notifications.php:64
1121
+ msgid ""
1122
+ "%s accepted your friend request.\n"
1123
+ "\n"
1124
+ "To view %s's profile: %s\n"
1125
+ "\n"
1126
+ "---------------------\n"
1127
  msgstr ""
1128
 
1129
+ #: bp-activity.php:113 bp-activity.php:270 bp-themes/bp-default/header.php:53
1130
+ #: bp-activity/feeds/bp-activity-personal-feed.php:21
1131
+ msgid "Activity"
1132
  msgstr ""
1133
 
1134
+ #: bp-activity.php:120
1135
+ msgid "Personal"
1136
  msgstr ""
1137
 
1138
+ #: bp-activity.php:128
1139
+ msgid "Favorites"
1140
  msgstr ""
1141
 
1142
+ #: bp-activity.php:129 bp-themes/bp-default/activity/index.php:50
1143
+ msgid "@%s Mentions"
1144
  msgstr ""
1145
 
1146
+ #: bp-activity.php:133
1147
+ msgid "My Activity"
1148
  msgstr ""
1149
 
1150
+ #: bp-activity.php:251
1151
+ msgid "You do not have access to this activity."
1152
  msgstr ""
1153
 
1154
+ #: bp-activity.php:279
1155
+ msgid "A member mentions you in an update using \"@%s\""
 
 
 
1156
  msgstr ""
1157
 
1158
+ #: bp-activity.php:285
1159
+ msgid "A member replies to an update or comment you've posted"
1160
  msgstr ""
1161
 
1162
+ #: bp-activity.php:366
1163
+ msgid "Activity deleted"
 
1164
  msgstr ""
1165
 
1166
+ #: bp-activity.php:368
1167
+ msgid "There was an error when deleting that activity"
 
1168
  msgstr ""
1169
 
1170
+ #: bp-activity.php:388 bp-themes/bp-default/_inc/ajax.php:124
1171
+ msgid "Please enter some content to post."
 
1172
  msgstr ""
1173
 
1174
+ #: bp-activity.php:403
1175
+ msgid "Update Posted!"
 
1176
  msgstr ""
1177
 
1178
+ #: bp-activity.php:405
1179
+ msgid "There was an error when posting your update, please try again."
 
1180
  msgstr ""
1181
 
1182
+ #: bp-activity.php:424 bp-themes/bp-default/_inc/ajax.php:162
1183
+ msgid "Please do not leave the comment area blank."
1184
  msgstr ""
1185
 
1186
+ #: bp-activity.php:435
1187
+ msgid "Reply Posted!"
 
1188
  msgstr ""
1189
 
1190
+ #: bp-activity.php:437 bp-themes/bp-default/_inc/ajax.php:167
1191
+ #: bp-themes/bp-default/_inc/ajax.php:178
1192
+ msgid "There was an error posting that reply, please try again."
1193
  msgstr ""
1194
 
1195
+ #: bp-activity.php:453
1196
+ msgid "Activity marked as favorite."
1197
  msgstr ""
1198
 
1199
+ #: bp-activity.php:455
1200
+ msgid "There was an error marking that activity as a favorite, please try again."
1201
  msgstr ""
1202
 
1203
+ #: bp-activity.php:471
1204
+ msgid "Activity removed as favorite."
1205
  msgstr ""
1206
 
1207
+ #: bp-activity.php:473
1208
+ msgid "There was an error removing that activity as a favorite, please try again."
1209
  msgstr ""
1210
 
1211
+ #: bp-activity.php:699
1212
+ msgid "%s posted an update:"
1213
  msgstr ""
1214
 
1215
+ #: bp-activity.php:752
1216
+ msgid "%s posted a new activity comment:"
1217
  msgstr ""
1218
 
1219
+ #: bp-activity.php:967
1220
+ msgid "Thumbnail"
 
1221
  msgstr ""
1222
 
1223
+ #: bp-activity.php:1195
1224
+ msgid "Posted an update"
 
1225
  msgstr ""
1226
 
1227
+ #: bp-groups/bp-groups-templatetags.php:252
1228
+ msgid "Public Group"
1229
  msgstr ""
1230
 
1231
+ #: bp-groups/bp-groups-templatetags.php:254
1232
+ msgid "Hidden Group"
1233
  msgstr ""
1234
 
1235
+ #: bp-groups/bp-groups-templatetags.php:256
1236
+ msgid "Private Group"
1237
  msgstr ""
1238
 
1239
+ #: bp-groups/bp-groups-templatetags.php:258
1240
+ msgid "Group"
 
1241
  msgstr ""
1242
 
1243
+ #: bp-groups/bp-groups-templatetags.php:288
1244
+ #: bp-groups/bp-groups-templatetags.php:1718
1245
+ msgid "Group avatar"
1246
  msgstr ""
1247
 
1248
+ #: bp-groups/bp-groups-templatetags.php:330
1249
+ msgid "not yet active"
 
1250
  msgstr ""
1251
 
1252
+ #: bp-groups/bp-groups-templatetags.php:421
1253
+ msgid "Private"
 
1254
  msgstr ""
1255
 
1256
+ #: bp-groups/bp-groups-templatetags.php:476
1257
+ msgid "No Admins"
 
 
1258
  msgstr ""
1259
 
1260
+ #: bp-groups/bp-groups-templatetags.php:496
1261
+ msgid "No Mods"
 
 
1262
  msgstr ""
1263
 
1264
+ #: bp-groups/bp-groups-templatetags.php:517
1265
+ msgid "Filter Groups"
 
1266
  msgstr ""
1267
 
1268
+ #: bp-groups/bp-groups-templatetags.php:565
1269
+ msgid "Viewing group %1$s to %2$s (of %3$s groups)"
1270
  msgstr ""
1271
 
1272
+ #: bp-groups/bp-groups-templatetags.php:594
1273
+ msgid "%s member"
1274
  msgstr ""
1275
 
1276
+ #: bp-groups/bp-groups-templatetags.php:596
1277
+ #: bp-themes/bp-default/members/single/groups/invites.php:11
1278
+ msgid "%s members"
1279
  msgstr ""
1280
 
1281
+ #: bp-groups/bp-groups-templatetags.php:635
1282
+ msgid "%d topic"
 
 
 
1283
  msgstr ""
1284
 
1285
+ #: bp-groups/bp-groups-templatetags.php:637
1286
+ msgid "%d topics"
1287
  msgstr ""
1288
 
1289
+ #: bp-groups/bp-groups-templatetags.php:669
1290
+ #: bp-forums/bp-forums-templatetags.php:464
1291
+ msgid "%d post"
1292
  msgstr ""
1293
 
1294
+ #: bp-groups/bp-groups-templatetags.php:671
1295
+ #: bp-forums/bp-forums-templatetags.php:466
1296
+ msgid "%d posts"
1297
  msgstr ""
1298
 
1299
+ #: bp-groups/bp-groups-templatetags.php:733
1300
+ #: bp-groups/bp-groups-templatetags.php:771
1301
+ msgid "Demote to Member"
1302
  msgstr ""
1303
 
1304
+ #: bp-groups/bp-groups-templatetags.php:739
1305
+ #: bp-groups/bp-groups-templatetags.php:777
1306
+ #: bp-groups/bp-groups-templatetags.php:1490
1307
+ msgid "joined %s ago"
1308
  msgstr ""
1309
 
1310
+ #: bp-groups/bp-groups-templatetags.php:752
1311
+ msgid "This group has no administrators"
1312
  msgstr ""
1313
 
1314
+ #: bp-groups/bp-groups-templatetags.php:771
1315
+ #: bp-themes/bp-default/groups/single/admin.php:215
1316
+ msgid "Promote to Admin"
1317
  msgstr ""
1318
 
1319
+ #: bp-groups/bp-groups-templatetags.php:790
1320
+ msgid "This group has no moderators"
1321
  msgstr ""
1322
 
1323
+ #: bp-groups/bp-groups-templatetags.php:922
1324
+ msgid "Edit Details"
1325
  msgstr ""
1326
 
1327
+ #: bp-groups/bp-groups-templatetags.php:929
1328
+ msgid "Group Settings"
1329
  msgstr ""
1330
 
1331
+ #: bp-groups/bp-groups-templatetags.php:930
1332
+ #: bp-groups/bp-groups-templatetags.php:1883 bp-groups.php:179
1333
+ msgid "Group Avatar"
1334
  msgstr ""
1335
 
1336
+ #: bp-groups/bp-groups-templatetags.php:931
1337
+ msgid "Manage Members"
1338
  msgstr ""
1339
 
1340
+ #: bp-groups/bp-groups-templatetags.php:934
1341
+ msgid "Membership Requests"
1342
  msgstr ""
1343
 
1344
+ #: bp-groups/bp-groups-templatetags.php:939 bp-groups.php:253
1345
+ #: bp-themes/bp-default/groups/single/admin.php:303
1346
+ msgid "Delete Group"
1347
  msgstr ""
1348
 
1349
+ #: bp-groups/bp-groups-templatetags.php:1108
1350
+ #: bp-groups/bp-groups-templatetags.php:1109
1351
+ #: bp-themes/bp-default/forums/index.php:8
1352
+ msgid "New Topic"
1353
  msgstr ""
1354
 
1355
+ #: bp-groups/bp-groups-templatetags.php:1147
1356
+ #: bp-groups/bp-groups-templatetags.php:1148
1357
+ #: bp-themes/bp-default/_inc/ajax.php:407
1358
+ msgid "Leave Group"
 
 
1359
  msgstr ""
1360
 
1361
+ #: bp-groups/bp-groups-templatetags.php:1170
1362
+ #: bp-groups/bp-groups-templatetags.php:1171
1363
+ #: bp-themes/bp-default/_inc/ajax.php:429
1364
+ msgid "Join Group"
 
1365
  msgstr ""
1366
 
1367
+ #: bp-groups/bp-groups-templatetags.php:1188
1368
+ #: bp-groups/bp-groups-templatetags.php:1189 bp-groups.php:209
1369
+ #: bp-themes/bp-default/_inc/ajax.php:431
1370
+ msgid "Request Membership"
1371
  msgstr ""
1372
 
1373
+ #: bp-groups/bp-groups-templatetags.php:1203
1374
+ #: bp-groups/bp-groups-templatetags.php:1204
1375
+ msgid "Request Sent"
1376
  msgstr ""
1377
 
1378
+ #: bp-groups/bp-groups-templatetags.php:1225
1379
+ msgid "This is a private group and you must request group membership in order to join."
 
 
 
1380
  msgstr ""
1381
 
1382
+ #: bp-groups/bp-groups-templatetags.php:1227
1383
+ msgid "This is a private group. To join you must be a registered site member and request group membership."
1384
  msgstr ""
1385
 
1386
+ #: bp-groups/bp-groups-templatetags.php:1229
1387
+ msgid "This is a private group. Your membership request is awaiting approval from the group administrator."
 
 
 
1388
  msgstr ""
1389
 
1390
+ #: bp-groups/bp-groups-templatetags.php:1231
1391
+ msgid "This is a hidden group and only invited members can join."
1392
  msgstr ""
1393
 
1394
+ #: bp-groups/bp-groups-templatetags.php:1540
1395
+ msgid "Viewing members %1$s to %2$s (of %3$s members)"
 
 
1396
  msgstr ""
1397
 
1398
+ #: bp-groups/bp-groups-templatetags.php:1826
1399
+ #: bp-groups/bp-groups-templatetags.php:1845
1400
+ msgid "Recently Joined"
 
 
 
1401
  msgstr ""
1402
 
1403
+ #: bp-groups/bp-groups-templatetags.php:1827
1404
+ #: bp-groups/bp-groups-templatetags.php:1848
1405
+ msgid "Most Popular"
1406
  msgstr ""
1407
 
1408
+ #: bp-groups/bp-groups-templatetags.php:1828
1409
+ #: bp-groups/bp-groups-templatetags.php:1851
1410
+ msgid "Administrator Of"
 
 
1411
  msgstr ""
1412
 
1413
+ #: bp-groups/bp-groups-templatetags.php:1829
1414
+ #: bp-groups/bp-groups-templatetags.php:1854
1415
+ msgid "Moderator Of"
 
 
1416
  msgstr ""
1417
 
1418
+ #: bp-groups/bp-groups-templatetags.php:1885
1419
+ msgid "No Group Avatar"
 
 
 
1420
  msgstr ""
1421
 
1422
+ #: bp-groups/bp-groups-templatetags.php:2089
1423
+ msgid "requested %s ago"
1424
  msgstr ""
1425
 
1426
+ #: bp-groups/bp-groups-classes.php:730
1427
+ msgid "Group Mod"
1428
  msgstr ""
1429
 
1430
+ #: bp-groups/bp-groups-classes.php:736 bp-groups.php:1556
1431
+ msgid "Group Admin"
 
 
1432
  msgstr ""
1433
 
1434
+ #: bp-groups/bp-groups-notifications.php:8
1435
+ msgid "Group Details Updated"
 
 
1436
  msgstr ""
1437
 
1438
+ #: bp-groups/bp-groups-notifications.php:22
1439
+ msgid ""
1440
+ "Group details for the group \"%s\" were updated:\n"
1441
+ "\n"
1442
+ "To view the group: %s\n"
1443
+ "\n"
1444
+ "---------------------\n"
1445
  msgstr ""
1446
 
1447
+ #: bp-groups/bp-groups-notifications.php:64
1448
+ msgid "Membership request for group: %s"
1449
  msgstr ""
1450
 
1451
+ #: bp-groups/bp-groups-notifications.php:66
1452
+ msgid ""
1453
+ "%s wants to join the group \"%s\".\n"
1454
+ "\n"
1455
+ "Because you are the administrator of this group, you must either accept or reject the membership request.\n"
1456
+ "\n"
1457
+ "To view all pending membership requests for this group, please visit:\n"
1458
+ "%s\n"
1459
+ "\n"
1460
+ "To view %s's profile: %s\n"
1461
+ "\n"
1462
+ "---------------------\n"
1463
  msgstr ""
1464
 
1465
+ #: bp-groups/bp-groups-notifications.php:113
1466
+ msgid "Membership request for group \"%s\" accepted"
1467
  msgstr ""
1468
 
1469
+ #: bp-groups/bp-groups-notifications.php:114
1470
+ msgid ""
1471
+ "Your membership request for the group \"%s\" has been accepted.\n"
1472
+ "\n"
1473
+ "To view the group please login and visit: %s\n"
1474
+ "\n"
1475
+ "---------------------\n"
1476
  msgstr ""
1477
 
1478
+ #: bp-groups/bp-groups-notifications.php:123
1479
+ msgid "Membership request for group \"%s\" rejected"
1480
  msgstr ""
1481
 
1482
+ #: bp-groups/bp-groups-notifications.php:124
1483
+ msgid ""
1484
+ "Your membership request for the group \"%s\" has been rejected.\n"
1485
+ "\n"
1486
+ "To submit another request please log in and visit: %s\n"
1487
+ "\n"
1488
+ "---------------------\n"
1489
  msgstr ""
1490
 
1491
+ #: bp-groups/bp-groups-notifications.php:147
1492
+ msgid "an administrator"
 
1493
  msgstr ""
1494
 
1495
+ #: bp-groups/bp-groups-notifications.php:150
1496
+ msgid "a moderator"
 
 
 
 
 
 
 
1497
  msgstr ""
1498
 
1499
+ #: bp-groups/bp-groups-notifications.php:169
1500
+ msgid "You have been promoted in the group: \"%s\""
 
1501
  msgstr ""
1502
 
1503
+ #: bp-groups/bp-groups-notifications.php:171
1504
+ msgid ""
1505
+ "You have been promoted to %s for the group: \"%s\".\n"
1506
+ "\n"
1507
+ "To view the group please visit: %s\n"
1508
+ "\n"
1509
+ "---------------------\n"
1510
  msgstr ""
1511
 
1512
+ #: bp-groups/bp-groups-notifications.php:217
1513
+ msgid "You have an invitation to the group: \"%s\""
 
1514
  msgstr ""
1515
 
1516
+ #: bp-groups/bp-groups-notifications.php:219
1517
+ msgid ""
1518
+ "One of your friends %s has invited you to the group: \"%s\".\n"
1519
+ "\n"
1520
+ "To view your group invites visit: %s\n"
1521
+ "\n"
1522
+ "To view the group visit: %s\n"
1523
+ "\n"
1524
+ "To view %s's profile visit: %s\n"
1525
+ "\n"
1526
+ "---------------------\n"
1527
  msgstr ""
1528
 
1529
+ #: bp-groups/bp-groups-notifications.php:277
1530
+ msgid "%s mentioned you in the group \"%s\""
1531
  msgstr ""
1532
 
1533
+ #: bp-groups/bp-groups-notifications.php:279
1534
+ msgid ""
1535
+ "%s mentioned you in the group \"%s\":\n"
1536
+ "\n"
1537
+ "\"%s\"\n"
1538
+ "\n"
1539
+ "To view and respond to the message, log in and visit: %s\n"
1540
+ "\n"
1541
+ "---------------------\n"
1542
  msgstr ""
1543
 
1544
+ #: bp-groups/bp-groups-widgets.php:58
1545
+ msgid "There are no groups to display."
1546
  msgstr ""
1547
 
1548
+ #: bp-groups/bp-groups-widgets.php:79
1549
+ msgid "Max groups to show:"
1550
  msgstr ""
1551
 
1552
+ #: bp-groups/bp-groups-widgets.php:117
1553
+ msgid "created %s ago"
1554
  msgstr ""
1555
 
1556
+ #: bp-groups/bp-groups-widgets.php:136
1557
+ msgid "No groups matched the current filter."
1558
  msgstr ""
1559
 
1560
+ #: bp-xprofile/bp-xprofile-classes.php:158
1561
+ msgid "Please make sure you give the group a name."
1562
  msgstr ""
1563
 
1564
+ #: bp-xprofile/bp-xprofile-classes.php:171
1565
+ #: bp-xprofile/bp-xprofile-admin.php:124
1566
+ msgid "Add New Field Group"
1567
  msgstr ""
1568
 
1569
+ #: bp-xprofile/bp-xprofile-classes.php:174
1570
+ msgid "Edit Field Group"
1571
  msgstr ""
1572
 
1573
+ #: bp-xprofile/bp-xprofile-classes.php:195
1574
+ msgid "Field Group Name"
1575
  msgstr ""
1576
 
1577
+ #: bp-xprofile/bp-xprofile-classes.php:494
1578
+ msgid "Please enter options for this Field:"
1579
  msgstr ""
1580
 
1581
+ #: bp-xprofile/bp-xprofile-classes.php:495
1582
+ #: bp-themes/bp-default/members/index.php:28
1583
+ #: bp-themes/bp-default/members/single/friends.php:9
1584
+ #: bp-themes/bp-default/members/single/groups.php:10
1585
+ #: bp-themes/bp-default/members/single/blogs.php:6
1586
+ #: bp-themes/bp-default/blogs/index.php:28
1587
+ #: bp-themes/bp-default/forums/index.php:91
1588
+ #: bp-themes/bp-default/groups/index.php:27
1589
+ msgid "Order By:"
1590
  msgstr ""
1591
 
1592
+ #: bp-xprofile/bp-xprofile-classes.php:498
1593
+ msgid "Order Entered"
1594
  msgstr ""
1595
 
1596
+ #: bp-xprofile/bp-xprofile-classes.php:499
1597
+ msgid "Name - Ascending"
1598
  msgstr ""
1599
 
1600
+ #: bp-xprofile/bp-xprofile-classes.php:500
1601
+ msgid "Name - Descending"
1602
  msgstr ""
1603
 
1604
+ #: bp-xprofile/bp-xprofile-classes.php:529
1605
+ #: bp-xprofile/bp-xprofile-classes.php:550
1606
+ msgid "Option"
1607
  msgstr ""
1608
 
1609
+ #: bp-xprofile/bp-xprofile-classes.php:531
1610
+ #: bp-xprofile/bp-xprofile-classes.php:551
1611
+ msgid "Default Value"
1612
  msgstr ""
1613
 
1614
+ #: bp-xprofile/bp-xprofile-classes.php:557
1615
+ msgid "Add Another Option"
1616
  msgstr ""
1617
 
1618
+ #: bp-xprofile/bp-xprofile-classes.php:565
1619
+ msgid "Add Field"
 
1620
  msgstr ""
1621
 
1622
+ #: bp-xprofile/bp-xprofile-classes.php:574
1623
+ msgid "Edit Field"
 
1624
  msgstr ""
1625
 
1626
+ #: bp-xprofile/bp-xprofile-classes.php:595
1627
+ msgid "Field Title"
 
1628
  msgstr ""
1629
 
1630
+ #: bp-xprofile/bp-xprofile-classes.php:602
1631
+ msgid "Field Description"
 
1632
  msgstr ""
1633
 
1634
+ #: bp-xprofile/bp-xprofile-classes.php:609
1635
+ msgid "Is This Field Required?"
 
 
 
 
 
 
 
 
1636
  msgstr ""
1637
 
1638
+ #: bp-xprofile/bp-xprofile-classes.php:611
1639
+ msgid "Not Required"
 
 
 
 
 
 
1640
  msgstr ""
1641
 
1642
+ #: bp-xprofile/bp-xprofile-classes.php:612
1643
+ msgid "Required"
 
 
 
1644
  msgstr ""
1645
 
1646
+ #: bp-xprofile/bp-xprofile-classes.php:617 bp-xprofile/bp-xprofile-admin.php:74
1647
+ msgid "Field Type"
 
 
 
1648
  msgstr ""
1649
 
1650
+ #: bp-xprofile/bp-xprofile-classes.php:619
1651
+ msgid "Text Box"
 
1652
  msgstr ""
1653
 
1654
+ #: bp-xprofile/bp-xprofile-classes.php:620
1655
+ msgid "Multi-line Text Box"
1656
  msgstr ""
1657
 
1658
+ #: bp-xprofile/bp-xprofile-classes.php:621
1659
+ msgid "Date Selector"
1660
  msgstr ""
1661
 
1662
+ #: bp-xprofile/bp-xprofile-classes.php:622
1663
+ msgid "Radio Buttons"
 
1664
  msgstr ""
1665
 
1666
+ #: bp-xprofile/bp-xprofile-classes.php:623
1667
+ msgid "Drop Down Select Box"
1668
  msgstr ""
1669
 
1670
+ #: bp-xprofile/bp-xprofile-classes.php:624
1671
+ msgid "Multi Select Box"
1672
  msgstr ""
1673
 
1674
+ #: bp-xprofile/bp-xprofile-classes.php:625
1675
+ msgid "Checkboxes"
 
1676
  msgstr ""
1677
 
1678
+ #: bp-xprofile/bp-xprofile-classes.php:632
1679
+ msgid "Save"
 
1680
  msgstr ""
1681
 
1682
+ #: bp-xprofile/bp-xprofile-classes.php:633
1683
+ msgid "or"
 
 
1684
  msgstr ""
1685
 
1686
+ #: bp-xprofile/bp-xprofile-classes.php:633
1687
+ #: bp-themes/bp-default/forums/index.php:59
1688
+ msgid "Cancel"
1689
  msgstr ""
1690
 
1691
+ #: bp-xprofile/bp-xprofile-classes.php:655
1692
+ msgid "Please make sure you fill out all required fields."
 
 
1693
  msgstr ""
1694
 
1695
+ #: bp-xprofile/bp-xprofile-classes.php:658
1696
+ msgid "Radio button field types require at least one option. Please add options below."
1697
  msgstr ""
1698
 
1699
+ #: bp-xprofile/bp-xprofile-classes.php:661
1700
+ #: bp-xprofile/bp-xprofile-classes.php:664
1701
+ msgid "Select box field types require at least one option. Please add options below."
1702
  msgstr ""
1703
 
1704
+ #: bp-xprofile/bp-xprofile-classes.php:667
1705
+ msgid "Checkbox field types require at least one option. Please add options below."
 
1706
  msgstr ""
1707
 
1708
+ #: bp-xprofile/bp-xprofile-admin.php:38 bp-xprofile.php:148
1709
+ msgid "Profile Field Setup"
1710
  msgstr ""
1711
 
1712
+ #: bp-xprofile/bp-xprofile-admin.php:40
1713
+ msgid "Your users will distinguish themselves through their profile page. You must give them profile fields that allow them to describe themselves in a way that is relevant to the theme of your social network."
 
1714
  msgstr ""
1715
 
1716
+ #: bp-xprofile/bp-xprofile-admin.php:41
1717
+ msgid "NOTE: Any fields in the first group will appear on the signup page."
1718
  msgstr ""
1719
 
1720
+ #: bp-xprofile/bp-xprofile-admin.php:67 bp-xprofile/bp-xprofile-admin.php:94
1721
+ #: bp-forums/bp-forums-templatetags.php:977
1722
+ #: bp-themes/bp-default/functions.php:91
1723
+ msgid "Edit"
1724
  msgstr ""
1725
 
1726
+ #: bp-xprofile/bp-xprofile-admin.php:68 bp-xprofile/bp-xprofile-admin.php:95
1727
+ #: bp-forums/bp-forums-templatetags.php:978
1728
+ #: bp-themes/bp-default/_inc/ajax.php:192
1729
+ #: bp-activity/bp-activity-templatetags.php:668
1730
+ #: bp-activity/bp-activity-templatetags.php:801
1731
+ msgid "Delete"
1732
  msgstr ""
1733
 
1734
+ #: bp-xprofile/bp-xprofile-admin.php:73
1735
+ msgid "Field Name"
 
1736
  msgstr ""
1737
 
1738
+ #: bp-xprofile/bp-xprofile-admin.php:75
1739
+ msgid "Required?"
1740
  msgstr ""
1741
 
1742
+ #: bp-xprofile/bp-xprofile-admin.php:76
1743
+ msgid "Action"
1744
  msgstr ""
1745
 
1746
+ #: bp-xprofile/bp-xprofile-admin.php:90
1747
+ msgid "Drag"
 
1748
  msgstr ""
1749
 
1750
+ #: bp-xprofile/bp-xprofile-admin.php:91
1751
+ msgid "(Core Field)"
1752
  msgstr ""
1753
 
1754
+ #: bp-xprofile/bp-xprofile-admin.php:103
1755
+ msgid "There are no fields in this group."
1756
  msgstr ""
1757
 
1758
+ #: bp-xprofile/bp-xprofile-admin.php:113
1759
+ msgid "Add New Field"
 
1760
  msgstr ""
1761
 
1762
+ #: bp-xprofile/bp-xprofile-admin.php:128
1763
+ msgid "You have no groups."
1764
  msgstr ""
1765
 
1766
+ #: bp-xprofile/bp-xprofile-admin.php:129
1767
+ msgid "Add New Group"
1768
  msgstr ""
1769
 
1770
+ #: bp-xprofile/bp-xprofile-admin.php:157
1771
+ msgid "There was an error saving the group. Please try again"
1772
  msgstr ""
1773
 
1774
+ #: bp-xprofile/bp-xprofile-admin.php:160
1775
+ msgid "The group was saved successfully."
1776
  msgstr ""
1777
 
1778
+ #: bp-xprofile/bp-xprofile-admin.php:189
1779
+ msgid "There was an error deleting the group. Please try again"
1780
  msgstr ""
1781
 
1782
+ #: bp-xprofile/bp-xprofile-admin.php:192
1783
+ msgid "The group was deleted successfully."
1784
  msgstr ""
1785
 
1786
+ #: bp-xprofile/bp-xprofile-admin.php:231
1787
+ msgid "There was an error saving the field. Please try again"
1788
  msgstr ""
1789
 
1790
+ #: bp-xprofile/bp-xprofile-admin.php:237
1791
+ msgid "The field was saved successfully."
1792
  msgstr ""
1793
 
1794
+ #: bp-xprofile/bp-xprofile-admin.php:265
1795
+ msgid "field"
1796
  msgstr ""
1797
 
1798
+ #: bp-xprofile/bp-xprofile-admin.php:267
1799
+ msgid "option"
1800
  msgstr ""
1801
 
1802
+ #: bp-xprofile/bp-xprofile-admin.php:273
1803
+ msgid "There was an error deleting the %s. Please try again"
1804
  msgstr ""
1805
 
1806
+ #: bp-xprofile/bp-xprofile-admin.php:276
1807
+ msgid "The %s was deleted successfully!"
1808
  msgstr ""
1809
 
1810
+ #: bp-xprofile/bp-xprofile-templatetags.php:490
1811
+ msgid "January"
1812
  msgstr ""
1813
 
1814
+ #: bp-xprofile/bp-xprofile-templatetags.php:490
1815
+ msgid "February"
1816
  msgstr ""
1817
 
1818
+ #: bp-xprofile/bp-xprofile-templatetags.php:490
1819
+ msgid "March"
1820
  msgstr ""
1821
 
1822
+ #: bp-xprofile/bp-xprofile-templatetags.php:491
1823
+ msgid "April"
1824
  msgstr ""
1825
 
1826
+ #: bp-xprofile/bp-xprofile-templatetags.php:491
1827
+ msgid "May"
1828
  msgstr ""
1829
 
1830
+ #: bp-xprofile/bp-xprofile-templatetags.php:491
1831
+ msgid "June"
1832
  msgstr ""
1833
 
1834
+ #: bp-xprofile/bp-xprofile-templatetags.php:492
1835
+ msgid "July"
1836
  msgstr ""
1837
 
1838
+ #: bp-xprofile/bp-xprofile-templatetags.php:492
1839
+ msgid "August"
1840
  msgstr ""
1841
 
1842
+ #: bp-xprofile/bp-xprofile-templatetags.php:492
1843
+ msgid "September"
1844
  msgstr ""
1845
 
1846
+ #: bp-xprofile/bp-xprofile-templatetags.php:493
1847
+ msgid "October"
 
1848
  msgstr ""
1849
 
1850
+ #: bp-xprofile/bp-xprofile-templatetags.php:493
1851
+ msgid "November"
 
 
1852
  msgstr ""
1853
 
1854
+ #: bp-xprofile/bp-xprofile-templatetags.php:493
1855
+ msgid "December"
1856
  msgstr ""
1857
 
1858
+ #: bp-xprofile/bp-xprofile-templatetags.php:634
1859
+ msgid "Avatar uploads are currently disabled. Why not use a <a href=\"http://gravatar.com\" target=\"_blank\">gravatar</a> instead?"
1860
  msgstr ""
1861
 
1862
+ #: bp-xprofile/bp-xprofile-templatetags.php:643
1863
+ msgid "Profile not recently updated"
1864
  msgstr ""
1865
 
1866
+ #: bp-xprofile/bp-xprofile-templatetags.php:654
1867
+ msgid "Profile updated %s ago"
1868
  msgstr ""
1869
 
1870
+ #: bp-xprofile/bp-xprofile-templatetags.php:697
1871
+ #: bp-xprofile/bp-xprofile-templatetags.php:698 bp-xprofile.php:178
1872
+ msgid "Edit Profile"
1873
  msgstr ""
1874
 
1875
+ #: bp-forums/bp-forums-templatetags.php:304
1876
+ #: bp-forums/bp-forums-templatetags.php:353
1877
+ #: bp-forums/bp-forums-templatetags.php:923
1878
+ msgid "Deleted User"
1879
  msgstr ""
1880
 
1881
+ #: bp-forums/bp-forums-templatetags.php:563
1882
+ msgid "Edit Topic"
1883
  msgstr ""
1884
 
1885
+ #: bp-forums/bp-forums-templatetags.php:567
1886
+ msgid "Sticky Topic"
1887
  msgstr ""
1888
 
1889
+ #: bp-forums/bp-forums-templatetags.php:569
1890
+ msgid "Un-stick Topic"
1891
  msgstr ""
1892
 
1893
+ #: bp-forums/bp-forums-templatetags.php:572
1894
+ msgid "Open Topic"
1895
  msgstr ""
1896
 
1897
+ #: bp-forums/bp-forums-templatetags.php:574
1898
+ msgid "Close Topic"
1899
  msgstr ""
1900
 
1901
+ #: bp-forums/bp-forums-templatetags.php:576
1902
+ msgid "Delete Topic"
1903
  msgstr ""
1904
 
1905
+ #: bp-forums/bp-forums-templatetags.php:682
1906
+ msgid " matching tag \"%s\""
1907
  msgstr ""
1908
 
1909
+ #: bp-forums/bp-forums-templatetags.php:684
1910
+ msgid "Viewing topic %1$s to %2$s (%3$s total topics%4$s)"
1911
  msgstr ""
1912
 
1913
+ #: bp-forums/bp-forums-templatetags.php:1010
1914
+ msgid "Viewing post %1$s to %2$s (%3$s total posts)"
1915
  msgstr ""
1916
 
1917
+ #: bp-forums/bp-forums-admin.php:12
1918
+ msgid "Settings Saved."
1919
  msgstr ""
1920
 
1921
+ #: bp-forums/bp-forums-admin.php:22
1922
+ msgid "bbPress forum integration in BuddyPress has been set up correctly. If you are having problems you can <a href=\"%s\" title=\"Reinstall bbPress\">re-install</a>"
1923
  msgstr ""
1924
 
1925
+ #: bp-forums/bp-forums-admin.php:23
1926
+ msgid "NOTE: The forums directory will only work if your bbPress tables are in the same database as your WordPress tables. If you are not using an existing bbPress install you can ignore this message."
1927
  msgstr ""
1928
 
1929
+ #: bp-forums/bp-forums-admin.php:38
1930
+ msgid "The bb-config.php file was not found at that location, please try again."
1931
  msgstr ""
1932
 
1933
+ #: bp-forums/bp-forums-admin.php:41
1934
+ msgid "Forums were set up correctly using your existing bbPress install!"
1935
  msgstr ""
1936
 
1937
+ #: bp-forums/bp-forums-admin.php:42
1938
+ msgid "BuddyPress will now use its internal copy of bbPress to run the forums on your site. If you wish, you can remove your old bbPress installation files, as long as you keep the bb-config.php file in the same location."
1939
  msgstr ""
1940
 
1941
+ #: bp-forums/bp-forums-admin.php:47
1942
+ msgid "Existing bbPress Installation"
1943
  msgstr ""
1944
 
1945
+ #: bp-forums/bp-forums-admin.php:48
1946
+ msgid "BuddyPress can make use of your existing bbPress install. Just provide the location of your <code>bb-config.php</code> file, and BuddyPress will do the rest."
1947
  msgstr ""
1948
 
1949
+ #: bp-forums/bp-forums-admin.php:50 bp-forums/bp-forums-admin.php:78
1950
+ msgid "Complete Installation"
1951
  msgstr ""
1952
 
1953
+ #: bp-forums/bp-forums-admin.php:65
1954
+ msgid "All done! Configuration settings have been saved to the file <code>bb-config.php</code> in the root of your WordPress install."
1955
  msgstr ""
1956
 
1957
+ #. Just write the contents to screen
1958
+
1959
+ #: bp-forums/bp-forums-admin.php:69
1960
+ msgid "A configuration file could not be created. No problem, but you will need to save the text shown below into a file named <code>bb-config.php</code> in the root directory of your WordPress installation before you can start using the forum functionality."
1961
  msgstr ""
1962
 
1963
+ #: bp-forums/bp-forums-admin.php:75
1964
+ msgid "New bbPress Installation"
1965
  msgstr ""
1966
 
1967
+ #: bp-forums/bp-forums-admin.php:76
1968
+ msgid ""
1969
+ "You've decided to set up a new installation of bbPress for forum management in BuddyPress. This is very simple and is usually just a one click\n"
1970
+ "\t\t\t\tprocess. When you're ready, hit the link below."
1971
  msgstr ""
1972
 
1973
+ #: bp-forums/bp-forums-admin.php:86
1974
+ msgid "bbPress files were not found. To install the forums component you must download a copy of bbPress and make sure it is in the folder: \"%s\""
1975
  msgstr ""
1976
 
1977
+ #: bp-forums/bp-forums-admin.php:90
1978
+ msgid "Forums in BuddyPress make use of a bbPress installation to function. You can choose to either let BuddyPress set up a new bbPress install, or use an already existing bbPress install. Please choose one of the options below."
1979
  msgstr ""
1980
 
1981
+ #: bp-forums/bp-forums-admin.php:92
1982
+ msgid "Set up a new bbPress installation"
1983
  msgstr ""
1984
 
1985
+ #: bp-forums/bp-forums-admin.php:93
1986
+ msgid "Use an existing bbPress installation"
 
1987
  msgstr ""
1988
 
1989
+ #: bp-xprofile.php:179
1990
+ #: bp-themes/bp-default/members/single/profile/change-avatar.php:1
1991
+ msgid "Change Avatar"
1992
  msgstr ""
1993
 
1994
+ #: bp-xprofile.php:213 bp-groups.php:250
1995
+ msgid "Admin Options"
1996
  msgstr ""
1997
 
1998
+ #: bp-xprofile.php:216
1999
+ msgid "Edit %s's Profile"
2000
  msgstr ""
2001
 
2002
+ #: bp-xprofile.php:217
2003
+ msgid "Edit %s's Avatar"
2004
  msgstr ""
2005
 
2006
+ #: bp-xprofile.php:220
2007
+ msgid "Mark as Spammer"
2008
  msgstr ""
2009
 
2010
+ #: bp-xprofile.php:222
2011
+ msgid "Not a Spammer"
2012
  msgstr ""
2013
 
2014
+ #: bp-xprofile.php:225
2015
+ msgid "Delete %s"
2016
  msgstr ""
2017
 
2018
+ #: bp-xprofile.php:318
2019
+ msgid "Please make sure you fill in all required fields in this profile field group before saving."
2020
  msgstr ""
2021
 
2022
+ #: bp-xprofile.php:335
2023
+ msgid "There was a problem updating some of your profile information, please try again."
2024
  msgstr ""
2025
 
2026
+ #: bp-xprofile.php:337
2027
+ msgid "Changes saved."
2028
  msgstr ""
2029
 
2030
+ #: bp-xprofile.php:388
2031
+ msgid "Your new avatar was uploaded successfully!"
2032
  msgstr ""
2033
 
2034
+ #: bp-xprofile.php:433 bp-groups.php:739
2035
+ msgid "Your avatar was deleted successfully!"
 
2036
  msgstr ""
2037
 
2038
+ #: bp-xprofile.php:435 bp-groups.php:741
2039
+ msgid "There was a problem deleting that avatar, please try again."
 
2040
  msgstr ""
2041
 
2042
+ #: bp-xprofile.php:455
2043
+ msgid "New member registered"
 
2044
  msgstr ""
2045
 
2046
+ #: bp-xprofile.php:456
2047
+ msgid "Updated Profile"
 
2048
  msgstr ""
2049
 
2050
+ #: bp-messages/bp-messages-classes.php:193
2051
+ msgid " Recipients"
 
2052
  msgstr ""
2053
 
2054
+ #: bp-messages/bp-messages-templatetags.php:335
2055
+ msgid "Viewing message %1$s to %2$s (of %3$s messages)"
 
2056
  msgstr ""
2057
 
2058
+ #: bp-messages/bp-messages-templatetags.php:376
2059
+ msgid "Select:"
 
2060
  msgstr ""
2061
 
2062
+ #: bp-messages/bp-messages-templatetags.php:379
2063
+ msgid "Read"
 
2064
  msgstr ""
2065
 
2066
+ #: bp-messages/bp-messages-templatetags.php:380
2067
+ msgid "Unread"
 
2068
  msgstr ""
2069
 
2070
+ #: bp-messages/bp-messages-templatetags.php:381
2071
+ msgid "All"
 
2072
  msgstr ""
2073
 
2074
+ #: bp-messages/bp-messages-templatetags.php:384
2075
+ msgid "Mark as Read"
2076
  msgstr ""
2077
 
2078
+ #: bp-messages/bp-messages-templatetags.php:385
2079
+ msgid "Mark as Unread"
 
2080
  msgstr ""
2081
 
2082
+ #: bp-messages/bp-messages-templatetags.php:387
2083
+ msgid "Delete Selected"
 
2084
  msgstr ""
2085
 
2086
+ #: bp-messages/bp-messages-templatetags.php:396
2087
+ msgid "Currently Active"
2088
  msgstr ""
2089
 
2090
+ #: bp-messages/bp-messages-templatetags.php:463
2091
+ msgid "Deactivate"
2092
  msgstr ""
2093
 
2094
+ #: bp-messages/bp-messages-templatetags.php:465
2095
+ #: bp-themes/bp-default/registration/activate.php:40
2096
+ msgid "Activate"
2097
  msgstr ""
2098
 
2099
+ #: bp-messages/bp-messages-templatetags.php:490
2100
+ #: bp-themes/bp-default/functions.php:32
2101
+ msgid "Close"
2102
  msgstr ""
2103
 
2104
+ #: bp-messages/bp-messages-templatetags.php:535
2105
+ msgid "Send a private message to this user."
 
2106
  msgstr ""
2107
 
2108
+ #: bp-messages/bp-messages-templatetags.php:536
2109
+ msgid "Send Private Message"
2110
  msgstr ""
2111
 
2112
+ #: bp-messages/bp-messages-templatetags.php:708
2113
+ msgid "%d Recipients"
2114
  msgstr ""
2115
 
2116
+ #: bp-messages/bp-messages-templatetags.php:774
2117
+ #: bp-themes/bp-default/_inc/ajax.php:468
2118
+ msgid "Sent %s ago"
 
 
 
 
 
2119
  msgstr ""
2120
 
2121
+ #: bp-messages/bp-messages-notifications.php:23
2122
+ msgid "New message from %s"
 
2123
  msgstr ""
2124
 
2125
+ #: bp-messages/bp-messages-notifications.php:25
 
2126
  msgid ""
2127
+ "%s sent you a new message:\n"
2128
  "\n"
2129
+ "Subject: %s\n"
 
2130
  "\n"
2131
+ "\"%s\"\n"
 
2132
  "\n"
2133
+ "To view and read your messages please log in and visit: %s\n"
2134
  "\n"
2135
  "---------------------\n"
2136
  msgstr ""
2137
 
2138
+ #: bp-groups.php:91
2139
+ msgid "Details"
 
2140
  msgstr ""
2141
 
2142
+ #: bp-groups.php:93 bp-activity/bp-activity-templatetags.php:430
2143
+ #: bp-activity/bp-activity-templatetags.php:476
2144
+ msgid "Avatar"
 
 
 
 
 
2145
  msgstr ""
2146
 
2147
+ #: bp-groups.php:97 bp-groups.php:154
2148
+ msgid "Invites"
 
2149
  msgstr ""
2150
 
2151
+ #: bp-groups.php:148
2152
+ msgid "Groups <span>(%d)</span>"
 
 
 
 
 
 
2153
  msgstr ""
2154
 
2155
+ #: bp-groups.php:153 bp-groups.php:160
2156
+ msgid "My Groups"
2157
  msgstr ""
2158
 
2159
+ #: bp-groups.php:205
2160
+ msgid "Admin"
2161
  msgstr ""
2162
 
2163
+ #: bp-groups.php:212
2164
+ msgid "Forum"
 
2165
  msgstr ""
2166
 
2167
+ #: bp-groups.php:214
2168
+ msgid "Members (%s)"
 
 
 
 
 
 
2169
  msgstr ""
2170
 
2171
+ #: bp-groups.php:218 bp-themes/bp-default/groups/single/send-invites.php:60
2172
+ msgid "Send Invites"
 
2173
  msgstr ""
2174
 
2175
+ #: bp-groups.php:298
2176
+ msgid "Group invite could not be accepted"
 
 
 
 
 
 
 
 
 
 
2177
  msgstr ""
2178
 
2179
+ #: bp-groups.php:300
2180
+ msgid "Group invite accepted"
 
2181
  msgstr ""
2182
 
2183
+ #: bp-groups.php:306 bp-groups.php:1774 bp-groups.php:2479
2184
+ msgid "%s joined the group %s"
 
 
 
 
 
 
 
 
2185
  msgstr ""
2186
 
2187
+ #: bp-groups.php:320
2188
+ msgid "Group invite could not be rejected"
2189
  msgstr ""
2190
 
2191
+ #: bp-groups.php:322
2192
+ msgid "Group invite rejected"
2193
  msgstr ""
2194
 
2195
+ #: bp-groups.php:376
2196
+ msgid "There was an error when replying to that topic"
2197
  msgstr ""
2198
 
2199
+ #: bp-groups.php:378
2200
+ msgid "Your reply was posted successfully"
2201
  msgstr ""
2202
 
2203
+ #: bp-groups.php:392
2204
+ msgid "There was an error when making that topic a sticky"
 
2205
  msgstr ""
2206
 
2207
+ #: bp-groups.php:394
2208
+ msgid "The topic was made sticky successfully"
2209
  msgstr ""
2210
 
2211
+ #: bp-groups.php:406
2212
+ msgid "There was an error when unsticking that topic"
2213
  msgstr ""
2214
 
2215
+ #: bp-groups.php:408
2216
+ msgid "The topic was unstuck successfully"
2217
  msgstr ""
2218
 
2219
+ #: bp-groups.php:420
2220
+ msgid "There was an error when closing that topic"
2221
  msgstr ""
2222
 
2223
+ #: bp-groups.php:422
2224
+ msgid "The topic was closed successfully"
2225
  msgstr ""
2226
 
2227
+ #: bp-groups.php:434
2228
+ msgid "There was an error when opening that topic"
 
2229
  msgstr ""
2230
 
2231
+ #: bp-groups.php:436
2232
+ msgid "The topic was opened successfully"
 
2233
  msgstr ""
2234
 
2235
+ #: bp-groups.php:455
2236
+ msgid "There was an error deleting the topic"
 
 
2237
  msgstr ""
2238
 
2239
+ #: bp-groups.php:457
2240
+ msgid "The topic was deleted successfully"
 
2241
  msgstr ""
2242
 
2243
+ #: bp-groups.php:477
2244
+ msgid "There was an error when editing that topic"
 
2245
  msgstr ""
2246
 
2247
+ #: bp-groups.php:479
2248
+ msgid "The topic was edited successfully"
 
2249
  msgstr ""
2250
 
2251
+ #: bp-groups.php:501
2252
+ msgid "There was an error deleting that post"
 
 
 
2253
  msgstr ""
2254
 
2255
+ #: bp-groups.php:503
2256
+ msgid "The post was deleted successfully"
2257
  msgstr ""
2258
 
2259
+ #: bp-groups.php:523
2260
+ msgid "There was an error when editing that post"
 
2261
  msgstr ""
2262
 
2263
+ #: bp-groups.php:525
2264
+ msgid "The post was edited successfully"
2265
  msgstr ""
2266
 
2267
+ #: bp-groups.php:592
2268
+ msgid "Group invites sent."
2269
  msgstr ""
2270
 
2271
+ #: bp-groups.php:618
2272
+ msgid "There was an error sending your group membership request, please try again."
2273
  msgstr ""
2274
 
2275
+ #: bp-groups.php:620
2276
+ msgid "Your membership request was sent to the group administrator successfully. You will be notified when the group administrator responds to your request."
2277
  msgstr ""
2278
 
2279
+ #: bp-groups.php:669
2280
+ msgid "There was an error updating group details, please try again."
2281
  msgstr ""
2282
 
2283
+ #: bp-groups.php:671
2284
+ msgid "Group details were successfully updated."
 
 
2285
  msgstr ""
2286
 
2287
+ #: bp-groups.php:707
2288
+ msgid "There was an error updating group settings, please try again."
 
 
2289
  msgstr ""
2290
 
2291
+ #: bp-groups.php:709
2292
+ msgid "Group settings were successfully updated."
 
 
2293
  msgstr ""
2294
 
2295
+ #: bp-groups.php:769
2296
+ msgid "There was a problem cropping the avatar, please try uploading it again"
 
2297
  msgstr ""
2298
 
2299
+ #: bp-groups.php:771
2300
+ msgid "The new group avatar was uploaded successfully!"
 
 
2301
  msgstr ""
2302
 
2303
+ #: bp-groups.php:800
2304
+ msgid "There was an error when promoting that user, please try again"
 
 
2305
  msgstr ""
2306
 
2307
+ #: bp-groups.php:802
2308
+ msgid "User promoted successfully"
 
 
2309
  msgstr ""
2310
 
2311
+ #: bp-groups.php:818
2312
+ msgid "There was an error when demoting that user, please try again"
2313
  msgstr ""
2314
 
2315
+ #: bp-groups.php:820
2316
+ msgid "User demoted successfully"
 
2317
  msgstr ""
2318
 
2319
+ #: bp-groups.php:836
2320
+ msgid "There was an error when banning that user, please try again"
 
2321
  msgstr ""
2322
 
2323
+ #: bp-groups.php:838
2324
+ msgid "User banned successfully"
 
2325
  msgstr ""
2326
 
2327
+ #: bp-groups.php:854
2328
+ msgid "There was an error when unbanning that user, please try again"
 
2329
  msgstr ""
2330
 
2331
+ #: bp-groups.php:856
2332
+ msgid "User ban removed successfully"
 
2333
  msgstr ""
2334
 
2335
+ #: bp-groups.php:872
2336
+ msgid "There was an error removing that user from the group, please try again"
2337
  msgstr ""
2338
 
2339
+ #: bp-groups.php:874
2340
+ msgid "User removed successfully"
 
2341
  msgstr ""
2342
 
2343
+ #: bp-groups.php:915
2344
+ msgid "There was an error accepting the membership request, please try again."
2345
  msgstr ""
2346
 
2347
+ #: bp-groups.php:917
2348
+ msgid "Group membership request accepted"
2349
  msgstr ""
2350
 
2351
+ #: bp-groups.php:927
2352
+ msgid "There was an error rejecting the membership request, please try again."
 
2353
  msgstr ""
2354
 
2355
+ #: bp-groups.php:929
2356
+ msgid "Group membership request rejected"
2357
  msgstr ""
2358
 
2359
+ #: bp-groups.php:961
2360
+ msgid "There was an error deleting the group, please try again."
 
2361
  msgstr ""
2362
 
2363
+ #: bp-groups.php:963
2364
+ msgid "The group was deleted successfully"
2365
  msgstr ""
2366
 
2367
+ #: bp-groups.php:995
2368
+ msgid "A member invites you to join a group"
2369
  msgstr ""
2370
 
2371
+ #: bp-groups.php:1001
2372
+ msgid "Group information is updated"
2373
  msgstr ""
2374
 
2375
+ #: bp-groups.php:1007
2376
+ msgid "You are promoted to a group administrator or moderator"
2377
  msgstr ""
2378
 
2379
+ #: bp-groups.php:1013
2380
+ msgid "A member requests to join a private group for which you are an admin"
2381
  msgstr ""
2382
 
2383
+ #: bp-groups.php:1062
2384
+ msgid "There was an error saving group details. Please try again."
2385
  msgstr ""
2386
 
2387
+ #: bp-groups.php:1084
2388
+ msgid "Please fill in all of the required fields"
2389
  msgstr ""
2390
 
2391
+ #: bp-groups.php:1089 bp-groups.php:1116
2392
+ msgid "There was an error saving group details, please try again."
2393
  msgstr ""
2394
 
2395
+ #: bp-groups.php:1147
2396
+ msgid "%s created the group %s"
2397
  msgstr ""
2398
 
2399
+ #: bp-groups.php:1195
2400
+ msgid "There was an error saving the group avatar, please try uploading again."
2401
  msgstr ""
2402
 
2403
+ #: bp-groups.php:1197
2404
+ msgid "The group avatar was uploaded successfully!"
2405
  msgstr ""
2406
 
2407
+ #: bp-groups.php:1221 bp-groups.php:1228
2408
+ msgid "There was an error joining the group."
2409
  msgstr ""
2410
 
2411
+ #: bp-groups.php:1230
2412
+ msgid "You joined the group!"
2413
  msgstr ""
2414
 
2415
+ #: bp-groups.php:1253
2416
+ msgid "There was an error leaving the group."
2417
  msgstr ""
2418
 
2419
+ #: bp-groups.php:1255 bp-groups.php:1732
2420
+ msgid "You successfully left the group."
2421
  msgstr ""
2422
 
2423
+ #: bp-groups.php:1333
2424
+ msgid "Created a group"
2425
  msgstr ""
2426
 
2427
+ #: bp-groups.php:1334
2428
+ msgid "Joined a group"
2429
  msgstr ""
2430
 
2431
+ #: bp-groups.php:1335
2432
+ msgid "New group forum topic"
2433
  msgstr ""
2434
 
2435
+ #: bp-groups.php:1336
2436
+ msgid "New group forum post"
2437
  msgstr ""
2438
 
2439
+ #: bp-groups.php:1396
2440
+ msgid "Group Membership Requests"
2441
  msgstr ""
2442
 
2443
+ #: bp-groups.php:1396
2444
+ msgid "%d new membership requests for the group \"%s\""
2445
  msgstr ""
2446
 
2447
+ #: bp-groups.php:1399
2448
+ msgid "%s requests membership for the group \"%s\""
 
2449
  msgstr ""
2450
 
2451
+ #: bp-groups.php:1410
2452
+ msgid "%d accepted group membership requests"
2453
  msgstr ""
2454
 
2455
+ #: bp-groups.php:1412
2456
+ msgid "Membership for group \"%s\" accepted"
2457
  msgstr ""
2458
 
2459
+ #: bp-groups.php:1423
2460
+ msgid "%d rejected group membership requests"
2461
  msgstr ""
2462
 
2463
+ #: bp-groups.php:1425
2464
+ msgid "Membership for group \"%s\" rejected"
2465
  msgstr ""
2466
 
2467
+ #: bp-groups.php:1436
2468
+ msgid "You were promoted to an admin in %d groups"
 
2469
  msgstr ""
2470
 
2471
+ #: bp-groups.php:1438
2472
+ msgid "You were promoted to an admin in the group %s"
 
2473
  msgstr ""
2474
 
2475
+ #: bp-groups.php:1449
2476
+ msgid "You were promoted to a mod in %d groups"
 
2477
  msgstr ""
2478
 
2479
+ #: bp-groups.php:1451
2480
+ msgid "You were promoted to a mod in the group %s"
2481
  msgstr ""
2482
 
2483
+ #: bp-groups.php:1462 bp-groups.php:1464
2484
+ msgid "Group Invites"
2485
  msgstr ""
2486
 
2487
+ #: bp-groups.php:1462
2488
+ msgid "You have %d new group invitations"
 
2489
  msgstr ""
2490
 
2491
+ #: bp-groups.php:1464
2492
+ msgid "You have an invitation to the group: %s"
 
 
 
 
 
 
 
 
 
 
2493
  msgstr ""
2494
 
2495
+ #: bp-groups.php:1709
2496
+ msgid "As the only Admin, you cannot leave the group."
 
2497
  msgstr ""
2498
 
2499
+ #: bp-groups.php:1962
2500
+ msgid "%s posted an update in the group %s:"
2501
  msgstr ""
2502
 
2503
+ #: bp-groups.php:2033 bp-groups.php:2138
2504
+ msgid "%s posted on the forum topic %s in the group %s:"
2505
  msgstr ""
2506
 
2507
+ #: bp-groups.php:2072 bp-groups.php:2104
2508
+ msgid "%s started the forum topic %s in the group %s:"
2509
  msgstr ""
2510
 
2511
+ #: bp-messages.php:105
2512
+ msgid "Messages <strong>(%s)</strong>"
2513
  msgstr ""
2514
 
2515
+ #: bp-messages.php:107
2516
+ msgid "Messages <strong></strong>"
2517
  msgstr ""
2518
 
2519
+ #: bp-messages.php:115
2520
+ msgid "Inbox"
2521
  msgstr ""
2522
 
2523
+ #: bp-messages.php:116
2524
+ msgid "Sent Messages"
2525
  msgstr ""
2526
 
2527
+ #: bp-messages.php:117
2528
+ msgid "Compose"
2529
  msgstr ""
2530
 
2531
+ #: bp-messages.php:120
2532
+ msgid "Notices"
2533
  msgstr ""
2534
 
2535
+ #: bp-messages.php:124
2536
+ msgid "My Messages"
 
2537
  msgstr ""
2538
 
2539
+ #: bp-messages.php:167 bp-messages.php:189
2540
+ msgid "There was an error sending that message, please try again"
 
2541
  msgstr ""
2542
 
2543
+ #: bp-messages.php:172
2544
+ msgid "Notice sent successfully!"
2545
  msgstr ""
2546
 
2547
+ #: bp-messages.php:175
2548
+ msgid "There was an error sending that notice, please try again"
2549
  msgstr ""
2550
 
2551
+ #: bp-messages.php:186
2552
+ msgid "Message sent successfully!"
 
2553
  msgstr ""
2554
 
2555
+ #: bp-messages.php:213
2556
+ msgid "There was a problem deactivating that notice."
 
 
2557
  msgstr ""
2558
 
2559
+ #: bp-messages.php:215
2560
+ msgid "Notice deactivated."
2561
  msgstr ""
2562
 
2563
+ #: bp-messages.php:219
2564
+ msgid "There was a problem activating that notice."
2565
  msgstr ""
2566
 
2567
+ #: bp-messages.php:221
2568
+ msgid "Notice activated."
2569
  msgstr ""
2570
 
2571
+ #: bp-messages.php:225
2572
+ msgid "There was a problem deleting that notice."
 
2573
  msgstr ""
2574
 
2575
+ #: bp-messages.php:227
2576
+ msgid "Notice deleted."
 
2577
  msgstr ""
2578
 
2579
+ #: bp-messages.php:244
2580
+ msgid "Messages"
 
2581
  msgstr ""
2582
 
2583
+ #: bp-messages.php:253
2584
+ msgid "A member sends you a new message"
 
 
2585
  msgstr ""
2586
 
2587
+ #: bp-messages.php:259
2588
+ msgid "A new site notice is posted"
2589
  msgstr ""
2590
 
2591
+ #: bp-messages.php:299
2592
+ msgid "Your reply was sent successfully"
2593
  msgstr ""
2594
 
2595
+ #: bp-messages.php:301
2596
+ msgid "There was a problem sending your reply, please try again"
2597
  msgstr ""
2598
 
2599
+ #: bp-messages.php:311
2600
+ msgid "From: %s"
2601
  msgstr ""
2602
 
2603
+ #: bp-messages.php:332
2604
+ msgid "There was an error deleting that message."
2605
  msgstr ""
2606
 
2607
+ #: bp-messages.php:334
2608
+ msgid "Message deleted."
2609
  msgstr ""
2610
 
2611
+ #: bp-messages.php:356
2612
+ msgid "There was an error deleting messages."
2613
  msgstr ""
2614
 
2615
+ #: bp-messages.php:358 bp-themes/bp-default/_inc/ajax.php:534
2616
+ msgid "Messages deleted."
2617
  msgstr ""
2618
 
2619
+ #: bp-messages.php:378
2620
+ msgid "You have %d new messages"
2621
  msgstr ""
2622
 
2623
+ #: bp-messages.php:380
2624
+ msgid "You have %d new message"
2625
  msgstr ""
2626
 
2627
+ #: bp-messages.php:434
2628
+ msgid "Re: %s"
2629
  msgstr ""
2630
 
2631
+ #: bp-messages.php:442
2632
+ msgid "No Subject"
2633
  msgstr ""
2634
 
2635
+ #: bp-blogs.php:109
2636
+ msgid "Blogs <span>(%d)</span>"
 
2637
  msgstr ""
2638
 
2639
+ #: bp-blogs.php:190
2640
+ msgid "New blog created"
2641
  msgstr ""
2642
 
2643
+ #: bp-blogs.php:191
2644
+ msgid "New blog post published"
2645
  msgstr ""
2646
 
2647
+ #: bp-blogs.php:192
2648
+ msgid "New blog post comment posted"
2649
  msgstr ""
2650
 
2651
+ #: bp-blogs.php:360
2652
+ msgid "%s created the blog %s"
 
2653
  msgstr ""
2654
 
2655
+ #: bp-blogs.php:422
2656
+ msgid "%s wrote a new blog post: %s"
2657
  msgstr ""
2658
 
2659
+ #: bp-blogs.php:498
2660
+ msgid "%s commented on the blog post %s"
2661
  msgstr ""
2662
 
2663
+ #: bp-themes/bp-default/index.php:20 bp-themes/bp-default/index.php:26
2664
+ #: bp-themes/bp-default/search.php:29 bp-themes/bp-default/search.php:35
2665
+ #: bp-themes/bp-default/archive.php:29 bp-themes/bp-default/archive.php:35
2666
+ #: bp-themes/bp-default/single.php:23 bp-themes/bp-default/single.php:29
2667
+ msgid "by %s"
2668
  msgstr ""
2669
 
2670
+ #: bp-themes/bp-default/index.php:24 bp-themes/bp-default/search.php:33
2671
+ #: bp-themes/bp-default/archive.php:33 bp-themes/bp-default/single.php:27
2672
+ msgid "Permanent Link to"
2673
  msgstr ""
2674
 
2675
+ #: bp-themes/bp-default/index.php:26 bp-themes/bp-default/search.php:35
2676
+ #: bp-themes/bp-default/archive.php:35 bp-themes/bp-default/single.php:29
2677
+ msgid "in"
2678
  msgstr ""
2679
 
2680
+ #: bp-themes/bp-default/index.php:29 bp-themes/bp-default/search.php:38
2681
+ #: bp-themes/bp-default/archive.php:38 bp-themes/bp-default/single.php:32
2682
+ msgid "Read the rest of this entry &rarr;"
2683
  msgstr ""
2684
 
2685
+ #: bp-themes/bp-default/index.php:32 bp-themes/bp-default/search.php:41
2686
+ #: bp-themes/bp-default/archive.php:41 bp-themes/bp-default/single.php:37
2687
+ msgid "Tags: "
2688
  msgstr ""
2689
 
2690
+ #: bp-themes/bp-default/index.php:32 bp-themes/bp-default/search.php:41
2691
+ #: bp-themes/bp-default/archive.php:41 bp-themes/bp-default/single.php:37
2692
+ msgid "No Comments &#187;"
2693
  msgstr ""
2694
 
2695
+ #: bp-themes/bp-default/index.php:32 bp-themes/bp-default/search.php:41
2696
+ #: bp-themes/bp-default/archive.php:41 bp-themes/bp-default/single.php:37
2697
+ msgid "1 Comment &#187;"
 
2698
  msgstr ""
2699
 
2700
+ #: bp-themes/bp-default/index.php:32 bp-themes/bp-default/search.php:41
2701
+ #: bp-themes/bp-default/archive.php:41 bp-themes/bp-default/single.php:37
2702
+ msgid "% Comments &#187;"
2703
  msgstr ""
2704
 
2705
+ #: bp-themes/bp-default/index.php:43 bp-themes/bp-default/search.php:17
2706
+ #: bp-themes/bp-default/search.php:51 bp-themes/bp-default/archive.php:16
2707
+ #: bp-themes/bp-default/archive.php:52 bp-themes/bp-default/single.php:14
2708
+ msgid "&larr; Previous Entries"
2709
  msgstr ""
2710
 
2711
+ #: bp-themes/bp-default/index.php:44 bp-themes/bp-default/search.php:18
2712
+ #: bp-themes/bp-default/search.php:52 bp-themes/bp-default/archive.php:17
2713
+ #: bp-themes/bp-default/archive.php:53 bp-themes/bp-default/single.php:15
2714
+ msgid "Next Entries &rarr;"
2715
  msgstr ""
2716
 
2717
+ #: bp-themes/bp-default/index.php:50 bp-themes/bp-default/archive.php:59
2718
+ msgid "Not Found"
 
 
2719
  msgstr ""
2720
 
2721
+ #: bp-themes/bp-default/index.php:51
2722
+ msgid "Sorry, but you are looking for something that isn't here."
2723
  msgstr ""
2724
 
2725
+ #: bp-themes/bp-default/registration/activate.php:16
2726
+ msgid "Account Activated"
 
2727
  msgstr ""
2728
 
2729
+ #: bp-themes/bp-default/registration/activate.php:21
2730
+ msgid "Your account was activated successfully! Your account details have been sent to you in a separate email."
2731
  msgstr ""
2732
 
2733
+ #: bp-themes/bp-default/registration/activate.php:23
2734
+ msgid "Your account was activated successfully! You can now log in with the username and password you provided when you signed up."
 
2735
  msgstr ""
2736
 
2737
+ #: bp-themes/bp-default/registration/activate.php:32
2738
+ msgid "Please provide a valid activation key."
 
2739
  msgstr ""
2740
 
2741
+ #: bp-themes/bp-default/registration/activate.php:36
2742
+ msgid "Activation Key:"
 
2743
  msgstr ""
2744
 
2745
+ #: bp-themes/bp-default/registration/register.php:18
2746
+ msgid "Registering for this site is easy, just fill in the fields below and we'll get a new account set up for you in no time."
 
 
2747
  msgstr ""
2748
 
2749
+ #: bp-themes/bp-default/registration/register.php:26
2750
+ msgid "Account Details"
 
 
2751
  msgstr ""
2752
 
2753
+ #: bp-themes/bp-default/registration/register.php:28
2754
+ #: bp-themes/bp-default/sidebar.php:41
2755
+ msgid "Username"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2756
  msgstr ""
2757
 
2758
+ #: bp-themes/bp-default/registration/register.php:28
2759
+ #: bp-themes/bp-default/registration/register.php:32
2760
+ #: bp-themes/bp-default/registration/register.php:36
2761
+ #: bp-themes/bp-default/registration/register.php:40
2762
+ #: bp-themes/bp-default/registration/register.php:67
2763
+ #: bp-themes/bp-default/registration/register.php:75
2764
+ #: bp-themes/bp-default/registration/register.php:83
2765
+ #: bp-themes/bp-default/registration/register.php:93
2766
+ #: bp-themes/bp-default/registration/register.php:104
2767
+ #: bp-themes/bp-default/registration/register.php:119
2768
+ #: bp-themes/bp-default/registration/register.php:130
2769
+ #: bp-themes/bp-default/registration/register.php:180
2770
+ #: bp-themes/bp-default/registration/register.php:189
2771
+ #: bp-themes/bp-default/members/single/profile/edit.php:23
2772
+ #: bp-themes/bp-default/members/single/profile/edit.php:30
2773
+ #: bp-themes/bp-default/members/single/profile/edit.php:37
2774
+ #: bp-themes/bp-default/members/single/profile/edit.php:46
2775
+ #: bp-themes/bp-default/members/single/profile/edit.php:60
2776
+ #: bp-themes/bp-default/members/single/profile/edit.php:74
2777
+ #: bp-themes/bp-default/members/single/profile/edit.php:84
2778
+ #: bp-themes/bp-default/groups/create.php:26
2779
+ #: bp-themes/bp-default/groups/create.php:29
2780
+ msgid "(required)"
2781
  msgstr ""
2782
 
2783
+ #: bp-themes/bp-default/registration/register.php:32
2784
+ msgid "Email Address"
2785
  msgstr ""
2786
 
2787
+ #: bp-themes/bp-default/registration/register.php:36
2788
+ msgid "Choose a Password"
 
 
 
2789
  msgstr ""
2790
 
2791
+ #: bp-themes/bp-default/registration/register.php:40
2792
+ msgid "Confirm Password"
 
2793
  msgstr ""
2794
 
2795
+ #: bp-themes/bp-default/registration/register.php:56
2796
+ msgid "Profile Details"
 
2797
  msgstr ""
2798
 
2799
+ #: bp-themes/bp-default/registration/register.php:110
2800
+ #: bp-themes/bp-default/members/single/profile/edit.php:52
2801
+ #: bp-themes/bp-default/members/single/profile/edit.php:65
2802
+ msgid "Clear"
2803
  msgstr ""
2804
 
2805
+ #: bp-themes/bp-default/registration/register.php:174
2806
+ msgid "Blog Details"
2807
  msgstr ""
2808
 
2809
+ #: bp-themes/bp-default/registration/register.php:176
2810
+ msgid "Yes, I'd like to create a new blog"
 
2811
  msgstr ""
2812
 
2813
+ #: bp-themes/bp-default/registration/register.php:180
2814
+ msgid "Blog URL"
 
 
2815
  msgstr ""
2816
 
2817
+ #: bp-themes/bp-default/registration/register.php:189
2818
+ msgid "Blog Title"
 
 
2819
  msgstr ""
2820
 
2821
+ #: bp-themes/bp-default/registration/register.php:193
2822
+ msgid "I would like my blog to appear in search engines, and in public listings around this site"
 
 
 
 
2823
  msgstr ""
2824
 
2825
+ #: bp-themes/bp-default/registration/register.php:210
2826
+ msgid "Complete Sign Up"
 
2827
  msgstr ""
2828
 
2829
+ #: bp-themes/bp-default/registration/register.php:221
2830
+ msgid "Sign Up Complete!"
 
2831
  msgstr ""
2832
 
2833
+ #: bp-themes/bp-default/registration/register.php:226
2834
+ msgid "You have successfully created your account! To begin using this site you will need to activate your account via the email we have just sent to your address."
 
2835
  msgstr ""
2836
 
2837
+ #: bp-themes/bp-default/registration/register.php:228
2838
+ msgid "You have successfully created your account! Please log in using the username and password you have just created."
 
2839
  msgstr ""
2840
 
2841
+ #: bp-themes/bp-default/registration/register.php:235
2842
+ msgid "Your Current Avatar"
 
2843
  msgstr ""
2844
 
2845
+ #: bp-themes/bp-default/registration/register.php:236
2846
+ msgid "We've fetched an avatar for your new account. If you'd like to change this, why not upload a new one?"
 
2847
  msgstr ""
2848
 
2849
+ #: bp-themes/bp-default/registration/register.php:244
2850
+ #: bp-themes/bp-default/members/single/profile/change-avatar.php:17
2851
+ #: bp-themes/bp-default/groups/single/admin.php:114
2852
+ #: bp-themes/bp-default/groups/create.php:118
2853
+ msgid "Upload Image"
2854
  msgstr ""
2855
 
2856
+ #: bp-themes/bp-default/registration/register.php:256
2857
+ #: bp-themes/bp-default/members/single/profile/change-avatar.php:32
2858
+ msgid "Crop Your New Avatar"
2859
  msgstr ""
2860
 
2861
+ #: bp-themes/bp-default/registration/register.php:258
2862
+ #: bp-themes/bp-default/members/single/profile/change-avatar.php:34
2863
+ #: bp-themes/bp-default/groups/single/admin.php:134
2864
+ #: bp-themes/bp-default/groups/create.php:131
2865
+ msgid "Avatar to crop"
2866
  msgstr ""
2867
 
2868
+ #: bp-themes/bp-default/registration/register.php:261
2869
+ #: bp-themes/bp-default/members/single/profile/change-avatar.php:37
2870
+ #: bp-themes/bp-default/groups/single/admin.php:137
2871
+ #: bp-themes/bp-default/groups/create.php:134
2872
+ msgid "Avatar preview"
2873
  msgstr ""
2874
 
2875
+ #: bp-themes/bp-default/registration/register.php:264
2876
+ #: bp-themes/bp-default/members/single/profile/change-avatar.php:40
2877
+ #: bp-themes/bp-default/groups/single/admin.php:140
2878
+ #: bp-themes/bp-default/groups/create.php:137
2879
+ msgid "Crop Image"
2880
  msgstr ""
2881
 
2882
+ #: bp-themes/bp-default/_inc/ajax.php:137
2883
+ msgid "There was a problem posting your update, please try again."
2884
  msgstr ""
2885
 
2886
+ #: bp-themes/bp-default/_inc/ajax.php:190
2887
+ #: bp-activity/bp-activity-templatetags.php:660
2888
+ msgid "%s ago"
2889
  msgstr ""
2890
 
2891
+ #: bp-themes/bp-default/_inc/ajax.php:191
2892
+ #: bp-themes/bp-default/activity/entry.php:28
2893
+ #: bp-activity/bp-activity-templatetags.php:664
2894
+ msgid "Reply"
2895
  msgstr ""
2896
 
2897
+ #: bp-themes/bp-default/_inc/ajax.php:229
2898
+ #: bp-themes/bp-default/_inc/ajax.php:262
2899
+ msgid "There was a problem when deleting. Please try again."
2900
  msgstr ""
2901
 
2902
+ #: bp-themes/bp-default/_inc/ajax.php:275
2903
+ #: bp-themes/bp-default/activity/entry.php:35
2904
+ msgid "Remove Favorite"
2905
  msgstr ""
2906
 
2907
+ #: bp-themes/bp-default/_inc/ajax.php:284
2908
+ #: bp-themes/bp-default/activity/entry.php:33
2909
+ msgid "Favorite"
 
 
 
 
 
 
2910
  msgstr ""
2911
 
2912
+ #: bp-themes/bp-default/_inc/ajax.php:315
2913
+ #: bp-themes/bp-default/groups/single/send-invites.php:42
2914
+ #: bp-themes/bp-default/groups/create.php:191
2915
+ msgid "Remove Invite"
 
 
 
 
2916
  msgstr ""
2917
 
2918
+ #: bp-themes/bp-default/_inc/ajax.php:356
2919
+ msgid "Request Pending"
 
 
 
 
 
2920
  msgstr ""
2921
 
2922
+ #: bp-themes/bp-default/_inc/ajax.php:368
2923
+ msgid "There was a problem accepting that request. Please try again."
2924
  msgstr ""
2925
 
2926
+ #: bp-themes/bp-default/_inc/ajax.php:379
2927
+ msgid "There was a problem rejecting that request. Please try again."
2928
  msgstr ""
2929
 
2930
+ #: bp-themes/bp-default/_inc/ajax.php:405
2931
+ msgid "Error joining group"
 
 
 
 
 
 
 
 
 
 
2932
  msgstr ""
2933
 
2934
+ #: bp-themes/bp-default/_inc/ajax.php:415
2935
+ msgid "Error requesting membership"
2936
  msgstr ""
2937
 
2938
+ #: bp-themes/bp-default/_inc/ajax.php:417
2939
+ msgid "Membership Requested"
2940
  msgstr ""
2941
 
2942
+ #: bp-themes/bp-default/_inc/ajax.php:426
2943
+ msgid "Error leaving group"
 
2944
  msgstr ""
2945
 
2946
+ #: bp-themes/bp-default/_inc/ajax.php:443
2947
+ msgid "There was a problem closing the notice."
2948
  msgstr ""
2949
 
2950
+ #: bp-themes/bp-default/_inc/ajax.php:485
2951
+ msgid "There was a problem sending that reply. Please try again."
 
 
 
2952
  msgstr ""
2953
 
2954
+ #: bp-themes/bp-default/_inc/ajax.php:495
2955
+ msgid "There was a problem marking messages as unread."
 
2956
  msgstr ""
2957
 
2958
+ #: bp-themes/bp-default/_inc/ajax.php:511
2959
+ msgid "There was a problem marking messages as read."
2960
  msgstr ""
2961
 
2962
+ #: bp-themes/bp-default/_inc/ajax.php:527
2963
+ msgid "There was a problem deleting messages."
2964
  msgstr ""
2965
 
2966
+ #: bp-themes/bp-default/_inc/options.php:9
2967
+ #: bp-themes/bp-default/_inc/options.php:27
2968
+ msgid "Theme Options"
2969
  msgstr ""
2970
 
2971
+ #: bp-themes/bp-default/_inc/options.php:22
2972
+ msgid "Settings saved."
2973
  msgstr ""
2974
 
2975
+ #: bp-themes/bp-default/_inc/options.php:34
2976
+ msgid "On front page show:"
2977
  msgstr ""
2978
 
2979
+ #: bp-themes/bp-default/_inc/options.php:36
2980
+ msgid "Blog Posts"
2981
  msgstr ""
2982
 
2983
+ #: bp-themes/bp-default/_inc/options.php:38
2984
+ #: bp-themes/bp-default/functions.php:120
2985
+ msgid "Activity Stream"
2986
  msgstr ""
2987
 
2988
+ #: bp-themes/bp-default/_inc/options.php:46
2989
+ msgid "Update Settings"
 
2990
  msgstr ""
2991
 
2992
  #: bp-themes/bp-default/footer.php:7
2993
+ msgid "%s is proudly powered by <a href=\"http://wordpress.org\">WordPress</a> and <a href=\"http://buddypress.org\">BuddyPress</a>"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2994
  msgstr ""
2995
 
2996
+ #: bp-themes/bp-default/sidebar.php:34
2997
+ msgid "To start connecting please log in first."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2998
  msgstr ""
2999
 
3000
+ #: bp-themes/bp-default/sidebar.php:36
3001
+ msgid " You can also <a href=\"%s\" title=\"Create an account\">create an account</a>."
3002
  msgstr ""
3003
 
3004
+ #: bp-themes/bp-default/sidebar.php:44
3005
+ msgid "Password"
3006
  msgstr ""
3007
 
3008
+ #: bp-themes/bp-default/sidebar.php:47
3009
+ msgid "Remember Me"
3010
  msgstr ""
3011
 
3012
+ #: bp-themes/bp-default/sidebar.php:62
3013
+ msgid "Forum Topic Tags"
 
 
 
 
3014
  msgstr ""
3015
 
3016
+ #: bp-themes/bp-default/comments.php:3
3017
+ msgid "Password Protected"
3018
  msgstr ""
3019
 
3020
+ #: bp-themes/bp-default/comments.php:4
3021
+ msgid "Enter the password to view comments."
3022
  msgstr ""
3023
 
3024
+ #: bp-themes/bp-default/comments.php:28
3025
+ msgid "One Response to %2$s"
3026
+ msgid_plural "%1$s Responses to %2$s"
3027
+ msgstr[0] ""
3028
+ msgstr[1] ""
3029
 
3030
+ #: bp-themes/bp-default/comments.php:58
3031
+ msgid "Comments are closed, but <a href=\"%1$s\" title=\"Trackback URL for this post\">trackbacks</a> and pingbacks are open."
 
 
 
3032
  msgstr ""
3033
 
3034
+ #: bp-themes/bp-default/comments.php:64
3035
+ msgid "Comments are closed."
 
3036
  msgstr ""
3037
 
3038
+ #: bp-themes/bp-default/comments.php:90
3039
+ msgid "Leave a Reply"
3040
  msgstr ""
3041
 
3042
+ #: bp-themes/bp-default/comments.php:90
3043
+ msgid "Leave a Reply to %s"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3044
  msgstr ""
3045
 
3046
+ #: bp-themes/bp-default/comments.php:94
3047
+ msgid "Click here to cancel reply."
3048
  msgstr ""
3049
 
3050
+ #: bp-themes/bp-default/comments.php:100
3051
+ msgid "You must be <a href=\"%1$s\" title=\"Log in\">logged in</a> to post a comment."
 
3052
  msgstr ""
3053
 
3054
+ #: bp-themes/bp-default/comments.php:112
3055
+ msgid "Logged in as <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
 
3056
  msgstr ""
3057
 
3058
+ #: bp-themes/bp-default/comments.php:112
3059
+ msgid "Log out of this account"
 
 
 
3060
  msgstr ""
3061
 
3062
+ #: bp-themes/bp-default/comments.php:112
3063
+ msgid "Log out &rarr;"
 
3064
  msgstr ""
3065
 
3066
+ #: bp-themes/bp-default/comments.php:120 bp-themes/bp-default/comments.php:125
3067
+ msgid "*"
 
3068
  msgstr ""
3069
 
3070
+ #: bp-themes/bp-default/comments.php:125
3071
+ msgid "Email"
 
3072
  msgstr ""
3073
 
3074
+ #: bp-themes/bp-default/comments.php:137
3075
+ msgid "Comment"
 
 
 
 
3076
  msgstr ""
3077
 
3078
+ #: bp-themes/bp-default/comments.php:144
3079
+ msgid "Submit"
 
3080
  msgstr ""
3081
 
3082
+ #: bp-themes/bp-default/comments.php:169
3083
+ msgid "%d Trackback"
 
3084
  msgstr ""
3085
 
3086
+ #: bp-themes/bp-default/comments.php:171
3087
+ msgid "%d Trackbacks"
 
3088
  msgstr ""
3089
 
3090
+ #: bp-themes/bp-default/404.php:10
3091
+ msgid "Page Not Found"
 
 
 
 
3092
  msgstr ""
3093
 
3094
+ #: bp-themes/bp-default/404.php:14
3095
+ msgid "The page you were looking for was not found."
 
3096
  msgstr ""
3097
 
3098
+ #: bp-themes/bp-default/functions.php:26
3099
+ msgid "My Favorites"
 
3100
  msgstr ""
3101
 
3102
+ #: bp-themes/bp-default/functions.php:27
3103
+ msgid "Accepted"
 
 
3104
  msgstr ""
3105
 
3106
+ #: bp-themes/bp-default/functions.php:28
3107
+ msgid "Rejected"
 
 
 
3108
  msgstr ""
3109
 
3110
+ #: bp-themes/bp-default/functions.php:29
3111
+ msgid "Show all comments for this thread"
 
 
 
3112
  msgstr ""
3113
 
3114
+ #: bp-themes/bp-default/functions.php:30
3115
+ msgid "Show all"
3116
  msgstr ""
3117
 
3118
+ #: bp-themes/bp-default/functions.php:31
3119
+ msgid "comments"
3120
  msgstr ""
3121
 
3122
+ #: bp-themes/bp-default/functions.php:33
3123
+ msgid "%s is a unique identifier for %s that you can type into any message on this site. %s will be sent a notification and a link to your message any time you use it."
 
 
 
3124
  msgstr ""
3125
 
3126
+ #: bp-themes/bp-default/functions.php:79
3127
+ msgid "said:"
 
 
 
3128
  msgstr ""
3129
 
3130
+ #: bp-themes/bp-default/functions.php:80
3131
+ msgid "On"
 
 
 
3132
  msgstr ""
3133
 
3134
+ #: bp-themes/bp-default/functions.php:84
3135
+ msgid "Your comment is awaiting moderation."
 
3136
  msgstr ""
3137
 
3138
+ #: bp-themes/bp-default/functions.php:329
3139
+ msgid "Theme activated! This theme contains <a href=\"%s\">custom header image</a> support and <a href=\"%s\">sidebar widgets</a>."
 
 
 
 
3140
  msgstr ""
3141
 
3142
+ #: bp-themes/bp-default/page.php:18
3143
+ msgid "<p class=\"serif\">Read the rest of this page &rarr;</p>"
3144
  msgstr ""
3145
 
3146
+ #: bp-themes/bp-default/page.php:20 bp-themes/bp-default/attachment.php:27
3147
+ #: bp-themes/bp-default/single.php:34
3148
+ msgid "<p><strong>Pages:</strong> "
3149
  msgstr ""
3150
 
3151
+ #: bp-themes/bp-default/page.php:21
3152
+ msgid "Edit this entry."
3153
  msgstr ""
3154
 
3155
+ #: bp-themes/bp-default/header.php:18
3156
+ msgid "Site Wide Activity RSS Feed"
3157
  msgstr ""
3158
 
3159
+ #: bp-themes/bp-default/header.php:22
3160
+ msgid "Activity RSS Feed"
3161
  msgstr ""
3162
 
3163
+ #: bp-themes/bp-default/header.php:26
3164
+ msgid "Group Activity RSS Feed"
 
3165
  msgstr ""
3166
 
3167
+ #: bp-themes/bp-default/header.php:29
3168
+ msgid "Blog Posts RSS Feed"
 
3169
  msgstr ""
3170
 
3171
+ #: bp-themes/bp-default/header.php:30
3172
+ msgid "Blog Posts Atom Feed"
 
3173
  msgstr ""
3174
 
3175
+ #: bp-themes/bp-default/members/index.php:8
3176
+ msgid "Members Directory"
3177
  msgstr ""
3178
 
3179
+ #: bp-themes/bp-default/members/index.php:18
3180
+ #: bp-themes/bp-default/activity/index.php:22
3181
+ msgid "All Members (%s)"
3182
  msgstr ""
3183
 
3184
+ #: bp-themes/bp-default/members/index.php:21
3185
+ #: bp-themes/bp-default/activity/index.php:30
3186
+ msgid "My Friends (%s)"
3187
  msgstr ""
3188
 
3189
+ #: bp-themes/bp-default/members/index.php:30
3190
+ #: bp-themes/bp-default/members/single/friends.php:11
3191
+ #: bp-themes/bp-default/members/single/groups.php:12
3192
+ #: bp-themes/bp-default/members/single/blogs.php:8
3193
+ #: bp-themes/bp-default/blogs/index.php:30
3194
+ #: bp-themes/bp-default/forums/index.php:93
3195
+ #: bp-themes/bp-default/groups/index.php:29
3196
+ msgid "Last Active"
3197
  msgstr ""
3198
 
3199
+ #: bp-themes/bp-default/members/index.php:31
3200
+ #: bp-themes/bp-default/members/single/friends.php:12
3201
+ msgid "Newest Registered"
3202
  msgstr ""
3203
 
3204
+ #: bp-themes/bp-default/members/index.php:34
3205
+ #: bp-themes/bp-default/members/single/friends.php:13
3206
+ #: bp-themes/bp-default/members/single/groups.php:15
3207
+ #: bp-themes/bp-default/members/single/blogs.php:10
3208
+ #: bp-themes/bp-default/blogs/index.php:32
3209
+ #: bp-themes/bp-default/groups/index.php:32
3210
+ msgid "Alphabetical"
3211
  msgstr ""
3212
 
3213
+ #: bp-themes/bp-default/members/members-loop.php:87
3214
+ msgid "Sorry, no members were found."
3215
  msgstr ""
3216
 
3217
+ #: bp-themes/bp-default/members/single/profile/change-avatar.php:7
3218
+ msgid "Your avatar will be used on your profile and throughout the site. If there is a <a href=\"http://gravatar.com\">Gravatar</a> associated with your account email we will use that, or you can upload an image from your computer."
3219
  msgstr ""
3220
 
3221
+ #: bp-themes/bp-default/members/single/profile/change-avatar.php:13
3222
+ msgid "Click below to select a JPG, GIF or PNG format photo from your computer and then click 'Upload Image' to proceed."
3223
  msgstr ""
3224
 
3225
+ #: bp-themes/bp-default/members/single/profile/change-avatar.php:22
3226
+ msgid "If you'd like to delete your current avatar but not upload a new one, please use the delete avatar button."
3227
  msgstr ""
3228
 
3229
+ #: bp-themes/bp-default/members/single/profile/change-avatar.php:23
3230
+ #: bp-themes/bp-default/groups/single/admin.php:122
3231
+ msgid "Delete Avatar"
3232
  msgstr ""
3233
 
3234
+ #: bp-themes/bp-default/members/single/profile/change-avatar.php:23
3235
+ msgid "Delete My Avatar"
3236
  msgstr ""
3237
 
3238
+ #: bp-themes/bp-default/members/single/profile/change-avatar.php:56
3239
+ msgid "Your avatar will be used on your profile and throughout the site. To change your avatar, please create an account with <a href=\"http://gravatar.com\">Gravatar</a> using the same email address as you used to register with this site."
3240
  msgstr ""
3241
 
3242
+ #: bp-themes/bp-default/members/single/profile/edit.php:9
3243
+ msgid "Editing '%s' Profile Group"
3244
  msgstr ""
3245
 
3246
+ #: bp-themes/bp-default/members/single/groups.php:13
3247
+ #: bp-themes/bp-default/groups/index.php:30
3248
+ msgid "Most Members"
3249
  msgstr ""
3250
 
3251
+ #: bp-themes/bp-default/members/single/groups.php:14
3252
+ #: bp-themes/bp-default/groups/index.php:31
3253
+ msgid "Newly Created"
3254
  msgstr ""
3255
 
3256
+ #: bp-themes/bp-default/members/single/messages/compose.php:5
3257
+ msgid "Send To (Username or Friend's Name)"
 
3258
  msgstr ""
3259
 
3260
+ #: bp-themes/bp-default/members/single/messages/compose.php:14
3261
+ msgid "This is a notice to all users."
 
 
3262
  msgstr ""
3263
 
3264
+ #: bp-themes/bp-default/members/single/messages/compose.php:17
3265
+ msgid "Subject"
 
 
3266
  msgstr ""
3267
 
3268
+ #: bp-themes/bp-default/members/single/messages/compose.php:20
3269
+ msgid "Message"
3270
  msgstr ""
3271
 
3272
+ #: bp-themes/bp-default/members/single/messages/compose.php:28
3273
+ msgid "Send Message"
 
 
3274
  msgstr ""
3275
 
3276
+ #: bp-themes/bp-default/members/single/messages/notices-loop.php:31
3277
+ msgid "Sent:"
3278
  msgstr ""
3279
 
3280
+ #: bp-themes/bp-default/members/single/messages/notices-loop.php:38
3281
+ #: bp-themes/bp-default/members/single/messages/messages-loop.php:50
3282
+ msgid "Delete Message"
3283
  msgstr ""
3284
 
3285
+ #: bp-themes/bp-default/members/single/messages/notices-loop.php:49
3286
+ msgid "Sorry, no notices were found."
 
3287
  msgstr ""
3288
 
3289
+ #: bp-themes/bp-default/members/single/messages/messages-loop.php:31
3290
+ msgid "From:"
 
3291
  msgstr ""
3292
 
3293
+ #: bp-themes/bp-default/members/single/messages/messages-loop.php:36
3294
+ msgid "To:"
3295
  msgstr ""
3296
 
3297
+ #: bp-themes/bp-default/members/single/messages/messages-loop.php:42
3298
+ msgid "View Message"
3299
  msgstr ""
3300
 
3301
+ #: bp-themes/bp-default/members/single/messages/messages-loop.php:68
3302
+ msgid "Sorry, no messages were found."
3303
  msgstr ""
3304
 
3305
+ #: bp-themes/bp-default/members/single/messages/single.php:11
3306
+ msgid "Sent between %s and %s"
 
3307
  msgstr ""
3308
 
3309
+ #: bp-themes/bp-default/members/single/messages/single.php:63
3310
+ msgid "Send a Reply"
3311
  msgstr ""
3312
 
3313
+ #: bp-themes/bp-default/members/single/messages/single.php:79
3314
+ msgid "Send Reply"
3315
  msgstr ""
3316
 
3317
+ #: bp-themes/bp-default/members/single/groups/invites.php:20
3318
+ #: bp-themes/bp-default/members/single/friends/requests.php:21
3319
+ #: bp-themes/bp-default/groups/single/admin.php:263
3320
+ msgid "Accept"
3321
  msgstr ""
3322
 
3323
+ #: bp-themes/bp-default/members/single/groups/invites.php:21
3324
+ #: bp-themes/bp-default/members/single/friends/requests.php:22
3325
+ #: bp-themes/bp-default/groups/single/admin.php:265
3326
+ msgid "Reject"
3327
  msgstr ""
3328
 
3329
+ #: bp-themes/bp-default/members/single/groups/invites.php:34
3330
+ msgid "You have no outstanding group invites."
3331
  msgstr ""
3332
 
3333
+ #: bp-themes/bp-default/members/single/friends/requests.php:36
3334
+ msgid "You have no pending friendship requests."
3335
  msgstr ""
3336
 
3337
+ #: bp-themes/bp-default/members/single/activity.php:7
3338
+ #: bp-themes/bp-default/activity/index.php:66
3339
+ #: bp-themes/bp-default/groups/single/activity.php:9
3340
+ msgid "No Filter"
3341
  msgstr ""
3342
 
3343
+ #: bp-themes/bp-default/members/single/activity.php:8
3344
+ #: bp-themes/bp-default/activity/index.php:67
3345
+ #: bp-themes/bp-default/groups/single/activity.php:10
3346
+ msgid "Show Updates"
3347
  msgstr ""
3348
 
3349
+ #: bp-themes/bp-default/members/single/activity.php:12
3350
+ #: bp-themes/bp-default/activity/index.php:70
3351
+ msgid "Show Blog Posts"
3352
  msgstr ""
3353
 
3354
+ #: bp-themes/bp-default/members/single/activity.php:13
3355
+ #: bp-themes/bp-default/activity/index.php:71
3356
+ msgid "Show Blog Comments"
3357
  msgstr ""
3358
 
3359
+ #: bp-themes/bp-default/members/single/activity.php:17
3360
+ #: bp-themes/bp-default/activity/index.php:85
3361
+ msgid "Show Friendship Connections"
3362
  msgstr ""
3363
 
3364
+ #: bp-themes/bp-default/members/single/activity.php:22
3365
+ #: bp-themes/bp-default/activity/index.php:75
3366
+ #: bp-themes/bp-default/groups/single/activity.php:13
3367
+ msgid "Show New Forum Topics"
3368
  msgstr ""
3369
 
3370
+ #: bp-themes/bp-default/members/single/activity.php:23
3371
+ #: bp-themes/bp-default/activity/index.php:76
3372
+ #: bp-themes/bp-default/groups/single/activity.php:14
3373
+ msgid "Show Forum Replies"
3374
  msgstr ""
3375
 
3376
+ #: bp-themes/bp-default/members/single/activity.php:27
3377
+ #: bp-themes/bp-default/activity/index.php:80
3378
+ msgid "Show New Groups"
3379
  msgstr ""
3380
 
3381
+ #: bp-themes/bp-default/members/single/activity.php:28
3382
+ #: bp-themes/bp-default/activity/index.php:81
3383
+ #: bp-themes/bp-default/groups/single/activity.php:17
3384
+ msgid "Show New Group Memberships"
3385
  msgstr ""
3386
 
3387
+ #: bp-themes/bp-default/activity/index.php:7
3388
+ msgid "Site Activity"
3389
  msgstr ""
3390
 
3391
+ #: bp-themes/bp-default/activity/index.php:22
3392
+ msgid "The public activity for everyone on this site."
3393
  msgstr ""
3394
 
3395
+ #: bp-themes/bp-default/activity/index.php:30
3396
+ msgid "The activity of my friends only."
3397
  msgstr ""
3398
 
3399
+ #: bp-themes/bp-default/activity/index.php:38
3400
+ msgid "The activity of groups I am a member of."
3401
  msgstr ""
3402
 
3403
+ #: bp-themes/bp-default/activity/index.php:38
3404
+ #: bp-themes/bp-default/groups/index.php:20
3405
+ msgid "My Groups (%s)"
3406
  msgstr ""
3407
 
3408
+ #: bp-themes/bp-default/activity/index.php:45
3409
+ msgid "The activity I've marked as a favorite."
3410
  msgstr ""
3411
 
3412
+ #: bp-themes/bp-default/activity/index.php:45
3413
+ msgid "My Favorites (<span>%s</span>)"
3414
  msgstr ""
3415
 
3416
+ #: bp-themes/bp-default/activity/index.php:50
3417
+ msgid "Activity that I have been mentioned in."
3418
  msgstr ""
3419
 
3420
+ #: bp-themes/bp-default/activity/index.php:50
3421
+ msgid "(%s new)"
3422
  msgstr ""
3423
 
3424
+ #: bp-themes/bp-default/activity/index.php:60
3425
+ #: bp-themes/bp-default/groups/single/activity.php:3
3426
+ msgid "RSS Feed"
3427
  msgstr ""
3428
 
3429
+ #: bp-themes/bp-default/activity/index.php:60
3430
+ #: bp-themes/bp-default/groups/single/activity.php:3
3431
+ msgid "RSS"
3432
  msgstr ""
3433
 
3434
+ #: bp-themes/bp-default/activity/index.php:88
3435
+ msgid "Show New Members"
3436
  msgstr ""
3437
 
3438
+ #: bp-themes/bp-default/activity/post-form.php:7
3439
+ msgid "You are mentioning %s in a new update, this user will be sent a notification of your message."
3440
  msgstr ""
3441
 
3442
+ #: bp-themes/bp-default/activity/post-form.php:19
3443
+ msgid "What's new in %s, %s?"
3444
  msgstr ""
3445
 
3446
+ #: bp-themes/bp-default/activity/post-form.php:21
3447
+ msgid "What's new %s?"
3448
  msgstr ""
3449
 
3450
+ #: bp-themes/bp-default/activity/post-form.php:33
3451
+ msgid "Post Update"
3452
  msgstr ""
3453
 
3454
+ #: bp-themes/bp-default/activity/post-form.php:38
3455
+ msgid "Post in"
 
3456
  msgstr ""
3457
 
3458
+ #: bp-themes/bp-default/activity/entry.php:33
3459
+ msgid "Mark as Favorite"
3460
  msgstr ""
3461
 
3462
+ #: bp-themes/bp-default/activity/entry.php:45
3463
+ #: bp-activity/feeds/bp-activity-friends-feed.php:48
3464
+ #: bp-activity/feeds/bp-activity-mentions-feed.php:47
3465
+ #: bp-activity/feeds/bp-activity-personal-feed.php:47
3466
+ #: bp-activity/feeds/bp-activity-favorites-feed.php:52
3467
+ msgid "In reply to"
3468
  msgstr ""
3469
 
3470
+ #: bp-themes/bp-default/activity/entry.php:46
3471
+ #: bp-activity/bp-activity-templatetags.php:580
3472
+ msgid "View Thread / Permalink"
3473
  msgstr ""
3474
 
3475
+ #: bp-themes/bp-default/activity/entry.php:63
3476
+ msgid "Post"
 
3477
  msgstr ""
3478
 
3479
+ #: bp-themes/bp-default/activity/entry.php:63
3480
+ msgid "or press esc to cancel."
3481
  msgstr ""
3482
 
3483
+ #: bp-themes/bp-default/activity/activity-loop.php:27
3484
+ msgid "Load More"
3485
  msgstr ""
3486
 
3487
+ #: bp-themes/bp-default/activity/activity-loop.php:37
3488
+ msgid "Sorry, there was no activity found. Please try a different filter."
 
3489
  msgstr ""
3490
 
3491
+ #: bp-themes/bp-default/blogs/index.php:8
3492
+ #: bp-themes/bp-default/blogs/create.php:10
3493
+ msgid "Blogs Directory"
 
 
 
3494
  msgstr ""
3495
 
3496
+ #: bp-themes/bp-default/blogs/index.php:18
3497
+ msgid "All Blogs (%s)"
 
 
3498
  msgstr ""
3499
 
3500
+ #: bp-themes/bp-default/blogs/index.php:21
3501
+ msgid "My Blogs (%s)"
 
 
3502
  msgstr ""
3503
 
3504
+ #: bp-themes/bp-default/blogs/blogs-loop.php:71
3505
+ msgid "Sorry, there were no blogs found."
3506
  msgstr ""
3507
 
3508
+ #: bp-themes/bp-default/blogs/create.php:21
3509
+ msgid "Blog registration is currently disabled"
 
3510
  msgstr ""
3511
 
3512
+ #: bp-themes/bp-default/forums/index.php:8
3513
+ msgid "Group Forums Directory"
 
 
 
 
3514
  msgstr ""
3515
 
3516
+ #: bp-themes/bp-default/forums/index.php:27
3517
+ #: bp-themes/bp-default/groups/single/forum.php:33
3518
+ msgid "Post a New Topic:"
3519
  msgstr ""
3520
 
3521
+ #: bp-themes/bp-default/forums/index.php:29
3522
+ #: bp-themes/bp-default/groups/single/forum/edit.php:26
3523
+ #: bp-themes/bp-default/groups/single/forum.php:35
3524
+ msgid "Title:"
3525
  msgstr ""
3526
 
3527
+ #: bp-themes/bp-default/forums/index.php:32
3528
+ #: bp-themes/bp-default/groups/single/forum/edit.php:29
3529
+ #: bp-themes/bp-default/groups/single/forum.php:38
3530
+ msgid "Content:"
3531
  msgstr ""
3532
 
3533
+ #: bp-themes/bp-default/forums/index.php:35
3534
+ #: bp-themes/bp-default/groups/single/forum.php:41
3535
+ msgid "Tags (comma separated):"
3536
  msgstr ""
3537
 
3538
+ #: bp-themes/bp-default/forums/index.php:38
3539
+ msgid "Post In Group Forum:"
3540
  msgstr ""
3541
 
3542
+ #: bp-themes/bp-default/forums/index.php:58
3543
+ #: bp-themes/bp-default/groups/single/forum.php:47
3544
+ msgid "Post Topic"
 
3545
  msgstr ""
3546
 
3547
+ #: bp-themes/bp-default/forums/index.php:69
3548
+ msgid "You are not a member of any groups so you don't have any group forums you can post in. To start posting, first find a group that matches the topic subject you'd like to start. If this group does not exist, why not <a href='%s'>create a new group</a>? Once you have joined or created the group you can post your topic in that group's forum."
 
 
3549
  msgstr ""
3550
 
3551
+ #: bp-themes/bp-default/forums/index.php:81
3552
+ msgid "All Topics (%s)"
3553
  msgstr ""
3554
 
3555
+ #: bp-themes/bp-default/forums/index.php:84
3556
+ msgid "My Topics (%s)"
3557
  msgstr ""
3558
 
3559
+ #: bp-themes/bp-default/forums/index.php:94
3560
+ msgid "Most Posts"
 
 
3561
  msgstr ""
3562
 
3563
+ #: bp-themes/bp-default/forums/index.php:95
3564
+ msgid "Unreplied"
3565
  msgstr ""
3566
 
3567
+ #: bp-themes/bp-default/forums/forums-loop.php:24
3568
+ msgid "Topic Title"
 
3569
  msgstr ""
3570
 
3571
+ #: bp-themes/bp-default/forums/forums-loop.php:25
3572
+ msgid "Latest Poster"
3573
  msgstr ""
3574
 
3575
+ #: bp-themes/bp-default/forums/forums-loop.php:28
3576
+ msgid "Posted In Group"
3577
  msgstr ""
3578
 
3579
+ #: bp-themes/bp-default/forums/forums-loop.php:31
3580
+ msgid "Posts"
3581
  msgstr ""
3582
 
3583
+ #: bp-themes/bp-default/forums/forums-loop.php:32
3584
+ msgid "Freshness"
3585
  msgstr ""
3586
 
3587
+ #: bp-themes/bp-default/forums/forums-loop.php:45
3588
+ msgid "Permalink"
3589
  msgstr ""
3590
 
3591
+ #: bp-themes/bp-default/forums/forums-loop.php:95
3592
+ msgid "Sorry, there were no forum topics found."
3593
  msgstr ""
3594
 
3595
+ #: bp-themes/bp-default/groups/index.php:7
3596
+ #: bp-themes/bp-default/groups/create.php:7
3597
+ msgid "Groups Directory"
3598
  msgstr ""
3599
 
3600
+ #: bp-themes/bp-default/groups/index.php:17
3601
+ msgid "All Groups (%s)"
3602
  msgstr ""
3603
 
3604
+ #: bp-themes/bp-default/groups/groups-loop.php:74
3605
+ msgid "There were no groups found."
 
 
3606
  msgstr ""
3607
 
3608
+ #: bp-themes/bp-default/groups/single/members.php:51
3609
+ #: bp-themes/bp-default/groups/single/admin.php:233
3610
+ msgid "This group has no members."
3611
  msgstr ""
3612
 
3613
+ #: bp-themes/bp-default/groups/single/forum/edit.php:9
3614
+ #: bp-themes/bp-default/groups/single/forum/topic.php:21
3615
+ msgid "Group Forum"
3616
  msgstr ""
3617
 
3618
+ #: bp-themes/bp-default/groups/single/forum/edit.php:9
3619
+ #: bp-themes/bp-default/groups/single/forum/topic.php:21
3620
+ msgid "Group Forum Directory"
 
 
3621
  msgstr ""
3622
 
3623
+ #: bp-themes/bp-default/groups/single/forum/edit.php:24
3624
+ msgid "Edit Topic:"
 
 
3625
  msgstr ""
3626
 
3627
+ #: bp-themes/bp-default/groups/single/forum/edit.php:46
3628
+ msgid "Edit Post:"
3629
  msgstr ""
3630
 
3631
+ #: bp-themes/bp-default/groups/single/forum/edit.php:67
3632
+ msgid "This topic does not exist."
 
 
3633
  msgstr ""
3634
 
3635
+ #: bp-themes/bp-default/groups/single/forum/topic.php:42
3636
+ msgid "%s said %s ago:"
3637
  msgstr ""
3638
 
3639
+ #: bp-themes/bp-default/groups/single/forum/topic.php:56
3640
+ msgid "Permanent link to this post"
3641
  msgstr ""
3642
 
3643
+ #: bp-themes/bp-default/groups/single/forum/topic.php:87
3644
+ msgid "You will auto join this group when you reply to this topic."
3645
  msgstr ""
3646
 
3647
+ #: bp-themes/bp-default/groups/single/forum/topic.php:92
3648
+ msgid "Add a reply:"
 
 
 
3649
  msgstr ""
3650
 
3651
+ #: bp-themes/bp-default/groups/single/forum/topic.php:97
3652
+ msgid "Post Reply"
3653
  msgstr ""
3654
 
3655
+ #: bp-themes/bp-default/groups/single/forum/topic.php:108
3656
+ msgid "This topic is closed, replies are no longer accepted."
3657
  msgstr ""
3658
 
3659
+ #: bp-themes/bp-default/groups/single/forum/topic.php:121
3660
+ msgid "There are no posts for this topic."
3661
  msgstr ""
3662
 
3663
+ #: bp-themes/bp-default/groups/single/request-membership.php:4
3664
+ msgid "You are requesting to become a member of the group '%s'."
3665
  msgstr ""
3666
 
3667
+ #: bp-themes/bp-default/groups/single/request-membership.php:7
3668
+ msgid "Comments (optional)"
3669
  msgstr ""
3670
 
3671
+ #: bp-themes/bp-default/groups/single/request-membership.php:12
3672
+ msgid "Send Request"
3673
  msgstr ""
3674
 
3675
+ #: bp-themes/bp-default/groups/single/send-invites.php:22
3676
+ #: bp-themes/bp-default/groups/create.php:175
3677
+ msgid "Select people to invite from your friends list."
3678
  msgstr ""
3679
 
3680
+ #: bp-themes/bp-default/groups/single/send-invites.php:73
3681
+ #: bp-themes/bp-default/groups/create.php:206
3682
+ msgid "Once you have built up friend connections you will be able to invite others to your group. You can send invites any time in the future by selecting the \"Send Invites\" option when viewing your new group."
3683
  msgstr ""
3684
 
3685
+ #: bp-themes/bp-default/groups/single/forum.php:29
3686
+ msgid "You will auto join this group when you start a new topic."
 
3687
  msgstr ""
3688
 
3689
+ #: bp-themes/bp-default/groups/single/group-header.php:6
3690
+ msgid "Group Admins"
3691
  msgstr ""
3692
 
3693
+ #: bp-themes/bp-default/groups/single/group-header.php:14
3694
+ msgid "Group Mods"
3695
  msgstr ""
3696
 
3697
+ #: bp-themes/bp-default/groups/single/admin.php:16
3698
+ msgid "Group Name"
 
3699
  msgstr ""
3700
 
3701
+ #: bp-themes/bp-default/groups/single/admin.php:19
3702
+ msgid "Group Description"
 
 
3703
  msgstr ""
3704
 
3705
+ #: bp-themes/bp-default/groups/single/admin.php:25
3706
+ msgid "Notify group members of changes via email"
 
 
3707
  msgstr ""
3708
 
3709
+ #: bp-themes/bp-default/groups/single/admin.php:45
3710
+ #: bp-themes/bp-default/groups/create.php:45
3711
+ msgid "Enable comment wire"
3712
  msgstr ""
3713
 
3714
+ #: bp-themes/bp-default/groups/single/admin.php:55
3715
+ #: bp-themes/bp-default/groups/create.php:52
3716
+ msgid "Enable discussion forum"
3717
  msgstr ""
3718
 
3719
+ #: bp-themes/bp-default/groups/single/admin.php:64
3720
+ #: bp-themes/bp-default/groups/create.php:65
3721
+ msgid "Privacy Options"
3722
  msgstr ""
3723
 
3724
+ #: bp-themes/bp-default/groups/single/admin.php:69
3725
+ #: bp-themes/bp-default/groups/create.php:69
3726
+ msgid "This is a public group"
3727
  msgstr ""
3728
 
3729
+ #: bp-themes/bp-default/groups/single/admin.php:71
3730
+ #: bp-themes/bp-default/groups/create.php:71
3731
+ msgid "Any site member can join this group."
 
 
3732
  msgstr ""
3733
 
3734
+ #: bp-themes/bp-default/groups/single/admin.php:72
3735
+ #: bp-themes/bp-default/groups/single/admin.php:82
3736
+ #: bp-themes/bp-default/groups/create.php:72
3737
+ #: bp-themes/bp-default/groups/create.php:81
3738
+ msgid "This group will be listed in the groups directory and in search results."
3739
  msgstr ""
3740
 
3741
+ #: bp-themes/bp-default/groups/single/admin.php:73
3742
+ #: bp-themes/bp-default/groups/create.php:73
3743
+ msgid "Group content and activity will be visible to any site member."
3744
  msgstr ""
3745
 
3746
+ #: bp-themes/bp-default/groups/single/admin.php:79
3747
+ #: bp-themes/bp-default/groups/create.php:78
3748
+ msgid "This is a private group"
3749
  msgstr ""
3750
 
3751
+ #: bp-themes/bp-default/groups/single/admin.php:81
3752
+ #: bp-themes/bp-default/groups/create.php:80
3753
+ msgid "Only users who request membership and are accepted can join the group."
3754
  msgstr ""
3755
 
3756
+ #: bp-themes/bp-default/groups/single/admin.php:83
3757
+ #: bp-themes/bp-default/groups/single/admin.php:93
3758
+ #: bp-themes/bp-default/groups/create.php:82
3759
+ #: bp-themes/bp-default/groups/create.php:91
3760
+ msgid "Group content and activity will only be visible to members of the group."
3761
  msgstr ""
3762
 
3763
+ #: bp-themes/bp-default/groups/single/admin.php:89
3764
+ #: bp-themes/bp-default/groups/create.php:87
3765
+ msgid "This is a hidden group"
3766
  msgstr ""
3767
 
3768
+ #: bp-themes/bp-default/groups/single/admin.php:91
3769
+ #: bp-themes/bp-default/groups/create.php:89
3770
+ msgid "Only users who are invited can join the group."
3771
  msgstr ""
3772
 
3773
+ #: bp-themes/bp-default/groups/single/admin.php:92
3774
+ #: bp-themes/bp-default/groups/create.php:90
3775
+ msgid "This group will not be listed in the groups directory or search results."
3776
  msgstr ""
3777
 
3778
+ #: bp-themes/bp-default/groups/single/admin.php:110
3779
+ #: bp-themes/bp-default/groups/create.php:114
3780
+ msgid "Upload an image to use as an avatar for this group. The image will be shown on the main group page, and in search results."
3781
  msgstr ""
3782
 
3783
+ #: bp-themes/bp-default/groups/single/admin.php:120
3784
+ msgid "If you'd like to remove the existing avatar but not upload a new one, please use the delete avatar button."
 
3785
  msgstr ""
3786
 
3787
+ #: bp-themes/bp-default/groups/single/admin.php:132
3788
+ msgid "Crop Avatar"
3789
  msgstr ""
3790
 
3791
+ #: bp-themes/bp-default/groups/single/admin.php:160
3792
+ msgid "Administrators"
3793
  msgstr ""
3794
 
3795
+ #: bp-themes/bp-default/groups/single/admin.php:167
3796
+ msgid "Moderators"
3797
  msgstr ""
3798
 
3799
+ #: bp-themes/bp-default/groups/single/admin.php:203
3800
+ msgid "(banned)"
3801
  msgstr ""
3802
 
3803
+ #: bp-themes/bp-default/groups/single/admin.php:209
3804
+ msgid "Unban this member"
3805
  msgstr ""
3806
 
3807
+ #: bp-themes/bp-default/groups/single/admin.php:209
3808
+ msgid "Remove Ban"
3809
  msgstr ""
3810
 
3811
+ #: bp-themes/bp-default/groups/single/admin.php:213
3812
+ msgid "Kick and ban this member"
3813
  msgstr ""
3814
 
3815
+ #: bp-themes/bp-default/groups/single/admin.php:213
3816
+ msgid "Kick &amp; Ban"
3817
  msgstr ""
3818
 
3819
+ #: bp-themes/bp-default/groups/single/admin.php:214
3820
+ msgid "Promote to Mod"
3821
  msgstr ""
3822
 
3823
+ #: bp-themes/bp-default/groups/single/admin.php:219
3824
+ msgid "Remove this member"
3825
  msgstr ""
3826
 
3827
+ #: bp-themes/bp-default/groups/single/admin.php:219
3828
+ msgid "Remove from group"
 
3829
  msgstr ""
3830
 
3831
+ #: bp-themes/bp-default/groups/single/admin.php:278
3832
+ msgid "There are no pending membership requests."
 
3833
  msgstr ""
3834
 
3835
+ #: bp-themes/bp-default/groups/single/admin.php:295
3836
+ msgid "WARNING: Deleting this group will completely remove ALL content associated with it. There is no way back, please be careful with this option."
3837
  msgstr ""
3838
 
3839
+ #: bp-themes/bp-default/groups/single/admin.php:298
3840
+ msgid "I understand the consequences of deleting this group."
3841
  msgstr ""
3842
 
3843
+ #: bp-themes/bp-default/groups/create.php:26
3844
+ msgid "* Group Name"
3845
  msgstr ""
3846
 
3847
+ #: bp-themes/bp-default/groups/create.php:29
3848
+ msgid "* Group Description"
3849
  msgstr ""
3850
 
3851
+ #: bp-themes/bp-default/groups/create.php:57
3852
+ msgid "<strong>Attention Site Admin:</strong> Group forums require the <a href=\"%s\">correct setup and configuration</a> of a bbPress installation."
3853
  msgstr ""
3854
 
3855
+ #: bp-themes/bp-default/groups/create.php:122
3856
+ msgid "To skip the avatar upload process, hit the \"Next Step\" button."
3857
  msgstr ""
3858
 
3859
+ #: bp-themes/bp-default/groups/create.php:129
3860
+ msgid "Crop Group Avatar"
3861
  msgstr ""
3862
 
3863
+ #: bp-themes/bp-default/groups/create.php:224
3864
+ msgid "Previous Step"
 
3865
  msgstr ""
3866
 
3867
+ #: bp-themes/bp-default/groups/create.php:229
3868
+ msgid "Next Step"
 
3869
  msgstr ""
3870
 
3871
+ #: bp-themes/bp-default/groups/create.php:234
3872
+ msgid "Create Group and Continue"
3873
  msgstr ""
3874
 
3875
+ #: bp-themes/bp-default/groups/create.php:239
3876
+ msgid "Finish"
3877
  msgstr ""
3878
 
3879
+ #: bp-themes/bp-default/attachment.php:25
3880
+ msgid "<p class=\"serif\">Read the rest of this entry &rarr;</p>"
3881
  msgstr ""
3882
 
3883
+ #: bp-themes/bp-default/attachment.php:38
3884
+ msgid "Sorry, no attachments matched your criteria."
3885
  msgstr ""
3886
 
3887
+ #: bp-themes/bp-default/search.php:14
3888
+ msgid "Search Results"
3889
  msgstr ""
3890
 
3891
+ #: bp-themes/bp-default/search.php:57
3892
+ msgid "No posts found. Try a different search?"
3893
  msgstr ""
3894
 
3895
+ #: bp-themes/bp-default/archive.php:10
3896
+ msgid "You are browsing the archive for %1$s."
3897
  msgstr ""
3898
 
3899
+ #: bp-themes/bp-default/links.php:16
3900
+ msgid "Links"
3901
  msgstr ""
3902
 
3903
+ #: bp-themes/bp-default/single.php:29
3904
+ msgid "Edit this entry"
3905
  msgstr ""
3906
 
3907
+ #: bp-themes/bp-default/single.php:46
3908
+ msgid "Sorry, no posts matched your criteria."
3909
  msgstr ""
3910
 
3911
+ #: bp-activity/bp-activity-notifications.php:32
3912
+ msgid "%s mentioned you in an update"
3913
  msgstr ""
3914
 
3915
+ #: bp-activity/bp-activity-notifications.php:34
3916
+ msgid ""
3917
+ "%s mentioned you in an update:\n"
3918
+ "\n"
3919
+ "\"%s\"\n"
3920
+ "\n"
3921
+ "To view and respond to the message, log in and visit: %s\n"
3922
+ "\n"
3923
+ "---------------------\n"
3924
  msgstr ""
3925
 
3926
+ #: bp-activity/bp-activity-notifications.php:76
3927
+ msgid "%s replied to one of your updates"
3928
  msgstr ""
3929
 
3930
+ #: bp-activity/bp-activity-notifications.php:78
3931
+ msgid ""
3932
+ "%s replied to one of your updates:\n"
3933
+ "\n"
3934
+ "\"%s\"\n"
3935
+ "\n"
3936
+ "To view your original update and all comments, log in and visit: %s\n"
3937
+ "\n"
3938
+ "---------------------\n"
3939
  msgstr ""
3940
 
3941
+ #: bp-activity/bp-activity-notifications.php:116
3942
+ msgid "%s replied to one of your comments"
3943
  msgstr ""
3944
 
3945
+ #: bp-activity/bp-activity-notifications.php:121
3946
+ msgid ""
3947
+ "%s replied to one of your comments:\n"
3948
+ "\n"
3949
+ "\"%s\"\n"
3950
+ "\n"
3951
+ "To view the original activity, your comment and all replies, log in and visit: %s\n"
3952
+ "\n"
3953
+ "---------------------\n"
3954
  msgstr ""
3955
 
3956
+ #: bp-activity/bp-activity-templatetags.php:278
3957
+ msgid "Viewing item %1$s to %2$s (of %3$s items)"
3958
  msgstr ""
3959
 
3960
+ #: bp-activity/bp-activity-templatetags.php:577
3961
+ msgid "&nbsp; %s ago"
3962
  msgstr ""
3963
 
3964
+ #: bp-activity/bp-activity-templatetags.php:877
3965
+ msgid "profile"
 
 
3966
  msgstr ""
3967
 
3968
+ #: bp-activity/bp-activity-templatetags.php:877
3969
+ msgid "friends"
 
 
3970
  msgstr ""
3971
 
3972
+ #: bp-activity/bp-activity-templatetags.php:877
3973
+ msgid "status"
 
3974
  msgstr ""
3975
 
3976
+ #: bp-activity/bp-activity-templatetags.php:877
3977
+ msgid "blogs"
3978
  msgstr ""
3979
 
3980
+ #: bp-activity/bp-activity-templatetags.php:885
3981
+ msgid "Clear Filter"
3982
  msgstr ""
3983
 
3984
+ #: bp-activity/bp-activity-templatetags.php:956
3985
+ msgid "Mention this user in a new public message, this will send the user a notification to get their attention."
3986
  msgstr ""
3987
 
3988
+ #: bp-activity/bp-activity-templatetags.php:957
3989
+ msgid "Mention this User"
3990
  msgstr ""
3991
 
3992
+ #: bp-activity/feeds/bp-activity-friends-feed.php:21
3993
+ msgid "Friends Activity"
3994
  msgstr ""
3995
 
3996
+ #: bp-activity/feeds/bp-activity-friends-feed.php:24
3997
+ msgid "%s - Friends Activity Feed"
3998
  msgstr ""
3999
 
4000
+ #: bp-activity/feeds/bp-activity-friends-feed.php:44
4001
+ #: bp-activity/feeds/bp-activity-mentions-feed.php:43
4002
+ #: bp-activity/feeds/bp-activity-personal-feed.php:43
4003
+ #: bp-activity/feeds/bp-activity-favorites-feed.php:48
4004
+ #: bp-activity/feeds/bp-activity-group-feed.php:43
4005
+ #: bp-activity/feeds/bp-activity-sitewide-feed.php:44
4006
+ #: bp-activity/feeds/bp-activity-mygroups-feed.php:48
4007
+ msgid "Comments: %s"
4008
  msgstr ""
4009
 
4010
+ #: bp-activity/feeds/bp-activity-mentions-feed.php:21
4011
+ #: bp-activity/feeds/bp-activity-mentions-feed.php:24
4012
+ msgid "Mentions"
4013
  msgstr ""
4014
 
4015
+ #: bp-activity/feeds/bp-activity-personal-feed.php:24
4016
+ msgid "%s - Activity Feed"
4017
  msgstr ""
4018
 
4019
+ #: bp-activity/feeds/bp-activity-favorites-feed.php:21
4020
+ #: bp-activity/feeds/bp-activity-favorites-feed.php:24
4021
+ msgid "Favorite Activity"
4022
  msgstr ""
4023
 
4024
+ #: bp-activity/feeds/bp-activity-group-feed.php:21
4025
+ msgid "Group Activity"
4026
  msgstr ""
4027
 
4028
+ #: bp-activity/feeds/bp-activity-group-feed.php:24
4029
+ msgid "%s - Group Activity Feed"
4030
  msgstr ""
4031
 
4032
+ #: bp-activity/feeds/bp-activity-sitewide-feed.php:22
4033
+ msgid "Site Wide Activity"
 
 
4034
  msgstr ""
4035
 
4036
+ #: bp-activity/feeds/bp-activity-sitewide-feed.php:25
4037
+ msgid "Site Wide Activity Feed"
4038
  msgstr ""
4039
 
4040
+ #: bp-activity/feeds/bp-activity-mygroups-feed.php:21
4041
+ #: bp-activity/feeds/bp-activity-mygroups-feed.php:24
4042
+ msgid "My Groups - Public Activity"
4043
+ msgstr ""
bp-loader.php CHANGED
@@ -4,13 +4,13 @@ Plugin Name: BuddyPress
4
  Plugin URI: http://buddypress.org
5
  Description: Social networking in a box. Build a social network for your company, school, sports team or niche community all based on the power and flexibility of WordPress.
6
  Author: The BuddyPress Community
7
- Version: 1.2.6
8
  Author URI: http://buddypress.org/community/members/
9
  Site Wide Only: true
10
  Network: true
11
  */
12
 
13
- define( 'BP_VERSION', '1.2.6' );
14
 
15
  /***
16
  * This file will load in each BuddyPress component based on which
4
  Plugin URI: http://buddypress.org
5
  Description: Social networking in a box. Build a social network for your company, school, sports team or niche community all based on the power and flexibility of WordPress.
6
  Author: The BuddyPress Community
7
+ Version: 1.2.7
8
  Author URI: http://buddypress.org/community/members/
9
  Site Wide Only: true
10
  Network: true
11
  */
12
 
13
+ define( 'BP_VERSION', '1.2.7' );
14
 
15
  /***
16
  * This file will load in each BuddyPress component based on which
bp-messages/bp-messages-templatetags.php CHANGED
@@ -291,7 +291,7 @@ function bp_message_thread_last_post_date() {
291
  function bp_get_message_thread_last_post_date() {
292
  global $messages_template;
293
 
294
- return apply_filters( 'bp_get_message_thread_last_post_date', bp_format_time( get_date_from_gmt( $messages_template->thread->last_message_date, 'U' ) ) );
295
  }
296
 
297
  function bp_message_thread_avatar() {
291
  function bp_get_message_thread_last_post_date() {
292
  global $messages_template;
293
 
294
+ return apply_filters( 'bp_get_message_thread_last_post_date', bp_format_time( strtotime( $messages_template->thread->last_message_date ) ) );
295
  }
296
 
297
  function bp_message_thread_avatar() {
bp-themes/bp-default/functions.php CHANGED
@@ -211,6 +211,8 @@ function bp_dtheme_fix_the_posts_on_activity_front( $posts ) {
211
  add_filter( 'the_posts', 'bp_dtheme_fix_the_posts_on_activity_front' );
212
 
213
  /**
 
 
214
  * Add secondary avatar image to this activity stream's record, if supported
215
  *
216
  * @param string $action The text of this activity
@@ -222,7 +224,6 @@ add_filter( 'the_posts', 'bp_dtheme_fix_the_posts_on_activity_front' );
222
  function bp_dtheme_activity_secondary_avatars( $action, $activity ) {
223
  switch ( $activity->component ) {
224
  case 'groups' :
225
- case 'blogs' :
226
  case 'friends' :
227
  // Only insert avatar if one exists
228
  if ( $secondary_avatar = bp_get_activity_secondary_avatar() ) {
211
  add_filter( 'the_posts', 'bp_dtheme_fix_the_posts_on_activity_front' );
212
 
213
  /**
214
+ * bp_dtheme_activity_secondary_avatars()
215
+ *
216
  * Add secondary avatar image to this activity stream's record, if supported
217
  *
218
  * @param string $action The text of this activity
224
  function bp_dtheme_activity_secondary_avatars( $action, $activity ) {
225
  switch ( $activity->component ) {
226
  case 'groups' :
 
227
  case 'friends' :
228
  // Only insert avatar if one exists
229
  if ( $secondary_avatar = bp_get_activity_secondary_avatar() ) {
bp-themes/bp-default/sidebar.php CHANGED
@@ -39,12 +39,12 @@
39
 
40
  <form name="login-form" id="sidebar-login-form" class="standard-form" action="<?php echo site_url( 'wp-login.php', 'login_post' ) ?>" method="post">
41
  <label><?php _e( 'Username', 'buddypress' ) ?><br />
42
- <input type="text" name="log" id="sidebar-user-login" class="input" value="<?php echo esc_attr(stripslashes($user_login)); ?>" /></label>
43
 
44
  <label><?php _e( 'Password', 'buddypress' ) ?><br />
45
- <input type="password" name="pwd" id="sidebar-user-pass" class="input" value="" /></label>
46
 
47
- <p class="forgetmenot"><label><input name="rememberme" type="checkbox" id="sidebar-rememberme" value="forever" /> <?php _e( 'Remember Me', 'buddypress' ) ?></label></p>
48
 
49
  <?php do_action( 'bp_sidebar_login_form' ) ?>
50
  <input type="submit" name="wp-submit" id="sidebar-wp-submit" value="<?php _e('Log In'); ?>" tabindex="100" />
39
 
40
  <form name="login-form" id="sidebar-login-form" class="standard-form" action="<?php echo site_url( 'wp-login.php', 'login_post' ) ?>" method="post">
41
  <label><?php _e( 'Username', 'buddypress' ) ?><br />
42
+ <input type="text" name="log" id="sidebar-user-login" class="input" value="<?php echo esc_attr(stripslashes($user_login)); ?>" tabindex="97" /></label>
43
 
44
  <label><?php _e( 'Password', 'buddypress' ) ?><br />
45
+ <input type="password" name="pwd" id="sidebar-user-pass" class="input" value="" tabindex="98" /></label>
46
 
47
+ <p class="forgetmenot"><label><input name="rememberme" type="checkbox" id="sidebar-rememberme" value="forever" tabindex="99" /> <?php _e( 'Remember Me', 'buddypress' ) ?></label></p>
48
 
49
  <?php do_action( 'bp_sidebar_login_form' ) ?>
50
  <input type="submit" name="wp-submit" id="sidebar-wp-submit" value="<?php _e('Log In'); ?>" tabindex="100" />
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.2.6
6
  Author: BuddyPress.org
7
  Author URI: http://buddypress.org
8
  Tags: buddypress, two-columns, custom-header, white, blue
2
  Theme Name: BuddyPress Default
3
  Theme URI: http://buddypress.org/extend/themes/
4
  Description: The default theme for BuddyPress.
5
+ Version: 1.2.7
6
  Author: BuddyPress.org
7
  Author URI: http://buddypress.org
8
  Tags: buddypress, two-columns, custom-header, white, blue
bp-xprofile/bp-xprofile-classes.php CHANGED
@@ -527,7 +527,7 @@ Class BP_XProfile_Field {
527
 
528
  <p>
529
  <?php _e('Option', 'buddypress') ?> <?php echo $j ?>:
530
- <input type="text" name="<?php echo $type ?>_option[<?php echo $j ?>]" id="<?php echo $type ?>_option<?php echo $j ?>" value="<?php echo esc_attr( $options[$i]->name ) ?>" />
531
  <input type="<?php echo $default_input ?>" name="isDefault_<?php echo $type ?>_option<?php echo $default_name ?>" <?php if ( (int) $options[$i]->is_default_option ) {?> checked="checked"<?php } ?> value="<?php echo $j ?>" /> <?php _e( 'Default Value', 'buddypress' ) ?>
532
 
533
  <?php if ( $j != 1 && $options[$i]->id != -1 ) : ?>
@@ -693,57 +693,68 @@ Class BP_XProfile_ProfileData {
693
 
694
  if ( $profiledata = $wpdb->get_row($sql) ) {
695
 
696
- $this->id = $profiledata->id;
697
- $this->user_id = $profiledata->user_id;
698
- $this->field_id = $profiledata->field_id;
699
- $this->value = stripslashes($profiledata->value);
700
  $this->last_updated = $profiledata->last_updated;
701
  }
702
  }
703
 
 
 
 
 
 
 
 
 
 
704
  function exists() {
705
  global $wpdb, $bp;
706
 
707
- // check to see if there is data already for the user.
708
- $sql = $wpdb->prepare( "SELECT id FROM {$bp->profile->table_name_data} WHERE user_id = %d AND field_id = %d", $this->user_id, $this->field_id );
709
 
710
- if ( !$wpdb->get_row($sql) )
711
- return false;
712
-
713
- return true;
714
  }
715
 
 
 
 
 
 
 
 
 
 
716
  function is_valid_field() {
717
  global $wpdb, $bp;
718
 
719
- // check to see if this data is actually for a valid field.
720
- $sql = $wpdb->prepare("SELECT id FROM {$bp->profile->table_name_fields} WHERE id = %d", $this->field_id );
721
 
722
- if ( !$wpdb->get_row($sql) )
723
- return false;
724
-
725
- return true;
726
  }
727
 
728
  function save() {
729
  global $wpdb, $bp;
730
 
731
- $this->user_id = apply_filters( 'xprofile_data_user_id_before_save', $this->user_id, $this->id );
732
- $this->field_id = apply_filters( 'xprofile_data_field_id_before_save', $this->field_id, $this->id );
733
- $this->value = apply_filters( 'xprofile_data_value_before_save', $this->value, $this->id );
734
  $this->last_updated = apply_filters( 'xprofile_data_last_updated_before_save', date( 'Y-m-d H:i:s' ), $this->id );
735
 
736
  do_action( 'xprofile_data_before_save', $this );
737
 
738
  if ( $this->is_valid_field() ) {
739
- if ( $this->exists() && !empty( $this->value ) && strlen( trim( $this->value ) ) ) {
740
  $result = $wpdb->query( $wpdb->prepare( "UPDATE {$bp->profile->table_name_data} SET value = %s, last_updated = %s WHERE user_id = %d AND field_id = %d", $this->value, $this->last_updated, $this->user_id, $this->field_id ) );
741
- } else if ( $this->exists() && empty( $this->value ) ) {
742
- // Data removed, delete the entry.
 
743
  $result = $this->delete();
744
- } else {
 
745
  $result = $wpdb->query( $wpdb->prepare("INSERT INTO {$bp->profile->table_name_data} (user_id, field_id, value, last_updated) VALUES (%d, %d, %s, %s)", $this->user_id, $this->field_id, $this->value, $this->last_updated ) );
746
- }
747
 
748
  if ( !$result )
749
  return false;
@@ -812,7 +823,7 @@ Class BP_XProfile_ProfileData {
812
  $data = $wpdb->get_var( $wpdb->prepare( "SELECT value FROM {$bp->profile->table_name_data} WHERE field_id = %d AND user_id = %d", $field_id, $user_ids ) );
813
  }
814
 
815
- return maybe_unserialize( $data );
816
  }
817
 
818
  function get_value_byfieldname( $fields, $user_id = null ) {
527
 
528
  <p>
529
  <?php _e('Option', 'buddypress') ?> <?php echo $j ?>:
530
+ <input type="text" name="<?php echo $type ?>_option[<?php echo $j ?>]" id="<?php echo $type ?>_option<?php echo $j ?>" value="<?php echo stripslashes( esc_attr( $options[$i]->name ) ) ?>" />
531
  <input type="<?php echo $default_input ?>" name="isDefault_<?php echo $type ?>_option<?php echo $default_name ?>" <?php if ( (int) $options[$i]->is_default_option ) {?> checked="checked"<?php } ?> value="<?php echo $j ?>" /> <?php _e( 'Default Value', 'buddypress' ) ?>
532
 
533
  <?php if ( $j != 1 && $options[$i]->id != -1 ) : ?>
693
 
694
  if ( $profiledata = $wpdb->get_row($sql) ) {
695
 
696
+ $this->id = $profiledata->id;
697
+ $this->user_id = $profiledata->user_id;
698
+ $this->field_id = $profiledata->field_id;
699
+ $this->value = stripslashes($profiledata->value);
700
  $this->last_updated = $profiledata->last_updated;
701
  }
702
  }
703
 
704
+ /**
705
+ * exists ()
706
+ *
707
+ * Check if there is data already for the user.
708
+ *
709
+ * @global object $wpdb
710
+ * @global array $bp
711
+ * @return bool
712
+ */
713
  function exists() {
714
  global $wpdb, $bp;
715
 
716
+ $retval = $wpdb->get_row( $wpdb->prepare( "SELECT id FROM {$bp->profile->table_name_data} WHERE user_id = %d AND field_id = %d", $this->user_id, $this->field_id ) );
 
717
 
718
+ return apply_filters( 'xprofile_data_exists', (bool)$retval, $this );
 
 
 
719
  }
720
 
721
+ /**
722
+ * is_valid_field()
723
+ *
724
+ * Check if this data is for a valid field.
725
+ *
726
+ * @global object $wpdb
727
+ * @global array $bp
728
+ * @return bool
729
+ */
730
  function is_valid_field() {
731
  global $wpdb, $bp;
732
 
733
+ $retval = $wpdb->get_row( $wpdb->prepare( "SELECT id FROM {$bp->profile->table_name_fields} WHERE id = %d", $this->field_id ) );
 
734
 
735
+ return apply_filters( 'xprofile_data_is_valid_field', (bool)$retval, $this );
 
 
 
736
  }
737
 
738
  function save() {
739
  global $wpdb, $bp;
740
 
741
+ $this->user_id = apply_filters( 'xprofile_data_user_id_before_save', $this->user_id, $this->id );
742
+ $this->field_id = apply_filters( 'xprofile_data_field_id_before_save', $this->field_id, $this->id );
743
+ $this->value = apply_filters( 'xprofile_data_value_before_save', $this->value, $this->id );
744
  $this->last_updated = apply_filters( 'xprofile_data_last_updated_before_save', date( 'Y-m-d H:i:s' ), $this->id );
745
 
746
  do_action( 'xprofile_data_before_save', $this );
747
 
748
  if ( $this->is_valid_field() ) {
749
+ if ( $this->exists() && !empty( $this->value ) && strlen( trim( $this->value ) ) )
750
  $result = $wpdb->query( $wpdb->prepare( "UPDATE {$bp->profile->table_name_data} SET value = %s, last_updated = %s WHERE user_id = %d AND field_id = %d", $this->value, $this->last_updated, $this->user_id, $this->field_id ) );
751
+
752
+ // Data removed, delete the entry.
753
+ elseif ( $this->exists() && empty( $this->value ) )
754
  $result = $this->delete();
755
+
756
+ else
757
  $result = $wpdb->query( $wpdb->prepare("INSERT INTO {$bp->profile->table_name_data} (user_id, field_id, value, last_updated) VALUES (%d, %d, %s, %s)", $this->user_id, $this->field_id, $this->value, $this->last_updated ) );
 
758
 
759
  if ( !$result )
760
  return false;
823
  $data = $wpdb->get_var( $wpdb->prepare( "SELECT value FROM {$bp->profile->table_name_data} WHERE field_id = %d AND user_id = %d", $field_id, $user_ids ) );
824
  }
825
 
826
+ return $data;
827
  }
828
 
829
  function get_value_byfieldname( $fields, $user_id = null ) {
bp-xprofile/bp-xprofile-templatetags.php CHANGED
@@ -376,7 +376,7 @@ function bp_the_profile_field_options( $args = '' ) {
376
  $html .= '<option value="">--------</option>';
377
 
378
  for ( $k = 0; $k < count($options); $k++ ) {
379
- $option_values = BP_XProfile_ProfileData::get_value_byid( $options[$k]->parent_id );
380
  $option_values = (array)$option_values;
381
 
382
  /* Check for updated posted values, but errors preventing them from being saved first time */
@@ -393,7 +393,7 @@ function bp_the_profile_field_options( $args = '' ) {
393
  $selected = '';
394
  }
395
 
396
- $html .= apply_filters( 'bp_get_the_profile_field_options_select', '<option' . $selected . ' value="' . esc_attr( $options[$k]->name ) . '">' . esc_attr( $options[$k]->name ) . '</option>', $options[$k] );
397
  }
398
  break;
399
 
@@ -409,13 +409,13 @@ function bp_the_profile_field_options( $args = '' ) {
409
  $option_value = $_POST['field_' . $field->id];
410
  }
411
 
412
- if ( $option_value == $options[$k]->name || $value == $options[$k]->name || $options[$k]->is_default_option ) {
413
  $selected = ' checked="checked"';
414
  } else {
415
  $selected = '';
416
  }
417
 
418
- $html .= apply_filters( 'bp_get_the_profile_field_options_radio', '<label><input' . $selected . ' type="radio" name="field_' . $field->id . '" id="option_' . $options[$k]->id . '" value="' . esc_attr( $options[$k]->name ) . '"> ' . esc_attr( $options[$k]->name ) . '</label>', $options[$k] );
419
  }
420
 
421
  $html .= '</div>';
@@ -440,7 +440,7 @@ function bp_the_profile_field_options( $args = '' ) {
440
  }
441
  }
442
 
443
- $html .= apply_filters( 'bp_get_the_profile_field_options_checkbox', '<label><input' . $selected . ' type="checkbox" name="field_' . $field->id . '[]" id="field_' . $options[$k]->id . '_' . $k . '" value="' . esc_attr( $options[$k]->name ) . '"> ' . esc_attr( $options[$k]->name ) . '</label>', $options[$k] );
444
  $selected = '';
445
  }
446
  break;
@@ -552,10 +552,12 @@ function bp_profile_field_data( $args = '' ) {
552
  echo bp_get_profile_field_data( $args );
553
  }
554
  function bp_get_profile_field_data( $args = '' ) {
 
 
555
  $defaults = array(
556
- 'field' => false, // Field name or ID.
557
  'user_id' => $bp->displayed_user->id
558
- );
559
 
560
  $r = wp_parse_args( $args, $defaults );
561
  extract( $r, EXTR_SKIP );
376
  $html .= '<option value="">--------</option>';
377
 
378
  for ( $k = 0; $k < count($options); $k++ ) {
379
+ $option_values = maybe_unserialize( BP_XProfile_ProfileData::get_value_byid( $options[$k]->parent_id ) );
380
  $option_values = (array)$option_values;
381
 
382
  /* Check for updated posted values, but errors preventing them from being saved first time */
393
  $selected = '';
394
  }
395
 
396
+ $html .= apply_filters( 'bp_get_the_profile_field_options_select', '<option' . $selected . ' value="' . stripslashes( esc_attr( $options[$k]->name ) ) . '">' . stripslashes( esc_attr( $options[$k]->name ) ) . '</option>', $options[$k] );
397
  }
398
  break;
399
 
409
  $option_value = $_POST['field_' . $field->id];
410
  }
411
 
412
+ if ( $option_value == $options[$k]->name || $value == $options[$k]->name || ( empty( $option_value ) && $options[$k]->is_default_option ) ) {
413
  $selected = ' checked="checked"';
414
  } else {
415
  $selected = '';
416
  }
417
 
418
+ $html .= apply_filters( 'bp_get_the_profile_field_options_radio', '<label><input' . $selected . ' type="radio" name="field_' . $field->id . '" id="option_' . $options[$k]->id . '" value="' . stripslashes( esc_attr( $options[$k]->name ) ) . '"> ' . stripslashes( esc_attr( $options[$k]->name ) ) . '</label>', $options[$k] );
419
  }
420
 
421
  $html .= '</div>';
440
  }
441
  }
442
 
443
+ $html .= apply_filters( 'bp_get_the_profile_field_options_checkbox', '<label><input' . $selected . ' type="checkbox" name="field_' . $field->id . '[]" id="field_' . $options[$k]->id . '_' . $k . '" value="' . stripslashes( esc_attr( $options[$k]->name ) ) . '"> ' . stripslashes( esc_attr( $options[$k]->name ) ) . '</label>', $options[$k] );
444
  $selected = '';
445
  }
446
  break;
552
  echo bp_get_profile_field_data( $args );
553
  }
554
  function bp_get_profile_field_data( $args = '' ) {
555
+ global $bp;
556
+
557
  $defaults = array(
558
+ 'field' => false, // Field name or ID.
559
  'user_id' => $bp->displayed_user->id
560
+ );
561
 
562
  $r = wp_parse_args( $args, $defaults );
563
  extract( $r, EXTR_SKIP );
readme.txt CHANGED
@@ -1,9 +1,9 @@
1
  === Plugin Name ===
2
- Contributors: apeatling, johnjamesjacoby, djpaul, boonebgorges, MrMaz
3
  Tags: buddypress, social networking, activity, profiles, messaging, friends, groups, forums, microblogging, twitter, facebook, mingle, social, community, networks, networking, cms
4
  Requires at least: 3.0
5
- Tested up to: 3.0
6
- Stable tag: 1.2.6
7
 
8
  == Description ==
9
 
@@ -25,19 +25,17 @@ More and more WordPress with BuddyPress powered sites are popping up. You can ta
25
 
26
  BuddyPress boasts an ever growing array of new features developed by the awesome plugin development community. Some of most popular BuddyPress plugins currently available are:
27
 
28
- * <a href="http://wordpress.org/extend/plugins/wp-fb-autoconnect">WP-FB-AutoConnect</a> - allow your users to instantly log in to your site using their Facebook credentials.
29
  * <a href="http://wordpress.org/extend/plugins/buddypress-like">BuddyPress Like</a> - add a "like" button to site activity.
30
  * <a href="http://wordpress.org/extend/plugins/buddypress-links">BuddyPress Links</a> - rich media embedding for your BuddyPress powered site.
31
- * <a href="http://wordpress.org/extend/plugins/tweetstream">BuddyPress Tweetstream</a> - allow your users to sync and post to their Twitter stream.
32
- * <a href="http://wordpress.org/extend/plugins/facestream">BuddyPress Facestream</a> - allow your users to sync and post to their Facebook stream.
33
  * <a href="http://wordpress.org/extend/plugins/bp-album">BuddyPress Album+</a> - allow your users to upload photos and create albums.
34
  * <a href="http://wordpress.org/extend/plugins/buddypress-group-documents">BuddyPress Group Documents</a> - add file upload and document repositories to your groups.
35
  * <a href="http://wordpress.org/extend/plugins/bp-profile-privacy">BuddyPress Profile Privacy</a> - allow your users to set privacy options on their profile data.
36
  * <a href="http://wordpress.org/extend/plugins/welcome-pack">BuddyPress Welcome Pack</a> - set defaults for new users, auto join them to groups or send welcome messages.
37
  * <a href="http://wordpress.org/extend/plugins/bp-groupblog">BuddyPress Group Blog</a> (WordPress MU only) - allow your groups to include a fully functional WordPress blog.
38
- * <a href="http://wordpress.org/extend/plugins/buddypress-group-wiki/">BuddyPress Group Wiki</a> - add wiki functionality to your groups so all members can contribute to pages.
39
 
40
- There are already more than 125 BuddyPress plugins available, the list is growing every day. For a full list of plugins, please visit the <a href="http://buddypress.org/extend/plugins/">BuddyPress.org plugins page</a>. You can also install any of these plugins automatically through the plugin installer menu inside of your WordPress installation.
41
 
42
  <h4>More Information</h4>
43
 
@@ -123,8 +121,8 @@ The <a href="http://i18n.svn.buddypress.org/">BuddyPress langauge file repositor
123
 
124
  == Upgrade Notice ==
125
 
126
- = 1.2.6 =
127
- Bug fixes and improved WordPress 3.0 support. Important upgrade.
128
 
129
  == Changelog ==
130
 
1
  === Plugin Name ===
2
+ Contributors: apeatling, johnjamesjacoby, MrMaz, DJPaul, boonebgorges
3
  Tags: buddypress, social networking, activity, profiles, messaging, friends, groups, forums, microblogging, twitter, facebook, mingle, social, community, networks, networking, cms
4
  Requires at least: 3.0
5
+ Tested up to: 3.0.3
6
+ Stable tag: 1.2.7
7
 
8
  == Description ==
9
 
25
 
26
  BuddyPress boasts an ever growing array of new features developed by the awesome plugin development community. Some of most popular BuddyPress plugins currently available are:
27
 
 
28
  * <a href="http://wordpress.org/extend/plugins/buddypress-like">BuddyPress Like</a> - add a "like" button to site activity.
29
  * <a href="http://wordpress.org/extend/plugins/buddypress-links">BuddyPress Links</a> - rich media embedding for your BuddyPress powered site.
30
+ * <a href="http://wordpress.org/extend/plugins/buddystream/">BuddyStream</a> - synchronizes all of your favorite social networks to the BuddyPress activity stream.
 
31
  * <a href="http://wordpress.org/extend/plugins/bp-album">BuddyPress Album+</a> - allow your users to upload photos and create albums.
32
  * <a href="http://wordpress.org/extend/plugins/buddypress-group-documents">BuddyPress Group Documents</a> - add file upload and document repositories to your groups.
33
  * <a href="http://wordpress.org/extend/plugins/bp-profile-privacy">BuddyPress Profile Privacy</a> - allow your users to set privacy options on their profile data.
34
  * <a href="http://wordpress.org/extend/plugins/welcome-pack">BuddyPress Welcome Pack</a> - set defaults for new users, auto join them to groups or send welcome messages.
35
  * <a href="http://wordpress.org/extend/plugins/bp-groupblog">BuddyPress Group Blog</a> (WordPress MU only) - allow your groups to include a fully functional WordPress blog.
36
+ * <a href="http://wordpress.org/extend/plugins/bp-wiki/">BuddyPress Wiki Component</a> - adds wiki functionality.
37
 
38
+ There are more than 300 BuddyPress plugins available, the list is growing every day. For a full list of plugins, please visit the <a href="http://buddypress.org/extend/plugins/">BuddyPress.org plugins page</a>. You can also install any of these plugins automatically through the plugin installer menu inside of your WordPress installation.
39
 
40
  <h4>More Information</h4>
41
 
121
 
122
  == Upgrade Notice ==
123
 
124
+ = 1.2.7 =
125
+ Fixes over 10 bugs.
126
 
127
  == Changelog ==
128
 
screenshot-1.gif DELETED
Binary file
screenshot-2.gif DELETED
Binary file
screenshot-3.gif DELETED
Binary file
screenshot-4.gif DELETED
Binary file
screenshot-5.gif DELETED
Binary file
screenshot-6.gif DELETED
Binary file
screenshot-7.gif DELETED
Binary file