BuddyPress - Version 1.2.3

Version Description

= 1.2.2.1 = Fixes a bug where new account activation emails would not be sent correctly. Important upgrade.

Download this release

Release Info

Developer apeatling
Plugin Icon 128x128 BuddyPress
Version 1.2.3
Comparing to
See all releases

Code changes from version 1.2.2.1 to 1.2.3

bp-activity/bp-activity-notifications.php CHANGED
@@ -12,11 +12,11 @@ function bp_activity_at_message_notification( $content, $poster_user_id, $activi
12
  return false;
13
 
14
  foreach( (array)$usernames as $username ) {
15
- if ( !$receiver_user_id = bp_core_get_userid($username) )
16
  continue;
17
 
18
  // Now email the user with the contents of the message (if they have enabled email notifications)
19
- if ( 'no' != get_usermeta( $user_id, 'notification_activity_new_mention' ) ) {
20
  $poster_name = bp_core_get_user_displayname( $poster_user_id );
21
 
22
  $message_link = bp_activity_get_permalink( $activity_id );
12
  return false;
13
 
14
  foreach( (array)$usernames as $username ) {
15
+ if ( !$receiver_user_id = bp_core_get_userid( $username ) )
16
  continue;
17
 
18
  // Now email the user with the contents of the message (if they have enabled email notifications)
19
+ if ( 'no' != get_usermeta( $receiver_user_id, 'notification_activity_new_mention' ) ) {
20
  $poster_name = bp_core_get_user_displayname( $poster_user_id );
21
 
22
  $message_link = bp_activity_get_permalink( $activity_id );
bp-blogs.php CHANGED
@@ -397,6 +397,8 @@ function bp_blogs_record_post( $post_id, $post, $user_id = false ) {
397
  } else
398
  bp_blogs_remove_post( $post_id, $blog_id );
399
 
 
 
400
  do_action( 'bp_blogs_new_blog_post', $post_id, $post, $user_id );
401
  }
402
  add_action( 'save_post', 'bp_blogs_record_post', 10, 2 );
@@ -405,6 +407,10 @@ function bp_blogs_record_comment( $comment_id, $is_approved = true ) {
405
  global $wpdb, $bp;
406
 
407
  $comment = get_comment($comment_id);
 
 
 
 
408
  $comment->post = get_post( $comment->comment_post_ID );
409
 
410
  /* Get the user_id from the author email. */
@@ -437,6 +443,8 @@ function bp_blogs_record_comment( $comment_id, $is_approved = true ) {
437
  ) );
438
  }
439
 
 
 
440
  return $recorded_comment;
441
  }
442
  add_action( 'comment_post', 'bp_blogs_record_comment', 10, 2 );
397
  } else
398
  bp_blogs_remove_post( $post_id, $blog_id );
399
 
400
+ bp_blogs_update_blogmeta( $blog_id, 'last_activity', gmdate( "Y-m-d H:i:s" ) );
401
+
402
  do_action( 'bp_blogs_new_blog_post', $post_id, $post, $user_id );
403
  }
404
  add_action( 'save_post', 'bp_blogs_record_post', 10, 2 );
407
  global $wpdb, $bp;
408
 
409
  $comment = get_comment($comment_id);
410
+
411
+ if ( !$is_approved )
412
+ return false;
413
+
414
  $comment->post = get_post( $comment->comment_post_ID );
415
 
416
  /* Get the user_id from the author email. */
443
  ) );
444
  }
445
 
446
+ bp_blogs_update_blogmeta( $blog_id, 'last_activity', gmdate( "Y-m-d H:i:s" ) );
447
+
448
  return $recorded_comment;
449
  }
450
  add_action( 'comment_post', 'bp_blogs_record_comment', 10, 2 );
bp-core.php CHANGED
@@ -997,8 +997,30 @@ add_action( 'wp', 'bp_core_get_random_member' );
997
  function bp_core_get_userid( $username ) {
998
  global $wpdb;
999
 
1000
- if ( !empty( $username ) )
1001
- return apply_filters( 'bp_core_get_userid', $wpdb->get_var( $wpdb->prepare( "SELECT ID FROM " . CUSTOM_USER_TABLE . " WHERE user_login = %s", $username ) ) );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1002
  }
1003
 
1004
  /**
@@ -1539,13 +1561,15 @@ function bp_core_get_site_path() {
1539
  unset( $site_path[1] );
1540
  unset( $site_path[2] );
1541
 
1542
- $site_path = '/' . implode( '/', $site_path ) . '/';
 
 
 
1543
  }
1544
  }
1545
 
1546
  return apply_filters( 'bp_core_get_site_path', $site_path );
1547
  }
1548
-
1549
  /**
1550
  * bp_core_get_site_options()
1551
  *
@@ -1874,7 +1898,7 @@ function bp_core_boot_spammer( $auth_obj, $username ) {
1874
 
1875
  $user = get_userdatabylogin( $username );
1876
 
1877
- if ( (int)$user->spam )
1878
  bp_core_redirect( $bp->root_domain );
1879
  else
1880
  return $auth_obj;
997
  function bp_core_get_userid( $username ) {
998
  global $wpdb;
999
 
1000
+ if ( empty( $username ) )
1001
+ return false;
1002
+
1003
+ return apply_filters( 'bp_core_get_userid', $wpdb->get_var( $wpdb->prepare( "SELECT ID FROM " . CUSTOM_USER_TABLE . " WHERE user_login = %s", $username ) ) );
1004
+ }
1005
+
1006
+ /**
1007
+ * bp_core_get_userid_from_nicename()
1008
+ *
1009
+ * Returns the user_id for a user based on their user_nicename.
1010
+ *
1011
+ * @package BuddyPress Core
1012
+ * @param $username str Username to check.
1013
+ * @global $wpdb WordPress DB access object.
1014
+ * @return false on no match
1015
+ * @return int the user ID of the matched user.
1016
+ */
1017
+ function bp_core_get_userid_from_nicename( $user_nicename ) {
1018
+ global $wpdb;
1019
+
1020
+ if ( empty( $user_nicename ) )
1021
+ return false;
1022
+
1023
+ return apply_filters( 'bp_core_get_userid_from_nicename', $wpdb->get_var( $wpdb->prepare( "SELECT ID FROM " . CUSTOM_USER_TABLE . " WHERE user_nicename = %s", $user_nicename ) ) );
1024
  }
1025
 
1026
  /**
1561
  unset( $site_path[1] );
1562
  unset( $site_path[2] );
1563
 
1564
+ if ( !count( $site_path ) )
1565
+ $site_path = '/';
1566
+ else
1567
+ $site_path = '/' . implode( '/', $site_path ) . '/';
1568
  }
1569
  }
1570
 
1571
  return apply_filters( 'bp_core_get_site_path', $site_path );
1572
  }
 
1573
  /**
1574
  * bp_core_get_site_options()
1575
  *
1898
 
1899
  $user = get_userdatabylogin( $username );
1900
 
1901
+ if ( ( bp_core_is_multisite() && (int)$user->spam ) || 1 == (int)$user->user_status )
1902
  bp_core_redirect( $bp->root_domain );
1903
  else
1904
  return $auth_obj;
bp-core/bp-core-catchuri.php CHANGED
@@ -103,7 +103,10 @@ function bp_core_set_uri_globals() {
103
  if ( !defined( 'BP_ENABLE_ROOT_PROFILES' ) ) {
104
  if ( ( $bp_uri[0] == BP_MEMBERS_SLUG && !empty( $bp_uri[1] ) ) || in_array( 'wp-load.php', $bp_uri ) ) {
105
  // We are within a member page, set up user id globals
106
- $displayed_user_id = bp_core_get_displayed_userid( $bp_uri[1] );
 
 
 
107
 
108
  unset($bp_uri[0]);
109
  unset($bp_uri[1]);
@@ -117,7 +120,10 @@ function bp_core_set_uri_globals() {
117
  $is_root_component = true;
118
 
119
  // We are within a member page, set up user id globals
120
- $displayed_user_id = bp_core_get_displayed_userid( $bp_uri[0] );
 
 
 
121
 
122
  unset($bp_uri[0]);
123
 
103
  if ( !defined( 'BP_ENABLE_ROOT_PROFILES' ) ) {
104
  if ( ( $bp_uri[0] == BP_MEMBERS_SLUG && !empty( $bp_uri[1] ) ) || in_array( 'wp-load.php', $bp_uri ) ) {
105
  // We are within a member page, set up user id globals
106
+ if ( defined( 'BP_ENABLE_USERNAME_COMPATIBILITY_MODE' ) )
107
+ $displayed_user_id = bp_core_get_userid( $bp_uri[1] );
108
+ else
109
+ $displayed_user_id = bp_core_get_userid_from_nicename( $bp_uri[1] );
110
 
111
  unset($bp_uri[0]);
112
  unset($bp_uri[1]);
120
  $is_root_component = true;
121
 
122
  // We are within a member page, set up user id globals
123
+ if ( defined( 'BP_ENABLE_USERNAME_COMPATIBILITY_MODE' ) )
124
+ $displayed_user_id = bp_core_get_userid( $bp_uri[0] );
125
+ else
126
+ $displayed_user_id = bp_core_get_userid_from_nicename( $bp_uri[0] );
127
 
128
  unset($bp_uri[0]);
129
 
bp-core/bp-core-classes.php CHANGED
@@ -320,6 +320,10 @@ class BP_Core_User {
320
 
321
  /* Fetch the user's full name */
322
  if ( function_exists( 'xprofile_install' ) && 'alphabetical' != $type ) {
 
 
 
 
323
  $names = $wpdb->get_results( $wpdb->prepare( "SELECT pd.user_id as id, pd.value as fullname FROM {$bp->profile->table_name_fields} pf, {$bp->profile->table_name_data} pd WHERE pf.id = pd.field_id AND pf.name = %s AND pd.user_id IN ( {$user_ids} )", BP_XPROFILE_FULLNAME_FIELD_NAME ) );
324
  for ( $i = 0; $i < count( $paged_users ); $i++ ) {
325
  foreach ( (array)$names as $name ) {
320
 
321
  /* Fetch the user's full name */
322
  if ( function_exists( 'xprofile_install' ) && 'alphabetical' != $type ) {
323
+ /* Ensure xprofile globals are set */
324
+ if ( !defined( 'BP_XPROFILE_FULLNAME_FIELD_NAME' ) )
325
+ xprofile_setup_globals();
326
+
327
  $names = $wpdb->get_results( $wpdb->prepare( "SELECT pd.user_id as id, pd.value as fullname FROM {$bp->profile->table_name_fields} pf, {$bp->profile->table_name_data} pd WHERE pf.id = pd.field_id AND pf.name = %s AND pd.user_id IN ( {$user_ids} )", BP_XPROFILE_FULLNAME_FIELD_NAME ) );
328
  for ( $i = 0; $i < count( $paged_users ); $i++ ) {
329
  foreach ( (array)$names as $name ) {
bp-core/bp-core-signup.php CHANGED
@@ -357,11 +357,15 @@ function bp_core_signup_user( $user_login, $user_password, $user_email, $usermet
357
  /***
358
  * Now generate an activation key and send an email to the user so they can activate their account
359
  * and validate their email address. Multisite installs send their own email, so this is only for single blog installs.
 
 
360
  */
361
- if ( !bp_core_is_multisite() ) {
362
- $activation_key = wp_hash( $user_id );
363
- update_usermeta( $user_id, 'activation_key', $activation_key );
364
- bp_core_signup_send_validation_email( $user_id, $user_email, $activation_key );
 
 
365
  }
366
 
367
  do_action( 'bp_core_signup_user', $user_id, $user_login, $user_password, $user_email, $usermeta );
357
  /***
358
  * Now generate an activation key and send an email to the user so they can activate their account
359
  * and validate their email address. Multisite installs send their own email, so this is only for single blog installs.
360
+ *
361
+ * To disable sending activation emails you can user the filter 'bp_core_signup_send_activation_key' and return false.
362
  */
363
+ if ( apply_filters( 'bp_core_signup_send_activation_key', true ) ) {
364
+ if ( !bp_core_is_multisite() ) {
365
+ $activation_key = wp_hash( $user_id );
366
+ update_usermeta( $user_id, 'activation_key', $activation_key );
367
+ bp_core_signup_send_validation_email( $user_id, $user_email, $activation_key );
368
+ }
369
  }
370
 
371
  do_action( 'bp_core_signup_user', $user_id, $user_login, $user_password, $user_email, $usermeta );
bp-groups.php CHANGED
@@ -564,6 +564,9 @@ function groups_screen_group_members() {
564
  global $bp;
565
 
566
  if ( $bp->is_single_item ) {
 
 
 
567
  do_action( 'groups_screen_group_members', $bp->groups->current_group->id );
568
  bp_core_load_template( apply_filters( 'groups_template_group_members', 'groups/single/home' ) );
569
  }
@@ -1722,6 +1725,10 @@ function groups_get_group_members( $group_id, $limit = false, $page = false ) {
1722
  return BP_Groups_Member::get_all_for_group( $group_id, $limit, $page );
1723
  }
1724
 
 
 
 
 
1725
  /*** Group Fetching, Filtering & Searching *************************************/
1726
 
1727
  function groups_get_groups( $args = '' ) {
564
  global $bp;
565
 
566
  if ( $bp->is_single_item ) {
567
+ /* Refresh the group member count meta */
568
+ groups_update_groupmeta( $bp->groups->current_group->id, 'total_member_count', groups_get_total_member_count( $bp->groups->current_group->id ) );
569
+
570
  do_action( 'groups_screen_group_members', $bp->groups->current_group->id );
571
  bp_core_load_template( apply_filters( 'groups_template_group_members', 'groups/single/home' ) );
572
  }
1725
  return BP_Groups_Member::get_all_for_group( $group_id, $limit, $page );
1726
  }
1727
 
1728
+ function groups_get_total_member_count( $group_id ) {
1729
+ return BP_Groups_Group::get_total_member_count( $group_id );
1730
+ }
1731
+
1732
  /*** Group Fetching, Filtering & Searching *************************************/
1733
 
1734
  function groups_get_groups( $args = '' ) {
bp-groups/bp-groups-classes.php CHANGED
@@ -612,6 +612,12 @@ Class BP_Groups_Group {
612
 
613
  return $wpdb->get_var( "SELECT COUNT(t.topic_id) FROM {$bbdb->topics} AS t, {$bp->groups->table_name} AS g LEFT JOIN {$bp->groups->table_name_groupmeta} AS gm ON g.id = gm.group_id WHERE (gm.meta_key = 'forum_id' AND gm.meta_value = t.forum_id) AND g.status = 'public' AND t.topic_status = '0' AND t.topic_sticky != '2' {$extra_sql} " );
614
  }
 
 
 
 
 
 
615
  }
616
 
617
  Class BP_Groups_Member {
612
 
613
  return $wpdb->get_var( "SELECT COUNT(t.topic_id) FROM {$bbdb->topics} AS t, {$bp->groups->table_name} AS g LEFT JOIN {$bp->groups->table_name_groupmeta} AS gm ON g.id = gm.group_id WHERE (gm.meta_key = 'forum_id' AND gm.meta_value = t.forum_id) AND g.status = 'public' AND t.topic_status = '0' AND t.topic_sticky != '2' {$extra_sql} " );
614
  }
615
+
616
+ function get_total_member_count( $group_id ) {
617
+ global $wpdb, $bp;
618
+
619
+ return $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(id) FROM {$bp->groups->table_name_members} WHERE group_id = %d AND is_confirmed = 1 AND is_banned = 0", $group_id ) );
620
+ }
621
  }
622
 
623
  Class BP_Groups_Member {
bp-languages/buddypress.pot CHANGED
@@ -8,16 +8,15 @@ 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-02-16 14:11+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:111 bp-activity.php:264
21
  #: bp-activity/feeds/bp-activity-personal-feed.php:21
22
  #: bp-themes/bp-default/header.php:53
23
  msgid "Activity"
@@ -27,19 +26,18 @@ msgstr ""
27
  msgid "Personal"
28
  msgstr ""
29
 
30
- #: bp-activity.php:121 bp-core/bp-core-admin.php:201 bp-friends.php:146
31
  msgid "Friends"
32
  msgstr ""
33
 
34
  #: bp-activity.php:124 bp-core/bp-core-admin.php:210
35
- #: bp-core/bp-core-templatetags.php:992 bp-groups.php:960 bp-groups.php:1340
36
- #: bp-groups.php:1353 bp-groups.php:1367 bp-groups.php:1380
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:126 bp-forums/bbpress/bb-includes/functions.bb-core.php:847
42
- #: bp-forums/bbpress/bb-templates/kakumei/favorites.php:3
43
  msgid "Favorites"
44
  msgstr ""
45
 
@@ -52,102 +50,102 @@ msgstr ""
52
  msgid "My Activity"
53
  msgstr ""
54
 
55
- #: bp-activity.php:250
56
  msgid "You do not have access to this activity."
57
  msgstr ""
58
 
59
- #: bp-activity.php:265 bp-blogs/bp-blogs-templatetags.php:403
60
  #: bp-core/bp-core-admin.php:60 bp-core/bp-core-admin.php:68
61
  #: bp-core/bp-core-admin.php:75 bp-core/bp-core-admin.php:82
62
  #: bp-core/bp-core-admin.php:90 bp-core/bp-core-admin.php:99
63
- #: bp-friends.php:147 bp-groups.php:961 bp-messages.php:244
64
  #: bp-themes/bp-default/groups/single/admin.php:26
65
  #: bp-themes/bp-default/registration/register.php:195
66
  #: bp-xprofile/bp-xprofile-admin.php:93
67
  msgid "Yes"
68
  msgstr ""
69
 
70
- #: bp-activity.php:266 bp-blogs/bp-blogs-templatetags.php:407
71
  #: bp-core/bp-core-admin.php:61 bp-core/bp-core-admin.php:69
72
  #: bp-core/bp-core-admin.php:76 bp-core/bp-core-admin.php:83
73
  #: bp-core/bp-core-admin.php:91 bp-core/bp-core-admin.php:100
74
- #: bp-friends.php:148 bp-groups.php:962 bp-messages.php:245
75
  #: bp-themes/bp-default/groups/single/admin.php:27
76
  #: bp-themes/bp-default/registration/register.php:196
77
  msgid "No"
78
  msgstr ""
79
 
80
- #: bp-activity.php:271
81
  #, php-format
82
  msgid "A member mentions you in an update using \"@%s\""
83
  msgstr ""
84
 
85
- #: bp-activity.php:277
86
  msgid "A member replies to an update or comment you've posted"
87
  msgstr ""
88
 
89
- #: bp-activity.php:355
90
  msgid "Activity deleted"
91
  msgstr ""
92
 
93
- #: bp-activity.php:357
94
  msgid "There was an error when deleting that activity"
95
  msgstr ""
96
 
97
- #: bp-activity.php:377 bp-themes/bp-default/_inc/ajax.php:124
98
  msgid "Please enter some content to post."
99
  msgstr ""
100
 
101
- #: bp-activity.php:392
102
  msgid "Update Posted!"
103
  msgstr ""
104
 
105
- #: bp-activity.php:394
106
  msgid "There was an error when posting your update, please try again."
107
  msgstr ""
108
 
109
- #: bp-activity.php:413 bp-themes/bp-default/_inc/ajax.php:162
110
  msgid "Please do not leave the comment area blank."
111
  msgstr ""
112
 
113
- #: bp-activity.php:424
114
  msgid "Reply Posted!"
115
  msgstr ""
116
 
117
- #: bp-activity.php:426 bp-themes/bp-default/_inc/ajax.php:167
118
  #: bp-themes/bp-default/_inc/ajax.php:178
119
  msgid "There was an error posting that reply, please try again."
120
  msgstr ""
121
 
122
- #: bp-activity.php:442
123
  msgid "Activity marked as favorite."
124
  msgstr ""
125
 
126
- #: bp-activity.php:444
127
  msgid ""
128
  "There was an error marking that activity as a favorite, please try again."
129
  msgstr ""
130
 
131
- #: bp-activity.php:460
132
  msgid "Activity removed as favorite."
133
  msgstr ""
134
 
135
- #: bp-activity.php:462
136
  msgid ""
137
  "There was an error removing that activity as a favorite, please try again."
138
  msgstr ""
139
 
140
- #: bp-activity.php:688
141
  #, php-format
142
  msgid "%s posted an update:"
143
  msgstr ""
144
 
145
- #: bp-activity.php:739
146
  #, php-format
147
  msgid "%s posted a new activity comment:"
148
  msgstr ""
149
 
150
- #: bp-activity.php:953
151
  msgid "Thumbnail"
152
  msgstr ""
153
 
@@ -228,76 +226,63 @@ msgstr ""
228
  msgid "Avatar"
229
  msgstr ""
230
 
231
- #: bp-activity/bp-activity-templatetags.php:486
232
  #, php-format
233
  msgid "&nbsp; %s ago"
234
  msgstr ""
235
 
236
- #: bp-activity/bp-activity-templatetags.php:489
237
  #: bp-themes/bp-default/activity/entry.php:46
238
  msgid "View Thread / Permalink"
239
  msgstr ""
240
 
241
- #: bp-activity/bp-activity-templatetags.php:489
242
- #: bp-activity/bp-activity-templatetags.php:726
243
  #: bp-core/bp-core-templatetags.php:290
244
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:415
245
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:884
246
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1104
247
- #: bp-forums/bbpress/bb-admin/topics.php:125
248
  #: bp-themes/bp-default/activity/entry.php:46
249
  msgid "View"
250
  msgstr ""
251
 
252
- #: bp-activity/bp-activity-templatetags.php:569
253
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:433
254
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1138
255
- #: bp-forums/bbpress/bb-admin/topics.php:144
256
- #: bp-forums/bbpress/bb-admin/topics.php:153
257
  #: bp-themes/bp-default/_inc/ajax.php:190
258
  #, php-format
259
  msgid "%s ago"
260
  msgstr ""
261
 
262
- #: bp-activity/bp-activity-templatetags.php:573
263
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:274
264
  #: bp-themes/bp-default/_inc/ajax.php:191
265
  #: bp-themes/bp-default/activity/entry.php:28
266
  msgid "Reply"
267
  msgstr ""
268
 
269
- #: bp-activity/bp-activity-templatetags.php:577
270
- #: bp-activity/bp-activity-templatetags.php:710
271
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:888
272
- #: bp-forums/bbpress/bb-admin/topics.php:128
273
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:1983
274
- #: bp-forums/bp-forums-templatetags.php:926
275
  #: bp-themes/bp-default/_inc/ajax.php:192 bp-xprofile/bp-xprofile-admin.php:68
276
  #: bp-xprofile/bp-xprofile-admin.php:95
277
  msgid "Delete"
278
  msgstr ""
279
 
280
- #: bp-activity/bp-activity-templatetags.php:786
281
  msgid "profile"
282
  msgstr ""
283
 
284
- #: bp-activity/bp-activity-templatetags.php:786
285
  msgid "friends"
286
  msgstr ""
287
 
288
- #: bp-activity/bp-activity-templatetags.php:786 bp-core/bp-core-classes.php:98
289
  msgid "groups"
290
  msgstr ""
291
 
292
- #: bp-activity/bp-activity-templatetags.php:786
293
  msgid "status"
294
  msgstr ""
295
 
296
- #: bp-activity/bp-activity-templatetags.php:786
297
  msgid "blogs"
298
  msgstr ""
299
 
300
- #: bp-activity/bp-activity-templatetags.php:794
301
  msgid "Clear Filter"
302
  msgstr ""
303
 
@@ -366,38 +351,38 @@ msgstr ""
366
  msgid "Site Wide Activity Feed"
367
  msgstr ""
368
 
369
- #: bp-blogs.php:133
370
  #, php-format
371
  msgid "Blogs <span>(%d)</span>"
372
  msgstr ""
373
 
374
- #: bp-blogs.php:141 bp-core/bp-core-adminbar.php:113
375
  msgid "My Blogs"
376
  msgstr ""
377
 
378
- #: bp-blogs.php:225
379
  msgid "New blog created"
380
  msgstr ""
381
 
382
- #: bp-blogs.php:226
383
  msgid "New blog post published"
384
  msgstr ""
385
 
386
- #: bp-blogs.php:227
387
  msgid "New blog post comment posted"
388
  msgstr ""
389
 
390
- #: bp-blogs.php:380
391
  #, php-format
392
  msgid "%s created the blog %s"
393
  msgstr ""
394
 
395
- #: bp-blogs.php:428 bp-blogs.php:463
396
  #, php-format
397
  msgid "%s wrote a new blog post: %s"
398
  msgstr ""
399
 
400
- #: bp-blogs.php:520
401
  #, php-format
402
  msgid "%s commented on the blog post %s"
403
  msgstr ""
@@ -497,7 +482,7 @@ msgid ""
497
  "\">Login</a> as \"%4$s\" using your existing password."
498
  msgstr ""
499
 
500
- #: bp-blogs/bp-blogs-templatetags.php:470
501
  #: bp-themes/bp-default/blogs/create.php:10
502
  #: bp-themes/bp-default/blogs/index.php:8
503
  msgid "Create a Blog"
@@ -520,22 +505,15 @@ msgstr ""
520
 
521
  #: bp-blogs/bp-blogs-templatetags.php:495 bp-core/bp-core-templatetags.php:385
522
  #: bp-core/bp-core-templatetags.php:391
523
- #: bp-forums/bp-forums-templatetags.php:974
524
- #: bp-forums/bp-forums-templatetags.php:980
525
- #: bp-groups/bp-groups-templatetags.php:1677
526
- #: bp-groups/bp-groups-templatetags.php:1683
527
  #: bp-themes/bp-default/_inc/ajax.php:56
528
  msgid "Search anything..."
529
  msgstr ""
530
 
531
  #: bp-blogs/bp-blogs-templatetags.php:496 bp-core/bp-core-templatetags.php:392
532
- #: bp-core/bp-core-templatetags.php:1014
533
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:624
534
- #: bp-forums/bbpress/bb-includes/class.bb-query.php:1017
535
- #: bp-forums/bbpress/bb-templates/kakumei/rss2.php:18
536
- #: bp-forums/bbpress/bb-templates/kakumei/search.php:3
537
- #: bp-forums/bp-forums-templatetags.php:981
538
- #: bp-groups/bp-groups-templatetags.php:1684
539
  #: bp-themes/bp-default/header.php:91 bp-themes/bp-default/searchform.php:5
540
  msgid "Search"
541
  msgstr ""
@@ -557,7 +535,6 @@ msgid "BuddyPress"
557
  msgstr ""
558
 
559
  #: bp-core.php:298 bp-core/bp-core-settings.php:70
560
- #: bp-forums/bbpress/bb-admin/options-general.php:219
561
  msgid "General Settings"
562
  msgstr ""
563
 
@@ -565,12 +542,11 @@ msgstr ""
565
  msgid "Component Setup"
566
  msgstr ""
567
 
568
- #: bp-core.php:344 bp-forums/bbpress/bb-includes/functions.bb-template.php:222
569
- #: bp-forums/bbpress/bb-templates/kakumei/profile.php:3 bp-xprofile.php:179
570
  msgid "Profile"
571
  msgstr ""
572
 
573
- #: bp-core.php:355 bp-groups/bp-groups-templatetags.php:410
574
  #: bp-xprofile.php:184
575
  msgid "Public"
576
  msgstr ""
@@ -580,107 +556,103 @@ msgstr ""
580
  msgid "My Profile"
581
  msgstr ""
582
 
583
- #: bp-core.php:459
584
  msgid "User marked as spammer. Spam users are visible only to site admins."
585
  msgstr ""
586
 
587
- #: bp-core.php:461
588
  msgid "User removed as spammer."
589
  msgstr ""
590
 
591
- #: bp-core.php:495
592
  #, php-format
593
  msgid "%s has been deleted from the system."
594
  msgstr ""
595
 
596
- #: bp-core.php:497
597
  #, php-format
598
  msgid "There was an error deleting %s from the system. Please try again."
599
  msgstr ""
600
 
601
- #: bp-core.php:1275 bp-core/bp-core-templatetags.php:810
602
  msgid "at"
603
  msgstr ""
604
 
605
- #: bp-core.php:1379
606
  msgid "year"
607
  msgstr ""
608
 
609
- #: bp-core.php:1379
610
  msgid "years"
611
  msgstr ""
612
 
613
- #: bp-core.php:1380
614
  msgid "month"
615
  msgstr ""
616
 
617
- #: bp-core.php:1380
618
  msgid "months"
619
  msgstr ""
620
 
621
- #: bp-core.php:1381
622
  msgid "week"
623
  msgstr ""
624
 
625
- #: bp-core.php:1381
626
  msgid "weeks"
627
  msgstr ""
628
 
629
- #: bp-core.php:1382
630
  msgid "day"
631
  msgstr ""
632
 
633
- #: bp-core.php:1382
634
  msgid "days"
635
  msgstr ""
636
 
637
- #: bp-core.php:1383
638
  msgid "hour"
639
  msgstr ""
640
 
641
- #: bp-core.php:1383 bp-forums/bbpress/bb-admin/options-general.php:116
642
  msgid "hours"
643
  msgstr ""
644
 
645
- #: bp-core.php:1384
646
  msgid "minute"
647
  msgstr ""
648
 
649
- #: bp-core.php:1384 bp-forums/bbpress/bb-admin/options-writing.php:40
650
  msgid "minutes"
651
  msgstr ""
652
 
653
- #: bp-core.php:1385
654
  msgid "second"
655
  msgstr ""
656
 
657
- #: bp-core.php:1385 bp-core.php:1437
658
  msgid "seconds"
659
  msgstr ""
660
 
661
- #: bp-core.php:1404
662
  msgid "sometime"
663
  msgstr ""
664
 
665
- #: bp-core.php:1432
666
  msgid ",|Separator in time since"
667
  msgstr ""
668
 
669
- #: bp-core.php:1484
670
  msgid "not recently active"
671
  msgstr ""
672
 
673
- #: bp-core.php:1700
674
- msgid "noreply"
675
- msgstr ""
676
-
677
- #: bp-core.php:1975
678
  msgid ""
679
  "IMPORTANT: <a href=\"http://codex.buddypress.org/getting-started/upgrading-"
680
  "from-10x/\">Read this before attempting to update BuddyPress</a>"
681
  msgstr ""
682
 
683
- #: bp-core.php:2046
684
  #, php-format
685
  msgid ""
686
  "<strong>BuddyPress is almost ready</strong>. You must <a href=\"%s\">update "
@@ -688,60 +660,14 @@ msgid ""
688
  "work."
689
  msgstr ""
690
 
691
- #: bp-core.php:2054
692
  #, php-format
693
  msgid ""
694
  "<strong>BuddyPress is ready</strong>. You'll need to <a href='%s'>activate a "
695
  "BuddyPress compatible theme</a> to take advantage of all of the features. "
696
  "We've bundled a default theme, but you can always <a href='%s'>install some "
697
- "other compatible themes</a>."
698
- msgstr ""
699
-
700
- #: bp-core/bp-core-activation.php:19
701
- msgid "There was an error activating your account, please try again."
702
- msgstr ""
703
-
704
- #: bp-core/bp-core-activation.php:57
705
- #, php-format
706
- msgid "%s became a registered member"
707
- msgstr ""
708
-
709
- #: bp-core/bp-core-activation.php:66
710
- msgid "Your account is now active!"
711
- msgstr ""
712
-
713
- #: bp-core/bp-core-activation.php:113
714
- #, php-format
715
- msgid ""
716
- "Thanks for registering! To complete the activation of your account and blog, "
717
- "please click the following link:\n"
718
- "\n"
719
- "%s\n"
720
- "\n"
721
- "\n"
722
- "\n"
723
- "After you activate, you can visit your blog here:\n"
724
- "\n"
725
- "%s"
726
- msgstr ""
727
-
728
- #: bp-core/bp-core-activation.php:114
729
- #, php-format
730
- msgid "Activate %s"
731
- msgstr ""
732
-
733
- #: bp-core/bp-core-activation.php:145
734
- #, php-format
735
- msgid ""
736
- "Thanks for registering! To complete the activation of your account please "
737
- "click the following link:\n"
738
- "\n"
739
- "%s\n"
740
- "\n"
741
- msgstr ""
742
-
743
- #: bp-core/bp-core-activation.php:146
744
- msgid "Activate Your Account"
745
  msgstr ""
746
 
747
  #: bp-core/bp-core-admin.php:32
@@ -795,17 +721,14 @@ msgid ""
795
  msgstr ""
796
 
797
  #: bp-core/bp-core-admin.php:110
798
- #: bp-forums/bbpress/bb-admin/options-discussion.php:76
799
  msgid "Mystery Man"
800
  msgstr ""
801
 
802
  #: bp-core/bp-core-admin.php:111
803
- #: bp-forums/bbpress/bb-admin/options-discussion.php:79
804
  msgid "Identicon (Generated)"
805
  msgstr ""
806
 
807
  #: bp-core/bp-core-admin.php:112
808
- #: bp-forums/bbpress/bb-admin/options-discussion.php:80
809
  msgid "Wavatar (Generated)"
810
  msgstr ""
811
 
@@ -912,61 +835,56 @@ msgid "My Account"
912
  msgstr ""
913
 
914
  #: bp-core/bp-core-adminbar.php:94 bp-core/bp-core-templatetags.php:455
915
- #: bp-core/bp-core-templatetags.php:457 bp-core/bp-core-templatetags.php:1025
916
- #: bp-core/bp-core-templatetags.php:1027
917
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2729
918
- #: bp-themes/bp-default/sidebar.php:18
919
  msgid "Log Out"
920
  msgstr ""
921
 
922
- #: bp-core/bp-core-adminbar.php:127
923
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:55
924
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:56
925
- #: bp-forums/bbpress/bb-admin/index.php:46
926
  msgid "Dashboard"
927
  msgstr ""
928
 
929
- #: bp-core/bp-core-adminbar.php:128
930
  msgid "New Post"
931
  msgstr ""
932
 
933
- #: bp-core/bp-core-adminbar.php:129
934
  msgid "Manage Posts"
935
  msgstr ""
936
 
937
- #: bp-core/bp-core-adminbar.php:130
938
  msgid "Manage Comments"
939
  msgstr ""
940
 
941
- #: bp-core/bp-core-adminbar.php:142
942
  msgid "Create a Blog!"
943
  msgstr ""
944
 
945
- #: bp-core/bp-core-adminbar.php:158 bp-core/bp-core-settings.php:22
946
  msgid "Notifications"
947
  msgstr ""
948
 
949
- #: bp-core/bp-core-adminbar.php:176
950
  msgid "No new notifications."
951
  msgstr ""
952
 
953
- #: bp-core/bp-core-adminbar.php:197
954
  msgid "Blog Authors"
955
  msgstr ""
956
 
957
- #: bp-core/bp-core-adminbar.php:221
958
  msgid "Visit"
959
  msgstr ""
960
 
961
- #: bp-core/bp-core-adminbar.php:223
962
  msgid "Random Member"
963
  msgstr ""
964
 
965
- #: bp-core/bp-core-adminbar.php:226
966
  msgid "Random Group"
967
  msgstr ""
968
 
969
- #: bp-core/bp-core-adminbar.php:230
970
  msgid "Random Blog"
971
  msgstr ""
972
 
@@ -1013,7 +931,7 @@ msgstr ""
1013
  msgid "Upload Failed! Error was: %s"
1014
  msgstr ""
1015
 
1016
- #: bp-core/bp-core-catchuri.php:247
1017
  msgid ""
1018
  "This user has been marked as a spammer. Only site admins can view this "
1019
  "profile."
@@ -1027,14 +945,53 @@ msgstr ""
1027
  msgid "Are you sure?"
1028
  msgstr ""
1029
 
1030
- #: bp-core/bp-core-settings.php:17
1031
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:87
1032
- #: bp-groups.php:90
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1033
  msgid "Settings"
1034
  msgstr ""
1035
 
1036
  #: bp-core/bp-core-settings.php:21
1037
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:88
1038
  msgid "General"
1039
  msgstr ""
1040
 
@@ -1067,20 +1024,11 @@ msgid "Repeat New Password"
1067
  msgstr ""
1068
 
1069
  #: bp-core/bp-core-settings.php:97 bp-core/bp-core-settings.php:150
1070
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:916
1071
- #: bp-forums/bbpress/bb-admin/options-discussion.php:123
1072
- #: bp-forums/bbpress/bb-admin/options-general.php:236
1073
- #: bp-forums/bbpress/bb-admin/options-permalinks.php:164
1074
- #: bp-forums/bbpress/bb-admin/options-reading.php:61
1075
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:183
1076
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:303
1077
- #: bp-forums/bbpress/bb-admin/options-writing.php:78
1078
- #: bp-forums/bbpress/bb-plugins/akismet.php:95
1079
  #: bp-themes/bp-default/groups/single/admin.php:32
1080
  #: bp-themes/bp-default/groups/single/admin.php:100
1081
  #: bp-themes/bp-default/groups/single/forum/edit.php:32
1082
  #: bp-themes/bp-default/groups/single/forum/edit.php:50
1083
- #: bp-themes/bp-default/members/single/profile/edit.php:107
1084
  msgid "Save Changes"
1085
  msgstr ""
1086
 
@@ -1110,38 +1058,91 @@ msgstr ""
1110
  msgid "Delete My Account"
1111
  msgstr ""
1112
 
1113
- #: bp-core/bp-core-signup.php:46
1114
  msgid "Please make sure you enter your password twice"
1115
  msgstr ""
1116
 
1117
- #: bp-core/bp-core-signup.php:50
1118
  msgid "The passwords you entered do not match."
1119
  msgstr ""
1120
 
1121
- #: bp-core/bp-core-signup.php:67
1122
  msgid "This is a required field"
1123
  msgstr ""
1124
 
1125
- #: bp-core/bp-core-signup.php:156
1126
  msgid ""
1127
  "There was a problem uploading your avatar, please try uploading it again"
1128
  msgstr ""
1129
 
1130
- #: bp-core/bp-core-signup.php:184 bp-xprofile.php:395
1131
  msgid "There was a problem cropping your avatar, please try uploading it again"
1132
  msgstr ""
1133
 
1134
- #: bp-core/bp-core-signup.php:186
1135
  msgid "Your new avatar was uploaded successfully"
1136
  msgstr ""
1137
 
1138
- #: bp-core/bp-core-signup.php:211
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1139
  #, php-format
1140
  msgid ""
1141
  "<strong>ERROR</strong>: Couldn&#8217;t register you... please contact the <a "
1142
  "href=\"mailto:%s\">webmaster</a> !"
1143
  msgstr ""
1144
 
 
 
 
 
 
 
 
 
 
1145
  #: bp-core/bp-core-templatetags.php:184
1146
  #, php-format
1147
  msgid "Viewing member %s to %s (of %s active members)"
@@ -1185,13 +1186,7 @@ msgstr ""
1185
  msgid "Options"
1186
  msgstr ""
1187
 
1188
- #: bp-core/bp-core-templatetags.php:733
1189
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:646
1190
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:650
1191
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:660
1192
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:664
1193
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:926
1194
- #: bp-themes/bp-default/comments.php:111
1195
  msgid "Name"
1196
  msgstr ""
1197
 
@@ -1199,9 +1194,7 @@ msgstr ""
1199
  msgid "About Me"
1200
  msgstr ""
1201
 
1202
- #: bp-core/bp-core-templatetags.php:753
1203
- #: bp-forums/bbpress/bb-includes/functions.bb-core.php:901
1204
- #: bp-themes/bp-default/comments.php:121
1205
  msgid "Website"
1206
  msgstr ""
1207
 
@@ -1249,5368 +1242,97 @@ msgstr ""
1249
  msgid "Create an Account"
1250
  msgstr ""
1251
 
1252
- #: bp-core/bp-core-templatetags.php:918
1253
- #: bp-themes/bp-default/registration/activate.php:28
1254
- msgid "Activate your Account"
1255
- msgstr ""
1256
-
1257
- #: bp-core/bp-core-templatetags.php:988 bp-core/bp-core-widgets.php:15
1258
- #: bp-themes/bp-default/groups/single/admin.php:174
1259
- #: bp-themes/bp-default/header.php:58
1260
- msgid "Members"
1261
- msgstr ""
1262
-
1263
- #: bp-core/bp-core-templatetags.php:996
1264
- #: bp-forums/bbpress/bb-admin/forums.php:42
1265
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:65
1266
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:66
1267
- #: bp-forums/bbpress/bb-templates/kakumei/front-page.php:48
1268
- #: bp-forums/bp-forums-admin.php:159 bp-themes/bp-default/header.php:68
1269
- msgid "Forums"
1270
- msgstr ""
1271
-
1272
- #: bp-core/bp-core-templatetags.php:1000 bp-themes/bp-default/header.php:75
1273
- msgid "Blogs"
1274
- msgstr ""
1275
-
1276
- #: bp-core/bp-core-templatetags.php:1180
1277
- msgid "Your Avatar"
1278
- msgstr ""
1279
-
1280
- #: bp-core/bp-core-templatetags.php:1256
1281
- msgid "a user"
1282
- msgstr ""
1283
-
1284
- #: bp-core/bp-core-widgets.php:34 bp-friends/bp-friends-templatetags.php:7
1285
- #: bp-friends/bp-friends-templatetags.php:23
1286
- #: bp-groups/bp-groups-widgets.php:32 bp-themes/bp-default/blogs/index.php:31
1287
- #: bp-themes/bp-default/members/single/blogs.php:9
1288
- msgid "Newest"
1289
- msgstr ""
1290
-
1291
- #: bp-core/bp-core-widgets.php:35 bp-groups/bp-groups-widgets.php:33
1292
- msgid "Active"
1293
- msgstr ""
1294
-
1295
- #: bp-core/bp-core-widgets.php:36 bp-groups/bp-groups-widgets.php:34
1296
- msgid "Popular"
1297
- msgstr ""
1298
-
1299
- #: bp-core/bp-core-widgets.php:60
1300
- msgid "No one has signed up yet!"
1301
- msgstr ""
1302
-
1303
- #: bp-core/bp-core-widgets.php:81 bp-core/bp-core-widgets.php:135
1304
- #: bp-core/bp-core-widgets.php:189
1305
- msgid "Max Members to show:"
1306
- msgstr ""
1307
-
1308
- #: bp-core/bp-core-widgets.php:90
1309
- msgid "Who's Online Avatars"
1310
- msgstr ""
1311
-
1312
- #: bp-core/bp-core-widgets.php:114
1313
- msgid "There are no users currently online"
1314
- msgstr ""
1315
-
1316
- #: bp-core/bp-core-widgets.php:144
1317
- msgid "Recently Active Member Avatars"
1318
- msgstr ""
1319
-
1320
- #: bp-core/bp-core-widgets.php:168
1321
- msgid "There are no recently active members"
1322
- msgstr ""
1323
-
1324
- #: bp-core/bp-core-widgets.php:237
1325
- msgid "There were no members found, please try another filter."
1326
- msgstr ""
1327
-
1328
- #: bp-core/bp-core-wpabstraction.php:103
1329
- msgid "Please enter a username"
1330
- msgstr ""
1331
-
1332
- #: bp-core/bp-core-wpabstraction.php:109
1333
- msgid "Only lowercase letters and numbers allowed"
1334
- msgstr ""
1335
-
1336
- #: bp-core/bp-core-wpabstraction.php:118
1337
- msgid "That username is not allowed"
1338
- msgstr ""
1339
-
1340
- #: bp-core/bp-core-wpabstraction.php:122
1341
- msgid "Username must be at least 4 characters"
1342
- msgstr ""
1343
-
1344
- #: bp-core/bp-core-wpabstraction.php:126
1345
- msgid "Sorry, usernames may not contain the character '_'!"
1346
- msgstr ""
1347
-
1348
- #: bp-core/bp-core-wpabstraction.php:132
1349
- msgid "Sorry, usernames must have letters too!"
1350
- msgstr ""
1351
-
1352
- #: bp-core/bp-core-wpabstraction.php:135
1353
- msgid "Please check your email address."
1354
- msgstr ""
1355
-
1356
- #: bp-core/bp-core-wpabstraction.php:141
1357
- msgid "Sorry, that email address is not allowed!"
1358
- msgstr ""
1359
-
1360
- #: bp-core/bp-core-wpabstraction.php:147
1361
- msgid "Sorry, that username already exists!"
1362
- msgstr ""
1363
-
1364
- #: bp-core/bp-core-wpabstraction.php:151
1365
- msgid "Sorry, that email address is already used!"
1366
- msgstr ""
1367
-
1368
- #: bp-forums.php:56
1369
- msgid "The forums component has not been set up yet."
1370
- msgstr ""
1371
-
1372
- #: bp-forums.php:76 bp-groups.php:550
1373
- msgid "There was an error when creating the topic"
1374
- msgstr ""
1375
-
1376
- #: bp-forums.php:78 bp-groups.php:552
1377
- msgid "The topic was created successfully"
1378
- msgstr ""
1379
-
1380
- #: bp-forums.php:101 bp-forums/bp-forums-admin.php:8
1381
- msgid "Forums Setup"
1382
- msgstr ""
1383
-
1384
- #: bp-forums/bbpress/bb-admin/admin-base.php:13
1385
- msgid "Page not found"
1386
- msgstr ""
1387
-
1388
- #: bp-forums/bbpress/bb-admin/admin-base.php:15
1389
- msgid ""
1390
- "There is no administration page at the requested address. Please check the "
1391
- "address you entered and try again."
1392
- msgstr ""
1393
-
1394
- #: bp-forums/bbpress/bb-admin/admin-footer.php:8
1395
- #: bp-forums/bbpress/bb-templates/kakumei/footer.php:11
1396
- #, php-format
1397
- msgid "This page generated in %s seconds, using %d queries."
1398
- msgstr ""
1399
-
1400
- #: bp-forums/bbpress/bb-admin/admin-footer.php:21
1401
- #, php-format
1402
- msgid ""
1403
- "Thank you for using <a href=\"%s\">bbPress</a>. | <a href=\"%s"
1404
- "\">Documentation</a> | <a href=\"%s\">Feedback</a>"
1405
- msgstr ""
1406
-
1407
- #: bp-forums/bbpress/bb-admin/admin-footer.php:28
1408
- #: bp-forums/bbpress/bb-admin/plugins.php:226
1409
- #, php-format
1410
- msgid "Version %s"
1411
- msgstr ""
1412
-
1413
- #: bp-forums/bbpress/bb-admin/admin-header.php:40
1414
- msgid "Visit Site"
1415
- msgstr ""
1416
-
1417
- #: bp-forums/bbpress/bb-admin/admin-header.php:43
1418
- #, php-format
1419
- msgid "Howdy, %1$s"
1420
- msgstr ""
1421
-
1422
- #: bp-forums/bbpress/bb-admin/bb-forum.php:5
1423
- msgid "You don't have the authority to mess with the forums."
1424
- msgstr ""
1425
-
1426
- #: bp-forums/bbpress/bb-admin/bb-forum.php:17
1427
- msgid "Bad forum name. Go back and try again."
1428
- msgstr ""
1429
-
1430
- #: bp-forums/bbpress/bb-admin/bb-forum.php:25
1431
- msgid "The forum was not added"
1432
- msgstr ""
1433
-
1434
- #: bp-forums/bbpress/bb-admin/bb-forum.php:32
1435
- msgid "No forums to update!"
1436
- msgstr ""
1437
-
1438
- #: bp-forums/bbpress/bb-admin/bb-forum.php:47
1439
- msgid "You don't have the authority to kill off the forums."
1440
- msgstr ""
1441
-
1442
- #: bp-forums/bbpress/bb-admin/bb-forum.php:53
1443
- msgid "Error occured while trying to delete forum"
1444
- msgstr ""
1445
-
1446
- #: bp-forums/bbpress/bb-admin/delete-post.php:18
1447
- msgid "There is a problem with that post, pardner."
1448
- msgstr ""
1449
-
1450
- #: bp-forums/bbpress/bb-admin/delete-topic.php:17
1451
- #: bp-forums/bbpress/bb-admin/sticky.php:9
1452
- #: bp-forums/bbpress/bb-admin/topic-toggle.php:8
1453
- msgid "There is a problem with that topic, pardner."
1454
- msgstr ""
1455
-
1456
- #: bp-forums/bbpress/bb-admin/export.php:19
1457
- msgid "Either export is disabled or you are not allowed to export."
1458
- msgstr ""
1459
-
1460
- #: bp-forums/bbpress/bb-admin/forums.php:19
1461
- msgid "<strong>Forum Updated.</strong>"
1462
- msgstr ""
1463
-
1464
- #: bp-forums/bbpress/bb-admin/forums.php:23
1465
- #, php-format
1466
- msgid ""
1467
- "<strong>Forum deleted.</strong> You should <a href=\"%s\">recount your site "
1468
- "information</a>."
1469
- msgstr ""
1470
-
1471
- #: bp-forums/bbpress/bb-admin/forums.php:33
1472
- #, php-format
1473
- msgid "Are you sure you want to delete the \"<strong>%s</strong>\" forum?"
1474
- msgstr ""
1475
-
1476
- #: bp-forums/bbpress/bb-admin/forums.php:51
1477
- #: bp-forums/bbpress/bb-admin/forums.php:80
1478
- msgid "Delete Forum"
1479
- msgstr ""
1480
-
1481
- #: bp-forums/bbpress/bb-admin/forums.php:52
1482
- msgid "This forum contains:"
1483
- msgstr ""
1484
-
1485
- #: bp-forums/bbpress/bb-admin/forums.php:54
1486
- #: bp-groups/bp-groups-templatetags.php:619
1487
- #, php-format
1488
- msgid "%d topic"
1489
- msgid_plural "%d topics"
1490
- msgstr[0] ""
1491
- msgstr[1] ""
1492
-
1493
- #: bp-forums/bbpress/bb-admin/forums.php:55
1494
- #: bp-forums/bp-forums-templatetags.php:453
1495
- #: bp-groups/bp-groups-templatetags.php:653
1496
- #, php-format
1497
- msgid "%d post"
1498
- msgid_plural "%d posts"
1499
- msgstr[0] ""
1500
- msgstr[1] ""
1501
-
1502
- #: bp-forums/bbpress/bb-admin/forums.php:58
1503
- #: bp-xprofile/bp-xprofile-admin.php:76
1504
- msgid "Action"
1505
- msgstr ""
1506
-
1507
- #: bp-forums/bbpress/bb-admin/forums.php:61
1508
- msgid ""
1509
- "Delete all topics and posts in this forum. <em>This can never be undone.</em>"
1510
- msgstr ""
1511
-
1512
- #: bp-forums/bbpress/bb-admin/forums.php:64
1513
- msgid "Move topics from this forum into the replacement forum below."
1514
- msgstr ""
1515
-
1516
- #: bp-forums/bbpress/bb-admin/forums.php:69
1517
- msgid "Replacement forum"
1518
- msgstr ""
1519
-
1520
- #: bp-forums/bbpress/bb-admin/forums.php:79
1521
- #: bp-themes/bp-default/forums/index.php:50
1522
- #: bp-xprofile/bp-xprofile-classes.php:626
1523
- msgid "Cancel"
1524
- msgstr ""
1525
-
1526
- #: bp-forums/bbpress/bb-admin/forums.php:89
1527
- #: bp-forums/bbpress/bb-includes/class.bb-query.php:942
1528
- #: bp-forums/bbpress/bb-templates/kakumei/post-form.php:20 bp-groups.php:207
1529
- msgid "Forum"
1530
- msgstr ""
1531
-
1532
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:193
1533
- #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1210
1534
- msgid "bbPress &rsaquo; Error"
1535
- msgstr ""
1536
-
1537
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:194
1538
- msgid "Oh dear!"
1539
- msgstr ""
1540
-
1541
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:198
1542
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:208
1543
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:218
1544
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:228
1545
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:239
1546
- #, php-format
1547
- msgid "%1$s &rsaquo; %2$s"
1548
- msgstr ""
1549
-
1550
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:198
1551
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:208
1552
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:218
1553
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:228
1554
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:239
1555
- msgid "bbPress installer"
1556
- msgstr ""
1557
-
1558
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:198
1559
- msgid "Welcome"
1560
- msgstr ""
1561
-
1562
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:199
1563
- msgid "Welcome to the bbPress installer"
1564
- msgstr ""
1565
-
1566
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:203
1567
- msgid "We're now going to go through a few steps to get you up and running."
1568
- msgstr ""
1569
-
1570
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:204
1571
- msgid "Ready? Then let's get started!"
1572
- msgstr ""
1573
-
1574
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:208
1575
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:209
1576
- msgid "Step 1"
1577
- msgstr ""
1578
-
1579
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:209
1580
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:219
1581
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:229
1582
- #, php-format
1583
- msgid "%1$s - %2$s"
1584
- msgstr ""
1585
-
1586
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:209
1587
- msgid "Database configuration"
1588
- msgstr ""
1589
-
1590
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:212
1591
- msgid ""
1592
- "In this step you need to enter your database connection details. The "
1593
- "installer will attempt to create a file called <code>bb-config.php</code> in "
1594
- "the root directory of your bbPress installation."
1595
- msgstr ""
1596
-
1597
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:213
1598
- msgid "If you're not sure what to put here, contact your web hosting provider."
1599
- msgstr ""
1600
-
1601
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:218
1602
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:219
1603
- msgid "Step 2"
1604
- msgstr ""
1605
-
1606
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:219
1607
- msgid "WordPress integration (optional)"
1608
- msgstr ""
1609
-
1610
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:220
1611
- msgid "&laquo; skipped"
1612
- msgstr ""
1613
-
1614
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:222
1615
- msgid ""
1616
- "bbPress can integrate login and user data seamlessly with WordPress. You can "
1617
- "safely skip this step if you do not wish to integrate with an existing "
1618
- "WordPress install."
1619
- msgstr ""
1620
-
1621
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:228
1622
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:229
1623
- msgid "Step 3"
1624
- msgstr ""
1625
-
1626
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:229
1627
- msgid "Site settings"
1628
- msgstr ""
1629
-
1630
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:232
1631
- msgid ""
1632
- "Finalize your installation by adding a name, your first user and your first "
1633
- "forum."
1634
- msgstr ""
1635
-
1636
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:239
1637
- msgid "Finished"
1638
- msgstr ""
1639
-
1640
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:240
1641
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:2181
1642
- msgid "Installation complete!"
1643
- msgstr ""
1644
-
1645
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:257
1646
- msgid ""
1647
- "Your PHP installation appears to be missing the MySQL extension which is "
1648
- "required for bbPress"
1649
- msgstr ""
1650
-
1651
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:262
1652
- msgid ""
1653
- "Please complete your installation before attempting to include WordPress "
1654
- "within bbPress"
1655
- msgstr ""
1656
-
1657
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:343
1658
- msgid "Installation language"
1659
- msgstr ""
1660
-
1661
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:355
1662
- msgid "Sets the language to be used during the installation process only."
1663
- msgstr ""
1664
-
1665
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:472
1666
- msgid ""
1667
- "An old <code>config.php</code> file has been detected in your installation. "
1668
- "You should remove it and run the <a href=\"install.php\">installer</a> "
1669
- "again. You can use the same database connection details if you do."
1670
- msgstr ""
1671
-
1672
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:485
1673
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1117
1674
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1125
1675
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1137
1676
- msgid "&laquo; completed"
1677
- msgstr ""
1678
-
1679
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:493
1680
- msgid ""
1681
- "A valid configuration file was found at <code>bb-config.php</code><br />You "
1682
- "may continue to the next step."
1683
- msgstr ""
1684
-
1685
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:498
1686
- msgid ""
1687
- "An invalid configuration file was found at <code>bb-config.php</code><br /"
1688
- ">The installation cannot continue."
1689
- msgstr ""
1690
-
1691
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:499
1692
- msgid ""
1693
- "Usually this is caused by one of the database connection settings being "
1694
- "incorrect. Make sure that the specified user has appropriate permission to "
1695
- "access the database."
1696
- msgstr ""
1697
-
1698
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:509
1699
- msgid "bbPress is already installed, but appears to require an upgrade."
1700
- msgstr ""
1701
-
1702
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:511
1703
- msgid "bbPress is already installed."
1704
- msgstr ""
1705
-
1706
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:514
1707
- #, php-format
1708
- msgid "Perhaps you meant to run the <a href=\"%s\">upgrade script</a> instead?"
1709
- msgstr ""
1710
-
1711
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:524
1712
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1323
1713
- msgid ""
1714
- "I could not find the file <code>bb-config-sample.php</code><br />Please "
1715
- "upload it to the root directory of your bbPress installation."
1716
- msgstr ""
1717
-
1718
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:530
1719
- msgid ""
1720
- "There doesn't seem to be a <code>bb-config.php</code> file. This usually "
1721
- "means that you want to install bbPress."
1722
- msgstr ""
1723
-
1724
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:617
1725
- msgid "Go to step 1"
1726
- msgstr ""
1727
-
1728
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:625
1729
- msgid "Database name"
1730
- msgstr ""
1731
-
1732
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:626
1733
- msgid "The name of the database in which you want to run bbPress."
1734
- msgstr ""
1735
-
1736
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:630
1737
- msgid "Database user"
1738
- msgstr ""
1739
-
1740
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:631
1741
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:838
1742
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:129
1743
- msgid "The database user that has access to that database."
1744
- msgstr ""
1745
-
1746
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:637
1747
- msgid "Database password"
1748
- msgstr ""
1749
-
1750
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:638
1751
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:846
1752
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:133
1753
- msgid "That database user's password."
1754
- msgstr ""
1755
-
1756
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:643
1757
- msgid "Language"
1758
- msgstr ""
1759
-
1760
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:644
1761
- #, php-format
1762
- msgid ""
1763
- "The language which bbPress will be presented in once installed. Your current "
1764
- "installer language choice (%s) will be the same for the rest of the install "
1765
- "process."
1766
- msgstr ""
1767
-
1768
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:648
1769
- msgid "Show advanced settings"
1770
- msgstr ""
1771
-
1772
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:649
1773
- msgid "These settings usually do not have to be changed."
1774
- msgstr ""
1775
-
1776
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:655
1777
- msgid "Database host"
1778
- msgstr ""
1779
-
1780
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:656
1781
- msgid ""
1782
- "The domain name or IP address of the server where the database is located. "
1783
- "If the database is on the same server as the web site, then this probably "
1784
- "should remain <strong>localhost</strong>."
1785
- msgstr ""
1786
-
1787
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:661
1788
- msgid "Database character set"
1789
- msgstr ""
1790
-
1791
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:662
1792
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:859
1793
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:141
1794
- msgid ""
1795
- "The best choice is <strong>utf8</strong>, but you will need to match the "
1796
- "character set which you created the database with."
1797
- msgstr ""
1798
-
1799
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:667
1800
- msgid "Database character collation"
1801
- msgstr ""
1802
-
1803
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:668
1804
- msgid "The character collation value set when the database was created."
1805
- msgstr ""
1806
-
1807
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:699
1808
- msgid "Table name prefix"
1809
- msgstr ""
1810
-
1811
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:700
1812
- msgid ""
1813
- "If you are running multiple bbPress sites in a single database, you will "
1814
- "probably want to change this."
1815
- msgstr ""
1816
-
1817
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:705
1818
- msgid "Contents for <code>bb-config.php</code>"
1819
- msgstr ""
1820
-
1821
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:706
1822
- msgid ""
1823
- "Once you have created the configuration file, you can check for it below."
1824
- msgstr ""
1825
-
1826
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:709
1827
- msgid "Save database configuration file"
1828
- msgstr ""
1829
-
1830
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:712
1831
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:884
1832
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:931
1833
- msgid "&laquo; Go back"
1834
- msgstr ""
1835
-
1836
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:715
1837
- msgid "Check for configuration file"
1838
- msgstr ""
1839
-
1840
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:718
1841
- msgid "Go to step 2"
1842
- msgstr ""
1843
-
1844
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:727
1845
- msgid "Add integration settings"
1846
- msgstr ""
1847
-
1848
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:728
1849
- msgid "If you want to integrate bbPress with an existing WordPress site."
1850
- msgstr ""
1851
-
1852
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:733
1853
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:881
1854
- msgid "Skip WordPress integration"
1855
- msgstr ""
1856
-
1857
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:734
1858
- msgid "Save WordPress integration settings"
1859
- msgstr ""
1860
-
1861
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:739
1862
- msgid "Add cookie integration settings"
1863
- msgstr ""
1864
-
1865
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:740
1866
- msgid "If you want to allow shared logins with an existing WordPress site."
1867
- msgstr ""
1868
-
1869
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:747
1870
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:67
1871
- msgid "WordPress address (URL)"
1872
- msgstr ""
1873
-
1874
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:748
1875
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:69
1876
- msgid ""
1877
- "This value should exactly match the <strong>WordPress address (URL)</strong> "
1878
- "setting in your WordPress general settings."
1879
- msgstr ""
1880
-
1881
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:753
1882
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:72
1883
- msgid "Blog address (URL)"
1884
- msgstr ""
1885
-
1886
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:754
1887
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:74
1888
- msgid ""
1889
- "This value should exactly match the <strong>Blog address (URL)</strong> "
1890
- "setting in your WordPress general settings."
1891
- msgstr ""
1892
-
1893
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:759
1894
- msgid "WordPress \"auth\" cookie key"
1895
- msgstr ""
1896
-
1897
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:760
1898
- msgid ""
1899
- "This value must match the value of the constant named \"AUTH_KEY\" in your "
1900
- "WordPress <code>wp-config.php</code> file. This will replace the bbPress "
1901
- "\"auth\" cookie key set in the first step."
1902
- msgstr ""
1903
-
1904
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:766
1905
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:77
1906
- msgid "WordPress \"auth\" cookie salt"
1907
- msgstr ""
1908
-
1909
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:767
1910
- msgid ""
1911
- "This must match the value of the WordPress setting named \"auth_salt\" in "
1912
- "your WordPress site. Look for the option labeled \"auth_salt\" in <a href=\"#"
1913
- "\" id=\"getAuthSaltOption\" onclick=\"window.open(this.href); return false;"
1914
- "\">this WordPress admin page</a>. If you leave this blank the installer will "
1915
- "try to fetch the value based on your WordPress database integration settings."
1916
- msgstr ""
1917
-
1918
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:773
1919
- msgid "WordPress \"secure auth\" cookie key"
1920
- msgstr ""
1921
-
1922
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:774
1923
- msgid ""
1924
- "This value must match the value of the constant named \"SECURE_AUTH_KEY\" in "
1925
- "your WordPress <code>wp-config.php</code> file. This will replace the "
1926
- "bbPress \"secure auth\" cookie key set in the first step."
1927
- msgstr ""
1928
-
1929
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:780
1930
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:81
1931
- msgid "WordPress \"secure auth\" cookie salt"
1932
- msgstr ""
1933
-
1934
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:781
1935
- msgid ""
1936
- "This must match the value of the WordPress setting named \"secure_auth_salt"
1937
- "\" in your WordPress site. Look for the option labeled \"secure_auth_salt\" "
1938
- "in <a href=\"#\" id=\"getSecureAuthSaltOption\" onclick=\"window.open(this."
1939
- "href); return false;\">this WordPress admin page</a>. If you leave this "
1940
- "blank the installer will try to fetch the value based on your WordPress "
1941
- "database integration settings. Sometimes this value is not set in WordPress, "
1942
- "in that case you can leave this setting blank as well."
1943
- msgstr ""
1944
-
1945
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:787
1946
- msgid "WordPress \"logged in\" cookie key"
1947
- msgstr ""
1948
-
1949
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:788
1950
- msgid ""
1951
- "This value must match the value of the constant named \"LOGGED_IN_KEY\" in "
1952
- "your WordPress <code>wp-config.php</code> file. This will replace the "
1953
- "bbPress \"logged in\" cookie key set in the first step."
1954
- msgstr ""
1955
-
1956
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:794
1957
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:85
1958
- msgid "WordPress \"logged in\" cookie salt"
1959
- msgstr ""
1960
-
1961
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:795
1962
- msgid ""
1963
- "This must match the value of the WordPress setting named \"logged_in_salt\" "
1964
- "in your WordPress site. Look for the option labeled \"logged_in_salt\" in <a "
1965
- "href=\"#\" id=\"getLoggedInSaltOption\" onclick=\"window.open(this.href); "
1966
- "return false;\">this WordPress admin page</a>. If you leave this blank the "
1967
- "installer will try to fetch the value based on your WordPress database "
1968
- "integration settings."
1969
- msgstr ""
1970
-
1971
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:801
1972
- msgid "Add user database integration settings"
1973
- msgstr ""
1974
-
1975
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:802
1976
- msgid "If you want to share user data with an existing WordPress site."
1977
- msgstr ""
1978
-
1979
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:810
1980
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:103
1981
- msgid "User database table prefix"
1982
- msgstr ""
1983
-
1984
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:811
1985
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:104
1986
- msgid ""
1987
- "If your bbPress and WordPress sites share the same database, then this is "
1988
- "the same value as <code>$table_prefix</code> in your WordPress <code>wp-"
1989
- "config.php</code> file. It is usually <strong>wp_</strong>."
1990
- msgstr ""
1991
-
1992
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:817
1993
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:107
1994
- msgid "WordPress MU primary blog ID"
1995
- msgstr ""
1996
-
1997
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:818
1998
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:108
1999
- msgid ""
2000
- "If you are integrating with a WordPress MU site you need to specify the "
2001
- "primary blog ID for that site. It is usually <strong>1</strong>. You should "
2002
- "probably leave this blank if you are integrating with a standard WordPress "
2003
- "site"
2004
- msgstr ""
2005
-
2006
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:823
2007
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:111
2008
- msgid "Show advanced database settings"
2009
- msgstr ""
2010
-
2011
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:824
2012
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:115
2013
- msgid ""
2014
- "If your bbPress and WordPress site do not share the same database, then you "
2015
- "will need to add advanced settings."
2016
- msgstr ""
2017
-
2018
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:831
2019
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:124
2020
- msgid "User database name"
2021
- msgstr ""
2022
-
2023
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:832
2024
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:125
2025
- msgid "The name of the database in which your user tables reside."
2026
- msgstr ""
2027
-
2028
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:837
2029
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:128
2030
- msgid "User database user"
2031
- msgstr ""
2032
-
2033
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:845
2034
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:132
2035
- msgid "User database password"
2036
- msgstr ""
2037
-
2038
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:852
2039
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:136
2040
- msgid "User database host"
2041
- msgstr ""
2042
-
2043
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:853
2044
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:137
2045
- msgid ""
2046
- "The domain name or IP address of the server where the database is located. "
2047
- "If the database is on the same server as the web site, then this probably "
2048
- "should be <strong>localhost</strong>."
2049
- msgstr ""
2050
-
2051
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:858
2052
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:140
2053
- msgid "User database character set"
2054
- msgstr ""
2055
-
2056
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:864
2057
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:144
2058
- msgid "User database character collation"
2059
- msgstr ""
2060
-
2061
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:865
2062
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:145
2063
- msgid "The character collation value set when the user database was created."
2064
- msgstr ""
2065
-
2066
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:870
2067
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:151
2068
- msgid "User database \"user\" table"
2069
- msgstr ""
2070
-
2071
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:871
2072
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:877
2073
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:152
2074
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:156
2075
- msgid "The complete table name, including any prefix."
2076
- msgstr ""
2077
-
2078
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:876
2079
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:155
2080
- msgid "User database \"user meta\" table"
2081
- msgstr ""
2082
-
2083
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:887
2084
- msgid "Go to step 3"
2085
- msgstr ""
2086
-
2087
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:896
2088
- msgid "Site name"
2089
- msgstr ""
2090
-
2091
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:897
2092
- msgid "This is what you are going to call your bbPress site."
2093
- msgstr ""
2094
-
2095
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:901
2096
- msgid "Site address (URL)"
2097
- msgstr ""
2098
-
2099
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:902
2100
- msgid ""
2101
- "We have attempted to guess this, it's usually correct, but change it here if "
2102
- "you wish."
2103
- msgstr ""
2104
-
2105
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:907
2106
- msgid "\"Key Master\" Username"
2107
- msgstr ""
2108
-
2109
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:908
2110
- msgid ""
2111
- "This is the user login for the initial bbPress administrator (known as a "
2112
- "\"Key Master\")."
2113
- msgstr ""
2114
-
2115
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:914
2116
- msgid "\"Key Master\" Email address"
2117
- msgstr ""
2118
-
2119
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:915
2120
- msgid "The login details will be emailed to this address."
2121
- msgstr ""
2122
-
2123
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:924
2124
- msgid "First forum name"
2125
- msgstr ""
2126
-
2127
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:925
2128
- msgid ""
2129
- "This can be changed after installation, so don't worry about it too much."
2130
- msgstr ""
2131
-
2132
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:928
2133
- msgid "Save site settings"
2134
- msgstr ""
2135
-
2136
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:934
2137
- msgid "Complete the installation"
2138
- msgstr ""
2139
-
2140
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:943
2141
- msgid "Show installation messages"
2142
- msgstr ""
2143
-
2144
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:947
2145
- msgid "Installation errors"
2146
- msgstr ""
2147
-
2148
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:951
2149
- msgid "Installation log"
2150
- msgstr ""
2151
-
2152
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1252
2153
- msgid ""
2154
- "The table prefix can only contain letters, numbers and underscores.<br /"
2155
- ">Please review the suggestion below."
2156
- msgstr ""
2157
-
2158
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1253
2159
- msgid "&bull; Based on your input the following prefix is suggested."
2160
- msgstr ""
2161
-
2162
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1261
2163
- msgid ""
2164
- "The table prefix can not be blank.<br />Please review the suggestion below."
2165
- msgstr ""
2166
-
2167
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1262
2168
- msgid "&bull; The default prefix has been inserted."
2169
- msgstr ""
2170
-
2171
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1296
2172
- msgid ""
2173
- "There was a problem connecting to the database you specified.<br />Please "
2174
- "check the settings, then try again."
2175
- msgstr ""
2176
-
2177
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1329
2178
- msgid ""
2179
- "Your settings have been saved to the file <code>bb-config.php</code><br /"
2180
- ">You can now continue to the next step."
2181
- msgstr ""
2182
-
2183
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1336
2184
- msgid ""
2185
- "Your settings could not be saved to a configuration file. You will need to "
2186
- "save the text shown below into a file named <code>bb-config.php</code> in "
2187
- "the root directory of your bbPress installation before you can continue."
2188
- msgstr ""
2189
-
2190
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1358
2191
- msgid ""
2192
- "You have chosen to skip the WordPress integration step. You can always "
2193
- "integrate WordPress later from within the admin area of bbPress."
2194
- msgstr ""
2195
-
2196
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1434
2197
- msgid ""
2198
- "You must enter your settings for integration setup to complete. Choose which "
2199
- "integration settings you wish to enter from the options below."
2200
- msgstr ""
2201
-
2202
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1452
2203
- msgid ""
2204
- "Your integration settings have not been processed due to errors with the "
2205
- "items marked below."
2206
- msgstr ""
2207
-
2208
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1461
2209
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1670
2210
- msgid "&bull; This value is required to continue."
2211
- msgstr ""
2212
-
2213
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1464
2214
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1673
2215
- msgid "&bull; This does not appear to be a valid URL."
2216
- msgstr ""
2217
-
2218
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1467
2219
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1676
2220
- msgid "&bull; The URL must begin with \"http\" or \"https\"."
2221
- msgstr ""
2222
-
2223
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1470
2224
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1679
2225
- msgid "&bull; The URL does not contain a host name."
2226
- msgstr ""
2227
-
2228
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1532
2229
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1775
2230
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:2578
2231
- #: bp-forums/bbpress/bb-settings.php:646
2232
- msgid ""
2233
- "Your user table prefix may only contain letters, numbers and underscores."
2234
- msgstr ""
2235
-
2236
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1569
2237
- msgid ""
2238
- "There was a problem connecting to the WordPress user database you specified. "
2239
- "Please check the settings, then try again."
2240
- msgstr ""
2241
-
2242
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1583
2243
- msgid ""
2244
- "Existing WordPress user tables could not be found in the WordPress database "
2245
- "you specified."
2246
- msgstr ""
2247
-
2248
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1585
2249
- msgid ""
2250
- "Existing WordPress user tables could not be found in the bbPress database "
2251
- "you specified in step 1.<br /><br />This is probably because the database "
2252
- "does not already contain working WordPress tables. You may need to specify "
2253
- "advanced database settings or leave integration until after installation."
2254
- msgstr ""
2255
-
2256
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1587
2257
- msgid "&bull; This may not be a valid user table prefix."
2258
- msgstr ""
2259
-
2260
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1604
2261
- msgid ""
2262
- "Your WordPress integration cookie and database settings have been "
2263
- "successfully validated. They will be saved after the next step.<br /><br /"
2264
- ">Once you have finished installing, you should visit the WordPress "
2265
- "integration section of the bbPress admin area for further options and "
2266
- "integration instructions, including user mapping and the correct cookie "
2267
- "settings to add to your WordPress configuration file."
2268
- msgstr ""
2269
-
2270
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1661
2271
- msgid ""
2272
- "Your site settings have not been processed due to errors with the items "
2273
- "marked below."
2274
- msgstr ""
2275
-
2276
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1682
2277
- msgid "&bull; Contains disallowed characters which have been removed."
2278
- msgstr ""
2279
-
2280
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1685
2281
- msgid "&bull; The user email address appears to be invalid."
2282
- msgstr ""
2283
-
2284
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1704
2285
- msgid ""
2286
- "Your site settings have been saved and we are now ready to complete the "
2287
- "installation. So what are you waiting for?"
2288
- msgstr ""
2289
-
2290
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1730
2291
- msgid "Referrer is OK, beginning installation&hellip;"
2292
- msgstr ""
2293
-
2294
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1737
2295
- msgid "Setting up custom user table constants"
2296
- msgstr ""
2297
-
2298
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1780
2299
- msgid "Step 1 - Creating database tables"
2300
- msgstr ""
2301
-
2302
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1798
2303
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1800
2304
- msgid "Database installation failed!!!"
2305
- msgstr ""
2306
-
2307
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1799
2308
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:2009
2309
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:2042
2310
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:2068
2311
- msgid "Halting installation!"
2312
- msgstr ""
2313
-
2314
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1803
2315
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:2011
2316
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:2045
2317
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:2071
2318
- msgid "Installation failed!"
2319
- msgstr ""
2320
-
2321
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1804
2322
- msgid ""
2323
- "The database failed to install. You may need to replace bbPress with a fresh "
2324
- "copy and start again."
2325
- msgstr ""
2326
-
2327
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1812
2328
- msgid "Database is already installed!!!"
2329
- msgstr ""
2330
-
2331
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1817
2332
- msgid "Step 2 - WordPress integration (optional)"
2333
- msgstr ""
2334
-
2335
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1821
2336
- msgid "WordPress address (URL):"
2337
- msgstr ""
2338
-
2339
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1824
2340
- msgid "Blog address (URL):"
2341
- msgstr ""
2342
-
2343
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1838
2344
- msgid "WordPress cookie keys set."
2345
- msgstr ""
2346
-
2347
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1841
2348
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1844
2349
- msgid "WordPress cookie keys not set."
2350
- msgstr ""
2351
-
2352
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1842
2353
- msgid "Your \"bb-config.php\" file was not writable."
2354
- msgstr ""
2355
-
2356
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1843
2357
- msgid ""
2358
- "You will need to manually re-define \"BB_AUTH_KEY\", \"BB_SECURE_AUTH_KEY\" "
2359
- "and \"BB_LOGGED_IN_KEY\" in your \"bb-config.php\" file."
2360
- msgstr ""
2361
-
2362
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1850
2363
- msgid "WordPress \"auth\" cookie salt set from input."
2364
- msgstr ""
2365
-
2366
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1855
2367
- msgid "WordPress \"secure auth\" cookie salt set from input."
2368
- msgstr ""
2369
-
2370
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1860
2371
- msgid "WordPress \"logged in\" cookie salt set from input."
2372
- msgstr ""
2373
-
2374
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1870
2375
- msgid "Fetching missing WordPress cookie salts."
2376
- msgstr ""
2377
-
2378
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1891
2379
- msgid "WordPress \"auth\" cookie salt set."
2380
- msgstr ""
2381
-
2382
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1893
2383
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1896
2384
- msgid "WordPress \"auth\" cookie salt not set."
2385
- msgstr ""
2386
-
2387
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1894
2388
- msgid "Could not fetch \"auth\" cookie salt from the WordPress options table."
2389
- msgstr ""
2390
-
2391
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1895
2392
- msgid ""
2393
- "You will need to manually define the \"auth\" cookie salt in your database."
2394
- msgstr ""
2395
-
2396
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1904
2397
- msgid "WordPress \"secure auth\" cookie salt set."
2398
- msgstr ""
2399
-
2400
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1907
2401
- msgid "WordPress \"secure auth\" cookie salt not set."
2402
- msgstr ""
2403
-
2404
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1915
2405
- msgid "WordPress \"logged in\" cookie salt set."
2406
- msgstr ""
2407
-
2408
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1917
2409
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1920
2410
- msgid "WordPress \"logged in\" cookie salt not set."
2411
- msgstr ""
2412
-
2413
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1918
2414
- msgid ""
2415
- "Could not fetch \"logged in\" cookie salt from the WordPress options table."
2416
- msgstr ""
2417
-
2418
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1919
2419
- msgid ""
2420
- "You will need to manually define the \"logged in\" cookie salt in your "
2421
- "database."
2422
- msgstr ""
2423
-
2424
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1927
2425
- msgid "User database table prefix:"
2426
- msgstr ""
2427
-
2428
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1932
2429
- msgid "WordPress MU primary blog ID:"
2430
- msgstr ""
2431
-
2432
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1938
2433
- msgid "User database name:"
2434
- msgstr ""
2435
-
2436
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1942
2437
- msgid "User database user:"
2438
- msgstr ""
2439
-
2440
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1946
2441
- msgid "User database password:"
2442
- msgstr ""
2443
-
2444
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1950
2445
- msgid "User database host:"
2446
- msgstr ""
2447
-
2448
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1954
2449
- msgid "User database character set:"
2450
- msgstr ""
2451
-
2452
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1958
2453
- msgid "User database collation:"
2454
- msgstr ""
2455
-
2456
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1962
2457
- msgid "User database \"user\" table:"
2458
- msgstr ""
2459
-
2460
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1966
2461
- msgid "User database \"user meta\" table:"
2462
- msgstr ""
2463
-
2464
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1971
2465
- msgid "Integration not enabled"
2466
- msgstr ""
2467
-
2468
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1976
2469
- msgid "Step 3 - Site settings"
2470
- msgstr ""
2471
-
2472
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1978
2473
- msgid "Site name:"
2474
- msgstr ""
2475
-
2476
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1980
2477
- msgid "Site address (URL):"
2478
- msgstr ""
2479
-
2480
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1982
2481
- msgid "From email address:"
2482
- msgstr ""
2483
-
2484
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1993
2485
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1995
2486
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:2041
2487
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:2043
2488
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:2069
2489
- msgid "Key master could not be created!"
2490
- msgstr ""
2491
-
2492
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:1994
2493
- msgid "That login is already taken!"
2494
- msgstr ""
2495
-
2496
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:2000
2497
- msgid "Existing key master entered!"
2498
- msgstr ""
2499
-
2500
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:2001
2501
- msgid "Your bbPress password"
2502
- msgstr ""
2503
-
2504
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:2004
2505
- msgid "Re-setting admin email address."
2506
- msgstr ""
2507
-
2508
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:2008
2509
- msgid "Existing user without key master role entered!"
2510
- msgstr ""
2511
-
2512
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:2012
2513
- msgid ""
2514
- "The key master could not be created. An existing user was found with that "
2515
- "user login."
2516
- msgstr ""
2517
-
2518
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:2035
2519
- msgid "Key master created"
2520
- msgstr ""
2521
-
2522
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:2036
2523
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:2062
2524
- #: bp-forums/bbpress/bb-admin/install.php:359
2525
- msgid "Username:"
2526
- msgstr ""
2527
-
2528
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:2037
2529
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:2063
2530
- msgid "Email address:"
2531
- msgstr ""
2532
-
2533
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:2038
2534
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:2064
2535
- #: bp-forums/bbpress/bb-admin/install.php:361
2536
- msgid "Password:"
2537
- msgstr ""
2538
-
2539
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:2046
2540
- msgid ""
2541
- "The key master could not be created. You may need to replace bbPress with a "
2542
- "fresh copy and start again."
2543
- msgstr ""
2544
-
2545
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:2060
2546
- msgid "Your existing password"
2547
- msgstr ""
2548
-
2549
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:2061
2550
- msgid "Key master role assigned to existing user"
2551
- msgstr ""
2552
-
2553
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:2067
2554
- msgid "Key master role could not be assigned to existing user!"
2555
- msgstr ""
2556
-
2557
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:2072
2558
- msgid ""
2559
- "The key master could not be assigned. You may need to replace bbPress with a "
2560
- "fresh copy and start again."
2561
- msgstr ""
2562
-
2563
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:2091
2564
- msgid "Just another bbPress community"
2565
- msgstr ""
2566
-
2567
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:2100
2568
- msgid "Description:"
2569
- msgstr ""
2570
-
2571
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:2103
2572
- msgid "Forum name:"
2573
- msgstr ""
2574
-
2575
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:2111
2576
- msgid "Your first topic"
2577
- msgstr ""
2578
-
2579
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:2119
2580
- msgid "First Post! w00t."
2581
- msgstr ""
2582
-
2583
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:2133
2584
- #: bp-forums/bbpress/bb-templates/kakumei/edit-form.php:4
2585
- msgid "Topic:"
2586
- msgstr ""
2587
-
2588
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:2134
2589
- #: bp-forums/bbpress/bb-templates/kakumei/edit-form.php:10
2590
- msgid "Post:"
2591
- msgstr ""
2592
-
2593
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:2136
2594
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:2137
2595
- msgid "Forum could not be created!"
2596
- msgstr ""
2597
-
2598
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:2140
2599
- msgid "There are existing forums in this database."
2600
- msgstr ""
2601
-
2602
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:2141
2603
- msgid "No new forum created."
2604
- msgstr ""
2605
-
2606
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:2142
2607
- msgid "Forums already exist!"
2608
- msgstr ""
2609
-
2610
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:2148
2611
- #, php-format
2612
- msgid "Making plugin directory at %s."
2613
- msgstr ""
2614
-
2615
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:2155
2616
- #, php-format
2617
- msgid "Making theme directory at %s."
2618
- msgstr ""
2619
-
2620
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:2161
2621
- #, php-format
2622
- msgid ""
2623
- "Your new bbPress site has been successfully set up at:\n"
2624
- "\n"
2625
- "%1$s\n"
2626
- "\n"
2627
- "You can log in to the key master account with the following information:\n"
2628
- "\n"
2629
- "Username: %2$s\n"
2630
- "Password: %3$s\n"
2631
- "\n"
2632
- "We hope you enjoy your new forums. Thanks!\n"
2633
- "\n"
2634
- "--The bbPress Team\n"
2635
- "http://bbpress.org/"
2636
- msgstr ""
2637
-
2638
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:2167
2639
- msgid "New bbPress installation"
2640
- msgstr ""
2641
-
2642
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:2168
2643
- msgid "Key master email sent"
2644
- msgstr ""
2645
-
2646
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:2170
2647
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:2171
2648
- msgid "Key master email not sent!"
2649
- msgstr ""
2650
-
2651
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:2176
2652
- msgid "Installation completed with some errors!"
2653
- msgstr ""
2654
-
2655
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:2177
2656
- msgid ""
2657
- "Your installation completed with some minor errors. See the error log below "
2658
- "for more specific information."
2659
- msgstr ""
2660
-
2661
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:2178
2662
- msgid "There were some errors encountered during installation!"
2663
- msgstr ""
2664
-
2665
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:2180
2666
- msgid "Your installation completed successfully."
2667
- msgstr ""
2668
-
2669
- #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:2622
2670
- msgid "Please select an existing bbPress Keymaster or WordPress administrator."
2671
- msgstr ""
2672
-
2673
- #: bp-forums/bbpress/bb-admin/includes/defaults.bb-schema.php:8
2674
- msgid "Database class not loaded."
2675
- msgstr ""
2676
-
2677
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:67
2678
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:68
2679
- #: bp-forums/bbpress/bb-admin/topics.php:41
2680
- #: bp-forums/bbpress/bb-templates/kakumei/forum.php:46
2681
- #: bp-forums/bbpress/bb-templates/kakumei/front-page.php:53
2682
- msgid "Topics"
2683
- msgstr ""
2684
-
2685
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:69
2686
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:70
2687
- #: bp-forums/bbpress/bb-admin/posts.php:47
2688
- #: bp-forums/bbpress/bb-admin/topics.php:103
2689
- #: bp-forums/bbpress/bb-admin/topics.php:112
2690
- #: bp-forums/bbpress/bb-templates/kakumei/favorites.php:17
2691
- #: bp-forums/bbpress/bb-templates/kakumei/forum.php:10
2692
- #: bp-forums/bbpress/bb-templates/kakumei/forum.php:47
2693
- #: bp-forums/bbpress/bb-templates/kakumei/front-page.php:18
2694
- #: bp-forums/bbpress/bb-templates/kakumei/front-page.php:54
2695
- #: bp-forums/bbpress/bb-templates/kakumei/stats.php:8
2696
- #: bp-forums/bbpress/bb-templates/kakumei/tag-single.php:12
2697
- #: bp-forums/bbpress/bb-templates/kakumei/view.php:10
2698
- #: bp-themes/bp-default/forums/forums-loop.php:31
2699
- msgid "Posts"
2700
- msgstr ""
2701
-
2702
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:79
2703
- msgid "Appearance"
2704
- msgstr ""
2705
-
2706
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:80
2707
- msgid "Themes"
2708
- msgstr ""
2709
-
2710
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:81
2711
- msgid "Plugins"
2712
- msgstr ""
2713
-
2714
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:82
2715
- msgid "Installed"
2716
- msgstr ""
2717
-
2718
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:83
2719
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:84
2720
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:591
2721
- msgid "Users"
2722
- msgstr ""
2723
-
2724
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:85
2725
- #: bp-forums/bbpress/bb-admin/tools-recount.php:68
2726
- msgid "Tools"
2727
- msgstr ""
2728
-
2729
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:86
2730
- #: bp-forums/bbpress/bb-admin/tools-recount.php:73
2731
- msgid "Re-count"
2732
- msgstr ""
2733
-
2734
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:90
2735
- msgid "Writing"
2736
- msgstr ""
2737
-
2738
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:91
2739
- msgid "Reading"
2740
- msgstr ""
2741
-
2742
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:92
2743
- msgid "Discussion"
2744
- msgstr ""
2745
-
2746
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:93
2747
- msgid "Permalinks"
2748
- msgstr ""
2749
-
2750
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:94
2751
- msgid "WordPress Integration"
2752
- msgstr ""
2753
-
2754
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:236
2755
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:249
2756
- #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1117
2757
- msgid "bbPress"
2758
- msgstr ""
2759
-
2760
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:418
2761
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:886
2762
- #: bp-forums/bbpress/bb-includes/functions.bb-core.php:846
2763
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:1926
2764
- #: bp-forums/bp-forums-templatetags.php:925
2765
- #: bp-themes/bp-default/functions.php:64 bp-xprofile/bp-xprofile-admin.php:67
2766
- #: bp-xprofile/bp-xprofile-admin.php:94
2767
- msgid "Edit"
2768
- msgstr ""
2769
-
2770
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:419
2771
- #, php-format
2772
- msgid "User ID: %d"
2773
- msgstr ""
2774
-
2775
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:443
2776
- msgid "Inactive (no role)"
2777
- msgstr ""
2778
-
2779
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:455
2780
- msgid "None"
2781
- msgstr ""
2782
-
2783
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:523
2784
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:705
2785
- msgid "<strong>No matching users were found!</strong>"
2786
- msgstr ""
2787
-
2788
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:536
2789
- #: bp-forums/bbpress/bb-admin/posts.php:83
2790
- #: bp-forums/bbpress/bb-admin/topics.php:70
2791
- #, php-format
2792
- msgid "%1$s to %2$s of %3$s"
2793
- msgstr ""
2794
-
2795
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:574
2796
- #, php-format
2797
- msgid "Users Matching \"%s\" by Role"
2798
- msgstr ""
2799
-
2800
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:584
2801
- #: bp-forums/bbpress/bb-admin/posts.php:54
2802
- #: bp-forums/bbpress/bb-admin/topics.php:48
2803
- #, php-format
2804
- msgid "containing &#8220;%s&#8221;"
2805
- msgstr ""
2806
-
2807
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:585
2808
- #, php-format
2809
- msgid "with role &#8220;%s&#8221;"
2810
- msgstr ""
2811
-
2812
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:588
2813
- #, php-format
2814
- msgid "%1$s%2$s"
2815
- msgstr ""
2816
-
2817
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:600
2818
- #: bp-forums/bbpress/bb-includes/class.bb-query.php:936
2819
- msgid "Search term"
2820
- msgstr ""
2821
-
2822
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:604
2823
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:653
2824
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:667
2825
- msgid "Role"
2826
- msgstr ""
2827
-
2828
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:625
2829
- #: bp-forums/bbpress/bb-admin/posts.php:77
2830
- #: bp-forums/bbpress/bb-admin/topics.php:64
2831
- msgid "Filter"
2832
- msgstr ""
2833
-
2834
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:645
2835
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:649
2836
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:659
2837
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:663
2838
- #: bp-forums/bbpress/bb-templates/kakumei/login-form.php:14
2839
- #: bp-forums/bbpress/bb-templates/kakumei/login.php:17
2840
- #: bp-forums/bbpress/bb-templates/kakumei/login.php:59
2841
- #: bp-forums/bbpress/bb-templates/kakumei/register.php:25
2842
- #: bp-themes/bp-default/registration/register.php:28
2843
- #: bp-themes/bp-default/sidebar.php:41
2844
- msgid "Username"
2845
- msgstr ""
2846
-
2847
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:647
2848
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:661
2849
- msgid "E-mail"
2850
- msgstr ""
2851
-
2852
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:652
2853
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:666
2854
- msgid "Registered"
2855
- msgstr ""
2856
-
2857
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:915
2858
- msgid "Edit Forum"
2859
- msgstr ""
2860
-
2861
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:919
2862
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:920
2863
- msgid "Add Forum"
2864
- msgstr ""
2865
-
2866
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:930
2867
- msgid "Slug"
2868
- msgstr ""
2869
-
2870
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:934
2871
- #: bp-forums/bbpress/bb-admin/plugins.php:186
2872
- #: bp-forums/bbpress/bb-admin/plugins.php:192
2873
- msgid "Description"
2874
- msgstr ""
2875
-
2876
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:939
2877
- msgid "Parent"
2878
- msgstr ""
2879
-
2880
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:951
2881
- msgid "Position"
2882
- msgstr ""
2883
-
2884
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:956
2885
- msgid "Category"
2886
- msgstr ""
2887
-
2888
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:960
2889
- msgid "Make this forum a category"
2890
- msgstr ""
2891
-
2892
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:964
2893
- msgid ""
2894
- "Categories are forums where new topics cannot be created. Categories usually "
2895
- "contain a group of sub-forums."
2896
- msgstr ""
2897
-
2898
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1074
2899
- #: bp-forums/bbpress/xmlrpc.php:1700 bp-forums/bbpress/xmlrpc.php:2299
2900
- msgid "No posts found."
2901
- msgstr ""
2902
-
2903
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1081
2904
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1089
2905
- #: bp-forums/bbpress/bb-templates/kakumei/post-form.php:9
2906
- #: bp-themes/bp-default/activity/entry.php:63
2907
- msgid "Post"
2908
- msgstr ""
2909
-
2910
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1082
2911
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1090
2912
- #: bp-forums/bbpress/bb-admin/topics.php:102
2913
- #: bp-forums/bbpress/bb-admin/topics.php:111
2914
- msgid "Author"
2915
- msgstr ""
2916
-
2917
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1083
2918
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1091
2919
- #: bp-forums/bbpress/bb-admin/topics.php:101
2920
- #: bp-forums/bbpress/bb-admin/topics.php:110
2921
- #: bp-forums/bbpress/bb-templates/kakumei/favorites.php:16
2922
- #: bp-forums/bbpress/bb-templates/kakumei/forum.php:9
2923
- #: bp-forums/bbpress/bb-templates/kakumei/front-page.php:17
2924
- #: bp-forums/bbpress/bb-templates/kakumei/tag-single.php:11
2925
- #: bp-forums/bbpress/bb-templates/kakumei/view.php:9
2926
- msgid "Topic"
2927
- msgstr ""
2928
-
2929
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1084
2930
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1092
2931
- #: bp-forums/bbpress/bb-admin/topics.php:104
2932
- #: bp-forums/bbpress/bb-admin/topics.php:113
2933
- msgid "Date"
2934
- msgstr ""
2935
-
2936
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1158
2937
- msgid "Count posts of every topic"
2938
- msgstr ""
2939
-
2940
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1159
2941
- msgid "Count voices of every topic"
2942
- msgstr ""
2943
-
2944
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1160
2945
- msgid "Count deleted posts on every topic"
2946
- msgstr ""
2947
-
2948
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1161
2949
- msgid "Count topics and posts in every forum"
2950
- msgstr ""
2951
-
2952
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1162
2953
- msgid "Count topics to which each user has replied"
2954
- msgstr ""
2955
-
2956
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1163
2957
- msgid "Count tags for every topic"
2958
- msgstr ""
2959
-
2960
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1164
2961
- msgid "Count topics for every tag"
2962
- msgstr ""
2963
-
2964
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1165
2965
- msgid "Delete tags with no topics"
2966
- msgstr ""
2967
-
2968
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1166
2969
- msgid "Remove deleted topics from users' favorites"
2970
- msgstr ""
2971
-
2972
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1236
2973
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-plugin.php:307
2974
- msgid "Visit author homepage"
2975
- msgstr ""
2976
-
2977
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1246
2978
- msgid "Visit porter homepage"
2979
- msgstr ""
2980
-
2981
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-plugin.php:304
2982
- #: bp-forums/bbpress/bb-admin/plugins.php:228
2983
- msgid "Visit plugin site"
2984
- msgstr ""
2985
-
2986
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-plugin.php:430
2987
- msgid "Invalid plugin path."
2988
- msgstr ""
2989
-
2990
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-plugin.php:434
2991
- msgid "Plugin file does not exist."
2992
- msgstr ""
2993
-
2994
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-plugin.php:437
2995
- msgid "That type of plugin is not available in the specified location."
2996
- msgstr ""
2997
-
2998
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:7
2999
- #, php-format
3000
- msgid "Counting the number of posts in each topic&hellip; %s"
3001
- msgstr ""
3002
-
3003
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:8
3004
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:24
3005
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:45
3006
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:66
3007
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:82
3008
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:98
3009
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:214
3010
- msgid "Failed!"
3011
- msgstr ""
3012
-
3013
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:15
3014
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:36
3015
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:57
3016
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:73
3017
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:89
3018
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:133
3019
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:260
3020
- msgid "Complete!"
3021
- msgstr ""
3022
-
3023
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:23
3024
- #, php-format
3025
- msgid "Counting the number of voices in each topic&hellip; %s"
3026
- msgstr ""
3027
-
3028
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:44
3029
- #, php-format
3030
- msgid "Counting the number of deleted posts in each topic&hellip; %s"
3031
- msgstr ""
3032
-
3033
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:65
3034
- #, php-format
3035
- msgid "Counting the number of topics in each forum&hellip; %s"
3036
- msgstr ""
3037
-
3038
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:81
3039
- #, php-format
3040
- msgid "Counting the number of posts in each forum&hellip; %s"
3041
- msgstr ""
3042
-
3043
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:97
3044
- #, php-format
3045
- msgid "Counting the number of topics to which each user has replied&hellip; %s"
3046
- msgstr ""
3047
-
3048
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:147
3049
- msgid "Counted topic tags"
3050
- msgstr ""
3051
-
3052
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:170
3053
- msgid "Counted tagged topics"
3054
- msgstr ""
3055
-
3056
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:193
3057
- msgid "Deleted tags with no topics"
3058
- msgstr ""
3059
-
3060
- #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:213
3061
- #, php-format
3062
- msgid "Removing deleted topics from user favorites&hellip; %s"
3063
- msgstr ""
3064
-
3065
- #: bp-forums/bbpress/bb-admin/index.php:6
3066
- #, php-format
3067
- msgid "<span>%d</span> forum"
3068
- msgid_plural "<span>%d</span> forums"
3069
- msgstr[0] ""
3070
- msgstr[1] ""
3071
-
3072
- #: bp-forums/bbpress/bb-admin/index.php:9
3073
- #: bp-forums/bbpress/bb-admin/index.php:21
3074
- #, php-format
3075
- msgid "<span>%d</span> topic"
3076
- msgid_plural "<span>%d</span> topics"
3077
- msgstr[0] ""
3078
- msgstr[1] ""
3079
-
3080
- #: bp-forums/bbpress/bb-admin/index.php:12
3081
- #: bp-forums/bbpress/bb-admin/index.php:24
3082
- #, php-format
3083
- msgid "<span>%d</span> post"
3084
- msgid_plural "<span>%d</span> posts"
3085
- msgstr[0] ""
3086
- msgstr[1] ""
3087
-
3088
- #: bp-forums/bbpress/bb-admin/index.php:15
3089
- #: bp-forums/bbpress/bb-admin/index.php:27
3090
- #, php-format
3091
- msgid "<span>%d</span> user"
3092
- msgid_plural "<span>%d</span> users"
3093
- msgstr[0] ""
3094
- msgstr[1] ""
3095
-
3096
- #: bp-forums/bbpress/bb-admin/index.php:18
3097
- #: bp-forums/bbpress/bb-admin/index.php:30
3098
- #, php-format
3099
- msgid "<span>%d</span> tag"
3100
- msgid_plural "<span>%d</span> tags"
3101
- msgstr[0] ""
3102
- msgstr[1] ""
3103
-
3104
- #: bp-forums/bbpress/bb-admin/index.php:50
3105
- msgid "Right Now"
3106
- msgstr ""
3107
-
3108
- #: bp-forums/bbpress/bb-admin/index.php:55
3109
- msgid "Totals"
3110
- msgstr ""
3111
-
3112
- #: bp-forums/bbpress/bb-admin/index.php:56
3113
- msgid "Per Day"
3114
- msgstr ""
3115
-
3116
- #: bp-forums/bbpress/bb-admin/index.php:81
3117
- msgid "Change Theme"
3118
- msgstr ""
3119
-
3120
- #: bp-forums/bbpress/bb-admin/index.php:81
3121
- #, php-format
3122
- msgid "Theme <a href=\"%1$s\">%2$s</a>"
3123
- msgstr ""
3124
-
3125
- #: bp-forums/bbpress/bb-admin/index.php:82
3126
- #, php-format
3127
- msgid "You are using <span class=\"b\">bbPress %s</span>"
3128
- msgstr ""
3129
-
3130
- #: bp-forums/bbpress/bb-admin/index.php:87
3131
- msgid "Recently Moderated Items"
3132
- msgstr ""
3133
-
3134
- #: bp-forums/bbpress/bb-admin/index.php:95
3135
- #, php-format
3136
- msgid ""
3137
- "<a href=\"%1$s\">Post</a> on <a href=\"%2$s\">%3$s</a> by <a href=\"%4$s\">%5"
3138
- "$s</a>"
3139
- msgstr ""
3140
-
3141
- #: bp-forums/bbpress/bb-admin/index.php:108
3142
- #, php-format
3143
- msgid ""
3144
- "Topic titled <a href=\"%1$s\">%2$s</a> started by <a href=\"%3$s\">%4$s</a>"
3145
- msgstr ""
3146
-
3147
- #: bp-forums/bbpress/bb-admin/index.php:120
3148
- msgid ""
3149
- "No moderated posts or topics&#8230; you must have very well behaved members."
3150
- msgstr ""
3151
-
3152
- #: bp-forums/bbpress/bb-admin/install.php:167
3153
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:197
3154
- msgid "Cookies"
3155
- msgstr ""
3156
-
3157
- #: bp-forums/bbpress/bb-admin/install.php:168
3158
- msgid ""
3159
- "Integrating cookies allows you and your users to login to either your "
3160
- "bbPress or your WordPress site and be automatically logged into both."
3161
- msgstr ""
3162
-
3163
- #: bp-forums/bbpress/bb-admin/install.php:169
3164
- msgid ""
3165
- "You may need to make changes to your WordPress configuration once "
3166
- "installation is complete. See the \"WordPress Integration\" section of the "
3167
- "bbPress administration area when you are done."
3168
- msgstr ""
3169
-
3170
- #: bp-forums/bbpress/bb-admin/install.php:189
3171
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:271
3172
- msgid "User database"
3173
- msgstr ""
3174
-
3175
- #: bp-forums/bbpress/bb-admin/install.php:190
3176
- msgid ""
3177
- "Integrating your WordPress database user tables allows you to store user "
3178
- "data in one location, instead of having separate user data for both bbPress "
3179
- "and WordPress."
3180
- msgstr ""
3181
-
3182
- #: bp-forums/bbpress/bb-admin/install.php:199
3183
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:290
3184
- msgid "Separate user database settings"
3185
- msgstr ""
3186
-
3187
- #: bp-forums/bbpress/bb-admin/install.php:200
3188
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:291
3189
- msgid ""
3190
- "Most of the time these settings are <em>not</em> required. Look before you "
3191
- "leap!"
3192
- msgstr ""
3193
-
3194
- #: bp-forums/bbpress/bb-admin/install.php:201
3195
- msgid ""
3196
- "If required, then all settings except for the character set must be "
3197
- "specified."
3198
- msgstr ""
3199
-
3200
- #: bp-forums/bbpress/bb-admin/install.php:212
3201
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:296
3202
- msgid "Custom user tables"
3203
- msgstr ""
3204
-
3205
- #: bp-forums/bbpress/bb-admin/install.php:213
3206
- msgid ""
3207
- "Only set these options if your integrated user tables do not fit the usual "
3208
- "mould of <em>wp_user</em> and <em>wp_usermeta</em>."
3209
- msgstr ""
3210
-
3211
- #: bp-forums/bbpress/bb-admin/install.php:357
3212
- msgid "You can now log in with the following details:"
3213
- msgstr ""
3214
-
3215
- #: bp-forums/bbpress/bb-admin/install.php:363
3216
- msgid "Site address:"
3217
- msgstr ""
3218
-
3219
- #: bp-forums/bbpress/bb-admin/install.php:369
3220
- msgid ""
3221
- "<strong><em>Note that password</em></strong> carefully! It is a <em>random</"
3222
- "em> password that was generated just for you. If you lose it, you will have "
3223
- "to delete the tables from the database yourself, and re-install bbPress."
3224
- msgstr ""
3225
-
3226
- #: bp-forums/bbpress/bb-admin/options-discussion.php:38
3227
- #: bp-forums/bbpress/bb-admin/options-general.php:31
3228
- #: bp-forums/bbpress/bb-admin/options-reading.php:28
3229
- #: bp-forums/bbpress/bb-admin/options-writing.php:33
3230
- #: bp-forums/bbpress/bb-plugins/akismet.php:147
3231
- msgid "<strong>Settings saved.</strong>"
3232
- msgstr ""
3233
-
3234
- #: bp-forums/bbpress/bb-admin/options-discussion.php:43
3235
- msgid "Enable Pingbacks"
3236
- msgstr ""
3237
-
3238
- #: bp-forums/bbpress/bb-admin/options-discussion.php:46
3239
- msgid "Allow link notifications from other sites."
3240
- msgstr ""
3241
-
3242
- #: bp-forums/bbpress/bb-admin/options-discussion.php:55
3243
- msgid "Avatar display"
3244
- msgstr ""
3245
-
3246
- #: bp-forums/bbpress/bb-admin/options-discussion.php:58
3247
- msgid "Don&#8217;t show avatars"
3248
- msgstr ""
3249
-
3250
- #: bp-forums/bbpress/bb-admin/options-discussion.php:59
3251
- msgid "Show avatars"
3252
- msgstr ""
3253
-
3254
- #: bp-forums/bbpress/bb-admin/options-discussion.php:63
3255
- msgid "Maximum rating"
3256
- msgstr ""
3257
-
3258
- #: bp-forums/bbpress/bb-admin/options-discussion.php:66
3259
- msgid "G &#8212; Suitable for all audiences"
3260
- msgstr ""
3261
-
3262
- #: bp-forums/bbpress/bb-admin/options-discussion.php:67
3263
- msgid "PG &#8212; Possibly offensive, usually for audiences 13 and above"
3264
- msgstr ""
3265
-
3266
- #: bp-forums/bbpress/bb-admin/options-discussion.php:68
3267
- msgid "R &#8212; Intended for adult audiences above 17"
3268
- msgstr ""
3269
-
3270
- #: bp-forums/bbpress/bb-admin/options-discussion.php:69
3271
- msgid "X &#8212; Even more mature than above"
3272
- msgstr ""
3273
-
3274
- #: bp-forums/bbpress/bb-admin/options-discussion.php:73
3275
- msgid "Default avatar"
3276
- msgstr ""
3277
-
3278
- #: bp-forums/bbpress/bb-admin/options-discussion.php:77
3279
- msgid "Blank"
3280
- msgstr ""
3281
-
3282
- #: bp-forums/bbpress/bb-admin/options-discussion.php:78
3283
- msgid "Gravatar Logo"
3284
- msgstr ""
3285
-
3286
- #: bp-forums/bbpress/bb-admin/options-discussion.php:81
3287
- msgid "MonsterID (Generated)"
3288
- msgstr ""
3289
-
3290
- #: bp-forums/bbpress/bb-admin/options-discussion.php:84
3291
- msgid ""
3292
- "For users without a custom avatar of their own, you can either display a "
3293
- "generic logo or a generated one based on their e-mail address."
3294
- msgstr ""
3295
-
3296
- #: bp-forums/bbpress/bb-admin/options-discussion.php:98
3297
- msgid "Discussion Settings"
3298
- msgstr ""
3299
-
3300
- #: bp-forums/bbpress/bb-admin/options-discussion.php:110
3301
- msgid "Avatars"
3302
- msgstr ""
3303
-
3304
- #: bp-forums/bbpress/bb-admin/options-discussion.php:112
3305
- msgid ""
3306
- "bbPress includes built-in support for <a href=\"http://gravatar.com/"
3307
- "\">Gravatars</a>. A Gravatar is an image that follows you from site to site, "
3308
- "appearing beside your name when you comment on Gravatar enabled sites. Here "
3309
- "you can enable the display of Gravatars on your site."
3310
- msgstr ""
3311
-
3312
- #: bp-forums/bbpress/bb-admin/options-general.php:36
3313
- msgid "Site title"
3314
- msgstr ""
3315
-
3316
- #: bp-forums/bbpress/bb-admin/options-general.php:40
3317
- msgid "Tagline"
3318
- msgstr ""
3319
-
3320
- #: bp-forums/bbpress/bb-admin/options-general.php:42
3321
- msgid "In a few words, explain what this site is about."
3322
- msgstr ""
3323
-
3324
- #: bp-forums/bbpress/bb-admin/options-general.php:45
3325
- msgid "bbPress address (URL)"
3326
- msgstr ""
3327
-
3328
- #: bp-forums/bbpress/bb-admin/options-general.php:47
3329
- msgid "The full URL of your bbPress install."
3330
- msgstr ""
3331
-
3332
- #: bp-forums/bbpress/bb-admin/options-general.php:50
3333
- msgid "E-mail address"
3334
- msgstr ""
3335
-
3336
- #: bp-forums/bbpress/bb-admin/options-general.php:51
3337
- msgid "This address is used for admin purposes, like new user notification."
3338
- msgstr ""
3339
-
3340
- #: bp-forums/bbpress/bb-admin/options-general.php:57
3341
- #: bp-forums/bbpress/bb-admin/options-general.php:161
3342
- msgid "Time zone"
3343
- msgstr ""
3344
-
3345
- #: bp-forums/bbpress/bb-admin/options-general.php:119
3346
- msgid "Date and time format"
3347
- msgstr ""
3348
-
3349
- #: bp-forums/bbpress/bb-admin/options-general.php:124
3350
- msgid ""
3351
- "<a href=\"http://codex.wordpress.org/Formatting_Date_and_Time"
3352
- "\">Documentation on date formatting</a>."
3353
- msgstr ""
3354
-
3355
- #: bp-forums/bbpress/bb-admin/options-general.php:125
3356
- msgid "Click \"Save Changes\" to update sample output."
3357
- msgstr ""
3358
-
3359
- #: bp-forums/bbpress/bb-admin/options-general.php:129
3360
- msgid "Date format"
3361
- msgstr ""
3362
-
3363
- #: bp-forums/bbpress/bb-admin/options-general.php:165
3364
- msgid "Choose a city in the same time zone as you."
3365
- msgstr ""
3366
-
3367
- #: bp-forums/bbpress/bb-admin/options-general.php:166
3368
- #: bp-forums/bbpress/bb-admin/options-general.php:201
3369
- #, php-format
3370
- msgid ""
3371
- "<abbr title=\"Coordinated Universal Time\">UTC</abbr> time is <code>%s</code>"
3372
- msgstr ""
3373
-
3374
- #: bp-forums/bbpress/bb-admin/options-general.php:167
3375
- #, php-format
3376
- msgid "Local time is <code>%s</code>"
3377
- msgstr ""
3378
-
3379
- #: bp-forums/bbpress/bb-admin/options-general.php:174
3380
- msgid "This time zone is currently in daylight savings time."
3381
- msgstr ""
3382
-
3383
- #: bp-forums/bbpress/bb-admin/options-general.php:176
3384
- msgid "This time zone is currently in standard time."
3385
- msgstr ""
3386
-
3387
- #: bp-forums/bbpress/bb-admin/options-general.php:184
3388
- #, php-format
3389
- msgid "Daylight savings time begins on <code>%s</code>"
3390
- msgstr ""
3391
-
3392
- #: bp-forums/bbpress/bb-admin/options-general.php:184
3393
- #, php-format
3394
- msgid "Standard time begins on <code>%s</code>"
3395
- msgstr ""
3396
-
3397
- #: bp-forums/bbpress/bb-admin/options-general.php:196
3398
- #, php-format
3399
- msgid ""
3400
- "<abbr title=\"Coordinated Universal Time\">UTC</abbr> %s is <code>%s</code>"
3401
- msgstr ""
3402
-
3403
- #: bp-forums/bbpress/bb-admin/options-general.php:197
3404
- msgid ""
3405
- "Unfortunately, you have to manually update this for Daylight Savings Time."
3406
- msgstr ""
3407
-
3408
- #: bp-forums/bbpress/bb-admin/options-general.php:206
3409
- #: bp-forums/bbpress/bb-includes/backpress/functions.core.php:985
3410
- #, php-format
3411
- msgid "UTC %s"
3412
- msgstr ""
3413
-
3414
- #: bp-forums/bbpress/bb-admin/options-permalinks.php:111
3415
- msgid ""
3416
- "<strong>It appears that your server does not support custom permalink "
3417
- "structures.</strong>"
3418
- msgstr ""
3419
-
3420
- #: bp-forums/bbpress/bb-admin/options-permalinks.php:116
3421
- msgid ""
3422
- "<strong>Rewriting on webservers other than Apache using mod_rewrite is "
3423
- "currently unsupported, but we won&#8217;t stop you from trying.</strong>"
3424
- msgstr ""
3425
-
3426
- #: bp-forums/bbpress/bb-admin/options-permalinks.php:121
3427
- msgid "<strong>You should update your .htaccess now.</strong>"
3428
- msgstr ""
3429
-
3430
- #: bp-forums/bbpress/bb-admin/options-permalinks.php:123
3431
- msgid "<strong>Permalink structure updated.</strong>"
3432
- msgstr ""
3433
-
3434
- #: bp-forums/bbpress/bb-admin/options-permalinks.php:129
3435
- msgid "Permalink type"
3436
- msgstr ""
3437
-
3438
- #: bp-forums/bbpress/bb-admin/options-permalinks.php:132
3439
- #, php-format
3440
- msgid "<span>None</span> <code>%s</code>"
3441
- msgstr ""
3442
-
3443
- #: bp-forums/bbpress/bb-admin/options-permalinks.php:133
3444
- #, php-format
3445
- msgid "<span>Numeric</span> <code>%s</code>"
3446
- msgstr ""
3447
-
3448
- #: bp-forums/bbpress/bb-admin/options-permalinks.php:134
3449
- #, php-format
3450
- msgid "<span>Name based</span> <code>%s</code>"
3451
- msgstr ""
3452
-
3453
- #: bp-forums/bbpress/bb-admin/options-permalinks.php:147
3454
- msgid "Permalink Settings"
3455
- msgstr ""
3456
-
3457
- #: bp-forums/bbpress/bb-admin/options-permalinks.php:153
3458
- msgid ""
3459
- "By default bbPress uses web URLs which have question marks and lots of "
3460
- "numbers in them, however bbPress offers you the ability to choose an "
3461
- "alternative URL structure for your permalinks. This can improve the "
3462
- "aesthetics, usability, and forward-compatibility of your links."
3463
- msgstr ""
3464
-
3465
- #: bp-forums/bbpress/bb-admin/options-permalinks.php:174
3466
- msgid ""
3467
- "If your <code>.htaccess</code> file were <a href=\"http://codex.wordpress."
3468
- "org/Changing_File_Permissions\">writable</a>, we could do this "
3469
- "automatically, but it isn&#8217;t so these are the mod_rewrite rules you "
3470
- "should have in your <code>.htaccess</code> file. Click in the field and "
3471
- "press <kbd>CTRL + a</kbd> to select all."
3472
- msgstr ""
3473
-
3474
- #: bp-forums/bbpress/bb-admin/options-reading.php:33
3475
- msgid "Items per page"
3476
- msgstr ""
3477
-
3478
- #: bp-forums/bbpress/bb-admin/options-reading.php:35
3479
- msgid "Number of topics, posts or tags to show per page."
3480
- msgstr ""
3481
-
3482
- #: bp-forums/bbpress/bb-admin/options-reading.php:47
3483
- msgid "Reading Settings"
3484
- msgstr ""
3485
-
3486
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:45
3487
- msgid "<strong>User role mapping saved.</strong>"
3488
- msgstr ""
3489
-
3490
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:48
3491
- msgid "<strong>User integration settings saved.</strong>"
3492
- msgstr ""
3493
-
3494
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:54
3495
- msgid "none|no bbPress role"
3496
- msgstr ""
3497
-
3498
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:58
3499
- msgid "WordPress Administrator"
3500
- msgstr ""
3501
-
3502
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:59
3503
- msgid "WordPress Editor"
3504
- msgstr ""
3505
-
3506
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:60
3507
- msgid "WordPress Author"
3508
- msgstr ""
3509
-
3510
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:61
3511
- msgid "WordPress Contributor"
3512
- msgstr ""
3513
-
3514
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:62
3515
- msgid "WordPress Subscriber"
3516
- msgstr ""
3517
-
3518
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:78
3519
- msgid ""
3520
- "This must match the value of the WordPress setting named \"auth_salt\" in "
3521
- "your WordPress site. Look for the option labeled \"auth_salt\" in <a href=\"#"
3522
- "\" id=\"getAuthSaltOption\" onclick=\"window.open(this.href); return false;"
3523
- "\">this WordPress admin page</a>."
3524
- msgstr ""
3525
-
3526
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:82
3527
- msgid ""
3528
- "This must match the value of the WordPress setting named \"secure_auth_salt"
3529
- "\" in your WordPress site. Look for the option labeled \"secure_auth_salt\" "
3530
- "in <a href=\"#\" id=\"getSecureAuthSaltOption\" onclick=\"window.open(this."
3531
- "href); return false;\">this WordPress admin page</a>. Sometimes this value "
3532
- "is not set in WordPress, in that case you can leave this setting blank as "
3533
- "well."
3534
- msgstr ""
3535
-
3536
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:86
3537
- msgid ""
3538
- "This must match the value of the WordPress setting named \"logged_in_salt\" "
3539
- "in your WordPress site. Look for the option labeled \"logged_in_salt\" in <a "
3540
- "href=\"#\" id=\"getLoggedInSaltOption\" onclick=\"window.open(this.href); "
3541
- "return false;\">this WordPress admin page</a>."
3542
- msgstr ""
3543
-
3544
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:93
3545
- #, php-format
3546
- msgid "You have defined the \"%s\" constant which locks this setting."
3547
- msgstr ""
3548
-
3549
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:170
3550
- msgid "WordPress Integration Settings"
3551
- msgstr ""
3552
-
3553
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:175
3554
- msgid "User Role Map"
3555
- msgstr ""
3556
-
3557
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:176
3558
- msgid "Here you can match WordPress roles to bbPress roles."
3559
- msgstr ""
3560
-
3561
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:177
3562
- msgid ""
3563
- "This will have no effect until your user tables are integrated below. Only "
3564
- "standard WordPress roles are supported. Changes do not affect users with "
3565
- "existing roles in both WordPress and bbPress."
3566
- msgstr ""
3567
-
3568
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:190
3569
- msgid "User Integration"
3570
- msgstr ""
3571
-
3572
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:191
3573
- msgid ""
3574
- "Usually, you will have to specify both cookie integration and user database "
3575
- "integration settings. Make sure you have a \"User role map\" setup above "
3576
- "before trying to add user integration."
3577
- msgstr ""
3578
-
3579
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:192
3580
- msgid ""
3581
- "<em><strong>Note:</strong> changing the settings below may cause you to be "
3582
- "logged out!</em>"
3583
- msgstr ""
3584
-
3585
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:198
3586
- msgid ""
3587
- "Cookie sharing allows users to log in to either your bbPress or your "
3588
- "WordPress site, and have access to both."
3589
- msgstr ""
3590
-
3591
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:242
3592
- #, php-format
3593
- msgid ""
3594
- "To complete cookie integration, you will need to add some settings to your "
3595
- "<code>wp-config.php</code> file in the root directory of your WordPress "
3596
- "installation. To get those settings, you will need to install and configure "
3597
- "the <a href=\"%s\">\"bbPress Integration\" plugin for WordPress</a>."
3598
- msgstr ""
3599
-
3600
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:243
3601
- msgid ""
3602
- "You will also have to manually ensure that the following constants are "
3603
- "equivalent in WordPress' and bbPress' respective config files."
3604
- msgstr ""
3605
-
3606
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:247
3607
- msgid "WordPress"
3608
- msgstr ""
3609
-
3610
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:272
3611
- msgid ""
3612
- "User database sharing allows you to store user data in your WordPress "
3613
- "database."
3614
- msgstr ""
3615
-
3616
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:273
3617
- msgid "You should setup a \"User role map\" before"
3618
- msgstr ""
3619
-
3620
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:292
3621
- msgid "All settings except for the character set must be specified."
3622
- msgstr ""
3623
-
3624
- #: bp-forums/bbpress/bb-admin/options-wordpress.php:297
3625
- msgid ""
3626
- "Only set these values if your user tables differ from the default WordPress "
3627
- "naming convention."
3628
- msgstr ""
3629
-
3630
- #: bp-forums/bbpress/bb-admin/options-writing.php:38
3631
- msgid "Lock post editing after"
3632
- msgstr ""
3633
-
3634
- #: bp-forums/bbpress/bb-admin/options-writing.php:41
3635
- msgid "A user can edit a post for this many minutes after submitting."
3636
- msgstr ""
3637
-
3638
- #: bp-forums/bbpress/bb-admin/options-writing.php:47
3639
- msgid "XML-RPC"
3640
- msgstr ""
3641
-
3642
- #: bp-forums/bbpress/bb-admin/options-writing.php:50
3643
- msgid "Enable the bbPress XML-RPC publishing protocol."
3644
- msgstr ""
3645
-
3646
- #: bp-forums/bbpress/bb-admin/options-writing.php:63
3647
- msgid "Writing Settings"
3648
- msgstr ""
3649
-
3650
- #: bp-forums/bbpress/bb-admin/options-writing.php:69
3651
- msgid "Remote Publishing"
3652
- msgstr ""
3653
-
3654
- #: bp-forums/bbpress/bb-admin/options-writing.php:71
3655
- msgid ""
3656
- "To interact with bbPress from a desktop client or remote website that uses "
3657
- "the XML-RPC publishing interface you must enable it below."
3658
- msgstr ""
3659
-
3660
- #: bp-forums/bbpress/bb-admin/plugins.php:121
3661
- msgid ""
3662
- "<strong>Plugin could not be activated, it produced a Fatal Error</strong>. "
3663
- "The error is shown below."
3664
- msgstr ""
3665
-
3666
- #: bp-forums/bbpress/bb-admin/plugins.php:125
3667
- #, php-format
3668
- msgid "<strong>\"%s\" plugin activated</strong>"
3669
- msgstr ""
3670
-
3671
- #: bp-forums/bbpress/bb-admin/plugins.php:129
3672
- #, php-format
3673
- msgid "<strong>\"%s\" plugin deactivated</strong>"
3674
- msgstr ""
3675
-
3676
- #: bp-forums/bbpress/bb-admin/plugins.php:135
3677
- msgid ""
3678
- "<strong>\"Safe mode\" is on, all plugins are disabled even if they are "
3679
- "listed as active.</strong>"
3680
- msgstr ""
3681
-
3682
- #: bp-forums/bbpress/bb-admin/plugins.php:145
3683
- msgid "Manage Plugins"
3684
- msgstr ""
3685
-
3686
- #: bp-forums/bbpress/bb-admin/plugins.php:172
3687
- #, php-format
3688
- msgid "All <span class=\"count\">(%d)</span>"
3689
- msgstr ""
3690
-
3691
- #: bp-forums/bbpress/bb-admin/plugins.php:173
3692
- #, php-format
3693
- msgid "Active <span class=\"count\">(%d)</span>"
3694
- msgstr ""
3695
-
3696
- #: bp-forums/bbpress/bb-admin/plugins.php:174
3697
- #, php-format
3698
- msgid "Inactive <span class=\"count\">(%d)</span>"
3699
- msgstr ""
3700
-
3701
- #: bp-forums/bbpress/bb-admin/plugins.php:175
3702
- #, php-format
3703
- msgid "Autoloaded <span class=\"count\">(%d)</span>"
3704
- msgstr ""
3705
-
3706
- #: bp-forums/bbpress/bb-admin/plugins.php:185
3707
- #: bp-forums/bbpress/bb-admin/plugins.php:191
3708
- msgid "Plugin"
3709
- msgstr ""
3710
-
3711
- #: bp-forums/bbpress/bb-admin/plugins.php:202
3712
- #: bp-forums/bbpress/bb-admin/themes.php:96
3713
- #: bp-messages/bp-messages-templatetags.php:445
3714
- #: bp-themes/bp-default/registration/activate.php:40
3715
- msgid "Activate"
3716
- msgstr ""
3717
-
3718
- #: bp-forums/bbpress/bb-admin/plugins.php:209
3719
- #: bp-messages/bp-messages-templatetags.php:443
3720
- msgid "Deactivate"
3721
- msgstr ""
3722
-
3723
- #: bp-forums/bbpress/bb-admin/plugins.php:227
3724
- #, php-format
3725
- msgid "By %s"
3726
- msgstr ""
3727
-
3728
- #: bp-forums/bbpress/bb-admin/plugins.php:239
3729
- msgid "Autoloaded"
3730
- msgstr ""
3731
-
3732
- #: bp-forums/bbpress/bb-admin/plugins.php:258
3733
- msgid "No plugins found."
3734
- msgstr ""
3735
-
3736
- #: bp-forums/bbpress/bb-admin/posts.php:7
3737
- msgid "<strong>Post undeleted.</strong>"
3738
- msgstr ""
3739
-
3740
- #: bp-forums/bbpress/bb-admin/posts.php:10
3741
- msgid "<strong>Post deleted.</strong>"
3742
- msgstr ""
3743
-
3744
- #: bp-forums/bbpress/bb-admin/posts.php:13
3745
- msgid "<strong>Post spammed.</strong>"
3746
- msgstr ""
3747
-
3748
- #: bp-forums/bbpress/bb-admin/posts.php:16
3749
- msgid "<strong>Post removed from spam.</strong> It is now a normal post."
3750
- msgstr ""
3751
-
3752
- #: bp-forums/bbpress/bb-admin/posts.php:19
3753
- msgid "<strong>Post removed from spam.</strong> It is now a deleted post."
3754
- msgstr ""
3755
-
3756
- #: bp-forums/bbpress/bb-admin/posts.php:36
3757
- #: bp-forums/bbpress/bb-admin/topics.php:26
3758
- msgid "Now how'd you get here? And what did you think you'd being doing?"
3759
- msgstr ""
3760
-
3761
- #: bp-forums/bbpress/bb-admin/posts.php:55
3762
- #: bp-forums/bbpress/bb-admin/topics.php:49
3763
- #, php-format
3764
- msgid "in &#8220;%s&#8221;"
3765
- msgstr ""
3766
-
3767
- #: bp-forums/bbpress/bb-admin/posts.php:56
3768
- #: bp-forums/bbpress/bb-admin/topics.php:50
3769
- #, php-format
3770
- msgid "with tag &#8220;%s&#8221;"
3771
- msgstr ""
3772
-
3773
- #: bp-forums/bbpress/bb-admin/posts.php:57
3774
- #: bp-forums/bbpress/bb-admin/topics.php:51
3775
- #: bp-themes/bp-default/archive.php:29 bp-themes/bp-default/archive.php:35
3776
- #: bp-themes/bp-default/index.php:20 bp-themes/bp-default/index.php:26
3777
- #: bp-themes/bp-default/search.php:29 bp-themes/bp-default/search.php:35
3778
- #: bp-themes/bp-default/single.php:23 bp-themes/bp-default/single.php:29
3779
- #, php-format
3780
- msgid "by %s"
3781
- msgstr ""
3782
-
3783
- #: bp-forums/bbpress/bb-admin/posts.php:61
3784
- #, php-format
3785
- msgid "from IP address %s"
3786
- msgstr ""
3787
-
3788
- #: bp-forums/bbpress/bb-admin/posts.php:69
3789
- #, php-format
3790
- msgid "%1$s%2$s%3$s%4$s%5$s"
3791
- msgstr ""
3792
-
3793
- #: bp-forums/bbpress/bb-admin/posts.php:94
3794
- #: bp-forums/bbpress/bb-admin/topics.php:81
3795
- msgid "&laquo;"
3796
- msgstr ""
3797
-
3798
- #: bp-forums/bbpress/bb-admin/posts.php:95
3799
- #: bp-forums/bbpress/bb-admin/topics.php:82
3800
- msgid "&raquo;"
3801
- msgstr ""
3802
-
3803
- #: bp-forums/bbpress/bb-admin/tag-destroy.php:5
3804
- #: bp-forums/bbpress/bb-admin/tag-merge.php:5
3805
- #: bp-forums/bbpress/bb-admin/tag-rename.php:5
3806
- msgid "You are not allowed to manage tags."
3807
- msgstr ""
3808
-
3809
- #: bp-forums/bbpress/bb-admin/tag-destroy.php:13
3810
- #: bp-forums/bbpress/bb-admin/tag-rename.php:14
3811
- msgid "Tag not found."
3812
- msgstr ""
3813
-
3814
- #: bp-forums/bbpress/bb-admin/tag-destroy.php:16
3815
- #, php-format
3816
- msgid "Rows deleted from tags table: %d <br />\n"
3817
- msgstr ""
3818
-
3819
- #: bp-forums/bbpress/bb-admin/tag-destroy.php:17
3820
- #, php-format
3821
- msgid "Rows deleted from tagged table: %d <br />\n"
3822
- msgstr ""
3823
-
3824
- #: bp-forums/bbpress/bb-admin/tag-destroy.php:18
3825
- #, php-format
3826
- msgid "<a href=\"%s\">Home</a>"
3827
- msgstr ""
3828
-
3829
- #: bp-forums/bbpress/bb-admin/tag-destroy.php:20
3830
- #, php-format
3831
- msgid ""
3832
- "Something odd happened when attempting to destroy that tag.<br />\n"
3833
- "<a href=\"%s\">Try Again?</a>"
3834
- msgstr ""
3835
-
3836
- #: bp-forums/bbpress/bb-admin/tag-merge.php:13
3837
- msgid "Tag specified not found."
3838
- msgstr ""
3839
-
3840
- #: bp-forums/bbpress/bb-admin/tag-merge.php:16
3841
- msgid "Tag to be merged not found."
3842
- msgstr ""
3843
-
3844
- #: bp-forums/bbpress/bb-admin/tag-merge.php:19
3845
- #, php-format
3846
- msgid "Number of topics from which the old tag was removed: %d <br />\n"
3847
- msgstr ""
3848
-
3849
- #: bp-forums/bbpress/bb-admin/tag-merge.php:20
3850
- #, php-format
3851
- msgid "Number of topics to which the new tag was added: %d <br />\n"
3852
- msgstr ""
3853
-
3854
- #: bp-forums/bbpress/bb-admin/tag-merge.php:21
3855
- #, php-format
3856
- msgid "Number of rows deleted from tags table:%d <br />\n"
3857
- msgstr ""
3858
-
3859
- #: bp-forums/bbpress/bb-admin/tag-merge.php:22
3860
- #, php-format
3861
- msgid "<a href=\"%s\">New Tag</a>"
3862
- msgstr ""
3863
-
3864
- #: bp-forums/bbpress/bb-admin/tag-merge.php:24
3865
- #, php-format
3866
- msgid ""
3867
- "Something odd happened when attempting to merge those tags.<br />\n"
3868
- "<a href=\"%s\">Try Again?</a>"
3869
- msgstr ""
3870
-
3871
- #: bp-forums/bbpress/bb-admin/tag-rename.php:20
3872
- #, php-format
3873
- msgid ""
3874
- "There already exists a tag by that name or the name is invalid. <a href=\"%s"
3875
- "\">Try Again</a>"
3876
- msgstr ""
3877
-
3878
- #: bp-forums/bbpress/bb-admin/themes.php:38
3879
- #, php-format
3880
- msgid "<strong>Theme \"%s\" activated</strong>"
3881
- msgstr ""
3882
-
3883
- #: bp-forums/bbpress/bb-admin/themes.php:43
3884
- msgid "<strong>Default theme is missing.</strong>"
3885
- msgstr ""
3886
-
3887
- #: bp-forums/bbpress/bb-admin/themes.php:47
3888
- msgid "<strong>Theme not found. Default theme applied.</strong>"
3889
- msgstr ""
3890
-
3891
- #: bp-forums/bbpress/bb-admin/themes.php:63
3892
- #: bp-forums/bbpress/bb-admin/themes.php:96
3893
- #, php-format
3894
- msgid "Activate \"%s\""
3895
- msgstr ""
3896
-
3897
- #: bp-forums/bbpress/bb-admin/themes.php:68
3898
- #, php-format
3899
- msgid "%1$s %2$s by <cite>%3$s</cite>"
3900
- msgstr ""
3901
-
3902
- #: bp-forums/bbpress/bb-admin/themes.php:82
3903
- #, php-format
3904
- msgid "Ported by <cite>%s</cite>"
3905
- msgstr ""
3906
-
3907
- #: bp-forums/bbpress/bb-admin/themes.php:101
3908
- #, php-format
3909
- msgid "All of this theme's files are located in the \"%s\" themes directory."
3910
- msgstr ""
3911
-
3912
- #: bp-forums/bbpress/bb-admin/themes.php:112
3913
- msgid ""
3914
- "<strong>\"Safe mode\" is on, the default theme will be used instead of the "
3915
- "active theme indicated below.</strong>"
3916
- msgstr ""
3917
-
3918
- #: bp-forums/bbpress/bb-admin/themes.php:120
3919
- msgid "Manage Themes"
3920
- msgstr ""
3921
-
3922
- #: bp-forums/bbpress/bb-admin/themes.php:123
3923
- msgid "Current Theme"
3924
- msgstr ""
3925
-
3926
- #: bp-forums/bbpress/bb-admin/themes.php:132
3927
- msgid "Available Themes"
3928
- msgstr ""
3929
-
3930
- #: bp-forums/bbpress/bb-admin/tools-recount.php:74
3931
- msgid ""
3932
- "To minimize database queries, bbPress keeps it's own count of various items "
3933
- "like posts in each topic and topics in each forum. Occasionally these "
3934
- "internal counters may become incorrect, you can manually re-count these "
3935
- "items using this form."
3936
- msgstr ""
3937
-
3938
- #: bp-forums/bbpress/bb-admin/tools-recount.php:75
3939
- msgid "You can also clean out some stale items here, like empty tags."
3940
- msgstr ""
3941
-
3942
- #: bp-forums/bbpress/bb-admin/tools-recount.php:82
3943
- msgid "Items to re-count"
3944
- msgstr ""
3945
-
3946
- #: bp-forums/bbpress/bb-admin/tools-recount.php:95
3947
- msgid "There are no re-count tools available."
3948
- msgstr ""
3949
-
3950
- #: bp-forums/bbpress/bb-admin/tools-recount.php:102
3951
- msgid "Recount Items"
3952
- msgstr ""
3953
-
3954
- #: bp-forums/bbpress/bb-admin/topic-move.php:8
3955
- msgid "Invalid topic or forum."
3956
- msgstr ""
3957
-
3958
- #: bp-forums/bbpress/bb-admin/topic-move.php:21
3959
- msgid "Your topic or forum caused all manner of confusion"
3960
- msgstr ""
3961
-
3962
- #: bp-forums/bbpress/bb-admin/topics.php:7
3963
- msgid "<strong>Topic undeleted.</strong>"
3964
- msgstr ""
3965
-
3966
- #: bp-forums/bbpress/bb-admin/topics.php:10
3967
- msgid "<strong>Topic deleted.</strong>"
3968
- msgstr ""
3969
-
3970
- #: bp-forums/bbpress/bb-admin/topics.php:13
3971
- msgid "<strong>Topic opened.</strong>"
3972
- msgstr ""
3973
-
3974
- #: bp-forums/bbpress/bb-admin/topics.php:16
3975
- msgid "<strong>Topic closed.</strong>"
3976
- msgstr ""
3977
-
3978
- #: bp-forums/bbpress/bb-admin/topics.php:56
3979
- #, php-format
3980
- msgid "%1$s%2$s%3$s%4$s"
3981
- msgstr ""
3982
-
3983
- #: bp-forums/bbpress/bb-admin/topics.php:94 bp-forums/bbpress/xmlrpc.php:1369
3984
- #: bp-forums/bbpress/xmlrpc.php:2761 bp-forums/bbpress/xmlrpc.php:3072
3985
- msgid "No topics found."
3986
- msgstr ""
3987
-
3988
- #: bp-forums/bbpress/bb-admin/topics.php:105
3989
- #: bp-forums/bbpress/bb-admin/topics.php:114
3990
- #: bp-forums/bbpress/bb-templates/kakumei/favorites.php:20
3991
- #: bp-forums/bbpress/bb-templates/kakumei/forum.php:13
3992
- #: bp-forums/bbpress/bb-templates/kakumei/front-page.php:21
3993
- #: bp-forums/bbpress/bb-templates/kakumei/tag-single.php:15
3994
- #: bp-forums/bbpress/bb-templates/kakumei/view.php:13
3995
- #: bp-themes/bp-default/forums/forums-loop.php:32
3996
- msgid "Freshness"
3997
- msgstr ""
3998
-
3999
- #: bp-forums/bbpress/bb-admin/topics.php:127
4000
- #: bp-messages/bp-messages-templatetags.php:470
4001
- #: bp-themes/bp-default/functions.php:225
4002
- msgid "Close"
4003
- msgstr ""
4004
-
4005
- #: bp-forums/bbpress/bb-admin/topics.php:127
4006
- msgctxt "action"
4007
- msgid "Open"
4008
- msgstr ""
4009
-
4010
- #: bp-forums/bbpress/bb-admin/topics.php:128
4011
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2053
4012
- msgid "Undelete"
4013
- msgstr ""
4014
-
4015
- #: bp-forums/bbpress/bb-admin/topics.php:148
4016
- #, php-format
4017
- msgid "Last post by %s"
4018
- msgstr ""
4019
-
4020
- #: bp-forums/bbpress/bb-admin/upgrade.php:49
4021
- msgid "Beginning upgrade&hellip;"
4022
- msgstr ""
4023
-
4024
- #: bp-forums/bbpress/bb-admin/upgrade.php:53
4025
- #: bp-forums/bbpress/bb-includes/backpress/class.bp-sql-schema-parser.php:600
4026
- msgid "Done"
4027
- msgstr ""
4028
-
4029
- #: bp-forums/bbpress/bb-admin/upgrade.php:71
4030
- msgid "bbPress database upgrade"
4031
- msgstr ""
4032
-
4033
- #: bp-forums/bbpress/bb-admin/upgrade.php:89
4034
- #, php-format
4035
- msgid "Nothing to upgrade. <a href=\"%s\">Get back to work!</a>"
4036
- msgstr ""
4037
-
4038
- #: bp-forums/bbpress/bb-admin/upgrade.php:97
4039
- msgid "Database upgrade required"
4040
- msgstr ""
4041
-
4042
- #: bp-forums/bbpress/bb-admin/upgrade.php:101
4043
- msgid "It looks like your database is out-of-date. You can upgrade it here."
4044
- msgstr ""
4045
-
4046
- #: bp-forums/bbpress/bb-admin/upgrade.php:107
4047
- msgid "Upgrade database"
4048
- msgstr ""
4049
-
4050
- #: bp-forums/bbpress/bb-admin/upgrade.php:119
4051
- msgid "Database upgrade complete"
4052
- msgstr ""
4053
-
4054
- #: bp-forums/bbpress/bb-admin/upgrade.php:123
4055
- msgid "Your database has been successfully upgraded, enjoy!"
4056
- msgstr ""
4057
-
4058
- #: bp-forums/bbpress/bb-admin/upgrade.php:128
4059
- #: bp-forums/bbpress/bb-admin/upgrade.php:170
4060
- msgid "Show upgrade messages"
4061
- msgstr ""
4062
-
4063
- #: bp-forums/bbpress/bb-admin/upgrade.php:137
4064
- #: bp-forums/bbpress/bb-admin/upgrade.php:189
4065
- msgid "Upgrade log"
4066
- msgstr ""
4067
-
4068
- #: bp-forums/bbpress/bb-admin/upgrade.php:144
4069
- #: bp-forums/bbpress/bb-admin/upgrade.php:196
4070
- msgid "&laquo; Go back to forums"
4071
- msgstr ""
4072
-
4073
- #: bp-forums/bbpress/bb-admin/upgrade.php:147
4074
- msgid "Go to admin"
4075
- msgstr ""
4076
-
4077
- #: bp-forums/bbpress/bb-admin/upgrade.php:159
4078
- msgid "Database upgrade failed"
4079
- msgstr ""
4080
-
4081
- #: bp-forums/bbpress/bb-admin/upgrade.php:163
4082
- msgid ""
4083
- "The upgrade process seems to have failed. Check the upgrade messages below "
4084
- "for more information.<br /><br />Attempting to go to the admin area without "
4085
- "resolving the listed errors will return you to this upgrade page."
4086
- msgstr ""
4087
-
4088
- #: bp-forums/bbpress/bb-admin/upgrade.php:182
4089
- msgid "Error log"
4090
- msgstr ""
4091
-
4092
- #: bp-forums/bbpress/bb-admin/upgrade.php:199
4093
- msgid "Try again"
4094
- msgstr ""
4095
-
4096
- #: bp-forums/bbpress/bb-edit.php:16
4097
- msgid "Sorry, post is too old."
4098
- msgstr ""
4099
-
4100
- #: bp-forums/bbpress/bb-includes/backpress/class.bp-sql-schema-parser.php:317
4101
- msgid "Passed variable is not a BackPress database object."
4102
- msgstr ""
4103
-
4104
- #: bp-forums/bbpress/bb-includes/backpress/class.bp-sql-schema-parser.php:321
4105
- msgid "No schema available."
4106
- msgstr ""
4107
-
4108
- #: bp-forums/bbpress/bb-includes/backpress/class.bp-sql-schema-parser.php:387
4109
- msgid "Creating table"
4110
- msgstr ""
4111
-
4112
- #: bp-forums/bbpress/bb-includes/backpress/class.bp-sql-schema-parser.php:416
4113
- #, php-format
4114
- msgid "Adding column: %s"
4115
- msgstr ""
4116
-
4117
- #: bp-forums/bbpress/bb-includes/backpress/class.bp-sql-schema-parser.php:434
4118
- #, php-format
4119
- msgid "Setting default on column: %s"
4120
- msgstr ""
4121
-
4122
- #: bp-forums/bbpress/bb-includes/backpress/class.bp-sql-schema-parser.php:449
4123
- #, php-format
4124
- msgid "Changing column: %s"
4125
- msgstr ""
4126
-
4127
- #: bp-forums/bbpress/bb-includes/backpress/class.bp-sql-schema-parser.php:491
4128
- #: bp-forums/bbpress/bb-includes/backpress/class.bp-sql-schema-parser.php:514
4129
- #, php-format
4130
- msgid "Adding index: %s"
4131
- msgstr ""
4132
-
4133
- #: bp-forums/bbpress/bb-includes/backpress/class.bp-sql-schema-parser.php:507
4134
- #, php-format
4135
- msgid "Dropping index: %s"
4136
- msgstr ""
4137
-
4138
- #: bp-forums/bbpress/bb-includes/backpress/class.bp-sql-schema-parser.php:535
4139
- msgid "Inserting data"
4140
- msgstr ""
4141
-
4142
- #: bp-forums/bbpress/bb-includes/backpress/class.bp-sql-schema-parser.php:548
4143
- msgid "Updating data"
4144
- msgstr ""
4145
-
4146
- #: bp-forums/bbpress/bb-includes/backpress/class.bp-sql-schema-parser.php:566
4147
- #, php-format
4148
- msgid "Modifying database: %s (%s)"
4149
- msgstr ""
4150
-
4151
- #: bp-forums/bbpress/bb-includes/backpress/class.bp-sql-schema-parser.php:570
4152
- #, php-format
4153
- msgid "Table: %s"
4154
- msgstr ""
4155
-
4156
- #: bp-forums/bbpress/bb-includes/backpress/class.bp-sql-schema-parser.php:582
4157
- msgid "Skipped"
4158
- msgstr ""
4159
-
4160
- #: bp-forums/bbpress/bb-includes/backpress/class.bp-sql-schema-parser.php:594
4161
- msgid "SQL ERROR! See the error log for more detail"
4162
- msgstr ""
4163
-
4164
- #: bp-forums/bbpress/bb-includes/backpress/class.bp-sql-schema-parser.php:595
4165
- msgid "SQL ERROR!"
4166
- msgstr ""
4167
-
4168
- #: bp-forums/bbpress/bb-includes/backpress/class.bp-sql-schema-parser.php:596
4169
- #, php-format
4170
- msgid "Database: %s (%s)"
4171
- msgstr ""
4172
-
4173
- #: bp-forums/bbpress/bb-includes/backpress/class.wp-http.php:723
4174
- #: bp-forums/bbpress/bb-includes/backpress/class.wp-http.php:1341
4175
- msgid "Too many redirects."
4176
- msgstr ""
4177
-
4178
- #: bp-forums/bbpress/bb-includes/backpress/class.wp-http.php:803
4179
- #: bp-forums/bbpress/bb-includes/backpress/class.wp-http.php:930
4180
- #, php-format
4181
- msgid "Malformed URL: %s"
4182
- msgstr ""
4183
-
4184
- #: bp-forums/bbpress/bb-includes/backpress/class.wp-http.php:814
4185
- #: bp-forums/bbpress/bb-includes/backpress/class.wp-http.php:987
4186
- #, php-format
4187
- msgid "Could not open handle for fopen() to %s"
4188
- msgstr ""
4189
-
4190
- #: bp-forums/bbpress/bb-includes/backpress/class.wp-taxonomy.php:226
4191
- #: bp-forums/bbpress/bb-includes/backpress/class.wp-taxonomy.php:299
4192
- #: bp-forums/bbpress/bb-includes/backpress/class.wp-taxonomy.php:403
4193
- #: bp-forums/bbpress/bb-includes/backpress/class.wp-taxonomy.php:581
4194
- #: bp-forums/bbpress/bb-includes/backpress/class.wp-taxonomy.php:1166
4195
- #: bp-forums/bbpress/bb-includes/backpress/class.wp-taxonomy.php:1400
4196
- #: bp-forums/bbpress/bb-includes/class.bb-taxonomy.php:48
4197
- #: bp-forums/bbpress/bb-includes/class.bb-taxonomy.php:151
4198
- #: bp-forums/bbpress/bb-includes/class.bb-taxonomy.php:275
4199
- msgid "Invalid Taxonomy"
4200
- msgstr ""
4201
-
4202
- #: bp-forums/bbpress/bb-includes/backpress/class.wp-taxonomy.php:294
4203
- msgid "Empty Term"
4204
- msgstr ""
4205
-
4206
- #: bp-forums/bbpress/bb-includes/backpress/class.wp-taxonomy.php:1300
4207
- #: bp-forums/bbpress/bb-includes/backpress/class.wp-taxonomy.php:1549
4208
- msgid "Invalid taxonomy"
4209
- msgstr ""
4210
-
4211
- #: bp-forums/bbpress/bb-includes/backpress/class.wp-taxonomy.php:1303
4212
- msgid "Invalid term ID"
4213
- msgstr ""
4214
-
4215
- #: bp-forums/bbpress/bb-includes/backpress/class.wp-taxonomy.php:1306
4216
- #: bp-forums/bbpress/bb-includes/backpress/class.wp-taxonomy.php:1572
4217
- msgid "A name is required for this term"
4218
- msgstr ""
4219
-
4220
- #: bp-forums/bbpress/bb-includes/backpress/class.wp-taxonomy.php:1337
4221
- #: bp-forums/bbpress/bb-includes/backpress/class.wp-taxonomy.php:1344
4222
- msgid "Could not insert term into the database"
4223
- msgstr ""
4224
-
4225
- #: bp-forums/bbpress/bb-includes/backpress/class.wp-taxonomy.php:1600
4226
- #, php-format
4227
- msgid "The slug &#8220;%s&#8221; is already in use by another term"
4228
- msgstr ""
4229
-
4230
- #: bp-forums/bbpress/bb-includes/backpress/class.wp-taxonomy.php:2037
4231
- msgid "Invalid object ID"
4232
- msgstr ""
4233
-
4234
- #: bp-forums/bbpress/bb-includes/backpress/class.wp-users.php:51
4235
- msgid "Invalid login name"
4236
- msgstr ""
4237
-
4238
- #: bp-forums/bbpress/bb-includes/backpress/class.wp-users.php:53
4239
- msgid "Name already exists"
4240
- msgstr ""
4241
-
4242
- #: bp-forums/bbpress/bb-includes/backpress/class.wp-users.php:58
4243
- msgid "Invalid nicename"
4244
- msgstr ""
4245
-
4246
- #: bp-forums/bbpress/bb-includes/backpress/class.wp-users.php:60
4247
- msgid "Nicename already exists"
4248
- msgstr ""
4249
-
4250
- #: bp-forums/bbpress/bb-includes/backpress/class.wp-users.php:65
4251
- #: bp-forums/bbpress/bb-includes/functions.bb-pluggable.php:584
4252
- #: bp-forums/bbpress/profile-edit.php:62
4253
- msgid "Invalid email address"
4254
- msgstr ""
4255
-
4256
- #: bp-forums/bbpress/bb-includes/backpress/class.wp-users.php:70
4257
- msgid "Email already exists"
4258
- msgstr ""
4259
-
4260
- #: bp-forums/bbpress/bb-includes/backpress/class.wp-users.php:90
4261
- msgid "Invalid registration time"
4262
- msgstr ""
4263
-
4264
- #: bp-forums/bbpress/bb-includes/backpress/class.wp-users.php:93
4265
- msgid "Invalid registration timestamp"
4266
- msgstr ""
4267
-
4268
- #: bp-forums/bbpress/bb-includes/backpress/class.wp-users.php:110
4269
- msgid "Query failed"
4270
- msgstr ""
4271
-
4272
- #: bp-forums/bbpress/bb-includes/backpress/class.wp-users.php:295
4273
- #: bp-forums/bbpress/bb-includes/backpress/class.wp-users.php:341
4274
- msgid "Multiple email matches. Log in with your username."
4275
- msgstr ""
4276
-
4277
- #: bp-forums/bbpress/bb-includes/backpress/class.wp-users.php:297
4278
- #: bp-forums/bbpress/bb-includes/backpress/class.wp-users.php:343
4279
- #, php-format
4280
- msgid "Multiple %s matches"
4281
- msgstr ""
4282
-
4283
- #: bp-forums/bbpress/bb-includes/backpress/functions.core.php:957
4284
- msgid "Select a city"
4285
- msgstr ""
4286
-
4287
- #: bp-forums/bbpress/bb-includes/backpress/functions.core.php:972
4288
- msgid "Manual offsets"
4289
- msgstr ""
4290
-
4291
- #: bp-forums/bbpress/bb-includes/backpress/functions.core.php:1140
4292
- msgid "BackPress &rsaquo; Error"
4293
- msgstr ""
4294
-
4295
- #. translators: opening curly quote
4296
- #: bp-forums/bbpress/bb-includes/backpress/functions.formatting.php:46
4297
- msgctxt "opening curly quote"
4298
- msgid "&#8220;"
4299
- msgstr ""
4300
-
4301
- #. translators: closing curly quote
4302
- #: bp-forums/bbpress/bb-includes/backpress/functions.formatting.php:48
4303
- msgctxt "closing curly quote"
4304
- msgid "&#8221;"
4305
- msgstr ""
4306
-
4307
- #: bp-forums/bbpress/bb-includes/backpress/functions.wp-cron.php:301
4308
- msgid "Once Hourly"
4309
- msgstr ""
4310
-
4311
- #: bp-forums/bbpress/bb-includes/backpress/functions.wp-cron.php:302
4312
- msgid "Twice Daily"
4313
- msgstr ""
4314
-
4315
- #: bp-forums/bbpress/bb-includes/backpress/functions.wp-cron.php:303
4316
- msgid "Once Daily"
4317
- msgstr ""
4318
-
4319
- #: bp-forums/bbpress/bb-includes/backpress/pomo/sample/app.php:56
4320
- #, php-format
4321
- msgid "Welcome %s!"
4322
- msgstr ""
4323
-
4324
- #: bp-forums/bbpress/bb-includes/backpress/pomo/sample/app.php:60
4325
- msgid "A string with low priority!"
4326
- msgstr ""
4327
-
4328
- #: bp-forums/bbpress/bb-includes/backpress/pomo/sample/app.php:62
4329
- msgid "Bye\n"
4330
- msgstr ""
4331
-
4332
- #: bp-forums/bbpress/bb-includes/class.bb-dir-map.php:19
4333
- msgid "Not a valid directory"
4334
- msgstr ""
4335
-
4336
- #: bp-forums/bbpress/bb-includes/class.bb-dir-map.php:25
4337
- msgid "Invalid arguments"
4338
- msgstr ""
4339
-
4340
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:115
4341
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:125
4342
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:138
4343
- msgid "Sunday"
4344
- msgstr ""
4345
-
4346
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:116
4347
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:126
4348
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:139
4349
- msgid "Monday"
4350
- msgstr ""
4351
-
4352
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:117
4353
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:127
4354
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:140
4355
- msgid "Tuesday"
4356
- msgstr ""
4357
-
4358
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:118
4359
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:128
4360
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:141
4361
- msgid "Wednesday"
4362
- msgstr ""
4363
-
4364
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:119
4365
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:129
4366
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:142
4367
- msgid "Thursday"
4368
- msgstr ""
4369
-
4370
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:120
4371
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:130
4372
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:143
4373
- msgid "Friday"
4374
- msgstr ""
4375
-
4376
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:121
4377
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:131
4378
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:144
4379
- msgid "Saturday"
4380
- msgstr ""
4381
-
4382
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:125
4383
- msgid "S_Sunday_initial"
4384
- msgstr ""
4385
-
4386
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:126
4387
- msgid "M_Monday_initial"
4388
- msgstr ""
4389
-
4390
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:127
4391
- msgid "T_Tuesday_initial"
4392
- msgstr ""
4393
-
4394
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:128
4395
- msgid "W_Wednesday_initial"
4396
- msgstr ""
4397
-
4398
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:129
4399
- msgid "T_Thursday_initial"
4400
- msgstr ""
4401
-
4402
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:130
4403
- msgid "F_Friday_initial"
4404
- msgstr ""
4405
-
4406
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:131
4407
- msgid "S_Saturday_initial"
4408
- msgstr ""
4409
-
4410
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:138
4411
- msgid "Sun"
4412
- msgstr ""
4413
-
4414
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:139
4415
- msgid "Mon"
4416
- msgstr ""
4417
-
4418
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:140
4419
- msgid "Tue"
4420
- msgstr ""
4421
-
4422
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:141
4423
- msgid "Wed"
4424
- msgstr ""
4425
-
4426
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:142
4427
- msgid "Thu"
4428
- msgstr ""
4429
-
4430
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:143
4431
- msgid "Fri"
4432
- msgstr ""
4433
-
4434
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:144
4435
- msgid "Sat"
4436
- msgstr ""
4437
-
4438
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:147
4439
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:162
4440
- #: bp-xprofile/bp-xprofile-templatetags.php:483
4441
- msgid "January"
4442
- msgstr ""
4443
-
4444
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:148
4445
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:163
4446
- #: bp-xprofile/bp-xprofile-templatetags.php:483
4447
- msgid "February"
4448
- msgstr ""
4449
-
4450
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:149
4451
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:164
4452
- #: bp-xprofile/bp-xprofile-templatetags.php:483
4453
- msgid "March"
4454
- msgstr ""
4455
-
4456
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:150
4457
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:165
4458
- #: bp-xprofile/bp-xprofile-templatetags.php:484
4459
- msgid "April"
4460
- msgstr ""
4461
-
4462
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:151
4463
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:166
4464
- #: bp-xprofile/bp-xprofile-templatetags.php:484
4465
- msgid "May"
4466
- msgstr ""
4467
-
4468
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:152
4469
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:167
4470
- #: bp-xprofile/bp-xprofile-templatetags.php:484
4471
- msgid "June"
4472
- msgstr ""
4473
-
4474
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:153
4475
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:168
4476
- #: bp-xprofile/bp-xprofile-templatetags.php:485
4477
- msgid "July"
4478
- msgstr ""
4479
-
4480
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:154
4481
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:169
4482
- #: bp-xprofile/bp-xprofile-templatetags.php:485
4483
- msgid "August"
4484
- msgstr ""
4485
-
4486
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:155
4487
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:170
4488
- #: bp-xprofile/bp-xprofile-templatetags.php:485
4489
- msgid "September"
4490
- msgstr ""
4491
-
4492
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:156
4493
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:171
4494
- #: bp-xprofile/bp-xprofile-templatetags.php:486
4495
- msgid "October"
4496
- msgstr ""
4497
-
4498
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:157
4499
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:172
4500
- #: bp-xprofile/bp-xprofile-templatetags.php:486
4501
- msgid "November"
4502
- msgstr ""
4503
-
4504
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:158
4505
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:173
4506
- #: bp-xprofile/bp-xprofile-templatetags.php:486
4507
- msgid "December"
4508
- msgstr ""
4509
-
4510
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:162
4511
- msgid "Jan_January_abbreviation"
4512
- msgstr ""
4513
-
4514
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:163
4515
- msgid "Feb_February_abbreviation"
4516
- msgstr ""
4517
-
4518
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:164
4519
- msgid "Mar_March_abbreviation"
4520
- msgstr ""
4521
-
4522
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:165
4523
- msgid "Apr_April_abbreviation"
4524
- msgstr ""
4525
-
4526
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:166
4527
- msgid "May_May_abbreviation"
4528
- msgstr ""
4529
-
4530
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:167
4531
- msgid "Jun_June_abbreviation"
4532
- msgstr ""
4533
-
4534
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:168
4535
- msgid "Jul_July_abbreviation"
4536
- msgstr ""
4537
-
4538
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:169
4539
- msgid "Aug_August_abbreviation"
4540
- msgstr ""
4541
-
4542
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:170
4543
- msgid "Sep_September_abbreviation"
4544
- msgstr ""
4545
-
4546
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:171
4547
- msgid "Oct_October_abbreviation"
4548
- msgstr ""
4549
-
4550
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:172
4551
- msgid "Nov_November_abbreviation"
4552
- msgstr ""
4553
-
4554
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:173
4555
- msgid "Dec_December_abbreviation"
4556
- msgstr ""
4557
-
4558
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:180
4559
- msgid "am"
4560
- msgstr ""
4561
-
4562
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:181
4563
- msgid "pm"
4564
- msgstr ""
4565
-
4566
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:182
4567
- msgid "AM"
4568
- msgstr ""
4569
-
4570
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:183
4571
- msgid "PM"
4572
- msgstr ""
4573
-
4574
- #. translators: $decimals argument for http://php.net/number_format, default is 0
4575
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:189
4576
- msgid "number_format_decimals"
4577
- msgstr ""
4578
-
4579
- #. translators: $dec_point argument for http://php.net/number_format, default is .
4580
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:193
4581
- msgid "number_format_decimal_point"
4582
- msgstr ""
4583
-
4584
- #. translators: $thousands_sep argument for http://php.net/number_format, default is ,
4585
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:197
4586
- msgid "number_format_thousands_sep"
4587
- msgstr ""
4588
-
4589
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:201
4590
- msgid "F j, Y - h:i A"
4591
- msgstr ""
4592
-
4593
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:202
4594
- msgid "F j, Y"
4595
- msgstr ""
4596
-
4597
- #: bp-forums/bbpress/bb-includes/class.bb-locale.php:203
4598
- msgid "h:i A"
4599
- msgstr ""
4600
-
4601
- #: bp-forums/bbpress/bb-includes/class.bb-query.php:902
4602
- msgid "Search &#187;"
4603
- msgstr ""
4604
-
4605
- #: bp-forums/bbpress/bb-includes/class.bb-query.php:943
4606
- msgid "Any"
4607
- msgstr ""
4608
-
4609
- #: bp-forums/bbpress/bb-includes/class.bb-query.php:949
4610
- msgid "Tag"
4611
- msgstr ""
4612
-
4613
- #: bp-forums/bbpress/bb-includes/class.bb-query.php:956
4614
- msgid "Topic author"
4615
- msgstr ""
4616
-
4617
- #: bp-forums/bbpress/bb-includes/class.bb-query.php:963
4618
- msgid "Post author"
4619
- msgstr ""
4620
-
4621
- #: bp-forums/bbpress/bb-includes/class.bb-query.php:968
4622
- #: bp-forums/bbpress/bb-includes/class.bb-query.php:1001
4623
- #: bp-messages/bp-messages-templatetags.php:361
4624
- msgid "All"
4625
- msgstr ""
4626
-
4627
- #: bp-forums/bbpress/bb-includes/class.bb-query.php:968
4628
- msgid "Normal"
4629
- msgstr ""
4630
-
4631
- #: bp-forums/bbpress/bb-includes/class.bb-query.php:968
4632
- msgid "Deleted"
4633
- msgstr ""
4634
-
4635
- #: bp-forums/bbpress/bb-includes/class.bb-query.php:971
4636
- msgid "Topic status"
4637
- msgstr ""
4638
-
4639
- #: bp-forums/bbpress/bb-includes/class.bb-query.php:982
4640
- msgid "Post status"
4641
- msgstr ""
4642
-
4643
- #: bp-forums/bbpress/bb-includes/class.bb-query.php:993
4644
- msgid "Poster IP address"
4645
- msgstr ""
4646
-
4647
- #: bp-forums/bbpress/bb-includes/class.bb-query.php:999
4648
- msgid "Open?"
4649
- msgstr ""
4650
-
4651
- #: bp-forums/bbpress/bb-includes/class.bb-query.php:1001
4652
- msgctxt "posting status"
4653
- msgid "Open"
4654
- msgstr ""
4655
-
4656
- #: bp-forums/bbpress/bb-includes/class.bb-query.php:1001
4657
- msgid "Closed"
4658
- msgstr ""
4659
-
4660
- #: bp-forums/bbpress/bb-includes/class.bb-query.php:1012
4661
- #: bp-forums/bbpress/bb-templates/kakumei/post-form.php:3
4662
- msgid "Title"
4663
- msgstr ""
4664
-
4665
- #: bp-forums/bbpress/bb-includes/class.bb-taxonomy.php:272
4666
- msgid "Invalid User ID"
4667
- msgstr ""
4668
-
4669
- #: bp-forums/bbpress/bb-includes/functions.bb-capabilities.php:57
4670
- msgid "Key Master"
4671
- msgstr ""
4672
-
4673
- #: bp-forums/bbpress/bb-includes/functions.bb-capabilities.php:100
4674
- msgid "Administrator"
4675
- msgstr ""
4676
-
4677
- #: bp-forums/bbpress/bb-includes/functions.bb-capabilities.php:135
4678
- msgid "Moderator"
4679
- msgstr ""
4680
-
4681
- #: bp-forums/bbpress/bb-includes/functions.bb-capabilities.php:166
4682
- msgid "Member"
4683
- msgstr ""
4684
-
4685
- #: bp-forums/bbpress/bb-includes/functions.bb-capabilities.php:180
4686
- msgid "Inactive"
4687
- msgstr ""
4688
-
4689
- #: bp-forums/bbpress/bb-includes/functions.bb-capabilities.php:185
4690
- msgid "Blocked"
4691
- msgstr ""
4692
-
4693
- #: bp-forums/bbpress/bb-includes/functions.bb-core.php:26
4694
- #, php-format
4695
- msgid "Using deprecated bbPress %1$s - %2$s - replace with - %3$s"
4696
- msgstr ""
4697
-
4698
- #: bp-forums/bbpress/bb-includes/functions.bb-core.php:216
4699
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:1288
4700
- msgid "&laquo; Previous"
4701
- msgstr ""
4702
-
4703
- #: bp-forums/bbpress/bb-includes/functions.bb-core.php:217
4704
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:1289
4705
- msgid "Next &raquo;"
4706
- msgstr ""
4707
-
4708
- #: bp-forums/bbpress/bb-includes/functions.bb-core.php:223
4709
- #, php-format
4710
- msgid "Page %d"
4711
- msgstr ""
4712
-
4713
- #: bp-forums/bbpress/bb-includes/functions.bb-core.php:224
4714
- msgid "Previous page"
4715
- msgstr ""
4716
-
4717
- #: bp-forums/bbpress/bb-includes/functions.bb-core.php:225
4718
- msgid "Next page"
4719
- msgstr ""
4720
-
4721
- #: bp-forums/bbpress/bb-includes/functions.bb-core.php:385
4722
- #: bp-forums/bbpress/bb-includes/functions.bb-core.php:416
4723
- #: bp-forums/bbpress/bb-includes/functions.bb-core.php:429
4724
- #, php-format
4725
- msgid "%d second"
4726
- msgid_plural "%d seconds"
4727
- msgstr[0] ""
4728
- msgstr[1] ""
4729
-
4730
- #: bp-forums/bbpress/bb-includes/functions.bb-core.php:410
4731
- #, php-format
4732
- msgid "%d year"
4733
- msgid_plural "%d years"
4734
- msgstr[0] ""
4735
- msgstr[1] ""
4736
-
4737
- #: bp-forums/bbpress/bb-includes/functions.bb-core.php:411
4738
- #, php-format
4739
- msgid "%d month"
4740
- msgid_plural "%d months"
4741
- msgstr[0] ""
4742
- msgstr[1] ""
4743
-
4744
- #: bp-forums/bbpress/bb-includes/functions.bb-core.php:412
4745
- #, php-format
4746
- msgid "%d week"
4747
- msgid_plural "%d weeks"
4748
- msgstr[0] ""
4749
- msgstr[1] ""
4750
-
4751
- #: bp-forums/bbpress/bb-includes/functions.bb-core.php:413
4752
- #, php-format
4753
- msgid "%d day"
4754
- msgid_plural "%d days"
4755
- msgstr[0] ""
4756
- msgstr[1] ""
4757
-
4758
- #: bp-forums/bbpress/bb-includes/functions.bb-core.php:414
4759
- #, php-format
4760
- msgid "%d hour"
4761
- msgid_plural "%d hours"
4762
- msgstr[0] ""
4763
- msgstr[1] ""
4764
-
4765
- #: bp-forums/bbpress/bb-includes/functions.bb-core.php:415
4766
- #, php-format
4767
- msgid "%d minute"
4768
- msgid_plural "%d minutes"
4769
- msgstr[0] ""
4770
- msgstr[1] ""
4771
-
4772
- #: bp-forums/bbpress/bb-includes/functions.bb-core.php:746
4773
- msgid "User not found."
4774
- msgstr ""
4775
-
4776
- #: bp-forums/bbpress/bb-includes/functions.bb-core.php:819
4777
- msgid "REQUEST_URI"
4778
- msgstr ""
4779
-
4780
- #: bp-forums/bbpress/bb-includes/functions.bb-core.php:820
4781
- msgid "should be"
4782
- msgstr ""
4783
-
4784
- #: bp-forums/bbpress/bb-includes/functions.bb-core.php:821
4785
- msgid "full permalink"
4786
- msgstr ""
4787
-
4788
- #: bp-forums/bbpress/bb-includes/functions.bb-core.php:822
4789
- msgid "PATH_INFO"
4790
- msgstr ""
4791
-
4792
- #: bp-forums/bbpress/bb-includes/functions.bb-core.php:897
4793
- msgid "First name"
4794
- msgstr ""
4795
-
4796
- #: bp-forums/bbpress/bb-includes/functions.bb-core.php:898
4797
- msgid "Last name"
4798
- msgstr ""
4799
-
4800
- #: bp-forums/bbpress/bb-includes/functions.bb-core.php:899
4801
- msgid "Display name as"
4802
- msgstr ""
4803
-
4804
- #: bp-forums/bbpress/bb-includes/functions.bb-core.php:900
4805
- #: bp-themes/bp-default/comments.php:116
4806
- msgid "Email"
4807
- msgstr ""
4808
-
4809
- #: bp-forums/bbpress/bb-includes/functions.bb-core.php:902
4810
- msgid "Location"
4811
- msgstr ""
4812
-
4813
- #: bp-forums/bbpress/bb-includes/functions.bb-core.php:903
4814
- msgid "Occupation"
4815
- msgstr ""
4816
-
4817
- #: bp-forums/bbpress/bb-includes/functions.bb-core.php:904
4818
- msgid "Interests"
4819
- msgstr ""
4820
-
4821
- #: bp-forums/bbpress/bb-includes/functions.bb-core.php:911
4822
- msgid "Custom Title"
4823
- msgstr ""
4824
-
4825
- #: bp-forums/bbpress/bb-includes/functions.bb-core.php:918
4826
- #, php-format
4827
- msgid "Ignore the %d second post throttling limit"
4828
- msgstr ""
4829
-
4830
- #: bp-forums/bbpress/bb-includes/functions.bb-core.php:995
4831
- msgid "Topics with no replies"
4832
- msgstr ""
4833
-
4834
- #: bp-forums/bbpress/bb-includes/functions.bb-core.php:996
4835
- msgid "Topics with no tags"
4836
- msgstr ""
4837
-
4838
- #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1104
4839
- msgid "bbPress Failure Notice"
4840
- msgstr ""
4841
-
4842
- #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1107
4843
- msgid "Please try again."
4844
- msgstr ""
4845
-
4846
- #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1218
4847
- #, php-format
4848
- msgid "Back to <a href=\"%s\">%s</a>."
4849
- msgstr ""
4850
-
4851
- #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1231
4852
- msgid "Your attempt to submit this post has failed."
4853
- msgstr ""
4854
-
4855
- #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1232
4856
- msgid "Your attempt to edit this post has failed."
4857
- msgstr ""
4858
-
4859
- #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1233
4860
- msgid "Your attempt to delete this post has failed."
4861
- msgstr ""
4862
-
4863
- #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1235
4864
- msgid "Your attempt to create this topic has failed."
4865
- msgstr ""
4866
-
4867
- #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1236
4868
- msgid "Your attempt to change the resolution status of this topic has failed."
4869
- msgstr ""
4870
-
4871
- #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1237
4872
- msgid "Your attempt to delete this topic has failed."
4873
- msgstr ""
4874
-
4875
- #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1238
4876
- msgid "Your attempt to change the status of this topic has failed."
4877
- msgstr ""
4878
-
4879
- #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1239
4880
- msgid "Your attempt to change the sticky status of this topic has failed."
4881
- msgstr ""
4882
-
4883
- #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1240
4884
- msgid "Your attempt to move this topic has failed."
4885
- msgstr ""
4886
-
4887
- #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1242
4888
- msgid "Your attempt to add this tag to this topic has failed."
4889
- msgstr ""
4890
-
4891
- #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1243
4892
- msgid "Your attempt to rename this tag has failed."
4893
- msgstr ""
4894
-
4895
- #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1244
4896
- msgid "Your attempt to submit these tags has failed."
4897
- msgstr ""
4898
-
4899
- #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1245
4900
- msgid "Your attempt to destroy this tag has failed."
4901
- msgstr ""
4902
-
4903
- #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1246
4904
- msgid "Your attempt to remove this tag from this topic has failed."
4905
- msgstr ""
4906
-
4907
- #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1248
4908
- msgid "Your attempt to toggle your favorite status for this topic has failed."
4909
- msgstr ""
4910
-
4911
- #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1250
4912
- msgid "Your attempt to edit this user's profile has failed."
4913
- msgstr ""
4914
-
4915
- #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1252
4916
- msgid "Your attempt to add this forum has failed."
4917
- msgstr ""
4918
-
4919
- #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1253
4920
- msgid "Your attempt to update your forums has failed."
4921
- msgstr ""
4922
-
4923
- #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1254
4924
- msgid "Your attempt to delete that forum has failed."
4925
- msgstr ""
4926
-
4927
- #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1256
4928
- msgid "Your attempt to recount these items has failed."
4929
- msgstr ""
4930
-
4931
- #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1258
4932
- msgid "Your attempt to switch themes has failed."
4933
- msgstr ""
4934
-
4935
- #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1273
4936
- msgid "Your attempt to do this has failed."
4937
- msgstr ""
4938
-
4939
- #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1484
4940
- #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1617
4941
- msgid "Your search term was too short"
4942
- msgstr ""
4943
-
4944
- #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1564
4945
- msgid "Your query parameters are invalid"
4946
- msgstr ""
4947
-
4948
- #: bp-forums/bbpress/bb-includes/functions.bb-formatting.php:297
4949
- #: bp-forums/bbpress/bb-includes/functions.bb-formatting.php:301
4950
- #, php-format
4951
- msgid "[sticky] %s"
4952
- msgstr ""
4953
-
4954
- #: bp-forums/bbpress/bb-includes/functions.bb-formatting.php:310
4955
- #, php-format
4956
- msgid "[closed] %s"
4957
- msgstr ""
4958
-
4959
- #: bp-forums/bbpress/bb-includes/functions.bb-meta.php:334
4960
- msgid "Please give me a name!"
4961
- msgstr ""
4962
-
4963
- #: bp-forums/bbpress/bb-includes/functions.bb-pluggable.php:587
4964
- #: bp-forums/bbpress/bb-includes/functions.bb-pluggable.php:596
4965
- msgid "Invalid username"
4966
- msgstr ""
4967
-
4968
- #: bp-forums/bbpress/bb-includes/functions.bb-script-loader.php:18
4969
- msgid ""
4970
- "You are about to delete the selected items.\n"
4971
- " 'Cancel' to stop, 'OK' to delete."
4972
- msgstr ""
4973
-
4974
- #: bp-forums/bbpress/bb-includes/functions.bb-script-loader.php:22
4975
- msgid "drag"
4976
- msgstr ""
4977
-
4978
- #: bp-forums/bbpress/bb-includes/functions.bb-script-loader.php:23
4979
- msgid "Save Forum Order"
4980
- msgstr ""
4981
-
4982
- #: bp-forums/bbpress/bb-includes/functions.bb-script-loader.php:24
4983
- msgid "Edit Forum Order"
4984
- msgstr ""
4985
-
4986
- #: bp-forums/bbpress/bb-includes/functions.bb-script-loader.php:34
4987
- msgid "You do not have permission to do that."
4988
- msgstr ""
4989
-
4990
- #: bp-forums/bbpress/bb-includes/functions.bb-script-loader.php:35
4991
- msgid "An unidentified error has occurred."
4992
- msgstr ""
4993
-
4994
- #: bp-forums/bbpress/bb-includes/functions.bb-script-loader.php:44
4995
- msgid "Too short"
4996
- msgstr ""
4997
-
4998
- #: bp-forums/bbpress/bb-includes/functions.bb-script-loader.php:45
4999
- msgid "Bad"
5000
- msgstr ""
5001
-
5002
- #: bp-forums/bbpress/bb-includes/functions.bb-script-loader.php:46
5003
- msgid "Good"
5004
- msgstr ""
5005
-
5006
- #: bp-forums/bbpress/bb-includes/functions.bb-script-loader.php:47
5007
- msgid "Strong"
5008
- msgstr ""
5009
-
5010
- #: bp-forums/bbpress/bb-includes/functions.bb-script-loader.php:87
5011
- msgid "Are you sure you wanna delete this post?"
5012
- msgstr ""
5013
-
5014
- #: bp-forums/bbpress/bb-includes/functions.bb-script-loader.php:88
5015
- msgid "Are you sure you wanna undelete this post?"
5016
- msgstr ""
5017
-
5018
- #: bp-forums/bbpress/bb-includes/functions.bb-script-loader.php:89
5019
- #: bp-forums/bbpress/bb-templates/kakumei/favorites.php:5
5020
- msgid "favorites"
5021
- msgstr ""
5022
-
5023
- #: bp-forums/bbpress/bb-includes/functions.bb-script-loader.php:90
5024
- msgid "?"
5025
- msgstr ""
5026
-
5027
- #: bp-forums/bbpress/bb-includes/functions.bb-script-loader.php:91
5028
- msgid "This topic is one of your %favLinkYes% [%favDel%]"
5029
- msgstr ""
5030
-
5031
- #: bp-forums/bbpress/bb-includes/functions.bb-script-loader.php:92
5032
- msgid "%favAdd% (%favLinkNo%)"
5033
- msgstr ""
5034
-
5035
- #: bp-forums/bbpress/bb-includes/functions.bb-script-loader.php:93
5036
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:3357
5037
- msgid "&times;"
5038
- msgstr ""
5039
-
5040
- #: bp-forums/bbpress/bb-includes/functions.bb-script-loader.php:94
5041
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:3355
5042
- msgid "Add this topic to your favorites"
5043
- msgstr ""
5044
-
5045
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:276
5046
- msgid "New Topic in this Forum"
5047
- msgstr ""
5048
-
5049
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:278
5050
- #: bp-forums/bbpress/bb-templates/kakumei/front-page.php:86
5051
- msgid "Add New Topic"
5052
- msgstr ""
5053
-
5054
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:311
5055
- #, php-format
5056
- msgid "You must <a href=\"%s\">log in</a> to post."
5057
- msgstr ""
5058
-
5059
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:509
5060
- #: bp-forums/bbpress/bb-templates/kakumei/tag-single.php:3
5061
- #: bp-forums/bbpress/bb-templates/kakumei/tags.php:3
5062
- msgid "Tags"
5063
- msgstr ""
5064
-
5065
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:543
5066
- #: bp-forums/bbpress/rss.php:111
5067
- #, php-format
5068
- msgid "%1$s &raquo; User Favorites: %2$s"
5069
- msgstr ""
5070
-
5071
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:550
5072
- #: bp-forums/bbpress/rss.php:94
5073
- #, php-format
5074
- msgid "%1$s &raquo; Topic: %2$s"
5075
- msgstr ""
5076
-
5077
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:558
5078
- #: bp-forums/bbpress/rss.php:137
5079
- #, php-format
5080
- msgid "%1$s &raquo; Tag: %2$s - Recent Posts"
5081
- msgstr ""
5082
-
5083
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:562
5084
- #: bp-forums/bbpress/rss.php:127
5085
- #, php-format
5086
- msgid "%1$s &raquo; Tag: %2$s - Recent Topics"
5087
- msgstr ""
5088
-
5089
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:570
5090
- #: bp-forums/bbpress/rss.php:159
5091
- #, php-format
5092
- msgid "%1$s &raquo; Forum: %2$s - Recent Posts"
5093
- msgstr ""
5094
-
5095
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:574
5096
- #: bp-forums/bbpress/rss.php:151
5097
- #, php-format
5098
- msgid "%1$s &raquo; Forum: %2$s - Recent Topics"
5099
- msgstr ""
5100
-
5101
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:581
5102
- #: bp-forums/bbpress/rss.php:184
5103
- #, php-format
5104
- msgid "%1$s &raquo; Recent Posts"
5105
- msgstr ""
5106
-
5107
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:585
5108
- #: bp-forums/bbpress/rss.php:174
5109
- #, php-format
5110
- msgid "%1$s &raquo; Recent Topics"
5111
- msgstr ""
5112
-
5113
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:594
5114
- #: bp-forums/bbpress/rss.php:84
5115
- #, php-format
5116
- msgid "%1$s &raquo; View: %2$s"
5117
- msgstr ""
5118
-
5119
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:1390
5120
- msgid "Are you sure you wanna delete that?"
5121
- msgstr ""
5122
-
5123
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:1391
5124
- msgid "Delete entire topic"
5125
- msgstr ""
5126
-
5127
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:1394
5128
- msgid "Are you sure you wanna undelete that?"
5129
- msgstr ""
5130
-
5131
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:1395
5132
- msgid "Undelete entire topic"
5133
- msgstr ""
5134
-
5135
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:1418
5136
- msgid "Close topic"
5137
- msgstr ""
5138
-
5139
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:1420
5140
- msgid "Open topic"
5141
- msgstr ""
5142
-
5143
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:1452
5144
- msgid "Unstick topic"
5145
- msgstr ""
5146
-
5147
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:1454
5148
- msgid "Stick topic"
5149
- msgstr ""
5150
-
5151
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:1454
5152
- msgid "to front"
5153
- msgstr ""
5154
-
5155
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:1461
5156
- msgid "View normal posts"
5157
- msgstr ""
5158
-
5159
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:1463
5160
- msgid "View all posts"
5161
- msgstr ""
5162
-
5163
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:1473
5164
- #, php-format
5165
- msgid "%s post"
5166
- msgid_plural "%s posts"
5167
- msgstr[0] ""
5168
- msgstr[1] ""
5169
-
5170
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:1486
5171
- #, php-format
5172
- msgid "+%d more"
5173
- msgstr ""
5174
-
5175
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:1528
5176
- msgid "Move to"
5177
- msgstr ""
5178
-
5179
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:1531
5180
- msgid "Move"
5181
- msgstr ""
5182
-
5183
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:1563
5184
- msgid "Add New &raquo;"
5185
- msgstr ""
5186
-
5187
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:1739
5188
- msgid "Anonymous"
5189
- msgstr ""
5190
-
5191
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2124
5192
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2138
5193
- msgid "PingBack"
5194
- msgstr ""
5195
-
5196
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2126
5197
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2140
5198
- msgid "Unregistered"
5199
- msgstr ""
5200
-
5201
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2228
5202
- msgid "Delete User &raquo;"
5203
- msgstr ""
5204
-
5205
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2229
5206
- msgid "Are you sure you want to delete this user?"
5207
- msgstr ""
5208
-
5209
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2356
5210
- msgid "Member Since"
5211
- msgstr ""
5212
-
5213
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2509
5214
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2658
5215
- #: bp-forums/bbpress/bb-templates/kakumei/register.php:65
5216
- msgid "These items are <span class=\"required\">required</span>."
5217
- msgstr ""
5218
-
5219
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2546
5220
- msgid "User Type"
5221
- msgstr ""
5222
-
5223
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2571
5224
- msgid "Allow this user to"
5225
- msgstr ""
5226
-
5227
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2661
5228
- msgid ""
5229
- "Inactive users can login and look around but not do anything. Blocked users "
5230
- "just see a simple error message when they visit the site."
5231
- msgstr ""
5232
-
5233
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2662
5234
- msgid ""
5235
- "<strong>Note</strong>: Blocking a user does <em>not</em> block any IP "
5236
- "addresses."
5237
- msgstr ""
5238
-
5239
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2685
5240
- msgid "New password"
5241
- msgstr ""
5242
-
5243
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2698
5244
- msgid "Password Strength"
5245
- msgstr ""
5246
-
5247
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2702
5248
- msgid "Disabled (requires JavaScript)"
5249
- msgstr ""
5250
-
5251
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2708
5252
- msgid "Disabled (requires jQuery)"
5253
- msgstr ""
5254
-
5255
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2715
5256
- msgid ""
5257
- "Hint: Use upper and lower case characters, numbers and symbols like !\"?$%"
5258
- "^&amp;( in your password."
5259
- msgstr ""
5260
-
5261
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2755
5262
- #: bp-groups.php:200
5263
- msgid "Admin"
5264
- msgstr ""
5265
-
5266
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2774
5267
- msgid "View your profile"
5268
- msgstr ""
5269
-
5270
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:3069
5271
- msgid "Add &raquo;"
5272
- msgstr ""
5273
-
5274
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:3105
5275
- msgid "Rename tag:"
5276
- msgstr ""
5277
-
5278
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:3109
5279
- msgid "Rename"
5280
- msgstr ""
5281
-
5282
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:3113
5283
- msgid "Merge this tag into:"
5284
- msgstr ""
5285
-
5286
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:3117
5287
- msgid "Merge"
5288
- msgstr ""
5289
-
5290
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:3118
5291
- #, php-format
5292
- msgid ""
5293
- "Are you sure you want to merge the \"%s\" tag into the tag you specified? "
5294
- "This is permanent and cannot be undone."
5295
- msgstr ""
5296
-
5297
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:3122
5298
- msgid "Destroy tag:"
5299
- msgstr ""
5300
-
5301
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:3125
5302
- msgid "Destroy"
5303
- msgstr ""
5304
-
5305
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:3126
5306
- #, php-format
5307
- msgid ""
5308
- "Are you sure you want to destroy the \"%s\" tag? This is permanent and "
5309
- "cannot be undone."
5310
- msgstr ""
5311
-
5312
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:3152
5313
- msgid "Remove this tag"
5314
- msgstr ""
5315
-
5316
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:3209
5317
- #: bp-groups/bp-groups-templatetags.php:621
5318
- #, php-format
5319
- msgid "%d topics"
5320
- msgstr ""
5321
-
5322
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:3274
5323
- msgid "- None -"
5324
- msgstr ""
5325
-
5326
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:3355
5327
- msgid " (%?%)"
5328
- msgstr ""
5329
-
5330
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:3357
5331
- msgid "This topic is one of your %favorites% ["
5332
- msgstr ""
5333
-
5334
- #: bp-forums/bbpress/bb-includes/functions.bb-template.php:3357
5335
- msgid "]"
5336
- msgstr ""
5337
-
5338
- #: bp-forums/bbpress/bb-includes/functions.bb-users.php:9
5339
- msgid ""
5340
- "You've been blocked. If you think a mistake has been made, contact this "
5341
- "site's administrator."
5342
- msgstr ""
5343
-
5344
- #: bp-forums/bbpress/bb-includes/functions.bb-users.php:262
5345
- msgid "The specified user does not exist."
5346
- msgstr ""
5347
-
5348
- #: bp-forums/bbpress/bb-includes/functions.bb-users.php:275
5349
- #, php-format
5350
- msgid ""
5351
- "If you wanted to reset your password, you may do so by visiting the "
5352
- "following address:\n"
5353
- "\n"
5354
- "%s\n"
5355
- "\n"
5356
- "If you don't want to reset your password, just ignore this email. Thanks!"
5357
- msgstr ""
5358
-
5359
- #: bp-forums/bbpress/bb-includes/functions.bb-users.php:281
5360
- #, php-format
5361
- msgid "%s: Password Reset"
5362
- msgstr ""
5363
-
5364
- #: bp-forums/bbpress/bb-includes/functions.bb-users.php:293
5365
- msgid "The email containing the password reset link could not be sent."
5366
- msgstr ""
5367
-
5368
- #: bp-forums/bbpress/bb-includes/functions.bb-users.php:318
5369
- #: bp-forums/bbpress/bb-includes/functions.bb-users.php:322
5370
- #: bp-forums/bbpress/bb-includes/functions.bb-users.php:328
5371
- msgid "Invalid key"
5372
- msgstr ""
5373
-
5374
- #: bp-forums/bbpress/bb-includes/functions.bb-users.php:336
5375
- msgid "You are not allowed to change your password."
5376
- msgstr ""
5377
-
5378
- #: bp-forums/bbpress/bb-includes/functions.bb-users.php:342
5379
- msgid "The email containing the new password could not be sent."
5380
- msgstr ""
5381
-
5382
- #: bp-forums/bbpress/bb-includes/functions.bb-users.php:391
5383
- #, php-format
5384
- msgid ""
5385
- "Your username is: %1$s \n"
5386
- "Your password is: %2$s \n"
5387
- "You can now log in: %3$s \n"
5388
- "\n"
5389
- "Enjoy!"
5390
- msgstr ""
5391
-
5392
- #: bp-forums/bbpress/bb-includes/functions.bb-users.php:399
5393
- #, php-format
5394
- msgid "%s: Password"
5395
- msgstr ""
5396
-
5397
- #: bp-forums/bbpress/bb-login.php:78
5398
- msgid "User does not exist."
5399
- msgstr ""
5400
-
5401
- #: bp-forums/bbpress/bb-login.php:80
5402
- msgid "Enter a username or email address."
5403
- msgstr ""
5404
-
5405
- #: bp-forums/bbpress/bb-login.php:80
5406
- msgid "Enter a username."
5407
- msgstr ""
5408
-
5409
- #: bp-forums/bbpress/bb-login.php:86
5410
- msgid "Incorrect password."
5411
- msgstr ""
5412
-
5413
- #: bp-forums/bbpress/bb-login.php:93
5414
- msgid "Username and Password do not match."
5415
- msgstr ""
5416
-
5417
- #: bp-forums/bbpress/bb-plugins/akismet.php:57
5418
- msgid "Akismet Settings"
5419
- msgstr ""
5420
-
5421
- #: bp-forums/bbpress/bb-plugins/akismet.php:62
5422
- #, php-format
5423
- msgid ""
5424
- "For many people, <a href=\"%s\">Akismet</a> will greatly reduce or even "
5425
- "completely eliminate the spam you get on your site. If one does happen to "
5426
- "get through, simply mark it as \"spam\" and Akismet will learn from the "
5427
- "mistakes."
5428
- msgstr ""
5429
-
5430
- #: bp-forums/bbpress/bb-plugins/akismet.php:68
5431
- msgid "This key is valid"
5432
- msgstr ""
5433
-
5434
- #: bp-forums/bbpress/bb-plugins/akismet.php:75
5435
- msgid "WordPress.com API Key"
5436
- msgstr ""
5437
-
5438
- #: bp-forums/bbpress/bb-plugins/akismet.php:78
5439
- #, php-format
5440
- msgid ""
5441
- "If you don't have a WordPress.com API Key, you can get one at <a href=\"%s"
5442
- "\">WordPress.com</a>"
5443
- msgstr ""
5444
-
5445
- #: bp-forums/bbpress/bb-plugins/akismet.php:82
5446
- msgid "Enable stats page"
5447
- msgstr ""
5448
-
5449
- #: bp-forums/bbpress/bb-plugins/akismet.php:85
5450
- msgid "Create a page that shows spam statistics."
5451
- msgstr ""
5452
-
5453
- #: bp-forums/bbpress/bb-plugins/akismet.php:87
5454
- msgid "This page will be viewable by moderators or higher."
5455
- msgstr ""
5456
-
5457
- #: bp-forums/bbpress/bb-plugins/akismet.php:103
5458
- msgid "Akismet"
5459
- msgstr ""
5460
-
5461
- #: bp-forums/bbpress/bb-plugins/akismet.php:151
5462
- msgid ""
5463
- "<strong>The key you attempted to enter is invalid. Reverting to previous "
5464
- "setting.</strong>"
5465
- msgstr ""
5466
-
5467
- #: bp-forums/bbpress/bb-plugins/akismet.php:218
5468
- msgid "Akismet Stats"
5469
- msgstr ""
5470
-
5471
- #: bp-forums/bbpress/bb-plugins/akismet.php:440
5472
- msgid "Not Spam"
5473
- msgstr ""
5474
-
5475
- #: bp-forums/bbpress/bb-plugins/akismet.php:446
5476
- #: bp-forums/bbpress/bb-plugins/akismet.php:476
5477
- msgid "Spam"
5478
- msgstr ""
5479
-
5480
- #: bp-forums/bbpress/bb-plugins/bozo.php:95
5481
- msgid "Counted the number of bozo posts in each topic"
5482
- msgstr ""
5483
-
5484
- #: bp-forums/bbpress/bb-plugins/bozo.php:123
5485
- msgid ""
5486
- "Counted each bozo user&#039;s total posts as well as the total topics to "
5487
- "which they have replied"
5488
- msgstr ""
5489
-
5490
- #: bp-forums/bbpress/bb-plugins/bozo.php:171
5491
- msgid ""
5492
- "Count each bozo user&#039;s total posts as well as the total topics to which "
5493
- "they have replied"
5494
- msgstr ""
5495
-
5496
- #: bp-forums/bbpress/bb-plugins/bozo.php:172
5497
- msgid "Count the number of bozo posts in each topic"
5498
- msgstr ""
5499
-
5500
- #: bp-forums/bbpress/bb-plugins/bozo.php:272
5501
- msgid "This user is a bozo"
5502
- msgstr ""
5503
-
5504
- #: bp-forums/bbpress/bb-plugins/bozo.php:310
5505
- msgid "Bozos only"
5506
- msgstr ""
5507
-
5508
- #: bp-forums/bbpress/bb-post.php:8
5509
- msgid "Slow down; you move too fast."
5510
- msgstr ""
5511
-
5512
- #: bp-forums/bbpress/bb-post.php:11
5513
- msgid "You need to actually submit some content!"
5514
- msgstr ""
5515
-
5516
- #: bp-forums/bbpress/bb-post.php:15 bp-forums/bbpress/bb-post.php:36
5517
- msgid "You are not allowed to post. Are you logged in?"
5518
- msgstr ""
5519
-
5520
- #: bp-forums/bbpress/bb-post.php:18
5521
- msgid "You are not allowed to write new topics."
5522
- msgstr ""
5523
-
5524
- #: bp-forums/bbpress/bb-post.php:26
5525
- msgid "Please enter a topic title"
5526
- msgstr ""
5527
-
5528
- #: bp-forums/bbpress/bb-post.php:39
5529
- msgid "This topic has been closed"
5530
- msgstr ""
5531
-
5532
- #: bp-forums/bbpress/bb-reset-password.php:10
5533
- msgid "No username specified"
5534
- msgstr ""
5535
-
5536
- #: bp-forums/bbpress/bb-settings.php:455
5537
- msgid "Could not determine site URI"
5538
- msgstr ""
5539
-
5540
- #: bp-forums/bbpress/bb-templates/kakumei/404.php:3
5541
- #: bp-forums/bbpress/bb-templates/kakumei/404.php:5
5542
- msgid "Page not found!"
5543
- msgstr ""
5544
-
5545
- #: bp-forums/bbpress/bb-templates/kakumei/404.php:7
5546
- msgid "I'm sorry, but there is nothing at this URL."
5547
- msgstr ""
5548
-
5549
- #: bp-forums/bbpress/bb-templates/kakumei/edit-form.php:15
5550
- msgid "Edit Post &raquo;"
5551
- msgstr ""
5552
-
5553
- #: bp-forums/bbpress/bb-templates/kakumei/edit-form.php:19
5554
- #: bp-forums/bbpress/bb-templates/kakumei/post-form.php:29
5555
- msgid "Allowed markup:"
5556
- msgstr ""
5557
-
5558
- #: bp-forums/bbpress/bb-templates/kakumei/edit-form.php:19
5559
- msgid "Put code in between <code>`backticks`</code>."
5560
- msgstr ""
5561
-
5562
- #: bp-forums/bbpress/bb-templates/kakumei/edit-post.php:2
5563
- msgid "Edit Post"
5564
- msgstr ""
5565
-
5566
- #: bp-forums/bbpress/bb-templates/kakumei/favorites.php:5
5567
- #, php-format
5568
- msgid " - %d"
5569
- msgstr ""
5570
-
5571
- #: bp-forums/bbpress/bb-templates/kakumei/favorites.php:7
5572
- msgid ""
5573
- "Favorites allow members to create a custom <abbr title=\"Really Simple "
5574
- "Syndication\">RSS</abbr> feed which pulls recent replies to the topics they "
5575
- "specify."
5576
- msgstr ""
5577
-
5578
- #: bp-forums/bbpress/bb-templates/kakumei/favorites.php:9
5579
- msgid ""
5580
- "To add topics to your list of favorites, just click the \"Add to Favorites\" "
5581
- "link found on that topic&#8217;s page."
5582
- msgstr ""
5583
-
5584
- #: bp-forums/bbpress/bb-templates/kakumei/favorites.php:18
5585
- #: bp-forums/bbpress/bb-templates/kakumei/forum.php:11
5586
- #: bp-forums/bbpress/bb-templates/kakumei/front-page.php:19
5587
- #: bp-forums/bbpress/bb-templates/kakumei/tag-single.php:13
5588
- #: bp-forums/bbpress/bb-templates/kakumei/view.php:11
5589
- msgid "Voices"
5590
- msgstr ""
5591
-
5592
- #: bp-forums/bbpress/bb-templates/kakumei/favorites.php:19
5593
- #: bp-forums/bbpress/bb-templates/kakumei/forum.php:12
5594
- #: bp-forums/bbpress/bb-templates/kakumei/front-page.php:20
5595
- #: bp-forums/bbpress/bb-templates/kakumei/tag-single.php:14
5596
- #: bp-forums/bbpress/bb-templates/kakumei/view.php:12
5597
- msgid "Last Poster"
5598
- msgstr ""
5599
-
5600
- #: bp-forums/bbpress/bb-templates/kakumei/favorites.php:22
5601
- msgid "Remove"
5602
- msgstr ""
5603
-
5604
- #: bp-forums/bbpress/bb-templates/kakumei/favorites.php:40
5605
- msgid ""
5606
- "<abbr title=\"Really Simple Syndication\">RSS</abbr> feed for these favorites"
5607
- msgstr ""
5608
-
5609
- #: bp-forums/bbpress/bb-templates/kakumei/favorites.php:46
5610
- msgid "You currently have no favorites."
5611
- msgstr ""
5612
-
5613
- #: bp-forums/bbpress/bb-templates/kakumei/favorites.php:50
5614
- msgid "currently has no favorites."
5615
- msgstr ""
5616
-
5617
- #: bp-forums/bbpress/bb-templates/kakumei/footer.php:4
5618
- #, php-format
5619
- msgid "%1$s is proudly powered by <a href=\"%2$s\">bbPress</a>."
5620
- msgstr ""
5621
-
5622
- #: bp-forums/bbpress/bb-templates/kakumei/forum.php:36
5623
- msgid ""
5624
- "<abbr title=\"Really Simple Syndication\">RSS</abbr> feed for this forum"
5625
- msgstr ""
5626
-
5627
- #: bp-forums/bbpress/bb-templates/kakumei/forum.php:41
5628
- msgid "Subforums"
5629
- msgstr ""
5630
-
5631
- #: bp-forums/bbpress/bb-templates/kakumei/forum.php:45
5632
- #: bp-forums/bbpress/bb-templates/kakumei/front-page.php:52
5633
- msgid "Main Theme"
5634
- msgstr ""
5635
-
5636
- #: bp-forums/bbpress/bb-templates/kakumei/front-page.php:6
5637
- msgid "Hot Tags"
5638
- msgstr ""
5639
-
5640
- #: bp-forums/bbpress/bb-templates/kakumei/front-page.php:13
5641
- msgid "Latest Discussions"
5642
- msgstr ""
5643
-
5644
- #: bp-forums/bbpress/bb-templates/kakumei/front-page.php:73
5645
- msgid "Views"
5646
- msgstr ""
5647
-
5648
- #: bp-forums/bbpress/bb-templates/kakumei/logged-in.php:2
5649
- #, php-format
5650
- msgid "Welcome, %1$s"
5651
- msgstr ""
5652
-
5653
- #: bp-forums/bbpress/bb-templates/kakumei/login-form.php:5
5654
- #, php-format
5655
- msgid ""
5656
- "<a href=\"%1$s\">Register</a> or log in - <a href=\"%2$s\">lost password?</a>"
5657
- msgstr ""
5658
-
5659
- #: bp-forums/bbpress/bb-templates/kakumei/login-form.php:18
5660
- #: bp-forums/bbpress/bb-templates/kakumei/login.php:27
5661
- #: bp-forums/bbpress/bb-templates/kakumei/profile-edit.php:20
5662
- #: bp-themes/bp-default/sidebar.php:44
5663
- msgid "Password"
5664
- msgstr ""
5665
-
5666
- #: bp-forums/bbpress/bb-templates/kakumei/login-form.php:24
5667
- #: bp-forums/bbpress/bb-templates/kakumei/login.php:43
5668
- msgid "Log in &raquo;"
5669
- msgstr ""
5670
-
5671
- #: bp-forums/bbpress/bb-templates/kakumei/login-form.php:29
5672
- #: bp-forums/bbpress/bb-templates/kakumei/login.php:36
5673
- msgid "Remember me"
5674
- msgstr ""
5675
-
5676
- #: bp-forums/bbpress/bb-templates/kakumei/login.php:3
5677
- #: bp-forums/bbpress/bb-templates/kakumei/login.php:5
5678
- #: bp-forums/bbpress/bb-templates/kakumei/password-reset.php:3
5679
- msgid "Log in"
5680
- msgstr ""
5681
-
5682
- #: bp-forums/bbpress/bb-templates/kakumei/login.php:5
5683
- msgid "Log in Failed"
5684
- msgstr ""
5685
-
5686
- #: bp-forums/bbpress/bb-templates/kakumei/login.php:43
5687
- msgid "Try Again &raquo;"
5688
- msgstr ""
5689
-
5690
- #: bp-forums/bbpress/bb-templates/kakumei/login.php:52
5691
- msgid "Password Recovery"
5692
- msgstr ""
5693
-
5694
- #: bp-forums/bbpress/bb-templates/kakumei/login.php:55
5695
- msgid "To recover your password, enter your information below."
5696
- msgstr ""
5697
-
5698
- #: bp-forums/bbpress/bb-templates/kakumei/login.php:68
5699
- msgid "Recover Password &raquo;"
5700
- msgstr ""
5701
-
5702
- #: bp-forums/bbpress/bb-templates/kakumei/password-reset.php:5
5703
- msgid "Password Reset"
5704
- msgstr ""
5705
-
5706
- #: bp-forums/bbpress/bb-templates/kakumei/password-reset.php:12
5707
- msgid ""
5708
- "An email has been sent to the address we have on file for you. If you "
5709
- "don&#8217;t get anything within a few minutes, or your email has changed, "
5710
- "you may want to get in touch with the webmaster or forum administrator here."
5711
- msgstr ""
5712
-
5713
- #: bp-forums/bbpress/bb-templates/kakumei/password-reset.php:15
5714
- msgid "Your password has been reset and a new one has been mailed to you."
5715
- msgstr ""
5716
-
5717
- #: bp-forums/bbpress/bb-templates/kakumei/post-form.php:14
5718
- msgid "Tags (comma separated)"
5719
- msgstr ""
5720
-
5721
- #: bp-forums/bbpress/bb-templates/kakumei/post-form.php:26
5722
- msgid "Send Post &raquo;"
5723
- msgstr ""
5724
-
5725
- #: bp-forums/bbpress/bb-templates/kakumei/post-form.php:29
5726
- msgid ""
5727
- "You can also put code in between backtick ( <code>`</code> ) characters."
5728
- msgstr ""
5729
-
5730
- #: bp-forums/bbpress/bb-templates/kakumei/post.php:11
5731
- #, php-format
5732
- msgid "Posted %s ago"
5733
- msgstr ""
5734
-
5735
- #: bp-forums/bbpress/bb-templates/kakumei/profile-edit.php:3
5736
- #: bp-xprofile.php:185 bp-xprofile/bp-xprofile-templatetags.php:683
5737
- msgid "Edit Profile"
5738
- msgstr ""
5739
-
5740
- #: bp-forums/bbpress/bb-templates/kakumei/profile-edit.php:7
5741
- msgid "Profile Info"
5742
- msgstr ""
5743
-
5744
- #: bp-forums/bbpress/bb-templates/kakumei/profile-edit.php:13
5745
- msgid "Administration"
5746
- msgstr ""
5747
-
5748
- #: bp-forums/bbpress/bb-templates/kakumei/profile-edit.php:21
5749
- msgid "To change your password, enter a new password twice below:"
5750
- msgstr ""
5751
-
5752
- #: bp-forums/bbpress/bb-templates/kakumei/profile-edit.php:26
5753
- msgid "Update Profile &raquo;"
5754
- msgstr ""
5755
-
5756
- #: bp-forums/bbpress/bb-templates/kakumei/profile.php:14
5757
- msgid "Profile updated"
5758
- msgstr ""
5759
-
5760
- #: bp-forums/bbpress/bb-templates/kakumei/profile.php:14
5761
- msgid "Edit again &raquo;"
5762
- msgstr ""
5763
-
5764
- #: bp-forums/bbpress/bb-templates/kakumei/profile.php:18
5765
- msgid "This is how your profile appears to a logged in member."
5766
- msgstr ""
5767
-
5768
- #: bp-forums/bbpress/bb-templates/kakumei/profile.php:21
5769
- #, php-format
5770
- msgid "You may <a href=\"%1$s\">edit this information</a>."
5771
- msgstr ""
5772
-
5773
- #: bp-forums/bbpress/bb-templates/kakumei/profile.php:26
5774
- #, php-format
5775
- msgid ""
5776
- "You can also <a href=\"%1$s\">manage your favorites</a> and subscribe to "
5777
- "your favorites&#8217; <a href=\"%2$s\"><abbr title=\"Really Simple "
5778
- "Syndication\">RSS</abbr> feed</a>."
5779
- msgstr ""
5780
-
5781
- #: bp-forums/bbpress/bb-templates/kakumei/profile.php:34
5782
- msgid "User Activity"
5783
- msgstr ""
5784
-
5785
- #: bp-forums/bbpress/bb-templates/kakumei/profile.php:36
5786
- msgid "Recent Replies"
5787
- msgstr ""
5788
-
5789
- #: bp-forums/bbpress/bb-templates/kakumei/profile.php:42
5790
- #, php-format
5791
- msgid "You last replied: %s ago"
5792
- msgstr ""
5793
-
5794
- #: bp-forums/bbpress/bb-templates/kakumei/profile.php:42
5795
- #, php-format
5796
- msgid "User last replied: %s ago"
5797
- msgstr ""
5798
-
5799
- #: bp-forums/bbpress/bb-templates/kakumei/profile.php:46
5800
- #: bp-forums/bbpress/bb-templates/kakumei/profile.php:71
5801
- #, php-format
5802
- msgid "Most recent reply: %s ago"
5803
- msgstr ""
5804
-
5805
- #: bp-forums/bbpress/bb-templates/kakumei/profile.php:48
5806
- msgid "No replies since"
5807
- msgstr ""
5808
-
5809
- #: bp-forums/bbpress/bb-templates/kakumei/profile.php:54
5810
- msgid "No more replies."
5811
- msgstr ""
5812
-
5813
- #: bp-forums/bbpress/bb-templates/kakumei/profile.php:56
5814
- msgid "No replies yet."
5815
- msgstr ""
5816
-
5817
- #: bp-forums/bbpress/bb-templates/kakumei/profile.php:61
5818
- msgid "Topics Started"
5819
- msgstr ""
5820
-
5821
- #: bp-forums/bbpress/bb-templates/kakumei/profile.php:67
5822
- #, php-format
5823
- msgid "Started: %s ago"
5824
- msgstr ""
5825
-
5826
- #: bp-forums/bbpress/bb-templates/kakumei/profile.php:73
5827
- msgid "No replies."
5828
- msgstr ""
5829
-
5830
- #: bp-forums/bbpress/bb-templates/kakumei/profile.php:79
5831
- msgid "No more topics posted."
5832
- msgstr ""
5833
-
5834
- #: bp-forums/bbpress/bb-templates/kakumei/profile.php:81
5835
- msgid "No topics posted yet."
5836
- msgstr ""
5837
-
5838
- #: bp-forums/bbpress/bb-templates/kakumei/register-success.php:3
5839
- #: bp-forums/bbpress/bb-templates/kakumei/register.php:3
5840
- msgid "Register"
5841
- msgstr ""
5842
-
5843
- #: bp-forums/bbpress/bb-templates/kakumei/register-success.php:5
5844
- msgid "Great!"
5845
- msgstr ""
5846
-
5847
- #: bp-forums/bbpress/bb-templates/kakumei/register-success.php:7
5848
- #, php-format
5849
- msgid ""
5850
- "Your registration as <strong>%s</strong> was successful. Within a few "
5851
- "minutes you should receive an email with your password."
5852
- msgstr ""
5853
-
5854
- #: bp-forums/bbpress/bb-templates/kakumei/register.php:5
5855
- msgid "Registration"
5856
- msgstr ""
5857
-
5858
- #: bp-forums/bbpress/bb-templates/kakumei/register.php:12
5859
- msgid "Profile Information"
5860
- msgstr ""
5861
-
5862
- #: bp-forums/bbpress/bb-templates/kakumei/register.php:14
5863
- msgid "Your password will be emailed to the address you provide."
5864
- msgstr ""
5865
-
5866
- #: bp-forums/bbpress/bb-templates/kakumei/register.php:72
5867
- msgid "Register &raquo;"
5868
- msgstr ""
5869
-
5870
- #: bp-forums/bbpress/bb-templates/kakumei/register.php:79
5871
- msgid "You&#8217;re already logged in, why do you need to register?"
5872
- msgstr ""
5873
-
5874
- #: bp-forums/bbpress/bb-templates/kakumei/rss2.php:19
5875
- msgid "Search all topics from these forums."
5876
- msgstr ""
5877
-
5878
- #: bp-forums/bbpress/bb-templates/kakumei/rss2.php:27
5879
- msgid "on"
5880
- msgstr ""
5881
-
5882
- #: bp-forums/bbpress/bb-templates/kakumei/search-form.php:3
5883
- msgid "Search:"
5884
- msgstr ""
5885
-
5886
- #: bp-forums/bbpress/bb-templates/kakumei/search-form.php:5
5887
- msgid "Search &raquo;"
5888
- msgstr ""
5889
-
5890
- #: bp-forums/bbpress/bb-templates/kakumei/search.php:7
5891
- msgid "Search for"
5892
- msgstr ""
5893
-
5894
- #: bp-forums/bbpress/bb-templates/kakumei/search.php:12
5895
- msgid "Recent Posts"
5896
- msgstr ""
5897
-
5898
- #: bp-forums/bbpress/bb-templates/kakumei/search.php:17
5899
- #: bp-forums/bbpress/bb-templates/kakumei/search.php:32
5900
- #, php-format
5901
- msgid "Posted %s"
5902
- msgstr ""
5903
-
5904
- #: bp-forums/bbpress/bb-templates/kakumei/search.php:27
5905
- msgid "Relevant posts"
5906
- msgstr ""
5907
-
5908
- #: bp-forums/bbpress/bb-templates/kakumei/search.php:41
5909
- msgid "No results found."
5910
- msgstr ""
5911
-
5912
- #: bp-forums/bbpress/bb-templates/kakumei/search.php:44
5913
- #, php-format
5914
- msgid ""
5915
- "You may also try your <a href=\"http://google.com/search?q=site:%1$s %2$s"
5916
- "\">search at Google</a>"
5917
- msgstr ""
5918
-
5919
- #: bp-forums/bbpress/bb-templates/kakumei/stats.php:3
5920
- #: bp-forums/bbpress/statistics.php:9
5921
- msgid "Statistics"
5922
- msgstr ""
5923
-
5924
- #: bp-forums/bbpress/bb-templates/kakumei/stats.php:6
5925
- msgid "Registered Users"
5926
- msgstr ""
5927
-
5928
- #: bp-forums/bbpress/bb-templates/kakumei/stats.php:13
5929
- msgid "Most Popular Topics"
5930
- msgstr ""
5931
-
5932
- #: bp-forums/bbpress/bb-templates/kakumei/tag-single.php:29
5933
- msgid "<abbr title=\"Really Simple Syndication\">RSS</abbr> link for this tag"
5934
- msgstr ""
5935
-
5936
- #: bp-forums/bbpress/bb-templates/kakumei/tags.php:5
5937
- msgid "This is a collection of tags that are currently popular on the forums."
5938
- msgstr ""
5939
-
5940
- #: bp-forums/bbpress/bb-templates/kakumei/topic-tags.php:2
5941
- msgid "Tags:"
5942
- msgstr ""
5943
-
5944
- #: bp-forums/bbpress/bb-templates/kakumei/topic-tags.php:10
5945
- #, php-format
5946
- msgid "No <a href=\"%s\">tags</a> yet."
5947
- msgstr ""
5948
-
5949
- #: bp-forums/bbpress/bb-templates/kakumei/topic.php:10
5950
- #, php-format
5951
- msgid "%s voice"
5952
- msgid_plural "%s voices"
5953
- msgstr[0] ""
5954
- msgstr[1] ""
5955
-
5956
- #: bp-forums/bbpress/bb-templates/kakumei/topic.php:13
5957
- #, php-format
5958
- msgid "Started %1$s ago by %2$s"
5959
- msgstr ""
5960
-
5961
- #: bp-forums/bbpress/bb-templates/kakumei/topic.php:15
5962
- #, php-format
5963
- msgid "<a href=\"%1$s\">Latest reply</a> from %2$s"
5964
- msgstr ""
5965
-
5966
- #: bp-forums/bbpress/bb-templates/kakumei/topic.php:41
5967
- msgid ""
5968
- "<abbr title=\"Really Simple Syndication\">RSS</abbr> feed for this topic"
5969
- msgstr ""
5970
-
5971
- #: bp-forums/bbpress/bb-templates/kakumei/topic.php:47
5972
- msgid "Topic Closed"
5973
- msgstr ""
5974
-
5975
- #: bp-forums/bbpress/bb-templates/kakumei/topic.php:48
5976
- msgid "This topic has been closed to new replies."
5977
- msgstr ""
5978
-
5979
- #: bp-forums/bbpress/bb-templates/kakumei/view.php:37
5980
- msgid "<abbr title=\"Really Simple Syndication\">RSS</abbr> feed for this view"
5981
- msgstr ""
5982
-
5983
- #: bp-forums/bbpress/favorites.php:8
5984
- msgid "You cannot edit those favorites. How did you get here?"
5985
- msgstr ""
5986
-
5987
- #: bp-forums/bbpress/forum.php:10
5988
- msgid "Forum not found."
5989
- msgstr ""
5990
-
5991
- #: bp-forums/bbpress/profile-edit.php:55 bp-forums/bbpress/profile-edit.php:96
5992
- #, php-format
5993
- msgid "%s is required."
5994
- msgstr ""
5995
-
5996
- #: bp-forums/bbpress/profile-edit.php:82
5997
- msgid "Invalid Role"
5998
- msgstr ""
5999
-
6000
- #: bp-forums/bbpress/profile-edit.php:84
6001
- msgid "You are not the Gate Keeper."
6002
- msgstr ""
6003
-
6004
- #: bp-forums/bbpress/profile-edit.php:86
6005
- msgid "You are Keymaster, so you may not demote yourself."
6006
- msgstr ""
6007
-
6008
- #: bp-forums/bbpress/profile-edit.php:113
6009
- msgid "You must enter the same password twice."
6010
- msgstr ""
6011
-
6012
- #: bp-forums/bbpress/profile-edit.php:115
6013
- msgid "You are not allowed to change this user's password."
6014
- msgstr ""
6015
-
6016
- #: bp-forums/bbpress/register.php:27
6017
- #, php-format
6018
- msgid "%s is an invalid username. How's this one?"
6019
- msgstr ""
6020
-
6021
- #: bp-forums/bbpress/register.php:29
6022
- #, php-format
6023
- msgid "%s is an invalid username."
6024
- msgstr ""
6025
-
6026
- #: bp-forums/bbpress/register.php:42
6027
- #, php-format
6028
- msgid "%s is required"
6029
- msgstr ""
6030
-
6031
- #: bp-forums/bbpress/tag-add.php:7
6032
- msgid "You need to be logged in to add a tag."
6033
- msgstr ""
6034
-
6035
- #: bp-forums/bbpress/tag-add.php:18 bp-forums/bbpress/topic.php:14
6036
- msgid "Topic not found."
6037
- msgstr ""
6038
-
6039
- #: bp-forums/bbpress/tag-add.php:23
6040
- msgid ""
6041
- "The tag was not added. Either the tag name was invalid or the topic is "
6042
- "closed."
6043
- msgstr ""
6044
-
6045
- #: bp-forums/bbpress/tag-remove.php:17
6046
- msgid "Invalid tag or topic."
6047
- msgstr ""
6048
-
6049
- #: bp-forums/bbpress/tag-remove.php:24
6050
- msgid "The tag was not removed."
6051
- msgstr ""
6052
-
6053
- #: bp-forums/bbpress/tags.php:9
6054
- msgid "Tag not found"
6055
- msgstr ""
6056
-
6057
- #: bp-forums/bbpress/xmlrpc.php:207
6058
- msgid "Authentication failed."
6059
- msgstr ""
6060
-
6061
- #: bp-forums/bbpress/xmlrpc.php:217 bp-forums/bbpress/xmlrpc.php:255
6062
- msgid "You do not have permission to read this."
6063
- msgstr ""
6064
-
6065
- #: bp-forums/bbpress/xmlrpc.php:245
6066
- msgid "User switching failed, the requested user does not exist."
6067
- msgstr ""
6068
-
6069
- #: bp-forums/bbpress/xmlrpc.php:588 bp-forums/bbpress/xmlrpc.php:712
6070
- #: bp-forums/bbpress/xmlrpc.php:811 bp-forums/bbpress/xmlrpc.php:998
6071
- #: bp-forums/bbpress/xmlrpc.php:1124 bp-forums/bbpress/xmlrpc.php:1233
6072
- #: bp-forums/bbpress/xmlrpc.php:1344 bp-forums/bbpress/xmlrpc.php:1541
6073
- #: bp-forums/bbpress/xmlrpc.php:1898 bp-forums/bbpress/xmlrpc.php:2747
6074
- msgid "The forum id is invalid."
6075
- msgstr ""
6076
-
6077
- #: bp-forums/bbpress/xmlrpc.php:593 bp-forums/bbpress/xmlrpc.php:717
6078
- #: bp-forums/bbpress/xmlrpc.php:1238 bp-forums/bbpress/xmlrpc.php:1349
6079
- msgid "The forum does not exist."
6080
- msgstr ""
6081
-
6082
- #: bp-forums/bbpress/xmlrpc.php:738 bp-forums/bbpress/xmlrpc.php:1250
6083
- msgid "No forums found."
6084
- msgstr ""
6085
-
6086
- #: bp-forums/bbpress/xmlrpc.php:817 bp-forums/bbpress/xmlrpc.php:1004
6087
- #: bp-forums/bbpress/xmlrpc.php:1130 bp-forums/bbpress/xmlrpc.php:1547
6088
- #: bp-forums/bbpress/xmlrpc.php:1904 bp-forums/bbpress/xmlrpc.php:2753
6089
- msgid "No forum found."
6090
- msgstr ""
6091
-
6092
- #: bp-forums/bbpress/xmlrpc.php:876 bp-forums/bbpress/xmlrpc.php:976
6093
- msgid "You do not have permission to manage forums."
6094
- msgstr ""
6095
-
6096
- #: bp-forums/bbpress/xmlrpc.php:887 bp-forums/bbpress/xmlrpc.php:987
6097
- msgid "The forum data is invalid."
6098
- msgstr ""
6099
-
6100
- #: bp-forums/bbpress/xmlrpc.php:895 bp-forums/bbpress/xmlrpc.php:1024
6101
- msgid "The forum name is invalid."
6102
- msgstr ""
6103
-
6104
- #: bp-forums/bbpress/xmlrpc.php:916
6105
- msgid "The forum could not be created."
6106
- msgstr ""
6107
-
6108
- #: bp-forums/bbpress/xmlrpc.php:1066
6109
- msgid "The forum could not be edited."
6110
- msgstr ""
6111
-
6112
- #: bp-forums/bbpress/xmlrpc.php:1110
6113
- msgid "You do not have permission to delete forums."
6114
- msgstr ""
6115
-
6116
- #: bp-forums/bbpress/xmlrpc.php:1141
6117
- msgid "You do not have permission to delete this forum."
6118
- msgstr ""
6119
-
6120
- #: bp-forums/bbpress/xmlrpc.php:1150
6121
- msgid "The forum could not be deleted."
6122
- msgstr ""
6123
-
6124
- #: bp-forums/bbpress/xmlrpc.php:1442 bp-forums/bbpress/xmlrpc.php:1679
6125
- #: bp-forums/bbpress/xmlrpc.php:1793 bp-forums/bbpress/xmlrpc.php:1880
6126
- #: bp-forums/bbpress/xmlrpc.php:1979 bp-forums/bbpress/xmlrpc.php:2079
6127
- #: bp-forums/bbpress/xmlrpc.php:2179 bp-forums/bbpress/xmlrpc.php:2271
6128
- #: bp-forums/bbpress/xmlrpc.php:2447 bp-forums/bbpress/xmlrpc.php:2863
6129
- #: bp-forums/bbpress/xmlrpc.php:2947 bp-forums/bbpress/xmlrpc.php:3161
6130
- #: bp-forums/bbpress/xmlrpc.php:3279
6131
- msgid "The topic id is invalid."
6132
- msgstr ""
6133
-
6134
- #: bp-forums/bbpress/xmlrpc.php:1448 bp-forums/bbpress/xmlrpc.php:1685
6135
- #: bp-forums/bbpress/xmlrpc.php:1799 bp-forums/bbpress/xmlrpc.php:1886
6136
- #: bp-forums/bbpress/xmlrpc.php:1985 bp-forums/bbpress/xmlrpc.php:2085
6137
- #: bp-forums/bbpress/xmlrpc.php:2185 bp-forums/bbpress/xmlrpc.php:2277
6138
- #: bp-forums/bbpress/xmlrpc.php:2453 bp-forums/bbpress/xmlrpc.php:2869
6139
- #: bp-forums/bbpress/xmlrpc.php:2953 bp-forums/bbpress/xmlrpc.php:3167
6140
- #: bp-forums/bbpress/xmlrpc.php:3285
6141
- msgid "No topic found."
6142
- msgstr ""
6143
-
6144
- #: bp-forums/bbpress/xmlrpc.php:1514
6145
- msgid "You do not have permission to write topics."
6146
- msgstr ""
6147
-
6148
- #: bp-forums/bbpress/xmlrpc.php:1518 bp-forums/bbpress/xmlrpc.php:2425
6149
- msgid "You do not have permission to write posts."
6150
- msgstr ""
6151
-
6152
- #: bp-forums/bbpress/xmlrpc.php:1530 bp-forums/bbpress/xmlrpc.php:1668
6153
- msgid "The topic data is invalid."
6154
- msgstr ""
6155
-
6156
- #: bp-forums/bbpress/xmlrpc.php:1556
6157
- msgid "You do not have permission to write topics to this forum."
6158
- msgstr ""
6159
-
6160
- #: bp-forums/bbpress/xmlrpc.php:1562 bp-forums/bbpress/xmlrpc.php:1714
6161
- msgid "The topic title is invalid."
6162
- msgstr ""
6163
-
6164
- #: bp-forums/bbpress/xmlrpc.php:1568 bp-forums/bbpress/xmlrpc.php:1720
6165
- msgid "The topic text is invalid."
6166
- msgstr ""
6167
-
6168
- #: bp-forums/bbpress/xmlrpc.php:1584
6169
- msgid "The topic could not be created."
6170
- msgstr ""
6171
-
6172
- #: bp-forums/bbpress/xmlrpc.php:1596 bp-forums/bbpress/xmlrpc.php:2480
6173
- msgid "The post could not be created."
6174
- msgstr ""
6175
-
6176
- #: bp-forums/bbpress/xmlrpc.php:1652
6177
- msgid "You do not have permission to edit topics."
6178
- msgstr ""
6179
-
6180
- #: bp-forums/bbpress/xmlrpc.php:1656 bp-forums/bbpress/xmlrpc.php:2535
6181
- msgid "You do not have permission to edit posts."
6182
- msgstr ""
6183
-
6184
- #: bp-forums/bbpress/xmlrpc.php:1694
6185
- msgid "You do not have permission to edit this topic."
6186
- msgstr ""
6187
-
6188
- #: bp-forums/bbpress/xmlrpc.php:1708 bp-forums/bbpress/xmlrpc.php:2572
6189
- msgid "You do not have permission to edit this post."
6190
- msgstr ""
6191
-
6192
- #: bp-forums/bbpress/xmlrpc.php:1726
6193
- msgid "The topic could not be edited."
6194
- msgstr ""
6195
-
6196
- #: bp-forums/bbpress/xmlrpc.php:1733 bp-forums/bbpress/xmlrpc.php:2590
6197
- #: bp-forums/bbpress/xmlrpc.php:2676
6198
- msgid "The post could not be edited."
6199
- msgstr ""
6200
-
6201
- #: bp-forums/bbpress/xmlrpc.php:1779
6202
- msgid "You do not have permission to delete topics."
6203
- msgstr ""
6204
-
6205
- #: bp-forums/bbpress/xmlrpc.php:1815
6206
- msgid "You do not have permission to delete this topic."
6207
- msgstr ""
6208
-
6209
- #: bp-forums/bbpress/xmlrpc.php:1821
6210
- msgid "The topic could not be deleted."
6211
- msgstr ""
6212
-
6213
- #: bp-forums/bbpress/xmlrpc.php:1866
6214
- msgid "You do not have permission to move topics."
6215
- msgstr ""
6216
-
6217
- #: bp-forums/bbpress/xmlrpc.php:1915
6218
- msgid "You are not allowed to move this topic to this forum."
6219
- msgstr ""
6220
-
6221
- #: bp-forums/bbpress/xmlrpc.php:1921
6222
- msgid "The topic could not be moved."
6223
- msgstr ""
6224
-
6225
- #: bp-forums/bbpress/xmlrpc.php:1965
6226
- msgid "You do not have permission to stick topics."
6227
- msgstr ""
6228
-
6229
- #: bp-forums/bbpress/xmlrpc.php:1994
6230
- msgid "You do not have permission to stick this topic."
6231
- msgstr ""
6232
-
6233
- #: bp-forums/bbpress/xmlrpc.php:2008
6234
- msgid "The topic could not be stuck."
6235
- msgstr ""
6236
-
6237
- #: bp-forums/bbpress/xmlrpc.php:2065
6238
- msgid "You do not have permission to close topics."
6239
- msgstr ""
6240
-
6241
- #: bp-forums/bbpress/xmlrpc.php:2094
6242
- msgid "You do not have permission to close this topic."
6243
- msgstr ""
6244
-
6245
- #: bp-forums/bbpress/xmlrpc.php:2108
6246
- msgid "The topic could not be closed."
6247
- msgstr ""
6248
-
6249
- #: bp-forums/bbpress/xmlrpc.php:2114
6250
- msgid "The topic could not be opened."
6251
- msgstr ""
6252
-
6253
- #: bp-forums/bbpress/xmlrpc.php:2363 bp-forums/bbpress/xmlrpc.php:2557
6254
- #: bp-forums/bbpress/xmlrpc.php:2649
6255
- msgid "The post id is invalid."
6256
- msgstr ""
6257
-
6258
- #: bp-forums/bbpress/xmlrpc.php:2369 bp-forums/bbpress/xmlrpc.php:2563
6259
- #: bp-forums/bbpress/xmlrpc.php:2655
6260
- msgid "No post found."
6261
- msgstr ""
6262
-
6263
- #: bp-forums/bbpress/xmlrpc.php:2436 bp-forums/bbpress/xmlrpc.php:2546
6264
- msgid "The post data is invalid."
6265
- msgstr ""
6266
-
6267
- #: bp-forums/bbpress/xmlrpc.php:2462
6268
- msgid "You do not have permission to write posts to this topic."
6269
- msgstr ""
6270
-
6271
- #: bp-forums/bbpress/xmlrpc.php:2468 bp-forums/bbpress/xmlrpc.php:2578
6272
- msgid "The post text is invalid."
6273
- msgstr ""
6274
-
6275
- #: bp-forums/bbpress/xmlrpc.php:2635
6276
- msgid "You do not have permission to delete posts."
6277
- msgstr ""
6278
-
6279
- #: bp-forums/bbpress/xmlrpc.php:2664
6280
- msgid "You do not have permission to delete this post."
6281
- msgstr ""
6282
-
6283
- #: bp-forums/bbpress/xmlrpc.php:2769
6284
- msgid "Could not retrieve hot topic tags."
6285
- msgstr ""
6286
-
6287
- #: bp-forums/bbpress/xmlrpc.php:2773 bp-forums/bbpress/xmlrpc.php:2798
6288
- msgid "No hot topic tags found."
6289
- msgstr ""
6290
-
6291
- #: bp-forums/bbpress/xmlrpc.php:2887
6292
- msgid "Could not get a count of all topic tags."
6293
- msgstr ""
6294
-
6295
- #: bp-forums/bbpress/xmlrpc.php:2962
6296
- msgid "No topic tags found."
6297
- msgstr ""
6298
-
6299
- #: bp-forums/bbpress/xmlrpc.php:2969
6300
- msgid "Could not retrieve all topic tags."
6301
- msgstr ""
6302
-
6303
- #: bp-forums/bbpress/xmlrpc.php:3040 bp-forums/bbpress/xmlrpc.php:3368
6304
- #: bp-forums/bbpress/xmlrpc.php:3540
6305
- msgid "The tag id is invalid."
6306
- msgstr ""
6307
-
6308
- #: bp-forums/bbpress/xmlrpc.php:3046 bp-forums/bbpress/xmlrpc.php:3374
6309
- #: bp-forums/bbpress/xmlrpc.php:3546
6310
- msgid "No tag found."
6311
- msgstr ""
6312
-
6313
- #: bp-forums/bbpress/xmlrpc.php:3147 bp-forums/bbpress/xmlrpc.php:3265
6314
- msgid "You do not have permission to edit tags."
6315
- msgstr ""
6316
-
6317
- #: bp-forums/bbpress/xmlrpc.php:3176
6318
- msgid "You do not have permission to add tags to this topic."
6319
- msgstr ""
6320
-
6321
- #: bp-forums/bbpress/xmlrpc.php:3184 bp-forums/bbpress/xmlrpc.php:3302
6322
- msgid "The tag data is invalid."
6323
- msgstr ""
6324
-
6325
- #: bp-forums/bbpress/xmlrpc.php:3190
6326
- msgid "The tags could not be added."
6327
- msgstr ""
6328
-
6329
- #: bp-forums/bbpress/xmlrpc.php:3294
6330
- msgid "You do not have permission to remove tags from this topic."
6331
- msgstr ""
6332
-
6333
- #: bp-forums/bbpress/xmlrpc.php:3308
6334
- msgid "The tags could not be removed."
6335
- msgstr ""
6336
-
6337
- #: bp-forums/bbpress/xmlrpc.php:3354 bp-forums/bbpress/xmlrpc.php:3439
6338
- #: bp-forums/bbpress/xmlrpc.php:3526
6339
- msgid "You do not have permission to manage tags."
6340
- msgstr ""
6341
-
6342
- #: bp-forums/bbpress/xmlrpc.php:3386
6343
- msgid "The tag name is invalid."
6344
- msgstr ""
6345
-
6346
- #: bp-forums/bbpress/xmlrpc.php:3392
6347
- msgid "The tag could not be renamed."
6348
- msgstr ""
6349
-
6350
- #: bp-forums/bbpress/xmlrpc.php:3454
6351
- msgid "The old tag id is invalid."
6352
- msgstr ""
6353
-
6354
- #: bp-forums/bbpress/xmlrpc.php:3458
6355
- msgid "The new tag id is invalid."
6356
- msgstr ""
6357
-
6358
- #: bp-forums/bbpress/xmlrpc.php:3464
6359
- msgid "No old tag found."
6360
- msgstr ""
6361
-
6362
- #: bp-forums/bbpress/xmlrpc.php:3468
6363
- msgid "No new tag found."
6364
- msgstr ""
6365
-
6366
- #: bp-forums/bbpress/xmlrpc.php:3478
6367
- msgid "The tags could not be merged."
6368
- msgstr ""
6369
-
6370
- #: bp-forums/bbpress/xmlrpc.php:3555
6371
- msgid "The tag could not be destroyed."
6372
- msgstr ""
6373
-
6374
- #: bp-forums/bbpress/xmlrpc.php:3584
6375
- msgid "Software Name"
6376
- msgstr ""
6377
-
6378
- #: bp-forums/bbpress/xmlrpc.php:3589
6379
- msgid "Software Version"
6380
- msgstr ""
6381
-
6382
- #: bp-forums/bbpress/xmlrpc.php:3594
6383
- msgid "Site URL"
6384
- msgstr ""
6385
-
6386
- #: bp-forums/bbpress/xmlrpc.php:3601
6387
- msgid "Site Name"
6388
- msgstr ""
6389
-
6390
- #: bp-forums/bbpress/xmlrpc.php:3606
6391
- msgid "Site Description"
6392
- msgstr ""
6393
-
6394
- #: bp-forums/bbpress/xmlrpc.php:3611
6395
- msgid "Time Zone"
6396
- msgstr ""
6397
-
6398
- #: bp-forums/bbpress/xmlrpc.php:3616
6399
- msgid "Date/Time Format"
6400
- msgstr ""
6401
-
6402
- #: bp-forums/bbpress/xmlrpc.php:3621
6403
- msgid "Date Format"
6404
- msgstr ""
6405
-
6406
- #: bp-forums/bbpress/xmlrpc.php:3764
6407
- msgid "You are not allowed to manage options."
6408
- msgstr ""
6409
-
6410
- #: bp-forums/bbpress/xmlrpc.php:3775
6411
- msgid "The options data is invalid."
6412
- msgstr ""
6413
-
6414
- #: bp-forums/bbpress/xmlrpc.php:3855
6415
- msgid "This is not the site you are trying to pingback."
6416
- msgstr ""
6417
-
6418
- #: bp-forums/bbpress/xmlrpc.php:3864
6419
- msgid ""
6420
- "The source URL and the target URL cannot both point to the same resource."
6421
- msgstr ""
6422
-
6423
- #: bp-forums/bbpress/xmlrpc.php:3869 bp-forums/bbpress/xmlrpc.php:4056
6424
- msgid ""
6425
- "The specified target URL cannot be used as a target. It either doesn't "
6426
- "exist, or it is not a pingback-enabled resource."
6427
- msgstr ""
6428
-
6429
- #: bp-forums/bbpress/xmlrpc.php:3880
6430
- msgid "The specified target topic does not contain any posts."
6431
- msgstr ""
6432
-
6433
- #: bp-forums/bbpress/xmlrpc.php:3887
6434
- msgid "The pingback has already been registered."
6435
- msgstr ""
6436
-
6437
- #: bp-forums/bbpress/xmlrpc.php:3899
6438
- msgid "The source URL does not exist."
6439
- msgstr ""
6440
-
6441
- #: bp-forums/bbpress/xmlrpc.php:3919
6442
- msgid "We cannot find a title on that page."
6443
- msgstr ""
6444
-
6445
- #: bp-forums/bbpress/xmlrpc.php:3974
6446
- msgid ""
6447
- "The source URL does not contain a link to the target URL, and so cannot be "
6448
- "used as a source."
6449
- msgstr ""
6450
-
6451
- #: bp-forums/bbpress/xmlrpc.php:3989
6452
- msgid "The pingback could not be added."
6453
- msgstr ""
6454
-
6455
- #: bp-forums/bbpress/xmlrpc.php:4006
6456
- #, php-format
6457
- msgid "Pingback from %1$s to %2$s registered. Keep the web talking! :-)"
6458
- msgstr ""
6459
-
6460
- #: bp-forums/bbpress/xmlrpc.php:4037
6461
- msgid "The requested method only accepts one parameter."
6462
- msgstr ""
6463
-
6464
- #: bp-forums/bbpress/xmlrpc.php:4050
6465
- msgid "The specified target URL is not on this domain."
6466
- msgstr ""
6467
-
6468
- #: bp-forums/bp-forums-admin.php:12
6469
- msgid "Settings Saved."
6470
- msgstr ""
6471
-
6472
- #: bp-forums/bp-forums-admin.php:22
6473
- #, php-format
6474
- msgid ""
6475
- "bbPress forum integration in BuddyPress has been set up correctly. If you "
6476
- "are having problems you can <a href=\"%s\" title=\"Reinstall bbPress\">re-"
6477
- "install</a>"
6478
- msgstr ""
6479
-
6480
- #: bp-forums/bp-forums-admin.php:23
6481
- msgid ""
6482
- "NOTE: The forums directory will only work if your bbPress tables are in the "
6483
- "same database as your WordPress tables. If you are not using an existing "
6484
- "bbPress install you can ignore this message."
6485
- msgstr ""
6486
-
6487
- #: bp-forums/bp-forums-admin.php:38
6488
- msgid ""
6489
- "The bb-config.php file was not found at that location, please try again."
6490
- msgstr ""
6491
-
6492
- #: bp-forums/bp-forums-admin.php:41
6493
- msgid "Forums were set up correctly using your existing bbPress install!"
6494
- msgstr ""
6495
-
6496
- #: bp-forums/bp-forums-admin.php:42
6497
- msgid ""
6498
- "BuddyPress will now use its internal copy of bbPress to run the forums on "
6499
- "your site. If you wish, you can remove your old bbPress installation files, "
6500
- "as long as you keep the bb-config.php file in the same location."
6501
- msgstr ""
6502
-
6503
- #: bp-forums/bp-forums-admin.php:47
6504
- msgid "Existing bbPress Installation"
6505
- msgstr ""
6506
-
6507
- #: bp-forums/bp-forums-admin.php:48
6508
- msgid ""
6509
- "BuddyPress can make use of your existing bbPress install. Just provide the "
6510
- "location of your <code>bb-config.php</code> file, and BuddyPress will do the "
6511
- "rest."
6512
  msgstr ""
6513
 
6514
- #: bp-forums/bp-forums-admin.php:50 bp-forums/bp-forums-admin.php:78
6515
- msgid "Complete Installation"
 
 
6516
  msgstr ""
6517
 
6518
- #: bp-forums/bp-forums-admin.php:65
6519
- msgid ""
6520
- "All done! Configuration settings have been saved to the file <code>bb-config."
6521
- "php</code> in the root of your WordPress install."
6522
  msgstr ""
6523
 
6524
- #: bp-forums/bp-forums-admin.php:69
6525
- msgid ""
6526
- "A configuration file could not be created. No problem, but you will need to "
6527
- "save the text shown below into a file named <code>bb-config.php</code> in "
6528
- "the root directory of your WordPress installation before you can start using "
6529
- "the forum functionality."
6530
  msgstr ""
6531
 
6532
- #: bp-forums/bp-forums-admin.php:75
6533
- msgid "New bbPress Installation"
6534
  msgstr ""
6535
 
6536
- #: bp-forums/bp-forums-admin.php:76
6537
- msgid ""
6538
- "You've decided to set up a new installation of bbPress for forum management "
6539
- "in BuddyPress. This is very simple and is usually just a one click\n"
6540
- "\t\t\t\tprocess. When you're ready, hit the link below."
6541
  msgstr ""
6542
 
6543
- #: bp-forums/bp-forums-admin.php:86
6544
- #, php-format
6545
- msgid ""
6546
- "bbPress files were not found. To install the forums component you must "
6547
- "download a copy of bbPress and make sure it is in the folder: \"%s\""
6548
  msgstr ""
6549
 
6550
- #: bp-forums/bp-forums-admin.php:90
6551
- msgid ""
6552
- "Forums in BuddyPress make use of a bbPress installation to function. You can "
6553
- "choose to either let BuddyPress set up a new bbPress install, or use an "
6554
- "already existing bbPress install. Please choose one of the options below."
6555
  msgstr ""
6556
 
6557
- #: bp-forums/bp-forums-admin.php:92
6558
- msgid "Set up a new bbPress installation"
6559
  msgstr ""
6560
 
6561
- #: bp-forums/bp-forums-admin.php:93
6562
- msgid "Use an existing bbPress installation"
6563
  msgstr ""
6564
 
6565
- #: bp-forums/bp-forums-templatetags.php:293
6566
- #: bp-forums/bp-forums-templatetags.php:342
6567
- #: bp-forums/bp-forums-templatetags.php:873
6568
- msgid "Deleted User"
6569
  msgstr ""
6570
 
6571
- #: bp-forums/bp-forums-templatetags.php:455
6572
- #: bp-groups/bp-groups-templatetags.php:655
6573
- #, php-format
6574
- msgid "%d posts"
6575
  msgstr ""
6576
 
6577
- #: bp-forums/bp-forums-templatetags.php:552
6578
- msgid "Edit Topic"
6579
  msgstr ""
6580
 
6581
- #: bp-forums/bp-forums-templatetags.php:556
6582
- msgid "Sticky Topic"
6583
  msgstr ""
6584
 
6585
- #: bp-forums/bp-forums-templatetags.php:558
6586
- msgid "Un-stick Topic"
6587
  msgstr ""
6588
 
6589
- #: bp-forums/bp-forums-templatetags.php:561
6590
- msgid "Open Topic"
6591
  msgstr ""
6592
 
6593
- #: bp-forums/bp-forums-templatetags.php:563
6594
- msgid "Close Topic"
6595
  msgstr ""
6596
 
6597
- #: bp-forums/bp-forums-templatetags.php:565
6598
- msgid "Delete Topic"
6599
  msgstr ""
6600
 
6601
- #: bp-forums/bp-forums-templatetags.php:670
6602
- #, php-format
6603
- msgid " matching tag \"%s\""
6604
  msgstr ""
6605
 
6606
- #: bp-forums/bp-forums-templatetags.php:672
6607
- #, php-format
6608
- msgid "Viewing topic %s to %s (%s total topics%s)"
6609
  msgstr ""
6610
 
6611
- #: bp-forums/bp-forums-templatetags.php:956
6612
- #, php-format
6613
- msgid "Viewing post %d to %d (%d total posts)"
6614
  msgstr ""
6615
 
6616
  #: bp-friends.php:68
@@ -6618,7 +1340,7 @@ msgstr ""
6618
  msgid "Friends <span>(%d)</span>"
6619
  msgstr ""
6620
 
6621
- #: bp-friends.php:73 bp-friends.php:78 bp-friends.php:312
6622
  #: bp-friends/bp-friends-templatetags.php:40
6623
  msgid "My Friends"
6624
  msgstr ""
@@ -6627,91 +1349,91 @@ msgstr ""
6627
  msgid "Requests"
6628
  msgstr ""
6629
 
6630
- #: bp-friends.php:118
6631
  msgid "Friendship accepted"
6632
  msgstr ""
6633
 
6634
- #: bp-friends.php:120
6635
  msgid "Friendship could not be accepted"
6636
  msgstr ""
6637
 
6638
- #: bp-friends.php:129
6639
  msgid "Friendship rejected"
6640
  msgstr ""
6641
 
6642
- #: bp-friends.php:131
6643
  msgid "Friendship could not be rejected"
6644
  msgstr ""
6645
 
6646
- #: bp-friends.php:152
6647
  msgid "A member sends you a friendship request"
6648
  msgstr ""
6649
 
6650
- #: bp-friends.php:158
6651
  msgid "A member accepts your friendship request"
6652
  msgstr ""
6653
 
6654
- #: bp-friends.php:200 bp-themes/bp-default/_inc/ajax.php:351
6655
  msgid "Friendship could not be requested."
6656
  msgstr ""
6657
 
6658
- #: bp-friends.php:202
6659
  msgid "Friendship requested"
6660
  msgstr ""
6661
 
6662
- #: bp-friends.php:205
6663
  msgid "You are already friends with this user"
6664
  msgstr ""
6665
 
6666
- #: bp-friends.php:207
6667
  msgid "You already have a pending friendship request with this user"
6668
  msgstr ""
6669
 
6670
- #: bp-friends.php:238 bp-themes/bp-default/_inc/ajax.php:341
6671
  msgid "Friendship could not be canceled."
6672
  msgstr ""
6673
 
6674
- #: bp-friends.php:240
6675
  msgid "Friendship canceled"
6676
  msgstr ""
6677
 
6678
- #: bp-friends.php:243
6679
  msgid "You are not yet friends with this user"
6680
  msgstr ""
6681
 
6682
- #: bp-friends.php:245
6683
  msgid "You have a pending friendship request with this user"
6684
  msgstr ""
6685
 
6686
- #: bp-friends.php:300
6687
  msgid "New friendship created"
6688
  msgstr ""
6689
 
6690
- #: bp-friends.php:312
6691
  #, php-format
6692
  msgid "%d friends accepted your friendship requests"
6693
  msgstr ""
6694
 
6695
- #: bp-friends.php:316 bp-friends/bp-friends-notifications.php:60
6696
  #, php-format
6697
  msgid "%s accepted your friendship request"
6698
  msgstr ""
6699
 
6700
- #: bp-friends.php:322 bp-friends.php:326
6701
  msgid "Friendship requests"
6702
  msgstr ""
6703
 
6704
- #: bp-friends.php:322
6705
  #, php-format
6706
  msgid "You have %d pending friendship requests"
6707
  msgstr ""
6708
 
6709
- #: bp-friends.php:326
6710
  #, php-format
6711
  msgid "You have a friendship request from %s"
6712
  msgstr ""
6713
 
6714
- #: bp-friends.php:425 bp-friends.php:433
6715
  #, php-format
6716
  msgid "%s and %s are now friends"
6717
  msgstr ""
@@ -6745,15 +1467,15 @@ msgstr ""
6745
 
6746
  #: bp-friends/bp-friends-templatetags.php:6
6747
  #: bp-friends/bp-friends-templatetags.php:20
6748
- #: bp-groups/bp-groups-templatetags.php:1692
6749
- #: bp-groups/bp-groups-templatetags.php:1709
6750
  msgid "Recently Active"
6751
  msgstr ""
6752
 
6753
  #: bp-friends/bp-friends-templatetags.php:8
6754
  #: bp-friends/bp-friends-templatetags.php:26
6755
- #: bp-groups/bp-groups-templatetags.php:1697
6756
- #: bp-groups/bp-groups-templatetags.php:1724
6757
  msgid "Alphabetically"
6758
  msgstr ""
6759
 
@@ -6814,16 +1536,24 @@ msgstr ""
6814
  msgid "My Groups"
6815
  msgstr ""
6816
 
6817
- #: bp-groups.php:174 bp-groups/bp-groups-templatetags.php:896
6818
- #: bp-groups/bp-groups-templatetags.php:1750
6819
  msgid "Group Avatar"
6820
  msgstr ""
6821
 
6822
- #: bp-groups.php:204 bp-groups/bp-groups-templatetags.php:1076
 
 
 
 
6823
  #: bp-themes/bp-default/_inc/ajax.php:431
6824
  msgid "Request Membership"
6825
  msgstr ""
6826
 
 
 
 
 
6827
  #: bp-groups.php:209
6828
  #, php-format
6829
  msgid "Members (%s)"
@@ -6833,372 +1563,372 @@ msgstr ""
6833
  msgid "Send Invites"
6834
  msgstr ""
6835
 
6836
- #: bp-groups.php:246 bp-xprofile.php:222
6837
  msgid "Admin Options"
6838
  msgstr ""
6839
 
6840
- #: bp-groups.php:249 bp-groups/bp-groups-templatetags.php:905
6841
  #: bp-themes/bp-default/groups/single/admin.php:297
6842
  msgid "Delete Group"
6843
  msgstr ""
6844
 
6845
- #: bp-groups.php:294
6846
  msgid "Group invite could not be accepted"
6847
  msgstr ""
6848
 
6849
- #: bp-groups.php:296
6850
  msgid "Group invite accepted"
6851
  msgstr ""
6852
 
6853
- #: bp-groups.php:302 bp-groups.php:1689 bp-groups.php:2340
6854
  #, php-format
6855
  msgid "%s joined the group %s"
6856
  msgstr ""
6857
 
6858
- #: bp-groups.php:316
6859
  msgid "Group invite could not be rejected"
6860
  msgstr ""
6861
 
6862
- #: bp-groups.php:318
6863
  msgid "Group invite rejected"
6864
  msgstr ""
6865
 
6866
- #: bp-groups.php:372
6867
  msgid "There was an error when replying to that topic"
6868
  msgstr ""
6869
 
6870
- #: bp-groups.php:374
6871
  msgid "Your reply was posted successfully"
6872
  msgstr ""
6873
 
6874
- #: bp-groups.php:388
6875
  msgid "There was an error when making that topic a sticky"
6876
  msgstr ""
6877
 
6878
- #: bp-groups.php:390
6879
  msgid "The topic was made sticky successfully"
6880
  msgstr ""
6881
 
6882
- #: bp-groups.php:402
6883
  msgid "There was an error when unsticking that topic"
6884
  msgstr ""
6885
 
6886
- #: bp-groups.php:404
6887
  msgid "The topic was unstuck successfully"
6888
  msgstr ""
6889
 
6890
- #: bp-groups.php:416
6891
  msgid "There was an error when closing that topic"
6892
  msgstr ""
6893
 
6894
- #: bp-groups.php:418
6895
  msgid "The topic was closed successfully"
6896
  msgstr ""
6897
 
6898
- #: bp-groups.php:430
6899
  msgid "There was an error when opening that topic"
6900
  msgstr ""
6901
 
6902
- #: bp-groups.php:432
6903
  msgid "The topic was opened successfully"
6904
  msgstr ""
6905
 
6906
- #: bp-groups.php:451
6907
  msgid "There was an error deleting the topic"
6908
  msgstr ""
6909
 
6910
- #: bp-groups.php:453
6911
  msgid "The topic was deleted successfully"
6912
  msgstr ""
6913
 
6914
- #: bp-groups.php:473
6915
  msgid "There was an error when editing that topic"
6916
  msgstr ""
6917
 
6918
- #: bp-groups.php:475
6919
  msgid "The topic was edited successfully"
6920
  msgstr ""
6921
 
6922
- #: bp-groups.php:497
6923
  msgid "There was an error deleting that post"
6924
  msgstr ""
6925
 
6926
- #: bp-groups.php:499
6927
  msgid "The post was deleted successfully"
6928
  msgstr ""
6929
 
6930
- #: bp-groups.php:519
6931
  msgid "There was an error when editing that post"
6932
  msgstr ""
6933
 
6934
- #: bp-groups.php:521
6935
  msgid "The post was edited successfully"
6936
  msgstr ""
6937
 
6938
- #: bp-groups.php:585
6939
  msgid "Group invites sent."
6940
  msgstr ""
6941
 
6942
- #: bp-groups.php:611
6943
  msgid ""
6944
  "There was an error sending your group membership request, please try again."
6945
  msgstr ""
6946
 
6947
- #: bp-groups.php:613
6948
  msgid ""
6949
  "Your membership request was sent to the group administrator successfully. "
6950
  "You will be notified when the group administrator responds to your request."
6951
  msgstr ""
6952
 
6953
- #: bp-groups.php:662
6954
  msgid "There was an error updating group details, please try again."
6955
  msgstr ""
6956
 
6957
- #: bp-groups.php:664
6958
  msgid "Group details were successfully updated."
6959
  msgstr ""
6960
 
6961
- #: bp-groups.php:700
6962
  msgid "There was an error updating group settings, please try again."
6963
  msgstr ""
6964
 
6965
- #: bp-groups.php:702
6966
  msgid "Group settings were successfully updated."
6967
  msgstr ""
6968
 
6969
- #: bp-groups.php:732 bp-xprofile.php:442
6970
  msgid "Your avatar was deleted successfully!"
6971
  msgstr ""
6972
 
6973
- #: bp-groups.php:734 bp-xprofile.php:444
6974
  msgid "There was a problem deleting that avatar, please try again."
6975
  msgstr ""
6976
 
6977
- #: bp-groups.php:762
6978
  msgid "There was a problem cropping the avatar, please try uploading it again"
6979
  msgstr ""
6980
 
6981
- #: bp-groups.php:764
6982
  msgid "The new group avatar was uploaded successfully!"
6983
  msgstr ""
6984
 
6985
- #: bp-groups.php:793
6986
  msgid "There was an error when promoting that user, please try again"
6987
  msgstr ""
6988
 
6989
- #: bp-groups.php:795
6990
  msgid "User promoted successfully"
6991
  msgstr ""
6992
 
6993
- #: bp-groups.php:812
6994
  msgid "There was an error when demoting that user, please try again"
6995
  msgstr ""
6996
 
6997
- #: bp-groups.php:814
6998
  msgid "User demoted successfully"
6999
  msgstr ""
7000
 
7001
- #: bp-groups.php:831
7002
  msgid "There was an error when banning that user, please try again"
7003
  msgstr ""
7004
 
7005
- #: bp-groups.php:833
7006
  msgid "User banned successfully"
7007
  msgstr ""
7008
 
7009
- #: bp-groups.php:850
7010
  msgid "There was an error when unbanning that user, please try again"
7011
  msgstr ""
7012
 
7013
- #: bp-groups.php:852
7014
  msgid "User ban removed successfully"
7015
  msgstr ""
7016
 
7017
- #: bp-groups.php:890
7018
  msgid "There was an error accepting the membership request, please try again."
7019
  msgstr ""
7020
 
7021
- #: bp-groups.php:892
7022
  msgid "Group membership request accepted"
7023
  msgstr ""
7024
 
7025
- #: bp-groups.php:902
7026
  msgid "There was an error rejecting the membership request, please try again."
7027
  msgstr ""
7028
 
7029
- #: bp-groups.php:904
7030
  msgid "Group membership request rejected"
7031
  msgstr ""
7032
 
7033
- #: bp-groups.php:936
7034
  msgid "There was an error deleting the group, please try again."
7035
  msgstr ""
7036
 
7037
- #: bp-groups.php:938
7038
  msgid "The group was deleted successfully"
7039
  msgstr ""
7040
 
7041
- #: bp-groups.php:966
7042
  msgid "A member invites you to join a group"
7043
  msgstr ""
7044
 
7045
- #: bp-groups.php:972
7046
  msgid "Group information is updated"
7047
  msgstr ""
7048
 
7049
- #: bp-groups.php:978
7050
  msgid "You are promoted to a group administrator or moderator"
7051
  msgstr ""
7052
 
7053
- #: bp-groups.php:984
7054
  msgid "A member requests to join a private group for which you are an admin"
7055
  msgstr ""
7056
 
7057
- #: bp-groups.php:1032
7058
  msgid "There was an error saving group details. Please try again."
7059
  msgstr ""
7060
 
7061
- #: bp-groups.php:1054
7062
  msgid "Please fill in all of the required fields"
7063
  msgstr ""
7064
 
7065
- #: bp-groups.php:1059 bp-groups.php:1086
7066
  msgid "There was an error saving group details, please try again."
7067
  msgstr ""
7068
 
7069
- #: bp-groups.php:1117
7070
  #, php-format
7071
  msgid "%s created the group %s"
7072
  msgstr ""
7073
 
7074
- #: bp-groups.php:1165
7075
  msgid "There was an error saving the group avatar, please try uploading again."
7076
  msgstr ""
7077
 
7078
- #: bp-groups.php:1167
7079
  msgid "The group avatar was uploaded successfully!"
7080
  msgstr ""
7081
 
7082
- #: bp-groups.php:1184
7083
  msgid "There was an error joining the group."
7084
  msgstr ""
7085
 
7086
- #: bp-groups.php:1186
7087
  msgid "You joined the group!"
7088
  msgstr ""
7089
 
7090
- #: bp-groups.php:1263
7091
  msgid "Created a group"
7092
  msgstr ""
7093
 
7094
- #: bp-groups.php:1264
7095
  msgid "Joined a group"
7096
  msgstr ""
7097
 
7098
- #: bp-groups.php:1265
7099
  msgid "New group forum topic"
7100
  msgstr ""
7101
 
7102
- #: bp-groups.php:1266
7103
  msgid "New group forum post"
7104
  msgstr ""
7105
 
7106
- #: bp-groups.php:1326
7107
  msgid "Group Membership Requests"
7108
  msgstr ""
7109
 
7110
- #: bp-groups.php:1326
7111
  #, php-format
7112
  msgid "%d new membership requests for the group \"%s\""
7113
  msgstr ""
7114
 
7115
- #: bp-groups.php:1329
7116
  #, php-format
7117
  msgid "%s requests membership for the group \"%s\""
7118
  msgstr ""
7119
 
7120
- #: bp-groups.php:1340
7121
  #, php-format
7122
  msgid "%d accepted group membership requests"
7123
  msgstr ""
7124
 
7125
- #: bp-groups.php:1342
7126
  #, php-format
7127
  msgid "Membership for group \"%s\" accepted"
7128
  msgstr ""
7129
 
7130
- #: bp-groups.php:1353
7131
  #, php-format
7132
  msgid "%d rejected group membership requests"
7133
  msgstr ""
7134
 
7135
- #: bp-groups.php:1355
7136
  #, php-format
7137
  msgid "Membership for group \"%s\" rejected"
7138
  msgstr ""
7139
 
7140
- #: bp-groups.php:1367
7141
  #, php-format
7142
  msgid "You were promoted to an admin in %d groups"
7143
  msgstr ""
7144
 
7145
- #: bp-groups.php:1369
7146
  #, php-format
7147
  msgid "You were promoted to an admin in the group %s"
7148
  msgstr ""
7149
 
7150
- #: bp-groups.php:1380
7151
  #, php-format
7152
  msgid "You were promoted to a mod in %d groups"
7153
  msgstr ""
7154
 
7155
- #: bp-groups.php:1382
7156
  #, php-format
7157
  msgid "You were promoted to a mod in the group %s"
7158
  msgstr ""
7159
 
7160
- #: bp-groups.php:1393 bp-groups.php:1395
7161
  msgid "Group Invites"
7162
  msgstr ""
7163
 
7164
- #: bp-groups.php:1393
7165
  #, php-format
7166
  msgid "You have %d new group invitations"
7167
  msgstr ""
7168
 
7169
- #: bp-groups.php:1395
7170
  #, php-format
7171
  msgid "You have an invitation to the group: %s"
7172
  msgstr ""
7173
 
7174
- #: bp-groups.php:1487 bp-groups/bp-groups-classes.php:722
7175
  msgid "Group Admin"
7176
  msgstr ""
7177
 
7178
- #: bp-groups.php:1624
7179
  msgid "As the only Admin, you cannot leave the group."
7180
  msgstr ""
7181
 
7182
- #: bp-groups.php:1647
7183
  msgid "You successfully left the group."
7184
  msgstr ""
7185
 
7186
- #: bp-groups.php:1861
7187
  #, php-format
7188
  msgid "%s posted an update in the group %s:"
7189
  msgstr ""
7190
 
7191
- #: bp-groups.php:1914 bp-groups.php:2019
7192
  #, php-format
7193
  msgid "%s posted on the forum topic %s in the group %s:"
7194
  msgstr ""
7195
 
7196
- #: bp-groups.php:1953 bp-groups.php:1985
7197
  #, php-format
7198
  msgid "%s started the forum topic %s in the group %s:"
7199
  msgstr ""
7200
 
7201
- #: bp-groups/bp-groups-classes.php:716
7202
  msgid "Group Mod"
7203
  msgstr ""
7204
 
@@ -7326,172 +2056,192 @@ msgid ""
7326
  "---------------------\n"
7327
  msgstr ""
7328
 
7329
- #: bp-groups/bp-groups-templatetags.php:243
7330
  msgid "Public Group"
7331
  msgstr ""
7332
 
7333
- #: bp-groups/bp-groups-templatetags.php:245
7334
  msgid "Hidden Group"
7335
  msgstr ""
7336
 
7337
- #: bp-groups/bp-groups-templatetags.php:247
7338
  msgid "Private Group"
7339
  msgstr ""
7340
 
7341
- #: bp-groups/bp-groups-templatetags.php:249
7342
  msgid "Group"
7343
  msgstr ""
7344
 
7345
- #: bp-groups/bp-groups-templatetags.php:279
7346
- #: bp-groups/bp-groups-templatetags.php:1585
7347
  msgid "Group avatar"
7348
  msgstr ""
7349
 
7350
- #: bp-groups/bp-groups-templatetags.php:321
7351
  msgid "not yet active"
7352
  msgstr ""
7353
 
7354
- #: bp-groups/bp-groups-templatetags.php:412
7355
  msgid "Private"
7356
  msgstr ""
7357
 
7358
- #: bp-groups/bp-groups-templatetags.php:467
7359
  msgid "No Admins"
7360
  msgstr ""
7361
 
7362
- #: bp-groups/bp-groups-templatetags.php:487
7363
  msgid "No Mods"
7364
  msgstr ""
7365
 
7366
- #: bp-groups/bp-groups-templatetags.php:508
7367
  msgid "Filter Groups"
7368
  msgstr ""
7369
 
7370
- #: bp-groups/bp-groups-templatetags.php:555
7371
  #, php-format
7372
  msgid "Viewing group %s to %s (of %s groups)"
7373
  msgstr ""
7374
 
7375
- #: bp-groups/bp-groups-templatetags.php:578
7376
  #, php-format
7377
  msgid "%s member"
7378
  msgstr ""
7379
 
7380
- #: bp-groups/bp-groups-templatetags.php:580
7381
  #: bp-themes/bp-default/members/single/groups/invites.php:11
7382
  #, php-format
7383
  msgid "%s members"
7384
  msgstr ""
7385
 
7386
- #: bp-groups/bp-groups-templatetags.php:717
7387
- #: bp-groups/bp-groups-templatetags.php:755
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7388
  msgid "Demote to Member"
7389
  msgstr ""
7390
 
7391
- #: bp-groups/bp-groups-templatetags.php:723
7392
- #: bp-groups/bp-groups-templatetags.php:761
7393
- #: bp-groups/bp-groups-templatetags.php:1358
7394
  #, php-format
7395
  msgid "joined %s ago"
7396
  msgstr ""
7397
 
7398
- #: bp-groups/bp-groups-templatetags.php:736
7399
  msgid "This group has no administrators"
7400
  msgstr ""
7401
 
7402
- #: bp-groups/bp-groups-templatetags.php:755
7403
  #: bp-themes/bp-default/groups/single/admin.php:208
7404
  msgid "Promote to Admin"
7405
  msgstr ""
7406
 
7407
- #: bp-groups/bp-groups-templatetags.php:774
7408
  msgid "This group has no moderators"
7409
  msgstr ""
7410
 
7411
- #: bp-groups/bp-groups-templatetags.php:888
7412
  msgid "Edit Details"
7413
  msgstr ""
7414
 
7415
- #: bp-groups/bp-groups-templatetags.php:895
7416
  msgid "Group Settings"
7417
  msgstr ""
7418
 
7419
- #: bp-groups/bp-groups-templatetags.php:897
7420
  msgid "Manage Members"
7421
  msgstr ""
7422
 
7423
- #: bp-groups/bp-groups-templatetags.php:900
7424
  msgid "Membership Requests"
7425
  msgstr ""
7426
 
7427
- #: bp-groups/bp-groups-templatetags.php:1066
7428
- #: bp-groups/bp-groups-templatetags.php:1073
7429
- #: bp-groups/bp-groups-templatetags.php:1084
7430
  #: bp-themes/bp-default/_inc/ajax.php:407
7431
  msgid "Leave Group"
7432
  msgstr ""
7433
 
7434
- #: bp-groups/bp-groups-templatetags.php:1068
7435
  #: bp-themes/bp-default/_inc/ajax.php:429
7436
  msgid "Join Group"
7437
  msgstr ""
7438
 
7439
- #: bp-groups/bp-groups-templatetags.php:1078
7440
  msgid "Request Sent"
7441
  msgstr ""
7442
 
7443
- #: bp-groups/bp-groups-templatetags.php:1100
7444
  msgid ""
7445
  "This is a private group and you must request group membership in order to "
7446
  "join."
7447
  msgstr ""
7448
 
7449
- #: bp-groups/bp-groups-templatetags.php:1102
7450
  msgid ""
7451
  "This is a private group. To join you must be a registered site member and "
7452
  "request group membership."
7453
  msgstr ""
7454
 
7455
- #: bp-groups/bp-groups-templatetags.php:1104
7456
  msgid ""
7457
  "This is a private group. Your membership request is awaiting approval from "
7458
  "the group administrator."
7459
  msgstr ""
7460
 
7461
- #: bp-groups/bp-groups-templatetags.php:1106
7462
  msgid "This is a hidden group and only invited members can join."
7463
  msgstr ""
7464
 
7465
- #: bp-groups/bp-groups-templatetags.php:1407
7466
  #, php-format
7467
  msgid "Viewing members %s to %s (of %s members)"
7468
  msgstr ""
7469
 
7470
- #: bp-groups/bp-groups-templatetags.php:1693
7471
- #: bp-groups/bp-groups-templatetags.php:1712
7472
  msgid "Recently Joined"
7473
  msgstr ""
7474
 
7475
- #: bp-groups/bp-groups-templatetags.php:1694
7476
- #: bp-groups/bp-groups-templatetags.php:1715
7477
  msgid "Most Popular"
7478
  msgstr ""
7479
 
7480
- #: bp-groups/bp-groups-templatetags.php:1695
7481
- #: bp-groups/bp-groups-templatetags.php:1718
7482
  msgid "Administrator Of"
7483
  msgstr ""
7484
 
7485
- #: bp-groups/bp-groups-templatetags.php:1696
7486
- #: bp-groups/bp-groups-templatetags.php:1721
7487
  msgid "Moderator Of"
7488
  msgstr ""
7489
 
7490
- #: bp-groups/bp-groups-templatetags.php:1752
7491
  msgid "No Group Avatar"
7492
  msgstr ""
7493
 
7494
- #: bp-groups/bp-groups-templatetags.php:1941
7495
  #, php-format
7496
  msgid "requested %s ago"
7497
  msgstr ""
@@ -7542,103 +2292,103 @@ msgstr ""
7542
  msgid "My Messages"
7543
  msgstr ""
7544
 
7545
- #: bp-messages.php:167 bp-messages.php:188
7546
  msgid "There was an error sending that message, please try again"
7547
  msgstr ""
7548
 
7549
- #: bp-messages.php:172
7550
  msgid "Notice sent successfully!"
7551
  msgstr ""
7552
 
7553
- #: bp-messages.php:175
7554
  msgid "There was an error sending that notice, please try again"
7555
  msgstr ""
7556
 
7557
- #: bp-messages.php:185
7558
  msgid "Message sent successfully!"
7559
  msgstr ""
7560
 
7561
- #: bp-messages.php:213
7562
  msgid "There was a problem deactivating that notice."
7563
  msgstr ""
7564
 
7565
- #: bp-messages.php:215
7566
  msgid "Notice deactivated."
7567
  msgstr ""
7568
 
7569
- #: bp-messages.php:219
7570
  msgid "There was a problem activating that notice."
7571
  msgstr ""
7572
 
7573
- #: bp-messages.php:221
7574
  msgid "Notice activated."
7575
  msgstr ""
7576
 
7577
- #: bp-messages.php:225
7578
  msgid "There was a problem deleting that notice."
7579
  msgstr ""
7580
 
7581
- #: bp-messages.php:227
7582
  msgid "Notice deleted."
7583
  msgstr ""
7584
 
7585
- #: bp-messages.php:243
7586
  msgid "Messages"
7587
  msgstr ""
7588
 
7589
- #: bp-messages.php:249
7590
  msgid "A member sends you a new message"
7591
  msgstr ""
7592
 
7593
- #: bp-messages.php:255
7594
  msgid "A new site notice is posted"
7595
  msgstr ""
7596
 
7597
- #: bp-messages.php:294
7598
  msgid "Your reply was sent successfully"
7599
  msgstr ""
7600
 
7601
- #: bp-messages.php:296
7602
  msgid "There was a problem sending your reply, please try again"
7603
  msgstr ""
7604
 
7605
- #: bp-messages.php:306
7606
  #, php-format
7607
  msgid "From: %s"
7608
  msgstr ""
7609
 
7610
- #: bp-messages.php:327
7611
  msgid "There was an error deleting that message."
7612
  msgstr ""
7613
 
7614
- #: bp-messages.php:329
7615
  msgid "Message deleted."
7616
  msgstr ""
7617
 
7618
- #: bp-messages.php:351
7619
  msgid "There was an error deleting messages."
7620
  msgstr ""
7621
 
7622
- #: bp-messages.php:353 bp-themes/bp-default/_inc/ajax.php:534
7623
  msgid "Messages deleted."
7624
  msgstr ""
7625
 
7626
- #: bp-messages.php:373
7627
  #, php-format
7628
  msgid "You have %d new messages"
7629
  msgstr ""
7630
 
7631
- #: bp-messages.php:375
7632
  #, php-format
7633
  msgid "You have %d new message"
7634
  msgstr ""
7635
 
7636
- #: bp-messages.php:425
7637
  #, php-format
7638
  msgid "Re: %s"
7639
  msgstr ""
7640
 
7641
- #: bp-messages.php:432
7642
  msgid "No Subject"
7643
  msgstr ""
7644
 
@@ -7682,6 +2432,10 @@ msgstr ""
7682
  msgid "Unread"
7683
  msgstr ""
7684
 
 
 
 
 
7685
  #: bp-messages/bp-messages-templatetags.php:364
7686
  msgid "Mark as Read"
7687
  msgstr ""
@@ -7698,6 +2452,20 @@ msgstr ""
7698
  msgid "Currently Active"
7699
  msgstr ""
7700
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7701
  #: bp-messages/bp-messages-templatetags.php:496
7702
  #: bp-themes/bp-default/members/single/messages/compose.php:28
7703
  msgid "Send Message"
@@ -7813,7 +2581,7 @@ msgid "Blog Posts"
7813
  msgstr ""
7814
 
7815
  #: bp-themes/bp-default/_inc/options.php:38
7816
- #: bp-themes/bp-default/functions.php:83
7817
  msgid "Activity Stream"
7818
  msgstr ""
7819
 
@@ -7833,6 +2601,10 @@ msgstr ""
7833
  msgid "Mark as Favorite"
7834
  msgstr ""
7835
 
 
 
 
 
7836
  #: bp-themes/bp-default/activity/entry.php:63
7837
  msgid "or press esc to cancel."
7838
  msgstr ""
@@ -7906,45 +2678,45 @@ msgstr ""
7906
  msgid "Show Updates"
7907
  msgstr ""
7908
 
7909
- #: bp-themes/bp-default/activity/index.php:68
7910
- #: bp-themes/bp-default/members/single/activity.php:11
7911
  msgid "Show Blog Posts"
7912
  msgstr ""
7913
 
7914
- #: bp-themes/bp-default/activity/index.php:69
7915
- #: bp-themes/bp-default/members/single/activity.php:12
7916
  msgid "Show Blog Comments"
7917
  msgstr ""
7918
 
7919
- #: bp-themes/bp-default/activity/index.php:72
7920
  #: bp-themes/bp-default/groups/single/activity.php:13
7921
- #: bp-themes/bp-default/members/single/activity.php:20
7922
  msgid "Show New Forum Topics"
7923
  msgstr ""
7924
 
7925
- #: bp-themes/bp-default/activity/index.php:73
7926
  #: bp-themes/bp-default/groups/single/activity.php:14
7927
- #: bp-themes/bp-default/members/single/activity.php:21
7928
  msgid "Show Forum Replies"
7929
  msgstr ""
7930
 
7931
- #: bp-themes/bp-default/activity/index.php:77
7932
- #: bp-themes/bp-default/members/single/activity.php:25
7933
  msgid "Show New Groups"
7934
  msgstr ""
7935
 
7936
- #: bp-themes/bp-default/activity/index.php:78
7937
  #: bp-themes/bp-default/groups/single/activity.php:17
7938
- #: bp-themes/bp-default/members/single/activity.php:26
7939
  msgid "Show New Group Memberships"
7940
  msgstr ""
7941
 
7942
- #: bp-themes/bp-default/activity/index.php:82
7943
- #: bp-themes/bp-default/members/single/activity.php:15
7944
  msgid "Show Friendship Connections"
7945
  msgstr ""
7946
 
7947
- #: bp-themes/bp-default/activity/index.php:85
7948
  msgid "Show New Members"
7949
  msgstr ""
7950
 
@@ -7990,6 +2762,14 @@ msgstr ""
7990
  msgid "Next Entries &rarr;"
7991
  msgstr ""
7992
 
 
 
 
 
 
 
 
 
7993
  #: bp-themes/bp-default/archive.php:33 bp-themes/bp-default/index.php:24
7994
  #: bp-themes/bp-default/search.php:33 bp-themes/bp-default/single.php:27
7995
  msgid "Permanent Link to"
@@ -8155,6 +2935,10 @@ msgstr ""
8155
  msgid "*"
8156
  msgstr ""
8157
 
 
 
 
 
8158
  #: bp-themes/bp-default/comments.php:128
8159
  msgid "Comment"
8160
  msgstr ""
@@ -8197,6 +2981,14 @@ msgstr ""
8197
  msgid "Posted In Group"
8198
  msgstr ""
8199
 
 
 
 
 
 
 
 
 
8200
  #: bp-themes/bp-default/forums/forums-loop.php:39
8201
  msgid "Permalink"
8202
  msgstr ""
@@ -8240,6 +3032,11 @@ msgstr ""
8240
  msgid "Post Topic"
8241
  msgstr ""
8242
 
 
 
 
 
 
8243
  #: bp-themes/bp-default/forums/index.php:60
8244
  #, php-format
8245
  msgid ""
@@ -8280,38 +3077,43 @@ msgstr ""
8280
  msgid "Your comment is awaiting moderation."
8281
  msgstr ""
8282
 
8283
- #: bp-themes/bp-default/functions.php:207
 
 
 
 
 
8284
  #, php-format
8285
  msgid ""
8286
  "Theme activated! This theme contains <a href=\"%s\">custom header image</a> "
8287
  "support and <a href=\"%s\">sidebar widgets</a>."
8288
  msgstr ""
8289
 
8290
- #: bp-themes/bp-default/functions.php:219
8291
  msgid "My Favorites"
8292
  msgstr ""
8293
 
8294
- #: bp-themes/bp-default/functions.php:220
8295
  msgid "Accepted"
8296
  msgstr ""
8297
 
8298
- #: bp-themes/bp-default/functions.php:221
8299
  msgid "Rejected"
8300
  msgstr ""
8301
 
8302
- #: bp-themes/bp-default/functions.php:222
8303
  msgid "Show all comments for this thread"
8304
  msgstr ""
8305
 
8306
- #: bp-themes/bp-default/functions.php:223
8307
  msgid "Show all"
8308
  msgstr ""
8309
 
8310
- #: bp-themes/bp-default/functions.php:224
8311
  msgid "comments"
8312
  msgstr ""
8313
 
8314
- #: bp-themes/bp-default/functions.php:226
8315
  #, php-format
8316
  msgid ""
8317
  "%s is a unique identifier for %s that you can type into any message on this "
@@ -8319,11 +3121,6 @@ msgid ""
8319
  "use it."
8320
  msgstr ""
8321
 
8322
- #: bp-themes/bp-default/groups/create.php:7
8323
- #: bp-themes/bp-default/groups/index.php:7
8324
- msgid "Create a Group"
8325
- msgstr ""
8326
-
8327
  #: bp-themes/bp-default/groups/create.php:7
8328
  #: bp-themes/bp-default/groups/index.php:7
8329
  msgid "Groups Directory"
@@ -8339,9 +3136,9 @@ msgstr ""
8339
  #: bp-themes/bp-default/members/single/profile/edit.php:30
8340
  #: bp-themes/bp-default/members/single/profile/edit.php:37
8341
  #: bp-themes/bp-default/members/single/profile/edit.php:46
8342
- #: bp-themes/bp-default/members/single/profile/edit.php:56
8343
- #: bp-themes/bp-default/members/single/profile/edit.php:70
8344
- #: bp-themes/bp-default/members/single/profile/edit.php:80
8345
  #: bp-themes/bp-default/registration/register.php:28
8346
  #: bp-themes/bp-default/registration/register.php:32
8347
  #: bp-themes/bp-default/registration/register.php:36
@@ -8867,7 +3664,8 @@ msgstr ""
8867
  msgid "Editing '%s' Profile Group"
8868
  msgstr ""
8869
 
8870
- #: bp-themes/bp-default/members/single/profile/edit.php:61
 
8871
  #: bp-themes/bp-default/registration/register.php:110
8872
  msgid "Clear"
8873
  msgstr ""
@@ -8914,6 +3712,11 @@ msgstr ""
8914
  msgid "Account Details"
8915
  msgstr ""
8916
 
 
 
 
 
 
8917
  #: bp-themes/bp-default/registration/register.php:32
8918
  msgid "Email Address"
8919
  msgstr ""
@@ -9002,6 +3805,10 @@ msgid ""
9002
  "a>."
9003
  msgstr ""
9004
 
 
 
 
 
9005
  #: bp-themes/bp-default/sidebar.php:47
9006
  msgid "Remember Me"
9007
  msgstr ""
@@ -9018,54 +3825,58 @@ msgstr ""
9018
  msgid "Profile Field Setup"
9019
  msgstr ""
9020
 
9021
- #: bp-xprofile.php:225
 
 
 
 
9022
  #, php-format
9023
  msgid "Edit %s's Profile"
9024
  msgstr ""
9025
 
9026
- #: bp-xprofile.php:226
9027
  #, php-format
9028
  msgid "Edit %s's Avatar"
9029
  msgstr ""
9030
 
9031
- #: bp-xprofile.php:229
9032
  msgid "Mark as Spammer"
9033
  msgstr ""
9034
 
9035
- #: bp-xprofile.php:231
9036
  msgid "Not a Spammer"
9037
  msgstr ""
9038
 
9039
- #: bp-xprofile.php:234
9040
  #, php-format
9041
  msgid "Delete %s"
9042
  msgstr ""
9043
 
9044
- #: bp-xprofile.php:327
9045
  msgid ""
9046
  "Please make sure you fill in all required fields in this profile field group "
9047
  "before saving."
9048
  msgstr ""
9049
 
9050
- #: bp-xprofile.php:344
9051
  msgid ""
9052
  "There was a problem updating some of your profile information, please try "
9053
  "again."
9054
  msgstr ""
9055
 
9056
- #: bp-xprofile.php:346
9057
  msgid "Changes saved."
9058
  msgstr ""
9059
 
9060
- #: bp-xprofile.php:397
9061
  msgid "Your new avatar was uploaded successfully!"
9062
  msgstr ""
9063
 
9064
- #: bp-xprofile.php:464
9065
  msgid "New member registered"
9066
  msgstr ""
9067
 
9068
- #: bp-xprofile.php:465
9069
  msgid "Updated Profile"
9070
  msgstr ""
9071
 
@@ -9093,6 +3904,10 @@ msgstr ""
9093
  msgid "Required?"
9094
  msgstr ""
9095
 
 
 
 
 
9096
  #: bp-xprofile/bp-xprofile-admin.php:90
9097
  msgid "Drag"
9098
  msgstr ""
@@ -9291,17 +4106,65 @@ msgid ""
9291
  "Checkbox field types require at least one option. Please add options below."
9292
  msgstr ""
9293
 
9294
- #: bp-xprofile/bp-xprofile-templatetags.php:625
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9295
  msgid ""
9296
  "Avatar uploads are currently disabled. Why not use a <a href=\"http://"
9297
  "gravatar.com\" target=\"_blank\">gravatar</a> instead?"
9298
  msgstr ""
9299
 
9300
- #: bp-xprofile/bp-xprofile-templatetags.php:634
9301
  msgid "Profile not recently updated"
9302
  msgstr ""
9303
 
9304
- #: bp-xprofile/bp-xprofile-templatetags.php:645
9305
  #, php-format
9306
  msgid "Profile updated %s ago"
9307
  msgstr ""
8
  msgstr ""
9
  "Project-Id-Version: BuddyPress \n"
10
  "Report-Msgid-Bugs-To: wp-polyglots@lists.automattic.com\n"
11
+ "POT-Creation-Date: 2010-03-19 14:11+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
 
19
+ #: bp-activity.php:111 bp-activity.php:267
20
  #: bp-activity/feeds/bp-activity-personal-feed.php:21
21
  #: bp-themes/bp-default/header.php:53
22
  msgid "Activity"
26
  msgid "Personal"
27
  msgstr ""
28
 
29
+ #: bp-activity.php:121 bp-core/bp-core-admin.php:201 bp-friends.php:147
30
  msgid "Friends"
31
  msgstr ""
32
 
33
  #: bp-activity.php:124 bp-core/bp-core-admin.php:210
34
+ #: bp-core/bp-core-templatetags.php:998 bp-groups.php:966 bp-groups.php:1346
35
+ #: bp-groups.php:1359 bp-groups.php:1373 bp-groups.php:1386
36
  #: bp-groups/bp-groups-widgets.php:13 bp-themes/bp-default/header.php:63
37
  msgid "Groups"
38
  msgstr ""
39
 
40
+ #: bp-activity.php:126
 
41
  msgid "Favorites"
42
  msgstr ""
43
 
50
  msgid "My Activity"
51
  msgstr ""
52
 
53
+ #: bp-activity.php:249
54
  msgid "You do not have access to this activity."
55
  msgstr ""
56
 
57
+ #: bp-activity.php:268 bp-blogs/bp-blogs-templatetags.php:403
58
  #: bp-core/bp-core-admin.php:60 bp-core/bp-core-admin.php:68
59
  #: bp-core/bp-core-admin.php:75 bp-core/bp-core-admin.php:82
60
  #: bp-core/bp-core-admin.php:90 bp-core/bp-core-admin.php:99
61
+ #: bp-friends.php:148 bp-groups.php:967 bp-messages.php:242
62
  #: bp-themes/bp-default/groups/single/admin.php:26
63
  #: bp-themes/bp-default/registration/register.php:195
64
  #: bp-xprofile/bp-xprofile-admin.php:93
65
  msgid "Yes"
66
  msgstr ""
67
 
68
+ #: bp-activity.php:269 bp-blogs/bp-blogs-templatetags.php:407
69
  #: bp-core/bp-core-admin.php:61 bp-core/bp-core-admin.php:69
70
  #: bp-core/bp-core-admin.php:76 bp-core/bp-core-admin.php:83
71
  #: bp-core/bp-core-admin.php:91 bp-core/bp-core-admin.php:100
72
+ #: bp-friends.php:149 bp-groups.php:968 bp-messages.php:243
73
  #: bp-themes/bp-default/groups/single/admin.php:27
74
  #: bp-themes/bp-default/registration/register.php:196
75
  msgid "No"
76
  msgstr ""
77
 
78
+ #: bp-activity.php:274
79
  #, php-format
80
  msgid "A member mentions you in an update using \"@%s\""
81
  msgstr ""
82
 
83
+ #: bp-activity.php:280
84
  msgid "A member replies to an update or comment you've posted"
85
  msgstr ""
86
 
87
+ #: bp-activity.php:360
88
  msgid "Activity deleted"
89
  msgstr ""
90
 
91
+ #: bp-activity.php:362
92
  msgid "There was an error when deleting that activity"
93
  msgstr ""
94
 
95
+ #: bp-activity.php:382 bp-themes/bp-default/_inc/ajax.php:124
96
  msgid "Please enter some content to post."
97
  msgstr ""
98
 
99
+ #: bp-activity.php:397
100
  msgid "Update Posted!"
101
  msgstr ""
102
 
103
+ #: bp-activity.php:399
104
  msgid "There was an error when posting your update, please try again."
105
  msgstr ""
106
 
107
+ #: bp-activity.php:418 bp-themes/bp-default/_inc/ajax.php:162
108
  msgid "Please do not leave the comment area blank."
109
  msgstr ""
110
 
111
+ #: bp-activity.php:429
112
  msgid "Reply Posted!"
113
  msgstr ""
114
 
115
+ #: bp-activity.php:431 bp-themes/bp-default/_inc/ajax.php:167
116
  #: bp-themes/bp-default/_inc/ajax.php:178
117
  msgid "There was an error posting that reply, please try again."
118
  msgstr ""
119
 
120
+ #: bp-activity.php:447
121
  msgid "Activity marked as favorite."
122
  msgstr ""
123
 
124
+ #: bp-activity.php:449
125
  msgid ""
126
  "There was an error marking that activity as a favorite, please try again."
127
  msgstr ""
128
 
129
+ #: bp-activity.php:465
130
  msgid "Activity removed as favorite."
131
  msgstr ""
132
 
133
+ #: bp-activity.php:467
134
  msgid ""
135
  "There was an error removing that activity as a favorite, please try again."
136
  msgstr ""
137
 
138
+ #: bp-activity.php:693
139
  #, php-format
140
  msgid "%s posted an update:"
141
  msgstr ""
142
 
143
+ #: bp-activity.php:746
144
  #, php-format
145
  msgid "%s posted a new activity comment:"
146
  msgstr ""
147
 
148
+ #: bp-activity.php:961
149
  msgid "Thumbnail"
150
  msgstr ""
151
 
226
  msgid "Avatar"
227
  msgstr ""
228
 
229
+ #: bp-activity/bp-activity-templatetags.php:495
230
  #, php-format
231
  msgid "&nbsp; %s ago"
232
  msgstr ""
233
 
234
+ #: bp-activity/bp-activity-templatetags.php:498
235
  #: bp-themes/bp-default/activity/entry.php:46
236
  msgid "View Thread / Permalink"
237
  msgstr ""
238
 
239
+ #: bp-activity/bp-activity-templatetags.php:498
240
+ #: bp-activity/bp-activity-templatetags.php:735
241
  #: bp-core/bp-core-templatetags.php:290
 
 
 
 
242
  #: bp-themes/bp-default/activity/entry.php:46
243
  msgid "View"
244
  msgstr ""
245
 
246
+ #: bp-activity/bp-activity-templatetags.php:578
 
 
 
 
247
  #: bp-themes/bp-default/_inc/ajax.php:190
248
  #, php-format
249
  msgid "%s ago"
250
  msgstr ""
251
 
252
+ #: bp-activity/bp-activity-templatetags.php:582
 
253
  #: bp-themes/bp-default/_inc/ajax.php:191
254
  #: bp-themes/bp-default/activity/entry.php:28
255
  msgid "Reply"
256
  msgstr ""
257
 
258
+ #: bp-activity/bp-activity-templatetags.php:586
259
+ #: bp-activity/bp-activity-templatetags.php:719
 
 
 
 
260
  #: bp-themes/bp-default/_inc/ajax.php:192 bp-xprofile/bp-xprofile-admin.php:68
261
  #: bp-xprofile/bp-xprofile-admin.php:95
262
  msgid "Delete"
263
  msgstr ""
264
 
265
+ #: bp-activity/bp-activity-templatetags.php:795
266
  msgid "profile"
267
  msgstr ""
268
 
269
+ #: bp-activity/bp-activity-templatetags.php:795
270
  msgid "friends"
271
  msgstr ""
272
 
273
+ #: bp-activity/bp-activity-templatetags.php:795 bp-core/bp-core-classes.php:98
274
  msgid "groups"
275
  msgstr ""
276
 
277
+ #: bp-activity/bp-activity-templatetags.php:795
278
  msgid "status"
279
  msgstr ""
280
 
281
+ #: bp-activity/bp-activity-templatetags.php:795
282
  msgid "blogs"
283
  msgstr ""
284
 
285
+ #: bp-activity/bp-activity-templatetags.php:803
286
  msgid "Clear Filter"
287
  msgstr ""
288
 
351
  msgid "Site Wide Activity Feed"
352
  msgstr ""
353
 
354
+ #: bp-blogs.php:107
355
  #, php-format
356
  msgid "Blogs <span>(%d)</span>"
357
  msgstr ""
358
 
359
+ #: bp-blogs.php:115 bp-core/bp-core-adminbar.php:113
360
  msgid "My Blogs"
361
  msgstr ""
362
 
363
+ #: bp-blogs.php:188
364
  msgid "New blog created"
365
  msgstr ""
366
 
367
+ #: bp-blogs.php:189
368
  msgid "New blog post published"
369
  msgstr ""
370
 
371
+ #: bp-blogs.php:190
372
  msgid "New blog post comment posted"
373
  msgstr ""
374
 
375
+ #: bp-blogs.php:348
376
  #, php-format
377
  msgid "%s created the blog %s"
378
  msgstr ""
379
 
380
+ #: bp-blogs.php:383
381
  #, php-format
382
  msgid "%s wrote a new blog post: %s"
383
  msgstr ""
384
 
385
+ #: bp-blogs.php:428
386
  #, php-format
387
  msgid "%s commented on the blog post %s"
388
  msgstr ""
482
  "\">Login</a> as \"%4$s\" using your existing password."
483
  msgstr ""
484
 
485
+ #: bp-blogs/bp-blogs-templatetags.php:470 bp-core/bp-core-templatetags.php:924
486
  #: bp-themes/bp-default/blogs/create.php:10
487
  #: bp-themes/bp-default/blogs/index.php:8
488
  msgid "Create a Blog"
505
 
506
  #: bp-blogs/bp-blogs-templatetags.php:495 bp-core/bp-core-templatetags.php:385
507
  #: bp-core/bp-core-templatetags.php:391
508
+ #: bp-groups/bp-groups-templatetags.php:1680
509
+ #: bp-groups/bp-groups-templatetags.php:1686
 
 
510
  #: bp-themes/bp-default/_inc/ajax.php:56
511
  msgid "Search anything..."
512
  msgstr ""
513
 
514
  #: bp-blogs/bp-blogs-templatetags.php:496 bp-core/bp-core-templatetags.php:392
515
+ #: bp-core/bp-core-templatetags.php:1020
516
+ #: bp-groups/bp-groups-templatetags.php:1687
 
 
 
 
 
517
  #: bp-themes/bp-default/header.php:91 bp-themes/bp-default/searchform.php:5
518
  msgid "Search"
519
  msgstr ""
535
  msgstr ""
536
 
537
  #: bp-core.php:298 bp-core/bp-core-settings.php:70
 
538
  msgid "General Settings"
539
  msgstr ""
540
 
542
  msgid "Component Setup"
543
  msgstr ""
544
 
545
+ #: bp-core.php:344 bp-xprofile.php:179
 
546
  msgid "Profile"
547
  msgstr ""
548
 
549
+ #: bp-core.php:355 bp-groups/bp-groups-templatetags.php:413
550
  #: bp-xprofile.php:184
551
  msgid "Public"
552
  msgstr ""
556
  msgid "My Profile"
557
  msgstr ""
558
 
559
+ #: bp-core.php:457
560
  msgid "User marked as spammer. Spam users are visible only to site admins."
561
  msgstr ""
562
 
563
+ #: bp-core.php:459
564
  msgid "User removed as spammer."
565
  msgstr ""
566
 
567
+ #: bp-core.php:493
568
  #, php-format
569
  msgid "%s has been deleted from the system."
570
  msgstr ""
571
 
572
+ #: bp-core.php:495
573
  #, php-format
574
  msgid "There was an error deleting %s from the system. Please try again."
575
  msgstr ""
576
 
577
+ #: bp-core.php:1295 bp-core/bp-core-templatetags.php:810
578
  msgid "at"
579
  msgstr ""
580
 
581
+ #: bp-core.php:1399
582
  msgid "year"
583
  msgstr ""
584
 
585
+ #: bp-core.php:1399
586
  msgid "years"
587
  msgstr ""
588
 
589
+ #: bp-core.php:1400
590
  msgid "month"
591
  msgstr ""
592
 
593
+ #: bp-core.php:1400
594
  msgid "months"
595
  msgstr ""
596
 
597
+ #: bp-core.php:1401
598
  msgid "week"
599
  msgstr ""
600
 
601
+ #: bp-core.php:1401
602
  msgid "weeks"
603
  msgstr ""
604
 
605
+ #: bp-core.php:1402
606
  msgid "day"
607
  msgstr ""
608
 
609
+ #: bp-core.php:1402
610
  msgid "days"
611
  msgstr ""
612
 
613
+ #: bp-core.php:1403
614
  msgid "hour"
615
  msgstr ""
616
 
617
+ #: bp-core.php:1403
618
  msgid "hours"
619
  msgstr ""
620
 
621
+ #: bp-core.php:1404
622
  msgid "minute"
623
  msgstr ""
624
 
625
+ #: bp-core.php:1404
626
  msgid "minutes"
627
  msgstr ""
628
 
629
+ #: bp-core.php:1405
630
  msgid "second"
631
  msgstr ""
632
 
633
+ #: bp-core.php:1405 bp-core.php:1457
634
  msgid "seconds"
635
  msgstr ""
636
 
637
+ #: bp-core.php:1424
638
  msgid "sometime"
639
  msgstr ""
640
 
641
+ #: bp-core.php:1452
642
  msgid ",|Separator in time since"
643
  msgstr ""
644
 
645
+ #: bp-core.php:1504
646
  msgid "not recently active"
647
  msgstr ""
648
 
649
+ #: bp-core.php:1957
 
 
 
 
650
  msgid ""
651
  "IMPORTANT: <a href=\"http://codex.buddypress.org/getting-started/upgrading-"
652
  "from-10x/\">Read this before attempting to update BuddyPress</a>"
653
  msgstr ""
654
 
655
+ #: bp-core.php:1986
656
  #, php-format
657
  msgid ""
658
  "<strong>BuddyPress is almost ready</strong>. You must <a href=\"%s\">update "
660
  "work."
661
  msgstr ""
662
 
663
+ #: bp-core.php:1995
664
  #, php-format
665
  msgid ""
666
  "<strong>BuddyPress is ready</strong>. You'll need to <a href='%s'>activate a "
667
  "BuddyPress compatible theme</a> to take advantage of all of the features. "
668
  "We've bundled a default theme, but you can always <a href='%s'>install some "
669
+ "other compatible themes</a> or <a href='%s'>upgrade your existing WordPress "
670
+ "theme</a>."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
671
  msgstr ""
672
 
673
  #: bp-core/bp-core-admin.php:32
721
  msgstr ""
722
 
723
  #: bp-core/bp-core-admin.php:110
 
724
  msgid "Mystery Man"
725
  msgstr ""
726
 
727
  #: bp-core/bp-core-admin.php:111
 
728
  msgid "Identicon (Generated)"
729
  msgstr ""
730
 
731
  #: bp-core/bp-core-admin.php:112
 
732
  msgid "Wavatar (Generated)"
733
  msgstr ""
734
 
835
  msgstr ""
836
 
837
  #: bp-core/bp-core-adminbar.php:94 bp-core/bp-core-templatetags.php:455
838
+ #: bp-core/bp-core-templatetags.php:457 bp-core/bp-core-templatetags.php:1031
839
+ #: bp-core/bp-core-templatetags.php:1033 bp-themes/bp-default/sidebar.php:18
 
 
840
  msgid "Log Out"
841
  msgstr ""
842
 
843
+ #: bp-core/bp-core-adminbar.php:128
 
 
 
844
  msgid "Dashboard"
845
  msgstr ""
846
 
847
+ #: bp-core/bp-core-adminbar.php:129
848
  msgid "New Post"
849
  msgstr ""
850
 
851
+ #: bp-core/bp-core-adminbar.php:130
852
  msgid "Manage Posts"
853
  msgstr ""
854
 
855
+ #: bp-core/bp-core-adminbar.php:131
856
  msgid "Manage Comments"
857
  msgstr ""
858
 
859
+ #: bp-core/bp-core-adminbar.php:143
860
  msgid "Create a Blog!"
861
  msgstr ""
862
 
863
+ #: bp-core/bp-core-adminbar.php:159 bp-core/bp-core-settings.php:22
864
  msgid "Notifications"
865
  msgstr ""
866
 
867
+ #: bp-core/bp-core-adminbar.php:177
868
  msgid "No new notifications."
869
  msgstr ""
870
 
871
+ #: bp-core/bp-core-adminbar.php:198
872
  msgid "Blog Authors"
873
  msgstr ""
874
 
875
+ #: bp-core/bp-core-adminbar.php:222
876
  msgid "Visit"
877
  msgstr ""
878
 
879
+ #: bp-core/bp-core-adminbar.php:224
880
  msgid "Random Member"
881
  msgstr ""
882
 
883
+ #: bp-core/bp-core-adminbar.php:227
884
  msgid "Random Group"
885
  msgstr ""
886
 
887
+ #: bp-core/bp-core-adminbar.php:231
888
  msgid "Random Blog"
889
  msgstr ""
890
 
931
  msgid "Upload Failed! Error was: %s"
932
  msgstr ""
933
 
934
+ #: bp-core/bp-core-catchuri.php:253
935
  msgid ""
936
  "This user has been marked as a spammer. Only site admins can view this "
937
  "profile."
945
  msgid "Are you sure?"
946
  msgstr ""
947
 
948
+ #: bp-core/bp-core-filters.php:29
949
+ msgid "noreply"
950
+ msgstr ""
951
+
952
+ #: bp-core/bp-core-filters.php:128 bp-core/bp-core-filters.php:144
953
+ msgid "[User Set]"
954
+ msgstr ""
955
+
956
+ #: bp-core/bp-core-filters.php:164
957
+ #, php-format
958
+ msgid ""
959
+ "Thanks for registering! To complete the activation of your account and blog, "
960
+ "please click the following link:\n"
961
+ "\n"
962
+ "%s\n"
963
+ "\n"
964
+ "\n"
965
+ "\n"
966
+ "After you activate, you can visit your blog here:\n"
967
+ "\n"
968
+ "%s"
969
+ msgstr ""
970
+
971
+ #: bp-core/bp-core-filters.php:165
972
+ #, php-format
973
+ msgid "Activate %s"
974
+ msgstr ""
975
+
976
+ #: bp-core/bp-core-filters.php:196 bp-core/bp-core-signup.php:524
977
+ #, php-format
978
+ msgid ""
979
+ "Thanks for registering! To complete the activation of your account please "
980
+ "click the following link:\n"
981
+ "\n"
982
+ "%s\n"
983
+ "\n"
984
+ msgstr ""
985
+
986
+ #: bp-core/bp-core-filters.php:197 bp-core/bp-core-signup.php:525
987
+ msgid "Activate Your Account"
988
+ msgstr ""
989
+
990
+ #: bp-core/bp-core-settings.php:17 bp-groups.php:90
991
  msgid "Settings"
992
  msgstr ""
993
 
994
  #: bp-core/bp-core-settings.php:21
 
995
  msgid "General"
996
  msgstr ""
997
 
1024
  msgstr ""
1025
 
1026
  #: bp-core/bp-core-settings.php:97 bp-core/bp-core-settings.php:150
 
 
 
 
 
 
 
 
 
1027
  #: bp-themes/bp-default/groups/single/admin.php:32
1028
  #: bp-themes/bp-default/groups/single/admin.php:100
1029
  #: bp-themes/bp-default/groups/single/forum/edit.php:32
1030
  #: bp-themes/bp-default/groups/single/forum/edit.php:50
1031
+ #: bp-themes/bp-default/members/single/profile/edit.php:111
1032
  msgid "Save Changes"
1033
  msgstr ""
1034
 
1058
  msgid "Delete My Account"
1059
  msgstr ""
1060
 
1061
+ #: bp-core/bp-core-signup.php:47
1062
  msgid "Please make sure you enter your password twice"
1063
  msgstr ""
1064
 
1065
+ #: bp-core/bp-core-signup.php:51
1066
  msgid "The passwords you entered do not match."
1067
  msgstr ""
1068
 
1069
+ #: bp-core/bp-core-signup.php:68
1070
  msgid "This is a required field"
1071
  msgstr ""
1072
 
1073
+ #: bp-core/bp-core-signup.php:157
1074
  msgid ""
1075
  "There was a problem uploading your avatar, please try uploading it again"
1076
  msgstr ""
1077
 
1078
+ #: bp-core/bp-core-signup.php:187 bp-xprofile.php:393
1079
  msgid "There was a problem cropping your avatar, please try uploading it again"
1080
  msgstr ""
1081
 
1082
+ #: bp-core/bp-core-signup.php:189
1083
  msgid "Your new avatar was uploaded successfully"
1084
  msgstr ""
1085
 
1086
+ #: bp-core/bp-core-signup.php:211 bp-core/bp-core-signup.php:394
1087
+ msgid "There was an error activating your account, please try again."
1088
+ msgstr ""
1089
+
1090
+ #: bp-core/bp-core-signup.php:225
1091
+ msgid "Your account is now active!"
1092
+ msgstr ""
1093
+
1094
+ #: bp-core/bp-core-signup.php:254
1095
+ msgid "Please enter a username"
1096
+ msgstr ""
1097
+
1098
+ #: bp-core/bp-core-signup.php:266
1099
+ msgid "Only lowercase letters and numbers allowed"
1100
+ msgstr ""
1101
+
1102
+ #: bp-core/bp-core-signup.php:269
1103
+ msgid "Username must be at least 4 characters"
1104
+ msgstr ""
1105
+
1106
+ #: bp-core/bp-core-signup.php:272
1107
+ msgid "Sorry, usernames may not contain the character \"_\"!"
1108
+ msgstr ""
1109
+
1110
+ #: bp-core/bp-core-signup.php:279
1111
+ msgid "Sorry, usernames must have letters too!"
1112
+ msgstr ""
1113
+
1114
+ #: bp-core/bp-core-signup.php:282
1115
+ msgid "Please check your email address."
1116
+ msgstr ""
1117
+
1118
+ #: bp-core/bp-core-signup.php:290
1119
+ msgid "Sorry, that email address is not allowed!"
1120
+ msgstr ""
1121
+
1122
+ #: bp-core/bp-core-signup.php:295
1123
+ msgid "Sorry, that username already exists!"
1124
+ msgstr ""
1125
+
1126
+ #: bp-core/bp-core-signup.php:299
1127
+ msgid "Sorry, that email address is already used!"
1128
+ msgstr ""
1129
+
1130
+ #: bp-core/bp-core-signup.php:334
1131
  #, php-format
1132
  msgid ""
1133
  "<strong>ERROR</strong>: Couldn&#8217;t register you... please contact the <a "
1134
  "href=\"mailto:%s\">webmaster</a> !"
1135
  msgstr ""
1136
 
1137
+ #: bp-core/bp-core-signup.php:419 bp-core/bp-core-signup.php:423
1138
+ msgid "Invalid activation key"
1139
+ msgstr ""
1140
+
1141
+ #: bp-core/bp-core-signup.php:466
1142
+ #, php-format
1143
+ msgid "%s became a registered member"
1144
+ msgstr ""
1145
+
1146
  #: bp-core/bp-core-templatetags.php:184
1147
  #, php-format
1148
  msgid "Viewing member %s to %s (of %s active members)"
1186
  msgid "Options"
1187
  msgstr ""
1188
 
1189
+ #: bp-core/bp-core-templatetags.php:733 bp-themes/bp-default/comments.php:111
 
 
 
 
 
 
1190
  msgid "Name"
1191
  msgstr ""
1192
 
1194
  msgid "About Me"
1195
  msgstr ""
1196
 
1197
+ #: bp-core/bp-core-templatetags.php:753 bp-themes/bp-default/comments.php:121
 
 
1198
  msgid "Website"
1199
  msgstr ""
1200
 
1242
  msgid "Create an Account"
1243
  msgstr ""
1244
 
1245
+ #: bp-core/bp-core-templatetags.php:918
1246
+ #: bp-themes/bp-default/registration/activate.php:28
1247
+ msgid "Activate your Account"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1248
  msgstr ""
1249
 
1250
+ #: bp-core/bp-core-templatetags.php:921
1251
+ #: bp-themes/bp-default/groups/create.php:7
1252
+ #: bp-themes/bp-default/groups/index.php:7
1253
+ msgid "Create a Group"
1254
  msgstr ""
1255
 
1256
+ #: bp-core/bp-core-templatetags.php:994 bp-core/bp-core-widgets.php:15
1257
+ #: bp-themes/bp-default/groups/single/admin.php:174
1258
+ #: bp-themes/bp-default/header.php:58
1259
+ msgid "Members"
1260
  msgstr ""
1261
 
1262
+ #: bp-core/bp-core-templatetags.php:1002 bp-themes/bp-default/header.php:68
1263
+ msgid "Forums"
 
 
 
 
1264
  msgstr ""
1265
 
1266
+ #: bp-core/bp-core-templatetags.php:1006 bp-themes/bp-default/header.php:75
1267
+ msgid "Blogs"
1268
  msgstr ""
1269
 
1270
+ #: bp-core/bp-core-templatetags.php:1186
1271
+ msgid "Your Avatar"
 
 
 
1272
  msgstr ""
1273
 
1274
+ #: bp-core/bp-core-templatetags.php:1257
1275
+ msgid "a user"
 
 
 
1276
  msgstr ""
1277
 
1278
+ #: bp-core/bp-core-widgets.php:34 bp-friends/bp-friends-templatetags.php:7
1279
+ #: bp-friends/bp-friends-templatetags.php:23
1280
+ #: bp-groups/bp-groups-widgets.php:32 bp-themes/bp-default/blogs/index.php:31
1281
+ #: bp-themes/bp-default/members/single/blogs.php:9
1282
+ msgid "Newest"
1283
  msgstr ""
1284
 
1285
+ #: bp-core/bp-core-widgets.php:35 bp-groups/bp-groups-widgets.php:33
1286
+ msgid "Active"
1287
  msgstr ""
1288
 
1289
+ #: bp-core/bp-core-widgets.php:36 bp-groups/bp-groups-widgets.php:34
1290
+ msgid "Popular"
1291
  msgstr ""
1292
 
1293
+ #: bp-core/bp-core-widgets.php:60
1294
+ msgid "No one has signed up yet!"
 
 
1295
  msgstr ""
1296
 
1297
+ #: bp-core/bp-core-widgets.php:81 bp-core/bp-core-widgets.php:135
1298
+ #: bp-core/bp-core-widgets.php:189
1299
+ msgid "Max Members to show:"
 
1300
  msgstr ""
1301
 
1302
+ #: bp-core/bp-core-widgets.php:90
1303
+ msgid "Who's Online Avatars"
1304
  msgstr ""
1305
 
1306
+ #: bp-core/bp-core-widgets.php:114
1307
+ msgid "There are no users currently online"
1308
  msgstr ""
1309
 
1310
+ #: bp-core/bp-core-widgets.php:144
1311
+ msgid "Recently Active Member Avatars"
1312
  msgstr ""
1313
 
1314
+ #: bp-core/bp-core-widgets.php:168
1315
+ msgid "There are no recently active members"
1316
  msgstr ""
1317
 
1318
+ #: bp-core/bp-core-widgets.php:237
1319
+ msgid "There were no members found, please try another filter."
1320
  msgstr ""
1321
 
1322
+ #: bp-forums.php:56
1323
+ msgid "The forums component has not been set up yet."
1324
  msgstr ""
1325
 
1326
+ #: bp-forums.php:76 bp-groups.php:549
1327
+ msgid "There was an error when creating the topic"
 
1328
  msgstr ""
1329
 
1330
+ #: bp-forums.php:78 bp-groups.php:551
1331
+ msgid "The topic was created successfully"
 
1332
  msgstr ""
1333
 
1334
+ #: bp-forums.php:101
1335
+ msgid "Forums Setup"
 
1336
  msgstr ""
1337
 
1338
  #: bp-friends.php:68
1340
  msgid "Friends <span>(%d)</span>"
1341
  msgstr ""
1342
 
1343
+ #: bp-friends.php:73 bp-friends.php:78 bp-friends.php:313
1344
  #: bp-friends/bp-friends-templatetags.php:40
1345
  msgid "My Friends"
1346
  msgstr ""
1349
  msgid "Requests"
1350
  msgstr ""
1351
 
1352
+ #: bp-friends.php:116
1353
  msgid "Friendship accepted"
1354
  msgstr ""
1355
 
1356
+ #: bp-friends.php:118
1357
  msgid "Friendship could not be accepted"
1358
  msgstr ""
1359
 
1360
+ #: bp-friends.php:127
1361
  msgid "Friendship rejected"
1362
  msgstr ""
1363
 
1364
+ #: bp-friends.php:129
1365
  msgid "Friendship could not be rejected"
1366
  msgstr ""
1367
 
1368
+ #: bp-friends.php:153
1369
  msgid "A member sends you a friendship request"
1370
  msgstr ""
1371
 
1372
+ #: bp-friends.php:159
1373
  msgid "A member accepts your friendship request"
1374
  msgstr ""
1375
 
1376
+ #: bp-friends.php:201 bp-themes/bp-default/_inc/ajax.php:351
1377
  msgid "Friendship could not be requested."
1378
  msgstr ""
1379
 
1380
+ #: bp-friends.php:203
1381
  msgid "Friendship requested"
1382
  msgstr ""
1383
 
1384
+ #: bp-friends.php:206
1385
  msgid "You are already friends with this user"
1386
  msgstr ""
1387
 
1388
+ #: bp-friends.php:208
1389
  msgid "You already have a pending friendship request with this user"
1390
  msgstr ""
1391
 
1392
+ #: bp-friends.php:239 bp-themes/bp-default/_inc/ajax.php:341
1393
  msgid "Friendship could not be canceled."
1394
  msgstr ""
1395
 
1396
+ #: bp-friends.php:241
1397
  msgid "Friendship canceled"
1398
  msgstr ""
1399
 
1400
+ #: bp-friends.php:244
1401
  msgid "You are not yet friends with this user"
1402
  msgstr ""
1403
 
1404
+ #: bp-friends.php:246
1405
  msgid "You have a pending friendship request with this user"
1406
  msgstr ""
1407
 
1408
+ #: bp-friends.php:301
1409
  msgid "New friendship created"
1410
  msgstr ""
1411
 
1412
+ #: bp-friends.php:313
1413
  #, php-format
1414
  msgid "%d friends accepted your friendship requests"
1415
  msgstr ""
1416
 
1417
+ #: bp-friends.php:317 bp-friends/bp-friends-notifications.php:60
1418
  #, php-format
1419
  msgid "%s accepted your friendship request"
1420
  msgstr ""
1421
 
1422
+ #: bp-friends.php:323 bp-friends.php:327
1423
  msgid "Friendship requests"
1424
  msgstr ""
1425
 
1426
+ #: bp-friends.php:323
1427
  #, php-format
1428
  msgid "You have %d pending friendship requests"
1429
  msgstr ""
1430
 
1431
+ #: bp-friends.php:327
1432
  #, php-format
1433
  msgid "You have a friendship request from %s"
1434
  msgstr ""
1435
 
1436
+ #: bp-friends.php:426 bp-friends.php:434
1437
  #, php-format
1438
  msgid "%s and %s are now friends"
1439
  msgstr ""
1467
 
1468
  #: bp-friends/bp-friends-templatetags.php:6
1469
  #: bp-friends/bp-friends-templatetags.php:20
1470
+ #: bp-groups/bp-groups-templatetags.php:1695
1471
+ #: bp-groups/bp-groups-templatetags.php:1712
1472
  msgid "Recently Active"
1473
  msgstr ""
1474
 
1475
  #: bp-friends/bp-friends-templatetags.php:8
1476
  #: bp-friends/bp-friends-templatetags.php:26
1477
+ #: bp-groups/bp-groups-templatetags.php:1700
1478
+ #: bp-groups/bp-groups-templatetags.php:1727
1479
  msgid "Alphabetically"
1480
  msgstr ""
1481
 
1536
  msgid "My Groups"
1537
  msgstr ""
1538
 
1539
+ #: bp-groups.php:174 bp-groups/bp-groups-templatetags.php:899
1540
+ #: bp-groups/bp-groups-templatetags.php:1753
1541
  msgid "Group Avatar"
1542
  msgstr ""
1543
 
1544
+ #: bp-groups.php:200
1545
+ msgid "Admin"
1546
+ msgstr ""
1547
+
1548
+ #: bp-groups.php:204 bp-groups/bp-groups-templatetags.php:1079
1549
  #: bp-themes/bp-default/_inc/ajax.php:431
1550
  msgid "Request Membership"
1551
  msgstr ""
1552
 
1553
+ #: bp-groups.php:207
1554
+ msgid "Forum"
1555
+ msgstr ""
1556
+
1557
  #: bp-groups.php:209
1558
  #, php-format
1559
  msgid "Members (%s)"
1563
  msgid "Send Invites"
1564
  msgstr ""
1565
 
1566
+ #: bp-groups.php:245 bp-xprofile.php:220
1567
  msgid "Admin Options"
1568
  msgstr ""
1569
 
1570
+ #: bp-groups.php:248 bp-groups/bp-groups-templatetags.php:908
1571
  #: bp-themes/bp-default/groups/single/admin.php:297
1572
  msgid "Delete Group"
1573
  msgstr ""
1574
 
1575
+ #: bp-groups.php:293
1576
  msgid "Group invite could not be accepted"
1577
  msgstr ""
1578
 
1579
+ #: bp-groups.php:295
1580
  msgid "Group invite accepted"
1581
  msgstr ""
1582
 
1583
+ #: bp-groups.php:301 bp-groups.php:1696 bp-groups.php:2351
1584
  #, php-format
1585
  msgid "%s joined the group %s"
1586
  msgstr ""
1587
 
1588
+ #: bp-groups.php:315
1589
  msgid "Group invite could not be rejected"
1590
  msgstr ""
1591
 
1592
+ #: bp-groups.php:317
1593
  msgid "Group invite rejected"
1594
  msgstr ""
1595
 
1596
+ #: bp-groups.php:371
1597
  msgid "There was an error when replying to that topic"
1598
  msgstr ""
1599
 
1600
+ #: bp-groups.php:373
1601
  msgid "Your reply was posted successfully"
1602
  msgstr ""
1603
 
1604
+ #: bp-groups.php:387
1605
  msgid "There was an error when making that topic a sticky"
1606
  msgstr ""
1607
 
1608
+ #: bp-groups.php:389
1609
  msgid "The topic was made sticky successfully"
1610
  msgstr ""
1611
 
1612
+ #: bp-groups.php:401
1613
  msgid "There was an error when unsticking that topic"
1614
  msgstr ""
1615
 
1616
+ #: bp-groups.php:403
1617
  msgid "The topic was unstuck successfully"
1618
  msgstr ""
1619
 
1620
+ #: bp-groups.php:415
1621
  msgid "There was an error when closing that topic"
1622
  msgstr ""
1623
 
1624
+ #: bp-groups.php:417
1625
  msgid "The topic was closed successfully"
1626
  msgstr ""
1627
 
1628
+ #: bp-groups.php:429
1629
  msgid "There was an error when opening that topic"
1630
  msgstr ""
1631
 
1632
+ #: bp-groups.php:431
1633
  msgid "The topic was opened successfully"
1634
  msgstr ""
1635
 
1636
+ #: bp-groups.php:450
1637
  msgid "There was an error deleting the topic"
1638
  msgstr ""
1639
 
1640
+ #: bp-groups.php:452
1641
  msgid "The topic was deleted successfully"
1642
  msgstr ""
1643
 
1644
+ #: bp-groups.php:472
1645
  msgid "There was an error when editing that topic"
1646
  msgstr ""
1647
 
1648
+ #: bp-groups.php:474
1649
  msgid "The topic was edited successfully"
1650
  msgstr ""
1651
 
1652
+ #: bp-groups.php:496
1653
  msgid "There was an error deleting that post"
1654
  msgstr ""
1655
 
1656
+ #: bp-groups.php:498
1657
  msgid "The post was deleted successfully"
1658
  msgstr ""
1659
 
1660
+ #: bp-groups.php:518
1661
  msgid "There was an error when editing that post"
1662
  msgstr ""
1663
 
1664
+ #: bp-groups.php:520
1665
  msgid "The post was edited successfully"
1666
  msgstr ""
1667
 
1668
+ #: bp-groups.php:587
1669
  msgid "Group invites sent."
1670
  msgstr ""
1671
 
1672
+ #: bp-groups.php:613
1673
  msgid ""
1674
  "There was an error sending your group membership request, please try again."
1675
  msgstr ""
1676
 
1677
+ #: bp-groups.php:615
1678
  msgid ""
1679
  "Your membership request was sent to the group administrator successfully. "
1680
  "You will be notified when the group administrator responds to your request."
1681
  msgstr ""
1682
 
1683
+ #: bp-groups.php:664
1684
  msgid "There was an error updating group details, please try again."
1685
  msgstr ""
1686
 
1687
+ #: bp-groups.php:666
1688
  msgid "Group details were successfully updated."
1689
  msgstr ""
1690
 
1691
+ #: bp-groups.php:702
1692
  msgid "There was an error updating group settings, please try again."
1693
  msgstr ""
1694
 
1695
+ #: bp-groups.php:704
1696
  msgid "Group settings were successfully updated."
1697
  msgstr ""
1698
 
1699
+ #: bp-groups.php:734 bp-xprofile.php:440
1700
  msgid "Your avatar was deleted successfully!"
1701
  msgstr ""
1702
 
1703
+ #: bp-groups.php:736 bp-xprofile.php:442
1704
  msgid "There was a problem deleting that avatar, please try again."
1705
  msgstr ""
1706
 
1707
+ #: bp-groups.php:764
1708
  msgid "There was a problem cropping the avatar, please try uploading it again"
1709
  msgstr ""
1710
 
1711
+ #: bp-groups.php:766
1712
  msgid "The new group avatar was uploaded successfully!"
1713
  msgstr ""
1714
 
1715
+ #: bp-groups.php:795
1716
  msgid "There was an error when promoting that user, please try again"
1717
  msgstr ""
1718
 
1719
+ #: bp-groups.php:797
1720
  msgid "User promoted successfully"
1721
  msgstr ""
1722
 
1723
+ #: bp-groups.php:814
1724
  msgid "There was an error when demoting that user, please try again"
1725
  msgstr ""
1726
 
1727
+ #: bp-groups.php:816
1728
  msgid "User demoted successfully"
1729
  msgstr ""
1730
 
1731
+ #: bp-groups.php:833
1732
  msgid "There was an error when banning that user, please try again"
1733
  msgstr ""
1734
 
1735
+ #: bp-groups.php:835
1736
  msgid "User banned successfully"
1737
  msgstr ""
1738
 
1739
+ #: bp-groups.php:852
1740
  msgid "There was an error when unbanning that user, please try again"
1741
  msgstr ""
1742
 
1743
+ #: bp-groups.php:854
1744
  msgid "User ban removed successfully"
1745
  msgstr ""
1746
 
1747
+ #: bp-groups.php:896
1748
  msgid "There was an error accepting the membership request, please try again."
1749
  msgstr ""
1750
 
1751
+ #: bp-groups.php:898
1752
  msgid "Group membership request accepted"
1753
  msgstr ""
1754
 
1755
+ #: bp-groups.php:908
1756
  msgid "There was an error rejecting the membership request, please try again."
1757
  msgstr ""
1758
 
1759
+ #: bp-groups.php:910
1760
  msgid "Group membership request rejected"
1761
  msgstr ""
1762
 
1763
+ #: bp-groups.php:942
1764
  msgid "There was an error deleting the group, please try again."
1765
  msgstr ""
1766
 
1767
+ #: bp-groups.php:944
1768
  msgid "The group was deleted successfully"
1769
  msgstr ""
1770
 
1771
+ #: bp-groups.php:972
1772
  msgid "A member invites you to join a group"
1773
  msgstr ""
1774
 
1775
+ #: bp-groups.php:978
1776
  msgid "Group information is updated"
1777
  msgstr ""
1778
 
1779
+ #: bp-groups.php:984
1780
  msgid "You are promoted to a group administrator or moderator"
1781
  msgstr ""
1782
 
1783
+ #: bp-groups.php:990
1784
  msgid "A member requests to join a private group for which you are an admin"
1785
  msgstr ""
1786
 
1787
+ #: bp-groups.php:1038
1788
  msgid "There was an error saving group details. Please try again."
1789
  msgstr ""
1790
 
1791
+ #: bp-groups.php:1060
1792
  msgid "Please fill in all of the required fields"
1793
  msgstr ""
1794
 
1795
+ #: bp-groups.php:1065 bp-groups.php:1092
1796
  msgid "There was an error saving group details, please try again."
1797
  msgstr ""
1798
 
1799
+ #: bp-groups.php:1123
1800
  #, php-format
1801
  msgid "%s created the group %s"
1802
  msgstr ""
1803
 
1804
+ #: bp-groups.php:1171
1805
  msgid "There was an error saving the group avatar, please try uploading again."
1806
  msgstr ""
1807
 
1808
+ #: bp-groups.php:1173
1809
  msgid "The group avatar was uploaded successfully!"
1810
  msgstr ""
1811
 
1812
+ #: bp-groups.php:1190
1813
  msgid "There was an error joining the group."
1814
  msgstr ""
1815
 
1816
+ #: bp-groups.php:1192
1817
  msgid "You joined the group!"
1818
  msgstr ""
1819
 
1820
+ #: bp-groups.php:1269
1821
  msgid "Created a group"
1822
  msgstr ""
1823
 
1824
+ #: bp-groups.php:1270
1825
  msgid "Joined a group"
1826
  msgstr ""
1827
 
1828
+ #: bp-groups.php:1271
1829
  msgid "New group forum topic"
1830
  msgstr ""
1831
 
1832
+ #: bp-groups.php:1272
1833
  msgid "New group forum post"
1834
  msgstr ""
1835
 
1836
+ #: bp-groups.php:1332
1837
  msgid "Group Membership Requests"
1838
  msgstr ""
1839
 
1840
+ #: bp-groups.php:1332
1841
  #, php-format
1842
  msgid "%d new membership requests for the group \"%s\""
1843
  msgstr ""
1844
 
1845
+ #: bp-groups.php:1335
1846
  #, php-format
1847
  msgid "%s requests membership for the group \"%s\""
1848
  msgstr ""
1849
 
1850
+ #: bp-groups.php:1346
1851
  #, php-format
1852
  msgid "%d accepted group membership requests"
1853
  msgstr ""
1854
 
1855
+ #: bp-groups.php:1348
1856
  #, php-format
1857
  msgid "Membership for group \"%s\" accepted"
1858
  msgstr ""
1859
 
1860
+ #: bp-groups.php:1359
1861
  #, php-format
1862
  msgid "%d rejected group membership requests"
1863
  msgstr ""
1864
 
1865
+ #: bp-groups.php:1361
1866
  #, php-format
1867
  msgid "Membership for group \"%s\" rejected"
1868
  msgstr ""
1869
 
1870
+ #: bp-groups.php:1373
1871
  #, php-format
1872
  msgid "You were promoted to an admin in %d groups"
1873
  msgstr ""
1874
 
1875
+ #: bp-groups.php:1375
1876
  #, php-format
1877
  msgid "You were promoted to an admin in the group %s"
1878
  msgstr ""
1879
 
1880
+ #: bp-groups.php:1386
1881
  #, php-format
1882
  msgid "You were promoted to a mod in %d groups"
1883
  msgstr ""
1884
 
1885
+ #: bp-groups.php:1388
1886
  #, php-format
1887
  msgid "You were promoted to a mod in the group %s"
1888
  msgstr ""
1889
 
1890
+ #: bp-groups.php:1399 bp-groups.php:1401
1891
  msgid "Group Invites"
1892
  msgstr ""
1893
 
1894
+ #: bp-groups.php:1399
1895
  #, php-format
1896
  msgid "You have %d new group invitations"
1897
  msgstr ""
1898
 
1899
+ #: bp-groups.php:1401
1900
  #, php-format
1901
  msgid "You have an invitation to the group: %s"
1902
  msgstr ""
1903
 
1904
+ #: bp-groups.php:1493 bp-groups/bp-groups-classes.php:728
1905
  msgid "Group Admin"
1906
  msgstr ""
1907
 
1908
+ #: bp-groups.php:1631
1909
  msgid "As the only Admin, you cannot leave the group."
1910
  msgstr ""
1911
 
1912
+ #: bp-groups.php:1654
1913
  msgid "You successfully left the group."
1914
  msgstr ""
1915
 
1916
+ #: bp-groups.php:1872
1917
  #, php-format
1918
  msgid "%s posted an update in the group %s:"
1919
  msgstr ""
1920
 
1921
+ #: bp-groups.php:1925 bp-groups.php:2030
1922
  #, php-format
1923
  msgid "%s posted on the forum topic %s in the group %s:"
1924
  msgstr ""
1925
 
1926
+ #: bp-groups.php:1964 bp-groups.php:1996
1927
  #, php-format
1928
  msgid "%s started the forum topic %s in the group %s:"
1929
  msgstr ""
1930
 
1931
+ #: bp-groups/bp-groups-classes.php:722
1932
  msgid "Group Mod"
1933
  msgstr ""
1934
 
2056
  "---------------------\n"
2057
  msgstr ""
2058
 
2059
+ #: bp-groups/bp-groups-templatetags.php:246
2060
  msgid "Public Group"
2061
  msgstr ""
2062
 
2063
+ #: bp-groups/bp-groups-templatetags.php:248
2064
  msgid "Hidden Group"
2065
  msgstr ""
2066
 
2067
+ #: bp-groups/bp-groups-templatetags.php:250
2068
  msgid "Private Group"
2069
  msgstr ""
2070
 
2071
+ #: bp-groups/bp-groups-templatetags.php:252
2072
  msgid "Group"
2073
  msgstr ""
2074
 
2075
+ #: bp-groups/bp-groups-templatetags.php:282
2076
+ #: bp-groups/bp-groups-templatetags.php:1588
2077
  msgid "Group avatar"
2078
  msgstr ""
2079
 
2080
+ #: bp-groups/bp-groups-templatetags.php:324
2081
  msgid "not yet active"
2082
  msgstr ""
2083
 
2084
+ #: bp-groups/bp-groups-templatetags.php:415
2085
  msgid "Private"
2086
  msgstr ""
2087
 
2088
+ #: bp-groups/bp-groups-templatetags.php:470
2089
  msgid "No Admins"
2090
  msgstr ""
2091
 
2092
+ #: bp-groups/bp-groups-templatetags.php:490
2093
  msgid "No Mods"
2094
  msgstr ""
2095
 
2096
+ #: bp-groups/bp-groups-templatetags.php:511
2097
  msgid "Filter Groups"
2098
  msgstr ""
2099
 
2100
+ #: bp-groups/bp-groups-templatetags.php:558
2101
  #, php-format
2102
  msgid "Viewing group %s to %s (of %s groups)"
2103
  msgstr ""
2104
 
2105
+ #: bp-groups/bp-groups-templatetags.php:581
2106
  #, php-format
2107
  msgid "%s member"
2108
  msgstr ""
2109
 
2110
+ #: bp-groups/bp-groups-templatetags.php:583
2111
  #: bp-themes/bp-default/members/single/groups/invites.php:11
2112
  #, php-format
2113
  msgid "%s members"
2114
  msgstr ""
2115
 
2116
+ #: bp-groups/bp-groups-templatetags.php:622
2117
+ #, php-format
2118
+ msgid "%d topic"
2119
+ msgstr ""
2120
+
2121
+ #: bp-groups/bp-groups-templatetags.php:624
2122
+ #, php-format
2123
+ msgid "%d topics"
2124
+ msgstr ""
2125
+
2126
+ #: bp-groups/bp-groups-templatetags.php:656
2127
+ #, php-format
2128
+ msgid "%d post"
2129
+ msgstr ""
2130
+
2131
+ #: bp-groups/bp-groups-templatetags.php:658
2132
+ #, php-format
2133
+ msgid "%d posts"
2134
+ msgstr ""
2135
+
2136
+ #: bp-groups/bp-groups-templatetags.php:720
2137
+ #: bp-groups/bp-groups-templatetags.php:758
2138
  msgid "Demote to Member"
2139
  msgstr ""
2140
 
2141
+ #: bp-groups/bp-groups-templatetags.php:726
2142
+ #: bp-groups/bp-groups-templatetags.php:764
2143
+ #: bp-groups/bp-groups-templatetags.php:1361
2144
  #, php-format
2145
  msgid "joined %s ago"
2146
  msgstr ""
2147
 
2148
+ #: bp-groups/bp-groups-templatetags.php:739
2149
  msgid "This group has no administrators"
2150
  msgstr ""
2151
 
2152
+ #: bp-groups/bp-groups-templatetags.php:758
2153
  #: bp-themes/bp-default/groups/single/admin.php:208
2154
  msgid "Promote to Admin"
2155
  msgstr ""
2156
 
2157
+ #: bp-groups/bp-groups-templatetags.php:777
2158
  msgid "This group has no moderators"
2159
  msgstr ""
2160
 
2161
+ #: bp-groups/bp-groups-templatetags.php:891
2162
  msgid "Edit Details"
2163
  msgstr ""
2164
 
2165
+ #: bp-groups/bp-groups-templatetags.php:898
2166
  msgid "Group Settings"
2167
  msgstr ""
2168
 
2169
+ #: bp-groups/bp-groups-templatetags.php:900
2170
  msgid "Manage Members"
2171
  msgstr ""
2172
 
2173
+ #: bp-groups/bp-groups-templatetags.php:903
2174
  msgid "Membership Requests"
2175
  msgstr ""
2176
 
2177
+ #: bp-groups/bp-groups-templatetags.php:1069
2178
+ #: bp-groups/bp-groups-templatetags.php:1076
2179
+ #: bp-groups/bp-groups-templatetags.php:1087
2180
  #: bp-themes/bp-default/_inc/ajax.php:407
2181
  msgid "Leave Group"
2182
  msgstr ""
2183
 
2184
+ #: bp-groups/bp-groups-templatetags.php:1071
2185
  #: bp-themes/bp-default/_inc/ajax.php:429
2186
  msgid "Join Group"
2187
  msgstr ""
2188
 
2189
+ #: bp-groups/bp-groups-templatetags.php:1081
2190
  msgid "Request Sent"
2191
  msgstr ""
2192
 
2193
+ #: bp-groups/bp-groups-templatetags.php:1103
2194
  msgid ""
2195
  "This is a private group and you must request group membership in order to "
2196
  "join."
2197
  msgstr ""
2198
 
2199
+ #: bp-groups/bp-groups-templatetags.php:1105
2200
  msgid ""
2201
  "This is a private group. To join you must be a registered site member and "
2202
  "request group membership."
2203
  msgstr ""
2204
 
2205
+ #: bp-groups/bp-groups-templatetags.php:1107
2206
  msgid ""
2207
  "This is a private group. Your membership request is awaiting approval from "
2208
  "the group administrator."
2209
  msgstr ""
2210
 
2211
+ #: bp-groups/bp-groups-templatetags.php:1109
2212
  msgid "This is a hidden group and only invited members can join."
2213
  msgstr ""
2214
 
2215
+ #: bp-groups/bp-groups-templatetags.php:1410
2216
  #, php-format
2217
  msgid "Viewing members %s to %s (of %s members)"
2218
  msgstr ""
2219
 
2220
+ #: bp-groups/bp-groups-templatetags.php:1696
2221
+ #: bp-groups/bp-groups-templatetags.php:1715
2222
  msgid "Recently Joined"
2223
  msgstr ""
2224
 
2225
+ #: bp-groups/bp-groups-templatetags.php:1697
2226
+ #: bp-groups/bp-groups-templatetags.php:1718
2227
  msgid "Most Popular"
2228
  msgstr ""
2229
 
2230
+ #: bp-groups/bp-groups-templatetags.php:1698
2231
+ #: bp-groups/bp-groups-templatetags.php:1721
2232
  msgid "Administrator Of"
2233
  msgstr ""
2234
 
2235
+ #: bp-groups/bp-groups-templatetags.php:1699
2236
+ #: bp-groups/bp-groups-templatetags.php:1724
2237
  msgid "Moderator Of"
2238
  msgstr ""
2239
 
2240
+ #: bp-groups/bp-groups-templatetags.php:1755
2241
  msgid "No Group Avatar"
2242
  msgstr ""
2243
 
2244
+ #: bp-groups/bp-groups-templatetags.php:1944
2245
  #, php-format
2246
  msgid "requested %s ago"
2247
  msgstr ""
2292
  msgid "My Messages"
2293
  msgstr ""
2294
 
2295
+ #: bp-messages.php:165 bp-messages.php:186
2296
  msgid "There was an error sending that message, please try again"
2297
  msgstr ""
2298
 
2299
+ #: bp-messages.php:170
2300
  msgid "Notice sent successfully!"
2301
  msgstr ""
2302
 
2303
+ #: bp-messages.php:173
2304
  msgid "There was an error sending that notice, please try again"
2305
  msgstr ""
2306
 
2307
+ #: bp-messages.php:183
2308
  msgid "Message sent successfully!"
2309
  msgstr ""
2310
 
2311
+ #: bp-messages.php:211
2312
  msgid "There was a problem deactivating that notice."
2313
  msgstr ""
2314
 
2315
+ #: bp-messages.php:213
2316
  msgid "Notice deactivated."
2317
  msgstr ""
2318
 
2319
+ #: bp-messages.php:217
2320
  msgid "There was a problem activating that notice."
2321
  msgstr ""
2322
 
2323
+ #: bp-messages.php:219
2324
  msgid "Notice activated."
2325
  msgstr ""
2326
 
2327
+ #: bp-messages.php:223
2328
  msgid "There was a problem deleting that notice."
2329
  msgstr ""
2330
 
2331
+ #: bp-messages.php:225
2332
  msgid "Notice deleted."
2333
  msgstr ""
2334
 
2335
+ #: bp-messages.php:241
2336
  msgid "Messages"
2337
  msgstr ""
2338
 
2339
+ #: bp-messages.php:247
2340
  msgid "A member sends you a new message"
2341
  msgstr ""
2342
 
2343
+ #: bp-messages.php:253
2344
  msgid "A new site notice is posted"
2345
  msgstr ""
2346
 
2347
+ #: bp-messages.php:292
2348
  msgid "Your reply was sent successfully"
2349
  msgstr ""
2350
 
2351
+ #: bp-messages.php:294
2352
  msgid "There was a problem sending your reply, please try again"
2353
  msgstr ""
2354
 
2355
+ #: bp-messages.php:304
2356
  #, php-format
2357
  msgid "From: %s"
2358
  msgstr ""
2359
 
2360
+ #: bp-messages.php:325
2361
  msgid "There was an error deleting that message."
2362
  msgstr ""
2363
 
2364
+ #: bp-messages.php:327
2365
  msgid "Message deleted."
2366
  msgstr ""
2367
 
2368
+ #: bp-messages.php:349
2369
  msgid "There was an error deleting messages."
2370
  msgstr ""
2371
 
2372
+ #: bp-messages.php:351 bp-themes/bp-default/_inc/ajax.php:534
2373
  msgid "Messages deleted."
2374
  msgstr ""
2375
 
2376
+ #: bp-messages.php:371
2377
  #, php-format
2378
  msgid "You have %d new messages"
2379
  msgstr ""
2380
 
2381
+ #: bp-messages.php:373
2382
  #, php-format
2383
  msgid "You have %d new message"
2384
  msgstr ""
2385
 
2386
+ #: bp-messages.php:423
2387
  #, php-format
2388
  msgid "Re: %s"
2389
  msgstr ""
2390
 
2391
+ #: bp-messages.php:430
2392
  msgid "No Subject"
2393
  msgstr ""
2394
 
2432
  msgid "Unread"
2433
  msgstr ""
2434
 
2435
+ #: bp-messages/bp-messages-templatetags.php:361
2436
+ msgid "All"
2437
+ msgstr ""
2438
+
2439
  #: bp-messages/bp-messages-templatetags.php:364
2440
  msgid "Mark as Read"
2441
  msgstr ""
2452
  msgid "Currently Active"
2453
  msgstr ""
2454
 
2455
+ #: bp-messages/bp-messages-templatetags.php:443
2456
+ msgid "Deactivate"
2457
+ msgstr ""
2458
+
2459
+ #: bp-messages/bp-messages-templatetags.php:445
2460
+ #: bp-themes/bp-default/registration/activate.php:40
2461
+ msgid "Activate"
2462
+ msgstr ""
2463
+
2464
+ #: bp-messages/bp-messages-templatetags.php:470
2465
+ #: bp-themes/bp-default/functions.php:229
2466
+ msgid "Close"
2467
+ msgstr ""
2468
+
2469
  #: bp-messages/bp-messages-templatetags.php:496
2470
  #: bp-themes/bp-default/members/single/messages/compose.php:28
2471
  msgid "Send Message"
2581
  msgstr ""
2582
 
2583
  #: bp-themes/bp-default/_inc/options.php:38
2584
+ #: bp-themes/bp-default/functions.php:86
2585
  msgid "Activity Stream"
2586
  msgstr ""
2587
 
2601
  msgid "Mark as Favorite"
2602
  msgstr ""
2603
 
2604
+ #: bp-themes/bp-default/activity/entry.php:63
2605
+ msgid "Post"
2606
+ msgstr ""
2607
+
2608
  #: bp-themes/bp-default/activity/entry.php:63
2609
  msgid "or press esc to cancel."
2610
  msgstr ""
2678
  msgid "Show Updates"
2679
  msgstr ""
2680
 
2681
+ #: bp-themes/bp-default/activity/index.php:70
2682
+ #: bp-themes/bp-default/members/single/activity.php:12
2683
  msgid "Show Blog Posts"
2684
  msgstr ""
2685
 
2686
+ #: bp-themes/bp-default/activity/index.php:71
2687
+ #: bp-themes/bp-default/members/single/activity.php:13
2688
  msgid "Show Blog Comments"
2689
  msgstr ""
2690
 
2691
+ #: bp-themes/bp-default/activity/index.php:75
2692
  #: bp-themes/bp-default/groups/single/activity.php:13
2693
+ #: bp-themes/bp-default/members/single/activity.php:22
2694
  msgid "Show New Forum Topics"
2695
  msgstr ""
2696
 
2697
+ #: bp-themes/bp-default/activity/index.php:76
2698
  #: bp-themes/bp-default/groups/single/activity.php:14
2699
+ #: bp-themes/bp-default/members/single/activity.php:23
2700
  msgid "Show Forum Replies"
2701
  msgstr ""
2702
 
2703
+ #: bp-themes/bp-default/activity/index.php:80
2704
+ #: bp-themes/bp-default/members/single/activity.php:27
2705
  msgid "Show New Groups"
2706
  msgstr ""
2707
 
2708
+ #: bp-themes/bp-default/activity/index.php:81
2709
  #: bp-themes/bp-default/groups/single/activity.php:17
2710
+ #: bp-themes/bp-default/members/single/activity.php:28
2711
  msgid "Show New Group Memberships"
2712
  msgstr ""
2713
 
2714
+ #: bp-themes/bp-default/activity/index.php:85
2715
+ #: bp-themes/bp-default/members/single/activity.php:17
2716
  msgid "Show Friendship Connections"
2717
  msgstr ""
2718
 
2719
+ #: bp-themes/bp-default/activity/index.php:88
2720
  msgid "Show New Members"
2721
  msgstr ""
2722
 
2762
  msgid "Next Entries &rarr;"
2763
  msgstr ""
2764
 
2765
+ #: bp-themes/bp-default/archive.php:29 bp-themes/bp-default/archive.php:35
2766
+ #: bp-themes/bp-default/index.php:20 bp-themes/bp-default/index.php:26
2767
+ #: bp-themes/bp-default/search.php:29 bp-themes/bp-default/search.php:35
2768
+ #: bp-themes/bp-default/single.php:23 bp-themes/bp-default/single.php:29
2769
+ #, php-format
2770
+ msgid "by %s"
2771
+ msgstr ""
2772
+
2773
  #: bp-themes/bp-default/archive.php:33 bp-themes/bp-default/index.php:24
2774
  #: bp-themes/bp-default/search.php:33 bp-themes/bp-default/single.php:27
2775
  msgid "Permanent Link to"
2935
  msgid "*"
2936
  msgstr ""
2937
 
2938
+ #: bp-themes/bp-default/comments.php:116
2939
+ msgid "Email"
2940
+ msgstr ""
2941
+
2942
  #: bp-themes/bp-default/comments.php:128
2943
  msgid "Comment"
2944
  msgstr ""
2981
  msgid "Posted In Group"
2982
  msgstr ""
2983
 
2984
+ #: bp-themes/bp-default/forums/forums-loop.php:31
2985
+ msgid "Posts"
2986
+ msgstr ""
2987
+
2988
+ #: bp-themes/bp-default/forums/forums-loop.php:32
2989
+ msgid "Freshness"
2990
+ msgstr ""
2991
+
2992
  #: bp-themes/bp-default/forums/forums-loop.php:39
2993
  msgid "Permalink"
2994
  msgstr ""
3032
  msgid "Post Topic"
3033
  msgstr ""
3034
 
3035
+ #: bp-themes/bp-default/forums/index.php:50
3036
+ #: bp-xprofile/bp-xprofile-classes.php:626
3037
+ msgid "Cancel"
3038
+ msgstr ""
3039
+
3040
  #: bp-themes/bp-default/forums/index.php:60
3041
  #, php-format
3042
  msgid ""
3077
  msgid "Your comment is awaiting moderation."
3078
  msgstr ""
3079
 
3080
+ #: bp-themes/bp-default/functions.php:64 bp-xprofile/bp-xprofile-admin.php:67
3081
+ #: bp-xprofile/bp-xprofile-admin.php:94
3082
+ msgid "Edit"
3083
+ msgstr ""
3084
+
3085
+ #: bp-themes/bp-default/functions.php:211
3086
  #, php-format
3087
  msgid ""
3088
  "Theme activated! This theme contains <a href=\"%s\">custom header image</a> "
3089
  "support and <a href=\"%s\">sidebar widgets</a>."
3090
  msgstr ""
3091
 
3092
+ #: bp-themes/bp-default/functions.php:223
3093
  msgid "My Favorites"
3094
  msgstr ""
3095
 
3096
+ #: bp-themes/bp-default/functions.php:224
3097
  msgid "Accepted"
3098
  msgstr ""
3099
 
3100
+ #: bp-themes/bp-default/functions.php:225
3101
  msgid "Rejected"
3102
  msgstr ""
3103
 
3104
+ #: bp-themes/bp-default/functions.php:226
3105
  msgid "Show all comments for this thread"
3106
  msgstr ""
3107
 
3108
+ #: bp-themes/bp-default/functions.php:227
3109
  msgid "Show all"
3110
  msgstr ""
3111
 
3112
+ #: bp-themes/bp-default/functions.php:228
3113
  msgid "comments"
3114
  msgstr ""
3115
 
3116
+ #: bp-themes/bp-default/functions.php:230
3117
  #, php-format
3118
  msgid ""
3119
  "%s is a unique identifier for %s that you can type into any message on this "
3121
  "use it."
3122
  msgstr ""
3123
 
 
 
 
 
 
3124
  #: bp-themes/bp-default/groups/create.php:7
3125
  #: bp-themes/bp-default/groups/index.php:7
3126
  msgid "Groups Directory"
3136
  #: bp-themes/bp-default/members/single/profile/edit.php:30
3137
  #: bp-themes/bp-default/members/single/profile/edit.php:37
3138
  #: bp-themes/bp-default/members/single/profile/edit.php:46
3139
+ #: bp-themes/bp-default/members/single/profile/edit.php:60
3140
+ #: bp-themes/bp-default/members/single/profile/edit.php:74
3141
+ #: bp-themes/bp-default/members/single/profile/edit.php:84
3142
  #: bp-themes/bp-default/registration/register.php:28
3143
  #: bp-themes/bp-default/registration/register.php:32
3144
  #: bp-themes/bp-default/registration/register.php:36
3664
  msgid "Editing '%s' Profile Group"
3665
  msgstr ""
3666
 
3667
+ #: bp-themes/bp-default/members/single/profile/edit.php:52
3668
+ #: bp-themes/bp-default/members/single/profile/edit.php:65
3669
  #: bp-themes/bp-default/registration/register.php:110
3670
  msgid "Clear"
3671
  msgstr ""
3712
  msgid "Account Details"
3713
  msgstr ""
3714
 
3715
+ #: bp-themes/bp-default/registration/register.php:28
3716
+ #: bp-themes/bp-default/sidebar.php:41
3717
+ msgid "Username"
3718
+ msgstr ""
3719
+
3720
  #: bp-themes/bp-default/registration/register.php:32
3721
  msgid "Email Address"
3722
  msgstr ""
3805
  "a>."
3806
  msgstr ""
3807
 
3808
+ #: bp-themes/bp-default/sidebar.php:44
3809
+ msgid "Password"
3810
+ msgstr ""
3811
+
3812
  #: bp-themes/bp-default/sidebar.php:47
3813
  msgid "Remember Me"
3814
  msgstr ""
3825
  msgid "Profile Field Setup"
3826
  msgstr ""
3827
 
3828
+ #: bp-xprofile.php:185 bp-xprofile/bp-xprofile-templatetags.php:690
3829
+ msgid "Edit Profile"
3830
+ msgstr ""
3831
+
3832
+ #: bp-xprofile.php:223
3833
  #, php-format
3834
  msgid "Edit %s's Profile"
3835
  msgstr ""
3836
 
3837
+ #: bp-xprofile.php:224
3838
  #, php-format
3839
  msgid "Edit %s's Avatar"
3840
  msgstr ""
3841
 
3842
+ #: bp-xprofile.php:227
3843
  msgid "Mark as Spammer"
3844
  msgstr ""
3845
 
3846
+ #: bp-xprofile.php:229
3847
  msgid "Not a Spammer"
3848
  msgstr ""
3849
 
3850
+ #: bp-xprofile.php:232
3851
  #, php-format
3852
  msgid "Delete %s"
3853
  msgstr ""
3854
 
3855
+ #: bp-xprofile.php:325
3856
  msgid ""
3857
  "Please make sure you fill in all required fields in this profile field group "
3858
  "before saving."
3859
  msgstr ""
3860
 
3861
+ #: bp-xprofile.php:342
3862
  msgid ""
3863
  "There was a problem updating some of your profile information, please try "
3864
  "again."
3865
  msgstr ""
3866
 
3867
+ #: bp-xprofile.php:344
3868
  msgid "Changes saved."
3869
  msgstr ""
3870
 
3871
+ #: bp-xprofile.php:395
3872
  msgid "Your new avatar was uploaded successfully!"
3873
  msgstr ""
3874
 
3875
+ #: bp-xprofile.php:462
3876
  msgid "New member registered"
3877
  msgstr ""
3878
 
3879
+ #: bp-xprofile.php:463
3880
  msgid "Updated Profile"
3881
  msgstr ""
3882
 
3904
  msgid "Required?"
3905
  msgstr ""
3906
 
3907
+ #: bp-xprofile/bp-xprofile-admin.php:76
3908
+ msgid "Action"
3909
+ msgstr ""
3910
+
3911
  #: bp-xprofile/bp-xprofile-admin.php:90
3912
  msgid "Drag"
3913
  msgstr ""
4106
  "Checkbox field types require at least one option. Please add options below."
4107
  msgstr ""
4108
 
4109
+ #: bp-xprofile/bp-xprofile-templatetags.php:490
4110
+ msgid "January"
4111
+ msgstr ""
4112
+
4113
+ #: bp-xprofile/bp-xprofile-templatetags.php:490
4114
+ msgid "February"
4115
+ msgstr ""
4116
+
4117
+ #: bp-xprofile/bp-xprofile-templatetags.php:490
4118
+ msgid "March"
4119
+ msgstr ""
4120
+
4121
+ #: bp-xprofile/bp-xprofile-templatetags.php:491
4122
+ msgid "April"
4123
+ msgstr ""
4124
+
4125
+ #: bp-xprofile/bp-xprofile-templatetags.php:491
4126
+ msgid "May"
4127
+ msgstr ""
4128
+
4129
+ #: bp-xprofile/bp-xprofile-templatetags.php:491
4130
+ msgid "June"
4131
+ msgstr ""
4132
+
4133
+ #: bp-xprofile/bp-xprofile-templatetags.php:492
4134
+ msgid "July"
4135
+ msgstr ""
4136
+
4137
+ #: bp-xprofile/bp-xprofile-templatetags.php:492
4138
+ msgid "August"
4139
+ msgstr ""
4140
+
4141
+ #: bp-xprofile/bp-xprofile-templatetags.php:492
4142
+ msgid "September"
4143
+ msgstr ""
4144
+
4145
+ #: bp-xprofile/bp-xprofile-templatetags.php:493
4146
+ msgid "October"
4147
+ msgstr ""
4148
+
4149
+ #: bp-xprofile/bp-xprofile-templatetags.php:493
4150
+ msgid "November"
4151
+ msgstr ""
4152
+
4153
+ #: bp-xprofile/bp-xprofile-templatetags.php:493
4154
+ msgid "December"
4155
+ msgstr ""
4156
+
4157
+ #: bp-xprofile/bp-xprofile-templatetags.php:632
4158
  msgid ""
4159
  "Avatar uploads are currently disabled. Why not use a <a href=\"http://"
4160
  "gravatar.com\" target=\"_blank\">gravatar</a> instead?"
4161
  msgstr ""
4162
 
4163
+ #: bp-xprofile/bp-xprofile-templatetags.php:641
4164
  msgid "Profile not recently updated"
4165
  msgstr ""
4166
 
4167
+ #: bp-xprofile/bp-xprofile-templatetags.php:652
4168
  #, php-format
4169
  msgid "Profile updated %s ago"
4170
  msgstr ""
bp-loader.php CHANGED
@@ -4,12 +4,12 @@ Plugin Name: BuddyPress
4
  Plugin URI: http://buddypress.org/download/
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.2.1
8
  Author URI: http://buddypress.org/developers/
9
  Site Wide Only: true
10
  */
11
 
12
- define( 'BP_VERSION', '1.2.2.1' );
13
 
14
  /***
15
  * This file will load in each BuddyPress component based on which
4
  Plugin URI: http://buddypress.org/download/
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.3
8
  Author URI: http://buddypress.org/developers/
9
  Site Wide Only: true
10
  */
11
 
12
+ define( 'BP_VERSION', '1.2.3' );
13
 
14
  /***
15
  * This file will load in each BuddyPress component based on which
bp-messages/bp-messages-notifications.php CHANGED
@@ -33,7 +33,7 @@ To view and read your messages please log in and visit: %s
33
  ---------------------
34
  ', 'buddypress' ), $sender_name, $subject, $content, $message_link );
35
 
36
- $content .= sprintf( __( 'To disable these notifications please log in and go to: %s', 'buddypress' ), $settings_link );
37
 
38
  /* Send the message */
39
  $email_to = apply_filters( 'messages_notification_new_message_to', $email_to );
33
  ---------------------
34
  ', 'buddypress' ), $sender_name, $subject, $content, $message_link );
35
 
36
+ $email_content .= sprintf( __( 'To disable these notifications please log in and go to: %s', 'buddypress' ), $settings_link );
37
 
38
  /* Send the message */
39
  $email_to = apply_filters( 'messages_notification_new_message_to', $email_to );
bp-themes/bp-default/_inc/global.js CHANGED
@@ -1,15 +1,15 @@
1
  // AJAX Functions
2
- var j = jQuery;
3
 
4
  // Global variable to prevent multiple AJAX requests
5
  var bp_ajax_request = null;
6
 
7
- j(document).ready( function() {
8
  /**** Page Load Actions *******************************************************/
9
 
10
  /* Hide Forums Post Form */
11
- if ( j('div.forums').length )
12
- j('div#new-topic-post').hide();
13
 
14
  /* Activity filter and scope set */
15
  bp_init_activity();
@@ -19,79 +19,79 @@ j(document).ready( function() {
19
  bp_init_objects( objects );
20
 
21
  /* @mention Compose Scrolling */
22
- if ( j.query.get('r') ) {
23
- if ( j('textarea#whats-new').length ) {
24
- j.scrollTo( j('textarea#whats-new'), 500, { offset:-125, easing:'easeout' } );
25
- j('textarea#whats-new').focus();
26
  }
27
  }
28
 
29
  /* @mention username help button display */
30
- if ( j( 'span.highlight span' ).length )
31
- j( 'span.highlight span' ).toggle();
32
 
33
  /**** Activity Posting ********************************************************/
34
 
35
  /* New posts */
36
- j("input#aw-whats-new-submit").click( function() {
37
- var button = j(this);
38
  var form = button.parent().parent().parent().parent();
39
 
40
  form.children().each( function() {
41
- if ( j.nodeName(this, "textarea") || j.nodeName(this, "input") )
42
- j(this).attr( 'disabled', 'disabled' );
43
  });
44
 
45
- j( 'form#' + form.attr('id') + ' span.ajax-loader' ).show();
46
 
47
  /* Remove any errors */
48
- j('div.error').remove();
49
  button.attr('disabled','disabled');
50
 
51
  /* Default POST values */
52
  var object = '';
53
- var item_id = j("#whats-new-post-in").val();
54
- var content = j("textarea#whats-new").val();
55
 
56
  /* Set object for non-profile posts */
57
  if ( item_id > 0 ) {
58
- object = j("#whats-new-post-object").val();
59
  }
60
 
61
- j.post( ajaxurl, {
62
  action: 'post_update',
63
  'cookie': encodeURIComponent(document.cookie),
64
- '_wpnonce_post_update': j("input#_wpnonce_post_update").val(),
65
  'content': content,
66
  'object': object,
67
  'item_id': item_id
68
  },
69
  function(response)
70
  {
71
- j( 'form#' + form.attr('id') + ' span.ajax-loader' ).hide();
72
 
73
  form.children().each( function() {
74
- if ( j.nodeName(this, "textarea") || j.nodeName(this, "input") )
75
- j(this).attr( 'disabled', '' );
76
  });
77
 
78
  /* Check for errors and append if found. */
79
  if ( response[0] + response[1] == '-1' ) {
80
  form.prepend( response.substr( 2, response.length ) );
81
- j( 'form#' + form.attr('id') + ' div.error').hide().fadeIn( 200 );
82
  button.attr("disabled", '');
83
  } else {
84
- if ( 0 == j("ul.activity-list").length ) {
85
- j("div.error").slideUp(100).remove();
86
- j("div#message").slideUp(100).remove();
87
- j("div.activity").append( '<ul id="activity-stream" class="activity-list item-list">' );
88
  }
89
 
90
- j("ul.activity-list").prepend(response);
91
- j("ul.activity-list li:first").addClass('new-update');
92
- j("li.new-update").hide().slideDown( 300 );
93
- j("li.new-update").removeClass( 'new-update' );
94
- j("textarea#whats-new").val('');
95
 
96
  /* Re-enable the submit button after 8 seconds. */
97
  setTimeout( function() { button.attr("disabled", ''); }, 8000 );
@@ -102,8 +102,8 @@ j(document).ready( function() {
102
  });
103
 
104
  /* List tabs event delegation */
105
- j('div.activity-type-tabs').click( function(event) {
106
- var target = j(event.target).parent();
107
 
108
  if ( event.target.nodeName == 'STRONG' || event.target.nodeName == 'SPAN' )
109
  target = target.parent();
@@ -111,14 +111,14 @@ j(document).ready( function() {
111
  return false;
112
 
113
  /* Reset the page */
114
- j.cookie( 'bp-activity-oldestpage', 1, {path: '/'} );
115
 
116
  /* Activity Stream Tabs */
117
  var scope = target.attr('id').substr( 9, target.attr('id').length );
118
- var filter = j("#activity-filter-select select").val();
119
 
120
  if ( scope == 'mentions' )
121
- j( 'li#' + target.attr('id') + ' a strong' ).remove();
122
 
123
  bp_activity_request(scope, filter, target);
124
 
@@ -126,15 +126,15 @@ j(document).ready( function() {
126
  });
127
 
128
  /* Activity filter select */
129
- j('#activity-filter-select select').change( function() {
130
- var selected_tab = j( 'div.activity-type-tabs li.selected' );
131
 
132
  if ( !selected_tab.length )
133
  var scope = null;
134
  else
135
  var scope = selected_tab.attr('id').substr( 9, selected_tab.attr('id').length );
136
 
137
- var filter = j(this).val();
138
 
139
  bp_activity_request(scope, filter);
140
 
@@ -142,8 +142,8 @@ j(document).ready( function() {
142
  });
143
 
144
  /* Stream event delegation */
145
- j('div.activity').click( function(event) {
146
- var target = j(event.target);
147
 
148
  /* Favoriting activity stream items */
149
  if ( target.attr('class') == 'fav' || target.attr('class') == 'unfav' ) {
@@ -153,7 +153,7 @@ j(document).ready( function() {
153
 
154
  target.addClass('loading');
155
 
156
- j.post( ajaxurl, {
157
  action: 'activity_mark_' + type,
158
  'cookie': encodeURIComponent(document.cookie),
159
  'id': parent_id
@@ -162,33 +162,33 @@ j(document).ready( function() {
162
  target.removeClass('loading');
163
 
164
  target.fadeOut( 100, function() {
165
- j(this).html(response);
166
- j(this).fadeIn(100);
167
  });
168
 
169
  if ( 'fav' == type ) {
170
- if ( !j('div.item-list-tabs li#activity-favorites').length )
171
- j('div.item-list-tabs ul li#activity-mentions').before( '<li id="activity-favorites"><a href="#">' + bp_terms_my_favs + ' (<span>0</span>)</a></li>');
172
 
173
  target.removeClass('fav');
174
  target.addClass('unfav');
175
 
176
- j('div.item-list-tabs ul li#activity-favorites span').html( Number( j('div.item-list-tabs ul li#activity-favorites span').html() ) + 1 );
177
  } else {
178
  target.removeClass('unfav');
179
  target.addClass('fav');
180
 
181
- j('div.item-list-tabs ul li#activity-favorites span').html( Number( j('div.item-list-tabs ul li#activity-favorites span').html() ) - 1 );
182
 
183
- if ( !Number( j('div.item-list-tabs ul li#activity-favorites span').html() ) ) {
184
- if ( j('div.item-list-tabs ul li#activity-favorites').hasClass('selected') )
185
  bp_activity_request( null, null );
186
 
187
- j('div.item-list-tabs ul li#activity-favorites').remove();
188
  }
189
  }
190
 
191
- if ( 'activity-favorites' == j( 'div.item-list-tabs li.selected').attr('id') )
192
  target.parent().parent().parent().slideUp(100);
193
  });
194
 
@@ -206,7 +206,7 @@ j(document).ready( function() {
206
 
207
  target.addClass('loading');
208
 
209
- j.post( ajaxurl, {
210
  action: 'delete_activity',
211
  'cookie': encodeURIComponent(document.cookie),
212
  'id': id,
@@ -228,23 +228,23 @@ j(document).ready( function() {
228
 
229
  /* Load more updates at the end of the page */
230
  if ( target.parent().attr('class') == 'load-more' ) {
231
- j("li.load-more").addClass('loading');
232
 
233
- if ( null == j.cookie('bp-activity-oldestpage') )
234
- j.cookie('bp-activity-oldestpage', 1, {path: '/'} );
235
 
236
- var oldest_page = ( j.cookie('bp-activity-oldestpage') * 1 ) + 1;
237
 
238
- j.post( ajaxurl, {
239
  action: 'activity_get_older_updates',
240
  'cookie': encodeURIComponent(document.cookie),
241
  'page': oldest_page
242
  },
243
  function(response)
244
  {
245
- j("li.load-more").removeClass('loading');
246
- j.cookie( 'bp-activity-oldestpage', oldest_page, {path: '/'} );
247
- j("ul.activity-list").append(response.contents);
248
 
249
  target.parent().hide();
250
  }, 'json' );
@@ -256,15 +256,15 @@ j(document).ready( function() {
256
  /**** Activity Comments *******************************************************/
257
 
258
  /* Hide all activity comment forms */
259
- j('form.ac-form').hide();
260
 
261
  /* Hide excess comments */
262
- if ( j('div.activity-comments').length )
263
  bp_dtheme_hide_comments();
264
 
265
  /* Activity list event delegation */
266
- j('div.activity').click( function(event) {
267
- var target = j(event.target);
268
 
269
  /* Comment / comment reply links */
270
  if ( target.attr('class') == 'acomment-reply' || target.parent().attr('class') == 'acomment-reply' ) {
@@ -276,32 +276,32 @@ j(document).ready( function() {
276
 
277
  var a_id = ids[2]
278
  var c_id = target.attr('href').substr( 10, target.attr('href').length );
279
- var form = j( '#ac-form-' + a_id );
280
 
281
- var form = j( '#ac-form-' + ids[2] );
282
 
283
  form.css( 'display', 'none' );
284
  form.removeClass('root');
285
- j('.ac-form').hide();
286
 
287
  /* Hide any error messages */
288
  form.children('div').each( function() {
289
- if ( j(this).hasClass( 'error' ) )
290
- j(this).hide();
291
  });
292
 
293
  if ( ids[1] != 'comment' ) {
294
- j('div.activity-comments li#acomment-' + c_id).append( form );
295
  } else {
296
- j('li#activity-' + a_id + ' div.activity-comments').append( form );
297
  }
298
 
299
  if ( form.parent().attr( 'class' ) == 'activity-comments' )
300
  form.addClass('root');
301
 
302
  form.slideDown( 200 );
303
- j.scrollTo( form, 500, { offset:-100, easing:'easeout' } );
304
- j('#ac-form-' + ids[2] + ' textarea').focus();
305
 
306
  return false;
307
  }
@@ -320,17 +320,17 @@ j(document).ready( function() {
320
  }
321
 
322
  /* Hide any error messages */
323
- j( 'form#' + form + ' div.error').hide();
324
  form.addClass('loading');
325
  target.css('disabled', 'disabled');
326
 
327
- j.post( ajaxurl, {
328
  action: 'new_activity_comment',
329
  'cookie': encodeURIComponent(document.cookie),
330
- '_wpnonce_new_activity_comment': j("input#_wpnonce_new_activity_comment").val(),
331
  'comment_id': comment_id,
332
  'form_id': form_id[2],
333
- 'content': j('form#' + form.attr('id') + ' textarea').val()
334
  },
335
  function(response)
336
  {
@@ -355,10 +355,10 @@ j(document).ready( function() {
355
  form.parent().parent().addClass('has-comments');
356
  }
357
  );
358
- j( 'form#' + form + ' textarea').val('');
359
 
360
  /* Increase the "Reply (X)" button count */
361
- j('li#activity-' + form_id[2] + ' a.acomment-reply span').html( Number( j('li#activity-' + form_id[2] + ' a.acomment-reply span').html() ) + 1 );
362
 
363
  /* Re-enable the submit button after 5 seconds. */
364
  setTimeout( function() { target.attr("disabled", ''); }, 5000 );
@@ -384,12 +384,12 @@ j(document).ready( function() {
384
  target.addClass('loading');
385
 
386
  /* Remove any error messages */
387
- j('div.activity-comments ul div.error').remove();
388
 
389
  /* Reset the form position */
390
  comment_li.parents('div.activity-comments').append(form);
391
 
392
- j.post( ajaxurl, {
393
  action: 'delete_activity_comment',
394
  'cookie': encodeURIComponent(document.cookie),
395
  '_wpnonce': nonce,
@@ -401,17 +401,17 @@ j(document).ready( function() {
401
  if ( response[0] + response[1] == '-1' ) {
402
  comment_li.prepend( response.substr( 2, response.length ) ).hide().fadeIn( 200 );
403
  } else {
404
- var children = j( 'li#' + comment_li.attr('id') + ' ul' ).children('li');
405
  var child_count = 0;
406
- j(children).each( function() {
407
- if ( !j(this).is(':hidden') )
408
  child_count++;
409
  });
410
  comment_li.fadeOut(200);
411
 
412
  /* Decrease the "Reply (X)" button count */
413
  var parent_li = comment_li.parents('ul#activity-stream > li');
414
- j('li#' + parent_li.attr('id') + ' a.acomment-reply span').html( j('li#' + parent_li.attr('id') + ' a.acomment-reply span').html() - ( 1 + child_count ) );
415
  }
416
  });
417
 
@@ -433,7 +433,7 @@ j(document).ready( function() {
433
  });
434
 
435
  /* Escape Key Press for cancelling comment forms */
436
- j(document).keydown( function(e) {
437
  e = e || window.event;
438
  if (e.target)
439
  element = e.target;
@@ -450,37 +450,37 @@ j(document).ready( function() {
450
 
451
  if ( keyCode == 27 ) {
452
  if (element.tagName == 'TEXTAREA') {
453
- if ( j(element).attr('class') == 'ac-input' )
454
- j(element).parent().parent().parent().slideUp( 200 );
455
  }
456
  }
457
  });
458
 
459
  /**** @mention username help tooltip **************************************/
460
 
461
- j('span.highlight span').click( function() {
462
- if ( !j('div.help').length ) {
463
- j(this).parent().after( '<div id="message" class="info help"><p>' + bp_terms_mention_explain + '</p></div>' );
464
- j('div.help').hide().slideDown(200);
465
  } else {
466
- j('div.help').hide().remove();
467
  }
468
  })
469
 
470
  /**** Directory Search ****************************************************/
471
 
472
  /* The search form on all directory pages */
473
- j('div.dir-search').click( function(event) {
474
- if ( j(this).hasClass('no-ajax') )
475
  return;
476
 
477
- var target = j(event.target);
478
 
479
  if ( target.attr('type') == 'submit' ) {
480
- var css_id = j('div.item-list-tabs li.selected').attr('id').split( '-' );
481
  var object = css_id[0];
482
 
483
- bp_filter_request( object, j.cookie('bp-' + object + '-filter'), j.cookie('bp-' + object + '-scope') , 'div.' + object, target.parent().children('label').children('input').val(), 1, j.cookie('bp-' + object + '-extras') );
484
 
485
  return false;
486
  }
@@ -489,11 +489,11 @@ j(document).ready( function() {
489
  /**** Tabs and Filters ****************************************************/
490
 
491
  /* When a navigation tab is clicked - e.g. | All Groups | My Groups | */
492
- j('div.item-list-tabs').click( function(event) {
493
- if ( j(this).hasClass('no-ajax') )
494
  return;
495
 
496
- var target = j(event.target).parent();
497
 
498
  if ( 'LI' == event.target.parentNode.nodeName && !target.hasClass('last') ) {
499
  var css_id = target.attr('id').split( '-' );
@@ -503,42 +503,42 @@ j(document).ready( function() {
503
  return false;
504
 
505
  var scope = css_id[1];
506
- var filter = j("#" + object + "-order-select select").val();
507
- var search_terms = j("#" + object + "_search").val();
508
 
509
- bp_filter_request( object, filter, scope, 'div.' + object, search_terms, 1, j.cookie('bp-' + object + '-extras') );
510
 
511
  return false;
512
  }
513
  });
514
 
515
  /* When the filter select box is changed re-query */
516
- j('li.filter select').change( function() {
517
- if ( j('div.item-list-tabs li.selected').length )
518
- var el = j('div.item-list-tabs li.selected');
519
  else
520
- var el = j(this);
521
 
522
  var css_id = el.attr('id').split('-');
523
  var object = css_id[0];
524
  var scope = css_id[1];
525
- var filter = j(this).val();
526
  var search_terms = false;
527
 
528
- if ( j('div.dir-search input').length )
529
- search_terms = j('div.dir-search input').val();
530
 
531
  if ( 'friends' == object )
532
  object = 'members';
533
 
534
- bp_filter_request( object, filter, scope, 'div.' + object, search_terms, 1, j.cookie('bp-' + object + '-extras') );
535
 
536
  return false;
537
  });
538
 
539
  /* All pagination links run through this function */
540
- j('div#content').click( function(event) {
541
- var target = j(event.target);
542
 
543
  if ( target.hasClass('button') )
544
  return true;
@@ -547,27 +547,27 @@ j(document).ready( function() {
547
  if ( target.hasClass('dots') || target.hasClass('current') )
548
  return false;
549
 
550
- if ( j('div.item-list-tabs li.selected').length )
551
- var el = j('div.item-list-tabs li.selected');
552
  else
553
- var el = j('li.filter select');
554
 
555
  var page_number = 1;
556
  var css_id = el.attr('id').split( '-' );
557
  var object = css_id[0];
558
  var search_terms = false;
559
 
560
- if ( j('div.dir-search input').length )
561
- search_terms = j('div.dir-search input').val();
562
 
563
- if ( j(target).hasClass('next') )
564
- var page_number = Number( j('div.pagination span.current').html() ) + 1;
565
- else if ( j(target).hasClass('prev') )
566
- var page_number = Number( j('div.pagination span.current').html() ) - 1;
567
  else
568
- var page_number = Number( j(target).html() );
569
 
570
- bp_filter_request( object, j.cookie('bp-' + object + '-filter'), j.cookie('bp-' + object + '-scope'), 'div.' + object, search_terms, page_number, j.cookie('bp-' + object + '-extras') );
571
 
572
  return false;
573
  }
@@ -577,94 +577,94 @@ j(document).ready( function() {
577
  /**** New Forum Directory Post **************************************/
578
 
579
  /* Hit the "New Topic" button on the forums directory page */
580
- j('a#new-topic-button').click( function() {
581
- if ( !j('div#new-topic-post').length )
582
  return false;
583
 
584
- if ( j('div#new-topic-post').is(":visible") )
585
- j('div#new-topic-post').slideUp(200);
586
  else
587
- j('div#new-topic-post').slideDown(200);
588
 
589
  return false;
590
  });
591
 
592
  /* Cancel the posting of a new forum topic */
593
- j('input#submit_topic_cancel').click( function() {
594
- if ( !j('div#new-topic-post').length )
595
  return false;
596
 
597
- j('div#new-topic-post').slideUp(200);
598
  return false;
599
  });
600
 
601
  /* Clicking a forum tag */
602
- j('div#forum-directory-tags a').click( function() {
603
- bp_filter_request( 'forums', 'tags', j.cookie('bp-forums-scope'), 'div.forums', j(this).html().replace( /&nbsp;/g, '-' ), 1, j.cookie('bp-forums-extras') );
604
  return false;
605
  });
606
 
607
  /** Invite Friends Interface ****************************************/
608
 
609
  /* Select a user from the list of friends and add them to the invite list */
610
- j("div#invite-list input").click( function() {
611
- j('.ajax-loader').toggle();
612
 
613
- var friend_id = j(this).val();
614
 
615
- if ( j(this).attr('checked') == true )
616
  var friend_action = 'invite';
617
  else
618
  var friend_action = 'uninvite';
619
 
620
- j('div.item-list-tabs li.selected').addClass('loading');
621
 
622
- j.post( ajaxurl, {
623
  action: 'groups_invite_user',
624
  'friend_action': friend_action,
625
  'cookie': encodeURIComponent(document.cookie),
626
- '_wpnonce': j("input#_wpnonce_invite_uninvite_user").val(),
627
  'friend_id': friend_id,
628
- 'group_id': j("input#group_id").val()
629
  },
630
  function(response)
631
  {
632
- if ( j("#message") )
633
- j("#message").hide();
634
 
635
- j('.ajax-loader').toggle();
636
 
637
  if ( friend_action == 'invite' ) {
638
- j('#friend-list').append(response);
639
  } else if ( friend_action == 'uninvite' ) {
640
- j('#friend-list li#uid-' + friend_id).remove();
641
  }
642
 
643
- j('div.item-list-tabs li.selected').removeClass('loading');
644
  });
645
  });
646
 
647
  /* Remove a user from the list of users to invite to a group */
648
- j("#friend-list li a.remove").live('click', function() {
649
- j('.ajax-loader').toggle();
650
 
651
- var friend_id = j(this).attr('id');
652
  friend_id = friend_id.split('-');
653
  friend_id = friend_id[1];
654
 
655
- j.post( ajaxurl, {
656
  action: 'groups_invite_user',
657
  'friend_action': 'uninvite',
658
  'cookie': encodeURIComponent(document.cookie),
659
- '_wpnonce': j("input#_wpnonce_invite_uninvite_user").val(),
660
  'friend_id': friend_id,
661
- 'group_id': j("input#group_id").val()
662
  },
663
  function(response)
664
  {
665
- j('.ajax-loader').toggle();
666
- j('#friend-list li#uid-' + friend_id).remove();
667
- j('#invite-list input#f-' + friend_id).attr('checked', false);
668
  });
669
 
670
  return false;
@@ -673,10 +673,10 @@ j(document).ready( function() {
673
  /** Friendship Requests **************************************/
674
 
675
  /* Accept and Reject friendship request buttons */
676
- j("ul#friend-list a.accept, ul#friend-list a.reject").click( function() {
677
- var button = j(this);
678
- var li = j(this).parents('ul#friend-list li');
679
- var action_div = j(this).parents('li div.action');
680
 
681
  var id = li.attr('id').substr( 11, li.attr('id').length );
682
  var link_href = button.attr('href');
@@ -684,10 +684,10 @@ j(document).ready( function() {
684
  var nonce = link_href.split('_wpnonce=');
685
  nonce = nonce[1];
686
 
687
- if ( j(this).hasClass('accepted') || j(this).hasClass('rejected') )
688
  return false;
689
 
690
- if ( j(this).hasClass('accept') ) {
691
  var action = 'accept_friendship';
692
  action_div.children('a.reject').css( 'visibility', 'hidden' );
693
  } else {
@@ -697,7 +697,7 @@ j(document).ready( function() {
697
 
698
  button.addClass('loading');
699
 
700
- j.post( ajaxurl, {
701
  action: action,
702
  'cookie': encodeURIComponent(document.cookie),
703
  'id': id,
@@ -711,12 +711,12 @@ j(document).ready( function() {
711
  li.children('div#message').hide().fadeIn(200);
712
  } else {
713
  button.fadeOut( 100, function() {
714
- if ( j(this).hasClass('accept') ) {
715
- j(this).html( bp_terms_accepted ).fadeIn(50);
716
- j(this).addClass('accepted');
717
  } else {
718
- j(this).html( bp_terms_rejected ).fadeIn(50);
719
- j(this).addClass('rejected');
720
  }
721
  });
722
  }
@@ -726,20 +726,20 @@ j(document).ready( function() {
726
  });
727
 
728
  /* Add / Remove friendship buttons */
729
- j("div.friendship-button a").live('click', function() {
730
- j(this).parent().addClass('loading');
731
- var fid = j(this).attr('id');
732
  fid = fid.split('-');
733
  fid = fid[1];
734
 
735
- var nonce = j(this).attr('href');
736
  nonce = nonce.split('?_wpnonce=');
737
  nonce = nonce[1].split('&');
738
  nonce = nonce[0];
739
 
740
- var thelink = j(this);
741
 
742
- j.post( ajaxurl, {
743
  action: 'addremove_friend',
744
  'cookie': encodeURIComponent(document.cookie),
745
  'fid': fid,
@@ -751,7 +751,7 @@ j(document).ready( function() {
751
  var parentdiv = thelink.parent();
752
 
753
  if ( action == 'add' ) {
754
- j(parentdiv).fadeOut(200,
755
  function() {
756
  parentdiv.removeClass('add_friend');
757
  parentdiv.removeClass('loading');
@@ -761,7 +761,7 @@ j(document).ready( function() {
761
  );
762
 
763
  } else if ( action == 'remove' ) {
764
- j(parentdiv).fadeOut(200,
765
  function() {
766
  parentdiv.removeClass('remove_friend');
767
  parentdiv.removeClass('loading');
@@ -776,19 +776,19 @@ j(document).ready( function() {
776
 
777
  /** Group Join / Leave Buttons **************************************/
778
 
779
- j("div.group-button a").live('click', function() {
780
- var gid = j(this).parent().attr('id');
781
  gid = gid.split('-');
782
  gid = gid[1];
783
 
784
- var nonce = j(this).attr('href');
785
  nonce = nonce.split('?_wpnonce=');
786
  nonce = nonce[1].split('&');
787
  nonce = nonce[0];
788
 
789
- var thelink = j(this);
790
 
791
- j.post( ajaxurl, {
792
  action: 'joinleave_group',
793
  'cookie': encodeURIComponent(document.cookie),
794
  'gid': gid,
@@ -798,10 +798,10 @@ j(document).ready( function() {
798
  {
799
  var parentdiv = thelink.parent();
800
 
801
- if ( !j('body.directory').length )
802
  location.href = location.href;
803
  else {
804
- j(parentdiv).fadeOut(200,
805
  function() {
806
  parentdiv.fadeIn(200).html(response);
807
  }
@@ -813,54 +813,54 @@ j(document).ready( function() {
813
 
814
  /** Button disabling ************************************************/
815
 
816
- j('div.pending').click(function() {
817
  return false;
818
  });
819
 
820
  /** Alternate Highlighting ******************************************/
821
 
822
- j('table tr, div.message-box, ul#topic-post-list li').each( function(i) {
823
  if ( i % 2 != 1 )
824
- j(this).addClass('alt');
825
  });
826
 
827
  /** Private Messaging ******************************************/
828
 
829
  /* AJAX send reply functionality */
830
- j("input#send_reply_button").click(
831
  function() {
832
- j('form#send-reply span.ajax-loader').toggle();
833
 
834
- j.post( ajaxurl, {
835
  action: 'messages_send_reply',
836
  'cookie': encodeURIComponent(document.cookie),
837
- '_wpnonce': j("input#send_message_nonce").val(),
838
 
839
- 'content': j("#message_content").val(),
840
- 'send_to': j("input#send_to").val(),
841
- 'subject': j("input#subject").val(),
842
- 'thread_id': j("input#thread_id").val()
843
  },
844
  function(response)
845
  {
846
  if ( response[0] + response[1] == "-1" ) {
847
- j('form#send-reply').prepend( response.substr( 2, response.length ) );
848
  } else {
849
- j('form#send-reply div#message').remove();
850
- j("#message_content").val('');
851
- j('form#send-reply').before( response );
852
 
853
- j("div.new-message").hide().slideDown( 200, function() {
854
- j('div.new-message').removeClass('new-message');
855
  });
856
 
857
- j('div.message-box').each( function(i) {
858
- j(this).removeClass('alt');
859
  if ( i % 2 != 1 )
860
- j(this).addClass('alt');
861
  });
862
  }
863
- j('form#send-reply span.ajax-loader').toggle();
864
  });
865
 
866
  return false;
@@ -868,11 +868,11 @@ j(document).ready( function() {
868
  );
869
 
870
  /* Marking private messages as read and unread */
871
- j("a#mark_as_read, a#mark_as_unread").click(function() {
872
  var checkboxes_tosend = '';
873
- var checkboxes = j("#message-threads tr td input[type='checkbox']");
874
 
875
- if ( 'mark_as_unread' == j(this).attr('id') ) {
876
  var currentClass = 'read'
877
  var newClass = 'unread'
878
  var unreadCount = 1;
@@ -889,28 +889,28 @@ j(document).ready( function() {
889
  }
890
 
891
  checkboxes.each( function(i) {
892
- if(j(this).is(':checked')) {
893
- if ( j('tr#m-' + j(this).attr('value')).hasClass(currentClass) ) {
894
- checkboxes_tosend += j(this).attr('value');
895
- j('tr#m-' + j(this).attr('value')).removeClass(currentClass);
896
- j('tr#m-' + j(this).attr('value')).addClass(newClass);
897
- var thread_count = j('tr#m-' + j(this).attr('value') + ' td span.unread-count').html();
898
-
899
- j('tr#m-' + j(this).attr('value') + ' td span.unread-count').html(unreadCount);
900
- j('tr#m-' + j(this).attr('value') + ' td span.unread-count').css('display', unreadCountDisplay);
901
- var inboxcount = j('a#user-messages strong').html().substr( 1, j('a#user-messages strong').html().length );
902
  var inboxcount = inboxcount.substr( 0, inboxcount.length - 1 );
903
 
904
  if ( !inboxcount.length )
905
  inboxcount = 0;
906
  if ( parseInt(inboxcount) == inboxCount ) {
907
- j('a#user-messages strong').css('display', unreadCountDisplay);
908
- j('a#user-messages strong').html( '(' + unreadCount + ')' );
909
  } else {
910
  if ( 'read' == currentClass )
911
- j('a#user-messages strong').html('(' + ( parseInt(inboxcount) + 1 ) + ')');
912
  else
913
- j('a#user-messages strong').html('(' + ( parseInt(inboxcount) - thread_count ) + ')');
914
  }
915
 
916
  if ( i != checkboxes.length - 1 ) {
@@ -919,7 +919,7 @@ j(document).ready( function() {
919
  }
920
  }
921
  });
922
- j.post( ajaxurl, {
923
  action: action,
924
  'thread_ids': checkboxes_tosend
925
  });
@@ -927,20 +927,20 @@ j(document).ready( function() {
927
  });
928
 
929
  /* Selecting unread and read messages in inbox */
930
- j("select#message-type-select").change(
931
  function() {
932
- var selection = j("select#message-type-select").val();
933
- var checkboxes = j("td input[type='checkbox']");
934
  checkboxes.each( function(i) {
935
  checkboxes[i].checked = "";
936
  });
937
 
938
  switch(selection) {
939
  case 'unread':
940
- var checkboxes = j("tr.unread td input[type='checkbox']");
941
  break;
942
  case 'read':
943
- var checkboxes = j("tr.read td input[type='checkbox']");
944
  break;
945
  }
946
  if ( selection != '' ) {
@@ -956,86 +956,86 @@ j(document).ready( function() {
956
  );
957
 
958
  /* Bulk delete messages */
959
- j("a#delete_inbox_messages").click( function() {
960
  checkboxes_tosend = '';
961
- checkboxes = j("#message-threads tr td input[type='checkbox']");
962
 
963
- j('div#message').remove();
964
- j(this).addClass('loading');
965
 
966
- j(checkboxes).each( function(i) {
967
- if( j(this).is(':checked') )
968
- checkboxes_tosend += j(this).attr('value') + ',';
969
  });
970
 
971
  if ( '' == checkboxes_tosend ) {
972
- j(this).removeClass('loading');
973
  return false;
974
  }
975
 
976
- j.post( ajaxurl, {
977
  action: 'messages_delete',
978
  'thread_ids': checkboxes_tosend
979
  }, function(response) {
980
  if ( response[0] + response[1] == "-1" ) {
981
- j('#message-threads').prepend( response.substr( 2, response.length ) );
982
  } else {
983
- j('#message-threads').before( '<div id="message" class="updated"><p>' + response + '</p></div>' );
984
 
985
- j(checkboxes).each( function(i) {
986
- if( j(this).is(':checked') )
987
- j(this).parent().parent().fadeOut(150);
988
  });
989
  }
990
 
991
- j('div#message').hide().slideDown(150);
992
- j("a#delete_inbox_messages").removeClass('loading');
993
  });
994
  return false;
995
  });
996
 
997
  /* Close site wide notices in the sidebar */
998
- j("a#close-notice").click( function() {
999
- j(this).addClass('loading');
1000
- j('div#sidebar div.error').remove();
1001
 
1002
- j.post( ajaxurl, {
1003
  action: 'messages_close_notice',
1004
- 'notice_id': j('.notice').attr('rel').substr( 2, j('.notice').attr('rel').length )
1005
  },
1006
  function(response) {
1007
- j("a#close-notice").removeClass('loading');
1008
 
1009
  if ( response[0] + response[1] == '-1' ) {
1010
- j('.notice').prepend( response.substr( 2, response.length ) );
1011
- j( 'div#sidebar div.error').hide().fadeIn( 200 );
1012
  } else {
1013
- j('.notice').slideUp( 100 );
1014
  }
1015
  });
1016
  return false;
1017
  });
1018
 
1019
  /* Admin Bar Javascript */
1020
- j("#wp-admin-bar ul.main-nav li").mouseover( function() {
1021
- j(this).addClass('sfhover');
1022
  });
1023
 
1024
- j("#wp-admin-bar ul.main-nav li").mouseout( function() {
1025
- j(this).removeClass('sfhover');
1026
  });
1027
 
1028
  /* Clear BP cookies on logout */
1029
- j('a.logout').click( function() {
1030
- j.cookie('bp-activity-scope', null, {path: '/'});
1031
- j.cookie('bp-activity-filter', null, {path: '/'});
1032
- j.cookie('bp-activity-oldestpage', null, {path: '/'});
1033
 
1034
  var objects = [ 'members', 'groups', 'blogs', 'forums' ];
1035
- j(objects).each( function(i) {
1036
- j.cookie('bp-' + objects[i] + '-scope', null, {path: '/'} );
1037
- j.cookie('bp-' + objects[i] + '-filter', null, {path: '/'} );
1038
- j.cookie('bp-' + objects[i] + '-extras', null, {path: '/'} );
1039
  });
1040
  });
1041
  });
@@ -1043,31 +1043,31 @@ j(document).ready( function() {
1043
  /* Setup activity scope and filter based on the current cookie settings. */
1044
  function bp_init_activity() {
1045
  /* Reset the page */
1046
- j.cookie( 'bp-activity-oldestpage', 1, {path: '/'} );
1047
 
1048
- if ( null != j.cookie('bp-activity-filter') && j('#activity-filter-select').length )
1049
- j('#activity-filter-select select option[value=' + j.cookie('bp-activity-filter') + ']').attr( 'selected', 'selected' );
1050
 
1051
  /* Activity Tab Set */
1052
- if ( null != j.cookie('bp-activity-scope') && j('div.activity-type-tabs').length ) {
1053
- j('div.activity-type-tabs li').each( function() {
1054
- j(this).removeClass('selected');
1055
  });
1056
- j('li#activity-' + j.cookie('bp-activity-scope') + ', div.item-list-tabs li.current').addClass('selected');
1057
  }
1058
  }
1059
 
1060
  /* Setup object scope and filter based on the current cookie settings for the object. */
1061
  function bp_init_objects(objects) {
1062
- j(objects).each( function(i) {
1063
- if ( null != j.cookie('bp-' + objects[i] + '-filter') && j('li#' + objects[i] + '-order-select select').length )
1064
- j('li#' + objects[i] + '-order-select select option[value=' + j.cookie('bp-' + objects[i] + '-filter') + ']').attr( 'selected', 'selected' );
1065
 
1066
- if ( null != j.cookie('bp-' + objects[i] + '-scope') && j('div.' + objects[i]).length ) {
1067
- j('div.item-list-tabs li').each( function() {
1068
- j(this).removeClass('selected');
1069
  });
1070
- j('div.item-list-tabs li#' + objects[i] + '-' + j.cookie('bp-' + objects[i] + '-scope') + ', div.item-list-tabs#object-nav li.current').addClass('selected');
1071
  }
1072
  });
1073
  }
@@ -1077,24 +1077,24 @@ function bp_filter_request( object, filter, scope, target, search_terms, page, e
1077
  if ( 'activity' == object )
1078
  return false;
1079
 
1080
- if ( j.query.get('s') )
1081
- search_terms = j.query.get('s');
1082
 
1083
  if ( null == scope )
1084
  scope = 'all';
1085
 
1086
  /* Save the settings we want to remain persistent to a cookie */
1087
- j.cookie( 'bp-' + object + '-scope', scope, {path: '/'} );
1088
- j.cookie( 'bp-' + object + '-filter', filter, {path: '/'} );
1089
- j.cookie( 'bp-' + object + '-extras', extras, {path: '/'} );
1090
 
1091
  /* Set the correct selected nav and filter */
1092
- j('div.item-list-tabs li').each( function() {
1093
- j(this).removeClass('selected');
1094
  });
1095
- j('div.item-list-tabs li#' + object + '-' + scope + ', div.item-list-tabs#object-nav li.current').addClass('selected');
1096
- j('div.item-list-tabs li.selected').addClass('loading');
1097
- j('div.item-list-tabs select option[value=' + filter + ']').attr( 'selected', 'selected' );
1098
 
1099
  if ( 'friends' == object )
1100
  object = 'members';
@@ -1102,7 +1102,7 @@ function bp_filter_request( object, filter, scope, target, search_terms, page, e
1102
  if ( bp_ajax_request )
1103
  bp_ajax_request.abort();
1104
 
1105
- bp_ajax_request = j.post( ajaxurl, {
1106
  action: object + '_filter',
1107
  'cookie': encodeURIComponent(document.cookie),
1108
  'object': object,
@@ -1114,57 +1114,57 @@ function bp_filter_request( object, filter, scope, target, search_terms, page, e
1114
  },
1115
  function(response)
1116
  {
1117
- j(target).fadeOut( 100, function() {
1118
- j(this).html(response);
1119
- j(this).fadeIn(100);
1120
  });
1121
- j('div.item-list-tabs li.selected').removeClass('loading');
1122
  });
1123
  }
1124
 
1125
  /* Activity Loop Requesting */
1126
  function bp_activity_request(scope, filter) {
1127
  /* Save the type and filter to a session cookie */
1128
- j.cookie( 'bp-activity-scope', scope, {path: '/'} );
1129
- j.cookie( 'bp-activity-filter', filter, {path: '/'} );
1130
- j.cookie( 'bp-activity-oldestpage', 1 );
1131
 
1132
  /* Remove selected and loading classes from tabs */
1133
- j('div.item-list-tabs li').each( function() {
1134
- j(this).removeClass('selected loading');
1135
  });
1136
  /* Set the correct selected nav and filter */
1137
- j('li#activity-' + scope + ', div.item-list-tabs li.current').addClass('selected');
1138
- j('div#object-nav.item-list-tabs li.selected, div.activity-type-tabs li.selected').addClass('loading');
1139
- j('#activity-filter-select select option[value=' + filter + ']').attr( 'selected', 'selected' );
1140
 
1141
  /* Reload the activity stream based on the selection */
1142
- j('.widget_bp_activity_widget h2 span.ajax-loader').show();
1143
 
1144
  if ( bp_ajax_request )
1145
  bp_ajax_request.abort();
1146
 
1147
- bp_ajax_request = j.post( ajaxurl, {
1148
  action: 'activity_widget_filter',
1149
  'cookie': encodeURIComponent(document.cookie),
1150
- '_wpnonce_activity_filter': j("input#_wpnonce_activity_filter").val(),
1151
  'scope': scope,
1152
  'filter': filter
1153
  },
1154
  function(response)
1155
  {
1156
- j('.widget_bp_activity_widget h2 span.ajax-loader').hide();
1157
 
1158
- j('div.activity').fadeOut( 100, function() {
1159
- j(this).html(response.contents);
1160
- j(this).fadeIn(100);
1161
  });
1162
 
1163
  /* Update the feed link */
1164
  if ( null != response.feed_url )
1165
- j('.directory div#subnav li.feed a, .home-page div#subnav li.feed a').attr('href', response.feed_url);
1166
 
1167
- j('div.item-list-tabs li.selected').removeClass('loading');
1168
 
1169
  /* Selectively hide comments */
1170
  bp_dtheme_hide_comments();
@@ -1174,30 +1174,30 @@ function bp_activity_request(scope, filter) {
1174
 
1175
  /* Hide long lists of activity comments, only show the latest five root comments. */
1176
  function bp_dtheme_hide_comments() {
1177
- var comments_divs = j('div.activity-comments');
1178
 
1179
  if ( !comments_divs.length )
1180
  return false;
1181
 
1182
  comments_divs.each( function() {
1183
- if ( j(this).children('ul').children('li').length < 5 ) return;
1184
 
1185
- var comments_div = j(this);
1186
  var parent_li = comments_div.parents('ul#activity-stream > li');
1187
- var comment_lis = j(this).children('ul').children('li');
1188
  var comment_count = ' ';
1189
 
1190
- if ( j('li#' + parent_li.attr('id') + ' a.acomment-reply span').length )
1191
- var comment_count = j('li#' + parent_li.attr('id') + ' a.acomment-reply span').html();
1192
 
1193
  comment_lis.each( function(i) {
1194
  /* Show the latest 5 root comments */
1195
  if ( i < comment_lis.length - 5 ) {
1196
- j(this).addClass('hidden');
1197
- j(this).toggle();
1198
 
1199
  if ( !i )
1200
- j(this).before( '<li class="show-all"><a href="#' + parent_li.attr('id') + '/show-all/" title="' + bp_terms_show_all_comments + '">' + bp_terms_show_all + ' ' + comment_count + ' ' + bp_terms_comments + '</a></li>' );
1201
  }
1202
  });
1203
 
1
  // AJAX Functions
2
+ var jq = jQuery;
3
 
4
  // Global variable to prevent multiple AJAX requests
5
  var bp_ajax_request = null;
6
 
7
+ jq(document).ready( function() {
8
  /**** Page Load Actions *******************************************************/
9
 
10
  /* Hide Forums Post Form */
11
+ if ( jq('div.forums').length )
12
+ jq('div#new-topic-post').hide();
13
 
14
  /* Activity filter and scope set */
15
  bp_init_activity();
19
  bp_init_objects( objects );
20
 
21
  /* @mention Compose Scrolling */
22
+ if ( jq.query.get('r') ) {
23
+ if ( jq('textarea#whats-new').length ) {
24
+ jq.scrollTo( jq('textarea#whats-new'), 500, { offset:-125, easing:'easeout' } );
25
+ jq('textarea#whats-new').focus();
26
  }
27
  }
28
 
29
  /* @mention username help button display */
30
+ if ( jq( 'span.highlight span' ).length )
31
+ jq( 'span.highlight span' ).toggle();
32
 
33
  /**** Activity Posting ********************************************************/
34
 
35
  /* New posts */
36
+ jq("input#aw-whats-new-submit").click( function() {
37
+ var button = jq(this);
38
  var form = button.parent().parent().parent().parent();
39
 
40
  form.children().each( function() {
41
+ if ( jq.nodeName(this, "textarea") || jq.nodeName(this, "input") )
42
+ jq(this).attr( 'disabled', 'disabled' );
43
  });
44
 
45
+ jq( 'form#' + form.attr('id') + ' span.ajax-loader' ).show();
46
 
47
  /* Remove any errors */
48
+ jq('div.error').remove();
49
  button.attr('disabled','disabled');
50
 
51
  /* Default POST values */
52
  var object = '';
53
+ var item_id = jq("#whats-new-post-in").val();
54
+ var content = jq("textarea#whats-new").val();
55
 
56
  /* Set object for non-profile posts */
57
  if ( item_id > 0 ) {
58
+ object = jq("#whats-new-post-object").val();
59
  }
60
 
61
+ jq.post( ajaxurl, {
62
  action: 'post_update',
63
  'cookie': encodeURIComponent(document.cookie),
64
+ '_wpnonce_post_update': jq("input#_wpnonce_post_update").val(),
65
  'content': content,
66
  'object': object,
67
  'item_id': item_id
68
  },
69
  function(response)
70
  {
71
+ jq( 'form#' + form.attr('id') + ' span.ajax-loader' ).hide();
72
 
73
  form.children().each( function() {
74
+ if ( jq.nodeName(this, "textarea") || jq.nodeName(this, "input") )
75
+ jq(this).attr( 'disabled', '' );
76
  });
77
 
78
  /* Check for errors and append if found. */
79
  if ( response[0] + response[1] == '-1' ) {
80
  form.prepend( response.substr( 2, response.length ) );
81
+ jq( 'form#' + form.attr('id') + ' div.error').hide().fadeIn( 200 );
82
  button.attr("disabled", '');
83
  } else {
84
+ if ( 0 == jq("ul.activity-list").length ) {
85
+ jq("div.error").slideUp(100).remove();
86
+ jq("div#message").slideUp(100).remove();
87
+ jq("div.activity").append( '<ul id="activity-stream" class="activity-list item-list">' );
88
  }
89
 
90
+ jq("ul.activity-list").prepend(response);
91
+ jq("ul.activity-list li:first").addClass('new-update');
92
+ jq("li.new-update").hide().slideDown( 300 );
93
+ jq("li.new-update").removeClass( 'new-update' );
94
+ jq("textarea#whats-new").val('');
95
 
96
  /* Re-enable the submit button after 8 seconds. */
97
  setTimeout( function() { button.attr("disabled", ''); }, 8000 );
102
  });
103
 
104
  /* List tabs event delegation */
105
+ jq('div.activity-type-tabs').click( function(event) {
106
+ var target = jq(event.target).parent();
107
 
108
  if ( event.target.nodeName == 'STRONG' || event.target.nodeName == 'SPAN' )
109
  target = target.parent();
111
  return false;
112
 
113
  /* Reset the page */
114
+ jq.cookie( 'bp-activity-oldestpage', 1, {path: '/'} );
115
 
116
  /* Activity Stream Tabs */
117
  var scope = target.attr('id').substr( 9, target.attr('id').length );
118
+ var filter = jq("#activity-filter-select select").val();
119
 
120
  if ( scope == 'mentions' )
121
+ jq( 'li#' + target.attr('id') + ' a strong' ).remove();
122
 
123
  bp_activity_request(scope, filter, target);
124
 
126
  });
127
 
128
  /* Activity filter select */
129
+ jq('#activity-filter-select select').change( function() {
130
+ var selected_tab = jq( 'div.activity-type-tabs li.selected' );
131
 
132
  if ( !selected_tab.length )
133
  var scope = null;
134
  else
135
  var scope = selected_tab.attr('id').substr( 9, selected_tab.attr('id').length );
136
 
137
+ var filter = jq(this).val();
138
 
139
  bp_activity_request(scope, filter);
140
 
142
  });
143
 
144
  /* Stream event delegation */
145
+ jq('div.activity').click( function(event) {
146
+ var target = jq(event.target);
147
 
148
  /* Favoriting activity stream items */
149
  if ( target.attr('class') == 'fav' || target.attr('class') == 'unfav' ) {
153
 
154
  target.addClass('loading');
155
 
156
+ jq.post( ajaxurl, {
157
  action: 'activity_mark_' + type,
158
  'cookie': encodeURIComponent(document.cookie),
159
  'id': parent_id
162
  target.removeClass('loading');
163
 
164
  target.fadeOut( 100, function() {
165
+ jq(this).html(response);
166
+ jq(this).fadeIn(100);
167
  });
168
 
169
  if ( 'fav' == type ) {
170
+ if ( !jq('div.item-list-tabs li#activity-favorites').length )
171
+ jq('div.item-list-tabs ul li#activity-mentions').before( '<li id="activity-favorites"><a href="#">' + bp_terms_my_favs + ' (<span>0</span>)</a></li>');
172
 
173
  target.removeClass('fav');
174
  target.addClass('unfav');
175
 
176
+ jq('div.item-list-tabs ul li#activity-favorites span').html( Number( jq('div.item-list-tabs ul li#activity-favorites span').html() ) + 1 );
177
  } else {
178
  target.removeClass('unfav');
179
  target.addClass('fav');
180
 
181
+ jq('div.item-list-tabs ul li#activity-favorites span').html( Number( jq('div.item-list-tabs ul li#activity-favorites span').html() ) - 1 );
182
 
183
+ if ( !Number( jq('div.item-list-tabs ul li#activity-favorites span').html() ) ) {
184
+ if ( jq('div.item-list-tabs ul li#activity-favorites').hasClass('selected') )
185
  bp_activity_request( null, null );
186
 
187
+ jq('div.item-list-tabs ul li#activity-favorites').remove();
188
  }
189
  }
190
 
191
+ if ( 'activity-favorites' == jq( 'div.item-list-tabs li.selected').attr('id') )
192
  target.parent().parent().parent().slideUp(100);
193
  });
194
 
206
 
207
  target.addClass('loading');
208
 
209
+ jq.post( ajaxurl, {
210
  action: 'delete_activity',
211
  'cookie': encodeURIComponent(document.cookie),
212
  'id': id,
228
 
229
  /* Load more updates at the end of the page */
230
  if ( target.parent().attr('class') == 'load-more' ) {
231
+ jq("li.load-more").addClass('loading');
232
 
233
+ if ( null == jq.cookie('bp-activity-oldestpage') )
234
+ jq.cookie('bp-activity-oldestpage', 1, {path: '/'} );
235
 
236
+ var oldest_page = ( jq.cookie('bp-activity-oldestpage') * 1 ) + 1;
237
 
238
+ jq.post( ajaxurl, {
239
  action: 'activity_get_older_updates',
240
  'cookie': encodeURIComponent(document.cookie),
241
  'page': oldest_page
242
  },
243
  function(response)
244
  {
245
+ jq("li.load-more").removeClass('loading');
246
+ jq.cookie( 'bp-activity-oldestpage', oldest_page, {path: '/'} );
247
+ jq("ul.activity-list").append(response.contents);
248
 
249
  target.parent().hide();
250
  }, 'json' );
256
  /**** Activity Comments *******************************************************/
257
 
258
  /* Hide all activity comment forms */
259
+ jq('form.ac-form').hide();
260
 
261
  /* Hide excess comments */
262
+ if ( jq('div.activity-comments').length )
263
  bp_dtheme_hide_comments();
264
 
265
  /* Activity list event delegation */
266
+ jq('div.activity').click( function(event) {
267
+ var target = jq(event.target);
268
 
269
  /* Comment / comment reply links */
270
  if ( target.attr('class') == 'acomment-reply' || target.parent().attr('class') == 'acomment-reply' ) {
276
 
277
  var a_id = ids[2]
278
  var c_id = target.attr('href').substr( 10, target.attr('href').length );
279
+ var form = jq( '#ac-form-' + a_id );
280
 
281
+ var form = jq( '#ac-form-' + ids[2] );
282
 
283
  form.css( 'display', 'none' );
284
  form.removeClass('root');
285
+ jq('.ac-form').hide();
286
 
287
  /* Hide any error messages */
288
  form.children('div').each( function() {
289
+ if ( jq(this).hasClass( 'error' ) )
290
+ jq(this).hide();
291
  });
292
 
293
  if ( ids[1] != 'comment' ) {
294
+ jq('div.activity-comments li#acomment-' + c_id).append( form );
295
  } else {
296
+ jq('li#activity-' + a_id + ' div.activity-comments').append( form );
297
  }
298
 
299
  if ( form.parent().attr( 'class' ) == 'activity-comments' )
300
  form.addClass('root');
301
 
302
  form.slideDown( 200 );
303
+ jq.scrollTo( form, 500, { offset:-100, easing:'easeout' } );
304
+ jq('#ac-form-' + ids[2] + ' textarea').focus();
305
 
306
  return false;
307
  }
320
  }
321
 
322
  /* Hide any error messages */
323
+ jq( 'form#' + form + ' div.error').hide();
324
  form.addClass('loading');
325
  target.css('disabled', 'disabled');
326
 
327
+ jq.post( ajaxurl, {
328
  action: 'new_activity_comment',
329
  'cookie': encodeURIComponent(document.cookie),
330
+ '_wpnonce_new_activity_comment': jq("input#_wpnonce_new_activity_comment").val(),
331
  'comment_id': comment_id,
332
  'form_id': form_id[2],
333
+ 'content': jq('form#' + form.attr('id') + ' textarea').val()
334
  },
335
  function(response)
336
  {
355
  form.parent().parent().addClass('has-comments');
356
  }
357
  );
358
+ jq( 'form#' + form + ' textarea').val('');
359
 
360
  /* Increase the "Reply (X)" button count */
361
+ jq('li#activity-' + form_id[2] + ' a.acomment-reply span').html( Number( jq('li#activity-' + form_id[2] + ' a.acomment-reply span').html() ) + 1 );
362
 
363
  /* Re-enable the submit button after 5 seconds. */
364
  setTimeout( function() { target.attr("disabled", ''); }, 5000 );
384
  target.addClass('loading');
385
 
386
  /* Remove any error messages */
387
+ jq('div.activity-comments ul div.error').remove();
388
 
389
  /* Reset the form position */
390
  comment_li.parents('div.activity-comments').append(form);
391
 
392
+ jq.post( ajaxurl, {
393
  action: 'delete_activity_comment',
394
  'cookie': encodeURIComponent(document.cookie),
395
  '_wpnonce': nonce,
401
  if ( response[0] + response[1] == '-1' ) {
402
  comment_li.prepend( response.substr( 2, response.length ) ).hide().fadeIn( 200 );
403
  } else {
404
+ var children = jq( 'li#' + comment_li.attr('id') + ' ul' ).children('li');
405
  var child_count = 0;
406
+ jq(children).each( function() {
407
+ if ( !jq(this).is(':hidden') )
408
  child_count++;
409
  });
410
  comment_li.fadeOut(200);
411
 
412
  /* Decrease the "Reply (X)" button count */
413
  var parent_li = comment_li.parents('ul#activity-stream > li');
414
+ jq('li#' + parent_li.attr('id') + ' a.acomment-reply span').html( jq('li#' + parent_li.attr('id') + ' a.acomment-reply span').html() - ( 1 + child_count ) );
415
  }
416
  });
417
 
433
  });
434
 
435
  /* Escape Key Press for cancelling comment forms */
436
+ jq(document).keydown( function(e) {
437
  e = e || window.event;
438
  if (e.target)
439
  element = e.target;
450
 
451
  if ( keyCode == 27 ) {
452
  if (element.tagName == 'TEXTAREA') {
453
+ if ( jq(element).attr('class') == 'ac-input' )
454
+ jq(element).parent().parent().parent().slideUp( 200 );
455
  }
456
  }
457
  });
458
 
459
  /**** @mention username help tooltip **************************************/
460
 
461
+ jq('span.highlight span').click( function() {
462
+ if ( !jq('div.help').length ) {
463
+ jq(this).parent().after( '<div id="message" class="info help"><p>' + bp_terms_mention_explain + '</p></div>' );
464
+ jq('div.help').hide().slideDown(200);
465
  } else {
466
+ jq('div.help').hide().remove();
467
  }
468
  })
469
 
470
  /**** Directory Search ****************************************************/
471
 
472
  /* The search form on all directory pages */
473
+ jq('div.dir-search').click( function(event) {
474
+ if ( jq(this).hasClass('no-ajax') )
475
  return;
476
 
477
+ var target = jq(event.target);
478
 
479
  if ( target.attr('type') == 'submit' ) {
480
+ var css_id = jq('div.item-list-tabs li.selected').attr('id').split( '-' );
481
  var object = css_id[0];
482
 
483
+ bp_filter_request( object, jq.cookie('bp-' + object + '-filter'), jq.cookie('bp-' + object + '-scope') , 'div.' + object, target.parent().children('label').children('input').val(), 1, jq.cookie('bp-' + object + '-extras') );
484
 
485
  return false;
486
  }
489
  /**** Tabs and Filters ****************************************************/
490
 
491
  /* When a navigation tab is clicked - e.g. | All Groups | My Groups | */
492
+ jq('div.item-list-tabs').click( function(event) {
493
+ if ( jq(this).hasClass('no-ajax') )
494
  return;
495
 
496
+ var target = jq(event.target).parent();
497
 
498
  if ( 'LI' == event.target.parentNode.nodeName && !target.hasClass('last') ) {
499
  var css_id = target.attr('id').split( '-' );
503
  return false;
504
 
505
  var scope = css_id[1];
506
+ var filter = jq("#" + object + "-order-select select").val();
507
+ var search_terms = jq("#" + object + "_search").val();
508
 
509
+ bp_filter_request( object, filter, scope, 'div.' + object, search_terms, 1, jq.cookie('bp-' + object + '-extras') );
510
 
511
  return false;
512
  }
513
  });
514
 
515
  /* When the filter select box is changed re-query */
516
+ jq('li.filter select').change( function() {
517
+ if ( jq('div.item-list-tabs li.selected').length )
518
+ var el = jq('div.item-list-tabs li.selected');
519
  else
520
+ var el = jq(this);
521
 
522
  var css_id = el.attr('id').split('-');
523
  var object = css_id[0];
524
  var scope = css_id[1];
525
+ var filter = jq(this).val();
526
  var search_terms = false;
527
 
528
+ if ( jq('div.dir-search input').length )
529
+ search_terms = jq('div.dir-search input').val();
530
 
531
  if ( 'friends' == object )
532
  object = 'members';
533
 
534
+ bp_filter_request( object, filter, scope, 'div.' + object, search_terms, 1, jq.cookie('bp-' + object + '-extras') );
535
 
536
  return false;
537
  });
538
 
539
  /* All pagination links run through this function */
540
+ jq('div#content').click( function(event) {
541
+ var target = jq(event.target);
542
 
543
  if ( target.hasClass('button') )
544
  return true;
547
  if ( target.hasClass('dots') || target.hasClass('current') )
548
  return false;
549
 
550
+ if ( jq('div.item-list-tabs li.selected').length )
551
+ var el = jq('div.item-list-tabs li.selected');
552
  else
553
+ var el = jq('li.filter select');
554
 
555
  var page_number = 1;
556
  var css_id = el.attr('id').split( '-' );
557
  var object = css_id[0];
558
  var search_terms = false;
559
 
560
+ if ( jq('div.dir-search input').length )
561
+ search_terms = jq('div.dir-search input').val();
562
 
563
+ if ( jq(target).hasClass('next') )
564
+ var page_number = Number( jq('div.pagination span.current').html() ) + 1;
565
+ else if ( jq(target).hasClass('prev') )
566
+ var page_number = Number( jq('div.pagination span.current').html() ) - 1;
567
  else
568
+ var page_number = Number( jq(target).html() );
569
 
570
+ bp_filter_request( object, jq.cookie('bp-' + object + '-filter'), jq.cookie('bp-' + object + '-scope'), 'div.' + object, search_terms, page_number, jq.cookie('bp-' + object + '-extras') );
571
 
572
  return false;
573
  }
577
  /**** New Forum Directory Post **************************************/
578
 
579
  /* Hit the "New Topic" button on the forums directory page */
580
+ jq('a#new-topic-button').click( function() {
581
+ if ( !jq('div#new-topic-post').length )
582
  return false;
583
 
584
+ if ( jq('div#new-topic-post').is(":visible") )
585
+ jq('div#new-topic-post').slideUp(200);
586
  else
587
+ jq('div#new-topic-post').slideDown(200);
588
 
589
  return false;
590
  });
591
 
592
  /* Cancel the posting of a new forum topic */
593
+ jq('input#submit_topic_cancel').click( function() {
594
+ if ( !jq('div#new-topic-post').length )
595
  return false;
596
 
597
+ jq('div#new-topic-post').slideUp(200);
598
  return false;
599
  });
600
 
601
  /* Clicking a forum tag */
602
+ jq('div#forum-directory-tags a').click( function() {
603
+ bp_filter_request( 'forums', 'tags', jq.cookie('bp-forums-scope'), 'div.forums', jq(this).html().replace( /&nbsp;/g, '-' ), 1, jq.cookie('bp-forums-extras') );
604
  return false;
605
  });
606
 
607
  /** Invite Friends Interface ****************************************/
608
 
609
  /* Select a user from the list of friends and add them to the invite list */
610
+ jq("div#invite-list input").click( function() {
611
+ jq('.ajax-loader').toggle();
612
 
613
+ var friend_id = jq(this).val();
614
 
615
+ if ( jq(this).attr('checked') == true )
616
  var friend_action = 'invite';
617
  else
618
  var friend_action = 'uninvite';
619
 
620
+ jq('div.item-list-tabs li.selected').addClass('loading');
621
 
622
+ jq.post( ajaxurl, {
623
  action: 'groups_invite_user',
624
  'friend_action': friend_action,
625
  'cookie': encodeURIComponent(document.cookie),
626
+ '_wpnonce': jq("input#_wpnonce_invite_uninvite_user").val(),
627
  'friend_id': friend_id,
628
+ 'group_id': jq("input#group_id").val()
629
  },
630
  function(response)
631
  {
632
+ if ( jq("#message") )
633
+ jq("#message").hide();
634
 
635
+ jq('.ajax-loader').toggle();
636
 
637
  if ( friend_action == 'invite' ) {
638
+ jq('#friend-list').append(response);
639
  } else if ( friend_action == 'uninvite' ) {
640
+ jq('#friend-list li#uid-' + friend_id).remove();
641
  }
642
 
643
+ jq('div.item-list-tabs li.selected').removeClass('loading');
644
  });
645
  });
646
 
647
  /* Remove a user from the list of users to invite to a group */
648
+ jq("#friend-list li a.remove").live('click', function() {
649
+ jq('.ajax-loader').toggle();
650
 
651
+ var friend_id = jq(this).attr('id');
652
  friend_id = friend_id.split('-');
653
  friend_id = friend_id[1];
654
 
655
+ jq.post( ajaxurl, {
656
  action: 'groups_invite_user',
657
  'friend_action': 'uninvite',
658
  'cookie': encodeURIComponent(document.cookie),
659
+ '_wpnonce': jq("input#_wpnonce_invite_uninvite_user").val(),
660
  'friend_id': friend_id,
661
+ 'group_id': jq("input#group_id").val()
662
  },
663
  function(response)
664
  {
665
+ jq('.ajax-loader').toggle();
666
+ jq('#friend-list li#uid-' + friend_id).remove();
667
+ jq('#invite-list input#f-' + friend_id).attr('checked', false);
668
  });
669
 
670
  return false;
673
  /** Friendship Requests **************************************/
674
 
675
  /* Accept and Reject friendship request buttons */
676
+ jq("ul#friend-list a.accept, ul#friend-list a.reject").click( function() {
677
+ var button = jq(this);
678
+ var li = jq(this).parents('ul#friend-list li');
679
+ var action_div = jq(this).parents('li div.action');
680
 
681
  var id = li.attr('id').substr( 11, li.attr('id').length );
682
  var link_href = button.attr('href');
684
  var nonce = link_href.split('_wpnonce=');
685
  nonce = nonce[1];
686
 
687
+ if ( jq(this).hasClass('accepted') || jq(this).hasClass('rejected') )
688
  return false;
689
 
690
+ if ( jq(this).hasClass('accept') ) {
691
  var action = 'accept_friendship';
692
  action_div.children('a.reject').css( 'visibility', 'hidden' );
693
  } else {
697
 
698
  button.addClass('loading');
699
 
700
+ jq.post( ajaxurl, {
701
  action: action,
702
  'cookie': encodeURIComponent(document.cookie),
703
  'id': id,
711
  li.children('div#message').hide().fadeIn(200);
712
  } else {
713
  button.fadeOut( 100, function() {
714
+ if ( jq(this).hasClass('accept') ) {
715
+ jq(this).html( bp_terms_accepted ).fadeIn(50);
716
+ jq(this).addClass('accepted');
717
  } else {
718
+ jq(this).html( bp_terms_rejected ).fadeIn(50);
719
+ jq(this).addClass('rejected');
720
  }
721
  });
722
  }
726
  });
727
 
728
  /* Add / Remove friendship buttons */
729
+ jq("div.friendship-button a").live('click', function() {
730
+ jq(this).parent().addClass('loading');
731
+ var fid = jq(this).attr('id');
732
  fid = fid.split('-');
733
  fid = fid[1];
734
 
735
+ var nonce = jq(this).attr('href');
736
  nonce = nonce.split('?_wpnonce=');
737
  nonce = nonce[1].split('&');
738
  nonce = nonce[0];
739
 
740
+ var thelink = jq(this);
741
 
742
+ jq.post( ajaxurl, {
743
  action: 'addremove_friend',
744
  'cookie': encodeURIComponent(document.cookie),
745
  'fid': fid,
751
  var parentdiv = thelink.parent();
752
 
753
  if ( action == 'add' ) {
754
+ jq(parentdiv).fadeOut(200,
755
  function() {
756
  parentdiv.removeClass('add_friend');
757
  parentdiv.removeClass('loading');
761
  );
762
 
763
  } else if ( action == 'remove' ) {
764
+ jq(parentdiv).fadeOut(200,
765
  function() {
766
  parentdiv.removeClass('remove_friend');
767
  parentdiv.removeClass('loading');
776
 
777
  /** Group Join / Leave Buttons **************************************/
778
 
779
+ jq("div.group-button a").live('click', function() {
780
+ var gid = jq(this).parent().attr('id');
781
  gid = gid.split('-');
782
  gid = gid[1];
783
 
784
+ var nonce = jq(this).attr('href');
785
  nonce = nonce.split('?_wpnonce=');
786
  nonce = nonce[1].split('&');
787
  nonce = nonce[0];
788
 
789
+ var thelink = jq(this);
790
 
791
+ jq.post( ajaxurl, {
792
  action: 'joinleave_group',
793
  'cookie': encodeURIComponent(document.cookie),
794
  'gid': gid,
798
  {
799
  var parentdiv = thelink.parent();
800
 
801
+ if ( !jq('body.directory').length )
802
  location.href = location.href;
803
  else {
804
+ jq(parentdiv).fadeOut(200,
805
  function() {
806
  parentdiv.fadeIn(200).html(response);
807
  }
813
 
814
  /** Button disabling ************************************************/
815
 
816
+ jq('div.pending').click(function() {
817
  return false;
818
  });
819
 
820
  /** Alternate Highlighting ******************************************/
821
 
822
+ jq('table tr, div.message-box, ul#topic-post-list li').each( function(i) {
823
  if ( i % 2 != 1 )
824
+ jq(this).addClass('alt');
825
  });
826
 
827
  /** Private Messaging ******************************************/
828
 
829
  /* AJAX send reply functionality */
830
+ jq("input#send_reply_button").click(
831
  function() {
832
+ jq('form#send-reply span.ajax-loader').toggle();
833
 
834
+ jq.post( ajaxurl, {
835
  action: 'messages_send_reply',
836
  'cookie': encodeURIComponent(document.cookie),
837
+ '_wpnonce': jq("input#send_message_nonce").val(),
838
 
839
+ 'content': jq("#message_content").val(),
840
+ 'send_to': jq("input#send_to").val(),
841
+ 'subject': jq("input#subject").val(),
842
+ 'thread_id': jq("input#thread_id").val()
843
  },
844
  function(response)
845
  {
846
  if ( response[0] + response[1] == "-1" ) {
847
+ jq('form#send-reply').prepend( response.substr( 2, response.length ) );
848
  } else {
849
+ jq('form#send-reply div#message').remove();
850
+ jq("#message_content").val('');
851
+ jq('form#send-reply').before( response );
852
 
853
+ jq("div.new-message").hide().slideDown( 200, function() {
854
+ jq('div.new-message').removeClass('new-message');
855
  });
856
 
857
+ jq('div.message-box').each( function(i) {
858
+ jq(this).removeClass('alt');
859
  if ( i % 2 != 1 )
860
+ jq(this).addClass('alt');
861
  });
862
  }
863
+ jq('form#send-reply span.ajax-loader').toggle();
864
  });
865
 
866
  return false;
868
  );
869
 
870
  /* Marking private messages as read and unread */
871
+ jq("a#mark_as_read, a#mark_as_unread").click(function() {
872
  var checkboxes_tosend = '';
873
+ var checkboxes = jq("#message-threads tr td input[type='checkbox']");
874
 
875
+ if ( 'mark_as_unread' == jq(this).attr('id') ) {
876
  var currentClass = 'read'
877
  var newClass = 'unread'
878
  var unreadCount = 1;
889
  }
890
 
891
  checkboxes.each( function(i) {
892
+ if(jq(this).is(':checked')) {
893
+ if ( jq('tr#m-' + jq(this).attr('value')).hasClass(currentClass) ) {
894
+ checkboxes_tosend += jq(this).attr('value');
895
+ jq('tr#m-' + jq(this).attr('value')).removeClass(currentClass);
896
+ jq('tr#m-' + jq(this).attr('value')).addClass(newClass);
897
+ var thread_count = jq('tr#m-' + jq(this).attr('value') + ' td span.unread-count').html();
898
+
899
+ jq('tr#m-' + jq(this).attr('value') + ' td span.unread-count').html(unreadCount);
900
+ jq('tr#m-' + jq(this).attr('value') + ' td span.unread-count').css('display', unreadCountDisplay);
901
+ var inboxcount = jq('a#user-messages strong').html().substr( 1, jq('a#user-messages strong').html().length );
902
  var inboxcount = inboxcount.substr( 0, inboxcount.length - 1 );
903
 
904
  if ( !inboxcount.length )
905
  inboxcount = 0;
906
  if ( parseInt(inboxcount) == inboxCount ) {
907
+ jq('a#user-messages strong').css('display', unreadCountDisplay);
908
+ jq('a#user-messages strong').html( '(' + unreadCount + ')' );
909
  } else {
910
  if ( 'read' == currentClass )
911
+ jq('a#user-messages strong').html('(' + ( parseInt(inboxcount) + 1 ) + ')');
912
  else
913
+ jq('a#user-messages strong').html('(' + ( parseInt(inboxcount) - thread_count ) + ')');
914
  }
915
 
916
  if ( i != checkboxes.length - 1 ) {
919
  }
920
  }
921
  });
922
+ jq.post( ajaxurl, {
923
  action: action,
924
  'thread_ids': checkboxes_tosend
925
  });
927
  });
928
 
929
  /* Selecting unread and read messages in inbox */
930
+ jq("select#message-type-select").change(
931
  function() {
932
+ var selection = jq("select#message-type-select").val();
933
+ var checkboxes = jq("td input[type='checkbox']");
934
  checkboxes.each( function(i) {
935
  checkboxes[i].checked = "";
936
  });
937
 
938
  switch(selection) {
939
  case 'unread':
940
+ var checkboxes = jq("tr.unread td input[type='checkbox']");
941
  break;
942
  case 'read':
943
+ var checkboxes = jq("tr.read td input[type='checkbox']");
944
  break;
945
  }
946
  if ( selection != '' ) {
956
  );
957
 
958
  /* Bulk delete messages */
959
+ jq("a#delete_inbox_messages").click( function() {
960
  checkboxes_tosend = '';
961
+ checkboxes = jq("#message-threads tr td input[type='checkbox']");
962
 
963
+ jq('div#message').remove();
964
+ jq(this).addClass('loading');
965
 
966
+ jq(checkboxes).each( function(i) {
967
+ if( jq(this).is(':checked') )
968
+ checkboxes_tosend += jq(this).attr('value') + ',';
969
  });
970
 
971
  if ( '' == checkboxes_tosend ) {
972
+ jq(this).removeClass('loading');
973
  return false;
974
  }
975
 
976
+ jq.post( ajaxurl, {
977
  action: 'messages_delete',
978
  'thread_ids': checkboxes_tosend
979
  }, function(response) {
980
  if ( response[0] + response[1] == "-1" ) {
981
+ jq('#message-threads').prepend( response.substr( 2, response.length ) );
982
  } else {
983
+ jq('#message-threads').before( '<div id="message" class="updated"><p>' + response + '</p></div>' );
984
 
985
+ jq(checkboxes).each( function(i) {
986
+ if( jq(this).is(':checked') )
987
+ jq(this).parent().parent().fadeOut(150);
988
  });
989
  }
990
 
991
+ jq('div#message').hide().slideDown(150);
992
+ jq("a#delete_inbox_messages").removeClass('loading');
993
  });
994
  return false;
995
  });
996
 
997
  /* Close site wide notices in the sidebar */
998
+ jq("a#close-notice").click( function() {
999
+ jq(this).addClass('loading');
1000
+ jq('div#sidebar div.error').remove();
1001
 
1002
+ jq.post( ajaxurl, {
1003
  action: 'messages_close_notice',
1004
+ 'notice_id': jq('.notice').attr('rel').substr( 2, jq('.notice').attr('rel').length )
1005
  },
1006
  function(response) {
1007
+ jq("a#close-notice").removeClass('loading');
1008
 
1009
  if ( response[0] + response[1] == '-1' ) {
1010
+ jq('.notice').prepend( response.substr( 2, response.length ) );
1011
+ jq( 'div#sidebar div.error').hide().fadeIn( 200 );
1012
  } else {
1013
+ jq('.notice').slideUp( 100 );
1014
  }
1015
  });
1016
  return false;
1017
  });
1018
 
1019
  /* Admin Bar Javascript */
1020
+ jq("#wp-admin-bar ul.main-nav li").mouseover( function() {
1021
+ jq(this).addClass('sfhover');
1022
  });
1023
 
1024
+ jq("#wp-admin-bar ul.main-nav li").mouseout( function() {
1025
+ jq(this).removeClass('sfhover');
1026
  });
1027
 
1028
  /* Clear BP cookies on logout */
1029
+ jq('a.logout').click( function() {
1030
+ jq.cookie('bp-activity-scope', null, {path: '/'});
1031
+ jq.cookie('bp-activity-filter', null, {path: '/'});
1032
+ jq.cookie('bp-activity-oldestpage', null, {path: '/'});
1033
 
1034
  var objects = [ 'members', 'groups', 'blogs', 'forums' ];
1035
+ jq(objects).each( function(i) {
1036
+ jq.cookie('bp-' + objects[i] + '-scope', null, {path: '/'} );
1037
+ jq.cookie('bp-' + objects[i] + '-filter', null, {path: '/'} );
1038
+ jq.cookie('bp-' + objects[i] + '-extras', null, {path: '/'} );
1039
  });
1040
  });
1041
  });
1043
  /* Setup activity scope and filter based on the current cookie settings. */
1044
  function bp_init_activity() {
1045
  /* Reset the page */
1046
+ jq.cookie( 'bp-activity-oldestpage', 1, {path: '/'} );
1047
 
1048
+ if ( null != jq.cookie('bp-activity-filter') && jq('#activity-filter-select').length )
1049
+ jq('#activity-filter-select select option[value=' + jq.cookie('bp-activity-filter') + ']').attr( 'selected', 'selected' );
1050
 
1051
  /* Activity Tab Set */
1052
+ if ( null != jq.cookie('bp-activity-scope') && jq('div.activity-type-tabs').length ) {
1053
+ jq('div.activity-type-tabs li').each( function() {
1054
+ jq(this).removeClass('selected');
1055
  });
1056
+ jq('li#activity-' + jq.cookie('bp-activity-scope') + ', div.item-list-tabs li.current').addClass('selected');
1057
  }
1058
  }
1059
 
1060
  /* Setup object scope and filter based on the current cookie settings for the object. */
1061
  function bp_init_objects(objects) {
1062
+ jq(objects).each( function(i) {
1063
+ if ( null != jq.cookie('bp-' + objects[i] + '-filter') && jq('li#' + objects[i] + '-order-select select').length )
1064
+ jq('li#' + objects[i] + '-order-select select option[value=' + jq.cookie('bp-' + objects[i] + '-filter') + ']').attr( 'selected', 'selected' );
1065
 
1066
+ if ( null != jq.cookie('bp-' + objects[i] + '-scope') && jq('div.' + objects[i]).length ) {
1067
+ jq('div.item-list-tabs li').each( function() {
1068
+ jq(this).removeClass('selected');
1069
  });
1070
+ jq('div.item-list-tabs li#' + objects[i] + '-' + jq.cookie('bp-' + objects[i] + '-scope') + ', div.item-list-tabs#object-nav li.current').addClass('selected');
1071
  }
1072
  });
1073
  }
1077
  if ( 'activity' == object )
1078
  return false;
1079
 
1080
+ if ( jq.query.get('s') )
1081
+ search_terms = jq.query.get('s');
1082
 
1083
  if ( null == scope )
1084
  scope = 'all';
1085
 
1086
  /* Save the settings we want to remain persistent to a cookie */
1087
+ jq.cookie( 'bp-' + object + '-scope', scope, {path: '/'} );
1088
+ jq.cookie( 'bp-' + object + '-filter', filter, {path: '/'} );
1089
+ jq.cookie( 'bp-' + object + '-extras', extras, {path: '/'} );
1090
 
1091
  /* Set the correct selected nav and filter */
1092
+ jq('div.item-list-tabs li').each( function() {
1093
+ jq(this).removeClass('selected');
1094
  });
1095
+ jq('div.item-list-tabs li#' + object + '-' + scope + ', div.item-list-tabs#object-nav li.current').addClass('selected');
1096
+ jq('div.item-list-tabs li.selected').addClass('loading');
1097
+ jq('div.item-list-tabs select option[value=' + filter + ']').attr( 'selected', 'selected' );
1098
 
1099
  if ( 'friends' == object )
1100
  object = 'members';
1102
  if ( bp_ajax_request )
1103
  bp_ajax_request.abort();
1104
 
1105
+ bp_ajax_request = jq.post( ajaxurl, {
1106
  action: object + '_filter',
1107
  'cookie': encodeURIComponent(document.cookie),
1108
  'object': object,
1114
  },
1115
  function(response)
1116
  {
1117
+ jq(target).fadeOut( 100, function() {
1118
+ jq(this).html(response);
1119
+ jq(this).fadeIn(100);
1120
  });
1121
+ jq('div.item-list-tabs li.selected').removeClass('loading');
1122
  });
1123
  }
1124
 
1125
  /* Activity Loop Requesting */
1126
  function bp_activity_request(scope, filter) {
1127
  /* Save the type and filter to a session cookie */
1128
+ jq.cookie( 'bp-activity-scope', scope, {path: '/'} );
1129
+ jq.cookie( 'bp-activity-filter', filter, {path: '/'} );
1130
+ jq.cookie( 'bp-activity-oldestpage', 1 );
1131
 
1132
  /* Remove selected and loading classes from tabs */
1133
+ jq('div.item-list-tabs li').each( function() {
1134
+ jq(this).removeClass('selected loading');
1135
  });
1136
  /* Set the correct selected nav and filter */
1137
+ jq('li#activity-' + scope + ', div.item-list-tabs li.current').addClass('selected');
1138
+ jq('div#object-nav.item-list-tabs li.selected, div.activity-type-tabs li.selected').addClass('loading');
1139
+ jq('#activity-filter-select select option[value=' + filter + ']').attr( 'selected', 'selected' );
1140
 
1141
  /* Reload the activity stream based on the selection */
1142
+ jq('.widget_bp_activity_widget h2 span.ajax-loader').show();
1143
 
1144
  if ( bp_ajax_request )
1145
  bp_ajax_request.abort();
1146
 
1147
+ bp_ajax_request = jq.post( ajaxurl, {
1148
  action: 'activity_widget_filter',
1149
  'cookie': encodeURIComponent(document.cookie),
1150
+ '_wpnonce_activity_filter': jq("input#_wpnonce_activity_filter").val(),
1151
  'scope': scope,
1152
  'filter': filter
1153
  },
1154
  function(response)
1155
  {
1156
+ jq('.widget_bp_activity_widget h2 span.ajax-loader').hide();
1157
 
1158
+ jq('div.activity').fadeOut( 100, function() {
1159
+ jq(this).html(response.contents);
1160
+ jq(this).fadeIn(100);
1161
  });
1162
 
1163
  /* Update the feed link */
1164
  if ( null != response.feed_url )
1165
+ jq('.directory div#subnav li.feed a, .home-page div#subnav li.feed a').attr('href', response.feed_url);
1166
 
1167
+ jq('div.item-list-tabs li.selected').removeClass('loading');
1168
 
1169
  /* Selectively hide comments */
1170
  bp_dtheme_hide_comments();
1174
 
1175
  /* Hide long lists of activity comments, only show the latest five root comments. */
1176
  function bp_dtheme_hide_comments() {
1177
+ var comments_divs = jq('div.activity-comments');
1178
 
1179
  if ( !comments_divs.length )
1180
  return false;
1181
 
1182
  comments_divs.each( function() {
1183
+ if ( jq(this).children('ul').children('li').length < 5 ) return;
1184
 
1185
+ var comments_div = jq(this);
1186
  var parent_li = comments_div.parents('ul#activity-stream > li');
1187
+ var comment_lis = jq(this).children('ul').children('li');
1188
  var comment_count = ' ';
1189
 
1190
+ if ( jq('li#' + parent_li.attr('id') + ' a.acomment-reply span').length )
1191
+ var comment_count = jq('li#' + parent_li.attr('id') + ' a.acomment-reply span').html();
1192
 
1193
  comment_lis.each( function(i) {
1194
  /* Show the latest 5 root comments */
1195
  if ( i < comment_lis.length - 5 ) {
1196
+ jq(this).addClass('hidden');
1197
+ jq(this).toggle();
1198
 
1199
  if ( !i )
1200
+ jq(this).before( '<li class="show-all"><a href="#' + parent_li.attr('id') + '/show-all/" title="' + bp_terms_show_all_comments + '">' + bp_terms_show_all + ' ' + comment_count + ' ' + bp_terms_comments + '</a></li>' );
1201
  }
1202
  });
1203
 
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.2.1
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.3
6
  Author: BuddyPress.org
7
  Author URI: http://buddypress.org
8
  Tags: buddypress, two-columns, custom-header, white, blue
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: apeatling
3
  Tags: buddypress, social networking, activity, profiles, messaging, friends, groups, forums, microblogging, twitter, facebook, mingle, social, community, networks, networking, cms
4
  Requires at least: 2.9.1
5
  Tested up to: 2.9.2
6
- Stable tag: 1.2.2.1
7
 
8
  == Description ==
9
 
@@ -25,9 +25,11 @@ 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/tweetstream">BuddyPress Tweetstream</a> - allow your users to sync and post to their twitter stream.
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/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.
3
  Tags: buddypress, social networking, activity, profiles, messaging, friends, groups, forums, microblogging, twitter, facebook, mingle, social, community, networks, networking, cms
4
  Requires at least: 2.9.1
5
  Tested up to: 2.9.2
6
+ Stable tag: 1.2.3
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/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.