bbPress - Version 2.0-beta-3b

Version Description

  • Fix regression in forum index theme compatibility template
  • Audit usage of get strings for moderator level and above users
Download this release

Release Info

Developer johnjamesjacoby
Plugin Icon 128x128 bbPress
Version 2.0-beta-3b
Comparing to
See all releases

Code changes from version 2.0-beta-3 to 2.0-beta-3b

bbp-includes/bbp-common-functions.php CHANGED
@@ -186,20 +186,19 @@ function bbp_show_lead_topic( $show_lead = false ) {
186
  /**
187
  * Append 'view=all' to query string if it's already there from referer
188
  *
 
 
189
  * @param string $original_link Original Link to be modified
 
190
  * @uses current_user_can() To check if the current user can moderate
191
  * @uses add_query_arg() To add args to the url
192
  * @uses apply_filters() Calls 'bbp_add_view_all' with the link and original link
193
  * @return string The link with 'view=all' appended if necessary
194
  */
195
- function bbp_add_view_all( $original_link ) {
196
-
197
- // Bail if empty
198
- if ( empty( $original_link ) )
199
- return $original_link;
200
 
201
  // Are we appending the view=all vars?
202
- if ( ( !empty( $_GET['view'] ) && ( 'all' == $_GET['view'] ) && current_user_can( 'moderate' ) ) )
203
  $link = add_query_arg( array( 'view' => 'all' ), $original_link );
204
  else
205
  $link = $original_link;
@@ -207,6 +206,41 @@ function bbp_add_view_all( $original_link ) {
207
  return apply_filters( 'bbp_add_view_all', $link, $original_link );
208
  }
209
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
210
  /**
211
  * Assist pagination by returning correct page number
212
  *
@@ -1080,7 +1114,7 @@ function bbp_get_public_child_ids( $parent_id = 0, $post_type = 'post' ) {
1080
  return false;
1081
 
1082
  // The ID of the cached query
1083
- $cache_id = 'bbp_parent_' . $parent_id . '_type_' . $post_type . '_child_ids';
1084
  $post_status = array( 'publish' );
1085
 
1086
  // Add closed status if topic post type
@@ -1099,6 +1133,66 @@ function bbp_get_public_child_ids( $parent_id = 0, $post_type = 'post' ) {
1099
  // Filter and return
1100
  return apply_filters( 'bbp_get_public_child_ids', $child_ids, (int) $parent_id, $post_type );
1101
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1102
 
1103
  /** Feeds *********************************************************************/
1104
 
186
  /**
187
  * Append 'view=all' to query string if it's already there from referer
188
  *
189
+ * @since bbPress (r3325)
190
+ *
191
  * @param string $original_link Original Link to be modified
192
+ * @param bool $force Override bbp_get_view_all() check
193
  * @uses current_user_can() To check if the current user can moderate
194
  * @uses add_query_arg() To add args to the url
195
  * @uses apply_filters() Calls 'bbp_add_view_all' with the link and original link
196
  * @return string The link with 'view=all' appended if necessary
197
  */
198
+ function bbp_add_view_all( $original_link = '', $force = false ) {
 
 
 
 
199
 
200
  // Are we appending the view=all vars?
201
+ if ( bbp_get_view_all() || !empty( $force ) )
202
  $link = add_query_arg( array( 'view' => 'all' ), $original_link );
203
  else
204
  $link = $original_link;
206
  return apply_filters( 'bbp_add_view_all', $link, $original_link );
207
  }
208
 
209
+ /**
210
+ * Remove 'view=all' from query string
211
+ *
212
+ * @since bbPress (r3325)
213
+ *
214
+ * @param string $original_link Original Link to be modified
215
+ * @uses current_user_can() To check if the current user can moderate
216
+ * @uses add_query_arg() To add args to the url
217
+ * @uses apply_filters() Calls 'bbp_add_view_all' with the link and original link
218
+ * @return string The link with 'view=all' appended if necessary
219
+ */
220
+ function bbp_remove_view_all( $original_link = '' ) {
221
+
222
+ // Are we appending the view=all vars?
223
+ $link = remove_query_arg( 'view', $original_link );
224
+
225
+ return apply_filters( 'bbp_add_view_all', $link, $original_link );
226
+ }
227
+
228
+ /**
229
+ * If current user can and is vewing all topics/replies
230
+ *
231
+ * @since bbPress (r3325)
232
+ *
233
+ * @uses current_user_can() To check if the current user can moderate
234
+ * @uses apply_filters() Calls 'bbp_get_view_all' with the link and original link
235
+ * @return bool Whether current user can and is viewing all
236
+ */
237
+ function bbp_get_view_all( $cap = 'moderate' ) {
238
+
239
+ $retval = ( ( !empty( $_GET['view'] ) && ( 'all' == $_GET['view'] ) && current_user_can( $cap ) ) );
240
+
241
+ return apply_filters( 'bbp_get_view_all', (bool) $retval );
242
+ }
243
+
244
  /**
245
  * Assist pagination by returning correct page number
246
  *
1114
  return false;
1115
 
1116
  // The ID of the cached query
1117
+ $cache_id = 'bbp_parent_public_' . $parent_id . '_type_' . $post_type . '_child_ids';
1118
  $post_status = array( 'publish' );
1119
 
1120
  // Add closed status if topic post type
1133
  // Filter and return
1134
  return apply_filters( 'bbp_get_public_child_ids', $child_ids, (int) $parent_id, $post_type );
1135
  }
1136
+ /**
1137
+ * Query the DB and get a the child id's of all children
1138
+ *
1139
+ * @param int $parent_id Parent id
1140
+ * @param string $post_type Post type. Defaults to 'post'
1141
+ * @uses bbp_get_topic_post_type() To get the topic post type
1142
+ * @uses wp_cache_get() To check if there is a cache of the children
1143
+ * @uses wpdb::prepare() To prepare the query
1144
+ * @uses wpdb::get_col() To get the result of the query in an array
1145
+ * @uses wp_cache_set() To set the cache for future use
1146
+ * @uses apply_filters() Calls 'bbp_get_public_child_ids' with the child ids,
1147
+ * parent id and post type
1148
+ * @return array The array of children
1149
+ */
1150
+ function bbp_get_all_child_ids( $parent_id = 0, $post_type = 'post' ) {
1151
+ global $wpdb, $bbp;
1152
+
1153
+ // Bail if nothing passed
1154
+ if ( empty( $parent_id ) )
1155
+ return false;
1156
+
1157
+ // The ID of the cached query
1158
+ $cache_id = 'bbp_parent_all_' . $parent_id . '_type_' . $post_type . '_child_ids';
1159
+ $post_status = array( 'publish' );
1160
+
1161
+ // Extra post statuses based on post type
1162
+ switch ( $post_type ) {
1163
+
1164
+ // Forum
1165
+ case bbp_get_forum_post_type() :
1166
+ $post_status[] = 'private';
1167
+ $post_status[] = $bbp->hidden_status_id;
1168
+ break;
1169
+
1170
+ // Topic
1171
+ case bbp_get_topic_post_type() :
1172
+ $post_status[] = $bbp->closed_status_id;
1173
+ $post_status[] = $bbp->trash_status_id;
1174
+ $post_status[] = $bbp->spam_status_id;
1175
+ break;
1176
+
1177
+ // Reply
1178
+ case bbp_get_reply_post_type() :
1179
+ $post_status[] = $bbp->trash_status_id;
1180
+ $post_status[] = $bbp->spam_status_id;
1181
+ break;
1182
+ }
1183
+
1184
+ // Join post statuses together
1185
+ $post_status = "'" . join( "', '", $post_status ) . "'";
1186
+
1187
+ // Check for cache and set if needed
1188
+ if ( !$child_ids = wp_cache_get( $cache_id, 'bbpress' ) ) {
1189
+ $child_ids = $wpdb->get_col( $wpdb->prepare( "SELECT ID FROM {$wpdb->posts} WHERE post_parent = %d AND post_status IN ( {$post_status} ) AND post_type = '%s' ORDER BY ID DESC;", $parent_id, $post_type ) );
1190
+ wp_cache_set( $cache_id, $child_ids, 'bbpress' );
1191
+ }
1192
+
1193
+ // Filter and return
1194
+ return apply_filters( 'bbp_get_all_child_ids', $child_ids, (int) $parent_id, $post_type );
1195
+ }
1196
 
1197
  /** Feeds *********************************************************************/
1198
 
bbp-includes/bbp-common-template.php CHANGED
@@ -364,7 +364,7 @@ function bbp_is_user_home() {
364
  if ( empty( $bbp->displayed_user ) )
365
  return false;
366
 
367
- return (bool) $bbp->current_user->ID == $bbp->displayed_user->ID;
368
  }
369
 
370
  /**
364
  if ( empty( $bbp->displayed_user ) )
365
  return false;
366
 
367
+ return (bool) ( (int) $bbp->current_user->ID == (int) $bbp->displayed_user->ID );
368
  }
369
 
370
  /**
bbp-includes/bbp-core-compatibility.php CHANGED
@@ -491,23 +491,23 @@ function bbp_get_topic_split_template() {
491
  $post_type = bbp_get_topic_post_type();
492
  $templates = array(
493
 
494
- // Topic Split Split
495
  'single-' . $post_type . '-split.php',
496
  'bbpress/single-' . $post_type . '-split.php',
497
  'forums/single-' . $post_type . '-split.php',
498
 
499
- // Action Split Split
500
  'single-action-split-merge.php',
501
  'bbpress/single-action-split-merge.php',
502
  'forums/single-action-split-merge.php',
503
 
504
- // Action Split Split
505
  'action-split-merge.php',
506
  'bbpress/action-split-merge.php',
507
  'forums/action-split-merge.php'
508
  );
509
 
510
- $templates = apply_filters( 'bbp_get_topic_edit_template', $templates );
511
  $templates = bbp_set_theme_compat_templates( $templates );
512
 
513
  $template = locate_template( $templates, false, false );
@@ -531,23 +531,23 @@ function bbp_get_topic_merge_template() {
531
  $post_type = bbp_get_topic_post_type();
532
  $templates = array(
533
 
534
- // Topic Split Merge
535
  'single-' . $post_type . '-merge.php',
536
  'bbpress/single-' . $post_type . '-merge.php',
537
  'forums/single-' . $post_type . '-merge.php',
538
 
539
- // Action Split Merge
540
  'single-action-split-merge.php',
541
  'bbpress/single-action-split-merge.php',
542
  'forums/single-action-split-merge.php',
543
 
544
- // Action Split Merge
545
  'action-split-merge.php',
546
  'bbpress/action-split-merge.php',
547
  'forums/action-split-merge.php'
548
  );
549
 
550
- $templates = apply_filters( 'bbp_get_topic_edit_template', $templates );
551
  $templates = bbp_set_theme_compat_templates( $templates );
552
 
553
  $template = locate_template( $templates, false, false );
491
  $post_type = bbp_get_topic_post_type();
492
  $templates = array(
493
 
494
+ // Topic Split
495
  'single-' . $post_type . '-split.php',
496
  'bbpress/single-' . $post_type . '-split.php',
497
  'forums/single-' . $post_type . '-split.php',
498
 
499
+ // Action Split
500
  'single-action-split-merge.php',
501
  'bbpress/single-action-split-merge.php',
502
  'forums/single-action-split-merge.php',
503
 
504
+ // Action Split
505
  'action-split-merge.php',
506
  'bbpress/action-split-merge.php',
507
  'forums/action-split-merge.php'
508
  );
509
 
510
+ $templates = apply_filters( 'bbp_get_topic_split_template', $templates );
511
  $templates = bbp_set_theme_compat_templates( $templates );
512
 
513
  $template = locate_template( $templates, false, false );
531
  $post_type = bbp_get_topic_post_type();
532
  $templates = array(
533
 
534
+ // Topic Merge
535
  'single-' . $post_type . '-merge.php',
536
  'bbpress/single-' . $post_type . '-merge.php',
537
  'forums/single-' . $post_type . '-merge.php',
538
 
539
+ // Action Merge
540
  'single-action-split-merge.php',
541
  'bbpress/single-action-split-merge.php',
542
  'forums/single-action-split-merge.php',
543
 
544
+ // Action Merge
545
  'action-split-merge.php',
546
  'bbpress/action-split-merge.php',
547
  'forums/action-split-merge.php'
548
  );
549
 
550
+ $templates = apply_filters( 'bbp_get_topic_merge_template', $templates );
551
  $templates = bbp_set_theme_compat_templates( $templates );
552
 
553
  $template = locate_template( $templates, false, false );
bbp-includes/bbp-forum-template.php CHANGED
@@ -1079,17 +1079,25 @@ function bbp_forum_topics_link( $forum_id = 0 ) {
1079
  $topics = sprintf( _n( '%s topic', '%s topics', $topics, 'bbpress' ), $topics );
1080
  $retval = '';
1081
 
1082
- if ( !empty( $_GET['view'] ) && 'all' == $_GET['view'] && current_user_can( 'edit_others_topics' ) )
1083
- $retval .= "<a href='" . esc_url( remove_query_arg( array( 'view' => 'all' ), bbp_get_forum_permalink( $forum_id ) ) ) . "'>$topics</a>";
 
1084
  else
1085
  $retval .= $topics;
1086
 
1087
- if ( current_user_can( 'edit_others_topics' ) && $deleted = bbp_get_forum_hidden_topic_count( $forum_id ) ) {
1088
- $extra = sprintf( __( ' + %d more', 'bbpress' ), $deleted );
1089
- if ( !empty( $_GET['view'] ) && 'all' == $_GET['view'] )
 
 
 
 
 
1090
  $retval .= " $extra";
 
 
1091
  else
1092
- $retval .= " <a href='" . esc_url( add_query_arg( array( 'view' => 'all' ) ) ) . "'>$extra</a>";
1093
  }
1094
 
1095
  return apply_filters( 'bbp_get_forum_topics_link', $retval, $forum_id );
1079
  $topics = sprintf( _n( '%s topic', '%s topics', $topics, 'bbpress' ), $topics );
1080
  $retval = '';
1081
 
1082
+ // First link never has view=all
1083
+ if ( bbp_get_view_all( 'edit_others_topics' ) )
1084
+ $retval .= "<a href='" . esc_url( bbp_remove_view_all( bbp_get_forum_permalink( $forum_id ) ) ) . "'>$topics</a>";
1085
  else
1086
  $retval .= $topics;
1087
 
1088
+ // This forum has hidden topics
1089
+ if ( current_user_can( 'edit_others_topics' ) && ( $deleted = bbp_get_forum_hidden_topic_count( $forum_id ) ) ) {
1090
+
1091
+ // Extra text
1092
+ $extra = sprintf( __( ' (+ %d hidden)', 'bbpress' ), $deleted );
1093
+
1094
+ // No link
1095
+ if ( bbp_get_view_all() )
1096
  $retval .= " $extra";
1097
+
1098
+ // Link
1099
  else
1100
+ $retval .= " <a href='" . esc_url( bbp_add_view_all( bbp_get_forum_permalink( $forum_id ), true ) ) . "'>$extra</a>";
1101
  }
1102
 
1103
  return apply_filters( 'bbp_get_forum_topics_link', $retval, $forum_id );
bbp-includes/bbp-reply-functions.php CHANGED
@@ -313,18 +313,11 @@ function bbp_new_reply_handler() {
313
  // Redirect to
314
  $redirect_to = !empty( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : '';
315
 
316
- // View all?
317
- $count_hidden = (bool) ( !empty( $_GET['view'] ) && ( 'all' == $_GET['view'] ) || ( $reply_data['post_status'] == $bbp->trash_status_id ) );
318
-
319
  // Get the reply URL
320
- $reply_url = bbp_get_reply_url( $reply_id, $count_hidden, $redirect_to );
321
-
322
- // Add view all?
323
- if ( !empty( $count_hidden ) )
324
- $reply_url = add_query_arg( array( 'view' => 'all' ), $reply_url );
325
 
326
  // Allow to be filtered
327
- $reply_url = apply_filters( 'bbp_new_reply_redirect_to', $reply_url, $count_hidden, $redirect_to );
328
 
329
  /** Successful Save *******************************************/
330
 
@@ -545,18 +538,11 @@ function bbp_edit_reply_handler() {
545
  // Redirect to
546
  $redirect_to = !empty( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : '';
547
 
548
- // View all?
549
- $count_hidden = (bool) ( !empty( $_GET['view'] ) && ( 'all' == $_GET['view'] ) );
550
-
551
  // Get the reply URL
552
- $reply_url = bbp_get_reply_url( $reply_id, $count_hidden, $redirect_to );
553
-
554
- // Add view all?
555
- if ( !empty( $count_hidden ) )
556
- $reply_url = add_query_arg( array( 'view' => 'all' ), $reply_url );
557
 
558
  // Allow to be filtered
559
- $reply_url = apply_filters( 'bbp_edit_reply_redirect_to', $reply_url, $count_hidden, $redirect_to );
560
 
561
  /** Successful Edit *******************************************/
562
 
@@ -934,7 +920,7 @@ function bbp_toggle_reply_handler() {
934
  if ( ( false != $success ) && !is_wp_error( $success ) ) {
935
 
936
  // Redirect back to the reply
937
- $redirect = add_query_arg( array( 'view' => 'all' ), bbp_get_reply_url( $reply_id, true ) );
938
  wp_redirect( $redirect );
939
 
940
  // For good measure
313
  // Redirect to
314
  $redirect_to = !empty( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : '';
315
 
 
 
 
316
  // Get the reply URL
317
+ $reply_url = bbp_get_reply_url( $reply_id, $redirect_to );
 
 
 
 
318
 
319
  // Allow to be filtered
320
+ $reply_url = apply_filters( 'bbp_new_reply_redirect_to', $reply_url, $redirect_to );
321
 
322
  /** Successful Save *******************************************/
323
 
538
  // Redirect to
539
  $redirect_to = !empty( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : '';
540
 
 
 
 
541
  // Get the reply URL
542
+ $reply_url = bbp_get_reply_url( $reply_id, $redirect_to );
 
 
 
 
543
 
544
  // Allow to be filtered
545
+ $reply_url = apply_filters( 'bbp_edit_reply_redirect_to', $reply_url, $redirect_to );
546
 
547
  /** Successful Edit *******************************************/
548
 
920
  if ( ( false != $success ) && !is_wp_error( $success ) ) {
921
 
922
  // Redirect back to the reply
923
+ $redirect = bbp_get_reply_url( $reply_id );
924
  wp_redirect( $redirect );
925
 
926
  // For good measure
bbp-includes/bbp-reply-template.php CHANGED
@@ -86,7 +86,7 @@ function bbp_has_replies( $args = '' ) {
86
  );
87
 
88
  // What are the default allowed statuses (based on user caps)
89
- if ( !empty( $_GET['view'] ) && ( 'all' == $_GET['view'] && current_user_can( 'edit_others_replies' ) ) )
90
  $default_status = join( ',', array( 'publish', $bbp->closed_status_id, $bbp->spam_status_id, 'trash' ) );
91
  }
92
 
@@ -161,7 +161,7 @@ function bbp_has_replies( $args = '' ) {
161
  'prev_text' => '&larr;',
162
  'next_text' => '&rarr;',
163
  'mid_size' => 1,
164
- 'add_args' => ( !empty( $_GET['view'] ) && 'all' == $_GET['view'] ) ? array( 'view' => 'all' ) : false
165
  ) );
166
 
167
  // Add pagination to query object
@@ -343,10 +343,6 @@ function bbp_reply_url( $reply_id = 0 ) {
343
  * @since bbPress (r2679)
344
  *
345
  * @param int $reply_id Optional. Reply id
346
- * @param bool $count_hidden Optional. Count hidden (trashed/spammed)
347
- * replies? If $_GET['view'] == all, it is
348
- * automatically set to true. To override
349
- * this, set $count_hidden = (int) -1
350
  * @param $string $redirect_to Optional. Pass a redirect value for use with
351
  * shortcodes and other fun things.
352
  * @uses bbp_get_reply_id() To get the reply id
@@ -361,14 +357,14 @@ function bbp_reply_url( $reply_id = 0 ) {
361
  * reply id and bool count hidden
362
  * @return string Link to reply relative to paginated topic
363
  */
364
- function bbp_get_reply_url( $reply_id = 0, $count_hidden = false, $redirect_to = '' ) {
365
  global $bbp, $wp_rewrite;
366
 
367
  // Set needed variables
368
- $reply_id = bbp_get_reply_id ( $reply_id );
369
- $topic_id = bbp_get_reply_topic_id ( $reply_id );
370
- $topic_url = bbp_get_topic_permalink( $topic_id, $redirect_to );
371
- $reply_position = bbp_get_reply_position ( $reply_id );
372
 
373
  // Check if in query with pagination
374
  $reply_page = ceil( $reply_position / get_option( '_bbp_replies_per_page', 15 ) );
@@ -396,7 +392,11 @@ function bbp_reply_url( $reply_id = 0 ) {
396
  }
397
  }
398
 
399
- return apply_filters( 'bbp_get_reply_url', $url, $reply_id, $count_hidden );
 
 
 
 
400
  }
401
 
402
  /**
@@ -1141,17 +1141,19 @@ function bbp_reply_forum_id( $reply_id = 0 ) {
1141
  * @since bbPress (r2984)
1142
  *
1143
  * @param int $reply_id Optional. Reply id
 
1144
  * @uses bbp_get_reply_position() To get the reply position
1145
  */
1146
- function bbp_reply_position( $reply_id = 0 ) {
1147
- echo bbp_get_reply_position( $reply_id );
1148
  }
1149
  /**
1150
  * Return the numeric position of a reply within a topic
1151
  *
1152
  * @since bbPress (r2984)
1153
  *
1154
- * @param int $reply_id
 
1155
  * @uses bbp_get_reply_id() To get the reply id
1156
  * @uses bbp_get_reply_topic_id() Get the topic id of the reply id
1157
  * @uses bbp_get_topic_reply_count() To get the topic reply count
@@ -1162,18 +1164,29 @@ function bbp_reply_position( $reply_id = 0 ) {
1162
  * position, reply id and topic id
1163
  * @return int Reply position
1164
  */
1165
- function bbp_get_reply_position( $reply_id = 0 ) {
1166
 
1167
  // Get required data
1168
- $reply_position = 0;
1169
- $reply_id = bbp_get_reply_id ( $reply_id );
1170
- $topic_id = bbp_get_reply_topic_id( $reply_id );
 
 
 
 
 
1171
 
1172
  // Make sure the topic has replies before running another query
1173
  if ( $reply_count = bbp_get_topic_reply_count( $topic_id ) ) {
1174
 
 
 
 
 
 
 
1175
  // Get reply id's
1176
- if ( $topic_replies = bbp_get_public_child_ids( $topic_id, bbp_get_reply_post_type() ) ) {
1177
 
1178
  // Reverse replies array and search for current reply position
1179
  $topic_replies = array_reverse( $topic_replies );
86
  );
87
 
88
  // What are the default allowed statuses (based on user caps)
89
+ if ( bbp_get_view_all( 'edit_others_replies' ) )
90
  $default_status = join( ',', array( 'publish', $bbp->closed_status_id, $bbp->spam_status_id, 'trash' ) );
91
  }
92
 
161
  'prev_text' => '&larr;',
162
  'next_text' => '&rarr;',
163
  'mid_size' => 1,
164
+ 'add_args' => ( bbp_get_view_all() ) ? array( 'view' => 'all' ) : false
165
  ) );
166
 
167
  // Add pagination to query object
343
  * @since bbPress (r2679)
344
  *
345
  * @param int $reply_id Optional. Reply id
 
 
 
 
346
  * @param $string $redirect_to Optional. Pass a redirect value for use with
347
  * shortcodes and other fun things.
348
  * @uses bbp_get_reply_id() To get the reply id
357
  * reply id and bool count hidden
358
  * @return string Link to reply relative to paginated topic
359
  */
360
+ function bbp_get_reply_url( $reply_id = 0, $redirect_to = '' ) {
361
  global $bbp, $wp_rewrite;
362
 
363
  // Set needed variables
364
+ $reply_id = bbp_get_reply_id ( $reply_id );
365
+ $topic_id = bbp_get_reply_topic_id ( $reply_id );
366
+ $topic_url = bbp_get_topic_permalink( $topic_id, $redirect_to );
367
+ $reply_position = bbp_get_reply_position ( $reply_id, $topic_id );
368
 
369
  // Check if in query with pagination
370
  $reply_page = ceil( $reply_position / get_option( '_bbp_replies_per_page', 15 ) );
392
  }
393
  }
394
 
395
+ // Add topic view query arg back to end if it is set
396
+ if ( bbp_get_view_all() )
397
+ $url = bbp_add_view_all( $url );
398
+
399
+ return apply_filters( 'bbp_get_reply_url', $url, $reply_id, $redirect_to );
400
  }
401
 
402
  /**
1141
  * @since bbPress (r2984)
1142
  *
1143
  * @param int $reply_id Optional. Reply id
1144
+ * @param int $topic_id Optional. Topic id
1145
  * @uses bbp_get_reply_position() To get the reply position
1146
  */
1147
+ function bbp_reply_position( $reply_id = 0, $topic_id = 0 ) {
1148
+ echo bbp_get_reply_position( $reply_id, $topic_id );
1149
  }
1150
  /**
1151
  * Return the numeric position of a reply within a topic
1152
  *
1153
  * @since bbPress (r2984)
1154
  *
1155
+ * @param int $reply_id Optional. Reply id
1156
+ * @param int $topic_id Optional. Topic id
1157
  * @uses bbp_get_reply_id() To get the reply id
1158
  * @uses bbp_get_reply_topic_id() Get the topic id of the reply id
1159
  * @uses bbp_get_topic_reply_count() To get the topic reply count
1164
  * position, reply id and topic id
1165
  * @return int Reply position
1166
  */
1167
+ function bbp_get_reply_position( $reply_id = 0, $topic_id = 0 ) {
1168
 
1169
  // Get required data
1170
+ $reply_position = 0;
1171
+ $reply_id = bbp_get_reply_id( $reply_id );
1172
+
1173
+ // Get topic id
1174
+ if ( !empty( $topic_id ) )
1175
+ $topic_id = bbp_get_topic_id( $topic_id );
1176
+ else
1177
+ $topic_id = bbp_get_reply_topic_id( $reply_id );
1178
 
1179
  // Make sure the topic has replies before running another query
1180
  if ( $reply_count = bbp_get_topic_reply_count( $topic_id ) ) {
1181
 
1182
+ // Are we counting hidden replies too?
1183
+ if ( bbp_get_view_all() )
1184
+ $topic_replies = bbp_get_all_child_ids ( $topic_id, bbp_get_reply_post_type() );
1185
+ else
1186
+ $topic_replies = bbp_get_public_child_ids( $topic_id, bbp_get_reply_post_type() );
1187
+
1188
  // Get reply id's
1189
+ if ( !empty( $topic_replies ) ) {
1190
 
1191
  // Reverse replies array and search for current reply position
1192
  $topic_replies = array_reverse( $topic_replies );
bbp-includes/bbp-topic-functions.php CHANGED
@@ -249,18 +249,15 @@ function bbp_new_topic_handler() {
249
  // Redirect to
250
  $redirect_to = !empty( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : '';
251
 
252
- // View all?
253
- $count_hidden = (bool) ( !empty( $_GET['view'] ) && ( 'all' == $_GET['view'] ) || ( $topic_data['post_status'] == $bbp->trash_status_id ) );
254
-
255
  // Get the topic URL
256
  $topic_url = bbp_get_topic_permalink( $topic_id, $redirect_to );
257
 
258
  // Add view all?
259
- if ( !empty( $count_hidden ) )
260
- $topic_url = add_query_arg( array( 'view' => 'all' ), $topic_url );
261
 
262
  // Allow to be filtered
263
- $topic_url = apply_filters( 'bbp_new_topic_redirect_to', $topic_url, $count_hidden, $redirect_to );
264
 
265
  /** Successful Save *******************************************/
266
 
@@ -525,14 +522,14 @@ function bbp_edit_topic_handler() {
525
  $redirect_to = !empty( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : '';
526
 
527
  // View all?
528
- $count_hidden = (bool) ( !empty( $_GET['view'] ) && ( 'all' == $_GET['view'] ) );
529
 
530
  // Get the topic URL
531
  $topic_url = bbp_get_topic_permalink( $topic_id, $redirect_to );
532
 
533
  // Add view all?
534
  if ( !empty( $count_hidden ) )
535
- $topic_url = add_query_arg( array( 'view' => 'all' ), $topic_url );
536
 
537
  // Allow to be filtered
538
  $topic_url = apply_filters( 'bbp_edit_topic_redirect_to', $topic_url, $count_hidden, $redirect_to );
@@ -1698,12 +1695,12 @@ function bbp_toggle_topic_handler() {
1698
  if ( false != $success && !is_wp_error( $success ) ) {
1699
 
1700
  // Redirect back to the topic's forum
1701
- if ( isset( $sub_action ) && 'delete' == $sub_action )
1702
  $redirect = bbp_get_forum_permalink( $success->post_parent );
1703
 
1704
  // Redirect back to the topic
1705
  else
1706
- $redirect = add_query_arg( array( 'view' => 'all' ), bbp_get_topic_permalink( $topic_id ) );
1707
 
1708
  wp_redirect( $redirect );
1709
 
249
  // Redirect to
250
  $redirect_to = !empty( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : '';
251
 
 
 
 
252
  // Get the topic URL
253
  $topic_url = bbp_get_topic_permalink( $topic_id, $redirect_to );
254
 
255
  // Add view all?
256
+ if ( bbp_get_view_all() || ( $topic_data['post_status'] == $bbp->trash_status_id ) )
257
+ $topic_url = bbp_add_view_all( $topic_url );
258
 
259
  // Allow to be filtered
260
+ $topic_url = apply_filters( 'bbp_new_topic_redirect_to', $topic_url, $redirect_to );
261
 
262
  /** Successful Save *******************************************/
263
 
522
  $redirect_to = !empty( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : '';
523
 
524
  // View all?
525
+ $count_hidden = (bool) ( bbp_get_view_all() );
526
 
527
  // Get the topic URL
528
  $topic_url = bbp_get_topic_permalink( $topic_id, $redirect_to );
529
 
530
  // Add view all?
531
  if ( !empty( $count_hidden ) )
532
+ $topic_url = bbp_add_view_all( $topic_url );
533
 
534
  // Allow to be filtered
535
  $topic_url = apply_filters( 'bbp_edit_topic_redirect_to', $topic_url, $count_hidden, $redirect_to );
1695
  if ( false != $success && !is_wp_error( $success ) ) {
1696
 
1697
  // Redirect back to the topic's forum
1698
+ if ( isset( $sub_action ) && ( 'delete' == $sub_action ) )
1699
  $redirect = bbp_get_forum_permalink( $success->post_parent );
1700
 
1701
  // Redirect back to the topic
1702
  else
1703
+ $redirect = bbp_add_view_all( bbp_get_topic_permalink( $topic_id ) );
1704
 
1705
  wp_redirect( $redirect );
1706
 
bbp-includes/bbp-topic-template.php CHANGED
@@ -76,7 +76,7 @@ function bbp_has_topics( $args = '' ) {
76
  $in_forum = (bool) ( bbp_is_forum() && !bbp_is_forum_archive() && !bbp_is_query_name( 'bbp_widget' ) );
77
 
78
  // What are the default allowed statuses (based on user caps)
79
- if ( current_user_can( 'moderate' ) && !bbp_is_query_name( 'bbp_widget' ) && ( !empty( $_GET['view'] ) && ( 'all' == $_GET['view'] ) ) )
80
  $default_status = join( ',', array( 'publish', $bbp->closed_status_id, $bbp->spam_status_id, 'trash' ) );
81
  else
82
  $default_status = join( ',', array( 'publish', $bbp->closed_status_id ) );
@@ -678,7 +678,7 @@ function bbp_topic_pagination( $args = '' ) {
678
  'prev_next' => false,
679
  'mid_size' => 2,
680
  'end_size' => 3,
681
- 'add_args' => ( !empty( $_GET['view'] ) && 'all' == $_GET['view'] ) ? array( 'view' => 'all' ) : false
682
  );
683
 
684
  // Add pagination to query object
@@ -1620,17 +1620,25 @@ function bbp_topic_replies_link( $topic_id = 0 ) {
1620
  $replies = sprintf( _n( '%s reply', '%s replies', $replies, 'bbpress' ), $replies );
1621
  $retval = '';
1622
 
1623
- if ( !empty( $_GET['view'] ) && 'all' == $_GET['view'] && current_user_can( 'edit_others_replies' ) )
1624
- $retval .= "<a href='" . esc_url( remove_query_arg( array( 'view' => 'all' ), bbp_get_topic_permalink( $topic_id ) ) ) . "'>$replies</a>";
 
1625
  else
1626
  $retval .= $replies;
1627
 
1628
- if ( current_user_can( 'edit_others_replies' ) && $deleted = bbp_get_topic_hidden_reply_count( $topic_id ) ) {
1629
- $extra = sprintf( __( ' + %d more', 'bbpress' ), $deleted );
1630
- if ( !empty( $_GET['view'] ) && 'all' == $_GET['view'] )
 
 
 
 
 
1631
  $retval .= " $extra";
 
 
1632
  else
1633
- $retval .= " <a href='" . esc_url( add_query_arg( array( 'view' => 'all' ) ) ) . "'>$extra</a>";
1634
  }
1635
 
1636
  return apply_filters( 'bbp_get_topic_replies_link', $retval, $topic_id );
76
  $in_forum = (bool) ( bbp_is_forum() && !bbp_is_forum_archive() && !bbp_is_query_name( 'bbp_widget' ) );
77
 
78
  // What are the default allowed statuses (based on user caps)
79
+ if ( !bbp_is_query_name( 'bbp_widget' ) && bbp_get_view_all() )
80
  $default_status = join( ',', array( 'publish', $bbp->closed_status_id, $bbp->spam_status_id, 'trash' ) );
81
  else
82
  $default_status = join( ',', array( 'publish', $bbp->closed_status_id ) );
678
  'prev_next' => false,
679
  'mid_size' => 2,
680
  'end_size' => 3,
681
+ 'add_args' => ( bbp_get_view_all() ) ? array( 'view' => 'all' ) : false
682
  );
683
 
684
  // Add pagination to query object
1620
  $replies = sprintf( _n( '%s reply', '%s replies', $replies, 'bbpress' ), $replies );
1621
  $retval = '';
1622
 
1623
+ // First link never has view=all
1624
+ if ( bbp_get_view_all( 'edit_others_replies' ) )
1625
+ $retval .= "<a href='" . esc_url( bbp_remove_view_all( bbp_get_topic_permalink( $topic_id ) ) ) . "'>$replies</a>";
1626
  else
1627
  $retval .= $replies;
1628
 
1629
+ // This forum has hidden topics
1630
+ if ( current_user_can( 'edit_others_replies' ) && ( $deleted = bbp_get_topic_hidden_reply_count( $topic_id ) ) ) {
1631
+
1632
+ // Extra text
1633
+ $extra = sprintf( __( ' (+ %d hidden)', 'bbpress' ), $deleted );
1634
+
1635
+ // No link
1636
+ if ( bbp_get_view_all() )
1637
  $retval .= " $extra";
1638
+
1639
+ // Link
1640
  else
1641
+ $retval .= " <a href='" . esc_url( bbp_add_view_all( bbp_get_topic_permalink( $topic_id ), true ) ) . "'>$extra</a>";
1642
  }
1643
 
1644
  return apply_filters( 'bbp_get_topic_replies_link', $retval, $topic_id );
bbp-languages/bbpress.pot CHANGED
@@ -2,9 +2,9 @@
2
  # This file is distributed under the same license as the bbPress package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: bbPress 2.0-beta-3\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/bbpress\n"
7
- "POT-Creation-Date: 2011-06-12 21:03:10+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -12,2113 +12,2071 @@ msgstr ""
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
15
- #: bbp-includes/bbp-reply-functions.php:171
16
- msgid "<strong>ERROR</strong>: You do not have permission to reply."
 
 
17
  msgstr ""
18
 
19
- #: bbp-includes/bbp-reply-functions.php:183
20
- msgid "<strong>ERROR</strong>: Topic ID is missing."
 
 
 
 
21
  msgstr ""
22
 
23
- #: bbp-includes/bbp-reply-functions.php:189
24
- #: bbp-includes/bbp-topic-functions.php:121
25
- #: bbp-includes/bbp-topic-functions.php:373
26
- msgid "<strong>ERROR</strong>: Forum ID is missing."
27
  msgstr ""
28
 
29
- #: bbp-includes/bbp-reply-functions.php:209
30
- msgid "<strong>ERROR</strong>: Your reply needs a title."
31
  msgstr ""
32
 
33
- #: bbp-includes/bbp-reply-functions.php:221
34
- #: bbp-includes/bbp-reply-functions.php:475
35
- msgid "<strong>ERROR</strong>: Your reply cannot be empty."
 
 
36
  msgstr ""
37
 
38
- #: bbp-includes/bbp-reply-functions.php:226
39
- #: bbp-includes/bbp-topic-functions.php:150
40
- msgid "<strong>ERROR</strong>: Slow down; you move too fast."
41
  msgstr ""
42
 
43
- #: bbp-includes/bbp-reply-functions.php:231
44
- msgid ""
45
- "<strong>ERROR</strong>: Duplicate reply detected; it looks as though "
46
- "you&#8217;ve already said that!"
47
  msgstr ""
48
 
49
- #: bbp-includes/bbp-reply-functions.php:280
50
- #: bbp-includes/bbp-reply-functions.php:514
51
- msgid ""
52
- "<strong>ERROR</strong>: There was some problem adding the tags to the topic."
53
  msgstr ""
54
 
55
- #: bbp-includes/bbp-reply-functions.php:391
56
- msgid "<strong>ERROR</strong>: Reply ID not found."
57
  msgstr ""
58
 
59
- #: bbp-includes/bbp-reply-functions.php:399
60
- msgid "<strong>ERROR</strong>: The reply you want to edit was not found."
61
  msgstr ""
62
 
63
- #: bbp-includes/bbp-reply-functions.php:412
64
- msgid "<strong>ERROR</strong>: You do not have permission to edit that reply."
65
  msgstr ""
66
 
67
- #: bbp-includes/bbp-reply-functions.php:442
68
- msgid ""
69
- "<strong>ERROR</strong>: This forum is a category. No topics or replies can "
70
- "be created in it."
71
  msgstr ""
72
 
73
- #: bbp-includes/bbp-reply-functions.php:446
74
- msgid ""
75
- "<strong>ERROR</strong>: This forum has been closed to new topics and replies."
 
 
 
76
  msgstr ""
77
 
78
- #: bbp-includes/bbp-reply-functions.php:450
79
- msgid ""
80
- "<strong>ERROR</strong>: This forum is private and you do not have the "
81
- "capability to read or create new replies in it."
 
82
  msgstr ""
83
 
84
- #: bbp-includes/bbp-reply-functions.php:454
85
- msgid ""
86
- "<strong>ERROR</strong>: This forum is hidden and you do not have the "
87
- "capability to read or create new replies in it."
88
  msgstr ""
89
 
90
- #: bbp-includes/bbp-reply-functions.php:876
91
- msgid "<strong>ERROR:</strong> You do not have the permission to do that!"
92
  msgstr ""
93
 
94
- #: bbp-includes/bbp-reply-functions.php:889
95
- msgid ""
96
- "<strong>ERROR</strong>: There was a problem unmarking the reply as spam!"
97
  msgstr ""
98
 
99
- #: bbp-includes/bbp-reply-functions.php:889
100
- msgid "<strong>ERROR</strong>: There was a problem marking the reply as spam!"
101
  msgstr ""
102
 
103
- #: bbp-includes/bbp-reply-functions.php:906
104
- msgid "<strong>ERROR</strong>: There was a problem trashing the reply!"
105
  msgstr ""
106
 
107
- #: bbp-includes/bbp-reply-functions.php:914
108
- msgid "<strong>ERROR</strong>: There was a problem untrashing the reply!"
109
  msgstr ""
110
 
111
- #: bbp-includes/bbp-reply-functions.php:922
112
- msgid "<strong>ERROR</strong>: There was a problem deleting the reply!"
113
  msgstr ""
114
 
115
- #: bbp-includes/bbp-reply-functions.php:1194
116
- msgid "All Posts"
117
  msgstr ""
118
 
119
- #: bbp-includes/bbp-reply-functions.php:1196 bbpress.php:672
120
- msgid "All Replies"
121
  msgstr ""
122
 
123
- #: bbp-includes/bbp-reply-functions.php:1236
124
- #: bbp-includes/bbp-topic-functions.php:2656
125
- msgid "Replies: %s"
 
 
 
 
 
 
 
126
  msgstr ""
127
 
128
- #: bbp-includes/bbp-core-widgets.php:39
129
- msgid "The login widget."
130
  msgstr ""
131
 
132
- #: bbp-includes/bbp-core-widgets.php:42
133
- msgid "bbPress Login Widget"
134
  msgstr ""
135
 
136
- #: bbp-includes/bbp-core-widgets.php:69
137
- #: bbp-themes/bbp-twentyten/bbpress/form-user-login.php:14
138
- #: bbp-themes/bbp-twentyten/bbpress/form-user-login.php:35
139
- msgid "Login"
140
  msgstr ""
141
 
142
- #: bbp-includes/bbp-core-widgets.php:72
143
- #: bbp-themes/bbp-twentyten/bbpress/form-user-login.php:17
144
- #: bbp-themes/bbp-twentyten/bbpress/form-user-register.php:23
145
- #: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:99
146
- msgid "Username"
147
  msgstr ""
148
 
149
- #: bbp-includes/bbp-core-widgets.php:77
150
- #: bbp-themes/bbp-twentyten/bbpress/form-user-login.php:22
151
- msgid "Password"
152
  msgstr ""
153
 
154
- #: bbp-includes/bbp-core-widgets.php:83
155
- #: bbp-themes/bbp-twentyten/bbpress/form-user-login.php:28
156
- msgid "Keep me signed in"
157
  msgstr ""
158
 
159
- #: bbp-includes/bbp-core-widgets.php:90
160
- msgid "Log In"
161
  msgstr ""
162
 
163
- #: bbp-includes/bbp-core-widgets.php:140 bbp-includes/bbp-core-widgets.php:245
164
- #: bbp-includes/bbp-core-widgets.php:371 bbp-includes/bbp-core-widgets.php:558
165
- #: bbp-includes/bbp-core-widgets.php:703
166
- msgid "Title:"
167
  msgstr ""
168
 
169
- #: bbp-includes/bbp-core-widgets.php:172
170
- msgid "A list of views."
171
  msgstr ""
172
 
173
- #: bbp-includes/bbp-core-widgets.php:175
174
- msgid "bbPress View List"
175
  msgstr ""
176
 
177
- #: bbp-includes/bbp-core-widgets.php:278
178
- msgid "A list of forums."
 
179
  msgstr ""
180
 
181
- #: bbp-includes/bbp-core-widgets.php:281
182
- msgid "bbPress Forum List"
183
- msgstr ""
 
 
 
184
 
185
- #: bbp-includes/bbp-core-widgets.php:377
186
- msgid "Parent forum:"
 
187
  msgstr ""
188
 
189
- #: bbp-includes/bbp-core-widgets.php:383
190
- msgid ""
191
- "Forum ID number. \"0\" to show only root forums, \"-1\" to display all "
192
- "forums."
193
- msgstr ""
 
194
 
195
- #: bbp-includes/bbp-core-widgets.php:414
196
- msgid "A list of recent topics, sorted by popularity or freshness."
 
197
  msgstr ""
198
 
199
- #: bbp-includes/bbp-core-widgets.php:417
200
- msgid "bbPress Topics List"
201
- msgstr ""
 
 
 
202
 
203
- #: bbp-includes/bbp-core-widgets.php:559
204
- msgid "Maximum topics to show:"
 
205
  msgstr ""
206
 
207
- #: bbp-includes/bbp-core-widgets.php:560 bbp-includes/bbp-core-widgets.php:705
208
- msgid "Show post date:"
 
 
 
 
 
 
 
209
  msgstr ""
210
 
211
- #: bbp-includes/bbp-core-widgets.php:562
212
- msgid "Popularity check:"
213
  msgstr ""
214
 
215
- #: bbp-includes/bbp-core-widgets.php:563
216
- msgid ""
217
- "Number of topics back to check reply count to determine popularity. A number "
218
- "less than the maximum number of topics to show disables the check."
219
  msgstr ""
220
 
221
- #: bbp-includes/bbp-core-widgets.php:594
222
- msgid "A list of bbPress recent replies."
223
  msgstr ""
224
 
225
- #: bbp-includes/bbp-core-widgets.php:704
226
- msgid "Maximum replies to show:"
227
  msgstr ""
228
 
229
- #: bbp-includes/bbp-core-compatibility.php:242
230
- msgid "Hands off, partner!"
231
  msgstr ""
232
 
233
- #: bbp-includes/bbp-core-compatibility.php:781
234
- #: bbp-includes/bbp-forum-template.php:1828
235
- #: bbp-themes/bbp-twentyten/page-forum-statistics.php:50
236
- #: bbp-themes/bbp-twentyten/bbpress/loop-forums.php:20
237
- #: bbp-themes/bbp-twentyten/bbpress/loop-topics.php:19
238
- #: bbp-themes/bbp-twentyten/bbpress/loop-replies.php:30
239
- #: bbp-themes/bbp-twentyten/bbpress/loop-replies.php:49
240
- #: bbp-themes/bbp-twentyten/single-reply.php:32 bbp-admin/bbp-topics.php:607
241
- #: bbp-admin/bbp-forums.php:404 bbpress.php:669 bbpress.php:670
242
- msgid "Replies"
243
  msgstr ""
244
 
245
- #: bbp-includes/bbp-core-compatibility.php:828
246
- #: bbp-includes/bbp-common-template.php:1329
247
- #: bbp-includes/bbp-common-template.php:1631
248
- #: bbp-themes/bbp-twentyten/taxonomy-topic-tag.php:20
249
- msgid "Topic Tag: %s"
250
  msgstr ""
251
 
252
- #: bbp-includes/bbp-core-compatibility.php:1136
253
- msgid ""
254
- "Conditional query tags do not work before the query is run. Before then, "
255
- "they always return false."
256
  msgstr ""
257
 
258
- #: bbp-includes/bbp-core-compatibility.php:1371
259
- msgid "You do not have the permission to edit this user."
260
  msgstr ""
261
 
262
- #: bbp-includes/bbp-reply-template.php:944
263
- #: bbp-includes/bbp-user-template.php:1019
264
- #: bbp-includes/bbp-topic-template.php:1204
265
- msgid "View %s's profile"
266
  msgstr ""
267
 
268
- #: bbp-includes/bbp-reply-template.php:944
269
- #: bbp-includes/bbp-user-template.php:1019
270
- #: bbp-includes/bbp-topic-template.php:1204
271
- msgid "Visit %s's website"
272
  msgstr ""
273
 
274
- #: bbp-includes/bbp-reply-template.php:1336
275
- #: bbp-includes/bbp-topic-template.php:1966 bbpress.php:561 bbpress.php:618
276
- #: bbpress.php:675
277
- msgid "Edit"
278
  msgstr ""
279
 
280
- #: bbp-includes/bbp-reply-template.php:1449
281
- #: bbp-includes/bbp-topic-template.php:2079 bbp-admin/bbp-replies.php:711
282
- #: bbp-admin/bbp-topics.php:787
283
- msgid "Trash"
284
  msgstr ""
285
 
286
- #: bbp-includes/bbp-reply-template.php:1450
287
- #: bbp-includes/bbp-topic-template.php:2080 bbp-admin/bbp-replies.php:709
288
- #: bbp-admin/bbp-topics.php:785
289
- msgid "Restore"
290
  msgstr ""
291
 
292
- #: bbp-includes/bbp-reply-template.php:1451
293
- #: bbp-includes/bbp-topic-template.php:2081
294
- #: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:89
295
- #: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:102
296
- msgid "Delete"
297
  msgstr ""
298
 
299
- #: bbp-includes/bbp-reply-template.php:1464
300
- #: bbp-includes/bbp-topic-template.php:2093 bbp-admin/bbp-replies.php:709
301
- #: bbp-admin/bbp-topics.php:785
302
- msgid "Restore this item from the Trash"
 
303
  msgstr ""
304
 
305
- #: bbp-includes/bbp-reply-template.php:1464
306
- #: bbp-includes/bbp-topic-template.php:2093
307
- msgid "Are you sure you want to restore that?"
308
  msgstr ""
309
 
310
- #: bbp-includes/bbp-reply-template.php:1466
311
- #: bbp-includes/bbp-topic-template.php:2095 bbp-admin/bbp-replies.php:711
312
- #: bbp-admin/bbp-topics.php:787
313
- msgid "Move this item to the Trash"
 
314
  msgstr ""
315
 
316
- #: bbp-includes/bbp-reply-template.php:1466
317
- #: bbp-includes/bbp-topic-template.php:2095
318
- msgid "Are you sure you want to trash that?"
 
319
  msgstr ""
320
 
321
- #: bbp-includes/bbp-reply-template.php:1469
322
- #: bbp-includes/bbp-topic-template.php:2098 bbp-admin/bbp-replies.php:715
323
- #: bbp-admin/bbp-topics.php:791
324
- msgid "Delete this item permanently"
325
  msgstr ""
326
 
327
- #: bbp-includes/bbp-reply-template.php:1469
328
- #: bbp-includes/bbp-topic-template.php:2098
329
- msgid "Are you sure you want to delete that permanently?"
330
  msgstr ""
331
 
332
- #: bbp-includes/bbp-reply-template.php:1518
333
- #: bbp-includes/bbp-topic-template.php:2334 bbp-admin/bbp-replies.php:701
334
- #: bbp-admin/bbp-topics.php:777
335
- msgid "Spam"
336
  msgstr ""
337
 
338
- #: bbp-includes/bbp-reply-template.php:1519
339
- #: bbp-includes/bbp-topic-template.php:2335
340
- msgid "Unspam"
341
  msgstr ""
342
 
343
- #: bbp-includes/bbp-reply-template.php:1583
344
- msgid "Split"
345
  msgstr ""
346
 
347
- #: bbp-includes/bbp-reply-template.php:1584
348
- msgid "Split the topic from this reply"
 
 
349
  msgstr ""
350
 
351
- #: bbp-includes/bbp-reply-template.php:1670
352
- msgid "Viewing reply %1$s (of %2$s total)"
353
  msgstr ""
354
 
355
- #: bbp-includes/bbp-reply-template.php:1672
356
- msgid "Viewing %1$s replies"
357
  msgstr ""
358
 
359
- #: bbp-includes/bbp-reply-template.php:1674
360
- msgid "Viewing %1$s replies - %2$s through %3$s (of %4$s total)"
 
 
 
361
  msgstr ""
362
 
363
- #: bbp-includes/bbp-reply-template.php:1676
364
- msgid "Viewing %1$s reply"
365
  msgstr ""
366
 
367
- #: bbp-includes/bbp-reply-template.php:1683
368
- msgid "Viewing post %1$s (of %2$s total)"
369
  msgstr ""
370
 
371
- #: bbp-includes/bbp-reply-template.php:1685
372
- msgid "Viewing %1$s posts"
 
373
  msgstr ""
374
 
375
- #: bbp-includes/bbp-reply-template.php:1687
376
- msgid "Viewing %1$s posts - %2$s through %3$s (of %4$s total)"
 
377
  msgstr ""
378
 
379
- #: bbp-includes/bbp-reply-template.php:1689
380
- msgid "Viewing %1$s post"
 
381
  msgstr ""
382
 
383
- #: bbp-includes/bbp-common-template.php:843
384
- msgid "No topics available"
 
385
  msgstr ""
386
 
387
- #: bbp-includes/bbp-common-template.php:848
388
- msgid "No forums available"
 
389
  msgstr ""
390
 
391
- #: bbp-includes/bbp-common-template.php:853
392
- msgid "None available"
 
 
 
393
  msgstr ""
394
 
395
- #: bbp-includes/bbp-common-template.php:925
396
- #: bbp-includes/bbp-common-template.php:942
397
- #: bbp-includes/bbp-topic-functions.php:977
398
- #: bbp-includes/bbp-topic-functions.php:1278
399
- #: bbp-admin/importers/bbpress.php:1002
400
- msgid "Reply To: %s"
401
  msgstr ""
402
 
403
- #: bbp-includes/bbp-common-template.php:1273
404
- msgid "Home"
405
  msgstr ""
406
 
407
- #: bbp-includes/bbp-common-template.php:1343
408
- msgid "&lsaquo;"
409
  msgstr ""
410
 
411
- #: bbp-includes/bbp-common-template.php:1343
412
- msgid "&rsaquo;"
413
  msgstr ""
414
 
415
- #: bbp-includes/bbp-common-template.php:1564
416
- msgid "Log Out"
417
  msgstr ""
418
 
419
- #: bbp-includes/bbp-common-template.php:1618
420
- msgid "Forum: %s"
 
 
421
  msgstr ""
422
 
423
- #: bbp-includes/bbp-common-template.php:1622
424
- msgid "Topic: %s"
425
  msgstr ""
426
 
427
- #: bbp-includes/bbp-common-template.php:1640
428
- msgid "Your Profile"
429
  msgstr ""
430
 
431
- #: bbp-includes/bbp-common-template.php:1645
432
- msgid "%s's Profile"
433
  msgstr ""
434
 
435
- #: bbp-includes/bbp-common-template.php:1653
436
- msgid "Edit Your Profile"
437
  msgstr ""
438
 
439
- #: bbp-includes/bbp-common-template.php:1658
440
- msgid "Edit %s's Profile"
441
  msgstr ""
442
 
443
- #: bbp-includes/bbp-common-template.php:1665
444
- msgid "View: %s"
445
  msgstr ""
446
 
447
- #: bbp-includes/bbp-forum-template.php:507 bbp-admin/bbp-forums.php:452
448
- msgid "No Topics"
449
  msgstr ""
450
 
451
- #: bbp-includes/bbp-forum-template.php:1079
452
- msgid "%s topic"
453
- msgid_plural "%s topics"
454
- msgstr[0] ""
455
- msgstr[1] ""
456
-
457
- #: bbp-includes/bbp-forum-template.php:1088
458
- #: bbp-includes/bbp-topic-template.php:1629
459
- msgid " + %d more"
460
  msgstr ""
461
 
462
- #: bbp-includes/bbp-forum-template.php:1665
463
- #: bbp-includes/bbp-topic-template.php:1620
464
- msgid "%s reply"
465
- msgid_plural "%s replies"
466
- msgstr[0] ""
467
- msgstr[1] ""
468
 
469
- #: bbp-includes/bbp-forum-template.php:1675
470
- msgid ""
471
- "This category contains %1$s and %2$s, and was last updated by %3$s %4$s ago."
472
  msgstr ""
473
 
474
- #: bbp-includes/bbp-forum-template.php:1679
475
- msgid ""
476
- "This forum contains %1$s and %2$s, and was last updated by %3$s %4$s ago."
477
  msgstr ""
478
 
479
- #: bbp-includes/bbp-forum-template.php:1686
480
- msgid "This category contains %1$s and %2$s."
481
  msgstr ""
482
 
483
- #: bbp-includes/bbp-forum-template.php:1690
484
- msgid "This forum contains %1$s and %2$s."
485
  msgstr ""
486
 
487
- #: bbp-includes/bbp-forum-template.php:1764
488
- #: bbp-themes/bbp-twentyten/page-forum-statistics.php:45
489
- #: bbp-themes/bbp-twentyten/bbpress/loop-forums.php:19
490
- #: bbp-admin/bbp-topics.php:605 bbp-admin/bbp-forums.php:403 bbpress.php:612
491
- #: bbpress.php:613
492
- msgid "Topics"
493
  msgstr ""
494
 
495
- #: bbp-includes/bbp-core-caps.php:31
496
- msgid "Forum Moderator"
497
  msgstr ""
498
 
499
- #: bbp-includes/bbp-common-functions.php:402
500
- #: bbp-includes/bbp-common-functions.php:434
501
- msgid "Private: %s"
502
  msgstr ""
503
 
504
- #: bbp-includes/bbp-common-functions.php:403
505
- #: bbp-includes/bbp-common-functions.php:435
506
- msgid "Spammed: %s"
507
  msgstr ""
508
 
509
- #: bbp-includes/bbp-common-functions.php:404
510
- #: bbp-includes/bbp-common-functions.php:436
511
- msgid "Trashed: %s"
512
  msgstr ""
513
 
514
- #: bbp-includes/bbp-common-functions.php:637
515
- msgid "<strong>ERROR</strong>: Invalid author name submitted!"
 
516
  msgstr ""
517
 
518
- #: bbp-includes/bbp-common-functions.php:640
519
- msgid "<strong>ERROR</strong>: Invalid email address submitted!"
520
  msgstr ""
521
 
522
- #: bbp-includes/bbp-common-functions.php:823
523
- msgid ""
524
- "%1$s wrote:\n"
525
- "\n"
526
- "%2$s\n"
527
- "\n"
528
- "Post Link: %3$s\n"
529
- "\n"
530
- "You're getting this mail because you subscribed to the topic, visit the "
531
- "topic and login to unsubscribe."
532
  msgstr ""
533
 
534
- #: bbp-includes/bbp-core-akismet.php:271
535
- msgid "%1$s reported this %2$s as spam"
536
  msgstr ""
537
 
538
- #: bbp-includes/bbp-core-akismet.php:278
539
- msgid "%1$s reported this %2$s as not spam"
540
  msgstr ""
541
 
542
- #: bbp-includes/bbp-core-akismet.php:422
543
- msgid "Akismet caught this post as spam"
544
  msgstr ""
545
 
546
- #: bbp-includes/bbp-core-akismet.php:426 bbp-includes/bbp-core-akismet.php:440
547
- msgid "Post status was changed to %s"
548
  msgstr ""
549
 
550
- #: bbp-includes/bbp-core-akismet.php:433
551
- msgid "Akismet cleared this post"
552
  msgstr ""
553
 
554
- #: bbp-includes/bbp-core-akismet.php:447
555
  msgid ""
556
- "Akismet was unable to check this post (response: %s), will automatically "
557
- "retry again later."
558
  msgstr ""
559
 
560
- #: bbp-includes/bbp-user-template.php:151
561
- msgid "Anonymous"
562
  msgstr ""
563
 
564
- #: bbp-includes/bbp-user-template.php:408
565
- msgid "Admin"
566
  msgstr ""
567
 
568
- #: bbp-includes/bbp-user-template.php:541
569
- #: bbp-themes/bbp-twentyten/functions.php:235
570
- msgid "Add this topic to your favorites"
571
  msgstr ""
572
 
573
- #: bbp-includes/bbp-user-template.php:542
574
- msgid " (%?%)"
 
 
575
  msgstr ""
576
 
577
- #: bbp-includes/bbp-user-template.php:548
578
- msgid "This topic is one of your %favorites% ["
579
  msgstr ""
580
 
581
- #: bbp-includes/bbp-user-template.php:549
582
- #: bbp-themes/bbp-twentyten/functions.php:234
583
- msgid "&times;"
584
  msgstr ""
585
 
586
- #: bbp-includes/bbp-user-template.php:550
587
- msgid "]"
 
588
  msgstr ""
589
 
590
- #: bbp-includes/bbp-user-template.php:648
591
- #: bbp-themes/bbp-twentyten/functions.php:241
592
- msgid "Subscribe"
 
 
593
  msgstr ""
594
 
595
- #: bbp-includes/bbp-user-template.php:649
596
- #: bbp-themes/bbp-twentyten/functions.php:242
597
- msgid "Unsubscribe"
598
  msgstr ""
599
 
600
- #: bbp-includes/bbp-user-template.php:705
601
- msgid "User updated."
602
  msgstr ""
603
 
604
- #: bbp-includes/bbp-user-template.php:729
605
- msgid "You have super admin privileges."
606
  msgstr ""
607
 
608
- #: bbp-includes/bbp-user-template.php:729
609
- msgid "This user has super admin privileges."
 
 
610
  msgstr ""
611
 
612
- #: bbp-includes/bbp-user-template.php:794
613
- msgid "&mdash; No role for this site &mdash;"
614
  msgstr ""
615
 
616
- #: bbp-includes/bbp-user-template.php:843
617
- msgid "You are now logged out."
618
  msgstr ""
619
 
620
- #: bbp-includes/bbp-user-template.php:847
621
- msgid "New user registration is currently not allowed."
622
  msgstr ""
623
 
624
- #: bbp-includes/bbp-user-template.php:856
625
- msgid "Check your e-mail for the confirmation link."
 
 
626
  msgstr ""
627
 
628
- #: bbp-includes/bbp-user-template.php:861
629
- msgid "Check your e-mail for your new password."
 
 
 
630
  msgstr ""
631
 
632
- #: bbp-includes/bbp-user-template.php:866
633
- msgid "Registration complete. Please check your e-mail."
 
634
  msgstr ""
635
 
636
- #: bbp-includes/bbp-topic-template.php:1578 bbp-admin/bbp-topics.php:698
637
- msgid "No Replies"
 
638
  msgstr ""
639
 
640
- #: bbp-includes/bbp-topic-template.php:1787
641
- msgid "Tagged:"
 
 
642
  msgstr ""
643
 
644
- #: bbp-includes/bbp-topic-template.php:2147 bbp-admin/bbp-topics.php:754
645
- msgid "Close"
646
  msgstr ""
647
 
648
- #: bbp-includes/bbp-topic-template.php:2148 bbp-admin/bbp-metaboxes.php:269
649
- #: bbp-admin/bbp-topics.php:756
650
- msgid "Open"
651
  msgstr ""
652
 
653
- #: bbp-includes/bbp-topic-template.php:2208 bbp-admin/bbp-topics.php:768
654
- msgid "Stick"
655
  msgstr ""
656
 
657
- #: bbp-includes/bbp-topic-template.php:2209 bbp-admin/bbp-topics.php:765
658
- msgid "Unstick"
659
  msgstr ""
660
 
661
- #: bbp-includes/bbp-topic-template.php:2210 bbp-admin/bbp-topics.php:768
662
- msgid "to front"
 
663
  msgstr ""
664
 
665
- #: bbp-includes/bbp-topic-template.php:2277
666
- #: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:59
667
- #: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:73
668
- msgid "Merge"
669
  msgstr ""
670
 
671
- #: bbp-includes/bbp-topic-template.php:2390
672
- msgid "Viewing topic %1$s (of %2$s total)"
 
673
  msgstr ""
674
 
675
- #: bbp-includes/bbp-topic-template.php:2392
676
- msgid "Viewing %1$s topics"
 
677
  msgstr ""
678
 
679
- #: bbp-includes/bbp-topic-template.php:2394
680
- msgid "Viewing %1$s topics - %2$s through %3$s (of %4$s total)"
681
  msgstr ""
682
 
683
- #: bbp-includes/bbp-topic-template.php:2396
684
- msgid "Viewing %1$s topic"
 
 
685
  msgstr ""
686
 
687
- #: bbp-includes/bbp-topic-template.php:2456
688
- msgid "This topic is marked as spam."
 
689
  msgstr ""
690
 
691
- #: bbp-includes/bbp-topic-template.php:2461
692
- msgid "This topic is in the trash."
693
  msgstr ""
694
 
695
- #: bbp-includes/bbp-topic-template.php:2497
696
- msgid "Normal"
697
  msgstr ""
698
 
699
- #: bbp-includes/bbp-topic-template.php:2498
700
- msgid "Sticky"
 
 
701
  msgstr ""
702
 
703
- #: bbp-includes/bbp-topic-template.php:2499
704
- msgid "Super Sticky"
705
  msgstr ""
706
 
707
- #: bbp-includes/bbp-topic-template.php:2621
708
- msgid "%s voice"
709
- msgid_plural "%s voices"
710
- msgstr[0] ""
711
- msgstr[1] ""
712
-
713
- #: bbp-includes/bbp-topic-template.php:2626
714
  msgid ""
715
- "This topic has %1$s, contains %2$s, and was last updated by %3$s %4$s ago."
 
716
  msgstr ""
717
 
718
- #: bbp-includes/bbp-topic-template.php:2630
719
- msgid "This topic has %1$s, contains %2$s."
720
  msgstr ""
721
 
722
- #: bbp-includes/bbp-topic-functions.php:79
723
  msgid ""
724
- "<strong>ERROR</strong>: You do not have permission to create new topics."
 
 
725
  msgstr ""
726
 
727
- #: bbp-includes/bbp-topic-functions.php:103
728
- #: bbp-includes/bbp-topic-functions.php:409
729
- msgid "<strong>ERROR</strong>: Your topic needs a title."
730
  msgstr ""
731
 
732
- #: bbp-includes/bbp-topic-functions.php:115
733
- #: bbp-includes/bbp-topic-functions.php:421
734
- msgid "<strong>ERROR</strong>: Your topic cannot be empty."
735
  msgstr ""
736
 
737
- #: bbp-includes/bbp-topic-functions.php:132
738
- msgid ""
739
- "<strong>ERROR</strong>: This forum is a category. No topics can be created "
740
- "in this forum."
741
  msgstr ""
742
 
743
- #: bbp-includes/bbp-topic-functions.php:136
744
- #: bbp-includes/bbp-topic-functions.php:388
745
- msgid "<strong>ERROR</strong>: This forum has been closed to new topics."
746
  msgstr ""
747
 
748
- #: bbp-includes/bbp-topic-functions.php:140
749
- #: bbp-includes/bbp-topic-functions.php:392
750
- msgid ""
751
- "<strong>ERROR</strong>: This forum is private and you do not have the "
752
- "capability to read or create new topics in it."
753
  msgstr ""
754
 
755
- #: bbp-includes/bbp-topic-functions.php:144
756
- #: bbp-includes/bbp-topic-functions.php:396
757
- msgid ""
758
- "<strong>ERROR</strong>: This forum is hidden and you do not have the "
759
- "capability to read or create new topics in it."
760
  msgstr ""
761
 
762
- #: bbp-includes/bbp-topic-functions.php:155
763
- msgid ""
764
- "<strong>ERROR</strong>: Duplicate topic detected; it looks as though "
765
- "you&#8217;ve already said that!"
766
  msgstr ""
767
 
768
- #: bbp-includes/bbp-topic-functions.php:331
769
- #: bbp-includes/bbp-topic-functions.php:844
770
- msgid "<strong>ERROR</strong>: Topic ID not found."
 
 
771
  msgstr ""
772
 
773
- #: bbp-includes/bbp-topic-functions.php:339
774
- msgid "<strong>ERROR</strong>: The topic you want to edit was not found."
 
 
 
775
  msgstr ""
776
 
777
- #: bbp-includes/bbp-topic-functions.php:352
778
- msgid "<strong>ERROR</strong>: You do not have permission to edit that topic."
779
  msgstr ""
780
 
781
- #: bbp-includes/bbp-topic-functions.php:384
782
- msgid ""
783
- "<strong>ERROR</strong>: This forum is a category. No topics can be created "
784
- "in it."
785
  msgstr ""
786
 
787
- #: bbp-includes/bbp-topic-functions.php:853
788
- msgid "<strong>ERROR</strong>: The topic you want to merge was not found."
789
  msgstr ""
790
 
791
- #: bbp-includes/bbp-topic-functions.php:857
792
- #: bbp-includes/bbp-topic-functions.php:1132
793
- msgid ""
794
- "<strong>ERROR</strong>: You do not have the permissions to edit the source "
795
- "topic."
796
  msgstr ""
797
 
798
- #: bbp-includes/bbp-topic-functions.php:863
799
- msgid "<strong>ERROR</strong>: Destination topic ID not found."
800
  msgstr ""
801
 
802
- #: bbp-includes/bbp-topic-functions.php:869
803
- msgid "<strong>ERROR</strong>: The topic you want to merge to was not found."
 
804
  msgstr ""
805
 
806
- #: bbp-includes/bbp-topic-functions.php:873
807
- msgid ""
808
- "<strong>ERROR</strong>: You do not have the permissions to edit the "
809
- "destination topic."
810
  msgstr ""
811
 
812
- #: bbp-includes/bbp-topic-functions.php:1108
813
- msgid "<strong>ERROR</strong>: Reply ID to split the topic from not found!"
814
  msgstr ""
815
 
816
- #: bbp-includes/bbp-topic-functions.php:1116
817
- msgid "<strong>ERROR</strong>: The reply you want to split from was not found."
818
  msgstr ""
819
 
820
- #: bbp-includes/bbp-topic-functions.php:1125
821
- msgid "<strong>ERROR</strong>: The topic you want to split was not found."
 
822
  msgstr ""
823
 
824
- #: bbp-includes/bbp-topic-functions.php:1141
825
- msgid "<strong>ERROR</strong>: You need to choose a valid split option."
 
826
  msgstr ""
827
 
828
- #: bbp-includes/bbp-topic-functions.php:1154
829
- msgid "<strong>ERROR</strong>: Destination topic ID not found!"
 
830
  msgstr ""
831
 
832
- #: bbp-includes/bbp-topic-functions.php:1163
833
- msgid "<strong>ERROR</strong>: The topic you want to split to was not found!"
834
  msgstr ""
835
 
836
- #: bbp-includes/bbp-topic-functions.php:1167
837
  msgid ""
838
- "<strong>ERROR</strong>: You do not have the permissions to edit the "
839
- "destination topic!"
840
  msgstr ""
841
 
842
- #: bbp-includes/bbp-topic-functions.php:1204
843
  msgid ""
844
- "<strong>ERROR</strong>: There was a problem converting the reply into the "
845
- "topic. Please try again."
846
  msgstr ""
847
 
848
- #: bbp-includes/bbp-topic-functions.php:1208
849
  msgid ""
850
- "<strong>ERROR</strong>: You do not have the permissions to create new "
851
- "topics. The reply could not be converted into a topic."
 
 
852
  msgstr ""
853
 
854
- #: bbp-includes/bbp-topic-functions.php:1395
855
- msgid ""
856
- "<strong>ERROR</strong>: The following problem(s) have been found while "
857
- "getting the tag: %s"
858
  msgstr ""
859
 
860
- #: bbp-includes/bbp-topic-functions.php:1410
861
- #: bbp-includes/bbp-topic-functions.php:1446
862
- msgid ""
863
- "<strong>ERROR</strong>: You do not have the permissions to edit the topic "
864
- "tags."
865
  msgstr ""
866
 
867
- #: bbp-includes/bbp-topic-functions.php:1416
868
- #: bbp-includes/bbp-topic-functions.php:1452
869
- msgid "<strong>ERROR</strong>: You need to enter a tag name."
870
  msgstr ""
871
 
872
- #: bbp-includes/bbp-topic-functions.php:1426
873
- msgid ""
874
- "<strong>ERROR</strong>: The following problem(s) have been found while "
875
- "updating the tag: %s"
876
  msgstr ""
877
 
878
- #: bbp-includes/bbp-topic-functions.php:1462
879
- #: bbp-includes/bbp-topic-functions.php:1480
880
- msgid ""
881
- "<strong>ERROR</strong>: The following problem(s) have been found while "
882
- "merging the tags: %s"
883
  msgstr ""
884
 
885
- #: bbp-includes/bbp-topic-functions.php:1471
886
- msgid ""
887
- "<strong>ERROR</strong>: The tags which are being merged can not be the same."
888
  msgstr ""
889
 
890
- #: bbp-includes/bbp-topic-functions.php:1500
891
- msgid ""
892
- "<strong>ERROR</strong>: You do not have the permissions to delete the topic "
893
- "tags."
894
  msgstr ""
895
 
896
- #: bbp-includes/bbp-topic-functions.php:1509
897
- msgid ""
898
- "<strong>ERROR</strong>: The following problem(s) have been found while "
899
- "deleting the tag: %s"
900
  msgstr ""
901
 
902
- #: bbp-includes/bbp-topic-functions.php:1619
903
- msgid "<strong>ERROR:</strong> You do not have the permission to do that."
904
  msgstr ""
905
 
906
- #: bbp-includes/bbp-topic-functions.php:1632
907
- msgid "<strong>ERROR</strong>: There was a problem closing the topic."
 
908
  msgstr ""
909
 
910
- #: bbp-includes/bbp-topic-functions.php:1632
911
- msgid "<strong>ERROR</strong>: There was a problem opening the topic."
912
  msgstr ""
913
 
914
- #: bbp-includes/bbp-topic-functions.php:1643
915
- msgid "<strong>ERROR</strong>: There was a problem unsticking the topic."
916
  msgstr ""
917
 
918
- #: bbp-includes/bbp-topic-functions.php:1643
919
- msgid "<strong>ERROR</strong>: There was a problem sticking the topic."
920
  msgstr ""
921
 
922
- #: bbp-includes/bbp-topic-functions.php:1653
923
- msgid ""
924
- "<strong>ERROR</strong>: There was a problem unmarking the topic as spam."
925
  msgstr ""
926
 
927
- #: bbp-includes/bbp-topic-functions.php:1653
928
- msgid "<strong>ERROR</strong>: There was a problem marking the topic as spam."
929
  msgstr ""
930
 
931
- #: bbp-includes/bbp-topic-functions.php:1670
932
- msgid "<strong>ERROR</strong>: There was a problem trashing the topic."
933
  msgstr ""
934
 
935
- #: bbp-includes/bbp-topic-functions.php:1678
936
- msgid "<strong>ERROR</strong>: There was a problem untrashing the topic."
937
  msgstr ""
938
 
939
- #: bbp-includes/bbp-topic-functions.php:1686
940
- msgid "<strong>ERROR</strong>: There was a problem deleting the topic."
941
  msgstr ""
942
 
943
- #: bbp-includes/bbp-topic-functions.php:2631 bbpress.php:615
944
- msgid "All Topics"
945
  msgstr ""
946
 
947
- #: bbp-includes/bbp-user-functions.php:368
948
- #: bbp-includes/bbp-user-functions.php:637
949
- msgid ""
950
- "<strong>ERROR</strong>: You don't have the permission to edit favorites of "
951
- "that user!"
952
  msgstr ""
953
 
954
- #: bbp-includes/bbp-user-functions.php:372
955
  msgid ""
956
- "<strong>ERROR</strong>: No topic was found! Which topic are you marking/"
957
- "unmarking as favorite?"
958
  msgstr ""
959
 
960
- #: bbp-includes/bbp-user-functions.php:401
961
- msgid ""
962
- "<strong>ERROR</strong>: There was a problem removing that topic from "
963
- "favorites!"
964
  msgstr ""
965
 
966
- #: bbp-includes/bbp-user-functions.php:403
967
- msgid "<strong>ERROR</strong>: There was a problem favoriting that topic!"
968
  msgstr ""
969
 
970
- #: bbp-includes/bbp-user-functions.php:641
971
  msgid ""
972
- "<strong>ERROR</strong>: No topic was found! Which topic are you subscribing/"
973
- "unsubscribing to?"
974
  msgstr ""
975
 
976
- #: bbp-includes/bbp-user-functions.php:669
977
- msgid ""
978
- "<strong>ERROR</strong>: There was a problem unsubscribing from that topic!"
 
979
  msgstr ""
980
 
981
- #: bbp-includes/bbp-user-functions.php:671
982
- msgid "<strong>ERROR</strong>: There was a problem subscribing to that topic!"
983
  msgstr ""
984
 
985
- #: bbp-includes/bbp-user-functions.php:744
986
- msgid ""
987
- "What are you doing here? You do not have the permission to edit this user."
988
  msgstr ""
989
 
990
- #: bbp-themes/bbp-twentyten/page-forum-statistics.php:29
991
- msgid "<p>Here are the statistics and popular topics of our forums.</p>"
992
  msgstr ""
993
 
994
- #: bbp-themes/bbp-twentyten/page-forum-statistics.php:35
995
- msgid "Registered Users"
996
  msgstr ""
997
 
998
- #: bbp-themes/bbp-twentyten/page-forum-statistics.php:40
999
- #: bbp-admin/bbp-admin.php:171 bbpress.php:555 bbpress.php:556
1000
- msgid "Forums"
1001
  msgstr ""
1002
 
1003
- #: bbp-themes/bbp-twentyten/page-forum-statistics.php:55 bbpress.php:811
1004
- msgid "Topic Tags"
 
1005
  msgstr ""
1006
 
1007
- #: bbp-themes/bbp-twentyten/page-forum-statistics.php:62
1008
- msgid "Empty Topic Tags"
 
1009
  msgstr ""
1010
 
1011
- #: bbp-themes/bbp-twentyten/page-forum-statistics.php:71
1012
- msgid "Hidden Topics"
 
1013
  msgstr ""
1014
 
1015
- #: bbp-themes/bbp-twentyten/page-forum-statistics.php:82
1016
- msgid "Hidden Replies"
1017
  msgstr ""
1018
 
1019
- #: bbp-themes/bbp-twentyten/page-forum-statistics.php:101
1020
- msgid "Popular Topics"
1021
  msgstr ""
1022
 
1023
- #: bbp-themes/bbp-twentyten/functions.php:230
1024
- msgid "favorites"
 
 
1025
  msgstr ""
1026
 
1027
- #: bbp-themes/bbp-twentyten/functions.php:231
1028
- msgid "?"
 
1029
  msgstr ""
1030
 
1031
- #: bbp-themes/bbp-twentyten/functions.php:232
1032
- msgid "This topic is one of your %favLinkYes% [%favDel%]"
 
1033
  msgstr ""
1034
 
1035
- #: bbp-themes/bbp-twentyten/functions.php:233
1036
- msgid "%favAdd% (%favLinkNo%)"
 
1037
  msgstr ""
1038
 
1039
- #: bbp-themes/bbp-twentyten/bbpress/user-details.php:14
1040
- msgid "Profile: %s"
1041
  msgstr ""
1042
 
1043
- #: bbp-themes/bbp-twentyten/bbpress/user-details.php:18
1044
- msgid "Edit Profile of User %s"
1045
  msgstr ""
1046
 
1047
- #: bbp-themes/bbp-twentyten/bbpress/user-details.php:18
1048
- msgid "(Edit)"
 
 
 
 
 
 
 
 
1049
  msgstr ""
1050
 
1051
- #: bbp-themes/bbp-twentyten/bbpress/user-details.php:31
1052
- msgid "About %s"
 
 
1053
  msgstr ""
1054
 
1055
- #: bbp-themes/bbp-twentyten/bbpress/form-topic-split.php:22
1056
- msgid "Split topic \"%s\""
1057
- msgstr ""
1058
-
1059
- #: bbp-themes/bbp-twentyten/bbpress/form-topic-split.php:27
1060
- msgid ""
1061
- "When you split a topic, you are slicing it in half starting with the reply "
1062
- "you just selected. Choose to use that reply as a new topic with a new title, "
1063
- "or merge those replies into an existing topic."
1064
  msgstr ""
1065
 
1066
- #: bbp-themes/bbp-twentyten/bbpress/form-topic-split.php:31
1067
- msgid ""
1068
- "If you use the existing topic option, replies within both topics will be "
1069
- "merged chronologically. The order of the merged replies is based on the time "
1070
- "and date they were posted."
1071
  msgstr ""
1072
 
1073
- #: bbp-themes/bbp-twentyten/bbpress/form-topic-split.php:35
1074
- msgid "Split Method"
 
 
1075
  msgstr ""
1076
 
1077
- #: bbp-themes/bbp-twentyten/bbpress/form-topic-split.php:39
1078
- msgid "New topic in <strong>%s</strong> titled:"
 
 
1079
  msgstr ""
1080
 
1081
- #: bbp-themes/bbp-twentyten/bbpress/form-topic-split.php:40
1082
- msgid "Split: %s"
 
1083
  msgstr ""
1084
 
1085
- #: bbp-themes/bbp-twentyten/bbpress/form-topic-split.php:47
1086
- msgid "Use an existing topic in this forum:"
 
 
1087
  msgstr ""
1088
 
1089
- #: bbp-themes/bbp-twentyten/bbpress/form-topic-split.php:56
1090
- msgid "No other topics found!"
 
1091
  msgstr ""
1092
 
1093
- #: bbp-themes/bbp-twentyten/bbpress/form-topic-split.php:67
1094
- #: bbp-themes/bbp-twentyten/bbpress/form-topic-merge.php:63
1095
- msgid "Topic Extras"
 
1096
  msgstr ""
1097
 
1098
- #: bbp-themes/bbp-twentyten/bbpress/form-topic-split.php:74
1099
- msgid "Copy subscribers to the new topic"
 
1100
  msgstr ""
1101
 
1102
- #: bbp-themes/bbp-twentyten/bbpress/form-topic-split.php:79
1103
- msgid "Copy favoriters to the new topic"
 
 
1104
  msgstr ""
1105
 
1106
- #: bbp-themes/bbp-twentyten/bbpress/form-topic-split.php:82
1107
- msgid "Copy topic tags to the new topic"
 
1108
  msgstr ""
1109
 
1110
- #: bbp-themes/bbp-twentyten/bbpress/form-topic-split.php:88
1111
- #: bbp-themes/bbp-twentyten/bbpress/form-topic-merge.php:84
1112
- msgid "<strong>WARNING:</strong> This process cannot be undone."
1113
  msgstr ""
1114
 
1115
- #: bbp-themes/bbp-twentyten/bbpress/form-topic-split.php:92
1116
- #: bbp-themes/bbp-twentyten/bbpress/form-reply.php:120
1117
- #: bbp-themes/bbp-twentyten/bbpress/form-topic-merge.php:88
1118
- #: bbp-themes/bbp-twentyten/bbpress/form-topic.php:154
1119
- msgid "Submit"
1120
  msgstr ""
1121
 
1122
- #: bbp-themes/bbp-twentyten/bbpress/form-topic-split.php:105
1123
- #: bbp-themes/bbp-twentyten/bbpress/form-topic-merge.php:101
1124
- msgid "You do not have the permissions to edit this topic!"
1125
  msgstr ""
1126
 
1127
- #: bbp-themes/bbp-twentyten/bbpress/form-topic-split.php:105
1128
- #: bbp-themes/bbp-twentyten/bbpress/form-topic-merge.php:101
1129
- msgid "You cannot edit this topic."
1130
  msgstr ""
1131
 
1132
- #: bbp-themes/bbp-twentyten/bbpress/form-reply.php:29
1133
- msgid "Reply to: &ldquo;%s&rdquo;"
1134
  msgstr ""
1135
 
1136
- #: bbp-themes/bbp-twentyten/bbpress/form-reply.php:34
1137
- msgid ""
1138
- "This topic is marked as closed to new replies, however your posting "
1139
- "capabilities still allow you to do so."
1140
  msgstr ""
1141
 
1142
- #: bbp-themes/bbp-twentyten/bbpress/form-reply.php:42
1143
- #: bbp-themes/bbp-twentyten/bbpress/form-topic.php:57
1144
- msgid "Your account has the ability to post unrestricted HTML content."
1145
  msgstr ""
1146
 
1147
- #: bbp-themes/bbp-twentyten/bbpress/form-reply.php:60
1148
- msgid "Reply:"
1149
  msgstr ""
1150
 
1151
- #: bbp-themes/bbp-twentyten/bbpress/form-reply.php:67
1152
- #: bbp-themes/bbp-twentyten/bbpress/form-topic.php:86
1153
- msgid ""
1154
- "You may use these <abbr title=\"HyperText Markup Language\">HTML</abbr> tags "
1155
- "and attributes:"
1156
  msgstr ""
1157
 
1158
- #: bbp-themes/bbp-twentyten/bbpress/form-reply.php:74
1159
- msgid "Tags:"
1160
  msgstr ""
1161
 
1162
- #: bbp-themes/bbp-twentyten/bbpress/form-reply.php:86
1163
- #: bbp-themes/bbp-twentyten/bbpress/form-topic.php:125
1164
- msgid "Notify the author of follow-up replies via email"
1165
  msgstr ""
1166
 
1167
- #: bbp-themes/bbp-twentyten/bbpress/form-reply.php:90
1168
- #: bbp-themes/bbp-twentyten/bbpress/form-topic.php:129
1169
- msgid "Notify me of follow-up replies via email"
1170
  msgstr ""
1171
 
1172
- #: bbp-themes/bbp-twentyten/bbpress/form-reply.php:101
1173
- #: bbp-themes/bbp-twentyten/bbpress/form-topic.php:139
1174
- msgid "Revision"
1175
  msgstr ""
1176
 
1177
- #: bbp-themes/bbp-twentyten/bbpress/form-reply.php:104
1178
- #: bbp-themes/bbp-twentyten/bbpress/form-topic.php:142
1179
- msgid "Keep a log of this edit:"
 
1180
  msgstr ""
1181
 
1182
- #: bbp-themes/bbp-twentyten/bbpress/form-reply.php:108
1183
- #: bbp-themes/bbp-twentyten/bbpress/form-topic.php:146
1184
- msgid "Optional reason for editing:"
1185
  msgstr ""
1186
 
1187
- #: bbp-themes/bbp-twentyten/bbpress/form-reply.php:134
1188
- msgid "You cannot reply to this topic."
1189
  msgstr ""
1190
 
1191
- #: bbp-themes/bbp-twentyten/bbpress/form-reply.php:134
1192
- msgid "You must be logged in to reply to this topic."
1193
  msgstr ""
1194
 
1195
- #: bbp-themes/bbp-twentyten/bbpress/form-reply.php:144
1196
- msgid "This topic has been closed to new replies."
1197
  msgstr ""
1198
 
1199
- #: bbp-themes/bbp-twentyten/bbpress/feedback-logged-in.php:13
1200
- msgid "You are already logged in."
1201
  msgstr ""
1202
 
1203
- #: bbp-themes/bbp-twentyten/bbpress/form-anonymous.php:15
1204
- msgid "Author information"
 
 
1205
  msgstr ""
1206
 
1207
- #: bbp-themes/bbp-twentyten/bbpress/form-anonymous.php:15
1208
- msgid "Your information:"
1209
  msgstr ""
1210
 
1211
- #: bbp-themes/bbp-twentyten/bbpress/form-anonymous.php:17
1212
- msgid "Name (required):"
1213
  msgstr ""
1214
 
1215
- #: bbp-themes/bbp-twentyten/bbpress/form-anonymous.php:22
1216
- msgid "Mail (will not be published) (required):"
1217
  msgstr ""
1218
 
1219
- #: bbp-themes/bbp-twentyten/bbpress/form-anonymous.php:27
1220
- msgid "Website:"
1221
  msgstr ""
1222
 
1223
- #: bbp-themes/bbp-twentyten/bbpress/user-subscriptions.php:20
1224
- msgid "Subscribed Forum Topics"
1225
  msgstr ""
1226
 
1227
- #: bbp-themes/bbp-twentyten/bbpress/user-subscriptions.php:31
1228
- msgid "You are not currently subscribed to any topics."
 
 
1229
  msgstr ""
1230
 
1231
- #: bbp-themes/bbp-twentyten/bbpress/user-subscriptions.php:31
1232
- msgid "This user is not currently subscribed to any topics."
1233
  msgstr ""
1234
 
1235
- #: bbp-themes/bbp-twentyten/bbpress/form-user-lost-pass.php:14
1236
- msgid "Lost Password"
1237
  msgstr ""
1238
 
1239
- #: bbp-themes/bbp-twentyten/bbpress/form-user-lost-pass.php:18
1240
- msgid "Username or Email"
1241
  msgstr ""
1242
 
1243
- #: bbp-themes/bbp-twentyten/bbpress/form-user-lost-pass.php:27
1244
- msgid "Reset my password"
1245
  msgstr ""
1246
 
1247
- #: bbp-themes/bbp-twentyten/bbpress/loop-forums.php:18
1248
- #: bbp-admin/bbp-replies.php:538 bbp-admin/bbp-metaboxes.php:52
1249
- #: bbp-admin/bbp-metaboxes.php:256 bbp-admin/bbp-metaboxes.php:364
1250
- #: bbp-admin/bbp-metaboxes.php:367 bbp-admin/bbp-metaboxes.php:407
1251
- #: bbp-admin/bbp-metaboxes.php:410 bbp-admin/bbp-topics.php:606
1252
- #: bbp-admin/bbp-forums.php:402 bbpress.php:557
1253
- msgid "Forum"
1254
- msgstr ""
1255
 
1256
- #: bbp-themes/bbp-twentyten/bbpress/loop-forums.php:20
1257
- #: bbp-themes/bbp-twentyten/bbpress/loop-topics.php:19
1258
- #: bbp-themes/bbp-twentyten/bbpress/loop-replies.php:22
1259
- #: bbp-themes/bbp-twentyten/bbpress/loop-replies.php:45
1260
- #: bbp-admin/bbp-settings.php:536
1261
- msgid "Posts"
1262
  msgstr ""
1263
 
1264
- #: bbp-themes/bbp-twentyten/bbpress/loop-forums.php:21
1265
- #: bbp-themes/bbp-twentyten/bbpress/loop-topics.php:20
1266
- #: bbp-admin/bbp-topics.php:611 bbp-admin/bbp-forums.php:407
1267
- msgid "Freshness"
1268
  msgstr ""
1269
 
1270
- #: bbp-themes/bbp-twentyten/bbpress/user-topics-created.php:16
1271
- msgid "Forum Topics Created"
1272
  msgstr ""
1273
 
1274
- #: bbp-themes/bbp-twentyten/bbpress/user-topics-created.php:27
1275
- msgid "You have not created any topics."
 
1276
  msgstr ""
1277
 
1278
- #: bbp-themes/bbp-twentyten/bbpress/user-topics-created.php:27
1279
- msgid "This user has not created any topics."
1280
  msgstr ""
1281
 
1282
- #: bbp-themes/bbp-twentyten/bbpress/form-user-register.php:14
1283
- msgid "Create an Account"
1284
  msgstr ""
1285
 
1286
- #: bbp-themes/bbp-twentyten/bbpress/form-user-register.php:17
1287
- msgid "Your username must be unique, and cannot be changed later."
1288
  msgstr ""
1289
 
1290
- #: bbp-themes/bbp-twentyten/bbpress/form-user-register.php:18
1291
- msgid ""
1292
- "We use your email address to email you a secure password and verify your "
1293
- "account."
1294
  msgstr ""
1295
 
1296
- #: bbp-themes/bbp-twentyten/bbpress/form-user-register.php:28
1297
- msgid "Email Address"
1298
  msgstr ""
1299
 
1300
- #: bbp-themes/bbp-twentyten/bbpress/form-user-register.php:36
1301
- msgid "Register"
1302
  msgstr ""
1303
 
1304
- #: bbp-themes/bbp-twentyten/bbpress/form-protected.php:16
1305
- msgid "Protected"
1306
  msgstr ""
1307
 
1308
- #: bbp-themes/bbp-twentyten/bbpress/loop-topics.php:17
1309
- #: bbp-themes/bbp-twentyten/bbpress/content-single-topic-lead.php:18
1310
- #: bbp-admin/bbp-replies.php:539 bbp-admin/bbp-metaboxes.php:69
1311
- #: bbp-admin/bbp-metaboxes.php:432 bbp-admin/bbp-metaboxes.php:435
1312
- #: bbpress.php:614
1313
- msgid "Topic"
1314
  msgstr ""
1315
 
1316
- #: bbp-themes/bbp-twentyten/bbpress/loop-topics.php:18
1317
- #: bbp-admin/bbp-topics.php:608
1318
- msgid "Voices"
1319
  msgstr ""
1320
 
1321
- #: bbp-themes/bbp-twentyten/bbpress/loop-topics.php:21
1322
- msgid "Remove"
1323
  msgstr ""
1324
 
1325
- #: bbp-themes/bbp-twentyten/bbpress/loop-topics.php:42
1326
- msgid "Started by: %1$s"
1327
  msgstr ""
1328
 
1329
- #: bbp-themes/bbp-twentyten/bbpress/loop-topics.php:46
1330
- msgid "in: <a href=\"%1$s\">%2$s</a>"
1331
  msgstr ""
1332
 
1333
- #: bbp-themes/bbp-twentyten/bbpress/form-topic-merge.php:22
1334
- msgid "Merge topic \"%s\""
1335
- msgstr ""
 
 
1336
 
1337
- #: bbp-themes/bbp-twentyten/bbpress/form-topic-merge.php:27
1338
  msgid ""
1339
- "Select the topic to merge this one into. The destination topic will remain "
1340
- "the lead topic, and this one will change into a reply."
1341
  msgstr ""
1342
 
1343
- #: bbp-themes/bbp-twentyten/bbpress/form-topic-merge.php:28
1344
- msgid ""
1345
- "To keep this topic as the lead, go to the other topic and use the merge tool "
1346
- "from there instead."
1347
  msgstr ""
1348
 
1349
- #: bbp-themes/bbp-twentyten/bbpress/form-topic-merge.php:32
1350
- msgid ""
1351
- "All replies within both topics will be merged chronologically. The order of "
1352
- "the merged replies is based on the time and date they were posted. If the "
1353
- "destination topic was created after this one, it's post date will be updated "
1354
- "to second earlier than this one."
1355
  msgstr ""
1356
 
1357
- #: bbp-themes/bbp-twentyten/bbpress/form-topic-merge.php:36
1358
- msgid "Destination"
1359
  msgstr ""
1360
 
1361
- #: bbp-themes/bbp-twentyten/bbpress/form-topic-merge.php:40
1362
- msgid "Merge with this topic:"
1363
  msgstr ""
1364
 
1365
- #: bbp-themes/bbp-twentyten/bbpress/form-topic-merge.php:49
1366
- msgid "No topics were found to which the topic could be merged to!"
 
 
 
 
1367
  msgstr ""
1368
 
1369
- #: bbp-themes/bbp-twentyten/bbpress/form-topic-merge.php:55
1370
- msgid "There are no other topics in this forum to merge with."
1371
  msgstr ""
1372
 
1373
- #: bbp-themes/bbp-twentyten/bbpress/form-topic-merge.php:70
1374
- msgid "Merge topic subscribers"
1375
  msgstr ""
1376
 
1377
- #: bbp-themes/bbp-twentyten/bbpress/form-topic-merge.php:75
1378
- msgid "Merge topic favoriters"
1379
  msgstr ""
1380
 
1381
- #: bbp-themes/bbp-twentyten/bbpress/form-topic-merge.php:78
1382
- msgid "Merge topic tags"
1383
  msgstr ""
1384
 
1385
- #: bbp-themes/bbp-twentyten/bbpress/content-single-topic-lead.php:15
1386
- #: bbp-admin/bbp-forums.php:405
1387
- msgid "Creator"
1388
  msgstr ""
1389
 
1390
- #: bbp-themes/bbp-twentyten/bbpress/content-single-topic-lead.php:43
1391
- #: bbp-themes/bbp-twentyten/bbpress/loop-replies.php:64
1392
- msgid "%1$s at %2$s"
1393
  msgstr ""
1394
 
1395
- #: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:18
1396
- msgid "Manage Tag: \"%s\""
1397
  msgstr ""
1398
 
1399
- #: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:22
1400
- msgid "Rename"
1401
  msgstr ""
1402
 
1403
- #: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:25
1404
- msgid "Leave the slug empty to have one automatically generated."
1405
  msgstr ""
1406
 
1407
- #: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:29
1408
- msgid ""
1409
- "Changing the slug affects its permalink. Any links to the old slug will stop "
1410
- "working."
1411
  msgstr ""
1412
 
1413
- #: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:35
1414
- msgid "Name:"
 
 
1415
  msgstr ""
1416
 
1417
- #: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:40
1418
- msgid "Slug:"
1419
  msgstr ""
1420
 
1421
- #: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:45
1422
- msgid "Update"
 
1423
  msgstr ""
1424
 
1425
- #: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:62
1426
- msgid "Merging tags together cannot be undone."
 
1427
  msgstr ""
1428
 
1429
- #: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:68
1430
- msgid "Existing tag:"
 
 
1431
  msgstr ""
1432
 
1433
- #: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:74
 
1434
  msgid ""
1435
- "Are you sure you want to merge the \"%s\" tag into the tag you specified?"
1436
  msgstr ""
1437
 
1438
- #: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:92
1439
- msgid "This does not delete your topics. Only the tag itself is deleted."
1440
  msgstr ""
1441
 
1442
- #: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:95
1443
- msgid "Deleting a tag cannot be undone."
1444
  msgstr ""
1445
 
1446
- #: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:96
1447
- msgid "Any links to this tag will no longer function."
1448
  msgstr ""
1449
 
1450
- #: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:103
1451
  msgid ""
1452
- "Are you sure you want to delete the \"%s\" tag? This is permanent and cannot "
1453
- "be undone."
1454
  msgstr ""
1455
 
1456
- #: bbp-themes/bbp-twentyten/bbpress/feedback-no-topics.php:13
1457
- msgid "Oh bother! No topics were found here!"
 
1458
  msgstr ""
1459
 
1460
- #: bbp-themes/bbp-twentyten/bbpress/loop-replies.php:17
1461
- #: bbp-themes/bbp-twentyten/bbpress/loop-replies.php:40
1462
- #: bbp-themes/bbp-twentyten/single-reply.php:31 bbp-admin/bbp-replies.php:540
1463
- #: bbp-admin/bbp-topics.php:609
1464
- msgid "Author"
1465
  msgstr ""
1466
 
1467
- #: bbp-themes/bbp-twentyten/bbpress/user-posts.php:14
1468
- msgid "Blog Posts"
 
 
1469
  msgstr ""
1470
 
1471
- #: bbp-themes/bbp-twentyten/bbpress/form-topic.php:39
1472
- msgid "Edit topic \"%s\""
1473
  msgstr ""
1474
 
1475
- #: bbp-themes/bbp-twentyten/bbpress/form-topic.php:41
1476
- msgid "Create new topic in: &ldquo;%s&rdquo;"
 
1477
  msgstr ""
1478
 
1479
- #: bbp-themes/bbp-twentyten/bbpress/form-topic.php:41
1480
- msgid "Create new topic"
1481
  msgstr ""
1482
 
1483
- #: bbp-themes/bbp-twentyten/bbpress/form-topic.php:49
1484
- msgid ""
1485
- "This forum is marked as closed to new topics, however your posting "
1486
- "capabilities still allow you to do so."
1487
  msgstr ""
1488
 
1489
- #: bbp-themes/bbp-twentyten/bbpress/form-topic.php:74
1490
- msgid "Topic Title (Maximum Length: %d):"
1491
  msgstr ""
1492
 
1493
- #: bbp-themes/bbp-twentyten/bbpress/form-topic.php:79
1494
- msgid "Topic Description:"
1495
  msgstr ""
1496
 
1497
- #: bbp-themes/bbp-twentyten/bbpress/form-topic.php:93
1498
- msgid "Topic Tags:"
1499
  msgstr ""
1500
 
1501
- #: bbp-themes/bbp-twentyten/bbpress/form-topic.php:100 bbpress.php:626
1502
- msgid "Forum:"
1503
  msgstr ""
1504
 
1505
- #: bbp-themes/bbp-twentyten/bbpress/form-topic.php:110
1506
- msgid "Topic Type:"
 
1507
  msgstr ""
1508
 
1509
- #: bbp-themes/bbp-twentyten/bbpress/form-topic.php:168
1510
- msgid "This forum is closed to new topics."
1511
  msgstr ""
1512
 
1513
- #: bbp-themes/bbp-twentyten/bbpress/form-topic.php:176
1514
- msgid "You cannot create new topics at this time."
1515
  msgstr ""
1516
 
1517
- #: bbp-themes/bbp-twentyten/bbpress/form-topic.php:176
1518
- msgid "You must be logged in to create new topics."
1519
  msgstr ""
1520
 
1521
- #: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:14
1522
- #: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:19
1523
- #: bbp-admin/bbp-metaboxes.php:466 bbp-admin/bbp-metaboxes.php:469
1524
- msgid "Name"
1525
  msgstr ""
1526
 
1527
- #: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:24
1528
- msgid "First Name"
1529
  msgstr ""
1530
 
1531
- #: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:29
1532
- msgid "Last Name"
1533
  msgstr ""
1534
 
1535
- #: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:34
1536
- msgid "Nickname"
1537
  msgstr ""
1538
 
1539
- #: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:39
1540
- msgid "Display name publicly as"
1541
  msgstr ""
1542
 
1543
- #: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:49
1544
- #: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:52
1545
- msgid "Contact Info"
1546
  msgstr ""
1547
 
1548
- #: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:57
1549
- #: bbp-admin/bbp-metaboxes.php:480 bbp-admin/bbp-metaboxes.php:483
1550
- msgid "Website"
1551
  msgstr ""
1552
 
1553
- #: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:74
1554
- #: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:77
1555
- msgid "About Yourself"
1556
  msgstr ""
1557
 
1558
- #: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:74
1559
- #: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:77
1560
- msgid "About the user"
1561
  msgstr ""
1562
 
1563
- #: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:82
1564
- msgid "Biographical Info"
1565
  msgstr ""
1566
 
1567
- #: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:84
1568
- msgid ""
1569
- "Share a little biographical information to fill out your profile. This may "
1570
- "be shown publicly."
1571
  msgstr ""
1572
 
1573
- #: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:91
1574
- #: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:94
1575
- msgid "Account"
 
 
1576
  msgstr ""
1577
 
1578
- #: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:101
1579
- msgid "Usernames cannot be changed."
 
 
1580
  msgstr ""
1581
 
1582
- #: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:105
1583
- msgid "E-mail"
 
 
1584
  msgstr ""
1585
 
1586
- #: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:117
1587
- msgid ""
1588
- "There is a pending email address change to <code>%1$s</code>. <a href=\"%2$s"
1589
- "\">Cancel</a>"
1590
  msgstr ""
1591
 
1592
- #: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:126
1593
- msgid "New Password"
 
 
1594
  msgstr ""
1595
 
1596
- #: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:129
1597
  msgid ""
1598
- "If you would like to change the password type a new one. Otherwise leave "
1599
- "this blank."
1600
  msgstr ""
1601
 
1602
- #: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:132
1603
- msgid "Type your new password again."
1604
  msgstr ""
1605
 
1606
- #: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:135
1607
  msgid ""
1608
- "Hint: The password should be at least seven characters long. To make it "
1609
- "stronger, use upper and lower case letters, numbers and symbols like ! \" ? "
1610
- "$ % ^ &amp; )."
1611
  msgstr ""
1612
 
1613
- #: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:142
1614
- msgid "Role:"
 
1615
  msgstr ""
1616
 
1617
- #: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:153
1618
- msgid "Super Admin"
 
1619
  msgstr ""
1620
 
1621
- #: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:156
1622
- msgid "Grant this user super admin privileges for the Network."
 
1623
  msgstr ""
1624
 
1625
- #: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:169
1626
- #: bbp-admin/bbp-settings.php:420
1627
- msgid "Save Changes"
 
1628
  msgstr ""
1629
 
1630
- #: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:174
1631
- msgid "Update Profile"
 
1632
  msgstr ""
1633
 
1634
- #: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:174
1635
- msgid "Update User"
 
 
 
1636
  msgstr ""
1637
 
1638
- #: bbp-themes/bbp-twentyten/bbpress/feedback-no-forums.php:13
1639
- msgid "Oh bother! No forums were found here!"
 
 
 
1640
  msgstr ""
1641
 
1642
- #: bbp-themes/bbp-twentyten/bbpress/user-favorites.php:16
1643
- msgid "Favorite Forum Topics"
 
 
1644
  msgstr ""
1645
 
1646
- #: bbp-themes/bbp-twentyten/bbpress/user-favorites.php:27
1647
- msgid "You currently have no favorite topics."
 
1648
  msgstr ""
1649
 
1650
- #: bbp-themes/bbp-twentyten/bbpress/user-favorites.php:27
1651
- msgid "This user has no favorite topics."
1652
  msgstr ""
1653
 
1654
- #: bbp-themes/bbp-twentyten/bbpress/feedback-no-access.php:13
1655
- #: bbp-admin/bbp-metaboxes.php:283
1656
- msgid "Private"
1657
  msgstr ""
1658
 
1659
- #: bbp-themes/bbp-twentyten/bbpress/feedback-no-access.php:16
1660
- msgid "You do not have permission to view this forum."
 
 
1661
  msgstr ""
1662
 
1663
- #: bbp-themes/bbp-twentyten/single-reply.php:52
1664
- msgid "Posted on %1$s at %2$s"
1665
  msgstr ""
1666
 
1667
- #: bbp-themes/bbp-twentyten/page-topic-tags.php:25
 
1668
  msgid ""
1669
- "<p>This is a collection of tags that are currently popular on our forums.</p>"
 
1670
  msgstr ""
1671
 
1672
- #: bbp-admin/bbp-functions.php:152
1673
- msgid "Count topics in each forum"
1674
  msgstr ""
1675
 
1676
- #: bbp-admin/bbp-functions.php:153
1677
- msgid "Count replies in each forum"
1678
  msgstr ""
1679
 
1680
- #: bbp-admin/bbp-functions.php:154
1681
- msgid "Count replies in each topic"
 
 
1682
  msgstr ""
1683
 
1684
- #: bbp-admin/bbp-functions.php:155
1685
- msgid "Count voices in each topic"
1686
  msgstr ""
1687
 
1688
- #: bbp-admin/bbp-functions.php:156
1689
- msgid "Count spammed & trashed replies in each topic"
1690
  msgstr ""
1691
 
1692
- #: bbp-admin/bbp-functions.php:157
1693
- msgid "Count replies for each user"
1694
  msgstr ""
1695
 
1696
- #: bbp-admin/bbp-functions.php:158
1697
- msgid "Remove trashed topics from user favorites"
1698
  msgstr ""
1699
 
1700
- #: bbp-admin/bbp-functions.php:159
1701
- msgid "Remove trashed topics from user subscriptions"
1702
  msgstr ""
1703
 
1704
- #: bbp-admin/bbp-functions.php:163
1705
- msgid "Recalculate last activity in each topic and forum"
1706
  msgstr ""
1707
 
1708
- #: bbp-admin/bbp-functions.php:183
1709
- msgid "Counting the number of replies in each topic&hellip; %s"
 
 
1710
  msgstr ""
1711
 
1712
- #: bbp-admin/bbp-functions.php:184 bbp-admin/bbp-functions.php:228
1713
- #: bbp-admin/bbp-functions.php:271 bbp-admin/bbp-functions.php:301
1714
- #: bbp-admin/bbp-functions.php:335 bbp-admin/bbp-functions.php:367
1715
- #: bbp-admin/bbp-functions.php:413 bbp-admin/bbp-functions.php:492
1716
- #: bbp-admin/bbp-functions.php:574 bbp-admin/bbp-functions.php:706
1717
- #: bbp-admin/bbp-functions.php:765 bbp-admin/bbp-functions.php:822
1718
- msgid "Failed!"
1719
  msgstr ""
1720
 
1721
- #: bbp-admin/bbp-functions.php:210 bbp-admin/bbp-functions.php:254
1722
- #: bbp-admin/bbp-functions.php:281 bbp-admin/bbp-functions.php:315
1723
- #: bbp-admin/bbp-functions.php:349 bbp-admin/bbp-functions.php:395
1724
- #: bbp-admin/bbp-functions.php:747 bbp-admin/bbp-functions.php:805
1725
- #: bbp-admin/bbp-functions.php:902
1726
- msgid "Complete!"
1727
  msgstr ""
1728
 
1729
- #: bbp-admin/bbp-functions.php:227
1730
- msgid "Counting the number of voices in each topic&hellip; %s"
 
 
1731
  msgstr ""
1732
 
1733
- #: bbp-admin/bbp-functions.php:270
 
1734
  msgid ""
1735
- "Counting the number of spammed and trashed replies in each topic&hellip; %s"
 
1736
  msgstr ""
1737
 
1738
- #: bbp-admin/bbp-functions.php:300
1739
- msgid "Counting the number of topics in each forum&hellip; %s"
 
1740
  msgstr ""
1741
 
1742
- #: bbp-admin/bbp-functions.php:334
1743
- msgid "Counting the number of replies in each forum&hellip; %s"
 
 
1744
  msgstr ""
1745
 
1746
- #: bbp-admin/bbp-functions.php:366
1747
- msgid "Counting the number of topics to which each user has replied&hellip; %s"
 
 
 
1748
  msgstr ""
1749
 
1750
- #: bbp-admin/bbp-functions.php:412
1751
- msgid "Counting the number of topic tags in each topic&hellip; %s"
 
1752
  msgstr ""
1753
 
1754
- #: bbp-admin/bbp-functions.php:491
1755
- msgid "Counting the number of topics in each topic tag&hellip; %s"
 
 
1756
  msgstr ""
1757
 
1758
- #: bbp-admin/bbp-functions.php:573
1759
- msgid "Deleting topic tags with no topics&hellip; %s"
 
 
1760
  msgstr ""
1761
 
1762
- #: bbp-admin/bbp-functions.php:705
1763
- msgid "Removing trashed topics from user favorites&hellip; %s"
1764
  msgstr ""
1765
 
1766
- #: bbp-admin/bbp-functions.php:731 bbp-admin/bbp-functions.php:789
1767
- msgid "Nothing to remove!"
1768
  msgstr ""
1769
 
1770
- #: bbp-admin/bbp-functions.php:764
1771
- msgid "Removing trashed topics from user subscriptions&hellip; %s"
1772
  msgstr ""
1773
 
1774
- #: bbp-admin/bbp-functions.php:821
1775
- msgid "Recomputing latest post in every topic and forum&hellip; %s"
1776
  msgstr ""
1777
 
1778
- #: bbp-admin/bbp-replies.php:127
1779
- msgid ""
1780
- "The reply title field and the big reply editing area are fixed in place, but "
1781
- "you can reposition all the other boxes using drag and drop, and can minimize "
1782
- "or expand them by clicking the title bar of the box. Use the Screen Options "
1783
- "tab to unhide more boxes (Reply Attributes, Slug) or to choose a 1- or 2-"
1784
- "column layout for this screen."
1785
  msgstr ""
1786
 
1787
- #: bbp-admin/bbp-replies.php:128
1788
  msgid ""
1789
- "<strong>Title</strong> - Enter a title for your reply. After you enter a "
1790
- "title, you will see the permalink below, which you can edit."
1791
  msgstr ""
1792
 
1793
- #: bbp-admin/bbp-replies.php:129
1794
- msgid ""
1795
- "<strong>Post editor</strong> - Enter the text for your reply. There are two "
1796
- "modes of editing: Visual and HTML. Choose the mode by clicking on the "
1797
- "appropriate tab. Visual mode gives you a WYSIWYG editor. Click the last icon "
1798
- "in the row to get a second row of controls. The screen icon just before that "
1799
- "allows you to expand the edit box to full screen. The HTML mode allows you "
1800
- "to enter raw HTML along with your forum text. You can insert media files by "
1801
- "clicking the icons above the post editor and following the directions."
1802
  msgstr ""
1803
 
1804
- #: bbp-admin/bbp-replies.php:130
1805
- msgid ""
1806
- "<strong>Reply Attributes</strong> - Select the attributes that your reply "
1807
- "should have. The Parent Topic dropdown determines the parent topic that the "
1808
- "reply belongs to."
1809
  msgstr ""
1810
 
1811
- #: bbp-admin/bbp-replies.php:131
1812
- msgid ""
1813
- "<strong>Publish</strong> - The Publish box will allow you to save your reply "
1814
- "as Draft or Pending Review. You may Preview your reply before it is "
1815
- "published as well. The Visibility will determine whether the reply is "
1816
- "Public, Password protected (requiring a password on the site to view) or "
1817
- "Private (only the author will have access to it). Replies may be published "
1818
- "immediately by clicking the dropdown, or at a specific date and time by "
1819
- "clicking the Edit link."
1820
  msgstr ""
1821
 
1822
- #: bbp-admin/bbp-replies.php:132
1823
- msgid ""
1824
- "<strong>Revisions</strong> - Revisions show past versions of the saved "
1825
- "reply. Each revision can be compared to the current version, or another "
1826
- "revision. Revisions can also be restored to the current version."
1827
  msgstr ""
1828
 
1829
- #: bbp-admin/bbp-replies.php:133 bbp-admin/bbp-replies.php:174
1830
- #: bbp-admin/bbp-topics.php:134 bbp-admin/bbp-topics.php:178
1831
- #: bbp-admin/bbp-settings.php:449 bbp-admin/bbp-forums.php:130
1832
- #: bbp-admin/bbp-forums.php:168
1833
- msgid "<strong>For more information:</strong>"
1834
  msgstr ""
1835
 
1836
- #: bbp-admin/bbp-replies.php:136 bbp-admin/bbp-replies.php:177
1837
- #: bbp-admin/bbp-topics.php:137 bbp-admin/bbp-topics.php:181
1838
- #: bbp-admin/bbp-settings.php:452 bbp-admin/bbp-forums.php:133
1839
- #: bbp-admin/bbp-forums.php:171
1840
- msgid "<a href=\"http://bbpress.org/documentation/\">bbPress Documentation</a>"
1841
  msgstr ""
1842
 
1843
- #: bbp-admin/bbp-replies.php:137 bbp-admin/bbp-replies.php:178
1844
- #: bbp-admin/bbp-topics.php:138 bbp-admin/bbp-topics.php:182
1845
- #: bbp-admin/bbp-settings.php:453 bbp-admin/bbp-forums.php:134
1846
- #: bbp-admin/bbp-forums.php:172
1847
- msgid "<a href=\"http://bbpress.org/forums/\">bbPress Support Forums</a>"
1848
- msgstr ""
1849
 
1850
- #: bbp-admin/bbp-replies.php:152
1851
- msgid "This screen displays the replies created on your site."
 
1852
  msgstr ""
1853
 
1854
- #: bbp-admin/bbp-replies.php:153 bbp-admin/bbp-topics.php:154
1855
- #: bbp-admin/bbp-forums.php:150
1856
- msgid "You can customize the display of this screen in a number of ways:"
1857
  msgstr ""
1858
 
1859
- #: bbp-admin/bbp-replies.php:156
1860
- msgid ""
1861
- "You can hide/display columns based on your needs (Forum, Topic, Author, and "
1862
- "Created) and decide how many replies to list per screen using the Screen "
1863
- "Options tab."
1864
  msgstr ""
1865
 
1866
- #: bbp-admin/bbp-replies.php:157
1867
- msgid ""
1868
- "You can filter the list of replies by reply status using the text links in "
1869
- "the upper left to show All, Published, Pending Review, Draft, or Trashed "
1870
- "topics. The default view is to show all replies."
1871
  msgstr ""
1872
 
1873
- #: bbp-admin/bbp-replies.php:158
1874
- msgid ""
1875
- "You can view replies in a simple title list or with an excerpt. Choose the "
1876
- "view you prefer by clicking on the icons at the top of the list on the right."
1877
- msgstr ""
1878
 
1879
- #: bbp-admin/bbp-replies.php:159
1880
- msgid ""
1881
- "You can refine the list to show only replies from a specific month by using "
1882
- "the dropdown menus above the replies list. Click the Filter button after "
1883
- "making your selection."
1884
- msgstr ""
1885
 
1886
- #: bbp-admin/bbp-replies.php:160
1887
- msgid ""
1888
- "You can also show only replies from a specific parent forum by using the "
1889
- "parent forum dropdown above the replies list and selecting the parent forum. "
1890
- "Click the Filter button after making your selection."
1891
- msgstr ""
1892
 
1893
- #: bbp-admin/bbp-replies.php:163
1894
- msgid ""
1895
- "Hovering over a row in the replies list will display action links that allow "
1896
- "you to manage your reply. You can perform the following actions:"
1897
- msgstr ""
1898
 
1899
- #: bbp-admin/bbp-replies.php:166
1900
- msgid ""
1901
- "Edit takes you to the editing screen for that reply. You can also reach that "
1902
- "screen by clicking on the reply title."
1903
  msgstr ""
1904
 
1905
- #: bbp-admin/bbp-replies.php:167
1906
- msgid ""
1907
- "Trash removes your reply from this list and places it in the trash, from "
1908
- "which you can permanently delete it."
1909
  msgstr ""
1910
 
1911
- #: bbp-admin/bbp-replies.php:168
1912
- msgid "View will take you to your live reply to view the reply."
1913
  msgstr ""
1914
 
1915
- #: bbp-admin/bbp-replies.php:169
1916
- msgid ""
1917
- "Spam will mark the topic as spam, preventing further replies to it and "
1918
- "removing it from the site&rsquo;s public view."
1919
  msgstr ""
1920
 
1921
- #: bbp-admin/bbp-replies.php:172
1922
- msgid ""
1923
- "You can also edit multiple replies at once. Select the replies you want to "
1924
- "edit using the checkboxes, select Edit from the Bulk Actions menu and click "
1925
- "Apply. You will be able to change the metadata for all selected replies at "
1926
- "once. To remove a reply from the grouping, just click the x next to its name "
1927
- "in the Bulk Edit area that appears."
1928
  msgstr ""
1929
 
1930
- #: bbp-admin/bbp-replies.php:173
1931
- msgid ""
1932
- "The Bulk Actions menu may also be used to delete multiple replies at once. "
1933
- "Select Delete from the dropdown after making your selection."
1934
  msgstr ""
1935
 
1936
- #: bbp-admin/bbp-replies.php:201
1937
- msgid "Reply Attributes"
1938
  msgstr ""
1939
 
1940
- #: bbp-admin/bbp-replies.php:283 bbp-admin/bbp-topics.php:304
1941
- msgid "Author Information"
1942
  msgstr ""
1943
 
1944
- #: bbp-admin/bbp-replies.php:439
1945
- msgid "The reply was not found!"
1946
  msgstr ""
1947
 
1948
- #: bbp-admin/bbp-replies.php:442 bbp-admin/bbp-topics.php:471
1949
- msgid "You do not have the permission to do that!"
1950
  msgstr ""
1951
 
1952
- #: bbp-admin/bbp-replies.php:503
1953
- msgid "There was a problem marking the reply \"%1$s\" as spam."
1954
  msgstr ""
1955
 
1956
- #: bbp-admin/bbp-replies.php:503
1957
- msgid "Reply \"%1$s\" successfully marked as spam."
1958
  msgstr ""
1959
 
1960
- #: bbp-admin/bbp-replies.php:507
1961
- msgid "There was a problem unmarking the reply \"%1$s\" as spam."
1962
  msgstr ""
1963
 
1964
- #: bbp-admin/bbp-replies.php:507
1965
- msgid "Reply \"%1$s\" successfully unmarked as spam."
1966
  msgstr ""
1967
 
1968
- #: bbp-admin/bbp-replies.php:537
1969
- msgid "Title"
1970
  msgstr ""
1971
 
1972
- #: bbp-admin/bbp-replies.php:541 bbp-admin/bbp-topics.php:610
1973
- #: bbp-admin/bbp-forums.php:406
1974
- msgid "Created"
1975
  msgstr ""
1976
 
1977
- #: bbp-admin/bbp-replies.php:591 bbp-admin/bbp-replies.php:598
1978
- msgid "No Topic"
1979
  msgstr ""
1980
 
1981
- #: bbp-admin/bbp-replies.php:615 bbp-admin/bbp-replies.php:629
1982
- #: bbp-admin/bbp-topics.php:658
1983
- msgid "No Forum"
1984
  msgstr ""
1985
 
1986
- #: bbp-admin/bbp-replies.php:620
1987
- msgid "(Mismatch)"
1988
  msgstr ""
1989
 
1990
- #: bbp-admin/bbp-replies.php:643 bbp-admin/bbp-topics.php:686
1991
- #: bbp-admin/bbp-forums.php:441
1992
- msgid "%1$s <br /> %2$s"
1993
  msgstr ""
1994
 
1995
- #: bbp-admin/bbp-replies.php:688 bbp-admin/bbp-topics.php:744
1996
- msgid "View &#8220;%s&#8221;"
1997
  msgstr ""
1998
 
1999
- #: bbp-admin/bbp-replies.php:688 bbp-admin/bbp-topics.php:744
2000
- msgid "View"
2001
  msgstr ""
2002
 
2003
- #: bbp-admin/bbp-replies.php:699
2004
- msgid "Mark the reply as not spam"
2005
  msgstr ""
2006
 
2007
- #: bbp-admin/bbp-replies.php:699 bbp-admin/bbp-topics.php:775
2008
- msgid "Not spam"
2009
  msgstr ""
2010
 
2011
- #: bbp-admin/bbp-replies.php:701
2012
- msgid "Mark this reply as spam"
2013
  msgstr ""
2014
 
2015
- #: bbp-admin/bbp-replies.php:715 bbp-admin/bbp-topics.php:791
2016
- msgid "Delete Permanently"
2017
  msgstr ""
2018
 
2019
- #: bbp-admin/bbp-replies.php:750 bbp-admin/bbp-topics.php:826
2020
- msgid "Empty Spam"
2021
  msgstr ""
2022
 
2023
- #: bbp-admin/bbp-replies.php:760 bbp-admin/bbp-topics.php:836
2024
- msgid "In all forums"
2025
  msgstr ""
2026
 
2027
- #: bbp-admin/bbp-replies.php:837
2028
- msgid "Reply updated. <a href=\"%s\">View topic</a>"
2029
  msgstr ""
2030
 
2031
- #: bbp-admin/bbp-replies.php:840 bbp-admin/bbp-topics.php:916
2032
- #: bbp-admin/bbp-forums.php:520
2033
- msgid "Custom field updated."
2034
  msgstr ""
2035
 
2036
- #: bbp-admin/bbp-replies.php:843 bbp-admin/bbp-topics.php:919
2037
- #: bbp-admin/bbp-forums.php:523
2038
- msgid "Custom field deleted."
2039
  msgstr ""
2040
 
2041
- #: bbp-admin/bbp-replies.php:846
2042
- msgid "Reply updated."
2043
  msgstr ""
2044
 
2045
- #: bbp-admin/bbp-replies.php:851
2046
- msgid "Reply restored to revision from %s"
2047
  msgstr ""
2048
 
2049
- #: bbp-admin/bbp-replies.php:855
2050
- msgid "Reply created. <a href=\"%s\">View topic</a>"
2051
  msgstr ""
2052
 
2053
- #: bbp-admin/bbp-replies.php:858
2054
- msgid "Reply saved."
2055
  msgstr ""
2056
 
2057
- #: bbp-admin/bbp-replies.php:861
2058
- msgid "Reply submitted. <a target=\"_blank\" href=\"%s\">Preview topic</a>"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2059
  msgstr ""
2060
 
2061
- #: bbp-admin/bbp-replies.php:864
2062
  msgid ""
2063
- "Reply scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
2064
- "\">Preview topic</a>"
2065
  msgstr ""
2066
 
2067
- #: bbp-admin/bbp-replies.php:866 bbp-admin/bbp-topics.php:942
2068
- #: bbp-admin/bbp-forums.php:546
2069
- msgid "M j, Y @ G:i"
2070
  msgstr ""
2071
 
2072
- #: bbp-admin/bbp-replies.php:871
2073
- msgid "Reply draft updated. <a target=\"_blank\" href=\"%s\">Preview topic</a>"
 
 
 
 
2074
  msgstr ""
2075
 
2076
- #: bbp-admin/importers/bbpress.php:350
2077
  msgid "bbPress Standalone Importer"
2078
  msgstr ""
2079
 
2080
- #: bbp-admin/importers/bbpress.php:363
2081
  msgid "Try Again"
2082
  msgstr ""
2083
 
2084
- #: bbp-admin/importers/bbpress.php:447
2085
  msgid ""
2086
  "It looks like you attempted to convert your bbPress standalone previously "
2087
  "and got interrupted."
2088
  msgstr ""
2089
 
2090
- #: bbp-admin/importers/bbpress.php:450
2091
  msgid "Cancel &amp; start a new import"
2092
  msgstr ""
2093
 
2094
- #: bbp-admin/importers/bbpress.php:451
2095
  msgid "Continue previous import"
2096
  msgstr ""
2097
 
2098
- #: bbp-admin/importers/bbpress.php:459
2099
  msgid ""
2100
  "Existing bbPress standalone installation found. See configuration section "
2101
  "for details."
2102
  msgstr ""
2103
 
2104
- #: bbp-admin/importers/bbpress.php:466
2105
  msgid ""
2106
  "This importer allows you to convert your bbPress Standalone into the bbPress "
2107
  "Plugin."
2108
  msgstr ""
2109
 
2110
- #: bbp-admin/importers/bbpress.php:468
2111
  msgid "Instructions"
2112
  msgstr ""
2113
 
2114
- #: bbp-admin/importers/bbpress.php:470
2115
  msgid ""
2116
  "Create a <a href=\"%s\">backup</a> of your database and files. If the import "
2117
  "process is interrupted for any reason, restore from that backup and re-run "
2118
  "the import."
2119
  msgstr ""
2120
 
2121
- #: bbp-admin/importers/bbpress.php:471
2122
  msgid ""
2123
  "Seriously... Go back everything up, and don't come back until that's done. "
2124
  "If things go awry, it's possible this importer will not be able to complete "
@@ -2126,199 +2084,199 @@ msgid ""
2126
  "we're not kidding."
2127
  msgstr ""
2128
 
2129
- #: bbp-admin/importers/bbpress.php:472
2130
  msgid "To reduce memory overhead and avoid possible conflicts please:"
2131
  msgstr ""
2132
 
2133
- #: bbp-admin/importers/bbpress.php:475
2134
  msgid ""
2135
  "Disable all plugins (except bbPress) on both your WordPress and bbPress "
2136
  "standalone installations."
2137
  msgstr ""
2138
 
2139
- #: bbp-admin/importers/bbpress.php:478
2140
  msgid "Switch to a default WordPress theme."
2141
  msgstr ""
2142
 
2143
- #: bbp-admin/importers/bbpress.php:482
2144
  msgid "Notes on compatibility:"
2145
  msgstr ""
2146
 
2147
- #: bbp-admin/importers/bbpress.php:485
2148
  msgid ""
2149
- "If you are using the alpha version of bbPress 1.1, subscriptions will be "
2150
- "ported automatically."
2151
  msgstr ""
2152
 
2153
- #: bbp-admin/importers/bbpress.php:488
2154
  msgid ""
2155
- "If you have the <a href=\"%s\">Subscribe to Topic</a> plugin active, then "
2156
- "this script will migrate user subscriptions from that plugin."
2157
  msgstr ""
2158
 
2159
- #: bbp-admin/importers/bbpress.php:491
2160
  msgid ""
2161
  "If you are importing an existing BuddyPress Forums installation, we should "
2162
  "have found your previous configuration file."
2163
  msgstr ""
2164
 
2165
- #: bbp-admin/importers/bbpress.php:495
2166
  msgid ""
2167
  "This converter can be a drag on large forums with lots of existing topics "
2168
  "and replies. If possible, do this import in a safe place (like a local "
2169
  "installation.)"
2170
  msgstr ""
2171
 
2172
- #: bbp-admin/importers/bbpress.php:498
2173
  msgid "Configuration"
2174
  msgstr ""
2175
 
2176
- #: bbp-admin/importers/bbpress.php:499
2177
  msgid ""
2178
- "Enter the full path to your bbPress configuration file i.e. <code>bb-config."
2179
- "php</code>:"
2180
  msgstr ""
2181
 
2182
- #: bbp-admin/importers/bbpress.php:503
2183
  msgid "bbPress Standalone Path:"
2184
  msgstr ""
2185
 
2186
- #: bbp-admin/importers/bbpress.php:510
2187
  msgid "Proceed"
2188
  msgstr ""
2189
 
2190
- #: bbp-admin/importers/bbpress.php:556
2191
  msgid ""
2192
  "Please enter the path to your bbPress configuration file - <code>bb-config."
2193
  "php</code>."
2194
  msgstr ""
2195
 
2196
- #: bbp-admin/importers/bbpress.php:557 bbp-admin/importers/bbpress.php:575
2197
  msgid "Go Back"
2198
  msgstr ""
2199
 
2200
- #: bbp-admin/importers/bbpress.php:574
2201
  msgid ""
2202
  "bbPress configuration file <code>bb-config.php</code> doesn't exist in the "
2203
  "path specified! Please check the path and try again."
2204
  msgstr ""
2205
 
2206
- #: bbp-admin/importers/bbpress.php:608
2207
  msgid "Configuration Options"
2208
  msgstr ""
2209
 
2210
- #: bbp-admin/importers/bbpress.php:614
2211
  msgid ""
2212
  "<strong>Auto-detected</strong>: Your WordPress and bbPress user tables are "
2213
  "integrated. Proceed to <label for=\"step_board\">importing forums, topics "
2214
  "and posts</label>."
2215
  msgstr ""
2216
 
2217
- #: bbp-admin/importers/bbpress.php:621
2218
  msgid ""
2219
  "Your WordPress blog is <strong>new</strong> and you don't have the fear of "
2220
  "losing WordPress users:"
2221
  msgstr ""
2222
 
2223
- #: bbp-admin/importers/bbpress.php:622
2224
  msgid "Go to migrating users section."
2225
  msgstr ""
2226
 
2227
- #: bbp-admin/importers/bbpress.php:623
2228
  msgid ""
2229
- "<strong>Note</strong>: The WordPress %1$s and %2$s tables will be renamed "
2230
- "(not deleted) so that you can restore them if something goes wrong."
2231
  msgstr ""
2232
 
2233
- #: bbp-admin/importers/bbpress.php:624
2234
  msgid ""
2235
- "Please ensure there are no tables named %1$s and %2$s to avoid renaming "
2236
- "conflicts."
2237
  msgstr ""
2238
 
2239
- #: bbp-admin/importers/bbpress.php:625
2240
  msgid "Also, your WordPress and bbPress installs must be in the same database."
2241
  msgstr ""
2242
 
2243
- #: bbp-admin/importers/bbpress.php:629
2244
  msgid ""
2245
  "You're done with user migration or have the user tables <strong>integrated</"
2246
  "strong>:"
2247
  msgstr ""
2248
 
2249
- #: bbp-admin/importers/bbpress.php:630
2250
  msgid "Proceed to importing forums, topics and posts section."
2251
  msgstr ""
2252
 
2253
- #: bbp-admin/importers/bbpress.php:634
2254
  msgid ""
2255
  "You have a well <strong>established</strong> WordPress user base, the user "
2256
  "tables are not integrated and you can't lose your users:"
2257
  msgstr ""
2258
 
2259
- #: bbp-admin/importers/bbpress.php:635
2260
  msgid ""
2261
  "This is currently not yet supported, and will likely not be in the future "
2262
  "also as it is highly complex to merge two user sets (which might even "
2263
  "conflict)."
2264
  msgstr ""
2265
 
2266
- #: bbp-admin/importers/bbpress.php:636
2267
  msgid ""
2268
- "Patches are always <a href=\"%s\" title=\"The last revision containing the "
2269
- "custom user migration code\">welcome</a>. :)"
2270
  msgstr ""
2271
 
2272
- #: bbp-admin/importers/bbpress.php:644
2273
  msgid "Migrate Users"
2274
  msgstr ""
2275
 
2276
- #: bbp-admin/importers/bbpress.php:647
2277
  msgid "Import Forums, Topics & Posts"
2278
  msgstr ""
2279
 
2280
- #: bbp-admin/importers/bbpress.php:651
2281
  msgid "Start!"
2282
  msgstr ""
2283
 
2284
- #: bbp-admin/importers/bbpress.php:687
2285
  msgid "Importing Users"
2286
  msgstr ""
2287
 
2288
- #: bbp-admin/importers/bbpress.php:688
2289
  msgid "We&#8217;re in the process of migrating your users..."
2290
  msgstr ""
2291
 
2292
- #: bbp-admin/importers/bbpress.php:698
2293
  msgid ""
2294
  "Renamed the <code>%1$s</code> and <code>%2$s</code> tables to <code>%3$s</"
2295
  "code> and <code>%4$s</code> respectively."
2296
  msgstr ""
2297
 
2298
- #: bbp-admin/importers/bbpress.php:700
2299
  msgid ""
2300
  "There was a problem dropping the <code>%1$s</code> and <code>%2$s</code> "
2301
  "tables. Please check and re-run the script or rename or drop the tables "
2302
  "yourself."
2303
  msgstr ""
2304
 
2305
- #: bbp-admin/importers/bbpress.php:716
2306
  msgid "Created the <code>%s</code> table and copied the users from bbPress."
2307
  msgstr ""
2308
 
2309
- #: bbp-admin/importers/bbpress.php:718 bbp-admin/importers/bbpress.php:735
2310
  msgid ""
2311
  "There was a problem duplicating the table <code>%1$s</code> to <code>%2$s</"
2312
  "code>. Please check and re-run the script or duplicate the table yourself."
2313
  msgstr ""
2314
 
2315
- #: bbp-admin/importers/bbpress.php:733
2316
  msgid ""
2317
  "Created the <code>%s</code> table and copied the user information from "
2318
  "bbPress."
2319
  msgstr ""
2320
 
2321
- #: bbp-admin/importers/bbpress.php:808
2322
  msgid ""
2323
  "There was a problem in getting an administrator of the blog. Now, please go "
2324
  "to your blog, set a user as administrator, login as that user and directly "
@@ -2327,7 +2285,7 @@ msgid ""
2327
  "in as the bbPress keymaster)."
2328
  msgstr ""
2329
 
2330
- #: bbp-admin/importers/bbpress.php:831
2331
  msgid ""
2332
  "User roles have been successfully mapped based. The bbPress keymaster is "
2333
  "WordPress administrator, bbPress administrator and moderators are moderators "
@@ -2337,1203 +2295,1142 @@ msgid ""
2337
  "$s)."
2338
  msgstr ""
2339
 
2340
- #: bbp-admin/importers/bbpress.php:836
2341
  msgid ""
2342
  "Your users have all been imported, but wait &#8211; there&#8217;s more! Now "
2343
  "we need to import your forums, topics and posts!"
2344
  msgstr ""
2345
 
2346
- #: bbp-admin/importers/bbpress.php:839
2347
- msgid "Import forums, topics and posts &raquo;"
2348
  msgstr ""
2349
 
2350
- #: bbp-admin/importers/bbpress.php:867
2351
  msgid "Importing Forums, Topics And Posts"
2352
  msgstr ""
2353
 
2354
- #: bbp-admin/importers/bbpress.php:868
2355
  msgid ""
2356
  "We&#8217;re importing your bbPress standalone forums, topics and replies..."
2357
  msgstr ""
2358
 
2359
- #: bbp-admin/importers/bbpress.php:875
2360
  msgid "No forums were found!"
2361
  msgstr ""
2362
 
2363
- #: bbp-admin/importers/bbpress.php:879
2364
  msgid "Total number of forums: %s"
2365
  msgstr ""
2366
 
2367
- #: bbp-admin/importers/bbpress.php:885
2368
  msgid "Processing forum #%1$s (<a href=\"%2$s\">%3$s</a>)"
2369
  msgstr ""
2370
 
2371
- #: bbp-admin/importers/bbpress.php:905
2372
  msgid "Added the forum as forum #<a href=\"%1$s\">%2$s</a>"
2373
  msgstr ""
2374
 
2375
- #: bbp-admin/importers/bbpress.php:907
2376
  msgid "There was a problem in adding the forum."
2377
  msgstr ""
2378
 
2379
- #: bbp-admin/importers/bbpress.php:928
2380
  msgid "The forum is a category and has no topics."
2381
  msgstr ""
2382
 
2383
- #: bbp-admin/importers/bbpress.php:933
2384
  msgid ""
2385
  "The forum is a category but has topics, so it has been set as closed on the "
2386
  "new board."
2387
  msgstr ""
2388
 
2389
- #: bbp-admin/importers/bbpress.php:940
2390
  msgid "Total number of topics in the forum: %s"
2391
  msgstr ""
2392
 
2393
- #: bbp-admin/importers/bbpress.php:1080
2394
  msgid ""
2395
  "Added topic #%1$s (<a href=\"%2$s\">%3$s</a>) as topic #<a href=\"%4$s\">%5"
2396
  "$s</a> with %6$s replies."
2397
  msgstr ""
2398
 
2399
- #: bbp-admin/importers/bbpress.php:1082
2400
  msgid "There was a problem in adding topic #1$s (<a href=\"%2$s\">%3$s</a>)."
2401
  msgstr ""
2402
 
2403
- #: bbp-admin/importers/bbpress.php:1101
2404
  msgid ""
2405
  "Your forums, topics and posts have all been imported, but wait &#8211; "
2406
  "there&#8217;s more! Now we need to do a <a href=\"%s\">recount</a> to get "
2407
  "the counts in sync! Yes, we&#8217;re bad at Math."
2408
  msgstr ""
2409
 
2410
- #: bbp-admin/importers/bbpress.php:1103
2411
  msgid "After that it's all done. <a href=\"%s\">Have fun!</a> :)"
2412
  msgstr ""
2413
 
2414
- #: bbp-admin/importers/bbpress.php:1114
2415
  msgid "bbPress Standalone"
2416
  msgstr ""
2417
 
2418
- #: bbp-admin/importers/bbpress.php:1114
2419
  msgid "Import your bbPress standalone board."
2420
  msgstr ""
2421
 
2422
- #: bbp-admin/bbp-admin.php:168 bbp-admin/bbp-tools.php:67
2423
- msgid "Recount"
2424
  msgstr ""
2425
 
2426
- #: bbp-admin/bbp-admin.php:189
2427
- msgid "Main Settings"
2428
  msgstr ""
2429
 
2430
- #: bbp-admin/bbp-admin.php:192
2431
- msgid "Lock post editing after"
2432
  msgstr ""
2433
 
2434
- #: bbp-admin/bbp-admin.php:196
2435
- msgid "Throttle time"
2436
  msgstr ""
2437
 
2438
- #: bbp-admin/bbp-admin.php:200
2439
- msgid "Allow Favorites"
2440
  msgstr ""
2441
 
2442
- #: bbp-admin/bbp-admin.php:204
2443
- msgid "Allow Subscriptions"
2444
  msgstr ""
2445
 
2446
- #: bbp-admin/bbp-admin.php:208
2447
- msgid "Allow Anonymous Posting"
2448
  msgstr ""
2449
 
2450
- #: bbp-admin/bbp-admin.php:214
2451
- msgid "Per Page"
 
2452
  msgstr ""
2453
 
2454
- #: bbp-admin/bbp-admin.php:217 bbp-admin/bbp-admin.php:230
2455
- msgid "Topics Per Page"
2456
  msgstr ""
2457
 
2458
- #: bbp-admin/bbp-admin.php:221 bbp-admin/bbp-admin.php:234
2459
- msgid "Replies Per Page"
 
 
2460
  msgstr ""
2461
 
2462
- #: bbp-admin/bbp-admin.php:227
2463
- msgid "Per RSS Page"
 
 
2464
  msgstr ""
2465
 
2466
- #: bbp-admin/bbp-admin.php:240
2467
- msgid "Archive Slugs"
2468
  msgstr ""
2469
 
2470
- #: bbp-admin/bbp-admin.php:243
2471
- msgid "Forums Base"
2472
  msgstr ""
2473
 
2474
- #: bbp-admin/bbp-admin.php:247
2475
- msgid "Topics Base"
2476
  msgstr ""
2477
 
2478
- #: bbp-admin/bbp-admin.php:253
2479
- msgid "Single Slugs"
2480
  msgstr ""
2481
 
2482
- #: bbp-admin/bbp-admin.php:256
2483
- msgid "Forum Prefix"
 
 
 
2484
  msgstr ""
2485
 
2486
- #: bbp-admin/bbp-admin.php:260 bbp-admin/bbp-settings.php:557
2487
- msgid "Forum slug"
 
 
 
2488
  msgstr ""
2489
 
2490
- #: bbp-admin/bbp-admin.php:264 bbp-admin/bbp-settings.php:560
2491
- msgid "Topic slug"
 
 
2492
  msgstr ""
2493
 
2494
- #: bbp-admin/bbp-admin.php:268 bbp-admin/bbp-settings.php:572
2495
- msgid "Topic tag slug"
 
 
2496
  msgstr ""
2497
 
2498
- #: bbp-admin/bbp-admin.php:272 bbp-admin/bbp-settings.php:563
2499
- msgid "Reply slug"
 
 
 
2500
  msgstr ""
2501
 
2502
- #: bbp-admin/bbp-admin.php:278 bbp-admin/bbp-settings.php:566
2503
- msgid "User base"
 
 
 
 
2504
  msgstr ""
2505
 
2506
- #: bbp-admin/bbp-admin.php:282 bbp-admin/bbp-settings.php:569
2507
- msgid "View base"
 
 
 
2508
  msgstr ""
2509
 
2510
- #: bbp-admin/bbp-admin.php:353
2511
  msgid ""
2512
- "<strong>bbPress is in Theme Compatability Mode</strong>. Your forums are "
2513
- "using default styling."
2514
  msgstr ""
2515
 
2516
- #: bbp-admin/bbp-admin.php:372
2517
- msgid "Settings"
 
 
 
2518
  msgstr ""
2519
 
2520
- #: bbp-admin/bbp-admin.php:398
2521
- msgid "Right Now in Forums"
 
 
 
2522
  msgstr ""
2523
 
2524
- #: bbp-admin/bbp-admin.php:645
2525
- msgid "Green"
 
 
 
2526
  msgstr ""
2527
 
2528
- #: bbp-admin/bbp-metaboxes.php:44
2529
- msgid "Content"
 
 
 
 
 
2530
  msgstr ""
2531
 
2532
- #: bbp-admin/bbp-metaboxes.php:86 bbpress.php:671
2533
- msgid "Reply"
2534
- msgid_plural "Replies"
2535
- msgstr[0] ""
2536
- msgstr[1] ""
2537
-
2538
- #: bbp-admin/bbp-metaboxes.php:103 bbpress.php:812
2539
- msgid "Topic Tag"
2540
- msgid_plural "Topic Tags"
2541
- msgstr[0] ""
2542
- msgstr[1] ""
2543
-
2544
- #: bbp-admin/bbp-metaboxes.php:125
2545
- msgid "Discussion"
2546
  msgstr ""
2547
 
2548
- #: bbp-admin/bbp-metaboxes.php:133
2549
- msgid "User"
2550
- msgid_plural "Users"
2551
- msgstr[0] ""
2552
- msgstr[1] ""
2553
-
2554
- #: bbp-admin/bbp-metaboxes.php:152
2555
- msgid "Hidden Topic"
2556
- msgid_plural "Hidden Topics"
2557
- msgstr[0] ""
2558
- msgstr[1] ""
2559
-
2560
- #: bbp-admin/bbp-metaboxes.php:171
2561
- msgid "Hidden Reply"
2562
- msgid_plural "Hidden Replies"
2563
- msgstr[0] ""
2564
- msgstr[1] ""
2565
-
2566
- #: bbp-admin/bbp-metaboxes.php:190
2567
- msgid "Empty Topic Tag"
2568
- msgid_plural "Empty Topic Tags"
2569
- msgstr[0] ""
2570
- msgstr[1] ""
2571
-
2572
- #: bbp-admin/bbp-metaboxes.php:216
2573
- msgid "Theme <strong>natively supports</strong> bbPress"
2574
  msgstr ""
2575
 
2576
- #: bbp-admin/bbp-metaboxes.php:218
2577
- msgid "Theme <strong>does not</strong> natively support bbPress"
 
 
2578
  msgstr ""
2579
 
2580
- #: bbp-admin/bbp-metaboxes.php:223
2581
- msgid "You are using <span class=\"b\">bbPress %s</span>."
2582
- msgstr ""
2583
-
2584
- #: bbp-admin/bbp-metaboxes.php:257
2585
- msgid "Category"
2586
- msgstr ""
2587
-
2588
- #: bbp-admin/bbp-metaboxes.php:270
2589
- msgid "Closed"
2590
- msgstr ""
2591
-
2592
- #: bbp-admin/bbp-metaboxes.php:282
2593
- msgid "Public"
2594
- msgstr ""
2595
-
2596
- #: bbp-admin/bbp-metaboxes.php:284
2597
- msgid "Hidden"
2598
- msgstr ""
2599
-
2600
- #: bbp-admin/bbp-metaboxes.php:296 bbp-admin/bbp-metaboxes.php:297
2601
- msgid "Type:"
2602
- msgstr ""
2603
-
2604
- #: bbp-admin/bbp-metaboxes.php:302 bbp-admin/bbp-metaboxes.php:303
2605
- msgid "Status:"
2606
- msgstr ""
2607
-
2608
- #: bbp-admin/bbp-metaboxes.php:308 bbp-admin/bbp-metaboxes.php:309
2609
- msgid "Visibility:"
2610
- msgstr ""
2611
-
2612
- #: bbp-admin/bbp-metaboxes.php:316
2613
- msgid "Parent:"
2614
- msgstr ""
2615
-
2616
- #: bbp-admin/bbp-metaboxes.php:317
2617
- msgid "Forum Parent"
2618
- msgstr ""
2619
-
2620
- #: bbp-admin/bbp-metaboxes.php:323
2621
- msgid "(No Parent)"
2622
- msgstr ""
2623
-
2624
- #: bbp-admin/bbp-metaboxes.php:332
2625
- msgid "Order:"
2626
- msgstr ""
2627
-
2628
- #: bbp-admin/bbp-metaboxes.php:333
2629
- msgid "Forum Order"
2630
- msgstr ""
2631
-
2632
- #: bbp-admin/bbp-metaboxes.php:361 bbp-admin/bbp-topics.php:664
2633
- msgid "(No Forum)"
2634
- msgstr ""
2635
-
2636
- #: bbp-admin/bbp-metaboxes.php:404
2637
- msgid "(Use Forum of Topic)"
2638
- msgstr ""
2639
-
2640
- #: bbp-admin/bbp-metaboxes.php:425
2641
- msgid "(No Topic)"
2642
- msgstr ""
2643
-
2644
- #: bbp-admin/bbp-metaboxes.php:473 bbp-admin/bbp-metaboxes.php:476
2645
- msgid "Email"
2646
- msgstr ""
2647
-
2648
- #: bbp-admin/bbp-metaboxes.php:489 bbp-admin/bbp-metaboxes.php:492
2649
- msgid "IP Address"
2650
- msgstr ""
2651
-
2652
- #: bbp-admin/bbp-topics.php:127
2653
  msgid ""
2654
- "The topic title field and the big topic editing area are fixed in place, but "
2655
- "you can reposition all the other boxes using drag and drop, and can minimize "
2656
- "or expand them by clicking the title bar of the box. Use the Screen Options "
2657
- "tab to unhide more boxes (Topic Tags, Topic Attributes, or Slug) or to "
2658
- "choose a 1- or 2-column layout for this screen."
2659
  msgstr ""
2660
 
2661
- #: bbp-admin/bbp-topics.php:128
2662
  msgid ""
2663
- "<strong>Title</strong> - Enter a title for your topic. After you enter a "
2664
- "title, you will see the permalink below, which you can edit."
2665
  msgstr ""
2666
 
2667
- #: bbp-admin/bbp-topics.php:129
2668
  msgid ""
2669
- "<strong>Post editor</strong> - Enter the text for your topic. There are two "
2670
- "modes of editing: Visual and HTML. Choose the mode by clicking on the "
2671
- "appropriate tab. Visual mode gives you a WYSIWYG editor. Click the last icon "
2672
- "in the row to get a second row of controls. The screen icon just before that "
2673
- "allows you to expand the edit box to full screen. The HTML mode allows you "
2674
- "to enter raw HTML along with your forum text. You can insert media files by "
2675
- "clicking the icons above the post editor and following the directions."
2676
  msgstr ""
2677
 
2678
- #: bbp-admin/bbp-topics.php:130
2679
  msgid ""
2680
- "<strong>Topic Attributes</strong> - Select the attributes that your topic "
2681
- "should have. The Forum dropdown determines the parent forum that the topic "
2682
- "belongs to. Select the forum or category from the dropdown, or leave the "
2683
- "default (No Forum) to post the topic without an assigned forum."
2684
  msgstr ""
2685
 
2686
- #: bbp-admin/bbp-topics.php:131
2687
  msgid ""
2688
- "<strong>Publish</strong> - The Publish box will allow you to save your topic "
2689
- "as Draft or Pending Review. You may Preview your topic before it is "
2690
- "published as well. The Visibility will determine whether the topic is "
2691
- "Public, Password protected (requiring a password on the site to view) or "
2692
- "Private (only the author will have access to it). Topics may be published "
2693
- "immediately by clicking the dropdown, or at a specific date and time by "
2694
- "clicking the Edit link."
2695
  msgstr ""
2696
 
2697
- #: bbp-admin/bbp-topics.php:132
2698
  msgid ""
2699
- "<strong>Topic Tags</strong> - You can assign keywords to your topics using "
2700
- "Topic Tags. Unlike categories, tags have no hierarchy, meaning there is no "
2701
- "relationship from one tag to another. Topics can be added and modified "
2702
- "further from the Topic Tags screen."
2703
  msgstr ""
2704
 
2705
- #: bbp-admin/bbp-topics.php:133
2706
  msgid ""
2707
  "<strong>Revisions</strong> - Revisions show past versions of the saved "
2708
- "topic. Each revision can be compared to the current version, or another "
2709
  "revision. Revisions can also be restored to the current version."
2710
  msgstr ""
2711
 
2712
- #: bbp-admin/bbp-topics.php:153
2713
- msgid "This screen displays the topics created on your site."
2714
  msgstr ""
2715
 
2716
- #: bbp-admin/bbp-topics.php:157
 
 
 
 
 
2717
  msgid ""
2718
- "You can hide/display columns based on your needs and decide how many topics "
2719
  "to list per screen using the Screen Options tab."
2720
  msgstr ""
2721
 
2722
- #: bbp-admin/bbp-topics.php:158
2723
  msgid ""
2724
- "You can filter the list of topics by topics status using the text links in "
2725
- "the upper left to show All, Published, Pending Review, Draft, or Trashed "
2726
- "topics. The default view is to show all topics."
2727
  msgstr ""
2728
 
2729
- #: bbp-admin/bbp-topics.php:159
2730
  msgid ""
2731
- "You can view topics in a simple title list or with an excerpt. Choose the "
2732
- "view you prefer by clicking on the icons at the top of the list on the right."
 
 
2733
  msgstr ""
2734
 
2735
- #: bbp-admin/bbp-topics.php:160
2736
  msgid ""
2737
- "You can refine the list to show only topics from a specific month by using "
2738
- "the dropdown menus above the topics list. Click the Filter button after "
2739
- "making your selection."
2740
  msgstr ""
2741
 
2742
- #: bbp-admin/bbp-topics.php:161
2743
  msgid ""
2744
- "You can also show only topics from a specific parent forum by using the "
2745
- "parent forum dropdown above the topics list and selecting the parent forum. "
2746
- "Click the Filter button after making your selection."
2747
  msgstr ""
2748
 
2749
- #: bbp-admin/bbp-topics.php:162
2750
  msgid ""
2751
- "You can refine the list by clicking on the topic creator in the topics list."
 
2752
  msgstr ""
2753
 
2754
- #: bbp-admin/bbp-topics.php:165
2755
- msgid ""
2756
- "Hovering over a row in the topics list will display action links that allow "
2757
- "you to manage your topic. You can perform the following actions:"
2758
  msgstr ""
2759
 
2760
- #: bbp-admin/bbp-topics.php:168
2761
  msgid ""
2762
- "Edit takes you to the editing screen for that topic. You can also reach that "
2763
- "screen by clicking on the topic title."
 
 
 
2764
  msgstr ""
2765
 
2766
- #: bbp-admin/bbp-topics.php:169
2767
  msgid ""
2768
- "Trash removes your topic from this list and places it in the trash, from "
2769
- "which you can permanently delete it."
2770
  msgstr ""
2771
 
2772
- #: bbp-admin/bbp-topics.php:170
2773
- msgid "View will take you to your live topic to view the topic."
2774
  msgstr ""
2775
 
2776
- #: bbp-admin/bbp-topics.php:171
2777
- msgid ""
2778
- "Close will close your topic, disabling new replies within it. It will remain "
2779
- "viewable to users, but replies will not be allowed."
2780
  msgstr ""
2781
 
2782
- #: bbp-admin/bbp-topics.php:172
2783
- msgid ""
2784
- "Stick (to front) will pin the topic to the front page of the forum that "
2785
- "it&rsquo;s in. New topics will begin beneath the list of \"stuck\" topics, "
2786
- "which will always sit at the top of the list."
2787
  msgstr ""
2788
 
2789
- #: bbp-admin/bbp-topics.php:173
2790
- msgid ""
2791
- "Spam will mark the topic as spam, closing the post to new replies and "
2792
- "removing it from the public view."
2793
  msgstr ""
2794
 
2795
- #: bbp-admin/bbp-topics.php:176
2796
- msgid ""
2797
- "You can also edit multiple topics at once. Select the topics you want to "
2798
- "edit using the checkboxes, select Edit from the Bulk Actions menu and click "
2799
- "Apply. You will be able to change the metadata for all selected topics at "
2800
- "once. To remove a topic from the grouping, just click the x next to its name "
2801
- "in the Bulk Edit area that appears."
2802
  msgstr ""
2803
 
2804
- #: bbp-admin/bbp-topics.php:177
2805
- msgid ""
2806
- "The Bulk Actions menu may also be used to delete multiple topics at once. "
2807
- "Select Delete from the dropdown after making your selection."
2808
  msgstr ""
2809
 
2810
- #: bbp-admin/bbp-topics.php:197
2811
- msgid ""
2812
- "You can change the display of this screen using the Screen Options tab to "
2813
- "set how many items are displayed per screen (20 by default) and to display/"
2814
- "hide columns in the table (Description, Slug, and Topics)."
2815
  msgstr ""
2816
 
2817
- #: bbp-admin/bbp-topics.php:198
2818
- msgid ""
2819
- "You can assign keywords to your topics using Topic Tags. Unlike categories, "
2820
- "tags have no hierarchy, meaning there is no relationship from one tag to "
2821
- "another."
2822
  msgstr ""
2823
 
2824
- #: bbp-admin/bbp-topics.php:199
2825
- msgid ""
2826
- "Normally, tags are ad-hoc keywords that identify important information in "
2827
- "your topic (names, subjects, etc) that may or may not recur in other topics. "
2828
- "If you think of your forum like a book, the tags are like the terms in the "
2829
- "index."
2830
  msgstr ""
2831
 
2832
- #: bbp-admin/bbp-topics.php:200
2833
- msgid ""
2834
- "When editing a topic tag on this screen, you will fill in the following "
2835
- "fields:"
2836
  msgstr ""
2837
 
2838
- #: bbp-admin/bbp-topics.php:203
2839
- msgid "<strong>Name</strong> - The name is how it appears on your site."
2840
  msgstr ""
2841
 
2842
- #: bbp-admin/bbp-topics.php:204
2843
- msgid ""
2844
- "<strong>Slug</strong> - The Slug is the URL-friendly version of the name. It "
2845
- "is usually all lowercase and contains only letters, numbers, and hyphens."
2846
  msgstr ""
2847
 
2848
- #: bbp-admin/bbp-topics.php:205
2849
  msgid ""
2850
- "<strong>Description</strong> - The description is not prominent by default; "
2851
- "however, some forum themes may display it."
2852
  msgstr ""
2853
 
2854
- #: bbp-admin/bbp-topics.php:229
2855
- msgid "Topic Attributes"
 
2856
  msgstr ""
2857
 
2858
- #: bbp-admin/bbp-topics.php:468
2859
- msgid "The topic was not found!"
2860
  msgstr ""
2861
 
2862
- #: bbp-admin/bbp-topics.php:551
2863
- msgid "There was a problem opening the topic \"%1$s\"."
 
 
 
 
 
2864
  msgstr ""
2865
 
2866
- #: bbp-admin/bbp-topics.php:551
2867
- msgid "Topic \"%1$s\" successfully opened."
 
 
2868
  msgstr ""
2869
 
2870
- #: bbp-admin/bbp-topics.php:555
2871
- msgid "There was a problem closing the topic \"%1$s\"."
 
 
 
 
 
 
 
2872
  msgstr ""
2873
 
2874
- #: bbp-admin/bbp-topics.php:555
2875
- msgid "Topic \"%1$s\" successfully closed."
 
 
 
2876
  msgstr ""
2877
 
2878
- #: bbp-admin/bbp-topics.php:559
2879
- msgid "There was a problem sticking the topic \"%1$s\" to front."
 
 
 
 
 
 
 
2880
  msgstr ""
2881
 
2882
- #: bbp-admin/bbp-topics.php:559
2883
- msgid "Topic \"%1$s\" successfully sticked to front."
 
 
 
2884
  msgstr ""
2885
 
2886
- #: bbp-admin/bbp-topics.php:563
2887
- msgid "There was a problem sticking the topic \"%1$s\"."
2888
  msgstr ""
2889
 
2890
- #: bbp-admin/bbp-topics.php:563
2891
- msgid "Topic \"%1$s\" successfully sticked."
 
 
 
2892
  msgstr ""
2893
 
2894
- #: bbp-admin/bbp-topics.php:567
2895
- msgid "There was a problem unsticking the topic \"%1$s\"."
 
 
 
2896
  msgstr ""
2897
 
2898
- #: bbp-admin/bbp-topics.php:567
2899
- msgid "Topic \"%1$s\" successfully unsticked."
 
 
2900
  msgstr ""
2901
 
2902
- #: bbp-admin/bbp-topics.php:571
2903
- msgid "There was a problem marking the topic \"%1$s\" as spam."
 
 
 
2904
  msgstr ""
2905
 
2906
- #: bbp-admin/bbp-topics.php:571
2907
- msgid "Topic \"%1$s\" successfully marked as spam."
 
 
 
2908
  msgstr ""
2909
 
2910
- #: bbp-admin/bbp-topics.php:575
2911
- msgid "There was a problem unmarking the topic \"%1$s\" as spam."
 
 
2912
  msgstr ""
2913
 
2914
- #: bbp-admin/bbp-topics.php:575
2915
- msgid "Topic \"%1$s\" successfully unmarked as spam."
 
 
2916
  msgstr ""
2917
 
2918
- #: bbp-admin/bbp-topics.php:696 bbp-admin/bbp-forums.php:450
2919
- msgid "%s ago"
 
 
 
 
 
 
2920
  msgstr ""
2921
 
2922
- #: bbp-admin/bbp-topics.php:754
2923
- msgid "Close this topic"
 
 
2924
  msgstr ""
2925
 
2926
- #: bbp-admin/bbp-topics.php:756
2927
- msgid "Open this topic"
 
 
 
 
 
2928
  msgstr ""
2929
 
2930
- #: bbp-admin/bbp-topics.php:765
2931
- msgid "Unstick this topic"
 
 
2932
  msgstr ""
2933
 
2934
- #: bbp-admin/bbp-topics.php:768
2935
- msgid "Stick this topic to its forum"
2936
  msgstr ""
2937
 
2938
- #: bbp-admin/bbp-topics.php:768
2939
- msgid "Stick this topic to front"
2940
  msgstr ""
2941
 
2942
- #: bbp-admin/bbp-topics.php:775
2943
- msgid "Mark the topic as not spam"
2944
  msgstr ""
2945
 
2946
- #: bbp-admin/bbp-topics.php:777
2947
- msgid "Mark this topic as spam"
2948
  msgstr ""
2949
 
2950
- #: bbp-admin/bbp-topics.php:913
2951
- msgid "Topic updated. <a href=\"%s\">View topic</a>"
2952
  msgstr ""
2953
 
2954
- #: bbp-admin/bbp-topics.php:922
2955
- msgid "Topic updated."
2956
  msgstr ""
2957
 
2958
- #: bbp-admin/bbp-topics.php:927
2959
- msgid "Topic restored to revision from %s"
2960
  msgstr ""
2961
 
2962
- #: bbp-admin/bbp-topics.php:931
2963
- msgid "Topic created. <a href=\"%s\">View topic</a>"
2964
  msgstr ""
2965
 
2966
- #: bbp-admin/bbp-topics.php:934
2967
- msgid "Topic saved."
2968
  msgstr ""
2969
 
2970
- #: bbp-admin/bbp-topics.php:937
2971
- msgid "Topic submitted. <a target=\"_blank\" href=\"%s\">Preview topic</a>"
 
 
2972
  msgstr ""
2973
 
2974
- #: bbp-admin/bbp-topics.php:940
2975
- msgid ""
2976
- "Topic scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
2977
- "\">Preview topic</a>"
2978
  msgstr ""
2979
 
2980
- #: bbp-admin/bbp-topics.php:947
2981
- msgid "Topic draft updated. <a target=\"_blank\" href=\"%s\">Preview topic</a>"
2982
  msgstr ""
2983
 
2984
- #: bbp-admin/bbp-tools.php:53
2985
- msgid "bbPress Recount"
2986
  msgstr ""
2987
 
2988
- #: bbp-admin/bbp-tools.php:57
2989
- msgid ""
2990
- "bbPress keeps a running count of things like replies to each topic and "
2991
- "topics in each forum. In rare occasions these counts can fall out of sync. "
2992
- "Using this form you can have bbPress manually recount these items."
2993
  msgstr ""
2994
 
2995
- #: bbp-admin/bbp-tools.php:58
2996
- msgid "You can also use this form to clean out stale items like empty tags."
2997
  msgstr ""
2998
 
2999
- #: bbp-admin/bbp-tools.php:64
3000
- msgid "Things to recount:"
3001
  msgstr ""
3002
 
3003
- #: bbp-admin/bbp-tools.php:78
3004
- msgid "There are no recount tools available."
3005
  msgstr ""
3006
 
3007
- #: bbp-admin/bbp-tools.php:89
3008
- msgid "Recount Items"
3009
  msgstr ""
3010
 
3011
- #: bbp-admin/bbp-settings.php:23
3012
- msgid "Main settings for the bbPress plugin"
3013
  msgstr ""
3014
 
3015
- #: bbp-admin/bbp-settings.php:39
3016
- msgid "minutes"
3017
  msgstr ""
3018
 
3019
- #: bbp-admin/bbp-settings.php:55
3020
- msgid "seconds"
3021
  msgstr ""
3022
 
3023
- #: bbp-admin/bbp-settings.php:71
3024
- msgid "Allow users to mark topics as favorites?"
3025
  msgstr ""
3026
 
3027
- #: bbp-admin/bbp-settings.php:87
3028
- msgid "Allow users to subscribe to topics"
3029
  msgstr ""
3030
 
3031
- #: bbp-admin/bbp-settings.php:103
3032
- msgid "Allow guest users without accounts to create topics and replies"
 
 
3033
  msgstr ""
3034
 
3035
- #: bbp-admin/bbp-settings.php:118
3036
- msgid "Per page settings for the bbPress plugin"
3037
  msgstr ""
3038
 
3039
- #: bbp-admin/bbp-settings.php:134 bbp-admin/bbp-settings.php:150
3040
- #: bbp-admin/bbp-settings.php:181 bbp-admin/bbp-settings.php:197
3041
- msgid "per page"
3042
  msgstr ""
3043
 
3044
- #: bbp-admin/bbp-settings.php:165
3045
- msgid "Per RSS page settings for the bbPress plugin"
3046
  msgstr ""
3047
 
3048
- #: bbp-admin/bbp-settings.php:215
3049
- msgid ""
3050
- "Include custom root slugs to prefix your forums and topics with. These can "
3051
- "be partnered with WordPress pages to allow more flexibility."
3052
  msgstr ""
3053
 
3054
- #: bbp-admin/bbp-settings.php:267
3055
- msgid ""
3056
- "You can enter custom slugs for your single forums, topics, replies, and tags "
3057
- "URLs here. If you change these, existing permalinks will also change."
3058
  msgstr ""
3059
 
3060
- #: bbp-admin/bbp-settings.php:283
3061
- msgid "Incude the Forum Base slug in your single forum item links"
3062
  msgstr ""
3063
 
3064
- #: bbp-admin/bbp-settings.php:411
3065
- msgid "bbPress Settings"
3066
  msgstr ""
3067
 
3068
- #: bbp-admin/bbp-settings.php:435
3069
- msgid "This screen provides access to basic bbPress settings."
3070
  msgstr ""
3071
 
3072
- #: bbp-admin/bbp-settings.php:436
3073
- msgid "In the Main Settings you have a number of options:"
3074
  msgstr ""
3075
 
3076
- #: bbp-admin/bbp-settings.php:439
3077
- msgid ""
3078
- "You can choose to lock a post after a certain number of minutes. \"Locking "
3079
- "post editing\" will prevent the author from editing some amount of time "
3080
- "after saving a post."
3081
  msgstr ""
3082
 
3083
- #: bbp-admin/bbp-settings.php:440
3084
- msgid ""
3085
- "\"Throttle time\" is the amount of time required between posts from a single "
3086
- "author. The higher the throttle time, the longer a user will need to wait "
3087
- "between posting to the forum."
3088
  msgstr ""
3089
 
3090
- #: bbp-admin/bbp-settings.php:441
3091
- msgid ""
3092
- "You may choose to allow favorites, which are a way for users to save and "
3093
- "later return to topics they favor. This is enabled by default."
 
 
 
3094
  msgstr ""
3095
 
3096
- #: bbp-admin/bbp-settings.php:442
3097
- msgid ""
3098
- "You may choose to allow subscriptions, which allows users to subscribe for "
3099
- "notifications to topics that interest them. This is enabled by default."
 
 
3100
  msgstr ""
3101
 
3102
- #: bbp-admin/bbp-settings.php:443
3103
- msgid ""
3104
- "You may choose to allow \"Anonymous Posting\", which will allow guest users "
3105
- "who do not have accounts on your site to both create topics as well as "
3106
- "replies."
3107
  msgstr ""
3108
 
3109
- #: bbp-admin/bbp-settings.php:446
3110
  msgid ""
3111
- "Per Page settings allow you to control the number of topics and replies will "
3112
- "appear on each of those pages. This is comparable to the WordPress \"Reading "
3113
- "Settings\" page, where you can set the number of posts that should show on "
3114
- "blog pages and in feeds."
3115
  msgstr ""
3116
 
3117
- #: bbp-admin/bbp-settings.php:447
3118
- msgid ""
3119
- "The Forums section allows you to control the permalink structure for your "
3120
- "forums. Each \"base\" is what will be displayed after your main URL and "
3121
- "right before your permalink slug."
3122
  msgstr ""
3123
 
3124
- #: bbp-admin/bbp-settings.php:448
3125
- msgid ""
3126
- "You must click the Save Changes button at the bottom of the screen for new "
3127
- "settings to take effect."
3128
  msgstr ""
3129
 
3130
- #: bbp-admin/bbp-settings.php:537
3131
- msgid "Pages"
3132
  msgstr ""
3133
 
3134
- #: bbp-admin/bbp-settings.php:538
3135
- msgid "Revisions"
3136
  msgstr ""
3137
 
3138
- #: bbp-admin/bbp-settings.php:539
3139
- msgid "Attachments"
3140
  msgstr ""
3141
 
3142
- #: bbp-admin/bbp-settings.php:540
3143
- msgid "Menus"
3144
  msgstr ""
3145
 
3146
- #: bbp-admin/bbp-settings.php:543
3147
- msgid "Tag base"
3148
  msgstr ""
3149
 
3150
- #: bbp-admin/bbp-settings.php:546
3151
- msgid "Category base"
3152
  msgstr ""
3153
 
3154
- #: bbp-admin/bbp-settings.php:551
3155
- msgid "Forums base"
3156
  msgstr ""
3157
 
3158
- #: bbp-admin/bbp-settings.php:554
3159
- msgid "Topics base"
3160
  msgstr ""
3161
 
3162
- #: bbp-admin/bbp-settings.php:584
3163
- msgid "Possible \"%s\" conflict"
3164
  msgstr ""
3165
 
3166
- #: bbp-admin/bbp-forums.php:115
3167
  msgid ""
3168
- "The forum title field and the big forum editing area are fixed in place, but "
3169
- "you can reposition all the other boxes using drag and drop, and can minimize "
3170
- "or expand them by clicking the title bar of the box. Use the Screen Options "
3171
- "tab to unhide more boxes (like Slug) or to choose a 1- or 2-column layout "
3172
- "for this screen."
3173
  msgstr ""
3174
 
3175
- #: bbp-admin/bbp-forums.php:116
3176
- msgid ""
3177
- "<strong>Title</strong> - Enter a title for your forum. After you enter a "
3178
- "title, you will see the permalink appear below it, which is fully editable."
3179
  msgstr ""
3180
 
3181
- #: bbp-admin/bbp-forums.php:117
3182
- msgid ""
3183
- "<strong>Post editor</strong> - Enter the description for your forum. There "
3184
- "are two modes of editing: Visual and HTML. Choose the mode by clicking on "
3185
- "the appropriate tab. Visual mode gives you a WYSIWYG editor. Click the last "
3186
- "icon in the row to get a second row of controls. The screen icon just before "
3187
- "that allows you to expand the edit box to full screen. The HTML mode allows "
3188
- "you to enter raw HTML along with your forum text. You can insert media files "
3189
- "by clicking the icons above the post editor and following the directions."
3190
  msgstr ""
3191
 
3192
- #: bbp-admin/bbp-forums.php:118
3193
- msgid ""
3194
- "<strong>Forum Attributes</strong> - Select the various attributes that your "
3195
- "forum should have:"
3196
  msgstr ""
3197
 
3198
- #: bbp-admin/bbp-forums.php:121
 
 
 
 
3199
  msgid ""
3200
- "Forum Type determines whether it is a Forum (by default) or a Category, "
3201
- "which means no new topics (only other forums) can be created within it."
 
 
 
3202
  msgstr ""
3203
 
3204
- #: bbp-admin/bbp-forums.php:122
3205
  msgid ""
3206
- "Forum Status controls whether it is open (and thus can be posted to) or "
3207
- "closed (thus not able to be posted to)."
3208
  msgstr ""
3209
 
3210
- #: bbp-admin/bbp-forums.php:123
3211
  msgid ""
3212
- "Visibility can be set to either Public (by default, seen by everyone), "
3213
- "Private (seen only by chosen users), and Hidden (hidden from all users)."
 
 
 
 
 
3214
  msgstr ""
3215
 
3216
- #: bbp-admin/bbp-forums.php:124
3217
  msgid ""
3218
- "Parent turns the forum into a child forum of the selected forum/category in "
3219
- "the dropdown."
 
 
3220
  msgstr ""
3221
 
3222
- #: bbp-admin/bbp-forums.php:125
3223
  msgid ""
3224
- "Order determines the order that forums in the given hierarchy are displayed "
3225
- "(lower numbers first, higher numbers last)."
 
 
 
 
 
3226
  msgstr ""
3227
 
3228
- #: bbp-admin/bbp-forums.php:128
3229
  msgid ""
3230
- "<strong>Publish</strong> - The Publish box will allow you to Preview your "
3231
- "forum before it is published, Publish your forum to your site, or Move to "
3232
- "Trash will move your forum to the trash."
 
3233
  msgstr ""
3234
 
3235
- #: bbp-admin/bbp-forums.php:129
3236
  msgid ""
3237
  "<strong>Revisions</strong> - Revisions show past versions of the saved "
3238
- "forum. Each revision can be compared to the current version, or another "
3239
  "revision. Revisions can also be restored to the current version."
3240
  msgstr ""
3241
 
3242
- #: bbp-admin/bbp-forums.php:149
3243
- msgid "This screen displays the forums available on your site."
3244
  msgstr ""
3245
 
3246
- #: bbp-admin/bbp-forums.php:153
3247
  msgid ""
3248
- "You can hide/display columns based on your needs and decide how many forums "
3249
  "to list per screen using the Screen Options tab."
3250
  msgstr ""
3251
 
3252
- #: bbp-admin/bbp-forums.php:154
3253
  msgid ""
3254
- "You can filter the list of forums by forum status using the text links in "
3255
- "the upper left to show All, Published, or Trashed forums. The default view "
3256
- "is to show all forums."
3257
  msgstr ""
3258
 
3259
- #: bbp-admin/bbp-forums.php:155
3260
  msgid ""
3261
- "You can refine the list to show only forums from a specific month by using "
3262
- "the dropdown menus above the forums list. Click the Filter button after "
3263
- "making your selection. You also can refine the list by clicking on the forum "
3264
- "creator in the forums list."
3265
  msgstr ""
3266
 
3267
- #: bbp-admin/bbp-forums.php:158
3268
  msgid ""
3269
- "Hovering over a row in the forums list will display action links that allow "
3270
- "you to manage your forum. You can perform the following actions:"
 
3271
  msgstr ""
3272
 
3273
- #: bbp-admin/bbp-forums.php:161
3274
  msgid ""
3275
- "Edit takes you to the editing screen for that forum. You can also reach that "
3276
- "screen by clicking on the forum title."
 
3277
  msgstr ""
3278
 
3279
- #: bbp-admin/bbp-forums.php:162
3280
  msgid ""
3281
- "Trash removes your forum from this list and places it in the trash, from "
3282
- "which you can permanently delete it."
3283
- msgstr ""
3284
-
3285
- #: bbp-admin/bbp-forums.php:163
3286
- msgid "View will take you to your live forum to view the forum."
3287
  msgstr ""
3288
 
3289
- #: bbp-admin/bbp-forums.php:166
3290
  msgid ""
3291
- "You can also edit multiple forums at once. Select the forums you want to "
3292
- "edit using the checkboxes, select Edit from the Bulk Actions menu and click "
3293
- "Apply. You will be able to change the metadata for all selected forums at "
3294
- "once. To remove a forum from the grouping, just click the x next to its name "
3295
- "in the Bulk Edit area that appears."
3296
  msgstr ""
3297
 
3298
- #: bbp-admin/bbp-forums.php:167
3299
  msgid ""
3300
- "The Bulk Actions menu may also be used to delete multiple forums at once. "
3301
- "Select Delete from the dropdown after making your selection."
3302
- msgstr ""
3303
-
3304
- #: bbp-admin/bbp-forums.php:195
3305
- msgid "Forum Attributes"
3306
- msgstr ""
3307
-
3308
- #: bbp-admin/bbp-forums.php:517
3309
- msgid "Forum updated. <a href=\"%s\">View forum</a>"
3310
- msgstr ""
3311
-
3312
- #: bbp-admin/bbp-forums.php:526
3313
- msgid "Forum updated."
3314
  msgstr ""
3315
 
3316
- #: bbp-admin/bbp-forums.php:531
3317
- msgid "Forum restored to revision from %s"
 
 
3318
  msgstr ""
3319
 
3320
- #: bbp-admin/bbp-forums.php:535
3321
- msgid "Forum created. <a href=\"%s\">View forum</a>"
3322
  msgstr ""
3323
 
3324
- #: bbp-admin/bbp-forums.php:538
3325
- msgid "Forum saved."
 
 
3326
  msgstr ""
3327
 
3328
- #: bbp-admin/bbp-forums.php:541
3329
- msgid "Forum submitted. <a target=\"_blank\" href=\"%s\">Preview forum</a>"
 
 
 
3330
  msgstr ""
3331
 
3332
- #: bbp-admin/bbp-forums.php:544
3333
  msgid ""
3334
- "Forum scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
3335
- "\">Preview forum</a>"
3336
  msgstr ""
3337
 
3338
- #: bbp-admin/bbp-forums.php:551
3339
- msgid "Forum draft updated. <a target=\"_blank\" href=\"%s\">Preview forum</a>"
 
 
 
 
 
3340
  msgstr ""
3341
 
3342
- #: bbpress.php:558
3343
- msgid "All Forums"
 
 
3344
  msgstr ""
3345
 
3346
- #: bbpress.php:559 bbpress.php:563
3347
- msgid "New Forum"
 
 
 
3348
  msgstr ""
3349
 
3350
- #: bbpress.php:560
3351
- msgid "Create New Forum"
 
 
 
3352
  msgstr ""
3353
 
3354
- #: bbpress.php:562
3355
- msgid "Edit Forum"
 
 
 
 
3356
  msgstr ""
3357
 
3358
- #: bbpress.php:564 bbpress.php:565
3359
- msgid "View Forum"
 
 
3360
  msgstr ""
3361
 
3362
- #: bbpress.php:566
3363
- msgid "Search Forums"
3364
  msgstr ""
3365
 
3366
- #: bbpress.php:567
3367
- msgid "No forums found"
 
 
3368
  msgstr ""
3369
 
3370
- #: bbpress.php:568
3371
- msgid "No forums found in Trash"
 
 
3372
  msgstr ""
3373
 
3374
- #: bbpress.php:569
3375
- msgid "Parent Forum:"
3376
  msgstr ""
3377
 
3378
- #: bbpress.php:590
3379
- msgid "bbPress Forums"
3380
  msgstr ""
3381
 
3382
- #: bbpress.php:616 bbpress.php:620
3383
- msgid "New Topic"
3384
  msgstr ""
3385
 
3386
- #: bbpress.php:617
3387
- msgid "Create New Topic"
3388
  msgstr ""
3389
 
3390
- #: bbpress.php:619
3391
- msgid "Edit Topic"
3392
  msgstr ""
3393
 
3394
- #: bbpress.php:621 bbpress.php:622
3395
- msgid "View Topic"
3396
  msgstr ""
3397
 
3398
- #: bbpress.php:623
3399
- msgid "Search Topics"
3400
  msgstr ""
3401
 
3402
- #: bbpress.php:624
3403
- msgid "No topics found"
3404
  msgstr ""
3405
 
3406
- #: bbpress.php:625
3407
- msgid "No topics found in Trash"
3408
  msgstr ""
3409
 
3410
- #: bbpress.php:647
3411
- msgid "bbPress Topics"
3412
  msgstr ""
3413
 
3414
- #: bbpress.php:673 bbpress.php:677
3415
- msgid "New Reply"
3416
  msgstr ""
3417
 
3418
- #: bbpress.php:674
3419
- msgid "Create New Reply"
3420
  msgstr ""
3421
 
3422
- #: bbpress.php:676
3423
- msgid "Edit Reply"
3424
  msgstr ""
3425
 
3426
- #: bbpress.php:678 bbpress.php:679
3427
- msgid "View Reply"
3428
  msgstr ""
3429
 
3430
- #: bbpress.php:680
3431
- msgid "Search Replies"
3432
  msgstr ""
3433
 
3434
- #: bbpress.php:681
3435
- msgid "No replies found"
3436
  msgstr ""
3437
 
3438
- #: bbpress.php:682
3439
- msgid "No replies found in Trash"
3440
  msgstr ""
3441
 
3442
- #: bbpress.php:683
3443
- msgid "Topic:"
3444
  msgstr ""
3445
 
3446
- #: bbpress.php:704
3447
- msgid "bbPress Replies"
3448
  msgstr ""
3449
 
3450
- #: bbpress.php:738
3451
- msgctxt "post"
3452
- msgid "Closed"
3453
  msgstr ""
3454
 
3455
- #: bbpress.php:739
3456
- msgctxt "bbpress"
3457
- msgid "Closed <span class=\"count\">(%s)</span>"
3458
- msgid_plural "Closed <span class=\"count\">(%s)</span>"
3459
- msgstr[0] ""
3460
- msgstr[1] ""
3461
-
3462
- #: bbpress.php:747
3463
- msgctxt "post"
3464
- msgid "Spam"
3465
  msgstr ""
3466
 
3467
- #: bbpress.php:748
3468
- msgctxt "bbpress"
3469
- msgid "Spam <span class=\"count\">(%s)</span>"
3470
- msgid_plural "Spam <span class=\"count\">(%s)</span>"
3471
- msgstr[0] ""
3472
- msgstr[1] ""
3473
-
3474
- #: bbpress.php:758
3475
- msgctxt "post"
3476
- msgid "Orphan"
3477
  msgstr ""
3478
 
3479
- #: bbpress.php:759
3480
- msgctxt "bbpress"
3481
- msgid "Orphan <span class=\"count\">(%s)</span>"
3482
- msgid_plural "Orphans <span class=\"count\">(%s)</span>"
3483
- msgstr[0] ""
3484
- msgstr[1] ""
3485
-
3486
- #: bbpress.php:769
3487
- msgctxt "post"
3488
- msgid "Hidden"
3489
  msgstr ""
3490
 
3491
- #: bbpress.php:770
3492
- msgctxt "bbpress"
3493
- msgid "Hidden <span class=\"count\">(%s)</span>"
3494
- msgid_plural "Hidden <span class=\"count\">(%s)</span>"
3495
- msgstr[0] ""
3496
- msgstr[1] ""
3497
-
3498
- #: bbpress.php:813
3499
- msgid "Search Tags"
3500
  msgstr ""
3501
 
3502
- #: bbpress.php:814
3503
- msgid "Popular Tags"
3504
  msgstr ""
3505
 
3506
- #: bbpress.php:815
3507
- msgid "All Tags"
3508
  msgstr ""
3509
 
3510
- #: bbpress.php:816
3511
- msgid "Edit Tag"
3512
  msgstr ""
3513
 
3514
- #: bbpress.php:817
3515
- msgid "Update Tag"
3516
  msgstr ""
3517
 
3518
- #: bbpress.php:818
3519
- msgid "Add New Tag"
3520
  msgstr ""
3521
 
3522
- #: bbpress.php:819
3523
- msgid "New Tag Name"
 
 
3524
  msgstr ""
3525
 
3526
- #: bbpress.php:866
3527
- msgid "Topics with no replies"
3528
  msgstr ""
3529
 
3530
  #. Plugin Name of the plugin/theme
3531
  msgid "bbPress"
3532
  msgstr ""
3533
 
3534
- #. #-#-#-#-# plugin.pot (bbPress 2.0-beta-3) #-#-#-#-#
3535
  #. Plugin URI of the plugin/theme
3536
- #. #-#-#-#-# plugin.pot (bbPress 2.0-beta-3) #-#-#-#-#
3537
  #. Author URI of the plugin/theme
3538
  msgid "http://bbpress.org"
3539
  msgstr ""
2
  # This file is distributed under the same license as the bbPress package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: bbPress 2.0-beta-1\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/bbpress\n"
7
+ "POT-Creation-Date: 2011-05-21 13:21:12+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
15
+ #: bbpress.php:486 bbp-themes/bbp-twentyten/page-forum-statistics.php:40
16
+ #: bbp-includes/bbp-core-compatibility.php:452
17
+ #: bbp-includes/bbp-general-template.php:1153 bbp-admin/bbp-admin.php:171
18
+ msgid "Forums"
19
  msgstr ""
20
 
21
+ #: bbpress.php:487 bbp-themes/bbp-twentyten/bbpress/loop-forums.php:16
22
+ #: bbp-admin/bbp-metaboxes.php:52 bbp-admin/bbp-metaboxes.php:256
23
+ #: bbp-admin/bbp-metaboxes.php:364 bbp-admin/bbp-metaboxes.php:367
24
+ #: bbp-admin/bbp-forums.php:390 bbp-admin/bbp-replies.php:521
25
+ #: bbp-admin/bbp-topics.php:594
26
+ msgid "Forum"
27
  msgstr ""
28
 
29
+ #: bbpress.php:488 bbpress.php:492
30
+ msgid "New Forum"
 
 
31
  msgstr ""
32
 
33
+ #: bbpress.php:489
34
+ msgid "Create New Forum"
35
  msgstr ""
36
 
37
+ #: bbpress.php:490 bbpress.php:544 bbpress.php:598
38
+ #: bbp-includes/bbp-reply-template.php:1325
39
+ #: bbp-includes/bbp-topic-template.php:1897 bbp-admin/bbp-replies.php:575
40
+ #: bbp-admin/bbp-replies.php:605 bbp-admin/bbp-topics.php:647
41
+ msgid "Edit"
42
  msgstr ""
43
 
44
+ #: bbpress.php:491
45
+ msgid "Edit Forum"
 
46
  msgstr ""
47
 
48
+ #: bbpress.php:493 bbpress.php:494
49
+ msgid "View Forum"
 
 
50
  msgstr ""
51
 
52
+ #: bbpress.php:495
53
+ msgid "Search Forums"
 
 
54
  msgstr ""
55
 
56
+ #: bbpress.php:496
57
+ msgid "No forums found"
58
  msgstr ""
59
 
60
+ #: bbpress.php:497
61
+ msgid "No forums found in Trash"
62
  msgstr ""
63
 
64
+ #: bbpress.php:498
65
+ msgid "Parent Forum:"
66
  msgstr ""
67
 
68
+ #: bbpress.php:519
69
+ msgid "bbPress Forums"
 
 
70
  msgstr ""
71
 
72
+ #: bbpress.php:540 bbp-themes/bbp-twentyten/page-forum-statistics.php:45
73
+ #: bbp-themes/bbp-twentyten/bbpress/loop-forums.php:17
74
+ #: bbp-includes/bbp-core-compatibility.php:469
75
+ #: bbp-includes/bbp-forum-template.php:1696 bbp-admin/bbp-forums.php:391
76
+ #: bbp-admin/bbp-topics.php:593
77
+ msgid "Topics"
78
  msgstr ""
79
 
80
+ #: bbpress.php:541 bbp-themes/bbp-twentyten/bbpress/loop-topics.php:15
81
+ #: bbp-themes/bbp-twentyten/bbpress/single-topic.php:20
82
+ #: bbp-admin/bbp-metaboxes.php:69 bbp-admin/bbp-metaboxes.php:403
83
+ #: bbp-admin/bbp-replies.php:522
84
+ msgid "Topic"
85
  msgstr ""
86
 
87
+ #: bbpress.php:542 bbpress.php:546
88
+ msgid "New Topic"
 
 
89
  msgstr ""
90
 
91
+ #: bbpress.php:543
92
+ msgid "Create New Topic"
93
  msgstr ""
94
 
95
+ #: bbpress.php:545
96
+ msgid "Edit Topic"
 
97
  msgstr ""
98
 
99
+ #: bbpress.php:547 bbpress.php:548
100
+ msgid "View Topic"
101
  msgstr ""
102
 
103
+ #: bbpress.php:549
104
+ msgid "Search Topics"
105
  msgstr ""
106
 
107
+ #: bbpress.php:550
108
+ msgid "No topics found"
109
  msgstr ""
110
 
111
+ #: bbpress.php:551
112
+ msgid "No topics found in Trash"
113
  msgstr ""
114
 
115
+ #: bbpress.php:552 bbp-themes/bbp-twentyten/bbpress/form-topic.php:76
116
+ msgid "Forum:"
117
  msgstr ""
118
 
119
+ #: bbpress.php:573
120
+ msgid "bbPress Topics"
121
  msgstr ""
122
 
123
+ #: bbpress.php:594 bbp-themes/bbp-twentyten/page-forum-statistics.php:50
124
+ #: bbp-themes/bbp-twentyten/single-reply.php:32
125
+ #: bbp-themes/bbp-twentyten/bbpress/loop-forums.php:18
126
+ #: bbp-themes/bbp-twentyten/bbpress/loop-replies.php:28
127
+ #: bbp-themes/bbp-twentyten/bbpress/loop-replies.php:47
128
+ #: bbp-themes/bbp-twentyten/bbpress/loop-topics.php:17
129
+ #: bbp-includes/bbp-core-compatibility.php:501
130
+ #: bbp-includes/bbp-forum-template.php:1760 bbp-admin/bbp-forums.php:392
131
+ #: bbp-admin/bbp-topics.php:595
132
+ msgid "Replies"
133
  msgstr ""
134
 
135
+ #: bbpress.php:595 bbp-admin/bbp-metaboxes.php:86
136
+ msgid "Reply"
137
  msgstr ""
138
 
139
+ #: bbpress.php:596 bbpress.php:600
140
+ msgid "New Reply"
141
  msgstr ""
142
 
143
+ #: bbpress.php:597
144
+ msgid "Create New Reply"
 
 
145
  msgstr ""
146
 
147
+ #: bbpress.php:599
148
+ msgid "Edit Reply"
 
 
 
149
  msgstr ""
150
 
151
+ #: bbpress.php:601 bbpress.php:602
152
+ msgid "View Reply"
 
153
  msgstr ""
154
 
155
+ #: bbpress.php:603
156
+ msgid "Search Replies"
 
157
  msgstr ""
158
 
159
+ #: bbpress.php:604
160
+ msgid "No replies found"
161
  msgstr ""
162
 
163
+ #: bbpress.php:605
164
+ msgid "No replies found in Trash"
 
 
165
  msgstr ""
166
 
167
+ #: bbpress.php:606
168
+ msgid "Topic:"
169
  msgstr ""
170
 
171
+ #: bbpress.php:627
172
+ msgid "bbPress Replies"
173
  msgstr ""
174
 
175
+ #: bbpress.php:660
176
+ msgctxt "post"
177
+ msgid "Closed"
178
  msgstr ""
179
 
180
+ #: bbpress.php:661
181
+ msgctxt "bbpress"
182
+ msgid "Closed <span class=\"count\">(%s)</span>"
183
+ msgid_plural "Closed <span class=\"count\">(%s)</span>"
184
+ msgstr[0] ""
185
+ msgstr[1] ""
186
 
187
+ #: bbpress.php:669
188
+ msgctxt "post"
189
+ msgid "Spam"
190
  msgstr ""
191
 
192
+ #: bbpress.php:670
193
+ msgctxt "bbpress"
194
+ msgid "Spam <span class=\"count\">(%s)</span>"
195
+ msgid_plural "Spam <span class=\"count\">(%s)</span>"
196
+ msgstr[0] ""
197
+ msgstr[1] ""
198
 
199
+ #: bbpress.php:680
200
+ msgctxt "post"
201
+ msgid "Orphan"
202
  msgstr ""
203
 
204
+ #: bbpress.php:681
205
+ msgctxt "bbpress"
206
+ msgid "Orphan <span class=\"count\">(%s)</span>"
207
+ msgid_plural "Orphans <span class=\"count\">(%s)</span>"
208
+ msgstr[0] ""
209
+ msgstr[1] ""
210
 
211
+ #: bbpress.php:691
212
+ msgctxt "post"
213
+ msgid "Hidden"
214
  msgstr ""
215
 
216
+ #: bbpress.php:692
217
+ msgctxt "bbpress"
218
+ msgid "Hidden <span class=\"count\">(%s)</span>"
219
+ msgid_plural "Hidden <span class=\"count\">(%s)</span>"
220
+ msgstr[0] ""
221
+ msgstr[1] ""
222
+
223
+ #: bbpress.php:725 bbp-themes/bbp-twentyten/page-forum-statistics.php:55
224
+ msgid "Topic Tags"
225
  msgstr ""
226
 
227
+ #: bbpress.php:726 bbp-admin/bbp-metaboxes.php:103
228
+ msgid "Topic Tag"
229
  msgstr ""
230
 
231
+ #: bbpress.php:727
232
+ msgid "Search Tags"
 
 
233
  msgstr ""
234
 
235
+ #: bbpress.php:728
236
+ msgid "Popular Tags"
237
  msgstr ""
238
 
239
+ #: bbpress.php:729
240
+ msgid "All Tags"
241
  msgstr ""
242
 
243
+ #: bbpress.php:730
244
+ msgid "Edit Tag"
245
  msgstr ""
246
 
247
+ #: bbpress.php:731
248
+ msgid "Update Tag"
 
 
 
 
 
 
 
 
249
  msgstr ""
250
 
251
+ #: bbpress.php:732
252
+ msgid "Add New Tag"
 
 
 
253
  msgstr ""
254
 
255
+ #: bbpress.php:733
256
+ msgid "New Tag Name"
 
 
257
  msgstr ""
258
 
259
+ #: bbpress.php:780
260
+ msgid "Topics with no replies"
261
  msgstr ""
262
 
263
+ #: bbp-themes/bbp-twentyten/page-forum-statistics.php:29
264
+ msgid "<p>Here are the statistics and popular topics of our forums.</p>"
 
 
265
  msgstr ""
266
 
267
+ #: bbp-themes/bbp-twentyten/page-forum-statistics.php:35
268
+ msgid "Registered Users"
 
 
269
  msgstr ""
270
 
271
+ #: bbp-themes/bbp-twentyten/page-forum-statistics.php:62
272
+ msgid "Empty Topic Tags"
 
 
273
  msgstr ""
274
 
275
+ #: bbp-themes/bbp-twentyten/page-forum-statistics.php:71
276
+ msgid "Hidden Topics"
 
 
277
  msgstr ""
278
 
279
+ #: bbp-themes/bbp-twentyten/page-forum-statistics.php:82
280
+ msgid "Hidden Replies"
 
 
281
  msgstr ""
282
 
283
+ #: bbp-themes/bbp-twentyten/page-forum-statistics.php:101
284
+ msgid "Popular Topics"
 
 
 
285
  msgstr ""
286
 
287
+ #: bbp-themes/bbp-twentyten/single-reply.php:31
288
+ #: bbp-themes/bbp-twentyten/bbpress/loop-replies.php:15
289
+ #: bbp-themes/bbp-twentyten/bbpress/loop-replies.php:38
290
+ #: bbp-admin/bbp-replies.php:523 bbp-admin/bbp-topics.php:597
291
+ msgid "Author"
292
  msgstr ""
293
 
294
+ #: bbp-themes/bbp-twentyten/single-reply.php:52
295
+ #: bbp-themes/bbp-twentyten/bbpress/single-topic.php:54
296
+ msgid "Posted on %1$s at %2$s"
297
  msgstr ""
298
 
299
+ #: bbp-themes/bbp-twentyten/bbpress/loop-forums.php:18
300
+ #: bbp-themes/bbp-twentyten/bbpress/loop-replies.php:20
301
+ #: bbp-themes/bbp-twentyten/bbpress/loop-replies.php:43
302
+ #: bbp-themes/bbp-twentyten/bbpress/loop-topics.php:17
303
+ msgid "Posts"
304
  msgstr ""
305
 
306
+ #: bbp-themes/bbp-twentyten/bbpress/loop-forums.php:19
307
+ #: bbp-themes/bbp-twentyten/bbpress/loop-topics.php:18
308
+ #: bbp-admin/bbp-forums.php:395 bbp-admin/bbp-topics.php:599
309
+ msgid "Freshness"
310
  msgstr ""
311
 
312
+ #: bbp-themes/bbp-twentyten/bbpress/no-forums.php:13
313
+ msgid "Oh bother! No forums were found here!"
 
 
314
  msgstr ""
315
 
316
+ #: bbp-themes/bbp-twentyten/bbpress/view.php:31
317
+ #: bbp-themes/bbp-twentyten/bbpress/no-topics.php:13
318
+ msgid "Oh bother! No topics were found here!"
319
  msgstr ""
320
 
321
+ #: bbp-themes/bbp-twentyten/bbpress/form-topic.php:27
322
+ msgid "Edit topic \"%s\""
 
 
323
  msgstr ""
324
 
325
+ #: bbp-themes/bbp-twentyten/bbpress/form-topic.php:29
326
+ msgid "Create new topic in: &ldquo;%s&rdquo;"
 
327
  msgstr ""
328
 
329
+ #: bbp-themes/bbp-twentyten/bbpress/form-topic.php:29
330
+ msgid "Create new topic"
331
  msgstr ""
332
 
333
+ #: bbp-themes/bbp-twentyten/bbpress/form-topic.php:37
334
+ msgid ""
335
+ "This forum is marked as closed to new topics, however your posting "
336
+ "capabilities still allow you to do so."
337
  msgstr ""
338
 
339
+ #: bbp-themes/bbp-twentyten/bbpress/form-topic.php:54
340
+ msgid "Topic Title:"
341
  msgstr ""
342
 
343
+ #: bbp-themes/bbp-twentyten/bbpress/form-topic.php:59
344
+ msgid "Topic Description:"
345
  msgstr ""
346
 
347
+ #: bbp-themes/bbp-twentyten/bbpress/form-topic.php:64
348
+ #: bbp-themes/bbp-twentyten/bbpress/form-reply.php:51
349
+ msgid ""
350
+ "You may use these <abbr title=\"HyperText Markup Language\">HTML</abbr> tags "
351
+ "and attributes:"
352
  msgstr ""
353
 
354
+ #: bbp-themes/bbp-twentyten/bbpress/form-topic.php:69
355
+ msgid "Topic Tags:"
356
  msgstr ""
357
 
358
+ #: bbp-themes/bbp-twentyten/bbpress/form-topic.php:86
359
+ msgid "Topic Type:"
360
  msgstr ""
361
 
362
+ #: bbp-themes/bbp-twentyten/bbpress/form-topic.php:101
363
+ #: bbp-themes/bbp-twentyten/bbpress/form-reply.php:68
364
+ msgid "Notify the author of follow-up replies via email"
365
  msgstr ""
366
 
367
+ #: bbp-themes/bbp-twentyten/bbpress/form-topic.php:105
368
+ #: bbp-themes/bbp-twentyten/bbpress/form-reply.php:72
369
+ msgid "Notify me of follow-up replies via email"
370
  msgstr ""
371
 
372
+ #: bbp-themes/bbp-twentyten/bbpress/form-topic.php:115
373
+ #: bbp-themes/bbp-twentyten/bbpress/form-reply.php:83
374
+ msgid "Revision"
375
  msgstr ""
376
 
377
+ #: bbp-themes/bbp-twentyten/bbpress/form-topic.php:118
378
+ #: bbp-themes/bbp-twentyten/bbpress/form-reply.php:86
379
+ msgid "Keep a log of this edit:"
380
  msgstr ""
381
 
382
+ #: bbp-themes/bbp-twentyten/bbpress/form-topic.php:122
383
+ #: bbp-themes/bbp-twentyten/bbpress/form-reply.php:90
384
+ msgid "Optional reason for editing:"
385
  msgstr ""
386
 
387
+ #: bbp-themes/bbp-twentyten/bbpress/form-topic.php:130
388
+ #: bbp-themes/bbp-twentyten/bbpress/form-reply.php:102
389
+ #: bbp-themes/bbp-twentyten/bbpress/form-split.php:90
390
+ #: bbp-themes/bbp-twentyten/bbpress/form-merge.php:86
391
+ msgid "Submit"
392
  msgstr ""
393
 
394
+ #: bbp-themes/bbp-twentyten/bbpress/form-topic.php:143
395
+ #: bbp-themes/bbp-twentyten/bbpress/form-topic.php:154
396
+ #: bbp-themes/bbp-twentyten/bbpress/form-reply.php:115
397
+ #: bbp-themes/bbp-twentyten/bbpress/form-split.php:103
398
+ #: bbp-themes/bbp-twentyten/bbpress/form-merge.php:99
399
+ msgid "Sorry!"
400
  msgstr ""
401
 
402
+ #: bbp-themes/bbp-twentyten/bbpress/form-topic.php:145
403
+ msgid "This forum is closed to new topics."
404
  msgstr ""
405
 
406
+ #: bbp-themes/bbp-twentyten/bbpress/form-topic.php:156
407
+ msgid "You cannot create new topics at this time."
408
  msgstr ""
409
 
410
+ #: bbp-themes/bbp-twentyten/bbpress/form-topic.php:156
411
+ msgid "You must be logged in to create new topics."
412
  msgstr ""
413
 
414
+ #: bbp-themes/bbp-twentyten/bbpress/form-reply.php:23
415
+ msgid "Reply to: &ldquo;%s&rdquo;"
416
  msgstr ""
417
 
418
+ #: bbp-themes/bbp-twentyten/bbpress/form-reply.php:28
419
+ msgid ""
420
+ "This topic is marked as closed to new replies, however your posting "
421
+ "capabilities still allow you to do so."
422
  msgstr ""
423
 
424
+ #: bbp-themes/bbp-twentyten/bbpress/form-reply.php:46
425
+ msgid "Reply:"
426
  msgstr ""
427
 
428
+ #: bbp-themes/bbp-twentyten/bbpress/form-reply.php:56
429
+ msgid "Tags:"
430
  msgstr ""
431
 
432
+ #: bbp-themes/bbp-twentyten/bbpress/form-reply.php:117
433
+ msgid "You cannot reply to this topic."
434
  msgstr ""
435
 
436
+ #: bbp-themes/bbp-twentyten/bbpress/form-reply.php:117
437
+ msgid "You must be logged in to reply to this topic."
438
  msgstr ""
439
 
440
+ #: bbp-themes/bbp-twentyten/bbpress/form-reply.php:126
441
+ msgid "Topic Closed"
442
  msgstr ""
443
 
444
+ #: bbp-themes/bbp-twentyten/bbpress/form-reply.php:128
445
+ msgid "This topic has been closed to new replies."
446
  msgstr ""
447
 
448
+ #: bbp-themes/bbp-twentyten/bbpress/loop-replies.php:68
449
+ msgid "%1$s at %2$s"
450
  msgstr ""
451
 
452
+ #: bbp-themes/bbp-twentyten/bbpress/form-user-lost-pass.php:14
453
+ msgid "Lost Password"
 
 
 
 
 
 
 
454
  msgstr ""
455
 
456
+ #: bbp-themes/bbp-twentyten/bbpress/form-user-lost-pass.php:18
457
+ msgid "Username or Email"
458
+ msgstr ""
 
 
 
459
 
460
+ #: bbp-themes/bbp-twentyten/bbpress/form-user-lost-pass.php:27
461
+ msgid "Reset my password"
 
462
  msgstr ""
463
 
464
+ #: bbp-themes/bbp-twentyten/bbpress/form-anonymous.php:15
465
+ msgid "Author information"
 
466
  msgstr ""
467
 
468
+ #: bbp-themes/bbp-twentyten/bbpress/form-anonymous.php:15
469
+ msgid "Your information:"
470
  msgstr ""
471
 
472
+ #: bbp-themes/bbp-twentyten/bbpress/form-anonymous.php:17
473
+ msgid "Name (required):"
474
  msgstr ""
475
 
476
+ #: bbp-themes/bbp-twentyten/bbpress/form-anonymous.php:22
477
+ msgid "Mail (will not be published) (required):"
 
 
 
 
478
  msgstr ""
479
 
480
+ #: bbp-themes/bbp-twentyten/bbpress/form-anonymous.php:27
481
+ msgid "Website:"
482
  msgstr ""
483
 
484
+ #: bbp-themes/bbp-twentyten/bbpress/user-topics-created.php:16
485
+ msgid "Forum Topics Created"
 
486
  msgstr ""
487
 
488
+ #: bbp-themes/bbp-twentyten/bbpress/user-topics-created.php:27
489
+ msgid "You have not created any topics."
 
490
  msgstr ""
491
 
492
+ #: bbp-themes/bbp-twentyten/bbpress/user-topics-created.php:27
493
+ msgid "This user has not created any topics."
 
494
  msgstr ""
495
 
496
+ #: bbp-themes/bbp-twentyten/bbpress/loop-topics.php:16
497
+ #: bbp-admin/bbp-topics.php:596
498
+ msgid "Voices"
499
  msgstr ""
500
 
501
+ #: bbp-themes/bbp-twentyten/bbpress/loop-topics.php:19
502
+ msgid "Remove"
503
  msgstr ""
504
 
505
+ #: bbp-themes/bbp-twentyten/bbpress/loop-topics.php:40
506
+ msgid "Started by: %1$s"
 
 
 
 
 
 
 
 
507
  msgstr ""
508
 
509
+ #: bbp-themes/bbp-twentyten/bbpress/loop-topics.php:44
510
+ msgid "in: <a href=\"%1$s\">%2$s</a>"
511
  msgstr ""
512
 
513
+ #: bbp-themes/bbp-twentyten/bbpress/form-protected.php:16
514
+ msgid "Protected"
515
  msgstr ""
516
 
517
+ #: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:18
518
+ msgid "Manage Tag: \"%s\""
519
  msgstr ""
520
 
521
+ #: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:22
522
+ msgid "Rename"
523
  msgstr ""
524
 
525
+ #: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:25
526
+ msgid "Leave the slug empty to have one automatically generated."
527
  msgstr ""
528
 
529
+ #: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:29
530
  msgid ""
531
+ "Changing the slug affects its permalink. Any links to the old slug will stop "
532
+ "working."
533
  msgstr ""
534
 
535
+ #: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:35
536
+ msgid "Name:"
537
  msgstr ""
538
 
539
+ #: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:40
540
+ msgid "Slug:"
541
  msgstr ""
542
 
543
+ #: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:45
544
+ msgid "Update"
 
545
  msgstr ""
546
 
547
+ #: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:59
548
+ #: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:73
549
+ #: bbp-includes/bbp-topic-template.php:2208
550
+ msgid "Merge"
551
  msgstr ""
552
 
553
+ #: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:62
554
+ msgid "Merging tags together cannot be undone."
555
  msgstr ""
556
 
557
+ #: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:68
558
+ msgid "Existing tag:"
 
559
  msgstr ""
560
 
561
+ #: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:74
562
+ msgid ""
563
+ "Are you sure you want to merge the \"%s\" tag into the tag you specified?"
564
  msgstr ""
565
 
566
+ #: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:89
567
+ #: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:102
568
+ #: bbp-includes/bbp-reply-template.php:1440
569
+ #: bbp-includes/bbp-topic-template.php:2012
570
+ msgid "Delete"
571
  msgstr ""
572
 
573
+ #: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:92
574
+ msgid "This does not delete your topics. Only the tag itself is deleted."
 
575
  msgstr ""
576
 
577
+ #: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:95
578
+ msgid "Deleting a tag cannot be undone."
579
  msgstr ""
580
 
581
+ #: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:96
582
+ msgid "Any links to this tag will no longer function."
583
  msgstr ""
584
 
585
+ #: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:103
586
+ msgid ""
587
+ "Are you sure you want to delete the \"%s\" tag? This is permanent and cannot "
588
+ "be undone."
589
  msgstr ""
590
 
591
+ #: bbp-themes/bbp-twentyten/bbpress/user-favorites.php:16
592
+ msgid "Favorite Forum Topics"
593
  msgstr ""
594
 
595
+ #: bbp-themes/bbp-twentyten/bbpress/user-favorites.php:27
596
+ msgid "You currently have no favorite topics."
597
  msgstr ""
598
 
599
+ #: bbp-themes/bbp-twentyten/bbpress/user-favorites.php:27
600
+ msgid "This user has no favorite topics."
601
  msgstr ""
602
 
603
+ #: bbp-themes/bbp-twentyten/bbpress/form-user-login.php:14
604
+ #: bbp-themes/bbp-twentyten/bbpress/form-user-login.php:35
605
+ #: bbp-includes/bbp-core-widgets.php:69
606
+ msgid "Login"
607
  msgstr ""
608
 
609
+ #: bbp-themes/bbp-twentyten/bbpress/form-user-login.php:17
610
+ #: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:99
611
+ #: bbp-themes/bbp-twentyten/bbpress/form-user-register.php:23
612
+ #: bbp-includes/bbp-core-widgets.php:72
613
+ msgid "Username"
614
  msgstr ""
615
 
616
+ #: bbp-themes/bbp-twentyten/bbpress/form-user-login.php:22
617
+ #: bbp-includes/bbp-core-widgets.php:77
618
+ msgid "Password"
619
  msgstr ""
620
 
621
+ #: bbp-themes/bbp-twentyten/bbpress/form-user-login.php:28
622
+ #: bbp-includes/bbp-core-widgets.php:83
623
+ msgid "Keep me signed in"
624
  msgstr ""
625
 
626
+ #: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:14
627
+ #: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:19
628
+ #: bbp-admin/bbp-metaboxes.php:427 bbp-admin/bbp-metaboxes.php:430
629
+ msgid "Name"
630
  msgstr ""
631
 
632
+ #: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:24
633
+ msgid "First Name"
634
  msgstr ""
635
 
636
+ #: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:29
637
+ msgid "Last Name"
 
638
  msgstr ""
639
 
640
+ #: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:34
641
+ msgid "Nickname"
642
  msgstr ""
643
 
644
+ #: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:39
645
+ msgid "Display name publicly as"
646
  msgstr ""
647
 
648
+ #: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:49
649
+ #: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:52
650
+ msgid "Contact Info"
651
  msgstr ""
652
 
653
+ #: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:57
654
+ #: bbp-admin/bbp-metaboxes.php:441 bbp-admin/bbp-metaboxes.php:444
655
+ msgid "Website"
 
656
  msgstr ""
657
 
658
+ #: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:74
659
+ #: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:77
660
+ msgid "About Yourself"
661
  msgstr ""
662
 
663
+ #: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:74
664
+ #: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:77
665
+ msgid "About the user"
666
  msgstr ""
667
 
668
+ #: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:82
669
+ msgid "Biographical Info"
670
  msgstr ""
671
 
672
+ #: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:84
673
+ msgid ""
674
+ "Share a little biographical information to fill out your profile. This may "
675
+ "be shown publicly."
676
  msgstr ""
677
 
678
+ #: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:91
679
+ #: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:94
680
+ msgid "Account"
681
  msgstr ""
682
 
683
+ #: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:101
684
+ msgid "Usernames cannot be changed."
685
  msgstr ""
686
 
687
+ #: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:105
688
+ msgid "E-mail"
689
  msgstr ""
690
 
691
+ #: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:117
692
+ msgid ""
693
+ "There is a pending email address change to <code>%1$s</code>. <a href=\"%2$s"
694
+ "\">Cancel</a>"
695
  msgstr ""
696
 
697
+ #: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:126
698
+ msgid "New Password"
699
  msgstr ""
700
 
701
+ #: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:129
 
 
 
 
 
 
702
  msgid ""
703
+ "If you would like to change the password type a new one. Otherwise leave "
704
+ "this blank."
705
  msgstr ""
706
 
707
+ #: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:132
708
+ msgid "Type your new password again."
709
  msgstr ""
710
 
711
+ #: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:135
712
  msgid ""
713
+ "Hint: The password should be at least seven characters long. To make it "
714
+ "stronger, use upper and lower case letters, numbers and symbols like ! \" ? "
715
+ "$ % ^ &amp; )."
716
  msgstr ""
717
 
718
+ #: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:142
719
+ msgid "Role:"
 
720
  msgstr ""
721
 
722
+ #: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:153
723
+ msgid "Super Admin"
 
724
  msgstr ""
725
 
726
+ #: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:156
727
+ msgid "Grant this user super admin privileges for the Network."
 
 
728
  msgstr ""
729
 
730
+ #: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:169
731
+ #: bbp-admin/bbp-settings.php:403
732
+ msgid "Save Changes"
733
  msgstr ""
734
 
735
+ #: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:174
736
+ msgid "Update Profile"
 
 
 
737
  msgstr ""
738
 
739
+ #: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:174
740
+ msgid "Update User"
 
 
 
741
  msgstr ""
742
 
743
+ #: bbp-themes/bbp-twentyten/bbpress/form-split.php:20
744
+ msgid "Split topic \"%s\""
 
 
745
  msgstr ""
746
 
747
+ #: bbp-themes/bbp-twentyten/bbpress/form-split.php:25
748
+ msgid ""
749
+ "When you split a topic, you are slicing it in half starting with the reply "
750
+ "you just selected. Choose to use that reply as a new topic with a new title, "
751
+ "or merge those replies into an existing topic."
752
  msgstr ""
753
 
754
+ #: bbp-themes/bbp-twentyten/bbpress/form-split.php:29
755
+ msgid ""
756
+ "If you use the existing topic option, replies within both topics will be "
757
+ "merged chronologically. The order of the merged replies is based on the time "
758
+ "and date they were posted."
759
  msgstr ""
760
 
761
+ #: bbp-themes/bbp-twentyten/bbpress/form-split.php:33
762
+ msgid "Split Method"
763
  msgstr ""
764
 
765
+ #: bbp-themes/bbp-twentyten/bbpress/form-split.php:37
766
+ msgid "New topic in <strong>%s</strong> titled:"
 
 
767
  msgstr ""
768
 
769
+ #: bbp-themes/bbp-twentyten/bbpress/form-split.php:38
770
+ msgid "Split: %s"
771
  msgstr ""
772
 
773
+ #: bbp-themes/bbp-twentyten/bbpress/form-split.php:45
774
+ msgid "Use an existing topic in this forum:"
 
 
 
775
  msgstr ""
776
 
777
+ #: bbp-themes/bbp-twentyten/bbpress/form-split.php:54
778
+ msgid "No other topics found!"
779
  msgstr ""
780
 
781
+ #: bbp-themes/bbp-twentyten/bbpress/form-split.php:65
782
+ #: bbp-themes/bbp-twentyten/bbpress/form-merge.php:61
783
+ msgid "Topic Extras"
784
  msgstr ""
785
 
786
+ #: bbp-themes/bbp-twentyten/bbpress/form-split.php:72
787
+ msgid "Copy subscribers to the new topic"
 
 
788
  msgstr ""
789
 
790
+ #: bbp-themes/bbp-twentyten/bbpress/form-split.php:77
791
+ msgid "Copy favoriters to the new topic"
792
  msgstr ""
793
 
794
+ #: bbp-themes/bbp-twentyten/bbpress/form-split.php:80
795
+ msgid "Copy topic tags to the new topic"
796
  msgstr ""
797
 
798
+ #: bbp-themes/bbp-twentyten/bbpress/form-split.php:86
799
+ #: bbp-themes/bbp-twentyten/bbpress/form-merge.php:82
800
+ msgid "<strong>WARNING:</strong> This process cannot be undone."
801
  msgstr ""
802
 
803
+ #: bbp-themes/bbp-twentyten/bbpress/form-split.php:104
804
+ #: bbp-themes/bbp-twentyten/bbpress/form-merge.php:100
805
+ msgid "You do not have the permissions to edit this topic!"
806
  msgstr ""
807
 
808
+ #: bbp-themes/bbp-twentyten/bbpress/form-split.php:104
809
+ #: bbp-themes/bbp-twentyten/bbpress/form-merge.php:100
810
+ msgid "You cannot edit this topic."
811
  msgstr ""
812
 
813
+ #: bbp-themes/bbp-twentyten/bbpress/form-merge.php:20
814
+ msgid "Merge topic \"%s\""
815
  msgstr ""
816
 
817
+ #: bbp-themes/bbp-twentyten/bbpress/form-merge.php:25
818
  msgid ""
819
+ "Select the topic to merge this one into. The destination topic will remain "
820
+ "the lead topic, and this one will change into a reply."
821
  msgstr ""
822
 
823
+ #: bbp-themes/bbp-twentyten/bbpress/form-merge.php:26
824
  msgid ""
825
+ "To keep this topic as the lead, go to the other topic and use the merge tool "
826
+ "from there instead."
827
  msgstr ""
828
 
829
+ #: bbp-themes/bbp-twentyten/bbpress/form-merge.php:30
830
  msgid ""
831
+ "All replies within both topics will be merged chronologically. The order of "
832
+ "the merged replies is based on the time and date they were posted. If the "
833
+ "destination topic was created after this one, it's post date will be updated "
834
+ "to second earlier than this one."
835
  msgstr ""
836
 
837
+ #: bbp-themes/bbp-twentyten/bbpress/form-merge.php:34
838
+ msgid "Destination"
 
 
839
  msgstr ""
840
 
841
+ #: bbp-themes/bbp-twentyten/bbpress/form-merge.php:38
842
+ msgid "Merge with this topic:"
 
 
 
843
  msgstr ""
844
 
845
+ #: bbp-themes/bbp-twentyten/bbpress/form-merge.php:47
846
+ msgid "No topics were found to which the topic could be merged to!"
 
847
  msgstr ""
848
 
849
+ #: bbp-themes/bbp-twentyten/bbpress/form-merge.php:53
850
+ msgid "There are no other topics in this forum to merge with."
 
 
851
  msgstr ""
852
 
853
+ #: bbp-themes/bbp-twentyten/bbpress/form-merge.php:68
854
+ msgid "Merge topic subscribers"
 
 
 
855
  msgstr ""
856
 
857
+ #: bbp-themes/bbp-twentyten/bbpress/form-merge.php:73
858
+ msgid "Merge topic favoriters"
 
859
  msgstr ""
860
 
861
+ #: bbp-themes/bbp-twentyten/bbpress/form-merge.php:76
862
+ msgid "Merge topic tags"
 
 
863
  msgstr ""
864
 
865
+ #: bbp-themes/bbp-twentyten/bbpress/single-topic.php:17
866
+ #: bbp-admin/bbp-forums.php:393
867
+ msgid "Creator"
 
868
  msgstr ""
869
 
870
+ #: bbp-themes/bbp-twentyten/bbpress/user-posts.php:14
871
+ msgid "Blog Posts"
872
  msgstr ""
873
 
874
+ #: bbp-themes/bbp-twentyten/bbpress/no-access.php:13
875
+ #: bbp-admin/bbp-metaboxes.php:283
876
+ msgid "Private"
877
  msgstr ""
878
 
879
+ #: bbp-themes/bbp-twentyten/bbpress/no-access.php:16
880
+ msgid "You do not have permission to view this forum."
881
  msgstr ""
882
 
883
+ #: bbp-themes/bbp-twentyten/bbpress/user-details.php:14
884
+ msgid "Profile: %s"
885
  msgstr ""
886
 
887
+ #: bbp-themes/bbp-twentyten/bbpress/user-details.php:18
888
+ msgid "Edit Profile of User %s"
889
  msgstr ""
890
 
891
+ #: bbp-themes/bbp-twentyten/bbpress/user-details.php:18
892
+ msgid "(Edit)"
 
893
  msgstr ""
894
 
895
+ #: bbp-themes/bbp-twentyten/bbpress/user-details.php:31
896
+ msgid "About %s"
897
  msgstr ""
898
 
899
+ #: bbp-themes/bbp-twentyten/bbpress/user-subscriptions.php:20
900
+ msgid "Subscribed Forum Topics"
901
  msgstr ""
902
 
903
+ #: bbp-themes/bbp-twentyten/bbpress/user-subscriptions.php:31
904
+ msgid "You are not currently subscribed to any topics."
905
  msgstr ""
906
 
907
+ #: bbp-themes/bbp-twentyten/bbpress/user-subscriptions.php:31
908
+ msgid "This user is not currently subscribed to any topics."
909
  msgstr ""
910
 
911
+ #: bbp-themes/bbp-twentyten/bbpress/form-user-register.php:14
912
+ msgid "Create an Account"
913
  msgstr ""
914
 
915
+ #: bbp-themes/bbp-twentyten/bbpress/form-user-register.php:17
916
+ msgid "Your username must be unique, and cannot be changed later."
 
 
 
917
  msgstr ""
918
 
919
+ #: bbp-themes/bbp-twentyten/bbpress/form-user-register.php:18
920
  msgid ""
921
+ "We use your email address to email you a secure password and verify your "
922
+ "account."
923
  msgstr ""
924
 
925
+ #: bbp-themes/bbp-twentyten/bbpress/form-user-register.php:28
926
+ msgid "Email Address"
 
 
927
  msgstr ""
928
 
929
+ #: bbp-themes/bbp-twentyten/bbpress/form-user-register.php:36
930
+ msgid "Register"
931
  msgstr ""
932
 
933
+ #: bbp-themes/bbp-twentyten/page-topic-tags.php:25
934
  msgid ""
935
+ "<p>This is a collection of tags that are currently popular on our forums.</p>"
 
936
  msgstr ""
937
 
938
+ #: bbp-themes/bbp-twentyten/taxonomy-topic-tag.php:20
939
+ #: bbp-includes/bbp-core-compatibility.php:544
940
+ #: bbp-includes/bbp-general-template.php:1400
941
+ msgid "Topic Tag: %s"
942
  msgstr ""
943
 
944
+ #: bbp-themes/bbp-twentyten/functions.php:216
945
+ msgid "favorites"
946
  msgstr ""
947
 
948
+ #: bbp-themes/bbp-twentyten/functions.php:217
949
+ msgid "?"
 
950
  msgstr ""
951
 
952
+ #: bbp-themes/bbp-twentyten/functions.php:218
953
+ msgid "This topic is one of your %favLinkYes% [%favDel%]"
954
  msgstr ""
955
 
956
+ #: bbp-themes/bbp-twentyten/functions.php:219
957
+ msgid "%favAdd% (%favLinkNo%)"
958
  msgstr ""
959
 
960
+ #: bbp-themes/bbp-twentyten/functions.php:220
961
+ #: bbp-includes/bbp-user-template.php:549
962
+ msgid "&times;"
963
  msgstr ""
964
 
965
+ #: bbp-themes/bbp-twentyten/functions.php:221
966
+ #: bbp-includes/bbp-user-template.php:541
967
+ msgid "Add this topic to your favorites"
968
  msgstr ""
969
 
970
+ #: bbp-themes/bbp-twentyten/functions.php:227
971
+ #: bbp-includes/bbp-user-template.php:648
972
+ msgid "Subscribe"
973
  msgstr ""
974
 
975
+ #: bbp-themes/bbp-twentyten/functions.php:228
976
+ #: bbp-includes/bbp-user-template.php:649
977
+ msgid "Unsubscribe"
978
  msgstr ""
979
 
980
+ #: bbp-includes/bbp-core-compatibility.php:116
981
+ msgid "Hands off, partner!"
982
  msgstr ""
983
 
984
+ #: bbp-includes/bbp-core-compatibility.php:251
985
+ msgid "You do not have the permission to edit this user."
986
  msgstr ""
987
 
988
+ #: bbp-includes/bbp-core-compatibility.php:844
989
+ msgid ""
990
+ "Conditional query tags do not work before the query is run. Before then, "
991
+ "they always return false."
992
  msgstr ""
993
 
994
+ #: bbp-includes/bbp-general-functions.php:402
995
+ #: bbp-includes/bbp-general-functions.php:433
996
+ msgid "Private: %s | "
997
  msgstr ""
998
 
999
+ #: bbp-includes/bbp-general-functions.php:403
1000
+ #: bbp-includes/bbp-general-functions.php:434
1001
+ msgid "Spammed: %s | "
1002
  msgstr ""
1003
 
1004
+ #: bbp-includes/bbp-general-functions.php:404
1005
+ #: bbp-includes/bbp-general-functions.php:435
1006
+ msgid "Trashed: %s"
1007
  msgstr ""
1008
 
1009
+ #: bbp-includes/bbp-general-functions.php:629
1010
+ msgid "<strong>ERROR</strong>: Invalid author name submitted!"
1011
  msgstr ""
1012
 
1013
+ #: bbp-includes/bbp-general-functions.php:632
1014
+ msgid "<strong>ERROR</strong>: Invalid email address submitted!"
1015
  msgstr ""
1016
 
1017
+ #: bbp-includes/bbp-general-functions.php:815
1018
+ msgid ""
1019
+ "%1$s wrote:\n"
1020
+ "\n"
1021
+ "%2$s\n"
1022
+ "\n"
1023
+ "Post Link: %3$s\n"
1024
+ "\n"
1025
+ "You're getting this mail because you subscribed to the topic, visit the "
1026
+ "topic and login to unsubscribe."
1027
  msgstr ""
1028
 
1029
+ #: bbp-includes/bbp-reply-template.php:934
1030
+ #: bbp-includes/bbp-topic-template.php:1135
1031
+ #: bbp-includes/bbp-user-template.php:1019
1032
+ msgid "View %s's profile"
1033
  msgstr ""
1034
 
1035
+ #: bbp-includes/bbp-reply-template.php:934
1036
+ #: bbp-includes/bbp-topic-template.php:1135
1037
+ #: bbp-includes/bbp-user-template.php:1019
1038
+ msgid "Visit %s's website"
 
 
 
 
 
1039
  msgstr ""
1040
 
1041
+ #: bbp-includes/bbp-reply-template.php:1438
1042
+ #: bbp-includes/bbp-topic-template.php:2010 bbp-admin/bbp-replies.php:700
1043
+ #: bbp-admin/bbp-topics.php:778
1044
+ msgid "Trash"
 
1045
  msgstr ""
1046
 
1047
+ #: bbp-includes/bbp-reply-template.php:1439
1048
+ #: bbp-includes/bbp-topic-template.php:2011 bbp-admin/bbp-replies.php:698
1049
+ #: bbp-admin/bbp-topics.php:776
1050
+ msgid "Restore"
1051
  msgstr ""
1052
 
1053
+ #: bbp-includes/bbp-reply-template.php:1453
1054
+ #: bbp-includes/bbp-topic-template.php:2024 bbp-admin/bbp-replies.php:698
1055
+ #: bbp-admin/bbp-topics.php:776
1056
+ msgid "Restore this item from the Trash"
1057
  msgstr ""
1058
 
1059
+ #: bbp-includes/bbp-reply-template.php:1453
1060
+ #: bbp-includes/bbp-topic-template.php:2024
1061
+ msgid "Are you sure you want to restore that?"
1062
  msgstr ""
1063
 
1064
+ #: bbp-includes/bbp-reply-template.php:1455
1065
+ #: bbp-includes/bbp-topic-template.php:2026 bbp-admin/bbp-replies.php:700
1066
+ #: bbp-admin/bbp-topics.php:778
1067
+ msgid "Move this item to the Trash"
1068
  msgstr ""
1069
 
1070
+ #: bbp-includes/bbp-reply-template.php:1455
1071
+ #: bbp-includes/bbp-topic-template.php:2026
1072
+ msgid "Are you sure you want to trash that?"
1073
  msgstr ""
1074
 
1075
+ #: bbp-includes/bbp-reply-template.php:1458
1076
+ #: bbp-includes/bbp-topic-template.php:2029 bbp-admin/bbp-replies.php:704
1077
+ #: bbp-admin/bbp-topics.php:782
1078
+ msgid "Delete this item permanently"
1079
  msgstr ""
1080
 
1081
+ #: bbp-includes/bbp-reply-template.php:1458
1082
+ #: bbp-includes/bbp-topic-template.php:2029
1083
+ msgid "Are you sure you want to delete that permanently?"
1084
  msgstr ""
1085
 
1086
+ #: bbp-includes/bbp-reply-template.php:1507
1087
+ #: bbp-includes/bbp-topic-template.php:2265 bbp-admin/bbp-replies.php:690
1088
+ #: bbp-admin/bbp-topics.php:768
1089
+ msgid "Spam"
1090
  msgstr ""
1091
 
1092
+ #: bbp-includes/bbp-reply-template.php:1508
1093
+ #: bbp-includes/bbp-topic-template.php:2266
1094
+ msgid "Unspam"
1095
  msgstr ""
1096
 
1097
+ #: bbp-includes/bbp-reply-template.php:1572
1098
+ msgid "Split"
 
1099
  msgstr ""
1100
 
1101
+ #: bbp-includes/bbp-reply-template.php:1573
1102
+ msgid "Split the topic from this reply"
 
 
 
1103
  msgstr ""
1104
 
1105
+ #: bbp-includes/bbp-reply-template.php:1659
1106
+ msgid "Viewing reply %1$s (of %2$s total)"
 
1107
  msgstr ""
1108
 
1109
+ #: bbp-includes/bbp-reply-template.php:1661
1110
+ msgid "Viewing %1$s replies"
 
1111
  msgstr ""
1112
 
1113
+ #: bbp-includes/bbp-reply-template.php:1663
1114
+ msgid "Viewing %1$s replies - %2$s through %3$s (of %4$s total)"
1115
  msgstr ""
1116
 
1117
+ #: bbp-includes/bbp-reply-template.php:1665
1118
+ msgid "Viewing %1$s reply"
 
 
1119
  msgstr ""
1120
 
1121
+ #: bbp-includes/bbp-reply-template.php:1672
1122
+ msgid "Viewing post %1$s (of %2$s total)"
 
1123
  msgstr ""
1124
 
1125
+ #: bbp-includes/bbp-reply-template.php:1674
1126
+ msgid "Viewing %1$s posts"
1127
  msgstr ""
1128
 
1129
+ #: bbp-includes/bbp-reply-template.php:1676
1130
+ msgid "Viewing %1$s posts - %2$s through %3$s (of %4$s total)"
 
 
 
1131
  msgstr ""
1132
 
1133
+ #: bbp-includes/bbp-reply-template.php:1678
1134
+ msgid "Viewing %1$s post"
1135
  msgstr ""
1136
 
1137
+ #: bbp-includes/bbp-core-widgets.php:39
1138
+ msgid "The login widget."
 
1139
  msgstr ""
1140
 
1141
+ #: bbp-includes/bbp-core-widgets.php:42
1142
+ msgid "bbPress Login Widget"
 
1143
  msgstr ""
1144
 
1145
+ #: bbp-includes/bbp-core-widgets.php:90
1146
+ msgid "Log In"
 
1147
  msgstr ""
1148
 
1149
+ #: bbp-includes/bbp-core-widgets.php:140 bbp-includes/bbp-core-widgets.php:245
1150
+ #: bbp-includes/bbp-core-widgets.php:371 bbp-includes/bbp-core-widgets.php:561
1151
+ #: bbp-includes/bbp-core-widgets.php:709
1152
+ msgid "Title:"
1153
  msgstr ""
1154
 
1155
+ #: bbp-includes/bbp-core-widgets.php:172
1156
+ msgid "A list of views."
 
1157
  msgstr ""
1158
 
1159
+ #: bbp-includes/bbp-core-widgets.php:175
1160
+ msgid "bbPress View List"
1161
  msgstr ""
1162
 
1163
+ #: bbp-includes/bbp-core-widgets.php:278
1164
+ msgid "A list of forums."
1165
  msgstr ""
1166
 
1167
+ #: bbp-includes/bbp-core-widgets.php:281
1168
+ msgid "bbPress Forum List"
1169
  msgstr ""
1170
 
1171
+ #: bbp-includes/bbp-core-widgets.php:377
1172
+ msgid "Parent forum:"
1173
  msgstr ""
1174
 
1175
+ #: bbp-includes/bbp-core-widgets.php:383
1176
+ msgid ""
1177
+ "Forum ID number. \"0\" to show only root forums, \"-1\" to display all "
1178
+ "forums."
1179
  msgstr ""
1180
 
1181
+ #: bbp-includes/bbp-core-widgets.php:414
1182
+ msgid "A list of recent topics, sorted by popularity or freshness."
1183
  msgstr ""
1184
 
1185
+ #: bbp-includes/bbp-core-widgets.php:417
1186
+ msgid "bbPress Topics List"
1187
  msgstr ""
1188
 
1189
+ #: bbp-includes/bbp-core-widgets.php:562
1190
+ msgid "Maximum topics to show:"
1191
  msgstr ""
1192
 
1193
+ #: bbp-includes/bbp-core-widgets.php:563 bbp-includes/bbp-core-widgets.php:711
1194
+ msgid "Show post date:"
1195
  msgstr ""
1196
 
1197
+ #: bbp-includes/bbp-core-widgets.php:565
1198
+ msgid "Popularity check:"
1199
  msgstr ""
1200
 
1201
+ #: bbp-includes/bbp-core-widgets.php:566
1202
+ msgid ""
1203
+ "Number of topics back to check reply count to determine popularity. A number "
1204
+ "less than the maximum number of topics to show disables the check."
1205
  msgstr ""
1206
 
1207
+ #: bbp-includes/bbp-core-widgets.php:597
1208
+ msgid "A list of bbPress recent replies."
1209
  msgstr ""
1210
 
1211
+ #: bbp-includes/bbp-core-widgets.php:710
1212
+ msgid "Maximum replies to show:"
1213
  msgstr ""
1214
 
1215
+ #: bbp-includes/bbp-core-caps.php:31
1216
+ msgid "Forum Moderator"
1217
  msgstr ""
1218
 
1219
+ #: bbp-includes/bbp-topic-template.php:1509 bbp-admin/bbp-topics.php:691
1220
+ msgid "No Replies"
1221
  msgstr ""
1222
 
1223
+ #: bbp-includes/bbp-topic-template.php:1551
1224
+ #: bbp-includes/bbp-forum-template.php:1613
1225
+ msgid "%s reply"
1226
+ msgid_plural "%s replies"
1227
+ msgstr[0] ""
1228
+ msgstr[1] ""
 
 
1229
 
1230
+ #: bbp-includes/bbp-topic-template.php:1560
1231
+ #: bbp-includes/bbp-forum-template.php:1036
1232
+ msgid " + %d more"
 
 
 
1233
  msgstr ""
1234
 
1235
+ #: bbp-includes/bbp-topic-template.php:1718
1236
+ msgid "Tagged:"
 
 
1237
  msgstr ""
1238
 
1239
+ #: bbp-includes/bbp-topic-template.php:2078 bbp-admin/bbp-topics.php:749
1240
+ msgid "Close"
1241
  msgstr ""
1242
 
1243
+ #: bbp-includes/bbp-topic-template.php:2079 bbp-admin/bbp-metaboxes.php:269
1244
+ #: bbp-admin/bbp-topics.php:751
1245
+ msgid "Open"
1246
  msgstr ""
1247
 
1248
+ #: bbp-includes/bbp-topic-template.php:2139 bbp-admin/bbp-topics.php:760
1249
+ msgid "Stick"
1250
  msgstr ""
1251
 
1252
+ #: bbp-includes/bbp-topic-template.php:2140 bbp-admin/bbp-topics.php:757
1253
+ msgid "Unstick"
1254
  msgstr ""
1255
 
1256
+ #: bbp-includes/bbp-topic-template.php:2141 bbp-admin/bbp-topics.php:760
1257
+ msgid "to front"
1258
  msgstr ""
1259
 
1260
+ #: bbp-includes/bbp-topic-template.php:2321
1261
+ msgid "Viewing topic %1$s (of %2$s total)"
 
 
1262
  msgstr ""
1263
 
1264
+ #: bbp-includes/bbp-topic-template.php:2323
1265
+ msgid "Viewing %1$s topics"
1266
  msgstr ""
1267
 
1268
+ #: bbp-includes/bbp-topic-template.php:2325
1269
+ msgid "Viewing %1$s topics - %2$s through %3$s (of %4$s total)"
1270
  msgstr ""
1271
 
1272
+ #: bbp-includes/bbp-topic-template.php:2327
1273
+ msgid "Viewing %1$s topic"
1274
  msgstr ""
1275
 
1276
+ #: bbp-includes/bbp-topic-template.php:2387
1277
+ msgid "This topic is marked as spam."
 
 
 
 
1278
  msgstr ""
1279
 
1280
+ #: bbp-includes/bbp-topic-template.php:2392
1281
+ msgid "This topic is in the trash."
 
1282
  msgstr ""
1283
 
1284
+ #: bbp-includes/bbp-topic-template.php:2428
1285
+ msgid "Normal"
1286
  msgstr ""
1287
 
1288
+ #: bbp-includes/bbp-topic-template.php:2429
1289
+ msgid "Sticky"
1290
  msgstr ""
1291
 
1292
+ #: bbp-includes/bbp-topic-template.php:2430
1293
+ msgid "Super Sticky"
1294
  msgstr ""
1295
 
1296
+ #: bbp-includes/bbp-topic-template.php:2552
1297
+ msgid "%s voice"
1298
+ msgid_plural "%s voices"
1299
+ msgstr[0] ""
1300
+ msgstr[1] ""
1301
 
1302
+ #: bbp-includes/bbp-topic-template.php:2557
1303
  msgid ""
1304
+ "This topic has %1$s, contains %2$s, and was last updated by %3$s %4$s ago."
 
1305
  msgstr ""
1306
 
1307
+ #: bbp-includes/bbp-topic-template.php:2561
1308
+ msgid "This topic has %1$s, contains %2$s."
 
 
1309
  msgstr ""
1310
 
1311
+ #: bbp-includes/bbp-general-template.php:738
1312
+ msgid "No topics available"
 
 
 
 
1313
  msgstr ""
1314
 
1315
+ #: bbp-includes/bbp-general-template.php:743
1316
+ msgid "No forums available"
1317
  msgstr ""
1318
 
1319
+ #: bbp-includes/bbp-general-template.php:748
1320
+ msgid "None available"
1321
  msgstr ""
1322
 
1323
+ #: bbp-includes/bbp-general-template.php:820
1324
+ #: bbp-includes/bbp-general-template.php:837
1325
+ #: bbp-includes/bbp-topic-functions.php:949
1326
+ #: bbp-includes/bbp-topic-functions.php:1250
1327
+ #: bbp-admin/importers/bbpress.php:961
1328
+ msgid "Reply To: %s"
1329
  msgstr ""
1330
 
1331
+ #: bbp-includes/bbp-general-template.php:1320
1332
+ msgid "Log Out"
1333
  msgstr ""
1334
 
1335
+ #: bbp-includes/bbp-general-template.php:1363
1336
+ msgid "Your Profile"
1337
  msgstr ""
1338
 
1339
+ #: bbp-includes/bbp-general-template.php:1366
1340
+ msgid "%s's Profile"
1341
  msgstr ""
1342
 
1343
+ #: bbp-includes/bbp-general-template.php:1373
1344
+ msgid "Edit Your Profile"
1345
  msgstr ""
1346
 
1347
+ #: bbp-includes/bbp-general-template.php:1376
1348
+ msgid "Edit %s's Profile"
 
1349
  msgstr ""
1350
 
1351
+ #: bbp-includes/bbp-general-template.php:1382
1352
+ msgid "Forum: %s"
 
1353
  msgstr ""
1354
 
1355
+ #: bbp-includes/bbp-general-template.php:1387
1356
+ msgid "Topic: %s"
1357
  msgstr ""
1358
 
1359
+ #: bbp-includes/bbp-general-template.php:1406
1360
+ msgid "View: %s"
1361
  msgstr ""
1362
 
1363
+ #: bbp-includes/bbp-reply-functions.php:171
1364
+ msgid "<strong>ERROR</strong>: You do not have permission to reply."
1365
  msgstr ""
1366
 
1367
+ #: bbp-includes/bbp-reply-functions.php:183
1368
+ msgid "<strong>ERROR</strong>: Topic ID is missing."
 
 
1369
  msgstr ""
1370
 
1371
+ #: bbp-includes/bbp-reply-functions.php:189
1372
+ #: bbp-includes/bbp-topic-functions.php:121
1373
+ #: bbp-includes/bbp-topic-functions.php:336
1374
+ msgid "<strong>ERROR</strong>: Forum ID is missing."
1375
  msgstr ""
1376
 
1377
+ #: bbp-includes/bbp-reply-functions.php:209
1378
+ msgid "<strong>ERROR</strong>: Your reply needs a title."
1379
  msgstr ""
1380
 
1381
+ #: bbp-includes/bbp-reply-functions.php:221
1382
+ #: bbp-includes/bbp-reply-functions.php:425
1383
+ msgid "<strong>ERROR</strong>: Your reply cannot be empty."
1384
  msgstr ""
1385
 
1386
+ #: bbp-includes/bbp-reply-functions.php:226
1387
+ #: bbp-includes/bbp-topic-functions.php:150
1388
+ msgid "<strong>ERROR</strong>: Slow down; you move too fast."
1389
  msgstr ""
1390
 
1391
+ #: bbp-includes/bbp-reply-functions.php:231
1392
+ msgid ""
1393
+ "<strong>ERROR</strong>: Duplicate reply detected; it looks as though "
1394
+ "you&#8217;ve already said that!"
1395
  msgstr ""
1396
 
1397
+ #: bbp-includes/bbp-reply-functions.php:274
1398
+ #: bbp-includes/bbp-reply-functions.php:458
1399
  msgid ""
1400
+ "<strong>ERROR</strong>: There was some problem adding the tags to the topic."
1401
  msgstr ""
1402
 
1403
+ #: bbp-includes/bbp-reply-functions.php:341
1404
+ msgid "<strong>ERROR</strong>: Reply ID not found."
1405
  msgstr ""
1406
 
1407
+ #: bbp-includes/bbp-reply-functions.php:349
1408
+ msgid "<strong>ERROR</strong>: The reply you want to edit was not found."
1409
  msgstr ""
1410
 
1411
+ #: bbp-includes/bbp-reply-functions.php:362
1412
+ msgid "<strong>ERROR</strong>: You do not have permission to edit that reply."
1413
  msgstr ""
1414
 
1415
+ #: bbp-includes/bbp-reply-functions.php:392
1416
  msgid ""
1417
+ "<strong>ERROR</strong>: This forum is a category. No topics or replies can "
1418
+ "be created in it."
1419
  msgstr ""
1420
 
1421
+ #: bbp-includes/bbp-reply-functions.php:396
1422
+ msgid ""
1423
+ "<strong>ERROR</strong>: This forum has been closed to new topics and replies."
1424
  msgstr ""
1425
 
1426
+ #: bbp-includes/bbp-reply-functions.php:400
1427
+ msgid ""
1428
+ "<strong>ERROR</strong>: This forum is private and you do not have the "
1429
+ "capability to read or create new replies in it."
 
1430
  msgstr ""
1431
 
1432
+ #: bbp-includes/bbp-reply-functions.php:404
1433
+ msgid ""
1434
+ "<strong>ERROR</strong>: This forum is hidden and you do not have the "
1435
+ "capability to read or create new replies in it."
1436
  msgstr ""
1437
 
1438
+ #: bbp-includes/bbp-reply-functions.php:832
1439
+ msgid "<strong>ERROR:</strong> You do not have the permission to do that!"
1440
  msgstr ""
1441
 
1442
+ #: bbp-includes/bbp-reply-functions.php:845
1443
+ msgid ""
1444
+ "<strong>ERROR</strong>: There was a problem unmarking the reply as spam!"
1445
  msgstr ""
1446
 
1447
+ #: bbp-includes/bbp-reply-functions.php:845
1448
+ msgid "<strong>ERROR</strong>: There was a problem marking the reply as spam!"
1449
  msgstr ""
1450
 
1451
+ #: bbp-includes/bbp-reply-functions.php:862
1452
+ msgid "<strong>ERROR</strong>: There was a problem trashing the reply!"
 
 
1453
  msgstr ""
1454
 
1455
+ #: bbp-includes/bbp-reply-functions.php:870
1456
+ msgid "<strong>ERROR</strong>: There was a problem untrashing the reply!"
1457
  msgstr ""
1458
 
1459
+ #: bbp-includes/bbp-reply-functions.php:878
1460
+ msgid "<strong>ERROR</strong>: There was a problem deleting the reply!"
1461
  msgstr ""
1462
 
1463
+ #: bbp-includes/bbp-reply-functions.php:1130
1464
+ msgid "All Posts"
1465
  msgstr ""
1466
 
1467
+ #: bbp-includes/bbp-reply-functions.php:1132
1468
+ msgid "All Replies"
1469
  msgstr ""
1470
 
1471
+ #: bbp-includes/bbp-reply-functions.php:1172
1472
+ #: bbp-includes/bbp-topic-functions.php:2580
1473
+ msgid "Replies: %s"
1474
  msgstr ""
1475
 
1476
+ #: bbp-includes/bbp-user-template.php:151
1477
+ msgid "Anonymous"
1478
  msgstr ""
1479
 
1480
+ #: bbp-includes/bbp-user-template.php:408
1481
+ msgid "Admin"
1482
  msgstr ""
1483
 
1484
+ #: bbp-includes/bbp-user-template.php:542
1485
+ msgid " (%?%)"
1486
  msgstr ""
1487
 
1488
+ #: bbp-includes/bbp-user-template.php:548
1489
+ msgid "This topic is one of your %favorites% ["
 
 
1490
  msgstr ""
1491
 
1492
+ #: bbp-includes/bbp-user-template.php:550
1493
+ msgid "]"
1494
  msgstr ""
1495
 
1496
+ #: bbp-includes/bbp-user-template.php:705
1497
+ msgid "User updated."
1498
  msgstr ""
1499
 
1500
+ #: bbp-includes/bbp-user-template.php:729
1501
+ msgid "You have super admin privileges."
1502
  msgstr ""
1503
 
1504
+ #: bbp-includes/bbp-user-template.php:729
1505
+ msgid "This user has super admin privileges."
1506
  msgstr ""
1507
 
1508
+ #: bbp-includes/bbp-user-template.php:794
1509
+ msgid "&mdash; No role for this site &mdash;"
 
1510
  msgstr ""
1511
 
1512
+ #: bbp-includes/bbp-user-template.php:843
1513
+ msgid "You are now logged out."
 
1514
  msgstr ""
1515
 
1516
+ #: bbp-includes/bbp-user-template.php:847
1517
+ msgid "New user registration is currently not allowed."
 
1518
  msgstr ""
1519
 
1520
+ #: bbp-includes/bbp-user-template.php:856
1521
+ msgid "Check your e-mail for the confirmation link."
 
1522
  msgstr ""
1523
 
1524
+ #: bbp-includes/bbp-user-template.php:861
1525
+ msgid "Check your e-mail for your new password."
1526
  msgstr ""
1527
 
1528
+ #: bbp-includes/bbp-user-template.php:866
1529
+ msgid "Registration complete. Please check your e-mail."
 
 
1530
  msgstr ""
1531
 
1532
+ #: bbp-includes/bbp-user-functions.php:368
1533
+ #: bbp-includes/bbp-user-functions.php:637
1534
+ msgid ""
1535
+ "<strong>ERROR</strong>: You don't have the permission to edit favorites of "
1536
+ "that user!"
1537
  msgstr ""
1538
 
1539
+ #: bbp-includes/bbp-user-functions.php:372
1540
+ msgid ""
1541
+ "<strong>ERROR</strong>: No topic was found! Which topic are you marking/"
1542
+ "unmarking as favorite?"
1543
  msgstr ""
1544
 
1545
+ #: bbp-includes/bbp-user-functions.php:401
1546
+ msgid ""
1547
+ "<strong>ERROR</strong>: There was a problem removing that topic from "
1548
+ "favorites!"
1549
  msgstr ""
1550
 
1551
+ #: bbp-includes/bbp-user-functions.php:403
1552
+ msgid "<strong>ERROR</strong>: There was a problem favoriting that topic!"
 
 
1553
  msgstr ""
1554
 
1555
+ #: bbp-includes/bbp-user-functions.php:641
1556
+ msgid ""
1557
+ "<strong>ERROR</strong>: No topic was found! Which topic are you subscribing/"
1558
+ "unsubscribing to?"
1559
  msgstr ""
1560
 
1561
+ #: bbp-includes/bbp-user-functions.php:669
1562
  msgid ""
1563
+ "<strong>ERROR</strong>: There was a problem unsubscribing from that topic!"
 
1564
  msgstr ""
1565
 
1566
+ #: bbp-includes/bbp-user-functions.php:671
1567
+ msgid "<strong>ERROR</strong>: There was a problem subscribing to that topic!"
1568
  msgstr ""
1569
 
1570
+ #: bbp-includes/bbp-user-functions.php:744
1571
  msgid ""
1572
+ "What are you doing here? You do not have the permission to edit this user."
 
 
1573
  msgstr ""
1574
 
1575
+ #: bbp-includes/bbp-topic-functions.php:79
1576
+ msgid ""
1577
+ "<strong>ERROR</strong>: You do not have permission to create new topics."
1578
  msgstr ""
1579
 
1580
+ #: bbp-includes/bbp-topic-functions.php:103
1581
+ #: bbp-includes/bbp-topic-functions.php:372
1582
+ msgid "<strong>ERROR</strong>: Your topic needs a title."
1583
  msgstr ""
1584
 
1585
+ #: bbp-includes/bbp-topic-functions.php:115
1586
+ #: bbp-includes/bbp-topic-functions.php:384
1587
+ msgid "<strong>ERROR</strong>: Your topic cannot be empty."
1588
  msgstr ""
1589
 
1590
+ #: bbp-includes/bbp-topic-functions.php:132
1591
+ msgid ""
1592
+ "<strong>ERROR</strong>: This forum is a category. No topics can be created "
1593
+ "in this forum."
1594
  msgstr ""
1595
 
1596
+ #: bbp-includes/bbp-topic-functions.php:136
1597
+ #: bbp-includes/bbp-topic-functions.php:351
1598
+ msgid "<strong>ERROR</strong>: This forum has been closed to new topics."
1599
  msgstr ""
1600
 
1601
+ #: bbp-includes/bbp-topic-functions.php:140
1602
+ #: bbp-includes/bbp-topic-functions.php:355
1603
+ msgid ""
1604
+ "<strong>ERROR</strong>: This forum is private and you do not have the "
1605
+ "capability to read or create new topics in it."
1606
  msgstr ""
1607
 
1608
+ #: bbp-includes/bbp-topic-functions.php:144
1609
+ #: bbp-includes/bbp-topic-functions.php:359
1610
+ msgid ""
1611
+ "<strong>ERROR</strong>: This forum is hidden and you do not have the "
1612
+ "capability to read or create new topics in it."
1613
  msgstr ""
1614
 
1615
+ #: bbp-includes/bbp-topic-functions.php:155
1616
+ msgid ""
1617
+ "<strong>ERROR</strong>: Duplicate topic detected; it looks as though "
1618
+ "you&#8217;ve already said that!"
1619
  msgstr ""
1620
 
1621
+ #: bbp-includes/bbp-topic-functions.php:294
1622
+ #: bbp-includes/bbp-topic-functions.php:816
1623
+ msgid "<strong>ERROR</strong>: Topic ID not found."
1624
  msgstr ""
1625
 
1626
+ #: bbp-includes/bbp-topic-functions.php:302
1627
+ msgid "<strong>ERROR</strong>: The topic you want to edit was not found."
1628
  msgstr ""
1629
 
1630
+ #: bbp-includes/bbp-topic-functions.php:315
1631
+ msgid "<strong>ERROR</strong>: You do not have permission to edit that topic."
 
1632
  msgstr ""
1633
 
1634
+ #: bbp-includes/bbp-topic-functions.php:347
1635
+ msgid ""
1636
+ "<strong>ERROR</strong>: This forum is a category. No topics can be created "
1637
+ "in it."
1638
  msgstr ""
1639
 
1640
+ #: bbp-includes/bbp-topic-functions.php:825
1641
+ msgid "<strong>ERROR</strong>: The topic you want to merge was not found."
1642
  msgstr ""
1643
 
1644
+ #: bbp-includes/bbp-topic-functions.php:829
1645
+ #: bbp-includes/bbp-topic-functions.php:1104
1646
  msgid ""
1647
+ "<strong>ERROR</strong>: You do not have the permissions to edit the source "
1648
+ "topic."
1649
  msgstr ""
1650
 
1651
+ #: bbp-includes/bbp-topic-functions.php:835
1652
+ msgid "<strong>ERROR</strong>: Destination topic ID not found."
1653
  msgstr ""
1654
 
1655
+ #: bbp-includes/bbp-topic-functions.php:841
1656
+ msgid "<strong>ERROR</strong>: The topic you want to merge to was not found."
1657
  msgstr ""
1658
 
1659
+ #: bbp-includes/bbp-topic-functions.php:845
1660
+ msgid ""
1661
+ "<strong>ERROR</strong>: You do not have the permissions to edit the "
1662
+ "destination topic."
1663
  msgstr ""
1664
 
1665
+ #: bbp-includes/bbp-topic-functions.php:1080
1666
+ msgid "<strong>ERROR</strong>: Reply ID to split the topic from not found!"
1667
  msgstr ""
1668
 
1669
+ #: bbp-includes/bbp-topic-functions.php:1088
1670
+ msgid "<strong>ERROR</strong>: The reply you want to split from was not found."
1671
  msgstr ""
1672
 
1673
+ #: bbp-includes/bbp-topic-functions.php:1097
1674
+ msgid "<strong>ERROR</strong>: The topic you want to split was not found."
1675
  msgstr ""
1676
 
1677
+ #: bbp-includes/bbp-topic-functions.php:1113
1678
+ msgid "<strong>ERROR</strong>: You need to choose a valid split option."
1679
  msgstr ""
1680
 
1681
+ #: bbp-includes/bbp-topic-functions.php:1126
1682
+ msgid "<strong>ERROR</strong>: Destination topic ID not found!"
1683
  msgstr ""
1684
 
1685
+ #: bbp-includes/bbp-topic-functions.php:1135
1686
+ msgid "<strong>ERROR</strong>: The topic you want to split to was not found!"
1687
  msgstr ""
1688
 
1689
+ #: bbp-includes/bbp-topic-functions.php:1139
1690
+ msgid ""
1691
+ "<strong>ERROR</strong>: You do not have the permissions to edit the "
1692
+ "destination topic!"
1693
  msgstr ""
1694
 
1695
+ #: bbp-includes/bbp-topic-functions.php:1176
1696
+ msgid ""
1697
+ "<strong>ERROR</strong>: There was a problem converting the reply into the "
1698
+ "topic. Please try again."
 
 
 
1699
  msgstr ""
1700
 
1701
+ #: bbp-includes/bbp-topic-functions.php:1180
1702
+ msgid ""
1703
+ "<strong>ERROR</strong>: You do not have the permissions to create new "
1704
+ "topics. The reply could not be converted into a topic."
 
 
1705
  msgstr ""
1706
 
1707
+ #: bbp-includes/bbp-topic-functions.php:1367
1708
+ msgid ""
1709
+ "<strong>ERROR</strong>: The following problem(s) have been found while "
1710
+ "getting the tag: %s"
1711
  msgstr ""
1712
 
1713
+ #: bbp-includes/bbp-topic-functions.php:1382
1714
+ #: bbp-includes/bbp-topic-functions.php:1418
1715
  msgid ""
1716
+ "<strong>ERROR</strong>: You do not have the permissions to edit the topic "
1717
+ "tags."
1718
  msgstr ""
1719
 
1720
+ #: bbp-includes/bbp-topic-functions.php:1388
1721
+ #: bbp-includes/bbp-topic-functions.php:1424
1722
+ msgid "<strong>ERROR</strong>: You need to enter a tag name."
1723
  msgstr ""
1724
 
1725
+ #: bbp-includes/bbp-topic-functions.php:1398
1726
+ msgid ""
1727
+ "<strong>ERROR</strong>: The following problem(s) have been found while "
1728
+ "updating the tag: %s"
1729
  msgstr ""
1730
 
1731
+ #: bbp-includes/bbp-topic-functions.php:1434
1732
+ #: bbp-includes/bbp-topic-functions.php:1452
1733
+ msgid ""
1734
+ "<strong>ERROR</strong>: The following problem(s) have been found while "
1735
+ "merging the tags: %s"
1736
  msgstr ""
1737
 
1738
+ #: bbp-includes/bbp-topic-functions.php:1443
1739
+ msgid ""
1740
+ "<strong>ERROR</strong>: The tags which are being merged can not be the same."
1741
  msgstr ""
1742
 
1743
+ #: bbp-includes/bbp-topic-functions.php:1472
1744
+ msgid ""
1745
+ "<strong>ERROR</strong>: You do not have the permissions to delete the topic "
1746
+ "tags."
1747
  msgstr ""
1748
 
1749
+ #: bbp-includes/bbp-topic-functions.php:1481
1750
+ msgid ""
1751
+ "<strong>ERROR</strong>: The following problem(s) have been found while "
1752
+ "deleting the tag: %s"
1753
  msgstr ""
1754
 
1755
+ #: bbp-includes/bbp-topic-functions.php:1591
1756
+ msgid "<strong>ERROR:</strong> You do not have the permission to do that."
1757
  msgstr ""
1758
 
1759
+ #: bbp-includes/bbp-topic-functions.php:1604
1760
+ msgid "<strong>ERROR</strong>: There was a problem closing the topic."
1761
  msgstr ""
1762
 
1763
+ #: bbp-includes/bbp-topic-functions.php:1604
1764
+ msgid "<strong>ERROR</strong>: There was a problem opening the topic."
1765
  msgstr ""
1766
 
1767
+ #: bbp-includes/bbp-topic-functions.php:1615
1768
+ msgid "<strong>ERROR</strong>: There was a problem unsticking the topic."
1769
  msgstr ""
1770
 
1771
+ #: bbp-includes/bbp-topic-functions.php:1615
1772
+ msgid "<strong>ERROR</strong>: There was a problem sticking the topic."
 
 
 
 
 
1773
  msgstr ""
1774
 
1775
+ #: bbp-includes/bbp-topic-functions.php:1625
1776
  msgid ""
1777
+ "<strong>ERROR</strong>: There was a problem unmarking the topic as spam."
 
1778
  msgstr ""
1779
 
1780
+ #: bbp-includes/bbp-topic-functions.php:1625
1781
+ msgid "<strong>ERROR</strong>: There was a problem marking the topic as spam."
 
 
 
 
 
 
 
1782
  msgstr ""
1783
 
1784
+ #: bbp-includes/bbp-topic-functions.php:1642
1785
+ msgid "<strong>ERROR</strong>: There was a problem trashing the topic."
 
 
 
1786
  msgstr ""
1787
 
1788
+ #: bbp-includes/bbp-topic-functions.php:1650
1789
+ msgid "<strong>ERROR</strong>: There was a problem untrashing the topic."
 
 
 
 
 
 
 
1790
  msgstr ""
1791
 
1792
+ #: bbp-includes/bbp-topic-functions.php:1658
1793
+ msgid "<strong>ERROR</strong>: There was a problem deleting the topic."
 
 
 
1794
  msgstr ""
1795
 
1796
+ #: bbp-includes/bbp-topic-functions.php:2555
1797
+ msgid "All Topics"
 
 
 
1798
  msgstr ""
1799
 
1800
+ #: bbp-includes/bbp-forum-template.php:460 bbp-admin/bbp-forums.php:440
1801
+ msgid "No Topics"
 
 
 
1802
  msgstr ""
1803
 
1804
+ #: bbp-includes/bbp-forum-template.php:1027
1805
+ msgid "%s topic"
1806
+ msgid_plural "%s topics"
1807
+ msgstr[0] ""
1808
+ msgstr[1] ""
 
1809
 
1810
+ #: bbp-includes/bbp-forum-template.php:1618
1811
+ msgid ""
1812
+ "This forum contains %1$s and %2$s, and was last updated by %3$s %4$s ago."
1813
  msgstr ""
1814
 
1815
+ #: bbp-includes/bbp-forum-template.php:1622
1816
+ msgid "This forum contains %1$s and %2$s replies."
 
1817
  msgstr ""
1818
 
1819
+ #: bbp-admin/bbp-metaboxes.php:44
1820
+ msgid "Content"
 
 
 
1821
  msgstr ""
1822
 
1823
+ #: bbp-admin/bbp-metaboxes.php:125
1824
+ msgid "Discussion"
 
 
 
1825
  msgstr ""
1826
 
1827
+ #: bbp-admin/bbp-metaboxes.php:133
1828
+ msgid "User"
1829
+ msgid_plural "Users"
1830
+ msgstr[0] ""
1831
+ msgstr[1] ""
1832
 
1833
+ #: bbp-admin/bbp-metaboxes.php:152
1834
+ msgid "Hidden Topic"
1835
+ msgid_plural "Hidden Topics"
1836
+ msgstr[0] ""
1837
+ msgstr[1] ""
 
1838
 
1839
+ #: bbp-admin/bbp-metaboxes.php:171
1840
+ msgid "Hidden Reply"
1841
+ msgid_plural "Hidden Replies"
1842
+ msgstr[0] ""
1843
+ msgstr[1] ""
 
1844
 
1845
+ #: bbp-admin/bbp-metaboxes.php:190
1846
+ msgid "Empty Topic Tag"
1847
+ msgid_plural "Empty Topic Tags"
1848
+ msgstr[0] ""
1849
+ msgstr[1] ""
1850
 
1851
+ #: bbp-admin/bbp-metaboxes.php:216
1852
+ msgid "Theme <strong>natively supports</strong> bbPress"
 
 
1853
  msgstr ""
1854
 
1855
+ #: bbp-admin/bbp-metaboxes.php:218
1856
+ msgid "Theme <strong>does not</strong> natively support bbPress"
 
 
1857
  msgstr ""
1858
 
1859
+ #: bbp-admin/bbp-metaboxes.php:223
1860
+ msgid "You are using <span class=\"b\">bbPress %s</span>."
1861
  msgstr ""
1862
 
1863
+ #: bbp-admin/bbp-metaboxes.php:257
1864
+ msgid "Category"
 
 
1865
  msgstr ""
1866
 
1867
+ #: bbp-admin/bbp-metaboxes.php:270
1868
+ msgid "Closed"
 
 
 
 
 
1869
  msgstr ""
1870
 
1871
+ #: bbp-admin/bbp-metaboxes.php:282
1872
+ msgid "Public"
 
 
1873
  msgstr ""
1874
 
1875
+ #: bbp-admin/bbp-metaboxes.php:284
1876
+ msgid "Hidden"
1877
  msgstr ""
1878
 
1879
+ #: bbp-admin/bbp-metaboxes.php:296 bbp-admin/bbp-metaboxes.php:297
1880
+ msgid "Type:"
1881
  msgstr ""
1882
 
1883
+ #: bbp-admin/bbp-metaboxes.php:302 bbp-admin/bbp-metaboxes.php:303
1884
+ msgid "Status:"
1885
  msgstr ""
1886
 
1887
+ #: bbp-admin/bbp-metaboxes.php:308 bbp-admin/bbp-metaboxes.php:309
1888
+ msgid "Visibility:"
1889
  msgstr ""
1890
 
1891
+ #: bbp-admin/bbp-metaboxes.php:316
1892
+ msgid "Parent:"
1893
  msgstr ""
1894
 
1895
+ #: bbp-admin/bbp-metaboxes.php:317
1896
+ msgid "Forum Parent"
1897
  msgstr ""
1898
 
1899
+ #: bbp-admin/bbp-metaboxes.php:323
1900
+ msgid "(No Parent)"
1901
  msgstr ""
1902
 
1903
+ #: bbp-admin/bbp-metaboxes.php:332
1904
+ msgid "Order:"
1905
  msgstr ""
1906
 
1907
+ #: bbp-admin/bbp-metaboxes.php:333
1908
+ msgid "Forum Order"
1909
  msgstr ""
1910
 
1911
+ #: bbp-admin/bbp-metaboxes.php:361 bbp-admin/bbp-replies.php:619
1912
+ #: bbp-admin/bbp-topics.php:657
1913
+ msgid "(No Forum)"
1914
  msgstr ""
1915
 
1916
+ #: bbp-admin/bbp-metaboxes.php:400
1917
+ msgid "Parent Topic"
1918
  msgstr ""
1919
 
1920
+ #: bbp-admin/bbp-metaboxes.php:434 bbp-admin/bbp-metaboxes.php:437
1921
+ msgid "Email"
 
1922
  msgstr ""
1923
 
1924
+ #: bbp-admin/bbp-metaboxes.php:450 bbp-admin/bbp-metaboxes.php:453
1925
+ msgid "IP Address"
1926
  msgstr ""
1927
 
1928
+ #: bbp-admin/bbp-admin.php:168 bbp-admin/bbp-tools.php:65
1929
+ msgid "Recount"
 
1930
  msgstr ""
1931
 
1932
+ #: bbp-admin/bbp-admin.php:189
1933
+ msgid "Main Settings"
1934
  msgstr ""
1935
 
1936
+ #: bbp-admin/bbp-admin.php:192
1937
+ msgid "Lock post editing after"
1938
  msgstr ""
1939
 
1940
+ #: bbp-admin/bbp-admin.php:196
1941
+ msgid "Throttle time"
1942
  msgstr ""
1943
 
1944
+ #: bbp-admin/bbp-admin.php:200
1945
+ msgid "Allow Favorites"
1946
  msgstr ""
1947
 
1948
+ #: bbp-admin/bbp-admin.php:204
1949
+ msgid "Allow Subscriptions"
1950
  msgstr ""
1951
 
1952
+ #: bbp-admin/bbp-admin.php:208
1953
+ msgid "Allow Anonymous Posting"
1954
  msgstr ""
1955
 
1956
+ #: bbp-admin/bbp-admin.php:214
1957
+ msgid "Per Page"
1958
  msgstr ""
1959
 
1960
+ #: bbp-admin/bbp-admin.php:217 bbp-admin/bbp-admin.php:230
1961
+ msgid "Topics Per Page"
1962
  msgstr ""
1963
 
1964
+ #: bbp-admin/bbp-admin.php:221 bbp-admin/bbp-admin.php:234
1965
+ msgid "Replies Per Page"
1966
  msgstr ""
1967
 
1968
+ #: bbp-admin/bbp-admin.php:227
1969
+ msgid "Per RSS Page"
 
1970
  msgstr ""
1971
 
1972
+ #: bbp-admin/bbp-admin.php:240
1973
+ msgid "Archive Slugs"
 
1974
  msgstr ""
1975
 
1976
+ #: bbp-admin/bbp-admin.php:243
1977
+ msgid "Forums Base"
1978
  msgstr ""
1979
 
1980
+ #: bbp-admin/bbp-admin.php:247
1981
+ msgid "Topics Base"
1982
  msgstr ""
1983
 
1984
+ #: bbp-admin/bbp-admin.php:253
1985
+ msgid "Single Slugs"
1986
  msgstr ""
1987
 
1988
+ #: bbp-admin/bbp-admin.php:256
1989
+ msgid "Forum Prefix"
1990
  msgstr ""
1991
 
1992
+ #: bbp-admin/bbp-admin.php:260
1993
+ msgid "Forum slug"
1994
+ msgstr ""
1995
+
1996
+ #: bbp-admin/bbp-admin.php:264
1997
+ msgid "Topic slug"
1998
+ msgstr ""
1999
+
2000
+ #: bbp-admin/bbp-admin.php:268
2001
+ msgid "Topic tag slug"
2002
+ msgstr ""
2003
+
2004
+ #: bbp-admin/bbp-admin.php:272
2005
+ msgid "Reply slug"
2006
+ msgstr ""
2007
+
2008
+ #: bbp-admin/bbp-admin.php:278
2009
+ msgid "User base"
2010
+ msgstr ""
2011
+
2012
+ #: bbp-admin/bbp-admin.php:282
2013
+ msgid "View base"
2014
  msgstr ""
2015
 
2016
+ #: bbp-admin/bbp-admin.php:353
2017
  msgid ""
2018
+ "<strong>bbPress is in Theme Compatability Mode</strong>. Your forums are "
2019
+ "using default styling."
2020
  msgstr ""
2021
 
2022
+ #: bbp-admin/bbp-admin.php:372
2023
+ msgid "Settings"
 
2024
  msgstr ""
2025
 
2026
+ #: bbp-admin/bbp-admin.php:398
2027
+ msgid "Right Now in Forums"
2028
+ msgstr ""
2029
+
2030
+ #: bbp-admin/bbp-admin.php:584
2031
+ msgid "Green"
2032
  msgstr ""
2033
 
2034
+ #: bbp-admin/importers/bbpress.php:333
2035
  msgid "bbPress Standalone Importer"
2036
  msgstr ""
2037
 
2038
+ #: bbp-admin/importers/bbpress.php:346
2039
  msgid "Try Again"
2040
  msgstr ""
2041
 
2042
+ #: bbp-admin/importers/bbpress.php:431
2043
  msgid ""
2044
  "It looks like you attempted to convert your bbPress standalone previously "
2045
  "and got interrupted."
2046
  msgstr ""
2047
 
2048
+ #: bbp-admin/importers/bbpress.php:434
2049
  msgid "Cancel &amp; start a new import"
2050
  msgstr ""
2051
 
2052
+ #: bbp-admin/importers/bbpress.php:435
2053
  msgid "Continue previous import"
2054
  msgstr ""
2055
 
2056
+ #: bbp-admin/importers/bbpress.php:443
2057
  msgid ""
2058
  "Existing bbPress standalone installation found. See configuration section "
2059
  "for details."
2060
  msgstr ""
2061
 
2062
+ #: bbp-admin/importers/bbpress.php:450
2063
  msgid ""
2064
  "This importer allows you to convert your bbPress Standalone into the bbPress "
2065
  "Plugin."
2066
  msgstr ""
2067
 
2068
+ #: bbp-admin/importers/bbpress.php:452
2069
  msgid "Instructions"
2070
  msgstr ""
2071
 
2072
+ #: bbp-admin/importers/bbpress.php:454
2073
  msgid ""
2074
  "Create a <a href=\"%s\">backup</a> of your database and files. If the import "
2075
  "process is interrupted for any reason, restore from that backup and re-run "
2076
  "the import."
2077
  msgstr ""
2078
 
2079
+ #: bbp-admin/importers/bbpress.php:455
2080
  msgid ""
2081
  "Seriously... Go back everything up, and don't come back until that's done. "
2082
  "If things go awry, it's possible this importer will not be able to complete "
2084
  "we're not kidding."
2085
  msgstr ""
2086
 
2087
+ #: bbp-admin/importers/bbpress.php:456
2088
  msgid "To reduce memory overhead and avoid possible conflicts please:"
2089
  msgstr ""
2090
 
2091
+ #: bbp-admin/importers/bbpress.php:459
2092
  msgid ""
2093
  "Disable all plugins (except bbPress) on both your WordPress and bbPress "
2094
  "standalone installations."
2095
  msgstr ""
2096
 
2097
+ #: bbp-admin/importers/bbpress.php:462
2098
  msgid "Switch to a default WordPress theme."
2099
  msgstr ""
2100
 
2101
+ #: bbp-admin/importers/bbpress.php:466
2102
  msgid "Notes on compatibility:"
2103
  msgstr ""
2104
 
2105
+ #: bbp-admin/importers/bbpress.php:469
2106
  msgid ""
2107
+ "If you have the <a href=\"%s\">Subscribe to Topic</a> plugin active, please "
2108
+ "deactivate it. This script will migrate user subscriptions from that plugin."
2109
  msgstr ""
2110
 
2111
+ #: bbp-admin/importers/bbpress.php:472
2112
  msgid ""
2113
+ "If you are using the alpha version of bbPress 1.1 subscriptions will be "
2114
+ "ported automatically."
2115
  msgstr ""
2116
 
2117
+ #: bbp-admin/importers/bbpress.php:475
2118
  msgid ""
2119
  "If you are importing an existing BuddyPress Forums installation, we should "
2120
  "have found your previous configuration file."
2121
  msgstr ""
2122
 
2123
+ #: bbp-admin/importers/bbpress.php:479
2124
  msgid ""
2125
  "This converter can be a drag on large forums with lots of existing topics "
2126
  "and replies. If possible, do this import in a safe place (like a local "
2127
  "installation.)"
2128
  msgstr ""
2129
 
2130
+ #: bbp-admin/importers/bbpress.php:482
2131
  msgid "Configuration"
2132
  msgstr ""
2133
 
2134
+ #: bbp-admin/importers/bbpress.php:483
2135
  msgid ""
2136
+ "Enter the path to your bbPress standalone install, where you'd find your "
2137
+ "<code>bb-config.php</code>:"
2138
  msgstr ""
2139
 
2140
+ #: bbp-admin/importers/bbpress.php:488
2141
  msgid "bbPress Standalone Path:"
2142
  msgstr ""
2143
 
2144
+ #: bbp-admin/importers/bbpress.php:496
2145
  msgid "Proceed"
2146
  msgstr ""
2147
 
2148
+ #: bbp-admin/importers/bbpress.php:536
2149
  msgid ""
2150
  "Please enter the path to your bbPress configuration file - <code>bb-config."
2151
  "php</code>."
2152
  msgstr ""
2153
 
2154
+ #: bbp-admin/importers/bbpress.php:537 bbp-admin/importers/bbpress.php:555
2155
  msgid "Go Back"
2156
  msgstr ""
2157
 
2158
+ #: bbp-admin/importers/bbpress.php:554
2159
  msgid ""
2160
  "bbPress configuration file <code>bb-config.php</code> doesn't exist in the "
2161
  "path specified! Please check the path and try again."
2162
  msgstr ""
2163
 
2164
+ #: bbp-admin/importers/bbpress.php:586
2165
  msgid "Configuration Options"
2166
  msgstr ""
2167
 
2168
+ #: bbp-admin/importers/bbpress.php:592
2169
  msgid ""
2170
  "<strong>Auto-detected</strong>: Your WordPress and bbPress user tables are "
2171
  "integrated. Proceed to <label for=\"step_board\">importing forums, topics "
2172
  "and posts</label>."
2173
  msgstr ""
2174
 
2175
+ #: bbp-admin/importers/bbpress.php:599
2176
  msgid ""
2177
  "Your WordPress blog is <strong>new</strong> and you don't have the fear of "
2178
  "losing WordPress users:"
2179
  msgstr ""
2180
 
2181
+ #: bbp-admin/importers/bbpress.php:600
2182
  msgid "Go to migrating users section."
2183
  msgstr ""
2184
 
2185
+ #: bbp-admin/importers/bbpress.php:601
2186
  msgid ""
2187
+ "<strong>Note</strong>: The WordPress %1$s and %2$s tables would be renamed, "
2188
+ "but not deleted so that you could restore them if something goes wrong."
2189
  msgstr ""
2190
 
2191
+ #: bbp-admin/importers/bbpress.php:602
2192
  msgid ""
2193
+ "Please ensure there are no tables with names %1$s and %2$s so that there is "
2194
+ "no problem in renaming."
2195
  msgstr ""
2196
 
2197
+ #: bbp-admin/importers/bbpress.php:603
2198
  msgid "Also, your WordPress and bbPress installs must be in the same database."
2199
  msgstr ""
2200
 
2201
+ #: bbp-admin/importers/bbpress.php:607
2202
  msgid ""
2203
  "You're done with user migration or have the user tables <strong>integrated</"
2204
  "strong>:"
2205
  msgstr ""
2206
 
2207
+ #: bbp-admin/importers/bbpress.php:608
2208
  msgid "Proceed to importing forums, topics and posts section."
2209
  msgstr ""
2210
 
2211
+ #: bbp-admin/importers/bbpress.php:612
2212
  msgid ""
2213
  "You have a well <strong>established</strong> WordPress user base, the user "
2214
  "tables are not integrated and you can't lose your users:"
2215
  msgstr ""
2216
 
2217
+ #: bbp-admin/importers/bbpress.php:613
2218
  msgid ""
2219
  "This is currently not yet supported, and will likely not be in the future "
2220
  "also as it is highly complex to merge two user sets (which might even "
2221
  "conflict)."
2222
  msgstr ""
2223
 
2224
+ #: bbp-admin/importers/bbpress.php:614
2225
  msgid ""
2226
+ "But, patches are always <a href=\"%s\" title=\"The last revision containing "
2227
+ "the custom user migration code\">welcome</a>. :)"
2228
  msgstr ""
2229
 
2230
+ #: bbp-admin/importers/bbpress.php:622
2231
  msgid "Migrate Users"
2232
  msgstr ""
2233
 
2234
+ #: bbp-admin/importers/bbpress.php:625
2235
  msgid "Import Forums, Topics & Posts"
2236
  msgstr ""
2237
 
2238
+ #: bbp-admin/importers/bbpress.php:629
2239
  msgid "Start!"
2240
  msgstr ""
2241
 
2242
+ #: bbp-admin/importers/bbpress.php:665
2243
  msgid "Importing Users"
2244
  msgstr ""
2245
 
2246
+ #: bbp-admin/importers/bbpress.php:666
2247
  msgid "We&#8217;re in the process of migrating your users..."
2248
  msgstr ""
2249
 
2250
+ #: bbp-admin/importers/bbpress.php:683
2251
  msgid ""
2252
  "Renamed the <code>%1$s</code> and <code>%2$s</code> tables to <code>%3$s</"
2253
  "code> and <code>%4$s</code> respectively."
2254
  msgstr ""
2255
 
2256
+ #: bbp-admin/importers/bbpress.php:685
2257
  msgid ""
2258
  "There was a problem dropping the <code>%1$s</code> and <code>%2$s</code> "
2259
  "tables. Please check and re-run the script or rename or drop the tables "
2260
  "yourself."
2261
  msgstr ""
2262
 
2263
+ #: bbp-admin/importers/bbpress.php:693
2264
  msgid "Created the <code>%s</code> table and copied the users from bbPress."
2265
  msgstr ""
2266
 
2267
+ #: bbp-admin/importers/bbpress.php:695 bbp-admin/importers/bbpress.php:703
2268
  msgid ""
2269
  "There was a problem duplicating the table <code>%1$s</code> to <code>%2$s</"
2270
  "code>. Please check and re-run the script or duplicate the table yourself."
2271
  msgstr ""
2272
 
2273
+ #: bbp-admin/importers/bbpress.php:701
2274
  msgid ""
2275
  "Created the <code>%s</code> table and copied the user information from "
2276
  "bbPress."
2277
  msgstr ""
2278
 
2279
+ #: bbp-admin/importers/bbpress.php:767
2280
  msgid ""
2281
  "There was a problem in getting an administrator of the blog. Now, please go "
2282
  "to your blog, set a user as administrator, login as that user and directly "
2285
  "in as the bbPress keymaster)."
2286
  msgstr ""
2287
 
2288
+ #: bbp-admin/importers/bbpress.php:790
2289
  msgid ""
2290
  "User roles have been successfully mapped based. The bbPress keymaster is "
2291
  "WordPress administrator, bbPress administrator and moderators are moderators "
2295
  "$s)."
2296
  msgstr ""
2297
 
2298
+ #: bbp-admin/importers/bbpress.php:795
2299
  msgid ""
2300
  "Your users have all been imported, but wait &#8211; there&#8217;s more! Now "
2301
  "we need to import your forums, topics and posts!"
2302
  msgstr ""
2303
 
2304
+ #: bbp-admin/importers/bbpress.php:798
2305
+ msgid "Import by forums, topics and posts &raquo;"
2306
  msgstr ""
2307
 
2308
+ #: bbp-admin/importers/bbpress.php:826
2309
  msgid "Importing Forums, Topics And Posts"
2310
  msgstr ""
2311
 
2312
+ #: bbp-admin/importers/bbpress.php:827
2313
  msgid ""
2314
  "We&#8217;re importing your bbPress standalone forums, topics and replies..."
2315
  msgstr ""
2316
 
2317
+ #: bbp-admin/importers/bbpress.php:834
2318
  msgid "No forums were found!"
2319
  msgstr ""
2320
 
2321
+ #: bbp-admin/importers/bbpress.php:839
2322
  msgid "Total number of forums: %s"
2323
  msgstr ""
2324
 
2325
+ #: bbp-admin/importers/bbpress.php:845
2326
  msgid "Processing forum #%1$s (<a href=\"%2$s\">%3$s</a>)"
2327
  msgstr ""
2328
 
2329
+ #: bbp-admin/importers/bbpress.php:865
2330
  msgid "Added the forum as forum #<a href=\"%1$s\">%2$s</a>"
2331
  msgstr ""
2332
 
2333
+ #: bbp-admin/importers/bbpress.php:867
2334
  msgid "There was a problem in adding the forum."
2335
  msgstr ""
2336
 
2337
+ #: bbp-admin/importers/bbpress.php:886
2338
  msgid "The forum is a category and has no topics."
2339
  msgstr ""
2340
 
2341
+ #: bbp-admin/importers/bbpress.php:891
2342
  msgid ""
2343
  "The forum is a category but has topics, so it has been set as closed on the "
2344
  "new board."
2345
  msgstr ""
2346
 
2347
+ #: bbp-admin/importers/bbpress.php:899
2348
  msgid "Total number of topics in the forum: %s"
2349
  msgstr ""
2350
 
2351
+ #: bbp-admin/importers/bbpress.php:1037
2352
  msgid ""
2353
  "Added topic #%1$s (<a href=\"%2$s\">%3$s</a>) as topic #<a href=\"%4$s\">%5"
2354
  "$s</a> with %6$s replies."
2355
  msgstr ""
2356
 
2357
+ #: bbp-admin/importers/bbpress.php:1039
2358
  msgid "There was a problem in adding topic #1$s (<a href=\"%2$s\">%3$s</a>)."
2359
  msgstr ""
2360
 
2361
+ #: bbp-admin/importers/bbpress.php:1058
2362
  msgid ""
2363
  "Your forums, topics and posts have all been imported, but wait &#8211; "
2364
  "there&#8217;s more! Now we need to do a <a href=\"%s\">recount</a> to get "
2365
  "the counts in sync! Yes, we&#8217;re bad at Math."
2366
  msgstr ""
2367
 
2368
+ #: bbp-admin/importers/bbpress.php:1060
2369
  msgid "After that it's all done. <a href=\"%s\">Have fun!</a> :)"
2370
  msgstr ""
2371
 
2372
+ #: bbp-admin/importers/bbpress.php:1071
2373
  msgid "bbPress Standalone"
2374
  msgstr ""
2375
 
2376
+ #: bbp-admin/importers/bbpress.php:1071
2377
  msgid "Import your bbPress standalone board."
2378
  msgstr ""
2379
 
2380
+ #: bbp-admin/bbp-settings.php:23
2381
+ msgid "Main settings for the bbPress plugin"
2382
  msgstr ""
2383
 
2384
+ #: bbp-admin/bbp-settings.php:39
2385
+ msgid "minutes"
2386
  msgstr ""
2387
 
2388
+ #: bbp-admin/bbp-settings.php:55
2389
+ msgid "seconds"
2390
  msgstr ""
2391
 
2392
+ #: bbp-admin/bbp-settings.php:71
2393
+ msgid "Allow users to mark topics as favorites?"
2394
  msgstr ""
2395
 
2396
+ #: bbp-admin/bbp-settings.php:87
2397
+ msgid "Allow users to subscribe to topics"
2398
  msgstr ""
2399
 
2400
+ #: bbp-admin/bbp-settings.php:103
2401
+ msgid "Allow guest users without accounts to create topics and replies"
2402
  msgstr ""
2403
 
2404
+ #: bbp-admin/bbp-settings.php:118
2405
+ msgid "Per page settings for the bbPress plugin"
2406
  msgstr ""
2407
 
2408
+ #: bbp-admin/bbp-settings.php:134 bbp-admin/bbp-settings.php:150
2409
+ #: bbp-admin/bbp-settings.php:181 bbp-admin/bbp-settings.php:197
2410
+ msgid "per page"
2411
  msgstr ""
2412
 
2413
+ #: bbp-admin/bbp-settings.php:165
2414
+ msgid "Per RSS page settings for the bbPress plugin"
2415
  msgstr ""
2416
 
2417
+ #: bbp-admin/bbp-settings.php:215
2418
+ msgid ""
2419
+ "Include custom root slugs to prefix your forums and topics with. These can "
2420
+ "be partnered with WordPress pages to allow more flexibility."
2421
  msgstr ""
2422
 
2423
+ #: bbp-admin/bbp-settings.php:263
2424
+ msgid ""
2425
+ "You can enter custom slugs for your single forums, topics, replies, and tags "
2426
+ "URLs here. If you change these, existing permalinks will also change."
2427
  msgstr ""
2428
 
2429
+ #: bbp-admin/bbp-settings.php:279
2430
+ msgid "Incude the Forum Base slug in your single forum item links"
2431
  msgstr ""
2432
 
2433
+ #: bbp-admin/bbp-settings.php:394
2434
+ msgid "bbPress Settings"
2435
  msgstr ""
2436
 
2437
+ #: bbp-admin/bbp-settings.php:418
2438
+ msgid "This screen provides access to basic bbPress settings."
2439
  msgstr ""
2440
 
2441
+ #: bbp-admin/bbp-settings.php:419
2442
+ msgid "In the Main Settings you have a number of options:"
2443
  msgstr ""
2444
 
2445
+ #: bbp-admin/bbp-settings.php:422
2446
+ msgid ""
2447
+ "You can choose to lock a post after a certain number of minutes. \"Locking "
2448
+ "post editing\" will prevent the author from editing some amount of time "
2449
+ "after saving a post."
2450
  msgstr ""
2451
 
2452
+ #: bbp-admin/bbp-settings.php:423
2453
+ msgid ""
2454
+ "\"Throttle time\" is the amount of time required between posts from a single "
2455
+ "author. The higher the throttle time, the longer a user will need to wait "
2456
+ "between posting to the forum."
2457
  msgstr ""
2458
 
2459
+ #: bbp-admin/bbp-settings.php:424
2460
+ msgid ""
2461
+ "You may choose to allow favorites, which are a way for users to save and "
2462
+ "later return to topics they favor. This is enabled by default."
2463
  msgstr ""
2464
 
2465
+ #: bbp-admin/bbp-settings.php:425
2466
+ msgid ""
2467
+ "You may choose to allow subscriptions, which allows users to subscribe for "
2468
+ "notifications to topics that interest them. This is enabled by default."
2469
  msgstr ""
2470
 
2471
+ #: bbp-admin/bbp-settings.php:426
2472
+ msgid ""
2473
+ "You may choose to allow \"Anonymous Posting\", which will allow guest users "
2474
+ "who do not have accounts on your site to both create topics as well as "
2475
+ "replies."
2476
  msgstr ""
2477
 
2478
+ #: bbp-admin/bbp-settings.php:429
2479
+ msgid ""
2480
+ "Per Page settings allow you to control the number of topics and replies will "
2481
+ "appear on each of those pages. This is comparable to the WordPress \"Reading "
2482
+ "Settings\" page, where you can set the number of posts that should show on "
2483
+ "blog pages and in feeds."
2484
  msgstr ""
2485
 
2486
+ #: bbp-admin/bbp-settings.php:430
2487
+ msgid ""
2488
+ "The Forums section allows you to control the permalink structure for your "
2489
+ "forums. Each \"base\" is what will be displayed after your main URL and "
2490
+ "right before your permalink slug."
2491
  msgstr ""
2492
 
2493
+ #: bbp-admin/bbp-settings.php:431
2494
  msgid ""
2495
+ "You must click the Save Changes button at the bottom of the screen for new "
2496
+ "settings to take effect."
2497
  msgstr ""
2498
 
2499
+ #: bbp-admin/bbp-settings.php:432 bbp-admin/bbp-forums.php:130
2500
+ #: bbp-admin/bbp-forums.php:168 bbp-admin/bbp-replies.php:133
2501
+ #: bbp-admin/bbp-replies.php:174 bbp-admin/bbp-topics.php:134
2502
+ #: bbp-admin/bbp-topics.php:178
2503
+ msgid "<strong>For more information:</strong>"
2504
  msgstr ""
2505
 
2506
+ #: bbp-admin/bbp-settings.php:435 bbp-admin/bbp-forums.php:133
2507
+ #: bbp-admin/bbp-forums.php:171 bbp-admin/bbp-replies.php:136
2508
+ #: bbp-admin/bbp-replies.php:177 bbp-admin/bbp-topics.php:137
2509
+ #: bbp-admin/bbp-topics.php:181
2510
+ msgid "<a href=\"http://bbpress.org/documentation/\">bbPress Documentation</a>"
2511
  msgstr ""
2512
 
2513
+ #: bbp-admin/bbp-settings.php:436 bbp-admin/bbp-forums.php:134
2514
+ #: bbp-admin/bbp-forums.php:172 bbp-admin/bbp-replies.php:137
2515
+ #: bbp-admin/bbp-replies.php:178 bbp-admin/bbp-topics.php:138
2516
+ #: bbp-admin/bbp-topics.php:182
2517
+ msgid "<a href=\"http://bbpress.org/forums/\">bbPress Support Forums</a>"
2518
  msgstr ""
2519
 
2520
+ #: bbp-admin/bbp-forums.php:115
2521
+ msgid ""
2522
+ "The forum title field and the big forum editing area are fixed in place, but "
2523
+ "you can reposition all the other boxes using drag and drop, and can minimize "
2524
+ "or expand them by clicking the title bar of the box. Use the Screen Options "
2525
+ "tab to unhide more boxes (like Slug) or to choose a 1- or 2-column layout "
2526
+ "for this screen."
2527
  msgstr ""
2528
 
2529
+ #: bbp-admin/bbp-forums.php:116
2530
+ msgid ""
2531
+ "<strong>Title</strong> - Enter a title for your forum. After you enter a "
2532
+ "title, you will see the permalink appear below it, which is fully editable."
 
 
 
 
 
 
 
 
 
 
2533
  msgstr ""
2534
 
2535
+ #: bbp-admin/bbp-forums.php:117
2536
+ msgid ""
2537
+ "<strong>Post editor</strong> - Enter the description for your forum. There "
2538
+ "are two modes of editing: Visual and HTML. Choose the mode by clicking on "
2539
+ "the appropriate tab. Visual mode gives you a WYSIWYG editor. Click the last "
2540
+ "icon in the row to get a second row of controls. The screen icon just before "
2541
+ "that allows you to expand the edit box to full screen. The HTML mode allows "
2542
+ "you to enter raw HTML along with your forum text. You can insert media files "
2543
+ "by clicking the icons above the post editor and following the directions."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2544
  msgstr ""
2545
 
2546
+ #: bbp-admin/bbp-forums.php:118
2547
+ msgid ""
2548
+ "<strong>Forum Attributes</strong> - Select the various attributes that your "
2549
+ "forum should have:"
2550
  msgstr ""
2551
 
2552
+ #: bbp-admin/bbp-forums.php:121
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2553
  msgid ""
2554
+ "Forum Type determines whether it is a Forum (by default) or a Category, "
2555
+ "which means no new topics (only other forums) can be created within it."
 
 
 
2556
  msgstr ""
2557
 
2558
+ #: bbp-admin/bbp-forums.php:122
2559
  msgid ""
2560
+ "Forum Status controls whether it is open (and thus can be posted to) or "
2561
+ "closed (thus not able to be posted to)."
2562
  msgstr ""
2563
 
2564
+ #: bbp-admin/bbp-forums.php:123
2565
  msgid ""
2566
+ "Visibility can be set to either Public (by default, seen by everyone), "
2567
+ "Private (seen only by chosen users), and Hidden (hidden from all users)."
 
 
 
 
 
2568
  msgstr ""
2569
 
2570
+ #: bbp-admin/bbp-forums.php:124
2571
  msgid ""
2572
+ "Parent turns the forum into a child forum of the selected forum/category in "
2573
+ "the dropdown."
 
 
2574
  msgstr ""
2575
 
2576
+ #: bbp-admin/bbp-forums.php:125
2577
  msgid ""
2578
+ "Order determines the order that forums in the given hierarchy are displayed "
2579
+ "(lower numbers first, higher numbers last)."
 
 
 
 
 
2580
  msgstr ""
2581
 
2582
+ #: bbp-admin/bbp-forums.php:128
2583
  msgid ""
2584
+ "<strong>Publish</strong> - The Publish box will allow you to Preview your "
2585
+ "forum before it is published, Publish your forum to your site, or Move to "
2586
+ "Trash will move your forum to the trash."
 
2587
  msgstr ""
2588
 
2589
+ #: bbp-admin/bbp-forums.php:129
2590
  msgid ""
2591
  "<strong>Revisions</strong> - Revisions show past versions of the saved "
2592
+ "forum. Each revision can be compared to the current version, or another "
2593
  "revision. Revisions can also be restored to the current version."
2594
  msgstr ""
2595
 
2596
+ #: bbp-admin/bbp-forums.php:149
2597
+ msgid "This screen displays the forums available on your site."
2598
  msgstr ""
2599
 
2600
+ #: bbp-admin/bbp-forums.php:150 bbp-admin/bbp-replies.php:153
2601
+ #: bbp-admin/bbp-topics.php:154
2602
+ msgid "You can customize the display of this screen in a number of ways:"
2603
+ msgstr ""
2604
+
2605
+ #: bbp-admin/bbp-forums.php:153
2606
  msgid ""
2607
+ "You can hide/display columns based on your needs and decide how many forums "
2608
  "to list per screen using the Screen Options tab."
2609
  msgstr ""
2610
 
2611
+ #: bbp-admin/bbp-forums.php:154
2612
  msgid ""
2613
+ "You can filter the list of forums by forum status using the text links in "
2614
+ "the upper left to show All, Published, or Trashed forums. The default view "
2615
+ "is to show all forums."
2616
  msgstr ""
2617
 
2618
+ #: bbp-admin/bbp-forums.php:155
2619
  msgid ""
2620
+ "You can refine the list to show only forums from a specific month by using "
2621
+ "the dropdown menus above the forums list. Click the Filter button after "
2622
+ "making your selection. You also can refine the list by clicking on the forum "
2623
+ "creator in the forums list."
2624
  msgstr ""
2625
 
2626
+ #: bbp-admin/bbp-forums.php:158
2627
  msgid ""
2628
+ "Hovering over a row in the forums list will display action links that allow "
2629
+ "you to manage your forum. You can perform the following actions:"
 
2630
  msgstr ""
2631
 
2632
+ #: bbp-admin/bbp-forums.php:161
2633
  msgid ""
2634
+ "Edit takes you to the editing screen for that forum. You can also reach that "
2635
+ "screen by clicking on the forum title."
 
2636
  msgstr ""
2637
 
2638
+ #: bbp-admin/bbp-forums.php:162
2639
  msgid ""
2640
+ "Trash removes your forum from this list and places it in the trash, from "
2641
+ "which you can permanently delete it."
2642
  msgstr ""
2643
 
2644
+ #: bbp-admin/bbp-forums.php:163
2645
+ msgid "View will take you to your live forum to view the forum."
 
 
2646
  msgstr ""
2647
 
2648
+ #: bbp-admin/bbp-forums.php:166
2649
  msgid ""
2650
+ "You can also edit multiple forums at once. Select the forums you want to "
2651
+ "edit using the checkboxes, select Edit from the Bulk Actions menu and click "
2652
+ "Apply. You will be able to change the metadata for all selected forums at "
2653
+ "once. To remove a forum from the grouping, just click the x next to its name "
2654
+ "in the Bulk Edit area that appears."
2655
  msgstr ""
2656
 
2657
+ #: bbp-admin/bbp-forums.php:167
2658
  msgid ""
2659
+ "The Bulk Actions menu may also be used to delete multiple forums at once. "
2660
+ "Select Delete from the dropdown after making your selection."
2661
  msgstr ""
2662
 
2663
+ #: bbp-admin/bbp-forums.php:195
2664
+ msgid "Forum Attributes"
2665
  msgstr ""
2666
 
2667
+ #: bbp-admin/bbp-forums.php:394 bbp-admin/bbp-replies.php:524
2668
+ #: bbp-admin/bbp-topics.php:598
2669
+ msgid "Created"
 
2670
  msgstr ""
2671
 
2672
+ #: bbp-admin/bbp-forums.php:429 bbp-admin/bbp-replies.php:633
2673
+ #: bbp-admin/bbp-topics.php:679
2674
+ msgid "%1$s <br /> %2$s"
 
 
2675
  msgstr ""
2676
 
2677
+ #: bbp-admin/bbp-forums.php:438 bbp-admin/bbp-topics.php:689
2678
+ msgid "%s ago"
 
 
2679
  msgstr ""
2680
 
2681
+ #: bbp-admin/bbp-forums.php:505
2682
+ msgid "Forum updated. <a href=\"%s\">View forum</a>"
 
 
 
 
 
2683
  msgstr ""
2684
 
2685
+ #: bbp-admin/bbp-forums.php:508 bbp-admin/bbp-replies.php:822
2686
+ #: bbp-admin/bbp-topics.php:900
2687
+ msgid "Custom field updated."
 
2688
  msgstr ""
2689
 
2690
+ #: bbp-admin/bbp-forums.php:511 bbp-admin/bbp-replies.php:825
2691
+ #: bbp-admin/bbp-topics.php:903
2692
+ msgid "Custom field deleted."
 
 
2693
  msgstr ""
2694
 
2695
+ #: bbp-admin/bbp-forums.php:514
2696
+ msgid "Forum updated."
 
 
 
2697
  msgstr ""
2698
 
2699
+ #: bbp-admin/bbp-forums.php:519
2700
+ msgid "Forum restored to revision from %s"
 
 
 
 
2701
  msgstr ""
2702
 
2703
+ #: bbp-admin/bbp-forums.php:523
2704
+ msgid "Forum created. <a href=\"%s\">View forum</a>"
 
 
2705
  msgstr ""
2706
 
2707
+ #: bbp-admin/bbp-forums.php:526
2708
+ msgid "Forum saved."
2709
  msgstr ""
2710
 
2711
+ #: bbp-admin/bbp-forums.php:529
2712
+ msgid "Forum submitted. <a target=\"_blank\" href=\"%s\">Preview forum</a>"
 
 
2713
  msgstr ""
2714
 
2715
+ #: bbp-admin/bbp-forums.php:532
2716
  msgid ""
2717
+ "Forum scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
2718
+ "\">Preview forum</a>"
2719
  msgstr ""
2720
 
2721
+ #: bbp-admin/bbp-forums.php:534 bbp-admin/bbp-replies.php:848
2722
+ #: bbp-admin/bbp-topics.php:926
2723
+ msgid "M j, Y @ G:i"
2724
  msgstr ""
2725
 
2726
+ #: bbp-admin/bbp-forums.php:539
2727
+ msgid "Forum draft updated. <a target=\"_blank\" href=\"%s\">Preview forum</a>"
2728
  msgstr ""
2729
 
2730
+ #: bbp-admin/bbp-replies.php:127
2731
+ msgid ""
2732
+ "The reply title field and the big reply editing area are fixed in place, but "
2733
+ "you can reposition all the other boxes using drag and drop, and can minimize "
2734
+ "or expand them by clicking the title bar of the box. Use the Screen Options "
2735
+ "tab to unhide more boxes (Reply Attributes, Slug) or to choose a 1- or 2-"
2736
+ "column layout for this screen."
2737
  msgstr ""
2738
 
2739
+ #: bbp-admin/bbp-replies.php:128
2740
+ msgid ""
2741
+ "<strong>Title</strong> - Enter a title for your reply. After you enter a "
2742
+ "title, you will see the permalink below, which you can edit."
2743
  msgstr ""
2744
 
2745
+ #: bbp-admin/bbp-replies.php:129
2746
+ msgid ""
2747
+ "<strong>Post editor</strong> - Enter the text for your reply. There are two "
2748
+ "modes of editing: Visual and HTML. Choose the mode by clicking on the "
2749
+ "appropriate tab. Visual mode gives you a WYSIWYG editor. Click the last icon "
2750
+ "in the row to get a second row of controls. The screen icon just before that "
2751
+ "allows you to expand the edit box to full screen. The HTML mode allows you "
2752
+ "to enter raw HTML along with your forum text. You can insert media files by "
2753
+ "clicking the icons above the post editor and following the directions."
2754
  msgstr ""
2755
 
2756
+ #: bbp-admin/bbp-replies.php:130
2757
+ msgid ""
2758
+ "<strong>Reply Attributes</strong> - Select the attributes that your reply "
2759
+ "should have. The Parent Topic dropdown determines the parent topic that the "
2760
+ "reply belongs to."
2761
  msgstr ""
2762
 
2763
+ #: bbp-admin/bbp-replies.php:131
2764
+ msgid ""
2765
+ "<strong>Publish</strong> - The Publish box will allow you to save your reply "
2766
+ "as Draft or Pending Review. You may Preview your reply before it is "
2767
+ "published as well. The Visibility will determine whether the reply is "
2768
+ "Public, Password protected (requiring a password on the site to view) or "
2769
+ "Private (only the author will have access to it). Replies may be published "
2770
+ "immediately by clicking the dropdown, or at a specific date and time by "
2771
+ "clicking the Edit link."
2772
  msgstr ""
2773
 
2774
+ #: bbp-admin/bbp-replies.php:132
2775
+ msgid ""
2776
+ "<strong>Revisions</strong> - Revisions show past versions of the saved "
2777
+ "reply. Each revision can be compared to the current version, or another "
2778
+ "revision. Revisions can also be restored to the current version."
2779
  msgstr ""
2780
 
2781
+ #: bbp-admin/bbp-replies.php:152
2782
+ msgid "This screen displays the replies created on your site."
2783
  msgstr ""
2784
 
2785
+ #: bbp-admin/bbp-replies.php:156
2786
+ msgid ""
2787
+ "You can hide/display columns based on your needs (Forum, Topic, Author, and "
2788
+ "Created) and decide how many replies to list per screen using the Screen "
2789
+ "Options tab."
2790
  msgstr ""
2791
 
2792
+ #: bbp-admin/bbp-replies.php:157
2793
+ msgid ""
2794
+ "You can filter the list of replies by reply status using the text links in "
2795
+ "the upper left to show All, Published, Pending Review, Draft, or Trashed "
2796
+ "topics. The default view is to show all replies."
2797
  msgstr ""
2798
 
2799
+ #: bbp-admin/bbp-replies.php:158
2800
+ msgid ""
2801
+ "You can view replies in a simple title list or with an excerpt. Choose the "
2802
+ "view you prefer by clicking on the icons at the top of the list on the right."
2803
  msgstr ""
2804
 
2805
+ #: bbp-admin/bbp-replies.php:159
2806
+ msgid ""
2807
+ "You can refine the list to show only replies from a specific month by using "
2808
+ "the dropdown menus above the replies list. Click the Filter button after "
2809
+ "making your selection."
2810
  msgstr ""
2811
 
2812
+ #: bbp-admin/bbp-replies.php:160
2813
+ msgid ""
2814
+ "You can also show only replies from a specific parent forum by using the "
2815
+ "parent forum dropdown above the replies list and selecting the parent forum. "
2816
+ "Click the Filter button after making your selection."
2817
  msgstr ""
2818
 
2819
+ #: bbp-admin/bbp-replies.php:163
2820
+ msgid ""
2821
+ "Hovering over a row in the replies list will display action links that allow "
2822
+ "you to manage your reply. You can perform the following actions:"
2823
  msgstr ""
2824
 
2825
+ #: bbp-admin/bbp-replies.php:166
2826
+ msgid ""
2827
+ "Edit takes you to the editing screen for that reply. You can also reach that "
2828
+ "screen by clicking on the reply title."
2829
  msgstr ""
2830
 
2831
+ #: bbp-admin/bbp-replies.php:167
2832
+ msgid ""
2833
+ "Trash removes your reply from this list and places it in the trash, from "
2834
+ "which you can permanently delete it."
2835
+ msgstr ""
2836
+
2837
+ #: bbp-admin/bbp-replies.php:168
2838
+ msgid "View will take you to your live reply to view the reply."
2839
  msgstr ""
2840
 
2841
+ #: bbp-admin/bbp-replies.php:169
2842
+ msgid ""
2843
+ "Spam will mark the topic as spam, preventing further replies to it and "
2844
+ "removing it from the site&rsquo;s public view."
2845
  msgstr ""
2846
 
2847
+ #: bbp-admin/bbp-replies.php:172
2848
+ msgid ""
2849
+ "You can also edit multiple replies at once. Select the replies you want to "
2850
+ "edit using the checkboxes, select Edit from the Bulk Actions menu and click "
2851
+ "Apply. You will be able to change the metadata for all selected replies at "
2852
+ "once. To remove a reply from the grouping, just click the x next to its name "
2853
+ "in the Bulk Edit area that appears."
2854
  msgstr ""
2855
 
2856
+ #: bbp-admin/bbp-replies.php:173
2857
+ msgid ""
2858
+ "The Bulk Actions menu may also be used to delete multiple replies at once. "
2859
+ "Select Delete from the dropdown after making your selection."
2860
  msgstr ""
2861
 
2862
+ #: bbp-admin/bbp-replies.php:201
2863
+ msgid "Reply Attributes"
2864
  msgstr ""
2865
 
2866
+ #: bbp-admin/bbp-replies.php:270 bbp-admin/bbp-topics.php:296
2867
+ msgid "Author Information"
2868
  msgstr ""
2869
 
2870
+ #: bbp-admin/bbp-replies.php:422
2871
+ msgid "The reply was not found!"
2872
  msgstr ""
2873
 
2874
+ #: bbp-admin/bbp-replies.php:425 bbp-admin/bbp-topics.php:459
2875
+ msgid "You do not have the permission to do that!"
2876
  msgstr ""
2877
 
2878
+ #: bbp-admin/bbp-replies.php:486
2879
+ msgid "There was a problem marking the reply \"%1$s\" as spam."
2880
  msgstr ""
2881
 
2882
+ #: bbp-admin/bbp-replies.php:486
2883
+ msgid "Reply \"%1$s\" successfully marked as spam."
2884
  msgstr ""
2885
 
2886
+ #: bbp-admin/bbp-replies.php:490
2887
+ msgid "There was a problem unmarking the reply \"%1$s\" as spam."
2888
  msgstr ""
2889
 
2890
+ #: bbp-admin/bbp-replies.php:490
2891
+ msgid "Reply \"%1$s\" successfully unmarked as spam."
2892
  msgstr ""
2893
 
2894
+ #: bbp-admin/bbp-replies.php:520
2895
+ msgid "Title"
2896
  msgstr ""
2897
 
2898
+ #: bbp-admin/bbp-replies.php:576 bbp-admin/bbp-replies.php:606
2899
+ #: bbp-admin/bbp-replies.php:679 bbp-admin/bbp-topics.php:648
2900
+ #: bbp-admin/bbp-topics.php:739
2901
+ msgid "View"
2902
  msgstr ""
2903
 
2904
+ #: bbp-admin/bbp-replies.php:588
2905
+ msgid "(No Topic)"
 
 
2906
  msgstr ""
2907
 
2908
+ #: bbp-admin/bbp-replies.php:679 bbp-admin/bbp-topics.php:739
2909
+ msgid "View &#8220;%s&#8221;"
2910
  msgstr ""
2911
 
2912
+ #: bbp-admin/bbp-replies.php:688
2913
+ msgid "Mark the reply as not spam"
2914
  msgstr ""
2915
 
2916
+ #: bbp-admin/bbp-replies.php:688 bbp-admin/bbp-topics.php:766
2917
+ msgid "Not spam"
 
 
 
2918
  msgstr ""
2919
 
2920
+ #: bbp-admin/bbp-replies.php:690
2921
+ msgid "Mark this reply as spam"
2922
  msgstr ""
2923
 
2924
+ #: bbp-admin/bbp-replies.php:704 bbp-admin/bbp-topics.php:782
2925
+ msgid "Delete Permanently"
2926
  msgstr ""
2927
 
2928
+ #: bbp-admin/bbp-replies.php:742 bbp-admin/bbp-topics.php:820
2929
+ msgid "In all forums"
2930
  msgstr ""
2931
 
2932
+ #: bbp-admin/bbp-replies.php:819
2933
+ msgid "Reply updated. <a href=\"%s\">View topic</a>"
2934
  msgstr ""
2935
 
2936
+ #: bbp-admin/bbp-replies.php:828
2937
+ msgid "Reply updated."
2938
  msgstr ""
2939
 
2940
+ #: bbp-admin/bbp-replies.php:833
2941
+ msgid "Reply restored to revision from %s"
2942
  msgstr ""
2943
 
2944
+ #: bbp-admin/bbp-replies.php:837
2945
+ msgid "Reply created. <a href=\"%s\">View topic</a>"
2946
  msgstr ""
2947
 
2948
+ #: bbp-admin/bbp-replies.php:840
2949
+ msgid "Reply saved."
2950
  msgstr ""
2951
 
2952
+ #: bbp-admin/bbp-replies.php:843
2953
+ msgid "Reply submitted. <a target=\"_blank\" href=\"%s\">Preview topic</a>"
2954
  msgstr ""
2955
 
2956
+ #: bbp-admin/bbp-replies.php:846
2957
+ msgid ""
2958
+ "Reply scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
2959
+ "\">Preview topic</a>"
2960
  msgstr ""
2961
 
2962
+ #: bbp-admin/bbp-replies.php:853
2963
+ msgid "Reply draft updated. <a target=\"_blank\" href=\"%s\">Preview topic</a>"
2964
  msgstr ""
2965
 
2966
+ #: bbp-admin/bbp-functions.php:152
2967
+ msgid "Count topics in each forum"
 
2968
  msgstr ""
2969
 
2970
+ #: bbp-admin/bbp-functions.php:153
2971
+ msgid "Count replies in each forum"
2972
  msgstr ""
2973
 
2974
+ #: bbp-admin/bbp-functions.php:154
2975
+ msgid "Count replies in each topic"
 
 
2976
  msgstr ""
2977
 
2978
+ #: bbp-admin/bbp-functions.php:155
2979
+ msgid "Count voices in each topic"
 
 
2980
  msgstr ""
2981
 
2982
+ #: bbp-admin/bbp-functions.php:156
2983
+ msgid "Count spammed & trashed replies in each topic"
2984
  msgstr ""
2985
 
2986
+ #: bbp-admin/bbp-functions.php:157
2987
+ msgid "Count replies for each user"
2988
  msgstr ""
2989
 
2990
+ #: bbp-admin/bbp-functions.php:158
2991
+ msgid "Remove trashed topics from user favorites"
2992
  msgstr ""
2993
 
2994
+ #: bbp-admin/bbp-functions.php:159
2995
+ msgid "Remove trashed topics from user subscriptions"
2996
  msgstr ""
2997
 
2998
+ #: bbp-admin/bbp-functions.php:163
2999
+ msgid "Recalculate last activity in each topic and forum"
 
 
 
3000
  msgstr ""
3001
 
3002
+ #: bbp-admin/bbp-functions.php:183
3003
+ msgid "Counting the number of replies in each topic&hellip; %s"
 
 
 
3004
  msgstr ""
3005
 
3006
+ #: bbp-admin/bbp-functions.php:184 bbp-admin/bbp-functions.php:212
3007
+ #: bbp-admin/bbp-functions.php:239 bbp-admin/bbp-functions.php:269
3008
+ #: bbp-admin/bbp-functions.php:303 bbp-admin/bbp-functions.php:335
3009
+ #: bbp-admin/bbp-functions.php:381 bbp-admin/bbp-functions.php:460
3010
+ #: bbp-admin/bbp-functions.php:542 bbp-admin/bbp-functions.php:674
3011
+ #: bbp-admin/bbp-functions.php:733 bbp-admin/bbp-functions.php:790
3012
+ msgid "Failed!"
3013
  msgstr ""
3014
 
3015
+ #: bbp-admin/bbp-functions.php:194 bbp-admin/bbp-functions.php:222
3016
+ #: bbp-admin/bbp-functions.php:249 bbp-admin/bbp-functions.php:283
3017
+ #: bbp-admin/bbp-functions.php:317 bbp-admin/bbp-functions.php:363
3018
+ #: bbp-admin/bbp-functions.php:715 bbp-admin/bbp-functions.php:773
3019
+ #: bbp-admin/bbp-functions.php:870
3020
+ msgid "Complete!"
3021
  msgstr ""
3022
 
3023
+ #: bbp-admin/bbp-functions.php:211
3024
+ msgid "Counting the number of voices in each topic&hellip; %s"
 
 
 
3025
  msgstr ""
3026
 
3027
+ #: bbp-admin/bbp-functions.php:238
3028
  msgid ""
3029
+ "Counting the number of spammed and trashed replies in each topic&hellip; %s"
 
 
 
3030
  msgstr ""
3031
 
3032
+ #: bbp-admin/bbp-functions.php:268
3033
+ msgid "Counting the number of topics in each forum&hellip; %s"
 
 
 
3034
  msgstr ""
3035
 
3036
+ #: bbp-admin/bbp-functions.php:302
3037
+ msgid "Counting the number of replies in each forum&hellip; %s"
 
 
3038
  msgstr ""
3039
 
3040
+ #: bbp-admin/bbp-functions.php:334
3041
+ msgid "Counting the number of topics to which each user has replied&hellip; %s"
3042
  msgstr ""
3043
 
3044
+ #: bbp-admin/bbp-functions.php:380
3045
+ msgid "Counting the number of topic tags in each topic&hellip; %s"
3046
  msgstr ""
3047
 
3048
+ #: bbp-admin/bbp-functions.php:459
3049
+ msgid "Counting the number of topics in each topic tag&hellip; %s"
3050
  msgstr ""
3051
 
3052
+ #: bbp-admin/bbp-functions.php:541
3053
+ msgid "Deleting topic tags with no topics&hellip; %s"
3054
  msgstr ""
3055
 
3056
+ #: bbp-admin/bbp-functions.php:673
3057
+ msgid "Removing trashed topics from user favorites&hellip; %s"
3058
  msgstr ""
3059
 
3060
+ #: bbp-admin/bbp-functions.php:699 bbp-admin/bbp-functions.php:757
3061
+ msgid "Nothing to remove!"
3062
  msgstr ""
3063
 
3064
+ #: bbp-admin/bbp-functions.php:732
3065
+ msgid "Removing trashed topics from user subscriptions&hellip; %s"
3066
  msgstr ""
3067
 
3068
+ #: bbp-admin/bbp-functions.php:789
3069
+ msgid "Recomputing latest post in every topic and forum&hellip; %s"
3070
  msgstr ""
3071
 
3072
+ #: bbp-admin/bbp-tools.php:53
3073
+ msgid "bbPress Recount"
3074
  msgstr ""
3075
 
3076
+ #: bbp-admin/bbp-tools.php:55
3077
  msgid ""
3078
+ "bbPress keeps a running count of things like replies to each topic and "
3079
+ "topics in each forum. In rare occasions these counts can fall out of sync. "
3080
+ "Using this form you can have bbPress manually recount these items."
 
 
3081
  msgstr ""
3082
 
3083
+ #: bbp-admin/bbp-tools.php:56
3084
+ msgid "You can also use this form to clean out stale items like empty tags."
 
 
3085
  msgstr ""
3086
 
3087
+ #: bbp-admin/bbp-tools.php:62
3088
+ msgid "Things to recount:"
 
 
 
 
 
 
 
3089
  msgstr ""
3090
 
3091
+ #: bbp-admin/bbp-tools.php:76
3092
+ msgid "There are no recount tools available."
 
 
3093
  msgstr ""
3094
 
3095
+ #: bbp-admin/bbp-tools.php:87
3096
+ msgid "Recount Items"
3097
+ msgstr ""
3098
+
3099
+ #: bbp-admin/bbp-topics.php:127
3100
  msgid ""
3101
+ "The topic title field and the big topic editing area are fixed in place, but "
3102
+ "you can reposition all the other boxes using drag and drop, and can minimize "
3103
+ "or expand them by clicking the title bar of the box. Use the Screen Options "
3104
+ "tab to unhide more boxes (Topic Tags, Topic Attributes, or Slug) or to "
3105
+ "choose a 1- or 2-column layout for this screen."
3106
  msgstr ""
3107
 
3108
+ #: bbp-admin/bbp-topics.php:128
3109
  msgid ""
3110
+ "<strong>Title</strong> - Enter a title for your topic. After you enter a "
3111
+ "title, you will see the permalink below, which you can edit."
3112
  msgstr ""
3113
 
3114
+ #: bbp-admin/bbp-topics.php:129
3115
  msgid ""
3116
+ "<strong>Post editor</strong> - Enter the text for your topic. There are two "
3117
+ "modes of editing: Visual and HTML. Choose the mode by clicking on the "
3118
+ "appropriate tab. Visual mode gives you a WYSIWYG editor. Click the last icon "
3119
+ "in the row to get a second row of controls. The screen icon just before that "
3120
+ "allows you to expand the edit box to full screen. The HTML mode allows you "
3121
+ "to enter raw HTML along with your forum text. You can insert media files by "
3122
+ "clicking the icons above the post editor and following the directions."
3123
  msgstr ""
3124
 
3125
+ #: bbp-admin/bbp-topics.php:130
3126
  msgid ""
3127
+ "<strong>Topic Attributes</strong> - Select the attributes that your topic "
3128
+ "should have. The Forum dropdown determines the parent forum that the topic "
3129
+ "belongs to. Select the forum or category from the dropdown, or leave the "
3130
+ "default (No Forum) to post the topic without an assigned forum."
3131
  msgstr ""
3132
 
3133
+ #: bbp-admin/bbp-topics.php:131
3134
  msgid ""
3135
+ "<strong>Publish</strong> - The Publish box will allow you to save your topic "
3136
+ "as Draft or Pending Review. You may Preview your topic before it is "
3137
+ "published as well. The Visibility will determine whether the topic is "
3138
+ "Public, Password protected (requiring a password on the site to view) or "
3139
+ "Private (only the author will have access to it). Topics may be published "
3140
+ "immediately by clicking the dropdown, or at a specific date and time by "
3141
+ "clicking the Edit link."
3142
  msgstr ""
3143
 
3144
+ #: bbp-admin/bbp-topics.php:132
3145
  msgid ""
3146
+ "<strong>Topic Tags</strong> - You can assign keywords to your topics using "
3147
+ "Topic Tags. Unlike categories, tags have no hierarchy, meaning there is no "
3148
+ "relationship from one tag to another. Topics can be added and modified "
3149
+ "further from the Topic Tags screen."
3150
  msgstr ""
3151
 
3152
+ #: bbp-admin/bbp-topics.php:133
3153
  msgid ""
3154
  "<strong>Revisions</strong> - Revisions show past versions of the saved "
3155
+ "topic. Each revision can be compared to the current version, or another "
3156
  "revision. Revisions can also be restored to the current version."
3157
  msgstr ""
3158
 
3159
+ #: bbp-admin/bbp-topics.php:153
3160
+ msgid "This screen displays the topics created on your site."
3161
  msgstr ""
3162
 
3163
+ #: bbp-admin/bbp-topics.php:157
3164
  msgid ""
3165
+ "You can hide/display columns based on your needs and decide how many topics "
3166
  "to list per screen using the Screen Options tab."
3167
  msgstr ""
3168
 
3169
+ #: bbp-admin/bbp-topics.php:158
3170
  msgid ""
3171
+ "You can filter the list of topics by topics status using the text links in "
3172
+ "the upper left to show All, Published, Pending Review, Draft, or Trashed "
3173
+ "topics. The default view is to show all topics."
3174
  msgstr ""
3175
 
3176
+ #: bbp-admin/bbp-topics.php:159
3177
  msgid ""
3178
+ "You can view topics in a simple title list or with an excerpt. Choose the "
3179
+ "view you prefer by clicking on the icons at the top of the list on the right."
 
 
3180
  msgstr ""
3181
 
3182
+ #: bbp-admin/bbp-topics.php:160
3183
  msgid ""
3184
+ "You can refine the list to show only topics from a specific month by using "
3185
+ "the dropdown menus above the topics list. Click the Filter button after "
3186
+ "making your selection."
3187
  msgstr ""
3188
 
3189
+ #: bbp-admin/bbp-topics.php:161
3190
  msgid ""
3191
+ "You can also show only topics from a specific parent forum by using the "
3192
+ "parent forum dropdown above the topics list and selecting the parent forum. "
3193
+ "Click the Filter button after making your selection."
3194
  msgstr ""
3195
 
3196
+ #: bbp-admin/bbp-topics.php:162
3197
  msgid ""
3198
+ "You can refine the list by clicking on the topic creator in the topics list."
 
 
 
 
 
3199
  msgstr ""
3200
 
3201
+ #: bbp-admin/bbp-topics.php:165
3202
  msgid ""
3203
+ "Hovering over a row in the topics list will display action links that allow "
3204
+ "you to manage your topic. You can perform the following actions:"
 
 
 
3205
  msgstr ""
3206
 
3207
+ #: bbp-admin/bbp-topics.php:168
3208
  msgid ""
3209
+ "Edit takes you to the editing screen for that topic. You can also reach that "
3210
+ "screen by clicking on the topic title."
 
 
 
 
 
 
 
 
 
 
 
 
3211
  msgstr ""
3212
 
3213
+ #: bbp-admin/bbp-topics.php:169
3214
+ msgid ""
3215
+ "Trash removes your topic from this list and places it in the trash, from "
3216
+ "which you can permanently delete it."
3217
  msgstr ""
3218
 
3219
+ #: bbp-admin/bbp-topics.php:170
3220
+ msgid "View will take you to your live topic to view the topic."
3221
  msgstr ""
3222
 
3223
+ #: bbp-admin/bbp-topics.php:171
3224
+ msgid ""
3225
+ "Close will close your topic, disabling new replies within it. It will remain "
3226
+ "viewable to users, but replies will not be allowed."
3227
  msgstr ""
3228
 
3229
+ #: bbp-admin/bbp-topics.php:172
3230
+ msgid ""
3231
+ "Stick (to front) will pin the topic to the front page of the forum that "
3232
+ "it&rsquo;s in. New topics will begin beneath the list of \"stuck\" topics, "
3233
+ "which will always sit at the top of the list."
3234
  msgstr ""
3235
 
3236
+ #: bbp-admin/bbp-topics.php:173
3237
  msgid ""
3238
+ "Spam will mark the topic as spam, closing the post to new replies and "
3239
+ "removing it from the public view."
3240
  msgstr ""
3241
 
3242
+ #: bbp-admin/bbp-topics.php:176
3243
+ msgid ""
3244
+ "You can also edit multiple topics at once. Select the topics you want to "
3245
+ "edit using the checkboxes, select Edit from the Bulk Actions menu and click "
3246
+ "Apply. You will be able to change the metadata for all selected topics at "
3247
+ "once. To remove a topic from the grouping, just click the x next to its name "
3248
+ "in the Bulk Edit area that appears."
3249
  msgstr ""
3250
 
3251
+ #: bbp-admin/bbp-topics.php:177
3252
+ msgid ""
3253
+ "The Bulk Actions menu may also be used to delete multiple topics at once. "
3254
+ "Select Delete from the dropdown after making your selection."
3255
  msgstr ""
3256
 
3257
+ #: bbp-admin/bbp-topics.php:197
3258
+ msgid ""
3259
+ "You can change the display of this screen using the Screen Options tab to "
3260
+ "set how many items are displayed per screen (20 by default) and to display/"
3261
+ "hide columns in the table (Description, Slug, and Topics)."
3262
  msgstr ""
3263
 
3264
+ #: bbp-admin/bbp-topics.php:198
3265
+ msgid ""
3266
+ "You can assign keywords to your topics using Topic Tags. Unlike categories, "
3267
+ "tags have no hierarchy, meaning there is no relationship from one tag to "
3268
+ "another."
3269
  msgstr ""
3270
 
3271
+ #: bbp-admin/bbp-topics.php:199
3272
+ msgid ""
3273
+ "Normally, tags are ad-hoc keywords that identify important information in "
3274
+ "your topic (names, subjects, etc) that may or may not recur in other topics. "
3275
+ "If you think of your forum like a book, the tags are like the terms in the "
3276
+ "index."
3277
  msgstr ""
3278
 
3279
+ #: bbp-admin/bbp-topics.php:200
3280
+ msgid ""
3281
+ "When editing a topic tag on this screen, you will fill in the following "
3282
+ "fields:"
3283
  msgstr ""
3284
 
3285
+ #: bbp-admin/bbp-topics.php:203
3286
+ msgid "<strong>Name</strong> - The name is how it appears on your site."
3287
  msgstr ""
3288
 
3289
+ #: bbp-admin/bbp-topics.php:204
3290
+ msgid ""
3291
+ "<strong>Slug</strong> - The Slug is the URL-friendly version of the name. It "
3292
+ "is usually all lowercase and contains only letters, numbers, and hyphens."
3293
  msgstr ""
3294
 
3295
+ #: bbp-admin/bbp-topics.php:205
3296
+ msgid ""
3297
+ "<strong>Description</strong> - The description is not prominent by default; "
3298
+ "however, some forum themes may display it."
3299
  msgstr ""
3300
 
3301
+ #: bbp-admin/bbp-topics.php:229
3302
+ msgid "Topic Attributes"
3303
  msgstr ""
3304
 
3305
+ #: bbp-admin/bbp-topics.php:456
3306
+ msgid "The topic was not found!"
3307
  msgstr ""
3308
 
3309
+ #: bbp-admin/bbp-topics.php:539
3310
+ msgid "There was a problem opening the topic \"%1$s\"."
3311
  msgstr ""
3312
 
3313
+ #: bbp-admin/bbp-topics.php:539
3314
+ msgid "Topic \"%1$s\" successfully opened."
3315
  msgstr ""
3316
 
3317
+ #: bbp-admin/bbp-topics.php:543
3318
+ msgid "There was a problem closing the topic \"%1$s\"."
3319
  msgstr ""
3320
 
3321
+ #: bbp-admin/bbp-topics.php:543
3322
+ msgid "Topic \"%1$s\" successfully closed."
3323
  msgstr ""
3324
 
3325
+ #: bbp-admin/bbp-topics.php:547
3326
+ msgid "There was a problem sticking the topic \"%1$s\" to front."
3327
  msgstr ""
3328
 
3329
+ #: bbp-admin/bbp-topics.php:547
3330
+ msgid "Topic \"%1$s\" successfully sticked to front."
3331
  msgstr ""
3332
 
3333
+ #: bbp-admin/bbp-topics.php:551
3334
+ msgid "There was a problem sticking the topic \"%1$s\"."
3335
  msgstr ""
3336
 
3337
+ #: bbp-admin/bbp-topics.php:551
3338
+ msgid "Topic \"%1$s\" successfully sticked."
3339
  msgstr ""
3340
 
3341
+ #: bbp-admin/bbp-topics.php:555
3342
+ msgid "There was a problem unsticking the topic \"%1$s\"."
3343
  msgstr ""
3344
 
3345
+ #: bbp-admin/bbp-topics.php:555
3346
+ msgid "Topic \"%1$s\" successfully unsticked."
3347
  msgstr ""
3348
 
3349
+ #: bbp-admin/bbp-topics.php:559
3350
+ msgid "There was a problem marking the topic \"%1$s\" as spam."
3351
  msgstr ""
3352
 
3353
+ #: bbp-admin/bbp-topics.php:559
3354
+ msgid "Topic \"%1$s\" successfully marked as spam."
3355
  msgstr ""
3356
 
3357
+ #: bbp-admin/bbp-topics.php:563
3358
+ msgid "There was a problem unmarking the topic \"%1$s\" as spam."
3359
  msgstr ""
3360
 
3361
+ #: bbp-admin/bbp-topics.php:563
3362
+ msgid "Topic \"%1$s\" successfully unmarked as spam."
3363
  msgstr ""
3364
 
3365
+ #: bbp-admin/bbp-topics.php:749
3366
+ msgid "Close this topic"
3367
  msgstr ""
3368
 
3369
+ #: bbp-admin/bbp-topics.php:751
3370
+ msgid "Open this topic"
3371
  msgstr ""
3372
 
3373
+ #: bbp-admin/bbp-topics.php:757
3374
+ msgid "Unstick this topic"
3375
  msgstr ""
3376
 
3377
+ #: bbp-admin/bbp-topics.php:760
3378
+ msgid "Stick this topic to its forum"
 
3379
  msgstr ""
3380
 
3381
+ #: bbp-admin/bbp-topics.php:760
3382
+ msgid "Stick this topic to front"
 
 
 
 
 
 
 
 
3383
  msgstr ""
3384
 
3385
+ #: bbp-admin/bbp-topics.php:766
3386
+ msgid "Mark the topic as not spam"
 
 
 
 
 
 
 
 
3387
  msgstr ""
3388
 
3389
+ #: bbp-admin/bbp-topics.php:768
3390
+ msgid "Mark this topic as spam"
 
 
 
 
 
 
 
 
3391
  msgstr ""
3392
 
3393
+ #: bbp-admin/bbp-topics.php:897
3394
+ msgid "Topic updated. <a href=\"%s\">View topic</a>"
 
 
 
 
 
 
 
3395
  msgstr ""
3396
 
3397
+ #: bbp-admin/bbp-topics.php:906
3398
+ msgid "Topic updated."
3399
  msgstr ""
3400
 
3401
+ #: bbp-admin/bbp-topics.php:911
3402
+ msgid "Topic restored to revision from %s"
3403
  msgstr ""
3404
 
3405
+ #: bbp-admin/bbp-topics.php:915
3406
+ msgid "Topic created. <a href=\"%s\">View topic</a>"
3407
  msgstr ""
3408
 
3409
+ #: bbp-admin/bbp-topics.php:918
3410
+ msgid "Topic saved."
3411
  msgstr ""
3412
 
3413
+ #: bbp-admin/bbp-topics.php:921
3414
+ msgid "Topic submitted. <a target=\"_blank\" href=\"%s\">Preview topic</a>"
3415
  msgstr ""
3416
 
3417
+ #: bbp-admin/bbp-topics.php:924
3418
+ msgid ""
3419
+ "Topic scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
3420
+ "\">Preview topic</a>"
3421
  msgstr ""
3422
 
3423
+ #: bbp-admin/bbp-topics.php:931
3424
+ msgid "Topic draft updated. <a target=\"_blank\" href=\"%s\">Preview topic</a>"
3425
  msgstr ""
3426
 
3427
  #. Plugin Name of the plugin/theme
3428
  msgid "bbPress"
3429
  msgstr ""
3430
 
3431
+ #. #-#-#-#-# plugin.pot (bbPress 2.0-beta-1) #-#-#-#-#
3432
  #. Plugin URI of the plugin/theme
3433
+ #. #-#-#-#-# plugin.pot (bbPress 2.0-beta-1) #-#-#-#-#
3434
  #. Author URI of the plugin/theme
3435
  msgid "http://bbpress.org"
3436
  msgstr ""
bbp-themes/bbp-twentyten/archive-forum.php CHANGED
@@ -20,7 +20,7 @@
20
  <h1 class="entry-title"><?php bbp_forum_archive_title(); ?></h1>
21
  <div class="entry-content">
22
 
23
- <?php bbp_get_template_part( 'bbpress/content', 'archive-forums' ); ?>
24
 
25
  </div>
26
  </div><!-- #forum-front -->
20
  <h1 class="entry-title"><?php bbp_forum_archive_title(); ?></h1>
21
  <div class="entry-content">
22
 
23
+ <?php bbp_get_template_part( 'bbpress/content', 'archive-forum' ); ?>
24
 
25
  </div>
26
  </div><!-- #forum-front -->
bbp-themes/bbp-twentyten/page-front-forums.php CHANGED
@@ -24,7 +24,7 @@
24
 
25
  <?php the_content(); ?>
26
 
27
- <?php bbp_get_template_part( 'bbpress/content', 'archive-forums' ); ?>
28
 
29
  </div>
30
  </div><!-- #forum-front -->
24
 
25
  <?php the_content(); ?>
26
 
27
+ <?php bbp_get_template_part( 'bbpress/content', 'archive-forum' ); ?>
28
 
29
  </div>
30
  </div><!-- #forum-front -->
bbpress.php CHANGED
@@ -15,7 +15,7 @@
15
  * Description: bbPress is forum software with a twist from the creators of WordPress.
16
  * Author: The bbPress Community
17
  * Author URI: http://bbpress.org
18
- * Version: 2.0-beta-3
19
  */
20
 
21
  // Exit if accessed directly
@@ -30,7 +30,7 @@ if ( !defined( 'ABSPATH' ) ) exit;
30
  * Note: Checking for defined( 'BBP_VERSION' ) in your code does NOT
31
  * guarantee bbPress is initialized and listening.
32
  */
33
- define( 'BBP_VERSION', '2.0-beta-3' );
34
 
35
  if ( !class_exists( 'bbPress' ) ) :
36
  /**
15
  * Description: bbPress is forum software with a twist from the creators of WordPress.
16
  * Author: The bbPress Community
17
  * Author URI: http://bbpress.org
18
+ * Version: 2.0-beta-3b
19
  */
20
 
21
  // Exit if accessed directly
30
  * Note: Checking for defined( 'BBP_VERSION' ) in your code does NOT
31
  * guarantee bbPress is initialized and listening.
32
  */
33
+ define( 'BBP_VERSION', '2.0-beta-3b' );
34
 
35
  if ( !class_exists( 'bbPress' ) ) :
36
  /**
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: matt, johnjamesjacoby, mdawaffe
3
  Tags: bbpress, forums, discussion, post type, theme
4
  Requires at least: 3.1
5
  Tested up to: 3.2
6
- Stable tag: 2.0-beta-3
7
 
8
  bbPress is forum software with a twist from the creators of WordPress
9
 
@@ -24,6 +24,10 @@ We're keeping things as small and light as possible while still allowing for gre
24
 
25
  == Changelog ==
26
 
 
 
 
 
27
  = 2.0-beta-3 =
28
  * Akismet integration
29
  * Fixes replies within wp-admin
3
  Tags: bbpress, forums, discussion, post type, theme
4
  Requires at least: 3.1
5
  Tested up to: 3.2
6
+ Stable tag: 2.0-beta-3b
7
 
8
  bbPress is forum software with a twist from the creators of WordPress
9
 
24
 
25
  == Changelog ==
26
 
27
+ = 2.0-beta-3b =
28
+ * Fix regression in forum index theme compatibility template
29
+ * Audit usage of get strings for moderator level and above users
30
+
31
  = 2.0-beta-3 =
32
  * Akismet integration
33
  * Fixes replies within wp-admin