Version Description
Download this release
Release Info
Developer | johnjamesjacoby |
Plugin | bbPress |
Version | 2.1-rc1 |
Comparing to | |
See all releases |
Code changes from version 2.1-beta-1 to 2.1-rc1
- bbp-admin/bbp-admin.php +78 -193
- bbp-admin/bbp-converter.php +42 -55
- bbp-admin/bbp-settings.php +365 -8
- bbp-admin/converters/bbPress1.php +62 -30
- bbp-admin/images/menu-2x.png +0 -0
- bbp-admin/images/menu.png +0 -0
- bbp-includes/bbp-common-template.php +4 -3
- bbp-includes/bbp-core-cache.php +120 -0
- bbp-includes/bbp-reply-functions.php +4 -5
- bbp-languages/bbpress.pot +2604 -1829
- bbpress.php +5 -4
- readme.txt +7 -1
- screenshot-1.png +0 -0
- screenshot-2.png +0 -0
- screenshot-3.png +0 -0
- screenshot-4.png +0 -0
- screenshot-5.png +0 -0
- screenshot-6.png +0 -0
- screenshot-7.png +0 -0
bbp-admin/bbp-admin.php
CHANGED
@@ -266,192 +266,37 @@ class BBP_Admin {
|
|
266 |
* @uses add_settings_section() To add our own settings section
|
267 |
* @uses add_settings_field() To add various settings fields
|
268 |
* @uses register_setting() To register various settings
|
|
|
269 |
*/
|
270 |
public static function register_admin_settings() {
|
271 |
|
272 |
-
|
|
|
|
|
273 |
|
274 |
-
|
275 |
-
|
276 |
|
277 |
-
//
|
278 |
-
|
|
|
279 |
|
280 |
-
//
|
281 |
-
|
282 |
-
register_setting ( 'bbpress', '_bbp_edit_lock', 'intval' );
|
283 |
|
284 |
-
|
285 |
-
|
286 |
-
register_setting ( 'bbpress', '_bbp_throttle_time', 'intval' );
|
287 |
|
288 |
-
|
289 |
-
|
290 |
-
register_setting ( 'bbpress', '_bbp_allow_revisions', 'intval' );
|
291 |
|
292 |
-
|
293 |
-
|
294 |
-
register_setting ( 'bbpress', '_bbp_enable_favorites', 'intval' );
|
295 |
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
// Allow anonymous posting setting
|
301 |
-
add_settings_field( '_bbp_allow_anonymous', __( 'Allow Anonymous Posting', 'bbpress' ), 'bbp_admin_setting_callback_anonymous', 'bbpress', $section );
|
302 |
-
register_setting ( 'bbpress', '_bbp_allow_anonymous', 'intval' );
|
303 |
-
|
304 |
-
// Allow global access setting
|
305 |
-
if ( is_multisite() ) {
|
306 |
-
add_settings_field( '_bbp_allow_global_access', __( 'Allow Global Access', 'bbpress' ), 'bbp_admin_setting_callback_global_access', 'bbpress', $section );
|
307 |
-
register_setting ( 'bbpress', '_bbp_allow_global_access', 'intval' );
|
308 |
}
|
309 |
-
|
310 |
-
// Allow fancy editor setting
|
311 |
-
add_settings_field( '_bbp_use_wp_editor', __( 'Fancy Editor', 'bbpress' ), 'bbp_admin_setting_callback_use_wp_editor', 'bbpress', $section );
|
312 |
-
register_setting ( 'bbpress', '_bbp_use_wp_editor', 'intval' );
|
313 |
-
|
314 |
-
// Allow auto embedding setting
|
315 |
-
add_settings_field( '_bbp_use_autoembed', __( 'Auto-embed Links', 'bbpress' ), 'bbp_admin_setting_callback_use_autoembed', 'bbpress', $section );
|
316 |
-
register_setting ( 'bbpress', '_bbp_use_autoembed', 'intval' );
|
317 |
-
}
|
318 |
-
|
319 |
-
/** Theme Packages ****************************************************/
|
320 |
-
|
321 |
-
$section = 'bbp_settings_theme_compat';
|
322 |
-
if ( bbp_current_user_can_see( $section ) ) {
|
323 |
-
|
324 |
-
// Add the per page section
|
325 |
-
add_settings_section( $section, __( 'Theme Packages', 'bbpress' ), 'bbp_admin_setting_callback_subtheme_section', 'bbpress' );
|
326 |
-
|
327 |
-
// Replies per page setting
|
328 |
-
add_settings_field( '_bbp_theme_package_id', __( 'Current Package', 'bbpress' ), 'bbp_admin_setting_callback_subtheme_id', 'bbpress', $section );
|
329 |
-
register_setting ( 'bbpress', '_bbp_theme_package_id', '' );
|
330 |
-
}
|
331 |
-
|
332 |
-
/** Per Page Section **************************************************/
|
333 |
-
|
334 |
-
$section = 'bbp_settings_per_page';
|
335 |
-
if ( bbp_current_user_can_see( $section ) ) {
|
336 |
-
|
337 |
-
// Add the per page section
|
338 |
-
add_settings_section( $section, __( 'Per Page', 'bbpress' ), 'bbp_admin_setting_callback_per_page_section', 'bbpress' );
|
339 |
-
|
340 |
-
// Topics per page setting
|
341 |
-
add_settings_field( '_bbp_topics_per_page', __( 'Topics', 'bbpress' ), 'bbp_admin_setting_callback_topics_per_page', 'bbpress', $section );
|
342 |
-
register_setting ( 'bbpress', '_bbp_topics_per_page', 'intval' );
|
343 |
-
|
344 |
-
// Replies per page setting
|
345 |
-
add_settings_field( '_bbp_replies_per_page', __( 'Replies', 'bbpress' ), 'bbp_admin_setting_callback_replies_per_page', 'bbpress', $section );
|
346 |
-
register_setting ( 'bbpress', '_bbp_replies_per_page', 'intval' );
|
347 |
-
}
|
348 |
-
|
349 |
-
/** Per RSS Page Section **********************************************/
|
350 |
-
|
351 |
-
$section = 'bbp_settings_per_page_rss';
|
352 |
-
if ( bbp_current_user_can_see( $section ) ) {
|
353 |
-
|
354 |
-
// Add the per page section
|
355 |
-
add_settings_section( $section, __( 'Per RSS Page', 'bbpress' ), 'bbp_admin_setting_callback_per_rss_page_section', 'bbpress' );
|
356 |
-
|
357 |
-
// Topics per page setting
|
358 |
-
add_settings_field( '_bbp_topics_per_page', __( 'Topics', 'bbpress' ), 'bbp_admin_setting_callback_topics_per_rss_page', 'bbpress', $section );
|
359 |
-
register_setting ( 'bbpress', '_bbp_topics_per_rss_page', 'intval' );
|
360 |
-
|
361 |
-
// Replies per page setting
|
362 |
-
add_settings_field( '_bbp_replies_per_page', __( 'Replies', 'bbpress' ), 'bbp_admin_setting_callback_replies_per_rss_page', 'bbpress', $section );
|
363 |
-
register_setting ( 'bbpress', '_bbp_replies_per_rss_page', 'intval' );
|
364 |
-
}
|
365 |
-
|
366 |
-
/** Front Slugs *******************************************************/
|
367 |
-
|
368 |
-
$section = 'bbp_settings_root_slugs';
|
369 |
-
if ( bbp_current_user_can_see( $section ) ) {
|
370 |
-
|
371 |
-
// Add the per page section
|
372 |
-
add_settings_section( $section, __( 'Archive Slugs', 'bbpress' ), 'bbp_admin_setting_callback_root_slug_section', 'bbpress' );
|
373 |
-
|
374 |
-
/**
|
375 |
-
* Here we sanitize with 'esc_sql', rather than 'sanitize_title' to
|
376 |
-
* allow for slashes or any other URI friendly format.
|
377 |
-
*/
|
378 |
-
|
379 |
-
// Root slug setting
|
380 |
-
add_settings_field ( '_bbp_root_slug', __( 'Forums base', 'bbpress' ), 'bbp_admin_setting_callback_root_slug', 'bbpress', $section );
|
381 |
-
register_setting ( 'bbpress', '_bbp_root_slug', 'esc_sql' );
|
382 |
-
|
383 |
-
// Topic archive setting
|
384 |
-
add_settings_field ( '_bbp_topic_archive_slug', __( 'Topics base', 'bbpress' ), 'bbp_admin_setting_callback_topic_archive_slug', 'bbpress', $section );
|
385 |
-
register_setting ( 'bbpress', '_bbp_topic_archive_slug', 'esc_sql' );
|
386 |
-
}
|
387 |
-
|
388 |
-
/** Single slugs ******************************************************/
|
389 |
-
|
390 |
-
$section = 'bbp_settings_single_slugs';
|
391 |
-
if ( bbp_current_user_can_see( $section ) ) {
|
392 |
-
|
393 |
-
// Add the per page section
|
394 |
-
add_settings_section( $section, __( 'Single Slugs', 'bbpress' ), 'bbp_admin_setting_callback_single_slug_section', 'bbpress' );
|
395 |
-
|
396 |
-
// Include root setting
|
397 |
-
add_settings_field( '_bbp_include_root', __( 'Forum Prefix', 'bbpress' ), 'bbp_admin_setting_callback_include_root', 'bbpress', $section );
|
398 |
-
register_setting ( 'bbpress', '_bbp_include_root', 'intval' );
|
399 |
-
|
400 |
-
// Forum slug setting
|
401 |
-
add_settings_field( '_bbp_forum_slug', __( 'Forum slug', 'bbpress' ), 'bbp_admin_setting_callback_forum_slug', 'bbpress', $section );
|
402 |
-
register_setting ( 'bbpress', '_bbp_forum_slug', 'sanitize_title' );
|
403 |
-
|
404 |
-
// Topic slug setting
|
405 |
-
add_settings_field( '_bbp_topic_slug', __( 'Topic slug', 'bbpress' ), 'bbp_admin_setting_callback_topic_slug', 'bbpress', $section );
|
406 |
-
register_setting ( 'bbpress', '_bbp_topic_slug', 'sanitize_title' );
|
407 |
-
|
408 |
-
// Topic tag slug setting
|
409 |
-
add_settings_field( '_bbp_topic_tag_slug', __( 'Topic tag slug', 'bbpress' ), 'bbp_admin_setting_callback_topic_tag_slug', 'bbpress', $section );
|
410 |
-
register_setting ( 'bbpress', '_bbp_topic_tag_slug', 'sanitize_title' );
|
411 |
-
|
412 |
-
// Reply slug setting
|
413 |
-
add_settings_field( '_bbp_reply_slug', __( 'Reply slug', 'bbpress' ), 'bbp_admin_setting_callback_reply_slug', 'bbpress', $section );
|
414 |
-
register_setting ( 'bbpress', '_bbp_reply_slug', 'sanitize_title' );
|
415 |
-
|
416 |
-
/** Other slugs ***************************************************/
|
417 |
-
|
418 |
-
// User slug setting
|
419 |
-
add_settings_field( '_bbp_user_slug', __( 'User base', 'bbpress' ), 'bbp_admin_setting_callback_user_slug', 'bbpress', $section );
|
420 |
-
register_setting ( 'bbpress', '_bbp_user_slug', 'sanitize_title' );
|
421 |
-
|
422 |
-
// View slug setting
|
423 |
-
add_settings_field( '_bbp_view_slug', __( 'View base', 'bbpress' ), 'bbp_admin_setting_callback_view_slug', 'bbpress', $section );
|
424 |
-
register_setting ( 'bbpress', '_bbp_view_slug', 'sanitize_title' );
|
425 |
-
}
|
426 |
-
|
427 |
-
/** BuddyPress ********************************************************/
|
428 |
-
|
429 |
-
$section = 'bbp_settings_buddypress';
|
430 |
-
if ( bbp_current_user_can_see( $section ) ) {
|
431 |
-
|
432 |
-
// Add the per page section
|
433 |
-
add_settings_section( 'bbp_buddypress', __( 'BuddyPress', 'bbpress' ), 'bbp_admin_setting_callback_buddypress_section', 'bbpress' );
|
434 |
-
|
435 |
-
// Topics per page setting
|
436 |
-
add_settings_field( '_bbp_enable_group_forums', __( 'Enable Group Forums', 'bbpress' ), 'bbp_admin_setting_callback_group_forums', 'bbpress', 'bbp_buddypress' );
|
437 |
-
register_setting ( 'bbpress', '_bbp_enable_group_forums', 'intval' );
|
438 |
-
|
439 |
-
// Topics per page setting
|
440 |
-
add_settings_field( '_bbp_group_forums_root_id', __( 'Group Forums Parent', 'bbpress' ), 'bbp_admin_setting_callback_group_forums_root_id', 'bbpress', 'bbp_buddypress' );
|
441 |
-
register_setting ( 'bbpress', '_bbp_group_forums_root_id', 'intval' );
|
442 |
-
}
|
443 |
-
|
444 |
-
/** Akismet ***********************************************************/
|
445 |
-
|
446 |
-
$section = 'bbp_settings_akismet';
|
447 |
-
if ( bbp_current_user_can_see( $section ) ) {
|
448 |
-
|
449 |
-
// Add the per page section
|
450 |
-
add_settings_section( 'bbp_akismet', __( 'Akismet', 'bbpress' ), 'bbp_admin_setting_callback_akismet_section', 'bbpress' );
|
451 |
-
|
452 |
-
// Replies per page setting
|
453 |
-
add_settings_field( '_bbp_enable_akismet', __( 'Use Akismet', 'bbpress' ), 'bbp_admin_setting_callback_akismet', 'bbpress', 'bbp_akismet' );
|
454 |
-
register_setting ( 'bbpress', '_bbp_enable_akismet', 'intval' );
|
455 |
}
|
456 |
}
|
457 |
|
@@ -553,8 +398,11 @@ class BBP_Admin {
|
|
553 |
remove_submenu_page( 'tools.php', 'bbp-reset' );
|
554 |
|
555 |
// Icons for top level admin menus
|
556 |
-
$
|
557 |
-
$
|
|
|
|
|
|
|
558 |
|
559 |
// Top level menu classes
|
560 |
$forum_class = sanitize_html_class( bbp_get_forum_post_type() );
|
@@ -689,37 +537,74 @@ class BBP_Admin {
|
|
689 |
clear: left;
|
690 |
}
|
691 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
692 |
#menu-posts-<?php echo $forum_class; ?> .wp-menu-image {
|
693 |
-
background:
|
694 |
}
|
695 |
#menu-posts-<?php echo $forum_class; ?>:hover .wp-menu-image,
|
696 |
#menu-posts-<?php echo $forum_class; ?>.wp-has-current-submenu .wp-menu-image {
|
697 |
-
background:
|
698 |
}
|
699 |
-
#icon-edit.icon32-posts-<?php echo $forum_class; ?> {
|
700 |
-
background: url('<?php echo $icon32_url; ?>') no-repeat -4px 0px;
|
701 |
-
}
|
702 |
-
|
703 |
#menu-posts-<?php echo $topic_class; ?> .wp-menu-image {
|
704 |
-
background:
|
705 |
}
|
706 |
#menu-posts-<?php echo $topic_class; ?>:hover .wp-menu-image,
|
707 |
#menu-posts-<?php echo $topic_class; ?>.wp-has-current-submenu .wp-menu-image {
|
708 |
-
background:
|
709 |
}
|
710 |
-
#icon-edit.icon32-posts-<?php echo $topic_class; ?> {
|
711 |
-
background: url('<?php echo $icon32_url; ?>') no-repeat -4px -90px;
|
712 |
-
}
|
713 |
-
|
714 |
#menu-posts-<?php echo $reply_class; ?> .wp-menu-image {
|
715 |
-
background:
|
716 |
}
|
717 |
#menu-posts-<?php echo $reply_class; ?>:hover .wp-menu-image,
|
718 |
#menu-posts-<?php echo $reply_class; ?>.wp-has-current-submenu .wp-menu-image {
|
719 |
-
background:
|
720 |
}
|
721 |
-
|
722 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
723 |
}
|
724 |
|
725 |
/*]]>*/
|
266 |
* @uses add_settings_section() To add our own settings section
|
267 |
* @uses add_settings_field() To add various settings fields
|
268 |
* @uses register_setting() To register various settings
|
269 |
+
* @todo Put fields into multidimensional array
|
270 |
*/
|
271 |
public static function register_admin_settings() {
|
272 |
|
273 |
+
// Bail if no sections available
|
274 |
+
if ( ! $sections = bbp_admin_get_settings_sections() )
|
275 |
+
return false;
|
276 |
|
277 |
+
// Loop through sections
|
278 |
+
foreach ( $sections as $section_id => $section ) {
|
279 |
|
280 |
+
// Only proceed if current user can see this section
|
281 |
+
if ( ! bbp_current_user_can_see( $section_id ) )
|
282 |
+
continue;
|
283 |
|
284 |
+
// Only add section and fields if section has fields
|
285 |
+
if ( $fields = bbp_admin_get_settings_fields_for_section( $section_id ) ) {
|
|
|
286 |
|
287 |
+
// Add the section
|
288 |
+
add_settings_section( $section_id, $section['title'], $section['callback'], $section['page'] );
|
|
|
289 |
|
290 |
+
// Loop through fields for this section
|
291 |
+
foreach ( $fields as $field_id => $field ) {
|
|
|
292 |
|
293 |
+
// Add the field
|
294 |
+
add_settings_field( $field_id, $field['title'], $field['callback'], $field['page'], $section_id, $field['args'] );
|
|
|
295 |
|
296 |
+
// Register the setting
|
297 |
+
register_setting( $section_id, $field_id, $field['sanitize_callback'] );
|
298 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
299 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
300 |
}
|
301 |
}
|
302 |
|
398 |
remove_submenu_page( 'tools.php', 'bbp-reset' );
|
399 |
|
400 |
// Icons for top level admin menus
|
401 |
+
$version = bbp_get_version();
|
402 |
+
$menu_icon_url = $this->images_url . 'menu.png?ver=' . $version;
|
403 |
+
$icon32_url = $this->images_url . 'icons32.png?ver=' . $version;
|
404 |
+
$menu_icon_url_2x = $this->images_url . 'menu-2x.png?ver=' . $version;
|
405 |
+
$icon32_url_2x = $this->images_url . 'icons32-2x.png?ver=' . $version;
|
406 |
|
407 |
// Top level menu classes
|
408 |
$forum_class = sanitize_html_class( bbp_get_forum_post_type() );
|
537 |
clear: left;
|
538 |
}
|
539 |
|
540 |
+
/* Icon 32 */
|
541 |
+
#icon-edit.icon32-posts-<?php echo $forum_class; ?> {
|
542 |
+
background: url('<?php echo $icon32_url; ?>') no-repeat -4px 0px;
|
543 |
+
}
|
544 |
+
|
545 |
+
#icon-edit.icon32-posts-<?php echo $topic_class; ?> {
|
546 |
+
background: url('<?php echo $icon32_url; ?>') no-repeat -4px -90px;
|
547 |
+
}
|
548 |
+
|
549 |
+
#icon-edit.icon32-posts-<?php echo $reply_class; ?> {
|
550 |
+
background: url('<?php echo $icon32_url; ?>') no-repeat -4px -180px;
|
551 |
+
}
|
552 |
+
|
553 |
+
/* Menu */
|
554 |
+
#menu-posts-<?php echo $forum_class; ?> .wp-menu-image,
|
555 |
+
#menu-posts-<?php echo $topic_class; ?> .wp-menu-image,
|
556 |
+
#menu-posts-<?php echo $reply_class; ?> .wp-menu-image,
|
557 |
+
|
558 |
+
#menu-posts-<?php echo $forum_class; ?>:hover .wp-menu-image,
|
559 |
+
#menu-posts-<?php echo $topic_class; ?>:hover .wp-menu-image,
|
560 |
+
#menu-posts-<?php echo $reply_class; ?>:hover .wp-menu-image,
|
561 |
+
|
562 |
+
#menu-posts-<?php echo $forum_class; ?>.wp-has-current-submenu .wp-menu-image,
|
563 |
+
#menu-posts-<?php echo $topic_class; ?>.wp-has-current-submenu .wp-menu-image,
|
564 |
+
#menu-posts-<?php echo $reply_class; ?>.wp-has-current-submenu .wp-menu-image {
|
565 |
+
background: url('<?php echo $menu_icon_url; ?>');
|
566 |
+
background-repeat: no-repeat;
|
567 |
+
}
|
568 |
+
|
569 |
+
/* Menu Positions */
|
570 |
#menu-posts-<?php echo $forum_class; ?> .wp-menu-image {
|
571 |
+
background-position: 0px -32px;
|
572 |
}
|
573 |
#menu-posts-<?php echo $forum_class; ?>:hover .wp-menu-image,
|
574 |
#menu-posts-<?php echo $forum_class; ?>.wp-has-current-submenu .wp-menu-image {
|
575 |
+
background-position: 0px 0px;
|
576 |
}
|
|
|
|
|
|
|
|
|
577 |
#menu-posts-<?php echo $topic_class; ?> .wp-menu-image {
|
578 |
+
background-position: -70px -32px;
|
579 |
}
|
580 |
#menu-posts-<?php echo $topic_class; ?>:hover .wp-menu-image,
|
581 |
#menu-posts-<?php echo $topic_class; ?>.wp-has-current-submenu .wp-menu-image {
|
582 |
+
background-position: -70px 0px;
|
583 |
}
|
|
|
|
|
|
|
|
|
584 |
#menu-posts-<?php echo $reply_class; ?> .wp-menu-image {
|
585 |
+
background-position: -35px -32px;
|
586 |
}
|
587 |
#menu-posts-<?php echo $reply_class; ?>:hover .wp-menu-image,
|
588 |
#menu-posts-<?php echo $reply_class; ?>.wp-has-current-submenu .wp-menu-image {
|
589 |
+
background-position: -35px 0px;
|
590 |
}
|
591 |
+
|
592 |
+
/* Menu 2x */
|
593 |
+
@media only screen and (-webkit-min-device-pixel-ratio: 1.5) {
|
594 |
+
#menu-posts-<?php echo $forum_class; ?> .wp-menu-image,
|
595 |
+
#menu-posts-<?php echo $topic_class; ?> .wp-menu-image,
|
596 |
+
#menu-posts-<?php echo $reply_class; ?> .wp-menu-image,
|
597 |
+
|
598 |
+
#menu-posts-<?php echo $forum_class; ?>:hover .wp-menu-image,
|
599 |
+
#menu-posts-<?php echo $topic_class; ?>:hover .wp-menu-image,
|
600 |
+
#menu-posts-<?php echo $reply_class; ?>:hover .wp-menu-image,
|
601 |
+
|
602 |
+
#menu-posts-<?php echo $forum_class; ?>.wp-has-current-submenu .wp-menu-image,
|
603 |
+
#menu-posts-<?php echo $topic_class; ?>.wp-has-current-submenu .wp-menu-image,
|
604 |
+
#menu-posts-<?php echo $reply_class; ?>.wp-has-current-submenu .wp-menu-image {
|
605 |
+
background-image: url('<?php echo $menu_icon_url_2x; ?>');
|
606 |
+
background-size: 100px 64px;
|
607 |
+
}
|
608 |
}
|
609 |
|
610 |
/*]]>*/
|
bbp-admin/bbp-converter.php
CHANGED
@@ -145,7 +145,7 @@ class BBP_Converter {
|
|
145 |
margin: 0.5em 0;
|
146 |
padding: 2px;
|
147 |
}
|
148 |
-
|
149 |
div.bbp-converter-updated p strong.loading {
|
150 |
padding: 2px 20px 2px 0;
|
151 |
background-image: url('<?php echo admin_url(); ?>images/wpspin_light.gif');
|
@@ -175,7 +175,7 @@ class BBP_Converter {
|
|
175 |
jQuery.each(jQuery('#bbp-converter-settings').serializeArray(), function(i, field) {
|
176 |
values[field.name] = field.value;
|
177 |
});
|
178 |
-
|
179 |
if( values['_bbp_converter_restart'] ) {
|
180 |
jQuery('#_bbp_converter_restart').removeAttr("checked");
|
181 |
}
|
@@ -195,11 +195,7 @@ class BBP_Converter {
|
|
195 |
jQuery('#bbp-converter-stop').show();
|
196 |
jQuery('#bbp-converter-progress').show();
|
197 |
bbconverter_log( "Starting Conversion..." );
|
198 |
-
|
199 |
-
var response_length = response.length - 1;
|
200 |
-
response = response.substring(0,response_length);
|
201 |
-
bbconverter_success(response);
|
202 |
-
});
|
203 |
}
|
204 |
}
|
205 |
|
@@ -218,7 +214,7 @@ class BBP_Converter {
|
|
218 |
|
219 |
function bbconverter_success(response) {
|
220 |
bbconverter_log(response);
|
221 |
-
|
222 |
if ( response == 'Conversion Complete' || response.indexOf('error') > -1 ) {
|
223 |
bbconverter_log('<b>Repair any missing information: <a href="<?php echo admin_url(); ?>tools.php?page=bbp-repair">Continue</a></b>');
|
224 |
jQuery('#bbp-converter-start').show();
|
@@ -275,7 +271,8 @@ class BBP_Converter {
|
|
275 |
|
276 |
$step = (int) get_option( '_bbp_converter_step', 1 );
|
277 |
$min = (int) get_option( '_bbp_converter_start', 0 );
|
278 |
-
$
|
|
|
279 |
$start = $min;
|
280 |
|
281 |
// Bail if platform did not get saved
|
@@ -295,20 +292,18 @@ class BBP_Converter {
|
|
295 |
update_option( '_bbp_converter_step', $step + 1 );
|
296 |
update_option( '_bbp_converter_start', 0 );
|
297 |
$this->sync_table();
|
298 |
-
|
299 |
if ( empty( $start ) ) {
|
300 |
_e( 'No data to clean', 'bbpress' );
|
301 |
}
|
302 |
} else {
|
303 |
update_option( '_bbp_converter_start', $max + 1 );
|
304 |
-
|
305 |
-
_e( 'Deleting previously converted data (' . $min . ' - ' . $max . ')', 'bbpress' );
|
306 |
}
|
307 |
} else {
|
308 |
update_option( '_bbp_converter_step', $step + 1 );
|
309 |
update_option( '_bbp_converter_start', 0 );
|
310 |
}
|
311 |
-
|
312 |
break;
|
313 |
|
314 |
// STEP 2. Convert users.
|
@@ -317,14 +312,12 @@ class BBP_Converter {
|
|
317 |
if ( $converter->convert_users( $start ) ) {
|
318 |
update_option( '_bbp_converter_step', $step + 1 );
|
319 |
update_option( '_bbp_converter_start', 0 );
|
320 |
-
|
321 |
if ( empty( $start ) ) {
|
322 |
_e( 'No users to convert', 'bbpress' );
|
323 |
}
|
324 |
} else {
|
325 |
update_option( '_bbp_converter_start', $max + 1 );
|
326 |
-
|
327 |
-
_e( 'Converting users (' . $min . ' - ' . $max . ')', 'bbpress' );
|
328 |
}
|
329 |
} else {
|
330 |
update_option( '_bbp_converter_step', $step + 1 );
|
@@ -339,14 +332,12 @@ class BBP_Converter {
|
|
339 |
if ( $converter->clean_passwords( $start ) ) {
|
340 |
update_option( '_bbp_converter_step', $step + 1 );
|
341 |
update_option( '_bbp_converter_start', 0 );
|
342 |
-
|
343 |
if ( empty( $start ) ) {
|
344 |
_e( 'No passwords to clear', 'bbpress' );
|
345 |
}
|
346 |
} else {
|
347 |
update_option( '_bbp_converter_start', $max + 1 );
|
348 |
-
|
349 |
-
_e( 'Delete users wordpress default passwords (' . $min . ' - ' . $max . ')', 'bbpress' );
|
350 |
}
|
351 |
} else {
|
352 |
update_option( '_bbp_converter_step', $step + 1 );
|
@@ -360,32 +351,28 @@ class BBP_Converter {
|
|
360 |
if ( $converter->convert_forums( $start ) ) {
|
361 |
update_option( '_bbp_converter_step', $step + 1 );
|
362 |
update_option( '_bbp_converter_start', 0 );
|
363 |
-
|
364 |
if ( empty( $start ) ) {
|
365 |
_e( 'No forums to convert', 'bbpress' );
|
366 |
}
|
367 |
} else {
|
368 |
update_option( '_bbp_converter_start', $max + 1 );
|
369 |
-
|
370 |
-
_e( 'Converting forums (' . $min . ' - ' . $max . ')', 'bbpress' );
|
371 |
}
|
372 |
|
373 |
break;
|
374 |
|
375 |
// STEP 5. Convert forum parents.
|
376 |
case 5 :
|
377 |
-
|
378 |
if ( $converter->convert_forum_parents( $start ) ) {
|
379 |
update_option( '_bbp_converter_step', $step + 1 );
|
380 |
update_option( '_bbp_converter_start', 0 );
|
381 |
-
|
382 |
if ( empty( $start ) ) {
|
383 |
_e( 'No forum parents to convert', 'bbpress' );
|
384 |
}
|
385 |
} else {
|
386 |
update_option( '_bbp_converter_start', $max + 1 );
|
387 |
-
|
388 |
-
_e( 'Converting forum parents (' . $min . ' - ' . $max . ')', 'bbpress' );
|
389 |
}
|
390 |
|
391 |
break;
|
@@ -396,32 +383,28 @@ class BBP_Converter {
|
|
396 |
if ( $converter->convert_topics( $start ) ) {
|
397 |
update_option( '_bbp_converter_step', $step + 1 );
|
398 |
update_option( '_bbp_converter_start', 0 );
|
399 |
-
|
400 |
-
if ( !$start ) {
|
401 |
_e( 'No topics to convert', 'bbpress' );
|
402 |
}
|
403 |
} else {
|
404 |
update_option( '_bbp_converter_start', $max + 1 );
|
405 |
-
|
406 |
-
_e( 'Converting topics (' . $min . ' - ' . $max . ')', 'bbpress' );
|
407 |
}
|
408 |
|
409 |
break;
|
410 |
|
411 |
// STEP 7. Convert tags.
|
412 |
case 7 :
|
413 |
-
|
414 |
if ( $converter->convert_tags( $start ) ) {
|
415 |
update_option( '_bbp_converter_step', $step + 1 );
|
416 |
update_option( '_bbp_converter_start', 0 );
|
417 |
-
|
418 |
if ( empty( $start ) ) {
|
419 |
_e( 'No tags to convert', 'bbpress' );
|
420 |
}
|
421 |
} else {
|
422 |
update_option( '_bbp_converter_start', $max + 1 );
|
423 |
-
|
424 |
-
_e( 'Converting tags (' . $min . ' - ' . $max . ')', 'bbpress' );
|
425 |
}
|
426 |
|
427 |
break;
|
@@ -436,12 +419,11 @@ class BBP_Converter {
|
|
436 |
}
|
437 |
} else {
|
438 |
update_option( '_bbp_converter_start', $max + 1 );
|
439 |
-
|
440 |
-
_e( 'Converting replies (' . $min . ' - ' . $max . ')', 'bbpress' );
|
441 |
}
|
442 |
|
443 |
break;
|
444 |
-
|
445 |
default :
|
446 |
delete_option( '_bbp_converter_step' );
|
447 |
delete_option( '_bbp_converter_start' );
|
@@ -449,13 +431,13 @@ class BBP_Converter {
|
|
449 |
_e( 'Conversion Complete', 'bbpress' );
|
450 |
|
451 |
break;
|
452 |
-
|
453 |
}
|
454 |
}
|
455 |
|
456 |
/**
|
457 |
* Convert passwords from previous forum to wordpress.
|
458 |
-
*
|
459 |
* @since bbPress (r3813)
|
460 |
* @global WPDB $wpdb
|
461 |
*/
|
@@ -478,7 +460,7 @@ class BBP_Converter {
|
|
478 |
|
479 |
/**
|
480 |
* Create Tables for fast syncing
|
481 |
-
*
|
482 |
* @since bbPress (r3813)
|
483 |
*/
|
484 |
public function sync_table( $drop = false ) {
|
@@ -594,7 +576,7 @@ abstract class BBP_Converter_Base {
|
|
594 |
/** Get database connections ******************************************/
|
595 |
|
596 |
$this->wpdb = $wpdb;
|
597 |
-
$this->max_rows = $_POST['_bbp_converter_rows'];
|
598 |
$this->opdb = new wpdb( $_POST['_bbp_converter_db_user'], $_POST['_bbp_converter_db_pass'], $_POST['_bbp_converter_db_name'], $_POST['_bbp_converter_db_server'] );
|
599 |
$this->opdb->prefix = $_POST['_bbp_converter_db_prefix'];
|
600 |
|
@@ -618,7 +600,7 @@ abstract class BBP_Converter_Base {
|
|
618 |
* Charset
|
619 |
*/
|
620 |
if ( empty( $this->wpdb->charset ) ) {
|
621 |
-
$this->charset =
|
622 |
} else {
|
623 |
$this->charset = $this->wpdb->charset;
|
624 |
}
|
@@ -826,7 +808,12 @@ abstract class BBP_Converter_Base {
|
|
826 |
if ( !empty( $from_tablename ) ) {
|
827 |
|
828 |
// Get some data from the old forums
|
829 |
-
$
|
|
|
|
|
|
|
|
|
|
|
830 |
|
831 |
// Query returned some results
|
832 |
if ( !empty( $forum_array ) ) {
|
@@ -847,7 +834,7 @@ abstract class BBP_Converter_Base {
|
|
847 |
// This row has a destination that matches one of the
|
848 |
// columns in this table.
|
849 |
if ( in_array( $row['to_fieldname'], $tablefield_array ) ) {
|
850 |
-
|
851 |
// Allows us to set default fields.
|
852 |
if ( isset( $row['default'] ) ) {
|
853 |
$insert_post[$row['to_fieldname']] = $row['default'];
|
@@ -859,7 +846,7 @@ abstract class BBP_Converter_Base {
|
|
859 |
} else {
|
860 |
$insert_post[$row['to_fieldname']] = call_user_func_array( array( $this, $row['callback_method'] ), array( $forum[$row['from_fieldname']], $forum ) );
|
861 |
}
|
862 |
-
|
863 |
// Maps the field from the old forum.
|
864 |
} else {
|
865 |
$insert_post[$row['to_fieldname']] = $forum[$row['from_fieldname']];
|
@@ -868,7 +855,7 @@ abstract class BBP_Converter_Base {
|
|
868 |
// Destination field is not empty, so we might need
|
869 |
// to do some extra work or set a default.
|
870 |
} elseif ( !empty( $row['to_fieldname'] ) ) {
|
871 |
-
|
872 |
// Allows us to set default fields.
|
873 |
if ( isset( $row['default'] ) ) {
|
874 |
$insert_postmeta[$row['to_fieldname']] = $row['default'];
|
@@ -895,7 +882,7 @@ abstract class BBP_Converter_Base {
|
|
895 |
if ( count( $insert_post ) > 0 || ( $to_type == 'tags' && count( $insert_postmeta ) > 0 ) ) {
|
896 |
|
897 |
switch ( $to_type ) {
|
898 |
-
|
899 |
/** New user **************************************/
|
900 |
|
901 |
case 'user':
|
@@ -977,6 +964,7 @@ abstract class BBP_Converter_Base {
|
|
977 |
} else {
|
978 |
$forum_array = $this->wpdb->get_results( 'SELECT post_id AS value_id, meta_value FROM ' . $this->wpdb->postmeta . ' WHERE meta_key = "_bbp_forum_parent_id" AND meta_value > 0 LIMIT ' . $start . ', ' . $this->max_rows );
|
979 |
}
|
|
|
980 |
foreach ( (array) $forum_array as $row ) {
|
981 |
$parent_id = $this->callback_forumid( $row->meta_value );
|
982 |
$this->wpdb->query( 'UPDATE ' . $this->wpdb->posts . ' SET post_parent = "' . $parent_id . '" WHERE ID = "' . $row->value_id . '" LIMIT 1' );
|
@@ -1085,14 +1073,14 @@ abstract class BBP_Converter_Base {
|
|
1085 |
}
|
1086 |
return $rval;
|
1087 |
}
|
1088 |
-
|
1089 |
/** Callbacks *************************************************************/
|
1090 |
|
1091 |
/**
|
1092 |
* Run password through wp_hash_password()
|
1093 |
*
|
1094 |
* @param string $username
|
1095 |
-
* @param string $password
|
1096 |
*/
|
1097 |
public function callback_pass( $username, $password ) {
|
1098 |
$user = $this->wpdb->get_row( 'SELECT * FROM ' . $this->wpdb->users . ' WHERE user_login = "' . $username . '" AND user_pass = "" LIMIT 1' );
|
@@ -1112,7 +1100,7 @@ abstract class BBP_Converter_Base {
|
|
1112 |
* A mini cache system to reduce database calls to forum ID's
|
1113 |
*
|
1114 |
* @param string $field
|
1115 |
-
* @return string
|
1116 |
*/
|
1117 |
private function callback_forumid( $field ) {
|
1118 |
if ( !isset( $this->map_forumid[$field] ) ) {
|
@@ -1135,7 +1123,7 @@ abstract class BBP_Converter_Base {
|
|
1135 |
* A mini cache system to reduce database calls to topic ID's
|
1136 |
*
|
1137 |
* @param string $field
|
1138 |
-
* @return string
|
1139 |
*/
|
1140 |
private function callback_topicid( $field ) {
|
1141 |
if ( !isset( $this->map_topicid[$field] ) ) {
|
@@ -1158,7 +1146,7 @@ abstract class BBP_Converter_Base {
|
|
1158 |
* A mini cache system to reduce database calls to user ID's
|
1159 |
*
|
1160 |
* @param string $field
|
1161 |
-
* @return string
|
1162 |
*/
|
1163 |
private function callback_userid( $field ) {
|
1164 |
if ( !isset( $this->map_userid[$field] ) ) {
|
@@ -1185,7 +1173,7 @@ abstract class BBP_Converter_Base {
|
|
1185 |
* A mini cache system to reduce database calls map topics ID's to forum ID's
|
1186 |
*
|
1187 |
* @param string $field
|
1188 |
-
* @return string
|
1189 |
*/
|
1190 |
private function callback_topicid_to_forumid( $field ) {
|
1191 |
$topicid = $this->callback_topicid( $field );
|
@@ -1264,8 +1252,7 @@ function bbp_new_converter( $platform ) {
|
|
1264 |
|
1265 |
if ( true === $found ) {
|
1266 |
require_once( bbpress()->admin->admin_dir . 'converters/' . $platform . '.php' );
|
1267 |
-
|
1268 |
-
return $obj;
|
1269 |
} else {
|
1270 |
return null;
|
1271 |
}
|
145 |
margin: 0.5em 0;
|
146 |
padding: 2px;
|
147 |
}
|
148 |
+
|
149 |
div.bbp-converter-updated p strong.loading {
|
150 |
padding: 2px 20px 2px 0;
|
151 |
background-image: url('<?php echo admin_url(); ?>images/wpspin_light.gif');
|
175 |
jQuery.each(jQuery('#bbp-converter-settings').serializeArray(), function(i, field) {
|
176 |
values[field.name] = field.value;
|
177 |
});
|
178 |
+
|
179 |
if( values['_bbp_converter_restart'] ) {
|
180 |
jQuery('#_bbp_converter_restart').removeAttr("checked");
|
181 |
}
|
195 |
jQuery('#bbp-converter-stop').show();
|
196 |
jQuery('#bbp-converter-progress').show();
|
197 |
bbconverter_log( "Starting Conversion..." );
|
198 |
+
bbconverter_run();
|
|
|
|
|
|
|
|
|
199 |
}
|
200 |
}
|
201 |
|
214 |
|
215 |
function bbconverter_success(response) {
|
216 |
bbconverter_log(response);
|
217 |
+
|
218 |
if ( response == 'Conversion Complete' || response.indexOf('error') > -1 ) {
|
219 |
bbconverter_log('<b>Repair any missing information: <a href="<?php echo admin_url(); ?>tools.php?page=bbp-repair">Continue</a></b>');
|
220 |
jQuery('#bbp-converter-start').show();
|
271 |
|
272 |
$step = (int) get_option( '_bbp_converter_step', 1 );
|
273 |
$min = (int) get_option( '_bbp_converter_start', 0 );
|
274 |
+
$count = (int) ! empty( $_POST['_bbp_converter_rows'] ) ? $_POST['_bbp_converter_rows'] : 100;
|
275 |
+
$max = ( $min + $count ) - 1;
|
276 |
$start = $min;
|
277 |
|
278 |
// Bail if platform did not get saved
|
292 |
update_option( '_bbp_converter_step', $step + 1 );
|
293 |
update_option( '_bbp_converter_start', 0 );
|
294 |
$this->sync_table();
|
|
|
295 |
if ( empty( $start ) ) {
|
296 |
_e( 'No data to clean', 'bbpress' );
|
297 |
}
|
298 |
} else {
|
299 |
update_option( '_bbp_converter_start', $max + 1 );
|
300 |
+
printf( __( 'Deleting previously converted data (%1$s - %2$s)', 'bbpress' ), $min, $max );
|
|
|
301 |
}
|
302 |
} else {
|
303 |
update_option( '_bbp_converter_step', $step + 1 );
|
304 |
update_option( '_bbp_converter_start', 0 );
|
305 |
}
|
306 |
+
|
307 |
break;
|
308 |
|
309 |
// STEP 2. Convert users.
|
312 |
if ( $converter->convert_users( $start ) ) {
|
313 |
update_option( '_bbp_converter_step', $step + 1 );
|
314 |
update_option( '_bbp_converter_start', 0 );
|
|
|
315 |
if ( empty( $start ) ) {
|
316 |
_e( 'No users to convert', 'bbpress' );
|
317 |
}
|
318 |
} else {
|
319 |
update_option( '_bbp_converter_start', $max + 1 );
|
320 |
+
printf( __( 'Converting users (%1$s - %2$s)', 'bbpress' ), $min, $max );
|
|
|
321 |
}
|
322 |
} else {
|
323 |
update_option( '_bbp_converter_step', $step + 1 );
|
332 |
if ( $converter->clean_passwords( $start ) ) {
|
333 |
update_option( '_bbp_converter_step', $step + 1 );
|
334 |
update_option( '_bbp_converter_start', 0 );
|
|
|
335 |
if ( empty( $start ) ) {
|
336 |
_e( 'No passwords to clear', 'bbpress' );
|
337 |
}
|
338 |
} else {
|
339 |
update_option( '_bbp_converter_start', $max + 1 );
|
340 |
+
printf( __( 'Delete users wordpress default passwords (%1$s - %2$s)', 'bbpress' ), $min, $max );
|
|
|
341 |
}
|
342 |
} else {
|
343 |
update_option( '_bbp_converter_step', $step + 1 );
|
351 |
if ( $converter->convert_forums( $start ) ) {
|
352 |
update_option( '_bbp_converter_step', $step + 1 );
|
353 |
update_option( '_bbp_converter_start', 0 );
|
|
|
354 |
if ( empty( $start ) ) {
|
355 |
_e( 'No forums to convert', 'bbpress' );
|
356 |
}
|
357 |
} else {
|
358 |
update_option( '_bbp_converter_start', $max + 1 );
|
359 |
+
printf( __( 'Converting forums (%1$s - %2$s)', 'bbpress' ), $min, $max );
|
|
|
360 |
}
|
361 |
|
362 |
break;
|
363 |
|
364 |
// STEP 5. Convert forum parents.
|
365 |
case 5 :
|
366 |
+
|
367 |
if ( $converter->convert_forum_parents( $start ) ) {
|
368 |
update_option( '_bbp_converter_step', $step + 1 );
|
369 |
update_option( '_bbp_converter_start', 0 );
|
|
|
370 |
if ( empty( $start ) ) {
|
371 |
_e( 'No forum parents to convert', 'bbpress' );
|
372 |
}
|
373 |
} else {
|
374 |
update_option( '_bbp_converter_start', $max + 1 );
|
375 |
+
printf( __( 'Calculating forum hierarchy (%1$s - %2$s)', 'bbpress' ), $min, $max );
|
|
|
376 |
}
|
377 |
|
378 |
break;
|
383 |
if ( $converter->convert_topics( $start ) ) {
|
384 |
update_option( '_bbp_converter_step', $step + 1 );
|
385 |
update_option( '_bbp_converter_start', 0 );
|
386 |
+
if ( empty( $start ) ) {
|
|
|
387 |
_e( 'No topics to convert', 'bbpress' );
|
388 |
}
|
389 |
} else {
|
390 |
update_option( '_bbp_converter_start', $max + 1 );
|
391 |
+
printf( __( 'Converting topics (%1$s - %2$s)', 'bbpress' ), $min, $max );
|
|
|
392 |
}
|
393 |
|
394 |
break;
|
395 |
|
396 |
// STEP 7. Convert tags.
|
397 |
case 7 :
|
398 |
+
|
399 |
if ( $converter->convert_tags( $start ) ) {
|
400 |
update_option( '_bbp_converter_step', $step + 1 );
|
401 |
update_option( '_bbp_converter_start', 0 );
|
|
|
402 |
if ( empty( $start ) ) {
|
403 |
_e( 'No tags to convert', 'bbpress' );
|
404 |
}
|
405 |
} else {
|
406 |
update_option( '_bbp_converter_start', $max + 1 );
|
407 |
+
printf( __( 'Converting topic tags (%1$s - %2$s)', 'bbpress' ), $min, $max );
|
|
|
408 |
}
|
409 |
|
410 |
break;
|
419 |
}
|
420 |
} else {
|
421 |
update_option( '_bbp_converter_start', $max + 1 );
|
422 |
+
printf( __( 'Converting replies (%1$s - %2$s)', 'bbpress' ), $min, $max );
|
|
|
423 |
}
|
424 |
|
425 |
break;
|
426 |
+
|
427 |
default :
|
428 |
delete_option( '_bbp_converter_step' );
|
429 |
delete_option( '_bbp_converter_start' );
|
431 |
_e( 'Conversion Complete', 'bbpress' );
|
432 |
|
433 |
break;
|
434 |
+
|
435 |
}
|
436 |
}
|
437 |
|
438 |
/**
|
439 |
* Convert passwords from previous forum to wordpress.
|
440 |
+
*
|
441 |
* @since bbPress (r3813)
|
442 |
* @global WPDB $wpdb
|
443 |
*/
|
460 |
|
461 |
/**
|
462 |
* Create Tables for fast syncing
|
463 |
+
*
|
464 |
* @since bbPress (r3813)
|
465 |
*/
|
466 |
public function sync_table( $drop = false ) {
|
576 |
/** Get database connections ******************************************/
|
577 |
|
578 |
$this->wpdb = $wpdb;
|
579 |
+
$this->max_rows = (int) $_POST['_bbp_converter_rows'];
|
580 |
$this->opdb = new wpdb( $_POST['_bbp_converter_db_user'], $_POST['_bbp_converter_db_pass'], $_POST['_bbp_converter_db_name'], $_POST['_bbp_converter_db_server'] );
|
581 |
$this->opdb->prefix = $_POST['_bbp_converter_db_prefix'];
|
582 |
|
600 |
* Charset
|
601 |
*/
|
602 |
if ( empty( $this->wpdb->charset ) ) {
|
603 |
+
$this->charset = 'UTF8';
|
604 |
} else {
|
605 |
$this->charset = $this->wpdb->charset;
|
606 |
}
|
808 |
if ( !empty( $from_tablename ) ) {
|
809 |
|
810 |
// Get some data from the old forums
|
811 |
+
$field_list = array_unique( $field_list );
|
812 |
+
$forum_query = 'SELECT ' . implode( ',', $field_list ) . ' FROM ' . $this->opdb->prefix . $from_tablename . ' LIMIT ' . $start . ', ' . $this->max_rows;
|
813 |
+
$forum_array = $this->opdb->get_results( $forum_query, ARRAY_A );
|
814 |
+
|
815 |
+
// Output the query, for better debugging
|
816 |
+
printf( __( '<span title="%s">View Query</span>%s', 'bbpress' ), esc_attr( $forum_query ), '<br />' );
|
817 |
|
818 |
// Query returned some results
|
819 |
if ( !empty( $forum_array ) ) {
|
834 |
// This row has a destination that matches one of the
|
835 |
// columns in this table.
|
836 |
if ( in_array( $row['to_fieldname'], $tablefield_array ) ) {
|
837 |
+
|
838 |
// Allows us to set default fields.
|
839 |
if ( isset( $row['default'] ) ) {
|
840 |
$insert_post[$row['to_fieldname']] = $row['default'];
|
846 |
} else {
|
847 |
$insert_post[$row['to_fieldname']] = call_user_func_array( array( $this, $row['callback_method'] ), array( $forum[$row['from_fieldname']], $forum ) );
|
848 |
}
|
849 |
+
|
850 |
// Maps the field from the old forum.
|
851 |
} else {
|
852 |
$insert_post[$row['to_fieldname']] = $forum[$row['from_fieldname']];
|
855 |
// Destination field is not empty, so we might need
|
856 |
// to do some extra work or set a default.
|
857 |
} elseif ( !empty( $row['to_fieldname'] ) ) {
|
858 |
+
|
859 |
// Allows us to set default fields.
|
860 |
if ( isset( $row['default'] ) ) {
|
861 |
$insert_postmeta[$row['to_fieldname']] = $row['default'];
|
882 |
if ( count( $insert_post ) > 0 || ( $to_type == 'tags' && count( $insert_postmeta ) > 0 ) ) {
|
883 |
|
884 |
switch ( $to_type ) {
|
885 |
+
|
886 |
/** New user **************************************/
|
887 |
|
888 |
case 'user':
|
964 |
} else {
|
965 |
$forum_array = $this->wpdb->get_results( 'SELECT post_id AS value_id, meta_value FROM ' . $this->wpdb->postmeta . ' WHERE meta_key = "_bbp_forum_parent_id" AND meta_value > 0 LIMIT ' . $start . ', ' . $this->max_rows );
|
966 |
}
|
967 |
+
|
968 |
foreach ( (array) $forum_array as $row ) {
|
969 |
$parent_id = $this->callback_forumid( $row->meta_value );
|
970 |
$this->wpdb->query( 'UPDATE ' . $this->wpdb->posts . ' SET post_parent = "' . $parent_id . '" WHERE ID = "' . $row->value_id . '" LIMIT 1' );
|
1073 |
}
|
1074 |
return $rval;
|
1075 |
}
|
1076 |
+
|
1077 |
/** Callbacks *************************************************************/
|
1078 |
|
1079 |
/**
|
1080 |
* Run password through wp_hash_password()
|
1081 |
*
|
1082 |
* @param string $username
|
1083 |
+
* @param string $password
|
1084 |
*/
|
1085 |
public function callback_pass( $username, $password ) {
|
1086 |
$user = $this->wpdb->get_row( 'SELECT * FROM ' . $this->wpdb->users . ' WHERE user_login = "' . $username . '" AND user_pass = "" LIMIT 1' );
|
1100 |
* A mini cache system to reduce database calls to forum ID's
|
1101 |
*
|
1102 |
* @param string $field
|
1103 |
+
* @return string
|
1104 |
*/
|
1105 |
private function callback_forumid( $field ) {
|
1106 |
if ( !isset( $this->map_forumid[$field] ) ) {
|
1123 |
* A mini cache system to reduce database calls to topic ID's
|
1124 |
*
|
1125 |
* @param string $field
|
1126 |
+
* @return string
|
1127 |
*/
|
1128 |
private function callback_topicid( $field ) {
|
1129 |
if ( !isset( $this->map_topicid[$field] ) ) {
|
1146 |
* A mini cache system to reduce database calls to user ID's
|
1147 |
*
|
1148 |
* @param string $field
|
1149 |
+
* @return string
|
1150 |
*/
|
1151 |
private function callback_userid( $field ) {
|
1152 |
if ( !isset( $this->map_userid[$field] ) ) {
|
1173 |
* A mini cache system to reduce database calls map topics ID's to forum ID's
|
1174 |
*
|
1175 |
* @param string $field
|
1176 |
+
* @return string
|
1177 |
*/
|
1178 |
private function callback_topicid_to_forumid( $field ) {
|
1179 |
$topicid = $this->callback_topicid( $field );
|
1252 |
|
1253 |
if ( true === $found ) {
|
1254 |
require_once( bbpress()->admin->admin_dir . 'converters/' . $platform . '.php' );
|
1255 |
+
return new $platform;
|
|
|
1256 |
} else {
|
1257 |
return null;
|
1258 |
}
|
bbp-admin/bbp-settings.php
CHANGED
@@ -10,6 +10,363 @@
|
|
10 |
// Exit if accessed directly
|
11 |
if ( !defined( 'ABSPATH' ) ) exit;
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
/** Main Section **************************************************************/
|
14 |
|
15 |
/**
|
@@ -163,7 +520,7 @@ function bbp_admin_setting_callback_subtheme_section() {
|
|
163 |
|
164 |
<p><?php _e( 'How your forum content is displayed within your existing theme.', 'bbpress' ); ?></p>
|
165 |
|
166 |
-
<?php
|
167 |
}
|
168 |
|
169 |
/**
|
@@ -713,7 +1070,7 @@ function bbp_converter_setting_callback_dbuser() {
|
|
713 |
function bbp_converter_setting_callback_dbpass() {
|
714 |
?>
|
715 |
|
716 |
-
<input name="_bbp_converter_db_pass" type="
|
717 |
<label for="_bbp_converter_db_pass"><?php _e( 'Password to access the database', 'bbpress' ); ?></label>
|
718 |
|
719 |
<?php
|
@@ -996,7 +1353,7 @@ function bbp_form_option( $option, $default = '' , $slug = false ) {
|
|
996 |
* @since bbPress (r3306)
|
997 |
*
|
998 |
* @param string $slug
|
999 |
-
* @param string $default
|
1000 |
*
|
1001 |
* @uses bbp_get_form_option() To get a sanitized slug string
|
1002 |
*/
|
@@ -1067,7 +1424,7 @@ function bbp_form_slug_conflict_check( $slug, $default ) {
|
|
1067 |
$page_title = sprintf( __( '%s page', 'bbpress' ), $page_data->title );
|
1068 |
$core_slugs[$page_base] = array( 'name' => $page_title, 'default' => $page_data->slug, 'context' => 'BuddyPress' );
|
1069 |
}
|
1070 |
-
}
|
1071 |
}
|
1072 |
|
1073 |
// Set the static
|
@@ -1076,15 +1433,15 @@ function bbp_form_slug_conflict_check( $slug, $default ) {
|
|
1076 |
|
1077 |
// Loop through slugs to check
|
1078 |
foreach( $the_core_slugs as $key => $value ) {
|
1079 |
-
|
1080 |
// Get the slug
|
1081 |
$slug_check = bbp_get_form_option( $key, $value['default'], true );
|
1082 |
|
1083 |
// Compare
|
1084 |
if ( ( $slug != $key ) && ( $slug_check == $this_slug ) ) : ?>
|
1085 |
-
|
1086 |
<span class="attention"><?php printf( __( 'Possible %1$s conflict: <strong>%2$s</strong>', 'bbpress' ), $value['context'], $value['name'] ); ?></span>
|
1087 |
-
|
1088 |
-
<?php endif;
|
1089 |
}
|
1090 |
}
|
10 |
// Exit if accessed directly
|
11 |
if ( !defined( 'ABSPATH' ) ) exit;
|
12 |
|
13 |
+
/** Sections ******************************************************************/
|
14 |
+
|
15 |
+
/**
|
16 |
+
* Get the bbPress settings sections.
|
17 |
+
*
|
18 |
+
* @since bbPress (r4001)
|
19 |
+
* @return array
|
20 |
+
*/
|
21 |
+
function bbp_admin_get_settings_sections() {
|
22 |
+
return apply_filters( 'bbp_admin_get_settings_sections', array(
|
23 |
+
'bbp_settings_main' => array(
|
24 |
+
'title' => __( 'Main Settings', 'bbpress' ),
|
25 |
+
'callback' => 'bbp_admin_setting_callback_main_section',
|
26 |
+
'page' => 'bbpress',
|
27 |
+
),
|
28 |
+
'bbp_settings_theme_compat' => array(
|
29 |
+
'title' => __( 'Theme Packages', 'bbpress' ),
|
30 |
+
'callback' => 'bbp_admin_setting_callback_subtheme_section',
|
31 |
+
'page' => 'bbpress',
|
32 |
+
),
|
33 |
+
'bbp_settings_per_page' => array(
|
34 |
+
'title' => __( 'Per Page', 'bbpress' ),
|
35 |
+
'callback' => 'bbp_admin_setting_callback_per_page_section',
|
36 |
+
'page' => 'bbpress',
|
37 |
+
),
|
38 |
+
'bbp_settings_per_rss_page' => array(
|
39 |
+
'title' => __( 'Per RSS Page', 'bbpress' ),
|
40 |
+
'callback' => 'bbp_admin_setting_callback_per_rss_page_section',
|
41 |
+
'page' => 'bbpress',
|
42 |
+
),
|
43 |
+
'bbp_settings_root_slugs' => array(
|
44 |
+
'title' => __( 'Archive Slugs', 'bbpress' ),
|
45 |
+
'callback' => 'bbp_admin_setting_callback_root_slug_section',
|
46 |
+
'page' => 'bbpress',
|
47 |
+
),
|
48 |
+
'bbp_settings_single_slugs' => array(
|
49 |
+
'title' => __( 'Single Slugs', 'bbpress' ),
|
50 |
+
'callback' => 'bbp_admin_setting_callback_single_slug_section',
|
51 |
+
'page' => 'bbpress',
|
52 |
+
),
|
53 |
+
'bbp_settings_buddypress' => array(
|
54 |
+
'title' => __( 'BuddyPress', 'bbpress' ),
|
55 |
+
'callback' => 'bbp_admin_setting_callback_buddypress_section',
|
56 |
+
'page' => 'bbpress',
|
57 |
+
),
|
58 |
+
'bbp_settings_akismet' => array(
|
59 |
+
'title' => __( 'Akismet', 'bbpress' ),
|
60 |
+
'callback' => 'bbp_admin_setting_callback_akismet_section',
|
61 |
+
'page' => 'bbpress'
|
62 |
+
)
|
63 |
+
) );
|
64 |
+
}
|
65 |
+
|
66 |
+
/**
|
67 |
+
* Get all of the settings fields.
|
68 |
+
*
|
69 |
+
* @since bbPress (r4001)
|
70 |
+
* @return type
|
71 |
+
*/
|
72 |
+
function bbp_admin_get_settings_fields() {
|
73 |
+
return apply_filters( 'bbp_admin_get_settings_fields', array(
|
74 |
+
|
75 |
+
/** Main Section ******************************************************/
|
76 |
+
|
77 |
+
'bbp_settings_main' => array(
|
78 |
+
|
79 |
+
// Edit lock setting
|
80 |
+
'_bbp_edit_lock' => array(
|
81 |
+
'title' => __( 'Lock post editing after', 'bbpress' ),
|
82 |
+
'callback' => 'bbp_admin_setting_callback_editlock',
|
83 |
+
'sanitize_callback' => 'intval',
|
84 |
+
'page' => 'bbpress',
|
85 |
+
'args' => array()
|
86 |
+
),
|
87 |
+
|
88 |
+
// Throttle setting
|
89 |
+
'_bbp_throttle_time' => array(
|
90 |
+
'title' => __( 'Throttle time', 'bbpress' ),
|
91 |
+
'callback' => 'bbp_admin_setting_callback_throttle',
|
92 |
+
'sanitize_callback' => 'intval',
|
93 |
+
'page' => 'bbpress',
|
94 |
+
'args' => array()
|
95 |
+
),
|
96 |
+
|
97 |
+
// Allow topic and reply revisions
|
98 |
+
'_bbp_allow_revisions' => array(
|
99 |
+
'title' => __( 'Allow Revisions', 'bbpress' ),
|
100 |
+
'callback' => 'bbp_admin_setting_callback_revisions',
|
101 |
+
'sanitize_callback' => 'intval',
|
102 |
+
'page' => 'bbpress',
|
103 |
+
'args' => array()
|
104 |
+
),
|
105 |
+
|
106 |
+
// Allow favorites setting
|
107 |
+
'_bbp_enable_favorites' => array(
|
108 |
+
'title' => __( 'Allow Favorites', 'bbpress' ),
|
109 |
+
'callback' => 'bbp_admin_setting_callback_favorites',
|
110 |
+
'sanitize_callback' => 'intval',
|
111 |
+
'page' => 'bbpress',
|
112 |
+
'args' => array()
|
113 |
+
),
|
114 |
+
|
115 |
+
// Allow subscriptions setting
|
116 |
+
'_bbp_enable_subscriptions' => array(
|
117 |
+
'title' => __( 'Allow Subscriptions', 'bbpress' ),
|
118 |
+
'callback' => 'bbp_admin_setting_callback_subscriptions',
|
119 |
+
'sanitize_callback' => 'intval',
|
120 |
+
'page' => 'bbpress',
|
121 |
+
'args' => array()
|
122 |
+
),
|
123 |
+
|
124 |
+
// Allow anonymous posting setting
|
125 |
+
'_bbp_allow_anonymous' => array(
|
126 |
+
'title' => __( 'Allow Anonymous Posting', 'bbpress' ),
|
127 |
+
'callback' => 'bbp_admin_setting_callback_anonymous',
|
128 |
+
'sanitize_callback' => 'intval',
|
129 |
+
'page' => 'bbpress',
|
130 |
+
'args' => array()
|
131 |
+
),
|
132 |
+
|
133 |
+
// Allow global access (on multisite)
|
134 |
+
'_bbp_allow_global_access' => array(
|
135 |
+
'title' => __( 'Allow Global Access', 'bbpress' ),
|
136 |
+
'callback' => 'bbp_admin_setting_callback_global_access',
|
137 |
+
'sanitize_callback' => 'intval',
|
138 |
+
'page' => 'bbpress',
|
139 |
+
'args' => array()
|
140 |
+
),
|
141 |
+
|
142 |
+
// Allow fancy editor setting
|
143 |
+
'_bbp_use_wp_editor' => array(
|
144 |
+
'title' => __( 'Fancy Editor', 'bbpress' ),
|
145 |
+
'callback' => 'bbp_admin_setting_callback_use_wp_editor',
|
146 |
+
'page' => 'bbpress',
|
147 |
+
'args' => array(),
|
148 |
+
'sanitize_callback' => 'intval'
|
149 |
+
),
|
150 |
+
|
151 |
+
// Allow auto embedding setting
|
152 |
+
'_bbp_use_autoembed' => array(
|
153 |
+
'title' => __( 'Auto-embed Links', 'bbpress' ),
|
154 |
+
'callback' => 'bbp_admin_setting_callback_use_autoembed',
|
155 |
+
'sanitize_callback' => 'intval',
|
156 |
+
'page' => 'bbpress',
|
157 |
+
'args' => array()
|
158 |
+
)
|
159 |
+
),
|
160 |
+
|
161 |
+
/** Theme Packages ****************************************************/
|
162 |
+
|
163 |
+
'bbp_settings_theme_compat' => array(
|
164 |
+
|
165 |
+
// Replies per page setting
|
166 |
+
'_bbp_theme_package_id' => array(
|
167 |
+
'title' => __( 'Current Package', 'bbpress' ),
|
168 |
+
'callback' => 'bbp_admin_setting_callback_subtheme_id',
|
169 |
+
'sanitize_callback' => 'intval',
|
170 |
+
'page' => 'bbpress',
|
171 |
+
'args' => array()
|
172 |
+
)
|
173 |
+
),
|
174 |
+
|
175 |
+
/** Per Page Section **************************************************/
|
176 |
+
|
177 |
+
'bbp_settings_per_page' => array(
|
178 |
+
|
179 |
+
// Replies per page setting
|
180 |
+
'_bbp_topics_per_page' => array(
|
181 |
+
'title' => __( 'Topics', 'bbpress' ),
|
182 |
+
'callback' => 'bbp_admin_setting_callback_topics_per_page',
|
183 |
+
'sanitize_callback' => 'intval',
|
184 |
+
'page' => 'bbpress',
|
185 |
+
'args' => array()
|
186 |
+
),
|
187 |
+
|
188 |
+
// Replies per page setting
|
189 |
+
'_bbp_replies_per_page' => array(
|
190 |
+
'title' => __( 'Replies', 'bbpress' ),
|
191 |
+
'callback' => 'bbp_admin_setting_callback_replies_per_page',
|
192 |
+
'sanitize_callback' => 'intval',
|
193 |
+
'page' => 'bbpress',
|
194 |
+
'args' => array()
|
195 |
+
)
|
196 |
+
),
|
197 |
+
|
198 |
+
/** Per RSS Page Section **********************************************/
|
199 |
+
|
200 |
+
'bbp_settings_per_rss_page' => array(
|
201 |
+
|
202 |
+
// Replies per page setting
|
203 |
+
'_bbp_topics_per_rss_page' => array(
|
204 |
+
'title' => __( 'Topics', 'bbpress' ),
|
205 |
+
'callback' => 'bbp_admin_setting_callback_topics_per_rss_page',
|
206 |
+
'sanitize_callback' => 'intval',
|
207 |
+
'page' => 'bbpress',
|
208 |
+
'args' => array()
|
209 |
+
),
|
210 |
+
|
211 |
+
// Replies per page setting
|
212 |
+
'_bbp_replies_per_rss_page' => array(
|
213 |
+
'title' => __( 'Replies', 'bbpress' ),
|
214 |
+
'callback' => 'bbp_admin_setting_callback_replies_per_rss_page',
|
215 |
+
'sanitize_callback' => 'intval',
|
216 |
+
'page' => 'bbpress',
|
217 |
+
'args' => array()
|
218 |
+
)
|
219 |
+
),
|
220 |
+
|
221 |
+
/** Front Slugs *******************************************************/
|
222 |
+
|
223 |
+
'bbp_settings_root_slugs' => array(
|
224 |
+
|
225 |
+
// Root slug setting
|
226 |
+
'_bbp_root_slug' => array(
|
227 |
+
'title' => __( 'Forums base', 'bbpress' ),
|
228 |
+
'callback' => 'bbp_admin_setting_callback_root_slug',
|
229 |
+
'sanitize_callback' => 'esc_sql',
|
230 |
+
'page' => 'bbpress',
|
231 |
+
'args' => array()
|
232 |
+
),
|
233 |
+
|
234 |
+
// Topic archive setting
|
235 |
+
'_bbp_topic_archive_slug' => array(
|
236 |
+
'title' => __( 'Topics base', 'bbpress' ),
|
237 |
+
'callback' => 'bbp_admin_setting_callback_topic_archive_slug',
|
238 |
+
'sanitize_callback' => 'intval',
|
239 |
+
'page' => 'bbpress',
|
240 |
+
'args' => array()
|
241 |
+
)
|
242 |
+
),
|
243 |
+
|
244 |
+
/** Single Slugs ******************************************************/
|
245 |
+
|
246 |
+
'bbp_settings_single_slugs' => array(
|
247 |
+
|
248 |
+
// Include root setting
|
249 |
+
'_bbp_include_root' => array(
|
250 |
+
'title' => __( 'Forum Prefix', 'bbpress' ),
|
251 |
+
'callback' => 'bbp_admin_setting_callback_include_root',
|
252 |
+
'sanitize_callback' => 'intval',
|
253 |
+
'page' => 'bbpress',
|
254 |
+
'args' => array()
|
255 |
+
),
|
256 |
+
|
257 |
+
// Forum slug setting
|
258 |
+
'_bbp_forum_slug' => array(
|
259 |
+
'title' => __( 'Forum slug', 'bbpress' ),
|
260 |
+
'callback' => 'bbp_admin_setting_callback_forum_slug',
|
261 |
+
'sanitize_callback' => 'sanitize_title',
|
262 |
+
'page' => 'bbpress',
|
263 |
+
'args' => array()
|
264 |
+
),
|
265 |
+
|
266 |
+
// Topic slug setting
|
267 |
+
'_bbp_topic_slug' => array(
|
268 |
+
'title' => __( 'Topic slug', 'bbpress' ),
|
269 |
+
'callback' => 'bbp_admin_setting_callback_topic_slug',
|
270 |
+
'sanitize_callback' => 'sanitize_title',
|
271 |
+
'page' => 'bbpress',
|
272 |
+
'args' => array()
|
273 |
+
),
|
274 |
+
|
275 |
+
// Topic tag slug setting
|
276 |
+
'_bbp_topic_tag_slug' => array(
|
277 |
+
'title' => __( 'Topic tag slug', 'bbpress' ),
|
278 |
+
'callback' => 'bbp_admin_setting_callback_topic_tag_slug',
|
279 |
+
'sanitize_callback' => 'sanitize_title',
|
280 |
+
'page' => 'bbpress',
|
281 |
+
'args' => array()
|
282 |
+
),
|
283 |
+
|
284 |
+
// Reply slug setting
|
285 |
+
'_bbp_reply_slug' => array(
|
286 |
+
'title' => __( 'Reply slug', 'bbpress' ),
|
287 |
+
'callback' => 'bbp_admin_setting_callback_reply_slug',
|
288 |
+
'sanitize_callback' => 'sanitize_title',
|
289 |
+
'page' => 'bbpress',
|
290 |
+
'args' => array()
|
291 |
+
),
|
292 |
+
|
293 |
+
// User slug setting
|
294 |
+
'_bbp_user_slug' => array(
|
295 |
+
'title' => __( 'User slug', 'bbpress' ),
|
296 |
+
'callback' => 'bbp_admin_setting_callback_user_slug',
|
297 |
+
'sanitize_callback' => 'sanitize_title',
|
298 |
+
'page' => 'bbpress',
|
299 |
+
'args' => array()
|
300 |
+
),
|
301 |
+
|
302 |
+
// View slug setting
|
303 |
+
'_bbp_view_slug' => array(
|
304 |
+
'title' => __( 'Topic view slug', 'bbpress' ),
|
305 |
+
'callback' => 'bbp_admin_setting_callback_view_slug',
|
306 |
+
'sanitize_callback' => 'sanitize_title',
|
307 |
+
'page' => 'bbpress',
|
308 |
+
'args' => array()
|
309 |
+
)
|
310 |
+
),
|
311 |
+
|
312 |
+
/** BuddyPress ********************************************************/
|
313 |
+
|
314 |
+
'bbp_settings_buddypress' => array(
|
315 |
+
|
316 |
+
// Are group forums enabled?
|
317 |
+
'_bbp_enable_group_forums' => array(
|
318 |
+
'title' => __( 'Enable Group Forums', 'bbpress' ),
|
319 |
+
'callback' => 'bbp_admin_setting_callback_group_forums',
|
320 |
+
'sanitize_callback' => 'intval',
|
321 |
+
'page' => 'bbpress',
|
322 |
+
'args' => array()
|
323 |
+
),
|
324 |
+
|
325 |
+
// Group forums parent forum ID
|
326 |
+
'_bbp_group_forums_root_id' => array(
|
327 |
+
'title' => __( 'Group Forums Parent', 'bbpress' ),
|
328 |
+
'callback' => 'bbp_admin_setting_callback_group_forums_root_id',
|
329 |
+
'sanitize_callback' => 'intval',
|
330 |
+
'page' => 'bbpress',
|
331 |
+
'args' => array()
|
332 |
+
)
|
333 |
+
),
|
334 |
+
|
335 |
+
/** Akismet ***********************************************************/
|
336 |
+
|
337 |
+
'bbp_settings_akismet' => array(
|
338 |
+
|
339 |
+
// Should we use Akismet
|
340 |
+
'_bbp_enable_akismet' => array(
|
341 |
+
'title' => __( 'Use Akismet', 'bbpress' ),
|
342 |
+
'callback' => 'bbp_admin_setting_callback_akismet',
|
343 |
+
'sanitize_callback' => 'intval',
|
344 |
+
'page' => 'bbpress',
|
345 |
+
'args' => array()
|
346 |
+
)
|
347 |
+
)
|
348 |
+
) );
|
349 |
+
}
|
350 |
+
|
351 |
+
/**
|
352 |
+
* Get settings fields by section.
|
353 |
+
*
|
354 |
+
* @since bbPress (r4001)
|
355 |
+
* @param string $section_id
|
356 |
+
* @return mixed False if section is invalid, array of fields otherwise.
|
357 |
+
*/
|
358 |
+
function bbp_admin_get_settings_fields_for_section( $section_id = '' ) {
|
359 |
+
|
360 |
+
// Bail if section is empty
|
361 |
+
if ( empty( $section_id ) )
|
362 |
+
return false;
|
363 |
+
|
364 |
+
$fields = bbp_admin_get_settings_fields();
|
365 |
+
$retval = isset( $fields[$section_id] ) ? $fields[$section_id] : false;
|
366 |
+
|
367 |
+
return apply_filters( 'bbp_admin_get_settings_fields_for_section', $retval, $section_id );
|
368 |
+
}
|
369 |
+
|
370 |
/** Main Section **************************************************************/
|
371 |
|
372 |
/**
|
520 |
|
521 |
<p><?php _e( 'How your forum content is displayed within your existing theme.', 'bbpress' ); ?></p>
|
522 |
|
523 |
+
<?php
|
524 |
}
|
525 |
|
526 |
/**
|
1070 |
function bbp_converter_setting_callback_dbpass() {
|
1071 |
?>
|
1072 |
|
1073 |
+
<input name="_bbp_converter_db_pass" type="password" id="_bbp_converter_db_pass" value="<?php bbp_form_option( '_bbp_converter_db_pass', DB_PASSWORD ); ?>" class="medium-text" />
|
1074 |
<label for="_bbp_converter_db_pass"><?php _e( 'Password to access the database', 'bbpress' ); ?></label>
|
1075 |
|
1076 |
<?php
|
1353 |
* @since bbPress (r3306)
|
1354 |
*
|
1355 |
* @param string $slug
|
1356 |
+
* @param string $default
|
1357 |
*
|
1358 |
* @uses bbp_get_form_option() To get a sanitized slug string
|
1359 |
*/
|
1424 |
$page_title = sprintf( __( '%s page', 'bbpress' ), $page_data->title );
|
1425 |
$core_slugs[$page_base] = array( 'name' => $page_title, 'default' => $page_data->slug, 'context' => 'BuddyPress' );
|
1426 |
}
|
1427 |
+
}
|
1428 |
}
|
1429 |
|
1430 |
// Set the static
|
1433 |
|
1434 |
// Loop through slugs to check
|
1435 |
foreach( $the_core_slugs as $key => $value ) {
|
1436 |
+
|
1437 |
// Get the slug
|
1438 |
$slug_check = bbp_get_form_option( $key, $value['default'], true );
|
1439 |
|
1440 |
// Compare
|
1441 |
if ( ( $slug != $key ) && ( $slug_check == $this_slug ) ) : ?>
|
1442 |
+
|
1443 |
<span class="attention"><?php printf( __( 'Possible %1$s conflict: <strong>%2$s</strong>', 'bbpress' ), $value['context'], $value['name'] ); ?></span>
|
1444 |
+
|
1445 |
+
<?php endif;
|
1446 |
}
|
1447 |
}
|
bbp-admin/converters/bbPress1.php
CHANGED
@@ -1,27 +1,38 @@
|
|
1 |
<?php
|
2 |
|
3 |
/**
|
4 |
-
*
|
|
|
|
|
5 |
*/
|
6 |
class bbPress1 extends BBP_Converter_Base {
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
function __construct() {
|
8 |
parent::__construct();
|
9 |
$this->setup_globals();
|
10 |
}
|
11 |
|
|
|
|
|
|
|
12 |
public function setup_globals() {
|
13 |
|
14 |
-
/** Forum Section
|
15 |
|
16 |
-
// Forum id
|
17 |
$this->field_map[] = array(
|
18 |
'from_tablename' => 'forums',
|
19 |
'from_fieldname' => 'forum_id',
|
20 |
'to_type' => 'forum',
|
21 |
-
'to_fieldname' => '_bbp_forum_id'
|
22 |
);
|
23 |
|
24 |
-
// Forum parent id
|
25 |
$this->field_map[] = array(
|
26 |
'from_tablename' => 'forums',
|
27 |
'from_fieldname' => 'forum_parent',
|
@@ -29,7 +40,7 @@ class bbPress1 extends BBP_Converter_Base {
|
|
29 |
'to_fieldname' => '_bbp_forum_parent_id'
|
30 |
);
|
31 |
|
32 |
-
// Forum topic count
|
33 |
$this->field_map[] = array(
|
34 |
'from_tablename' => 'forums',
|
35 |
'from_fieldname' => 'topics',
|
@@ -37,7 +48,7 @@ class bbPress1 extends BBP_Converter_Base {
|
|
37 |
'to_fieldname' => '_bbp_topic_count'
|
38 |
);
|
39 |
|
40 |
-
// Forum reply count
|
41 |
$this->field_map[] = array(
|
42 |
'from_tablename' => 'forums',
|
43 |
'from_fieldname' => 'posts',
|
@@ -45,7 +56,7 @@ class bbPress1 extends BBP_Converter_Base {
|
|
45 |
'to_fieldname' => '_bbp_reply_count'
|
46 |
);
|
47 |
|
48 |
-
// Forum topic count
|
49 |
$this->field_map[] = array(
|
50 |
'from_tablename' => 'forums',
|
51 |
'from_fieldname' => 'topics',
|
@@ -53,7 +64,7 @@ class bbPress1 extends BBP_Converter_Base {
|
|
53 |
'to_fieldname' => '_bbp_total_topic_count'
|
54 |
);
|
55 |
|
56 |
-
// Forum reply count
|
57 |
$this->field_map[] = array(
|
58 |
'from_tablename' => 'forums',
|
59 |
'from_fieldname' => 'posts',
|
@@ -69,7 +80,7 @@ class bbPress1 extends BBP_Converter_Base {
|
|
69 |
'to_fieldname' => 'post_title'
|
70 |
);
|
71 |
|
72 |
-
// Forum slug
|
73 |
$this->field_map[] = array(
|
74 |
'from_tablename' => 'forums',
|
75 |
'from_fieldname' => 'forum_slug',
|
@@ -87,7 +98,7 @@ class bbPress1 extends BBP_Converter_Base {
|
|
87 |
'callback_method' => 'callback_null'
|
88 |
);
|
89 |
|
90 |
-
// Forum display order
|
91 |
$this->field_map[] = array(
|
92 |
'from_tablename' => 'forums',
|
93 |
'from_fieldname' => 'forum_order',
|
@@ -95,7 +106,7 @@ class bbPress1 extends BBP_Converter_Base {
|
|
95 |
'to_fieldname' => 'menu_order'
|
96 |
);
|
97 |
|
98 |
-
// Forum
|
99 |
$this->field_map[] = array(
|
100 |
'to_type' => 'forum',
|
101 |
'to_fieldname' => 'post_date',
|
@@ -117,9 +128,9 @@ class bbPress1 extends BBP_Converter_Base {
|
|
117 |
'default' => date('Y-m-d H:i:s')
|
118 |
);
|
119 |
|
120 |
-
/** Topic Section
|
121 |
|
122 |
-
// Topic id
|
123 |
$this->field_map[] = array(
|
124 |
'from_tablename' => 'topics',
|
125 |
'from_fieldname' => 'topic_id',
|
@@ -127,7 +138,7 @@ class bbPress1 extends BBP_Converter_Base {
|
|
127 |
'to_fieldname' => '_bbp_topic_id'
|
128 |
);
|
129 |
|
130 |
-
// Reply count
|
131 |
$this->field_map[] = array(
|
132 |
'from_tablename' => 'topics',
|
133 |
'from_fieldname' => 'topic_posts',
|
@@ -136,7 +147,7 @@ class bbPress1 extends BBP_Converter_Base {
|
|
136 |
'callback_method' => 'callback_topic_reply_count'
|
137 |
);
|
138 |
|
139 |
-
// Forum id
|
140 |
$this->field_map[] = array(
|
141 |
'from_tablename' => 'topics',
|
142 |
'from_fieldname' => 'forum_id',
|
@@ -162,7 +173,7 @@ class bbPress1 extends BBP_Converter_Base {
|
|
162 |
'to_fieldname' => 'post_title'
|
163 |
);
|
164 |
|
165 |
-
// Topic slug
|
166 |
$this->field_map[] = array(
|
167 |
'from_tablename' => 'topics',
|
168 |
'from_fieldname' => 'topic_title',
|
@@ -172,30 +183,43 @@ class bbPress1 extends BBP_Converter_Base {
|
|
172 |
);
|
173 |
|
174 |
// Topic content.
|
|
|
175 |
$this->field_map[] = array(
|
176 |
'from_tablename' => 'posts',
|
177 |
'from_fieldname' => 'post_text',
|
178 |
'join_tablename' => 'topics',
|
179 |
'join_type' => 'INNER',
|
180 |
-
'join_expression' => 'USING (topic_id) WHERE posts.post_position
|
181 |
'to_type' => 'topic',
|
182 |
'to_fieldname' => 'post_content',
|
183 |
'callback_method' => 'callback_html'
|
184 |
);
|
185 |
|
186 |
// Topic status.
|
|
|
187 |
$this->field_map[] = array(
|
188 |
'from_tablename' => 'posts',
|
189 |
'from_fieldname' => 'post_status',
|
190 |
'join_tablename' => 'topics',
|
191 |
'join_type' => 'INNER',
|
192 |
-
'join_expression' => 'USING (topic_id) WHERE posts.post_position
|
193 |
'to_type' => 'topic',
|
194 |
'to_fieldname' => 'post_status',
|
195 |
'callback_method' => 'callback_status'
|
196 |
);
|
197 |
|
198 |
-
//
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
199 |
$this->field_map[] = array(
|
200 |
'from_tablename' => 'topics',
|
201 |
'from_fieldname' => 'forum_id',
|
@@ -204,7 +228,7 @@ class bbPress1 extends BBP_Converter_Base {
|
|
204 |
'callback_method' => 'callback_forumid'
|
205 |
);
|
206 |
|
207 |
-
// Topic
|
208 |
$this->field_map[] = array(
|
209 |
'from_tablename' => 'topics',
|
210 |
'from_fieldname' => 'topic_start_time',
|
@@ -258,7 +282,7 @@ class bbPress1 extends BBP_Converter_Base {
|
|
258 |
'to_fieldname' => 'taxonomy'
|
259 |
);
|
260 |
|
261 |
-
//
|
262 |
$this->field_map[] = array(
|
263 |
'from_tablename' => 'terms',
|
264 |
'from_fieldname' => 'name',
|
@@ -279,7 +303,7 @@ class bbPress1 extends BBP_Converter_Base {
|
|
279 |
'to_fieldname' => '_bbp_post_id'
|
280 |
);
|
281 |
|
282 |
-
// Topic id
|
283 |
$this->field_map[] = array(
|
284 |
'from_tablename' => 'posts',
|
285 |
'from_fieldname' => 'topic_id',
|
@@ -288,22 +312,22 @@ class bbPress1 extends BBP_Converter_Base {
|
|
288 |
'callback_method' => 'callback_topicid'
|
289 |
);
|
290 |
|
291 |
-
// Forum id
|
292 |
$this->field_map[] = array(
|
293 |
'from_tablename' => 'posts',
|
294 |
'from_fieldname' => 'forum_id',
|
295 |
'to_type' => 'reply',
|
296 |
'to_fieldname' => '_bbp_forum_id',
|
297 |
-
'callback_method' => '
|
298 |
);
|
299 |
|
300 |
-
// Topic
|
301 |
$this->field_map[] = array(
|
302 |
'from_tablename' => 'topics',
|
303 |
'from_fieldname' => 'topic_title',
|
304 |
'join_tablename' => 'posts',
|
305 |
'join_type' => 'INNER',
|
306 |
-
'join_expression' => 'USING (topic_id) WHERE posts.post_position
|
307 |
'to_type' => 'reply',
|
308 |
'to_fieldname' => 'post_title',
|
309 |
'callback_method' => 'callback_reply_title'
|
@@ -317,7 +341,7 @@ class bbPress1 extends BBP_Converter_Base {
|
|
317 |
'to_fieldname' => '_bbp_author_ip'
|
318 |
);
|
319 |
|
320 |
-
//
|
321 |
$this->field_map[] = array(
|
322 |
'from_tablename' => 'posts',
|
323 |
'from_fieldname' => 'poster_id',
|
@@ -335,7 +359,7 @@ class bbPress1 extends BBP_Converter_Base {
|
|
335 |
'callback_method' => 'callback_status'
|
336 |
);
|
337 |
|
338 |
-
//
|
339 |
$this->field_map[] = array(
|
340 |
'from_tablename' => 'posts',
|
341 |
'from_fieldname' => 'post_text',
|
@@ -344,6 +368,14 @@ class bbPress1 extends BBP_Converter_Base {
|
|
344 |
'callback_method' => 'callback_html'
|
345 |
);
|
346 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
347 |
// Topic id. If no parent, than 0.
|
348 |
$this->field_map[] = array(
|
349 |
'from_tablename' => 'posts',
|
@@ -353,7 +385,7 @@ class bbPress1 extends BBP_Converter_Base {
|
|
353 |
'callback_method' => 'callback_topicid'
|
354 |
);
|
355 |
|
356 |
-
//
|
357 |
$this->field_map[] = array(
|
358 |
'from_tablename' => 'posts',
|
359 |
'from_fieldname' => 'post_time',
|
1 |
<?php
|
2 |
|
3 |
/**
|
4 |
+
* bbPress 1.1 Converter
|
5 |
+
*
|
6 |
+
* @since bbPress (rxxxx)
|
7 |
*/
|
8 |
class bbPress1 extends BBP_Converter_Base {
|
9 |
+
|
10 |
+
/**
|
11 |
+
* Main constructor
|
12 |
+
*
|
13 |
+
* @uses bbPress1::setup_globals()
|
14 |
+
*/
|
15 |
function __construct() {
|
16 |
parent::__construct();
|
17 |
$this->setup_globals();
|
18 |
}
|
19 |
|
20 |
+
/**
|
21 |
+
* Sets up the field mappings
|
22 |
+
*/
|
23 |
public function setup_globals() {
|
24 |
|
25 |
+
/** Forum Section *****************************************************/
|
26 |
|
27 |
+
// Forum id (Stored in postmeta)
|
28 |
$this->field_map[] = array(
|
29 |
'from_tablename' => 'forums',
|
30 |
'from_fieldname' => 'forum_id',
|
31 |
'to_type' => 'forum',
|
32 |
+
'to_fieldname' => '_bbp_forum_id'
|
33 |
);
|
34 |
|
35 |
+
// Forum parent id (If no parent, 0. Stored in postmeta)
|
36 |
$this->field_map[] = array(
|
37 |
'from_tablename' => 'forums',
|
38 |
'from_fieldname' => 'forum_parent',
|
40 |
'to_fieldname' => '_bbp_forum_parent_id'
|
41 |
);
|
42 |
|
43 |
+
// Forum topic count (Stored in postmeta)
|
44 |
$this->field_map[] = array(
|
45 |
'from_tablename' => 'forums',
|
46 |
'from_fieldname' => 'topics',
|
48 |
'to_fieldname' => '_bbp_topic_count'
|
49 |
);
|
50 |
|
51 |
+
// Forum reply count (Stored in postmeta)
|
52 |
$this->field_map[] = array(
|
53 |
'from_tablename' => 'forums',
|
54 |
'from_fieldname' => 'posts',
|
56 |
'to_fieldname' => '_bbp_reply_count'
|
57 |
);
|
58 |
|
59 |
+
// Forum topic count (Stored in postmeta)
|
60 |
$this->field_map[] = array(
|
61 |
'from_tablename' => 'forums',
|
62 |
'from_fieldname' => 'topics',
|
64 |
'to_fieldname' => '_bbp_total_topic_count'
|
65 |
);
|
66 |
|
67 |
+
// Forum reply count (Stored in postmeta)
|
68 |
$this->field_map[] = array(
|
69 |
'from_tablename' => 'forums',
|
70 |
'from_fieldname' => 'posts',
|
80 |
'to_fieldname' => 'post_title'
|
81 |
);
|
82 |
|
83 |
+
// Forum slug (Clean name to avoid confilcts)
|
84 |
$this->field_map[] = array(
|
85 |
'from_tablename' => 'forums',
|
86 |
'from_fieldname' => 'forum_slug',
|
98 |
'callback_method' => 'callback_null'
|
99 |
);
|
100 |
|
101 |
+
// Forum display order (Starts from 1)
|
102 |
$this->field_map[] = array(
|
103 |
'from_tablename' => 'forums',
|
104 |
'from_fieldname' => 'forum_order',
|
106 |
'to_fieldname' => 'menu_order'
|
107 |
);
|
108 |
|
109 |
+
// Forum dates.
|
110 |
$this->field_map[] = array(
|
111 |
'to_type' => 'forum',
|
112 |
'to_fieldname' => 'post_date',
|
128 |
'default' => date('Y-m-d H:i:s')
|
129 |
);
|
130 |
|
131 |
+
/** Topic Section *****************************************************/
|
132 |
|
133 |
+
// Topic id (Stored in postmeta)
|
134 |
$this->field_map[] = array(
|
135 |
'from_tablename' => 'topics',
|
136 |
'from_fieldname' => 'topic_id',
|
138 |
'to_fieldname' => '_bbp_topic_id'
|
139 |
);
|
140 |
|
141 |
+
// Reply count (Stored in postmeta)
|
142 |
$this->field_map[] = array(
|
143 |
'from_tablename' => 'topics',
|
144 |
'from_fieldname' => 'topic_posts',
|
147 |
'callback_method' => 'callback_topic_reply_count'
|
148 |
);
|
149 |
|
150 |
+
// Forum id (Stored in postmeta)
|
151 |
$this->field_map[] = array(
|
152 |
'from_tablename' => 'topics',
|
153 |
'from_fieldname' => 'forum_id',
|
173 |
'to_fieldname' => 'post_title'
|
174 |
);
|
175 |
|
176 |
+
// Topic slug (Clean name to avoid conflicts)
|
177 |
$this->field_map[] = array(
|
178 |
'from_tablename' => 'topics',
|
179 |
'from_fieldname' => 'topic_title',
|
183 |
);
|
184 |
|
185 |
// Topic content.
|
186 |
+
// Note: We join the posts table because topics do not have content.
|
187 |
$this->field_map[] = array(
|
188 |
'from_tablename' => 'posts',
|
189 |
'from_fieldname' => 'post_text',
|
190 |
'join_tablename' => 'topics',
|
191 |
'join_type' => 'INNER',
|
192 |
+
'join_expression' => 'USING (topic_id) WHERE posts.post_position IN (0,1)',
|
193 |
'to_type' => 'topic',
|
194 |
'to_fieldname' => 'post_content',
|
195 |
'callback_method' => 'callback_html'
|
196 |
);
|
197 |
|
198 |
// Topic status.
|
199 |
+
// Note: post_status is more accurate than topic_status
|
200 |
$this->field_map[] = array(
|
201 |
'from_tablename' => 'posts',
|
202 |
'from_fieldname' => 'post_status',
|
203 |
'join_tablename' => 'topics',
|
204 |
'join_type' => 'INNER',
|
205 |
+
'join_expression' => 'USING (topic_id) WHERE posts.post_position IN (0,1)',
|
206 |
'to_type' => 'topic',
|
207 |
'to_fieldname' => 'post_status',
|
208 |
'callback_method' => 'callback_status'
|
209 |
);
|
210 |
|
211 |
+
// Author ip.
|
212 |
+
$this->field_map[] = array(
|
213 |
+
'from_tablename' => 'posts',
|
214 |
+
'from_fieldname' => 'poster_ip',
|
215 |
+
'join_tablename' => 'topics',
|
216 |
+
'join_type' => 'INNER',
|
217 |
+
'join_expression' => 'USING (topic_id) WHERE posts.post_position IN (0,1)',
|
218 |
+
'to_type' => 'topic',
|
219 |
+
'to_fieldname' => '_bbp_author_ip'
|
220 |
+
);
|
221 |
+
|
222 |
+
// Forum id (If no parent, 0)
|
223 |
$this->field_map[] = array(
|
224 |
'from_tablename' => 'topics',
|
225 |
'from_fieldname' => 'forum_id',
|
228 |
'callback_method' => 'callback_forumid'
|
229 |
);
|
230 |
|
231 |
+
// Topic dates.
|
232 |
$this->field_map[] = array(
|
233 |
'from_tablename' => 'topics',
|
234 |
'from_fieldname' => 'topic_start_time',
|
282 |
'to_fieldname' => 'taxonomy'
|
283 |
);
|
284 |
|
285 |
+
// Term text.
|
286 |
$this->field_map[] = array(
|
287 |
'from_tablename' => 'terms',
|
288 |
'from_fieldname' => 'name',
|
303 |
'to_fieldname' => '_bbp_post_id'
|
304 |
);
|
305 |
|
306 |
+
// Topic id (Stores in postmeta)
|
307 |
$this->field_map[] = array(
|
308 |
'from_tablename' => 'posts',
|
309 |
'from_fieldname' => 'topic_id',
|
312 |
'callback_method' => 'callback_topicid'
|
313 |
);
|
314 |
|
315 |
+
// Forum id (Stored in postmeta)
|
316 |
$this->field_map[] = array(
|
317 |
'from_tablename' => 'posts',
|
318 |
'from_fieldname' => 'forum_id',
|
319 |
'to_type' => 'reply',
|
320 |
'to_fieldname' => '_bbp_forum_id',
|
321 |
+
'callback_method' => 'callback_forumid'
|
322 |
);
|
323 |
|
324 |
+
// Topic title (for reply title).
|
325 |
$this->field_map[] = array(
|
326 |
'from_tablename' => 'topics',
|
327 |
'from_fieldname' => 'topic_title',
|
328 |
'join_tablename' => 'posts',
|
329 |
'join_type' => 'INNER',
|
330 |
+
'join_expression' => 'USING (topic_id) WHERE posts.post_position NOT IN (0,1)',
|
331 |
'to_type' => 'reply',
|
332 |
'to_fieldname' => 'post_title',
|
333 |
'callback_method' => 'callback_reply_title'
|
341 |
'to_fieldname' => '_bbp_author_ip'
|
342 |
);
|
343 |
|
344 |
+
// Reply author.
|
345 |
$this->field_map[] = array(
|
346 |
'from_tablename' => 'posts',
|
347 |
'from_fieldname' => 'poster_id',
|
359 |
'callback_method' => 'callback_status'
|
360 |
);
|
361 |
|
362 |
+
// Reply content.
|
363 |
$this->field_map[] = array(
|
364 |
'from_tablename' => 'posts',
|
365 |
'from_fieldname' => 'post_text',
|
368 |
'callback_method' => 'callback_html'
|
369 |
);
|
370 |
|
371 |
+
// Reply order.
|
372 |
+
$this->field_map[] = array(
|
373 |
+
'from_tablename' => 'posts',
|
374 |
+
'from_fieldname' => 'post_position',
|
375 |
+
'to_type' => 'reply',
|
376 |
+
'to_fieldname' => 'menu_order'
|
377 |
+
);
|
378 |
+
|
379 |
// Topic id. If no parent, than 0.
|
380 |
$this->field_map[] = array(
|
381 |
'from_tablename' => 'posts',
|
385 |
'callback_method' => 'callback_topicid'
|
386 |
);
|
387 |
|
388 |
+
// Reply dates.
|
389 |
$this->field_map[] = array(
|
390 |
'from_tablename' => 'posts',
|
391 |
'from_fieldname' => 'post_time',
|
bbp-admin/images/menu-2x.png
ADDED
Binary file
|
bbp-admin/images/menu.png
CHANGED
Binary file
|
bbp-includes/bbp-common-template.php
CHANGED
@@ -391,6 +391,7 @@ function bbp_is_topic_tag_edit() {
|
|
391 |
*
|
392 |
* @since bbPress (r3311)
|
393 |
*
|
|
|
394 |
* @uses get_post_type()
|
395 |
* @uses bbp_get_forum_post_type()
|
396 |
* @uses bbp_get_topic_post_type()
|
@@ -398,20 +399,20 @@ function bbp_is_topic_tag_edit() {
|
|
398 |
*
|
399 |
* @return bool
|
400 |
*/
|
401 |
-
function bbp_is_custom_post_type() {
|
402 |
|
403 |
// Assume false
|
404 |
$retval = false;
|
405 |
|
406 |
// Viewing one of the bbPress post types
|
407 |
-
if ( in_array( get_post_type(), array(
|
408 |
bbp_get_forum_post_type(),
|
409 |
bbp_get_topic_post_type(),
|
410 |
bbp_get_reply_post_type()
|
411 |
) ) )
|
412 |
$retval = true;
|
413 |
|
414 |
-
return (bool) apply_filters( 'bbp_is_custom_post_type', $retval );
|
415 |
}
|
416 |
|
417 |
/**
|
391 |
*
|
392 |
* @since bbPress (r3311)
|
393 |
*
|
394 |
+
* @param mixed $the_post Optional. Post object or post ID.
|
395 |
* @uses get_post_type()
|
396 |
* @uses bbp_get_forum_post_type()
|
397 |
* @uses bbp_get_topic_post_type()
|
399 |
*
|
400 |
* @return bool
|
401 |
*/
|
402 |
+
function bbp_is_custom_post_type( $the_post = false ) {
|
403 |
|
404 |
// Assume false
|
405 |
$retval = false;
|
406 |
|
407 |
// Viewing one of the bbPress post types
|
408 |
+
if ( in_array( get_post_type( $the_post ), array(
|
409 |
bbp_get_forum_post_type(),
|
410 |
bbp_get_topic_post_type(),
|
411 |
bbp_get_reply_post_type()
|
412 |
) ) )
|
413 |
$retval = true;
|
414 |
|
415 |
+
return (bool) apply_filters( 'bbp_is_custom_post_type', $retval, $the_post );
|
416 |
}
|
417 |
|
418 |
/**
|
bbp-includes/bbp-core-cache.php
ADDED
@@ -0,0 +1,120 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/**
|
4 |
+
* bbPress Cache Helpers
|
5 |
+
*
|
6 |
+
* Helper functions used to communicate with WordPress's various caches. Many
|
7 |
+
* of these functions are used to work around specific WordPress nuances. They
|
8 |
+
* are subject to changes, tweaking, and will need iteration as performance
|
9 |
+
* improvements are made to WordPress core.
|
10 |
+
*
|
11 |
+
* @package bbPress
|
12 |
+
* @subpackage Cache
|
13 |
+
*/
|
14 |
+
|
15 |
+
// Exit if accessed directly
|
16 |
+
if ( !defined( 'ABSPATH' ) ) exit;
|
17 |
+
|
18 |
+
/** Helpers *******************************************************************/
|
19 |
+
|
20 |
+
/**
|
21 |
+
* Skip invalidation of child post content when editing a parent.
|
22 |
+
*
|
23 |
+
* This prevents invalidating caches for topics and replies when editing a forum
|
24 |
+
* or a topic. Without this in place, WordPress will attempt to invalidate all
|
25 |
+
* child posts whenever a parent post is modified. This can cause thousands of
|
26 |
+
* cache invalidations to occur on a single edit, which is no good for anyone.
|
27 |
+
*
|
28 |
+
* @since bbPress (r4011)
|
29 |
+
*
|
30 |
+
* @package bbPress
|
31 |
+
* @subpackage Cache
|
32 |
+
*/
|
33 |
+
class BBP_Skip_Children {
|
34 |
+
|
35 |
+
/**
|
36 |
+
* @var int Post ID being updated
|
37 |
+
*/
|
38 |
+
private $updating_post = 0;
|
39 |
+
|
40 |
+
/**
|
41 |
+
* @var bool The original value of $_wp_suspend_cache_invalidation global
|
42 |
+
*/
|
43 |
+
private $original_cache_invalidation = false;
|
44 |
+
|
45 |
+
/** Methods ***************************************************************/
|
46 |
+
|
47 |
+
/**
|
48 |
+
* Hook into the 'pre_post_update' action.
|
49 |
+
*
|
50 |
+
* @since bbPress (r4011)
|
51 |
+
*/
|
52 |
+
public function __construct() {
|
53 |
+
add_action( 'pre_post_update', array( $this, 'pre_post_update' ) );
|
54 |
+
}
|
55 |
+
|
56 |
+
/**
|
57 |
+
* Only clean post caches for main bbPress posts.
|
58 |
+
*
|
59 |
+
* Check that the post being updated is a bbPress post type, saves the
|
60 |
+
* post ID to be used later, and adds an action to 'clean_post_cache' that
|
61 |
+
* prevents child post caches from being cleared.
|
62 |
+
*
|
63 |
+
* @since bbPress (r4011)
|
64 |
+
*
|
65 |
+
* @param int $post_id The post ID being updated
|
66 |
+
* @return If invalid post data
|
67 |
+
*/
|
68 |
+
public function pre_post_update( $post_id = 0 ) {
|
69 |
+
|
70 |
+
// Bail if post ID is not a bbPress post type
|
71 |
+
if ( empty( $post_id ) || ! bbp_is_custom_post_type( $post_id ) )
|
72 |
+
return;
|
73 |
+
|
74 |
+
// Store the $post_id
|
75 |
+
$this->updating_post = $post_id;
|
76 |
+
|
77 |
+
// Skip related post cache invalidation. This prevents invalidating the
|
78 |
+
// caches of the child posts when there is no reason to do so.
|
79 |
+
add_action( 'clean_post_cache', array( $this, 'skip_related_posts' ) );
|
80 |
+
}
|
81 |
+
|
82 |
+
/**
|
83 |
+
* Skip cache invalidation of related posts if the post ID being invalidated
|
84 |
+
* is not the one that was just updated.
|
85 |
+
*
|
86 |
+
* @since bbPress (r4011)
|
87 |
+
*
|
88 |
+
* @param int $post_id The post ID of the cache being invalidated
|
89 |
+
* @return If invalid post data
|
90 |
+
*/
|
91 |
+
public function skip_related_posts( $post_id = 0 ) {
|
92 |
+
|
93 |
+
// Bail if this post is not the current bbPress post
|
94 |
+
if ( empty( $post_id ) || ( $this->updating_post !== $post_id ) )
|
95 |
+
return;
|
96 |
+
|
97 |
+
// Stash the current cache invalidation value in a variable, so we can
|
98 |
+
// restore back to it nicely in the future.
|
99 |
+
global $_wp_suspend_cache_invalidation;
|
100 |
+
|
101 |
+
$this->original_cache_invalidation = $_wp_suspend_cache_invalidation;
|
102 |
+
|
103 |
+
// Turn off cache invalidation
|
104 |
+
wp_suspend_cache_invalidation( true );
|
105 |
+
|
106 |
+
// Restore cache invalidation
|
107 |
+
add_action( 'wp_insert_post', array( $this, 'restore_cache_invalidation' ) );
|
108 |
+
}
|
109 |
+
|
110 |
+
/**
|
111 |
+
* Restore the cache invalidation to its previous value.
|
112 |
+
*
|
113 |
+
* @since bbPress (r4011)
|
114 |
+
* @uses wp_suspend_cache_invalidation()
|
115 |
+
*/
|
116 |
+
public function restore_cache_invalidation() {
|
117 |
+
wp_suspend_cache_invalidation( $this->original_cache_invalidation );
|
118 |
+
}
|
119 |
+
}
|
120 |
+
new BBP_Skip_Children();
|
bbp-includes/bbp-reply-functions.php
CHANGED
@@ -1570,8 +1570,9 @@ function bbp_update_reply_position( $reply_id = 0, $reply_position = 0 ) {
|
|
1570 |
function bbp_get_reply_position_raw( $reply_id = 0, $topic_id = 0 ) {
|
1571 |
|
1572 |
// Get required data
|
1573 |
-
$reply_id
|
1574 |
-
$topic_id
|
|
|
1575 |
|
1576 |
// If reply is actually the first post in a topic, return 0
|
1577 |
if ( $reply_id != $topic_id ) {
|
@@ -1592,9 +1593,7 @@ function bbp_get_reply_position_raw( $reply_id = 0, $topic_id = 0 ) {
|
|
1592 |
$reply_position++;
|
1593 |
}
|
1594 |
}
|
1595 |
-
} else {
|
1596 |
-
$reply_position = 0;
|
1597 |
}
|
1598 |
|
1599 |
-
return $reply_position;
|
1600 |
}
|
1570 |
function bbp_get_reply_position_raw( $reply_id = 0, $topic_id = 0 ) {
|
1571 |
|
1572 |
// Get required data
|
1573 |
+
$reply_id = bbp_get_reply_id( $reply_id );
|
1574 |
+
$topic_id = !empty( $topic_id ) ? bbp_get_topic_id( $topic_id ) : bbp_get_reply_topic_id( $reply_id );
|
1575 |
+
$reply_position = 0;
|
1576 |
|
1577 |
// If reply is actually the first post in a topic, return 0
|
1578 |
if ( $reply_id != $topic_id ) {
|
1593 |
$reply_position++;
|
1594 |
}
|
1595 |
}
|
|
|
|
|
1596 |
}
|
1597 |
|
1598 |
+
return (int) $reply_position;
|
1599 |
}
|
bbp-languages/bbpress.pot
CHANGED
@@ -1,3075 +1,3601 @@
|
|
1 |
-
# Copyright (C)
|
2 |
# This file is distributed under the same license as the bbPress package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: bbPress 2.
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/bbpress\n"
|
7 |
-
"POT-Creation-Date:
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
-
"PO-Revision-Date:
|
12 |
-
"Last-Translator:
|
13 |
-
"Language-Team:
|
14 |
|
15 |
-
#: bbp-admin/bbp-functions.php:
|
16 |
-
|
|
|
17 |
msgstr ""
|
18 |
|
19 |
-
#: bbp-admin/bbp-
|
20 |
-
msgid "
|
21 |
msgstr ""
|
22 |
|
23 |
-
#: bbp-admin/bbp-functions.php:
|
24 |
-
|
|
|
25 |
msgstr ""
|
26 |
|
27 |
-
#: bbp-admin/bbp-
|
28 |
-
msgid "
|
29 |
msgstr ""
|
30 |
|
31 |
-
#: bbp-admin/bbp-functions.php:
|
32 |
-
|
|
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: bbp-admin/bbp-
|
36 |
-
msgid "
|
37 |
msgstr ""
|
38 |
|
39 |
-
#: bbp-admin/bbp-
|
40 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
41 |
msgstr ""
|
42 |
|
43 |
-
#: bbp-admin/bbp-
|
44 |
-
|
|
|
45 |
msgstr ""
|
46 |
|
47 |
-
#: bbp-admin/bbp-
|
48 |
-
msgid "
|
49 |
msgstr ""
|
50 |
|
51 |
-
#: bbp-admin/bbp-
|
52 |
-
msgid "
|
53 |
msgstr ""
|
54 |
|
55 |
-
#: bbp-admin/bbp-
|
56 |
-
|
57 |
-
#: bbp-admin/bbp-functions.php:340 bbp-admin/bbp-functions.php:372
|
58 |
-
#: bbp-admin/bbp-functions.php:418 bbp-admin/bbp-functions.php:497
|
59 |
-
#: bbp-admin/bbp-functions.php:579 bbp-admin/bbp-functions.php:711
|
60 |
-
#: bbp-admin/bbp-functions.php:770 bbp-admin/bbp-functions.php:827
|
61 |
-
msgid "Failed!"
|
62 |
msgstr ""
|
63 |
|
64 |
-
#: bbp-admin/bbp-
|
65 |
-
|
66 |
-
#: bbp-admin/bbp-functions.php:354 bbp-admin/bbp-functions.php:400
|
67 |
-
#: bbp-admin/bbp-functions.php:752 bbp-admin/bbp-functions.php:810
|
68 |
-
#: bbp-admin/bbp-functions.php:907
|
69 |
-
msgid "Complete!"
|
70 |
msgstr ""
|
71 |
|
72 |
-
#: bbp-admin/bbp-
|
73 |
-
msgid "
|
|
|
|
|
|
|
|
|
74 |
msgstr ""
|
75 |
|
76 |
-
#: bbp-admin/bbp-
|
77 |
msgid ""
|
78 |
-
"
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: bbp-admin/bbp-
|
82 |
-
msgid "
|
|
|
|
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: bbp-admin/bbp-
|
86 |
-
msgid "
|
|
|
|
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: bbp-admin/bbp-
|
90 |
-
msgid "
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: bbp-admin/bbp-
|
94 |
-
msgid "
|
|
|
|
|
|
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: bbp-admin/bbp-
|
98 |
-
|
|
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: bbp-admin/bbp-
|
102 |
-
msgid "
|
103 |
msgstr ""
|
104 |
|
105 |
-
#: bbp-admin/bbp-
|
106 |
-
msgid "
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: bbp-admin/bbp-
|
110 |
-
msgid "
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: bbp-admin/bbp-
|
114 |
-
msgid "
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: bbp-admin/bbp-
|
118 |
-
msgid "
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: bbp-admin/bbp-
|
122 |
-
msgid ""
|
123 |
-
"The topic title field and the big topic editing area are fixed in place, but "
|
124 |
-
"you can reposition all the other boxes using drag and drop, and can minimize "
|
125 |
-
"or expand them by clicking the title bar of the box. Use the Screen Options "
|
126 |
-
"tab to unhide more boxes (Topic Tags, Topic Attributes, or Slug) or to "
|
127 |
-
"choose a 1- or 2-column layout for this screen."
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: bbp-admin/bbp-
|
131 |
-
msgid ""
|
132 |
-
"<strong>Title</strong> - Enter a title for your topic. After you enter a "
|
133 |
-
"title, you will see the permalink below, which you can edit."
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: bbp-admin/bbp-
|
137 |
-
msgid ""
|
138 |
-
"<strong>Post editor</strong> - Enter the text for your topic. There are two "
|
139 |
-
"modes of editing: Visual and HTML. Choose the mode by clicking on the "
|
140 |
-
"appropriate tab. Visual mode gives you a WYSIWYG editor. Click the last icon "
|
141 |
-
"in the row to get a second row of controls. The screen icon just before that "
|
142 |
-
"allows you to expand the edit box to full screen. The HTML mode allows you "
|
143 |
-
"to enter raw HTML along with your forum text. You can insert media files by "
|
144 |
-
"clicking the icons above the post editor and following the directions."
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: bbp-admin/bbp-
|
148 |
-
msgid ""
|
149 |
-
"<strong>Topic Attributes</strong> - Select the attributes that your topic "
|
150 |
-
"should have. The Forum dropdown determines the parent forum that the topic "
|
151 |
-
"belongs to. Select the forum or category from the dropdown, or leave the "
|
152 |
-
"default (No Forum) to post the topic without an assigned forum."
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: bbp-admin/bbp-
|
156 |
-
msgid ""
|
157 |
-
"<strong>Publish</strong> - The Publish box will allow you to save your topic "
|
158 |
-
"as Draft or Pending Review. You may Preview your topic before it is "
|
159 |
-
"published as well. The Visibility will determine whether the topic is "
|
160 |
-
"Public, Password protected (requiring a password on the site to view) or "
|
161 |
-
"Private (only the author will have access to it). Topics may be published "
|
162 |
-
"immediately by clicking the dropdown, or at a specific date and time by "
|
163 |
-
"clicking the Edit link."
|
164 |
msgstr ""
|
165 |
|
166 |
-
#: bbp-admin/bbp-
|
167 |
-
msgid ""
|
168 |
-
"<strong>Topic Tags</strong> - You can assign keywords to your topics using "
|
169 |
-
"Topic Tags. Unlike categories, tags have no hierarchy, meaning there is no "
|
170 |
-
"relationship from one tag to another. Topics can be added and modified "
|
171 |
-
"further from the Topic Tags screen."
|
172 |
msgstr ""
|
173 |
|
174 |
-
#: bbp-admin/bbp-
|
175 |
-
msgid ""
|
176 |
-
"<strong>Revisions</strong> - Revisions show past versions of the saved "
|
177 |
-
"topic. Each revision can be compared to the current version, or another "
|
178 |
-
"revision. Revisions can also be restored to the current version."
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: bbp-admin/bbp-
|
182 |
-
|
183 |
-
#: bbp-admin/bbp-forums.php:157 bbp-admin/bbp-replies.php:122
|
184 |
-
#: bbp-admin/bbp-replies.php:163
|
185 |
-
msgid "<strong>For more information:</strong>"
|
186 |
msgstr ""
|
187 |
|
188 |
-
#: bbp-admin/bbp-
|
189 |
-
|
190 |
-
#: bbp-admin/bbp-forums.php:160 bbp-admin/bbp-replies.php:125
|
191 |
-
#: bbp-admin/bbp-replies.php:166
|
192 |
-
msgid "<a href=\"http://bbpress.org/documentation/\">bbPress Documentation</a>"
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: bbp-admin/bbp-
|
196 |
-
|
197 |
-
#: bbp-admin/bbp-forums.php:161 bbp-admin/bbp-replies.php:126
|
198 |
-
#: bbp-admin/bbp-replies.php:167
|
199 |
-
msgid "<a href=\"http://bbpress.org/forums/\">bbPress Support Forums</a>"
|
200 |
msgstr ""
|
201 |
|
202 |
-
#: bbp-admin/bbp-
|
203 |
-
msgid "
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: bbp-admin/bbp-
|
207 |
-
|
208 |
-
msgid "You can customize the display of this screen in a number of ways:"
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: bbp-admin/bbp-
|
212 |
-
msgid ""
|
213 |
-
"You can hide/display columns based on your needs and decide how many topics "
|
214 |
-
"to list per screen using the Screen Options tab."
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: bbp-admin/bbp-
|
218 |
-
msgid ""
|
219 |
-
"You can filter the list of topics by topics status using the text links in "
|
220 |
-
"the upper left to show All, Published, Pending Review, Draft, or Trashed "
|
221 |
-
"topics. The default view is to show all topics."
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: bbp-admin/bbp-
|
225 |
-
msgid ""
|
226 |
-
"You can view topics in a simple title list or with an excerpt. Choose the "
|
227 |
-
"view you prefer by clicking on the icons at the top of the list on the right."
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: bbp-admin/bbp-
|
231 |
-
msgid ""
|
232 |
-
"You can refine the list to show only topics from a specific month by using "
|
233 |
-
"the dropdown menus above the topics list. Click the Filter button after "
|
234 |
-
"making your selection."
|
235 |
msgstr ""
|
236 |
|
237 |
-
#: bbp-admin/bbp-
|
238 |
-
msgid ""
|
239 |
-
"You can also show only topics from a specific parent forum by using the "
|
240 |
-
"parent forum dropdown above the topics list and selecting the parent forum. "
|
241 |
-
"Click the Filter button after making your selection."
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: bbp-admin/bbp-
|
245 |
-
msgid ""
|
246 |
-
"You can refine the list by clicking on the topic creator in the topics list."
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: bbp-admin/bbp-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
250 |
msgid ""
|
251 |
-
"
|
252 |
-
"
|
|
|
|
|
|
|
|
|
|
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: bbp-admin/bbp-
|
|
|
256 |
msgid ""
|
257 |
-
"
|
258 |
-
"
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: bbp-admin/bbp-
|
|
|
262 |
msgid ""
|
263 |
-
"
|
264 |
-
"
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: bbp-admin/bbp-
|
268 |
-
msgid "
|
|
|
|
|
|
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: bbp-admin/bbp-
|
|
|
272 |
msgid ""
|
273 |
-
"
|
274 |
-
"
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: bbp-admin/bbp-
|
278 |
msgid ""
|
279 |
-
"
|
280 |
-
"
|
281 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: bbp-admin/bbp-
|
285 |
msgid ""
|
286 |
-
"
|
287 |
-
"
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: bbp-admin/bbp-
|
291 |
msgid ""
|
292 |
-
"
|
293 |
-
"
|
294 |
-
"Apply. You will be able to change the metadata for all selected topics at "
|
295 |
-
"once. To remove a topic from the grouping, just click the x next to its name "
|
296 |
-
"in the Bulk Edit area that appears."
|
297 |
msgstr ""
|
298 |
|
299 |
-
#: bbp-admin/bbp-
|
300 |
msgid ""
|
301 |
-
"
|
302 |
-
"
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: bbp-admin/bbp-
|
306 |
msgid ""
|
307 |
-
"
|
308 |
-
"
|
309 |
-
"hide columns in the table (Description, Slug, and Topics)."
|
310 |
msgstr ""
|
311 |
|
312 |
-
#: bbp-admin/bbp-
|
313 |
msgid ""
|
314 |
-
"
|
315 |
-
"
|
316 |
-
"
|
|
|
|
|
|
|
|
|
|
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: bbp-admin/bbp-
|
|
|
320 |
msgid ""
|
321 |
-
"
|
322 |
-
"
|
323 |
-
"
|
324 |
-
"index."
|
325 |
msgstr ""
|
326 |
|
327 |
-
#: bbp-admin/bbp-
|
328 |
msgid ""
|
329 |
-
"When
|
330 |
-
"
|
|
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: bbp-admin/bbp-
|
334 |
-
|
|
|
|
|
|
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: bbp-admin/bbp-
|
|
|
|
|
|
|
338 |
msgid ""
|
339 |
-
"<
|
340 |
-
"
|
341 |
msgstr ""
|
342 |
|
343 |
-
#: bbp-admin/bbp-
|
|
|
|
|
|
|
344 |
msgid ""
|
345 |
-
"<
|
346 |
-
"
|
347 |
msgstr ""
|
348 |
|
349 |
-
#: bbp-admin/bbp-
|
350 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
351 |
msgstr ""
|
352 |
|
353 |
-
#: bbp-admin/bbp-
|
354 |
-
#: bbp-
|
355 |
-
msgid "
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: bbp-admin/bbp-
|
359 |
-
msgid "
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: bbp-admin/bbp-
|
363 |
-
msgid "
|
|
|
|
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: bbp-admin/bbp-
|
367 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: bbp-admin/bbp-
|
371 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
372 |
msgstr ""
|
373 |
|
374 |
-
#: bbp-admin/bbp-
|
375 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
376 |
msgstr ""
|
377 |
|
378 |
-
#: bbp-admin/bbp-
|
379 |
-
msgid "
|
|
|
|
|
|
|
|
|
380 |
msgstr ""
|
381 |
|
382 |
-
#: bbp-admin/bbp-
|
383 |
-
msgid "
|
384 |
msgstr ""
|
385 |
|
386 |
-
#: bbp-admin/bbp-
|
387 |
-
msgid "
|
388 |
msgstr ""
|
389 |
|
390 |
-
#: bbp-admin/bbp-
|
391 |
-
msgid "
|
|
|
|
|
392 |
msgstr ""
|
393 |
|
394 |
-
#: bbp-admin/bbp-
|
395 |
-
msgid "
|
|
|
|
|
396 |
msgstr ""
|
397 |
|
398 |
-
#: bbp-admin/bbp-
|
399 |
-
msgid "
|
|
|
|
|
400 |
msgstr ""
|
401 |
|
402 |
-
#: bbp-admin/bbp-
|
403 |
-
msgid "
|
|
|
|
|
|
|
404 |
msgstr ""
|
405 |
|
406 |
-
#: bbp-admin/bbp-
|
407 |
-
msgid "
|
408 |
msgstr ""
|
409 |
|
410 |
-
#: bbp-admin/bbp-
|
411 |
-
|
|
|
412 |
msgstr ""
|
413 |
|
414 |
-
#: bbp-admin/bbp-
|
415 |
-
|
|
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: bbp-admin/bbp-
|
419 |
-
|
|
|
|
|
|
|
|
|
|
|
420 |
msgstr ""
|
421 |
|
422 |
-
#: bbp-admin/bbp-
|
423 |
-
|
424 |
-
|
425 |
-
|
426 |
-
#: bbp-themes/bbp-twentyten/bbpress/loop-forums.php:19 bbpress.php:632
|
427 |
-
#: bbpress.php:633
|
428 |
-
msgid "Topics"
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: bbp-admin/bbp-
|
432 |
-
#: bbp-admin/bbp-metaboxes.php:
|
433 |
-
#: bbp-admin/bbp-metaboxes.php:
|
434 |
-
#: bbp-admin/bbp-
|
435 |
-
#: bbp-
|
436 |
-
#: bbp-
|
|
|
|
|
437 |
msgid "Forum"
|
438 |
msgstr ""
|
439 |
|
440 |
-
#: bbp-admin/bbp-
|
441 |
-
#: bbp-admin/bbp-
|
442 |
-
#: bbp-includes/bbp-
|
443 |
-
#: bbp-includes/bbp-
|
444 |
-
#: bbp-
|
445 |
-
#: bbp-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
446 |
#: bbp-themes/bbp-twentyten/bbpress/loop-replies.php:30
|
447 |
#: bbp-themes/bbp-twentyten/bbpress/loop-replies.php:49
|
448 |
-
#: bbp-themes/bbp-twentyten/bbpress/loop-
|
449 |
-
#: bbp-themes/bbp-twentyten/
|
450 |
-
#: bbpress.php:
|
|
|
451 |
msgid "Replies"
|
452 |
msgstr ""
|
453 |
|
454 |
-
#: bbp-admin/bbp-
|
455 |
-
#: bbp-
|
456 |
-
|
457 |
-
|
458 |
-
|
459 |
-
#: bbp-admin/bbp-topics.php:595 bbp-admin/bbp-replies.php:526
|
460 |
-
#: bbp-themes/bbp-twentyten/single-reply.php:31
|
461 |
-
#: bbp-themes/bbp-twentyten/bbpress/loop-replies.php:17
|
462 |
-
#: bbp-themes/bbp-twentyten/bbpress/loop-replies.php:40
|
463 |
-
msgid "Author"
|
464 |
msgstr ""
|
465 |
|
466 |
-
#: bbp-admin/bbp-
|
467 |
-
#: bbp-admin/bbp-
|
468 |
msgid "Created"
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: bbp-admin/bbp-
|
|
|
|
|
472 |
#: bbp-themes/bbp-twentyten/bbpress/loop-forums.php:21
|
473 |
#: bbp-themes/bbp-twentyten/bbpress/loop-topics.php:20
|
474 |
msgid "Freshness"
|
475 |
msgstr ""
|
476 |
|
477 |
-
#: bbp-admin/bbp-
|
478 |
-
#: bbp-admin/bbp-
|
479 |
-
msgid "
|
480 |
msgstr ""
|
481 |
|
482 |
-
#: bbp-admin/bbp-
|
483 |
-
msgid "
|
484 |
msgstr ""
|
485 |
|
486 |
-
#: bbp-admin/bbp-
|
487 |
-
|
488 |
-
msgid "%1$s <br /> %2$s"
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: bbp-admin/bbp-
|
492 |
-
|
|
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: bbp-admin/bbp-
|
496 |
-
|
|
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: bbp-admin/bbp-
|
500 |
-
msgid "
|
501 |
msgstr ""
|
502 |
|
503 |
-
|
504 |
-
|
|
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: bbp-admin/bbp-
|
508 |
-
msgid "
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: bbp-admin/bbp-
|
512 |
-
msgid "
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: bbp-admin/bbp-
|
516 |
-
msgid "
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: bbp-admin/bbp-
|
520 |
-
|
521 |
-
|
|
|
522 |
msgstr ""
|
523 |
|
524 |
-
|
525 |
-
|
|
|
|
|
526 |
msgstr ""
|
527 |
|
528 |
-
#: bbp-admin/bbp-
|
529 |
-
msgid "
|
530 |
msgstr ""
|
531 |
|
532 |
-
#: bbp-admin/bbp-
|
533 |
-
msgid "
|
534 |
msgstr ""
|
535 |
|
536 |
-
#: bbp-admin/bbp-
|
537 |
-
|
538 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
539 |
|
540 |
-
#: bbp-admin/bbp-
|
541 |
-
msgid "
|
542 |
-
|
|
|
|
|
543 |
|
544 |
-
#: bbp-admin/bbp-
|
545 |
-
msgid "
|
546 |
-
|
|
|
|
|
547 |
|
548 |
-
#: bbp-admin/bbp-
|
549 |
-
msgid "
|
550 |
msgstr ""
|
551 |
|
552 |
-
#: bbp-admin/bbp-
|
553 |
-
msgid "
|
554 |
-
|
|
|
|
|
555 |
|
556 |
-
#: bbp-admin/bbp-
|
557 |
-
msgid "
|
558 |
-
|
|
|
|
|
559 |
|
560 |
-
#: bbp-admin/bbp-
|
561 |
-
|
562 |
-
|
563 |
-
|
564 |
-
msgstr ""
|
565 |
|
566 |
-
#: bbp-admin/bbp-
|
567 |
-
|
568 |
-
|
569 |
-
|
570 |
-
msgstr ""
|
571 |
|
572 |
-
#: bbp-admin/bbp-
|
573 |
-
|
574 |
-
#: bbp-includes/bbp-topic-template.php:2183
|
575 |
-
msgid "Restore"
|
576 |
msgstr ""
|
577 |
|
578 |
-
#: bbp-admin/bbp-
|
579 |
-
|
580 |
-
#: bbp-includes/bbp-topic-template.php:2199
|
581 |
-
msgid "Move this item to the Trash"
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: bbp-admin/bbp-
|
585 |
-
#: bbp-
|
586 |
-
#: bbp-
|
587 |
-
msgid "
|
588 |
msgstr ""
|
589 |
|
590 |
-
#: bbp-admin/bbp-
|
591 |
-
#: bbp-
|
592 |
-
#: bbp-
|
593 |
-
msgid "
|
594 |
msgstr ""
|
595 |
|
596 |
-
#: bbp-admin/bbp-
|
597 |
-
msgid "
|
598 |
msgstr ""
|
599 |
|
600 |
-
#: bbp-admin/bbp-
|
601 |
-
msgid "
|
602 |
msgstr ""
|
603 |
|
604 |
-
#: bbp-admin/bbp-
|
605 |
-
|
|
|
606 |
msgstr ""
|
607 |
|
608 |
-
#: bbp-admin/bbp-
|
609 |
-
msgid "
|
610 |
msgstr ""
|
611 |
|
612 |
-
#: bbp-admin/bbp-
|
613 |
-
|
614 |
-
msgid "Custom field updated."
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: bbp-admin/bbp-
|
618 |
-
|
619 |
-
msgid "Custom field deleted."
|
620 |
msgstr ""
|
621 |
|
622 |
-
#: bbp-admin/bbp-
|
623 |
-
msgid "Topic
|
624 |
msgstr ""
|
625 |
|
626 |
-
|
627 |
-
|
628 |
-
msgid "Topic restored to revision from %s"
|
629 |
msgstr ""
|
630 |
|
631 |
-
#: bbp-admin/bbp-
|
632 |
-
msgid "Topic
|
633 |
msgstr ""
|
634 |
|
635 |
-
#: bbp-admin/bbp-
|
636 |
-
|
|
|
|
|
|
|
|
|
637 |
msgstr ""
|
638 |
|
639 |
-
#: bbp-admin/bbp-
|
640 |
-
|
|
|
|
|
|
|
|
|
641 |
msgstr ""
|
642 |
|
643 |
-
#: bbp-admin/bbp-
|
644 |
-
|
645 |
-
|
646 |
-
"
|
647 |
msgstr ""
|
648 |
|
649 |
-
|
650 |
-
|
651 |
-
#: bbp-admin/bbp-replies.php:852
|
652 |
-
msgid "M j, Y @ G:i"
|
653 |
msgstr ""
|
654 |
|
655 |
-
#: bbp-admin/bbp-
|
656 |
-
msgid "
|
|
|
|
|
|
|
657 |
msgstr ""
|
658 |
|
659 |
-
#: bbp-admin/bbp-
|
660 |
-
msgid "
|
|
|
|
|
|
|
|
|
661 |
msgstr ""
|
662 |
|
663 |
-
#: bbp-admin/bbp-
|
664 |
-
msgid "
|
|
|
|
|
665 |
msgstr ""
|
666 |
|
667 |
-
#: bbp-admin/bbp-
|
668 |
-
msgid "
|
|
|
|
|
669 |
msgstr ""
|
670 |
|
671 |
-
#: bbp-admin/bbp-
|
672 |
-
msgid "
|
|
|
|
|
673 |
msgstr ""
|
674 |
|
675 |
-
#: bbp-admin/bbp-
|
676 |
-
msgid "
|
|
|
|
|
677 |
msgstr ""
|
678 |
|
679 |
-
#: bbp-admin/bbp-
|
680 |
-
msgid "
|
|
|
|
|
|
|
681 |
msgstr ""
|
682 |
|
683 |
-
#: bbp-admin/bbp-
|
684 |
-
msgid "
|
|
|
|
|
|
|
685 |
msgstr ""
|
686 |
|
687 |
-
#: bbp-admin/bbp-
|
688 |
msgid ""
|
689 |
-
"
|
|
|
|
|
|
|
|
|
|
|
690 |
msgstr ""
|
691 |
|
692 |
-
#: bbp-admin/bbp-
|
693 |
-
msgid "
|
694 |
msgstr ""
|
695 |
|
696 |
-
#: bbp-admin/bbp-
|
697 |
-
|
698 |
-
|
|
|
699 |
msgstr ""
|
700 |
|
701 |
-
#: bbp-admin/bbp-
|
702 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
703 |
msgstr ""
|
704 |
|
705 |
-
#: bbp-admin/bbp-
|
706 |
msgid ""
|
707 |
-
"
|
708 |
-
"
|
|
|
|
|
|
|
|
|
|
|
709 |
msgstr ""
|
710 |
|
711 |
-
#: bbp-admin/bbp-
|
712 |
msgid ""
|
713 |
-
"
|
714 |
-
"
|
|
|
|
|
|
|
|
|
|
|
715 |
msgstr ""
|
716 |
|
717 |
-
#: bbp-admin/bbp-
|
718 |
-
msgid "
|
|
|
|
|
|
|
|
|
719 |
msgstr ""
|
720 |
|
721 |
-
#: bbp-admin/bbp-
|
722 |
-
msgid "
|
723 |
msgstr ""
|
724 |
|
725 |
-
#: bbp-admin/bbp-
|
726 |
-
|
727 |
-
msgid "Save Changes"
|
728 |
msgstr ""
|
729 |
|
730 |
-
#: bbp-admin/bbp-
|
731 |
-
msgid "
|
|
|
|
|
|
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: bbp-admin/bbp-
|
735 |
-
msgid "
|
|
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: bbp-admin/bbp-
|
739 |
msgid ""
|
740 |
-
"You can
|
741 |
-
"
|
742 |
-
"after saving a post."
|
743 |
msgstr ""
|
744 |
|
745 |
-
#: bbp-admin/bbp-
|
746 |
-
|
747 |
-
|
748 |
-
"
|
749 |
-
"between posting to the forum."
|
750 |
msgstr ""
|
751 |
|
752 |
-
#: bbp-admin/bbp-
|
753 |
-
msgid ""
|
754 |
-
"You may choose to allow favorites, which are a way for users to save and "
|
755 |
-
"later return to topics they favor. This is enabled by default."
|
756 |
msgstr ""
|
757 |
|
758 |
-
#: bbp-admin/bbp-
|
759 |
-
msgid ""
|
760 |
-
"You may choose to allow subscriptions, which allows users to subscribe for "
|
761 |
-
"notifications to topics that interest them. This is enabled by default."
|
762 |
msgstr ""
|
763 |
|
764 |
-
#: bbp-admin/bbp-
|
765 |
-
msgid ""
|
766 |
-
"You may choose to allow \"Anonymous Posting\", which will allow guest users "
|
767 |
-
"who do not have accounts on your site to both create topics as well as "
|
768 |
-
"replies."
|
769 |
msgstr ""
|
770 |
|
771 |
-
#: bbp-admin/bbp-
|
772 |
-
msgid ""
|
773 |
-
"Per Page settings allow you to control the number of topics and replies will "
|
774 |
-
"appear on each of those pages. This is comparable to the WordPress \"Reading "
|
775 |
-
"Settings\" page, where you can set the number of posts that should show on "
|
776 |
-
"blog pages and in feeds."
|
777 |
msgstr ""
|
778 |
|
779 |
-
#: bbp-admin/bbp-
|
780 |
-
msgid ""
|
781 |
-
"The Forums section allows you to control the permalink structure for your "
|
782 |
-
"forums. Each \"base\" is what will be displayed after your main URL and "
|
783 |
-
"right before your permalink slug."
|
784 |
msgstr ""
|
785 |
|
786 |
-
#: bbp-admin/bbp-
|
787 |
-
msgid ""
|
788 |
-
"You must click the Save Changes button at the bottom of the screen for new "
|
789 |
-
"settings to take effect."
|
790 |
msgstr ""
|
791 |
|
792 |
-
#: bbp-admin/bbp-
|
793 |
-
|
794 |
-
#: bbp-themes/bbp-twentyten/bbpress/loop-replies.php:45
|
795 |
-
#: bbp-themes/bbp-twentyten/bbpress/loop-forums.php:20
|
796 |
-
#: bbp-themes/bbp-twentyten/bbpress/loop-topics.php:19
|
797 |
-
msgid "Posts"
|
798 |
msgstr ""
|
799 |
|
800 |
-
#: bbp-admin/bbp-
|
801 |
-
|
|
|
|
|
|
|
|
|
|
|
802 |
msgstr ""
|
803 |
|
804 |
-
#: bbp-admin/bbp-
|
805 |
-
msgid "
|
806 |
msgstr ""
|
807 |
|
808 |
-
#: bbp-admin/bbp-
|
809 |
-
|
|
|
810 |
msgstr ""
|
811 |
|
812 |
-
#: bbp-admin/bbp-
|
813 |
-
msgid "
|
814 |
msgstr ""
|
815 |
|
816 |
-
#: bbp-admin/bbp-
|
817 |
-
msgid "
|
818 |
msgstr ""
|
819 |
|
820 |
-
#: bbp-admin/bbp-
|
821 |
-
msgid "
|
822 |
msgstr ""
|
823 |
|
824 |
-
#: bbp-admin/bbp-
|
825 |
-
msgid "
|
826 |
msgstr ""
|
827 |
|
828 |
-
#: bbp-admin/bbp-
|
829 |
-
msgid "
|
830 |
msgstr ""
|
831 |
|
832 |
-
#: bbp-admin/bbp-
|
833 |
-
msgid "
|
834 |
msgstr ""
|
835 |
|
836 |
-
#: bbp-admin/bbp-
|
837 |
-
|
|
|
|
|
838 |
msgstr ""
|
839 |
|
840 |
-
#: bbp-admin/bbp-
|
841 |
-
|
|
|
|
|
842 |
msgstr ""
|
843 |
|
844 |
-
#: bbp-admin/bbp-
|
845 |
-
|
|
|
|
|
846 |
msgstr ""
|
847 |
|
848 |
-
#: bbp-admin/bbp-
|
849 |
-
|
|
|
|
|
850 |
msgstr ""
|
851 |
|
852 |
-
#: bbp-admin/bbp-
|
853 |
-
|
|
|
|
|
854 |
msgstr ""
|
855 |
|
856 |
-
#: bbp-admin/bbp-
|
857 |
-
|
|
|
|
|
858 |
msgstr ""
|
859 |
|
860 |
-
#: bbp-admin/bbp-
|
861 |
-
msgid "
|
862 |
msgstr ""
|
863 |
|
864 |
-
#: bbp-admin/bbp-
|
865 |
-
msgid "
|
866 |
msgstr ""
|
867 |
|
868 |
-
#: bbp-admin/bbp-admin.php:
|
869 |
-
|
870 |
-
#: bbpress.php:576
|
871 |
-
msgid "Forums"
|
872 |
msgstr ""
|
873 |
|
874 |
-
#: bbp-admin/bbp-
|
875 |
-
msgid "
|
876 |
msgstr ""
|
877 |
|
878 |
-
#: bbp-admin/bbp-
|
879 |
-
msgid "
|
880 |
msgstr ""
|
881 |
|
882 |
-
|
883 |
-
|
|
|
884 |
msgstr ""
|
885 |
|
886 |
-
#: bbp-admin/bbp-
|
887 |
-
msgid "
|
888 |
msgstr ""
|
889 |
|
890 |
-
#: bbp-admin/bbp-
|
891 |
-
msgid "
|
892 |
msgstr ""
|
893 |
|
894 |
-
#: bbp-admin/bbp-
|
895 |
-
msgid "
|
896 |
msgstr ""
|
897 |
|
898 |
-
#: bbp-admin/bbp-
|
899 |
-
msgid "
|
|
|
|
|
900 |
msgstr ""
|
901 |
|
902 |
-
#: bbp-admin/bbp-
|
903 |
-
msgid "
|
|
|
|
|
|
|
|
|
904 |
msgstr ""
|
905 |
|
906 |
-
#: bbp-admin/bbp-admin.php:
|
907 |
msgid "Per Page"
|
908 |
msgstr ""
|
909 |
|
910 |
-
#: bbp-admin/bbp-
|
911 |
msgid "Per RSS Page"
|
912 |
msgstr ""
|
913 |
|
914 |
-
#: bbp-admin/bbp-
|
915 |
msgid "Archive Slugs"
|
916 |
msgstr ""
|
917 |
|
918 |
-
#: bbp-admin/bbp-
|
919 |
msgid "Single Slugs"
|
920 |
msgstr ""
|
921 |
|
922 |
-
#: bbp-admin/bbp-
|
923 |
-
msgid "
|
924 |
-
msgstr ""
|
925 |
-
|
926 |
-
#: bbp-admin/bbp-admin.php:374
|
927 |
-
msgid ""
|
928 |
-
"Your active theme does not include bbPress template files. Your forums are "
|
929 |
-
"using the default styling included with bbPress."
|
930 |
-
msgstr ""
|
931 |
-
|
932 |
-
#: bbp-admin/bbp-admin.php:393
|
933 |
-
msgid "Settings"
|
934 |
msgstr ""
|
935 |
|
936 |
-
#: bbp-admin/bbp-
|
937 |
-
msgid "
|
938 |
msgstr ""
|
939 |
|
940 |
-
#: bbp-admin/bbp-
|
941 |
-
msgid "
|
942 |
msgstr ""
|
943 |
|
944 |
-
#: bbp-admin/bbp-
|
945 |
-
msgid "
|
946 |
msgstr ""
|
947 |
|
948 |
-
#: bbp-admin/bbp-
|
949 |
-
msgid ""
|
950 |
-
"bbPress keeps a running count of things like replies to each topic and "
|
951 |
-
"topics in each forum. In rare occasions these counts can fall out of sync. "
|
952 |
-
"Using this form you can have bbPress manually recount these items."
|
953 |
msgstr ""
|
954 |
|
955 |
-
#: bbp-admin/bbp-
|
956 |
-
msgid "
|
957 |
msgstr ""
|
958 |
|
959 |
-
#: bbp-admin/bbp-
|
960 |
-
msgid "
|
961 |
msgstr ""
|
962 |
|
963 |
-
#: bbp-admin/bbp-
|
964 |
-
msgid "
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: bbp-admin/bbp-
|
968 |
-
msgid "
|
969 |
msgstr ""
|
970 |
|
971 |
-
#: bbp-admin/
|
972 |
-
msgid "
|
973 |
msgstr ""
|
974 |
|
975 |
-
#: bbp-admin/
|
976 |
-
msgid "
|
977 |
msgstr ""
|
978 |
|
979 |
-
#: bbp-admin/
|
980 |
-
msgid ""
|
981 |
-
"It looks like you attempted to convert your bbPress standalone previously "
|
982 |
-
"and got interrupted."
|
983 |
msgstr ""
|
984 |
|
985 |
-
#: bbp-admin/
|
986 |
-
msgid "
|
987 |
msgstr ""
|
988 |
|
989 |
-
#: bbp-admin/
|
990 |
-
msgid "
|
991 |
msgstr ""
|
992 |
|
993 |
-
#: bbp-admin/
|
994 |
-
msgid ""
|
995 |
-
"Existing bbPress standalone installation found. See configuration section "
|
996 |
-
"for details."
|
997 |
msgstr ""
|
998 |
|
999 |
-
#: bbp-admin/
|
1000 |
-
msgid ""
|
1001 |
-
"This importer allows you to convert your bbPress Standalone into the bbPress "
|
1002 |
-
"Plugin."
|
1003 |
msgstr ""
|
1004 |
|
1005 |
-
#: bbp-admin/
|
1006 |
-
msgid "
|
1007 |
msgstr ""
|
1008 |
|
1009 |
-
#: bbp-admin/
|
1010 |
-
msgid ""
|
1011 |
-
"Create a <a href=\"%s\">backup</a> of your database and files. If the import "
|
1012 |
-
"process is interrupted for any reason, restore from that backup and re-run "
|
1013 |
-
"the import."
|
1014 |
msgstr ""
|
1015 |
|
1016 |
-
#: bbp-admin/
|
1017 |
-
msgid ""
|
1018 |
-
"Seriously... Go back everything up, and don't come back until that's done. "
|
1019 |
-
"If things go awry, it's possible this importer will not be able to complete "
|
1020 |
-
"and your forums will be lost in limbo forever. This is serious business. No, "
|
1021 |
-
"we're not kidding."
|
1022 |
msgstr ""
|
1023 |
|
1024 |
-
#: bbp-admin/
|
1025 |
-
msgid "
|
1026 |
msgstr ""
|
1027 |
|
1028 |
-
#: bbp-admin/
|
1029 |
-
msgid ""
|
1030 |
-
"Disable all plugins (except bbPress) on both your WordPress and bbPress "
|
1031 |
-
"standalone installations."
|
1032 |
msgstr ""
|
1033 |
|
1034 |
-
#: bbp-admin/
|
1035 |
-
msgid "
|
1036 |
msgstr ""
|
1037 |
|
1038 |
-
#: bbp-admin/
|
1039 |
-
msgid "
|
1040 |
msgstr ""
|
1041 |
|
1042 |
-
#: bbp-admin/
|
1043 |
-
msgid ""
|
1044 |
-
"If you are using the alpha version of bbPress 1.1, subscriptions will be "
|
1045 |
-
"ported automatically."
|
1046 |
msgstr ""
|
1047 |
|
1048 |
-
#: bbp-admin/
|
1049 |
-
msgid ""
|
1050 |
-
"If you have the <a href=\"%s\">Subscribe to Topic</a> plugin active, then "
|
1051 |
-
"this script will migrate user subscriptions from that plugin."
|
1052 |
msgstr ""
|
1053 |
|
1054 |
-
#: bbp-admin/
|
1055 |
-
msgid ""
|
1056 |
-
"If you are importing an existing BuddyPress Forums installation, we should "
|
1057 |
-
"have found your previous configuration file."
|
1058 |
msgstr ""
|
1059 |
|
1060 |
-
#: bbp-admin/
|
1061 |
-
msgid ""
|
1062 |
-
"This converter can be a drag on large forums with lots of existing topics "
|
1063 |
-
"and replies. If possible, do this import in a safe place (like a local "
|
1064 |
-
"installation.)"
|
1065 |
msgstr ""
|
1066 |
|
1067 |
-
#: bbp-admin/
|
1068 |
-
msgid "
|
1069 |
msgstr ""
|
1070 |
|
1071 |
-
#: bbp-admin/
|
1072 |
-
msgid ""
|
1073 |
-
"Enter the full path to your bbPress configuration file i.e. <code>bb-config."
|
1074 |
-
"php</code>:"
|
1075 |
msgstr ""
|
1076 |
|
1077 |
-
#: bbp-admin/
|
1078 |
-
msgid "
|
1079 |
msgstr ""
|
1080 |
|
1081 |
-
#: bbp-admin/
|
1082 |
-
msgid "
|
1083 |
msgstr ""
|
1084 |
|
1085 |
-
#: bbp-admin/
|
1086 |
msgid ""
|
1087 |
-
"
|
1088 |
-
"php</code>."
|
1089 |
msgstr ""
|
1090 |
|
1091 |
-
#: bbp-admin/
|
1092 |
-
msgid "
|
1093 |
msgstr ""
|
1094 |
|
1095 |
-
#: bbp-admin/
|
1096 |
-
msgid ""
|
1097 |
-
"bbPress configuration file <code>bb-config.php</code> doesn't exist in the "
|
1098 |
-
"path specified! Please check the path and try again."
|
1099 |
msgstr ""
|
1100 |
|
1101 |
-
#: bbp-admin/
|
1102 |
-
msgid "
|
1103 |
msgstr ""
|
1104 |
|
1105 |
-
#: bbp-admin/
|
1106 |
-
msgid ""
|
1107 |
-
"<strong>Auto-detected</strong>: Your WordPress and bbPress user tables are "
|
1108 |
-
"integrated. Proceed to <label for=\"step_board\">importing forums, topics "
|
1109 |
-
"and posts</label>."
|
1110 |
msgstr ""
|
1111 |
|
1112 |
-
#: bbp-admin/
|
1113 |
msgid ""
|
1114 |
-
"
|
1115 |
-
"
|
1116 |
msgstr ""
|
1117 |
|
1118 |
-
#: bbp-admin/
|
1119 |
-
msgid "
|
1120 |
msgstr ""
|
1121 |
|
1122 |
-
#: bbp-admin/
|
1123 |
-
|
1124 |
-
"
|
1125 |
-
"(not deleted) so that you can restore them if something goes wrong."
|
1126 |
msgstr ""
|
1127 |
|
1128 |
-
#: bbp-admin/
|
1129 |
-
msgid ""
|
1130 |
-
"Please ensure there are no tables named %1$s and %2$s to avoid renaming "
|
1131 |
-
"conflicts."
|
1132 |
msgstr ""
|
1133 |
|
1134 |
-
#: bbp-admin/
|
1135 |
-
msgid "
|
|
|
|
|
1136 |
msgstr ""
|
1137 |
|
1138 |
-
#: bbp-admin/
|
1139 |
msgid ""
|
1140 |
-
"
|
1141 |
-
"
|
1142 |
msgstr ""
|
1143 |
|
1144 |
-
#: bbp-admin/
|
1145 |
-
msgid "
|
1146 |
msgstr ""
|
1147 |
|
1148 |
-
#: bbp-admin/
|
1149 |
-
msgid ""
|
1150 |
-
"You have a well <strong>established</strong> WordPress user base, the user "
|
1151 |
-
"tables are not integrated and you can't lose your users:"
|
1152 |
msgstr ""
|
1153 |
|
1154 |
-
#: bbp-admin/
|
1155 |
-
msgid ""
|
1156 |
-
"This is currently not yet supported, and will likely not be in the future "
|
1157 |
-
"also as it is highly complex to merge two user sets (which might even "
|
1158 |
-
"conflict)."
|
1159 |
msgstr ""
|
1160 |
|
1161 |
-
#: bbp-admin/
|
1162 |
-
msgid ""
|
1163 |
-
"Patches are always <a href=\"%s\" title=\"The last revision containing the "
|
1164 |
-
"custom user migration code\">welcome</a>. :)"
|
1165 |
msgstr ""
|
1166 |
|
1167 |
-
#: bbp-admin/
|
1168 |
-
msgid "
|
1169 |
msgstr ""
|
1170 |
|
1171 |
-
#: bbp-admin/
|
1172 |
-
msgid "
|
|
|
|
|
1173 |
msgstr ""
|
1174 |
|
1175 |
-
#: bbp-admin/
|
1176 |
-
msgid "
|
1177 |
msgstr ""
|
1178 |
|
1179 |
-
#: bbp-admin/
|
1180 |
-
msgid "
|
1181 |
msgstr ""
|
1182 |
|
1183 |
-
#: bbp-admin/
|
1184 |
-
msgid "
|
1185 |
msgstr ""
|
1186 |
|
1187 |
-
#: bbp-admin/
|
1188 |
-
|
1189 |
-
|
1190 |
-
"
|
1191 |
msgstr ""
|
1192 |
|
1193 |
-
#: bbp-admin/
|
1194 |
msgid ""
|
1195 |
-
"
|
1196 |
-
"
|
1197 |
-
"yourself."
|
1198 |
-
msgstr ""
|
1199 |
-
|
1200 |
-
#: bbp-admin/importers/bbpress.php:716
|
1201 |
-
msgid "Created the <code>%s</code> table and copied the users from bbPress."
|
1202 |
msgstr ""
|
1203 |
|
1204 |
-
#: bbp-admin/
|
1205 |
-
msgid ""
|
1206 |
-
"There was a problem duplicating the table <code>%1$s</code> to <code>%2$s</"
|
1207 |
-
"code>. Please check and re-run the script or duplicate the table yourself."
|
1208 |
msgstr ""
|
1209 |
|
1210 |
-
#: bbp-admin/
|
1211 |
-
msgid ""
|
1212 |
-
"Created the <code>%s</code> table and copied the user information from "
|
1213 |
-
"bbPress."
|
1214 |
msgstr ""
|
1215 |
|
1216 |
-
#: bbp-admin/
|
1217 |
-
msgid ""
|
1218 |
-
"There was a problem in getting an administrator of the blog. Now, please go "
|
1219 |
-
"to your blog, set a user as administrator, login as that user and directly "
|
1220 |
-
"go to importing forums, topics and replies section. Note that old logins "
|
1221 |
-
"won't work, you would have to edit your database (you can still try logging "
|
1222 |
-
"in as the bbPress keymaster)."
|
1223 |
msgstr ""
|
1224 |
|
1225 |
-
#: bbp-admin/
|
1226 |
-
msgid ""
|
1227 |
-
"User roles have been successfully mapped based. The bbPress keymaster is "
|
1228 |
-
"WordPress administrator, bbPress administrator and moderators are moderators "
|
1229 |
-
"and rest all WordPress roles are %1$s. Now, you can only login into your "
|
1230 |
-
"WordPress blog by the bbPress credentials. For the time being, you have been "
|
1231 |
-
"logged in as the first available administrator (Username: %2$s, User ID: %3"
|
1232 |
-
"$s)."
|
1233 |
msgstr ""
|
1234 |
|
1235 |
-
#: bbp-admin/
|
1236 |
-
msgid ""
|
1237 |
-
"Your users have all been imported, but wait – there’s more! Now "
|
1238 |
-
"we need to import your forums, topics and posts!"
|
1239 |
msgstr ""
|
1240 |
|
1241 |
-
#: bbp-admin/
|
1242 |
-
msgid "
|
1243 |
msgstr ""
|
1244 |
|
1245 |
-
#: bbp-admin/
|
1246 |
-
msgid "
|
1247 |
msgstr ""
|
1248 |
|
1249 |
-
#: bbp-admin/
|
1250 |
msgid ""
|
1251 |
-
"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
-
#: bbp-admin/
|
1255 |
-
msgid "
|
1256 |
msgstr ""
|
1257 |
|
1258 |
-
#: bbp-admin/
|
1259 |
-
msgid "
|
1260 |
msgstr ""
|
1261 |
|
1262 |
-
#: bbp-admin/
|
1263 |
-
msgid "
|
1264 |
msgstr ""
|
1265 |
|
1266 |
-
#: bbp-admin/
|
1267 |
-
msgid "
|
1268 |
msgstr ""
|
1269 |
|
1270 |
-
#: bbp-admin/
|
1271 |
-
msgid "
|
1272 |
msgstr ""
|
1273 |
|
1274 |
-
#: bbp-admin/
|
1275 |
-
msgid "
|
1276 |
msgstr ""
|
1277 |
|
1278 |
-
#: bbp-admin/
|
1279 |
-
msgid ""
|
1280 |
-
"The forum is a category but has topics, so it has been set as closed on the "
|
1281 |
-
"new board."
|
1282 |
msgstr ""
|
1283 |
|
1284 |
-
#: bbp-admin/
|
1285 |
-
msgid "
|
1286 |
msgstr ""
|
1287 |
|
1288 |
-
#: bbp-admin/
|
1289 |
-
|
1290 |
-
#: bbp-includes/bbp-common-template.php:1110
|
1291 |
-
#: bbp-includes/bbp-topic-functions.php:1149
|
1292 |
-
#: bbp-includes/bbp-topic-functions.php:1469
|
1293 |
-
#: bbp-themes/bbp-twentyten/bbpress/form-reply.php:27
|
1294 |
-
msgid "Reply To: %s"
|
1295 |
msgstr ""
|
1296 |
|
1297 |
-
#: bbp-admin/
|
1298 |
msgid ""
|
1299 |
-
"
|
1300 |
-
"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
-
#: bbp-admin/
|
1304 |
-
msgid "
|
1305 |
msgstr ""
|
1306 |
|
1307 |
-
#: bbp-admin/
|
1308 |
-
msgid ""
|
1309 |
-
"Your forums, topics and posts have all been imported, but wait – "
|
1310 |
-
"there’s more! Now we need to do a <a href=\"%s\">recount</a> to get "
|
1311 |
-
"the counts in sync! Yes, we’re bad at Math."
|
1312 |
msgstr ""
|
1313 |
|
1314 |
-
#: bbp-admin/
|
1315 |
-
msgid "
|
1316 |
msgstr ""
|
1317 |
|
1318 |
-
#: bbp-admin/
|
1319 |
-
msgid "
|
|
|
|
|
1320 |
msgstr ""
|
1321 |
|
1322 |
-
#: bbp-admin/
|
1323 |
-
msgid "
|
1324 |
msgstr ""
|
1325 |
|
1326 |
-
#: bbp-admin/bbp-
|
1327 |
msgid ""
|
1328 |
-
"
|
1329 |
-
"
|
1330 |
-
"
|
1331 |
-
"tab to unhide more boxes (like Slug) or to choose a 1- or 2-column layout "
|
1332 |
-
"for this screen."
|
1333 |
msgstr ""
|
1334 |
|
1335 |
-
#: bbp-admin/bbp-
|
1336 |
msgid ""
|
1337 |
-
"
|
1338 |
-
"
|
|
|
1339 |
msgstr ""
|
1340 |
|
1341 |
-
#: bbp-admin/bbp-
|
1342 |
msgid ""
|
1343 |
-
"
|
1344 |
-
"
|
1345 |
-
"the appropriate tab. Visual mode gives you a WYSIWYG editor. Click the last "
|
1346 |
-
"icon in the row to get a second row of controls. The screen icon just before "
|
1347 |
-
"that allows you to expand the edit box to full screen. The HTML mode allows "
|
1348 |
-
"you to enter raw HTML along with your forum text. You can insert media files "
|
1349 |
-
"by clicking the icons above the post editor and following the directions."
|
1350 |
msgstr ""
|
1351 |
|
1352 |
-
#: bbp-admin/bbp-
|
1353 |
msgid ""
|
1354 |
-
"
|
1355 |
-
"
|
1356 |
msgstr ""
|
1357 |
|
1358 |
-
#: bbp-admin/bbp-
|
1359 |
msgid ""
|
1360 |
-
"
|
1361 |
-
"
|
1362 |
msgstr ""
|
1363 |
|
1364 |
-
#: bbp-admin/bbp-
|
1365 |
msgid ""
|
1366 |
-
"
|
1367 |
-
"
|
1368 |
msgstr ""
|
1369 |
|
1370 |
-
#: bbp-admin/bbp-
|
1371 |
msgid ""
|
1372 |
-
"
|
1373 |
-
"
|
1374 |
msgstr ""
|
1375 |
|
1376 |
-
#: bbp-admin/bbp-
|
1377 |
msgid ""
|
1378 |
-
"
|
1379 |
-
"
|
1380 |
msgstr ""
|
1381 |
|
1382 |
-
#: bbp-admin/bbp-
|
1383 |
msgid ""
|
1384 |
-
"
|
1385 |
-
"
|
1386 |
msgstr ""
|
1387 |
|
1388 |
-
#: bbp-admin/bbp-
|
1389 |
msgid ""
|
1390 |
-
"
|
1391 |
-
"
|
1392 |
-
"Trash will move your forum to the trash."
|
1393 |
msgstr ""
|
1394 |
|
1395 |
-
#: bbp-admin/bbp-
|
1396 |
msgid ""
|
1397 |
-
"
|
1398 |
-
"
|
1399 |
-
"revision. Revisions can also be restored to the current version."
|
1400 |
msgstr ""
|
1401 |
|
1402 |
-
#: bbp-admin/bbp-
|
1403 |
-
msgid "
|
1404 |
msgstr ""
|
1405 |
|
1406 |
-
#: bbp-admin/bbp-
|
1407 |
msgid ""
|
1408 |
-
"
|
1409 |
-
"
|
1410 |
msgstr ""
|
1411 |
|
1412 |
-
#: bbp-admin/bbp-
|
1413 |
msgid ""
|
1414 |
-
"
|
1415 |
-
"
|
1416 |
-
"
|
1417 |
msgstr ""
|
1418 |
|
1419 |
-
#: bbp-admin/bbp-
|
1420 |
msgid ""
|
1421 |
-
"
|
1422 |
-
"
|
1423 |
-
"making your selection. You also can refine the list by clicking on the forum "
|
1424 |
-
"creator in the forums list."
|
1425 |
msgstr ""
|
1426 |
|
1427 |
-
#: bbp-admin/bbp-
|
1428 |
msgid ""
|
1429 |
-
"
|
1430 |
-
"
|
1431 |
msgstr ""
|
1432 |
|
1433 |
-
#: bbp-admin/bbp-forums.php:
|
1434 |
-
|
1435 |
-
|
1436 |
-
|
|
|
|
|
|
|
|
|
|
|
1437 |
msgstr ""
|
1438 |
|
1439 |
-
#: bbp-admin/bbp-
|
1440 |
-
msgid ""
|
1441 |
-
"Trash removes your forum from this list and places it in the trash, from "
|
1442 |
-
"which you can permanently delete it."
|
1443 |
msgstr ""
|
1444 |
|
1445 |
-
#: bbp-admin/bbp-
|
1446 |
-
msgid "
|
1447 |
msgstr ""
|
1448 |
|
1449 |
-
#: bbp-admin/bbp-
|
1450 |
-
msgid ""
|
1451 |
-
"You can also edit multiple forums at once. Select the forums you want to "
|
1452 |
-
"edit using the checkboxes, select Edit from the Bulk Actions menu and click "
|
1453 |
-
"Apply. You will be able to change the metadata for all selected forums at "
|
1454 |
-
"once. To remove a forum from the grouping, just click the x next to its name "
|
1455 |
-
"in the Bulk Edit area that appears."
|
1456 |
msgstr ""
|
1457 |
|
1458 |
-
#: bbp-admin/bbp-
|
1459 |
-
msgid ""
|
1460 |
-
"The Bulk Actions menu may also be used to delete multiple forums at once. "
|
1461 |
-
"Select Delete from the dropdown after making your selection."
|
1462 |
msgstr ""
|
1463 |
|
1464 |
-
#: bbp-admin/bbp-
|
1465 |
-
msgid "
|
1466 |
msgstr ""
|
1467 |
|
1468 |
-
#: bbp-admin/bbp-
|
1469 |
-
|
1470 |
-
msgid "Creator"
|
1471 |
msgstr ""
|
1472 |
|
1473 |
-
#: bbp-admin/bbp-
|
1474 |
-
msgid "
|
1475 |
msgstr ""
|
1476 |
|
1477 |
-
#: bbp-admin/bbp-
|
1478 |
-
msgid "
|
1479 |
msgstr ""
|
1480 |
|
1481 |
-
#: bbp-admin/bbp-
|
1482 |
-
msgid "
|
1483 |
msgstr ""
|
1484 |
|
1485 |
-
|
1486 |
-
|
1487 |
-
msgid "Forum restored to revision from %s"
|
1488 |
msgstr ""
|
1489 |
|
1490 |
-
#: bbp-admin/bbp-
|
1491 |
-
msgid "
|
|
|
|
|
|
|
|
|
1492 |
msgstr ""
|
1493 |
|
1494 |
-
#: bbp-admin/bbp-
|
1495 |
-
msgid "
|
|
|
|
|
1496 |
msgstr ""
|
1497 |
|
1498 |
-
#: bbp-admin/bbp-
|
1499 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1500 |
msgstr ""
|
1501 |
|
1502 |
-
#: bbp-admin/bbp-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1503 |
msgid ""
|
1504 |
-
"
|
1505 |
-
"\">Preview forum</a>"
|
1506 |
msgstr ""
|
1507 |
|
1508 |
-
#: bbp-admin/bbp-
|
1509 |
-
msgid "
|
1510 |
msgstr ""
|
1511 |
|
1512 |
-
#: bbp-admin/bbp-
|
1513 |
-
msgid "
|
1514 |
msgstr ""
|
1515 |
|
1516 |
-
#: bbp-admin/bbp-
|
1517 |
-
|
1518 |
-
|
1519 |
-
#: bbp-themes/bbp-twentyten/bbpress/loop-topics.php:17 bbpress.php:634
|
1520 |
-
msgid "Topic"
|
1521 |
-
msgid_plural "Topics"
|
1522 |
-
msgstr[0] ""
|
1523 |
-
msgstr[1] ""
|
1524 |
|
1525 |
-
#: bbp-admin/bbp-
|
1526 |
-
msgid "
|
1527 |
-
|
1528 |
-
msgstr[0] ""
|
1529 |
-
msgstr[1] ""
|
1530 |
|
1531 |
-
#: bbp-admin/bbp-
|
1532 |
-
msgid "
|
1533 |
-
|
1534 |
-
msgstr[0] ""
|
1535 |
-
msgstr[1] ""
|
1536 |
|
1537 |
-
#: bbp-admin/bbp-
|
1538 |
-
msgid "
|
1539 |
msgstr ""
|
1540 |
|
1541 |
-
#: bbp-admin/bbp-
|
1542 |
-
msgid "
|
1543 |
-
|
1544 |
-
msgstr[0] ""
|
1545 |
-
msgstr[1] ""
|
1546 |
|
1547 |
-
#: bbp-admin/bbp-
|
1548 |
-
msgid "
|
1549 |
-
|
1550 |
-
msgstr[0] ""
|
1551 |
-
msgstr[1] ""
|
1552 |
|
1553 |
-
#: bbp-admin/bbp-
|
1554 |
-
msgid "
|
1555 |
-
|
1556 |
-
msgstr[0] ""
|
1557 |
-
msgstr[1] ""
|
1558 |
|
1559 |
-
#: bbp-admin/bbp-
|
1560 |
-
msgid "
|
1561 |
-
|
1562 |
-
msgstr[0] ""
|
1563 |
-
msgstr[1] ""
|
1564 |
|
1565 |
-
#: bbp-admin/bbp-
|
1566 |
-
msgid "
|
|
|
|
|
1567 |
msgstr ""
|
1568 |
|
1569 |
-
#: bbp-admin/bbp-
|
1570 |
-
msgid "
|
1571 |
msgstr ""
|
1572 |
|
1573 |
-
#: bbp-admin/bbp-
|
1574 |
-
msgid "
|
1575 |
msgstr ""
|
1576 |
|
1577 |
-
#: bbp-admin/bbp-
|
1578 |
-
|
|
|
1579 |
msgstr ""
|
1580 |
|
1581 |
-
#: bbp-admin/bbp-
|
1582 |
-
|
|
|
1583 |
msgstr ""
|
1584 |
|
1585 |
-
#: bbp-admin/bbp-
|
1586 |
-
msgid "
|
1587 |
msgstr ""
|
1588 |
|
1589 |
-
#: bbp-admin/bbp-
|
1590 |
-
|
1591 |
-
msgid "Private"
|
1592 |
msgstr ""
|
1593 |
|
1594 |
-
#: bbp-admin/bbp-
|
1595 |
-
msgid "
|
1596 |
msgstr ""
|
1597 |
|
1598 |
-
#: bbp-admin/bbp-
|
1599 |
-
msgid "
|
1600 |
msgstr ""
|
1601 |
|
1602 |
-
#: bbp-admin/bbp-
|
1603 |
-
msgid "
|
1604 |
msgstr ""
|
1605 |
|
1606 |
-
#: bbp-admin/bbp-
|
1607 |
-
msgid "
|
1608 |
msgstr ""
|
1609 |
|
1610 |
-
#: bbp-admin/bbp-
|
1611 |
-
msgid "
|
1612 |
msgstr ""
|
1613 |
|
1614 |
-
#: bbp-admin/bbp-
|
1615 |
-
msgid "
|
1616 |
msgstr ""
|
1617 |
|
1618 |
-
#: bbp-admin/bbp-
|
1619 |
-
msgid "
|
1620 |
msgstr ""
|
1621 |
|
1622 |
-
#: bbp-admin/bbp-
|
1623 |
-
msgid "
|
1624 |
msgstr ""
|
1625 |
|
1626 |
-
#: bbp-admin/bbp-
|
1627 |
-
msgid "
|
1628 |
msgstr ""
|
1629 |
|
1630 |
-
#: bbp-admin/bbp-
|
1631 |
-
msgid "
|
1632 |
msgstr ""
|
1633 |
|
1634 |
-
#: bbp-admin/bbp-
|
1635 |
-
msgid "
|
1636 |
msgstr ""
|
1637 |
|
1638 |
-
#: bbp-admin/bbp-
|
1639 |
-
|
1640 |
-
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:19
|
1641 |
-
msgid "Name"
|
1642 |
msgstr ""
|
1643 |
|
1644 |
-
#: bbp-admin/bbp-
|
1645 |
-
|
1646 |
-
#: bbp-themes/bbp-twentyten/bbpress/form-user-register.php:28
|
1647 |
-
msgid "Email"
|
1648 |
msgstr ""
|
1649 |
|
1650 |
-
#: bbp-admin/bbp-
|
1651 |
-
|
1652 |
-
msgid "Website"
|
1653 |
msgstr ""
|
1654 |
|
1655 |
-
#: bbp-admin/bbp-
|
1656 |
-
msgid "
|
1657 |
msgstr ""
|
1658 |
|
1659 |
-
#: bbp-admin/bbp-
|
1660 |
-
msgid ""
|
1661 |
-
"The reply title field and the big reply editing area are fixed in place, but "
|
1662 |
-
"you can reposition all the other boxes using drag and drop, and can minimize "
|
1663 |
-
"or expand them by clicking the title bar of the box. Use the Screen Options "
|
1664 |
-
"tab to unhide more boxes (Reply Attributes, Slug) or to choose a 1- or 2-"
|
1665 |
-
"column layout for this screen."
|
1666 |
msgstr ""
|
1667 |
|
1668 |
-
#: bbp-admin/bbp-
|
1669 |
msgid ""
|
1670 |
-
"
|
1671 |
-
"
|
|
|
1672 |
msgstr ""
|
1673 |
|
1674 |
-
#: bbp-admin/bbp-
|
1675 |
msgid ""
|
1676 |
-
"
|
1677 |
-
"
|
1678 |
-
"
|
1679 |
-
"
|
1680 |
-
"allows you to expand the edit box to full screen. The HTML mode allows you "
|
1681 |
-
"to enter raw HTML along with your forum text. You can insert media files by "
|
1682 |
-
"clicking the icons above the post editor and following the directions."
|
1683 |
msgstr ""
|
1684 |
|
1685 |
-
#: bbp-admin/bbp-
|
1686 |
msgid ""
|
1687 |
-
"
|
1688 |
-
"
|
1689 |
-
"reply belongs to."
|
1690 |
msgstr ""
|
1691 |
|
1692 |
-
#: bbp-admin/bbp-
|
1693 |
msgid ""
|
1694 |
-
"<strong>
|
1695 |
-
"
|
1696 |
-
"published as well. The Visibility will determine whether the reply is "
|
1697 |
-
"Public, Password protected (requiring a password on the site to view) or "
|
1698 |
-
"Private (only the author will have access to it). Replies may be published "
|
1699 |
-
"immediately by clicking the dropdown, or at a specific date and time by "
|
1700 |
-
"clicking the Edit link."
|
1701 |
msgstr ""
|
1702 |
|
1703 |
-
#: bbp-admin/bbp-
|
1704 |
msgid ""
|
1705 |
-
"<strong>
|
1706 |
-
"
|
1707 |
-
"revision. Revisions can also be restored to the current version."
|
1708 |
msgstr ""
|
1709 |
|
1710 |
-
#: bbp-admin/bbp-
|
1711 |
-
msgid "
|
|
|
|
|
1712 |
msgstr ""
|
1713 |
|
1714 |
-
#: bbp-admin/bbp-
|
1715 |
msgid ""
|
1716 |
-
"
|
1717 |
-
"
|
1718 |
-
"
|
1719 |
msgstr ""
|
1720 |
|
1721 |
-
#: bbp-admin/bbp-
|
1722 |
msgid ""
|
1723 |
-
"
|
1724 |
-
"
|
1725 |
-
"
|
1726 |
msgstr ""
|
1727 |
|
1728 |
-
#: bbp-admin/bbp-
|
1729 |
msgid ""
|
1730 |
-
"
|
1731 |
-
"
|
|
|
|
|
|
|
|
|
1732 |
msgstr ""
|
1733 |
|
1734 |
-
#: bbp-admin/bbp-
|
|
|
|
|
|
|
|
|
1735 |
msgid ""
|
1736 |
-
"
|
1737 |
-
"
|
1738 |
-
"making your selection."
|
1739 |
msgstr ""
|
1740 |
|
1741 |
-
#: bbp-admin/bbp-
|
1742 |
msgid ""
|
1743 |
-
"
|
1744 |
-
"
|
1745 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1746 |
msgstr ""
|
1747 |
|
1748 |
-
#: bbp-admin/bbp-
|
1749 |
msgid ""
|
1750 |
-
"
|
1751 |
-
"
|
|
|
|
|
|
|
|
|
|
|
1752 |
msgstr ""
|
1753 |
|
1754 |
-
#: bbp-admin/bbp-
|
1755 |
msgid ""
|
1756 |
-
"
|
1757 |
-
"
|
|
|
|
|
|
|
|
|
|
|
1758 |
msgstr ""
|
1759 |
|
1760 |
-
#: bbp-admin/bbp-
|
1761 |
msgid ""
|
1762 |
-
"
|
1763 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
1764 |
msgstr ""
|
1765 |
|
1766 |
-
#: bbp-admin/bbp-
|
1767 |
-
msgid "
|
1768 |
msgstr ""
|
1769 |
|
1770 |
-
#: bbp-admin/bbp-
|
1771 |
msgid ""
|
1772 |
-
"
|
1773 |
-
"
|
|
|
1774 |
msgstr ""
|
1775 |
|
1776 |
-
#: bbp-admin/bbp-
|
1777 |
msgid ""
|
1778 |
-
"
|
1779 |
-
"
|
1780 |
-
"
|
1781 |
-
"
|
1782 |
-
"in the Bulk Edit area that appears."
|
1783 |
msgstr ""
|
1784 |
|
1785 |
-
#: bbp-admin/bbp-
|
1786 |
msgid ""
|
1787 |
-
"
|
1788 |
-
"
|
1789 |
msgstr ""
|
1790 |
|
1791 |
-
#: bbp-admin/bbp-
|
1792 |
-
msgid "
|
1793 |
msgstr ""
|
1794 |
|
1795 |
-
#: bbp-admin/bbp-
|
1796 |
-
msgid "
|
1797 |
msgstr ""
|
1798 |
|
1799 |
-
#: bbp-admin/bbp-
|
1800 |
-
msgid "
|
1801 |
msgstr ""
|
1802 |
|
1803 |
-
#: bbp-admin/bbp-
|
1804 |
-
msgid "
|
1805 |
msgstr ""
|
1806 |
|
1807 |
-
#: bbp-admin/bbp-
|
1808 |
-
msgid "
|
1809 |
msgstr ""
|
1810 |
|
1811 |
-
#: bbp-admin/bbp-
|
1812 |
-
msgid "
|
1813 |
msgstr ""
|
1814 |
|
1815 |
-
#: bbp-admin/bbp-
|
1816 |
-
msgid "
|
1817 |
msgstr ""
|
1818 |
|
1819 |
-
#: bbp-admin/bbp-
|
1820 |
-
msgid "
|
1821 |
msgstr ""
|
1822 |
|
1823 |
-
#: bbp-admin/bbp-
|
1824 |
-
msgid "
|
1825 |
msgstr ""
|
1826 |
|
1827 |
-
#: bbp-admin/bbp-
|
1828 |
-
msgid "
|
1829 |
msgstr ""
|
1830 |
|
1831 |
-
#: bbp-admin/bbp-
|
1832 |
-
msgid "
|
1833 |
msgstr ""
|
1834 |
|
1835 |
-
#: bbp-admin/bbp-
|
1836 |
-
msgid "
|
1837 |
msgstr ""
|
1838 |
|
1839 |
-
#: bbp-admin/bbp-
|
1840 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1841 |
msgstr ""
|
1842 |
|
1843 |
#. translators: %s: date and time of the revision
|
1844 |
-
#: bbp-admin/bbp-
|
1845 |
-
msgid "
|
1846 |
msgstr ""
|
1847 |
|
1848 |
-
#: bbp-admin/bbp-
|
1849 |
-
msgid "
|
1850 |
msgstr ""
|
1851 |
|
1852 |
-
#: bbp-admin/bbp-
|
1853 |
-
msgid "
|
1854 |
msgstr ""
|
1855 |
|
1856 |
-
#: bbp-admin/bbp-
|
1857 |
-
msgid "
|
1858 |
msgstr ""
|
1859 |
|
1860 |
-
#: bbp-admin/bbp-
|
1861 |
msgid ""
|
1862 |
-
"
|
1863 |
"\">Preview topic</a>"
|
1864 |
msgstr ""
|
1865 |
|
1866 |
-
#: bbp-admin/bbp-
|
1867 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1868 |
msgstr ""
|
1869 |
|
1870 |
-
#: bbp-includes/bbp-common-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1871 |
msgid "No topics available"
|
1872 |
msgstr ""
|
1873 |
|
1874 |
-
#: bbp-includes/bbp-common-template.php:
|
1875 |
msgid "No forums available"
|
1876 |
msgstr ""
|
1877 |
|
1878 |
-
#: bbp-includes/bbp-common-template.php:
|
1879 |
msgid "None available"
|
1880 |
msgstr ""
|
1881 |
|
1882 |
-
#: bbp-includes/bbp-common-template.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1883 |
msgid "Home"
|
1884 |
msgstr ""
|
1885 |
|
1886 |
-
#: bbp-includes/bbp-common-template.php:
|
1887 |
-
#: bbp-
|
1888 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1889 |
msgstr ""
|
1890 |
|
1891 |
-
#: bbp-includes/bbp-
|
1892 |
-
#: bbp-
|
1893 |
-
#: bbp-
|
1894 |
-
#: bbp-
|
1895 |
-
#: bbp-
|
1896 |
-
|
1897 |
-
#: bbp-themes/bbp-twentyten/taxonomy-topic-tag-edit.php:20
|
1898 |
-
msgid "Topic Tag: %s"
|
1899 |
msgstr ""
|
1900 |
|
1901 |
-
#: bbp-includes/bbp-
|
1902 |
-
#: bbp-
|
1903 |
-
#: bbp-
|
1904 |
-
#: bbpress.php:
|
1905 |
-
|
|
|
|
|
|
|
1906 |
msgstr ""
|
1907 |
|
1908 |
-
#: bbp-includes/bbp-
|
1909 |
-
|
|
|
|
|
1910 |
msgstr ""
|
1911 |
|
1912 |
-
#: bbp-includes/bbp-
|
1913 |
-
msgid "
|
1914 |
msgstr ""
|
1915 |
|
1916 |
-
#: bbp-includes/bbp-
|
1917 |
-
|
|
|
|
|
1918 |
msgstr ""
|
1919 |
|
1920 |
-
#: bbp-includes/bbp-
|
1921 |
-
|
|
|
|
|
1922 |
msgstr ""
|
1923 |
|
1924 |
-
#: bbp-includes/bbp-
|
1925 |
-
|
|
|
|
|
1926 |
msgstr ""
|
1927 |
|
1928 |
-
#: bbp-includes/bbp-
|
1929 |
-
msgid "
|
1930 |
msgstr ""
|
1931 |
|
1932 |
-
#: bbp-includes/bbp-
|
1933 |
-
msgid "
|
1934 |
msgstr ""
|
1935 |
|
1936 |
-
#: bbp-includes/bbp-
|
1937 |
-
msgid "
|
1938 |
msgstr ""
|
1939 |
|
1940 |
-
#: bbp-includes/bbp-
|
1941 |
-
msgid "
|
1942 |
msgstr ""
|
1943 |
|
1944 |
-
#: bbp-includes/bbp-
|
1945 |
-
msgid "
|
1946 |
msgstr ""
|
1947 |
|
1948 |
-
#: bbp-includes/bbp-
|
1949 |
-
msgid "
|
1950 |
msgstr ""
|
1951 |
|
1952 |
-
#: bbp-includes/bbp-
|
1953 |
-
msgid "
|
1954 |
msgstr ""
|
1955 |
|
1956 |
-
#: bbp-includes/bbp-
|
1957 |
-
|
1958 |
-
msgid "Add this topic to your favorites"
|
1959 |
msgstr ""
|
1960 |
|
1961 |
-
#: bbp-includes/bbp-
|
1962 |
-
msgid "
|
1963 |
msgstr ""
|
1964 |
|
1965 |
-
#: bbp-includes/bbp-
|
1966 |
-
msgid "
|
1967 |
msgstr ""
|
1968 |
|
1969 |
-
#: bbp-includes/bbp-
|
1970 |
-
|
1971 |
-
msgid "×"
|
1972 |
msgstr ""
|
1973 |
|
1974 |
-
#: bbp-includes/bbp-
|
1975 |
-
msgid "
|
1976 |
msgstr ""
|
1977 |
|
1978 |
-
#: bbp-includes/bbp-
|
1979 |
-
|
1980 |
-
msgid "Subscribe"
|
1981 |
msgstr ""
|
1982 |
|
1983 |
-
#: bbp-includes/bbp-
|
1984 |
-
|
1985 |
-
|
|
|
1986 |
msgstr ""
|
1987 |
|
1988 |
-
#: bbp-includes/bbp-
|
1989 |
-
msgid "
|
1990 |
msgstr ""
|
1991 |
|
1992 |
-
#: bbp-includes/bbp-
|
1993 |
-
msgid "
|
1994 |
msgstr ""
|
1995 |
|
1996 |
-
|
1997 |
-
|
|
|
|
|
|
|
1998 |
msgstr ""
|
1999 |
|
2000 |
-
#: bbp-includes/bbp-
|
2001 |
-
|
|
|
2002 |
msgstr ""
|
2003 |
|
2004 |
-
#: bbp-includes/bbp-
|
2005 |
-
msgid "
|
2006 |
msgstr ""
|
2007 |
|
2008 |
-
#: bbp-includes/bbp-
|
2009 |
-
msgid "
|
2010 |
msgstr ""
|
2011 |
|
2012 |
-
#: bbp-includes/bbp-
|
2013 |
-
msgid "
|
2014 |
msgstr ""
|
2015 |
|
2016 |
-
#: bbp-includes/bbp-
|
2017 |
-
msgid "
|
2018 |
msgstr ""
|
2019 |
|
2020 |
-
#: bbp-includes/bbp-
|
2021 |
-
|
|
|
2022 |
msgstr ""
|
2023 |
|
2024 |
-
#: bbp-includes/bbp-
|
2025 |
-
|
2026 |
-
#: bbp-includes/bbp-topic-template.php:1224
|
2027 |
-
msgid "View %s's profile"
|
2028 |
msgstr ""
|
2029 |
|
2030 |
-
#: bbp-includes/bbp-
|
2031 |
-
|
2032 |
-
|
2033 |
-
|
2034 |
msgstr ""
|
2035 |
|
2036 |
-
#: bbp-includes/bbp-extend-buddypress.php:
|
2037 |
msgid "New topic created"
|
2038 |
msgstr ""
|
2039 |
|
2040 |
-
#: bbp-includes/bbp-extend-buddypress.php:
|
2041 |
msgid "New reply created"
|
2042 |
msgstr ""
|
2043 |
|
2044 |
-
#: bbp-includes/bbp-extend-buddypress.php:
|
2045 |
msgid "%1$s started the topic %2$s in the forum %3$s"
|
2046 |
msgstr ""
|
2047 |
|
2048 |
-
#: bbp-includes/bbp-extend-buddypress.php:
|
2049 |
msgid "%1$s replied to the topic %2$s in the forum %3$s"
|
2050 |
msgstr ""
|
2051 |
|
2052 |
-
#: bbp-includes/bbp-
|
2053 |
-
msgid "
|
2054 |
msgstr ""
|
2055 |
|
2056 |
-
#: bbp-includes/bbp-
|
2057 |
-
|
2058 |
-
"
|
2059 |
-
"they always return false."
|
2060 |
msgstr ""
|
2061 |
|
2062 |
-
#: bbp-includes/bbp-
|
2063 |
-
|
|
|
2064 |
msgstr ""
|
2065 |
|
2066 |
-
#: bbp-includes/bbp-
|
2067 |
-
msgid "
|
2068 |
msgstr ""
|
2069 |
|
2070 |
-
#: bbp-includes/bbp-
|
2071 |
-
msgid "
|
2072 |
msgstr ""
|
2073 |
|
2074 |
-
#: bbp-includes/bbp-
|
2075 |
-
|
2076 |
-
#: bbp-includes/bbp-topic-functions.php:470
|
2077 |
-
msgid "<strong>ERROR</strong>: Forum ID is missing."
|
2078 |
msgstr ""
|
2079 |
|
2080 |
-
#: bbp-includes/bbp-
|
2081 |
-
msgid "
|
2082 |
msgstr ""
|
2083 |
|
2084 |
-
#: bbp-includes/bbp-
|
2085 |
-
|
2086 |
-
msgid "<strong>ERROR</strong>: Your reply cannot be empty."
|
2087 |
msgstr ""
|
2088 |
|
2089 |
-
#: bbp-includes/bbp-
|
2090 |
-
|
2091 |
-
|
|
|
2092 |
msgstr ""
|
2093 |
|
2094 |
-
#: bbp-includes/bbp-
|
2095 |
-
msgid ""
|
2096 |
-
"<strong>ERROR</strong>: Duplicate reply detected; it looks as though "
|
2097 |
-
"you’ve already said that!"
|
2098 |
msgstr ""
|
2099 |
|
2100 |
-
#: bbp-includes/bbp-
|
2101 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2102 |
msgstr ""
|
2103 |
|
2104 |
-
#: bbp-includes/bbp-
|
2105 |
-
#: bbp-includes/bbp-reply-functions.php:495
|
2106 |
msgid ""
|
2107 |
-
"<strong>ERROR</strong>:
|
2108 |
msgstr ""
|
2109 |
|
2110 |
-
#: bbp-includes/bbp-
|
2111 |
-
|
|
|
2112 |
msgstr ""
|
2113 |
|
2114 |
-
#: bbp-includes/bbp-
|
2115 |
-
|
|
|
2116 |
msgstr ""
|
2117 |
|
2118 |
-
#: bbp-includes/bbp-
|
2119 |
-
msgid "<strong>ERROR</strong>:
|
2120 |
msgstr ""
|
2121 |
|
2122 |
-
#: bbp-includes/bbp-
|
2123 |
msgid ""
|
2124 |
-
"<strong>ERROR</strong>: This forum is a category. No
|
2125 |
-
"
|
2126 |
msgstr ""
|
2127 |
|
2128 |
-
#: bbp-includes/bbp-
|
2129 |
-
|
2130 |
-
"<strong>ERROR</strong>: This forum has been closed to new
|
2131 |
msgstr ""
|
2132 |
|
2133 |
-
#: bbp-includes/bbp-
|
|
|
2134 |
msgid ""
|
2135 |
"<strong>ERROR</strong>: This forum is private and you do not have the "
|
2136 |
-
"capability to read or create new
|
2137 |
msgstr ""
|
2138 |
|
2139 |
-
#: bbp-includes/bbp-
|
|
|
2140 |
msgid ""
|
2141 |
"<strong>ERROR</strong>: This forum is hidden and you do not have the "
|
2142 |
-
"capability to read or create new
|
2143 |
msgstr ""
|
2144 |
|
2145 |
-
#: bbp-includes/bbp-
|
2146 |
-
|
|
|
|
|
2147 |
msgstr ""
|
2148 |
|
2149 |
-
#: bbp-includes/bbp-
|
2150 |
-
msgid "<strong>ERROR
|
2151 |
msgstr ""
|
2152 |
|
2153 |
-
#: bbp-includes/bbp-
|
2154 |
-
msgid ""
|
2155 |
-
"<strong>ERROR</strong>: There was a problem unmarking the reply as spam!"
|
2156 |
msgstr ""
|
2157 |
|
2158 |
-
#: bbp-includes/bbp-
|
2159 |
-
msgid "<strong>ERROR</strong>:
|
2160 |
msgstr ""
|
2161 |
|
2162 |
-
#: bbp-includes/bbp-
|
2163 |
-
msgid "<strong>ERROR</strong>:
|
2164 |
msgstr ""
|
2165 |
|
2166 |
-
#: bbp-includes/bbp-
|
2167 |
-
msgid "<strong>ERROR</strong>:
|
2168 |
msgstr ""
|
2169 |
|
2170 |
-
#: bbp-includes/bbp-
|
2171 |
-
msgid "<strong>ERROR</strong>:
|
2172 |
msgstr ""
|
2173 |
|
2174 |
-
#: bbp-includes/bbp-
|
2175 |
-
|
2176 |
-
|
|
|
|
|
|
|
2177 |
|
2178 |
-
#: bbp-includes/bbp-
|
2179 |
-
|
|
|
2180 |
msgstr ""
|
2181 |
|
2182 |
-
#: bbp-includes/bbp-
|
2183 |
-
#: bbp-includes/bbp-topic-
|
2184 |
-
msgid "
|
2185 |
-
|
|
|
|
|
2186 |
|
2187 |
-
#: bbp-includes/bbp-
|
2188 |
-
|
2189 |
-
|
2190 |
-
#: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:102
|
2191 |
-
msgid "Delete"
|
2192 |
msgstr ""
|
2193 |
|
2194 |
-
#: bbp-includes/bbp-
|
2195 |
-
|
2196 |
-
msgid "Are you sure you want to delete that permanently?"
|
2197 |
msgstr ""
|
2198 |
|
2199 |
-
#: bbp-includes/bbp-
|
2200 |
-
|
2201 |
-
msgid "Unspam"
|
2202 |
msgstr ""
|
2203 |
|
2204 |
-
#: bbp-includes/bbp-
|
2205 |
-
msgid "
|
2206 |
msgstr ""
|
2207 |
|
2208 |
-
#: bbp-includes/bbp-
|
2209 |
-
msgid "
|
2210 |
msgstr ""
|
2211 |
|
2212 |
-
#: bbp-includes/bbp-
|
2213 |
-
msgid "
|
2214 |
msgstr ""
|
2215 |
|
2216 |
-
#: bbp-includes/bbp-
|
2217 |
-
msgid "
|
2218 |
msgstr ""
|
2219 |
|
2220 |
-
#: bbp-includes/bbp-
|
2221 |
-
msgid "
|
2222 |
msgstr ""
|
2223 |
|
2224 |
-
#: bbp-includes/bbp-
|
2225 |
-
msgid "
|
2226 |
msgstr ""
|
2227 |
|
2228 |
-
#: bbp-includes/bbp-
|
2229 |
-
msgid "
|
2230 |
msgstr ""
|
2231 |
|
2232 |
-
#: bbp-includes/bbp-
|
2233 |
-
|
|
|
2234 |
msgstr ""
|
2235 |
|
2236 |
-
#: bbp-includes/bbp-
|
2237 |
-
|
|
|
2238 |
msgstr ""
|
2239 |
|
2240 |
-
#: bbp-includes/bbp-
|
2241 |
-
msgid "
|
2242 |
msgstr ""
|
2243 |
|
2244 |
-
#: bbp-includes/bbp-forum-template.php:
|
2245 |
-
|
2246 |
-
|
2247 |
-
|
2248 |
-
msgstr
|
2249 |
|
2250 |
-
#: bbp-includes/bbp-forum-template.php:
|
2251 |
-
|
2252 |
-
msgid " (+ %d hidden)"
|
2253 |
msgstr ""
|
2254 |
|
2255 |
-
#: bbp-includes/bbp-
|
2256 |
-
|
2257 |
-
|
2258 |
-
msgid_plural "%s replies"
|
2259 |
-
msgstr[0] ""
|
2260 |
-
msgstr[1] ""
|
2261 |
|
2262 |
-
#: bbp-includes/bbp-
|
2263 |
-
msgid ""
|
2264 |
-
"This category contains %1$s and %2$s, and was last updated by %3$s %4$s ago."
|
2265 |
msgstr ""
|
2266 |
|
2267 |
-
#: bbp-includes/bbp-
|
2268 |
-
|
2269 |
-
|
|
|
2270 |
msgstr ""
|
2271 |
|
2272 |
-
#: bbp-includes/bbp-
|
2273 |
-
msgid "
|
2274 |
msgstr ""
|
2275 |
|
2276 |
-
#: bbp-includes/bbp-
|
2277 |
-
|
|
|
2278 |
msgstr ""
|
2279 |
|
2280 |
-
#: bbp-includes/bbp-
|
2281 |
-
msgid "
|
|
|
|
|
2282 |
msgstr ""
|
2283 |
|
2284 |
-
#: bbp-includes/bbp-
|
2285 |
-
msgid "
|
2286 |
msgstr ""
|
2287 |
|
2288 |
-
#: bbp-includes/bbp-
|
2289 |
-
#: bbp-
|
2290 |
-
|
2291 |
-
|
2292 |
msgstr ""
|
2293 |
|
2294 |
-
#: bbp-includes/bbp-
|
2295 |
-
|
2296 |
-
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:99
|
2297 |
-
#: bbp-themes/bbp-twentyten/bbpress/form-user-register.php:23
|
2298 |
-
msgid "Username"
|
2299 |
msgstr ""
|
2300 |
|
2301 |
-
#: bbp-includes/bbp-
|
2302 |
-
|
2303 |
-
msgid "Password"
|
2304 |
msgstr ""
|
2305 |
|
2306 |
-
#: bbp-includes/bbp-
|
2307 |
-
msgid "
|
2308 |
msgstr ""
|
2309 |
|
2310 |
-
#: bbp-includes/bbp-
|
2311 |
-
|
2312 |
-
|
|
|
2313 |
msgstr ""
|
2314 |
|
2315 |
-
#: bbp-includes/bbp-
|
2316 |
-
|
2317 |
-
|
2318 |
msgstr ""
|
2319 |
|
2320 |
-
#: bbp-includes/bbp-
|
2321 |
-
|
2322 |
-
|
2323 |
-
|
2324 |
msgstr ""
|
2325 |
|
2326 |
-
#: bbp-includes/bbp-
|
2327 |
-
msgid "
|
|
|
|
|
2328 |
msgstr ""
|
2329 |
|
2330 |
-
#: bbp-includes/bbp-
|
2331 |
-
msgid "
|
2332 |
msgstr ""
|
2333 |
|
2334 |
-
#: bbp-includes/bbp-
|
2335 |
-
msgid "
|
2336 |
msgstr ""
|
2337 |
|
2338 |
-
#: bbp-includes/bbp-
|
2339 |
-
msgid "
|
|
|
2340 |
msgstr ""
|
2341 |
|
2342 |
-
#: bbp-includes/bbp-
|
2343 |
-
msgid "
|
2344 |
msgstr ""
|
2345 |
|
2346 |
-
#: bbp-includes/bbp-
|
2347 |
-
msgid "
|
2348 |
msgstr ""
|
2349 |
|
2350 |
-
#: bbp-includes/bbp-
|
2351 |
-
msgid "
|
2352 |
msgstr ""
|
2353 |
|
2354 |
-
#: bbp-includes/bbp-
|
2355 |
-
msgid "
|
2356 |
msgstr ""
|
2357 |
|
2358 |
-
#: bbp-includes/bbp-
|
2359 |
-
msgid "
|
2360 |
msgstr ""
|
2361 |
|
2362 |
-
#: bbp-includes/bbp-
|
2363 |
-
|
|
|
2364 |
msgstr ""
|
2365 |
|
2366 |
-
#: bbp-includes/bbp-
|
2367 |
-
msgid "
|
2368 |
msgstr ""
|
2369 |
|
2370 |
-
#: bbp-includes/bbp-
|
2371 |
-
msgid "
|
2372 |
msgstr ""
|
2373 |
|
2374 |
-
#: bbp-includes/bbp-
|
2375 |
-
|
|
|
|
|
2376 |
msgstr ""
|
2377 |
|
2378 |
-
#: bbp-includes/bbp-
|
2379 |
-
|
2380 |
-
|
2381 |
-
"
|
2382 |
msgstr ""
|
2383 |
|
2384 |
-
#: bbp-includes/bbp-
|
2385 |
-
|
|
|
|
|
2386 |
msgstr ""
|
2387 |
|
2388 |
-
#: bbp-includes/bbp-
|
2389 |
-
|
|
|
|
|
|
|
|
|
|
|
2390 |
msgstr ""
|
2391 |
|
2392 |
-
#: bbp-includes/bbp-
|
2393 |
-
#: bbp-includes/bbp-
|
2394 |
-
msgid "
|
2395 |
msgstr ""
|
2396 |
|
2397 |
-
#: bbp-includes/bbp-
|
2398 |
-
#: bbp-includes/bbp-
|
2399 |
-
msgid "
|
2400 |
msgstr ""
|
2401 |
|
2402 |
-
#: bbp-includes/bbp-
|
2403 |
-
|
2404 |
-
msgid "Trashed: %s"
|
2405 |
msgstr ""
|
2406 |
|
2407 |
-
#: bbp-includes/bbp-
|
2408 |
-
msgid "
|
2409 |
msgstr ""
|
2410 |
|
2411 |
-
#: bbp-includes/bbp-
|
2412 |
-
msgid "
|
2413 |
-
|
|
|
|
|
2414 |
|
2415 |
-
#: bbp-includes/bbp-
|
2416 |
-
msgid ""
|
2417 |
-
"%1$s
|
2418 |
-
"
|
2419 |
-
"
|
2420 |
-
|
2421 |
-
|
2422 |
-
"
|
2423 |
-
"
|
2424 |
-
|
2425 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
2426 |
|
2427 |
-
#: bbp-includes/bbp-topic-functions.php:
|
2428 |
msgid ""
|
2429 |
"<strong>ERROR</strong>: You do not have permission to create new topics."
|
2430 |
msgstr ""
|
2431 |
|
2432 |
-
#: bbp-includes/bbp-topic-functions.php:
|
2433 |
-
#: bbp-includes/bbp-topic-functions.php:
|
2434 |
msgid "<strong>ERROR</strong>: Your topic needs a title."
|
2435 |
msgstr ""
|
2436 |
|
2437 |
-
#: bbp-includes/bbp-topic-functions.php:
|
2438 |
-
#: bbp-includes/bbp-topic-functions.php:
|
2439 |
msgid "<strong>ERROR</strong>: Your topic cannot be empty."
|
2440 |
msgstr ""
|
2441 |
|
2442 |
-
#: bbp-includes/bbp-topic-functions.php:
|
2443 |
msgid ""
|
2444 |
"<strong>ERROR</strong>: This forum is a category. No topics can be created "
|
2445 |
"in this forum."
|
2446 |
msgstr ""
|
2447 |
|
2448 |
-
#: bbp-includes/bbp-topic-functions.php:
|
2449 |
-
#: bbp-includes/bbp-topic-functions.php:
|
2450 |
msgid "<strong>ERROR</strong>: This forum has been closed to new topics."
|
2451 |
msgstr ""
|
2452 |
|
2453 |
-
#: bbp-includes/bbp-topic-functions.php:
|
2454 |
-
#: bbp-includes/bbp-topic-functions.php:
|
2455 |
msgid ""
|
2456 |
"<strong>ERROR</strong>: This forum is private and you do not have the "
|
2457 |
"capability to read or create new topics in it."
|
2458 |
msgstr ""
|
2459 |
|
2460 |
-
#: bbp-includes/bbp-topic-functions.php:
|
2461 |
-
#: bbp-includes/bbp-topic-functions.php:
|
2462 |
msgid ""
|
2463 |
"<strong>ERROR</strong>: This forum is hidden and you do not have the "
|
2464 |
"capability to read or create new topics in it."
|
2465 |
msgstr ""
|
2466 |
|
2467 |
-
#: bbp-includes/bbp-topic-functions.php:
|
2468 |
msgid ""
|
2469 |
"<strong>ERROR</strong>: Duplicate topic detected; it looks as though "
|
2470 |
"you’ve already said that!"
|
2471 |
msgstr ""
|
2472 |
|
2473 |
-
#: bbp-includes/bbp-topic-functions.php:
|
2474 |
msgid "<strong>ERROR</strong>: Your topic cannot be created at this time."
|
2475 |
msgstr ""
|
2476 |
|
2477 |
-
#: bbp-includes/bbp-topic-functions.php:
|
2478 |
-
#: bbp-includes/bbp-topic-functions.php:
|
2479 |
msgid "<strong>ERROR</strong>: Topic ID not found."
|
2480 |
msgstr ""
|
2481 |
|
2482 |
-
#: bbp-includes/bbp-topic-functions.php:
|
2483 |
msgid "<strong>ERROR</strong>: The topic you want to edit was not found."
|
2484 |
msgstr ""
|
2485 |
|
2486 |
-
#: bbp-includes/bbp-topic-functions.php:
|
2487 |
msgid "<strong>ERROR</strong>: You do not have permission to edit that topic."
|
2488 |
msgstr ""
|
2489 |
|
2490 |
-
#: bbp-includes/bbp-topic-functions.php:
|
2491 |
msgid ""
|
2492 |
"<strong>ERROR</strong>: This forum is a category. No topics can be created "
|
2493 |
"in it."
|
2494 |
msgstr ""
|
2495 |
|
2496 |
-
#: bbp-includes/bbp-topic-functions.php:
|
2497 |
msgid "<strong>ERROR</strong>: Your topic cannot be edited at this time."
|
2498 |
msgstr ""
|
2499 |
|
2500 |
-
#: bbp-includes/bbp-topic-functions.php:
|
2501 |
msgid "<strong>ERROR</strong>: The topic you want to merge was not found."
|
2502 |
msgstr ""
|
2503 |
|
2504 |
-
#: bbp-includes/bbp-topic-functions.php:
|
2505 |
-
#: bbp-includes/bbp-topic-functions.php:
|
2506 |
msgid ""
|
2507 |
"<strong>ERROR</strong>: You do not have the permissions to edit the source "
|
2508 |
"topic."
|
2509 |
msgstr ""
|
2510 |
|
2511 |
-
#: bbp-includes/bbp-topic-functions.php:
|
2512 |
msgid "<strong>ERROR</strong>: Destination topic ID not found."
|
2513 |
msgstr ""
|
2514 |
|
2515 |
-
#: bbp-includes/bbp-topic-functions.php:
|
2516 |
msgid "<strong>ERROR</strong>: The topic you want to merge to was not found."
|
2517 |
msgstr ""
|
2518 |
|
2519 |
-
#: bbp-includes/bbp-topic-functions.php:
|
2520 |
msgid ""
|
2521 |
"<strong>ERROR</strong>: You do not have the permissions to edit the "
|
2522 |
"destination topic."
|
2523 |
msgstr ""
|
2524 |
|
2525 |
-
#: bbp-includes/bbp-topic-functions.php:
|
2526 |
msgid "<strong>ERROR</strong>: Reply ID to split the topic from not found!"
|
2527 |
msgstr ""
|
2528 |
|
2529 |
-
#: bbp-includes/bbp-topic-functions.php:
|
2530 |
msgid "<strong>ERROR</strong>: The reply you want to split from was not found."
|
2531 |
msgstr ""
|
2532 |
|
2533 |
-
#: bbp-includes/bbp-topic-functions.php:
|
2534 |
msgid "<strong>ERROR</strong>: The topic you want to split was not found."
|
2535 |
msgstr ""
|
2536 |
|
2537 |
-
#: bbp-includes/bbp-topic-functions.php:
|
2538 |
msgid "<strong>ERROR</strong>: You need to choose a valid split option."
|
2539 |
msgstr ""
|
2540 |
|
2541 |
-
#: bbp-includes/bbp-topic-functions.php:
|
2542 |
msgid "<strong>ERROR</strong>: Destination topic ID not found!"
|
2543 |
msgstr ""
|
2544 |
|
2545 |
-
#: bbp-includes/bbp-topic-functions.php:
|
2546 |
msgid "<strong>ERROR</strong>: The topic you want to split to was not found!"
|
2547 |
msgstr ""
|
2548 |
|
2549 |
-
#: bbp-includes/bbp-topic-functions.php:
|
2550 |
msgid ""
|
2551 |
"<strong>ERROR</strong>: You do not have the permissions to edit the "
|
2552 |
"destination topic!"
|
2553 |
msgstr ""
|
2554 |
|
2555 |
-
#: bbp-includes/bbp-topic-functions.php:
|
2556 |
msgid ""
|
2557 |
"<strong>ERROR</strong>: There was a problem converting the reply into the "
|
2558 |
"topic. Please try again."
|
2559 |
msgstr ""
|
2560 |
|
2561 |
-
#: bbp-includes/bbp-topic-functions.php:
|
2562 |
msgid ""
|
2563 |
"<strong>ERROR</strong>: You do not have the permissions to create new "
|
2564 |
"topics. The reply could not be converted into a topic."
|
2565 |
msgstr ""
|
2566 |
|
2567 |
-
#: bbp-includes/bbp-topic-functions.php:
|
2568 |
msgid ""
|
2569 |
"<strong>ERROR</strong>: The following problem(s) have been found while "
|
2570 |
"getting the tag: %s"
|
2571 |
msgstr ""
|
2572 |
|
2573 |
-
#: bbp-includes/bbp-topic-functions.php:
|
2574 |
-
#: bbp-includes/bbp-topic-functions.php:
|
2575 |
msgid ""
|
2576 |
"<strong>ERROR</strong>: You do not have the permissions to edit the topic "
|
2577 |
"tags."
|
2578 |
msgstr ""
|
2579 |
|
2580 |
-
#: bbp-includes/bbp-topic-functions.php:
|
2581 |
-
#: bbp-includes/bbp-topic-functions.php:
|
2582 |
msgid "<strong>ERROR</strong>: You need to enter a tag name."
|
2583 |
msgstr ""
|
2584 |
|
2585 |
-
#: bbp-includes/bbp-topic-functions.php:
|
2586 |
msgid ""
|
2587 |
"<strong>ERROR</strong>: The following problem(s) have been found while "
|
2588 |
"updating the tag: %s"
|
2589 |
msgstr ""
|
2590 |
|
2591 |
-
#: bbp-includes/bbp-topic-functions.php:
|
2592 |
-
#: bbp-includes/bbp-topic-functions.php:
|
2593 |
msgid ""
|
2594 |
"<strong>ERROR</strong>: The following problem(s) have been found while "
|
2595 |
"merging the tags: %s"
|
2596 |
msgstr ""
|
2597 |
|
2598 |
-
#: bbp-includes/bbp-topic-functions.php:
|
2599 |
msgid ""
|
2600 |
"<strong>ERROR</strong>: The tags which are being merged can not be the same."
|
2601 |
msgstr ""
|
2602 |
|
2603 |
-
#: bbp-includes/bbp-topic-functions.php:
|
2604 |
msgid ""
|
2605 |
"<strong>ERROR</strong>: You do not have the permissions to delete the topic "
|
2606 |
"tags."
|
2607 |
msgstr ""
|
2608 |
|
2609 |
-
#: bbp-includes/bbp-topic-functions.php:
|
2610 |
msgid ""
|
2611 |
"<strong>ERROR</strong>: The following problem(s) have been found while "
|
2612 |
"deleting the tag: %s"
|
2613 |
msgstr ""
|
2614 |
|
2615 |
-
#: bbp-includes/bbp-topic-functions.php:
|
2616 |
msgid "<strong>ERROR:</strong> You do not have the permission to do that."
|
2617 |
msgstr ""
|
2618 |
|
2619 |
-
#: bbp-includes/bbp-topic-functions.php:
|
2620 |
msgid "<strong>ERROR</strong>: There was a problem closing the topic."
|
2621 |
msgstr ""
|
2622 |
|
2623 |
-
#: bbp-includes/bbp-topic-functions.php:
|
2624 |
msgid "<strong>ERROR</strong>: There was a problem opening the topic."
|
2625 |
msgstr ""
|
2626 |
|
2627 |
-
#: bbp-includes/bbp-topic-functions.php:
|
2628 |
msgid "<strong>ERROR</strong>: There was a problem unsticking the topic."
|
2629 |
msgstr ""
|
2630 |
|
2631 |
-
#: bbp-includes/bbp-topic-functions.php:
|
2632 |
msgid "<strong>ERROR</strong>: There was a problem sticking the topic."
|
2633 |
msgstr ""
|
2634 |
|
2635 |
-
#: bbp-includes/bbp-topic-functions.php:
|
2636 |
msgid ""
|
2637 |
"<strong>ERROR</strong>: There was a problem unmarking the topic as spam."
|
2638 |
msgstr ""
|
2639 |
|
2640 |
-
#: bbp-includes/bbp-topic-functions.php:
|
2641 |
msgid "<strong>ERROR</strong>: There was a problem marking the topic as spam."
|
2642 |
msgstr ""
|
2643 |
|
2644 |
-
#: bbp-includes/bbp-topic-functions.php:
|
2645 |
msgid "<strong>ERROR</strong>: There was a problem trashing the topic."
|
2646 |
msgstr ""
|
2647 |
|
2648 |
-
#: bbp-includes/bbp-topic-functions.php:
|
2649 |
msgid "<strong>ERROR</strong>: There was a problem untrashing the topic."
|
2650 |
msgstr ""
|
2651 |
|
2652 |
-
#: bbp-includes/bbp-topic-functions.php:
|
2653 |
msgid "<strong>ERROR</strong>: There was a problem deleting the topic."
|
2654 |
msgstr ""
|
2655 |
|
2656 |
-
#: bbp-includes/bbp-topic-
|
2657 |
-
msgid "
|
2658 |
msgstr ""
|
2659 |
|
2660 |
-
#: bbp-includes/bbp-
|
2661 |
-
msgid "%1$s
|
2662 |
msgstr ""
|
2663 |
|
2664 |
-
#: bbp-includes/bbp-
|
2665 |
-
msgid "
|
2666 |
msgstr ""
|
2667 |
|
2668 |
-
#: bbp-includes/bbp-
|
2669 |
-
|
|
|
2670 |
msgstr ""
|
2671 |
|
2672 |
-
#: bbp-includes/bbp-
|
2673 |
-
|
2674 |
-
msgid "
|
2675 |
msgstr ""
|
2676 |
|
2677 |
-
#: bbp-includes/bbp-
|
2678 |
-
|
|
|
|
|
|
|
|
|
2679 |
msgstr ""
|
2680 |
|
2681 |
-
#: bbp-includes/bbp-
|
2682 |
-
msgid ""
|
2683 |
-
"
|
2684 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2685 |
msgstr ""
|
2686 |
|
2687 |
-
#: bbp-includes/bbp-user-functions.php:
|
2688 |
-
#: bbp-includes/bbp-user-functions.php:
|
2689 |
msgid ""
|
2690 |
"<strong>ERROR</strong>: You don't have the permission to edit favorites of "
|
2691 |
"that user!"
|
2692 |
msgstr ""
|
2693 |
|
2694 |
-
#: bbp-includes/bbp-user-functions.php:
|
2695 |
msgid ""
|
2696 |
"<strong>ERROR</strong>: No topic was found! Which topic are you marking/"
|
2697 |
"unmarking as favorite?"
|
2698 |
msgstr ""
|
2699 |
|
2700 |
-
#: bbp-includes/bbp-user-functions.php:
|
2701 |
msgid ""
|
2702 |
"<strong>ERROR</strong>: There was a problem removing that topic from "
|
2703 |
"favorites!"
|
2704 |
msgstr ""
|
2705 |
|
2706 |
-
#: bbp-includes/bbp-user-functions.php:
|
2707 |
msgid "<strong>ERROR</strong>: There was a problem favoriting that topic!"
|
2708 |
msgstr ""
|
2709 |
|
2710 |
-
#: bbp-includes/bbp-user-functions.php:
|
2711 |
msgid ""
|
2712 |
"<strong>ERROR</strong>: No topic was found! Which topic are you subscribing/"
|
2713 |
"unsubscribing to?"
|
2714 |
msgstr ""
|
2715 |
|
2716 |
-
#: bbp-includes/bbp-user-functions.php:
|
2717 |
msgid ""
|
2718 |
"<strong>ERROR</strong>: There was a problem unsubscribing from that topic!"
|
2719 |
msgstr ""
|
2720 |
|
2721 |
-
#: bbp-includes/bbp-user-functions.php:
|
2722 |
msgid "<strong>ERROR</strong>: There was a problem subscribing to that topic!"
|
2723 |
msgstr ""
|
2724 |
|
2725 |
-
#: bbp-includes/bbp-user-functions.php:
|
2726 |
msgid ""
|
2727 |
"What are you doing here? You do not have the permission to edit this user."
|
2728 |
msgstr ""
|
2729 |
|
2730 |
-
#: bbp-includes/bbp-
|
2731 |
-
msgid "
|
2732 |
msgstr ""
|
2733 |
|
2734 |
-
#: bbp-includes/bbp-
|
2735 |
-
|
2736 |
-
#: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:73
|
2737 |
-
msgid "Merge"
|
2738 |
msgstr ""
|
2739 |
|
2740 |
-
#: bbp-includes/bbp-
|
2741 |
-
|
|
|
2742 |
msgstr ""
|
2743 |
|
2744 |
-
#: bbp-includes/bbp-
|
2745 |
-
msgid "
|
2746 |
msgstr ""
|
2747 |
|
2748 |
-
#: bbp-includes/bbp-
|
2749 |
-
msgid "
|
2750 |
msgstr ""
|
2751 |
|
2752 |
-
#: bbp-includes/bbp-
|
2753 |
-
|
|
|
|
|
2754 |
msgstr ""
|
2755 |
|
2756 |
-
#: bbp-includes/bbp-
|
2757 |
-
msgid "
|
2758 |
msgstr ""
|
2759 |
|
2760 |
-
#: bbp-includes/bbp-
|
2761 |
-
msgid "This topic is
|
2762 |
msgstr ""
|
2763 |
|
2764 |
-
#: bbp-includes/bbp-
|
2765 |
-
|
|
|
|
|
2766 |
msgstr ""
|
2767 |
|
2768 |
-
#: bbp-includes/bbp-
|
2769 |
-
msgid "
|
2770 |
msgstr ""
|
2771 |
|
2772 |
-
#: bbp-includes/bbp-
|
2773 |
-
|
|
|
|
|
2774 |
msgstr ""
|
2775 |
|
2776 |
-
#: bbp-includes/bbp-
|
2777 |
-
|
2778 |
-
|
2779 |
-
|
2780 |
-
msgstr[1] ""
|
2781 |
-
|
2782 |
-
#: bbp-includes/bbp-topic-template.php:2747
|
2783 |
-
msgid ""
|
2784 |
-
"This topic has %1$s, contains %2$s, and was last updated by %3$s %4$s ago."
|
2785 |
msgstr ""
|
2786 |
|
2787 |
-
#: bbp-includes/bbp-
|
2788 |
-
msgid "
|
2789 |
msgstr ""
|
2790 |
|
2791 |
-
#: bbp-
|
2792 |
-
msgid "
|
2793 |
msgstr ""
|
2794 |
|
2795 |
-
#: bbp-
|
2796 |
-
msgid "
|
2797 |
msgstr ""
|
2798 |
|
2799 |
-
#: bbp-
|
2800 |
-
msgid "
|
2801 |
msgstr ""
|
2802 |
|
2803 |
-
#: bbp-
|
2804 |
-
msgid "
|
2805 |
msgstr ""
|
2806 |
|
2807 |
-
#: bbp-
|
2808 |
-
msgid ""
|
2809 |
-
"<p>This is a collection of tags that are currently popular on our forums.</p>"
|
2810 |
msgstr ""
|
2811 |
|
2812 |
-
#: bbp-
|
2813 |
-
msgid "
|
2814 |
msgstr ""
|
2815 |
|
2816 |
-
#: bbp-
|
2817 |
-
msgid "
|
2818 |
msgstr ""
|
2819 |
|
2820 |
-
#: bbp-
|
2821 |
-
msgid "
|
2822 |
msgstr ""
|
2823 |
|
2824 |
-
#: bbp-
|
2825 |
-
|
|
|
|
|
|
|
2826 |
msgstr ""
|
2827 |
|
2828 |
-
#: bbp-
|
2829 |
-
|
|
|
2830 |
msgstr ""
|
2831 |
|
2832 |
-
#: bbp-
|
2833 |
-
|
|
|
2834 |
msgstr ""
|
2835 |
|
2836 |
-
#: bbp-
|
2837 |
-
|
|
|
2838 |
msgstr ""
|
2839 |
|
2840 |
-
#: bbp-
|
2841 |
-
|
|
|
2842 |
msgstr ""
|
2843 |
|
|
|
2844 |
#: bbp-themes/bbp-twentyten/bbpress/feedback-no-topics.php:13
|
2845 |
msgid "Oh bother! No topics were found here!"
|
2846 |
msgstr ""
|
2847 |
|
2848 |
-
#: bbp-
|
2849 |
-
|
2850 |
-
|
2851 |
-
|
2852 |
-
#: bbp-themes/bbp-twentyten/bbpress/user-topics-created.php:27
|
2853 |
-
msgid "You have not created any topics."
|
2854 |
msgstr ""
|
2855 |
|
2856 |
-
#: bbp-
|
2857 |
-
|
|
|
2858 |
msgstr ""
|
2859 |
|
2860 |
-
#: bbp-
|
2861 |
-
|
|
|
2862 |
msgstr ""
|
2863 |
|
2864 |
-
#: bbp-
|
2865 |
-
|
|
|
2866 |
msgstr ""
|
2867 |
|
2868 |
-
#: bbp-
|
2869 |
-
|
2870 |
-
|
2871 |
-
|
|
|
2872 |
msgstr ""
|
2873 |
|
2874 |
-
#: bbp-
|
2875 |
-
#: bbp-themes/bbp-twentyten/bbpress/form-
|
2876 |
-
msgid "
|
2877 |
msgstr ""
|
2878 |
|
2879 |
-
#: bbp-
|
2880 |
-
|
|
|
2881 |
msgstr ""
|
2882 |
|
2883 |
-
#: bbp-
|
2884 |
-
#: bbp-themes/bbp-twentyten/bbpress/form-
|
2885 |
msgid ""
|
2886 |
-
"
|
2887 |
-
"
|
2888 |
msgstr ""
|
2889 |
|
2890 |
-
#: bbp-
|
2891 |
-
|
|
|
|
|
|
|
|
|
|
|
2892 |
msgstr ""
|
2893 |
|
2894 |
-
#: bbp-
|
2895 |
-
#: bbp-themes/bbp-twentyten/bbpress/form-
|
2896 |
-
msgid "
|
2897 |
msgstr ""
|
2898 |
|
2899 |
-
#: bbp-
|
2900 |
-
#: bbp-themes/bbp-twentyten/bbpress/form-
|
2901 |
-
msgid "
|
2902 |
msgstr ""
|
2903 |
|
2904 |
-
#: bbp-
|
2905 |
-
#: bbp-
|
2906 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
2907 |
msgstr ""
|
2908 |
|
2909 |
-
#: bbp-
|
2910 |
-
#: bbp-themes/bbp-twentyten/bbpress/form-
|
2911 |
-
msgid "
|
2912 |
msgstr ""
|
2913 |
|
2914 |
-
#: bbp-
|
2915 |
-
#: bbp-themes/bbp-twentyten/bbpress/form-
|
2916 |
-
msgid "
|
2917 |
msgstr ""
|
2918 |
|
2919 |
-
#: bbp-
|
2920 |
-
#: bbp-
|
2921 |
-
#: bbp-
|
2922 |
-
#: bbp-
|
|
|
|
|
|
|
|
|
|
|
|
|
2923 |
msgid "Submit"
|
2924 |
msgstr ""
|
2925 |
|
2926 |
-
#: bbp-
|
2927 |
-
|
2928 |
-
|
2929 |
-
|
2930 |
-
#: bbp-themes/bbp-twentyten/bbpress/form-reply.php:166
|
2931 |
-
#: bbp-themes/bbp-twentyten/bbpress/form-topic.php:207
|
2932 |
-
msgid "The forum ‘%s’ is closed to new topics and replies."
|
2933 |
-
msgstr ""
|
2934 |
-
|
2935 |
-
#: bbp-themes/bbp-twentyten/bbpress/form-reply.php:174
|
2936 |
-
msgid "You cannot reply to this topic."
|
2937 |
-
msgstr ""
|
2938 |
-
|
2939 |
-
#: bbp-themes/bbp-twentyten/bbpress/form-reply.php:174
|
2940 |
-
msgid "You must be logged in to reply to this topic."
|
2941 |
-
msgstr ""
|
2942 |
-
|
2943 |
-
#: bbp-themes/bbp-twentyten/bbpress/user-subscriptions.php:20
|
2944 |
-
msgid "Subscribed Forum Topics"
|
2945 |
-
msgstr ""
|
2946 |
-
|
2947 |
-
#: bbp-themes/bbp-twentyten/bbpress/user-subscriptions.php:31
|
2948 |
-
msgid "You are not currently subscribed to any topics."
|
2949 |
-
msgstr ""
|
2950 |
-
|
2951 |
-
#: bbp-themes/bbp-twentyten/bbpress/user-subscriptions.php:31
|
2952 |
-
msgid "This user is not currently subscribed to any topics."
|
2953 |
-
msgstr ""
|
2954 |
-
|
2955 |
-
#: bbp-themes/bbp-twentyten/bbpress/feedback-logged-in.php:13
|
2956 |
-
msgid "You are already logged in."
|
2957 |
-
msgstr ""
|
2958 |
-
|
2959 |
-
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:24
|
2960 |
-
msgid "First Name"
|
2961 |
-
msgstr ""
|
2962 |
-
|
2963 |
-
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:29
|
2964 |
-
msgid "Last Name"
|
2965 |
-
msgstr ""
|
2966 |
-
|
2967 |
-
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:34
|
2968 |
-
msgid "Nickname"
|
2969 |
-
msgstr ""
|
2970 |
-
|
2971 |
-
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:39
|
2972 |
-
msgid "Display name publicly as"
|
2973 |
-
msgstr ""
|
2974 |
-
|
2975 |
-
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:49
|
2976 |
-
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:52
|
2977 |
-
msgid "Contact Info"
|
2978 |
msgstr ""
|
2979 |
|
2980 |
-
#: bbp-
|
2981 |
-
#: bbp-themes/bbp-twentyten/bbpress/form-
|
2982 |
-
msgid "
|
2983 |
msgstr ""
|
2984 |
|
2985 |
-
#: bbp-
|
2986 |
-
#: bbp-themes/bbp-twentyten/bbpress/form-
|
2987 |
-
msgid "
|
2988 |
msgstr ""
|
2989 |
|
2990 |
-
#: bbp-
|
2991 |
-
|
|
|
2992 |
msgstr ""
|
2993 |
|
2994 |
-
#: bbp-
|
|
|
2995 |
msgid ""
|
2996 |
-
"
|
2997 |
-
"
|
2998 |
-
msgstr ""
|
2999 |
-
|
3000 |
-
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:91
|
3001 |
-
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:94
|
3002 |
-
msgid "Account"
|
3003 |
msgstr ""
|
3004 |
|
3005 |
-
#: bbp-
|
3006 |
-
|
|
|
|
|
|
|
3007 |
msgstr ""
|
3008 |
|
3009 |
-
#: bbp-
|
3010 |
-
|
3011 |
-
|
3012 |
-
"\">Cancel</a>"
|
3013 |
msgstr ""
|
3014 |
|
3015 |
-
#: bbp-
|
3016 |
-
|
|
|
|
|
|
|
3017 |
msgstr ""
|
3018 |
|
3019 |
-
#: bbp-
|
3020 |
-
|
3021 |
-
|
3022 |
-
|
|
|
3023 |
msgstr ""
|
3024 |
|
3025 |
-
#: bbp-
|
3026 |
-
|
|
|
|
|
|
|
3027 |
msgstr ""
|
3028 |
|
3029 |
-
#: bbp-
|
3030 |
-
|
3031 |
-
|
3032 |
-
|
3033 |
-
"
|
3034 |
msgstr ""
|
3035 |
|
3036 |
-
#: bbp-
|
3037 |
-
|
|
|
|
|
|
|
3038 |
msgstr ""
|
3039 |
|
3040 |
-
#: bbp-
|
3041 |
-
|
|
|
3042 |
msgstr ""
|
3043 |
|
3044 |
-
#: bbp-
|
3045 |
-
|
|
|
|
|
|
|
3046 |
msgstr ""
|
3047 |
|
3048 |
-
#: bbp-
|
3049 |
-
|
|
|
3050 |
msgstr ""
|
3051 |
|
3052 |
-
#: bbp-
|
3053 |
-
|
|
|
3054 |
msgstr ""
|
3055 |
|
3056 |
-
#: bbp-
|
|
|
3057 |
msgid "Merge topic \"%s\""
|
3058 |
msgstr ""
|
3059 |
|
3060 |
-
#: bbp-
|
|
|
3061 |
msgid ""
|
3062 |
"Select the topic to merge this one into. The destination topic will remain "
|
3063 |
"the lead topic, and this one will change into a reply."
|
3064 |
msgstr ""
|
3065 |
|
3066 |
-
#: bbp-
|
|
|
3067 |
msgid ""
|
3068 |
"To keep this topic as the lead, go to the other topic and use the merge tool "
|
3069 |
"from there instead."
|
3070 |
msgstr ""
|
3071 |
|
3072 |
-
#: bbp-
|
|
|
3073 |
msgid ""
|
3074 |
"All replies within both topics will be merged chronologically. The order of "
|
3075 |
"the merged replies is based on the time and date they were posted. If the "
|
@@ -3077,479 +3603,728 @@ msgid ""
|
|
3077 |
"to second earlier than this one."
|
3078 |
msgstr ""
|
3079 |
|
3080 |
-
#: bbp-
|
|
|
3081 |
msgid "Destination"
|
3082 |
msgstr ""
|
3083 |
|
3084 |
-
#: bbp-
|
|
|
3085 |
msgid "Merge with this topic:"
|
3086 |
msgstr ""
|
3087 |
|
3088 |
-
#: bbp-
|
|
|
3089 |
msgid "No topics were found to which the topic could be merged to!"
|
3090 |
msgstr ""
|
3091 |
|
3092 |
-
#: bbp-
|
|
|
3093 |
msgid "There are no other topics in this forum to merge with."
|
3094 |
msgstr ""
|
3095 |
|
3096 |
-
#: bbp-
|
3097 |
-
#: bbp-
|
|
|
|
|
3098 |
msgid "Topic Extras"
|
3099 |
msgstr ""
|
3100 |
|
3101 |
-
#: bbp-
|
|
|
3102 |
msgid "Merge topic subscribers"
|
3103 |
msgstr ""
|
3104 |
|
3105 |
-
#: bbp-
|
|
|
3106 |
msgid "Merge topic favoriters"
|
3107 |
msgstr ""
|
3108 |
|
3109 |
-
#: bbp-
|
|
|
3110 |
msgid "Merge topic tags"
|
3111 |
msgstr ""
|
3112 |
|
3113 |
-
#: bbp-
|
3114 |
-
#: bbp-
|
|
|
|
|
3115 |
msgid "<strong>WARNING:</strong> This process cannot be undone."
|
3116 |
msgstr ""
|
3117 |
|
3118 |
-
#: bbp-
|
3119 |
-
#: bbp-
|
|
|
|
|
3120 |
msgid "You do not have the permissions to edit this topic!"
|
3121 |
msgstr ""
|
3122 |
|
3123 |
-
#: bbp-
|
3124 |
-
#: bbp-
|
|
|
|
|
3125 |
msgid "You cannot edit this topic."
|
3126 |
msgstr ""
|
3127 |
|
3128 |
-
#: bbp-
|
3129 |
-
#: bbp-themes/bbp-twentyten/bbpress/
|
3130 |
-
msgid "%1$s at %2$s"
|
3131 |
-
msgstr ""
|
3132 |
-
|
3133 |
-
#: bbp-themes/bbp-twentyten/bbpress/form-topic-split.php:22
|
3134 |
msgid "Split topic \"%s\""
|
3135 |
msgstr ""
|
3136 |
|
3137 |
-
#: bbp-
|
|
|
3138 |
msgid ""
|
3139 |
"When you split a topic, you are slicing it in half starting with the reply "
|
3140 |
"you just selected. Choose to use that reply as a new topic with a new title, "
|
3141 |
"or merge those replies into an existing topic."
|
3142 |
msgstr ""
|
3143 |
|
3144 |
-
#: bbp-
|
|
|
3145 |
msgid ""
|
3146 |
"If you use the existing topic option, replies within both topics will be "
|
3147 |
"merged chronologically. The order of the merged replies is based on the time "
|
3148 |
"and date they were posted."
|
3149 |
msgstr ""
|
3150 |
|
3151 |
-
#: bbp-
|
|
|
3152 |
msgid "Split Method"
|
3153 |
msgstr ""
|
3154 |
|
3155 |
-
#: bbp-
|
|
|
3156 |
msgid "New topic in <strong>%s</strong> titled:"
|
3157 |
msgstr ""
|
3158 |
|
3159 |
-
#: bbp-
|
|
|
3160 |
msgid "Split: %s"
|
3161 |
msgstr ""
|
3162 |
|
3163 |
-
#: bbp-
|
|
|
3164 |
msgid "Use an existing topic in this forum:"
|
3165 |
msgstr ""
|
3166 |
|
3167 |
-
#: bbp-
|
|
|
3168 |
msgid "No other topics found!"
|
3169 |
msgstr ""
|
3170 |
|
3171 |
-
#: bbp-
|
|
|
3172 |
msgid "Copy subscribers to the new topic"
|
3173 |
msgstr ""
|
3174 |
|
3175 |
-
#: bbp-
|
|
|
3176 |
msgid "Copy favoriters to the new topic"
|
3177 |
msgstr ""
|
3178 |
|
3179 |
-
#: bbp-
|
|
|
3180 |
msgid "Copy topic tags to the new topic"
|
3181 |
msgstr ""
|
3182 |
|
3183 |
-
#: bbp-
|
3184 |
-
msgid "Your information:"
|
3185 |
-
msgstr ""
|
3186 |
-
|
3187 |
-
#: bbp-themes/bbp-twentyten/bbpress/form-anonymous.php:22
|
3188 |
-
msgid "Name (required):"
|
3189 |
-
msgstr ""
|
3190 |
-
|
3191 |
-
#: bbp-themes/bbp-twentyten/bbpress/form-anonymous.php:27
|
3192 |
-
msgid "Mail (will not be published) (required):"
|
3193 |
-
msgstr ""
|
3194 |
-
|
3195 |
-
#: bbp-themes/bbp-twentyten/bbpress/form-anonymous.php:32
|
3196 |
-
msgid "Website:"
|
3197 |
-
msgstr ""
|
3198 |
-
|
3199 |
#: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:18
|
3200 |
msgid "Manage Tag: \"%s\""
|
3201 |
msgstr ""
|
3202 |
|
|
|
3203 |
#: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:22
|
3204 |
msgid "Rename"
|
3205 |
msgstr ""
|
3206 |
|
|
|
3207 |
#: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:25
|
3208 |
msgid "Leave the slug empty to have one automatically generated."
|
3209 |
msgstr ""
|
3210 |
|
|
|
3211 |
#: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:29
|
3212 |
msgid ""
|
3213 |
"Changing the slug affects its permalink. Any links to the old slug will stop "
|
3214 |
"working."
|
3215 |
msgstr ""
|
3216 |
|
|
|
3217 |
#: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:35
|
3218 |
msgid "Name:"
|
3219 |
msgstr ""
|
3220 |
|
|
|
3221 |
#: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:40
|
3222 |
msgid "Slug:"
|
3223 |
msgstr ""
|
3224 |
|
|
|
3225 |
#: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:45
|
3226 |
msgid "Update"
|
3227 |
msgstr ""
|
3228 |
|
|
|
3229 |
#: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:62
|
3230 |
msgid "Merging tags together cannot be undone."
|
3231 |
msgstr ""
|
3232 |
|
|
|
3233 |
#: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:68
|
3234 |
msgid "Existing tag:"
|
3235 |
msgstr ""
|
3236 |
|
|
|
3237 |
#: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:74
|
3238 |
msgid ""
|
3239 |
"Are you sure you want to merge the \"%s\" tag into the tag you specified?"
|
3240 |
msgstr ""
|
3241 |
|
|
|
3242 |
#: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:92
|
3243 |
msgid "This does not delete your topics. Only the tag itself is deleted."
|
3244 |
msgstr ""
|
3245 |
|
|
|
3246 |
#: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:95
|
3247 |
msgid "Deleting a tag cannot be undone."
|
3248 |
msgstr ""
|
3249 |
|
|
|
3250 |
#: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:96
|
3251 |
msgid "Any links to this tag will no longer function."
|
3252 |
msgstr ""
|
3253 |
|
|
|
3254 |
#: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:103
|
3255 |
msgid ""
|
3256 |
"Are you sure you want to delete the \"%s\" tag? This is permanent and cannot "
|
3257 |
"be undone."
|
3258 |
msgstr ""
|
3259 |
|
3260 |
-
#: bbp-
|
3261 |
-
|
|
|
3262 |
msgstr ""
|
3263 |
|
3264 |
-
#: bbp-
|
3265 |
-
|
|
|
3266 |
msgstr ""
|
3267 |
|
3268 |
-
#: bbp-
|
3269 |
-
|
|
|
|
|
|
|
3270 |
msgstr ""
|
3271 |
|
3272 |
-
#: bbp-
|
3273 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3274 |
msgstr ""
|
3275 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3276 |
#: bbp-themes/bbp-twentyten/bbpress/form-user-register.php:14
|
3277 |
msgid "Create an Account"
|
3278 |
msgstr ""
|
3279 |
|
|
|
3280 |
#: bbp-themes/bbp-twentyten/bbpress/form-user-register.php:17
|
3281 |
msgid "Your username must be unique, and cannot be changed later."
|
3282 |
msgstr ""
|
3283 |
|
|
|
3284 |
#: bbp-themes/bbp-twentyten/bbpress/form-user-register.php:18
|
3285 |
msgid ""
|
3286 |
"We use your email address to email you a secure password and verify your "
|
3287 |
"account."
|
3288 |
msgstr ""
|
3289 |
|
|
|
3290 |
#: bbp-themes/bbp-twentyten/bbpress/loop-single-topic.php:30
|
3291 |
msgid "Started by: %1$s"
|
3292 |
msgstr ""
|
3293 |
|
|
|
3294 |
#: bbp-themes/bbp-twentyten/bbpress/loop-single-topic.php:38
|
3295 |
msgid "in: <a href=\"%1$s\">%2$s</a>"
|
3296 |
msgstr ""
|
3297 |
|
3298 |
-
#: bbp-
|
3299 |
-
|
|
|
3300 |
msgstr ""
|
3301 |
|
3302 |
-
#: bbp-
|
3303 |
-
|
|
|
3304 |
msgstr ""
|
3305 |
|
3306 |
-
#: bbp-
|
3307 |
-
|
|
|
3308 |
msgstr ""
|
3309 |
|
3310 |
-
#: bbp-
|
3311 |
-
|
3312 |
-
"
|
3313 |
-
"capabilities still allow you to do so."
|
3314 |
msgstr ""
|
3315 |
|
3316 |
-
#: bbp-
|
3317 |
-
|
|
|
3318 |
msgstr ""
|
3319 |
|
3320 |
-
#: bbp-
|
3321 |
-
|
|
|
3322 |
msgstr ""
|
3323 |
|
3324 |
-
#: bbp-
|
3325 |
-
|
|
|
3326 |
msgstr ""
|
3327 |
|
3328 |
-
#: bbp-
|
3329 |
-
|
|
|
3330 |
msgstr ""
|
3331 |
|
3332 |
-
#: bbp-
|
3333 |
-
|
|
|
3334 |
msgstr ""
|
3335 |
|
3336 |
-
#: bbp-
|
3337 |
-
|
|
|
3338 |
msgstr ""
|
3339 |
|
3340 |
-
#: bbp-
|
3341 |
-
|
|
|
3342 |
msgstr ""
|
3343 |
|
3344 |
-
#: bbp-
|
3345 |
-
|
|
|
3346 |
msgstr ""
|
3347 |
|
3348 |
-
#: bbp-
|
3349 |
-
msgid "
|
3350 |
msgstr ""
|
3351 |
|
3352 |
-
#: bbp-
|
3353 |
-
|
|
|
3354 |
msgstr ""
|
3355 |
|
3356 |
-
#: bbp-
|
3357 |
-
|
|
|
3358 |
msgstr ""
|
3359 |
|
3360 |
-
#: bbp-
|
3361 |
-
|
|
|
3362 |
msgstr ""
|
3363 |
|
3364 |
-
#: bbp-
|
3365 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3366 |
msgstr ""
|
3367 |
|
3368 |
#: bbp-themes/bbp-twentyten/bbpress/form-user-lost-pass.php:27
|
3369 |
msgid "Reset my password"
|
3370 |
msgstr ""
|
3371 |
|
3372 |
-
#: bbpress.php:
|
3373 |
-
msgid "
|
3374 |
msgstr ""
|
3375 |
|
3376 |
-
#: bbpress.php:
|
3377 |
-
msgid "
|
3378 |
msgstr ""
|
3379 |
|
3380 |
-
#:
|
3381 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3382 |
msgstr ""
|
3383 |
|
3384 |
-
#: bbpress.php:
|
3385 |
msgid "Edit Forum"
|
3386 |
msgstr ""
|
3387 |
|
3388 |
-
#: bbpress.php:
|
3389 |
msgid "View Forum"
|
3390 |
msgstr ""
|
3391 |
|
3392 |
-
#: bbpress.php:
|
3393 |
msgid "Search Forums"
|
3394 |
msgstr ""
|
3395 |
|
3396 |
-
#: bbpress.php:
|
3397 |
-
msgid "No forums found
|
3398 |
msgstr ""
|
3399 |
|
3400 |
-
#: bbpress.php:
|
3401 |
-
msgid "
|
3402 |
msgstr ""
|
3403 |
|
3404 |
-
#: bbpress.php:
|
3405 |
msgid "bbPress Forums"
|
3406 |
msgstr ""
|
3407 |
|
3408 |
-
#: bbpress.php:
|
3409 |
msgid "New Topic"
|
3410 |
msgstr ""
|
3411 |
|
3412 |
-
#: bbpress.php:
|
3413 |
msgid "Edit Topic"
|
3414 |
msgstr ""
|
3415 |
|
3416 |
-
#: bbpress.php:
|
3417 |
msgid "View Topic"
|
3418 |
msgstr ""
|
3419 |
|
3420 |
-
#: bbpress.php:
|
3421 |
msgid "Search Topics"
|
3422 |
msgstr ""
|
3423 |
|
3424 |
-
#: bbpress.php:
|
3425 |
msgid "No topics found"
|
3426 |
msgstr ""
|
3427 |
|
3428 |
-
#: bbpress.php:
|
3429 |
msgid "No topics found in Trash"
|
3430 |
msgstr ""
|
3431 |
|
3432 |
-
#: bbpress.php:
|
3433 |
msgid "bbPress Topics"
|
3434 |
msgstr ""
|
3435 |
|
3436 |
-
#: bbpress.php:
|
3437 |
msgid "New Reply"
|
3438 |
msgstr ""
|
3439 |
|
3440 |
-
#: bbpress.php:
|
3441 |
msgid "Create New Reply"
|
3442 |
msgstr ""
|
3443 |
|
3444 |
-
#: bbpress.php:
|
3445 |
msgid "Edit Reply"
|
3446 |
msgstr ""
|
3447 |
|
3448 |
-
#: bbpress.php:
|
3449 |
msgid "View Reply"
|
3450 |
msgstr ""
|
3451 |
|
3452 |
-
#: bbpress.php:
|
3453 |
msgid "Search Replies"
|
3454 |
msgstr ""
|
3455 |
|
3456 |
-
#: bbpress.php:
|
3457 |
msgid "No replies found"
|
3458 |
msgstr ""
|
3459 |
|
3460 |
-
#: bbpress.php:
|
3461 |
msgid "No replies found in Trash"
|
3462 |
msgstr ""
|
3463 |
|
3464 |
-
#: bbpress.php:
|
3465 |
msgid "Topic:"
|
3466 |
msgstr ""
|
3467 |
|
3468 |
-
#: bbpress.php:
|
3469 |
msgid "bbPress Replies"
|
3470 |
msgstr ""
|
3471 |
|
3472 |
-
#: bbpress.php:
|
3473 |
msgctxt "post"
|
3474 |
msgid "Closed"
|
3475 |
msgstr ""
|
3476 |
|
3477 |
-
#: bbpress.php:
|
3478 |
msgctxt "bbpress"
|
3479 |
msgid "Closed <span class=\"count\">(%s)</span>"
|
3480 |
msgid_plural "Closed <span class=\"count\">(%s)</span>"
|
3481 |
msgstr[0] ""
|
3482 |
msgstr[1] ""
|
3483 |
|
3484 |
-
#: bbpress.php:
|
3485 |
msgctxt "post"
|
3486 |
msgid "Spam"
|
3487 |
msgstr ""
|
3488 |
|
3489 |
-
#: bbpress.php:
|
3490 |
msgctxt "bbpress"
|
3491 |
msgid "Spam <span class=\"count\">(%s)</span>"
|
3492 |
msgid_plural "Spam <span class=\"count\">(%s)</span>"
|
3493 |
msgstr[0] ""
|
3494 |
msgstr[1] ""
|
3495 |
|
3496 |
-
#: bbpress.php:
|
3497 |
msgctxt "post"
|
3498 |
msgid "Orphan"
|
3499 |
msgstr ""
|
3500 |
|
3501 |
-
#: bbpress.php:
|
3502 |
msgctxt "bbpress"
|
3503 |
msgid "Orphan <span class=\"count\">(%s)</span>"
|
3504 |
msgid_plural "Orphans <span class=\"count\">(%s)</span>"
|
3505 |
msgstr[0] ""
|
3506 |
msgstr[1] ""
|
3507 |
|
3508 |
-
#: bbpress.php:
|
3509 |
msgctxt "post"
|
3510 |
msgid "Hidden"
|
3511 |
msgstr ""
|
3512 |
|
3513 |
-
#: bbpress.php:
|
3514 |
msgctxt "bbpress"
|
3515 |
msgid "Hidden <span class=\"count\">(%s)</span>"
|
3516 |
msgid_plural "Hidden <span class=\"count\">(%s)</span>"
|
3517 |
msgstr[0] ""
|
3518 |
msgstr[1] ""
|
3519 |
|
3520 |
-
#: bbpress.php:
|
3521 |
msgid "Search Tags"
|
3522 |
msgstr ""
|
3523 |
|
3524 |
-
#: bbpress.php:
|
3525 |
msgid "Popular Tags"
|
3526 |
msgstr ""
|
3527 |
|
3528 |
-
#: bbpress.php:
|
3529 |
msgid "All Tags"
|
3530 |
msgstr ""
|
3531 |
|
3532 |
-
#: bbpress.php:
|
3533 |
msgid "Edit Tag"
|
3534 |
msgstr ""
|
3535 |
|
3536 |
-
#: bbpress.php:
|
3537 |
msgid "Update Tag"
|
3538 |
msgstr ""
|
3539 |
|
3540 |
-
#: bbpress.php:
|
3541 |
msgid "Add New Tag"
|
3542 |
msgstr ""
|
3543 |
|
3544 |
-
#: bbpress.php:
|
3545 |
msgid "New Tag Name"
|
3546 |
msgstr ""
|
3547 |
|
3548 |
-
#: bbpress.php:
|
3549 |
msgid "View Topic Tag"
|
3550 |
msgstr ""
|
3551 |
|
3552 |
-
#: bbpress.php:
|
3553 |
msgid "Topics with no replies"
|
3554 |
msgstr ""
|
3555 |
|
@@ -3557,9 +4332,9 @@ msgstr ""
|
|
3557 |
msgid "bbPress"
|
3558 |
msgstr ""
|
3559 |
|
3560 |
-
#. #-#-#-#-# plugin.pot (bbPress 2.
|
3561 |
#. Plugin URI of the plugin/theme
|
3562 |
-
#. #-#-#-#-# plugin.pot (bbPress 2.
|
3563 |
#. Author URI of the plugin/theme
|
3564 |
msgid "http://bbpress.org"
|
3565 |
msgstr ""
|
1 |
+
# Copyright (C) 2012 bbPress
|
2 |
# This file is distributed under the same license as the bbPress package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: bbPress 2.1-rc1\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/bbpress\n"
|
7 |
+
"POT-Creation-Date: 2012-06-27 04:01:25+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
+
"PO-Revision-Date: 2012-MO-DA HO:MI+ZONE\n"
|
12 |
+
"Last-Translator: JOHN JAMES JACOBY <jjj@bbpress.org>\n"
|
13 |
+
"Language-Team: ENGLISH <jjj@bbpress.org>\n"
|
14 |
|
15 |
+
#: bbp-admin/bbp-admin.php:176 bbp-admin/bbp-functions.php:191
|
16 |
+
#: bbp-admin/bbp-tools.php:34
|
17 |
+
msgid "Repair Forums"
|
18 |
msgstr ""
|
19 |
|
20 |
+
#: bbp-admin/bbp-admin.php:177
|
21 |
+
msgid "Forum Repair"
|
22 |
msgstr ""
|
23 |
|
24 |
+
#: bbp-admin/bbp-admin.php:186 bbp-admin/bbp-functions.php:195
|
25 |
+
#: bbp-admin/bbp-settings.php:1211
|
26 |
+
msgid "Import Forums"
|
27 |
msgstr ""
|
28 |
|
29 |
+
#: bbp-admin/bbp-admin.php:187
|
30 |
+
msgid "Forum Import"
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: bbp-admin/bbp-admin.php:196 bbp-admin/bbp-functions.php:199
|
34 |
+
#: bbp-admin/bbp-tools.php:806
|
35 |
+
msgid "Reset Forums"
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: bbp-admin/bbp-admin.php:197
|
39 |
+
msgid "Forum Reset"
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: bbp-admin/bbp-admin.php:211 bbp-admin/bbp-admin.php:212
|
43 |
+
#: bbp-admin/bbp-admin.php:222 bbp-admin/bbp-admin.php:223
|
44 |
+
#: bbp-includes/bbp-extend-buddypress.php:834
|
45 |
+
#: bbp-includes/bbp-extend-buddypress.php:891
|
46 |
+
#: bbp-includes/bbp-extend-buddypress.php:982
|
47 |
+
#: bbp-includes/bbp-extend-buddypress.php:1035
|
48 |
+
#: bbp-includes/bbp-extend-buddypress.php:1430
|
49 |
+
#: bbp-theme-compat/extras/page-forum-statistics.php:39
|
50 |
+
#: bbp-themes/bbp-twentyten/page-forum-statistics.php:38 bbpress.php:475
|
51 |
+
#: bbpress.php:476
|
52 |
+
msgid "Forums"
|
53 |
msgstr ""
|
54 |
|
55 |
+
#: bbp-admin/bbp-admin.php:240 bbp-admin/bbp-admin.php:241
|
56 |
+
#: bbp-admin/bbp-admin.php:725 bbp-admin/bbp-admin.php:801
|
57 |
+
msgid "Update Forums"
|
58 |
msgstr ""
|
59 |
|
60 |
+
#: bbp-admin/bbp-admin.php:364
|
61 |
+
msgid "Settings"
|
62 |
msgstr ""
|
63 |
|
64 |
+
#: bbp-admin/bbp-admin.php:379
|
65 |
+
msgid "Right Now in Forums"
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: bbp-admin/bbp-admin.php:642
|
69 |
+
msgid "Green"
|
|
|
|
|
|
|
|
|
|
|
70 |
msgstr ""
|
71 |
|
72 |
+
#: bbp-admin/bbp-admin.php:661 bbp-admin/bbp-admin.php:699
|
73 |
+
msgid "Update Forum"
|
|
|
|
|
|
|
|
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: bbp-admin/bbp-admin.php:688 bbp-admin/bbp-admin.php:742
|
77 |
+
msgid "All done!"
|
78 |
+
msgstr ""
|
79 |
+
|
80 |
+
#: bbp-admin/bbp-admin.php:689 bbp-admin/bbp-admin.php:743
|
81 |
+
msgid "Go Back"
|
82 |
msgstr ""
|
83 |
|
84 |
+
#: bbp-admin/bbp-admin.php:698
|
85 |
msgid ""
|
86 |
+
"You can update your forum through this page. Hit the link below to update."
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: bbp-admin/bbp-admin.php:770
|
90 |
+
msgid ""
|
91 |
+
"Warning! Problem updating %1$s. Your server may not be able to connect to "
|
92 |
+
"sites running on it. Error message: <em>%2$s</em>"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: bbp-admin/bbp-admin.php:781
|
96 |
+
msgid ""
|
97 |
+
"If your browser doesn’t start loading the next page automatically, "
|
98 |
+
"click this link:"
|
99 |
msgstr ""
|
100 |
|
101 |
+
#: bbp-admin/bbp-admin.php:782
|
102 |
+
msgid "Next Forums"
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: bbp-admin/bbp-admin.php:800
|
106 |
+
msgid ""
|
107 |
+
"You can update all the forums on your network through this page. It works by "
|
108 |
+
"calling the update script of each site automatically. Hit the link below to "
|
109 |
+
"update."
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: bbp-admin/bbp-converter.php:63 bbp-admin/bbp-settings.php:24
|
113 |
+
#: bbp-admin/bbp-settings.php:1259
|
114 |
+
msgid "Main Settings"
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: bbp-admin/bbp-converter.php:66
|
118 |
+
msgid "Select Platform"
|
119 |
msgstr ""
|
120 |
|
121 |
+
#: bbp-admin/bbp-converter.php:70
|
122 |
+
msgid "Database Server"
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: bbp-admin/bbp-converter.php:74
|
126 |
+
msgid "Database Port"
|
127 |
msgstr ""
|
128 |
|
129 |
+
#: bbp-admin/bbp-converter.php:78
|
130 |
+
msgid "Database Name"
|
131 |
msgstr ""
|
132 |
|
133 |
+
#: bbp-admin/bbp-converter.php:82
|
134 |
+
msgid "Database User"
|
135 |
msgstr ""
|
136 |
|
137 |
+
#: bbp-admin/bbp-converter.php:86
|
138 |
+
msgid "Database Password"
|
|
|
|
|
|
|
|
|
|
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: bbp-admin/bbp-converter.php:90
|
142 |
+
msgid "Table Prefix"
|
|
|
|
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: bbp-admin/bbp-converter.php:94
|
146 |
+
msgid "Options"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: bbp-admin/bbp-converter.php:97
|
150 |
+
msgid "Rows Limit"
|
|
|
|
|
|
|
|
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: bbp-admin/bbp-converter.php:101
|
154 |
+
msgid "Delay Time"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: bbp-admin/bbp-converter.php:105
|
158 |
+
msgid "Convert Users"
|
|
|
|
|
|
|
|
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: bbp-admin/bbp-converter.php:109
|
162 |
+
msgid "Clean"
|
|
|
|
|
|
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: bbp-admin/bbp-converter.php:113
|
166 |
+
msgid "Restart"
|
|
|
|
|
|
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: bbp-admin/bbp-converter.php:296
|
170 |
+
msgid "No data to clean"
|
|
|
|
|
|
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: bbp-admin/bbp-converter.php:300
|
174 |
+
msgid "Deleting previously converted data (%1$s - %2$s)"
|
|
|
|
|
|
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: bbp-admin/bbp-converter.php:316
|
178 |
+
msgid "No users to convert"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: bbp-admin/bbp-converter.php:320
|
182 |
+
msgid "Converting users (%1$s - %2$s)"
|
|
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: bbp-admin/bbp-converter.php:336
|
186 |
+
msgid "No passwords to clear"
|
|
|
|
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: bbp-admin/bbp-converter.php:340
|
190 |
+
msgid "Delete users wordpress default passwords (%1$s - %2$s)"
|
|
|
|
|
|
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: bbp-admin/bbp-converter.php:355
|
194 |
+
msgid "No forums to convert"
|
|
|
|
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: bbp-admin/bbp-converter.php:359
|
198 |
+
msgid "Converting forums (%1$s - %2$s)"
|
|
|
|
|
|
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: bbp-admin/bbp-converter.php:371
|
202 |
+
msgid "No forum parents to convert"
|
|
|
|
|
|
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: bbp-admin/bbp-converter.php:375
|
206 |
+
msgid "Calculating forum hierarchy (%1$s - %2$s)"
|
|
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: bbp-admin/bbp-converter.php:387
|
210 |
+
msgid "No topics to convert"
|
211 |
+
msgstr ""
|
212 |
+
|
213 |
+
#: bbp-admin/bbp-converter.php:391
|
214 |
+
msgid "Converting topics (%1$s - %2$s)"
|
215 |
+
msgstr ""
|
216 |
+
|
217 |
+
#: bbp-admin/bbp-converter.php:403
|
218 |
+
msgid "No tags to convert"
|
219 |
+
msgstr ""
|
220 |
+
|
221 |
+
#: bbp-admin/bbp-converter.php:407
|
222 |
+
msgid "Converting topic tags (%1$s - %2$s)"
|
223 |
+
msgstr ""
|
224 |
+
|
225 |
+
#: bbp-admin/bbp-converter.php:418
|
226 |
+
msgid "No replies to convert"
|
227 |
+
msgstr ""
|
228 |
+
|
229 |
+
#: bbp-admin/bbp-converter.php:422
|
230 |
+
msgid "Converting replies (%1$s - %2$s)"
|
231 |
+
msgstr ""
|
232 |
+
|
233 |
+
#: bbp-admin/bbp-converter.php:431
|
234 |
+
msgid "Conversion Complete"
|
235 |
+
msgstr ""
|
236 |
+
|
237 |
+
#: bbp-admin/bbp-converter.php:816
|
238 |
+
msgid "<span title=\"%s\">View Query</span>%s"
|
239 |
+
msgstr ""
|
240 |
+
|
241 |
+
#: bbp-admin/bbp-forums.php:118 bbp-admin/bbp-replies.php:130
|
242 |
+
#: bbp-admin/bbp-settings.php:1251 bbp-admin/bbp-topics.php:130
|
243 |
+
msgid "Overview"
|
244 |
+
msgstr ""
|
245 |
+
|
246 |
+
#: bbp-admin/bbp-forums.php:120 bbp-admin/bbp-replies.php:132
|
247 |
+
#: bbp-admin/bbp-topics.php:132
|
248 |
msgid ""
|
249 |
+
"This screen provides access to all of your replies. You can customize the "
|
250 |
+
"display of this screen to suit your workflow."
|
251 |
+
msgstr ""
|
252 |
+
|
253 |
+
#: bbp-admin/bbp-forums.php:126 bbp-admin/bbp-replies.php:138
|
254 |
+
#: bbp-admin/bbp-topics.php:138
|
255 |
+
msgid "Screen Content"
|
256 |
msgstr ""
|
257 |
|
258 |
+
#: bbp-admin/bbp-forums.php:128 bbp-admin/bbp-replies.php:140
|
259 |
+
#: bbp-admin/bbp-topics.php:140
|
260 |
msgid ""
|
261 |
+
"You can customize the display of this screen’s contents in a number of "
|
262 |
+
"ways:"
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: bbp-admin/bbp-forums.php:130 bbp-admin/bbp-replies.php:142
|
266 |
+
#: bbp-admin/bbp-topics.php:142
|
267 |
msgid ""
|
268 |
+
"You can hide/display columns based on your needs and decide how many replies "
|
269 |
+
"to list per screen using the Screen Options tab."
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: bbp-admin/bbp-forums.php:131
|
273 |
+
msgid ""
|
274 |
+
"You can filter the list of replies by forum status using the text links in "
|
275 |
+
"the upper left to show All, Published, Draft, or Trashed replies. The "
|
276 |
+
"default view is to show all replies."
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: bbp-admin/bbp-forums.php:132 bbp-admin/bbp-replies.php:144
|
280 |
+
#: bbp-admin/bbp-topics.php:144
|
281 |
msgid ""
|
282 |
+
"You can view replies in a simple title list or with an excerpt. Choose the "
|
283 |
+
"view you prefer by clicking on the icons at the top of the list on the right."
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: bbp-admin/bbp-forums.php:133
|
287 |
msgid ""
|
288 |
+
"You can refine the list to show only replies in a specific category or from "
|
289 |
+
"a specific month by using the dropdown menus above the replies list. Click "
|
290 |
+
"the Filter button after making your selection. You also can refine the list "
|
291 |
+
"by clicking on the forum author, category or tag in the replies list."
|
292 |
+
msgstr ""
|
293 |
+
|
294 |
+
#: bbp-admin/bbp-forums.php:140 bbp-admin/bbp-replies.php:152
|
295 |
+
#: bbp-admin/bbp-topics.php:152
|
296 |
+
msgid "Available Actions"
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: bbp-admin/bbp-forums.php:142
|
300 |
msgid ""
|
301 |
+
"Hovering over a row in the replies list will display action links that allow "
|
302 |
+
"you to manage your forum. You can perform the following actions:"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: bbp-admin/bbp-forums.php:144
|
306 |
msgid ""
|
307 |
+
"<strong>Edit</strong> takes you to the editing screen for that forum. You "
|
308 |
+
"can also reach that screen by clicking on the forum title."
|
|
|
|
|
|
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: bbp-admin/bbp-forums.php:146
|
312 |
msgid ""
|
313 |
+
"<strong>Trash</strong> removes your forum from this list and places it in "
|
314 |
+
"the trash, from which you can permanently delete it."
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: bbp-admin/bbp-forums.php:147
|
318 |
msgid ""
|
319 |
+
"<strong>Spam</strong> removes your forum from this list and places it in the "
|
320 |
+
"spam queue, from which you can permanently delete it."
|
|
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: bbp-admin/bbp-forums.php:148
|
324 |
msgid ""
|
325 |
+
"<strong>Preview</strong> will show you what your draft forum will look like "
|
326 |
+
"if you publish it. View will take you to your live site to view the forum. "
|
327 |
+
"Which link is available depends on your forum’s status."
|
328 |
+
msgstr ""
|
329 |
+
|
330 |
+
#: bbp-admin/bbp-forums.php:155 bbp-admin/bbp-replies.php:167
|
331 |
+
#: bbp-admin/bbp-topics.php:167
|
332 |
+
msgid "Bulk Actions"
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: bbp-admin/bbp-forums.php:157 bbp-admin/bbp-replies.php:169
|
336 |
+
#: bbp-admin/bbp-topics.php:169
|
337 |
msgid ""
|
338 |
+
"You can also edit or move multiple replies to the trash at once. Select the "
|
339 |
+
"replies you want to act on using the checkboxes, then select the action you "
|
340 |
+
"want to take from the Bulk Actions menu and click Apply."
|
|
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: bbp-admin/bbp-forums.php:158
|
344 |
msgid ""
|
345 |
+
"When using Bulk Edit, you can change the metadata (categories, author, etc.) "
|
346 |
+
"for all selected replies at once. To remove a forum from the grouping, just "
|
347 |
+
"click the x next to its name in the Bulk Edit area that appears."
|
348 |
msgstr ""
|
349 |
|
350 |
+
#: bbp-admin/bbp-forums.php:163 bbp-admin/bbp-forums.php:243
|
351 |
+
#: bbp-admin/bbp-replies.php:175 bbp-admin/bbp-replies.php:252
|
352 |
+
#: bbp-admin/bbp-settings.php:1296 bbp-admin/bbp-topics.php:175
|
353 |
+
#: bbp-admin/bbp-topics.php:252
|
354 |
+
msgid "For more information:"
|
355 |
msgstr ""
|
356 |
|
357 |
+
#: bbp-admin/bbp-forums.php:164 bbp-admin/bbp-forums.php:244
|
358 |
+
#: bbp-admin/bbp-replies.php:176 bbp-admin/bbp-replies.php:253
|
359 |
+
#: bbp-admin/bbp-settings.php:1297 bbp-admin/bbp-topics.php:176
|
360 |
+
#: bbp-admin/bbp-topics.php:253
|
361 |
msgid ""
|
362 |
+
"<a href=\"http://bbpress.org/documentation/\" target=\"_blank\">bbPress "
|
363 |
+
"Documentation</a>"
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: bbp-admin/bbp-forums.php:165 bbp-admin/bbp-forums.php:245
|
367 |
+
#: bbp-admin/bbp-replies.php:177 bbp-admin/bbp-replies.php:254
|
368 |
+
#: bbp-admin/bbp-settings.php:1298 bbp-admin/bbp-topics.php:177
|
369 |
+
#: bbp-admin/bbp-topics.php:254
|
370 |
msgid ""
|
371 |
+
"<a href=\"http://bbpress.org/forums/\" target=\"_blank\">bbPress Support "
|
372 |
+
"Forums</a>"
|
373 |
msgstr ""
|
374 |
|
375 |
+
#: bbp-admin/bbp-forums.php:188
|
376 |
+
msgid ""
|
377 |
+
"The title field and the big forum editing Area are fixed in place, but you "
|
378 |
+
"can reposition all the other boxes using drag and drop, and can minimize or "
|
379 |
+
"expand them by clicking the title bar of each box. Use the Screen Options "
|
380 |
+
"tab to unhide more boxes (Excerpt, Send Trackbacks, Custom Fields, "
|
381 |
+
"Discussion, Slug, Author) or to choose a 1- or 2-column layout for this "
|
382 |
+
"screen."
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: bbp-admin/bbp-forums.php:192 bbp-admin/bbp-replies.php:204
|
386 |
+
#: bbp-admin/bbp-topics.php:204
|
387 |
+
msgid "Customizing This Display"
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: bbp-admin/bbp-forums.php:198
|
391 |
+
msgid "Title and Forum Editor"
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: bbp-admin/bbp-forums.php:200
|
395 |
+
msgid ""
|
396 |
+
"<strong>Title</strong> - Enter a title for your forum. After you enter a "
|
397 |
+
"title, you’ll see the permalink below, which you can edit."
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: bbp-admin/bbp-forums.php:201
|
401 |
+
msgid ""
|
402 |
+
"<strong>Forum Editor</strong> - Enter the text for your forum. There are two "
|
403 |
+
"modes of editing: Visual and HTML. Choose the mode by clicking on the "
|
404 |
+
"appropriate tab. Visual mode gives you a WYSIWYG editor. Click the last icon "
|
405 |
+
"in the row to get a second row of controls. The HTML mode allows you to "
|
406 |
+
"enter raw HTML along with your forum text. You can insert media files by "
|
407 |
+
"clicking the icons above the forum editor and following the directions. You "
|
408 |
+
"can go to the distraction-free writing screen via the Fullscreen icon in "
|
409 |
+
"Visual mode (second to last in the top row) or the Fullscreen button in HTML "
|
410 |
+
"mode (last in the row). Once there, you can make buttons visible by hovering "
|
411 |
+
"over the top area. Exit Fullscreen back to the regular forum editor."
|
412 |
msgstr ""
|
413 |
|
414 |
+
#: bbp-admin/bbp-forums.php:204
|
415 |
+
msgid ""
|
416 |
+
"<strong>Publish</strong> - You can set the terms of publishing your forum in "
|
417 |
+
"the Publish box. For Status, Visibility, and Publish (immediately), click on "
|
418 |
+
"the Edit link to reveal more options. Visibility includes options for "
|
419 |
+
"password-protecting a forum or making it stay at the top of your blog "
|
420 |
+
"indefinitely (sticky). Publish (immediately) allows you to set a future or "
|
421 |
+
"past date and time, so you can schedule a forum to be published in the "
|
422 |
+
"future or backdate a forum."
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: bbp-admin/bbp-forums.php:207
|
426 |
+
msgid ""
|
427 |
+
"<strong>forum Format</strong> - This designates how your theme will display "
|
428 |
+
"a specific forum. For example, you could have a <em>standard</em> blog forum "
|
429 |
+
"with a title and paragraphs, or a short <em>aside</em> that omits the title "
|
430 |
+
"and contains a short text blurb. Please refer to the Codex for <a href="
|
431 |
+
"\"http://codex.wordpress.org/Post_Formats#Supported_Formats\">descriptions "
|
432 |
+
"of each forum format</a>. Your theme could enable all or some of 10 possible "
|
433 |
+
"formats."
|
434 |
msgstr ""
|
435 |
|
436 |
+
#: bbp-admin/bbp-forums.php:211
|
437 |
+
msgid ""
|
438 |
+
"<strong>Featured Image</strong> - This allows you to associate an image with "
|
439 |
+
"your forum without inserting it. This is usually useful only if your theme "
|
440 |
+
"makes use of the featured image as a forum thumbnail on the home page, a "
|
441 |
+
"custom header, etc."
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: bbp-admin/bbp-forums.php:216 bbp-admin/bbp-forums.php:261
|
445 |
+
msgid "Forum Attributes"
|
446 |
msgstr ""
|
447 |
|
448 |
+
#: bbp-admin/bbp-forums.php:218
|
449 |
+
msgid "Select the attributes that your forum should have:"
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: bbp-admin/bbp-forums.php:220
|
453 |
+
msgid ""
|
454 |
+
"<strong>Type</strong> indicates if the forum is a category or forum. "
|
455 |
+
"Categories generally contain other forums."
|
456 |
msgstr ""
|
457 |
|
458 |
+
#: bbp-admin/bbp-forums.php:221
|
459 |
+
msgid ""
|
460 |
+
"<strong>Status</strong> allows you to close a forum to new topics and "
|
461 |
+
"replies."
|
462 |
msgstr ""
|
463 |
|
464 |
+
#: bbp-admin/bbp-forums.php:222
|
465 |
+
msgid ""
|
466 |
+
"<strong>Visibility</strong> lets you pick the scope of each forum and what "
|
467 |
+
"users are allowed to access it."
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: bbp-admin/bbp-forums.php:223
|
471 |
+
msgid ""
|
472 |
+
"<strong>Parent</strong> dropdown determines the parent forum. Select the "
|
473 |
+
"forum or category from the dropdown, or leave the default (No Parent) to "
|
474 |
+
"create the forum at the root of your forums."
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: bbp-admin/bbp-forums.php:224
|
478 |
+
msgid "<strong>Order</strong> allows you to order your forums numerically."
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: bbp-admin/bbp-forums.php:230 bbp-admin/bbp-replies.php:239
|
482 |
+
#: bbp-admin/bbp-topics.php:239
|
483 |
+
msgid "Publish Box"
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: bbp-admin/bbp-forums.php:236 bbp-admin/bbp-replies.php:245
|
487 |
+
#: bbp-admin/bbp-topics.php:245
|
488 |
+
msgid "Discussion Settings"
|
489 |
msgstr ""
|
490 |
|
491 |
+
#: bbp-admin/bbp-forums.php:238 bbp-admin/bbp-replies.php:247
|
492 |
+
#: bbp-admin/bbp-topics.php:247
|
493 |
+
msgid ""
|
494 |
+
"<strong>Send Trackbacks</strong> - Trackbacks are a way to notify legacy "
|
495 |
+
"blog systems that you’ve linked to them. Enter the URL(s) you want to "
|
496 |
+
"send trackbacks. If you link to other WordPress sites they’ll be "
|
497 |
+
"notified automatically using pingbacks, and this field is unnecessary."
|
498 |
msgstr ""
|
499 |
|
500 |
+
#: bbp-admin/bbp-forums.php:239
|
501 |
+
msgid ""
|
502 |
+
"<strong>Discussion</strong> - You can turn comments and pings on or off, and "
|
503 |
+
"if there are comments on the forum, you can see them here and moderate them."
|
|
|
|
|
|
|
504 |
msgstr ""
|
505 |
|
506 |
+
#: bbp-admin/bbp-forums.php:422 bbp-admin/bbp-metaboxes.php:50
|
507 |
+
#: bbp-admin/bbp-metaboxes.php:345 bbp-admin/bbp-metaboxes.php:348
|
508 |
+
#: bbp-admin/bbp-metaboxes.php:396 bbp-admin/bbp-metaboxes.php:399
|
509 |
+
#: bbp-admin/bbp-replies.php:614 bbp-admin/bbp-topics.php:678
|
510 |
+
#: bbp-includes/bbp-extend-buddypress.php:1405
|
511 |
+
#: bbp-includes/bbp-forum-template.php:2124
|
512 |
+
#: bbp-theme-compat/bbpress/loop-forums.php:19
|
513 |
+
#: bbp-themes/bbp-twentyten/bbpress/loop-forums.php:18 bbpress.php:477
|
514 |
msgid "Forum"
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: bbp-admin/bbp-forums.php:423 bbp-admin/bbp-settings.php:181
|
518 |
+
#: bbp-admin/bbp-settings.php:204 bbp-admin/bbp-topics.php:677
|
519 |
+
#: bbp-includes/bbp-extend-buddypress.php:432
|
520 |
+
#: bbp-includes/bbp-extend-buddypress.php:1434
|
521 |
+
#: bbp-includes/bbp-forum-template.php:2272
|
522 |
+
#: bbp-theme-compat/bbpress/loop-forums.php:20
|
523 |
+
#: bbp-theme-compat/extras/page-forum-statistics.php:44
|
524 |
+
#: bbp-themes/bbp-twentyten/bbpress/loop-forums.php:19
|
525 |
+
#: bbp-themes/bbp-twentyten/page-forum-statistics.php:43 bbpress.php:532
|
526 |
+
#: bbpress.php:533
|
527 |
+
msgid "Topics"
|
528 |
+
msgstr ""
|
529 |
+
|
530 |
+
#: bbp-admin/bbp-forums.php:424 bbp-admin/bbp-settings.php:190
|
531 |
+
#: bbp-admin/bbp-settings.php:213 bbp-admin/bbp-topics.php:679
|
532 |
+
#: bbp-includes/bbp-extend-buddypress.php:433
|
533 |
+
#: bbp-includes/bbp-forum-template.php:2336
|
534 |
+
#: bbp-includes/bbp-theme-compatibility.php:493
|
535 |
+
#: bbp-theme-compat/bbpress/loop-forums.php:21
|
536 |
+
#: bbp-theme-compat/bbpress/loop-replies.php:32
|
537 |
+
#: bbp-theme-compat/bbpress/loop-replies.php:62
|
538 |
+
#: bbp-theme-compat/bbpress/loop-topics.php:21
|
539 |
+
#: bbp-theme-compat/extras/page-forum-statistics.php:49
|
540 |
+
#: bbp-themes/bbp-twentyten/bbpress/loop-forums.php:20
|
541 |
#: bbp-themes/bbp-twentyten/bbpress/loop-replies.php:30
|
542 |
#: bbp-themes/bbp-twentyten/bbpress/loop-replies.php:49
|
543 |
+
#: bbp-themes/bbp-twentyten/bbpress/loop-topics.php:19
|
544 |
+
#: bbp-themes/bbp-twentyten/page-forum-statistics.php:48
|
545 |
+
#: bbp-themes/bbp-twentyten/single-reply.php:30 bbpress.php:589
|
546 |
+
#: bbpress.php:590
|
547 |
msgid "Replies"
|
548 |
msgstr ""
|
549 |
|
550 |
+
#: bbp-admin/bbp-forums.php:425
|
551 |
+
#: bbp-theme-compat/bbpress/content-single-topic-lead.php:18
|
552 |
+
#: bbp-theme-compat/bbpress/content-single-topic-lead.php:90
|
553 |
+
#: bbp-themes/bbp-twentyten/bbpress/content-single-topic-lead.php:17
|
554 |
+
msgid "Creator"
|
|
|
|
|
|
|
|
|
|
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: bbp-admin/bbp-forums.php:426 bbp-admin/bbp-replies.php:617
|
558 |
+
#: bbp-admin/bbp-topics.php:682
|
559 |
msgid "Created"
|
560 |
msgstr ""
|
561 |
|
562 |
+
#: bbp-admin/bbp-forums.php:427 bbp-admin/bbp-topics.php:683
|
563 |
+
#: bbp-theme-compat/bbpress/loop-forums.php:22
|
564 |
+
#: bbp-theme-compat/bbpress/loop-topics.php:22
|
565 |
#: bbp-themes/bbp-twentyten/bbpress/loop-forums.php:21
|
566 |
#: bbp-themes/bbp-twentyten/bbpress/loop-topics.php:20
|
567 |
msgid "Freshness"
|
568 |
msgstr ""
|
569 |
|
570 |
+
#: bbp-admin/bbp-forums.php:461 bbp-admin/bbp-replies.php:723
|
571 |
+
#: bbp-admin/bbp-topics.php:760
|
572 |
+
msgid "%1$s <br /> %2$s"
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: bbp-admin/bbp-forums.php:473 bbp-includes/bbp-forum-template.php:541
|
576 |
+
msgid "No Topics"
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: bbp-admin/bbp-forums.php:540
|
580 |
+
msgid "Forum updated. <a href=\"%s\">View forum</a>"
|
|
|
581 |
msgstr ""
|
582 |
|
583 |
+
#: bbp-admin/bbp-forums.php:543 bbp-admin/bbp-replies.php:922
|
584 |
+
#: bbp-admin/bbp-topics.php:993
|
585 |
+
msgid "Custom field updated."
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: bbp-admin/bbp-forums.php:546 bbp-admin/bbp-replies.php:925
|
589 |
+
#: bbp-admin/bbp-topics.php:996
|
590 |
+
msgid "Custom field deleted."
|
591 |
msgstr ""
|
592 |
|
593 |
+
#: bbp-admin/bbp-forums.php:549
|
594 |
+
msgid "Forum updated."
|
595 |
msgstr ""
|
596 |
|
597 |
+
#. translators: %s: date and time of the revision
|
598 |
+
#: bbp-admin/bbp-forums.php:554
|
599 |
+
msgid "Forum restored to revision from %s"
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: bbp-admin/bbp-forums.php:558
|
603 |
+
msgid "Forum created. <a href=\"%s\">View forum</a>"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: bbp-admin/bbp-forums.php:561
|
607 |
+
msgid "Forum saved."
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: bbp-admin/bbp-forums.php:564
|
611 |
+
msgid "Forum submitted. <a target=\"_blank\" href=\"%s\">Preview forum</a>"
|
612 |
msgstr ""
|
613 |
|
614 |
+
#: bbp-admin/bbp-forums.php:567
|
615 |
+
msgid ""
|
616 |
+
"Forum scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
|
617 |
+
"\">Preview forum</a>"
|
618 |
msgstr ""
|
619 |
|
620 |
+
#. translators: Publish box date format, see http:php.net/date
|
621 |
+
#: bbp-admin/bbp-forums.php:569 bbp-admin/bbp-replies.php:948
|
622 |
+
#: bbp-admin/bbp-topics.php:1019
|
623 |
+
msgid "M j, Y @ G:i"
|
624 |
msgstr ""
|
625 |
|
626 |
+
#: bbp-admin/bbp-forums.php:574
|
627 |
+
msgid "Forum draft updated. <a target=\"_blank\" href=\"%s\">Preview forum</a>"
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: bbp-admin/bbp-metaboxes.php:42
|
631 |
+
msgid "Discussion"
|
632 |
msgstr ""
|
633 |
|
634 |
+
#: bbp-admin/bbp-metaboxes.php:67 bbp-admin/bbp-metaboxes.php:421
|
635 |
+
#: bbp-admin/bbp-metaboxes.php:424 bbp-admin/bbp-replies.php:615
|
636 |
+
#: bbp-theme-compat/bbpress/content-single-topic-lead.php:22
|
637 |
+
#: bbp-theme-compat/bbpress/content-single-topic-lead.php:94
|
638 |
+
#: bbp-theme-compat/bbpress/loop-topics.php:19
|
639 |
+
#: bbp-themes/bbp-twentyten/bbpress/content-single-topic-lead.php:20
|
640 |
+
#: bbp-themes/bbp-twentyten/bbpress/loop-topics.php:17 bbpress.php:534
|
641 |
+
msgid "Topic"
|
642 |
+
msgid_plural "Topics"
|
643 |
+
msgstr[0] ""
|
644 |
+
msgstr[1] ""
|
645 |
|
646 |
+
#: bbp-admin/bbp-metaboxes.php:84 bbpress.php:591
|
647 |
+
msgid "Reply"
|
648 |
+
msgid_plural "Replies"
|
649 |
+
msgstr[0] ""
|
650 |
+
msgstr[1] ""
|
651 |
|
652 |
+
#: bbp-admin/bbp-metaboxes.php:101 bbpress.php:745
|
653 |
+
msgid "Topic Tag"
|
654 |
+
msgid_plural "Topic Tags"
|
655 |
+
msgstr[0] ""
|
656 |
+
msgstr[1] ""
|
657 |
|
658 |
+
#: bbp-admin/bbp-metaboxes.php:123
|
659 |
+
msgid "Users & Moderation"
|
660 |
msgstr ""
|
661 |
|
662 |
+
#: bbp-admin/bbp-metaboxes.php:131
|
663 |
+
msgid "User"
|
664 |
+
msgid_plural "Users"
|
665 |
+
msgstr[0] ""
|
666 |
+
msgstr[1] ""
|
667 |
|
668 |
+
#: bbp-admin/bbp-metaboxes.php:150
|
669 |
+
msgid "Hidden Topic"
|
670 |
+
msgid_plural "Hidden Topics"
|
671 |
+
msgstr[0] ""
|
672 |
+
msgstr[1] ""
|
673 |
|
674 |
+
#: bbp-admin/bbp-metaboxes.php:172
|
675 |
+
msgid "Hidden Reply"
|
676 |
+
msgid_plural "Hidden Replies"
|
677 |
+
msgstr[0] ""
|
678 |
+
msgstr[1] ""
|
679 |
|
680 |
+
#: bbp-admin/bbp-metaboxes.php:194
|
681 |
+
msgid "Empty Topic Tag"
|
682 |
+
msgid_plural "Empty Topic Tags"
|
683 |
+
msgstr[0] ""
|
684 |
+
msgstr[1] ""
|
685 |
|
686 |
+
#: bbp-admin/bbp-metaboxes.php:218
|
687 |
+
msgid "You are using <span class=\"b\">bbPress %s</span>."
|
|
|
|
|
688 |
msgstr ""
|
689 |
|
690 |
+
#: bbp-admin/bbp-metaboxes.php:257 bbp-admin/bbp-metaboxes.php:258
|
691 |
+
msgid "Type:"
|
|
|
|
|
692 |
msgstr ""
|
693 |
|
694 |
+
#: bbp-admin/bbp-metaboxes.php:269 bbp-admin/bbp-metaboxes.php:270
|
695 |
+
#: bbp-theme-compat/bbpress/form-forum.php:111
|
696 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-forum.php:111
|
697 |
+
msgid "Status:"
|
698 |
msgstr ""
|
699 |
|
700 |
+
#: bbp-admin/bbp-metaboxes.php:281 bbp-admin/bbp-metaboxes.php:282
|
701 |
+
#: bbp-theme-compat/bbpress/form-forum.php:120
|
702 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-forum.php:120
|
703 |
+
msgid "Visibility:"
|
704 |
msgstr ""
|
705 |
|
706 |
+
#: bbp-admin/bbp-metaboxes.php:295
|
707 |
+
msgid "Parent:"
|
708 |
msgstr ""
|
709 |
|
710 |
+
#: bbp-admin/bbp-metaboxes.php:296
|
711 |
+
msgid "Forum Parent"
|
712 |
msgstr ""
|
713 |
|
714 |
+
#: bbp-admin/bbp-metaboxes.php:302 bbp-theme-compat/bbpress/form-forum.php:134
|
715 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-forum.php:134
|
716 |
+
msgid "(No Parent)"
|
717 |
msgstr ""
|
718 |
|
719 |
+
#: bbp-admin/bbp-metaboxes.php:311
|
720 |
+
msgid "Order:"
|
721 |
msgstr ""
|
722 |
|
723 |
+
#: bbp-admin/bbp-metaboxes.php:312
|
724 |
+
msgid "Forum Order"
|
|
|
725 |
msgstr ""
|
726 |
|
727 |
+
#: bbp-admin/bbp-metaboxes.php:342 bbp-admin/bbp-topics.php:738
|
728 |
+
msgid "(No Forum)"
|
|
|
729 |
msgstr ""
|
730 |
|
731 |
+
#: bbp-admin/bbp-metaboxes.php:352 bbp-admin/bbp-metaboxes.php:355
|
732 |
+
msgid "Topic Type"
|
733 |
msgstr ""
|
734 |
|
735 |
+
#: bbp-admin/bbp-metaboxes.php:393
|
736 |
+
msgid "(Use Forum of Topic)"
|
|
|
737 |
msgstr ""
|
738 |
|
739 |
+
#: bbp-admin/bbp-metaboxes.php:414
|
740 |
+
msgid "(No Topic)"
|
741 |
msgstr ""
|
742 |
|
743 |
+
#: bbp-admin/bbp-metaboxes.php:455 bbp-admin/bbp-metaboxes.php:458
|
744 |
+
#: bbp-theme-compat/bbpress/form-user-edit.php:14
|
745 |
+
#: bbp-theme-compat/bbpress/form-user-edit.php:19
|
746 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:14
|
747 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:19
|
748 |
+
msgid "Name"
|
749 |
msgstr ""
|
750 |
|
751 |
+
#: bbp-admin/bbp-metaboxes.php:462 bbp-admin/bbp-metaboxes.php:465
|
752 |
+
#: bbp-theme-compat/bbpress/form-user-edit.php:105
|
753 |
+
#: bbp-theme-compat/bbpress/form-user-register.php:28
|
754 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:105
|
755 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-register.php:28
|
756 |
+
msgid "Email"
|
757 |
msgstr ""
|
758 |
|
759 |
+
#: bbp-admin/bbp-metaboxes.php:469 bbp-admin/bbp-metaboxes.php:472
|
760 |
+
#: bbp-theme-compat/bbpress/form-user-edit.php:57
|
761 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:57
|
762 |
+
msgid "Website"
|
763 |
msgstr ""
|
764 |
|
765 |
+
#: bbp-admin/bbp-metaboxes.php:478 bbp-admin/bbp-metaboxes.php:481
|
766 |
+
msgid "IP Address"
|
|
|
|
|
767 |
msgstr ""
|
768 |
|
769 |
+
#: bbp-admin/bbp-replies.php:143
|
770 |
+
msgid ""
|
771 |
+
"You can filter the list of replies by reply status using the text links in "
|
772 |
+
"the upper left to show All, Published, Draft, or Trashed replies. The "
|
773 |
+
"default view is to show all replies."
|
774 |
msgstr ""
|
775 |
|
776 |
+
#: bbp-admin/bbp-replies.php:145
|
777 |
+
msgid ""
|
778 |
+
"You can refine the list to show only replies in a specific category or from "
|
779 |
+
"a specific month by using the dropdown menus above the replies list. Click "
|
780 |
+
"the Filter button after making your selection. You also can refine the list "
|
781 |
+
"by clicking on the reply author, category or tag in the replies list."
|
782 |
msgstr ""
|
783 |
|
784 |
+
#: bbp-admin/bbp-replies.php:154
|
785 |
+
msgid ""
|
786 |
+
"Hovering over a row in the replies list will display action links that allow "
|
787 |
+
"you to manage your reply. You can perform the following actions:"
|
788 |
msgstr ""
|
789 |
|
790 |
+
#: bbp-admin/bbp-replies.php:156
|
791 |
+
msgid ""
|
792 |
+
"<strong>Edit</strong> takes you to the editing screen for that reply. You "
|
793 |
+
"can also reach that screen by clicking on the reply title."
|
794 |
msgstr ""
|
795 |
|
796 |
+
#: bbp-admin/bbp-replies.php:158
|
797 |
+
msgid ""
|
798 |
+
"<strong>Trash</strong> removes your reply from this list and places it in "
|
799 |
+
"the trash, from which you can permanently delete it."
|
800 |
msgstr ""
|
801 |
|
802 |
+
#: bbp-admin/bbp-replies.php:159
|
803 |
+
msgid ""
|
804 |
+
"<strong>Spam</strong> removes your reply from this list and places it in the "
|
805 |
+
"spam queue, from which you can permanently delete it."
|
806 |
msgstr ""
|
807 |
|
808 |
+
#: bbp-admin/bbp-replies.php:160
|
809 |
+
msgid ""
|
810 |
+
"<strong>Preview</strong> will show you what your draft reply will look like "
|
811 |
+
"if you publish it. View will take you to your live site to view the reply. "
|
812 |
+
"Which link is available depends on your reply’s status."
|
813 |
msgstr ""
|
814 |
|
815 |
+
#: bbp-admin/bbp-replies.php:170
|
816 |
+
msgid ""
|
817 |
+
"When using Bulk Edit, you can change the metadata (categories, author, etc.) "
|
818 |
+
"for all selected replies at once. To remove a reply from the grouping, just "
|
819 |
+
"click the x next to its name in the Bulk Edit area that appears."
|
820 |
msgstr ""
|
821 |
|
822 |
+
#: bbp-admin/bbp-replies.php:200
|
823 |
msgid ""
|
824 |
+
"The title field and the big reply editing Area are fixed in place, but you "
|
825 |
+
"can reposition all the other boxes using drag and drop, and can minimize or "
|
826 |
+
"expand them by clicking the title bar of each box. Use the Screen Options "
|
827 |
+
"tab to unhide more boxes (Excerpt, Send Trackbacks, Custom Fields, "
|
828 |
+
"Discussion, Slug, Author) or to choose a 1- or 2-column layout for this "
|
829 |
+
"screen."
|
830 |
msgstr ""
|
831 |
|
832 |
+
#: bbp-admin/bbp-replies.php:210
|
833 |
+
msgid "Title and Reply Editor"
|
834 |
msgstr ""
|
835 |
|
836 |
+
#: bbp-admin/bbp-replies.php:212
|
837 |
+
msgid ""
|
838 |
+
"<strong>Title</strong> - Enter a title for your reply. After you enter a "
|
839 |
+
"title, you’ll see the permalink below, which you can edit."
|
840 |
msgstr ""
|
841 |
|
842 |
+
#: bbp-admin/bbp-replies.php:213
|
843 |
+
msgid ""
|
844 |
+
"<strong>Reply Editor</strong> - Enter the text for your reply. There are two "
|
845 |
+
"modes of editing: Visual and HTML. Choose the mode by clicking on the "
|
846 |
+
"appropriate tab. Visual mode gives you a WYSIWYG editor. Click the last icon "
|
847 |
+
"in the row to get a second row of controls. The HTML mode allows you to "
|
848 |
+
"enter raw HTML along with your reply text. You can insert media files by "
|
849 |
+
"clicking the icons above the reply editor and following the directions. You "
|
850 |
+
"can go to the distraction-free writing screen via the Fullscreen icon in "
|
851 |
+
"Visual mode (second to last in the top row) or the Fullscreen button in HTML "
|
852 |
+
"mode (last in the row). Once there, you can make buttons visible by hovering "
|
853 |
+
"over the top area. Exit Fullscreen back to the regular reply editor."
|
854 |
msgstr ""
|
855 |
|
856 |
+
#: bbp-admin/bbp-replies.php:216
|
857 |
msgid ""
|
858 |
+
"<strong>Publish</strong> - You can set the terms of publishing your reply in "
|
859 |
+
"the Publish box. For Status, Visibility, and Publish (immediately), click on "
|
860 |
+
"the Edit link to reveal more options. Visibility includes options for "
|
861 |
+
"password-protecting a reply or making it stay at the top of your blog "
|
862 |
+
"indefinitely (sticky). Publish (immediately) allows you to set a future or "
|
863 |
+
"past date and time, so you can schedule a reply to be published in the "
|
864 |
+
"future or backdate a reply."
|
865 |
msgstr ""
|
866 |
|
867 |
+
#: bbp-admin/bbp-replies.php:219
|
868 |
msgid ""
|
869 |
+
"<strong>reply Format</strong> - This designates how your theme will display "
|
870 |
+
"a specific reply. For example, you could have a <em>standard</em> blog reply "
|
871 |
+
"with a title and paragraphs, or a short <em>aside</em> that omits the title "
|
872 |
+
"and contains a short text blurb. Please refer to the Codex for <a href="
|
873 |
+
"\"http://codex.wordpress.org/Post_Formats#Supported_Formats\">descriptions "
|
874 |
+
"of each reply format</a>. Your theme could enable all or some of 10 possible "
|
875 |
+
"formats."
|
876 |
msgstr ""
|
877 |
|
878 |
+
#: bbp-admin/bbp-replies.php:223
|
879 |
+
msgid ""
|
880 |
+
"<strong>Featured Image</strong> - This allows you to associate an image with "
|
881 |
+
"your reply without inserting it. This is usually useful only if your theme "
|
882 |
+
"makes use of the featured image as a reply thumbnail on the home page, a "
|
883 |
+
"custom header, etc."
|
884 |
msgstr ""
|
885 |
|
886 |
+
#: bbp-admin/bbp-replies.php:228 bbp-admin/bbp-replies.php:270
|
887 |
+
msgid "Reply Attributes"
|
888 |
msgstr ""
|
889 |
|
890 |
+
#: bbp-admin/bbp-replies.php:230
|
891 |
+
msgid "Select the attributes that your reply should have:"
|
|
|
892 |
msgstr ""
|
893 |
|
894 |
+
#: bbp-admin/bbp-replies.php:232
|
895 |
+
msgid ""
|
896 |
+
"<strong>Forum</strong> dropdown determines the parent forum that the reply "
|
897 |
+
"belongs to. Select the forum, or leave the default (Use Forum of Topic) to "
|
898 |
+
"post the reply in forum of the topic."
|
899 |
msgstr ""
|
900 |
|
901 |
+
#: bbp-admin/bbp-replies.php:233
|
902 |
+
msgid ""
|
903 |
+
"<strong>Topic</strong> determines the parent topic that the reply belongs to."
|
904 |
msgstr ""
|
905 |
|
906 |
+
#: bbp-admin/bbp-replies.php:248
|
907 |
msgid ""
|
908 |
+
"<strong>Discussion</strong> - You can turn comments and pings on or off, and "
|
909 |
+
"if there are comments on the reply, you can see them here and moderate them."
|
|
|
910 |
msgstr ""
|
911 |
|
912 |
+
#: bbp-admin/bbp-replies.php:355 bbp-admin/bbp-topics.php:372
|
913 |
+
#: bbp-theme-compat/bbpress/form-anonymous.php:17
|
914 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-anonymous.php:17
|
915 |
+
msgid "Author Information"
|
|
|
916 |
msgstr ""
|
917 |
|
918 |
+
#: bbp-admin/bbp-replies.php:510
|
919 |
+
msgid "The reply was not found!"
|
|
|
|
|
920 |
msgstr ""
|
921 |
|
922 |
+
#: bbp-admin/bbp-replies.php:513 bbp-admin/bbp-topics.php:538
|
923 |
+
msgid "You do not have the permission to do that!"
|
|
|
|
|
924 |
msgstr ""
|
925 |
|
926 |
+
#: bbp-admin/bbp-replies.php:579
|
927 |
+
msgid "There was a problem marking the reply \"%1$s\" as spam."
|
|
|
|
|
|
|
928 |
msgstr ""
|
929 |
|
930 |
+
#: bbp-admin/bbp-replies.php:579
|
931 |
+
msgid "Reply \"%1$s\" successfully marked as spam."
|
|
|
|
|
|
|
|
|
932 |
msgstr ""
|
933 |
|
934 |
+
#: bbp-admin/bbp-replies.php:583
|
935 |
+
msgid "There was a problem unmarking the reply \"%1$s\" as spam."
|
|
|
|
|
|
|
936 |
msgstr ""
|
937 |
|
938 |
+
#: bbp-admin/bbp-replies.php:583
|
939 |
+
msgid "Reply \"%1$s\" successfully unmarked as spam."
|
|
|
|
|
940 |
msgstr ""
|
941 |
|
942 |
+
#: bbp-admin/bbp-replies.php:613
|
943 |
+
msgid "Title"
|
|
|
|
|
|
|
|
|
944 |
msgstr ""
|
945 |
|
946 |
+
#: bbp-admin/bbp-replies.php:616 bbp-admin/bbp-topics.php:681
|
947 |
+
#: bbp-theme-compat/bbpress/loop-replies.php:18
|
948 |
+
#: bbp-theme-compat/bbpress/loop-replies.php:52
|
949 |
+
#: bbp-themes/bbp-twentyten/bbpress/loop-replies.php:17
|
950 |
+
#: bbp-themes/bbp-twentyten/bbpress/loop-replies.php:40
|
951 |
+
#: bbp-themes/bbp-twentyten/single-reply.php:29
|
952 |
+
msgid "Author"
|
953 |
msgstr ""
|
954 |
|
955 |
+
#: bbp-admin/bbp-replies.php:668 bbp-admin/bbp-replies.php:676
|
956 |
+
msgid "No Topic"
|
957 |
msgstr ""
|
958 |
|
959 |
+
#: bbp-admin/bbp-replies.php:694 bbp-admin/bbp-replies.php:709
|
960 |
+
#: bbp-admin/bbp-topics.php:731
|
961 |
+
msgid "No Forum"
|
962 |
msgstr ""
|
963 |
|
964 |
+
#: bbp-admin/bbp-replies.php:700
|
965 |
+
msgid "(Mismatch)"
|
966 |
msgstr ""
|
967 |
|
968 |
+
#: bbp-admin/bbp-replies.php:767 bbp-admin/bbp-topics.php:819
|
969 |
+
msgid "View “%s”"
|
970 |
msgstr ""
|
971 |
|
972 |
+
#: bbp-admin/bbp-replies.php:767 bbp-admin/bbp-topics.php:819
|
973 |
+
msgid "View"
|
974 |
msgstr ""
|
975 |
|
976 |
+
#: bbp-admin/bbp-replies.php:778
|
977 |
+
msgid "Mark the reply as not spam"
|
978 |
msgstr ""
|
979 |
|
980 |
+
#: bbp-admin/bbp-replies.php:778 bbp-admin/bbp-topics.php:850
|
981 |
+
msgid "Not spam"
|
982 |
msgstr ""
|
983 |
|
984 |
+
#: bbp-admin/bbp-replies.php:780
|
985 |
+
msgid "Mark this reply as spam"
|
986 |
msgstr ""
|
987 |
|
988 |
+
#: bbp-admin/bbp-replies.php:780 bbp-admin/bbp-topics.php:852
|
989 |
+
#: bbp-includes/bbp-reply-template.php:1657
|
990 |
+
#: bbp-includes/bbp-topic-template.php:2559
|
991 |
+
msgid "Spam"
|
992 |
msgstr ""
|
993 |
|
994 |
+
#: bbp-admin/bbp-replies.php:789 bbp-admin/bbp-topics.php:860
|
995 |
+
#: bbp-includes/bbp-reply-template.php:1601
|
996 |
+
#: bbp-includes/bbp-topic-template.php:2317
|
997 |
+
msgid "Restore this item from the Trash"
|
998 |
msgstr ""
|
999 |
|
1000 |
+
#: bbp-admin/bbp-replies.php:789 bbp-admin/bbp-topics.php:860
|
1001 |
+
#: bbp-includes/bbp-reply-template.php:1587
|
1002 |
+
#: bbp-includes/bbp-topic-template.php:2303
|
1003 |
+
msgid "Restore"
|
1004 |
msgstr ""
|
1005 |
|
1006 |
+
#: bbp-admin/bbp-replies.php:791 bbp-admin/bbp-topics.php:862
|
1007 |
+
#: bbp-includes/bbp-reply-template.php:1603
|
1008 |
+
#: bbp-includes/bbp-topic-template.php:2319
|
1009 |
+
msgid "Move this item to the Trash"
|
1010 |
msgstr ""
|
1011 |
|
1012 |
+
#: bbp-admin/bbp-replies.php:791 bbp-admin/bbp-topics.php:862
|
1013 |
+
#: bbp-includes/bbp-reply-template.php:1586
|
1014 |
+
#: bbp-includes/bbp-topic-template.php:2302
|
1015 |
+
msgid "Trash"
|
1016 |
msgstr ""
|
1017 |
|
1018 |
+
#: bbp-admin/bbp-replies.php:795 bbp-admin/bbp-topics.php:866
|
1019 |
+
#: bbp-includes/bbp-reply-template.php:1607
|
1020 |
+
#: bbp-includes/bbp-topic-template.php:2323
|
1021 |
+
msgid "Delete this item permanently"
|
1022 |
msgstr ""
|
1023 |
|
1024 |
+
#: bbp-admin/bbp-replies.php:795 bbp-admin/bbp-topics.php:866
|
1025 |
+
msgid "Delete Permanently"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
+
#: bbp-admin/bbp-replies.php:830 bbp-admin/bbp-topics.php:901
|
1029 |
+
msgid "Empty Spam"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
+
#: bbp-admin/bbp-replies.php:840 bbp-admin/bbp-topics.php:911
|
1033 |
+
msgid "In all forums"
|
|
|
|
|
1034 |
msgstr ""
|
1035 |
|
1036 |
+
#: bbp-admin/bbp-replies.php:919
|
1037 |
+
msgid "Reply updated. <a href=\"%s\">View topic</a>"
|
1038 |
msgstr ""
|
1039 |
|
1040 |
+
#: bbp-admin/bbp-replies.php:928
|
1041 |
+
msgid "Reply updated."
|
1042 |
msgstr ""
|
1043 |
|
1044 |
+
#. translators: %s: date and time of the revision
|
1045 |
+
#: bbp-admin/bbp-replies.php:933
|
1046 |
+
msgid "Reply restored to revision from %s"
|
1047 |
msgstr ""
|
1048 |
|
1049 |
+
#: bbp-admin/bbp-replies.php:937
|
1050 |
+
msgid "Reply created. <a href=\"%s\">View topic</a>"
|
1051 |
msgstr ""
|
1052 |
|
1053 |
+
#: bbp-admin/bbp-replies.php:940
|
1054 |
+
msgid "Reply saved."
|
1055 |
msgstr ""
|
1056 |
|
1057 |
+
#: bbp-admin/bbp-replies.php:943
|
1058 |
+
msgid "Reply submitted. <a target=\"_blank\" href=\"%s\">Preview topic</a>"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
+
#: bbp-admin/bbp-replies.php:946
|
1062 |
+
msgid ""
|
1063 |
+
"Reply scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
|
1064 |
+
"\">Preview topic</a>"
|
1065 |
msgstr ""
|
1066 |
|
1067 |
+
#: bbp-admin/bbp-replies.php:953
|
1068 |
+
msgid "Reply draft updated. <a target=\"_blank\" href=\"%s\">Preview topic</a>"
|
1069 |
+
msgstr ""
|
1070 |
+
|
1071 |
+
#: bbp-admin/bbp-settings.php:29
|
1072 |
+
msgid "Theme Packages"
|
1073 |
msgstr ""
|
1074 |
|
1075 |
+
#: bbp-admin/bbp-settings.php:34 bbp-admin/bbp-settings.php:1278
|
1076 |
msgid "Per Page"
|
1077 |
msgstr ""
|
1078 |
|
1079 |
+
#: bbp-admin/bbp-settings.php:39
|
1080 |
msgid "Per RSS Page"
|
1081 |
msgstr ""
|
1082 |
|
1083 |
+
#: bbp-admin/bbp-settings.php:44
|
1084 |
msgid "Archive Slugs"
|
1085 |
msgstr ""
|
1086 |
|
1087 |
+
#: bbp-admin/bbp-settings.php:49
|
1088 |
msgid "Single Slugs"
|
1089 |
msgstr ""
|
1090 |
|
1091 |
+
#: bbp-admin/bbp-settings.php:54
|
1092 |
+
msgid "BuddyPress"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1093 |
msgstr ""
|
1094 |
|
1095 |
+
#: bbp-admin/bbp-settings.php:59
|
1096 |
+
msgid "Akismet"
|
1097 |
msgstr ""
|
1098 |
|
1099 |
+
#: bbp-admin/bbp-settings.php:81
|
1100 |
+
msgid "Lock post editing after"
|
1101 |
msgstr ""
|
1102 |
|
1103 |
+
#: bbp-admin/bbp-settings.php:90
|
1104 |
+
msgid "Throttle time"
|
1105 |
msgstr ""
|
1106 |
|
1107 |
+
#: bbp-admin/bbp-settings.php:99
|
1108 |
+
msgid "Allow Revisions"
|
|
|
|
|
|
|
1109 |
msgstr ""
|
1110 |
|
1111 |
+
#: bbp-admin/bbp-settings.php:108
|
1112 |
+
msgid "Allow Favorites"
|
1113 |
msgstr ""
|
1114 |
|
1115 |
+
#: bbp-admin/bbp-settings.php:117
|
1116 |
+
msgid "Allow Subscriptions"
|
1117 |
msgstr ""
|
1118 |
|
1119 |
+
#: bbp-admin/bbp-settings.php:126
|
1120 |
+
msgid "Allow Anonymous Posting"
|
1121 |
msgstr ""
|
1122 |
|
1123 |
+
#: bbp-admin/bbp-settings.php:135
|
1124 |
+
msgid "Allow Global Access"
|
1125 |
msgstr ""
|
1126 |
|
1127 |
+
#: bbp-admin/bbp-settings.php:144
|
1128 |
+
msgid "Fancy Editor"
|
1129 |
msgstr ""
|
1130 |
|
1131 |
+
#: bbp-admin/bbp-settings.php:153
|
1132 |
+
msgid "Auto-embed Links"
|
1133 |
msgstr ""
|
1134 |
|
1135 |
+
#: bbp-admin/bbp-settings.php:167
|
1136 |
+
msgid "Current Package"
|
|
|
|
|
1137 |
msgstr ""
|
1138 |
|
1139 |
+
#: bbp-admin/bbp-settings.php:227 bbp-admin/bbp-settings.php:1391
|
1140 |
+
msgid "Forums base"
|
1141 |
msgstr ""
|
1142 |
|
1143 |
+
#: bbp-admin/bbp-settings.php:236 bbp-admin/bbp-settings.php:1394
|
1144 |
+
msgid "Topics base"
|
1145 |
msgstr ""
|
1146 |
|
1147 |
+
#: bbp-admin/bbp-settings.php:250
|
1148 |
+
msgid "Forum Prefix"
|
|
|
|
|
1149 |
msgstr ""
|
1150 |
|
1151 |
+
#: bbp-admin/bbp-settings.php:259 bbp-admin/bbp-settings.php:1397
|
1152 |
+
msgid "Forum slug"
|
|
|
|
|
1153 |
msgstr ""
|
1154 |
|
1155 |
+
#: bbp-admin/bbp-settings.php:268 bbp-admin/bbp-settings.php:1400
|
1156 |
+
msgid "Topic slug"
|
1157 |
msgstr ""
|
1158 |
|
1159 |
+
#: bbp-admin/bbp-settings.php:277 bbp-admin/bbp-settings.php:1412
|
1160 |
+
msgid "Topic tag slug"
|
|
|
|
|
|
|
1161 |
msgstr ""
|
1162 |
|
1163 |
+
#: bbp-admin/bbp-settings.php:286 bbp-admin/bbp-settings.php:1403
|
1164 |
+
msgid "Reply slug"
|
|
|
|
|
|
|
|
|
1165 |
msgstr ""
|
1166 |
|
1167 |
+
#: bbp-admin/bbp-settings.php:295
|
1168 |
+
msgid "User slug"
|
1169 |
msgstr ""
|
1170 |
|
1171 |
+
#: bbp-admin/bbp-settings.php:304
|
1172 |
+
msgid "Topic view slug"
|
|
|
|
|
1173 |
msgstr ""
|
1174 |
|
1175 |
+
#: bbp-admin/bbp-settings.php:318
|
1176 |
+
msgid "Enable Group Forums"
|
1177 |
msgstr ""
|
1178 |
|
1179 |
+
#: bbp-admin/bbp-settings.php:327
|
1180 |
+
msgid "Group Forums Parent"
|
1181 |
msgstr ""
|
1182 |
|
1183 |
+
#: bbp-admin/bbp-settings.php:341
|
1184 |
+
msgid "Use Akismet"
|
|
|
|
|
1185 |
msgstr ""
|
1186 |
|
1187 |
+
#: bbp-admin/bbp-settings.php:380
|
1188 |
+
msgid "Main forum settings for enabling features and setting time limits"
|
|
|
|
|
1189 |
msgstr ""
|
1190 |
|
1191 |
+
#: bbp-admin/bbp-settings.php:396 bbp-includes/bbp-common-functions.php:121
|
1192 |
+
msgid "minutes"
|
|
|
|
|
1193 |
msgstr ""
|
1194 |
|
1195 |
+
#: bbp-admin/bbp-settings.php:412 bbp-includes/bbp-common-functions.php:122
|
1196 |
+
msgid "seconds"
|
|
|
|
|
|
|
1197 |
msgstr ""
|
1198 |
|
1199 |
+
#: bbp-admin/bbp-settings.php:428
|
1200 |
+
msgid "Allow users to mark topics as favorites"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
+
#: bbp-admin/bbp-settings.php:444
|
1204 |
+
msgid "Allow users to subscribe to topics"
|
|
|
|
|
1205 |
msgstr ""
|
1206 |
|
1207 |
+
#: bbp-admin/bbp-settings.php:460
|
1208 |
+
msgid "Allow topic and reply revision logging"
|
1209 |
msgstr ""
|
1210 |
|
1211 |
+
#: bbp-admin/bbp-settings.php:476
|
1212 |
+
msgid "Allow guest users without accounts to create topics and replies"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
+
#: bbp-admin/bbp-settings.php:492
|
1216 |
msgid ""
|
1217 |
+
"Allow all users of your multisite installation to create topics and replies"
|
|
|
1218 |
msgstr ""
|
1219 |
|
1220 |
+
#: bbp-admin/bbp-settings.php:508 bbp-admin/bbp-settings.php:556
|
1221 |
+
msgid "Use the fancy WordPress editor to create and edit topics and replies"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
+
#: bbp-admin/bbp-settings.php:521
|
1225 |
+
msgid "How your forum content is displayed within your existing theme."
|
|
|
|
|
1226 |
msgstr ""
|
1227 |
|
1228 |
+
#: bbp-admin/bbp-settings.php:545
|
1229 |
+
msgid "%1$s - %2$s"
|
1230 |
msgstr ""
|
1231 |
|
1232 |
+
#: bbp-admin/bbp-settings.php:551
|
1233 |
+
msgid "will serve all bbPress templates"
|
|
|
|
|
|
|
1234 |
msgstr ""
|
1235 |
|
1236 |
+
#: bbp-admin/bbp-settings.php:572
|
1237 |
msgid ""
|
1238 |
+
"Embed media (YouTube, Twitter, Flickr, etc...) directly into topics and "
|
1239 |
+
"replies."
|
1240 |
msgstr ""
|
1241 |
|
1242 |
+
#: bbp-admin/bbp-settings.php:587
|
1243 |
+
msgid "How many topics and replies to show per page"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
+
#: bbp-admin/bbp-settings.php:603 bbp-admin/bbp-settings.php:619
|
1247 |
+
#: bbp-admin/bbp-settings.php:650 bbp-admin/bbp-settings.php:666
|
1248 |
+
msgid "per page"
|
|
|
1249 |
msgstr ""
|
1250 |
|
1251 |
+
#: bbp-admin/bbp-settings.php:634
|
1252 |
+
msgid "How many topics and replies to show per RSS page"
|
|
|
|
|
1253 |
msgstr ""
|
1254 |
|
1255 |
+
#: bbp-admin/bbp-settings.php:684
|
1256 |
+
msgid ""
|
1257 |
+
"Custom root slugs to prefix your forums and topics with. These can be "
|
1258 |
+
"partnered with WordPress pages to allow more flexibility."
|
1259 |
msgstr ""
|
1260 |
|
1261 |
+
#: bbp-admin/bbp-settings.php:733
|
1262 |
msgid ""
|
1263 |
+
"Custom slugs for single forums, topics, replies, tags, users, and views "
|
1264 |
+
"here. If you change these, existing permalinks will also change."
|
1265 |
msgstr ""
|
1266 |
|
1267 |
+
#: bbp-admin/bbp-settings.php:749
|
1268 |
+
msgid "Prefix your forum area with the Forum Base slug (Recommended)"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
+
#: bbp-admin/bbp-settings.php:869
|
1272 |
+
msgid "Forum settings for BuddyPress"
|
|
|
|
|
1273 |
msgstr ""
|
1274 |
|
1275 |
+
#: bbp-admin/bbp-settings.php:885
|
1276 |
+
msgid "Allow BuddyPress Groups to have their own forums"
|
|
|
|
|
|
|
1277 |
msgstr ""
|
1278 |
|
1279 |
+
#: bbp-admin/bbp-settings.php:903
|
1280 |
+
msgid "(Forum Root)"
|
|
|
|
|
1281 |
msgstr ""
|
1282 |
|
1283 |
+
#: bbp-admin/bbp-settings.php:909
|
1284 |
+
msgid "is the parent for all group forums"
|
1285 |
msgstr ""
|
1286 |
|
1287 |
+
#: bbp-admin/bbp-settings.php:910
|
1288 |
+
msgid ""
|
1289 |
+
"Using the Forum Root is not recommended. Changing this does not move "
|
1290 |
+
"existing forums."
|
1291 |
msgstr ""
|
1292 |
|
1293 |
+
#: bbp-admin/bbp-settings.php:925
|
1294 |
+
msgid "Forum settings for Akismet"
|
1295 |
msgstr ""
|
1296 |
|
1297 |
+
#: bbp-admin/bbp-settings.php:942
|
1298 |
+
msgid "Allow Akismet to actively prevent forum spam."
|
1299 |
msgstr ""
|
1300 |
|
1301 |
+
#: bbp-admin/bbp-settings.php:965
|
1302 |
+
msgid "bbPress Settings"
|
1303 |
msgstr ""
|
1304 |
|
1305 |
+
#: bbp-admin/bbp-settings.php:974
|
1306 |
+
#: bbp-theme-compat/bbpress/form-user-edit.php:169
|
1307 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:169
|
1308 |
+
msgid "Save Changes"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
+
#: bbp-admin/bbp-settings.php:993
|
1312 |
msgid ""
|
1313 |
+
"Information about your previous forums database so that they can be "
|
1314 |
+
"converted. <strong>Backup your database before proceeding.</strong>"
|
|
|
|
|
|
|
|
|
|
|
1315 |
msgstr ""
|
1316 |
|
1317 |
+
#: bbp-admin/bbp-settings.php:1018
|
1318 |
+
msgid "is the previous forum software"
|
|
|
|
|
1319 |
msgstr ""
|
1320 |
|
1321 |
+
#: bbp-admin/bbp-settings.php:1032
|
1322 |
+
msgid "IP or hostname"
|
|
|
|
|
1323 |
msgstr ""
|
1324 |
|
1325 |
+
#: bbp-admin/bbp-settings.php:1046
|
1326 |
+
msgid "Use default 3306 if unsure"
|
|
|
|
|
|
|
|
|
|
|
1327 |
msgstr ""
|
1328 |
|
1329 |
+
#: bbp-admin/bbp-settings.php:1060
|
1330 |
+
msgid "User for your database connection"
|
|
|
|
|
|
|
|
|
|
|
|
|
1331 |
msgstr ""
|
1332 |
|
1333 |
+
#: bbp-admin/bbp-settings.php:1074
|
1334 |
+
msgid "Password to access the database"
|
|
|
|
|
1335 |
msgstr ""
|
1336 |
|
1337 |
+
#: bbp-admin/bbp-settings.php:1088
|
1338 |
+
msgid "Name of the database with your old forum data"
|
1339 |
msgstr ""
|
1340 |
|
1341 |
+
#: bbp-admin/bbp-settings.php:1101
|
1342 |
+
msgid "Some optional parameters to help tune the convertion process."
|
1343 |
msgstr ""
|
1344 |
|
1345 |
+
#: bbp-admin/bbp-settings.php:1115
|
1346 |
msgid ""
|
1347 |
+
"(If converting from BuddyPress Forums, use \"wp_bb_\" or your custom prefix)"
|
1348 |
msgstr ""
|
1349 |
|
1350 |
+
#: bbp-admin/bbp-settings.php:1129
|
1351 |
+
msgid "rows to process at a time"
|
1352 |
msgstr ""
|
1353 |
|
1354 |
+
#: bbp-admin/bbp-settings.php:1130
|
1355 |
+
msgid "Keep this low if you experience out-of-memory issues."
|
1356 |
msgstr ""
|
1357 |
|
1358 |
+
#: bbp-admin/bbp-settings.php:1144
|
1359 |
+
msgid "second(s) delay between each group of rows"
|
1360 |
msgstr ""
|
1361 |
|
1362 |
+
#: bbp-admin/bbp-settings.php:1145
|
1363 |
+
msgid "Keep this high to prevent too-many-connection issues."
|
1364 |
msgstr ""
|
1365 |
|
1366 |
+
#: bbp-admin/bbp-settings.php:1159
|
1367 |
+
msgid "Purge all information from a previously attempted import"
|
1368 |
msgstr ""
|
1369 |
|
1370 |
+
#: bbp-admin/bbp-settings.php:1160
|
1371 |
+
msgid "Use this if an import failed and you want to start over from scratch."
|
1372 |
msgstr ""
|
1373 |
|
1374 |
+
#: bbp-admin/bbp-settings.php:1174
|
1375 |
+
msgid "Restart the conversion process"
|
|
|
|
|
1376 |
msgstr ""
|
1377 |
|
1378 |
+
#: bbp-admin/bbp-settings.php:1175
|
1379 |
+
msgid "The importer keeps track of where it left off in the event of failure."
|
1380 |
msgstr ""
|
1381 |
|
1382 |
+
#: bbp-admin/bbp-settings.php:1189
|
1383 |
+
msgid "Attempt to import user accounts from previous forums"
|
|
|
|
|
|
|
|
|
|
|
1384 |
msgstr ""
|
1385 |
|
1386 |
+
#: bbp-admin/bbp-settings.php:1190
|
1387 |
msgid ""
|
1388 |
+
"Non-bbPress passwords cannot be automatically converted. They will be "
|
1389 |
+
"converted as each user logs in."
|
1390 |
msgstr ""
|
1391 |
|
1392 |
+
#: bbp-admin/bbp-settings.php:1220
|
1393 |
+
msgid "Start"
|
1394 |
msgstr ""
|
1395 |
|
1396 |
+
#: bbp-admin/bbp-settings.php:1221
|
1397 |
+
msgid "Stop"
|
|
|
|
|
|
|
1398 |
msgstr ""
|
1399 |
|
1400 |
+
#: bbp-admin/bbp-settings.php:1252
|
1401 |
+
msgid "This screen provides access to all of the bbPress settings."
|
1402 |
msgstr ""
|
1403 |
|
1404 |
+
#: bbp-admin/bbp-settings.php:1253
|
1405 |
+
msgid ""
|
1406 |
+
"Please see the additional help tabs for more information on each indiviual "
|
1407 |
+
"section."
|
1408 |
msgstr ""
|
1409 |
|
1410 |
+
#: bbp-admin/bbp-settings.php:1260
|
1411 |
+
msgid "In the Main Settings you have a number of options:"
|
1412 |
msgstr ""
|
1413 |
|
1414 |
+
#: bbp-admin/bbp-settings.php:1263
|
1415 |
msgid ""
|
1416 |
+
"You can choose to lock a post after a certain number of minutes. \"Locking "
|
1417 |
+
"post editing\" will prevent the author from editing some amount of time "
|
1418 |
+
"after saving a post."
|
|
|
|
|
1419 |
msgstr ""
|
1420 |
|
1421 |
+
#: bbp-admin/bbp-settings.php:1264
|
1422 |
msgid ""
|
1423 |
+
"\"Throttle time\" is the amount of time required between posts from a single "
|
1424 |
+
"author. The higher the throttle time, the longer a user will need to wait "
|
1425 |
+
"between posting to the forum."
|
1426 |
msgstr ""
|
1427 |
|
1428 |
+
#: bbp-admin/bbp-settings.php:1265
|
1429 |
msgid ""
|
1430 |
+
"Favorites are a way for users to save and later return to topics they favor. "
|
1431 |
+
"This is enabled by default."
|
|
|
|
|
|
|
|
|
|
|
1432 |
msgstr ""
|
1433 |
|
1434 |
+
#: bbp-admin/bbp-settings.php:1266
|
1435 |
msgid ""
|
1436 |
+
"Subscriptions allow users to subscribe for notifications to topics that "
|
1437 |
+
"interest them. This is enabled by default."
|
1438 |
msgstr ""
|
1439 |
|
1440 |
+
#: bbp-admin/bbp-settings.php:1267
|
1441 |
msgid ""
|
1442 |
+
"\"Anonymous Posting\" allows guest users who do not have accounts on your "
|
1443 |
+
"site to both create topics as well as replies."
|
1444 |
msgstr ""
|
1445 |
|
1446 |
+
#: bbp-admin/bbp-settings.php:1268
|
1447 |
msgid ""
|
1448 |
+
"The Fancy Editor brings the luxury of the Visual editor and HTML editor from "
|
1449 |
+
"the traditional WordPress dashboard into your theme."
|
1450 |
msgstr ""
|
1451 |
|
1452 |
+
#: bbp-admin/bbp-settings.php:1269
|
1453 |
msgid ""
|
1454 |
+
"Auto-embed will embed the media content from a URL directly into the "
|
1455 |
+
"replies. For example: links to Flickr and YouTube."
|
1456 |
msgstr ""
|
1457 |
|
1458 |
+
#: bbp-admin/bbp-settings.php:1272
|
1459 |
msgid ""
|
1460 |
+
"You must click the Save Changes button at the bottom of the screen for new "
|
1461 |
+
"settings to take effect."
|
1462 |
msgstr ""
|
1463 |
|
1464 |
+
#: bbp-admin/bbp-settings.php:1279
|
1465 |
msgid ""
|
1466 |
+
"Per Page settings allow you to control the number of topics and replies "
|
1467 |
+
"appear on each page."
|
1468 |
msgstr ""
|
1469 |
|
1470 |
+
#: bbp-admin/bbp-settings.php:1280
|
1471 |
msgid ""
|
1472 |
+
"This is comparable to the WordPress \"Reading Settings\" page, where you can "
|
1473 |
+
"set the number of posts that should show on blog pages and in feeds."
|
|
|
1474 |
msgstr ""
|
1475 |
|
1476 |
+
#: bbp-admin/bbp-settings.php:1281
|
1477 |
msgid ""
|
1478 |
+
"These are broken up into two separate groups: one for what appears in your "
|
1479 |
+
"theme, another for RSS feeds."
|
|
|
1480 |
msgstr ""
|
1481 |
|
1482 |
+
#: bbp-admin/bbp-settings.php:1287
|
1483 |
+
msgid "Slugs"
|
1484 |
msgstr ""
|
1485 |
|
1486 |
+
#: bbp-admin/bbp-settings.php:1288
|
1487 |
msgid ""
|
1488 |
+
"The Slugs section allows you to control the permalink structure for your "
|
1489 |
+
"forums."
|
1490 |
msgstr ""
|
1491 |
|
1492 |
+
#: bbp-admin/bbp-settings.php:1289
|
1493 |
msgid ""
|
1494 |
+
"\"Archive Slugs\" are used as the \"root\" for your forums and topics. If "
|
1495 |
+
"you combine these values with existing page slugs, bbPress will attempt to "
|
1496 |
+
"output the most correct title and content."
|
1497 |
msgstr ""
|
1498 |
|
1499 |
+
#: bbp-admin/bbp-settings.php:1290
|
1500 |
msgid ""
|
1501 |
+
"\"Single Slugs\" are used as a prefix when viewing an individual forum, "
|
1502 |
+
"topic, reply, user, or view."
|
|
|
|
|
1503 |
msgstr ""
|
1504 |
|
1505 |
+
#: bbp-admin/bbp-settings.php:1291
|
1506 |
msgid ""
|
1507 |
+
"In the event of a slug collision with WordPress or BuddyPress, a warning "
|
1508 |
+
"will appear next to the problem slug(s)."
|
1509 |
msgstr ""
|
1510 |
|
1511 |
+
#: bbp-admin/bbp-settings.php:1376 bbp-theme-compat/bbpress/loop-forums.php:21
|
1512 |
+
#: bbp-theme-compat/bbpress/loop-replies.php:24
|
1513 |
+
#: bbp-theme-compat/bbpress/loop-replies.php:58
|
1514 |
+
#: bbp-theme-compat/bbpress/loop-topics.php:21
|
1515 |
+
#: bbp-themes/bbp-twentyten/bbpress/loop-forums.php:20
|
1516 |
+
#: bbp-themes/bbp-twentyten/bbpress/loop-replies.php:22
|
1517 |
+
#: bbp-themes/bbp-twentyten/bbpress/loop-replies.php:45
|
1518 |
+
#: bbp-themes/bbp-twentyten/bbpress/loop-topics.php:19
|
1519 |
+
msgid "Posts"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
+
#: bbp-admin/bbp-settings.php:1377
|
1523 |
+
msgid "Pages"
|
|
|
|
|
1524 |
msgstr ""
|
1525 |
|
1526 |
+
#: bbp-admin/bbp-settings.php:1378
|
1527 |
+
msgid "Revisions"
|
1528 |
msgstr ""
|
1529 |
|
1530 |
+
#: bbp-admin/bbp-settings.php:1379
|
1531 |
+
msgid "Attachments"
|
|
|
|
|
|
|
|
|
|
|
1532 |
msgstr ""
|
1533 |
|
1534 |
+
#: bbp-admin/bbp-settings.php:1380
|
1535 |
+
msgid "Menus"
|
|
|
|
|
1536 |
msgstr ""
|
1537 |
|
1538 |
+
#: bbp-admin/bbp-settings.php:1383
|
1539 |
+
msgid "Tag base"
|
1540 |
msgstr ""
|
1541 |
|
1542 |
+
#: bbp-admin/bbp-settings.php:1386
|
1543 |
+
msgid "Category base"
|
|
|
1544 |
msgstr ""
|
1545 |
|
1546 |
+
#: bbp-admin/bbp-settings.php:1406
|
1547 |
+
msgid "User base"
|
1548 |
msgstr ""
|
1549 |
|
1550 |
+
#: bbp-admin/bbp-settings.php:1409
|
1551 |
+
msgid "View base"
|
1552 |
msgstr ""
|
1553 |
|
1554 |
+
#: bbp-admin/bbp-settings.php:1424
|
1555 |
+
msgid "%s page"
|
1556 |
msgstr ""
|
1557 |
|
1558 |
+
#: bbp-admin/bbp-settings.php:1443
|
1559 |
+
msgid "Possible %1$s conflict: <strong>%2$s</strong>"
|
|
|
1560 |
msgstr ""
|
1561 |
|
1562 |
+
#: bbp-admin/bbp-tools.php:36
|
1563 |
+
msgid ""
|
1564 |
+
"bbPress keeps track of relationships between forums, topics, replies, and "
|
1565 |
+
"topic tags, and users. Occasionally these relationships become out of sync, "
|
1566 |
+
"most often after an import or migration. Use the tools below to manually "
|
1567 |
+
"recalculate these relationships."
|
1568 |
msgstr ""
|
1569 |
|
1570 |
+
#: bbp-admin/bbp-tools.php:37
|
1571 |
+
msgid ""
|
1572 |
+
"Some of these tools create substantial database overhead. Avoid running more "
|
1573 |
+
"than 1 repair job at a time."
|
1574 |
msgstr ""
|
1575 |
|
1576 |
+
#: bbp-admin/bbp-tools.php:43
|
1577 |
+
msgid "Relationships to Repair:"
|
1578 |
+
msgstr ""
|
1579 |
+
|
1580 |
+
#: bbp-admin/bbp-tools.php:46
|
1581 |
+
msgid "Repair"
|
1582 |
+
msgstr ""
|
1583 |
+
|
1584 |
+
#: bbp-admin/bbp-tools.php:61
|
1585 |
+
msgid "Repair Items"
|
1586 |
+
msgstr ""
|
1587 |
+
|
1588 |
+
#: bbp-admin/bbp-tools.php:160
|
1589 |
+
msgid "Recalculate the parent topic for each post"
|
1590 |
+
msgstr ""
|
1591 |
+
|
1592 |
+
#: bbp-admin/bbp-tools.php:161
|
1593 |
+
msgid "Recalculate the parent forum for each post"
|
1594 |
+
msgstr ""
|
1595 |
+
|
1596 |
+
#: bbp-admin/bbp-tools.php:162
|
1597 |
+
msgid "Count topics in each forum"
|
1598 |
+
msgstr ""
|
1599 |
+
|
1600 |
+
#: bbp-admin/bbp-tools.php:163
|
1601 |
+
msgid "Count replies in each forum"
|
1602 |
+
msgstr ""
|
1603 |
+
|
1604 |
+
#: bbp-admin/bbp-tools.php:164
|
1605 |
+
msgid "Count replies in each topic"
|
1606 |
+
msgstr ""
|
1607 |
+
|
1608 |
+
#: bbp-admin/bbp-tools.php:165
|
1609 |
+
msgid "Count voices in each topic"
|
1610 |
msgstr ""
|
1611 |
|
1612 |
+
#: bbp-admin/bbp-tools.php:166
|
1613 |
+
msgid "Count spammed & trashed replies in each topic"
|
1614 |
+
msgstr ""
|
1615 |
+
|
1616 |
+
#: bbp-admin/bbp-tools.php:167
|
1617 |
+
msgid "Count topics for each user"
|
1618 |
+
msgstr ""
|
1619 |
+
|
1620 |
+
#: bbp-admin/bbp-tools.php:168
|
1621 |
+
msgid "Count replies for each user"
|
1622 |
+
msgstr ""
|
1623 |
+
|
1624 |
+
#: bbp-admin/bbp-tools.php:169
|
1625 |
+
msgid "Remove trashed topics from user favorites"
|
1626 |
+
msgstr ""
|
1627 |
+
|
1628 |
+
#: bbp-admin/bbp-tools.php:170
|
1629 |
+
msgid "Remove trashed topics from user subscriptions"
|
1630 |
+
msgstr ""
|
1631 |
+
|
1632 |
+
#: bbp-admin/bbp-tools.php:171
|
1633 |
+
msgid "Recalculate last activity in each topic and forum"
|
1634 |
+
msgstr ""
|
1635 |
+
|
1636 |
+
#: bbp-admin/bbp-tools.php:194
|
1637 |
+
msgid "Counting the number of replies in each topic… %s"
|
1638 |
+
msgstr ""
|
1639 |
+
|
1640 |
+
#: bbp-admin/bbp-tools.php:195 bbp-admin/bbp-tools.php:239
|
1641 |
+
#: bbp-admin/bbp-tools.php:282 bbp-admin/bbp-tools.php:312
|
1642 |
+
#: bbp-admin/bbp-tools.php:347 bbp-admin/bbp-tools.php:380
|
1643 |
+
#: bbp-admin/bbp-tools.php:427 bbp-admin/bbp-tools.php:474
|
1644 |
+
#: bbp-admin/bbp-tools.php:534 bbp-admin/bbp-tools.php:592
|
1645 |
+
#: bbp-admin/bbp-tools.php:699 bbp-admin/bbp-tools.php:754
|
1646 |
+
msgid "Failed!"
|
1647 |
+
msgstr ""
|
1648 |
+
|
1649 |
+
#: bbp-admin/bbp-tools.php:221 bbp-admin/bbp-tools.php:265
|
1650 |
+
#: bbp-admin/bbp-tools.php:292 bbp-admin/bbp-tools.php:327
|
1651 |
+
#: bbp-admin/bbp-tools.php:362 bbp-admin/bbp-tools.php:409
|
1652 |
+
#: bbp-admin/bbp-tools.php:456 bbp-admin/bbp-tools.php:516
|
1653 |
+
#: bbp-admin/bbp-tools.php:575 bbp-admin/bbp-tools.php:682
|
1654 |
+
#: bbp-admin/bbp-tools.php:737 bbp-admin/bbp-tools.php:783
|
1655 |
+
msgid "Complete!"
|
1656 |
+
msgstr ""
|
1657 |
+
|
1658 |
+
#: bbp-admin/bbp-tools.php:238
|
1659 |
+
msgid "Counting the number of voices in each topic… %s"
|
1660 |
+
msgstr ""
|
1661 |
+
|
1662 |
+
#: bbp-admin/bbp-tools.php:281
|
1663 |
msgid ""
|
1664 |
+
"Counting the number of spammed and trashed replies in each topic… %s"
|
|
|
1665 |
msgstr ""
|
1666 |
|
1667 |
+
#: bbp-admin/bbp-tools.php:311
|
1668 |
+
msgid "Counting the number of topics in each forum… %s"
|
1669 |
msgstr ""
|
1670 |
|
1671 |
+
#: bbp-admin/bbp-tools.php:346
|
1672 |
+
msgid "Counting the number of replies in each forum… %s"
|
1673 |
msgstr ""
|
1674 |
|
1675 |
+
#: bbp-admin/bbp-tools.php:379
|
1676 |
+
msgid "Counting the number of topics each user has created… %s"
|
1677 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
1678 |
|
1679 |
+
#: bbp-admin/bbp-tools.php:426
|
1680 |
+
msgid "Counting the number of topics to which each user has replied… %s"
|
1681 |
+
msgstr ""
|
|
|
|
|
1682 |
|
1683 |
+
#: bbp-admin/bbp-tools.php:473
|
1684 |
+
msgid "Removing trashed topics from user favorites… %s"
|
1685 |
+
msgstr ""
|
|
|
|
|
1686 |
|
1687 |
+
#: bbp-admin/bbp-tools.php:500 bbp-admin/bbp-tools.php:559
|
1688 |
+
msgid "Nothing to remove!"
|
1689 |
msgstr ""
|
1690 |
|
1691 |
+
#: bbp-admin/bbp-tools.php:533
|
1692 |
+
msgid "Removing trashed topics from user subscriptions… %s"
|
1693 |
+
msgstr ""
|
|
|
|
|
1694 |
|
1695 |
+
#: bbp-admin/bbp-tools.php:591
|
1696 |
+
msgid "Recomputing latest post in every topic and forum… %s"
|
1697 |
+
msgstr ""
|
|
|
|
|
1698 |
|
1699 |
+
#: bbp-admin/bbp-tools.php:698
|
1700 |
+
msgid "Recalculating the forum for each post … %s"
|
1701 |
+
msgstr ""
|
|
|
|
|
1702 |
|
1703 |
+
#: bbp-admin/bbp-tools.php:753
|
1704 |
+
msgid "Recalculating the topic for each post … %s"
|
1705 |
+
msgstr ""
|
|
|
|
|
1706 |
|
1707 |
+
#: bbp-admin/bbp-tools.php:807
|
1708 |
+
msgid ""
|
1709 |
+
"This will revert your forums back to a brand new installation. This process "
|
1710 |
+
"cannot be undone. <strong>Backup your database before proceeding</strong>."
|
1711 |
msgstr ""
|
1712 |
|
1713 |
+
#: bbp-admin/bbp-tools.php:813
|
1714 |
+
msgid "The following data will be removed:"
|
1715 |
msgstr ""
|
1716 |
|
1717 |
+
#: bbp-admin/bbp-tools.php:815 bbpress.php:478
|
1718 |
+
msgid "All Forums"
|
1719 |
msgstr ""
|
1720 |
|
1721 |
+
#: bbp-admin/bbp-tools.php:816 bbp-includes/bbp-topic-functions.php:3088
|
1722 |
+
#: bbpress.php:535
|
1723 |
+
msgid "All Topics"
|
1724 |
msgstr ""
|
1725 |
|
1726 |
+
#: bbp-admin/bbp-tools.php:817 bbp-includes/bbp-reply-functions.php:1408
|
1727 |
+
#: bbpress.php:592
|
1728 |
+
msgid "All Replies"
|
1729 |
msgstr ""
|
1730 |
|
1731 |
+
#: bbp-admin/bbp-tools.php:818
|
1732 |
+
msgid "All Topic Tags"
|
1733 |
msgstr ""
|
1734 |
|
1735 |
+
#: bbp-admin/bbp-tools.php:819
|
1736 |
+
msgid "Related Meta Data"
|
|
|
1737 |
msgstr ""
|
1738 |
|
1739 |
+
#: bbp-admin/bbp-tools.php:820
|
1740 |
+
msgid "Forum Settings"
|
1741 |
msgstr ""
|
1742 |
|
1743 |
+
#: bbp-admin/bbp-tools.php:821
|
1744 |
+
msgid "Forum Activity"
|
1745 |
msgstr ""
|
1746 |
|
1747 |
+
#: bbp-admin/bbp-tools.php:822
|
1748 |
+
msgid "Forum User Roles"
|
1749 |
msgstr ""
|
1750 |
|
1751 |
+
#: bbp-admin/bbp-tools.php:823
|
1752 |
+
msgid "Importer Helper Data"
|
1753 |
msgstr ""
|
1754 |
|
1755 |
+
#: bbp-admin/bbp-tools.php:827
|
1756 |
+
msgid "Are you sure you want to do this?"
|
1757 |
msgstr ""
|
1758 |
|
1759 |
+
#: bbp-admin/bbp-tools.php:830
|
1760 |
+
msgid "Say it ain't so!"
|
1761 |
msgstr ""
|
1762 |
|
1763 |
+
#: bbp-admin/bbp-tools.php:831
|
1764 |
+
msgid "This process cannot be undone."
|
1765 |
msgstr ""
|
1766 |
|
1767 |
+
#: bbp-admin/bbp-tools.php:839
|
1768 |
+
msgid "Reset bbPress"
|
1769 |
msgstr ""
|
1770 |
|
1771 |
+
#: bbp-admin/bbp-tools.php:864
|
1772 |
+
msgid "Failed"
|
1773 |
msgstr ""
|
1774 |
|
1775 |
+
#: bbp-admin/bbp-tools.php:865
|
1776 |
+
msgid "Success!"
|
1777 |
msgstr ""
|
1778 |
|
1779 |
+
#: bbp-admin/bbp-tools.php:872
|
1780 |
+
msgid "Deleting Posts… %s"
|
1781 |
msgstr ""
|
1782 |
|
1783 |
+
#: bbp-admin/bbp-tools.php:885
|
1784 |
+
msgid "Deleting Post Meta… %s"
|
|
|
|
|
1785 |
msgstr ""
|
1786 |
|
1787 |
+
#: bbp-admin/bbp-tools.php:898
|
1788 |
+
msgid "Deleting User Meta… %s"
|
|
|
|
|
1789 |
msgstr ""
|
1790 |
|
1791 |
+
#: bbp-admin/bbp-tools.php:905
|
1792 |
+
msgid "Deleting Conversion Table… %s"
|
|
|
1793 |
msgstr ""
|
1794 |
|
1795 |
+
#: bbp-admin/bbp-tools.php:917
|
1796 |
+
msgid "Deleting Settings… %s"
|
1797 |
msgstr ""
|
1798 |
|
1799 |
+
#: bbp-admin/bbp-tools.php:923
|
1800 |
+
msgid "Deleting Roles and Capabilities… %s"
|
|
|
|
|
|
|
|
|
|
|
1801 |
msgstr ""
|
1802 |
|
1803 |
+
#: bbp-admin/bbp-topics.php:143
|
1804 |
msgid ""
|
1805 |
+
"You can filter the list of replies by topic status using the text links in "
|
1806 |
+
"the upper left to show All, Published, Draft, or Trashed replies. The "
|
1807 |
+
"default view is to show all replies."
|
1808 |
msgstr ""
|
1809 |
|
1810 |
+
#: bbp-admin/bbp-topics.php:145
|
1811 |
msgid ""
|
1812 |
+
"You can refine the list to show only replies in a specific category or from "
|
1813 |
+
"a specific month by using the dropdown menus above the replies list. Click "
|
1814 |
+
"the Filter button after making your selection. You also can refine the list "
|
1815 |
+
"by clicking on the topic author, category or tag in the replies list."
|
|
|
|
|
|
|
1816 |
msgstr ""
|
1817 |
|
1818 |
+
#: bbp-admin/bbp-topics.php:154
|
1819 |
msgid ""
|
1820 |
+
"Hovering over a row in the replies list will display action links that allow "
|
1821 |
+
"you to manage your topic. You can perform the following actions:"
|
|
|
1822 |
msgstr ""
|
1823 |
|
1824 |
+
#: bbp-admin/bbp-topics.php:156
|
1825 |
msgid ""
|
1826 |
+
"<strong>Edit</strong> takes you to the editing screen for that topic. You "
|
1827 |
+
"can also reach that screen by clicking on the topic title."
|
|
|
|
|
|
|
|
|
|
|
1828 |
msgstr ""
|
1829 |
|
1830 |
+
#: bbp-admin/bbp-topics.php:158
|
1831 |
msgid ""
|
1832 |
+
"<strong>Trash</strong> removes your topic from this list and places it in "
|
1833 |
+
"the trash, from which you can permanently delete it."
|
|
|
1834 |
msgstr ""
|
1835 |
|
1836 |
+
#: bbp-admin/bbp-topics.php:159
|
1837 |
+
msgid ""
|
1838 |
+
"<strong>Spam</strong> removes your topic from this list and places it in the "
|
1839 |
+
"spam queue, from which you can permanently delete it."
|
1840 |
msgstr ""
|
1841 |
|
1842 |
+
#: bbp-admin/bbp-topics.php:160
|
1843 |
msgid ""
|
1844 |
+
"<strong>Preview</strong> will show you what your draft topic will look like "
|
1845 |
+
"if you publish it. View will take you to your live site to view the topic. "
|
1846 |
+
"Which link is available depends on your topic’s status."
|
1847 |
msgstr ""
|
1848 |
|
1849 |
+
#: bbp-admin/bbp-topics.php:170
|
1850 |
msgid ""
|
1851 |
+
"When using Bulk Edit, you can change the metadata (categories, author, etc.) "
|
1852 |
+
"for all selected replies at once. To remove a topic from the grouping, just "
|
1853 |
+
"click the x next to its name in the Bulk Edit area that appears."
|
1854 |
msgstr ""
|
1855 |
|
1856 |
+
#: bbp-admin/bbp-topics.php:200
|
1857 |
msgid ""
|
1858 |
+
"The title field and the big topic editing Area are fixed in place, but you "
|
1859 |
+
"can reposition all the other boxes using drag and drop, and can minimize or "
|
1860 |
+
"expand them by clicking the title bar of each box. Use the Screen Options "
|
1861 |
+
"tab to unhide more boxes (Excerpt, Send Trackbacks, Custom Fields, "
|
1862 |
+
"Discussion, Slug, Author) or to choose a 1- or 2-column layout for this "
|
1863 |
+
"screen."
|
1864 |
msgstr ""
|
1865 |
|
1866 |
+
#: bbp-admin/bbp-topics.php:210
|
1867 |
+
msgid "Title and Topic Editor"
|
1868 |
+
msgstr ""
|
1869 |
+
|
1870 |
+
#: bbp-admin/bbp-topics.php:212
|
1871 |
msgid ""
|
1872 |
+
"<strong>Title</strong> - Enter a title for your topic. After you enter a "
|
1873 |
+
"title, you’ll see the permalink below, which you can edit."
|
|
|
1874 |
msgstr ""
|
1875 |
|
1876 |
+
#: bbp-admin/bbp-topics.php:213
|
1877 |
msgid ""
|
1878 |
+
"<strong>Topic Editor</strong> - Enter the text for your topic. There are two "
|
1879 |
+
"modes of editing: Visual and HTML. Choose the mode by clicking on the "
|
1880 |
+
"appropriate tab. Visual mode gives you a WYSIWYG editor. Click the last icon "
|
1881 |
+
"in the row to get a second row of controls. The HTML mode allows you to "
|
1882 |
+
"enter raw HTML along with your topic text. You can insert media files by "
|
1883 |
+
"clicking the icons above the topic editor and following the directions. You "
|
1884 |
+
"can go to the distraction-free writing screen via the Fullscreen icon in "
|
1885 |
+
"Visual mode (second to last in the top row) or the Fullscreen button in HTML "
|
1886 |
+
"mode (last in the row). Once there, you can make buttons visible by hovering "
|
1887 |
+
"over the top area. Exit Fullscreen back to the regular topic editor."
|
1888 |
msgstr ""
|
1889 |
|
1890 |
+
#: bbp-admin/bbp-topics.php:216
|
1891 |
msgid ""
|
1892 |
+
"<strong>Publish</strong> - You can set the terms of publishing your topic in "
|
1893 |
+
"the Publish box. For Status, Visibility, and Publish (immediately), click on "
|
1894 |
+
"the Edit link to reveal more options. Visibility includes options for "
|
1895 |
+
"password-protecting a topic or making it stay at the top of your blog "
|
1896 |
+
"indefinitely (sticky). Publish (immediately) allows you to set a future or "
|
1897 |
+
"past date and time, so you can schedule a topic to be published in the "
|
1898 |
+
"future or backdate a topic."
|
1899 |
msgstr ""
|
1900 |
|
1901 |
+
#: bbp-admin/bbp-topics.php:219
|
1902 |
msgid ""
|
1903 |
+
"<strong>topic Format</strong> - This designates how your theme will display "
|
1904 |
+
"a specific topic. For example, you could have a <em>standard</em> blog topic "
|
1905 |
+
"with a title and paragraphs, or a short <em>aside</em> that omits the title "
|
1906 |
+
"and contains a short text blurb. Please refer to the Codex for <a href="
|
1907 |
+
"\"http://codex.wordpress.org/Post_Formats#Supported_Formats\">descriptions "
|
1908 |
+
"of each topic format</a>. Your theme could enable all or some of 10 possible "
|
1909 |
+
"formats."
|
1910 |
msgstr ""
|
1911 |
|
1912 |
+
#: bbp-admin/bbp-topics.php:223
|
1913 |
msgid ""
|
1914 |
+
"<strong>Featured Image</strong> - This allows you to associate an image with "
|
1915 |
+
"your topic without inserting it. This is usually useful only if your theme "
|
1916 |
+
"makes use of the featured image as a topic thumbnail on the home page, a "
|
1917 |
+
"custom header, etc."
|
1918 |
+
msgstr ""
|
1919 |
+
|
1920 |
+
#: bbp-admin/bbp-topics.php:228 bbp-admin/bbp-topics.php:270
|
1921 |
+
msgid "Topic Attributes"
|
1922 |
msgstr ""
|
1923 |
|
1924 |
+
#: bbp-admin/bbp-topics.php:230
|
1925 |
+
msgid "Select the attributes that your topic should have:"
|
1926 |
msgstr ""
|
1927 |
|
1928 |
+
#: bbp-admin/bbp-topics.php:232
|
1929 |
msgid ""
|
1930 |
+
"<strong>Forum</strong> dropdown determines the parent forum that the topic "
|
1931 |
+
"belongs to. Select the forum or category from the dropdown, or leave the "
|
1932 |
+
"default (No Forum) to post the topic without an assigned forum."
|
1933 |
msgstr ""
|
1934 |
|
1935 |
+
#: bbp-admin/bbp-topics.php:233
|
1936 |
msgid ""
|
1937 |
+
"<strong>Topic Type</strong> dropdown indicates the sticky status of the "
|
1938 |
+
"topic. Selecting the super sticky option would stick the topic to the front "
|
1939 |
+
"of your forums, i.e. the topic index, sticky option would stick the topic to "
|
1940 |
+
"its respective forum. Selecting normal would not stick the topic anywhere."
|
|
|
1941 |
msgstr ""
|
1942 |
|
1943 |
+
#: bbp-admin/bbp-topics.php:248
|
1944 |
msgid ""
|
1945 |
+
"<strong>Discussion</strong> - You can turn comments and pings on or off, and "
|
1946 |
+
"if there are comments on the topic, you can see them here and moderate them."
|
1947 |
msgstr ""
|
1948 |
|
1949 |
+
#: bbp-admin/bbp-topics.php:535
|
1950 |
+
msgid "The topic was not found!"
|
1951 |
msgstr ""
|
1952 |
|
1953 |
+
#: bbp-admin/bbp-topics.php:623
|
1954 |
+
msgid "There was a problem opening the topic \"%1$s\"."
|
1955 |
msgstr ""
|
1956 |
|
1957 |
+
#: bbp-admin/bbp-topics.php:623
|
1958 |
+
msgid "Topic \"%1$s\" successfully opened."
|
1959 |
msgstr ""
|
1960 |
|
1961 |
+
#: bbp-admin/bbp-topics.php:627
|
1962 |
+
msgid "There was a problem closing the topic \"%1$s\"."
|
1963 |
msgstr ""
|
1964 |
|
1965 |
+
#: bbp-admin/bbp-topics.php:627
|
1966 |
+
msgid "Topic \"%1$s\" successfully closed."
|
1967 |
msgstr ""
|
1968 |
|
1969 |
+
#: bbp-admin/bbp-topics.php:631
|
1970 |
+
msgid "There was a problem sticking the topic \"%1$s\" to front."
|
1971 |
msgstr ""
|
1972 |
|
1973 |
+
#: bbp-admin/bbp-topics.php:631
|
1974 |
+
msgid "Topic \"%1$s\" successfully sticked to front."
|
1975 |
msgstr ""
|
1976 |
|
1977 |
+
#: bbp-admin/bbp-topics.php:635
|
1978 |
+
msgid "There was a problem sticking the topic \"%1$s\"."
|
1979 |
msgstr ""
|
1980 |
|
1981 |
+
#: bbp-admin/bbp-topics.php:635
|
1982 |
+
msgid "Topic \"%1$s\" successfully sticked."
|
1983 |
msgstr ""
|
1984 |
|
1985 |
+
#: bbp-admin/bbp-topics.php:639
|
1986 |
+
msgid "There was a problem unsticking the topic \"%1$s\"."
|
1987 |
msgstr ""
|
1988 |
|
1989 |
+
#: bbp-admin/bbp-topics.php:639
|
1990 |
+
msgid "Topic \"%1$s\" successfully unsticked."
|
1991 |
msgstr ""
|
1992 |
|
1993 |
+
#: bbp-admin/bbp-topics.php:643
|
1994 |
+
msgid "There was a problem marking the topic \"%1$s\" as spam."
|
1995 |
msgstr ""
|
1996 |
|
1997 |
+
#: bbp-admin/bbp-topics.php:643
|
1998 |
+
msgid "Topic \"%1$s\" successfully marked as spam."
|
1999 |
+
msgstr ""
|
2000 |
+
|
2001 |
+
#: bbp-admin/bbp-topics.php:647
|
2002 |
+
msgid "There was a problem unmarking the topic \"%1$s\" as spam."
|
2003 |
+
msgstr ""
|
2004 |
+
|
2005 |
+
#: bbp-admin/bbp-topics.php:647
|
2006 |
+
msgid "Topic \"%1$s\" successfully unmarked as spam."
|
2007 |
+
msgstr ""
|
2008 |
+
|
2009 |
+
#: bbp-admin/bbp-topics.php:680 bbp-theme-compat/bbpress/loop-topics.php:20
|
2010 |
+
#: bbp-themes/bbp-twentyten/bbpress/loop-topics.php:18
|
2011 |
+
msgid "Voices"
|
2012 |
+
msgstr ""
|
2013 |
+
|
2014 |
+
#: bbp-admin/bbp-topics.php:773 bbp-includes/bbp-topic-template.php:1761
|
2015 |
+
msgid "No Replies"
|
2016 |
+
msgstr ""
|
2017 |
+
|
2018 |
+
#: bbp-admin/bbp-topics.php:829
|
2019 |
+
msgid "Close this topic"
|
2020 |
+
msgstr ""
|
2021 |
+
|
2022 |
+
#: bbp-admin/bbp-topics.php:829
|
2023 |
+
msgctxt "Close a Topic"
|
2024 |
+
msgid "Close"
|
2025 |
+
msgstr ""
|
2026 |
+
|
2027 |
+
#: bbp-admin/bbp-topics.php:831
|
2028 |
+
msgid "Open this topic"
|
2029 |
+
msgstr ""
|
2030 |
+
|
2031 |
+
#: bbp-admin/bbp-topics.php:831
|
2032 |
+
msgctxt "Open a Topic"
|
2033 |
+
msgid "Open"
|
2034 |
+
msgstr ""
|
2035 |
+
|
2036 |
+
#: bbp-admin/bbp-topics.php:840
|
2037 |
+
msgid "Unstick this topic"
|
2038 |
+
msgstr ""
|
2039 |
+
|
2040 |
+
#: bbp-admin/bbp-topics.php:840 bbp-includes/bbp-topic-template.php:2433
|
2041 |
+
msgid "Unstick"
|
2042 |
+
msgstr ""
|
2043 |
+
|
2044 |
+
#: bbp-admin/bbp-topics.php:843
|
2045 |
+
msgid "Stick this topic to its forum"
|
2046 |
+
msgstr ""
|
2047 |
+
|
2048 |
+
#: bbp-admin/bbp-topics.php:843 bbp-includes/bbp-topic-template.php:2432
|
2049 |
+
msgid "Stick"
|
2050 |
+
msgstr ""
|
2051 |
+
|
2052 |
+
#: bbp-admin/bbp-topics.php:843
|
2053 |
+
msgid "Stick this topic to front"
|
2054 |
+
msgstr ""
|
2055 |
+
|
2056 |
+
#: bbp-admin/bbp-topics.php:843 bbp-includes/bbp-topic-template.php:2434
|
2057 |
+
msgid "to front"
|
2058 |
+
msgstr ""
|
2059 |
+
|
2060 |
+
#: bbp-admin/bbp-topics.php:850
|
2061 |
+
msgid "Mark the topic as not spam"
|
2062 |
+
msgstr ""
|
2063 |
+
|
2064 |
+
#: bbp-admin/bbp-topics.php:852
|
2065 |
+
msgid "Mark this topic as spam"
|
2066 |
+
msgstr ""
|
2067 |
+
|
2068 |
+
#: bbp-admin/bbp-topics.php:990
|
2069 |
+
msgid "Topic updated. <a href=\"%s\">View topic</a>"
|
2070 |
+
msgstr ""
|
2071 |
+
|
2072 |
+
#: bbp-admin/bbp-topics.php:999
|
2073 |
+
msgid "Topic updated."
|
2074 |
msgstr ""
|
2075 |
|
2076 |
#. translators: %s: date and time of the revision
|
2077 |
+
#: bbp-admin/bbp-topics.php:1004
|
2078 |
+
msgid "Topic restored to revision from %s"
|
2079 |
msgstr ""
|
2080 |
|
2081 |
+
#: bbp-admin/bbp-topics.php:1008
|
2082 |
+
msgid "Topic created. <a href=\"%s\">View topic</a>"
|
2083 |
msgstr ""
|
2084 |
|
2085 |
+
#: bbp-admin/bbp-topics.php:1011
|
2086 |
+
msgid "Topic saved."
|
2087 |
msgstr ""
|
2088 |
|
2089 |
+
#: bbp-admin/bbp-topics.php:1014
|
2090 |
+
msgid "Topic submitted. <a target=\"_blank\" href=\"%s\">Preview topic</a>"
|
2091 |
msgstr ""
|
2092 |
|
2093 |
+
#: bbp-admin/bbp-topics.php:1017
|
2094 |
msgid ""
|
2095 |
+
"Topic scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
|
2096 |
"\">Preview topic</a>"
|
2097 |
msgstr ""
|
2098 |
|
2099 |
+
#: bbp-admin/bbp-topics.php:1024
|
2100 |
+
msgid "Topic draft updated. <a target=\"_blank\" href=\"%s\">Preview topic</a>"
|
2101 |
+
msgstr ""
|
2102 |
+
|
2103 |
+
#: bbp-admin/converters/bbPress1.php:540
|
2104 |
+
msgid "Re: "
|
2105 |
+
msgstr ""
|
2106 |
+
|
2107 |
+
#: bbp-includes/bbp-common-functions.php:110
|
2108 |
+
msgid "sometime"
|
2109 |
+
msgstr ""
|
2110 |
+
|
2111 |
+
#: bbp-includes/bbp-common-functions.php:111
|
2112 |
+
msgid "right now"
|
2113 |
+
msgstr ""
|
2114 |
+
|
2115 |
+
#: bbp-includes/bbp-common-functions.php:112
|
2116 |
+
msgid "%s ago"
|
2117 |
+
msgstr ""
|
2118 |
+
|
2119 |
+
#: bbp-includes/bbp-common-functions.php:116
|
2120 |
+
msgid "year"
|
2121 |
+
msgstr ""
|
2122 |
+
|
2123 |
+
#: bbp-includes/bbp-common-functions.php:116
|
2124 |
+
msgid "years"
|
2125 |
+
msgstr ""
|
2126 |
+
|
2127 |
+
#: bbp-includes/bbp-common-functions.php:117
|
2128 |
+
msgid "month"
|
2129 |
+
msgstr ""
|
2130 |
+
|
2131 |
+
#: bbp-includes/bbp-common-functions.php:117
|
2132 |
+
msgid "months"
|
2133 |
+
msgstr ""
|
2134 |
+
|
2135 |
+
#: bbp-includes/bbp-common-functions.php:118
|
2136 |
+
msgid "week"
|
2137 |
+
msgstr ""
|
2138 |
+
|
2139 |
+
#: bbp-includes/bbp-common-functions.php:118
|
2140 |
+
msgid "weeks"
|
2141 |
+
msgstr ""
|
2142 |
+
|
2143 |
+
#: bbp-includes/bbp-common-functions.php:119
|
2144 |
+
msgid "day"
|
2145 |
+
msgstr ""
|
2146 |
+
|
2147 |
+
#: bbp-includes/bbp-common-functions.php:119
|
2148 |
+
msgid "days"
|
2149 |
msgstr ""
|
2150 |
|
2151 |
+
#: bbp-includes/bbp-common-functions.php:120
|
2152 |
+
msgid "hour"
|
2153 |
+
msgstr ""
|
2154 |
+
|
2155 |
+
#: bbp-includes/bbp-common-functions.php:120
|
2156 |
+
msgid "hours"
|
2157 |
+
msgstr ""
|
2158 |
+
|
2159 |
+
#: bbp-includes/bbp-common-functions.php:121
|
2160 |
+
msgid "minute"
|
2161 |
+
msgstr ""
|
2162 |
+
|
2163 |
+
#: bbp-includes/bbp-common-functions.php:122
|
2164 |
+
msgid "second"
|
2165 |
+
msgstr ""
|
2166 |
+
|
2167 |
+
#: bbp-includes/bbp-common-functions.php:177
|
2168 |
+
msgctxt "Separator in time since"
|
2169 |
+
msgid ","
|
2170 |
+
msgstr ""
|
2171 |
+
|
2172 |
+
#: bbp-includes/bbp-common-functions.php:493
|
2173 |
+
#: bbp-includes/bbp-common-functions.php:525
|
2174 |
+
msgid "Private: %s"
|
2175 |
+
msgstr ""
|
2176 |
+
|
2177 |
+
#: bbp-includes/bbp-common-functions.php:494
|
2178 |
+
#: bbp-includes/bbp-common-functions.php:526
|
2179 |
+
msgid "Spammed: %s"
|
2180 |
+
msgstr ""
|
2181 |
+
|
2182 |
+
#: bbp-includes/bbp-common-functions.php:495
|
2183 |
+
#: bbp-includes/bbp-common-functions.php:527
|
2184 |
+
msgid "Trashed: %s"
|
2185 |
+
msgstr ""
|
2186 |
+
|
2187 |
+
#: bbp-includes/bbp-common-functions.php:602
|
2188 |
+
msgid "<strong>ERROR</strong>: Invalid author name submitted!"
|
2189 |
+
msgstr ""
|
2190 |
+
|
2191 |
+
#: bbp-includes/bbp-common-functions.php:606
|
2192 |
+
msgid "<strong>ERROR</strong>: Invalid email address submitted!"
|
2193 |
+
msgstr ""
|
2194 |
+
|
2195 |
+
#: bbp-includes/bbp-common-functions.php:1029
|
2196 |
+
msgid ""
|
2197 |
+
"%1$s wrote:\n"
|
2198 |
+
"\n"
|
2199 |
+
"%2$s\n"
|
2200 |
+
"\t\t\t\n"
|
2201 |
+
"Post Link: %3$s\n"
|
2202 |
+
"\n"
|
2203 |
+
"-----------\n"
|
2204 |
+
"\n"
|
2205 |
+
"You are recieving this email because you subscribed to a forum topic.\n"
|
2206 |
+
"\n"
|
2207 |
+
"Login and visit the topic to unsubscribe from these emails."
|
2208 |
+
msgstr ""
|
2209 |
+
|
2210 |
+
#: bbp-includes/bbp-common-functions.php:1628
|
2211 |
+
msgid ""
|
2212 |
+
"Conditional query tags do not work before the query is run. Before then, "
|
2213 |
+
"they always return false."
|
2214 |
+
msgstr ""
|
2215 |
+
|
2216 |
+
#: bbp-includes/bbp-common-template.php:1217
|
2217 |
msgid "No topics available"
|
2218 |
msgstr ""
|
2219 |
|
2220 |
+
#: bbp-includes/bbp-common-template.php:1222
|
2221 |
msgid "No forums available"
|
2222 |
msgstr ""
|
2223 |
|
2224 |
+
#: bbp-includes/bbp-common-template.php:1227
|
2225 |
msgid "None available"
|
2226 |
msgstr ""
|
2227 |
|
2228 |
+
#: bbp-includes/bbp-common-template.php:1344
|
2229 |
+
#: bbp-includes/bbp-common-template.php:1355
|
2230 |
+
#: bbp-includes/bbp-topic-functions.php:1180
|
2231 |
+
#: bbp-includes/bbp-topic-functions.php:1500
|
2232 |
+
#: bbp-theme-compat/bbpress/form-reply.php:29
|
2233 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-reply.php:29
|
2234 |
+
msgid "Reply To: %s"
|
2235 |
+
msgstr ""
|
2236 |
+
|
2237 |
+
#: bbp-includes/bbp-common-template.php:1771
|
2238 |
msgid "Home"
|
2239 |
msgstr ""
|
2240 |
|
2241 |
+
#: bbp-includes/bbp-common-template.php:1834
|
2242 |
+
#: bbp-theme-compat/bbpress/user-details.php:20
|
2243 |
+
#: bbp-themes/bbp-twentyten/bbpress/user-details.php:20
|
2244 |
+
msgid "(Edit)"
|
2245 |
+
msgstr ""
|
2246 |
+
|
2247 |
+
#: bbp-includes/bbp-common-template.php:1838
|
2248 |
+
#: bbp-includes/bbp-common-template.php:1938
|
2249 |
+
#: bbp-includes/bbp-common-template.php:2155
|
2250 |
+
#: bbp-includes/bbp-theme-compatibility.php:543
|
2251 |
+
#: bbp-includes/bbp-theme-compatibility.php:553
|
2252 |
+
#: bbp-theme-compat/extras/taxonomy-topic-tag-edit.php:17
|
2253 |
+
#: bbp-theme-compat/extras/taxonomy-topic-tag.php:17
|
2254 |
+
#: bbp-themes/bbp-twentyten/taxonomy-topic-tag-edit.php:18
|
2255 |
+
#: bbp-themes/bbp-twentyten/taxonomy-topic-tag.php:18
|
2256 |
+
msgid "Topic Tag: %s"
|
2257 |
+
msgstr ""
|
2258 |
+
|
2259 |
+
#: bbp-includes/bbp-common-template.php:1842
|
2260 |
+
#: bbp-includes/bbp-reply-template.php:1466
|
2261 |
+
#: bbp-includes/bbp-topic-template.php:2181 bbpress.php:481 bbpress.php:538
|
2262 |
+
#: bbpress.php:595
|
2263 |
+
msgid "Edit"
|
2264 |
+
msgstr ""
|
2265 |
+
|
2266 |
+
#: bbp-includes/bbp-common-template.php:1857
|
2267 |
+
msgid "›"
|
2268 |
+
msgstr ""
|
2269 |
+
|
2270 |
+
#: bbp-includes/bbp-common-template.php:2089
|
2271 |
+
msgid "Log Out"
|
2272 |
+
msgstr ""
|
2273 |
+
|
2274 |
+
#: bbp-includes/bbp-common-template.php:2142
|
2275 |
+
msgid "Forum: %s"
|
2276 |
+
msgstr ""
|
2277 |
+
|
2278 |
+
#: bbp-includes/bbp-common-template.php:2146
|
2279 |
+
msgid "Topic: %s"
|
2280 |
+
msgstr ""
|
2281 |
+
|
2282 |
+
#: bbp-includes/bbp-common-template.php:2164
|
2283 |
+
msgid "Your Profile"
|
2284 |
+
msgstr ""
|
2285 |
+
|
2286 |
+
#: bbp-includes/bbp-common-template.php:2169
|
2287 |
+
msgid "%s's Profile"
|
2288 |
+
msgstr ""
|
2289 |
+
|
2290 |
+
#: bbp-includes/bbp-common-template.php:2177
|
2291 |
+
msgid "Edit Your Profile"
|
2292 |
+
msgstr ""
|
2293 |
+
|
2294 |
+
#: bbp-includes/bbp-common-template.php:2182
|
2295 |
+
msgid "Edit %s's Profile"
|
2296 |
+
msgstr ""
|
2297 |
+
|
2298 |
+
#: bbp-includes/bbp-common-template.php:2189
|
2299 |
+
msgid "View: %s"
|
2300 |
+
msgstr ""
|
2301 |
+
|
2302 |
+
#: bbp-includes/bbp-core-update.php:165
|
2303 |
+
msgid "General"
|
2304 |
+
msgstr ""
|
2305 |
+
|
2306 |
+
#: bbp-includes/bbp-core-update.php:166
|
2307 |
+
msgid "General chit-chat"
|
2308 |
+
msgstr ""
|
2309 |
+
|
2310 |
+
#: bbp-includes/bbp-core-update.php:167
|
2311 |
+
msgid "Hello World!"
|
2312 |
+
msgstr ""
|
2313 |
+
|
2314 |
+
#: bbp-includes/bbp-core-update.php:168
|
2315 |
+
msgid "I am the first topic in your new forums."
|
2316 |
+
msgstr ""
|
2317 |
+
|
2318 |
+
#: bbp-includes/bbp-core-update.php:169
|
2319 |
+
msgid "Re: Hello World!"
|
2320 |
+
msgstr ""
|
2321 |
+
|
2322 |
+
#: bbp-includes/bbp-core-update.php:170
|
2323 |
+
msgid "Oh, and this is what a reply looks like."
|
2324 |
+
msgstr ""
|
2325 |
+
|
2326 |
+
#: bbp-includes/bbp-core-widgets.php:39
|
2327 |
+
msgid ""
|
2328 |
+
"A simple login form with optional links to sign-up and lost password pages."
|
2329 |
+
msgstr ""
|
2330 |
+
|
2331 |
+
#: bbp-includes/bbp-core-widgets.php:42
|
2332 |
+
msgid "(bbPress) Login Widget"
|
2333 |
msgstr ""
|
2334 |
|
2335 |
+
#: bbp-includes/bbp-core-widgets.php:82 bbp-includes/bbp-core-widgets.php:103
|
2336 |
+
#: bbp-theme-compat/bbpress/form-user-login.php:14
|
2337 |
+
#: bbp-theme-compat/bbpress/form-user-login.php:35
|
2338 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-login.php:14
|
2339 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-login.php:35
|
2340 |
+
msgid "Log In"
|
|
|
|
|
2341 |
msgstr ""
|
2342 |
|
2343 |
+
#: bbp-includes/bbp-core-widgets.php:85
|
2344 |
+
#: bbp-theme-compat/bbpress/form-user-edit.php:99
|
2345 |
+
#: bbp-theme-compat/bbpress/form-user-login.php:17
|
2346 |
+
#: bbp-theme-compat/bbpress/form-user-register.php:23
|
2347 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:99
|
2348 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-login.php:17
|
2349 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-register.php:23
|
2350 |
+
msgid "Username"
|
2351 |
msgstr ""
|
2352 |
|
2353 |
+
#: bbp-includes/bbp-core-widgets.php:90
|
2354 |
+
#: bbp-theme-compat/bbpress/form-user-login.php:22
|
2355 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-login.php:22
|
2356 |
+
msgid "Password"
|
2357 |
msgstr ""
|
2358 |
|
2359 |
+
#: bbp-includes/bbp-core-widgets.php:96
|
2360 |
+
msgid "Remember Me"
|
2361 |
msgstr ""
|
2362 |
|
2363 |
+
#: bbp-includes/bbp-core-widgets.php:115
|
2364 |
+
#: bbp-theme-compat/bbpress/form-user-register.php:36
|
2365 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-register.php:36
|
2366 |
+
msgid "Register"
|
2367 |
msgstr ""
|
2368 |
|
2369 |
+
#: bbp-includes/bbp-core-widgets.php:121
|
2370 |
+
#: bbp-theme-compat/bbpress/form-user-lost-pass.php:14
|
2371 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-lost-pass.php:14
|
2372 |
+
msgid "Lost Password"
|
2373 |
msgstr ""
|
2374 |
|
2375 |
+
#: bbp-includes/bbp-core-widgets.php:182 bbp-includes/bbp-core-widgets.php:308
|
2376 |
+
#: bbp-includes/bbp-core-widgets.php:450 bbp-includes/bbp-core-widgets.php:651
|
2377 |
+
#: bbp-includes/bbp-core-widgets.php:814
|
2378 |
+
msgid "Title:"
|
2379 |
msgstr ""
|
2380 |
|
2381 |
+
#: bbp-includes/bbp-core-widgets.php:187
|
2382 |
+
msgid "Register URI:"
|
2383 |
msgstr ""
|
2384 |
|
2385 |
+
#: bbp-includes/bbp-core-widgets.php:192
|
2386 |
+
msgid "Lost Password URI:"
|
2387 |
msgstr ""
|
2388 |
|
2389 |
+
#: bbp-includes/bbp-core-widgets.php:224
|
2390 |
+
msgid "A list of registered optional topic views."
|
2391 |
msgstr ""
|
2392 |
|
2393 |
+
#: bbp-includes/bbp-core-widgets.php:227
|
2394 |
+
msgid "(bbPress) Topic Views List"
|
2395 |
msgstr ""
|
2396 |
|
2397 |
+
#: bbp-includes/bbp-core-widgets.php:341
|
2398 |
+
msgid "A list of forums with an option to set the parent."
|
2399 |
msgstr ""
|
2400 |
|
2401 |
+
#: bbp-includes/bbp-core-widgets.php:344
|
2402 |
+
msgid "(bbPress) Forums List"
|
2403 |
msgstr ""
|
2404 |
|
2405 |
+
#: bbp-includes/bbp-core-widgets.php:456
|
2406 |
+
msgid "Parent Forum ID:"
|
2407 |
msgstr ""
|
2408 |
|
2409 |
+
#: bbp-includes/bbp-core-widgets.php:462
|
2410 |
+
msgid "\"0\" to show only root - \"any\" to show all"
|
|
|
2411 |
msgstr ""
|
2412 |
|
2413 |
+
#: bbp-includes/bbp-core-widgets.php:493
|
2414 |
+
msgid "A list of recent topics, sorted by popularity or freshness."
|
2415 |
msgstr ""
|
2416 |
|
2417 |
+
#: bbp-includes/bbp-core-widgets.php:496
|
2418 |
+
msgid "(bbPress) Recent Topics"
|
2419 |
msgstr ""
|
2420 |
|
2421 |
+
#: bbp-includes/bbp-core-widgets.php:652
|
2422 |
+
msgid "Maximum topics to show:"
|
|
|
2423 |
msgstr ""
|
2424 |
|
2425 |
+
#: bbp-includes/bbp-core-widgets.php:653 bbp-includes/bbp-core-widgets.php:816
|
2426 |
+
msgid "Show post date:"
|
2427 |
msgstr ""
|
2428 |
|
2429 |
+
#: bbp-includes/bbp-core-widgets.php:655
|
2430 |
+
msgid "Popularity check:"
|
|
|
2431 |
msgstr ""
|
2432 |
|
2433 |
+
#: bbp-includes/bbp-core-widgets.php:656
|
2434 |
+
msgid ""
|
2435 |
+
"Number of topics back to check reply count to determine popularity. A number "
|
2436 |
+
"less than the maximum number of topics to show disables the check."
|
2437 |
msgstr ""
|
2438 |
|
2439 |
+
#: bbp-includes/bbp-core-widgets.php:687
|
2440 |
+
msgid "A list of the most recent replies."
|
2441 |
msgstr ""
|
2442 |
|
2443 |
+
#: bbp-includes/bbp-core-widgets.php:690
|
2444 |
+
msgid "(bbPress) Recent Replies"
|
2445 |
msgstr ""
|
2446 |
|
2447 |
+
#. translators: bbpress replies widget: 1: reply author, 2: reply link, 3:
|
2448 |
+
#. reply date, 4: reply time
|
2449 |
+
#: bbp-includes/bbp-core-widgets.php:763
|
2450 |
+
msgctxt "widgets"
|
2451 |
+
msgid "%1$s on %2$s, %3$s, %4$s"
|
2452 |
msgstr ""
|
2453 |
|
2454 |
+
#: bbp-includes/bbp-core-widgets.php:765
|
2455 |
+
msgctxt "widgets"
|
2456 |
+
msgid "%1$s on %2$s"
|
2457 |
msgstr ""
|
2458 |
|
2459 |
+
#: bbp-includes/bbp-core-widgets.php:815
|
2460 |
+
msgid "Maximum replies to show:"
|
2461 |
msgstr ""
|
2462 |
|
2463 |
+
#: bbp-includes/bbp-extend-akismet.php:302
|
2464 |
+
msgid "%1$s reported this %2$s as spam"
|
2465 |
msgstr ""
|
2466 |
|
2467 |
+
#: bbp-includes/bbp-extend-akismet.php:309
|
2468 |
+
msgid "%1$s reported this %2$s as not spam"
|
2469 |
msgstr ""
|
2470 |
|
2471 |
+
#: bbp-includes/bbp-extend-akismet.php:451
|
2472 |
+
msgid "Akismet caught this post as spam"
|
2473 |
msgstr ""
|
2474 |
|
2475 |
+
#: bbp-includes/bbp-extend-akismet.php:455
|
2476 |
+
#: bbp-includes/bbp-extend-akismet.php:470
|
2477 |
+
msgid "Post status was changed to %s"
|
2478 |
msgstr ""
|
2479 |
|
2480 |
+
#: bbp-includes/bbp-extend-akismet.php:463
|
2481 |
+
msgid "Akismet cleared this post"
|
|
|
|
|
2482 |
msgstr ""
|
2483 |
|
2484 |
+
#: bbp-includes/bbp-extend-akismet.php:477
|
2485 |
+
msgid ""
|
2486 |
+
"Akismet was unable to check this post (response: %s), will automatically "
|
2487 |
+
"retry again later."
|
2488 |
msgstr ""
|
2489 |
|
2490 |
+
#: bbp-includes/bbp-extend-buddypress.php:298
|
2491 |
msgid "New topic created"
|
2492 |
msgstr ""
|
2493 |
|
2494 |
+
#: bbp-includes/bbp-extend-buddypress.php:299
|
2495 |
msgid "New reply created"
|
2496 |
msgstr ""
|
2497 |
|
2498 |
+
#: bbp-includes/bbp-extend-buddypress.php:570
|
2499 |
msgid "%1$s started the topic %2$s in the forum %3$s"
|
2500 |
msgstr ""
|
2501 |
|
2502 |
+
#: bbp-includes/bbp-extend-buddypress.php:660
|
2503 |
msgid "%1$s replied to the topic %2$s in the forum %3$s"
|
2504 |
msgstr ""
|
2505 |
|
2506 |
+
#: bbp-includes/bbp-extend-buddypress.php:868
|
2507 |
+
msgid "Search Forums..."
|
2508 |
msgstr ""
|
2509 |
|
2510 |
+
#: bbp-includes/bbp-extend-buddypress.php:912
|
2511 |
+
#: bbp-includes/bbp-extend-buddypress.php:990
|
2512 |
+
msgid "Topics Started"
|
|
|
2513 |
msgstr ""
|
2514 |
|
2515 |
+
#: bbp-includes/bbp-extend-buddypress.php:923
|
2516 |
+
#: bbp-includes/bbp-extend-buddypress.php:998
|
2517 |
+
msgid "Topics Replied To"
|
2518 |
msgstr ""
|
2519 |
|
2520 |
+
#: bbp-includes/bbp-extend-buddypress.php:934
|
2521 |
+
msgid "Favorites"
|
2522 |
msgstr ""
|
2523 |
|
2524 |
+
#: bbp-includes/bbp-extend-buddypress.php:946
|
2525 |
+
msgid "Subscriptions"
|
2526 |
msgstr ""
|
2527 |
|
2528 |
+
#: bbp-includes/bbp-extend-buddypress.php:1006
|
2529 |
+
msgid "Favorite Topics"
|
|
|
|
|
2530 |
msgstr ""
|
2531 |
|
2532 |
+
#: bbp-includes/bbp-extend-buddypress.php:1014
|
2533 |
+
msgid "Subscribed Topics"
|
2534 |
msgstr ""
|
2535 |
|
2536 |
+
#: bbp-includes/bbp-extend-buddypress.php:1231
|
2537 |
+
msgid "Group Forums"
|
|
|
2538 |
msgstr ""
|
2539 |
|
2540 |
+
#: bbp-includes/bbp-extend-buddypress.php:1233
|
2541 |
+
msgid ""
|
2542 |
+
"Create a discussion forum to allow members of this group to communicate in a "
|
2543 |
+
"structured, bulletin-board style fashion."
|
2544 |
msgstr ""
|
2545 |
|
2546 |
+
#: bbp-includes/bbp-extend-buddypress.php:1236
|
2547 |
+
msgid "Yes. I want this group to have a forum."
|
|
|
|
|
2548 |
msgstr ""
|
2549 |
|
2550 |
+
#: bbp-includes/bbp-extend-buddypress.php:1458
|
2551 |
+
#: bbp-includes/bbp-extend-buddypress.php:1470
|
2552 |
+
msgid "This group does not currently have any forums."
|
2553 |
+
msgstr ""
|
2554 |
+
|
2555 |
+
#: bbp-includes/bbp-extend-buddypress.php:1669
|
2556 |
+
#: bbp-theme-compat/bbpress/form-topic.php:121
|
2557 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic.php:121 bbpress.php:546
|
2558 |
+
msgid "Forum:"
|
2559 |
msgstr ""
|
2560 |
|
2561 |
+
#: bbp-includes/bbp-forum-functions.php:131
|
|
|
2562 |
msgid ""
|
2563 |
+
"<strong>ERROR</strong>: You do not have permission to create new forums."
|
2564 |
msgstr ""
|
2565 |
|
2566 |
+
#: bbp-includes/bbp-forum-functions.php:153
|
2567 |
+
#: bbp-includes/bbp-forum-functions.php:457
|
2568 |
+
msgid "<strong>ERROR</strong>: Your forum needs a title."
|
2569 |
msgstr ""
|
2570 |
|
2571 |
+
#: bbp-includes/bbp-forum-functions.php:165
|
2572 |
+
#: bbp-includes/bbp-forum-functions.php:469
|
2573 |
+
msgid "<strong>ERROR</strong>: Your forum description cannot be empty."
|
2574 |
msgstr ""
|
2575 |
|
2576 |
+
#: bbp-includes/bbp-forum-functions.php:178
|
2577 |
+
msgid "<strong>ERROR</strong>: Your forum must have a parent."
|
2578 |
msgstr ""
|
2579 |
|
2580 |
+
#: bbp-includes/bbp-forum-functions.php:185
|
2581 |
msgid ""
|
2582 |
+
"<strong>ERROR</strong>: This forum is a category. No forums can be created "
|
2583 |
+
"in this forum."
|
2584 |
msgstr ""
|
2585 |
|
2586 |
+
#: bbp-includes/bbp-forum-functions.php:190
|
2587 |
+
#: bbp-includes/bbp-forum-functions.php:433
|
2588 |
+
msgid "<strong>ERROR</strong>: This forum has been closed to new forums."
|
2589 |
msgstr ""
|
2590 |
|
2591 |
+
#: bbp-includes/bbp-forum-functions.php:195
|
2592 |
+
#: bbp-includes/bbp-forum-functions.php:438
|
2593 |
msgid ""
|
2594 |
"<strong>ERROR</strong>: This forum is private and you do not have the "
|
2595 |
+
"capability to read or create new forums in it."
|
2596 |
msgstr ""
|
2597 |
|
2598 |
+
#: bbp-includes/bbp-forum-functions.php:200
|
2599 |
+
#: bbp-includes/bbp-forum-functions.php:443
|
2600 |
msgid ""
|
2601 |
"<strong>ERROR</strong>: This forum is hidden and you do not have the "
|
2602 |
+
"capability to read or create new forums in it."
|
2603 |
msgstr ""
|
2604 |
|
2605 |
+
#: bbp-includes/bbp-forum-functions.php:207
|
2606 |
+
#: bbp-includes/bbp-reply-functions.php:203
|
2607 |
+
#: bbp-includes/bbp-topic-functions.php:225
|
2608 |
+
msgid "<strong>ERROR</strong>: Slow down; you move too fast."
|
2609 |
msgstr ""
|
2610 |
|
2611 |
+
#: bbp-includes/bbp-forum-functions.php:212
|
2612 |
+
msgid "<strong>ERROR</strong>: This forum already exists."
|
2613 |
msgstr ""
|
2614 |
|
2615 |
+
#: bbp-includes/bbp-forum-functions.php:217
|
2616 |
+
msgid "<strong>ERROR</strong>: Your forum cannot be created at this time."
|
|
|
2617 |
msgstr ""
|
2618 |
|
2619 |
+
#: bbp-includes/bbp-forum-functions.php:388
|
2620 |
+
msgid "<strong>ERROR</strong>: Forum ID not found."
|
2621 |
msgstr ""
|
2622 |
|
2623 |
+
#: bbp-includes/bbp-forum-functions.php:398
|
2624 |
+
msgid "<strong>ERROR</strong>: The forum you want to edit was not found."
|
2625 |
msgstr ""
|
2626 |
|
2627 |
+
#: bbp-includes/bbp-forum-functions.php:408
|
2628 |
+
msgid "<strong>ERROR</strong>: You do not have permission to edit that forum."
|
2629 |
msgstr ""
|
2630 |
|
2631 |
+
#: bbp-includes/bbp-forum-functions.php:474
|
2632 |
+
msgid "<strong>ERROR</strong>: Your forum cannot be edited at this time."
|
2633 |
msgstr ""
|
2634 |
|
2635 |
+
#: bbp-includes/bbp-forum-template.php:1131
|
2636 |
+
#: bbp-includes/bbp-forum-template.php:1849
|
2637 |
+
msgid "%s topic"
|
2638 |
+
msgid_plural "%s topics"
|
2639 |
+
msgstr[0] ""
|
2640 |
+
msgstr[1] ""
|
2641 |
|
2642 |
+
#: bbp-includes/bbp-forum-template.php:1147
|
2643 |
+
#: bbp-includes/bbp-topic-template.php:1818
|
2644 |
+
msgid " (+ %d hidden)"
|
2645 |
msgstr ""
|
2646 |
|
2647 |
+
#: bbp-includes/bbp-forum-template.php:1838
|
2648 |
+
#: bbp-includes/bbp-topic-template.php:1802
|
2649 |
+
msgid "%s reply"
|
2650 |
+
msgid_plural "%s replies"
|
2651 |
+
msgstr[0] ""
|
2652 |
+
msgstr[1] ""
|
2653 |
|
2654 |
+
#: bbp-includes/bbp-forum-template.php:1858
|
2655 |
+
msgid ""
|
2656 |
+
"This category contains %1$s and %2$s, and was last updated by %3$s %4$s."
|
|
|
|
|
2657 |
msgstr ""
|
2658 |
|
2659 |
+
#: bbp-includes/bbp-forum-template.php:1860
|
2660 |
+
msgid "This forum contains %1$s and %2$s, and was last updated by %3$s %4$s."
|
|
|
2661 |
msgstr ""
|
2662 |
|
2663 |
+
#: bbp-includes/bbp-forum-template.php:1866
|
2664 |
+
msgid "This category contains %1$s, and was last updated by %2$s %3$s."
|
|
|
2665 |
msgstr ""
|
2666 |
|
2667 |
+
#: bbp-includes/bbp-forum-template.php:1868
|
2668 |
+
msgid "This forum contains %1$s, and was last updated by %2$s %3$s."
|
2669 |
msgstr ""
|
2670 |
|
2671 |
+
#: bbp-includes/bbp-forum-template.php:1878
|
2672 |
+
msgid "This category contains %1$s and %2$s."
|
2673 |
msgstr ""
|
2674 |
|
2675 |
+
#: bbp-includes/bbp-forum-template.php:1880
|
2676 |
+
msgid "This forum contains %1$s and %2$s."
|
2677 |
msgstr ""
|
2678 |
|
2679 |
+
#: bbp-includes/bbp-forum-template.php:1888
|
2680 |
+
msgid "This category contains %1$s."
|
2681 |
msgstr ""
|
2682 |
|
2683 |
+
#: bbp-includes/bbp-forum-template.php:1890
|
2684 |
+
msgid "This forum contains %1$s."
|
2685 |
msgstr ""
|
2686 |
|
2687 |
+
#: bbp-includes/bbp-forum-template.php:1894
|
2688 |
+
msgid "This forum is empty."
|
2689 |
msgstr ""
|
2690 |
|
2691 |
+
#: bbp-includes/bbp-forum-template.php:2125
|
2692 |
+
msgid "Category"
|
2693 |
msgstr ""
|
2694 |
|
2695 |
+
#: bbp-includes/bbp-forum-template.php:2162
|
2696 |
+
msgctxt "Forum Status"
|
2697 |
+
msgid "Open"
|
2698 |
msgstr ""
|
2699 |
|
2700 |
+
#: bbp-includes/bbp-forum-template.php:2163
|
2701 |
+
msgctxt "Forum Status"
|
2702 |
+
msgid "Closed"
|
2703 |
msgstr ""
|
2704 |
|
2705 |
+
#: bbp-includes/bbp-forum-template.php:2200
|
2706 |
+
msgid "Public"
|
2707 |
msgstr ""
|
2708 |
|
2709 |
+
#: bbp-includes/bbp-forum-template.php:2201
|
2710 |
+
#: bbp-theme-compat/bbpress/feedback-no-access.php:13
|
2711 |
+
#: bbp-themes/bbp-twentyten/bbpress/feedback-no-access.php:13
|
2712 |
+
msgid "Private"
|
2713 |
+
msgstr ""
|
2714 |
|
2715 |
+
#: bbp-includes/bbp-forum-template.php:2202
|
2716 |
+
msgid "Hidden"
|
|
|
2717 |
msgstr ""
|
2718 |
|
2719 |
+
#: bbp-includes/bbp-reply-functions.php:140
|
2720 |
+
msgid "<strong>ERROR</strong>: You do not have permission to reply."
|
2721 |
+
msgstr ""
|
|
|
|
|
|
|
2722 |
|
2723 |
+
#: bbp-includes/bbp-reply-functions.php:154
|
2724 |
+
msgid "<strong>ERROR</strong>: Topic ID is missing."
|
|
|
2725 |
msgstr ""
|
2726 |
|
2727 |
+
#: bbp-includes/bbp-reply-functions.php:165
|
2728 |
+
#: bbp-includes/bbp-topic-functions.php:196
|
2729 |
+
#: bbp-includes/bbp-topic-functions.php:482
|
2730 |
+
msgid "<strong>ERROR</strong>: Forum ID is missing."
|
2731 |
msgstr ""
|
2732 |
|
2733 |
+
#: bbp-includes/bbp-reply-functions.php:186
|
2734 |
+
msgid "<strong>ERROR</strong>: Your reply needs a title."
|
2735 |
msgstr ""
|
2736 |
|
2737 |
+
#: bbp-includes/bbp-reply-functions.php:198
|
2738 |
+
#: bbp-includes/bbp-reply-functions.php:468
|
2739 |
+
msgid "<strong>ERROR</strong>: Your reply cannot be empty."
|
2740 |
msgstr ""
|
2741 |
|
2742 |
+
#: bbp-includes/bbp-reply-functions.php:208
|
2743 |
+
msgid ""
|
2744 |
+
"<strong>ERROR</strong>: Duplicate reply detected; it looks as though "
|
2745 |
+
"you’ve already said that!"
|
2746 |
msgstr ""
|
2747 |
|
2748 |
+
#: bbp-includes/bbp-reply-functions.php:213
|
2749 |
+
msgid "<strong>ERROR</strong>: Your reply cannot be created at this time."
|
2750 |
msgstr ""
|
2751 |
|
2752 |
+
#: bbp-includes/bbp-reply-functions.php:270
|
2753 |
+
#: bbp-includes/bbp-reply-functions.php:519
|
2754 |
+
msgid ""
|
2755 |
+
"<strong>ERROR</strong>: There was a problem adding the tags to the topic."
|
2756 |
msgstr ""
|
2757 |
|
2758 |
+
#: bbp-includes/bbp-reply-functions.php:382
|
2759 |
+
msgid "<strong>ERROR</strong>: Reply ID not found."
|
|
|
|
|
|
|
2760 |
msgstr ""
|
2761 |
|
2762 |
+
#: bbp-includes/bbp-reply-functions.php:392
|
2763 |
+
msgid "<strong>ERROR</strong>: The reply you want to edit was not found."
|
|
|
2764 |
msgstr ""
|
2765 |
|
2766 |
+
#: bbp-includes/bbp-reply-functions.php:405
|
2767 |
+
msgid "<strong>ERROR</strong>: You do not have permission to edit that reply."
|
2768 |
msgstr ""
|
2769 |
|
2770 |
+
#: bbp-includes/bbp-reply-functions.php:435
|
2771 |
+
msgid ""
|
2772 |
+
"<strong>ERROR</strong>: This forum is a category. No topics or replies can "
|
2773 |
+
"be created in it."
|
2774 |
msgstr ""
|
2775 |
|
2776 |
+
#: bbp-includes/bbp-reply-functions.php:439
|
2777 |
+
msgid ""
|
2778 |
+
"<strong>ERROR</strong>: This forum has been closed to new topics and replies."
|
2779 |
msgstr ""
|
2780 |
|
2781 |
+
#: bbp-includes/bbp-reply-functions.php:443
|
2782 |
+
msgid ""
|
2783 |
+
"<strong>ERROR</strong>: This forum is private and you do not have the "
|
2784 |
+
"capability to read or create new replies in it."
|
2785 |
msgstr ""
|
2786 |
|
2787 |
+
#: bbp-includes/bbp-reply-functions.php:447
|
2788 |
+
msgid ""
|
2789 |
+
"<strong>ERROR</strong>: This forum is hidden and you do not have the "
|
2790 |
+
"capability to read or create new replies in it."
|
2791 |
msgstr ""
|
2792 |
|
2793 |
+
#: bbp-includes/bbp-reply-functions.php:473
|
2794 |
+
msgid "<strong>ERROR</strong>: Your reply cannot be edited at this time."
|
2795 |
msgstr ""
|
2796 |
|
2797 |
+
#: bbp-includes/bbp-reply-functions.php:1013
|
2798 |
+
msgid "<strong>ERROR:</strong> You do not have the permission to do that!"
|
2799 |
msgstr ""
|
2800 |
|
2801 |
+
#: bbp-includes/bbp-reply-functions.php:1026
|
2802 |
+
msgid ""
|
2803 |
+
"<strong>ERROR</strong>: There was a problem unmarking the reply as spam!"
|
2804 |
msgstr ""
|
2805 |
|
2806 |
+
#: bbp-includes/bbp-reply-functions.php:1026
|
2807 |
+
msgid "<strong>ERROR</strong>: There was a problem marking the reply as spam!"
|
2808 |
msgstr ""
|
2809 |
|
2810 |
+
#: bbp-includes/bbp-reply-functions.php:1045
|
2811 |
+
msgid "<strong>ERROR</strong>: There was a problem trashing the reply!"
|
2812 |
msgstr ""
|
2813 |
|
2814 |
+
#: bbp-includes/bbp-reply-functions.php:1053
|
2815 |
+
msgid "<strong>ERROR</strong>: There was a problem untrashing the reply!"
|
2816 |
msgstr ""
|
2817 |
|
2818 |
+
#: bbp-includes/bbp-reply-functions.php:1061
|
2819 |
+
msgid "<strong>ERROR</strong>: There was a problem deleting the reply!"
|
2820 |
msgstr ""
|
2821 |
|
2822 |
+
#: bbp-includes/bbp-reply-functions.php:1406
|
2823 |
+
msgid "All Posts"
|
2824 |
msgstr ""
|
2825 |
|
2826 |
+
#: bbp-includes/bbp-reply-functions.php:1448
|
2827 |
+
#: bbp-includes/bbp-topic-functions.php:3113
|
2828 |
+
msgid "Replies: %s"
|
2829 |
msgstr ""
|
2830 |
|
2831 |
+
#: bbp-includes/bbp-reply-template.php:589
|
2832 |
+
msgid "This reply was modified %1$s by %2$s. Reason: %3$s"
|
2833 |
msgstr ""
|
2834 |
|
2835 |
+
#: bbp-includes/bbp-reply-template.php:591
|
2836 |
+
msgid "This reply was modified %1$s by %2$s."
|
2837 |
msgstr ""
|
2838 |
|
2839 |
+
#: bbp-includes/bbp-reply-template.php:872
|
2840 |
+
#: bbp-includes/bbp-topic-template.php:1168
|
2841 |
+
#: bbp-includes/bbp-user-template.php:162
|
2842 |
+
msgid "Anonymous"
|
2843 |
msgstr ""
|
2844 |
|
2845 |
+
#: bbp-includes/bbp-reply-template.php:973
|
2846 |
+
#: bbp-includes/bbp-topic-template.php:1273
|
2847 |
+
#: bbp-includes/bbp-user-template.php:1194
|
2848 |
+
msgid "View %s's profile"
|
2849 |
msgstr ""
|
2850 |
|
2851 |
+
#: bbp-includes/bbp-reply-template.php:973
|
2852 |
+
#: bbp-includes/bbp-topic-template.php:1273
|
2853 |
+
#: bbp-includes/bbp-user-template.php:1194
|
2854 |
+
msgid "Visit %s's website"
|
2855 |
msgstr ""
|
2856 |
|
2857 |
+
#: bbp-includes/bbp-reply-template.php:1588
|
2858 |
+
#: bbp-includes/bbp-topic-template.php:2304
|
2859 |
+
#: bbp-theme-compat/bbpress/form-topic-tag.php:88
|
2860 |
+
#: bbp-theme-compat/bbpress/form-topic-tag.php:101
|
2861 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:89
|
2862 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:102
|
2863 |
+
msgid "Delete"
|
2864 |
msgstr ""
|
2865 |
|
2866 |
+
#: bbp-includes/bbp-reply-template.php:1607
|
2867 |
+
#: bbp-includes/bbp-topic-template.php:2323
|
2868 |
+
msgid "Are you sure you want to delete that permanently?"
|
2869 |
msgstr ""
|
2870 |
|
2871 |
+
#: bbp-includes/bbp-reply-template.php:1658
|
2872 |
+
#: bbp-includes/bbp-topic-template.php:2560
|
2873 |
+
msgid "Unspam"
|
2874 |
msgstr ""
|
2875 |
|
2876 |
+
#: bbp-includes/bbp-reply-template.php:1721
|
2877 |
+
msgid "Split"
|
|
|
2878 |
msgstr ""
|
2879 |
|
2880 |
+
#: bbp-includes/bbp-reply-template.php:1722
|
2881 |
+
msgid "Split the topic from this reply"
|
2882 |
msgstr ""
|
2883 |
|
2884 |
+
#: bbp-includes/bbp-reply-template.php:1829
|
2885 |
+
msgid "Viewing %1$s reply"
|
2886 |
+
msgid_plural "Viewing %1$s replies"
|
2887 |
+
msgstr[0] ""
|
2888 |
+
msgstr[1] ""
|
2889 |
|
2890 |
+
#: bbp-includes/bbp-reply-template.php:1833
|
2891 |
+
msgid "Viewing %2$s replies (of %4$s total)"
|
2892 |
+
msgid_plural "Viewing %1$s replies - %2$s through %3$s (of %4$s total)"
|
2893 |
+
msgstr[0] ""
|
2894 |
+
msgstr[1] ""
|
2895 |
+
|
2896 |
+
#: bbp-includes/bbp-reply-template.php:1841
|
2897 |
+
msgid "Viewing %1$s post"
|
2898 |
+
msgid_plural "Viewing %1$s posts"
|
2899 |
+
msgstr[0] ""
|
2900 |
+
msgstr[1] ""
|
2901 |
+
|
2902 |
+
#: bbp-includes/bbp-reply-template.php:1845
|
2903 |
+
msgid "Viewing %2$s post (of %4$s total)"
|
2904 |
+
msgid_plural "Viewing %1$s posts - %2$s through %3$s (of %4$s total)"
|
2905 |
+
msgstr[0] ""
|
2906 |
+
msgstr[1] ""
|
2907 |
|
2908 |
+
#: bbp-includes/bbp-topic-functions.php:154
|
2909 |
msgid ""
|
2910 |
"<strong>ERROR</strong>: You do not have permission to create new topics."
|
2911 |
msgstr ""
|
2912 |
|
2913 |
+
#: bbp-includes/bbp-topic-functions.php:178
|
2914 |
+
#: bbp-includes/bbp-topic-functions.php:522
|
2915 |
msgid "<strong>ERROR</strong>: Your topic needs a title."
|
2916 |
msgstr ""
|
2917 |
|
2918 |
+
#: bbp-includes/bbp-topic-functions.php:190
|
2919 |
+
#: bbp-includes/bbp-topic-functions.php:534
|
2920 |
msgid "<strong>ERROR</strong>: Your topic cannot be empty."
|
2921 |
msgstr ""
|
2922 |
|
2923 |
+
#: bbp-includes/bbp-topic-functions.php:207
|
2924 |
msgid ""
|
2925 |
"<strong>ERROR</strong>: This forum is a category. No topics can be created "
|
2926 |
"in this forum."
|
2927 |
msgstr ""
|
2928 |
|
2929 |
+
#: bbp-includes/bbp-topic-functions.php:211
|
2930 |
+
#: bbp-includes/bbp-topic-functions.php:501
|
2931 |
msgid "<strong>ERROR</strong>: This forum has been closed to new topics."
|
2932 |
msgstr ""
|
2933 |
|
2934 |
+
#: bbp-includes/bbp-topic-functions.php:215
|
2935 |
+
#: bbp-includes/bbp-topic-functions.php:505
|
2936 |
msgid ""
|
2937 |
"<strong>ERROR</strong>: This forum is private and you do not have the "
|
2938 |
"capability to read or create new topics in it."
|
2939 |
msgstr ""
|
2940 |
|
2941 |
+
#: bbp-includes/bbp-topic-functions.php:219
|
2942 |
+
#: bbp-includes/bbp-topic-functions.php:509
|
2943 |
msgid ""
|
2944 |
"<strong>ERROR</strong>: This forum is hidden and you do not have the "
|
2945 |
"capability to read or create new topics in it."
|
2946 |
msgstr ""
|
2947 |
|
2948 |
+
#: bbp-includes/bbp-topic-functions.php:230
|
2949 |
msgid ""
|
2950 |
"<strong>ERROR</strong>: Duplicate topic detected; it looks as though "
|
2951 |
"you’ve already said that!"
|
2952 |
msgstr ""
|
2953 |
|
2954 |
+
#: bbp-includes/bbp-topic-functions.php:235
|
2955 |
msgid "<strong>ERROR</strong>: Your topic cannot be created at this time."
|
2956 |
msgstr ""
|
2957 |
|
2958 |
+
#: bbp-includes/bbp-topic-functions.php:438
|
2959 |
+
#: bbp-includes/bbp-topic-functions.php:1041
|
2960 |
msgid "<strong>ERROR</strong>: Topic ID not found."
|
2961 |
msgstr ""
|
2962 |
|
2963 |
+
#: bbp-includes/bbp-topic-functions.php:448
|
2964 |
msgid "<strong>ERROR</strong>: The topic you want to edit was not found."
|
2965 |
msgstr ""
|
2966 |
|
2967 |
+
#: bbp-includes/bbp-topic-functions.php:461
|
2968 |
msgid "<strong>ERROR</strong>: You do not have permission to edit that topic."
|
2969 |
msgstr ""
|
2970 |
|
2971 |
+
#: bbp-includes/bbp-topic-functions.php:497
|
2972 |
msgid ""
|
2973 |
"<strong>ERROR</strong>: This forum is a category. No topics can be created "
|
2974 |
"in it."
|
2975 |
msgstr ""
|
2976 |
|
2977 |
+
#: bbp-includes/bbp-topic-functions.php:539
|
2978 |
msgid "<strong>ERROR</strong>: Your topic cannot be edited at this time."
|
2979 |
msgstr ""
|
2980 |
|
2981 |
+
#: bbp-includes/bbp-topic-functions.php:1050
|
2982 |
msgid "<strong>ERROR</strong>: The topic you want to merge was not found."
|
2983 |
msgstr ""
|
2984 |
|
2985 |
+
#: bbp-includes/bbp-topic-functions.php:1054
|
2986 |
+
#: bbp-includes/bbp-topic-functions.php:1345
|
2987 |
msgid ""
|
2988 |
"<strong>ERROR</strong>: You do not have the permissions to edit the source "
|
2989 |
"topic."
|
2990 |
msgstr ""
|
2991 |
|
2992 |
+
#: bbp-includes/bbp-topic-functions.php:1060
|
2993 |
msgid "<strong>ERROR</strong>: Destination topic ID not found."
|
2994 |
msgstr ""
|
2995 |
|
2996 |
+
#: bbp-includes/bbp-topic-functions.php:1066
|
2997 |
msgid "<strong>ERROR</strong>: The topic you want to merge to was not found."
|
2998 |
msgstr ""
|
2999 |
|
3000 |
+
#: bbp-includes/bbp-topic-functions.php:1070
|
3001 |
msgid ""
|
3002 |
"<strong>ERROR</strong>: You do not have the permissions to edit the "
|
3003 |
"destination topic."
|
3004 |
msgstr ""
|
3005 |
|
3006 |
+
#: bbp-includes/bbp-topic-functions.php:1321
|
3007 |
msgid "<strong>ERROR</strong>: Reply ID to split the topic from not found!"
|
3008 |
msgstr ""
|
3009 |
|
3010 |
+
#: bbp-includes/bbp-topic-functions.php:1329
|
3011 |
msgid "<strong>ERROR</strong>: The reply you want to split from was not found."
|
3012 |
msgstr ""
|
3013 |
|
3014 |
+
#: bbp-includes/bbp-topic-functions.php:1338
|
3015 |
msgid "<strong>ERROR</strong>: The topic you want to split was not found."
|
3016 |
msgstr ""
|
3017 |
|
3018 |
+
#: bbp-includes/bbp-topic-functions.php:1354
|
3019 |
msgid "<strong>ERROR</strong>: You need to choose a valid split option."
|
3020 |
msgstr ""
|
3021 |
|
3022 |
+
#: bbp-includes/bbp-topic-functions.php:1367
|
3023 |
msgid "<strong>ERROR</strong>: Destination topic ID not found!"
|
3024 |
msgstr ""
|
3025 |
|
3026 |
+
#: bbp-includes/bbp-topic-functions.php:1376
|
3027 |
msgid "<strong>ERROR</strong>: The topic you want to split to was not found!"
|
3028 |
msgstr ""
|
3029 |
|
3030 |
+
#: bbp-includes/bbp-topic-functions.php:1380
|
3031 |
msgid ""
|
3032 |
"<strong>ERROR</strong>: You do not have the permissions to edit the "
|
3033 |
"destination topic!"
|
3034 |
msgstr ""
|
3035 |
|
3036 |
+
#: bbp-includes/bbp-topic-functions.php:1419
|
3037 |
msgid ""
|
3038 |
"<strong>ERROR</strong>: There was a problem converting the reply into the "
|
3039 |
"topic. Please try again."
|
3040 |
msgstr ""
|
3041 |
|
3042 |
+
#: bbp-includes/bbp-topic-functions.php:1424
|
3043 |
msgid ""
|
3044 |
"<strong>ERROR</strong>: You do not have the permissions to create new "
|
3045 |
"topics. The reply could not be converted into a topic."
|
3046 |
msgstr ""
|
3047 |
|
3048 |
+
#: bbp-includes/bbp-topic-functions.php:1630
|
3049 |
msgid ""
|
3050 |
"<strong>ERROR</strong>: The following problem(s) have been found while "
|
3051 |
"getting the tag: %s"
|
3052 |
msgstr ""
|
3053 |
|
3054 |
+
#: bbp-includes/bbp-topic-functions.php:1645
|
3055 |
+
#: bbp-includes/bbp-topic-functions.php:1681
|
3056 |
msgid ""
|
3057 |
"<strong>ERROR</strong>: You do not have the permissions to edit the topic "
|
3058 |
"tags."
|
3059 |
msgstr ""
|
3060 |
|
3061 |
+
#: bbp-includes/bbp-topic-functions.php:1651
|
3062 |
+
#: bbp-includes/bbp-topic-functions.php:1687
|
3063 |
msgid "<strong>ERROR</strong>: You need to enter a tag name."
|
3064 |
msgstr ""
|
3065 |
|
3066 |
+
#: bbp-includes/bbp-topic-functions.php:1661
|
3067 |
msgid ""
|
3068 |
"<strong>ERROR</strong>: The following problem(s) have been found while "
|
3069 |
"updating the tag: %s"
|
3070 |
msgstr ""
|
3071 |
|
3072 |
+
#: bbp-includes/bbp-topic-functions.php:1697
|
3073 |
+
#: bbp-includes/bbp-topic-functions.php:1715
|
3074 |
msgid ""
|
3075 |
"<strong>ERROR</strong>: The following problem(s) have been found while "
|
3076 |
"merging the tags: %s"
|
3077 |
msgstr ""
|
3078 |
|
3079 |
+
#: bbp-includes/bbp-topic-functions.php:1706
|
3080 |
msgid ""
|
3081 |
"<strong>ERROR</strong>: The tags which are being merged can not be the same."
|
3082 |
msgstr ""
|
3083 |
|
3084 |
+
#: bbp-includes/bbp-topic-functions.php:1735
|
3085 |
msgid ""
|
3086 |
"<strong>ERROR</strong>: You do not have the permissions to delete the topic "
|
3087 |
"tags."
|
3088 |
msgstr ""
|
3089 |
|
3090 |
+
#: bbp-includes/bbp-topic-functions.php:1744
|
3091 |
msgid ""
|
3092 |
"<strong>ERROR</strong>: The following problem(s) have been found while "
|
3093 |
"deleting the tag: %s"
|
3094 |
msgstr ""
|
3095 |
|
3096 |
+
#: bbp-includes/bbp-topic-functions.php:1873
|
3097 |
msgid "<strong>ERROR:</strong> You do not have the permission to do that."
|
3098 |
msgstr ""
|
3099 |
|
3100 |
+
#: bbp-includes/bbp-topic-functions.php:1886
|
3101 |
msgid "<strong>ERROR</strong>: There was a problem closing the topic."
|
3102 |
msgstr ""
|
3103 |
|
3104 |
+
#: bbp-includes/bbp-topic-functions.php:1886
|
3105 |
msgid "<strong>ERROR</strong>: There was a problem opening the topic."
|
3106 |
msgstr ""
|
3107 |
|
3108 |
+
#: bbp-includes/bbp-topic-functions.php:1897
|
3109 |
msgid "<strong>ERROR</strong>: There was a problem unsticking the topic."
|
3110 |
msgstr ""
|
3111 |
|
3112 |
+
#: bbp-includes/bbp-topic-functions.php:1897
|
3113 |
msgid "<strong>ERROR</strong>: There was a problem sticking the topic."
|
3114 |
msgstr ""
|
3115 |
|
3116 |
+
#: bbp-includes/bbp-topic-functions.php:1907
|
3117 |
msgid ""
|
3118 |
"<strong>ERROR</strong>: There was a problem unmarking the topic as spam."
|
3119 |
msgstr ""
|
3120 |
|
3121 |
+
#: bbp-includes/bbp-topic-functions.php:1907
|
3122 |
msgid "<strong>ERROR</strong>: There was a problem marking the topic as spam."
|
3123 |
msgstr ""
|
3124 |
|
3125 |
+
#: bbp-includes/bbp-topic-functions.php:1926
|
3126 |
msgid "<strong>ERROR</strong>: There was a problem trashing the topic."
|
3127 |
msgstr ""
|
3128 |
|
3129 |
+
#: bbp-includes/bbp-topic-functions.php:1934
|
3130 |
msgid "<strong>ERROR</strong>: There was a problem untrashing the topic."
|
3131 |
msgstr ""
|
3132 |
|
3133 |
+
#: bbp-includes/bbp-topic-functions.php:1942
|
3134 |
msgid "<strong>ERROR</strong>: There was a problem deleting the topic."
|
3135 |
msgstr ""
|
3136 |
|
3137 |
+
#: bbp-includes/bbp-topic-template.php:801
|
3138 |
+
msgid "This topic was modified %1$s by %2$s. Reason: %3$s"
|
3139 |
msgstr ""
|
3140 |
|
3141 |
+
#: bbp-includes/bbp-topic-template.php:803
|
3142 |
+
msgid "This topic was modified %1$s by %2$s."
|
3143 |
msgstr ""
|
3144 |
|
3145 |
+
#: bbp-includes/bbp-topic-template.php:1980
|
3146 |
+
msgid "Tagged:"
|
3147 |
msgstr ""
|
3148 |
|
3149 |
+
#: bbp-includes/bbp-topic-template.php:2372
|
3150 |
+
msgctxt "Topic Status"
|
3151 |
+
msgid "Close"
|
3152 |
msgstr ""
|
3153 |
|
3154 |
+
#: bbp-includes/bbp-topic-template.php:2373
|
3155 |
+
msgctxt "Topic Status"
|
3156 |
+
msgid "Open"
|
3157 |
msgstr ""
|
3158 |
|
3159 |
+
#: bbp-includes/bbp-topic-template.php:2503
|
3160 |
+
#: bbp-theme-compat/bbpress/form-topic-tag.php:59
|
3161 |
+
#: bbp-theme-compat/bbpress/form-topic-tag.php:73
|
3162 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:59
|
3163 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:73
|
3164 |
+
msgid "Merge"
|
3165 |
msgstr ""
|
3166 |
|
3167 |
+
#: bbp-includes/bbp-topic-template.php:2615
|
3168 |
+
msgid "Viewing %1$s topic"
|
3169 |
+
msgid_plural "Viewing %1$s topics"
|
3170 |
+
msgstr[0] ""
|
3171 |
+
msgstr[1] ""
|
3172 |
+
|
3173 |
+
#: bbp-includes/bbp-topic-template.php:2619
|
3174 |
+
msgid "Viewing topic %2$s (of %4$s total)"
|
3175 |
+
msgid_plural "Viewing %1$s topics - %2$s through %3$s (of %4$s total)"
|
3176 |
+
msgstr[0] ""
|
3177 |
+
msgstr[1] ""
|
3178 |
+
|
3179 |
+
#: bbp-includes/bbp-topic-template.php:2679
|
3180 |
+
msgid "This topic is marked as spam."
|
3181 |
+
msgstr ""
|
3182 |
+
|
3183 |
+
#: bbp-includes/bbp-topic-template.php:2684
|
3184 |
+
msgid "This topic is in the trash."
|
3185 |
+
msgstr ""
|
3186 |
+
|
3187 |
+
#: bbp-includes/bbp-topic-template.php:2722
|
3188 |
+
msgid "Normal"
|
3189 |
+
msgstr ""
|
3190 |
+
|
3191 |
+
#: bbp-includes/bbp-topic-template.php:2723
|
3192 |
+
msgid "Sticky"
|
3193 |
+
msgstr ""
|
3194 |
+
|
3195 |
+
#: bbp-includes/bbp-topic-template.php:2724
|
3196 |
+
msgid "Super Sticky"
|
3197 |
+
msgstr ""
|
3198 |
+
|
3199 |
+
#: bbp-includes/bbp-topic-template.php:2845
|
3200 |
+
msgid "%s voice"
|
3201 |
+
msgid_plural "%s voices"
|
3202 |
+
msgstr[0] ""
|
3203 |
+
msgstr[1] ""
|
3204 |
+
|
3205 |
+
#: bbp-includes/bbp-topic-template.php:2851
|
3206 |
+
msgid "This topic contains %1$s, has %2$s, and was last updated by %3$s %4$s."
|
3207 |
+
msgstr ""
|
3208 |
+
|
3209 |
+
#: bbp-includes/bbp-topic-template.php:2855
|
3210 |
+
msgid "This topic contains %1$s and has %2$s."
|
3211 |
+
msgstr ""
|
3212 |
+
|
3213 |
+
#: bbp-includes/bbp-topic-template.php:2859
|
3214 |
+
msgid "This topic has no replies."
|
3215 |
msgstr ""
|
3216 |
|
3217 |
+
#: bbp-includes/bbp-user-functions.php:468
|
3218 |
+
#: bbp-includes/bbp-user-functions.php:785
|
3219 |
msgid ""
|
3220 |
"<strong>ERROR</strong>: You don't have the permission to edit favorites of "
|
3221 |
"that user!"
|
3222 |
msgstr ""
|
3223 |
|
3224 |
+
#: bbp-includes/bbp-user-functions.php:473
|
3225 |
msgid ""
|
3226 |
"<strong>ERROR</strong>: No topic was found! Which topic are you marking/"
|
3227 |
"unmarking as favorite?"
|
3228 |
msgstr ""
|
3229 |
|
3230 |
+
#: bbp-includes/bbp-user-functions.php:512
|
3231 |
msgid ""
|
3232 |
"<strong>ERROR</strong>: There was a problem removing that topic from "
|
3233 |
"favorites!"
|
3234 |
msgstr ""
|
3235 |
|
3236 |
+
#: bbp-includes/bbp-user-functions.php:514
|
3237 |
msgid "<strong>ERROR</strong>: There was a problem favoriting that topic!"
|
3238 |
msgstr ""
|
3239 |
|
3240 |
+
#: bbp-includes/bbp-user-functions.php:790
|
3241 |
msgid ""
|
3242 |
"<strong>ERROR</strong>: No topic was found! Which topic are you subscribing/"
|
3243 |
"unsubscribing to?"
|
3244 |
msgstr ""
|
3245 |
|
3246 |
+
#: bbp-includes/bbp-user-functions.php:828
|
3247 |
msgid ""
|
3248 |
"<strong>ERROR</strong>: There was a problem unsubscribing from that topic!"
|
3249 |
msgstr ""
|
3250 |
|
3251 |
+
#: bbp-includes/bbp-user-functions.php:830
|
3252 |
msgid "<strong>ERROR</strong>: There was a problem subscribing to that topic!"
|
3253 |
msgstr ""
|
3254 |
|
3255 |
+
#: bbp-includes/bbp-user-functions.php:913
|
3256 |
msgid ""
|
3257 |
"What are you doing here? You do not have the permission to edit this user."
|
3258 |
msgstr ""
|
3259 |
|
3260 |
+
#: bbp-includes/bbp-user-template.php:437
|
3261 |
+
msgid "Key Master"
|
3262 |
msgstr ""
|
3263 |
|
3264 |
+
#: bbp-includes/bbp-user-template.php:449
|
3265 |
+
msgid "Guest"
|
|
|
|
|
3266 |
msgstr ""
|
3267 |
|
3268 |
+
#: bbp-includes/bbp-user-template.php:454
|
3269 |
+
#: bbp-includes/bbp-user-template.php:482
|
3270 |
+
msgid "Member"
|
3271 |
msgstr ""
|
3272 |
|
3273 |
+
#: bbp-includes/bbp-user-template.php:459
|
3274 |
+
msgid "Moderator"
|
3275 |
msgstr ""
|
3276 |
|
3277 |
+
#: bbp-includes/bbp-user-template.php:524
|
3278 |
+
msgid "Admin"
|
3279 |
msgstr ""
|
3280 |
|
3281 |
+
#: bbp-includes/bbp-user-template.php:668
|
3282 |
+
#: bbp-theme-compat/bbpress-functions.php:256
|
3283 |
+
#: bbp-themes/bbp-twentyten/bbpress-functions.php:207
|
3284 |
+
msgid "Add this topic to your favorites"
|
3285 |
msgstr ""
|
3286 |
|
3287 |
+
#: bbp-includes/bbp-user-template.php:669
|
3288 |
+
msgid " (%?%)"
|
3289 |
msgstr ""
|
3290 |
|
3291 |
+
#: bbp-includes/bbp-user-template.php:675
|
3292 |
+
msgid "This topic is one of your %favorites% ["
|
3293 |
msgstr ""
|
3294 |
|
3295 |
+
#: bbp-includes/bbp-user-template.php:676
|
3296 |
+
#: bbp-theme-compat/bbpress-functions.php:255
|
3297 |
+
#: bbp-themes/bbp-twentyten/bbpress-functions.php:206
|
3298 |
+
msgid "×"
|
3299 |
msgstr ""
|
3300 |
|
3301 |
+
#: bbp-includes/bbp-user-template.php:677
|
3302 |
+
msgid "]"
|
3303 |
msgstr ""
|
3304 |
|
3305 |
+
#: bbp-includes/bbp-user-template.php:786
|
3306 |
+
#: bbp-theme-compat/bbpress-functions.php:265
|
3307 |
+
#: bbp-themes/bbp-twentyten/bbpress-functions.php:216
|
3308 |
+
msgid "Subscribe"
|
3309 |
msgstr ""
|
3310 |
|
3311 |
+
#: bbp-includes/bbp-user-template.php:787
|
3312 |
+
#: bbp-theme-compat/bbpress-functions.php:266
|
3313 |
+
#: bbp-themes/bbp-twentyten/bbpress-functions.php:217
|
3314 |
+
msgid "Unsubscribe"
|
|
|
|
|
|
|
|
|
|
|
3315 |
msgstr ""
|
3316 |
|
3317 |
+
#: bbp-includes/bbp-user-template.php:853
|
3318 |
+
msgid "User updated."
|
3319 |
msgstr ""
|
3320 |
|
3321 |
+
#: bbp-includes/bbp-user-template.php:878
|
3322 |
+
msgid "You have super admin privileges."
|
3323 |
msgstr ""
|
3324 |
|
3325 |
+
#: bbp-includes/bbp-user-template.php:878
|
3326 |
+
msgid "This user has super admin privileges."
|
3327 |
msgstr ""
|
3328 |
|
3329 |
+
#: bbp-includes/bbp-user-template.php:944
|
3330 |
+
msgid "— No role for this site —"
|
3331 |
msgstr ""
|
3332 |
|
3333 |
+
#: bbp-includes/bbp-user-template.php:992
|
3334 |
+
msgid "You are now logged out."
|
3335 |
msgstr ""
|
3336 |
|
3337 |
+
#: bbp-includes/bbp-user-template.php:996
|
3338 |
+
msgid "New user registration is currently not allowed."
|
|
|
3339 |
msgstr ""
|
3340 |
|
3341 |
+
#: bbp-includes/bbp-user-template.php:1005
|
3342 |
+
msgid "Check your e-mail for the confirmation link."
|
3343 |
msgstr ""
|
3344 |
|
3345 |
+
#: bbp-includes/bbp-user-template.php:1010
|
3346 |
+
msgid "Check your e-mail for your new password."
|
3347 |
msgstr ""
|
3348 |
|
3349 |
+
#: bbp-includes/bbp-user-template.php:1015
|
3350 |
+
msgid "Registration complete. Please check your e-mail."
|
3351 |
msgstr ""
|
3352 |
|
3353 |
+
#: bbp-theme-compat/bbpress/content-single-topic-lead.php:38
|
3354 |
+
#: bbp-theme-compat/bbpress/loop-single-reply.php:16
|
3355 |
+
#: bbp-themes/bbp-twentyten/bbpress/content-single-topic-lead.php:45
|
3356 |
+
#: bbp-themes/bbp-twentyten/bbpress/loop-single-reply.php:15
|
3357 |
+
msgid "%1$s at %2$s"
|
3358 |
msgstr ""
|
3359 |
|
3360 |
+
#: bbp-theme-compat/bbpress/feedback-logged-in.php:13
|
3361 |
+
#: bbp-themes/bbp-twentyten/bbpress/feedback-logged-in.php:13
|
3362 |
+
msgid "You are already logged in."
|
3363 |
msgstr ""
|
3364 |
|
3365 |
+
#: bbp-theme-compat/bbpress/feedback-no-access.php:16
|
3366 |
+
#: bbp-themes/bbp-twentyten/bbpress/feedback-no-access.php:16
|
3367 |
+
msgid "You do not have permission to view this forum."
|
3368 |
msgstr ""
|
3369 |
|
3370 |
+
#: bbp-theme-compat/bbpress/feedback-no-forums.php:13
|
3371 |
+
#: bbp-themes/bbp-twentyten/bbpress/feedback-no-forums.php:13
|
3372 |
+
msgid "Oh bother! No forums were found here!"
|
3373 |
msgstr ""
|
3374 |
|
3375 |
+
#: bbp-theme-compat/bbpress/feedback-no-replies.php:13
|
3376 |
+
#: bbp-themes/bbp-twentyten/bbpress/feedback-no-replies.php:13
|
3377 |
+
msgid "Oh bother! No replies were found here!"
|
3378 |
msgstr ""
|
3379 |
|
3380 |
+
#: bbp-theme-compat/bbpress/feedback-no-topics.php:13
|
3381 |
#: bbp-themes/bbp-twentyten/bbpress/feedback-no-topics.php:13
|
3382 |
msgid "Oh bother! No topics were found here!"
|
3383 |
msgstr ""
|
3384 |
|
3385 |
+
#: bbp-theme-compat/bbpress/form-anonymous.php:17
|
3386 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-anonymous.php:17
|
3387 |
+
msgid "Your information:"
|
|
|
|
|
|
|
3388 |
msgstr ""
|
3389 |
|
3390 |
+
#: bbp-theme-compat/bbpress/form-anonymous.php:22
|
3391 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-anonymous.php:22
|
3392 |
+
msgid "Name (required):"
|
3393 |
msgstr ""
|
3394 |
|
3395 |
+
#: bbp-theme-compat/bbpress/form-anonymous.php:27
|
3396 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-anonymous.php:27
|
3397 |
+
msgid "Mail (will not be published) (required):"
|
3398 |
msgstr ""
|
3399 |
|
3400 |
+
#: bbp-theme-compat/bbpress/form-anonymous.php:32
|
3401 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-anonymous.php:32
|
3402 |
+
msgid "Website:"
|
3403 |
msgstr ""
|
3404 |
|
3405 |
+
#: bbp-theme-compat/bbpress/form-forum.php:35
|
3406 |
+
#: bbp-theme-compat/bbpress/form-topic.php:41
|
3407 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-forum.php:35
|
3408 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic.php:41
|
3409 |
+
msgid "Now Editing “%s”"
|
3410 |
msgstr ""
|
3411 |
|
3412 |
+
#: bbp-theme-compat/bbpress/form-forum.php:37
|
3413 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-forum.php:37
|
3414 |
+
msgid "Create New Forum in “%s”"
|
3415 |
msgstr ""
|
3416 |
|
3417 |
+
#: bbp-theme-compat/bbpress/form-forum.php:37
|
3418 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-forum.php:37 bbpress.php:480
|
3419 |
+
msgid "Create New Forum"
|
3420 |
msgstr ""
|
3421 |
|
3422 |
+
#: bbp-theme-compat/bbpress/form-forum.php:47
|
3423 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-forum.php:47
|
3424 |
msgid ""
|
3425 |
+
"This forum is closed to new content, however your account still allows you "
|
3426 |
+
"to do so."
|
3427 |
msgstr ""
|
3428 |
|
3429 |
+
#: bbp-theme-compat/bbpress/form-forum.php:55
|
3430 |
+
#: bbp-theme-compat/bbpress/form-reply.php:44
|
3431 |
+
#: bbp-theme-compat/bbpress/form-topic.php:61
|
3432 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-forum.php:55
|
3433 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-reply.php:44
|
3434 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic.php:61
|
3435 |
+
msgid "Your account has the ability to post unrestricted HTML content."
|
3436 |
msgstr ""
|
3437 |
|
3438 |
+
#: bbp-theme-compat/bbpress/form-forum.php:67
|
3439 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-forum.php:67
|
3440 |
+
msgid "Forum Name (Maximum Length: %d):"
|
3441 |
msgstr ""
|
3442 |
|
3443 |
+
#: bbp-theme-compat/bbpress/form-forum.php:78
|
3444 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-forum.php:78
|
3445 |
+
msgid "Forum Description:"
|
3446 |
msgstr ""
|
3447 |
|
3448 |
+
#: bbp-theme-compat/bbpress/form-forum.php:93
|
3449 |
+
#: bbp-theme-compat/bbpress/form-reply.php:75
|
3450 |
+
#: bbp-theme-compat/bbpress/form-topic.php:101
|
3451 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-forum.php:93
|
3452 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-reply.php:75
|
3453 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic.php:101
|
3454 |
+
msgid ""
|
3455 |
+
"You may use these <abbr title=\"HyperText Markup Language\">HTML</abbr> tags "
|
3456 |
+
"and attributes:"
|
3457 |
msgstr ""
|
3458 |
|
3459 |
+
#: bbp-theme-compat/bbpress/form-forum.php:102
|
3460 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-forum.php:102
|
3461 |
+
msgid "Forum Type:"
|
3462 |
msgstr ""
|
3463 |
|
3464 |
+
#: bbp-theme-compat/bbpress/form-forum.php:129
|
3465 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-forum.php:129 bbpress.php:489
|
3466 |
+
msgid "Parent Forum:"
|
3467 |
msgstr ""
|
3468 |
|
3469 |
+
#: bbp-theme-compat/bbpress/form-forum.php:149
|
3470 |
+
#: bbp-theme-compat/bbpress/form-reply.php:145
|
3471 |
+
#: bbp-theme-compat/bbpress/form-topic-merge.php:90
|
3472 |
+
#: bbp-theme-compat/bbpress/form-topic-split.php:94
|
3473 |
+
#: bbp-theme-compat/bbpress/form-topic.php:194
|
3474 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-forum.php:149
|
3475 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-reply.php:145
|
3476 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-merge.php:90
|
3477 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-split.php:94
|
3478 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic.php:194
|
3479 |
msgid "Submit"
|
3480 |
msgstr ""
|
3481 |
|
3482 |
+
#: bbp-theme-compat/bbpress/form-forum.php:172
|
3483 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-forum.php:172
|
3484 |
+
msgid "The forum ‘%s’ is closed to new content."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3485 |
msgstr ""
|
3486 |
|
3487 |
+
#: bbp-theme-compat/bbpress/form-forum.php:180
|
3488 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-forum.php:180
|
3489 |
+
msgid "You cannot create new forums at this time."
|
3490 |
msgstr ""
|
3491 |
|
3492 |
+
#: bbp-theme-compat/bbpress/form-forum.php:180
|
3493 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-forum.php:180
|
3494 |
+
msgid "You must be logged in to create new forums."
|
3495 |
msgstr ""
|
3496 |
|
3497 |
+
#: bbp-theme-compat/bbpress/form-protected.php:14
|
3498 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-protected.php:14
|
3499 |
+
msgid "Protected"
|
3500 |
msgstr ""
|
3501 |
|
3502 |
+
#: bbp-theme-compat/bbpress/form-reply.php:36
|
3503 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-reply.php:36
|
3504 |
msgid ""
|
3505 |
+
"This topic is marked as closed to new replies, however your posting "
|
3506 |
+
"capabilities still allow you to do so."
|
|
|
|
|
|
|
|
|
|
|
3507 |
msgstr ""
|
3508 |
|
3509 |
+
#: bbp-theme-compat/bbpress/form-reply.php:60
|
3510 |
+
#: bbp-theme-compat/bbpress/form-topic.php:86
|
3511 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-reply.php:60
|
3512 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic.php:86
|
3513 |
+
msgid "Reply:"
|
3514 |
msgstr ""
|
3515 |
|
3516 |
+
#: bbp-theme-compat/bbpress/form-reply.php:84
|
3517 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-reply.php:84
|
3518 |
+
msgid "Tags:"
|
|
|
3519 |
msgstr ""
|
3520 |
|
3521 |
+
#: bbp-theme-compat/bbpress/form-reply.php:100
|
3522 |
+
#: bbp-theme-compat/bbpress/form-topic.php:154
|
3523 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-reply.php:100
|
3524 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic.php:154
|
3525 |
+
msgid "Notify the author of follow-up replies via email"
|
3526 |
msgstr ""
|
3527 |
|
3528 |
+
#: bbp-theme-compat/bbpress/form-reply.php:104
|
3529 |
+
#: bbp-theme-compat/bbpress/form-topic.php:158
|
3530 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-reply.php:104
|
3531 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic.php:158
|
3532 |
+
msgid "Notify me of follow-up replies via email"
|
3533 |
msgstr ""
|
3534 |
|
3535 |
+
#: bbp-theme-compat/bbpress/form-reply.php:119
|
3536 |
+
#: bbp-theme-compat/bbpress/form-topic.php:172
|
3537 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-reply.php:119
|
3538 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic.php:172
|
3539 |
+
msgid "Revision"
|
3540 |
msgstr ""
|
3541 |
|
3542 |
+
#: bbp-theme-compat/bbpress/form-reply.php:122
|
3543 |
+
#: bbp-theme-compat/bbpress/form-topic.php:175
|
3544 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-reply.php:122
|
3545 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic.php:175
|
3546 |
+
msgid "Keep a log of this edit:"
|
3547 |
msgstr ""
|
3548 |
|
3549 |
+
#: bbp-theme-compat/bbpress/form-reply.php:126
|
3550 |
+
#: bbp-theme-compat/bbpress/form-topic.php:179
|
3551 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-reply.php:126
|
3552 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic.php:179
|
3553 |
+
msgid "Optional reason for editing:"
|
3554 |
msgstr ""
|
3555 |
|
3556 |
+
#: bbp-theme-compat/bbpress/form-reply.php:168
|
3557 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-reply.php:168
|
3558 |
+
msgid "The topic ‘%s’ is closed to new replies."
|
3559 |
msgstr ""
|
3560 |
|
3561 |
+
#: bbp-theme-compat/bbpress/form-reply.php:176
|
3562 |
+
#: bbp-theme-compat/bbpress/form-topic.php:217
|
3563 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-reply.php:176
|
3564 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic.php:217
|
3565 |
+
msgid "The forum ‘%s’ is closed to new topics and replies."
|
3566 |
msgstr ""
|
3567 |
|
3568 |
+
#: bbp-theme-compat/bbpress/form-reply.php:184
|
3569 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-reply.php:184
|
3570 |
+
msgid "You cannot reply to this topic."
|
3571 |
msgstr ""
|
3572 |
|
3573 |
+
#: bbp-theme-compat/bbpress/form-reply.php:184
|
3574 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-reply.php:184
|
3575 |
+
msgid "You must be logged in to reply to this topic."
|
3576 |
msgstr ""
|
3577 |
|
3578 |
+
#: bbp-theme-compat/bbpress/form-topic-merge.php:24
|
3579 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-merge.php:24
|
3580 |
msgid "Merge topic \"%s\""
|
3581 |
msgstr ""
|
3582 |
|
3583 |
+
#: bbp-theme-compat/bbpress/form-topic-merge.php:29
|
3584 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-merge.php:29
|
3585 |
msgid ""
|
3586 |
"Select the topic to merge this one into. The destination topic will remain "
|
3587 |
"the lead topic, and this one will change into a reply."
|
3588 |
msgstr ""
|
3589 |
|
3590 |
+
#: bbp-theme-compat/bbpress/form-topic-merge.php:30
|
3591 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-merge.php:30
|
3592 |
msgid ""
|
3593 |
"To keep this topic as the lead, go to the other topic and use the merge tool "
|
3594 |
"from there instead."
|
3595 |
msgstr ""
|
3596 |
|
3597 |
+
#: bbp-theme-compat/bbpress/form-topic-merge.php:34
|
3598 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-merge.php:34
|
3599 |
msgid ""
|
3600 |
"All replies within both topics will be merged chronologically. The order of "
|
3601 |
"the merged replies is based on the time and date they were posted. If the "
|
3603 |
"to second earlier than this one."
|
3604 |
msgstr ""
|
3605 |
|
3606 |
+
#: bbp-theme-compat/bbpress/form-topic-merge.php:38
|
3607 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-merge.php:38
|
3608 |
msgid "Destination"
|
3609 |
msgstr ""
|
3610 |
|
3611 |
+
#: bbp-theme-compat/bbpress/form-topic-merge.php:42
|
3612 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-merge.php:42
|
3613 |
msgid "Merge with this topic:"
|
3614 |
msgstr ""
|
3615 |
|
3616 |
+
#: bbp-theme-compat/bbpress/form-topic-merge.php:51
|
3617 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-merge.php:51
|
3618 |
msgid "No topics were found to which the topic could be merged to!"
|
3619 |
msgstr ""
|
3620 |
|
3621 |
+
#: bbp-theme-compat/bbpress/form-topic-merge.php:57
|
3622 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-merge.php:57
|
3623 |
msgid "There are no other topics in this forum to merge with."
|
3624 |
msgstr ""
|
3625 |
|
3626 |
+
#: bbp-theme-compat/bbpress/form-topic-merge.php:65
|
3627 |
+
#: bbp-theme-compat/bbpress/form-topic-split.php:69
|
3628 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-merge.php:65
|
3629 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-split.php:69
|
3630 |
msgid "Topic Extras"
|
3631 |
msgstr ""
|
3632 |
|
3633 |
+
#: bbp-theme-compat/bbpress/form-topic-merge.php:72
|
3634 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-merge.php:72
|
3635 |
msgid "Merge topic subscribers"
|
3636 |
msgstr ""
|
3637 |
|
3638 |
+
#: bbp-theme-compat/bbpress/form-topic-merge.php:77
|
3639 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-merge.php:77
|
3640 |
msgid "Merge topic favoriters"
|
3641 |
msgstr ""
|
3642 |
|
3643 |
+
#: bbp-theme-compat/bbpress/form-topic-merge.php:80
|
3644 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-merge.php:80
|
3645 |
msgid "Merge topic tags"
|
3646 |
msgstr ""
|
3647 |
|
3648 |
+
#: bbp-theme-compat/bbpress/form-topic-merge.php:86
|
3649 |
+
#: bbp-theme-compat/bbpress/form-topic-split.php:90
|
3650 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-merge.php:86
|
3651 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-split.php:90
|
3652 |
msgid "<strong>WARNING:</strong> This process cannot be undone."
|
3653 |
msgstr ""
|
3654 |
|
3655 |
+
#: bbp-theme-compat/bbpress/form-topic-merge.php:103
|
3656 |
+
#: bbp-theme-compat/bbpress/form-topic-split.php:107
|
3657 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-merge.php:103
|
3658 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-split.php:107
|
3659 |
msgid "You do not have the permissions to edit this topic!"
|
3660 |
msgstr ""
|
3661 |
|
3662 |
+
#: bbp-theme-compat/bbpress/form-topic-merge.php:103
|
3663 |
+
#: bbp-theme-compat/bbpress/form-topic-split.php:107
|
3664 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-merge.php:103
|
3665 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-split.php:107
|
3666 |
msgid "You cannot edit this topic."
|
3667 |
msgstr ""
|
3668 |
|
3669 |
+
#: bbp-theme-compat/bbpress/form-topic-split.php:24
|
3670 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-split.php:24
|
|
|
|
|
|
|
|
|
3671 |
msgid "Split topic \"%s\""
|
3672 |
msgstr ""
|
3673 |
|
3674 |
+
#: bbp-theme-compat/bbpress/form-topic-split.php:29
|
3675 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-split.php:29
|
3676 |
msgid ""
|
3677 |
"When you split a topic, you are slicing it in half starting with the reply "
|
3678 |
"you just selected. Choose to use that reply as a new topic with a new title, "
|
3679 |
"or merge those replies into an existing topic."
|
3680 |
msgstr ""
|
3681 |
|
3682 |
+
#: bbp-theme-compat/bbpress/form-topic-split.php:33
|
3683 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-split.php:33
|
3684 |
msgid ""
|
3685 |
"If you use the existing topic option, replies within both topics will be "
|
3686 |
"merged chronologically. The order of the merged replies is based on the time "
|
3687 |
"and date they were posted."
|
3688 |
msgstr ""
|
3689 |
|
3690 |
+
#: bbp-theme-compat/bbpress/form-topic-split.php:37
|
3691 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-split.php:37
|
3692 |
msgid "Split Method"
|
3693 |
msgstr ""
|
3694 |
|
3695 |
+
#: bbp-theme-compat/bbpress/form-topic-split.php:41
|
3696 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-split.php:41
|
3697 |
msgid "New topic in <strong>%s</strong> titled:"
|
3698 |
msgstr ""
|
3699 |
|
3700 |
+
#: bbp-theme-compat/bbpress/form-topic-split.php:42
|
3701 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-split.php:42
|
3702 |
msgid "Split: %s"
|
3703 |
msgstr ""
|
3704 |
|
3705 |
+
#: bbp-theme-compat/bbpress/form-topic-split.php:49
|
3706 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-split.php:49
|
3707 |
msgid "Use an existing topic in this forum:"
|
3708 |
msgstr ""
|
3709 |
|
3710 |
+
#: bbp-theme-compat/bbpress/form-topic-split.php:58
|
3711 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-split.php:58
|
3712 |
msgid "No other topics found!"
|
3713 |
msgstr ""
|
3714 |
|
3715 |
+
#: bbp-theme-compat/bbpress/form-topic-split.php:76
|
3716 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-split.php:76
|
3717 |
msgid "Copy subscribers to the new topic"
|
3718 |
msgstr ""
|
3719 |
|
3720 |
+
#: bbp-theme-compat/bbpress/form-topic-split.php:81
|
3721 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-split.php:81
|
3722 |
msgid "Copy favoriters to the new topic"
|
3723 |
msgstr ""
|
3724 |
|
3725 |
+
#: bbp-theme-compat/bbpress/form-topic-split.php:84
|
3726 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-split.php:84
|
3727 |
msgid "Copy topic tags to the new topic"
|
3728 |
msgstr ""
|
3729 |
|
3730 |
+
#: bbp-theme-compat/bbpress/form-topic-tag.php:18
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3731 |
#: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:18
|
3732 |
msgid "Manage Tag: \"%s\""
|
3733 |
msgstr ""
|
3734 |
|
3735 |
+
#: bbp-theme-compat/bbpress/form-topic-tag.php:22
|
3736 |
#: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:22
|
3737 |
msgid "Rename"
|
3738 |
msgstr ""
|
3739 |
|
3740 |
+
#: bbp-theme-compat/bbpress/form-topic-tag.php:25
|
3741 |
#: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:25
|
3742 |
msgid "Leave the slug empty to have one automatically generated."
|
3743 |
msgstr ""
|
3744 |
|
3745 |
+
#: bbp-theme-compat/bbpress/form-topic-tag.php:29
|
3746 |
#: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:29
|
3747 |
msgid ""
|
3748 |
"Changing the slug affects its permalink. Any links to the old slug will stop "
|
3749 |
"working."
|
3750 |
msgstr ""
|
3751 |
|
3752 |
+
#: bbp-theme-compat/bbpress/form-topic-tag.php:35
|
3753 |
#: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:35
|
3754 |
msgid "Name:"
|
3755 |
msgstr ""
|
3756 |
|
3757 |
+
#: bbp-theme-compat/bbpress/form-topic-tag.php:40
|
3758 |
#: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:40
|
3759 |
msgid "Slug:"
|
3760 |
msgstr ""
|
3761 |
|
3762 |
+
#: bbp-theme-compat/bbpress/form-topic-tag.php:45
|
3763 |
#: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:45
|
3764 |
msgid "Update"
|
3765 |
msgstr ""
|
3766 |
|
3767 |
+
#: bbp-theme-compat/bbpress/form-topic-tag.php:62
|
3768 |
#: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:62
|
3769 |
msgid "Merging tags together cannot be undone."
|
3770 |
msgstr ""
|
3771 |
|
3772 |
+
#: bbp-theme-compat/bbpress/form-topic-tag.php:68
|
3773 |
#: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:68
|
3774 |
msgid "Existing tag:"
|
3775 |
msgstr ""
|
3776 |
|
3777 |
+
#: bbp-theme-compat/bbpress/form-topic-tag.php:73
|
3778 |
#: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:74
|
3779 |
msgid ""
|
3780 |
"Are you sure you want to merge the \"%s\" tag into the tag you specified?"
|
3781 |
msgstr ""
|
3782 |
|
3783 |
+
#: bbp-theme-compat/bbpress/form-topic-tag.php:91
|
3784 |
#: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:92
|
3785 |
msgid "This does not delete your topics. Only the tag itself is deleted."
|
3786 |
msgstr ""
|
3787 |
|
3788 |
+
#: bbp-theme-compat/bbpress/form-topic-tag.php:94
|
3789 |
#: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:95
|
3790 |
msgid "Deleting a tag cannot be undone."
|
3791 |
msgstr ""
|
3792 |
|
3793 |
+
#: bbp-theme-compat/bbpress/form-topic-tag.php:95
|
3794 |
#: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:96
|
3795 |
msgid "Any links to this tag will no longer function."
|
3796 |
msgstr ""
|
3797 |
|
3798 |
+
#: bbp-theme-compat/bbpress/form-topic-tag.php:101
|
3799 |
#: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:103
|
3800 |
msgid ""
|
3801 |
"Are you sure you want to delete the \"%s\" tag? This is permanent and cannot "
|
3802 |
"be undone."
|
3803 |
msgstr ""
|
3804 |
|
3805 |
+
#: bbp-theme-compat/bbpress/form-topic.php:43
|
3806 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic.php:43
|
3807 |
+
msgid "Create New Topic in “%s”"
|
3808 |
msgstr ""
|
3809 |
|
3810 |
+
#: bbp-theme-compat/bbpress/form-topic.php:43
|
3811 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic.php:43 bbpress.php:537
|
3812 |
+
msgid "Create New Topic"
|
3813 |
msgstr ""
|
3814 |
|
3815 |
+
#: bbp-theme-compat/bbpress/form-topic.php:53
|
3816 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic.php:53
|
3817 |
+
msgid ""
|
3818 |
+
"This forum is marked as closed to new topics, however your posting "
|
3819 |
+
"capabilities still allow you to do so."
|
3820 |
msgstr ""
|
3821 |
|
3822 |
+
#: bbp-theme-compat/bbpress/form-topic.php:75
|
3823 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic.php:75
|
3824 |
+
msgid "Topic Title (Maximum Length: %d):"
|
3825 |
+
msgstr ""
|
3826 |
+
|
3827 |
+
#: bbp-theme-compat/bbpress/form-topic.php:110
|
3828 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic.php:110
|
3829 |
+
msgid "Topic Tags:"
|
3830 |
+
msgstr ""
|
3831 |
+
|
3832 |
+
#: bbp-theme-compat/bbpress/form-topic.php:135
|
3833 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic.php:135
|
3834 |
+
msgid "Topic Type:"
|
3835 |
+
msgstr ""
|
3836 |
+
|
3837 |
+
#: bbp-theme-compat/bbpress/form-topic.php:225
|
3838 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic.php:225
|
3839 |
+
msgid "You cannot create new topics at this time."
|
3840 |
+
msgstr ""
|
3841 |
+
|
3842 |
+
#: bbp-theme-compat/bbpress/form-topic.php:225
|
3843 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic.php:225
|
3844 |
+
msgid "You must be logged in to create new topics."
|
3845 |
+
msgstr ""
|
3846 |
+
|
3847 |
+
#: bbp-theme-compat/bbpress/form-user-edit.php:24
|
3848 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:24
|
3849 |
+
msgid "First Name"
|
3850 |
+
msgstr ""
|
3851 |
+
|
3852 |
+
#: bbp-theme-compat/bbpress/form-user-edit.php:29
|
3853 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:29
|
3854 |
+
msgid "Last Name"
|
3855 |
+
msgstr ""
|
3856 |
+
|
3857 |
+
#: bbp-theme-compat/bbpress/form-user-edit.php:34
|
3858 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:34
|
3859 |
+
msgid "Nickname"
|
3860 |
+
msgstr ""
|
3861 |
+
|
3862 |
+
#: bbp-theme-compat/bbpress/form-user-edit.php:39
|
3863 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:39
|
3864 |
+
msgid "Display name publicly as"
|
3865 |
+
msgstr ""
|
3866 |
+
|
3867 |
+
#: bbp-theme-compat/bbpress/form-user-edit.php:49
|
3868 |
+
#: bbp-theme-compat/bbpress/form-user-edit.php:52
|
3869 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:49
|
3870 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:52
|
3871 |
+
msgid "Contact Info"
|
3872 |
+
msgstr ""
|
3873 |
+
|
3874 |
+
#: bbp-theme-compat/bbpress/form-user-edit.php:74
|
3875 |
+
#: bbp-theme-compat/bbpress/form-user-edit.php:77
|
3876 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:74
|
3877 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:77
|
3878 |
+
msgid "About Yourself"
|
3879 |
+
msgstr ""
|
3880 |
+
|
3881 |
+
#: bbp-theme-compat/bbpress/form-user-edit.php:74
|
3882 |
+
#: bbp-theme-compat/bbpress/form-user-edit.php:77
|
3883 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:74
|
3884 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:77
|
3885 |
+
msgid "About the user"
|
3886 |
+
msgstr ""
|
3887 |
+
|
3888 |
+
#: bbp-theme-compat/bbpress/form-user-edit.php:82
|
3889 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:82
|
3890 |
+
msgid "Biographical Info"
|
3891 |
+
msgstr ""
|
3892 |
+
|
3893 |
+
#: bbp-theme-compat/bbpress/form-user-edit.php:84
|
3894 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:84
|
3895 |
+
msgid ""
|
3896 |
+
"Share a little biographical information to fill out your profile. This may "
|
3897 |
+
"be shown publicly."
|
3898 |
+
msgstr ""
|
3899 |
+
|
3900 |
+
#: bbp-theme-compat/bbpress/form-user-edit.php:91
|
3901 |
+
#: bbp-theme-compat/bbpress/form-user-edit.php:94
|
3902 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:91
|
3903 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:94
|
3904 |
+
msgid "Account"
|
3905 |
+
msgstr ""
|
3906 |
+
|
3907 |
+
#: bbp-theme-compat/bbpress/form-user-edit.php:101
|
3908 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:101
|
3909 |
+
msgid "Usernames cannot be changed."
|
3910 |
+
msgstr ""
|
3911 |
+
|
3912 |
+
#: bbp-theme-compat/bbpress/form-user-edit.php:117
|
3913 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:117
|
3914 |
+
msgid ""
|
3915 |
+
"There is a pending email address change to <code>%1$s</code>. <a href=\"%2$s"
|
3916 |
+
"\">Cancel</a>"
|
3917 |
msgstr ""
|
3918 |
|
3919 |
+
#: bbp-theme-compat/bbpress/form-user-edit.php:126
|
3920 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:126
|
3921 |
+
msgid "New Password"
|
3922 |
+
msgstr ""
|
3923 |
+
|
3924 |
+
#: bbp-theme-compat/bbpress/form-user-edit.php:129
|
3925 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:129
|
3926 |
+
msgid ""
|
3927 |
+
"If you would like to change the password type a new one. Otherwise leave "
|
3928 |
+
"this blank."
|
3929 |
+
msgstr ""
|
3930 |
+
|
3931 |
+
#: bbp-theme-compat/bbpress/form-user-edit.php:132
|
3932 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:132
|
3933 |
+
msgid "Type your new password again."
|
3934 |
+
msgstr ""
|
3935 |
+
|
3936 |
+
#: bbp-theme-compat/bbpress/form-user-edit.php:135
|
3937 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:135
|
3938 |
+
msgid ""
|
3939 |
+
"Hint: The password should be at least seven characters long. To make it "
|
3940 |
+
"stronger, use upper and lower case letters, numbers and symbols like ! \" ? "
|
3941 |
+
"$ % ^ & )."
|
3942 |
+
msgstr ""
|
3943 |
+
|
3944 |
+
#: bbp-theme-compat/bbpress/form-user-edit.php:142
|
3945 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:142
|
3946 |
+
msgid "Role:"
|
3947 |
+
msgstr ""
|
3948 |
+
|
3949 |
+
#: bbp-theme-compat/bbpress/form-user-edit.php:153
|
3950 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:153
|
3951 |
+
msgid "Super Admin"
|
3952 |
+
msgstr ""
|
3953 |
+
|
3954 |
+
#: bbp-theme-compat/bbpress/form-user-edit.php:156
|
3955 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:156
|
3956 |
+
msgid "Grant this user super admin privileges for the Network."
|
3957 |
+
msgstr ""
|
3958 |
+
|
3959 |
+
#: bbp-theme-compat/bbpress/form-user-edit.php:174
|
3960 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:174
|
3961 |
+
msgid "Update Profile"
|
3962 |
+
msgstr ""
|
3963 |
+
|
3964 |
+
#: bbp-theme-compat/bbpress/form-user-edit.php:174
|
3965 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:174
|
3966 |
+
msgid "Update User"
|
3967 |
+
msgstr ""
|
3968 |
+
|
3969 |
+
#: bbp-theme-compat/bbpress/form-user-login.php:28
|
3970 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-login.php:28
|
3971 |
+
msgid "Keep me signed in"
|
3972 |
+
msgstr ""
|
3973 |
+
|
3974 |
+
#: bbp-theme-compat/bbpress/form-user-lost-pass.php:18
|
3975 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-lost-pass.php:18
|
3976 |
+
msgid "Username or Email"
|
3977 |
+
msgstr ""
|
3978 |
+
|
3979 |
+
#: bbp-theme-compat/bbpress/form-user-lost-pass.php:27
|
3980 |
+
msgid "Reset My Password"
|
3981 |
+
msgstr ""
|
3982 |
+
|
3983 |
+
#: bbp-theme-compat/bbpress/form-user-register.php:14
|
3984 |
#: bbp-themes/bbp-twentyten/bbpress/form-user-register.php:14
|
3985 |
msgid "Create an Account"
|
3986 |
msgstr ""
|
3987 |
|
3988 |
+
#: bbp-theme-compat/bbpress/form-user-register.php:17
|
3989 |
#: bbp-themes/bbp-twentyten/bbpress/form-user-register.php:17
|
3990 |
msgid "Your username must be unique, and cannot be changed later."
|
3991 |
msgstr ""
|
3992 |
|
3993 |
+
#: bbp-theme-compat/bbpress/form-user-register.php:18
|
3994 |
#: bbp-themes/bbp-twentyten/bbpress/form-user-register.php:18
|
3995 |
msgid ""
|
3996 |
"We use your email address to email you a secure password and verify your "
|
3997 |
"account."
|
3998 |
msgstr ""
|
3999 |
|
4000 |
+
#: bbp-theme-compat/bbpress/loop-single-topic.php:30
|
4001 |
#: bbp-themes/bbp-twentyten/bbpress/loop-single-topic.php:30
|
4002 |
msgid "Started by: %1$s"
|
4003 |
msgstr ""
|
4004 |
|
4005 |
+
#: bbp-theme-compat/bbpress/loop-single-topic.php:38
|
4006 |
#: bbp-themes/bbp-twentyten/bbpress/loop-single-topic.php:38
|
4007 |
msgid "in: <a href=\"%1$s\">%2$s</a>"
|
4008 |
msgstr ""
|
4009 |
|
4010 |
+
#: bbp-theme-compat/bbpress/user-details.php:16
|
4011 |
+
#: bbp-themes/bbp-twentyten/bbpress/user-details.php:16
|
4012 |
+
msgid "Profile: %s"
|
4013 |
msgstr ""
|
4014 |
|
4015 |
+
#: bbp-theme-compat/bbpress/user-details.php:20
|
4016 |
+
#: bbp-themes/bbp-twentyten/bbpress/user-details.php:20
|
4017 |
+
msgid "Edit Profile of User %s"
|
4018 |
msgstr ""
|
4019 |
|
4020 |
+
#: bbp-theme-compat/bbpress/user-details.php:33
|
4021 |
+
#: bbp-themes/bbp-twentyten/bbpress/user-details.php:33
|
4022 |
+
msgid "About %s"
|
4023 |
msgstr ""
|
4024 |
|
4025 |
+
#: bbp-theme-compat/bbpress/user-favorites.php:17
|
4026 |
+
#: bbp-themes/bbp-twentyten/bbpress/user-favorites.php:17
|
4027 |
+
msgid "Favorite Forum Topics"
|
|
|
4028 |
msgstr ""
|
4029 |
|
4030 |
+
#: bbp-theme-compat/bbpress/user-favorites.php:30
|
4031 |
+
#: bbp-themes/bbp-twentyten/bbpress/user-favorites.php:28
|
4032 |
+
msgid "You currently have no favorite topics."
|
4033 |
msgstr ""
|
4034 |
|
4035 |
+
#: bbp-theme-compat/bbpress/user-favorites.php:30
|
4036 |
+
#: bbp-themes/bbp-twentyten/bbpress/user-favorites.php:28
|
4037 |
+
msgid "This user has no favorite topics."
|
4038 |
msgstr ""
|
4039 |
|
4040 |
+
#: bbp-theme-compat/bbpress/user-subscriptions.php:21
|
4041 |
+
#: bbp-themes/bbp-twentyten/bbpress/user-subscriptions.php:21
|
4042 |
+
msgid "Subscribed Forum Topics"
|
4043 |
msgstr ""
|
4044 |
|
4045 |
+
#: bbp-theme-compat/bbpress/user-subscriptions.php:34
|
4046 |
+
#: bbp-themes/bbp-twentyten/bbpress/user-subscriptions.php:32
|
4047 |
+
msgid "You are not currently subscribed to any topics."
|
4048 |
msgstr ""
|
4049 |
|
4050 |
+
#: bbp-theme-compat/bbpress/user-subscriptions.php:34
|
4051 |
+
#: bbp-themes/bbp-twentyten/bbpress/user-subscriptions.php:32
|
4052 |
+
msgid "This user is not currently subscribed to any topics."
|
4053 |
msgstr ""
|
4054 |
|
4055 |
+
#: bbp-theme-compat/bbpress/user-topics-created.php:17
|
4056 |
+
#: bbp-themes/bbp-twentyten/bbpress/user-topics-created.php:17
|
4057 |
+
msgid "Forum Topics Created"
|
4058 |
msgstr ""
|
4059 |
|
4060 |
+
#: bbp-theme-compat/bbpress/user-topics-created.php:30
|
4061 |
+
#: bbp-themes/bbp-twentyten/bbpress/user-topics-created.php:28
|
4062 |
+
msgid "You have not created any topics."
|
4063 |
msgstr ""
|
4064 |
|
4065 |
+
#: bbp-theme-compat/bbpress/user-topics-created.php:30
|
4066 |
+
#: bbp-themes/bbp-twentyten/bbpress/user-topics-created.php:28
|
4067 |
+
msgid "This user has not created any topics."
|
4068 |
msgstr ""
|
4069 |
|
4070 |
+
#: bbp-theme-compat/bbpress-functions.php:68 bbpress.php:376
|
4071 |
+
msgid "bbPress Default"
|
4072 |
msgstr ""
|
4073 |
|
4074 |
+
#: bbp-theme-compat/bbpress-functions.php:251
|
4075 |
+
#: bbp-themes/bbp-twentyten/bbpress-functions.php:202
|
4076 |
+
msgid "favorites"
|
4077 |
msgstr ""
|
4078 |
|
4079 |
+
#: bbp-theme-compat/bbpress-functions.php:252
|
4080 |
+
#: bbp-themes/bbp-twentyten/bbpress-functions.php:203
|
4081 |
+
msgid "?"
|
4082 |
msgstr ""
|
4083 |
|
4084 |
+
#: bbp-theme-compat/bbpress-functions.php:253
|
4085 |
+
#: bbp-themes/bbp-twentyten/bbpress-functions.php:204
|
4086 |
+
msgid "This topic is one of your %favLinkYes% [%favDel%]"
|
4087 |
msgstr ""
|
4088 |
|
4089 |
+
#: bbp-theme-compat/bbpress-functions.php:254
|
4090 |
+
#: bbp-themes/bbp-twentyten/bbpress-functions.php:205
|
4091 |
+
msgid "%favAdd% (%favLinkNo%)"
|
4092 |
+
msgstr ""
|
4093 |
+
|
4094 |
+
#: bbp-theme-compat/extras/page-forum-statistics.php:26
|
4095 |
+
#: bbp-themes/bbp-twentyten/page-forum-statistics.php:27
|
4096 |
+
msgid "<p>Here are the statistics and popular topics of our forums.</p>"
|
4097 |
+
msgstr ""
|
4098 |
+
|
4099 |
+
#: bbp-theme-compat/extras/page-forum-statistics.php:34
|
4100 |
+
#: bbp-themes/bbp-twentyten/page-forum-statistics.php:33
|
4101 |
+
msgid "Registered Users"
|
4102 |
+
msgstr ""
|
4103 |
+
|
4104 |
+
#: bbp-theme-compat/extras/page-forum-statistics.php:54
|
4105 |
+
#: bbp-themes/bbp-twentyten/page-forum-statistics.php:53 bbpress.php:744
|
4106 |
+
msgid "Topic Tags"
|
4107 |
+
msgstr ""
|
4108 |
+
|
4109 |
+
#: bbp-theme-compat/extras/page-forum-statistics.php:61
|
4110 |
+
#: bbp-themes/bbp-twentyten/page-forum-statistics.php:60
|
4111 |
+
msgid "Empty Topic Tags"
|
4112 |
+
msgstr ""
|
4113 |
+
|
4114 |
+
#: bbp-theme-compat/extras/page-forum-statistics.php:70
|
4115 |
+
#: bbp-themes/bbp-twentyten/page-forum-statistics.php:69
|
4116 |
+
msgid "Hidden Topics"
|
4117 |
+
msgstr ""
|
4118 |
+
|
4119 |
+
#: bbp-theme-compat/extras/page-forum-statistics.php:81
|
4120 |
+
#: bbp-themes/bbp-twentyten/page-forum-statistics.php:80
|
4121 |
+
msgid "Hidden Replies"
|
4122 |
+
msgstr ""
|
4123 |
+
|
4124 |
+
#: bbp-theme-compat/extras/page-forum-statistics.php:100
|
4125 |
+
#: bbp-themes/bbp-twentyten/page-forum-statistics.php:99
|
4126 |
+
msgid "Popular Topics"
|
4127 |
+
msgstr ""
|
4128 |
+
|
4129 |
+
#: bbp-theme-compat/extras/page-topic-tags.php:22
|
4130 |
+
#: bbp-themes/bbp-twentyten/page-topic-tags.php:23
|
4131 |
+
msgid ""
|
4132 |
+
"<p>This is a collection of tags that are currently popular on our forums.</p>"
|
4133 |
msgstr ""
|
4134 |
|
4135 |
#: bbp-themes/bbp-twentyten/bbpress/form-user-lost-pass.php:27
|
4136 |
msgid "Reset my password"
|
4137 |
msgstr ""
|
4138 |
|
4139 |
+
#: bbp-themes/bbp-twentyten/bbpress/loop-topics.php:21
|
4140 |
+
msgid "Remove"
|
4141 |
msgstr ""
|
4142 |
|
4143 |
+
#: bbp-themes/bbp-twentyten/bbpress-functions.php:60 bbpress.php:386
|
4144 |
+
msgid "Twenty Ten (bbPress)"
|
4145 |
msgstr ""
|
4146 |
|
4147 |
+
#: bbp-themes/bbp-twentyten/single-reply.php:50
|
4148 |
+
msgid "Posted on %1$s at %2$s"
|
4149 |
+
msgstr ""
|
4150 |
+
|
4151 |
+
#: bbpress.php:130 bbpress.php:137
|
4152 |
+
msgid "Cheatin’ huh?"
|
4153 |
+
msgstr ""
|
4154 |
+
|
4155 |
+
#: bbpress.php:479 bbpress.php:483
|
4156 |
+
msgid "New Forum"
|
4157 |
msgstr ""
|
4158 |
|
4159 |
+
#: bbpress.php:482
|
4160 |
msgid "Edit Forum"
|
4161 |
msgstr ""
|
4162 |
|
4163 |
+
#: bbpress.php:484 bbpress.php:485
|
4164 |
msgid "View Forum"
|
4165 |
msgstr ""
|
4166 |
|
4167 |
+
#: bbpress.php:486
|
4168 |
msgid "Search Forums"
|
4169 |
msgstr ""
|
4170 |
|
4171 |
+
#: bbpress.php:487
|
4172 |
+
msgid "No forums found"
|
4173 |
msgstr ""
|
4174 |
|
4175 |
+
#: bbpress.php:488
|
4176 |
+
msgid "No forums found in Trash"
|
4177 |
msgstr ""
|
4178 |
|
4179 |
+
#: bbpress.php:512
|
4180 |
msgid "bbPress Forums"
|
4181 |
msgstr ""
|
4182 |
|
4183 |
+
#: bbpress.php:536 bbpress.php:540
|
4184 |
msgid "New Topic"
|
4185 |
msgstr ""
|
4186 |
|
4187 |
+
#: bbpress.php:539
|
4188 |
msgid "Edit Topic"
|
4189 |
msgstr ""
|
4190 |
|
4191 |
+
#: bbpress.php:541 bbpress.php:542
|
4192 |
msgid "View Topic"
|
4193 |
msgstr ""
|
4194 |
|
4195 |
+
#: bbpress.php:543
|
4196 |
msgid "Search Topics"
|
4197 |
msgstr ""
|
4198 |
|
4199 |
+
#: bbpress.php:544
|
4200 |
msgid "No topics found"
|
4201 |
msgstr ""
|
4202 |
|
4203 |
+
#: bbpress.php:545
|
4204 |
msgid "No topics found in Trash"
|
4205 |
msgstr ""
|
4206 |
|
4207 |
+
#: bbpress.php:569
|
4208 |
msgid "bbPress Topics"
|
4209 |
msgstr ""
|
4210 |
|
4211 |
+
#: bbpress.php:593 bbpress.php:597
|
4212 |
msgid "New Reply"
|
4213 |
msgstr ""
|
4214 |
|
4215 |
+
#: bbpress.php:594
|
4216 |
msgid "Create New Reply"
|
4217 |
msgstr ""
|
4218 |
|
4219 |
+
#: bbpress.php:596
|
4220 |
msgid "Edit Reply"
|
4221 |
msgstr ""
|
4222 |
|
4223 |
+
#: bbpress.php:598 bbpress.php:599
|
4224 |
msgid "View Reply"
|
4225 |
msgstr ""
|
4226 |
|
4227 |
+
#: bbpress.php:600
|
4228 |
msgid "Search Replies"
|
4229 |
msgstr ""
|
4230 |
|
4231 |
+
#: bbpress.php:601
|
4232 |
msgid "No replies found"
|
4233 |
msgstr ""
|
4234 |
|
4235 |
+
#: bbpress.php:602
|
4236 |
msgid "No replies found in Trash"
|
4237 |
msgstr ""
|
4238 |
|
4239 |
+
#: bbpress.php:603
|
4240 |
msgid "Topic:"
|
4241 |
msgstr ""
|
4242 |
|
4243 |
+
#: bbpress.php:626
|
4244 |
msgid "bbPress Replies"
|
4245 |
msgstr ""
|
4246 |
|
4247 |
+
#: bbpress.php:661
|
4248 |
msgctxt "post"
|
4249 |
msgid "Closed"
|
4250 |
msgstr ""
|
4251 |
|
4252 |
+
#: bbpress.php:662
|
4253 |
msgctxt "bbpress"
|
4254 |
msgid "Closed <span class=\"count\">(%s)</span>"
|
4255 |
msgid_plural "Closed <span class=\"count\">(%s)</span>"
|
4256 |
msgstr[0] ""
|
4257 |
msgstr[1] ""
|
4258 |
|
4259 |
+
#: bbpress.php:672
|
4260 |
msgctxt "post"
|
4261 |
msgid "Spam"
|
4262 |
msgstr ""
|
4263 |
|
4264 |
+
#: bbpress.php:673
|
4265 |
msgctxt "bbpress"
|
4266 |
msgid "Spam <span class=\"count\">(%s)</span>"
|
4267 |
msgid_plural "Spam <span class=\"count\">(%s)</span>"
|
4268 |
msgstr[0] ""
|
4269 |
msgstr[1] ""
|
4270 |
|
4271 |
+
#: bbpress.php:685
|
4272 |
msgctxt "post"
|
4273 |
msgid "Orphan"
|
4274 |
msgstr ""
|
4275 |
|
4276 |
+
#: bbpress.php:686
|
4277 |
msgctxt "bbpress"
|
4278 |
msgid "Orphan <span class=\"count\">(%s)</span>"
|
4279 |
msgid_plural "Orphans <span class=\"count\">(%s)</span>"
|
4280 |
msgstr[0] ""
|
4281 |
msgstr[1] ""
|
4282 |
|
4283 |
+
#: bbpress.php:698
|
4284 |
msgctxt "post"
|
4285 |
msgid "Hidden"
|
4286 |
msgstr ""
|
4287 |
|
4288 |
+
#: bbpress.php:699
|
4289 |
msgctxt "bbpress"
|
4290 |
msgid "Hidden <span class=\"count\">(%s)</span>"
|
4291 |
msgid_plural "Hidden <span class=\"count\">(%s)</span>"
|
4292 |
msgstr[0] ""
|
4293 |
msgstr[1] ""
|
4294 |
|
4295 |
+
#: bbpress.php:746
|
4296 |
msgid "Search Tags"
|
4297 |
msgstr ""
|
4298 |
|
4299 |
+
#: bbpress.php:747
|
4300 |
msgid "Popular Tags"
|
4301 |
msgstr ""
|
4302 |
|
4303 |
+
#: bbpress.php:748
|
4304 |
msgid "All Tags"
|
4305 |
msgstr ""
|
4306 |
|
4307 |
+
#: bbpress.php:749
|
4308 |
msgid "Edit Tag"
|
4309 |
msgstr ""
|
4310 |
|
4311 |
+
#: bbpress.php:750
|
4312 |
msgid "Update Tag"
|
4313 |
msgstr ""
|
4314 |
|
4315 |
+
#: bbpress.php:751
|
4316 |
msgid "Add New Tag"
|
4317 |
msgstr ""
|
4318 |
|
4319 |
+
#: bbpress.php:752
|
4320 |
msgid "New Tag Name"
|
4321 |
msgstr ""
|
4322 |
|
4323 |
+
#: bbpress.php:753
|
4324 |
msgid "View Topic Tag"
|
4325 |
msgstr ""
|
4326 |
|
4327 |
+
#: bbpress.php:791
|
4328 |
msgid "Topics with no replies"
|
4329 |
msgstr ""
|
4330 |
|
4332 |
msgid "bbPress"
|
4333 |
msgstr ""
|
4334 |
|
4335 |
+
#. #-#-#-#-# plugin.pot (bbPress 2.1-rc1) #-#-#-#-#
|
4336 |
#. Plugin URI of the plugin/theme
|
4337 |
+
#. #-#-#-#-# plugin.pot (bbPress 2.1-rc1) #-#-#-#-#
|
4338 |
#. Author URI of the plugin/theme
|
4339 |
msgid "http://bbpress.org"
|
4340 |
msgstr ""
|
bbpress.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
*
|
6 |
* bbPress is forum software with a twist from the creators of WordPress.
|
7 |
*
|
8 |
-
* $Id: bbpress.php
|
9 |
*
|
10 |
* @package bbPress
|
11 |
* @subpackage Main
|
@@ -17,7 +17,7 @@
|
|
17 |
* Description: bbPress is forum software with a twist from the creators of WordPress.
|
18 |
* Author: The bbPress Community
|
19 |
* Author URI: http://bbpress.org
|
20 |
-
* Version: 2.1-
|
21 |
* Text Domain: bbpress
|
22 |
* Domain Path: /bbp-languages/
|
23 |
*/
|
@@ -173,8 +173,8 @@ final class bbPress {
|
|
173 |
|
174 |
/** Versions **********************************************************/
|
175 |
|
176 |
-
$this->version = '2.1-
|
177 |
-
$this->db_version = '
|
178 |
|
179 |
/** Paths *************************************************************/
|
180 |
|
@@ -259,6 +259,7 @@ final class bbPress {
|
|
259 |
|
260 |
/** Core **************************************************************/
|
261 |
|
|
|
262 |
require( $this->plugin_dir . 'bbp-includes/bbp-core-actions.php' ); // All actions
|
263 |
require( $this->plugin_dir . 'bbp-includes/bbp-core-filters.php' ); // All filters
|
264 |
require( $this->plugin_dir . 'bbp-includes/bbp-core-functions.php' ); // Core functions
|
5 |
*
|
6 |
* bbPress is forum software with a twist from the creators of WordPress.
|
7 |
*
|
8 |
+
* $Id: bbpress.php 4013 2012-06-27 03:32:24Z johnjamesjacoby $
|
9 |
*
|
10 |
* @package bbPress
|
11 |
* @subpackage Main
|
17 |
* Description: bbPress is forum software with a twist from the creators of WordPress.
|
18 |
* Author: The bbPress Community
|
19 |
* Author URI: http://bbpress.org
|
20 |
+
* Version: 2.1-rc1
|
21 |
* Text Domain: bbpress
|
22 |
* Domain Path: /bbp-languages/
|
23 |
*/
|
173 |
|
174 |
/** Versions **********************************************************/
|
175 |
|
176 |
+
$this->version = '2.1-rc1'; // bbPress version
|
177 |
+
$this->db_version = '202'; // bbPress DB version
|
178 |
|
179 |
/** Paths *************************************************************/
|
180 |
|
259 |
|
260 |
/** Core **************************************************************/
|
261 |
|
262 |
+
require( $this->plugin_dir . 'bbp-includes/bbp-core-cache.php' ); // Cache helpers
|
263 |
require( $this->plugin_dir . 'bbp-includes/bbp-core-actions.php' ); // All actions
|
264 |
require( $this->plugin_dir . 'bbp-includes/bbp-core-filters.php' ); // All filters
|
265 |
require( $this->plugin_dir . 'bbp-includes/bbp-core-functions.php' ); // Core functions
|
readme.txt
CHANGED
@@ -26,6 +26,12 @@ We're keeping things as small and light as possible while still allowing for gre
|
|
26 |
|
27 |
== Changelog ==
|
28 |
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
= 2.1-beta-1 =
|
30 |
* Improved BuddyPress integration
|
31 |
* Improved Theme-Compatibility
|
@@ -68,7 +74,7 @@ We're keeping things as small and light as possible while still allowing for gre
|
|
68 |
* Added Forum Participant role for multisite use
|
69 |
|
70 |
= 2.0-rc-2 =
|
71 |
-
* BuddyPress activity
|
72 |
* Multisite integration
|
73 |
* Fixed a bushel of bugs
|
74 |
* Fixed tag pagination again
|
26 |
|
27 |
== Changelog ==
|
28 |
|
29 |
+
= 2.1-rc-1 =
|
30 |
+
* Improved post cache invalidation
|
31 |
+
* Improved admin settings API
|
32 |
+
* Improved bbPress 1.1 converter
|
33 |
+
* Added 2x menu icons for HiDPI displays
|
34 |
+
|
35 |
= 2.1-beta-1 =
|
36 |
* Improved BuddyPress integration
|
37 |
* Improved Theme-Compatibility
|
74 |
* Added Forum Participant role for multisite use
|
75 |
|
76 |
= 2.0-rc-2 =
|
77 |
+
* BuddyPress activity action integration
|
78 |
* Multisite integration
|
79 |
* Fixed a bushel of bugs
|
80 |
* Fixed tag pagination again
|
screenshot-1.png
ADDED
Binary file
|
screenshot-2.png
ADDED
Binary file
|
screenshot-3.png
ADDED
Binary file
|
screenshot-4.png
ADDED
Binary file
|
screenshot-5.png
ADDED
Binary file
|
screenshot-6.png
ADDED
Binary file
|
screenshot-7.png
ADDED
Binary file
|