bbPress - Version 2.5.5

Version Description

  • Improved bulk editing of users
  • Improved suggesting of topics & authors for moderators
  • Improved converter tool access
Download this release

Release Info

Developer johnjamesjacoby
Plugin Icon 128x128 bbPress
Version 2.5.5
Comparing to
See all releases

Code changes from version 2.5.4 to 2.5.5

bbpress.php CHANGED
@@ -5,7 +5,7 @@
5
  *
6
  * bbPress is forum software with a twist from the creators of WordPress.
7
  *
8
- * $Id: bbpress.php 5381 2014-06-06 19:58:00Z johnjamesjacoby $
9
  *
10
  * @package bbPress
11
  * @subpackage Main
@@ -17,7 +17,7 @@
17
  * Description: bbPress is forum software with a twist from the creators of WordPress.
18
  * Author: The bbPress Community
19
  * Author URI: http://bbpress.org
20
- * Version: 2.5.4
21
  * Text Domain: bbpress
22
  * Domain Path: /languages/
23
  */
@@ -190,7 +190,7 @@ final class bbPress {
190
 
191
  /** Versions **********************************************************/
192
 
193
- $this->version = '2.5.4-5380';
194
  $this->db_version = '250';
195
 
196
  /** Paths *************************************************************/
5
  *
6
  * bbPress is forum software with a twist from the creators of WordPress.
7
  *
8
+ * $Id: bbpress.php 5631 2015-03-06 17:03:13Z johnjamesjacoby $
9
  *
10
  * @package bbPress
11
  * @subpackage Main
17
  * Description: bbPress is forum software with a twist from the creators of WordPress.
18
  * Author: The bbPress Community
19
  * Author URI: http://bbpress.org
20
+ * Version: 2.5.5
21
  * Text Domain: bbpress
22
  * Domain Path: /languages/
23
  */
190
 
191
  /** Versions **********************************************************/
192
 
193
+ $this->version = '2.5.5-5631';
194
  $this->db_version = '250';
195
 
196
  /** Paths *************************************************************/
includes/admin/admin.php CHANGED
@@ -697,10 +697,24 @@ class BBP_Admin {
697
  * @uses bbp_get_topic_title()
698
  */
699
  public function suggest_topic() {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
700
 
701
  // Try to get some topics
702
  $topics = get_posts( array(
703
- 's' => like_escape( $_REQUEST['q'] ),
704
  'post_type' => bbp_get_topic_post_type()
705
  ) );
706
 
@@ -719,10 +733,24 @@ class BBP_Admin {
719
  * @since bbPress (r5014)
720
  */
721
  public function suggest_user() {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
722
 
723
  // Try to get some users
724
  $users_query = new WP_User_Query( array(
725
- 'search' => '*' . like_escape( $_REQUEST['q'] ) . '*',
726
  'fields' => array( 'ID', 'user_nicename' ),
727
  'search_columns' => array( 'ID', 'user_nicename', 'user_email' ),
728
  'orderby' => 'ID'
697
  * @uses bbp_get_topic_title()
698
  */
699
  public function suggest_topic() {
700
+ global $wpdb;
701
+
702
+ // Bail early if no request
703
+ if ( empty( $_REQUEST['q'] ) ) {
704
+ wp_die( '0' );
705
+ }
706
+
707
+ // Bail if user cannot moderate - only moderators can change hierarchy
708
+ if ( ! current_user_can( 'moderate' ) ) {
709
+ wp_die( '0' );
710
+ }
711
+
712
+ // Check the ajax nonce
713
+ check_ajax_referer( 'bbp_suggest_topic_nonce' );
714
 
715
  // Try to get some topics
716
  $topics = get_posts( array(
717
+ 's' => $wpdb->esc_like( $_REQUEST['q'] ),
718
  'post_type' => bbp_get_topic_post_type()
719
  ) );
720
 
733
  * @since bbPress (r5014)
734
  */
735
  public function suggest_user() {
736
+ global $wpdb;
737
+
738
+ // Bail early if no request
739
+ if ( empty( $_REQUEST['q'] ) ) {
740
+ wp_die( '0' );
741
+ }
742
+
743
+ // Bail if user cannot moderate - only moderators can change authorship
744
+ if ( ! current_user_can( 'moderate' ) ) {
745
+ wp_die( '0' );
746
+ }
747
+
748
+ // Check the ajax nonce
749
+ check_ajax_referer( 'bbp_suggest_user_nonce' );
750
 
751
  // Try to get some users
752
  $users_query = new WP_User_Query( array(
753
+ 'search' => '*' . $wpdb->esc_like( $_REQUEST['q'] ) . '*',
754
  'fields' => array( 'ID', 'user_nicename' ),
755
  'search_columns' => array( 'ID', 'user_nicename', 'user_email' ),
756
  'orderby' => 'ID'
includes/admin/converter.php CHANGED
@@ -302,6 +302,11 @@ class BBP_Converter {
302
  // Verify intent
303
  check_ajax_referer( 'bbp_converter_process' );
304
 
 
 
 
 
 
305
  if ( ! ini_get( 'safe_mode' ) ) {
306
  set_time_limit( 0 );
307
  ini_set( 'memory_limit', '256M' );
302
  // Verify intent
303
  check_ajax_referer( 'bbp_converter_process' );
304
 
305
+ // Bail if user cannot view import page
306
+ if ( ! current_user_can( 'bbp_tools_import_page' ) ) {
307
+ wp_die( '0' );
308
+ }
309
+
310
  if ( ! ini_get( 'safe_mode' ) ) {
311
  set_time_limit( 0 );
312
  ini_set( 'memory_limit', '256M' );
includes/admin/js/common.js CHANGED
@@ -2,10 +2,13 @@ jQuery( document ).ready( function() {
2
 
3
  var bbp_author_id = jQuery( '#bbp_author_id' );
4
 
5
- bbp_author_id.suggest( ajaxurl + '?action=bbp_suggest_user', {
6
- onSelect: function() {
7
- var value = this.value;
8
- bbp_author_id.val( value.substr( 0, value.indexOf( ' ' ) ) );
 
 
 
9
  }
10
- } );
11
  } );
2
 
3
  var bbp_author_id = jQuery( '#bbp_author_id' );
4
 
5
+ bbp_author_id.suggest(
6
+ bbp_author_id.data( 'ajax-url' ),
7
+ {
8
+ onSelect: function() {
9
+ var value = this.value;
10
+ bbp_author_id.val( value.substr( 0, value.indexOf( ' ' ) ) );
11
+ }
12
  }
13
+ );
14
  } );
includes/admin/js/replies.js CHANGED
@@ -2,10 +2,13 @@ jQuery( document ).ready(function() {
2
 
3
  var bbp_topic_id = jQuery( '#bbp_topic_id' );
4
 
5
- bbp_topic_id.suggest( ajaxurl + '?action=bbp_suggest_topic', {
6
- onSelect: function() {
7
- var value = this.value;
8
- bbp_topic_id.val( value.substr( 0, value.indexOf( ' ' ) ) );
 
 
 
9
  }
10
- } );
11
- } );
2
 
3
  var bbp_topic_id = jQuery( '#bbp_topic_id' );
4
 
5
+ bbp_topic_id.suggest(
6
+ bbp_topic_id.data( 'ajax-url' ),
7
+ {
8
+ onSelect: function() {
9
+ var value = this.value;
10
+ bbp_topic_id.val( value.substr( 0, value.indexOf( ' ' ) ) );
11
+ }
12
  }
13
+ );
14
+ } );
includes/admin/metaboxes.php CHANGED
@@ -456,7 +456,7 @@ function bbp_reply_metabox() {
456
  <p>
457
  <strong class="label"><?php esc_html_e( 'Topic:', 'bbpress' ); ?></strong>
458
  <label class="screen-reader-text" for="parent_id"><?php esc_html_e( 'Topic', 'bbpress' ); ?></label>
459
- <input name="parent_id" id="bbp_topic_id" type="text" value="<?php echo esc_attr( $reply_topic_id ); ?>" />
460
  </p>
461
 
462
  <p>
@@ -515,7 +515,7 @@ function bbp_author_metabox() {
515
  <p>
516
  <strong class="label"><?php esc_html_e( 'ID:', 'bbpress' ); ?></strong>
517
  <label class="screen-reader-text" for="bbp_author_id"><?php esc_html_e( 'ID', 'bbpress' ); ?></label>
518
- <input type="text" id="bbp_author_id" name="post_author_override" value="<?php echo esc_attr( bbp_get_global_post_field( 'post_author' ) ); ?>" />
519
  </p>
520
 
521
  <?php endif; ?>
456
  <p>
457
  <strong class="label"><?php esc_html_e( 'Topic:', 'bbpress' ); ?></strong>
458
  <label class="screen-reader-text" for="parent_id"><?php esc_html_e( 'Topic', 'bbpress' ); ?></label>
459
+ <input name="parent_id" id="bbp_topic_id" type="text" value="<?php echo esc_attr( $reply_topic_id ); ?>" data-ajax-url="<?php echo wp_nonce_url( add_query_arg( array( 'action' => 'bbp_suggest_topic' ), admin_url( 'admin-ajax.php', 'relative' ) ), 'bbp_suggest_topic_nonce' ); ?>" />
460
  </p>
461
 
462
  <p>
515
  <p>
516
  <strong class="label"><?php esc_html_e( 'ID:', 'bbpress' ); ?></strong>
517
  <label class="screen-reader-text" for="bbp_author_id"><?php esc_html_e( 'ID', 'bbpress' ); ?></label>
518
+ <input type="text" id="bbp_author_id" name="post_author_override" value="<?php echo esc_attr( bbp_get_global_post_field( 'post_author' ) ); ?>" data-ajax-url="<?php echo wp_nonce_url( add_query_arg( array( 'action' => 'bbp_suggest_user' ), admin_url( 'admin-ajax.php', 'relative' ) ), 'bbp_suggest_user_nonce' ); ?>" />
519
  </p>
520
 
521
  <?php endif; ?>
includes/admin/users.php CHANGED
@@ -142,6 +142,8 @@ class BBP_Users_Admin {
142
  <option value="<?php echo esc_attr( $role ); ?>"><?php echo translate_user_role( $details['name'] ); ?></option>
143
  <?php endforeach; ?>
144
  </select><?php submit_button( __( 'Change', 'bbpress' ), 'secondary', 'bbp-change-role', false );
 
 
145
  }
146
 
147
  /**
@@ -156,10 +158,6 @@ class BBP_Users_Admin {
156
  */
157
  public function user_role_bulk_change() {
158
 
159
- // Bail if current user cannot promote users
160
- if ( !current_user_can( 'promote_users' ) )
161
- return;
162
-
163
  // Bail if no users specified
164
  if ( empty( $_REQUEST['users'] ) )
165
  return;
@@ -173,6 +171,13 @@ class BBP_Users_Admin {
173
  if ( empty( $dynamic_roles[ $_REQUEST['bbp-new-role'] ] ) )
174
  return;
175
 
 
 
 
 
 
 
 
176
  // Get the current user ID
177
  $current_user_id = (int) bbp_get_current_user_id();
178
 
142
  <option value="<?php echo esc_attr( $role ); ?>"><?php echo translate_user_role( $details['name'] ); ?></option>
143
  <?php endforeach; ?>
144
  </select><?php submit_button( __( 'Change', 'bbpress' ), 'secondary', 'bbp-change-role', false );
145
+
146
+ wp_nonce_field( 'bbp-bulk-users', 'bbp-bulk-users-nonce' );
147
  }
148
 
149
  /**
158
  */
159
  public function user_role_bulk_change() {
160
 
 
 
 
 
161
  // Bail if no users specified
162
  if ( empty( $_REQUEST['users'] ) )
163
  return;
171
  if ( empty( $dynamic_roles[ $_REQUEST['bbp-new-role'] ] ) )
172
  return;
173
 
174
+ // Bail if nonce check fails
175
+ check_admin_referer( 'bbp-bulk-users', 'bbp-bulk-users-nonce' );
176
+
177
+ // Bail if current user cannot promote users
178
+ if ( !current_user_can( 'promote_users' ) )
179
+ return;
180
+
181
  // Get the current user ID
182
  $current_user_id = (int) bbp_get_current_user_id();
183
 
includes/users/functions.php CHANGED
@@ -1377,7 +1377,7 @@ function bbp_edit_user_handler( $action = '' ) {
1377
 
1378
  $new_email = get_option( $user_id . '_new_email' );
1379
 
1380
- if ( $new_email['hash'] === $_GET['newuseremail'] ) {
1381
  $user = new WP_User();
1382
  $user->ID = $user_id;
1383
  $user->user_email = esc_html( trim( $new_email['newemail'] ) );
1377
 
1378
  $new_email = get_option( $user_id . '_new_email' );
1379
 
1380
+ if ( hash_equals( $new_email['hash'], $_GET['newuseremail'] ) ) {
1381
  $user = new WP_User();
1382
  $user->ID = $user_id;
1383
  $user->user_email = esc_html( trim( $new_email['newemail'] ) );
languages/bbpress.pot CHANGED
@@ -1,14 +1,14 @@
1
- # Copyright (C) 2014 bbPress
2
  # This file is distributed under the same license as the bbPress package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: bbPress 2.5.4\n"
6
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/bbpress\n"
7
- "POT-Creation-Date: 2014-01-11 18:30:39+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
- "PO-Revision-Date: 2013-MO-DA HO:MI+ZONE\n"
12
  "Last-Translator: JOHN JAMES JACOBY <jjj@bbpress.org>\n"
13
  "Language-Team: ENGLISH <jjj@bbpress.org>\n"
14
 
@@ -88,7 +88,7 @@ msgstr ""
88
  msgid "Topics with no replies"
89
  msgstr ""
90
 
91
- #: includes/admin/admin.php:200 includes/admin/functions.php:243
92
  #: includes/admin/tools.php:34
93
  msgid "Repair Forums"
94
  msgstr ""
@@ -97,7 +97,7 @@ msgstr ""
97
  msgid "Forum Repair"
98
  msgstr ""
99
 
100
- #: includes/admin/admin.php:210 includes/admin/functions.php:247
101
  #: includes/admin/settings.php:1509
102
  msgid "Import Forums"
103
  msgstr ""
@@ -106,8 +106,8 @@ msgstr ""
106
  msgid "Forum Import"
107
  msgstr ""
108
 
109
- #: includes/admin/admin.php:220 includes/admin/functions.php:251
110
- #: includes/admin/tools.php:1132
111
  msgid "Reset Forums"
112
  msgstr ""
113
 
@@ -134,7 +134,7 @@ msgstr ""
134
 
135
  #: includes/admin/admin.php:282 includes/admin/admin.php:283
136
  #: includes/admin/admin.php:304 includes/admin/admin.php:305
137
- #: includes/admin/admin.php:986 includes/admin/admin.php:1073
138
  msgid "Update Forums"
139
  msgstr ""
140
 
@@ -164,58 +164,58 @@ msgctxt "admin color scheme"
164
  msgid "Evergreen"
165
  msgstr ""
166
 
167
- #: includes/admin/admin.php:710 includes/admin/admin.php:734
168
  msgid "%s - %s"
169
  msgstr ""
170
 
171
- #: includes/admin/admin.php:752 includes/admin/admin.php:829
172
  msgid "Welcome to bbPress %s"
173
  msgstr ""
174
 
175
- #: includes/admin/admin.php:753
176
  msgid ""
177
  "Thank you for updating! bbPress %s is bundled up and ready to weather the "
178
  "storm of users in your community!"
179
  msgstr ""
180
 
181
- #: includes/admin/admin.php:754 includes/admin/admin.php:831
182
  msgid "Version %s"
183
  msgstr ""
184
 
185
- #: includes/admin/admin.php:758 includes/admin/admin.php:835
186
  msgid "What&#8217;s New"
187
  msgstr ""
188
 
189
- #: includes/admin/admin.php:760 includes/admin/admin.php:837
190
  msgid "Credits"
191
  msgstr ""
192
 
193
- #: includes/admin/admin.php:765
194
  msgid "Forum Subscriptions"
195
  msgstr ""
196
 
197
- #: includes/admin/admin.php:769
198
  msgid "Subscribe to Forums"
199
  msgstr ""
200
 
201
- #: includes/admin/admin.php:770
202
  msgid "Now your users can subscribe to new topics in specific forums."
203
  msgstr ""
204
 
205
- #: includes/admin/admin.php:774
206
  msgid "Manage Subscriptions"
207
  msgstr ""
208
 
209
- #: includes/admin/admin.php:775
210
  msgid ""
211
  "Your users can manage all of their subscriptions in one convenient location."
212
  msgstr ""
213
 
214
- #: includes/admin/admin.php:781
215
  msgid "Converters"
216
  msgstr ""
217
 
218
- #: includes/admin/admin.php:785
219
  msgid ""
220
  "We&#8217;re all abuzz about the hive of new importers, AEF, Drupal, FluxBB, "
221
  "Kunena Forums for Joomla, MyBB, Phorum, PHPFox, PHPWind, PunBB, SMF, Xenforo "
@@ -224,111 +224,111 @@ msgid ""
224
  "if you need to remove imported users."
225
  msgstr ""
226
 
227
- #: includes/admin/admin.php:791
228
  msgid "Theme Compatibility"
229
  msgstr ""
230
 
231
- #: includes/admin/admin.php:792
232
  msgid "Better handling of styles and scripts in the template stack."
233
  msgstr ""
234
 
235
- #: includes/admin/admin.php:796
236
  msgid "Polyglot support"
237
  msgstr ""
238
 
239
- #: includes/admin/admin.php:797
240
  msgid "bbPress fully supports automatic translation updates."
241
  msgstr ""
242
 
243
- #: includes/admin/admin.php:801
244
  msgid "User capabilities"
245
  msgstr ""
246
 
247
- #: includes/admin/admin.php:802
248
  msgid ""
249
  "Roles and capabilities have been swept through, cleaned up, and simplified."
250
  msgstr ""
251
 
252
- #: includes/admin/admin.php:808 includes/admin/admin.php:912
253
  msgid "Go to Forum Settings"
254
  msgstr ""
255
 
256
- #: includes/admin/admin.php:830
257
  msgid ""
258
  "Thank you for updating! bbPress %s is waxed, polished, and ready for you to "
259
  "take it for a lap or two around the block!"
260
  msgstr ""
261
 
262
- #: includes/admin/admin.php:841
263
  msgid "bbPress is created by a worldwide swarm of busy, busy bees."
264
  msgstr ""
265
 
266
- #: includes/admin/admin.php:843
267
  msgid "Project Leaders"
268
  msgstr ""
269
 
270
- #: includes/admin/admin.php:848
271
  msgid "Founding Developer"
272
  msgstr ""
273
 
274
- #: includes/admin/admin.php:853
275
  msgid "Lead Developer"
276
  msgstr ""
277
 
278
- #: includes/admin/admin.php:858 includes/admin/admin.php:877
279
  msgid "Feature Developer"
280
  msgstr ""
281
 
282
- #: includes/admin/admin.php:863
283
  msgid "Converter Specialist"
284
  msgstr ""
285
 
286
- #: includes/admin/admin.php:867
287
  msgid "Contributing Developers"
288
  msgstr ""
289
 
290
- #: includes/admin/admin.php:872
291
  msgid "Bug Testing"
292
  msgstr ""
293
 
294
- #: includes/admin/admin.php:881
295
  msgid "Core Contributors to bbPress 2.5"
296
  msgstr ""
297
 
298
- #: includes/admin/admin.php:938 includes/admin/admin.php:960
299
  msgid "Update Forum"
300
  msgstr ""
301
 
302
- #: includes/admin/admin.php:949 includes/admin/admin.php:1003
303
  msgid "All done!"
304
  msgstr ""
305
 
306
- #: includes/admin/admin.php:950 includes/admin/admin.php:1004
307
  msgid "Go Back"
308
  msgstr ""
309
 
310
- #: includes/admin/admin.php:959
311
  msgid ""
312
  "You can update your forum through this page. Hit the link below to update."
313
  msgstr ""
314
 
315
- #: includes/admin/admin.php:1029
316
  msgid ""
317
  "Warning! Problem updating %1$s. Your server may not be able to connect to "
318
  "sites running on it. Error message: <em>%2$s</em>"
319
  msgstr ""
320
 
321
- #: includes/admin/admin.php:1053
322
  msgid ""
323
  "If your browser doesn&#8217;t start loading the next page automatically, "
324
  "click this link:"
325
  msgstr ""
326
 
327
- #: includes/admin/admin.php:1054
328
  msgid "Next Forums"
329
  msgstr ""
330
 
331
- #: includes/admin/admin.php:1072
332
  msgid ""
333
  "You can update all the forums on your network through this page. It works by "
334
  "calling the update script of each site automatically. Hit the link below to "
@@ -395,95 +395,95 @@ msgstr ""
395
  msgid "Starting Conversion"
396
  msgstr ""
397
 
398
- #: includes/admin/converter.php:248 includes/admin/converter.php:520
399
  msgid "Conversion Complete"
400
  msgstr ""
401
 
402
- #: includes/admin/converter.php:342
403
  msgid "No data to clean"
404
  msgstr ""
405
 
406
- #: includes/admin/converter.php:346
407
  msgid "Deleting previously converted data (%1$s - %2$s)"
408
  msgstr ""
409
 
410
- #: includes/admin/converter.php:362
411
  msgid "No users to convert"
412
  msgstr ""
413
 
414
- #: includes/admin/converter.php:366
415
  msgid "Converting users (%1$s - %2$s)"
416
  msgstr ""
417
 
418
- #: includes/admin/converter.php:382
419
  msgid "No passwords to clear"
420
  msgstr ""
421
 
422
- #: includes/admin/converter.php:386
423
  msgid "Delete users WordPress default passwords (%1$s - %2$s)"
424
  msgstr ""
425
 
426
- #: includes/admin/converter.php:401
427
  msgid "No forums to convert"
428
  msgstr ""
429
 
430
- #: includes/admin/converter.php:405
431
  msgid "Converting forums (%1$s - %2$s)"
432
  msgstr ""
433
 
434
- #: includes/admin/converter.php:416
435
  msgid "No forum parents to convert"
436
  msgstr ""
437
 
438
- #: includes/admin/converter.php:420
439
  msgid "Calculating forum hierarchy (%1$s - %2$s)"
440
  msgstr ""
441
 
442
- #: includes/admin/converter.php:431
443
  msgid "No topics to convert"
444
  msgstr ""
445
 
446
- #: includes/admin/converter.php:435
447
  msgid "Converting topics (%1$s - %2$s)"
448
  msgstr ""
449
 
450
- #: includes/admin/converter.php:446
451
  msgid "No stickies to stick"
452
  msgstr ""
453
 
454
- #: includes/admin/converter.php:450
455
  msgid "Calculating topic stickies (%1$s - %2$s)"
456
  msgstr ""
457
 
458
- #: includes/admin/converter.php:461
459
  msgid "No super stickies to stick"
460
  msgstr ""
461
 
462
- #: includes/admin/converter.php:465
463
  msgid "Calculating topic super stickies (%1$s - %2$s)"
464
  msgstr ""
465
 
466
- #: includes/admin/converter.php:476
467
  msgid "No tags to convert"
468
  msgstr ""
469
 
470
- #: includes/admin/converter.php:480
471
  msgid "Converting topic tags (%1$s - %2$s)"
472
  msgstr ""
473
 
474
- #: includes/admin/converter.php:491
475
  msgid "No replies to convert"
476
  msgstr ""
477
 
478
- #: includes/admin/converter.php:495
479
  msgid "Converting replies (%1$s - %2$s)"
480
  msgstr ""
481
 
482
- #: includes/admin/converter.php:506
483
  msgid "No reply_to parents to convert"
484
  msgstr ""
485
 
486
- #: includes/admin/converter.php:510
487
  msgid "Calculating reply_to parents (%1$s - %2$s)"
488
  msgstr ""
489
 
@@ -845,7 +845,7 @@ msgstr[0] ""
845
  msgstr[1] ""
846
 
847
  #: includes/admin/metaboxes.php:84 includes/admin/settings.php:325
848
- #: includes/replies/template.php:49 includes/replies/template.php:1619
849
  #: includes/topics/template.php:2923
850
  msgid "Reply"
851
  msgid_plural "Replies"
@@ -1231,32 +1231,32 @@ msgid "Mark this reply as spam"
1231
  msgstr ""
1232
 
1233
  #: includes/admin/replies.php:739 includes/admin/topics.php:810
1234
- #: includes/replies/template.php:2103 includes/topics/template.php:2874
1235
  msgid "Spam"
1236
  msgstr ""
1237
 
1238
  #: includes/admin/replies.php:748 includes/admin/topics.php:818
1239
- #: includes/replies/template.php:2045 includes/topics/template.php:2630
1240
  msgid "Restore this item from the Trash"
1241
  msgstr ""
1242
 
1243
  #: includes/admin/replies.php:748 includes/admin/topics.php:818
1244
- #: includes/replies/template.php:2033 includes/topics/template.php:2618
1245
  msgid "Restore"
1246
  msgstr ""
1247
 
1248
  #: includes/admin/replies.php:750 includes/admin/topics.php:820
1249
- #: includes/replies/template.php:2047 includes/topics/template.php:2632
1250
  msgid "Move this item to the Trash"
1251
  msgstr ""
1252
 
1253
  #: includes/admin/replies.php:750 includes/admin/topics.php:820
1254
- #: includes/replies/template.php:2032 includes/topics/template.php:2617
1255
  msgid "Trash"
1256
  msgstr ""
1257
 
1258
  #: includes/admin/replies.php:754 includes/admin/topics.php:824
1259
- #: includes/replies/template.php:2051 includes/topics/template.php:2636
1260
  msgid "Delete this item permanently"
1261
  msgstr ""
1262
 
@@ -1938,291 +1938,303 @@ msgid "Recalculate the sticky relationship of each topic"
1938
  msgstr ""
1939
 
1940
  #: includes/admin/tools.php:166
1941
- msgid "Repair BuddyPress Group Forum relationships"
1942
  msgstr ""
1943
 
1944
  #: includes/admin/tools.php:167
1945
- msgid "Count topics in each forum"
1946
  msgstr ""
1947
 
1948
  #: includes/admin/tools.php:168
1949
- msgid "Count replies in each forum"
1950
  msgstr ""
1951
 
1952
  #: includes/admin/tools.php:169
1953
- msgid "Count replies in each topic"
1954
  msgstr ""
1955
 
1956
  #: includes/admin/tools.php:170
1957
- msgid "Count voices in each topic"
1958
  msgstr ""
1959
 
1960
  #: includes/admin/tools.php:171
1961
- msgid "Count spammed & trashed replies in each topic"
1962
  msgstr ""
1963
 
1964
  #: includes/admin/tools.php:172
1965
- msgid "Count topics for each user"
1966
  msgstr ""
1967
 
1968
  #: includes/admin/tools.php:173
1969
- msgid "Count replies for each user"
1970
  msgstr ""
1971
 
1972
  #: includes/admin/tools.php:174
1973
- msgid "Remove trashed topics from user favorites"
1974
  msgstr ""
1975
 
1976
  #: includes/admin/tools.php:175
1977
- msgid "Remove trashed topics from user subscriptions"
1978
  msgstr ""
1979
 
1980
  #: includes/admin/tools.php:176
1981
- msgid "Remove trashed forums from user subscriptions"
1982
  msgstr ""
1983
 
1984
  #: includes/admin/tools.php:177
 
 
 
 
1985
  msgid "Remap existing users to default forum roles"
1986
  msgstr ""
1987
 
1988
- #: includes/admin/tools.php:197
1989
  msgid "Counting the number of replies in each topic&hellip; %s"
1990
  msgstr ""
1991
 
1992
- #: includes/admin/tools.php:198 includes/admin/tools.php:241
1993
- #: includes/admin/tools.php:283 includes/admin/tools.php:328
1994
- #: includes/admin/tools.php:445 includes/admin/tools.php:479
1995
- #: includes/admin/tools.php:511 includes/admin/tools.php:556
1996
- #: includes/admin/tools.php:601 includes/admin/tools.php:663
1997
- #: includes/admin/tools.php:724 includes/admin/tools.php:792
1998
- #: includes/admin/tools.php:840 includes/admin/tools.php:946
1999
- #: includes/admin/tools.php:1006 includes/admin/tools.php:1027
2000
- #: includes/admin/tools.php:1081
2001
  msgid "Failed!"
2002
  msgstr ""
2003
 
2004
- #: includes/admin/tools.php:224 includes/admin/tools.php:267
2005
- #: includes/admin/tools.php:293 includes/admin/tools.php:460
2006
- #: includes/admin/tools.php:494 includes/admin/tools.php:539
2007
- #: includes/admin/tools.php:584 includes/admin/tools.php:646
2008
- #: includes/admin/tools.php:707 includes/admin/tools.php:768
2009
- #: includes/admin/tools.php:930 includes/admin/tools.php:987
2010
- #: includes/admin/tools.php:1010 includes/admin/tools.php:1065
2011
- #: includes/admin/tools.php:1110
2012
  msgid "Complete!"
2013
  msgstr ""
2014
 
2015
- #: includes/admin/tools.php:240
2016
  msgid "Counting the number of voices in each topic&hellip; %s"
2017
  msgstr ""
2018
 
2019
- #: includes/admin/tools.php:282
2020
  msgid ""
2021
  "Counting the number of spammed and trashed replies in each topic&hellip; %s"
2022
  msgstr ""
2023
 
2024
- #: includes/admin/tools.php:307
2025
  msgid "Repairing BuddyPress group-forum relationships&hellip; %s"
2026
  msgstr ""
2027
 
2028
- #: includes/admin/tools.php:408
2029
  msgid "Group Forums"
2030
  msgstr ""
2031
 
2032
- #: includes/admin/tools.php:409
2033
  msgid "group-forums"
2034
  msgstr ""
2035
 
2036
- #: includes/admin/tools.php:425
2037
  msgid ""
2038
  "Complete! %s groups updated; %s forums updated; %s forum statuses synced."
2039
  msgstr ""
2040
 
2041
- #: includes/admin/tools.php:444
2042
  msgid "Counting the number of topics in each forum&hellip; %s"
2043
  msgstr ""
2044
 
2045
- #: includes/admin/tools.php:478
2046
  msgid "Counting the number of replies in each forum&hellip; %s"
2047
  msgstr ""
2048
 
2049
- #: includes/admin/tools.php:510
2050
  msgid "Counting the number of topics each user has created&hellip; %s"
2051
  msgstr ""
2052
 
2053
- #: includes/admin/tools.php:555
2054
  msgid "Counting the number of topics to which each user has replied&hellip; %s"
2055
  msgstr ""
2056
 
2057
- #: includes/admin/tools.php:600
2058
  msgid "Removing trashed topics from user favorites&hellip; %s"
2059
  msgstr ""
2060
 
2061
- #: includes/admin/tools.php:630 includes/admin/tools.php:691
2062
- #: includes/admin/tools.php:752
2063
  msgid "Nothing to remove!"
2064
  msgstr ""
2065
 
2066
- #: includes/admin/tools.php:662
2067
  msgid "Removing trashed topics from user subscriptions&hellip; %s"
2068
  msgstr ""
2069
 
2070
- #: includes/admin/tools.php:723
2071
  msgid "Removing trashed forums from user subscriptions&hellip; %s"
2072
  msgstr ""
2073
 
2074
- #: includes/admin/tools.php:785
2075
  msgid "Remapping forum role for each user on this site&hellip; %s"
2076
  msgstr ""
2077
 
2078
- #: includes/admin/tools.php:823
2079
  msgid "Complete! %s users updated."
2080
  msgstr ""
2081
 
2082
- #: includes/admin/tools.php:839
2083
  msgid "Recomputing latest post in every topic and forum&hellip; %s"
2084
  msgstr ""
2085
 
2086
- #: includes/admin/tools.php:945
2087
  msgid "Repairing the sticky topic to the parent forum relationships&hellip; %s"
2088
  msgstr ""
2089
 
2090
- #: includes/admin/tools.php:1002
2091
  msgid "Recalculating forum visibility &hellip; %s"
2092
  msgstr ""
2093
 
2094
- #: includes/admin/tools.php:1026
2095
  msgid "Recalculating the forum for each post &hellip; %s"
2096
  msgstr ""
2097
 
2098
- #: includes/admin/tools.php:1080
2099
  msgid "Recalculating the topic for each post &hellip; %s"
2100
  msgstr ""
2101
 
2102
- #: includes/admin/tools.php:1133
 
 
 
 
 
 
 
 
2103
  msgid ""
2104
  "Revert your forums back to a brand new installation. This process cannot be "
2105
  "undone."
2106
  msgstr ""
2107
 
2108
- #: includes/admin/tools.php:1134
2109
  msgid "Backup your database before proceeding."
2110
  msgstr ""
2111
 
2112
- #: includes/admin/tools.php:1140
2113
  msgid "The following data will be removed:"
2114
  msgstr ""
2115
 
2116
- #: includes/admin/tools.php:1142 includes/forums/template.php:50
2117
  msgid "All Forums"
2118
  msgstr ""
2119
 
2120
- #: includes/admin/tools.php:1143 includes/topics/functions.php:3440
2121
  #: includes/topics/template.php:50
2122
  msgid "All Topics"
2123
  msgstr ""
2124
 
2125
- #: includes/admin/tools.php:1144 includes/replies/functions.php:1994
2126
  #: includes/replies/template.php:50
2127
  msgid "All Replies"
2128
  msgstr ""
2129
 
2130
- #: includes/admin/tools.php:1145
2131
  msgid "All Topic Tags"
2132
  msgstr ""
2133
 
2134
- #: includes/admin/tools.php:1146
2135
  msgid "Related Meta Data"
2136
  msgstr ""
2137
 
2138
- #: includes/admin/tools.php:1147
2139
  msgid "Forum Settings"
2140
  msgstr ""
2141
 
2142
- #: includes/admin/tools.php:1148
2143
  msgid "Forum Activity"
2144
  msgstr ""
2145
 
2146
- #: includes/admin/tools.php:1149
2147
  msgid "Forum User Roles"
2148
  msgstr ""
2149
 
2150
- #: includes/admin/tools.php:1150
2151
  msgid "Importer Helper Data"
2152
  msgstr ""
2153
 
2154
- #: includes/admin/tools.php:1154
2155
  msgid "Delete imported users?"
2156
  msgstr ""
2157
 
2158
- #: includes/admin/tools.php:1157 includes/admin/tools.php:1167
2159
  msgid "Say it ain't so!"
2160
  msgstr ""
2161
 
2162
- #: includes/admin/tools.php:1158
2163
  msgid ""
2164
  "This option will delete all previously imported users, and cannot be undone."
2165
  msgstr ""
2166
 
2167
- #: includes/admin/tools.php:1159
2168
  msgid ""
2169
  "Note: Resetting without this checked will delete the meta-data necessary to "
2170
  "delete these users."
2171
  msgstr ""
2172
 
2173
- #: includes/admin/tools.php:1164
2174
  msgid "Are you sure you want to do this?"
2175
  msgstr ""
2176
 
2177
- #: includes/admin/tools.php:1168
2178
  msgid "This process cannot be undone."
2179
  msgstr ""
2180
 
2181
- #: includes/admin/tools.php:1169
2182
  msgid "Human sacrifice, dogs and cats living together... mass hysteria!"
2183
  msgstr ""
2184
 
2185
- #: includes/admin/tools.php:1177
2186
  msgid "Reset bbPress"
2187
  msgstr ""
2188
 
2189
- #: includes/admin/tools.php:1210
2190
  msgid "Failed"
2191
  msgstr ""
2192
 
2193
- #: includes/admin/tools.php:1211
2194
  msgid "Success!"
2195
  msgstr ""
2196
 
2197
- #: includes/admin/tools.php:1218
2198
  msgid "Deleting Posts&hellip; %s"
2199
  msgstr ""
2200
 
2201
- #: includes/admin/tools.php:1231
2202
  msgid "Deleting Post Meta&hellip; %s"
2203
  msgstr ""
2204
 
2205
- #: includes/admin/tools.php:1240
2206
  msgid "Deleting Topic Tags&hellip; %s"
2207
  msgstr ""
2208
 
2209
- #: includes/admin/tools.php:1255
2210
  msgid "Deleting User&hellip; %s"
2211
  msgstr ""
2212
 
2213
- #: includes/admin/tools.php:1260 includes/admin/tools.php:1268
2214
  msgid "Deleting User Meta&hellip; %s"
2215
  msgstr ""
2216
 
2217
- #: includes/admin/tools.php:1276
2218
  msgid "Deleting Conversion Table&hellip; %s"
2219
  msgstr ""
2220
 
2221
- #: includes/admin/tools.php:1288
2222
  msgid "Deleting Settings&hellip; %s"
2223
  msgstr ""
2224
 
2225
- #: includes/admin/tools.php:1294
2226
  msgid "Deleting Roles and Capabilities&hellip; %s"
2227
  msgstr ""
2228
 
@@ -2551,7 +2563,7 @@ msgstr ""
2551
  msgid "Topic draft updated. <a target=\"_blank\" href=\"%s\">Preview topic</a>"
2552
  msgstr ""
2553
 
2554
- #: includes/admin/users.php:87 includes/admin/users.php:213
2555
  #: templates/default/bbpress/form-user-roles.php:20
2556
  msgid "Forum Role"
2557
  msgstr ""
@@ -2569,7 +2581,7 @@ msgstr ""
2569
  msgid "Change"
2570
  msgstr ""
2571
 
2572
- #: includes/admin/users.php:212
2573
  msgid "Site Role"
2574
  msgstr ""
2575
 
@@ -2658,7 +2670,7 @@ msgstr ""
2658
  msgid "<strong>ERROR</strong>: Invalid email address submitted!"
2659
  msgstr ""
2660
 
2661
- #: includes/common/functions.php:1074
2662
  msgid ""
2663
  "%1$s wrote:\n"
2664
  "\n"
@@ -2673,7 +2685,7 @@ msgid ""
2673
  "Login and visit the topic to unsubscribe from these emails."
2674
  msgstr ""
2675
 
2676
- #: includes/common/functions.php:1193
2677
  msgid ""
2678
  "%1$s wrote:\n"
2679
  "\n"
@@ -2688,7 +2700,7 @@ msgid ""
2688
  "Login and visit the topic to unsubscribe from these emails."
2689
  msgstr ""
2690
 
2691
- #: includes/common/functions.php:1905
2692
  msgid ""
2693
  "Conditional query tags do not work before the query is run. Before then, "
2694
  "they always return false."
@@ -2722,7 +2734,7 @@ msgid "Topic Tag: %s"
2722
  msgstr ""
2723
 
2724
  #: includes/common/template.php:2200 includes/forums/template.php:53
2725
- #: includes/replies/template.php:53 includes/replies/template.php:1908
2726
  #: includes/topics/template.php:53 includes/topics/template.php:2493
2727
  #: templates/default/bbpress/user-details.php:65
2728
  msgid "Edit"
@@ -3145,8 +3157,8 @@ msgstr ""
3145
  #: includes/extend/buddypress/groups.php:494
3146
  #: includes/extend/buddypress/notifications.php:161
3147
  #: includes/forums/functions.php:118 includes/forums/functions.php:395
3148
- #: includes/replies/functions.php:116 includes/replies/functions.php:518
3149
- #: includes/replies/functions.php:1245 includes/topics/functions.php:122
3150
  #: includes/topics/functions.php:520 includes/topics/functions.php:1153
3151
  #: includes/topics/functions.php:1456 includes/topics/functions.php:1820
3152
  #: includes/topics/functions.php:1859 includes/topics/functions.php:1916
@@ -3239,7 +3251,7 @@ msgid ""
3239
  "capability to read or create new forums in it."
3240
  msgstr ""
3241
 
3242
- #: includes/forums/functions.php:210 includes/replies/functions.php:293
3243
  #: includes/topics/functions.php:260
3244
  msgid "<strong>ERROR</strong>: Slow down; you move too fast."
3245
  msgstr ""
@@ -3433,152 +3445,152 @@ msgstr ""
3433
  msgid "<strong>ERROR</strong>: Forum does not exist."
3434
  msgstr ""
3435
 
3436
- #: includes/replies/functions.php:227 includes/replies/functions.php:574
3437
  msgid ""
3438
  "<strong>ERROR</strong>: This forum is a category. No replies can be created "
3439
  "in this forum."
3440
  msgstr ""
3441
 
3442
- #: includes/replies/functions.php:234 includes/replies/functions.php:581
3443
  msgid "<strong>ERROR</strong>: This forum has been closed to new replies."
3444
  msgstr ""
3445
 
3446
- #: includes/replies/functions.php:240 includes/replies/functions.php:587
3447
  msgid ""
3448
  "<strong>ERROR</strong>: This forum is private and you do not have the "
3449
  "capability to read or create new replies in it."
3450
  msgstr ""
3451
 
3452
- #: includes/replies/functions.php:246 includes/replies/functions.php:593
3453
  msgid ""
3454
  "<strong>ERROR</strong>: This forum is hidden and you do not have the "
3455
  "capability to read or create new replies in it."
3456
  msgstr ""
3457
 
3458
- #: includes/replies/functions.php:288 includes/replies/functions.php:617
3459
  msgid "<strong>ERROR</strong>: Your reply cannot be empty."
3460
  msgstr ""
3461
 
3462
- #: includes/replies/functions.php:298
3463
  msgid ""
3464
  "<strong>ERROR</strong>: Duplicate reply detected; it looks as though "
3465
  "you&#8217;ve already said that!"
3466
  msgstr ""
3467
 
3468
- #: includes/replies/functions.php:303
3469
  msgid "<strong>ERROR</strong>: Your reply cannot be created at this time."
3470
  msgstr ""
3471
 
3472
- #: includes/replies/functions.php:320
3473
  msgid "<strong>ERROR</strong>: Topic is closed."
3474
  msgstr ""
3475
 
3476
- #: includes/replies/functions.php:379 includes/replies/functions.php:701
3477
  msgid ""
3478
  "<strong>ERROR</strong>: There was a problem adding the tags to the topic."
3479
  msgstr ""
3480
 
3481
- #: includes/replies/functions.php:507
3482
  msgid "<strong>ERROR</strong>: Reply ID not found."
3483
  msgstr ""
3484
 
3485
- #: includes/replies/functions.php:524
3486
  msgid "<strong>ERROR</strong>: The reply you want to edit was not found."
3487
  msgstr ""
3488
 
3489
- #: includes/replies/functions.php:535
3490
  msgid "<strong>ERROR</strong>: You do not have permission to edit that reply."
3491
  msgstr ""
3492
 
3493
- #: includes/replies/functions.php:622
3494
  msgid "<strong>ERROR</strong>: Your reply cannot be edited at this time."
3495
  msgstr ""
3496
 
3497
- #: includes/replies/functions.php:1222
3498
  msgid "<strong>ERROR</strong>: Reply ID to move not found!"
3499
  msgstr ""
3500
 
3501
- #: includes/replies/functions.php:1231
3502
  msgid "<strong>ERROR</strong>: The reply you want to move was not found."
3503
  msgstr ""
3504
 
3505
- #: includes/replies/functions.php:1240
3506
  msgid "<strong>ERROR</strong>: The topic you want to move from was not found."
3507
  msgstr ""
3508
 
3509
- #: includes/replies/functions.php:1251 includes/topics/functions.php:1164
3510
  #: includes/topics/functions.php:1462
3511
  msgid ""
3512
  "<strong>ERROR</strong>: You do not have the permissions to edit the source "
3513
  "topic."
3514
  msgstr ""
3515
 
3516
- #: includes/replies/functions.php:1261
3517
  msgid "<strong>ERROR</strong>: You need to choose a valid move option."
3518
  msgstr ""
3519
 
3520
- #: includes/replies/functions.php:1274 includes/topics/functions.php:1483
3521
  msgid "<strong>ERROR</strong>: Destination topic ID not found!"
3522
  msgstr ""
3523
 
3524
- #: includes/replies/functions.php:1284
3525
  msgid "<strong>ERROR</strong>: The topic you want to move to was not found!"
3526
  msgstr ""
3527
 
3528
- #: includes/replies/functions.php:1289 includes/topics/functions.php:1496
3529
  msgid ""
3530
  "<strong>ERROR</strong>: You do not have the permissions to edit the "
3531
  "destination topic!"
3532
  msgstr ""
3533
 
3534
- #: includes/replies/functions.php:1298 includes/replies/template.php:571
3535
  #: includes/topics/functions.php:1294 includes/topics/functions.php:1652
3536
  #: templates/default/bbpress/form-reply.php:29
3537
  msgid "Reply To: %s"
3538
  msgstr ""
3539
 
3540
- #: includes/replies/functions.php:1343 includes/topics/functions.php:1533
3541
  msgid ""
3542
  "<strong>ERROR</strong>: There was a problem converting the reply into the "
3543
  "topic. Please try again."
3544
  msgstr ""
3545
 
3546
- #: includes/replies/functions.php:1348 includes/topics/functions.php:1538
3547
  msgid ""
3548
  "<strong>ERROR</strong>: You do not have the permissions to create new "
3549
  "topics. The reply could not be converted into a topic."
3550
  msgstr ""
3551
 
3552
- #: includes/replies/functions.php:1530
3553
  msgid "<strong>ERROR:</strong> You do not have the permission to do that!"
3554
  msgstr ""
3555
 
3556
- #: includes/replies/functions.php:1543
3557
  msgid ""
3558
  "<strong>ERROR</strong>: There was a problem unmarking the reply as spam!"
3559
  msgstr ""
3560
 
3561
- #: includes/replies/functions.php:1543
3562
  msgid "<strong>ERROR</strong>: There was a problem marking the reply as spam!"
3563
  msgstr ""
3564
 
3565
- #: includes/replies/functions.php:1562
3566
  msgid "<strong>ERROR</strong>: There was a problem trashing the reply!"
3567
  msgstr ""
3568
 
3569
- #: includes/replies/functions.php:1570
3570
  msgid "<strong>ERROR</strong>: There was a problem untrashing the reply!"
3571
  msgstr ""
3572
 
3573
- #: includes/replies/functions.php:1578
3574
  msgid "<strong>ERROR</strong>: There was a problem deleting the reply!"
3575
  msgstr ""
3576
 
3577
- #: includes/replies/functions.php:1992
3578
  msgid "All Posts"
3579
  msgstr ""
3580
 
3581
- #: includes/replies/functions.php:2034 includes/topics/functions.php:3465
3582
  msgid "Replies: %s"
3583
  msgstr ""
3584
 
@@ -3638,65 +3650,65 @@ msgstr ""
3638
  msgid "Visit %s's website"
3639
  msgstr ""
3640
 
3641
- #: includes/replies/template.php:1693
3642
  msgid "Cancel"
3643
  msgstr ""
3644
 
3645
- #: includes/replies/template.php:2034 includes/topics/template.php:2619
3646
  #: templates/default/bbpress/form-topic-tag.php:88
3647
  #: templates/default/bbpress/form-topic-tag.php:101
3648
  msgid "Delete"
3649
  msgstr ""
3650
 
3651
- #: includes/replies/template.php:2051 includes/topics/template.php:2636
3652
  msgid "Are you sure you want to delete that permanently?"
3653
  msgstr ""
3654
 
3655
- #: includes/replies/template.php:2104 includes/topics/template.php:2875
3656
  msgid "Unspam"
3657
  msgstr ""
3658
 
3659
- #: includes/replies/template.php:2167
3660
  msgid "Move"
3661
  msgstr ""
3662
 
3663
- #: includes/replies/template.php:2168
3664
  msgid "Move this reply"
3665
  msgstr ""
3666
 
3667
- #: includes/replies/template.php:2234
3668
  msgid "Split"
3669
  msgstr ""
3670
 
3671
- #: includes/replies/template.php:2235
3672
  msgid "Split the topic from this reply"
3673
  msgstr ""
3674
 
3675
- #: includes/replies/template.php:2341
3676
  msgid "Viewing %1$s reply thread"
3677
  msgid_plural "Viewing %1$s reply threads"
3678
  msgstr[0] ""
3679
  msgstr[1] ""
3680
 
3681
- #: includes/replies/template.php:2348
3682
  msgid "Viewing %1$s reply"
3683
  msgid_plural "Viewing %1$s replies"
3684
  msgstr[0] ""
3685
  msgstr[1] ""
3686
 
3687
- #: includes/replies/template.php:2352
3688
  msgid "Viewing %2$s replies (of %4$s total)"
3689
  msgid_plural "Viewing %1$s replies - %2$s through %3$s (of %4$s total)"
3690
  msgstr[0] ""
3691
  msgstr[1] ""
3692
 
3693
- #: includes/replies/template.php:2360
3694
  msgid "Viewing %1$s post"
3695
  msgid_plural "Viewing %1$s posts"
3696
  msgstr[0] ""
3697
  msgstr[1] ""
3698
 
3699
- #: includes/replies/template.php:2364
3700
  msgid "Viewing %2$s post (of %4$s total)"
3701
  msgid_plural "Viewing %1$s posts - %2$s through %3$s (of %4$s total)"
3702
  msgstr[0] ""
@@ -4927,9 +4939,9 @@ msgstr ""
4927
  msgid "bbPress"
4928
  msgstr ""
4929
 
4930
- #. #-#-#-#-# plugin.pot (bbPress 2.5.4) #-#-#-#-#
4931
  #. Plugin URI of the plugin/theme
4932
- #. #-#-#-#-# plugin.pot (bbPress 2.5.4) #-#-#-#-#
4933
  #. Author URI of the plugin/theme
4934
  msgid "http://bbpress.org"
4935
  msgstr ""
@@ -4941,3 +4953,4 @@ msgstr ""
4941
  #. Author of the plugin/theme
4942
  msgid "The bbPress Community"
4943
  msgstr ""
 
1
+ # Copyright (C) 2015 bbPress
2
  # This file is distributed under the same license as the bbPress package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: bbPress 2.5.5\n"
6
+ "Report-Msgid-Bugs-To: https://bbpress.trac.wordpress.org\n"
7
+ "POT-Creation-Date: 2015-03-06 17:13:54+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
+ "PO-Revision-Date: 2015-MO-DA HO:MI+ZONE\n"
12
  "Last-Translator: JOHN JAMES JACOBY <jjj@bbpress.org>\n"
13
  "Language-Team: ENGLISH <jjj@bbpress.org>\n"
14
 
88
  msgid "Topics with no replies"
89
  msgstr ""
90
 
91
+ #: includes/admin/admin.php:200 includes/admin/functions.php:273
92
  #: includes/admin/tools.php:34
93
  msgid "Repair Forums"
94
  msgstr ""
97
  msgid "Forum Repair"
98
  msgstr ""
99
 
100
+ #: includes/admin/admin.php:210 includes/admin/functions.php:277
101
  #: includes/admin/settings.php:1509
102
  msgid "Import Forums"
103
  msgstr ""
106
  msgid "Forum Import"
107
  msgstr ""
108
 
109
+ #: includes/admin/admin.php:220 includes/admin/functions.php:281
110
+ #: includes/admin/tools.php:1208
111
  msgid "Reset Forums"
112
  msgstr ""
113
 
134
 
135
  #: includes/admin/admin.php:282 includes/admin/admin.php:283
136
  #: includes/admin/admin.php:304 includes/admin/admin.php:305
137
+ #: includes/admin/admin.php:1014 includes/admin/admin.php:1101
138
  msgid "Update Forums"
139
  msgstr ""
140
 
164
  msgid "Evergreen"
165
  msgstr ""
166
 
167
+ #: includes/admin/admin.php:724 includes/admin/admin.php:762
168
  msgid "%s - %s"
169
  msgstr ""
170
 
171
+ #: includes/admin/admin.php:780 includes/admin/admin.php:857
172
  msgid "Welcome to bbPress %s"
173
  msgstr ""
174
 
175
+ #: includes/admin/admin.php:781
176
  msgid ""
177
  "Thank you for updating! bbPress %s is bundled up and ready to weather the "
178
  "storm of users in your community!"
179
  msgstr ""
180
 
181
+ #: includes/admin/admin.php:782 includes/admin/admin.php:859
182
  msgid "Version %s"
183
  msgstr ""
184
 
185
+ #: includes/admin/admin.php:786 includes/admin/admin.php:863
186
  msgid "What&#8217;s New"
187
  msgstr ""
188
 
189
+ #: includes/admin/admin.php:788 includes/admin/admin.php:865
190
  msgid "Credits"
191
  msgstr ""
192
 
193
+ #: includes/admin/admin.php:793
194
  msgid "Forum Subscriptions"
195
  msgstr ""
196
 
197
+ #: includes/admin/admin.php:797
198
  msgid "Subscribe to Forums"
199
  msgstr ""
200
 
201
+ #: includes/admin/admin.php:798
202
  msgid "Now your users can subscribe to new topics in specific forums."
203
  msgstr ""
204
 
205
+ #: includes/admin/admin.php:802
206
  msgid "Manage Subscriptions"
207
  msgstr ""
208
 
209
+ #: includes/admin/admin.php:803
210
  msgid ""
211
  "Your users can manage all of their subscriptions in one convenient location."
212
  msgstr ""
213
 
214
+ #: includes/admin/admin.php:809
215
  msgid "Converters"
216
  msgstr ""
217
 
218
+ #: includes/admin/admin.php:813
219
  msgid ""
220
  "We&#8217;re all abuzz about the hive of new importers, AEF, Drupal, FluxBB, "
221
  "Kunena Forums for Joomla, MyBB, Phorum, PHPFox, PHPWind, PunBB, SMF, Xenforo "
224
  "if you need to remove imported users."
225
  msgstr ""
226
 
227
+ #: includes/admin/admin.php:819
228
  msgid "Theme Compatibility"
229
  msgstr ""
230
 
231
+ #: includes/admin/admin.php:820
232
  msgid "Better handling of styles and scripts in the template stack."
233
  msgstr ""
234
 
235
+ #: includes/admin/admin.php:824
236
  msgid "Polyglot support"
237
  msgstr ""
238
 
239
+ #: includes/admin/admin.php:825
240
  msgid "bbPress fully supports automatic translation updates."
241
  msgstr ""
242
 
243
+ #: includes/admin/admin.php:829
244
  msgid "User capabilities"
245
  msgstr ""
246
 
247
+ #: includes/admin/admin.php:830
248
  msgid ""
249
  "Roles and capabilities have been swept through, cleaned up, and simplified."
250
  msgstr ""
251
 
252
+ #: includes/admin/admin.php:836 includes/admin/admin.php:940
253
  msgid "Go to Forum Settings"
254
  msgstr ""
255
 
256
+ #: includes/admin/admin.php:858
257
  msgid ""
258
  "Thank you for updating! bbPress %s is waxed, polished, and ready for you to "
259
  "take it for a lap or two around the block!"
260
  msgstr ""
261
 
262
+ #: includes/admin/admin.php:869
263
  msgid "bbPress is created by a worldwide swarm of busy, busy bees."
264
  msgstr ""
265
 
266
+ #: includes/admin/admin.php:871
267
  msgid "Project Leaders"
268
  msgstr ""
269
 
270
+ #: includes/admin/admin.php:876
271
  msgid "Founding Developer"
272
  msgstr ""
273
 
274
+ #: includes/admin/admin.php:881
275
  msgid "Lead Developer"
276
  msgstr ""
277
 
278
+ #: includes/admin/admin.php:886 includes/admin/admin.php:905
279
  msgid "Feature Developer"
280
  msgstr ""
281
 
282
+ #: includes/admin/admin.php:891
283
  msgid "Converter Specialist"
284
  msgstr ""
285
 
286
+ #: includes/admin/admin.php:895
287
  msgid "Contributing Developers"
288
  msgstr ""
289
 
290
+ #: includes/admin/admin.php:900
291
  msgid "Bug Testing"
292
  msgstr ""
293
 
294
+ #: includes/admin/admin.php:909
295
  msgid "Core Contributors to bbPress 2.5"
296
  msgstr ""
297
 
298
+ #: includes/admin/admin.php:966 includes/admin/admin.php:988
299
  msgid "Update Forum"
300
  msgstr ""
301
 
302
+ #: includes/admin/admin.php:977 includes/admin/admin.php:1031
303
  msgid "All done!"
304
  msgstr ""
305
 
306
+ #: includes/admin/admin.php:978 includes/admin/admin.php:1032
307
  msgid "Go Back"
308
  msgstr ""
309
 
310
+ #: includes/admin/admin.php:987
311
  msgid ""
312
  "You can update your forum through this page. Hit the link below to update."
313
  msgstr ""
314
 
315
+ #: includes/admin/admin.php:1057
316
  msgid ""
317
  "Warning! Problem updating %1$s. Your server may not be able to connect to "
318
  "sites running on it. Error message: <em>%2$s</em>"
319
  msgstr ""
320
 
321
+ #: includes/admin/admin.php:1081
322
  msgid ""
323
  "If your browser doesn&#8217;t start loading the next page automatically, "
324
  "click this link:"
325
  msgstr ""
326
 
327
+ #: includes/admin/admin.php:1082
328
  msgid "Next Forums"
329
  msgstr ""
330
 
331
+ #: includes/admin/admin.php:1100
332
  msgid ""
333
  "You can update all the forums on your network through this page. It works by "
334
  "calling the update script of each site automatically. Hit the link below to "
395
  msgid "Starting Conversion"
396
  msgstr ""
397
 
398
+ #: includes/admin/converter.php:248 includes/admin/converter.php:525
399
  msgid "Conversion Complete"
400
  msgstr ""
401
 
402
+ #: includes/admin/converter.php:347
403
  msgid "No data to clean"
404
  msgstr ""
405
 
406
+ #: includes/admin/converter.php:351
407
  msgid "Deleting previously converted data (%1$s - %2$s)"
408
  msgstr ""
409
 
410
+ #: includes/admin/converter.php:367
411
  msgid "No users to convert"
412
  msgstr ""
413
 
414
+ #: includes/admin/converter.php:371
415
  msgid "Converting users (%1$s - %2$s)"
416
  msgstr ""
417
 
418
+ #: includes/admin/converter.php:387
419
  msgid "No passwords to clear"
420
  msgstr ""
421
 
422
+ #: includes/admin/converter.php:391
423
  msgid "Delete users WordPress default passwords (%1$s - %2$s)"
424
  msgstr ""
425
 
426
+ #: includes/admin/converter.php:406
427
  msgid "No forums to convert"
428
  msgstr ""
429
 
430
+ #: includes/admin/converter.php:410
431
  msgid "Converting forums (%1$s - %2$s)"
432
  msgstr ""
433
 
434
+ #: includes/admin/converter.php:421
435
  msgid "No forum parents to convert"
436
  msgstr ""
437
 
438
+ #: includes/admin/converter.php:425
439
  msgid "Calculating forum hierarchy (%1$s - %2$s)"
440
  msgstr ""
441
 
442
+ #: includes/admin/converter.php:436
443
  msgid "No topics to convert"
444
  msgstr ""
445
 
446
+ #: includes/admin/converter.php:440
447
  msgid "Converting topics (%1$s - %2$s)"
448
  msgstr ""
449
 
450
+ #: includes/admin/converter.php:451
451
  msgid "No stickies to stick"
452
  msgstr ""
453
 
454
+ #: includes/admin/converter.php:455
455
  msgid "Calculating topic stickies (%1$s - %2$s)"
456
  msgstr ""
457
 
458
+ #: includes/admin/converter.php:466
459
  msgid "No super stickies to stick"
460
  msgstr ""
461
 
462
+ #: includes/admin/converter.php:470
463
  msgid "Calculating topic super stickies (%1$s - %2$s)"
464
  msgstr ""
465
 
466
+ #: includes/admin/converter.php:481
467
  msgid "No tags to convert"
468
  msgstr ""
469
 
470
+ #: includes/admin/converter.php:485
471
  msgid "Converting topic tags (%1$s - %2$s)"
472
  msgstr ""
473
 
474
+ #: includes/admin/converter.php:496
475
  msgid "No replies to convert"
476
  msgstr ""
477
 
478
+ #: includes/admin/converter.php:500
479
  msgid "Converting replies (%1$s - %2$s)"
480
  msgstr ""
481
 
482
+ #: includes/admin/converter.php:511
483
  msgid "No reply_to parents to convert"
484
  msgstr ""
485
 
486
+ #: includes/admin/converter.php:515
487
  msgid "Calculating reply_to parents (%1$s - %2$s)"
488
  msgstr ""
489
 
845
  msgstr[1] ""
846
 
847
  #: includes/admin/metaboxes.php:84 includes/admin/settings.php:325
848
+ #: includes/replies/template.php:49 includes/replies/template.php:1621
849
  #: includes/topics/template.php:2923
850
  msgid "Reply"
851
  msgid_plural "Replies"
1231
  msgstr ""
1232
 
1233
  #: includes/admin/replies.php:739 includes/admin/topics.php:810
1234
+ #: includes/replies/template.php:2105 includes/topics/template.php:2874
1235
  msgid "Spam"
1236
  msgstr ""
1237
 
1238
  #: includes/admin/replies.php:748 includes/admin/topics.php:818
1239
+ #: includes/replies/template.php:2047 includes/topics/template.php:2630
1240
  msgid "Restore this item from the Trash"
1241
  msgstr ""
1242
 
1243
  #: includes/admin/replies.php:748 includes/admin/topics.php:818
1244
+ #: includes/replies/template.php:2035 includes/topics/template.php:2618
1245
  msgid "Restore"
1246
  msgstr ""
1247
 
1248
  #: includes/admin/replies.php:750 includes/admin/topics.php:820
1249
+ #: includes/replies/template.php:2049 includes/topics/template.php:2632
1250
  msgid "Move this item to the Trash"
1251
  msgstr ""
1252
 
1253
  #: includes/admin/replies.php:750 includes/admin/topics.php:820
1254
+ #: includes/replies/template.php:2034 includes/topics/template.php:2617
1255
  msgid "Trash"
1256
  msgstr ""
1257
 
1258
  #: includes/admin/replies.php:754 includes/admin/topics.php:824
1259
+ #: includes/replies/template.php:2053 includes/topics/template.php:2636
1260
  msgid "Delete this item permanently"
1261
  msgstr ""
1262
 
1938
  msgstr ""
1939
 
1940
  #: includes/admin/tools.php:166
1941
+ msgid "Recalculate the position of each reply"
1942
  msgstr ""
1943
 
1944
  #: includes/admin/tools.php:167
1945
+ msgid "Repair BuddyPress Group Forum relationships"
1946
  msgstr ""
1947
 
1948
  #: includes/admin/tools.php:168
1949
+ msgid "Count topics in each forum"
1950
  msgstr ""
1951
 
1952
  #: includes/admin/tools.php:169
1953
+ msgid "Count replies in each forum"
1954
  msgstr ""
1955
 
1956
  #: includes/admin/tools.php:170
1957
+ msgid "Count replies in each topic"
1958
  msgstr ""
1959
 
1960
  #: includes/admin/tools.php:171
1961
+ msgid "Count voices in each topic"
1962
  msgstr ""
1963
 
1964
  #: includes/admin/tools.php:172
1965
+ msgid "Count spammed & trashed replies in each topic"
1966
  msgstr ""
1967
 
1968
  #: includes/admin/tools.php:173
1969
+ msgid "Count topics for each user"
1970
  msgstr ""
1971
 
1972
  #: includes/admin/tools.php:174
1973
+ msgid "Count replies for each user"
1974
  msgstr ""
1975
 
1976
  #: includes/admin/tools.php:175
1977
+ msgid "Remove trashed topics from user favorites"
1978
  msgstr ""
1979
 
1980
  #: includes/admin/tools.php:176
1981
+ msgid "Remove trashed topics from user subscriptions"
1982
  msgstr ""
1983
 
1984
  #: includes/admin/tools.php:177
1985
+ msgid "Remove trashed forums from user subscriptions"
1986
+ msgstr ""
1987
+
1988
+ #: includes/admin/tools.php:178
1989
  msgid "Remap existing users to default forum roles"
1990
  msgstr ""
1991
 
1992
+ #: includes/admin/tools.php:198
1993
  msgid "Counting the number of replies in each topic&hellip; %s"
1994
  msgstr ""
1995
 
1996
+ #: includes/admin/tools.php:199 includes/admin/tools.php:250
1997
+ #: includes/admin/tools.php:292 includes/admin/tools.php:337
1998
+ #: includes/admin/tools.php:454 includes/admin/tools.php:488
1999
+ #: includes/admin/tools.php:531 includes/admin/tools.php:576
2000
+ #: includes/admin/tools.php:621 includes/admin/tools.php:683
2001
+ #: includes/admin/tools.php:744 includes/admin/tools.php:812
2002
+ #: includes/admin/tools.php:860 includes/admin/tools.php:966
2003
+ #: includes/admin/tools.php:1026 includes/admin/tools.php:1047
2004
+ #: includes/admin/tools.php:1101
2005
  msgid "Failed!"
2006
  msgstr ""
2007
 
2008
+ #: includes/admin/tools.php:233 includes/admin/tools.php:276
2009
+ #: includes/admin/tools.php:302 includes/admin/tools.php:469
2010
+ #: includes/admin/tools.php:514 includes/admin/tools.php:559
2011
+ #: includes/admin/tools.php:604 includes/admin/tools.php:666
2012
+ #: includes/admin/tools.php:727 includes/admin/tools.php:788
2013
+ #: includes/admin/tools.php:950 includes/admin/tools.php:1007
2014
+ #: includes/admin/tools.php:1030 includes/admin/tools.php:1085
2015
+ #: includes/admin/tools.php:1130 includes/admin/tools.php:1186
2016
  msgid "Complete!"
2017
  msgstr ""
2018
 
2019
+ #: includes/admin/tools.php:249
2020
  msgid "Counting the number of voices in each topic&hellip; %s"
2021
  msgstr ""
2022
 
2023
+ #: includes/admin/tools.php:291
2024
  msgid ""
2025
  "Counting the number of spammed and trashed replies in each topic&hellip; %s"
2026
  msgstr ""
2027
 
2028
+ #: includes/admin/tools.php:316
2029
  msgid "Repairing BuddyPress group-forum relationships&hellip; %s"
2030
  msgstr ""
2031
 
2032
+ #: includes/admin/tools.php:417
2033
  msgid "Group Forums"
2034
  msgstr ""
2035
 
2036
+ #: includes/admin/tools.php:418
2037
  msgid "group-forums"
2038
  msgstr ""
2039
 
2040
+ #: includes/admin/tools.php:434
2041
  msgid ""
2042
  "Complete! %s groups updated; %s forums updated; %s forum statuses synced."
2043
  msgstr ""
2044
 
2045
+ #: includes/admin/tools.php:453
2046
  msgid "Counting the number of topics in each forum&hellip; %s"
2047
  msgstr ""
2048
 
2049
+ #: includes/admin/tools.php:487
2050
  msgid "Counting the number of replies in each forum&hellip; %s"
2051
  msgstr ""
2052
 
2053
+ #: includes/admin/tools.php:530
2054
  msgid "Counting the number of topics each user has created&hellip; %s"
2055
  msgstr ""
2056
 
2057
+ #: includes/admin/tools.php:575
2058
  msgid "Counting the number of topics to which each user has replied&hellip; %s"
2059
  msgstr ""
2060
 
2061
+ #: includes/admin/tools.php:620
2062
  msgid "Removing trashed topics from user favorites&hellip; %s"
2063
  msgstr ""
2064
 
2065
+ #: includes/admin/tools.php:650 includes/admin/tools.php:711
2066
+ #: includes/admin/tools.php:772
2067
  msgid "Nothing to remove!"
2068
  msgstr ""
2069
 
2070
+ #: includes/admin/tools.php:682
2071
  msgid "Removing trashed topics from user subscriptions&hellip; %s"
2072
  msgstr ""
2073
 
2074
+ #: includes/admin/tools.php:743
2075
  msgid "Removing trashed forums from user subscriptions&hellip; %s"
2076
  msgstr ""
2077
 
2078
+ #: includes/admin/tools.php:805
2079
  msgid "Remapping forum role for each user on this site&hellip; %s"
2080
  msgstr ""
2081
 
2082
+ #: includes/admin/tools.php:843
2083
  msgid "Complete! %s users updated."
2084
  msgstr ""
2085
 
2086
+ #: includes/admin/tools.php:859
2087
  msgid "Recomputing latest post in every topic and forum&hellip; %s"
2088
  msgstr ""
2089
 
2090
+ #: includes/admin/tools.php:965
2091
  msgid "Repairing the sticky topic to the parent forum relationships&hellip; %s"
2092
  msgstr ""
2093
 
2094
+ #: includes/admin/tools.php:1022
2095
  msgid "Recalculating forum visibility &hellip; %s"
2096
  msgstr ""
2097
 
2098
+ #: includes/admin/tools.php:1046
2099
  msgid "Recalculating the forum for each post &hellip; %s"
2100
  msgstr ""
2101
 
2102
+ #: includes/admin/tools.php:1100
2103
  msgid "Recalculating the topic for each post &hellip; %s"
2104
  msgstr ""
2105
 
2106
+ #: includes/admin/tools.php:1147
2107
+ msgid "Recalculating reply menu order &hellip; %s"
2108
+ msgstr ""
2109
+
2110
+ #: includes/admin/tools.php:1148
2111
+ msgid "No reply positions to recalculate!"
2112
+ msgstr ""
2113
+
2114
+ #: includes/admin/tools.php:1209
2115
  msgid ""
2116
  "Revert your forums back to a brand new installation. This process cannot be "
2117
  "undone."
2118
  msgstr ""
2119
 
2120
+ #: includes/admin/tools.php:1210
2121
  msgid "Backup your database before proceeding."
2122
  msgstr ""
2123
 
2124
+ #: includes/admin/tools.php:1216
2125
  msgid "The following data will be removed:"
2126
  msgstr ""
2127
 
2128
+ #: includes/admin/tools.php:1218 includes/forums/template.php:50
2129
  msgid "All Forums"
2130
  msgstr ""
2131
 
2132
+ #: includes/admin/tools.php:1219 includes/topics/functions.php:3440
2133
  #: includes/topics/template.php:50
2134
  msgid "All Topics"
2135
  msgstr ""
2136
 
2137
+ #: includes/admin/tools.php:1220 includes/replies/functions.php:1995
2138
  #: includes/replies/template.php:50
2139
  msgid "All Replies"
2140
  msgstr ""
2141
 
2142
+ #: includes/admin/tools.php:1221
2143
  msgid "All Topic Tags"
2144
  msgstr ""
2145
 
2146
+ #: includes/admin/tools.php:1222
2147
  msgid "Related Meta Data"
2148
  msgstr ""
2149
 
2150
+ #: includes/admin/tools.php:1223
2151
  msgid "Forum Settings"
2152
  msgstr ""
2153
 
2154
+ #: includes/admin/tools.php:1224
2155
  msgid "Forum Activity"
2156
  msgstr ""
2157
 
2158
+ #: includes/admin/tools.php:1225
2159
  msgid "Forum User Roles"
2160
  msgstr ""
2161
 
2162
+ #: includes/admin/tools.php:1226
2163
  msgid "Importer Helper Data"
2164
  msgstr ""
2165
 
2166
+ #: includes/admin/tools.php:1230
2167
  msgid "Delete imported users?"
2168
  msgstr ""
2169
 
2170
+ #: includes/admin/tools.php:1233 includes/admin/tools.php:1243
2171
  msgid "Say it ain't so!"
2172
  msgstr ""
2173
 
2174
+ #: includes/admin/tools.php:1234
2175
  msgid ""
2176
  "This option will delete all previously imported users, and cannot be undone."
2177
  msgstr ""
2178
 
2179
+ #: includes/admin/tools.php:1235
2180
  msgid ""
2181
  "Note: Resetting without this checked will delete the meta-data necessary to "
2182
  "delete these users."
2183
  msgstr ""
2184
 
2185
+ #: includes/admin/tools.php:1240
2186
  msgid "Are you sure you want to do this?"
2187
  msgstr ""
2188
 
2189
+ #: includes/admin/tools.php:1244
2190
  msgid "This process cannot be undone."
2191
  msgstr ""
2192
 
2193
+ #: includes/admin/tools.php:1245
2194
  msgid "Human sacrifice, dogs and cats living together... mass hysteria!"
2195
  msgstr ""
2196
 
2197
+ #: includes/admin/tools.php:1253
2198
  msgid "Reset bbPress"
2199
  msgstr ""
2200
 
2201
+ #: includes/admin/tools.php:1286
2202
  msgid "Failed"
2203
  msgstr ""
2204
 
2205
+ #: includes/admin/tools.php:1287
2206
  msgid "Success!"
2207
  msgstr ""
2208
 
2209
+ #: includes/admin/tools.php:1294
2210
  msgid "Deleting Posts&hellip; %s"
2211
  msgstr ""
2212
 
2213
+ #: includes/admin/tools.php:1307
2214
  msgid "Deleting Post Meta&hellip; %s"
2215
  msgstr ""
2216
 
2217
+ #: includes/admin/tools.php:1316
2218
  msgid "Deleting Topic Tags&hellip; %s"
2219
  msgstr ""
2220
 
2221
+ #: includes/admin/tools.php:1331
2222
  msgid "Deleting User&hellip; %s"
2223
  msgstr ""
2224
 
2225
+ #: includes/admin/tools.php:1336 includes/admin/tools.php:1344
2226
  msgid "Deleting User Meta&hellip; %s"
2227
  msgstr ""
2228
 
2229
+ #: includes/admin/tools.php:1352
2230
  msgid "Deleting Conversion Table&hellip; %s"
2231
  msgstr ""
2232
 
2233
+ #: includes/admin/tools.php:1364
2234
  msgid "Deleting Settings&hellip; %s"
2235
  msgstr ""
2236
 
2237
+ #: includes/admin/tools.php:1370
2238
  msgid "Deleting Roles and Capabilities&hellip; %s"
2239
  msgstr ""
2240
 
2563
  msgid "Topic draft updated. <a target=\"_blank\" href=\"%s\">Preview topic</a>"
2564
  msgstr ""
2565
 
2566
+ #: includes/admin/users.php:87 includes/admin/users.php:218
2567
  #: templates/default/bbpress/form-user-roles.php:20
2568
  msgid "Forum Role"
2569
  msgstr ""
2581
  msgid "Change"
2582
  msgstr ""
2583
 
2584
+ #: includes/admin/users.php:217
2585
  msgid "Site Role"
2586
  msgstr ""
2587
 
2670
  msgid "<strong>ERROR</strong>: Invalid email address submitted!"
2671
  msgstr ""
2672
 
2673
+ #: includes/common/functions.php:1068
2674
  msgid ""
2675
  "%1$s wrote:\n"
2676
  "\n"
2685
  "Login and visit the topic to unsubscribe from these emails."
2686
  msgstr ""
2687
 
2688
+ #: includes/common/functions.php:1208
2689
  msgid ""
2690
  "%1$s wrote:\n"
2691
  "\n"
2700
  "Login and visit the topic to unsubscribe from these emails."
2701
  msgstr ""
2702
 
2703
+ #: includes/common/functions.php:1949
2704
  msgid ""
2705
  "Conditional query tags do not work before the query is run. Before then, "
2706
  "they always return false."
2734
  msgstr ""
2735
 
2736
  #: includes/common/template.php:2200 includes/forums/template.php:53
2737
+ #: includes/replies/template.php:53 includes/replies/template.php:1910
2738
  #: includes/topics/template.php:53 includes/topics/template.php:2493
2739
  #: templates/default/bbpress/user-details.php:65
2740
  msgid "Edit"
3157
  #: includes/extend/buddypress/groups.php:494
3158
  #: includes/extend/buddypress/notifications.php:161
3159
  #: includes/forums/functions.php:118 includes/forums/functions.php:395
3160
+ #: includes/replies/functions.php:116 includes/replies/functions.php:516
3161
+ #: includes/replies/functions.php:1246 includes/topics/functions.php:122
3162
  #: includes/topics/functions.php:520 includes/topics/functions.php:1153
3163
  #: includes/topics/functions.php:1456 includes/topics/functions.php:1820
3164
  #: includes/topics/functions.php:1859 includes/topics/functions.php:1916
3251
  "capability to read or create new forums in it."
3252
  msgstr ""
3253
 
3254
+ #: includes/forums/functions.php:210 includes/replies/functions.php:284
3255
  #: includes/topics/functions.php:260
3256
  msgid "<strong>ERROR</strong>: Slow down; you move too fast."
3257
  msgstr ""
3445
  msgid "<strong>ERROR</strong>: Forum does not exist."
3446
  msgstr ""
3447
 
3448
+ #: includes/replies/functions.php:227 includes/replies/functions.php:568
3449
  msgid ""
3450
  "<strong>ERROR</strong>: This forum is a category. No replies can be created "
3451
  "in this forum."
3452
  msgstr ""
3453
 
3454
+ #: includes/replies/functions.php:234 includes/replies/functions.php:575
3455
  msgid "<strong>ERROR</strong>: This forum has been closed to new replies."
3456
  msgstr ""
3457
 
3458
+ #: includes/replies/functions.php:240 includes/replies/functions.php:581
3459
  msgid ""
3460
  "<strong>ERROR</strong>: This forum is private and you do not have the "
3461
  "capability to read or create new replies in it."
3462
  msgstr ""
3463
 
3464
+ #: includes/replies/functions.php:246 includes/replies/functions.php:587
3465
  msgid ""
3466
  "<strong>ERROR</strong>: This forum is hidden and you do not have the "
3467
  "capability to read or create new replies in it."
3468
  msgstr ""
3469
 
3470
+ #: includes/replies/functions.php:279 includes/replies/functions.php:611
3471
  msgid "<strong>ERROR</strong>: Your reply cannot be empty."
3472
  msgstr ""
3473
 
3474
+ #: includes/replies/functions.php:289
3475
  msgid ""
3476
  "<strong>ERROR</strong>: Duplicate reply detected; it looks as though "
3477
  "you&#8217;ve already said that!"
3478
  msgstr ""
3479
 
3480
+ #: includes/replies/functions.php:294
3481
  msgid "<strong>ERROR</strong>: Your reply cannot be created at this time."
3482
  msgstr ""
3483
 
3484
+ #: includes/replies/functions.php:318
3485
  msgid "<strong>ERROR</strong>: Topic is closed."
3486
  msgstr ""
3487
 
3488
+ #: includes/replies/functions.php:377 includes/replies/functions.php:702
3489
  msgid ""
3490
  "<strong>ERROR</strong>: There was a problem adding the tags to the topic."
3491
  msgstr ""
3492
 
3493
+ #: includes/replies/functions.php:505
3494
  msgid "<strong>ERROR</strong>: Reply ID not found."
3495
  msgstr ""
3496
 
3497
+ #: includes/replies/functions.php:522
3498
  msgid "<strong>ERROR</strong>: The reply you want to edit was not found."
3499
  msgstr ""
3500
 
3501
+ #: includes/replies/functions.php:533
3502
  msgid "<strong>ERROR</strong>: You do not have permission to edit that reply."
3503
  msgstr ""
3504
 
3505
+ #: includes/replies/functions.php:616
3506
  msgid "<strong>ERROR</strong>: Your reply cannot be edited at this time."
3507
  msgstr ""
3508
 
3509
+ #: includes/replies/functions.php:1223
3510
  msgid "<strong>ERROR</strong>: Reply ID to move not found!"
3511
  msgstr ""
3512
 
3513
+ #: includes/replies/functions.php:1232
3514
  msgid "<strong>ERROR</strong>: The reply you want to move was not found."
3515
  msgstr ""
3516
 
3517
+ #: includes/replies/functions.php:1241
3518
  msgid "<strong>ERROR</strong>: The topic you want to move from was not found."
3519
  msgstr ""
3520
 
3521
+ #: includes/replies/functions.php:1252 includes/topics/functions.php:1164
3522
  #: includes/topics/functions.php:1462
3523
  msgid ""
3524
  "<strong>ERROR</strong>: You do not have the permissions to edit the source "
3525
  "topic."
3526
  msgstr ""
3527
 
3528
+ #: includes/replies/functions.php:1262
3529
  msgid "<strong>ERROR</strong>: You need to choose a valid move option."
3530
  msgstr ""
3531
 
3532
+ #: includes/replies/functions.php:1275 includes/topics/functions.php:1483
3533
  msgid "<strong>ERROR</strong>: Destination topic ID not found!"
3534
  msgstr ""
3535
 
3536
+ #: includes/replies/functions.php:1285
3537
  msgid "<strong>ERROR</strong>: The topic you want to move to was not found!"
3538
  msgstr ""
3539
 
3540
+ #: includes/replies/functions.php:1290 includes/topics/functions.php:1496
3541
  msgid ""
3542
  "<strong>ERROR</strong>: You do not have the permissions to edit the "
3543
  "destination topic!"
3544
  msgstr ""
3545
 
3546
+ #: includes/replies/functions.php:1299 includes/replies/template.php:571
3547
  #: includes/topics/functions.php:1294 includes/topics/functions.php:1652
3548
  #: templates/default/bbpress/form-reply.php:29
3549
  msgid "Reply To: %s"
3550
  msgstr ""
3551
 
3552
+ #: includes/replies/functions.php:1344 includes/topics/functions.php:1533
3553
  msgid ""
3554
  "<strong>ERROR</strong>: There was a problem converting the reply into the "
3555
  "topic. Please try again."
3556
  msgstr ""
3557
 
3558
+ #: includes/replies/functions.php:1349 includes/topics/functions.php:1538
3559
  msgid ""
3560
  "<strong>ERROR</strong>: You do not have the permissions to create new "
3561
  "topics. The reply could not be converted into a topic."
3562
  msgstr ""
3563
 
3564
+ #: includes/replies/functions.php:1531
3565
  msgid "<strong>ERROR:</strong> You do not have the permission to do that!"
3566
  msgstr ""
3567
 
3568
+ #: includes/replies/functions.php:1544
3569
  msgid ""
3570
  "<strong>ERROR</strong>: There was a problem unmarking the reply as spam!"
3571
  msgstr ""
3572
 
3573
+ #: includes/replies/functions.php:1544
3574
  msgid "<strong>ERROR</strong>: There was a problem marking the reply as spam!"
3575
  msgstr ""
3576
 
3577
+ #: includes/replies/functions.php:1563
3578
  msgid "<strong>ERROR</strong>: There was a problem trashing the reply!"
3579
  msgstr ""
3580
 
3581
+ #: includes/replies/functions.php:1571
3582
  msgid "<strong>ERROR</strong>: There was a problem untrashing the reply!"
3583
  msgstr ""
3584
 
3585
+ #: includes/replies/functions.php:1579
3586
  msgid "<strong>ERROR</strong>: There was a problem deleting the reply!"
3587
  msgstr ""
3588
 
3589
+ #: includes/replies/functions.php:1993
3590
  msgid "All Posts"
3591
  msgstr ""
3592
 
3593
+ #: includes/replies/functions.php:2035 includes/topics/functions.php:3465
3594
  msgid "Replies: %s"
3595
  msgstr ""
3596
 
3650
  msgid "Visit %s's website"
3651
  msgstr ""
3652
 
3653
+ #: includes/replies/template.php:1695
3654
  msgid "Cancel"
3655
  msgstr ""
3656
 
3657
+ #: includes/replies/template.php:2036 includes/topics/template.php:2619
3658
  #: templates/default/bbpress/form-topic-tag.php:88
3659
  #: templates/default/bbpress/form-topic-tag.php:101
3660
  msgid "Delete"
3661
  msgstr ""
3662
 
3663
+ #: includes/replies/template.php:2053 includes/topics/template.php:2636
3664
  msgid "Are you sure you want to delete that permanently?"
3665
  msgstr ""
3666
 
3667
+ #: includes/replies/template.php:2106 includes/topics/template.php:2875
3668
  msgid "Unspam"
3669
  msgstr ""
3670
 
3671
+ #: includes/replies/template.php:2169
3672
  msgid "Move"
3673
  msgstr ""
3674
 
3675
+ #: includes/replies/template.php:2170
3676
  msgid "Move this reply"
3677
  msgstr ""
3678
 
3679
+ #: includes/replies/template.php:2236
3680
  msgid "Split"
3681
  msgstr ""
3682
 
3683
+ #: includes/replies/template.php:2237
3684
  msgid "Split the topic from this reply"
3685
  msgstr ""
3686
 
3687
+ #: includes/replies/template.php:2343
3688
  msgid "Viewing %1$s reply thread"
3689
  msgid_plural "Viewing %1$s reply threads"
3690
  msgstr[0] ""
3691
  msgstr[1] ""
3692
 
3693
+ #: includes/replies/template.php:2350
3694
  msgid "Viewing %1$s reply"
3695
  msgid_plural "Viewing %1$s replies"
3696
  msgstr[0] ""
3697
  msgstr[1] ""
3698
 
3699
+ #: includes/replies/template.php:2354
3700
  msgid "Viewing %2$s replies (of %4$s total)"
3701
  msgid_plural "Viewing %1$s replies - %2$s through %3$s (of %4$s total)"
3702
  msgstr[0] ""
3703
  msgstr[1] ""
3704
 
3705
+ #: includes/replies/template.php:2362
3706
  msgid "Viewing %1$s post"
3707
  msgid_plural "Viewing %1$s posts"
3708
  msgstr[0] ""
3709
  msgstr[1] ""
3710
 
3711
+ #: includes/replies/template.php:2366
3712
  msgid "Viewing %2$s post (of %4$s total)"
3713
  msgid_plural "Viewing %1$s posts - %2$s through %3$s (of %4$s total)"
3714
  msgstr[0] ""
4939
  msgid "bbPress"
4940
  msgstr ""
4941
 
4942
+ #. #-#-#-#-# plugin.pot (bbPress 2.5.5) #-#-#-#-#
4943
  #. Plugin URI of the plugin/theme
4944
+ #. #-#-#-#-# plugin.pot (bbPress 2.5.5) #-#-#-#-#
4945
  #. Author URI of the plugin/theme
4946
  msgid "http://bbpress.org"
4947
  msgstr ""
4953
  #. Author of the plugin/theme
4954
  msgid "The bbPress Community"
4955
  msgstr ""
4956
+
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: matt, johnjamesjacoby, jmdodd, netweb
3
  Tags: forums, discussion, support, theme, akismet, multisite
4
  Requires at least: 3.6
5
  Tested up to: 4.1
6
- Stable tag: 2.5.4
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -42,6 +42,11 @@ We're keeping things as small and light as possible while still allowing for gre
42
 
43
  == Changelog ==
44
 
 
 
 
 
 
45
  = 2.5.4 =
46
  * Fix reply editing causing polluted hierarchy
47
  * Add tool for repairing reply positions within topics
3
  Tags: forums, discussion, support, theme, akismet, multisite
4
  Requires at least: 3.6
5
  Tested up to: 4.1
6
+ Stable tag: 2.5.5
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
42
 
43
  == Changelog ==
44
 
45
+ = 2.5.5 =
46
+ * Improved bulk editing of users
47
+ * Improved suggesting of topics & authors for moderators
48
+ * Improved converter tool access
49
+
50
  = 2.5.4 =
51
  * Fix reply editing causing polluted hierarchy
52
  * Add tool for repairing reply positions within topics