Version Description
Download this release
Release Info
Developer | johnjamesjacoby |
Plugin | bbPress |
Version | 2.6-beta-2 |
Comparing to | |
See all releases |
Code changes from version 2.6-beta-1 to 2.6-beta-2
- bbpress.php +5 -5
- bbpress.pot +435 -425
- includes/admin/admin.php +52 -19
- includes/admin/css/admin-rtl.css +95 -0
- includes/admin/css/admin-rtl.min.css +1 -1
- includes/admin/css/admin.css +95 -0
- includes/admin/css/admin.min.css +1 -1
- includes/admin/forums.php +1 -86
- includes/admin/replies.php +1 -74
- includes/admin/tools.php +82 -18
- includes/admin/topics.php +1 -85
- includes/admin/users.php +1 -1
- includes/common/classes.php +1 -1
- includes/common/shortcodes.php +2 -2
- includes/core/abstraction.php +24 -0
- includes/core/filters.php +10 -1
- includes/core/options.php +0 -19
- includes/core/template-functions.php +1 -1
- includes/core/update.php +8 -3
- includes/extend/akismet.php +1 -1
- includes/extend/buddypress/activity.php +1 -1
- includes/extend/buddypress/functions.php +14 -14
- includes/extend/buddypress/groups.php +2 -2
- includes/extend/buddypress/loader.php +1 -1
- includes/extend/buddypress/members.php +1 -1
- includes/forums/template.php +1 -1
- includes/replies/functions.php +28 -1
- includes/replies/template.php +7 -11
- includes/topics/functions.php +62 -0
- includes/topics/template.php +15 -7
- templates/default/bbpress-functions.php +1 -1
- templates/default/bbpress/content-archive-forum.php +1 -1
- templates/default/bbpress/content-archive-topic.php +1 -1
- templates/default/bbpress/content-search.php +1 -1
- templates/default/bbpress/content-single-forum.php +1 -1
- templates/default/bbpress/content-single-reply.php +1 -1
- templates/default/bbpress/content-single-topic.php +1 -1
- templates/default/bbpress/content-single-user.php +1 -1
- templates/default/bbpress/content-single-view.php +1 -1
- templates/default/bbpress/content-topic-tag-edit.php +1 -1
- templates/default/bbpress/form-forum.php +1 -1
- templates/default/bbpress/form-protected.php +1 -1
- templates/default/bbpress/form-reply-move.php +1 -1
- templates/default/bbpress/form-reply.php +1 -1
- templates/default/bbpress/form-topic-merge.php +1 -1
- templates/default/bbpress/form-topic-split.php +1 -1
- templates/default/bbpress/form-topic.php +1 -1
- templates/default/css/bbpress-rtl.css +5 -0
- templates/default/css/bbpress-rtl.min.css +1 -1
- templates/default/css/bbpress.css +5 -0
- templates/default/css/bbpress.min.css +1 -1
- templates/default/extras/page-forum-statistics.php +1 -1
- templates/default/extras/page-topic-tags.php +1 -1
- templates/default/extras/page-topics-no-replies.php +1 -1
- templates/default/extras/page-user-login.php +1 -1
- templates/default/extras/page-user-lost-pass.php +1 -1
- templates/default/extras/page-user-register.php +1 -1
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 Contributors
|
19 |
* Author URI: https://bbpress.org
|
20 |
-
* Version: 2.6-beta-
|
21 |
* Text Domain: bbpress
|
22 |
* Domain Path: /languages/
|
23 |
* License: GPLv2 or later (license.txt)
|
@@ -26,7 +26,7 @@
|
|
26 |
// Exit if accessed directly
|
27 |
defined( 'ABSPATH' ) || exit;
|
28 |
|
29 |
-
if ( !class_exists( 'bbPress' ) ) :
|
30 |
/**
|
31 |
* Main bbPress Class
|
32 |
*
|
@@ -203,7 +203,7 @@ final class bbPress {
|
|
203 |
|
204 |
/** Versions **********************************************************/
|
205 |
|
206 |
-
$this->version = '2.6-beta-
|
207 |
$this->db_version = '260';
|
208 |
|
209 |
/** Paths *************************************************************/
|
@@ -689,7 +689,7 @@ final class bbPress {
|
|
689 |
'labels' => bbp_get_topic_tag_tax_labels(),
|
690 |
'rewrite' => bbp_get_topic_tag_tax_rewrite(),
|
691 |
'capabilities' => bbp_get_topic_tag_caps(),
|
692 |
-
'update_count_callback' => '
|
693 |
'query_var' => true,
|
694 |
'show_tagcloud' => true,
|
695 |
'hierarchical' => false,
|
5 |
*
|
6 |
* bbPress is forum software with a twist from the creators of WordPress.
|
7 |
*
|
8 |
+
* $Id: bbpress.php 6254 2017-01-17 09:05:29Z 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 Contributors
|
19 |
* Author URI: https://bbpress.org
|
20 |
+
* Version: 2.6-beta-2
|
21 |
* Text Domain: bbpress
|
22 |
* Domain Path: /languages/
|
23 |
* License: GPLv2 or later (license.txt)
|
26 |
// Exit if accessed directly
|
27 |
defined( 'ABSPATH' ) || exit;
|
28 |
|
29 |
+
if ( ! class_exists( 'bbPress' ) ) :
|
30 |
/**
|
31 |
* Main bbPress Class
|
32 |
*
|
203 |
|
204 |
/** Versions **********************************************************/
|
205 |
|
206 |
+
$this->version = '2.6-beta-6251';
|
207 |
$this->db_version = '260';
|
208 |
|
209 |
/** Paths *************************************************************/
|
689 |
'labels' => bbp_get_topic_tag_tax_labels(),
|
690 |
'rewrite' => bbp_get_topic_tag_tax_rewrite(),
|
691 |
'capabilities' => bbp_get_topic_tag_caps(),
|
692 |
+
'update_count_callback' => 'bbp_update_topic_tag_count',
|
693 |
'query_var' => true,
|
694 |
'show_tagcloud' => true,
|
695 |
'hierarchical' => false,
|
bbpress.pot
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
# This file is distributed under the GPLv2 or later (license.txt).
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: bbPress 2.6-beta-
|
6 |
"Report-Msgid-Bugs-To: https://bbpress.trac.wordpress.org\n"
|
7 |
-
"POT-Creation-Date: 2017-01-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -41,9 +41,9 @@ msgstr ""
|
|
41 |
msgid "Topics with no replies"
|
42 |
msgstr ""
|
43 |
|
44 |
-
#: includes/admin/actions.php:153 includes/admin/forums.php:
|
45 |
#: includes/admin/settings.php:232 includes/admin/settings.php:253
|
46 |
-
#: includes/admin/tools.php:
|
47 |
#: includes/extend/buddypress/activity.php:365
|
48 |
#: includes/forums/template.php:2858 includes/topics/template.php:47
|
49 |
#: includes/topics/template.php:48
|
@@ -53,11 +53,11 @@ msgid "Topics"
|
|
53 |
msgstr ""
|
54 |
|
55 |
#: includes/admin/actions.php:158 includes/admin/actions.php:170
|
56 |
-
#: includes/admin/forums.php:
|
57 |
#: includes/admin/list-tables/topic-replies.php:38
|
58 |
#: includes/admin/settings.php:240 includes/admin/settings.php:261
|
59 |
-
#: includes/admin/tools.php:
|
60 |
-
#: includes/admin/topics.php:
|
61 |
#: includes/extend/buddypress/activity.php:366
|
62 |
#: includes/forums/template.php:2922 includes/replies/template.php:47
|
63 |
#: includes/replies/template.php:48
|
@@ -70,17 +70,17 @@ msgid "Replies"
|
|
70 |
msgstr ""
|
71 |
|
72 |
#: includes/admin/actions.php:165 includes/admin/actions.php:177
|
73 |
-
#: includes/admin/forums.php:
|
74 |
#: includes/admin/metaboxes.php:425 includes/admin/metaboxes.php:492
|
75 |
-
#: includes/admin/replies.php:
|
76 |
-
#: includes/admin/topics.php:
|
77 |
#: includes/extend/buddypress/groups.php:51 includes/forums/template.php:50
|
78 |
#: templates/default/bbpress/loop-forums.php:17
|
79 |
msgid "Forum"
|
80 |
msgstr ""
|
81 |
|
82 |
#: includes/admin/actions.php:182 includes/admin/metaboxes.php:114
|
83 |
-
#: includes/admin/metaboxes.php:519 includes/admin/replies.php:
|
84 |
#: includes/admin/settings.php:311 includes/topics/template.php:49
|
85 |
#: templates/default/bbpress/content-single-topic-lead.php:20
|
86 |
#: templates/default/bbpress/content-single-topic-lead.php:88
|
@@ -107,7 +107,7 @@ msgid "Forum Import"
|
|
107 |
msgstr ""
|
108 |
|
109 |
#: includes/admin/admin.php:228 includes/admin/functions.php:291
|
110 |
-
#: includes/admin/tools.php:308 includes/admin/tools.php:
|
111 |
msgid "Reset Forums"
|
112 |
msgstr ""
|
113 |
|
@@ -117,7 +117,7 @@ msgstr ""
|
|
117 |
|
118 |
#: includes/admin/admin.php:243 includes/admin/admin.php:244
|
119 |
#: includes/admin/admin.php:254 includes/admin/admin.php:255
|
120 |
-
#: includes/admin/tools.php:
|
121 |
#: includes/common/widgets.php:667 includes/extend/buddypress/loader.php:42
|
122 |
#: includes/extend/buddypress/loader.php:179
|
123 |
#: includes/extend/buddypress/loader.php:286
|
@@ -134,7 +134,7 @@ msgstr ""
|
|
134 |
|
135 |
#: includes/admin/admin.php:291 includes/admin/admin.php:292
|
136 |
#: includes/admin/admin.php:315 includes/admin/admin.php:316
|
137 |
-
#: includes/admin/admin.php:
|
138 |
msgid "Update Forums"
|
139 |
msgstr ""
|
140 |
|
@@ -229,7 +229,7 @@ msgstr ""
|
|
229 |
msgid "Roles and capabilities have been swept through, cleaned up, and simplified."
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: includes/admin/admin.php:846 includes/admin/admin.php:
|
233 |
msgid "Go to Forum Settings"
|
234 |
msgstr ""
|
235 |
|
@@ -272,42 +272,42 @@ msgid "Bug Testing"
|
|
272 |
msgstr ""
|
273 |
|
274 |
#: includes/admin/admin.php:919
|
275 |
-
msgid "Core Contributors to bbPress 2.
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: includes/admin/admin.php:
|
279 |
msgid "Update Forum"
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: includes/admin/admin.php:
|
283 |
msgid "All done!"
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: includes/admin/admin.php:
|
287 |
msgid "Go Back"
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: includes/admin/admin.php:
|
291 |
msgid "You can update your forum through this page. Hit the link below to update."
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: includes/admin/admin.php:
|
295 |
msgid ""
|
296 |
"Warning! Problem updating %1$s. Your server may not be able to connect to "
|
297 |
"sites running on it. Error message: %2$s"
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: includes/admin/admin.php:
|
301 |
msgid ""
|
302 |
"If your browser doesn’t start loading the next page automatically, "
|
303 |
"click this link:"
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: includes/admin/admin.php:
|
307 |
msgid "Next Forums"
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: includes/admin/admin.php:
|
311 |
msgid ""
|
312 |
"You can update all the forums on your network through this page. It works "
|
313 |
"by calling the update script of each site automatically. Hit the link below "
|
@@ -514,44 +514,44 @@ msgstr ""
|
|
514 |
msgid "Calculating threaded replies parents (%1$s - %2$s)"
|
515 |
msgstr ""
|
516 |
|
517 |
-
#: includes/admin/forums.php:
|
518 |
#: includes/admin/settings.php:1577 includes/admin/tools.php:340
|
519 |
-
#: includes/admin/topics.php:
|
520 |
msgid "Overview"
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: includes/admin/forums.php:
|
524 |
msgid ""
|
525 |
"This screen displays the individual forums on your site. You can customize "
|
526 |
"the display of this screen to suit your workflow."
|
527 |
msgstr ""
|
528 |
|
529 |
-
#: includes/admin/forums.php:
|
530 |
-
#: includes/admin/topics.php:
|
531 |
msgid "Screen Content"
|
532 |
msgstr ""
|
533 |
|
534 |
-
#: includes/admin/forums.php:
|
535 |
-
#: includes/admin/topics.php:
|
536 |
msgid ""
|
537 |
"You can customize the display of this screen’s contents in a number "
|
538 |
"of ways:"
|
539 |
msgstr ""
|
540 |
|
541 |
-
#: includes/admin/forums.php:
|
542 |
msgid ""
|
543 |
"You can hide/display columns based on your needs and decide how many forums "
|
544 |
"to list per screen using the Screen Options tab."
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: includes/admin/forums.php:
|
548 |
msgid ""
|
549 |
"You can filter the list of forums by forum status using the text links in "
|
550 |
"the upper left to show All, Published, or Trashed forums. The default view "
|
551 |
"is to show all forums."
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: includes/admin/forums.php:
|
555 |
msgid ""
|
556 |
"You can refine the list to show only forums from a specific month by using "
|
557 |
"the dropdown menus above the forums list. Click the Filter button after "
|
@@ -559,85 +559,85 @@ msgid ""
|
|
559 |
"forum creator in the forums list."
|
560 |
msgstr ""
|
561 |
|
562 |
-
#: includes/admin/forums.php:
|
563 |
-
#: includes/admin/topics.php:
|
564 |
msgid "Available Actions"
|
565 |
msgstr ""
|
566 |
|
567 |
-
#: includes/admin/forums.php:
|
568 |
msgid ""
|
569 |
"Hovering over a row in the forums list will display action links that allow "
|
570 |
"you to manage your forum. You can perform the following actions:"
|
571 |
msgstr ""
|
572 |
|
573 |
-
#: includes/admin/forums.php:
|
574 |
msgid ""
|
575 |
"<strong>Edit</strong> takes you to the editing screen for that forum. You "
|
576 |
"can also reach that screen by clicking on the forum title."
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: includes/admin/forums.php:
|
580 |
msgid ""
|
581 |
"<strong>Trash</strong> removes your forum from this list and places it in "
|
582 |
"the trash, from which you can permanently delete it."
|
583 |
msgstr ""
|
584 |
|
585 |
-
#: includes/admin/forums.php:
|
586 |
msgid ""
|
587 |
"<strong>View</strong> will show you what your draft forum will look like if "
|
588 |
"you publish it. View will take you to your live site to view the forum. "
|
589 |
"Which link is available depends on your forum’s status."
|
590 |
msgstr ""
|
591 |
|
592 |
-
#: includes/admin/forums.php:
|
593 |
#: includes/admin/tools.php:54 includes/admin/tools.php:150
|
594 |
-
#: includes/admin/topics.php:
|
595 |
msgid "Bulk Actions"
|
596 |
msgstr ""
|
597 |
|
598 |
-
#: includes/admin/forums.php:
|
599 |
msgid ""
|
600 |
"You can also edit or move multiple forums to the trash at once. Select the "
|
601 |
"forums you want to act on using the checkboxes, then select the action you "
|
602 |
"want to take from the Bulk Actions menu and click Apply."
|
603 |
msgstr ""
|
604 |
|
605 |
-
#: includes/admin/forums.php:
|
606 |
msgid ""
|
607 |
"When using Bulk Edit, you can change the metadata (categories, author, "
|
608 |
"etc.) for all selected forums at once. To remove a forum from the grouping, "
|
609 |
"just click the x next to its name in the Bulk Edit area that appears."
|
610 |
msgstr ""
|
611 |
|
612 |
-
#: includes/admin/forums.php:
|
613 |
-
#: includes/admin/replies.php:
|
614 |
#: includes/admin/settings.php:1623 includes/admin/tools.php:282
|
615 |
#: includes/admin/tools.php:314 includes/admin/tools.php:374
|
616 |
-
#: includes/admin/topics.php:
|
617 |
msgid "For more information:"
|
618 |
msgstr ""
|
619 |
|
620 |
-
#: includes/admin/forums.php:
|
621 |
-
#: includes/admin/replies.php:
|
622 |
#: includes/admin/settings.php:1624 includes/admin/tools.php:283
|
623 |
#: includes/admin/tools.php:315 includes/admin/tools.php:375
|
624 |
-
#: includes/admin/topics.php:
|
625 |
msgid ""
|
626 |
"<a href=\"https://codex.bbpress.org\" target=\"_blank\">bbPress "
|
627 |
"Documentation</a>"
|
628 |
msgstr ""
|
629 |
|
630 |
-
#: includes/admin/forums.php:
|
631 |
-
#: includes/admin/replies.php:
|
632 |
#: includes/admin/settings.php:1625 includes/admin/tools.php:284
|
633 |
#: includes/admin/tools.php:316 includes/admin/tools.php:376
|
634 |
-
#: includes/admin/topics.php:
|
635 |
msgid ""
|
636 |
"<a href=\"https://bbpress.org/forums/\" target=\"_blank\">bbPress Support "
|
637 |
"Forums</a>"
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: includes/admin/forums.php:
|
641 |
msgid ""
|
642 |
"The title field and the big forum editing Area are fixed in place, but you "
|
643 |
"can reposition all the other boxes using drag and drop, and can minimize or "
|
@@ -647,22 +647,22 @@ msgid ""
|
|
647 |
"screen."
|
648 |
msgstr ""
|
649 |
|
650 |
-
#: includes/admin/forums.php:
|
651 |
-
#: includes/admin/topics.php:
|
652 |
msgid "Customizing This Display"
|
653 |
msgstr ""
|
654 |
|
655 |
-
#: includes/admin/forums.php:
|
656 |
msgid "Title and Forum Editor"
|
657 |
msgstr ""
|
658 |
|
659 |
-
#: includes/admin/forums.php:
|
660 |
msgid ""
|
661 |
"<strong>Title</strong> - Enter a title for your forum. After you enter a "
|
662 |
"title, you’ll see the permalink below, which you can edit."
|
663 |
msgstr ""
|
664 |
|
665 |
-
#: includes/admin/forums.php:
|
666 |
msgid ""
|
667 |
"<strong>Forum Editor</strong> - Enter the text for your forum. There are "
|
668 |
"two modes of editing: Visual and HTML. Choose the mode by clicking on the "
|
@@ -677,7 +677,7 @@ msgid ""
|
|
677 |
"editor."
|
678 |
msgstr ""
|
679 |
|
680 |
-
#: includes/admin/forums.php:
|
681 |
msgid ""
|
682 |
"<strong>Publish</strong> - You can set the terms of publishing your forum "
|
683 |
"in the Publish box. For Status, Visibility, and Publish (immediately), "
|
@@ -688,7 +688,7 @@ msgid ""
|
|
688 |
"future or backdate a forum."
|
689 |
msgstr ""
|
690 |
|
691 |
-
#: includes/admin/forums.php:
|
692 |
msgid ""
|
693 |
"<strong>Featured Image</strong> - This allows you to associate an image "
|
694 |
"with your forum without inserting it. This is usually useful only if your "
|
@@ -696,178 +696,178 @@ msgid ""
|
|
696 |
"page, a custom header, etc."
|
697 |
msgstr ""
|
698 |
|
699 |
-
#: includes/admin/forums.php:
|
700 |
msgid "Forum Attributes"
|
701 |
msgstr ""
|
702 |
|
703 |
-
#: includes/admin/forums.php:
|
704 |
msgid "Select the attributes that your forum should have:"
|
705 |
msgstr ""
|
706 |
|
707 |
-
#: includes/admin/forums.php:
|
708 |
msgid ""
|
709 |
"<strong>Type</strong> indicates if the forum is a category or forum. "
|
710 |
"Categories generally contain other forums."
|
711 |
msgstr ""
|
712 |
|
713 |
-
#: includes/admin/forums.php:
|
714 |
msgid ""
|
715 |
"<strong>Status</strong> allows you to close a forum to new topics and "
|
716 |
"forums."
|
717 |
msgstr ""
|
718 |
|
719 |
-
#: includes/admin/forums.php:
|
720 |
msgid ""
|
721 |
"<strong>Visibility</strong> lets you pick the scope of each forum and what "
|
722 |
"users are allowed to access it."
|
723 |
msgstr ""
|
724 |
|
725 |
-
#: includes/admin/forums.php:
|
726 |
msgid ""
|
727 |
"<strong>Parent</strong> dropdown determines the parent forum. Select the "
|
728 |
"forum or category from the dropdown, or leave the default \"No parent\" to "
|
729 |
"create the forum at the root of your forums."
|
730 |
msgstr ""
|
731 |
|
732 |
-
#: includes/admin/forums.php:
|
733 |
msgid "<strong>Order</strong> allows you to order your forums numerically."
|
734 |
msgstr ""
|
735 |
|
736 |
-
#: includes/admin/forums.php:
|
737 |
-
#: includes/admin/topics.php:
|
738 |
msgid "Publish Box"
|
739 |
msgstr ""
|
740 |
|
741 |
-
#: includes/admin/forums.php:
|
742 |
-
#: includes/admin/tools.php:
|
743 |
msgid "Forum Moderators"
|
744 |
msgstr ""
|
745 |
|
746 |
-
#: includes/admin/forums.php:
|
747 |
-
#: includes/admin/settings.php:388 includes/admin/topics.php:
|
748 |
#: includes/extend/buddypress/loader.php:237
|
749 |
#: templates/default/bbpress/user-details.php:56
|
750 |
msgid "Subscriptions"
|
751 |
msgstr ""
|
752 |
|
753 |
-
#: includes/admin/forums.php:
|
754 |
msgid "The forum was not found."
|
755 |
msgstr ""
|
756 |
|
757 |
-
#: includes/admin/forums.php:
|
758 |
-
#: includes/admin/topics.php:
|
759 |
msgid "You do not have permission to do that."
|
760 |
msgstr ""
|
761 |
|
762 |
-
#: includes/admin/forums.php:
|
763 |
msgid "There was a problem opening the forum \"%1$s\"."
|
764 |
msgstr ""
|
765 |
|
766 |
-
#: includes/admin/forums.php:
|
767 |
msgid "Forum \"%1$s\" successfully opened."
|
768 |
msgstr ""
|
769 |
|
770 |
-
#: includes/admin/forums.php:
|
771 |
msgid "There was a problem closing the forum \"%1$s\"."
|
772 |
msgstr ""
|
773 |
|
774 |
-
#: includes/admin/forums.php:
|
775 |
msgid "Forum \"%1$s\" successfully closed."
|
776 |
msgstr ""
|
777 |
|
778 |
-
#: includes/admin/forums.php:
|
779 |
msgid "Moderators"
|
780 |
msgstr ""
|
781 |
|
782 |
-
#: includes/admin/forums.php:
|
783 |
#: templates/default/bbpress/content-single-topic-lead.php:16
|
784 |
#: templates/default/bbpress/content-single-topic-lead.php:84
|
785 |
msgid "Creator"
|
786 |
msgstr ""
|
787 |
|
788 |
-
#: includes/admin/forums.php:
|
789 |
-
#: includes/admin/topics.php:
|
790 |
msgid "Created"
|
791 |
msgstr ""
|
792 |
|
793 |
-
#: includes/admin/forums.php:
|
794 |
#: templates/default/bbpress/loop-forums.php:23
|
795 |
#: templates/default/bbpress/loop-topics.php:21
|
796 |
msgid "Last Post"
|
797 |
msgstr ""
|
798 |
|
799 |
-
#: includes/admin/forums.php:
|
800 |
msgid "—"
|
801 |
msgstr ""
|
802 |
|
803 |
-
#: includes/admin/forums.php:
|
804 |
msgid "No Topics"
|
805 |
msgstr ""
|
806 |
|
807 |
-
#: includes/admin/forums.php:
|
808 |
msgid "Close this forum"
|
809 |
msgstr ""
|
810 |
|
811 |
-
#: includes/admin/forums.php:
|
812 |
msgid "Open this forum"
|
813 |
msgstr ""
|
814 |
|
815 |
-
#: includes/admin/forums.php:
|
816 |
msgid "Forum updated."
|
817 |
msgstr ""
|
818 |
|
819 |
-
#: includes/admin/forums.php:
|
820 |
msgid "View forum"
|
821 |
msgstr ""
|
822 |
|
823 |
-
#: includes/admin/forums.php:
|
824 |
-
#: includes/admin/topics.php:
|
825 |
msgid "Custom field updated."
|
826 |
msgstr ""
|
827 |
|
828 |
-
#: includes/admin/forums.php:
|
829 |
-
#: includes/admin/topics.php:
|
830 |
msgid "Custom field deleted."
|
831 |
msgstr ""
|
832 |
|
833 |
-
#: includes/admin/forums.php:
|
834 |
#. translators: %s: date and time of the revision
|
835 |
msgid "Forum restored to revision from %s"
|
836 |
msgstr ""
|
837 |
|
838 |
-
#: includes/admin/forums.php:
|
839 |
msgid "Forum created."
|
840 |
msgstr ""
|
841 |
|
842 |
-
#: includes/admin/forums.php:
|
843 |
msgid "Forum saved."
|
844 |
msgstr ""
|
845 |
|
846 |
-
#: includes/admin/forums.php:
|
847 |
msgid "Forum submitted."
|
848 |
msgstr ""
|
849 |
|
850 |
-
#: includes/admin/forums.php:
|
851 |
-
#: includes/admin/forums.php:
|
852 |
msgid "Preview forum"
|
853 |
msgstr ""
|
854 |
|
855 |
-
#: includes/admin/forums.php:
|
856 |
msgid "Forum scheduled for: %s."
|
857 |
msgstr ""
|
858 |
|
859 |
-
#: includes/admin/forums.php:
|
860 |
-
#: includes/admin/topics.php:
|
861 |
#. translators: Publish box date format, see http:php.net/date
|
862 |
msgid "M j, Y @ G:i"
|
863 |
msgstr ""
|
864 |
|
865 |
-
#: includes/admin/forums.php:
|
866 |
msgid "Forum draft updated."
|
867 |
msgstr ""
|
868 |
|
869 |
#: includes/admin/list-tables/topic-replies.php:56
|
870 |
-
#: includes/admin/replies.php:
|
871 |
#: templates/default/bbpress/loop-replies.php:15
|
872 |
#: templates/default/bbpress/loop-replies.php:41
|
873 |
#: templates/default/bbpress/loop-search.php:16
|
@@ -888,28 +888,28 @@ msgid "Unapprove"
|
|
888 |
msgstr ""
|
889 |
|
890 |
#: includes/admin/list-tables/topic-replies.php:88
|
891 |
-
#: includes/admin/replies.php:
|
892 |
-
#: includes/admin/topics.php:
|
893 |
-
#: includes/replies/template.php:2171 includes/topics/template.php:
|
894 |
msgid "Spam"
|
895 |
msgstr ""
|
896 |
|
897 |
#: includes/admin/list-tables/topic-replies.php:89
|
898 |
-
#: includes/admin/replies.php:
|
899 |
-
#: includes/replies/template.php:2099 includes/topics/template.php:
|
900 |
msgid "Trash"
|
901 |
msgstr ""
|
902 |
|
903 |
#: includes/admin/list-tables/topic-replies.php:141
|
904 |
-
#: includes/admin/replies.php:
|
905 |
-
#: includes/admin/topics.php:
|
906 |
msgid "View"
|
907 |
msgstr ""
|
908 |
|
909 |
#: includes/admin/list-tables/topic-replies.php:146
|
910 |
#: includes/common/template.php:2294 includes/forums/template.php:54
|
911 |
#: includes/replies/template.php:53 includes/replies/template.php:1972
|
912 |
-
#: includes/topics/template.php:53 includes/topics/template.php:
|
913 |
#: templates/default/bbpress/user-details.php:63
|
914 |
msgid "Edit"
|
915 |
msgstr ""
|
@@ -953,7 +953,7 @@ msgstr[0] ""
|
|
953 |
msgstr[1] ""
|
954 |
|
955 |
#: includes/admin/metaboxes.php:150 includes/admin/settings.php:319
|
956 |
-
#: includes/topics/template.php:
|
957 |
msgid "Topic Tag"
|
958 |
msgid_plural "Topic Tags"
|
959 |
msgstr[0] ""
|
@@ -1015,7 +1015,7 @@ msgstr ""
|
|
1015 |
msgid "Forum Parent"
|
1016 |
msgstr ""
|
1017 |
|
1018 |
-
#: includes/admin/metaboxes.php:359 includes/admin/topics.php:
|
1019 |
#: includes/extend/buddypress/groups.php:326
|
1020 |
#: templates/default/bbpress/form-topic.php:122
|
1021 |
msgid "— No forum —"
|
@@ -1130,79 +1130,79 @@ msgstr ""
|
|
1130 |
msgid "No users have subscribed to this forum."
|
1131 |
msgstr ""
|
1132 |
|
1133 |
-
#: includes/admin/replies.php:
|
1134 |
msgid ""
|
1135 |
"This screen provides access to all of your replies. You can customize the "
|
1136 |
"display of this screen to suit your workflow."
|
1137 |
msgstr ""
|
1138 |
|
1139 |
-
#: includes/admin/replies.php:
|
1140 |
msgid ""
|
1141 |
"You can hide/display columns based on your needs and decide how many "
|
1142 |
"replies to list per screen using the Screen Options tab."
|
1143 |
msgstr ""
|
1144 |
|
1145 |
-
#: includes/admin/replies.php:
|
1146 |
msgid ""
|
1147 |
"You can filter the list of replies by reply status using the text links in "
|
1148 |
"the upper left to show All, Published, Draft, Pending, Trashed, or Spam "
|
1149 |
"replies. The default view is to show all replies."
|
1150 |
msgstr ""
|
1151 |
|
1152 |
-
#: includes/admin/replies.php:
|
1153 |
msgid ""
|
1154 |
"You can view replies in a simple title list or with an excerpt. Choose the "
|
1155 |
"view you prefer by clicking on the icons at the top of the list on the "
|
1156 |
"right."
|
1157 |
msgstr ""
|
1158 |
|
1159 |
-
#: includes/admin/replies.php:
|
1160 |
msgid ""
|
1161 |
"You can refine the list to show only replies in a specific forum or from a "
|
1162 |
"specific month by using the dropdown menus above the replies list. Click "
|
1163 |
"the Filter button after making your selection."
|
1164 |
msgstr ""
|
1165 |
|
1166 |
-
#: includes/admin/replies.php:
|
1167 |
msgid ""
|
1168 |
"Hovering over a row in the replies list will display action links that "
|
1169 |
"allow you to manage your reply. You can perform the following actions:"
|
1170 |
msgstr ""
|
1171 |
|
1172 |
-
#: includes/admin/replies.php:
|
1173 |
msgid ""
|
1174 |
"<strong>Edit</strong> takes you to the editing screen for that reply. You "
|
1175 |
"can also reach that screen by clicking on the reply title."
|
1176 |
msgstr ""
|
1177 |
|
1178 |
-
#: includes/admin/replies.php:
|
1179 |
msgid ""
|
1180 |
"<strong>Trash</strong> removes your reply from this list and places it in "
|
1181 |
"the trash, from which you can permanently delete it."
|
1182 |
msgstr ""
|
1183 |
|
1184 |
-
#: includes/admin/replies.php:
|
1185 |
msgid ""
|
1186 |
"<strong>Spam</strong> removes your reply from this list and places it in "
|
1187 |
"the spam queue, from which you can permanently delete it."
|
1188 |
msgstr ""
|
1189 |
|
1190 |
-
#: includes/admin/replies.php:
|
1191 |
msgid "<strong>View</strong> will take you to your live site to view the reply."
|
1192 |
msgstr ""
|
1193 |
|
1194 |
-
#: includes/admin/replies.php:
|
1195 |
msgid "<strong>Approve</strong> will change the status from pending to publish."
|
1196 |
msgstr ""
|
1197 |
|
1198 |
-
#: includes/admin/replies.php:
|
1199 |
msgid ""
|
1200 |
"You can also edit, spam, or move multiple replies to the trash at once. "
|
1201 |
"Select the replies you want to act on using the checkboxes, then select the "
|
1202 |
"action you want to take from the Bulk Actions menu and click Apply."
|
1203 |
msgstr ""
|
1204 |
|
1205 |
-
#: includes/admin/replies.php:
|
1206 |
msgid ""
|
1207 |
"When using Bulk Edit, you can change the metadata (categories, author, "
|
1208 |
"etc.) for all selected replies at once. To remove a reply from the "
|
@@ -1210,7 +1210,7 @@ msgid ""
|
|
1210 |
"appears."
|
1211 |
msgstr ""
|
1212 |
|
1213 |
-
#: includes/admin/replies.php:
|
1214 |
msgid ""
|
1215 |
"The title field and the big reply editing Area are fixed in place, but you "
|
1216 |
"can reposition all the other boxes using drag and drop, and can minimize or "
|
@@ -1220,17 +1220,17 @@ msgid ""
|
|
1220 |
"screen."
|
1221 |
msgstr ""
|
1222 |
|
1223 |
-
#: includes/admin/replies.php:
|
1224 |
msgid "Title and Reply Editor"
|
1225 |
msgstr ""
|
1226 |
|
1227 |
-
#: includes/admin/replies.php:
|
1228 |
msgid ""
|
1229 |
"<strong>Title</strong> - Enter a title for your reply. After you enter a "
|
1230 |
"title, you’ll see the permalink below, which you can edit."
|
1231 |
msgstr ""
|
1232 |
|
1233 |
-
#: includes/admin/replies.php:
|
1234 |
msgid ""
|
1235 |
"<strong>Reply Editor</strong> - Enter the text for your reply. There are "
|
1236 |
"two modes of editing: Visual and HTML. Choose the mode by clicking on the "
|
@@ -1245,7 +1245,7 @@ msgid ""
|
|
1245 |
"editor."
|
1246 |
msgstr ""
|
1247 |
|
1248 |
-
#: includes/admin/replies.php:
|
1249 |
msgid ""
|
1250 |
"<strong>Publish</strong> - You can set the terms of publishing your reply "
|
1251 |
"in the Publish box. For Status, Visibility, and Publish (immediately), "
|
@@ -1256,7 +1256,7 @@ msgid ""
|
|
1256 |
"future or backdate a reply."
|
1257 |
msgstr ""
|
1258 |
|
1259 |
-
#: includes/admin/replies.php:
|
1260 |
msgid ""
|
1261 |
"<strong>Featured Image</strong> - This allows you to associate an image "
|
1262 |
"with your reply without inserting it. This is usually useful only if your "
|
@@ -1264,220 +1264,220 @@ msgid ""
|
|
1264 |
"page, a custom header, etc."
|
1265 |
msgstr ""
|
1266 |
|
1267 |
-
#: includes/admin/replies.php:
|
1268 |
msgid "Reply Attributes"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
-
#: includes/admin/replies.php:
|
1272 |
msgid "Select the attributes that your reply should have:"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
-
#: includes/admin/replies.php:
|
1276 |
msgid ""
|
1277 |
"<strong>Forum</strong> dropdown determines the parent forum that the reply "
|
1278 |
"belongs to. Select the forum, or leave the default (Use Forum of Topic) to "
|
1279 |
"post the reply in forum of the topic."
|
1280 |
msgstr ""
|
1281 |
|
1282 |
-
#: includes/admin/replies.php:
|
1283 |
msgid ""
|
1284 |
"<strong>Topic</strong> determines the parent topic that the reply belongs "
|
1285 |
"to."
|
1286 |
msgstr ""
|
1287 |
|
1288 |
-
#: includes/admin/replies.php:
|
1289 |
msgid "<strong>Reply To</strong> determines the threading of the reply."
|
1290 |
msgstr ""
|
1291 |
|
1292 |
-
#: includes/admin/replies.php:
|
1293 |
-
#: includes/replies/template.php:2172 includes/topics/template.php:
|
1294 |
msgid "Unspam"
|
1295 |
msgstr ""
|
1296 |
|
1297 |
-
#: includes/admin/replies.php:
|
1298 |
msgid "%s reply updated."
|
1299 |
msgid_plural "%s replies updated."
|
1300 |
msgstr[0] ""
|
1301 |
msgstr[1] ""
|
1302 |
|
1303 |
-
#: includes/admin/replies.php:
|
1304 |
msgid "1 reply not updated, somebody is editing it."
|
1305 |
msgstr ""
|
1306 |
|
1307 |
-
#: includes/admin/replies.php:
|
1308 |
msgid "%s reply not updated, somebody is editing it."
|
1309 |
msgid_plural "%s replies not updated, somebody is editing them."
|
1310 |
msgstr[0] ""
|
1311 |
msgstr[1] ""
|
1312 |
|
1313 |
-
#: includes/admin/replies.php:
|
1314 |
msgid "Sorry, you are not allowed to spam this item."
|
1315 |
msgstr ""
|
1316 |
|
1317 |
-
#: includes/admin/replies.php:
|
1318 |
msgid "Error in spamming reply."
|
1319 |
msgstr ""
|
1320 |
|
1321 |
-
#: includes/admin/replies.php:
|
1322 |
msgid "Sorry, you are not allowed to unspam this reply."
|
1323 |
msgstr ""
|
1324 |
|
1325 |
-
#: includes/admin/replies.php:
|
1326 |
msgid "Error in unspamming reply."
|
1327 |
msgstr ""
|
1328 |
|
1329 |
-
#: includes/admin/replies.php:
|
1330 |
#: templates/default/bbpress/form-anonymous.php:15
|
1331 |
msgid "Author Information"
|
1332 |
msgstr ""
|
1333 |
|
1334 |
-
#: includes/admin/replies.php:
|
1335 |
msgid "The reply was not found."
|
1336 |
msgstr ""
|
1337 |
|
1338 |
-
#: includes/admin/replies.php:
|
1339 |
msgid "There was a problem marking the reply \"%1$s\" as spam."
|
1340 |
msgstr ""
|
1341 |
|
1342 |
-
#: includes/admin/replies.php:
|
1343 |
msgid "Reply \"%1$s\" successfully marked as spam."
|
1344 |
msgstr ""
|
1345 |
|
1346 |
-
#: includes/admin/replies.php:
|
1347 |
msgid "There was a problem unmarking the reply \"%1$s\" as spam."
|
1348 |
msgstr ""
|
1349 |
|
1350 |
-
#: includes/admin/replies.php:
|
1351 |
msgid "Reply \"%1$s\" successfully unmarked as spam."
|
1352 |
msgstr ""
|
1353 |
|
1354 |
-
#: includes/admin/replies.php:
|
1355 |
msgid "There was a problem approving the reply \"%1$s\"."
|
1356 |
msgstr ""
|
1357 |
|
1358 |
-
#: includes/admin/replies.php:
|
1359 |
msgid "Reply \"%1$s\" successfully approved."
|
1360 |
msgstr ""
|
1361 |
|
1362 |
-
#: includes/admin/replies.php:
|
1363 |
msgid "There was a problem unapproving the reply \"%1$s\"."
|
1364 |
msgstr ""
|
1365 |
|
1366 |
-
#: includes/admin/replies.php:
|
1367 |
msgid "Reply \"%1$s\" successfully unapproved."
|
1368 |
msgstr ""
|
1369 |
|
1370 |
-
#: includes/admin/replies.php:
|
1371 |
msgid "Title"
|
1372 |
msgstr ""
|
1373 |
|
1374 |
-
#: includes/admin/replies.php:
|
1375 |
msgid "No Topic"
|
1376 |
msgstr ""
|
1377 |
|
1378 |
-
#: includes/admin/replies.php:
|
1379 |
-
#: includes/admin/topics.php:
|
1380 |
msgid "No Forum"
|
1381 |
msgstr ""
|
1382 |
|
1383 |
-
#: includes/admin/replies.php:
|
1384 |
msgid "(Mismatch)"
|
1385 |
msgstr ""
|
1386 |
|
1387 |
-
#: includes/admin/replies.php:
|
1388 |
-
#: includes/admin/topics.php:
|
1389 |
msgid "View “%s”"
|
1390 |
msgstr ""
|
1391 |
|
1392 |
-
#: includes/admin/replies.php:
|
1393 |
msgid "Unapprove this reply"
|
1394 |
msgstr ""
|
1395 |
|
1396 |
-
#: includes/admin/replies.php:
|
1397 |
msgid "Approve this reply"
|
1398 |
msgstr ""
|
1399 |
|
1400 |
-
#: includes/admin/replies.php:
|
1401 |
msgid "Mark the reply as not spam"
|
1402 |
msgstr ""
|
1403 |
|
1404 |
-
#: includes/admin/replies.php:
|
1405 |
msgid "Not spam"
|
1406 |
msgstr ""
|
1407 |
|
1408 |
-
#: includes/admin/replies.php:
|
1409 |
msgid "Mark this reply as spam"
|
1410 |
msgstr ""
|
1411 |
|
1412 |
-
#: includes/admin/replies.php:
|
1413 |
-
#: includes/replies/template.php:2113 includes/topics/template.php:
|
1414 |
msgid "Restore this item from the Trash"
|
1415 |
msgstr ""
|
1416 |
|
1417 |
-
#: includes/admin/replies.php:
|
1418 |
-
#: includes/replies/template.php:2100 includes/topics/template.php:
|
1419 |
msgid "Restore"
|
1420 |
msgstr ""
|
1421 |
|
1422 |
-
#: includes/admin/replies.php:
|
1423 |
-
#: includes/replies/template.php:2115 includes/topics/template.php:
|
1424 |
msgid "Move this item to the Trash"
|
1425 |
msgstr ""
|
1426 |
|
1427 |
-
#: includes/admin/replies.php:
|
1428 |
-
#: includes/replies/template.php:2119 includes/topics/template.php:
|
1429 |
msgid "Delete this item permanently"
|
1430 |
msgstr ""
|
1431 |
|
1432 |
-
#: includes/admin/replies.php:
|
1433 |
msgid "Delete Permanently"
|
1434 |
msgstr ""
|
1435 |
|
1436 |
-
#: includes/admin/replies.php:
|
1437 |
msgid "Empty Spam"
|
1438 |
msgstr ""
|
1439 |
|
1440 |
-
#: includes/admin/replies.php:
|
1441 |
msgid "In all forums"
|
1442 |
msgstr ""
|
1443 |
|
1444 |
-
#: includes/admin/replies.php:
|
1445 |
msgid "Reply updated."
|
1446 |
msgstr ""
|
1447 |
|
1448 |
-
#: includes/admin/replies.php:
|
1449 |
-
#: includes/admin/topics.php:
|
1450 |
msgid "View topic"
|
1451 |
msgstr ""
|
1452 |
|
1453 |
-
#: includes/admin/replies.php:
|
1454 |
#. translators: %s: date and time of the revision
|
1455 |
msgid "Reply restored to revision from %s"
|
1456 |
msgstr ""
|
1457 |
|
1458 |
-
#: includes/admin/replies.php:
|
1459 |
msgid "Reply created."
|
1460 |
msgstr ""
|
1461 |
|
1462 |
-
#: includes/admin/replies.php:
|
1463 |
msgid "Reply saved."
|
1464 |
msgstr ""
|
1465 |
|
1466 |
-
#: includes/admin/replies.php:
|
1467 |
msgid "Reply submitted."
|
1468 |
msgstr ""
|
1469 |
|
1470 |
-
#: includes/admin/replies.php:
|
1471 |
-
#: includes/admin/replies.php:
|
1472 |
-
#: includes/admin/topics.php:
|
1473 |
msgid "Preview topic"
|
1474 |
msgstr ""
|
1475 |
|
1476 |
-
#: includes/admin/replies.php:
|
1477 |
msgid "Reply scheduled for: %s."
|
1478 |
msgstr ""
|
1479 |
|
1480 |
-
#: includes/admin/replies.php:
|
1481 |
msgid "Reply draft updated."
|
1482 |
msgstr ""
|
1483 |
|
@@ -1541,7 +1541,7 @@ msgstr ""
|
|
1541 |
msgid "Revisions"
|
1542 |
msgstr ""
|
1543 |
|
1544 |
-
#: includes/admin/settings.php:144 includes/admin/topics.php:
|
1545 |
#: includes/extend/buddypress/loader.php:224
|
1546 |
#: templates/default/bbpress/user-details.php:46
|
1547 |
msgid "Favorites"
|
@@ -1682,7 +1682,7 @@ msgid "How your forum content is displayed within your existing theme."
|
|
1682 |
msgstr ""
|
1683 |
|
1684 |
#: includes/admin/settings.php:752 includes/common/classes.php:527
|
1685 |
-
#: includes/replies/template.php:
|
1686 |
msgid "%1$s - %2$s"
|
1687 |
msgstr ""
|
1688 |
|
@@ -1859,7 +1859,7 @@ msgid ""
|
|
1859 |
msgstr ""
|
1860 |
|
1861 |
#: includes/admin/settings.php:1534 includes/admin/tools.php:35
|
1862 |
-
#: includes/admin/tools.php:
|
1863 |
msgid "Forum Tools"
|
1864 |
msgstr ""
|
1865 |
|
@@ -2258,507 +2258,522 @@ msgid "Repair closed topics"
|
|
2258 |
msgstr ""
|
2259 |
|
2260 |
#: includes/admin/tools.php:567
|
2261 |
-
msgid "
|
2262 |
msgstr ""
|
2263 |
|
2264 |
#: includes/admin/tools.php:577
|
2265 |
-
msgid "
|
2266 |
msgstr ""
|
2267 |
|
2268 |
#: includes/admin/tools.php:587
|
2269 |
-
msgid "
|
2270 |
msgstr ""
|
2271 |
|
2272 |
#: includes/admin/tools.php:597
|
2273 |
-
msgid "
|
2274 |
msgstr ""
|
2275 |
|
2276 |
#: includes/admin/tools.php:607
|
2277 |
-
msgid "
|
2278 |
msgstr ""
|
2279 |
|
2280 |
#: includes/admin/tools.php:617
|
2281 |
-
msgid "Recount
|
2282 |
msgstr ""
|
2283 |
|
2284 |
#: includes/admin/tools.php:627
|
2285 |
-
msgid "Recount
|
2286 |
msgstr ""
|
2287 |
|
2288 |
#: includes/admin/tools.php:637
|
2289 |
-
msgid "
|
2290 |
msgstr ""
|
2291 |
|
2292 |
#: includes/admin/tools.php:647
|
2293 |
-
msgid "Remove unpublished topics from user
|
2294 |
msgstr ""
|
2295 |
|
2296 |
#: includes/admin/tools.php:657
|
2297 |
-
msgid "Remove unpublished
|
2298 |
msgstr ""
|
2299 |
|
2300 |
#: includes/admin/tools.php:667
|
2301 |
-
msgid "
|
2302 |
msgstr ""
|
2303 |
|
2304 |
#: includes/admin/tools.php:677
|
2305 |
-
msgid "
|
2306 |
msgstr ""
|
2307 |
|
2308 |
#: includes/admin/tools.php:687
|
2309 |
-
msgid "Upgrade user
|
2310 |
msgstr ""
|
2311 |
|
2312 |
#: includes/admin/tools.php:697
|
|
|
|
|
|
|
|
|
2313 |
msgid "Upgrade user forum subscriptions"
|
2314 |
msgstr ""
|
2315 |
|
2316 |
-
#: includes/admin/tools.php:
|
2317 |
msgid "Search Tools:"
|
2318 |
msgstr ""
|
2319 |
|
2320 |
-
#: includes/admin/tools.php:
|
2321 |
msgid "Search Tools"
|
2322 |
msgstr ""
|
2323 |
|
2324 |
-
#: includes/admin/tools.php:
|
2325 |
msgid "Filter by Component"
|
2326 |
msgstr ""
|
2327 |
|
2328 |
-
#: includes/admin/tools.php:
|
2329 |
msgid "All Components"
|
2330 |
msgstr ""
|
2331 |
|
2332 |
-
#: includes/admin/tools.php:
|
2333 |
msgid "Filter"
|
2334 |
msgstr ""
|
2335 |
|
2336 |
-
#: includes/admin/tools.php:
|
2337 |
msgid "Low"
|
2338 |
msgstr ""
|
2339 |
|
2340 |
-
#: includes/admin/tools.php:
|
2341 |
msgid "Medium"
|
2342 |
msgstr ""
|
2343 |
|
2344 |
-
#: includes/admin/tools.php:
|
2345 |
msgid "High"
|
2346 |
msgstr ""
|
2347 |
|
2348 |
-
#: includes/admin/tools.php:
|
2349 |
msgid "Users"
|
2350 |
msgstr ""
|
2351 |
|
2352 |
-
#: includes/admin/tools.php:
|
|
|
|
|
|
|
|
|
|
|
2353 |
msgid "All %s"
|
2354 |
msgstr ""
|
2355 |
|
2356 |
-
#: includes/admin/tools.php:
|
2357 |
msgid "Counting the number of replies in each topic… %s"
|
2358 |
msgstr ""
|
2359 |
|
2360 |
-
#: includes/admin/tools.php:
|
2361 |
-
#: includes/admin/tools.php:
|
2362 |
-
#: includes/admin/tools.php:
|
2363 |
-
#: includes/admin/tools.php:
|
2364 |
-
#: includes/admin/tools.php:
|
2365 |
-
#: includes/admin/tools.php:
|
2366 |
-
#: includes/admin/tools.php:
|
2367 |
-
#: includes/admin/tools.php:
|
2368 |
-
#: includes/admin/tools.php:
|
|
|
2369 |
msgid "Failed!"
|
2370 |
msgstr ""
|
2371 |
|
2372 |
-
#: includes/admin/tools.php:
|
2373 |
-
#: includes/admin/tools.php:
|
2374 |
-
#: includes/admin/tools.php:
|
2375 |
-
#: includes/admin/tools.php:
|
2376 |
-
#: includes/admin/tools.php:
|
2377 |
-
#: includes/admin/tools.php:
|
2378 |
-
#: includes/admin/tools.php:
|
2379 |
-
#: includes/admin/tools.php:
|
|
|
2380 |
msgid "Complete!"
|
2381 |
msgstr ""
|
2382 |
|
2383 |
-
#: includes/admin/tools.php:
|
2384 |
msgid "Counting the number of voices in each topic… %s"
|
2385 |
msgstr ""
|
2386 |
|
2387 |
-
#: includes/admin/tools.php:
|
2388 |
msgid ""
|
2389 |
"Counting the number of pending, spammed, and trashed replies in each "
|
2390 |
"topic… %s"
|
2391 |
msgstr ""
|
2392 |
|
2393 |
-
#: includes/admin/tools.php:
|
2394 |
msgid "Repairing BuddyPress group-forum relationships… %s"
|
2395 |
msgstr ""
|
2396 |
|
2397 |
-
#: includes/admin/tools.php:
|
2398 |
msgid "Group Forums"
|
2399 |
msgstr ""
|
2400 |
|
2401 |
-
#: includes/admin/tools.php:
|
2402 |
msgid "group-forums"
|
2403 |
msgstr ""
|
2404 |
|
2405 |
-
#: includes/admin/tools.php:
|
2406 |
msgid "Complete! %s groups updated; %s forums updated; %s forum statuses synced."
|
2407 |
msgstr ""
|
2408 |
|
2409 |
-
#: includes/admin/tools.php:
|
2410 |
msgid "Counting the number of topics in each forum… %s"
|
2411 |
msgstr ""
|
2412 |
|
2413 |
-
#: includes/admin/tools.php:
|
|
|
|
|
|
|
|
|
2414 |
msgid "Counting the number of replies in each forum… %s"
|
2415 |
msgstr ""
|
2416 |
|
2417 |
-
#: includes/admin/tools.php:
|
2418 |
msgid "Counting the number of topics each user has created… %s"
|
2419 |
msgstr ""
|
2420 |
|
2421 |
-
#: includes/admin/tools.php:
|
2422 |
msgid "Counting the number of topics to which each user has replied… %s"
|
2423 |
msgstr ""
|
2424 |
|
2425 |
-
#: includes/admin/tools.php:
|
2426 |
msgid "Removing trashed topics from user favorites… %s"
|
2427 |
msgstr ""
|
2428 |
|
2429 |
-
#: includes/admin/tools.php:
|
2430 |
-
#: includes/admin/tools.php:
|
2431 |
msgid "Nothing to remove!"
|
2432 |
msgstr ""
|
2433 |
|
2434 |
-
#: includes/admin/tools.php:
|
2435 |
msgid "Removing trashed topics from user subscriptions… %s"
|
2436 |
msgstr ""
|
2437 |
|
2438 |
-
#: includes/admin/tools.php:
|
2439 |
msgid "Removing trashed forums from user subscriptions… %s"
|
2440 |
msgstr ""
|
2441 |
|
2442 |
-
#: includes/admin/tools.php:
|
2443 |
msgid "Remapping forum role for each user on this site… %s"
|
2444 |
msgstr ""
|
2445 |
|
2446 |
-
#: includes/admin/tools.php:
|
2447 |
msgid "Complete! %s users updated."
|
2448 |
msgstr ""
|
2449 |
|
2450 |
-
#: includes/admin/tools.php:
|
2451 |
msgid "Recomputing latest post in every topic and forum… %s"
|
2452 |
msgstr ""
|
2453 |
|
2454 |
-
#: includes/admin/tools.php:
|
2455 |
msgid "Repairing the sticky topic to the parent forum relationships… %s"
|
2456 |
msgstr ""
|
2457 |
|
2458 |
-
#: includes/admin/tools.php:
|
2459 |
msgid "Repairing closed topics… %s"
|
2460 |
msgstr ""
|
2461 |
|
2462 |
-
#: includes/admin/tools.php:
|
2463 |
msgid "No closed topics to repair."
|
2464 |
msgstr ""
|
2465 |
|
2466 |
-
#: includes/admin/tools.php:
|
2467 |
msgid "Complete! %d closed topic repaired."
|
2468 |
msgid_plural "Complete! %d closed topics repaired."
|
2469 |
msgstr[0] ""
|
2470 |
msgstr[1] ""
|
2471 |
|
2472 |
-
#: includes/admin/tools.php:
|
2473 |
msgid "Recalculating forum visibility … %s"
|
2474 |
msgstr ""
|
2475 |
|
2476 |
-
#: includes/admin/tools.php:
|
2477 |
msgid "Recalculating the forum for each post … %s"
|
2478 |
msgstr ""
|
2479 |
|
2480 |
-
#: includes/admin/tools.php:
|
2481 |
msgid "Recalculating the topic for each post … %s"
|
2482 |
msgstr ""
|
2483 |
|
2484 |
-
#: includes/admin/tools.php:
|
2485 |
msgid "Recalculating reply menu order … %s"
|
2486 |
msgstr ""
|
2487 |
|
2488 |
-
#: includes/admin/tools.php:
|
2489 |
msgid "No reply positions to recalculate."
|
2490 |
msgstr ""
|
2491 |
|
2492 |
-
#: includes/admin/tools.php:
|
2493 |
msgid "Upgrading user favorites … %s"
|
2494 |
msgstr ""
|
2495 |
|
2496 |
-
#: includes/admin/tools.php:
|
2497 |
msgid "No favorites to upgrade."
|
2498 |
msgstr ""
|
2499 |
|
2500 |
-
#: includes/admin/tools.php:
|
2501 |
msgid "Complete! %d favorite upgraded."
|
2502 |
msgid_plural "Complete! %d favorites upgraded."
|
2503 |
msgstr[0] ""
|
2504 |
msgstr[1] ""
|
2505 |
|
2506 |
-
#: includes/admin/tools.php:
|
2507 |
msgid "Upgrading user topic subscriptions … %s"
|
2508 |
msgstr ""
|
2509 |
|
2510 |
-
#: includes/admin/tools.php:
|
2511 |
msgid "No topic subscriptions to upgrade."
|
2512 |
msgstr ""
|
2513 |
|
2514 |
-
#: includes/admin/tools.php:
|
2515 |
msgid "Complete! %d topic subscription upgraded."
|
2516 |
msgid_plural "Complete! %d topic subscriptions upgraded."
|
2517 |
msgstr[0] ""
|
2518 |
msgstr[1] ""
|
2519 |
|
2520 |
-
#: includes/admin/tools.php:
|
2521 |
msgid "Upgrading user forum subscriptions … %s"
|
2522 |
msgstr ""
|
2523 |
|
2524 |
-
#: includes/admin/tools.php:
|
2525 |
msgid "No forum subscriptions to upgrade."
|
2526 |
msgstr ""
|
2527 |
|
2528 |
-
#: includes/admin/tools.php:
|
2529 |
msgid "Complete! %d forum subscription upgraded."
|
2530 |
msgid_plural "Complete! %d forum subscriptions upgraded."
|
2531 |
msgstr[0] ""
|
2532 |
msgstr[1] ""
|
2533 |
|
2534 |
-
#: includes/admin/tools.php:
|
2535 |
msgid ""
|
2536 |
"Revert your forums back to a brand new installation. This process cannot be "
|
2537 |
"undone."
|
2538 |
msgstr ""
|
2539 |
|
2540 |
-
#: includes/admin/tools.php:
|
2541 |
msgid "Backup your database before proceeding."
|
2542 |
msgstr ""
|
2543 |
|
2544 |
-
#: includes/admin/tools.php:
|
2545 |
msgid "The following data will be removed:"
|
2546 |
msgstr ""
|
2547 |
|
2548 |
-
#: includes/admin/tools.php:
|
2549 |
msgid "All Forums"
|
2550 |
msgstr ""
|
2551 |
|
2552 |
-
#: includes/admin/tools.php:
|
2553 |
#: includes/topics/template.php:50
|
2554 |
msgid "All Topics"
|
2555 |
msgstr ""
|
2556 |
|
2557 |
-
#: includes/admin/tools.php:
|
2558 |
#: includes/replies/template.php:50
|
2559 |
msgid "All Replies"
|
2560 |
msgstr ""
|
2561 |
|
2562 |
-
#: includes/admin/tools.php:
|
2563 |
msgid "All Topic Tags"
|
2564 |
msgstr ""
|
2565 |
|
2566 |
-
#: includes/admin/tools.php:
|
2567 |
msgid "Related Meta Data"
|
2568 |
msgstr ""
|
2569 |
|
2570 |
-
#: includes/admin/tools.php:
|
2571 |
msgid "Forum Settings"
|
2572 |
msgstr ""
|
2573 |
|
2574 |
-
#: includes/admin/tools.php:
|
2575 |
msgid "Forum Activity"
|
2576 |
msgstr ""
|
2577 |
|
2578 |
-
#: includes/admin/tools.php:
|
2579 |
msgid "Forum User Roles"
|
2580 |
msgstr ""
|
2581 |
|
2582 |
-
#: includes/admin/tools.php:
|
2583 |
msgid "Importer Helper Data"
|
2584 |
msgstr ""
|
2585 |
|
2586 |
-
#: includes/admin/tools.php:
|
2587 |
msgid "Delete imported users?"
|
2588 |
msgstr ""
|
2589 |
|
2590 |
-
#: includes/admin/tools.php:
|
2591 |
msgid "Say it ain't so!"
|
2592 |
msgstr ""
|
2593 |
|
2594 |
-
#: includes/admin/tools.php:
|
2595 |
msgid "This option will delete all previously imported users, and cannot be undone."
|
2596 |
msgstr ""
|
2597 |
|
2598 |
-
#: includes/admin/tools.php:
|
2599 |
msgid ""
|
2600 |
"Note: Resetting without this checked will delete the meta-data necessary to "
|
2601 |
"delete these users."
|
2602 |
msgstr ""
|
2603 |
|
2604 |
-
#: includes/admin/tools.php:
|
2605 |
msgid "Do you really want to do this?"
|
2606 |
msgstr ""
|
2607 |
|
2608 |
-
#: includes/admin/tools.php:
|
2609 |
#: templates/default/bbpress/form-reply-move.php:73
|
2610 |
#: templates/default/bbpress/form-topic-merge.php:95
|
2611 |
#: templates/default/bbpress/form-topic-split.php:99
|
2612 |
msgid "This process cannot be undone."
|
2613 |
msgstr ""
|
2614 |
|
2615 |
-
#: includes/admin/tools.php:
|
2616 |
msgid "Reset bbPress"
|
2617 |
msgstr ""
|
2618 |
|
2619 |
-
#: includes/admin/tools.php:
|
2620 |
msgid "Success!"
|
2621 |
msgstr ""
|
2622 |
|
2623 |
-
#: includes/admin/tools.php:
|
2624 |
msgid "Deleting Posts… %s"
|
2625 |
msgstr ""
|
2626 |
|
2627 |
-
#: includes/admin/tools.php:
|
2628 |
msgid "Deleting Post Meta… %s"
|
2629 |
msgstr ""
|
2630 |
|
2631 |
-
#: includes/admin/tools.php:
|
2632 |
msgid "Deleting Post Revisions… %s"
|
2633 |
msgstr ""
|
2634 |
|
2635 |
-
#: includes/admin/tools.php:
|
2636 |
msgid "Deleting Forum Moderators… %s"
|
2637 |
msgstr ""
|
2638 |
|
2639 |
-
#: includes/admin/tools.php:
|
2640 |
msgid "Deleting Topic Tags… %s"
|
2641 |
msgstr ""
|
2642 |
|
2643 |
-
#: includes/admin/tools.php:
|
2644 |
msgid "Deleting Imported Users… %s"
|
2645 |
msgstr ""
|
2646 |
|
2647 |
-
#: includes/admin/tools.php:
|
2648 |
msgid "Deleting Imported User Meta… %s"
|
2649 |
msgstr ""
|
2650 |
|
2651 |
-
#: includes/admin/tools.php:
|
2652 |
msgid "Deleting User Meta… %s"
|
2653 |
msgstr ""
|
2654 |
|
2655 |
-
#: includes/admin/tools.php:
|
2656 |
msgid "Deleting Conversion Table… %s"
|
2657 |
msgstr ""
|
2658 |
|
2659 |
-
#: includes/admin/tools.php:
|
2660 |
msgid "Deleting Settings… %s"
|
2661 |
msgstr ""
|
2662 |
|
2663 |
-
#: includes/admin/tools.php:
|
2664 |
msgid "Deleting Roles and Capabilities… %s"
|
2665 |
msgstr ""
|
2666 |
|
2667 |
-
#: includes/admin/topics.php:
|
2668 |
msgid ""
|
2669 |
"This screen displays the individual topics on your site. You can customize "
|
2670 |
"the display of this screen to suit your workflow."
|
2671 |
msgstr ""
|
2672 |
|
2673 |
-
#: includes/admin/topics.php:
|
2674 |
msgid ""
|
2675 |
"You can hide/display columns based on your needs and decide how many topics "
|
2676 |
"to list per screen using the Screen Options tab."
|
2677 |
msgstr ""
|
2678 |
|
2679 |
-
#: includes/admin/topics.php:
|
2680 |
msgid ""
|
2681 |
"You can filter the list of topics by topic status using the text links in "
|
2682 |
"the upper left to show All, Published, Draft, Pending, Trashed, Closed, or "
|
2683 |
"Spam topics. The default view is to show all topics."
|
2684 |
msgstr ""
|
2685 |
|
2686 |
-
#: includes/admin/topics.php:
|
2687 |
msgid ""
|
2688 |
"You can view topics in a simple title list or with an excerpt. Choose the "
|
2689 |
"view you prefer by clicking on the icons at the top of the list on the "
|
2690 |
"right."
|
2691 |
msgstr ""
|
2692 |
|
2693 |
-
#: includes/admin/topics.php:
|
2694 |
msgid ""
|
2695 |
"You can refine the list to show only topics in a specific forum or from a "
|
2696 |
"specific month by using the dropdown menus above the topics list. Click the "
|
2697 |
"Filter button after making your selection."
|
2698 |
msgstr ""
|
2699 |
|
2700 |
-
#: includes/admin/topics.php:
|
2701 |
msgid ""
|
2702 |
"Hovering over a row in the topics list will display action links that allow "
|
2703 |
"you to manage your topic. You can perform the following actions:"
|
2704 |
msgstr ""
|
2705 |
|
2706 |
-
#: includes/admin/topics.php:
|
2707 |
msgid ""
|
2708 |
"<strong>Edit</strong> takes you to the editing screen for that topic. You "
|
2709 |
"can also reach that screen by clicking on the topic title."
|
2710 |
msgstr ""
|
2711 |
|
2712 |
-
#: includes/admin/topics.php:
|
2713 |
msgid ""
|
2714 |
"<strong>Trash</strong> removes your topic from this list and places it in "
|
2715 |
"the trash, from which you can permanently delete it."
|
2716 |
msgstr ""
|
2717 |
|
2718 |
-
#: includes/admin/topics.php:
|
2719 |
msgid ""
|
2720 |
"<strong>Spam</strong> removes your topic from this list and places it in "
|
2721 |
"the spam queue, from which you can permanently delete it."
|
2722 |
msgstr ""
|
2723 |
|
2724 |
-
#: includes/admin/topics.php:
|
2725 |
msgid "<strong>View</strong> will take you to your live site to view the topic."
|
2726 |
msgstr ""
|
2727 |
|
2728 |
-
#: includes/admin/topics.php:
|
2729 |
msgid ""
|
2730 |
"<strong>Close</strong> will mark the selected topic as ’closed’ "
|
2731 |
"and disable the option to post new replies to the topic."
|
2732 |
msgstr ""
|
2733 |
|
2734 |
-
#: includes/admin/topics.php:
|
2735 |
msgid ""
|
2736 |
"<strong>Stick</strong> will keep the selected topic ’pinned’ to "
|
2737 |
"the top the parent forum topic list."
|
2738 |
msgstr ""
|
2739 |
|
2740 |
-
#: includes/admin/topics.php:
|
2741 |
msgid ""
|
2742 |
"<strong>Stick <em>(to front)</em></strong> will keep the selected topic "
|
2743 |
"’pinned’ to the top of ALL forums and be visable in any forums "
|
2744 |
"topics list."
|
2745 |
msgstr ""
|
2746 |
|
2747 |
-
#: includes/admin/topics.php:
|
2748 |
msgid ""
|
2749 |
"You can also edit, spam, or move multiple topics to the trash at once. "
|
2750 |
"Select the topics you want to act on using the checkboxes, then select the "
|
2751 |
"action you want to take from the Bulk Actions menu and click Apply."
|
2752 |
msgstr ""
|
2753 |
|
2754 |
-
#: includes/admin/topics.php:
|
2755 |
msgid ""
|
2756 |
"When using Bulk Edit, you can change the metadata (categories, author, "
|
2757 |
"etc.) for all selected topics at once. To remove a topic from the grouping, "
|
2758 |
"just click the x next to its name in the Bulk Edit area that appears."
|
2759 |
msgstr ""
|
2760 |
|
2761 |
-
#: includes/admin/topics.php:
|
2762 |
msgid ""
|
2763 |
"The title field and the big topic editing Area are fixed in place, but you "
|
2764 |
"can reposition all the other boxes using drag and drop, and can minimize or "
|
@@ -2768,17 +2783,17 @@ msgid ""
|
|
2768 |
"screen."
|
2769 |
msgstr ""
|
2770 |
|
2771 |
-
#: includes/admin/topics.php:
|
2772 |
msgid "Title and Topic Editor"
|
2773 |
msgstr ""
|
2774 |
|
2775 |
-
#: includes/admin/topics.php:
|
2776 |
msgid ""
|
2777 |
"<strong>Title</strong> - Enter a title for your topic. After you enter a "
|
2778 |
"title, you’ll see the permalink below, which you can edit."
|
2779 |
msgstr ""
|
2780 |
|
2781 |
-
#: includes/admin/topics.php:
|
2782 |
msgid ""
|
2783 |
"<strong>Topic Editor</strong> - Enter the text for your topic. There are "
|
2784 |
"two modes of editing: Visual and HTML. Choose the mode by clicking on the "
|
@@ -2793,7 +2808,7 @@ msgid ""
|
|
2793 |
"editor."
|
2794 |
msgstr ""
|
2795 |
|
2796 |
-
#: includes/admin/topics.php:
|
2797 |
msgid ""
|
2798 |
"<strong>Publish</strong> - You can set the terms of publishing your topic "
|
2799 |
"in the Publish box. For Status, Visibility, and Publish (immediately), "
|
@@ -2804,7 +2819,7 @@ msgid ""
|
|
2804 |
"future or backdate a topic."
|
2805 |
msgstr ""
|
2806 |
|
2807 |
-
#: includes/admin/topics.php:
|
2808 |
msgid ""
|
2809 |
"<strong>Featured Image</strong> - This allows you to associate an image "
|
2810 |
"with your topic without inserting it. This is usually useful only if your "
|
@@ -2812,22 +2827,22 @@ msgid ""
|
|
2812 |
"page, a custom header, etc."
|
2813 |
msgstr ""
|
2814 |
|
2815 |
-
#: includes/admin/topics.php:
|
2816 |
msgid "Topic Attributes"
|
2817 |
msgstr ""
|
2818 |
|
2819 |
-
#: includes/admin/topics.php:
|
2820 |
msgid "Select the attributes that your topic should have:"
|
2821 |
msgstr ""
|
2822 |
|
2823 |
-
#: includes/admin/topics.php:
|
2824 |
msgid ""
|
2825 |
"<strong>Forum</strong> dropdown determines the parent forum that the topic "
|
2826 |
"belongs to. Select the forum or category from the dropdown, or leave the "
|
2827 |
"default \"No forum\" to post the topic without an assigned forum."
|
2828 |
msgstr ""
|
2829 |
|
2830 |
-
#: includes/admin/topics.php:
|
2831 |
msgid ""
|
2832 |
"<strong>Topic Type</strong> dropdown indicates the sticky status of the "
|
2833 |
"topic. Selecting the super sticky option would stick the topic to the front "
|
@@ -2836,192 +2851,192 @@ msgid ""
|
|
2836 |
"anywhere."
|
2837 |
msgstr ""
|
2838 |
|
2839 |
-
#: includes/admin/topics.php:
|
2840 |
msgid "%s topic updated."
|
2841 |
msgid_plural "%s topics updated."
|
2842 |
msgstr[0] ""
|
2843 |
msgstr[1] ""
|
2844 |
|
2845 |
-
#: includes/admin/topics.php:
|
2846 |
msgid "1 topic not updated, somebody is editing it."
|
2847 |
msgstr ""
|
2848 |
|
2849 |
-
#: includes/admin/topics.php:
|
2850 |
msgid "%s topic not updated, somebody is editing it."
|
2851 |
msgid_plural "%s topics not updated, somebody is editing them."
|
2852 |
msgstr[0] ""
|
2853 |
msgstr[1] ""
|
2854 |
|
2855 |
-
#: includes/admin/topics.php:
|
2856 |
msgid "Error in spamming topic."
|
2857 |
msgstr ""
|
2858 |
|
2859 |
-
#: includes/admin/topics.php:
|
2860 |
msgid "Sorry, you are not allowed to unspam this topic."
|
2861 |
msgstr ""
|
2862 |
|
2863 |
-
#: includes/admin/topics.php:
|
2864 |
msgid "Error in unspamming topic."
|
2865 |
msgstr ""
|
2866 |
|
2867 |
-
#: includes/admin/topics.php:
|
2868 |
msgid "The topic was not found."
|
2869 |
msgstr ""
|
2870 |
|
2871 |
-
#: includes/admin/topics.php:
|
2872 |
msgid "There was a problem opening the topic \"%1$s\"."
|
2873 |
msgstr ""
|
2874 |
|
2875 |
-
#: includes/admin/topics.php:
|
2876 |
msgid "Topic \"%1$s\" successfully opened."
|
2877 |
msgstr ""
|
2878 |
|
2879 |
-
#: includes/admin/topics.php:
|
2880 |
msgid "There was a problem closing the topic \"%1$s\"."
|
2881 |
msgstr ""
|
2882 |
|
2883 |
-
#: includes/admin/topics.php:
|
2884 |
msgid "Topic \"%1$s\" successfully closed."
|
2885 |
msgstr ""
|
2886 |
|
2887 |
-
#: includes/admin/topics.php:
|
2888 |
msgid "There was a problem sticking the topic \"%1$s\" to front."
|
2889 |
msgstr ""
|
2890 |
|
2891 |
-
#: includes/admin/topics.php:
|
2892 |
msgid "Topic \"%1$s\" successfully stuck to front."
|
2893 |
msgstr ""
|
2894 |
|
2895 |
-
#: includes/admin/topics.php:
|
2896 |
msgid "There was a problem sticking the topic \"%1$s\"."
|
2897 |
msgstr ""
|
2898 |
|
2899 |
-
#: includes/admin/topics.php:
|
2900 |
msgid "Topic \"%1$s\" successfully stuck."
|
2901 |
msgstr ""
|
2902 |
|
2903 |
-
#: includes/admin/topics.php:
|
2904 |
msgid "There was a problem unsticking the topic \"%1$s\"."
|
2905 |
msgstr ""
|
2906 |
|
2907 |
-
#: includes/admin/topics.php:
|
2908 |
msgid "Topic \"%1$s\" successfully unstuck."
|
2909 |
msgstr ""
|
2910 |
|
2911 |
-
#: includes/admin/topics.php:
|
2912 |
msgid "There was a problem marking the topic \"%1$s\" as spam."
|
2913 |
msgstr ""
|
2914 |
|
2915 |
-
#: includes/admin/topics.php:
|
2916 |
msgid "Topic \"%1$s\" successfully marked as spam."
|
2917 |
msgstr ""
|
2918 |
|
2919 |
-
#: includes/admin/topics.php:
|
2920 |
msgid "There was a problem unmarking the topic \"%1$s\" as spam."
|
2921 |
msgstr ""
|
2922 |
|
2923 |
-
#: includes/admin/topics.php:
|
2924 |
msgid "Topic \"%1$s\" successfully unmarked as spam."
|
2925 |
msgstr ""
|
2926 |
|
2927 |
-
#: includes/admin/topics.php:
|
2928 |
msgid "There was a problem approving the topic \"%1$s\"."
|
2929 |
msgstr ""
|
2930 |
|
2931 |
-
#: includes/admin/topics.php:
|
2932 |
msgid "Topic \"%1$s\" successfully approved."
|
2933 |
msgstr ""
|
2934 |
|
2935 |
-
#: includes/admin/topics.php:
|
2936 |
msgid "There was a problem unapproving the topic \"%1$s\"."
|
2937 |
msgstr ""
|
2938 |
|
2939 |
-
#: includes/admin/topics.php:
|
2940 |
msgid "Topic \"%1$s\" successfully unapproved."
|
2941 |
msgstr ""
|
2942 |
|
2943 |
-
#: includes/admin/topics.php:
|
2944 |
msgid "Voices"
|
2945 |
msgstr ""
|
2946 |
|
2947 |
-
#: includes/admin/topics.php:
|
2948 |
msgid "No Replies"
|
2949 |
msgstr ""
|
2950 |
|
2951 |
-
#: includes/admin/topics.php:
|
2952 |
msgid "Unapprove this topic"
|
2953 |
msgstr ""
|
2954 |
|
2955 |
-
#: includes/admin/topics.php:
|
2956 |
msgid "Approve this topic"
|
2957 |
msgstr ""
|
2958 |
|
2959 |
-
#: includes/admin/topics.php:
|
2960 |
msgid "Close this topic"
|
2961 |
msgstr ""
|
2962 |
|
2963 |
-
#: includes/admin/topics.php:
|
2964 |
msgid "Open this topic"
|
2965 |
msgstr ""
|
2966 |
|
2967 |
-
#: includes/admin/topics.php:
|
2968 |
msgid "Unstick this topic"
|
2969 |
msgstr ""
|
2970 |
|
2971 |
-
#: includes/admin/topics.php:
|
2972 |
msgid "Unstick"
|
2973 |
msgstr ""
|
2974 |
|
2975 |
-
#: includes/admin/topics.php:
|
2976 |
msgid "Stick this topic to its forum"
|
2977 |
msgstr ""
|
2978 |
|
2979 |
-
#: includes/admin/topics.php:
|
2980 |
msgid "Stick"
|
2981 |
msgstr ""
|
2982 |
|
2983 |
-
#: includes/admin/topics.php:
|
2984 |
msgid "Stick this topic to front"
|
2985 |
msgstr ""
|
2986 |
|
2987 |
-
#: includes/admin/topics.php:
|
2988 |
msgid "(to front)"
|
2989 |
msgstr ""
|
2990 |
|
2991 |
-
#: includes/admin/topics.php:
|
2992 |
msgid "Mark the topic as not spam"
|
2993 |
msgstr ""
|
2994 |
|
2995 |
-
#: includes/admin/topics.php:
|
2996 |
msgid "Mark this topic as spam"
|
2997 |
msgstr ""
|
2998 |
|
2999 |
-
#: includes/admin/topics.php:
|
3000 |
msgid "Topic updated."
|
3001 |
msgstr ""
|
3002 |
|
3003 |
-
#: includes/admin/topics.php:
|
3004 |
#. translators: %s: date and time of the revision
|
3005 |
msgid "Topic restored to revision from %s"
|
3006 |
msgstr ""
|
3007 |
|
3008 |
-
#: includes/admin/topics.php:
|
3009 |
msgid "Topic created."
|
3010 |
msgstr ""
|
3011 |
|
3012 |
-
#: includes/admin/topics.php:
|
3013 |
msgid "Topic saved."
|
3014 |
msgstr ""
|
3015 |
|
3016 |
-
#: includes/admin/topics.php:
|
3017 |
msgid "Topic submitted."
|
3018 |
msgstr ""
|
3019 |
|
3020 |
-
#: includes/admin/topics.php:
|
3021 |
msgid "Topic scheduled for: %s."
|
3022 |
msgstr ""
|
3023 |
|
3024 |
-
#: includes/admin/topics.php:
|
3025 |
msgid "Topic draft updated."
|
3026 |
msgstr ""
|
3027 |
|
@@ -3762,13 +3777,13 @@ msgid_plural "%s topics"
|
|
3762 |
msgstr[0] ""
|
3763 |
msgstr[1] ""
|
3764 |
|
3765 |
-
#: includes/forums/template.php:1286 includes/topics/template.php:
|
3766 |
msgid "(+ %d hidden)"
|
3767 |
msgid_plural "(+ %d hidden)"
|
3768 |
msgstr[0] ""
|
3769 |
msgstr[1] ""
|
3770 |
|
3771 |
-
#: includes/forums/template.php:2109 includes/topics/template.php:
|
3772 |
msgid "%s reply"
|
3773 |
msgid_plural "%s replies"
|
3774 |
msgstr[0] ""
|
@@ -3996,7 +4011,7 @@ msgstr ""
|
|
3996 |
msgid "All Posts"
|
3997 |
msgstr ""
|
3998 |
|
3999 |
-
#: includes/replies/functions.php:2336 includes/topics/functions.php:
|
4000 |
msgid "Replies: %s"
|
4001 |
msgstr ""
|
4002 |
|
@@ -4064,13 +4079,13 @@ msgstr ""
|
|
4064 |
msgid "Cancel"
|
4065 |
msgstr ""
|
4066 |
|
4067 |
-
#: includes/replies/template.php:2101 includes/topics/template.php:
|
4068 |
#: templates/default/bbpress/form-topic-tag.php:97
|
4069 |
#: templates/default/bbpress/form-topic-tag.php:114
|
4070 |
msgid "Delete"
|
4071 |
msgstr ""
|
4072 |
|
4073 |
-
#: includes/replies/template.php:2119 includes/topics/template.php:
|
4074 |
msgid "Are you sure you want to delete that permanently?"
|
4075 |
msgstr ""
|
4076 |
|
@@ -4090,31 +4105,31 @@ msgstr ""
|
|
4090 |
msgid "Split the topic from this reply"
|
4091 |
msgstr ""
|
4092 |
|
4093 |
-
#: includes/replies/template.php:
|
4094 |
msgid "Viewing %1$s reply thread"
|
4095 |
msgid_plural "Viewing %1$s reply threads"
|
4096 |
msgstr[0] ""
|
4097 |
msgstr[1] ""
|
4098 |
|
4099 |
-
#: includes/replies/template.php:
|
4100 |
msgid "Viewing %1$s reply"
|
4101 |
msgid_plural "Viewing %1$s replies"
|
4102 |
msgstr[0] ""
|
4103 |
msgstr[1] ""
|
4104 |
|
4105 |
-
#: includes/replies/template.php:
|
4106 |
msgid "Viewing %2$s replies (of %4$s total)"
|
4107 |
msgid_plural "Viewing %1$s replies - %2$s through %3$s (of %4$s total)"
|
4108 |
msgstr[0] ""
|
4109 |
msgstr[1] ""
|
4110 |
|
4111 |
-
#: includes/replies/template.php:
|
4112 |
msgid "Viewing %1$s post"
|
4113 |
msgid_plural "Viewing %1$s posts"
|
4114 |
msgstr[0] ""
|
4115 |
msgstr[1] ""
|
4116 |
|
4117 |
-
#: includes/replies/template.php:
|
4118 |
msgid "Viewing %2$s post (of %4$s total)"
|
4119 |
msgid_plural "Viewing %1$s posts - %2$s through %3$s (of %4$s total)"
|
4120 |
msgstr[0] ""
|
@@ -4370,96 +4385,91 @@ msgstr ""
|
|
4370 |
msgid "Unfavorite"
|
4371 |
msgstr ""
|
4372 |
|
4373 |
-
#: includes/topics/template.php:
|
4374 |
msgid "Tagged:"
|
4375 |
msgstr ""
|
4376 |
|
4377 |
-
#: includes/topics/template.php:
|
4378 |
#: templates/default/bbpress/form-topic-tag.php:66
|
4379 |
#: templates/default/bbpress/form-topic-tag.php:82
|
4380 |
msgid "Merge"
|
4381 |
msgstr ""
|
4382 |
|
4383 |
-
#: includes/topics/template.php:
|
4384 |
msgid "Viewing %1$s topic"
|
4385 |
msgid_plural "Viewing %1$s topics"
|
4386 |
msgstr[0] ""
|
4387 |
msgstr[1] ""
|
4388 |
|
4389 |
-
#: includes/topics/template.php:
|
4390 |
msgid "Viewing topic %2$s (of %4$s total)"
|
4391 |
msgid_plural "Viewing %1$s topics - %2$s through %3$s (of %4$s total)"
|
4392 |
msgstr[0] ""
|
4393 |
msgstr[1] ""
|
4394 |
|
4395 |
-
#: includes/topics/template.php:
|
4396 |
msgid "This topic is marked as spam."
|
4397 |
msgstr ""
|
4398 |
|
4399 |
-
#: includes/topics/template.php:
|
4400 |
msgid "This topic is in the trash."
|
4401 |
msgstr ""
|
4402 |
|
4403 |
-
#: includes/topics/template.php:
|
4404 |
msgid "%s voice"
|
4405 |
msgid_plural "%s voices"
|
4406 |
msgstr[0] ""
|
4407 |
msgstr[1] ""
|
4408 |
|
4409 |
-
#: includes/topics/template.php:
|
4410 |
msgid "This topic contains %1$s, has %2$s, and was last updated by %3$s %4$s."
|
4411 |
msgstr ""
|
4412 |
|
4413 |
-
#: includes/topics/template.php:
|
4414 |
msgid "This topic contains %1$s and has %2$s."
|
4415 |
msgstr ""
|
4416 |
|
4417 |
-
#: includes/topics/template.php:
|
4418 |
msgid "This topic has no replies."
|
4419 |
msgstr ""
|
4420 |
|
4421 |
-
#: includes/topics/template.php:
|
4422 |
-
#: templates/default/bbpress/content-statistics.php:37
|
4423 |
-
msgid "Topic Tags"
|
4424 |
-
msgstr ""
|
4425 |
-
|
4426 |
-
#: includes/topics/template.php:3552
|
4427 |
msgid "Search Tags"
|
4428 |
msgstr ""
|
4429 |
|
4430 |
-
#: includes/topics/template.php:
|
4431 |
msgid "Popular Tags"
|
4432 |
msgstr ""
|
4433 |
|
4434 |
-
#: includes/topics/template.php:
|
4435 |
msgid "All Tags"
|
4436 |
msgstr ""
|
4437 |
|
4438 |
-
#: includes/topics/template.php:
|
4439 |
msgid "Edit Tag"
|
4440 |
msgstr ""
|
4441 |
|
4442 |
-
#: includes/topics/template.php:
|
4443 |
msgid "Update Tag"
|
4444 |
msgstr ""
|
4445 |
|
4446 |
-
#: includes/topics/template.php:
|
4447 |
msgid "Add New Tag"
|
4448 |
msgstr ""
|
4449 |
|
4450 |
-
#: includes/topics/template.php:
|
4451 |
msgid "New Tag Name"
|
4452 |
msgstr ""
|
4453 |
|
4454 |
-
#: includes/topics/template.php:
|
4455 |
msgid "View Topic Tag"
|
4456 |
msgstr ""
|
4457 |
|
4458 |
-
#: includes/topics/template.php:
|
4459 |
msgid "View Topic Tags"
|
4460 |
msgstr ""
|
4461 |
|
4462 |
-
#: includes/topics/template.php:
|
4463 |
msgid "Separate topic tags with commas"
|
4464 |
msgstr ""
|
4465 |
|
@@ -5394,12 +5404,12 @@ msgctxt "admin color scheme"
|
|
5394 |
msgid "Evergreen"
|
5395 |
msgstr ""
|
5396 |
|
5397 |
-
#: includes/admin/forums.php:
|
5398 |
msgctxt "Close a Forum"
|
5399 |
msgid "Close"
|
5400 |
msgstr ""
|
5401 |
|
5402 |
-
#: includes/admin/forums.php:
|
5403 |
msgctxt "Open a Forum"
|
5404 |
msgid "Open"
|
5405 |
msgstr ""
|
@@ -5410,32 +5420,32 @@ msgctxt "noun"
|
|
5410 |
msgid "Reply"
|
5411 |
msgstr ""
|
5412 |
|
5413 |
-
#: includes/admin/replies.php:
|
5414 |
msgctxt "Unapprove reply"
|
5415 |
msgid "Unapprove"
|
5416 |
msgstr ""
|
5417 |
|
5418 |
-
#: includes/admin/replies.php:
|
5419 |
msgctxt "Approve reply"
|
5420 |
msgid "Approve"
|
5421 |
msgstr ""
|
5422 |
|
5423 |
-
#: includes/admin/topics.php:
|
5424 |
msgctxt "Unapprove Topic"
|
5425 |
msgid "Unapprove"
|
5426 |
msgstr ""
|
5427 |
|
5428 |
-
#: includes/admin/topics.php:
|
5429 |
msgctxt "Approve Topic"
|
5430 |
msgid "Approve"
|
5431 |
msgstr ""
|
5432 |
|
5433 |
-
#: includes/admin/topics.php:
|
5434 |
msgctxt "Close a Topic"
|
5435 |
msgid "Close"
|
5436 |
msgstr ""
|
5437 |
|
5438 |
-
#: includes/admin/topics.php:
|
5439 |
msgctxt "Open a Topic"
|
5440 |
msgid "Open"
|
5441 |
msgstr ""
|
@@ -5569,17 +5579,17 @@ msgctxt "date at time"
|
|
5569 |
msgid "%1$s at %2$s"
|
5570 |
msgstr ""
|
5571 |
|
5572 |
-
#: includes/replies/template.php:1680 includes/topics/template.php:
|
5573 |
msgctxt "verb"
|
5574 |
msgid "Reply"
|
5575 |
msgstr ""
|
5576 |
|
5577 |
-
#: includes/replies/template.php:2368 includes/topics/template.php:
|
5578 |
msgctxt "Pending Status"
|
5579 |
msgid "Approve"
|
5580 |
msgstr ""
|
5581 |
|
5582 |
-
#: includes/replies/template.php:2369 includes/topics/template.php:
|
5583 |
msgctxt "Pending Status"
|
5584 |
msgid "Unapprove"
|
5585 |
msgstr ""
|
@@ -5624,12 +5634,12 @@ msgctxt "Make topic super sticky"
|
|
5624 |
msgid "Super Sticky"
|
5625 |
msgstr ""
|
5626 |
|
5627 |
-
#: includes/topics/template.php:
|
5628 |
msgctxt "Topic Status"
|
5629 |
msgid "Close"
|
5630 |
msgstr ""
|
5631 |
|
5632 |
-
#: includes/topics/template.php:
|
5633 |
msgctxt "Topic Status"
|
5634 |
msgid "Open"
|
5635 |
msgstr ""
|
2 |
# This file is distributed under the GPLv2 or later (license.txt).
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: bbPress 2.6-beta-2\n"
|
6 |
"Report-Msgid-Bugs-To: https://bbpress.trac.wordpress.org\n"
|
7 |
+
"POT-Creation-Date: 2017-01-17 22:07:01+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
41 |
msgid "Topics with no replies"
|
42 |
msgstr ""
|
43 |
|
44 |
+
#: includes/admin/actions.php:153 includes/admin/forums.php:524
|
45 |
#: includes/admin/settings.php:232 includes/admin/settings.php:253
|
46 |
+
#: includes/admin/tools.php:845 includes/admin/topics.php:782
|
47 |
#: includes/extend/buddypress/activity.php:365
|
48 |
#: includes/forums/template.php:2858 includes/topics/template.php:47
|
49 |
#: includes/topics/template.php:48
|
53 |
msgstr ""
|
54 |
|
55 |
#: includes/admin/actions.php:158 includes/admin/actions.php:170
|
56 |
+
#: includes/admin/forums.php:525
|
57 |
#: includes/admin/list-tables/topic-replies.php:38
|
58 |
#: includes/admin/settings.php:240 includes/admin/settings.php:261
|
59 |
+
#: includes/admin/tools.php:848 includes/admin/topics.php:405
|
60 |
+
#: includes/admin/topics.php:784 includes/core/theme-compat.php:676
|
61 |
#: includes/extend/buddypress/activity.php:366
|
62 |
#: includes/forums/template.php:2922 includes/replies/template.php:47
|
63 |
#: includes/replies/template.php:48
|
70 |
msgstr ""
|
71 |
|
72 |
#: includes/admin/actions.php:165 includes/admin/actions.php:177
|
73 |
+
#: includes/admin/forums.php:523 includes/admin/metaboxes.php:97
|
74 |
#: includes/admin/metaboxes.php:425 includes/admin/metaboxes.php:492
|
75 |
+
#: includes/admin/replies.php:616 includes/admin/settings.php:303
|
76 |
+
#: includes/admin/topics.php:783 includes/extend/buddypress/groups.php:50
|
77 |
#: includes/extend/buddypress/groups.php:51 includes/forums/template.php:50
|
78 |
#: templates/default/bbpress/loop-forums.php:17
|
79 |
msgid "Forum"
|
80 |
msgstr ""
|
81 |
|
82 |
#: includes/admin/actions.php:182 includes/admin/metaboxes.php:114
|
83 |
+
#: includes/admin/metaboxes.php:519 includes/admin/replies.php:617
|
84 |
#: includes/admin/settings.php:311 includes/topics/template.php:49
|
85 |
#: templates/default/bbpress/content-single-topic-lead.php:20
|
86 |
#: templates/default/bbpress/content-single-topic-lead.php:88
|
107 |
msgstr ""
|
108 |
|
109 |
#: includes/admin/admin.php:228 includes/admin/functions.php:291
|
110 |
+
#: includes/admin/tools.php:308 includes/admin/tools.php:2495
|
111 |
msgid "Reset Forums"
|
112 |
msgstr ""
|
113 |
|
117 |
|
118 |
#: includes/admin/admin.php:243 includes/admin/admin.php:244
|
119 |
#: includes/admin/admin.php:254 includes/admin/admin.php:255
|
120 |
+
#: includes/admin/tools.php:842 includes/admin/users.php:97
|
121 |
#: includes/common/widgets.php:667 includes/extend/buddypress/loader.php:42
|
122 |
#: includes/extend/buddypress/loader.php:179
|
123 |
#: includes/extend/buddypress/loader.php:286
|
134 |
|
135 |
#: includes/admin/admin.php:291 includes/admin/admin.php:292
|
136 |
#: includes/admin/admin.php:315 includes/admin/admin.php:316
|
137 |
+
#: includes/admin/admin.php:1053 includes/admin/admin.php:1141
|
138 |
msgid "Update Forums"
|
139 |
msgstr ""
|
140 |
|
229 |
msgid "Roles and capabilities have been swept through, cleaned up, and simplified."
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: includes/admin/admin.php:846 includes/admin/admin.php:983
|
233 |
msgid "Go to Forum Settings"
|
234 |
msgstr ""
|
235 |
|
272 |
msgstr ""
|
273 |
|
274 |
#: includes/admin/admin.php:919
|
275 |
+
msgid "Core Contributors to bbPress 2.6"
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: includes/admin/admin.php:1007 includes/admin/admin.php:1029
|
279 |
msgid "Update Forum"
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: includes/admin/admin.php:1018 includes/admin/admin.php:1070
|
283 |
msgid "All done!"
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: includes/admin/admin.php:1019 includes/admin/admin.php:1071
|
287 |
msgid "Go Back"
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: includes/admin/admin.php:1028
|
291 |
msgid "You can update your forum through this page. Hit the link below to update."
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: includes/admin/admin.php:1096
|
295 |
msgid ""
|
296 |
"Warning! Problem updating %1$s. Your server may not be able to connect to "
|
297 |
"sites running on it. Error message: %2$s"
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: includes/admin/admin.php:1121
|
301 |
msgid ""
|
302 |
"If your browser doesn’t start loading the next page automatically, "
|
303 |
"click this link:"
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: includes/admin/admin.php:1122
|
307 |
msgid "Next Forums"
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: includes/admin/admin.php:1140
|
311 |
msgid ""
|
312 |
"You can update all the forums on your network through this page. It works "
|
313 |
"by calling the update script of each site automatically. Hit the link below "
|
514 |
msgid "Calculating threaded replies parents (%1$s - %2$s)"
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: includes/admin/forums.php:113 includes/admin/replies.php:124
|
518 |
#: includes/admin/settings.php:1577 includes/admin/tools.php:340
|
519 |
+
#: includes/admin/topics.php:127
|
520 |
msgid "Overview"
|
521 |
msgstr ""
|
522 |
|
523 |
+
#: includes/admin/forums.php:115
|
524 |
msgid ""
|
525 |
"This screen displays the individual forums on your site. You can customize "
|
526 |
"the display of this screen to suit your workflow."
|
527 |
msgstr ""
|
528 |
|
529 |
+
#: includes/admin/forums.php:121 includes/admin/replies.php:132
|
530 |
+
#: includes/admin/topics.php:135
|
531 |
msgid "Screen Content"
|
532 |
msgstr ""
|
533 |
|
534 |
+
#: includes/admin/forums.php:123 includes/admin/replies.php:134
|
535 |
+
#: includes/admin/topics.php:137
|
536 |
msgid ""
|
537 |
"You can customize the display of this screen’s contents in a number "
|
538 |
"of ways:"
|
539 |
msgstr ""
|
540 |
|
541 |
+
#: includes/admin/forums.php:125
|
542 |
msgid ""
|
543 |
"You can hide/display columns based on your needs and decide how many forums "
|
544 |
"to list per screen using the Screen Options tab."
|
545 |
msgstr ""
|
546 |
|
547 |
+
#: includes/admin/forums.php:126
|
548 |
msgid ""
|
549 |
"You can filter the list of forums by forum status using the text links in "
|
550 |
"the upper left to show All, Published, or Trashed forums. The default view "
|
551 |
"is to show all forums."
|
552 |
msgstr ""
|
553 |
|
554 |
+
#: includes/admin/forums.php:127
|
555 |
msgid ""
|
556 |
"You can refine the list to show only forums from a specific month by using "
|
557 |
"the dropdown menus above the forums list. Click the Filter button after "
|
559 |
"forum creator in the forums list."
|
560 |
msgstr ""
|
561 |
|
562 |
+
#: includes/admin/forums.php:134 includes/admin/replies.php:146
|
563 |
+
#: includes/admin/topics.php:149
|
564 |
msgid "Available Actions"
|
565 |
msgstr ""
|
566 |
|
567 |
+
#: includes/admin/forums.php:136
|
568 |
msgid ""
|
569 |
"Hovering over a row in the forums list will display action links that allow "
|
570 |
"you to manage your forum. You can perform the following actions:"
|
571 |
msgstr ""
|
572 |
|
573 |
+
#: includes/admin/forums.php:138
|
574 |
msgid ""
|
575 |
"<strong>Edit</strong> takes you to the editing screen for that forum. You "
|
576 |
"can also reach that screen by clicking on the forum title."
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: includes/admin/forums.php:139
|
580 |
msgid ""
|
581 |
"<strong>Trash</strong> removes your forum from this list and places it in "
|
582 |
"the trash, from which you can permanently delete it."
|
583 |
msgstr ""
|
584 |
|
585 |
+
#: includes/admin/forums.php:140
|
586 |
msgid ""
|
587 |
"<strong>View</strong> will show you what your draft forum will look like if "
|
588 |
"you publish it. View will take you to your live site to view the forum. "
|
589 |
"Which link is available depends on your forum’s status."
|
590 |
msgstr ""
|
591 |
|
592 |
+
#: includes/admin/forums.php:147 includes/admin/replies.php:162
|
593 |
#: includes/admin/tools.php:54 includes/admin/tools.php:150
|
594 |
+
#: includes/admin/topics.php:167
|
595 |
msgid "Bulk Actions"
|
596 |
msgstr ""
|
597 |
|
598 |
+
#: includes/admin/forums.php:149
|
599 |
msgid ""
|
600 |
"You can also edit or move multiple forums to the trash at once. Select the "
|
601 |
"forums you want to act on using the checkboxes, then select the action you "
|
602 |
"want to take from the Bulk Actions menu and click Apply."
|
603 |
msgstr ""
|
604 |
|
605 |
+
#: includes/admin/forums.php:150
|
606 |
msgid ""
|
607 |
"When using Bulk Edit, you can change the metadata (categories, author, "
|
608 |
"etc.) for all selected forums at once. To remove a forum from the grouping, "
|
609 |
"just click the x next to its name in the Bulk Edit area that appears."
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: includes/admin/forums.php:155 includes/admin/forums.php:213
|
613 |
+
#: includes/admin/replies.php:170 includes/admin/replies.php:226
|
614 |
#: includes/admin/settings.php:1623 includes/admin/tools.php:282
|
615 |
#: includes/admin/tools.php:314 includes/admin/tools.php:374
|
616 |
+
#: includes/admin/topics.php:175 includes/admin/topics.php:230
|
617 |
msgid "For more information:"
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: includes/admin/forums.php:156 includes/admin/forums.php:214
|
621 |
+
#: includes/admin/replies.php:171 includes/admin/replies.php:227
|
622 |
#: includes/admin/settings.php:1624 includes/admin/tools.php:283
|
623 |
#: includes/admin/tools.php:315 includes/admin/tools.php:375
|
624 |
+
#: includes/admin/topics.php:176 includes/admin/topics.php:231
|
625 |
msgid ""
|
626 |
"<a href=\"https://codex.bbpress.org\" target=\"_blank\">bbPress "
|
627 |
"Documentation</a>"
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: includes/admin/forums.php:157 includes/admin/forums.php:215
|
631 |
+
#: includes/admin/replies.php:172 includes/admin/replies.php:228
|
632 |
#: includes/admin/settings.php:1625 includes/admin/tools.php:284
|
633 |
#: includes/admin/tools.php:316 includes/admin/tools.php:376
|
634 |
+
#: includes/admin/topics.php:177 includes/admin/topics.php:232
|
635 |
msgid ""
|
636 |
"<a href=\"https://bbpress.org/forums/\" target=\"_blank\">bbPress Support "
|
637 |
"Forums</a>"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: includes/admin/forums.php:170
|
641 |
msgid ""
|
642 |
"The title field and the big forum editing Area are fixed in place, but you "
|
643 |
"can reposition all the other boxes using drag and drop, and can minimize or "
|
647 |
"screen."
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: includes/admin/forums.php:174 includes/admin/replies.php:189
|
651 |
+
#: includes/admin/topics.php:194
|
652 |
msgid "Customizing This Display"
|
653 |
msgstr ""
|
654 |
|
655 |
+
#: includes/admin/forums.php:180
|
656 |
msgid "Title and Forum Editor"
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: includes/admin/forums.php:182
|
660 |
msgid ""
|
661 |
"<strong>Title</strong> - Enter a title for your forum. After you enter a "
|
662 |
"title, you’ll see the permalink below, which you can edit."
|
663 |
msgstr ""
|
664 |
|
665 |
+
#: includes/admin/forums.php:183
|
666 |
msgid ""
|
667 |
"<strong>Forum Editor</strong> - Enter the text for your forum. There are "
|
668 |
"two modes of editing: Visual and HTML. Choose the mode by clicking on the "
|
677 |
"editor."
|
678 |
msgstr ""
|
679 |
|
680 |
+
#: includes/admin/forums.php:186
|
681 |
msgid ""
|
682 |
"<strong>Publish</strong> - You can set the terms of publishing your forum "
|
683 |
"in the Publish box. For Status, Visibility, and Publish (immediately), "
|
688 |
"future or backdate a forum."
|
689 |
msgstr ""
|
690 |
|
691 |
+
#: includes/admin/forums.php:189
|
692 |
msgid ""
|
693 |
"<strong>Featured Image</strong> - This allows you to associate an image "
|
694 |
"with your forum without inserting it. This is usually useful only if your "
|
696 |
"page, a custom header, etc."
|
697 |
msgstr ""
|
698 |
|
699 |
+
#: includes/admin/forums.php:194 includes/admin/forums.php:231
|
700 |
msgid "Forum Attributes"
|
701 |
msgstr ""
|
702 |
|
703 |
+
#: includes/admin/forums.php:196
|
704 |
msgid "Select the attributes that your forum should have:"
|
705 |
msgstr ""
|
706 |
|
707 |
+
#: includes/admin/forums.php:198
|
708 |
msgid ""
|
709 |
"<strong>Type</strong> indicates if the forum is a category or forum. "
|
710 |
"Categories generally contain other forums."
|
711 |
msgstr ""
|
712 |
|
713 |
+
#: includes/admin/forums.php:199
|
714 |
msgid ""
|
715 |
"<strong>Status</strong> allows you to close a forum to new topics and "
|
716 |
"forums."
|
717 |
msgstr ""
|
718 |
|
719 |
+
#: includes/admin/forums.php:200
|
720 |
msgid ""
|
721 |
"<strong>Visibility</strong> lets you pick the scope of each forum and what "
|
722 |
"users are allowed to access it."
|
723 |
msgstr ""
|
724 |
|
725 |
+
#: includes/admin/forums.php:201
|
726 |
msgid ""
|
727 |
"<strong>Parent</strong> dropdown determines the parent forum. Select the "
|
728 |
"forum or category from the dropdown, or leave the default \"No parent\" to "
|
729 |
"create the forum at the root of your forums."
|
730 |
msgstr ""
|
731 |
|
732 |
+
#: includes/admin/forums.php:202
|
733 |
msgid "<strong>Order</strong> allows you to order your forums numerically."
|
734 |
msgstr ""
|
735 |
|
736 |
+
#: includes/admin/forums.php:208 includes/admin/replies.php:221
|
737 |
+
#: includes/admin/topics.php:225
|
738 |
msgid "Publish Box"
|
739 |
msgstr ""
|
740 |
|
741 |
+
#: includes/admin/forums.php:258 includes/admin/settings.php:168
|
742 |
+
#: includes/admin/tools.php:2513
|
743 |
msgid "Forum Moderators"
|
744 |
msgstr ""
|
745 |
|
746 |
+
#: includes/admin/forums.php:290 includes/admin/settings.php:152
|
747 |
+
#: includes/admin/settings.php:388 includes/admin/topics.php:469
|
748 |
#: includes/extend/buddypress/loader.php:237
|
749 |
#: templates/default/bbpress/user-details.php:56
|
750 |
msgid "Subscriptions"
|
751 |
msgstr ""
|
752 |
|
753 |
+
#: includes/admin/forums.php:408
|
754 |
msgid "The forum was not found."
|
755 |
msgstr ""
|
756 |
|
757 |
+
#: includes/admin/forums.php:413 includes/admin/replies.php:490
|
758 |
+
#: includes/admin/topics.php:587
|
759 |
msgid "You do not have permission to do that."
|
760 |
msgstr ""
|
761 |
|
762 |
+
#: includes/admin/forums.php:484
|
763 |
msgid "There was a problem opening the forum \"%1$s\"."
|
764 |
msgstr ""
|
765 |
|
766 |
+
#: includes/admin/forums.php:485
|
767 |
msgid "Forum \"%1$s\" successfully opened."
|
768 |
msgstr ""
|
769 |
|
770 |
+
#: includes/admin/forums.php:490
|
771 |
msgid "There was a problem closing the forum \"%1$s\"."
|
772 |
msgstr ""
|
773 |
|
774 |
+
#: includes/admin/forums.php:491
|
775 |
msgid "Forum \"%1$s\" successfully closed."
|
776 |
msgstr ""
|
777 |
|
778 |
+
#: includes/admin/forums.php:526 includes/admin/metaboxes.php:662
|
779 |
msgid "Moderators"
|
780 |
msgstr ""
|
781 |
|
782 |
+
#: includes/admin/forums.php:527
|
783 |
#: templates/default/bbpress/content-single-topic-lead.php:16
|
784 |
#: templates/default/bbpress/content-single-topic-lead.php:84
|
785 |
msgid "Creator"
|
786 |
msgstr ""
|
787 |
|
788 |
+
#: includes/admin/forums.php:528 includes/admin/replies.php:619
|
789 |
+
#: includes/admin/topics.php:787
|
790 |
msgid "Created"
|
791 |
msgstr ""
|
792 |
|
793 |
+
#: includes/admin/forums.php:529 includes/admin/topics.php:788
|
794 |
#: templates/default/bbpress/loop-forums.php:23
|
795 |
#: templates/default/bbpress/loop-topics.php:21
|
796 |
msgid "Last Post"
|
797 |
msgstr ""
|
798 |
|
799 |
+
#: includes/admin/forums.php:572
|
800 |
msgid "—"
|
801 |
msgstr ""
|
802 |
|
803 |
+
#: includes/admin/forums.php:589 includes/forums/template.php:613
|
804 |
msgid "No Topics"
|
805 |
msgstr ""
|
806 |
|
807 |
+
#: includes/admin/forums.php:630
|
808 |
msgid "Close this forum"
|
809 |
msgstr ""
|
810 |
|
811 |
+
#: includes/admin/forums.php:632
|
812 |
msgid "Open this forum"
|
813 |
msgstr ""
|
814 |
|
815 |
+
#: includes/admin/forums.php:674 includes/admin/forums.php:686
|
816 |
msgid "Forum updated."
|
817 |
msgstr ""
|
818 |
|
819 |
+
#: includes/admin/forums.php:676 includes/admin/forums.php:699
|
820 |
msgid "View forum"
|
821 |
msgstr ""
|
822 |
|
823 |
+
#: includes/admin/forums.php:680 includes/admin/replies.php:911
|
824 |
+
#: includes/admin/topics.php:1085
|
825 |
msgid "Custom field updated."
|
826 |
msgstr ""
|
827 |
|
828 |
+
#: includes/admin/forums.php:683 includes/admin/replies.php:914
|
829 |
+
#: includes/admin/topics.php:1088
|
830 |
msgid "Custom field deleted."
|
831 |
msgstr ""
|
832 |
|
833 |
+
#: includes/admin/forums.php:691
|
834 |
#. translators: %s: date and time of the revision
|
835 |
msgid "Forum restored to revision from %s"
|
836 |
msgstr ""
|
837 |
|
838 |
+
#: includes/admin/forums.php:697
|
839 |
msgid "Forum created."
|
840 |
msgstr ""
|
841 |
|
842 |
+
#: includes/admin/forums.php:703
|
843 |
msgid "Forum saved."
|
844 |
msgstr ""
|
845 |
|
846 |
+
#: includes/admin/forums.php:708
|
847 |
msgid "Forum submitted."
|
848 |
msgstr ""
|
849 |
|
850 |
+
#: includes/admin/forums.php:710 includes/admin/forums.php:722
|
851 |
+
#: includes/admin/forums.php:730
|
852 |
msgid "Preview forum"
|
853 |
msgstr ""
|
854 |
|
855 |
+
#: includes/admin/forums.php:717
|
856 |
msgid "Forum scheduled for: %s."
|
857 |
msgstr ""
|
858 |
|
859 |
+
#: includes/admin/forums.php:719 includes/admin/replies.php:950
|
860 |
+
#: includes/admin/topics.php:1124
|
861 |
#. translators: Publish box date format, see http:php.net/date
|
862 |
msgid "M j, Y @ G:i"
|
863 |
msgstr ""
|
864 |
|
865 |
+
#: includes/admin/forums.php:728
|
866 |
msgid "Forum draft updated."
|
867 |
msgstr ""
|
868 |
|
869 |
#: includes/admin/list-tables/topic-replies.php:56
|
870 |
+
#: includes/admin/replies.php:618 includes/admin/topics.php:786
|
871 |
#: templates/default/bbpress/loop-replies.php:15
|
872 |
#: templates/default/bbpress/loop-replies.php:41
|
873 |
#: templates/default/bbpress/loop-search.php:16
|
888 |
msgstr ""
|
889 |
|
890 |
#: includes/admin/list-tables/topic-replies.php:88
|
891 |
+
#: includes/admin/replies.php:246 includes/admin/replies.php:791
|
892 |
+
#: includes/admin/topics.php:250 includes/admin/topics.php:966
|
893 |
+
#: includes/replies/template.php:2171 includes/topics/template.php:3049
|
894 |
msgid "Spam"
|
895 |
msgstr ""
|
896 |
|
897 |
#: includes/admin/list-tables/topic-replies.php:89
|
898 |
+
#: includes/admin/replies.php:802 includes/admin/topics.php:976
|
899 |
+
#: includes/replies/template.php:2099 includes/topics/template.php:2727
|
900 |
msgid "Trash"
|
901 |
msgstr ""
|
902 |
|
903 |
#: includes/admin/list-tables/topic-replies.php:141
|
904 |
+
#: includes/admin/replies.php:767 includes/admin/topics.php:922
|
905 |
+
#: includes/admin/topics.php:935
|
906 |
msgid "View"
|
907 |
msgstr ""
|
908 |
|
909 |
#: includes/admin/list-tables/topic-replies.php:146
|
910 |
#: includes/common/template.php:2294 includes/forums/template.php:54
|
911 |
#: includes/replies/template.php:53 includes/replies/template.php:1972
|
912 |
+
#: includes/topics/template.php:53 includes/topics/template.php:2600
|
913 |
#: templates/default/bbpress/user-details.php:63
|
914 |
msgid "Edit"
|
915 |
msgstr ""
|
953 |
msgstr[1] ""
|
954 |
|
955 |
#: includes/admin/metaboxes.php:150 includes/admin/settings.php:319
|
956 |
+
#: includes/topics/template.php:3559
|
957 |
msgid "Topic Tag"
|
958 |
msgid_plural "Topic Tags"
|
959 |
msgstr[0] ""
|
1015 |
msgid "Forum Parent"
|
1016 |
msgstr ""
|
1017 |
|
1018 |
+
#: includes/admin/metaboxes.php:359 includes/admin/topics.php:842
|
1019 |
#: includes/extend/buddypress/groups.php:326
|
1020 |
#: templates/default/bbpress/form-topic.php:122
|
1021 |
msgid "— No forum —"
|
1130 |
msgid "No users have subscribed to this forum."
|
1131 |
msgstr ""
|
1132 |
|
1133 |
+
#: includes/admin/replies.php:126
|
1134 |
msgid ""
|
1135 |
"This screen provides access to all of your replies. You can customize the "
|
1136 |
"display of this screen to suit your workflow."
|
1137 |
msgstr ""
|
1138 |
|
1139 |
+
#: includes/admin/replies.php:136
|
1140 |
msgid ""
|
1141 |
"You can hide/display columns based on your needs and decide how many "
|
1142 |
"replies to list per screen using the Screen Options tab."
|
1143 |
msgstr ""
|
1144 |
|
1145 |
+
#: includes/admin/replies.php:137
|
1146 |
msgid ""
|
1147 |
"You can filter the list of replies by reply status using the text links in "
|
1148 |
"the upper left to show All, Published, Draft, Pending, Trashed, or Spam "
|
1149 |
"replies. The default view is to show all replies."
|
1150 |
msgstr ""
|
1151 |
|
1152 |
+
#: includes/admin/replies.php:138
|
1153 |
msgid ""
|
1154 |
"You can view replies in a simple title list or with an excerpt. Choose the "
|
1155 |
"view you prefer by clicking on the icons at the top of the list on the "
|
1156 |
"right."
|
1157 |
msgstr ""
|
1158 |
|
1159 |
+
#: includes/admin/replies.php:139
|
1160 |
msgid ""
|
1161 |
"You can refine the list to show only replies in a specific forum or from a "
|
1162 |
"specific month by using the dropdown menus above the replies list. Click "
|
1163 |
"the Filter button after making your selection."
|
1164 |
msgstr ""
|
1165 |
|
1166 |
+
#: includes/admin/replies.php:148
|
1167 |
msgid ""
|
1168 |
"Hovering over a row in the replies list will display action links that "
|
1169 |
"allow you to manage your reply. You can perform the following actions:"
|
1170 |
msgstr ""
|
1171 |
|
1172 |
+
#: includes/admin/replies.php:150
|
1173 |
msgid ""
|
1174 |
"<strong>Edit</strong> takes you to the editing screen for that reply. You "
|
1175 |
"can also reach that screen by clicking on the reply title."
|
1176 |
msgstr ""
|
1177 |
|
1178 |
+
#: includes/admin/replies.php:152
|
1179 |
msgid ""
|
1180 |
"<strong>Trash</strong> removes your reply from this list and places it in "
|
1181 |
"the trash, from which you can permanently delete it."
|
1182 |
msgstr ""
|
1183 |
|
1184 |
+
#: includes/admin/replies.php:153
|
1185 |
msgid ""
|
1186 |
"<strong>Spam</strong> removes your reply from this list and places it in "
|
1187 |
"the spam queue, from which you can permanently delete it."
|
1188 |
msgstr ""
|
1189 |
|
1190 |
+
#: includes/admin/replies.php:154
|
1191 |
msgid "<strong>View</strong> will take you to your live site to view the reply."
|
1192 |
msgstr ""
|
1193 |
|
1194 |
+
#: includes/admin/replies.php:155 includes/admin/topics.php:157
|
1195 |
msgid "<strong>Approve</strong> will change the status from pending to publish."
|
1196 |
msgstr ""
|
1197 |
|
1198 |
+
#: includes/admin/replies.php:164
|
1199 |
msgid ""
|
1200 |
"You can also edit, spam, or move multiple replies to the trash at once. "
|
1201 |
"Select the replies you want to act on using the checkboxes, then select the "
|
1202 |
"action you want to take from the Bulk Actions menu and click Apply."
|
1203 |
msgstr ""
|
1204 |
|
1205 |
+
#: includes/admin/replies.php:165
|
1206 |
msgid ""
|
1207 |
"When using Bulk Edit, you can change the metadata (categories, author, "
|
1208 |
"etc.) for all selected replies at once. To remove a reply from the "
|
1210 |
"appears."
|
1211 |
msgstr ""
|
1212 |
|
1213 |
+
#: includes/admin/replies.php:185
|
1214 |
msgid ""
|
1215 |
"The title field and the big reply editing Area are fixed in place, but you "
|
1216 |
"can reposition all the other boxes using drag and drop, and can minimize or "
|
1220 |
"screen."
|
1221 |
msgstr ""
|
1222 |
|
1223 |
+
#: includes/admin/replies.php:195
|
1224 |
msgid "Title and Reply Editor"
|
1225 |
msgstr ""
|
1226 |
|
1227 |
+
#: includes/admin/replies.php:197
|
1228 |
msgid ""
|
1229 |
"<strong>Title</strong> - Enter a title for your reply. After you enter a "
|
1230 |
"title, you’ll see the permalink below, which you can edit."
|
1231 |
msgstr ""
|
1232 |
|
1233 |
+
#: includes/admin/replies.php:198
|
1234 |
msgid ""
|
1235 |
"<strong>Reply Editor</strong> - Enter the text for your reply. There are "
|
1236 |
"two modes of editing: Visual and HTML. Choose the mode by clicking on the "
|
1245 |
"editor."
|
1246 |
msgstr ""
|
1247 |
|
1248 |
+
#: includes/admin/replies.php:201
|
1249 |
msgid ""
|
1250 |
"<strong>Publish</strong> - You can set the terms of publishing your reply "
|
1251 |
"in the Publish box. For Status, Visibility, and Publish (immediately), "
|
1256 |
"future or backdate a reply."
|
1257 |
msgstr ""
|
1258 |
|
1259 |
+
#: includes/admin/replies.php:204
|
1260 |
msgid ""
|
1261 |
"<strong>Featured Image</strong> - This allows you to associate an image "
|
1262 |
"with your reply without inserting it. This is usually useful only if your "
|
1264 |
"page, a custom header, etc."
|
1265 |
msgstr ""
|
1266 |
|
1267 |
+
#: includes/admin/replies.php:209 includes/admin/replies.php:342
|
1268 |
msgid "Reply Attributes"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
+
#: includes/admin/replies.php:211
|
1272 |
msgid "Select the attributes that your reply should have:"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
+
#: includes/admin/replies.php:213
|
1276 |
msgid ""
|
1277 |
"<strong>Forum</strong> dropdown determines the parent forum that the reply "
|
1278 |
"belongs to. Select the forum, or leave the default (Use Forum of Topic) to "
|
1279 |
"post the reply in forum of the topic."
|
1280 |
msgstr ""
|
1281 |
|
1282 |
+
#: includes/admin/replies.php:214
|
1283 |
msgid ""
|
1284 |
"<strong>Topic</strong> determines the parent topic that the reply belongs "
|
1285 |
"to."
|
1286 |
msgstr ""
|
1287 |
|
1288 |
+
#: includes/admin/replies.php:215
|
1289 |
msgid "<strong>Reply To</strong> determines the threading of the reply."
|
1290 |
msgstr ""
|
1291 |
|
1292 |
+
#: includes/admin/replies.php:244 includes/admin/topics.php:248
|
1293 |
+
#: includes/replies/template.php:2172 includes/topics/template.php:3050
|
1294 |
msgid "Unspam"
|
1295 |
msgstr ""
|
1296 |
|
1297 |
+
#: includes/admin/replies.php:263
|
1298 |
msgid "%s reply updated."
|
1299 |
msgid_plural "%s replies updated."
|
1300 |
msgstr[0] ""
|
1301 |
msgstr[1] ""
|
1302 |
|
1303 |
+
#: includes/admin/replies.php:264
|
1304 |
msgid "1 reply not updated, somebody is editing it."
|
1305 |
msgstr ""
|
1306 |
|
1307 |
+
#: includes/admin/replies.php:265
|
1308 |
msgid "%s reply not updated, somebody is editing it."
|
1309 |
msgid_plural "%s replies not updated, somebody is editing them."
|
1310 |
msgstr[0] ""
|
1311 |
msgstr[1] ""
|
1312 |
|
1313 |
+
#: includes/admin/replies.php:288 includes/admin/topics.php:292
|
1314 |
msgid "Sorry, you are not allowed to spam this item."
|
1315 |
msgstr ""
|
1316 |
|
1317 |
+
#: includes/admin/replies.php:297
|
1318 |
msgid "Error in spamming reply."
|
1319 |
msgstr ""
|
1320 |
|
1321 |
+
#: includes/admin/replies.php:309
|
1322 |
msgid "Sorry, you are not allowed to unspam this reply."
|
1323 |
msgstr ""
|
1324 |
|
1325 |
+
#: includes/admin/replies.php:318
|
1326 |
msgid "Error in unspamming reply."
|
1327 |
msgstr ""
|
1328 |
|
1329 |
+
#: includes/admin/replies.php:373 includes/admin/topics.php:371
|
1330 |
#: templates/default/bbpress/form-anonymous.php:15
|
1331 |
msgid "Author Information"
|
1332 |
msgstr ""
|
1333 |
|
1334 |
+
#: includes/admin/replies.php:485
|
1335 |
msgid "The reply was not found."
|
1336 |
msgstr ""
|
1337 |
|
1338 |
+
#: includes/admin/replies.php:566
|
1339 |
msgid "There was a problem marking the reply \"%1$s\" as spam."
|
1340 |
msgstr ""
|
1341 |
|
1342 |
+
#: includes/admin/replies.php:567
|
1343 |
msgid "Reply \"%1$s\" successfully marked as spam."
|
1344 |
msgstr ""
|
1345 |
|
1346 |
+
#: includes/admin/replies.php:572
|
1347 |
msgid "There was a problem unmarking the reply \"%1$s\" as spam."
|
1348 |
msgstr ""
|
1349 |
|
1350 |
+
#: includes/admin/replies.php:573
|
1351 |
msgid "Reply \"%1$s\" successfully unmarked as spam."
|
1352 |
msgstr ""
|
1353 |
|
1354 |
+
#: includes/admin/replies.php:578
|
1355 |
msgid "There was a problem approving the reply \"%1$s\"."
|
1356 |
msgstr ""
|
1357 |
|
1358 |
+
#: includes/admin/replies.php:579
|
1359 |
msgid "Reply \"%1$s\" successfully approved."
|
1360 |
msgstr ""
|
1361 |
|
1362 |
+
#: includes/admin/replies.php:584
|
1363 |
msgid "There was a problem unapproving the reply \"%1$s\"."
|
1364 |
msgstr ""
|
1365 |
|
1366 |
+
#: includes/admin/replies.php:585
|
1367 |
msgid "Reply \"%1$s\" successfully unapproved."
|
1368 |
msgstr ""
|
1369 |
|
1370 |
+
#: includes/admin/replies.php:615
|
1371 |
msgid "Title"
|
1372 |
msgstr ""
|
1373 |
|
1374 |
+
#: includes/admin/replies.php:669 includes/admin/replies.php:677
|
1375 |
msgid "No Topic"
|
1376 |
msgstr ""
|
1377 |
|
1378 |
+
#: includes/admin/replies.php:695 includes/admin/replies.php:710
|
1379 |
+
#: includes/admin/topics.php:835
|
1380 |
msgid "No Forum"
|
1381 |
msgstr ""
|
1382 |
|
1383 |
+
#: includes/admin/replies.php:701
|
1384 |
msgid "(Mismatch)"
|
1385 |
msgstr ""
|
1386 |
|
1387 |
+
#: includes/admin/replies.php:767 includes/admin/topics.php:922
|
1388 |
+
#: includes/admin/topics.php:935
|
1389 |
msgid "View “%s”"
|
1390 |
msgstr ""
|
1391 |
|
1392 |
+
#: includes/admin/replies.php:780
|
1393 |
msgid "Unapprove this reply"
|
1394 |
msgstr ""
|
1395 |
|
1396 |
+
#: includes/admin/replies.php:782
|
1397 |
msgid "Approve this reply"
|
1398 |
msgstr ""
|
1399 |
|
1400 |
+
#: includes/admin/replies.php:789
|
1401 |
msgid "Mark the reply as not spam"
|
1402 |
msgstr ""
|
1403 |
|
1404 |
+
#: includes/admin/replies.php:789 includes/admin/topics.php:964
|
1405 |
msgid "Not spam"
|
1406 |
msgstr ""
|
1407 |
|
1408 |
+
#: includes/admin/replies.php:791
|
1409 |
msgid "Mark this reply as spam"
|
1410 |
msgstr ""
|
1411 |
|
1412 |
+
#: includes/admin/replies.php:800 includes/admin/topics.php:974
|
1413 |
+
#: includes/replies/template.php:2113 includes/topics/template.php:2741
|
1414 |
msgid "Restore this item from the Trash"
|
1415 |
msgstr ""
|
1416 |
|
1417 |
+
#: includes/admin/replies.php:800 includes/admin/topics.php:974
|
1418 |
+
#: includes/replies/template.php:2100 includes/topics/template.php:2728
|
1419 |
msgid "Restore"
|
1420 |
msgstr ""
|
1421 |
|
1422 |
+
#: includes/admin/replies.php:802 includes/admin/topics.php:976
|
1423 |
+
#: includes/replies/template.php:2115 includes/topics/template.php:2743
|
1424 |
msgid "Move this item to the Trash"
|
1425 |
msgstr ""
|
1426 |
|
1427 |
+
#: includes/admin/replies.php:806 includes/admin/topics.php:980
|
1428 |
+
#: includes/replies/template.php:2119 includes/topics/template.php:2747
|
1429 |
msgid "Delete this item permanently"
|
1430 |
msgstr ""
|
1431 |
|
1432 |
+
#: includes/admin/replies.php:806 includes/admin/topics.php:980
|
1433 |
msgid "Delete Permanently"
|
1434 |
msgstr ""
|
1435 |
|
1436 |
+
#: includes/admin/replies.php:831 includes/admin/topics.php:1005
|
1437 |
msgid "Empty Spam"
|
1438 |
msgstr ""
|
1439 |
|
1440 |
+
#: includes/admin/replies.php:846 includes/admin/topics.php:1020
|
1441 |
msgid "In all forums"
|
1442 |
msgstr ""
|
1443 |
|
1444 |
+
#: includes/admin/replies.php:905 includes/admin/replies.php:917
|
1445 |
msgid "Reply updated."
|
1446 |
msgstr ""
|
1447 |
|
1448 |
+
#: includes/admin/replies.php:907 includes/admin/replies.php:930
|
1449 |
+
#: includes/admin/topics.php:1081 includes/admin/topics.php:1104
|
1450 |
msgid "View topic"
|
1451 |
msgstr ""
|
1452 |
|
1453 |
+
#: includes/admin/replies.php:922
|
1454 |
#. translators: %s: date and time of the revision
|
1455 |
msgid "Reply restored to revision from %s"
|
1456 |
msgstr ""
|
1457 |
|
1458 |
+
#: includes/admin/replies.php:928
|
1459 |
msgid "Reply created."
|
1460 |
msgstr ""
|
1461 |
|
1462 |
+
#: includes/admin/replies.php:934
|
1463 |
msgid "Reply saved."
|
1464 |
msgstr ""
|
1465 |
|
1466 |
+
#: includes/admin/replies.php:939
|
1467 |
msgid "Reply submitted."
|
1468 |
msgstr ""
|
1469 |
|
1470 |
+
#: includes/admin/replies.php:941 includes/admin/replies.php:953
|
1471 |
+
#: includes/admin/replies.php:961 includes/admin/topics.php:1115
|
1472 |
+
#: includes/admin/topics.php:1127 includes/admin/topics.php:1135
|
1473 |
msgid "Preview topic"
|
1474 |
msgstr ""
|
1475 |
|
1476 |
+
#: includes/admin/replies.php:948
|
1477 |
msgid "Reply scheduled for: %s."
|
1478 |
msgstr ""
|
1479 |
|
1480 |
+
#: includes/admin/replies.php:959
|
1481 |
msgid "Reply draft updated."
|
1482 |
msgstr ""
|
1483 |
|
1541 |
msgid "Revisions"
|
1542 |
msgstr ""
|
1543 |
|
1544 |
+
#: includes/admin/settings.php:144 includes/admin/topics.php:437
|
1545 |
#: includes/extend/buddypress/loader.php:224
|
1546 |
#: templates/default/bbpress/user-details.php:46
|
1547 |
msgid "Favorites"
|
1682 |
msgstr ""
|
1683 |
|
1684 |
#: includes/admin/settings.php:752 includes/common/classes.php:527
|
1685 |
+
#: includes/replies/template.php:2673
|
1686 |
msgid "%1$s - %2$s"
|
1687 |
msgstr ""
|
1688 |
|
1859 |
msgstr ""
|
1860 |
|
1861 |
#: includes/admin/settings.php:1534 includes/admin/tools.php:35
|
1862 |
+
#: includes/admin/tools.php:2494
|
1863 |
msgid "Forum Tools"
|
1864 |
msgstr ""
|
1865 |
|
2258 |
msgstr ""
|
2259 |
|
2260 |
#: includes/admin/tools.php:567
|
2261 |
+
msgid "Recount topics in each forum"
|
2262 |
msgstr ""
|
2263 |
|
2264 |
#: includes/admin/tools.php:577
|
2265 |
+
msgid "Recount topics in each topic-tag"
|
2266 |
msgstr ""
|
2267 |
|
2268 |
#: includes/admin/tools.php:587
|
2269 |
+
msgid "Recount replies in each forum"
|
2270 |
msgstr ""
|
2271 |
|
2272 |
#: includes/admin/tools.php:597
|
2273 |
+
msgid "Recount replies in each topic"
|
2274 |
msgstr ""
|
2275 |
|
2276 |
#: includes/admin/tools.php:607
|
2277 |
+
msgid "Recount voices in each topic"
|
2278 |
msgstr ""
|
2279 |
|
2280 |
#: includes/admin/tools.php:617
|
2281 |
+
msgid "Recount pending, spammed, & trashed replies in each topic"
|
2282 |
msgstr ""
|
2283 |
|
2284 |
#: includes/admin/tools.php:627
|
2285 |
+
msgid "Recount topics for each user"
|
2286 |
msgstr ""
|
2287 |
|
2288 |
#: includes/admin/tools.php:637
|
2289 |
+
msgid "Recount replies for each user"
|
2290 |
msgstr ""
|
2291 |
|
2292 |
#: includes/admin/tools.php:647
|
2293 |
+
msgid "Remove unpublished topics from user favorites"
|
2294 |
msgstr ""
|
2295 |
|
2296 |
#: includes/admin/tools.php:657
|
2297 |
+
msgid "Remove unpublished topics from user subscriptions"
|
2298 |
msgstr ""
|
2299 |
|
2300 |
#: includes/admin/tools.php:667
|
2301 |
+
msgid "Remove unpublished forums from user subscriptions"
|
2302 |
msgstr ""
|
2303 |
|
2304 |
#: includes/admin/tools.php:677
|
2305 |
+
msgid "Remap existing users to default forum roles"
|
2306 |
msgstr ""
|
2307 |
|
2308 |
#: includes/admin/tools.php:687
|
2309 |
+
msgid "Upgrade user favorites"
|
2310 |
msgstr ""
|
2311 |
|
2312 |
#: includes/admin/tools.php:697
|
2313 |
+
msgid "Upgrade user topic subscriptions"
|
2314 |
+
msgstr ""
|
2315 |
+
|
2316 |
+
#: includes/admin/tools.php:707
|
2317 |
msgid "Upgrade user forum subscriptions"
|
2318 |
msgstr ""
|
2319 |
|
2320 |
+
#: includes/admin/tools.php:758
|
2321 |
msgid "Search Tools:"
|
2322 |
msgstr ""
|
2323 |
|
2324 |
+
#: includes/admin/tools.php:760
|
2325 |
msgid "Search Tools"
|
2326 |
msgstr ""
|
2327 |
|
2328 |
+
#: includes/admin/tools.php:781
|
2329 |
msgid "Filter by Component"
|
2330 |
msgstr ""
|
2331 |
|
2332 |
+
#: includes/admin/tools.php:783
|
2333 |
msgid "All Components"
|
2334 |
msgstr ""
|
2335 |
|
2336 |
+
#: includes/admin/tools.php:792
|
2337 |
msgid "Filter"
|
2338 |
msgstr ""
|
2339 |
|
2340 |
+
#: includes/admin/tools.php:810
|
2341 |
msgid "Low"
|
2342 |
msgstr ""
|
2343 |
|
2344 |
+
#: includes/admin/tools.php:813
|
2345 |
msgid "Medium"
|
2346 |
msgstr ""
|
2347 |
|
2348 |
+
#: includes/admin/tools.php:816
|
2349 |
msgid "High"
|
2350 |
msgstr ""
|
2351 |
|
2352 |
+
#: includes/admin/tools.php:839
|
2353 |
msgid "Users"
|
2354 |
msgstr ""
|
2355 |
|
2356 |
+
#: includes/admin/tools.php:851 includes/topics/template.php:3558
|
2357 |
+
#: templates/default/bbpress/content-statistics.php:37
|
2358 |
+
msgid "Topic Tags"
|
2359 |
+
msgstr ""
|
2360 |
+
|
2361 |
+
#: includes/admin/tools.php:1033
|
2362 |
msgid "All %s"
|
2363 |
msgstr ""
|
2364 |
|
2365 |
+
#: includes/admin/tools.php:1086
|
2366 |
msgid "Counting the number of replies in each topic… %s"
|
2367 |
msgstr ""
|
2368 |
|
2369 |
+
#: includes/admin/tools.php:1087 includes/admin/tools.php:1142
|
2370 |
+
#: includes/admin/tools.php:1191 includes/admin/tools.php:1245
|
2371 |
+
#: includes/admin/tools.php:1366 includes/admin/tools.php:1404
|
2372 |
+
#: includes/admin/tools.php:1454 includes/admin/tools.php:1499
|
2373 |
+
#: includes/admin/tools.php:1551 includes/admin/tools.php:1603
|
2374 |
+
#: includes/admin/tools.php:1673 includes/admin/tools.php:1742
|
2375 |
+
#: includes/admin/tools.php:1817 includes/admin/tools.php:1874
|
2376 |
+
#: includes/admin/tools.php:2002 includes/admin/tools.php:2115
|
2377 |
+
#: includes/admin/tools.php:2139 includes/admin/tools.php:2194
|
2378 |
+
#: includes/admin/tools.php:2576
|
2379 |
msgid "Failed!"
|
2380 |
msgstr ""
|
2381 |
|
2382 |
+
#: includes/admin/tools.php:1121 includes/admin/tools.php:1170
|
2383 |
+
#: includes/admin/tools.php:1209 includes/admin/tools.php:1383
|
2384 |
+
#: includes/admin/tools.php:1434 includes/admin/tools.php:1480
|
2385 |
+
#: includes/admin/tools.php:1532 includes/admin/tools.php:1584
|
2386 |
+
#: includes/admin/tools.php:1654 includes/admin/tools.php:1723
|
2387 |
+
#: includes/admin/tools.php:1792 includes/admin/tools.php:1980
|
2388 |
+
#: includes/admin/tools.php:2045 includes/admin/tools.php:2119
|
2389 |
+
#: includes/admin/tools.php:2175 includes/admin/tools.php:2230
|
2390 |
+
#: includes/admin/tools.php:2287
|
2391 |
msgid "Complete!"
|
2392 |
msgstr ""
|
2393 |
|
2394 |
+
#: includes/admin/tools.php:1141
|
2395 |
msgid "Counting the number of voices in each topic… %s"
|
2396 |
msgstr ""
|
2397 |
|
2398 |
+
#: includes/admin/tools.php:1190
|
2399 |
msgid ""
|
2400 |
"Counting the number of pending, spammed, and trashed replies in each "
|
2401 |
"topic… %s"
|
2402 |
msgstr ""
|
2403 |
|
2404 |
+
#: includes/admin/tools.php:1224
|
2405 |
msgid "Repairing BuddyPress group-forum relationships… %s"
|
2406 |
msgstr ""
|
2407 |
|
2408 |
+
#: includes/admin/tools.php:1328
|
2409 |
msgid "Group Forums"
|
2410 |
msgstr ""
|
2411 |
|
2412 |
+
#: includes/admin/tools.php:1329
|
2413 |
msgid "group-forums"
|
2414 |
msgstr ""
|
2415 |
|
2416 |
+
#: includes/admin/tools.php:1345
|
2417 |
msgid "Complete! %s groups updated; %s forums updated; %s forum statuses synced."
|
2418 |
msgstr ""
|
2419 |
|
2420 |
+
#: includes/admin/tools.php:1365
|
2421 |
msgid "Counting the number of topics in each forum… %s"
|
2422 |
msgstr ""
|
2423 |
|
2424 |
+
#: includes/admin/tools.php:1403
|
2425 |
+
msgid "Counting the number of topics in each topic-tag… %s"
|
2426 |
+
msgstr ""
|
2427 |
+
|
2428 |
+
#: includes/admin/tools.php:1453
|
2429 |
msgid "Counting the number of replies in each forum… %s"
|
2430 |
msgstr ""
|
2431 |
|
2432 |
+
#: includes/admin/tools.php:1498
|
2433 |
msgid "Counting the number of topics each user has created… %s"
|
2434 |
msgstr ""
|
2435 |
|
2436 |
+
#: includes/admin/tools.php:1550
|
2437 |
msgid "Counting the number of topics to which each user has replied… %s"
|
2438 |
msgstr ""
|
2439 |
|
2440 |
+
#: includes/admin/tools.php:1602
|
2441 |
msgid "Removing trashed topics from user favorites… %s"
|
2442 |
msgstr ""
|
2443 |
|
2444 |
+
#: includes/admin/tools.php:1637 includes/admin/tools.php:1706
|
2445 |
+
#: includes/admin/tools.php:1775
|
2446 |
msgid "Nothing to remove!"
|
2447 |
msgstr ""
|
2448 |
|
2449 |
+
#: includes/admin/tools.php:1672
|
2450 |
msgid "Removing trashed topics from user subscriptions… %s"
|
2451 |
msgstr ""
|
2452 |
|
2453 |
+
#: includes/admin/tools.php:1741
|
2454 |
msgid "Removing trashed forums from user subscriptions… %s"
|
2455 |
msgstr ""
|
2456 |
|
2457 |
+
#: includes/admin/tools.php:1810
|
2458 |
msgid "Remapping forum role for each user on this site… %s"
|
2459 |
msgstr ""
|
2460 |
|
2461 |
+
#: includes/admin/tools.php:1849
|
2462 |
msgid "Complete! %s users updated."
|
2463 |
msgstr ""
|
2464 |
|
2465 |
+
#: includes/admin/tools.php:1873
|
2466 |
msgid "Recomputing latest post in every topic and forum… %s"
|
2467 |
msgstr ""
|
2468 |
|
2469 |
+
#: includes/admin/tools.php:2001
|
2470 |
msgid "Repairing the sticky topic to the parent forum relationships… %s"
|
2471 |
msgstr ""
|
2472 |
|
2473 |
+
#: includes/admin/tools.php:2069
|
2474 |
msgid "Repairing closed topics… %s"
|
2475 |
msgstr ""
|
2476 |
|
2477 |
+
#: includes/admin/tools.php:2070
|
2478 |
msgid "No closed topics to repair."
|
2479 |
msgstr ""
|
2480 |
|
2481 |
+
#: includes/admin/tools.php:2097
|
2482 |
msgid "Complete! %d closed topic repaired."
|
2483 |
msgid_plural "Complete! %d closed topics repaired."
|
2484 |
msgstr[0] ""
|
2485 |
msgstr[1] ""
|
2486 |
|
2487 |
+
#: includes/admin/tools.php:2111
|
2488 |
msgid "Recalculating forum visibility … %s"
|
2489 |
msgstr ""
|
2490 |
|
2491 |
+
#: includes/admin/tools.php:2138
|
2492 |
msgid "Recalculating the forum for each post … %s"
|
2493 |
msgstr ""
|
2494 |
|
2495 |
+
#: includes/admin/tools.php:2193
|
2496 |
msgid "Recalculating the topic for each post … %s"
|
2497 |
msgstr ""
|
2498 |
|
2499 |
+
#: includes/admin/tools.php:2248
|
2500 |
msgid "Recalculating reply menu order … %s"
|
2501 |
msgstr ""
|
2502 |
|
2503 |
+
#: includes/admin/tools.php:2249
|
2504 |
msgid "No reply positions to recalculate."
|
2505 |
msgstr ""
|
2506 |
|
2507 |
+
#: includes/admin/tools.php:2301
|
2508 |
msgid "Upgrading user favorites … %s"
|
2509 |
msgstr ""
|
2510 |
|
2511 |
+
#: includes/admin/tools.php:2302
|
2512 |
msgid "No favorites to upgrade."
|
2513 |
msgstr ""
|
2514 |
|
2515 |
+
#: includes/admin/tools.php:2348
|
2516 |
msgid "Complete! %d favorite upgraded."
|
2517 |
msgid_plural "Complete! %d favorites upgraded."
|
2518 |
msgstr[0] ""
|
2519 |
msgstr[1] ""
|
2520 |
|
2521 |
+
#: includes/admin/tools.php:2364
|
2522 |
msgid "Upgrading user topic subscriptions … %s"
|
2523 |
msgstr ""
|
2524 |
|
2525 |
+
#: includes/admin/tools.php:2365
|
2526 |
msgid "No topic subscriptions to upgrade."
|
2527 |
msgstr ""
|
2528 |
|
2529 |
+
#: includes/admin/tools.php:2411
|
2530 |
msgid "Complete! %d topic subscription upgraded."
|
2531 |
msgid_plural "Complete! %d topic subscriptions upgraded."
|
2532 |
msgstr[0] ""
|
2533 |
msgstr[1] ""
|
2534 |
|
2535 |
+
#: includes/admin/tools.php:2427
|
2536 |
msgid "Upgrading user forum subscriptions … %s"
|
2537 |
msgstr ""
|
2538 |
|
2539 |
+
#: includes/admin/tools.php:2428
|
2540 |
msgid "No forum subscriptions to upgrade."
|
2541 |
msgstr ""
|
2542 |
|
2543 |
+
#: includes/admin/tools.php:2474
|
2544 |
msgid "Complete! %d forum subscription upgraded."
|
2545 |
msgid_plural "Complete! %d forum subscriptions upgraded."
|
2546 |
msgstr[0] ""
|
2547 |
msgstr[1] ""
|
2548 |
|
2549 |
+
#: includes/admin/tools.php:2496
|
2550 |
msgid ""
|
2551 |
"Revert your forums back to a brand new installation. This process cannot be "
|
2552 |
"undone."
|
2553 |
msgstr ""
|
2554 |
|
2555 |
+
#: includes/admin/tools.php:2497
|
2556 |
msgid "Backup your database before proceeding."
|
2557 |
msgstr ""
|
2558 |
|
2559 |
+
#: includes/admin/tools.php:2503
|
2560 |
msgid "The following data will be removed:"
|
2561 |
msgstr ""
|
2562 |
|
2563 |
+
#: includes/admin/tools.php:2505 includes/forums/template.php:51
|
2564 |
msgid "All Forums"
|
2565 |
msgstr ""
|
2566 |
|
2567 |
+
#: includes/admin/tools.php:2506 includes/topics/functions.php:4128
|
2568 |
#: includes/topics/template.php:50
|
2569 |
msgid "All Topics"
|
2570 |
msgstr ""
|
2571 |
|
2572 |
+
#: includes/admin/tools.php:2507 includes/replies/functions.php:2295
|
2573 |
#: includes/replies/template.php:50
|
2574 |
msgid "All Replies"
|
2575 |
msgstr ""
|
2576 |
|
2577 |
+
#: includes/admin/tools.php:2508
|
2578 |
msgid "All Topic Tags"
|
2579 |
msgstr ""
|
2580 |
|
2581 |
+
#: includes/admin/tools.php:2509
|
2582 |
msgid "Related Meta Data"
|
2583 |
msgstr ""
|
2584 |
|
2585 |
+
#: includes/admin/tools.php:2510
|
2586 |
msgid "Forum Settings"
|
2587 |
msgstr ""
|
2588 |
|
2589 |
+
#: includes/admin/tools.php:2511
|
2590 |
msgid "Forum Activity"
|
2591 |
msgstr ""
|
2592 |
|
2593 |
+
#: includes/admin/tools.php:2512
|
2594 |
msgid "Forum User Roles"
|
2595 |
msgstr ""
|
2596 |
|
2597 |
+
#: includes/admin/tools.php:2514
|
2598 |
msgid "Importer Helper Data"
|
2599 |
msgstr ""
|
2600 |
|
2601 |
+
#: includes/admin/tools.php:2518
|
2602 |
msgid "Delete imported users?"
|
2603 |
msgstr ""
|
2604 |
|
2605 |
+
#: includes/admin/tools.php:2521 includes/admin/tools.php:2531
|
2606 |
msgid "Say it ain't so!"
|
2607 |
msgstr ""
|
2608 |
|
2609 |
+
#: includes/admin/tools.php:2522
|
2610 |
msgid "This option will delete all previously imported users, and cannot be undone."
|
2611 |
msgstr ""
|
2612 |
|
2613 |
+
#: includes/admin/tools.php:2523
|
2614 |
msgid ""
|
2615 |
"Note: Resetting without this checked will delete the meta-data necessary to "
|
2616 |
"delete these users."
|
2617 |
msgstr ""
|
2618 |
|
2619 |
+
#: includes/admin/tools.php:2528
|
2620 |
msgid "Do you really want to do this?"
|
2621 |
msgstr ""
|
2622 |
|
2623 |
+
#: includes/admin/tools.php:2532
|
2624 |
#: templates/default/bbpress/form-reply-move.php:73
|
2625 |
#: templates/default/bbpress/form-topic-merge.php:95
|
2626 |
#: templates/default/bbpress/form-topic-split.php:99
|
2627 |
msgid "This process cannot be undone."
|
2628 |
msgstr ""
|
2629 |
|
2630 |
+
#: includes/admin/tools.php:2540
|
2631 |
msgid "Reset bbPress"
|
2632 |
msgstr ""
|
2633 |
|
2634 |
+
#: includes/admin/tools.php:2577
|
2635 |
msgid "Success!"
|
2636 |
msgstr ""
|
2637 |
|
2638 |
+
#: includes/admin/tools.php:2591
|
2639 |
msgid "Deleting Posts… %s"
|
2640 |
msgstr ""
|
2641 |
|
2642 |
+
#: includes/admin/tools.php:2605
|
2643 |
msgid "Deleting Post Meta… %s"
|
2644 |
msgstr ""
|
2645 |
|
2646 |
+
#: includes/admin/tools.php:2619
|
2647 |
msgid "Deleting Post Revisions… %s"
|
2648 |
msgstr ""
|
2649 |
|
2650 |
+
#: includes/admin/tools.php:2628
|
2651 |
msgid "Deleting Forum Moderators… %s"
|
2652 |
msgstr ""
|
2653 |
|
2654 |
+
#: includes/admin/tools.php:2635
|
2655 |
msgid "Deleting Topic Tags… %s"
|
2656 |
msgstr ""
|
2657 |
|
2658 |
+
#: includes/admin/tools.php:2650
|
2659 |
msgid "Deleting Imported Users… %s"
|
2660 |
msgstr ""
|
2661 |
|
2662 |
+
#: includes/admin/tools.php:2655
|
2663 |
msgid "Deleting Imported User Meta… %s"
|
2664 |
msgstr ""
|
2665 |
|
2666 |
+
#: includes/admin/tools.php:2663
|
2667 |
msgid "Deleting User Meta… %s"
|
2668 |
msgstr ""
|
2669 |
|
2670 |
+
#: includes/admin/tools.php:2670
|
2671 |
msgid "Deleting Conversion Table… %s"
|
2672 |
msgstr ""
|
2673 |
|
2674 |
+
#: includes/admin/tools.php:2682
|
2675 |
msgid "Deleting Settings… %s"
|
2676 |
msgstr ""
|
2677 |
|
2678 |
+
#: includes/admin/tools.php:2688
|
2679 |
msgid "Deleting Roles and Capabilities… %s"
|
2680 |
msgstr ""
|
2681 |
|
2682 |
+
#: includes/admin/topics.php:129
|
2683 |
msgid ""
|
2684 |
"This screen displays the individual topics on your site. You can customize "
|
2685 |
"the display of this screen to suit your workflow."
|
2686 |
msgstr ""
|
2687 |
|
2688 |
+
#: includes/admin/topics.php:139
|
2689 |
msgid ""
|
2690 |
"You can hide/display columns based on your needs and decide how many topics "
|
2691 |
"to list per screen using the Screen Options tab."
|
2692 |
msgstr ""
|
2693 |
|
2694 |
+
#: includes/admin/topics.php:140
|
2695 |
msgid ""
|
2696 |
"You can filter the list of topics by topic status using the text links in "
|
2697 |
"the upper left to show All, Published, Draft, Pending, Trashed, Closed, or "
|
2698 |
"Spam topics. The default view is to show all topics."
|
2699 |
msgstr ""
|
2700 |
|
2701 |
+
#: includes/admin/topics.php:141
|
2702 |
msgid ""
|
2703 |
"You can view topics in a simple title list or with an excerpt. Choose the "
|
2704 |
"view you prefer by clicking on the icons at the top of the list on the "
|
2705 |
"right."
|
2706 |
msgstr ""
|
2707 |
|
2708 |
+
#: includes/admin/topics.php:142
|
2709 |
msgid ""
|
2710 |
"You can refine the list to show only topics in a specific forum or from a "
|
2711 |
"specific month by using the dropdown menus above the topics list. Click the "
|
2712 |
"Filter button after making your selection."
|
2713 |
msgstr ""
|
2714 |
|
2715 |
+
#: includes/admin/topics.php:151
|
2716 |
msgid ""
|
2717 |
"Hovering over a row in the topics list will display action links that allow "
|
2718 |
"you to manage your topic. You can perform the following actions:"
|
2719 |
msgstr ""
|
2720 |
|
2721 |
+
#: includes/admin/topics.php:153
|
2722 |
msgid ""
|
2723 |
"<strong>Edit</strong> takes you to the editing screen for that topic. You "
|
2724 |
"can also reach that screen by clicking on the topic title."
|
2725 |
msgstr ""
|
2726 |
|
2727 |
+
#: includes/admin/topics.php:154
|
2728 |
msgid ""
|
2729 |
"<strong>Trash</strong> removes your topic from this list and places it in "
|
2730 |
"the trash, from which you can permanently delete it."
|
2731 |
msgstr ""
|
2732 |
|
2733 |
+
#: includes/admin/topics.php:155
|
2734 |
msgid ""
|
2735 |
"<strong>Spam</strong> removes your topic from this list and places it in "
|
2736 |
"the spam queue, from which you can permanently delete it."
|
2737 |
msgstr ""
|
2738 |
|
2739 |
+
#: includes/admin/topics.php:156
|
2740 |
msgid "<strong>View</strong> will take you to your live site to view the topic."
|
2741 |
msgstr ""
|
2742 |
|
2743 |
+
#: includes/admin/topics.php:158
|
2744 |
msgid ""
|
2745 |
"<strong>Close</strong> will mark the selected topic as ’closed’ "
|
2746 |
"and disable the option to post new replies to the topic."
|
2747 |
msgstr ""
|
2748 |
|
2749 |
+
#: includes/admin/topics.php:159
|
2750 |
msgid ""
|
2751 |
"<strong>Stick</strong> will keep the selected topic ’pinned’ to "
|
2752 |
"the top the parent forum topic list."
|
2753 |
msgstr ""
|
2754 |
|
2755 |
+
#: includes/admin/topics.php:160
|
2756 |
msgid ""
|
2757 |
"<strong>Stick <em>(to front)</em></strong> will keep the selected topic "
|
2758 |
"’pinned’ to the top of ALL forums and be visable in any forums "
|
2759 |
"topics list."
|
2760 |
msgstr ""
|
2761 |
|
2762 |
+
#: includes/admin/topics.php:169
|
2763 |
msgid ""
|
2764 |
"You can also edit, spam, or move multiple topics to the trash at once. "
|
2765 |
"Select the topics you want to act on using the checkboxes, then select the "
|
2766 |
"action you want to take from the Bulk Actions menu and click Apply."
|
2767 |
msgstr ""
|
2768 |
|
2769 |
+
#: includes/admin/topics.php:170
|
2770 |
msgid ""
|
2771 |
"When using Bulk Edit, you can change the metadata (categories, author, "
|
2772 |
"etc.) for all selected topics at once. To remove a topic from the grouping, "
|
2773 |
"just click the x next to its name in the Bulk Edit area that appears."
|
2774 |
msgstr ""
|
2775 |
|
2776 |
+
#: includes/admin/topics.php:190
|
2777 |
msgid ""
|
2778 |
"The title field and the big topic editing Area are fixed in place, but you "
|
2779 |
"can reposition all the other boxes using drag and drop, and can minimize or "
|
2783 |
"screen."
|
2784 |
msgstr ""
|
2785 |
|
2786 |
+
#: includes/admin/topics.php:200
|
2787 |
msgid "Title and Topic Editor"
|
2788 |
msgstr ""
|
2789 |
|
2790 |
+
#: includes/admin/topics.php:202
|
2791 |
msgid ""
|
2792 |
"<strong>Title</strong> - Enter a title for your topic. After you enter a "
|
2793 |
"title, you’ll see the permalink below, which you can edit."
|
2794 |
msgstr ""
|
2795 |
|
2796 |
+
#: includes/admin/topics.php:203
|
2797 |
msgid ""
|
2798 |
"<strong>Topic Editor</strong> - Enter the text for your topic. There are "
|
2799 |
"two modes of editing: Visual and HTML. Choose the mode by clicking on the "
|
2808 |
"editor."
|
2809 |
msgstr ""
|
2810 |
|
2811 |
+
#: includes/admin/topics.php:206
|
2812 |
msgid ""
|
2813 |
"<strong>Publish</strong> - You can set the terms of publishing your topic "
|
2814 |
"in the Publish box. For Status, Visibility, and Publish (immediately), "
|
2819 |
"future or backdate a topic."
|
2820 |
msgstr ""
|
2821 |
|
2822 |
+
#: includes/admin/topics.php:209
|
2823 |
msgid ""
|
2824 |
"<strong>Featured Image</strong> - This allows you to associate an image "
|
2825 |
"with your topic without inserting it. This is usually useful only if your "
|
2827 |
"page, a custom header, etc."
|
2828 |
msgstr ""
|
2829 |
|
2830 |
+
#: includes/admin/topics.php:214 includes/admin/topics.php:346
|
2831 |
msgid "Topic Attributes"
|
2832 |
msgstr ""
|
2833 |
|
2834 |
+
#: includes/admin/topics.php:216
|
2835 |
msgid "Select the attributes that your topic should have:"
|
2836 |
msgstr ""
|
2837 |
|
2838 |
+
#: includes/admin/topics.php:218
|
2839 |
msgid ""
|
2840 |
"<strong>Forum</strong> dropdown determines the parent forum that the topic "
|
2841 |
"belongs to. Select the forum or category from the dropdown, or leave the "
|
2842 |
"default \"No forum\" to post the topic without an assigned forum."
|
2843 |
msgstr ""
|
2844 |
|
2845 |
+
#: includes/admin/topics.php:219
|
2846 |
msgid ""
|
2847 |
"<strong>Topic Type</strong> dropdown indicates the sticky status of the "
|
2848 |
"topic. Selecting the super sticky option would stick the topic to the front "
|
2851 |
"anywhere."
|
2852 |
msgstr ""
|
2853 |
|
2854 |
+
#: includes/admin/topics.php:267
|
2855 |
msgid "%s topic updated."
|
2856 |
msgid_plural "%s topics updated."
|
2857 |
msgstr[0] ""
|
2858 |
msgstr[1] ""
|
2859 |
|
2860 |
+
#: includes/admin/topics.php:268
|
2861 |
msgid "1 topic not updated, somebody is editing it."
|
2862 |
msgstr ""
|
2863 |
|
2864 |
+
#: includes/admin/topics.php:269
|
2865 |
msgid "%s topic not updated, somebody is editing it."
|
2866 |
msgid_plural "%s topics not updated, somebody is editing them."
|
2867 |
msgstr[0] ""
|
2868 |
msgstr[1] ""
|
2869 |
|
2870 |
+
#: includes/admin/topics.php:301
|
2871 |
msgid "Error in spamming topic."
|
2872 |
msgstr ""
|
2873 |
|
2874 |
+
#: includes/admin/topics.php:313
|
2875 |
msgid "Sorry, you are not allowed to unspam this topic."
|
2876 |
msgstr ""
|
2877 |
|
2878 |
+
#: includes/admin/topics.php:322
|
2879 |
msgid "Error in unspamming topic."
|
2880 |
msgstr ""
|
2881 |
|
2882 |
+
#: includes/admin/topics.php:582
|
2883 |
msgid "The topic was not found."
|
2884 |
msgstr ""
|
2885 |
|
2886 |
+
#: includes/admin/topics.php:703
|
2887 |
msgid "There was a problem opening the topic \"%1$s\"."
|
2888 |
msgstr ""
|
2889 |
|
2890 |
+
#: includes/admin/topics.php:704
|
2891 |
msgid "Topic \"%1$s\" successfully opened."
|
2892 |
msgstr ""
|
2893 |
|
2894 |
+
#: includes/admin/topics.php:709
|
2895 |
msgid "There was a problem closing the topic \"%1$s\"."
|
2896 |
msgstr ""
|
2897 |
|
2898 |
+
#: includes/admin/topics.php:710
|
2899 |
msgid "Topic \"%1$s\" successfully closed."
|
2900 |
msgstr ""
|
2901 |
|
2902 |
+
#: includes/admin/topics.php:715
|
2903 |
msgid "There was a problem sticking the topic \"%1$s\" to front."
|
2904 |
msgstr ""
|
2905 |
|
2906 |
+
#: includes/admin/topics.php:716
|
2907 |
msgid "Topic \"%1$s\" successfully stuck to front."
|
2908 |
msgstr ""
|
2909 |
|
2910 |
+
#: includes/admin/topics.php:721
|
2911 |
msgid "There was a problem sticking the topic \"%1$s\"."
|
2912 |
msgstr ""
|
2913 |
|
2914 |
+
#: includes/admin/topics.php:722
|
2915 |
msgid "Topic \"%1$s\" successfully stuck."
|
2916 |
msgstr ""
|
2917 |
|
2918 |
+
#: includes/admin/topics.php:727
|
2919 |
msgid "There was a problem unsticking the topic \"%1$s\"."
|
2920 |
msgstr ""
|
2921 |
|
2922 |
+
#: includes/admin/topics.php:728
|
2923 |
msgid "Topic \"%1$s\" successfully unstuck."
|
2924 |
msgstr ""
|
2925 |
|
2926 |
+
#: includes/admin/topics.php:733
|
2927 |
msgid "There was a problem marking the topic \"%1$s\" as spam."
|
2928 |
msgstr ""
|
2929 |
|
2930 |
+
#: includes/admin/topics.php:734
|
2931 |
msgid "Topic \"%1$s\" successfully marked as spam."
|
2932 |
msgstr ""
|
2933 |
|
2934 |
+
#: includes/admin/topics.php:739
|
2935 |
msgid "There was a problem unmarking the topic \"%1$s\" as spam."
|
2936 |
msgstr ""
|
2937 |
|
2938 |
+
#: includes/admin/topics.php:740
|
2939 |
msgid "Topic \"%1$s\" successfully unmarked as spam."
|
2940 |
msgstr ""
|
2941 |
|
2942 |
+
#: includes/admin/topics.php:745
|
2943 |
msgid "There was a problem approving the topic \"%1$s\"."
|
2944 |
msgstr ""
|
2945 |
|
2946 |
+
#: includes/admin/topics.php:746
|
2947 |
msgid "Topic \"%1$s\" successfully approved."
|
2948 |
msgstr ""
|
2949 |
|
2950 |
+
#: includes/admin/topics.php:751
|
2951 |
msgid "There was a problem unapproving the topic \"%1$s\"."
|
2952 |
msgstr ""
|
2953 |
|
2954 |
+
#: includes/admin/topics.php:752
|
2955 |
msgid "Topic \"%1$s\" successfully unapproved."
|
2956 |
msgstr ""
|
2957 |
|
2958 |
+
#: includes/admin/topics.php:785 templates/default/bbpress/loop-topics.php:16
|
2959 |
msgid "Voices"
|
2960 |
msgstr ""
|
2961 |
|
2962 |
+
#: includes/admin/topics.php:877 includes/topics/template.php:2162
|
2963 |
msgid "No Replies"
|
2964 |
msgstr ""
|
2965 |
|
2966 |
+
#: includes/admin/topics.php:932
|
2967 |
msgid "Unapprove this topic"
|
2968 |
msgstr ""
|
2969 |
|
2970 |
+
#: includes/admin/topics.php:934
|
2971 |
msgid "Approve this topic"
|
2972 |
msgstr ""
|
2973 |
|
2974 |
+
#: includes/admin/topics.php:943
|
2975 |
msgid "Close this topic"
|
2976 |
msgstr ""
|
2977 |
|
2978 |
+
#: includes/admin/topics.php:945
|
2979 |
msgid "Open this topic"
|
2980 |
msgstr ""
|
2981 |
|
2982 |
+
#: includes/admin/topics.php:954
|
2983 |
msgid "Unstick this topic"
|
2984 |
msgstr ""
|
2985 |
|
2986 |
+
#: includes/admin/topics.php:954 includes/topics/template.php:2921
|
2987 |
msgid "Unstick"
|
2988 |
msgstr ""
|
2989 |
|
2990 |
+
#: includes/admin/topics.php:957
|
2991 |
msgid "Stick this topic to its forum"
|
2992 |
msgstr ""
|
2993 |
|
2994 |
+
#: includes/admin/topics.php:957 includes/topics/template.php:2920
|
2995 |
msgid "Stick"
|
2996 |
msgstr ""
|
2997 |
|
2998 |
+
#: includes/admin/topics.php:957
|
2999 |
msgid "Stick this topic to front"
|
3000 |
msgstr ""
|
3001 |
|
3002 |
+
#: includes/admin/topics.php:957 includes/topics/template.php:2922
|
3003 |
msgid "(to front)"
|
3004 |
msgstr ""
|
3005 |
|
3006 |
+
#: includes/admin/topics.php:964
|
3007 |
msgid "Mark the topic as not spam"
|
3008 |
msgstr ""
|
3009 |
|
3010 |
+
#: includes/admin/topics.php:966
|
3011 |
msgid "Mark this topic as spam"
|
3012 |
msgstr ""
|
3013 |
|
3014 |
+
#: includes/admin/topics.php:1079 includes/admin/topics.php:1091
|
3015 |
msgid "Topic updated."
|
3016 |
msgstr ""
|
3017 |
|
3018 |
+
#: includes/admin/topics.php:1096
|
3019 |
#. translators: %s: date and time of the revision
|
3020 |
msgid "Topic restored to revision from %s"
|
3021 |
msgstr ""
|
3022 |
|
3023 |
+
#: includes/admin/topics.php:1102
|
3024 |
msgid "Topic created."
|
3025 |
msgstr ""
|
3026 |
|
3027 |
+
#: includes/admin/topics.php:1108
|
3028 |
msgid "Topic saved."
|
3029 |
msgstr ""
|
3030 |
|
3031 |
+
#: includes/admin/topics.php:1113
|
3032 |
msgid "Topic submitted."
|
3033 |
msgstr ""
|
3034 |
|
3035 |
+
#: includes/admin/topics.php:1122
|
3036 |
msgid "Topic scheduled for: %s."
|
3037 |
msgstr ""
|
3038 |
|
3039 |
+
#: includes/admin/topics.php:1133
|
3040 |
msgid "Topic draft updated."
|
3041 |
msgstr ""
|
3042 |
|
3777 |
msgstr[0] ""
|
3778 |
msgstr[1] ""
|
3779 |
|
3780 |
+
#: includes/forums/template.php:1286 includes/topics/template.php:2218
|
3781 |
msgid "(+ %d hidden)"
|
3782 |
msgid_plural "(+ %d hidden)"
|
3783 |
msgstr[0] ""
|
3784 |
msgstr[1] ""
|
3785 |
|
3786 |
+
#: includes/forums/template.php:2109 includes/topics/template.php:2201
|
3787 |
msgid "%s reply"
|
3788 |
msgid_plural "%s replies"
|
3789 |
msgstr[0] ""
|
4011 |
msgid "All Posts"
|
4012 |
msgstr ""
|
4013 |
|
4014 |
+
#: includes/replies/functions.php:2336 includes/topics/functions.php:4153
|
4015 |
msgid "Replies: %s"
|
4016 |
msgstr ""
|
4017 |
|
4079 |
msgid "Cancel"
|
4080 |
msgstr ""
|
4081 |
|
4082 |
+
#: includes/replies/template.php:2101 includes/topics/template.php:2729
|
4083 |
#: templates/default/bbpress/form-topic-tag.php:97
|
4084 |
#: templates/default/bbpress/form-topic-tag.php:114
|
4085 |
msgid "Delete"
|
4086 |
msgstr ""
|
4087 |
|
4088 |
+
#: includes/replies/template.php:2119 includes/topics/template.php:2747
|
4089 |
msgid "Are you sure you want to delete that permanently?"
|
4090 |
msgstr ""
|
4091 |
|
4105 |
msgid "Split the topic from this reply"
|
4106 |
msgstr ""
|
4107 |
|
4108 |
+
#: includes/replies/template.php:2469
|
4109 |
msgid "Viewing %1$s reply thread"
|
4110 |
msgid_plural "Viewing %1$s reply threads"
|
4111 |
msgstr[0] ""
|
4112 |
msgstr[1] ""
|
4113 |
|
4114 |
+
#: includes/replies/template.php:2476
|
4115 |
msgid "Viewing %1$s reply"
|
4116 |
msgid_plural "Viewing %1$s replies"
|
4117 |
msgstr[0] ""
|
4118 |
msgstr[1] ""
|
4119 |
|
4120 |
+
#: includes/replies/template.php:2480
|
4121 |
msgid "Viewing %2$s replies (of %4$s total)"
|
4122 |
msgid_plural "Viewing %1$s replies - %2$s through %3$s (of %4$s total)"
|
4123 |
msgstr[0] ""
|
4124 |
msgstr[1] ""
|
4125 |
|
4126 |
+
#: includes/replies/template.php:2488
|
4127 |
msgid "Viewing %1$s post"
|
4128 |
msgid_plural "Viewing %1$s posts"
|
4129 |
msgstr[0] ""
|
4130 |
msgstr[1] ""
|
4131 |
|
4132 |
+
#: includes/replies/template.php:2492
|
4133 |
msgid "Viewing %2$s post (of %4$s total)"
|
4134 |
msgid_plural "Viewing %1$s posts - %2$s through %3$s (of %4$s total)"
|
4135 |
msgstr[0] ""
|
4385 |
msgid "Unfavorite"
|
4386 |
msgstr ""
|
4387 |
|
4388 |
+
#: includes/topics/template.php:2400
|
4389 |
msgid "Tagged:"
|
4390 |
msgstr ""
|
4391 |
|
4392 |
+
#: includes/topics/template.php:2992
|
4393 |
#: templates/default/bbpress/form-topic-tag.php:66
|
4394 |
#: templates/default/bbpress/form-topic-tag.php:82
|
4395 |
msgid "Merge"
|
4396 |
msgstr ""
|
4397 |
|
4398 |
+
#: includes/topics/template.php:3157
|
4399 |
msgid "Viewing %1$s topic"
|
4400 |
msgid_plural "Viewing %1$s topics"
|
4401 |
msgstr[0] ""
|
4402 |
msgstr[1] ""
|
4403 |
|
4404 |
+
#: includes/topics/template.php:3161
|
4405 |
msgid "Viewing topic %2$s (of %4$s total)"
|
4406 |
msgid_plural "Viewing %1$s topics - %2$s through %3$s (of %4$s total)"
|
4407 |
msgstr[0] ""
|
4408 |
msgstr[1] ""
|
4409 |
|
4410 |
+
#: includes/topics/template.php:3223
|
4411 |
msgid "This topic is marked as spam."
|
4412 |
msgstr ""
|
4413 |
|
4414 |
+
#: includes/topics/template.php:3228
|
4415 |
msgid "This topic is in the trash."
|
4416 |
msgstr ""
|
4417 |
|
4418 |
+
#: includes/topics/template.php:3498
|
4419 |
msgid "%s voice"
|
4420 |
msgid_plural "%s voices"
|
4421 |
msgstr[0] ""
|
4422 |
msgstr[1] ""
|
4423 |
|
4424 |
+
#: includes/topics/template.php:3504
|
4425 |
msgid "This topic contains %1$s, has %2$s, and was last updated by %3$s %4$s."
|
4426 |
msgstr ""
|
4427 |
|
4428 |
+
#: includes/topics/template.php:3508
|
4429 |
msgid "This topic contains %1$s and has %2$s."
|
4430 |
msgstr ""
|
4431 |
|
4432 |
+
#: includes/topics/template.php:3512
|
4433 |
msgid "This topic has no replies."
|
4434 |
msgstr ""
|
4435 |
|
4436 |
+
#: includes/topics/template.php:3560
|
|
|
|
|
|
|
|
|
|
|
4437 |
msgid "Search Tags"
|
4438 |
msgstr ""
|
4439 |
|
4440 |
+
#: includes/topics/template.php:3561
|
4441 |
msgid "Popular Tags"
|
4442 |
msgstr ""
|
4443 |
|
4444 |
+
#: includes/topics/template.php:3562
|
4445 |
msgid "All Tags"
|
4446 |
msgstr ""
|
4447 |
|
4448 |
+
#: includes/topics/template.php:3563
|
4449 |
msgid "Edit Tag"
|
4450 |
msgstr ""
|
4451 |
|
4452 |
+
#: includes/topics/template.php:3564
|
4453 |
msgid "Update Tag"
|
4454 |
msgstr ""
|
4455 |
|
4456 |
+
#: includes/topics/template.php:3565
|
4457 |
msgid "Add New Tag"
|
4458 |
msgstr ""
|
4459 |
|
4460 |
+
#: includes/topics/template.php:3566
|
4461 |
msgid "New Tag Name"
|
4462 |
msgstr ""
|
4463 |
|
4464 |
+
#: includes/topics/template.php:3567
|
4465 |
msgid "View Topic Tag"
|
4466 |
msgstr ""
|
4467 |
|
4468 |
+
#: includes/topics/template.php:3568
|
4469 |
msgid "View Topic Tags"
|
4470 |
msgstr ""
|
4471 |
|
4472 |
+
#: includes/topics/template.php:3569
|
4473 |
msgid "Separate topic tags with commas"
|
4474 |
msgstr ""
|
4475 |
|
5404 |
msgid "Evergreen"
|
5405 |
msgstr ""
|
5406 |
|
5407 |
+
#: includes/admin/forums.php:630
|
5408 |
msgctxt "Close a Forum"
|
5409 |
msgid "Close"
|
5410 |
msgstr ""
|
5411 |
|
5412 |
+
#: includes/admin/forums.php:632
|
5413 |
msgctxt "Open a Forum"
|
5414 |
msgid "Open"
|
5415 |
msgstr ""
|
5420 |
msgid "Reply"
|
5421 |
msgstr ""
|
5422 |
|
5423 |
+
#: includes/admin/replies.php:780
|
5424 |
msgctxt "Unapprove reply"
|
5425 |
msgid "Unapprove"
|
5426 |
msgstr ""
|
5427 |
|
5428 |
+
#: includes/admin/replies.php:782
|
5429 |
msgctxt "Approve reply"
|
5430 |
msgid "Approve"
|
5431 |
msgstr ""
|
5432 |
|
5433 |
+
#: includes/admin/topics.php:932
|
5434 |
msgctxt "Unapprove Topic"
|
5435 |
msgid "Unapprove"
|
5436 |
msgstr ""
|
5437 |
|
5438 |
+
#: includes/admin/topics.php:934
|
5439 |
msgctxt "Approve Topic"
|
5440 |
msgid "Approve"
|
5441 |
msgstr ""
|
5442 |
|
5443 |
+
#: includes/admin/topics.php:943
|
5444 |
msgctxt "Close a Topic"
|
5445 |
msgid "Close"
|
5446 |
msgstr ""
|
5447 |
|
5448 |
+
#: includes/admin/topics.php:945
|
5449 |
msgctxt "Open a Topic"
|
5450 |
msgid "Open"
|
5451 |
msgstr ""
|
5579 |
msgid "%1$s at %2$s"
|
5580 |
msgstr ""
|
5581 |
|
5582 |
+
#: includes/replies/template.php:1680 includes/topics/template.php:3099
|
5583 |
msgctxt "verb"
|
5584 |
msgid "Reply"
|
5585 |
msgstr ""
|
5586 |
|
5587 |
+
#: includes/replies/template.php:2368 includes/topics/template.php:2859
|
5588 |
msgctxt "Pending Status"
|
5589 |
msgid "Approve"
|
5590 |
msgstr ""
|
5591 |
|
5592 |
+
#: includes/replies/template.php:2369 includes/topics/template.php:2860
|
5593 |
msgctxt "Pending Status"
|
5594 |
msgid "Unapprove"
|
5595 |
msgstr ""
|
5634 |
msgid "Super Sticky"
|
5635 |
msgstr ""
|
5636 |
|
5637 |
+
#: includes/topics/template.php:2798
|
5638 |
msgctxt "Topic Status"
|
5639 |
msgid "Close"
|
5640 |
msgstr ""
|
5641 |
|
5642 |
+
#: includes/topics/template.php:2799
|
5643 |
msgctxt "Topic Status"
|
5644 |
msgid "Open"
|
5645 |
msgstr ""
|
includes/admin/admin.php
CHANGED
@@ -10,7 +10,7 @@
|
|
10 |
// Exit if accessed directly
|
11 |
defined( 'ABSPATH' ) || exit;
|
12 |
|
13 |
-
if ( !class_exists( 'BBP_Admin' ) ) :
|
14 |
/**
|
15 |
* Loads bbPress plugin admin area
|
16 |
*
|
@@ -916,34 +916,67 @@ class BBP_Admin {
|
|
916 |
</li>
|
917 |
</ul>
|
918 |
|
919 |
-
<h3 class="wp-people-group"><?php esc_html_e( 'Core Contributors to bbPress 2.
|
920 |
<p class="wp-credits-list">
|
921 |
<a href="https://profiles.wordpress.org/alex-ye">alex-ye</a>,
|
922 |
-
<a href="https://profiles.wordpress.org/
|
923 |
-
<a href="https://profiles.wordpress.org/
|
924 |
<a href="https://profiles.wordpress.org/boonebgorges">boonebgorges</a>,
|
925 |
-
<a href="https://profiles.wordpress.org/
|
|
|
|
|
|
|
926 |
<a href="https://profiles.wordpress.org/DJPaul">DJPaul</a>,
|
927 |
-
<a href="https://profiles.wordpress.org/
|
928 |
-
<a href="https://profiles.wordpress.org/
|
929 |
-
<a href="https://profiles.wordpress.org/
|
930 |
-
<a href="https://profiles.wordpress.org/
|
|
|
|
|
|
|
|
|
|
|
|
|
931 |
<a href="https://profiles.wordpress.org/imath">imath</a>,
|
932 |
-
<a href="https://profiles.wordpress.org/
|
933 |
-
<a href="https://profiles.wordpress.org/
|
934 |
-
<a href="https://profiles.wordpress.org/
|
935 |
-
<a href="https://profiles.wordpress.org/
|
936 |
-
<a href="https://profiles.wordpress.org/
|
937 |
-
<a href="https://profiles.wordpress.org/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
938 |
<a href="https://profiles.wordpress.org/mercime">mercime</a>,
|
|
|
|
|
939 |
<a href="https://profiles.wordpress.org/mordauk">mordauk</a>,
|
940 |
-
<a href="https://profiles.wordpress.org/
|
941 |
<a href="https://profiles.wordpress.org/MZAWeb">MZAWeb</a>,
|
|
|
|
|
|
|
|
|
942 |
<a href="https://profiles.wordpress.org/r-a-y">r-a-y</a>,
|
943 |
-
<a href="https://profiles.wordpress.org/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
944 |
<a href="https://profiles.wordpress.org/thebrandonallen">thebrandonallen</a>,
|
945 |
-
<a href="https://profiles.wordpress.org/
|
946 |
-
<a href="https://profiles.wordpress.org/
|
|
|
|
|
|
|
947 |
</p>
|
948 |
|
949 |
<div class="return-to-dashboard">
|
10 |
// Exit if accessed directly
|
11 |
defined( 'ABSPATH' ) || exit;
|
12 |
|
13 |
+
if ( ! class_exists( 'BBP_Admin' ) ) :
|
14 |
/**
|
15 |
* Loads bbPress plugin admin area
|
16 |
*
|
916 |
</li>
|
917 |
</ul>
|
918 |
|
919 |
+
<h3 class="wp-people-group"><?php esc_html_e( 'Core Contributors to bbPress 2.6', 'bbpress' ); ?></h3>
|
920 |
<p class="wp-credits-list">
|
921 |
<a href="https://profiles.wordpress.org/alex-ye">alex-ye</a>,
|
922 |
+
<a href="https://profiles.wordpress.org/ankit-k-gupta">ankit-k-gupta</a>,
|
923 |
+
<a href="https://profiles.wordpress.org/barryhughes-1">barryhughes-1</a>,
|
924 |
<a href="https://profiles.wordpress.org/boonebgorges">boonebgorges</a>,
|
925 |
+
<a href="https://profiles.wordpress.org/casiepa">casiepa</a>,
|
926 |
+
<a href="https://profiles.wordpress.org/cfinke">cfinke</a>,
|
927 |
+
<a href="https://profiles.wordpress.org/danielbachhuber">danielbachhuber</a>,
|
928 |
+
<a href="https://profiles.wordpress.org/dimitrovadrian">dimitrov.adrian</a>,
|
929 |
<a href="https://profiles.wordpress.org/DJPaul">DJPaul</a>,
|
930 |
+
<a href="https://profiles.wordpress.org/DrPepper75">DrPepper75</a>,
|
931 |
+
<a href="https://profiles.wordpress.org/eoigal">eoigal</a>,
|
932 |
+
<a href="https://profiles.wordpress.org/ericlewis">ericlewis</a>,
|
933 |
+
<a href="https://profiles.wordpress.org/extendwings">extendwings</a>,
|
934 |
+
<a href="https://profiles.wordpress.org/Faison">Faison</a>,
|
935 |
+
<a href="https://profiles.wordpress.org/gautamgupta">gautamgupta</a>,
|
936 |
+
<a href="https://profiles.wordpress.org/glynwintle">glynwintle</a>,
|
937 |
+
<a href="https://profiles.wordpress.org/gusrb84">gusrb84</a>,
|
938 |
+
<a href="https://profiles.wordpress.org/hellofromTonya">hellofromTonya</a>,
|
939 |
+
<a href="https://profiles.wordpress.org/icu0755">icu0755</a>,
|
940 |
<a href="https://profiles.wordpress.org/imath">imath</a>,
|
941 |
+
<a href="https://profiles.wordpress.org/jbrinley">jbrinley</a>,
|
942 |
+
<a href="https://profiles.wordpress.org/jdgrimes">jdgrimes</a>,
|
943 |
+
<a href="https://profiles.wordpress.org/jmdodd">jmdodd</a>,
|
944 |
+
<a href="https://profiles.wordpress.org/joedolson">joedolson</a>,
|
945 |
+
<a href="https://profiles.wordpress.org/johnbillion">johnbillion</a>,
|
946 |
+
<a href="https://profiles.wordpress.org/johnjamesjacoby">johnjamesjacoby</a>,
|
947 |
+
<a href="https://profiles.wordpress.org/jorbin">jorbin</a>,
|
948 |
+
<a href="https://profiles.wordpress.org/jreeve">jreeve</a>,
|
949 |
+
<a href="https://profiles.wordpress.org/kadamwhite ">kadamwhite</a>,
|
950 |
+
<a href="https://profiles.wordpress.org/karlgroves">karlgroves</a>,
|
951 |
+
<a href="https://profiles.wordpress.org/mat-lipe">mat-lipe</a>,
|
952 |
+
<a href="https://profiles.wordpress.org/mazengamal">mazengamal</a>,
|
953 |
+
<a href="https://profiles.wordpress.org/melchoyce">melchoyce</a>,
|
954 |
<a href="https://profiles.wordpress.org/mercime">mercime</a>,
|
955 |
+
<a href="https://profiles.wordpress.org/michaelbeil">michaelbeil</a>,
|
956 |
+
<a href="https://profiles.wordpress.org/mikelopez">mikelopez</a>,
|
957 |
<a href="https://profiles.wordpress.org/mordauk">mordauk</a>,
|
958 |
+
<a href="https://profiles.wordpress.org/mspecht">mspecht</a>,
|
959 |
<a href="https://profiles.wordpress.org/MZAWeb">MZAWeb</a>,
|
960 |
+
<a href="https://profiles.wordpress.org/netweb">netweb</a>,
|
961 |
+
<a href="https://profiles.wordpress.org/ocean90">ocean90</a>,
|
962 |
+
<a href="https://profiles.wordpress.org/offereins">offereins</a>,
|
963 |
+
<a href="https://profiles.wordpress.org/pareshradadiya">pareshradadiya</a>,
|
964 |
<a href="https://profiles.wordpress.org/r-a-y">r-a-y</a>,
|
965 |
+
<a href="https://profiles.wordpress.org/ramiy">ramiy</a>,
|
966 |
+
<a href="https://profiles.wordpress.org/robin-w">robin-w</a>,
|
967 |
+
<a href="https://profiles.wordpress.org/robkk">robkk</a>,
|
968 |
+
<a href="https://profiles.wordpress.org/ryelle">ryelle</a>,
|
969 |
+
<a href="https://profiles.wordpress.org/satollo">satollo</a>,
|
970 |
+
<a href="https://profiles.wordpress.org/SergeyBiryukov">Sergey Biryukov</a>,
|
971 |
+
<a href="https://profiles.wordpress.org/SGr33n">SGr33n</a>,
|
972 |
+
<a href="https://profiles.wordpress.org/stephdau">stephdau</a>,
|
973 |
+
<a href="https://profiles.wordpress.org/tharsheblows">tharsheblows</a>,
|
974 |
<a href="https://profiles.wordpress.org/thebrandonallen">thebrandonallen</a>,
|
975 |
+
<a href="https://profiles.wordpress.org/tobyhawkins">tobyhawkins</a>,
|
976 |
+
<a href="https://profiles.wordpress.org/tonyrix">tonyrix</a>,
|
977 |
+
<a href="https://profiles.wordpress.org/treyhunner">treyhunner</a>,
|
978 |
+
<a href="https://profiles.wordpress.org/tw2113">tw2113</a>,
|
979 |
+
<a href="https://profiles.wordpress.org/xknown">xknown</a>,
|
980 |
</p>
|
981 |
|
982 |
<div class="return-to-dashboard">
|
includes/admin/css/admin-rtl.css
CHANGED
@@ -210,3 +210,98 @@ body.rtl #bbp-dashboard-right-now a.button {
|
|
210 |
float: right;
|
211 |
clear: right;
|
212 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
210 |
float: right;
|
211 |
clear: right;
|
212 |
}
|
213 |
+
|
214 |
+
/* List Tables */
|
215 |
+
|
216 |
+
body.post-type-forum #minor-publishing,
|
217 |
+
body.post-type-forum #save-post {
|
218 |
+
display: none;
|
219 |
+
}
|
220 |
+
|
221 |
+
body.post-type-forum strong.label,
|
222 |
+
body.post-type-topic strong.label,
|
223 |
+
body.post-type-reply strong.label {
|
224 |
+
display: inline-block;
|
225 |
+
width: 60px;
|
226 |
+
}
|
227 |
+
|
228 |
+
.column-bbp_forum_topic_count,
|
229 |
+
.column-bbp_forum_reply_count,
|
230 |
+
.column-bbp_topic_reply_count,
|
231 |
+
.column-bbp_topic_voice_count {
|
232 |
+
width: 8% !important;
|
233 |
+
}
|
234 |
+
|
235 |
+
.column-author,
|
236 |
+
.column-bbp_forum_mods,
|
237 |
+
.column-bbp_reply_author,
|
238 |
+
.column-bbp_topic_author {
|
239 |
+
width: 10% !important;
|
240 |
+
}
|
241 |
+
|
242 |
+
.column-bbp_topic_forum,
|
243 |
+
.column-bbp_reply_forum,
|
244 |
+
.column-bbp_reply_topic {
|
245 |
+
width: 10% !important;
|
246 |
+
}
|
247 |
+
|
248 |
+
.column-bbp_forum_freshness,
|
249 |
+
.column-bbp_topic_freshness {
|
250 |
+
width: 10% !important;
|
251 |
+
}
|
252 |
+
|
253 |
+
.column-bbp_forum_created,
|
254 |
+
.column-bbp_topic_created,
|
255 |
+
.column-bbp_reply_created {
|
256 |
+
width: 15% !important;
|
257 |
+
}
|
258 |
+
|
259 |
+
.column-bbp_topic_reply_author,
|
260 |
+
.column-bbp_forum_topic_author {
|
261 |
+
width: 25% !important;
|
262 |
+
}
|
263 |
+
|
264 |
+
.column-bbp_topic_reply_author .avatar,
|
265 |
+
.column-bbp_forum_topic_author .avatar {
|
266 |
+
float: right;
|
267 |
+
margin-left: 10px;
|
268 |
+
}
|
269 |
+
|
270 |
+
#bbp_moderators {
|
271 |
+
width: 100%;
|
272 |
+
}
|
273 |
+
|
274 |
+
#bbp_forum_attributes hr {
|
275 |
+
border-style: solid;
|
276 |
+
border-width: 1px;
|
277 |
+
border-color: #ccc #ccc #fff #fff;
|
278 |
+
}
|
279 |
+
|
280 |
+
#the-list .status-closed {
|
281 |
+
background-color: #f5f5f5;
|
282 |
+
}
|
283 |
+
|
284 |
+
#the-list .status-closed:nth-child(odd) {
|
285 |
+
background-color: #f0f0f0;
|
286 |
+
}
|
287 |
+
|
288 |
+
#the-list .status-spam {
|
289 |
+
background-color: #fee;
|
290 |
+
}
|
291 |
+
|
292 |
+
#the-list .status-spam:nth-child(odd) {
|
293 |
+
background-color: #fdd;
|
294 |
+
}
|
295 |
+
|
296 |
+
#the-list .status-pending {
|
297 |
+
background-color: #fff2e8;
|
298 |
+
}
|
299 |
+
|
300 |
+
#the-list .status-pending:nth-child(odd) {
|
301 |
+
background-color: #fff7f1;
|
302 |
+
}
|
303 |
+
|
304 |
+
#the-list .status-closed td,
|
305 |
+
#the-list .status-spam td {
|
306 |
+
color: #999;
|
307 |
+
}
|
includes/admin/css/admin-rtl.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
#poststuff #bbp_forum_attributes select#parent_id,#poststuff #bbp_reply_attributes select#bbp_forum_id,#poststuff #bbp_reply_attributes select#bbp_reply_to,#poststuff #bbp_topic_attributes select#parent_id{max-width:170px}.bbp-badge{font:400 150px/1 dashicons!important;color:#000;display:inline-block}.bbp-badge:before{content:"\f451"}.about-wrap .bbp-badge{position:absolute;top:0;left:0}body.rtl .about-wrap .bbp-badge{left:auto;right:0}#adminmenu #menu-posts-forum .wp-menu-image:before,#dashboard_right_now a.bbp-glance-forums:before,th .bbp_forums_column:before{content:"\f449"}#adminmenu #menu-posts-topic .wp-menu-image:before,#dashboard_right_now a.bbp-glance-topics:before,th .bbp_topics_column:before{content:"\f450"}#adminmenu #menu-posts-reply .wp-menu-image:before,#dashboard_right_now a.bbp-glance-replies:before,th .bbp_replies_column:before{content:"\f451"}#dashboard_right_now a.bbp-glance-topic-tags:before{content:"\f323"}th .bbp_forums_column,th .bbp_replies_column,th .bbp_topics_column{height:16px;width:16px}th .bbp_forums_column:before,th .bbp_replies_column:before,th .bbp_topics_column:before{font:400 20px/.5 dashicons;speak:none;display:inline-block;padding:0;top:4px;right:-4px;position:relative;vertical-align:top;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none!important;color:#444}#bbp-dashboard-right-now .table,#bbp-dashboard-right-now .versions,#bbp-dashboard-right-now p.sub{margin:-12px}#bbp-dashboard-right-now .inside{font-size:12px;padding-top:20px;margin-bottom:0}#bbp-dashboard-right-now p.sub{padding:5px 0 15px;color:#8f8f8f;font-size:14px;position:absolute;top:-17px;right:15px}body.rtl #bbp-dashboard-right-now p.sub{left:15px;right:0}#bbp-dashboard-right-now .table{margin:0;padding:0;position:relative}#bbp-dashboard-right-now .table_content{float:right;border-top:#ececec 1px solid;width:45%}body.rtl #bbp-dashboard-right-now .table_content{float:left}#bbp-dashboard-right-now .table_discussion{float:left;border-top:#ececec 1px solid;width:45%}body.rtl #bbp-dashboard-right-now .table_discussion{float:right}#bbp-dashboard-right-now table td{padding:3px 0;white-space:nowrap}#bbp-dashboard-right-now table tr.first td{border-top:none}#bbp-dashboard-right-now td.b{padding-left:6px;text-align:left;font-family:Georgia,"Times New Roman","Bitstream Charter",Times,serif;font-size:14px;width:1%}body.rtl #bbp-dashboard-right-now td.b{padding-right:6px;padding-left:0}#bbp-dashboard-right-now td.b a{font-size:18px}#bbp-dashboard-right-now td.b a:hover{color:#d54e21}#bbp-dashboard-right-now .t{font-size:12px;padding-left:12px;padding-top:6px;color:#777}body.rtl #bbp-dashboard-right-now .t{padding-right:12px;padding-left:0}#bbp-dashboard-right-now .t a{white-space:nowrap}#bbp-dashboard-right-now .spam{color:red}#bbp-dashboard-right-now .waiting{color:#e66f00}#bbp-dashboard-right-now .approved{color:#0f0}#bbp-dashboard-right-now .versions{padding:6px 10px 12px;clear:both}#bbp-dashboard-right-now .versions .b{font-weight:700}#bbp-dashboard-right-now a.button{float:left;clear:left;position:relative;top:-5px}body.rtl #bbp-dashboard-right-now a.button{float:right;clear:right}
|
1 |
+
#poststuff #bbp_forum_attributes select#parent_id,#poststuff #bbp_reply_attributes select#bbp_forum_id,#poststuff #bbp_reply_attributes select#bbp_reply_to,#poststuff #bbp_topic_attributes select#parent_id{max-width:170px}.bbp-badge{font:400 150px/1 dashicons!important;color:#000;display:inline-block}.bbp-badge:before{content:"\f451"}.about-wrap .bbp-badge{position:absolute;top:0;left:0}body.rtl .about-wrap .bbp-badge{left:auto;right:0}#adminmenu #menu-posts-forum .wp-menu-image:before,#dashboard_right_now a.bbp-glance-forums:before,th .bbp_forums_column:before{content:"\f449"}#adminmenu #menu-posts-topic .wp-menu-image:before,#dashboard_right_now a.bbp-glance-topics:before,th .bbp_topics_column:before{content:"\f450"}#adminmenu #menu-posts-reply .wp-menu-image:before,#dashboard_right_now a.bbp-glance-replies:before,th .bbp_replies_column:before{content:"\f451"}#dashboard_right_now a.bbp-glance-topic-tags:before{content:"\f323"}th .bbp_forums_column,th .bbp_replies_column,th .bbp_topics_column{height:16px;width:16px}th .bbp_forums_column:before,th .bbp_replies_column:before,th .bbp_topics_column:before{font:400 20px/.5 dashicons;speak:none;display:inline-block;padding:0;top:4px;right:-4px;position:relative;vertical-align:top;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none!important;color:#444}#bbp-dashboard-right-now .table,#bbp-dashboard-right-now .versions,#bbp-dashboard-right-now p.sub{margin:-12px}#bbp-dashboard-right-now .inside{font-size:12px;padding-top:20px;margin-bottom:0}#bbp-dashboard-right-now p.sub{padding:5px 0 15px;color:#8f8f8f;font-size:14px;position:absolute;top:-17px;right:15px}body.rtl #bbp-dashboard-right-now p.sub{left:15px;right:0}#bbp-dashboard-right-now .table{margin:0;padding:0;position:relative}#bbp-dashboard-right-now .table_content{float:right;border-top:#ececec 1px solid;width:45%}body.rtl #bbp-dashboard-right-now .table_content{float:left}#bbp-dashboard-right-now .table_discussion{float:left;border-top:#ececec 1px solid;width:45%}body.rtl #bbp-dashboard-right-now .table_discussion{float:right}#bbp-dashboard-right-now table td{padding:3px 0;white-space:nowrap}#bbp-dashboard-right-now table tr.first td{border-top:none}#bbp-dashboard-right-now td.b{padding-left:6px;text-align:left;font-family:Georgia,"Times New Roman","Bitstream Charter",Times,serif;font-size:14px;width:1%}body.rtl #bbp-dashboard-right-now td.b{padding-right:6px;padding-left:0}#bbp-dashboard-right-now td.b a{font-size:18px}#bbp-dashboard-right-now td.b a:hover{color:#d54e21}#bbp-dashboard-right-now .t{font-size:12px;padding-left:12px;padding-top:6px;color:#777}body.rtl #bbp-dashboard-right-now .t{padding-right:12px;padding-left:0}#bbp-dashboard-right-now .t a{white-space:nowrap}#bbp-dashboard-right-now .spam{color:red}#bbp-dashboard-right-now .waiting{color:#e66f00}#bbp-dashboard-right-now .approved{color:#0f0}#bbp-dashboard-right-now .versions{padding:6px 10px 12px;clear:both}#bbp-dashboard-right-now .versions .b{font-weight:700}#bbp-dashboard-right-now a.button{float:left;clear:left;position:relative;top:-5px}body.rtl #bbp-dashboard-right-now a.button{float:right;clear:right}body.post-type-forum #minor-publishing,body.post-type-forum #save-post{display:none}body.post-type-forum strong.label,body.post-type-reply strong.label,body.post-type-topic strong.label{display:inline-block;width:60px}.column-bbp_forum_reply_count,.column-bbp_forum_topic_count,.column-bbp_topic_reply_count,.column-bbp_topic_voice_count{width:8%!important}.column-author,.column-bbp_forum_freshness,.column-bbp_forum_mods,.column-bbp_reply_author,.column-bbp_reply_forum,.column-bbp_reply_topic,.column-bbp_topic_author,.column-bbp_topic_forum,.column-bbp_topic_freshness{width:10%!important}.column-bbp_forum_created,.column-bbp_reply_created,.column-bbp_topic_created{width:15%!important}.column-bbp_forum_topic_author,.column-bbp_topic_reply_author{width:25%!important}.column-bbp_forum_topic_author .avatar,.column-bbp_topic_reply_author .avatar{float:right;margin-left:10px}#bbp_moderators{width:100%}#bbp_forum_attributes hr{border-style:solid;border-width:1px;border-color:#ccc #ccc #fff #fff}#the-list .status-closed{background-color:#f5f5f5}#the-list .status-closed:nth-child(odd){background-color:#f0f0f0}#the-list .status-spam{background-color:#fee}#the-list .status-spam:nth-child(odd){background-color:#fdd}#the-list .status-pending{background-color:#fff2e8}#the-list .status-pending:nth-child(odd){background-color:#fff7f1}#the-list .status-closed td,#the-list .status-spam td{color:#999}
|
includes/admin/css/admin.css
CHANGED
@@ -210,3 +210,98 @@ body.rtl #bbp-dashboard-right-now a.button {
|
|
210 |
float: left;
|
211 |
clear: left;
|
212 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
210 |
float: left;
|
211 |
clear: left;
|
212 |
}
|
213 |
+
|
214 |
+
/* List Tables */
|
215 |
+
|
216 |
+
body.post-type-forum #minor-publishing,
|
217 |
+
body.post-type-forum #save-post {
|
218 |
+
display: none;
|
219 |
+
}
|
220 |
+
|
221 |
+
body.post-type-forum strong.label,
|
222 |
+
body.post-type-topic strong.label,
|
223 |
+
body.post-type-reply strong.label {
|
224 |
+
display: inline-block;
|
225 |
+
width: 60px;
|
226 |
+
}
|
227 |
+
|
228 |
+
.column-bbp_forum_topic_count,
|
229 |
+
.column-bbp_forum_reply_count,
|
230 |
+
.column-bbp_topic_reply_count,
|
231 |
+
.column-bbp_topic_voice_count {
|
232 |
+
width: 8% !important;
|
233 |
+
}
|
234 |
+
|
235 |
+
.column-author,
|
236 |
+
.column-bbp_forum_mods,
|
237 |
+
.column-bbp_reply_author,
|
238 |
+
.column-bbp_topic_author {
|
239 |
+
width: 10% !important;
|
240 |
+
}
|
241 |
+
|
242 |
+
.column-bbp_topic_forum,
|
243 |
+
.column-bbp_reply_forum,
|
244 |
+
.column-bbp_reply_topic {
|
245 |
+
width: 10% !important;
|
246 |
+
}
|
247 |
+
|
248 |
+
.column-bbp_forum_freshness,
|
249 |
+
.column-bbp_topic_freshness {
|
250 |
+
width: 10% !important;
|
251 |
+
}
|
252 |
+
|
253 |
+
.column-bbp_forum_created,
|
254 |
+
.column-bbp_topic_created,
|
255 |
+
.column-bbp_reply_created {
|
256 |
+
width: 15% !important;
|
257 |
+
}
|
258 |
+
|
259 |
+
.column-bbp_topic_reply_author,
|
260 |
+
.column-bbp_forum_topic_author {
|
261 |
+
width: 25% !important;
|
262 |
+
}
|
263 |
+
|
264 |
+
.column-bbp_topic_reply_author .avatar,
|
265 |
+
.column-bbp_forum_topic_author .avatar {
|
266 |
+
float: left;
|
267 |
+
margin-right: 10px;
|
268 |
+
}
|
269 |
+
|
270 |
+
#bbp_moderators {
|
271 |
+
width: 100%;
|
272 |
+
}
|
273 |
+
|
274 |
+
#bbp_forum_attributes hr {
|
275 |
+
border-style: solid;
|
276 |
+
border-width: 1px;
|
277 |
+
border-color: #ccc #fff #fff #ccc;
|
278 |
+
}
|
279 |
+
|
280 |
+
#the-list .status-closed {
|
281 |
+
background-color: #f5f5f5;
|
282 |
+
}
|
283 |
+
|
284 |
+
#the-list .status-closed:nth-child(odd) {
|
285 |
+
background-color: #f0f0f0;
|
286 |
+
}
|
287 |
+
|
288 |
+
#the-list .status-spam {
|
289 |
+
background-color: #fee;
|
290 |
+
}
|
291 |
+
|
292 |
+
#the-list .status-spam:nth-child(odd) {
|
293 |
+
background-color: #fdd;
|
294 |
+
}
|
295 |
+
|
296 |
+
#the-list .status-pending {
|
297 |
+
background-color: #fff2e8;
|
298 |
+
}
|
299 |
+
|
300 |
+
#the-list .status-pending:nth-child(odd) {
|
301 |
+
background-color: #fff7f1;
|
302 |
+
}
|
303 |
+
|
304 |
+
#the-list .status-closed td,
|
305 |
+
#the-list .status-spam td {
|
306 |
+
color: #999;
|
307 |
+
}
|
includes/admin/css/admin.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
#poststuff #bbp_forum_attributes select#parent_id,#poststuff #bbp_reply_attributes select#bbp_forum_id,#poststuff #bbp_reply_attributes select#bbp_reply_to,#poststuff #bbp_topic_attributes select#parent_id{max-width:170px}.bbp-badge{font:400 150px/1 dashicons!important;color:#000;display:inline-block}.bbp-badge:before{content:"\f451"}.about-wrap .bbp-badge{position:absolute;top:0;right:0}body.rtl .about-wrap .bbp-badge{right:auto;left:0}#adminmenu #menu-posts-forum .wp-menu-image:before,#dashboard_right_now a.bbp-glance-forums:before,th .bbp_forums_column:before{content:"\f449"}#adminmenu #menu-posts-topic .wp-menu-image:before,#dashboard_right_now a.bbp-glance-topics:before,th .bbp_topics_column:before{content:"\f450"}#adminmenu #menu-posts-reply .wp-menu-image:before,#dashboard_right_now a.bbp-glance-replies:before,th .bbp_replies_column:before{content:"\f451"}#dashboard_right_now a.bbp-glance-topic-tags:before{content:"\f323"}th .bbp_forums_column,th .bbp_replies_column,th .bbp_topics_column{height:16px;width:16px}th .bbp_forums_column:before,th .bbp_replies_column:before,th .bbp_topics_column:before{font:400 20px/.5 dashicons;speak:none;display:inline-block;padding:0;top:4px;left:-4px;position:relative;vertical-align:top;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none!important;color:#444}#bbp-dashboard-right-now .table,#bbp-dashboard-right-now .versions,#bbp-dashboard-right-now p.sub{margin:-12px}#bbp-dashboard-right-now .inside{font-size:12px;padding-top:20px;margin-bottom:0}#bbp-dashboard-right-now p.sub{padding:5px 0 15px;color:#8f8f8f;font-size:14px;position:absolute;top:-17px;left:15px}body.rtl #bbp-dashboard-right-now p.sub{right:15px;left:0}#bbp-dashboard-right-now .table{margin:0;padding:0;position:relative}#bbp-dashboard-right-now .table_content{float:left;border-top:#ececec 1px solid;width:45%}body.rtl #bbp-dashboard-right-now .table_content{float:right}#bbp-dashboard-right-now .table_discussion{float:right;border-top:#ececec 1px solid;width:45%}body.rtl #bbp-dashboard-right-now .table_discussion{float:left}#bbp-dashboard-right-now table td{padding:3px 0;white-space:nowrap}#bbp-dashboard-right-now table tr.first td{border-top:none}#bbp-dashboard-right-now td.b{padding-right:6px;text-align:right;font-family:Georgia,"Times New Roman","Bitstream Charter",Times,serif;font-size:14px;width:1%}body.rtl #bbp-dashboard-right-now td.b{padding-left:6px;padding-right:0}#bbp-dashboard-right-now td.b a{font-size:18px}#bbp-dashboard-right-now td.b a:hover{color:#d54e21}#bbp-dashboard-right-now .t{font-size:12px;padding-right:12px;padding-top:6px;color:#777}body.rtl #bbp-dashboard-right-now .t{padding-left:12px;padding-right:0}#bbp-dashboard-right-now .t a{white-space:nowrap}#bbp-dashboard-right-now .spam{color:red}#bbp-dashboard-right-now .waiting{color:#e66f00}#bbp-dashboard-right-now .approved{color:#0f0}#bbp-dashboard-right-now .versions{padding:6px 10px 12px;clear:both}#bbp-dashboard-right-now .versions .b{font-weight:700}#bbp-dashboard-right-now a.button{float:right;clear:right;position:relative;top:-5px}body.rtl #bbp-dashboard-right-now a.button{float:left;clear:left}
|
1 |
+
#poststuff #bbp_forum_attributes select#parent_id,#poststuff #bbp_reply_attributes select#bbp_forum_id,#poststuff #bbp_reply_attributes select#bbp_reply_to,#poststuff #bbp_topic_attributes select#parent_id{max-width:170px}.bbp-badge{font:400 150px/1 dashicons!important;color:#000;display:inline-block}.bbp-badge:before{content:"\f451"}.about-wrap .bbp-badge{position:absolute;top:0;right:0}body.rtl .about-wrap .bbp-badge{right:auto;left:0}#adminmenu #menu-posts-forum .wp-menu-image:before,#dashboard_right_now a.bbp-glance-forums:before,th .bbp_forums_column:before{content:"\f449"}#adminmenu #menu-posts-topic .wp-menu-image:before,#dashboard_right_now a.bbp-glance-topics:before,th .bbp_topics_column:before{content:"\f450"}#adminmenu #menu-posts-reply .wp-menu-image:before,#dashboard_right_now a.bbp-glance-replies:before,th .bbp_replies_column:before{content:"\f451"}#dashboard_right_now a.bbp-glance-topic-tags:before{content:"\f323"}th .bbp_forums_column,th .bbp_replies_column,th .bbp_topics_column{height:16px;width:16px}th .bbp_forums_column:before,th .bbp_replies_column:before,th .bbp_topics_column:before{font:400 20px/.5 dashicons;speak:none;display:inline-block;padding:0;top:4px;left:-4px;position:relative;vertical-align:top;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none!important;color:#444}#bbp-dashboard-right-now .table,#bbp-dashboard-right-now .versions,#bbp-dashboard-right-now p.sub{margin:-12px}#bbp-dashboard-right-now .inside{font-size:12px;padding-top:20px;margin-bottom:0}#bbp-dashboard-right-now p.sub{padding:5px 0 15px;color:#8f8f8f;font-size:14px;position:absolute;top:-17px;left:15px}body.rtl #bbp-dashboard-right-now p.sub{right:15px;left:0}#bbp-dashboard-right-now .table{margin:0;padding:0;position:relative}#bbp-dashboard-right-now .table_content{float:left;border-top:#ececec 1px solid;width:45%}body.rtl #bbp-dashboard-right-now .table_content{float:right}#bbp-dashboard-right-now .table_discussion{float:right;border-top:#ececec 1px solid;width:45%}body.rtl #bbp-dashboard-right-now .table_discussion{float:left}#bbp-dashboard-right-now table td{padding:3px 0;white-space:nowrap}#bbp-dashboard-right-now table tr.first td{border-top:none}#bbp-dashboard-right-now td.b{padding-right:6px;text-align:right;font-family:Georgia,"Times New Roman","Bitstream Charter",Times,serif;font-size:14px;width:1%}body.rtl #bbp-dashboard-right-now td.b{padding-left:6px;padding-right:0}#bbp-dashboard-right-now td.b a{font-size:18px}#bbp-dashboard-right-now td.b a:hover{color:#d54e21}#bbp-dashboard-right-now .t{font-size:12px;padding-right:12px;padding-top:6px;color:#777}body.rtl #bbp-dashboard-right-now .t{padding-left:12px;padding-right:0}#bbp-dashboard-right-now .t a{white-space:nowrap}#bbp-dashboard-right-now .spam{color:red}#bbp-dashboard-right-now .waiting{color:#e66f00}#bbp-dashboard-right-now .approved{color:#0f0}#bbp-dashboard-right-now .versions{padding:6px 10px 12px;clear:both}#bbp-dashboard-right-now .versions .b{font-weight:700}#bbp-dashboard-right-now a.button{float:right;clear:right;position:relative;top:-5px}body.rtl #bbp-dashboard-right-now a.button{float:left;clear:left}body.post-type-forum #minor-publishing,body.post-type-forum #save-post{display:none}body.post-type-forum strong.label,body.post-type-reply strong.label,body.post-type-topic strong.label{display:inline-block;width:60px}.column-bbp_forum_reply_count,.column-bbp_forum_topic_count,.column-bbp_topic_reply_count,.column-bbp_topic_voice_count{width:8%!important}.column-author,.column-bbp_forum_freshness,.column-bbp_forum_mods,.column-bbp_reply_author,.column-bbp_reply_forum,.column-bbp_reply_topic,.column-bbp_topic_author,.column-bbp_topic_forum,.column-bbp_topic_freshness{width:10%!important}.column-bbp_forum_created,.column-bbp_reply_created,.column-bbp_topic_created{width:15%!important}.column-bbp_forum_topic_author,.column-bbp_topic_reply_author{width:25%!important}.column-bbp_forum_topic_author .avatar,.column-bbp_topic_reply_author .avatar{float:left;margin-right:10px}#bbp_moderators{width:100%}#bbp_forum_attributes hr{border-style:solid;border-width:1px;border-color:#ccc #fff #fff #ccc}#the-list .status-closed{background-color:#f5f5f5}#the-list .status-closed:nth-child(odd){background-color:#f0f0f0}#the-list .status-spam{background-color:#fee}#the-list .status-spam:nth-child(odd){background-color:#fdd}#the-list .status-pending{background-color:#fff2e8}#the-list .status-pending:nth-child(odd){background-color:#fff7f1}#the-list .status-closed td,#the-list .status-spam td{color:#999}
|
includes/admin/forums.php
CHANGED
@@ -10,7 +10,7 @@
|
|
10 |
// Exit if accessed directly
|
11 |
defined( 'ABSPATH' ) || exit;
|
12 |
|
13 |
-
if ( !class_exists( 'BBP_Forums_Admin' ) ) :
|
14 |
/**
|
15 |
* Loads bbPress forums admin area
|
16 |
*
|
@@ -58,9 +58,6 @@ class BBP_Forums_Admin {
|
|
58 |
*/
|
59 |
private function setup_actions() {
|
60 |
|
61 |
-
// Add some general styling to the admin area
|
62 |
-
add_action( 'bbp_admin_head', array( $this, 'admin_head' ) );
|
63 |
-
|
64 |
// Messages
|
65 |
add_filter( 'post_updated_messages', array( $this, 'updated_messages' ) );
|
66 |
|
@@ -375,88 +372,6 @@ class BBP_Forums_Admin {
|
|
375 |
return $forum_id;
|
376 |
}
|
377 |
|
378 |
-
/**
|
379 |
-
* Add some general styling to the admin area
|
380 |
-
*
|
381 |
-
* @since 2.0.0 bbPress (r2464)
|
382 |
-
*
|
383 |
-
* @uses bbp_get_forum_post_type() To get the forum post type
|
384 |
-
* @uses bbp_get_topic_post_type() To get the topic post type
|
385 |
-
* @uses bbp_get_reply_post_type() To get the reply post type
|
386 |
-
* @uses sanitize_html_class() To sanitize the classes
|
387 |
-
* @uses do_action() Calls 'bbp_admin_head'
|
388 |
-
*/
|
389 |
-
public function admin_head() {
|
390 |
-
?>
|
391 |
-
|
392 |
-
<style type="text/css" media="screen">
|
393 |
-
/*<![CDATA[*/
|
394 |
-
|
395 |
-
#minor-publishing,
|
396 |
-
#save-post {
|
397 |
-
display: none;
|
398 |
-
}
|
399 |
-
|
400 |
-
strong.label {
|
401 |
-
display: inline-block;
|
402 |
-
width: 60px;
|
403 |
-
}
|
404 |
-
|
405 |
-
#bbp_moderators {
|
406 |
-
width: 100%;
|
407 |
-
}
|
408 |
-
|
409 |
-
#bbp_forum_attributes hr {
|
410 |
-
border-style: solid;
|
411 |
-
border-width: 1px;
|
412 |
-
border-color: #ccc #fff #fff #ccc;
|
413 |
-
}
|
414 |
-
|
415 |
-
.column-bbp_forum_topic_count,
|
416 |
-
.column-bbp_forum_reply_count,
|
417 |
-
.column-bbp_topic_reply_count,
|
418 |
-
.column-bbp_topic_voice_count {
|
419 |
-
width: 8% !important;
|
420 |
-
}
|
421 |
-
|
422 |
-
.column-author,
|
423 |
-
.column-bbp_forum_mods,
|
424 |
-
.column-bbp_reply_author,
|
425 |
-
.column-bbp_topic_author {
|
426 |
-
width: 10% !important;
|
427 |
-
}
|
428 |
-
|
429 |
-
.column-bbp_topic_forum,
|
430 |
-
.column-bbp_reply_forum,
|
431 |
-
.column-bbp_reply_topic {
|
432 |
-
width: 10% !important;
|
433 |
-
}
|
434 |
-
|
435 |
-
.column-bbp_forum_freshness,
|
436 |
-
.column-bbp_topic_freshness {
|
437 |
-
width: 10% !important;
|
438 |
-
}
|
439 |
-
|
440 |
-
.column-bbp_forum_created,
|
441 |
-
.column-bbp_topic_created,
|
442 |
-
.column-bbp_reply_created {
|
443 |
-
width: 15% !important;
|
444 |
-
}
|
445 |
-
|
446 |
-
.status-closed {
|
447 |
-
background-color: #eaeaea;
|
448 |
-
}
|
449 |
-
|
450 |
-
.status-spam {
|
451 |
-
background-color: #faeaea;
|
452 |
-
}
|
453 |
-
|
454 |
-
/*]]>*/
|
455 |
-
</style>
|
456 |
-
|
457 |
-
<?php
|
458 |
-
}
|
459 |
-
|
460 |
/**
|
461 |
* Toggle forum
|
462 |
*
|
10 |
// Exit if accessed directly
|
11 |
defined( 'ABSPATH' ) || exit;
|
12 |
|
13 |
+
if ( ! class_exists( 'BBP_Forums_Admin' ) ) :
|
14 |
/**
|
15 |
* Loads bbPress forums admin area
|
16 |
*
|
58 |
*/
|
59 |
private function setup_actions() {
|
60 |
|
|
|
|
|
|
|
61 |
// Messages
|
62 |
add_filter( 'post_updated_messages', array( $this, 'updated_messages' ) );
|
63 |
|
372 |
return $forum_id;
|
373 |
}
|
374 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
375 |
/**
|
376 |
* Toggle forum
|
377 |
*
|
includes/admin/replies.php
CHANGED
@@ -10,7 +10,7 @@
|
|
10 |
// Exit if accessed directly
|
11 |
defined( 'ABSPATH' ) || exit;
|
12 |
|
13 |
-
if ( !class_exists( 'BBP_Replies_Admin' ) ) :
|
14 |
/**
|
15 |
* Loads bbPress replies admin area
|
16 |
*
|
@@ -59,9 +59,6 @@ class BBP_Replies_Admin {
|
|
59 |
*/
|
60 |
private function setup_actions() {
|
61 |
|
62 |
-
// Add some general styling to the admin area
|
63 |
-
add_action( 'bbp_admin_head', array( $this, 'admin_head' ) );
|
64 |
-
|
65 |
// Messages
|
66 |
add_filter( 'post_updated_messages', array( $this, 'updated_messages' ) );
|
67 |
|
@@ -452,76 +449,6 @@ class BBP_Replies_Admin {
|
|
452 |
return $reply_id;
|
453 |
}
|
454 |
|
455 |
-
/**
|
456 |
-
* Add some general styling to the admin area
|
457 |
-
*
|
458 |
-
* @since 2.0.0 bbPress (r2464)
|
459 |
-
*
|
460 |
-
* @uses bbp_get_forum_post_type() To get the forum post type
|
461 |
-
* @uses bbp_get_topic_post_type() To get the topic post type
|
462 |
-
* @uses bbp_get_reply_post_type() To get the reply post type
|
463 |
-
* @uses sanitize_html_class() To sanitize the classes
|
464 |
-
* @uses do_action() Calls 'bbp_admin_head'
|
465 |
-
*/
|
466 |
-
public function admin_head() {
|
467 |
-
?>
|
468 |
-
|
469 |
-
<style type="text/css" media="screen">
|
470 |
-
/*<![CDATA[*/
|
471 |
-
|
472 |
-
strong.label {
|
473 |
-
display: inline-block;
|
474 |
-
width: 60px;
|
475 |
-
}
|
476 |
-
|
477 |
-
.column-bbp_forum_topic_count,
|
478 |
-
.column-bbp_forum_reply_count,
|
479 |
-
.column-bbp_topic_reply_count,
|
480 |
-
.column-bbp_topic_voice_count {
|
481 |
-
width: 8% !important;
|
482 |
-
}
|
483 |
-
|
484 |
-
.column-author,
|
485 |
-
.column-bbp_reply_author,
|
486 |
-
.column-bbp_topic_author {
|
487 |
-
width: 10% !important;
|
488 |
-
}
|
489 |
-
|
490 |
-
.column-bbp_topic_forum,
|
491 |
-
.column-bbp_reply_forum,
|
492 |
-
.column-bbp_reply_topic {
|
493 |
-
width: 10% !important;
|
494 |
-
}
|
495 |
-
|
496 |
-
.column-bbp_forum_freshness,
|
497 |
-
.column-bbp_topic_freshness {
|
498 |
-
width: 10% !important;
|
499 |
-
}
|
500 |
-
|
501 |
-
.column-bbp_forum_created,
|
502 |
-
.column-bbp_topic_created,
|
503 |
-
.column-bbp_reply_created {
|
504 |
-
width: 15% !important;
|
505 |
-
}
|
506 |
-
|
507 |
-
.status-closed {
|
508 |
-
background-color: #eaeaea;
|
509 |
-
}
|
510 |
-
|
511 |
-
.status-spam {
|
512 |
-
background-color: #faeaea;
|
513 |
-
}
|
514 |
-
|
515 |
-
.status-pending {
|
516 |
-
background-color: #fef7f1;
|
517 |
-
}
|
518 |
-
|
519 |
-
/*]]>*/
|
520 |
-
</style>
|
521 |
-
|
522 |
-
<?php
|
523 |
-
}
|
524 |
-
|
525 |
/**
|
526 |
* Toggle reply
|
527 |
*
|
10 |
// Exit if accessed directly
|
11 |
defined( 'ABSPATH' ) || exit;
|
12 |
|
13 |
+
if ( ! class_exists( 'BBP_Replies_Admin' ) ) :
|
14 |
/**
|
15 |
* Loads bbPress replies admin area
|
16 |
*
|
59 |
*/
|
60 |
private function setup_actions() {
|
61 |
|
|
|
|
|
|
|
62 |
// Messages
|
63 |
add_filter( 'post_updated_messages', array( $this, 'updated_messages' ) );
|
64 |
|
449 |
return $reply_id;
|
450 |
}
|
451 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
452 |
/**
|
453 |
* Toggle reply
|
454 |
*
|
includes/admin/tools.php
CHANGED
@@ -564,19 +564,29 @@ function bbp_register_default_repair_tools() {
|
|
564 |
// Count topics
|
565 |
bbp_register_repair_tool( array(
|
566 |
'id' => 'bbp-forum-topics',
|
567 |
-
'description' => __( '
|
568 |
'callback' => 'bbp_admin_repair_forum_topic_count',
|
569 |
'priority' => 45,
|
570 |
'overhead' => 'medium',
|
571 |
'components' => array( bbp_get_forum_post_type(), bbp_get_topic_post_type() )
|
572 |
) );
|
573 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
574 |
// Count forum replies
|
575 |
bbp_register_repair_tool( array(
|
576 |
'id' => 'bbp-forum-replies',
|
577 |
-
'description' => __( '
|
578 |
'callback' => 'bbp_admin_repair_forum_reply_count',
|
579 |
-
'priority' =>
|
580 |
'overhead' => 'high',
|
581 |
'components' => array( bbp_get_forum_post_type(), bbp_get_reply_post_type() )
|
582 |
) );
|
@@ -584,9 +594,9 @@ function bbp_register_default_repair_tools() {
|
|
584 |
// Count topic replies
|
585 |
bbp_register_repair_tool( array(
|
586 |
'id' => 'bbp-topic-replies',
|
587 |
-
'description' => __( '
|
588 |
'callback' => 'bbp_admin_repair_topic_reply_count',
|
589 |
-
'priority' =>
|
590 |
'overhead' => 'high',
|
591 |
'components' => array( bbp_get_topic_post_type(), bbp_get_reply_post_type() )
|
592 |
) );
|
@@ -594,9 +604,9 @@ function bbp_register_default_repair_tools() {
|
|
594 |
// Count topic voices
|
595 |
bbp_register_repair_tool( array(
|
596 |
'id' => 'bbp-topic-voices',
|
597 |
-
'description' => __( '
|
598 |
'callback' => 'bbp_admin_repair_topic_voice_count',
|
599 |
-
'priority' =>
|
600 |
'overhead' => 'medium',
|
601 |
'components' => array( bbp_get_topic_post_type(), bbp_get_user_rewrite_id() )
|
602 |
) );
|
@@ -604,9 +614,9 @@ function bbp_register_default_repair_tools() {
|
|
604 |
// Count non-published replies to each topic
|
605 |
bbp_register_repair_tool( array(
|
606 |
'id' => 'bbp-topic-hidden-replies',
|
607 |
-
'description' => __( '
|
608 |
'callback' => 'bbp_admin_repair_topic_hidden_reply_count',
|
609 |
-
'priority' =>
|
610 |
'overhead' => 'high',
|
611 |
'components' => array( bbp_get_topic_post_type(), bbp_get_reply_post_type() )
|
612 |
) );
|
@@ -616,7 +626,7 @@ function bbp_register_default_repair_tools() {
|
|
616 |
'id' => 'bbp-user-topics',
|
617 |
'description' => __( 'Recount topics for each user', 'bbpress' ),
|
618 |
'callback' => 'bbp_admin_repair_user_topic_count',
|
619 |
-
'priority' =>
|
620 |
'overhead' => 'medium',
|
621 |
'components' => array( bbp_get_topic_post_type(), bbp_get_user_rewrite_id() )
|
622 |
) );
|
@@ -626,7 +636,7 @@ function bbp_register_default_repair_tools() {
|
|
626 |
'id' => 'bbp-user-replies',
|
627 |
'description' => __( 'Recount replies for each user', 'bbpress' ),
|
628 |
'callback' => 'bbp_admin_repair_user_reply_count',
|
629 |
-
'priority' =>
|
630 |
'overhead' => 'medium',
|
631 |
'components' => array( bbp_get_reply_post_type(), bbp_get_user_rewrite_id() )
|
632 |
) );
|
@@ -636,7 +646,7 @@ function bbp_register_default_repair_tools() {
|
|
636 |
'id' => 'bbp-user-favorites',
|
637 |
'description' => __( 'Remove unpublished topics from user favorites', 'bbpress' ),
|
638 |
'callback' => 'bbp_admin_repair_user_favorites',
|
639 |
-
'priority' =>
|
640 |
'overhead' => 'medium',
|
641 |
'components' => array( bbp_get_topic_post_type(), bbp_get_user_rewrite_id() )
|
642 |
) );
|
@@ -646,7 +656,7 @@ function bbp_register_default_repair_tools() {
|
|
646 |
'id' => 'bbp-user-topic-subscriptions',
|
647 |
'description' => __( 'Remove unpublished topics from user subscriptions', 'bbpress' ),
|
648 |
'callback' => 'bbp_admin_repair_user_topic_subscriptions',
|
649 |
-
'priority' =>
|
650 |
'overhead' => 'medium',
|
651 |
'components' => array( bbp_get_topic_post_type(), bbp_get_user_rewrite_id() )
|
652 |
) );
|
@@ -656,7 +666,7 @@ function bbp_register_default_repair_tools() {
|
|
656 |
'id' => 'bbp-user-forum-subscriptions',
|
657 |
'description' => __( 'Remove unpublished forums from user subscriptions', 'bbpress' ),
|
658 |
'callback' => 'bbp_admin_repair_user_forum_subscriptions',
|
659 |
-
'priority' =>
|
660 |
'overhead' => 'medium',
|
661 |
'components' => array( bbp_get_forum_post_type(), bbp_get_user_rewrite_id() )
|
662 |
) );
|
@@ -666,7 +676,7 @@ function bbp_register_default_repair_tools() {
|
|
666 |
'id' => 'bbp-user-role-map',
|
667 |
'description' => __( 'Remap existing users to default forum roles', 'bbpress' ),
|
668 |
'callback' => 'bbp_admin_repair_user_roles',
|
669 |
-
'priority' =>
|
670 |
'overhead' => 'low',
|
671 |
'components' => array( bbp_get_user_rewrite_id() )
|
672 |
) );
|
@@ -676,7 +686,7 @@ function bbp_register_default_repair_tools() {
|
|
676 |
'id' => 'bbp-user-favorites-move',
|
677 |
'description' => __( 'Upgrade user favorites', 'bbpress' ),
|
678 |
'callback' => 'bbp_admin_upgrade_user_favorites',
|
679 |
-
'priority' =>
|
680 |
'overhead' => 'high',
|
681 |
'components' => array( bbp_get_user_rewrite_id() )
|
682 |
) );
|
@@ -686,7 +696,7 @@ function bbp_register_default_repair_tools() {
|
|
686 |
'id' => 'bbp-user-topic-subscriptions-move',
|
687 |
'description' => __( 'Upgrade user topic subscriptions', 'bbpress' ),
|
688 |
'callback' => 'bbp_admin_upgrade_user_topic_subscriptions',
|
689 |
-
'priority' =>
|
690 |
'overhead' => 'high',
|
691 |
'components' => array( bbp_get_user_rewrite_id() )
|
692 |
) );
|
@@ -696,7 +706,7 @@ function bbp_register_default_repair_tools() {
|
|
696 |
'id' => 'bbp-user-forum-subscriptions-move',
|
697 |
'description' => __( 'Upgrade user forum subscriptions', 'bbpress' ),
|
698 |
'callback' => 'bbp_admin_upgrade_user_forum_subscriptions',
|
699 |
-
'priority' =>
|
700 |
'overhead' => 'high',
|
701 |
'components' => array( bbp_get_user_rewrite_id() )
|
702 |
) );
|
@@ -837,6 +847,9 @@ function bbp_admin_repair_tool_translate_component( $component = '' ) {
|
|
837 |
case bbp_get_reply_post_type() :
|
838 |
$name = esc_html__( 'Replies', 'bbpress' );
|
839 |
break;
|
|
|
|
|
|
|
840 |
default :
|
841 |
$name = ucwords( $component );
|
842 |
break;
|
@@ -1370,6 +1383,57 @@ function bbp_admin_repair_forum_topic_count() {
|
|
1370 |
return array( 0, sprintf( $statement, __( 'Complete!', 'bbpress' ) ) );
|
1371 |
}
|
1372 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1373 |
/**
|
1374 |
* Recount forum replies
|
1375 |
*
|
564 |
// Count topics
|
565 |
bbp_register_repair_tool( array(
|
566 |
'id' => 'bbp-forum-topics',
|
567 |
+
'description' => __( 'Recount topics in each forum', 'bbpress' ),
|
568 |
'callback' => 'bbp_admin_repair_forum_topic_count',
|
569 |
'priority' => 45,
|
570 |
'overhead' => 'medium',
|
571 |
'components' => array( bbp_get_forum_post_type(), bbp_get_topic_post_type() )
|
572 |
) );
|
573 |
|
574 |
+
// Count topic tags
|
575 |
+
bbp_register_repair_tool( array(
|
576 |
+
'id' => 'bbp-topic-tags',
|
577 |
+
'description' => __( 'Recount topics in each topic-tag', 'bbpress' ),
|
578 |
+
'callback' => 'bbp_admin_repair_topic_tag_count',
|
579 |
+
'priority' => 50,
|
580 |
+
'overhead' => 'medium',
|
581 |
+
'components' => array( bbp_get_topic_post_type(), bbp_get_topic_tag_tax_id() )
|
582 |
+
) );
|
583 |
+
|
584 |
// Count forum replies
|
585 |
bbp_register_repair_tool( array(
|
586 |
'id' => 'bbp-forum-replies',
|
587 |
+
'description' => __( 'Recount replies in each forum', 'bbpress' ),
|
588 |
'callback' => 'bbp_admin_repair_forum_reply_count',
|
589 |
+
'priority' => 55,
|
590 |
'overhead' => 'high',
|
591 |
'components' => array( bbp_get_forum_post_type(), bbp_get_reply_post_type() )
|
592 |
) );
|
594 |
// Count topic replies
|
595 |
bbp_register_repair_tool( array(
|
596 |
'id' => 'bbp-topic-replies',
|
597 |
+
'description' => __( 'Recount replies in each topic', 'bbpress' ),
|
598 |
'callback' => 'bbp_admin_repair_topic_reply_count',
|
599 |
+
'priority' => 60,
|
600 |
'overhead' => 'high',
|
601 |
'components' => array( bbp_get_topic_post_type(), bbp_get_reply_post_type() )
|
602 |
) );
|
604 |
// Count topic voices
|
605 |
bbp_register_repair_tool( array(
|
606 |
'id' => 'bbp-topic-voices',
|
607 |
+
'description' => __( 'Recount voices in each topic', 'bbpress' ),
|
608 |
'callback' => 'bbp_admin_repair_topic_voice_count',
|
609 |
+
'priority' => 65,
|
610 |
'overhead' => 'medium',
|
611 |
'components' => array( bbp_get_topic_post_type(), bbp_get_user_rewrite_id() )
|
612 |
) );
|
614 |
// Count non-published replies to each topic
|
615 |
bbp_register_repair_tool( array(
|
616 |
'id' => 'bbp-topic-hidden-replies',
|
617 |
+
'description' => __( 'Recount pending, spammed, & trashed replies in each topic', 'bbpress' ),
|
618 |
'callback' => 'bbp_admin_repair_topic_hidden_reply_count',
|
619 |
+
'priority' => 70,
|
620 |
'overhead' => 'high',
|
621 |
'components' => array( bbp_get_topic_post_type(), bbp_get_reply_post_type() )
|
622 |
) );
|
626 |
'id' => 'bbp-user-topics',
|
627 |
'description' => __( 'Recount topics for each user', 'bbpress' ),
|
628 |
'callback' => 'bbp_admin_repair_user_topic_count',
|
629 |
+
'priority' => 75,
|
630 |
'overhead' => 'medium',
|
631 |
'components' => array( bbp_get_topic_post_type(), bbp_get_user_rewrite_id() )
|
632 |
) );
|
636 |
'id' => 'bbp-user-replies',
|
637 |
'description' => __( 'Recount replies for each user', 'bbpress' ),
|
638 |
'callback' => 'bbp_admin_repair_user_reply_count',
|
639 |
+
'priority' => 80,
|
640 |
'overhead' => 'medium',
|
641 |
'components' => array( bbp_get_reply_post_type(), bbp_get_user_rewrite_id() )
|
642 |
) );
|
646 |
'id' => 'bbp-user-favorites',
|
647 |
'description' => __( 'Remove unpublished topics from user favorites', 'bbpress' ),
|
648 |
'callback' => 'bbp_admin_repair_user_favorites',
|
649 |
+
'priority' => 85,
|
650 |
'overhead' => 'medium',
|
651 |
'components' => array( bbp_get_topic_post_type(), bbp_get_user_rewrite_id() )
|
652 |
) );
|
656 |
'id' => 'bbp-user-topic-subscriptions',
|
657 |
'description' => __( 'Remove unpublished topics from user subscriptions', 'bbpress' ),
|
658 |
'callback' => 'bbp_admin_repair_user_topic_subscriptions',
|
659 |
+
'priority' => 90,
|
660 |
'overhead' => 'medium',
|
661 |
'components' => array( bbp_get_topic_post_type(), bbp_get_user_rewrite_id() )
|
662 |
) );
|
666 |
'id' => 'bbp-user-forum-subscriptions',
|
667 |
'description' => __( 'Remove unpublished forums from user subscriptions', 'bbpress' ),
|
668 |
'callback' => 'bbp_admin_repair_user_forum_subscriptions',
|
669 |
+
'priority' => 95,
|
670 |
'overhead' => 'medium',
|
671 |
'components' => array( bbp_get_forum_post_type(), bbp_get_user_rewrite_id() )
|
672 |
) );
|
676 |
'id' => 'bbp-user-role-map',
|
677 |
'description' => __( 'Remap existing users to default forum roles', 'bbpress' ),
|
678 |
'callback' => 'bbp_admin_repair_user_roles',
|
679 |
+
'priority' => 100,
|
680 |
'overhead' => 'low',
|
681 |
'components' => array( bbp_get_user_rewrite_id() )
|
682 |
) );
|
686 |
'id' => 'bbp-user-favorites-move',
|
687 |
'description' => __( 'Upgrade user favorites', 'bbpress' ),
|
688 |
'callback' => 'bbp_admin_upgrade_user_favorites',
|
689 |
+
'priority' => 105,
|
690 |
'overhead' => 'high',
|
691 |
'components' => array( bbp_get_user_rewrite_id() )
|
692 |
) );
|
696 |
'id' => 'bbp-user-topic-subscriptions-move',
|
697 |
'description' => __( 'Upgrade user topic subscriptions', 'bbpress' ),
|
698 |
'callback' => 'bbp_admin_upgrade_user_topic_subscriptions',
|
699 |
+
'priority' => 110,
|
700 |
'overhead' => 'high',
|
701 |
'components' => array( bbp_get_user_rewrite_id() )
|
702 |
) );
|
706 |
'id' => 'bbp-user-forum-subscriptions-move',
|
707 |
'description' => __( 'Upgrade user forum subscriptions', 'bbpress' ),
|
708 |
'callback' => 'bbp_admin_upgrade_user_forum_subscriptions',
|
709 |
+
'priority' => 115,
|
710 |
'overhead' => 'high',
|
711 |
'components' => array( bbp_get_user_rewrite_id() )
|
712 |
) );
|
847 |
case bbp_get_reply_post_type() :
|
848 |
$name = esc_html__( 'Replies', 'bbpress' );
|
849 |
break;
|
850 |
+
case bbp_get_topic_tag_tax_id() :
|
851 |
+
$name = esc_html__( 'Topic Tags', 'bbpress' );
|
852 |
+
break;
|
853 |
default :
|
854 |
$name = ucwords( $component );
|
855 |
break;
|
1383 |
return array( 0, sprintf( $statement, __( 'Complete!', 'bbpress' ) ) );
|
1384 |
}
|
1385 |
|
1386 |
+
/**
|
1387 |
+
* Recount topic in each topic-tag
|
1388 |
+
*
|
1389 |
+
* @since 2.6.0 bbPress (r6256)
|
1390 |
+
*
|
1391 |
+
* @uses bbp_get_topic_tag_tax_id() To get the topic-tag taxonomy
|
1392 |
+
* @uses get_terms() To get the terms
|
1393 |
+
* @uses wp_list_pluck() To get term taxonomy IDs
|
1394 |
+
* @uses get_taxonomy() To get term taxonomy object
|
1395 |
+
* @uses _update_post_term_count() To update generic counts
|
1396 |
+
* @uses bbp_update_topic_tag_count() To update topic-tag counts
|
1397 |
+
* @uses clean_term_cache() To bust the terms cache
|
1398 |
+
* @return array An array of the status code and the message
|
1399 |
+
*/
|
1400 |
+
function bbp_admin_repair_topic_tag_count() {
|
1401 |
+
|
1402 |
+
// Define variables
|
1403 |
+
$statement = __( 'Counting the number of topics in each topic-tag… %s', 'bbpress' );
|
1404 |
+
$result = __( 'Failed!', 'bbpress' );
|
1405 |
+
$tax_id = bbp_get_topic_tag_tax_id();
|
1406 |
+
$terms = get_terms( $tax_id, array( 'hide_empty' => false ) );
|
1407 |
+
$tt_ids = wp_list_pluck( $terms, 'term_taxonomy_id' );
|
1408 |
+
$ints = array_map( 'intval', $tt_ids );
|
1409 |
+
$taxonomy = get_taxonomy( $tax_id );
|
1410 |
+
|
1411 |
+
// Bail if taxonomy does not exist
|
1412 |
+
if ( empty( $taxonomy ) ) {
|
1413 |
+
return array( 1, sprintf( $statement, $result ) );
|
1414 |
+
}
|
1415 |
+
|
1416 |
+
// Custom callback
|
1417 |
+
if ( ! empty( $taxonomy->update_count_callback ) ) {
|
1418 |
+
|
1419 |
+
// Bail if callback is not callable
|
1420 |
+
if ( ! is_callable( $taxonomy->update_count_callback ) ) {
|
1421 |
+
return array( 1, sprintf( $statement, $result ) );
|
1422 |
+
}
|
1423 |
+
|
1424 |
+
call_user_func( $taxonomy->update_count_callback, $ints, $taxonomy );
|
1425 |
+
|
1426 |
+
// Generic callback fallback
|
1427 |
+
} else {
|
1428 |
+
_update_post_term_count( $ints, $taxonomy );
|
1429 |
+
}
|
1430 |
+
|
1431 |
+
// Bust the cache
|
1432 |
+
clean_term_cache( $ints, '', false );
|
1433 |
+
|
1434 |
+
return array( 0, sprintf( $statement, __( 'Complete!', 'bbpress' ) ) );
|
1435 |
+
}
|
1436 |
+
|
1437 |
/**
|
1438 |
* Recount forum replies
|
1439 |
*
|
includes/admin/topics.php
CHANGED
@@ -10,7 +10,7 @@
|
|
10 |
// Exit if accessed directly
|
11 |
defined( 'ABSPATH' ) || exit;
|
12 |
|
13 |
-
if ( !class_exists( 'BBP_Topics_Admin' ) ) :
|
14 |
/**
|
15 |
* Loads bbPress topics admin area
|
16 |
*
|
@@ -59,9 +59,6 @@ class BBP_Topics_Admin {
|
|
59 |
*/
|
60 |
private function setup_actions() {
|
61 |
|
62 |
-
// Add some general styling to the admin area
|
63 |
-
add_action( 'bbp_admin_head', array( $this, 'admin_head' ) );
|
64 |
-
|
65 |
// Messages
|
66 |
add_filter( 'post_updated_messages', array( $this, 'updated_messages' ) );
|
67 |
|
@@ -541,87 +538,6 @@ class BBP_Topics_Admin {
|
|
541 |
return $topic_id;
|
542 |
}
|
543 |
|
544 |
-
/**
|
545 |
-
* Add some general styling to the admin area
|
546 |
-
*
|
547 |
-
* @since 2.0.0 bbPress (r2464)
|
548 |
-
*
|
549 |
-
* @uses bbp_get_forum_post_type() To get the forum post type
|
550 |
-
* @uses bbp_get_topic_post_type() To get the topic post type
|
551 |
-
* @uses bbp_get_reply_post_type() To get the reply post type
|
552 |
-
* @uses sanitize_html_class() To sanitize the classes
|
553 |
-
* @uses do_action() Calls 'bbp_admin_head'
|
554 |
-
*/
|
555 |
-
public function admin_head() {
|
556 |
-
?>
|
557 |
-
|
558 |
-
<style type="text/css" media="screen">
|
559 |
-
/*<![CDATA[*/
|
560 |
-
|
561 |
-
strong.label {
|
562 |
-
display: inline-block;
|
563 |
-
width: 60px;
|
564 |
-
}
|
565 |
-
|
566 |
-
.column-bbp_topic_reply_author,
|
567 |
-
.column-bbp_forum_topic_author {
|
568 |
-
width: 25% !important;
|
569 |
-
}
|
570 |
-
|
571 |
-
.column-bbp_topic_reply_author .avatar,
|
572 |
-
.column-bbp_forum_topic_author .avatar {
|
573 |
-
float: left;
|
574 |
-
margin-right: 10px;
|
575 |
-
}
|
576 |
-
|
577 |
-
.column-bbp_forum_topic_count,
|
578 |
-
.column-bbp_forum_reply_count,
|
579 |
-
.column-bbp_topic_reply_count,
|
580 |
-
.column-bbp_topic_voice_count {
|
581 |
-
width: 8% !important;
|
582 |
-
}
|
583 |
-
|
584 |
-
.column-author,
|
585 |
-
.column-bbp_reply_author,
|
586 |
-
.column-bbp_topic_author {
|
587 |
-
width: 10% !important;
|
588 |
-
}
|
589 |
-
|
590 |
-
.column-bbp_topic_forum,
|
591 |
-
.column-bbp_reply_forum,
|
592 |
-
.column-bbp_reply_topic {
|
593 |
-
width: 10% !important;
|
594 |
-
}
|
595 |
-
|
596 |
-
.column-bbp_forum_freshness,
|
597 |
-
.column-bbp_topic_freshness {
|
598 |
-
width: 10% !important;
|
599 |
-
}
|
600 |
-
|
601 |
-
.column-bbp_forum_created,
|
602 |
-
.column-bbp_topic_created,
|
603 |
-
.column-bbp_reply_created {
|
604 |
-
width: 15% !important;
|
605 |
-
}
|
606 |
-
|
607 |
-
.status-closed {
|
608 |
-
background-color: #eaeaea;
|
609 |
-
}
|
610 |
-
|
611 |
-
.status-spam {
|
612 |
-
background-color: #faeaea;
|
613 |
-
}
|
614 |
-
|
615 |
-
.status-pending {
|
616 |
-
background-color: #fef7f1;
|
617 |
-
}
|
618 |
-
|
619 |
-
/*]]>*/
|
620 |
-
</style>
|
621 |
-
|
622 |
-
<?php
|
623 |
-
}
|
624 |
-
|
625 |
/**
|
626 |
* Toggle topic
|
627 |
*
|
10 |
// Exit if accessed directly
|
11 |
defined( 'ABSPATH' ) || exit;
|
12 |
|
13 |
+
if ( ! class_exists( 'BBP_Topics_Admin' ) ) :
|
14 |
/**
|
15 |
* Loads bbPress topics admin area
|
16 |
*
|
59 |
*/
|
60 |
private function setup_actions() {
|
61 |
|
|
|
|
|
|
|
62 |
// Messages
|
63 |
add_filter( 'post_updated_messages', array( $this, 'updated_messages' ) );
|
64 |
|
538 |
return $topic_id;
|
539 |
}
|
540 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
541 |
/**
|
542 |
* Toggle topic
|
543 |
*
|
includes/admin/users.php
CHANGED
@@ -10,7 +10,7 @@
|
|
10 |
// Exit if accessed directly
|
11 |
defined( 'ABSPATH' ) || exit;
|
12 |
|
13 |
-
if ( !class_exists( 'BBP_Users_Admin' ) ) :
|
14 |
/**
|
15 |
* Loads bbPress users admin area
|
16 |
*
|
10 |
// Exit if accessed directly
|
11 |
defined( 'ABSPATH' ) || exit;
|
12 |
|
13 |
+
if ( ! class_exists( 'BBP_Users_Admin' ) ) :
|
14 |
/**
|
15 |
* Loads bbPress users admin area
|
16 |
*
|
includes/common/classes.php
CHANGED
@@ -10,7 +10,7 @@
|
|
10 |
// Exit if accessed directly
|
11 |
defined( 'ABSPATH' ) || exit;
|
12 |
|
13 |
-
if ( !class_exists( 'BBP_Component' ) ) :
|
14 |
/**
|
15 |
* bbPress Component Class
|
16 |
*
|
10 |
// Exit if accessed directly
|
11 |
defined( 'ABSPATH' ) || exit;
|
12 |
|
13 |
+
if ( ! class_exists( 'BBP_Component' ) ) :
|
14 |
/**
|
15 |
* bbPress Component Class
|
16 |
*
|
includes/common/shortcodes.php
CHANGED
@@ -10,7 +10,7 @@
|
|
10 |
// Exit if accessed directly
|
11 |
defined( 'ABSPATH' ) || exit;
|
12 |
|
13 |
-
if ( !class_exists( 'BBP_Shortcodes' ) ) :
|
14 |
/**
|
15 |
* bbPress Shortcode Class
|
16 |
*
|
@@ -370,7 +370,7 @@ class BBP_Shortcodes {
|
|
370 |
*
|
371 |
* Supports 'forum_id' attribute to display the topic form for a particular
|
372 |
* forum. This currently has styling issues from not being wrapped in
|
373 |
-
* <div id="bbpress-forums"></div> which will need to be sorted out later.
|
374 |
*
|
375 |
* @since 2.0.0 bbPress (r3031)
|
376 |
*
|
10 |
// Exit if accessed directly
|
11 |
defined( 'ABSPATH' ) || exit;
|
12 |
|
13 |
+
if ( ! class_exists( 'BBP_Shortcodes' ) ) :
|
14 |
/**
|
15 |
* bbPress Shortcode Class
|
16 |
*
|
370 |
*
|
371 |
* Supports 'forum_id' attribute to display the topic form for a particular
|
372 |
* forum. This currently has styling issues from not being wrapped in
|
373 |
+
* <div id="bbpress-forums" class="bbpress-wrapper"></div> which will need to be sorted out later.
|
374 |
*
|
375 |
* @since 2.0.0 bbPress (r3031)
|
376 |
*
|
includes/core/abstraction.php
CHANGED
@@ -154,3 +154,27 @@ function bbp_get_major_wp_version() {
|
|
154 |
|
155 |
return (float) $wp_version;
|
156 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
154 |
|
155 |
return (float) $wp_version;
|
156 |
}
|
157 |
+
|
158 |
+
/**
|
159 |
+
* Is this a large bbPress installation?
|
160 |
+
*
|
161 |
+
* @since 2.6.0 bbPress (r6242)
|
162 |
+
*
|
163 |
+
* @return bool True if more than 10000 users, false not
|
164 |
+
*/
|
165 |
+
function bbp_is_large_install() {
|
166 |
+
|
167 |
+
// Default to false
|
168 |
+
$retval = false;
|
169 |
+
|
170 |
+
// Multisite has a function specifically for this
|
171 |
+
if ( function_exists( 'wp_is_large_network' ) ) {
|
172 |
+
$retval = wp_is_large_network( 'users' );
|
173 |
+
} else {
|
174 |
+
$bbp_db = bbp_db();
|
175 |
+
$count = $bbp_db->get_var( "SELECT COUNT(ID) as c FROM {$bbp_db->users} WHERE user_status = '0'" );
|
176 |
+
$retval = apply_filters( 'wp_is_large_network', ( $count > 10000 ), 'users', $count );
|
177 |
+
}
|
178 |
+
|
179 |
+
return (bool) $retval;
|
180 |
+
}
|
includes/core/filters.php
CHANGED
@@ -171,7 +171,7 @@ add_filter( 'bbp_get_form_reply_content', 'bbp_code_trick_reverse' );
|
|
171 |
add_filter( 'bbp_get_form_reply_content', 'esc_textarea' );
|
172 |
add_filter( 'bbp_get_form_reply_content', 'trim' );
|
173 |
|
174 |
-
// Form input
|
175 |
add_filter( 'bbp_get_form_reply_edit_reason', 'esc_attr' );
|
176 |
add_filter( 'bbp_get_form_reply_edit_reason', 'trim' );
|
177 |
add_filter( 'bbp_get_form_topic_edit_reason', 'esc_attr' );
|
@@ -180,6 +180,15 @@ add_filter( 'bbp_get_form_topic_title', 'esc_attr' );
|
|
180 |
add_filter( 'bbp_get_form_topic_title', 'trim' );
|
181 |
add_filter( 'bbp_get_form_topic_tags', 'esc_attr' );
|
182 |
add_filter( 'bbp_get_form_topic_tags', 'trim' );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
183 |
|
184 |
// Add number format filter to functions requiring numeric output
|
185 |
add_filter( 'bbp_get_user_topic_count', 'bbp_number_format', 10 );
|
171 |
add_filter( 'bbp_get_form_reply_content', 'esc_textarea' );
|
172 |
add_filter( 'bbp_get_form_reply_content', 'trim' );
|
173 |
|
174 |
+
// Form input/output - sanitize
|
175 |
add_filter( 'bbp_get_form_reply_edit_reason', 'esc_attr' );
|
176 |
add_filter( 'bbp_get_form_reply_edit_reason', 'trim' );
|
177 |
add_filter( 'bbp_get_form_topic_edit_reason', 'esc_attr' );
|
180 |
add_filter( 'bbp_get_form_topic_title', 'trim' );
|
181 |
add_filter( 'bbp_get_form_topic_tags', 'esc_attr' );
|
182 |
add_filter( 'bbp_get_form_topic_tags', 'trim' );
|
183 |
+
add_filter( 'bbp_get_form_forum_type', 'esc_attr' );
|
184 |
+
add_filter( 'bbp_get_form_forum_type', 'trim' );
|
185 |
+
add_filter( 'bbp_get_form_forum_visibility', 'esc_attr' );
|
186 |
+
add_filter( 'bbp_get_form_forum_visibility', 'trim' );
|
187 |
+
add_filter( 'bbp_get_form_forum_moderators', 'esc_attr' );
|
188 |
+
add_filter( 'bbp_get_form_forum_moderators', 'trim' );
|
189 |
+
add_filter( 'bbp_get_form_topic_forum', 'absint' );
|
190 |
+
add_filter( 'bbp_get_form_forum_parent', 'absint' );
|
191 |
+
add_filter( 'bbp_get_form_reply_to', 'absint' );
|
192 |
|
193 |
// Add number format filter to functions requiring numeric output
|
194 |
add_filter( 'bbp_get_user_topic_count', 'bbp_number_format', 10 );
|
includes/core/options.php
CHANGED
@@ -270,25 +270,6 @@ function bbp_allow_search( $default = 1 ) {
|
|
270 |
return (bool) apply_filters( 'bbp_allow_search', (bool) get_option( '_bbp_allow_search', $default ) );
|
271 |
}
|
272 |
|
273 |
-
/**
|
274 |
-
* Are replies threaded
|
275 |
-
*
|
276 |
-
* @since 2.4.0 bbPress (r4944)
|
277 |
-
*
|
278 |
-
* @param bool $default Optional. Default value true
|
279 |
-
* @uses apply_filters() Calls 'bbp_thread_replies' with the calculated value and
|
280 |
-
* the thread replies depth
|
281 |
-
* @uses get_option() To get thread replies option
|
282 |
-
* @return bool Are replies threaded?
|
283 |
-
*/
|
284 |
-
function bbp_thread_replies() {
|
285 |
-
$depth = bbp_thread_replies_depth();
|
286 |
-
$allow = bbp_allow_threaded_replies();
|
287 |
-
$retval = (bool) ( ( $depth >= 2 ) && ( true === $allow ) );
|
288 |
-
|
289 |
-
return (bool) apply_filters( 'bbp_thread_replies', $retval, $depth, $allow );
|
290 |
-
}
|
291 |
-
|
292 |
/**
|
293 |
* Are threaded replies allowed
|
294 |
*
|
270 |
return (bool) apply_filters( 'bbp_allow_search', (bool) get_option( '_bbp_allow_search', $default ) );
|
271 |
}
|
272 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
273 |
/**
|
274 |
* Are threaded replies allowed
|
275 |
*
|
includes/core/template-functions.php
CHANGED
@@ -596,7 +596,7 @@ function bbp_parse_query( $posts_query ) {
|
|
596 |
$posts_query->is_home = false;
|
597 |
|
598 |
// User is looking at their own profile
|
599 |
-
if (
|
600 |
$posts_query->bbp_is_single_user_home = true;
|
601 |
}
|
602 |
|
596 |
$posts_query->is_home = false;
|
597 |
|
598 |
// User is looking at their own profile
|
599 |
+
if ( bbp_get_current_user_id() === $the_user->ID ) {
|
600 |
$posts_query->bbp_is_single_user_home = true;
|
601 |
}
|
602 |
|
includes/core/update.php
CHANGED
@@ -322,8 +322,11 @@ function bbp_version_updater() {
|
|
322 |
*
|
323 |
* @link https://bbpress.trac.wordpress.org/ticket/2959
|
324 |
*/
|
325 |
-
|
326 |
-
|
|
|
|
|
|
|
327 |
}
|
328 |
}
|
329 |
|
@@ -384,8 +387,10 @@ function bbp_make_current_user_keymaster() {
|
|
384 |
return;
|
385 |
}
|
386 |
|
387 |
-
//
|
388 |
$user_id = get_current_user_id();
|
|
|
|
|
389 |
$blog_id = get_current_blog_id();
|
390 |
|
391 |
// Bail if user is not actually a member of this site
|
322 |
*
|
323 |
* @link https://bbpress.trac.wordpress.org/ticket/2959
|
324 |
*/
|
325 |
+
if ( ! bbp_is_large_install() ) {
|
326 |
+
bbp_admin_upgrade_user_favorites();
|
327 |
+
bbp_admin_upgrade_user_topic_subscriptions();
|
328 |
+
bbp_admin_upgrade_user_forum_subscriptions();
|
329 |
+
}
|
330 |
}
|
331 |
}
|
332 |
|
387 |
return;
|
388 |
}
|
389 |
|
390 |
+
// Cannot use bbp_get_current_user_id() here, during activation process
|
391 |
$user_id = get_current_user_id();
|
392 |
+
|
393 |
+
// Get the current blog ID, to know if they should be promoted here
|
394 |
$blog_id = get_current_blog_id();
|
395 |
|
396 |
// Bail if user is not actually a member of this site
|
includes/extend/akismet.php
CHANGED
@@ -10,7 +10,7 @@
|
|
10 |
// Exit if accessed directly
|
11 |
defined( 'ABSPATH' ) || exit;
|
12 |
|
13 |
-
if ( !class_exists( 'BBP_Akismet' ) ) :
|
14 |
/**
|
15 |
* Loads Akismet extension
|
16 |
*
|
10 |
// Exit if accessed directly
|
11 |
defined( 'ABSPATH' ) || exit;
|
12 |
|
13 |
+
if ( ! class_exists( 'BBP_Akismet' ) ) :
|
14 |
/**
|
15 |
* Loads Akismet extension
|
16 |
*
|
includes/extend/buddypress/activity.php
CHANGED
@@ -10,7 +10,7 @@
|
|
10 |
// Exit if accessed directly
|
11 |
defined( 'ABSPATH' ) || exit;
|
12 |
|
13 |
-
if ( !class_exists( 'BBP_BuddyPress_Activity' ) ) :
|
14 |
/**
|
15 |
* Loads BuddyPress Activity extension
|
16 |
*
|
10 |
// Exit if accessed directly
|
11 |
defined( 'ABSPATH' ) || exit;
|
12 |
|
13 |
+
if ( ! class_exists( 'BBP_BuddyPress_Activity' ) ) :
|
14 |
/**
|
15 |
* Loads BuddyPress Activity extension
|
16 |
*
|
includes/extend/buddypress/functions.php
CHANGED
@@ -212,7 +212,7 @@ function bbp_member_forums_screen_subscriptions() {
|
|
212 |
function bbp_member_forums_topics_content() {
|
213 |
?>
|
214 |
|
215 |
-
<div id="bbpress-forums">
|
216 |
|
217 |
<?php bbp_get_template_part( 'user', 'topics-created' ); ?>
|
218 |
|
@@ -231,7 +231,7 @@ function bbp_member_forums_topics_content() {
|
|
231 |
function bbp_member_forums_replies_content() {
|
232 |
?>
|
233 |
|
234 |
-
<div id="bbpress-forums">
|
235 |
|
236 |
<?php bbp_get_template_part( 'user', 'replies-created' ); ?>
|
237 |
|
@@ -250,7 +250,7 @@ function bbp_member_forums_replies_content() {
|
|
250 |
function bbp_member_forums_favorites_content() {
|
251 |
?>
|
252 |
|
253 |
-
<div id="bbpress-forums">
|
254 |
|
255 |
<?php bbp_get_template_part( 'user', 'favorites' ); ?>
|
256 |
|
@@ -269,7 +269,7 @@ function bbp_member_forums_favorites_content() {
|
|
269 |
function bbp_member_forums_subscriptions_content() {
|
270 |
?>
|
271 |
|
272 |
-
<div id="bbpress-forums">
|
273 |
|
274 |
<?php bbp_get_template_part( 'user', 'subscriptions' ); ?>
|
275 |
|
@@ -566,7 +566,7 @@ function bbp_is_forum_group_forum( $forum_id = 0 ) {
|
|
566 |
* @uses is_user_logged_in()
|
567 |
* @uses bp_is_group()
|
568 |
* @uses bbpress()
|
569 |
-
* @uses
|
570 |
* @uses bp_get_current_group_id()
|
571 |
* @uses groups_is_user_admin()
|
572 |
* @return bool If current user is an admin of the current group
|
@@ -582,7 +582,7 @@ function bbp_group_is_admin() {
|
|
582 |
|
583 |
// Set the global if not set
|
584 |
if ( ! isset( $bbp->current_user->is_group_admin ) ) {
|
585 |
-
$bbp->current_user->is_group_admin = groups_is_user_admin(
|
586 |
}
|
587 |
|
588 |
// Return the value
|
@@ -597,7 +597,7 @@ function bbp_group_is_admin() {
|
|
597 |
* @uses is_user_logged_in()
|
598 |
* @uses bp_is_group()
|
599 |
* @uses bbpress()
|
600 |
-
* @uses
|
601 |
* @uses bp_get_current_group_id()
|
602 |
* @uses groups_is_user_admin()
|
603 |
* @return bool If current user is a moderator of the current group
|
@@ -613,7 +613,7 @@ function bbp_group_is_mod() {
|
|
613 |
|
614 |
// Set the global if not set
|
615 |
if ( ! isset( $bbp->current_user->is_group_mod ) ) {
|
616 |
-
$bbp->current_user->is_group_mod = groups_is_user_mod(
|
617 |
}
|
618 |
|
619 |
// Return the value
|
@@ -628,7 +628,7 @@ function bbp_group_is_mod() {
|
|
628 |
* @uses is_user_logged_in()
|
629 |
* @uses bp_is_group()
|
630 |
* @uses bbpress()
|
631 |
-
* @uses
|
632 |
* @uses bp_get_current_group_id()
|
633 |
* @uses groups_is_user_admin()
|
634 |
* @return bool If current user is a member of the current group
|
@@ -644,7 +644,7 @@ function bbp_group_is_member() {
|
|
644 |
|
645 |
// Set the global if not set
|
646 |
if ( ! isset( $bbp->current_user->is_group_member ) ) {
|
647 |
-
$bbp->current_user->is_group_member = groups_is_user_member(
|
648 |
}
|
649 |
|
650 |
// Return the value
|
@@ -659,7 +659,7 @@ function bbp_group_is_member() {
|
|
659 |
* @uses is_user_logged_in()
|
660 |
* @uses bp_is_group()
|
661 |
* @uses bbpress()
|
662 |
-
* @uses
|
663 |
* @uses bp_get_current_group_id()
|
664 |
* @uses groups_is_user_admin()
|
665 |
* @return bool If current user is banned from the current group
|
@@ -675,7 +675,7 @@ function bbp_group_is_banned() {
|
|
675 |
|
676 |
// Set the global if not set
|
677 |
if ( ! isset( $bbp->current_user->is_group_banned ) ) {
|
678 |
-
$bbp->current_user->is_group_banned = groups_is_user_banned(
|
679 |
}
|
680 |
|
681 |
// Return the value
|
@@ -690,7 +690,7 @@ function bbp_group_is_banned() {
|
|
690 |
* @uses is_user_logged_in()
|
691 |
* @uses bp_is_group()
|
692 |
* @uses bbpress()
|
693 |
-
* @uses
|
694 |
* @uses bp_get_current_group_id()
|
695 |
* @uses groups_is_user_admin()
|
696 |
* @return bool If current user the creator of the current group
|
@@ -706,7 +706,7 @@ function bbp_group_is_creator() {
|
|
706 |
|
707 |
// Set the global if not set
|
708 |
if ( ! isset( $bbp->current_user->is_group_creator ) ) {
|
709 |
-
$bbp->current_user->is_group_creator = groups_is_user_creator(
|
710 |
}
|
711 |
|
712 |
// Return the value
|
212 |
function bbp_member_forums_topics_content() {
|
213 |
?>
|
214 |
|
215 |
+
<div id="bbpress-forums" class="bbpress-wrapper">
|
216 |
|
217 |
<?php bbp_get_template_part( 'user', 'topics-created' ); ?>
|
218 |
|
231 |
function bbp_member_forums_replies_content() {
|
232 |
?>
|
233 |
|
234 |
+
<div id="bbpress-forums" class="bbpress-wrapper">
|
235 |
|
236 |
<?php bbp_get_template_part( 'user', 'replies-created' ); ?>
|
237 |
|
250 |
function bbp_member_forums_favorites_content() {
|
251 |
?>
|
252 |
|
253 |
+
<div id="bbpress-forums" class="bbpress-wrapper">
|
254 |
|
255 |
<?php bbp_get_template_part( 'user', 'favorites' ); ?>
|
256 |
|
269 |
function bbp_member_forums_subscriptions_content() {
|
270 |
?>
|
271 |
|
272 |
+
<div id="bbpress-forums" class="bbpress-wrapper">
|
273 |
|
274 |
<?php bbp_get_template_part( 'user', 'subscriptions' ); ?>
|
275 |
|
566 |
* @uses is_user_logged_in()
|
567 |
* @uses bp_is_group()
|
568 |
* @uses bbpress()
|
569 |
+
* @uses bp_loggedin_user_id()
|
570 |
* @uses bp_get_current_group_id()
|
571 |
* @uses groups_is_user_admin()
|
572 |
* @return bool If current user is an admin of the current group
|
582 |
|
583 |
// Set the global if not set
|
584 |
if ( ! isset( $bbp->current_user->is_group_admin ) ) {
|
585 |
+
$bbp->current_user->is_group_admin = groups_is_user_admin( bp_loggedin_user_id(), bp_get_current_group_id() );
|
586 |
}
|
587 |
|
588 |
// Return the value
|
597 |
* @uses is_user_logged_in()
|
598 |
* @uses bp_is_group()
|
599 |
* @uses bbpress()
|
600 |
+
* @uses bp_loggedin_user_id()
|
601 |
* @uses bp_get_current_group_id()
|
602 |
* @uses groups_is_user_admin()
|
603 |
* @return bool If current user is a moderator of the current group
|
613 |
|
614 |
// Set the global if not set
|
615 |
if ( ! isset( $bbp->current_user->is_group_mod ) ) {
|
616 |
+
$bbp->current_user->is_group_mod = groups_is_user_mod( bp_loggedin_user_id(), bp_get_current_group_id() );
|
617 |
}
|
618 |
|
619 |
// Return the value
|
628 |
* @uses is_user_logged_in()
|
629 |
* @uses bp_is_group()
|
630 |
* @uses bbpress()
|
631 |
+
* @uses bp_loggedin_user_id()
|
632 |
* @uses bp_get_current_group_id()
|
633 |
* @uses groups_is_user_admin()
|
634 |
* @return bool If current user is a member of the current group
|
644 |
|
645 |
// Set the global if not set
|
646 |
if ( ! isset( $bbp->current_user->is_group_member ) ) {
|
647 |
+
$bbp->current_user->is_group_member = groups_is_user_member( bp_loggedin_user_id(), bp_get_current_group_id() );
|
648 |
}
|
649 |
|
650 |
// Return the value
|
659 |
* @uses is_user_logged_in()
|
660 |
* @uses bp_is_group()
|
661 |
* @uses bbpress()
|
662 |
+
* @uses bp_loggedin_user_id()
|
663 |
* @uses bp_get_current_group_id()
|
664 |
* @uses groups_is_user_admin()
|
665 |
* @return bool If current user is banned from the current group
|
675 |
|
676 |
// Set the global if not set
|
677 |
if ( ! isset( $bbp->current_user->is_group_banned ) ) {
|
678 |
+
$bbp->current_user->is_group_banned = groups_is_user_banned( bp_loggedin_user_id(), bp_get_current_group_id() );
|
679 |
}
|
680 |
|
681 |
// Return the value
|
690 |
* @uses is_user_logged_in()
|
691 |
* @uses bp_is_group()
|
692 |
* @uses bbpress()
|
693 |
+
* @uses bp_loggedin_user_id()
|
694 |
* @uses bp_get_current_group_id()
|
695 |
* @uses groups_is_user_admin()
|
696 |
* @return bool If current user the creator of the current group
|
706 |
|
707 |
// Set the global if not set
|
708 |
if ( ! isset( $bbp->current_user->is_group_creator ) ) {
|
709 |
+
$bbp->current_user->is_group_creator = groups_is_user_creator( bp_loggedin_user_id(), bp_get_current_group_id() );
|
710 |
}
|
711 |
|
712 |
// Return the value
|
includes/extend/buddypress/groups.php
CHANGED
@@ -14,7 +14,7 @@
|
|
14 |
// Exit if accessed directly
|
15 |
defined( 'ABSPATH' ) || exit;
|
16 |
|
17 |
-
if ( !class_exists( 'BBP_Forums_Group_Extension' ) && class_exists( 'BP_Group_Extension' ) ) :
|
18 |
/**
|
19 |
* Loads Group Extension for Forums Component
|
20 |
*
|
@@ -841,7 +841,7 @@ class BBP_Forums_Group_Extension extends BP_Group_Extension {
|
|
841 |
// Assume forum query
|
842 |
bbp_set_query_name( 'bbp_single_forum' ); ?>
|
843 |
|
844 |
-
<div id="bbpress-forums">
|
845 |
|
846 |
<?php switch ( $forum_action ) :
|
847 |
|
14 |
// Exit if accessed directly
|
15 |
defined( 'ABSPATH' ) || exit;
|
16 |
|
17 |
+
if ( ! class_exists( 'BBP_Forums_Group_Extension' ) && class_exists( 'BP_Group_Extension' ) ) :
|
18 |
/**
|
19 |
* Loads Group Extension for Forums Component
|
20 |
*
|
841 |
// Assume forum query
|
842 |
bbp_set_query_name( 'bbp_single_forum' ); ?>
|
843 |
|
844 |
+
<div id="bbpress-forums" class="bbpress-wrapper">
|
845 |
|
846 |
<?php switch ( $forum_action ) :
|
847 |
|
includes/extend/buddypress/loader.php
CHANGED
@@ -20,7 +20,7 @@
|
|
20 |
// Exit if accessed directly
|
21 |
defined( 'ABSPATH' ) || exit;
|
22 |
|
23 |
-
if ( !class_exists( 'BBP_Forums_Component' ) ) :
|
24 |
/**
|
25 |
* Loads Forums Component
|
26 |
*
|
20 |
// Exit if accessed directly
|
21 |
defined( 'ABSPATH' ) || exit;
|
22 |
|
23 |
+
if ( ! class_exists( 'BBP_Forums_Component' ) ) :
|
24 |
/**
|
25 |
* Loads Forums Component
|
26 |
*
|
includes/extend/buddypress/members.php
CHANGED
@@ -10,7 +10,7 @@
|
|
10 |
// Exit if accessed directly
|
11 |
defined( 'ABSPATH' ) || exit;
|
12 |
|
13 |
-
if ( !class_exists( 'BBP_Forums_Members' ) ) :
|
14 |
/**
|
15 |
* Member profile modifications
|
16 |
*
|
10 |
// Exit if accessed directly
|
11 |
defined( 'ABSPATH' ) || exit;
|
12 |
|
13 |
+
if ( ! class_exists( 'BBP_Forums_Members' ) ) :
|
14 |
/**
|
15 |
* Member profile modifications
|
16 |
*
|
includes/forums/template.php
CHANGED
@@ -2345,7 +2345,7 @@ function bbp_form_forum_parent() {
|
|
2345 |
$forum_parent = 0;
|
2346 |
}
|
2347 |
|
2348 |
-
return apply_filters( 'bbp_get_form_forum_parent',
|
2349 |
}
|
2350 |
|
2351 |
/**
|
2345 |
$forum_parent = 0;
|
2346 |
}
|
2347 |
|
2348 |
+
return apply_filters( 'bbp_get_form_forum_parent', $forum_parent );
|
2349 |
}
|
2350 |
|
2351 |
/**
|
includes/replies/functions.php
CHANGED
@@ -2504,7 +2504,34 @@ function bbp_get_reply_position_raw( $reply_id = 0, $topic_id = 0 ) {
|
|
2504 |
/** Hierarchical Replies ******************************************************/
|
2505 |
|
2506 |
/**
|
2507 |
-
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2508 |
*
|
2509 |
* @since 2.4.0 bbPress (r4944)
|
2510 |
*/
|
2504 |
/** Hierarchical Replies ******************************************************/
|
2505 |
|
2506 |
/**
|
2507 |
+
* Are replies threaded?
|
2508 |
+
*
|
2509 |
+
* @since 2.4.0 bbPress (r4944)
|
2510 |
+
* @since 2.6.0 bbPress (r6245) Always false on user profile reply pages
|
2511 |
+
*
|
2512 |
+
* @param bool $default Optional. Default value true
|
2513 |
+
* @uses apply_filters() Calls 'bbp_thread_replies' with the calculated value and
|
2514 |
+
* the thread replies depth
|
2515 |
+
* @uses get_option() To get thread replies option
|
2516 |
+
* @return bool Are replies threaded?
|
2517 |
+
*/
|
2518 |
+
function bbp_thread_replies() {
|
2519 |
+
$depth = bbp_thread_replies_depth();
|
2520 |
+
$allow = bbp_allow_threaded_replies();
|
2521 |
+
|
2522 |
+
// Never thread replies on user profile pages. It looks weird, and we know
|
2523 |
+
// it is undesirable for the majority of installations.
|
2524 |
+
if ( bbp_is_single_user_replies() ) {
|
2525 |
+
$retval = false;
|
2526 |
+
} else {
|
2527 |
+
$retval = (bool) ( ( $depth >= 2 ) && ( true === $allow ) );
|
2528 |
+
}
|
2529 |
+
|
2530 |
+
return (bool) apply_filters( 'bbp_thread_replies', $retval, $depth, $allow );
|
2531 |
+
}
|
2532 |
+
|
2533 |
+
/**
|
2534 |
+
* List threaded replies
|
2535 |
*
|
2536 |
* @since 2.4.0 bbPress (r4944)
|
2537 |
*/
|
includes/replies/template.php
CHANGED
@@ -2436,7 +2436,7 @@ function bbp_reply_class( $reply_id = 0, $classes = array() ) {
|
|
2436 |
* @uses bbp_get_topic_pagination_count() To get the topic pagination count
|
2437 |
*/
|
2438 |
function bbp_topic_pagination_count() {
|
2439 |
-
echo bbp_get_topic_pagination_count();
|
2440 |
}
|
2441 |
/**
|
2442 |
* Return the topic pagination count
|
@@ -2463,13 +2463,9 @@ function bbp_topic_pagination_count() {
|
|
2463 |
$total = bbp_number_format( $total_int );
|
2464 |
|
2465 |
// We are threading replies
|
2466 |
-
if ( bbp_thread_replies()
|
2467 |
-
return;
|
2468 |
$walker = new BBP_Walker_Reply;
|
2469 |
-
$threads = (
|
2470 |
-
|
2471 |
-
// Adjust for topic
|
2472 |
-
$threads--;
|
2473 |
$retstr = sprintf( _n( 'Viewing %1$s reply thread', 'Viewing %1$s reply threads', $threads, 'bbpress' ), bbp_number_format( $threads ) );
|
2474 |
|
2475 |
// We are not including the lead topic
|
@@ -2498,7 +2494,7 @@ function bbp_topic_pagination_count() {
|
|
2498 |
}
|
2499 |
|
2500 |
// Filter and return
|
2501 |
-
return apply_filters( 'bbp_get_topic_pagination_count',
|
2502 |
}
|
2503 |
|
2504 |
/**
|
@@ -2604,7 +2600,7 @@ function bbp_form_reply_to() {
|
|
2604 |
$reply_to = bbp_get_reply_to();
|
2605 |
}
|
2606 |
|
2607 |
-
return
|
2608 |
}
|
2609 |
|
2610 |
/**
|
@@ -2776,10 +2772,10 @@ function bbp_form_reply_status_dropdown( $args = array() ) {
|
|
2776 |
echo bbp_get_form_reply_status_dropdown( $args );
|
2777 |
}
|
2778 |
/**
|
2779 |
-
* Returns reply status
|
2780 |
*
|
2781 |
* This dropdown is only intended to be seen by users with the 'moderate'
|
2782 |
-
* capability. Because of this, no additional
|
2783 |
* within this function to check available reply statuses.
|
2784 |
*
|
2785 |
* @since 2.6.0 bbPress (r5399)
|
2436 |
* @uses bbp_get_topic_pagination_count() To get the topic pagination count
|
2437 |
*/
|
2438 |
function bbp_topic_pagination_count() {
|
2439 |
+
echo esc_html( bbp_get_topic_pagination_count() );
|
2440 |
}
|
2441 |
/**
|
2442 |
* Return the topic pagination count
|
2463 |
$total = bbp_number_format( $total_int );
|
2464 |
|
2465 |
// We are threading replies
|
2466 |
+
if ( bbp_thread_replies() ) {
|
|
|
2467 |
$walker = new BBP_Walker_Reply;
|
2468 |
+
$threads = absint( $walker->get_number_of_root_elements( $bbp->reply_query->posts ) - 1 );
|
|
|
|
|
|
|
2469 |
$retstr = sprintf( _n( 'Viewing %1$s reply thread', 'Viewing %1$s reply threads', $threads, 'bbpress' ), bbp_number_format( $threads ) );
|
2470 |
|
2471 |
// We are not including the lead topic
|
2494 |
}
|
2495 |
|
2496 |
// Filter and return
|
2497 |
+
return apply_filters( 'bbp_get_topic_pagination_count', $retstr );
|
2498 |
}
|
2499 |
|
2500 |
/**
|
2600 |
$reply_to = bbp_get_reply_to();
|
2601 |
}
|
2602 |
|
2603 |
+
return apply_filters( 'bbp_get_form_reply_to', $reply_to );
|
2604 |
}
|
2605 |
|
2606 |
/**
|
2772 |
echo bbp_get_form_reply_status_dropdown( $args );
|
2773 |
}
|
2774 |
/**
|
2775 |
+
* Returns reply status dropdown
|
2776 |
*
|
2777 |
* This dropdown is only intended to be seen by users with the 'moderate'
|
2778 |
+
* capability. Because of this, no additional capability checks are performed
|
2779 |
* within this function to check available reply statuses.
|
2780 |
*
|
2781 |
* @since 2.6.0 bbPress (r5399)
|
includes/topics/functions.php
CHANGED
@@ -3993,6 +3993,68 @@ function bbp_get_topic_tag_names( $topic_id = 0, $sep = ', ' ) {
|
|
3993 |
return apply_filters( 'bbp_get_topic_tag_names', $terms, $topic_id, $sep );
|
3994 |
}
|
3995 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3996 |
/** Autoembed *****************************************************************/
|
3997 |
|
3998 |
/**
|
3993 |
return apply_filters( 'bbp_get_topic_tag_names', $terms, $topic_id, $sep );
|
3994 |
}
|
3995 |
|
3996 |
+
/**
|
3997 |
+
* Will update topic-tag count based on object type.
|
3998 |
+
*
|
3999 |
+
* Function for the default callback for topic-tag taxonomies.
|
4000 |
+
*
|
4001 |
+
* @see https://bbpress.trac.wordpress.org/ticket/3043
|
4002 |
+
* @access private
|
4003 |
+
*
|
4004 |
+
* @since 2.6.0 bbPress (r6253)
|
4005 |
+
*
|
4006 |
+
* @param array $terms List of Term taxonomy IDs.
|
4007 |
+
* @param object $taxonomy Current taxonomy object of terms.
|
4008 |
+
*/
|
4009 |
+
function bbp_update_topic_tag_count( $terms, $taxonomy ) {
|
4010 |
+
|
4011 |
+
// Bail if no object types are available
|
4012 |
+
if ( empty( $terms ) || empty( $taxonomy->object_type ) ) {
|
4013 |
+
return;
|
4014 |
+
}
|
4015 |
+
|
4016 |
+
// Get object types
|
4017 |
+
$object_types = (array) $taxonomy->object_type;
|
4018 |
+
|
4019 |
+
foreach ( $object_types as &$object_type ) {
|
4020 |
+
list( $object_type ) = explode( ':', $object_type );
|
4021 |
+
}
|
4022 |
+
|
4023 |
+
$object_types = array_unique( $object_types );
|
4024 |
+
|
4025 |
+
if ( ! empty( $object_types ) ) {
|
4026 |
+
$object_types = esc_sql( array_filter( $object_types, 'post_type_exists' ) );
|
4027 |
+
}
|
4028 |
+
|
4029 |
+
// Statuses to count
|
4030 |
+
$object_statuses = array(
|
4031 |
+
bbp_get_public_status_id(),
|
4032 |
+
bbp_get_closed_status_id()
|
4033 |
+
);
|
4034 |
+
|
4035 |
+
// Get database
|
4036 |
+
$bbp_db = bbp_db();
|
4037 |
+
|
4038 |
+
// Loop through terms, maybe update counts
|
4039 |
+
foreach ( (array) $terms as $term ) {
|
4040 |
+
$count = 0;
|
4041 |
+
|
4042 |
+
// Get count, and bump it
|
4043 |
+
if ( ! empty( $object_types ) ) {
|
4044 |
+
$query = "SELECT COUNT(*) FROM {$bbp_db->term_relationships}, {$bbp_db->posts} WHERE {$bbp_db->posts}.ID = {$bbp_db->term_relationships}.object_id AND post_status IN ('" . implode("', '", $object_statuses ) . "') AND post_type IN ('" . implode("', '", $object_types ) . "') AND term_taxonomy_id = %d";
|
4045 |
+
$prepare = $bbp_db->prepare( $query, $term );
|
4046 |
+
$count += (int) $bbp_db->get_var( $prepare );
|
4047 |
+
}
|
4048 |
+
|
4049 |
+
/** This action is documented in wp-includes/taxonomy.php */
|
4050 |
+
do_action( 'edit_term_taxonomy', $term, $taxonomy->name );
|
4051 |
+
$bbp_db->update( $bbp_db->term_taxonomy, compact( 'count' ), array( 'term_taxonomy_id' => $term ) );
|
4052 |
+
|
4053 |
+
/** This action is documented in wp-includes/taxonomy.php */
|
4054 |
+
do_action( 'edited_term_taxonomy', $term, $taxonomy->name );
|
4055 |
+
}
|
4056 |
+
}
|
4057 |
+
|
4058 |
/** Autoembed *****************************************************************/
|
4059 |
|
4060 |
/**
|
includes/topics/template.php
CHANGED
@@ -2020,6 +2020,8 @@ function bbp_topic_last_reply_id( $topic_id = 0 ) {
|
|
2020 |
/**
|
2021 |
* Output the title of the last reply inside a topic
|
2022 |
*
|
|
|
|
|
2023 |
* @param int $topic_id Optional. Topic id
|
2024 |
* @uses bbp_get_topic_last_reply_title() To get the topic last reply title
|
2025 |
*/
|
@@ -2029,11 +2031,14 @@ function bbp_topic_last_reply_title( $topic_id = 0 ) {
|
|
2029 |
/**
|
2030 |
* Return the title of the last reply inside a topic
|
2031 |
*
|
|
|
|
|
|
|
2032 |
* @param int $topic_id Optional. Topic id
|
2033 |
* @uses bbp_get_topic_id() To get the topic id
|
2034 |
* @uses bbp_get_topic_last_reply_id() To get the topic last reply id
|
2035 |
* @uses bbp_get_reply_title() To get the reply title
|
2036 |
-
* @uses apply_filters() Calls '
|
2037 |
* the reply title and topic id
|
2038 |
* @return string Topic last reply title
|
2039 |
*/
|
@@ -2042,7 +2047,10 @@ function bbp_topic_last_reply_title( $topic_id = 0 ) {
|
|
2042 |
$reply_id = bbp_get_topic_last_reply_id( $topic_id );
|
2043 |
$retval = bbp_get_reply_title( $reply_id );
|
2044 |
|
2045 |
-
|
|
|
|
|
|
|
2046 |
}
|
2047 |
|
2048 |
/**
|
@@ -2065,7 +2073,7 @@ function bbp_topic_last_reply_permalink( $topic_id = 0 ) {
|
|
2065 |
* @uses bbp_get_topic_id() To get the topic id
|
2066 |
* @uses bbp_get_topic_last_reply_id() To get the topic last reply id
|
2067 |
* @uses bbp_get_reply_permalink() To get the reply permalink
|
2068 |
-
* @uses apply_filters() Calls '
|
2069 |
* the reply permalink and topic id
|
2070 |
* @return string Permanent link to the reply
|
2071 |
*/
|
@@ -2098,7 +2106,7 @@ function bbp_topic_last_reply_url( $topic_id = 0 ) {
|
|
2098 |
* @uses bbp_get_topic_last_reply_id() To get the topic last reply id
|
2099 |
* @uses bbp_get_reply_url() To get the reply url
|
2100 |
* @uses bbp_get_topic_permalink() To get the topic permalink
|
2101 |
-
* @uses apply_filters() Calls '
|
2102 |
* the reply url and topic id
|
2103 |
* @return string Topic last reply url
|
2104 |
*/
|
@@ -3128,7 +3136,7 @@ function bbp_forum_pagination_count() {
|
|
3128 |
* @uses bbp_number_format() To format the number value
|
3129 |
* @uses apply_filters() Calls 'bbp_get_forum_pagination_count' with the
|
3130 |
* pagination count
|
3131 |
-
* @return string Forum
|
3132 |
*/
|
3133 |
function bbp_get_forum_pagination_count() {
|
3134 |
$bbp = bbpress();
|
@@ -3360,10 +3368,10 @@ function bbp_form_topic_status_dropdown( $args = array() ) {
|
|
3360 |
echo bbp_get_form_topic_status_dropdown( $args );
|
3361 |
}
|
3362 |
/**
|
3363 |
-
* Returns topic status
|
3364 |
*
|
3365 |
* This dropdown is only intended to be seen by users with the 'moderate'
|
3366 |
-
* capability. Because of this, no additional
|
3367 |
* within this function to check available topic statuses.
|
3368 |
*
|
3369 |
* @since 2.4.0 bbPress (r5059)
|
2020 |
/**
|
2021 |
* Output the title of the last reply inside a topic
|
2022 |
*
|
2023 |
+
* @since 2.0.0 bbPress (r2753)
|
2024 |
+
*
|
2025 |
* @param int $topic_id Optional. Topic id
|
2026 |
* @uses bbp_get_topic_last_reply_title() To get the topic last reply title
|
2027 |
*/
|
2031 |
/**
|
2032 |
* Return the title of the last reply inside a topic
|
2033 |
*
|
2034 |
+
* @since 2.0.0 bbPress (r2753)
|
2035 |
+
* @since 2.6.0 bbPress https://bbpress.trac.wordpress.org/ticket/3039
|
2036 |
+
*
|
2037 |
* @param int $topic_id Optional. Topic id
|
2038 |
* @uses bbp_get_topic_id() To get the topic id
|
2039 |
* @uses bbp_get_topic_last_reply_id() To get the topic last reply id
|
2040 |
* @uses bbp_get_reply_title() To get the reply title
|
2041 |
+
* @uses apply_filters() Calls 'bbp_get_topic_last_reply_title' with
|
2042 |
* the reply title and topic id
|
2043 |
* @return string Topic last reply title
|
2044 |
*/
|
2047 |
$reply_id = bbp_get_topic_last_reply_id( $topic_id );
|
2048 |
$retval = bbp_get_reply_title( $reply_id );
|
2049 |
|
2050 |
+
// Misspelled. Use 'bbp_get_topic_last_reply_title' hook instead.
|
2051 |
+
$retval = apply_filters( 'bbp_get_topic_last_topic_title', $retval, $topic_id, $reply_id );
|
2052 |
+
|
2053 |
+
return apply_filters( 'bbp_get_topic_last_reply_title', $retval, $topic_id, $reply_id );
|
2054 |
}
|
2055 |
|
2056 |
/**
|
2073 |
* @uses bbp_get_topic_id() To get the topic id
|
2074 |
* @uses bbp_get_topic_last_reply_id() To get the topic last reply id
|
2075 |
* @uses bbp_get_reply_permalink() To get the reply permalink
|
2076 |
+
* @uses apply_filters() Calls 'bbp_get_topic_last_reply_permalink' with
|
2077 |
* the reply permalink and topic id
|
2078 |
* @return string Permanent link to the reply
|
2079 |
*/
|
2106 |
* @uses bbp_get_topic_last_reply_id() To get the topic last reply id
|
2107 |
* @uses bbp_get_reply_url() To get the reply url
|
2108 |
* @uses bbp_get_topic_permalink() To get the topic permalink
|
2109 |
+
* @uses apply_filters() Calls 'bbp_get_topic_last_reply_url' with
|
2110 |
* the reply url and topic id
|
2111 |
* @return string Topic last reply url
|
2112 |
*/
|
3136 |
* @uses bbp_number_format() To format the number value
|
3137 |
* @uses apply_filters() Calls 'bbp_get_forum_pagination_count' with the
|
3138 |
* pagination count
|
3139 |
+
* @return string Forum Pagination count
|
3140 |
*/
|
3141 |
function bbp_get_forum_pagination_count() {
|
3142 |
$bbp = bbpress();
|
3368 |
echo bbp_get_form_topic_status_dropdown( $args );
|
3369 |
}
|
3370 |
/**
|
3371 |
+
* Returns topic status dropdown
|
3372 |
*
|
3373 |
* This dropdown is only intended to be seen by users with the 'moderate'
|
3374 |
+
* capability. Because of this, no additional capability checks are performed
|
3375 |
* within this function to check available topic statuses.
|
3376 |
*
|
3377 |
* @since 2.4.0 bbPress (r5059)
|
templates/default/bbpress-functions.php
CHANGED
@@ -13,7 +13,7 @@ defined( 'ABSPATH' ) || exit;
|
|
13 |
|
14 |
/** Theme Setup ***************************************************************/
|
15 |
|
16 |
-
if ( !class_exists( 'BBP_Default' ) ) :
|
17 |
|
18 |
/**
|
19 |
* Loads bbPress Default Theme functionality
|
13 |
|
14 |
/** Theme Setup ***************************************************************/
|
15 |
|
16 |
+
if ( ! class_exists( 'BBP_Default' ) ) :
|
17 |
|
18 |
/**
|
19 |
* Loads bbPress Default Theme functionality
|
templates/default/bbpress/content-archive-forum.php
CHANGED
@@ -9,7 +9,7 @@
|
|
9 |
|
10 |
?>
|
11 |
|
12 |
-
<div id="bbpress-forums">
|
13 |
|
14 |
<?php if ( bbp_allow_search() ) : ?>
|
15 |
|
9 |
|
10 |
?>
|
11 |
|
12 |
+
<div id="bbpress-forums" class="bbpress-wrapper">
|
13 |
|
14 |
<?php if ( bbp_allow_search() ) : ?>
|
15 |
|
templates/default/bbpress/content-archive-topic.php
CHANGED
@@ -9,7 +9,7 @@
|
|
9 |
|
10 |
?>
|
11 |
|
12 |
-
<div id="bbpress-forums">
|
13 |
|
14 |
<?php if ( bbp_allow_search() ) : ?>
|
15 |
|
9 |
|
10 |
?>
|
11 |
|
12 |
+
<div id="bbpress-forums" class="bbpress-wrapper">
|
13 |
|
14 |
<?php if ( bbp_allow_search() ) : ?>
|
15 |
|
templates/default/bbpress/content-search.php
CHANGED
@@ -9,7 +9,7 @@
|
|
9 |
|
10 |
?>
|
11 |
|
12 |
-
<div id="bbpress-forums">
|
13 |
|
14 |
<?php bbp_breadcrumb(); ?>
|
15 |
|
9 |
|
10 |
?>
|
11 |
|
12 |
+
<div id="bbpress-forums" class="bbpress-wrapper">
|
13 |
|
14 |
<?php bbp_breadcrumb(); ?>
|
15 |
|
templates/default/bbpress/content-single-forum.php
CHANGED
@@ -9,7 +9,7 @@
|
|
9 |
|
10 |
?>
|
11 |
|
12 |
-
<div id="bbpress-forums">
|
13 |
|
14 |
<?php bbp_breadcrumb(); ?>
|
15 |
|
9 |
|
10 |
?>
|
11 |
|
12 |
+
<div id="bbpress-forums" class="bbpress-wrapper">
|
13 |
|
14 |
<?php bbp_breadcrumb(); ?>
|
15 |
|
templates/default/bbpress/content-single-reply.php
CHANGED
@@ -9,7 +9,7 @@
|
|
9 |
|
10 |
?>
|
11 |
|
12 |
-
<div id="bbpress-forums">
|
13 |
|
14 |
<?php bbp_breadcrumb(); ?>
|
15 |
|
9 |
|
10 |
?>
|
11 |
|
12 |
+
<div id="bbpress-forums" class="bbpress-wrapper">
|
13 |
|
14 |
<?php bbp_breadcrumb(); ?>
|
15 |
|
templates/default/bbpress/content-single-topic.php
CHANGED
@@ -9,7 +9,7 @@
|
|
9 |
|
10 |
?>
|
11 |
|
12 |
-
<div id="bbpress-forums">
|
13 |
|
14 |
<?php bbp_breadcrumb(); ?>
|
15 |
|
9 |
|
10 |
?>
|
11 |
|
12 |
+
<div id="bbpress-forums" class="bbpress-wrapper">
|
13 |
|
14 |
<?php bbp_breadcrumb(); ?>
|
15 |
|
templates/default/bbpress/content-single-user.php
CHANGED
@@ -9,7 +9,7 @@
|
|
9 |
|
10 |
?>
|
11 |
|
12 |
-
<div id="bbpress-forums">
|
13 |
|
14 |
<?php do_action( 'bbp_template_notices' ); ?>
|
15 |
|
9 |
|
10 |
?>
|
11 |
|
12 |
+
<div id="bbpress-forums" class="bbpress-wrapper">
|
13 |
|
14 |
<?php do_action( 'bbp_template_notices' ); ?>
|
15 |
|
templates/default/bbpress/content-single-view.php
CHANGED
@@ -9,7 +9,7 @@
|
|
9 |
|
10 |
?>
|
11 |
|
12 |
-
<div id="bbpress-forums">
|
13 |
|
14 |
<?php bbp_breadcrumb(); ?>
|
15 |
|
9 |
|
10 |
?>
|
11 |
|
12 |
+
<div id="bbpress-forums" class="bbpress-wrapper">
|
13 |
|
14 |
<?php bbp_breadcrumb(); ?>
|
15 |
|
templates/default/bbpress/content-topic-tag-edit.php
CHANGED
@@ -9,7 +9,7 @@
|
|
9 |
|
10 |
?>
|
11 |
|
12 |
-
<div id="bbpress-forums">
|
13 |
|
14 |
<?php bbp_breadcrumb(); ?>
|
15 |
|
9 |
|
10 |
?>
|
11 |
|
12 |
+
<div id="bbpress-forums" class="bbpress-wrapper">
|
13 |
|
14 |
<?php bbp_breadcrumb(); ?>
|
15 |
|
templates/default/bbpress/form-forum.php
CHANGED
@@ -9,7 +9,7 @@
|
|
9 |
|
10 |
if ( bbp_is_forum_edit() ) : ?>
|
11 |
|
12 |
-
<div id="bbpress-forums">
|
13 |
|
14 |
<?php bbp_breadcrumb(); ?>
|
15 |
|
9 |
|
10 |
if ( bbp_is_forum_edit() ) : ?>
|
11 |
|
12 |
+
<div id="bbpress-forums" class="bbpress-wrapper">
|
13 |
|
14 |
<?php bbp_breadcrumb(); ?>
|
15 |
|
templates/default/bbpress/form-protected.php
CHANGED
@@ -9,7 +9,7 @@
|
|
9 |
|
10 |
?>
|
11 |
|
12 |
-
<div id="bbpress-forums">
|
13 |
<fieldset class="bbp-form" id="bbp-protected">
|
14 |
<Legend><?php esc_html_e( 'Protected', 'bbpress' ); ?></legend>
|
15 |
|
9 |
|
10 |
?>
|
11 |
|
12 |
+
<div id="bbpress-forums" class="bbpress-wrapper">
|
13 |
<fieldset class="bbp-form" id="bbp-protected">
|
14 |
<Legend><?php esc_html_e( 'Protected', 'bbpress' ); ?></legend>
|
15 |
|
templates/default/bbpress/form-reply-move.php
CHANGED
@@ -9,7 +9,7 @@
|
|
9 |
|
10 |
?>
|
11 |
|
12 |
-
<div id="bbpress-forums">
|
13 |
|
14 |
<?php bbp_breadcrumb(); ?>
|
15 |
|
9 |
|
10 |
?>
|
11 |
|
12 |
+
<div id="bbpress-forums" class="bbpress-wrapper">
|
13 |
|
14 |
<?php bbp_breadcrumb(); ?>
|
15 |
|
templates/default/bbpress/form-reply.php
CHANGED
@@ -9,7 +9,7 @@
|
|
9 |
|
10 |
if ( bbp_is_reply_edit() ) : ?>
|
11 |
|
12 |
-
<div id="bbpress-forums">
|
13 |
|
14 |
<?php bbp_breadcrumb(); ?>
|
15 |
|
9 |
|
10 |
if ( bbp_is_reply_edit() ) : ?>
|
11 |
|
12 |
+
<div id="bbpress-forums" class="bbpress-wrapper">
|
13 |
|
14 |
<?php bbp_breadcrumb(); ?>
|
15 |
|
templates/default/bbpress/form-topic-merge.php
CHANGED
@@ -9,7 +9,7 @@
|
|
9 |
|
10 |
?>
|
11 |
|
12 |
-
<div id="bbpress-forums">
|
13 |
|
14 |
<?php bbp_breadcrumb(); ?>
|
15 |
|
9 |
|
10 |
?>
|
11 |
|
12 |
+
<div id="bbpress-forums" class="bbpress-wrapper">
|
13 |
|
14 |
<?php bbp_breadcrumb(); ?>
|
15 |
|
templates/default/bbpress/form-topic-split.php
CHANGED
@@ -9,7 +9,7 @@
|
|
9 |
|
10 |
?>
|
11 |
|
12 |
-
<div id="bbpress-forums">
|
13 |
|
14 |
<?php bbp_breadcrumb(); ?>
|
15 |
|
9 |
|
10 |
?>
|
11 |
|
12 |
+
<div id="bbpress-forums" class="bbpress-wrapper">
|
13 |
|
14 |
<?php bbp_breadcrumb(); ?>
|
15 |
|
templates/default/bbpress/form-topic.php
CHANGED
@@ -9,7 +9,7 @@
|
|
9 |
|
10 |
if ( ! bbp_is_single_forum() ) : ?>
|
11 |
|
12 |
-
<div id="bbpress-forums">
|
13 |
|
14 |
<?php bbp_breadcrumb(); ?>
|
15 |
|
9 |
|
10 |
if ( ! bbp_is_single_forum() ) : ?>
|
11 |
|
12 |
+
<div id="bbpress-forums" class="bbpress-wrapper">
|
13 |
|
14 |
<?php bbp_breadcrumb(); ?>
|
15 |
|
templates/default/css/bbpress-rtl.css
CHANGED
@@ -8,6 +8,11 @@
|
|
8 |
/* =bbPress Style
|
9 |
-------------------------------------------------------------- */
|
10 |
|
|
|
|
|
|
|
|
|
|
|
11 |
#bbpress-forums hr {
|
12 |
margin: 0 0 24px;
|
13 |
}
|
8 |
/* =bbPress Style
|
9 |
-------------------------------------------------------------- */
|
10 |
|
11 |
+
.entry-content .bbpress-wrapper a {
|
12 |
+
-webkit-box-shadow: none;
|
13 |
+
box-shadow: none;
|
14 |
+
}
|
15 |
+
|
16 |
#bbpress-forums hr {
|
17 |
margin: 0 0 24px;
|
18 |
}
|
templates/default/css/bbpress-rtl.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
#bbpress-forums hr{margin:0 0 24px}#bbpress-forums{background:0 0;clear:both;margin-bottom:20px;overflow:hidden;font-size:12px}#bbpress-forums div.even,#bbpress-forums ul.even{background-color:#fff}#bbpress-forums div.odd,#bbpress-forums ul.odd{background-color:#fbfbfb}body.reply-edit .reply{float:none}#bbpress-forums div.reply{height:auto;width:100%}#bbpress-forums div.bbp-forum-header,#bbpress-forums div.bbp-reply-header,#bbpress-forums div.bbp-topic-header{background-color:#f4f4f4}#bbpress-forums .status-spam.even,#bbpress-forums .status-trash.even{background-color:#fee}#bbpress-forums .status-spam.odd,#bbpress-forums .status-trash.odd{background-color:#fdd}#bbpress-forums .status-pending.even,#bbpress-forums .status-pending.odd,#bbpress-forums ul.status-pending a{background-color:#fef7f1}#bbpress-forums ul.status-closed,#bbpress-forums ul.status-closed a{color:#ccc}#bbpress-forums ul{background:0 0;list-style:none;margin:0;padding:0}#bbpress-forums ul.bbp-threaded-replies{margin-right:50px}#bbpress-forums li{background:0 0;margin:0;list-style:none}#bbpress-forums ul.bbp-forums,#bbpress-forums ul.bbp-lead-topic,#bbpress-forums ul.bbp-replies,#bbpress-forums ul.bbp-search-results,#bbpress-forums ul.bbp-topics{font-size:12px;overflow:hidden;border:1px solid #eee;margin-bottom:20px;clear:both}#bbpress-forums li.bbp-body,#bbpress-forums li.bbp-footer,#bbpress-forums li.bbp-header{clear:both}#bbpress-forums li.bbp-footer,#bbpress-forums li.bbp-header{background:#f3f3f3;border-top:1px solid #eee;font-weight:700;padding:8px;text-align:center}#bbpress-forums li.bbp-header{background:#eaeaea}#bbpress-forums li.bbp-header ul{overflow:hidden}#bbpress-forums .bbp-forums-list{margin:0 5px 0 0;padding-right:15px;border-right:1px solid #ddd}#bbpress-forums .bbp-forums-list li{display:inline;font-size:11px}#bbpress-forums li.bbp-footer p{margin:0;line-height:1em}li.bbp-forum-info,li.bbp-topic-title{float:right;text-align:right;width:55%}li.bbp-forum-reply-count,li.bbp-forum-topic-count,li.bbp-topic-reply-count,li.bbp-topic-voice-count{float:right;text-align:center;width:10%}li.bbp-forum-freshness,li.bbp-topic-freshness{text-align:center;float:right;width:22%}#bbpress-forums li.bbp-body ul.forum,#bbpress-forums li.bbp-body ul.topic{border-top:1px solid #eee;overflow:hidden;padding:8px}#bbpress-forums #favorite-toggle,#bbpress-forums #subscription-toggle{float:left}#bbpress-forums div.bbp-forum-title h3,#bbpress-forums div.bbp-reply-title h3,#bbpress-forums div.bbp-topic-title h3{background:0 0;border:none;font-size:16px;line-height:1em;margin:8px 0;padding:0;text-transform:none}#bbpress-forums div.bbp-forum-author,#bbpress-forums div.bbp-reply-author,#bbpress-forums div.bbp-topic-author{float:right;text-align:center;width:115px}#bbpress-forums div.bbp-forum-author img.avatar,#bbpress-forums div.bbp-reply-author img.avatar,#bbpress-forums div.bbp-topic-author img.avatar{border:none;max-width:80px;padding:0;margin:12px auto 0;float:none}#bbpress-forums div.bbp-forum-author a.bbp-author-name,#bbpress-forums div.bbp-reply-author a.bbp-author-name,#bbpress-forums div.bbp-topic-author a.bbp-author-name{margin:0 12px;word-wrap:break-word;display:inline-block}#bbpress-forums div.bbp-reply-author a.bbp-author-name,#bbpress-forums div.bbp-topic-author a.bbp-author-name{clear:right;display:block}#bbpress-forums div.bbp-forum-author .bbp-author-role,#bbpress-forums div.bbp-reply-author .bbp-author-role,#bbpress-forums div.bbp-topic-author .bbp-author-role{font-size:11px;font-style:italic}#bbpress-forums li.bbp-footer .bbp-forum-author,#bbpress-forums li.bbp-footer .bbp-reply-author,#bbpress-forums li.bbp-footer .bbp-search-author,#bbpress-forums li.bbp-footer .bbp-topic-author,#bbpress-forums li.bbp-header .bbp-forum-author,#bbpress-forums li.bbp-header .bbp-reply-author,#bbpress-forums li.bbp-header .bbp-search-author,#bbpress-forums li.bbp-header .bbp-topic-author{float:right;margin:0;padding:0;width:120px}#bbpress-forums li.bbp-footer .bbp-forum-content,#bbpress-forums li.bbp-footer .bbp-reply-content,#bbpress-forums li.bbp-footer .bbp-search-content,#bbpress-forums li.bbp-footer .bbp-topic-content,#bbpress-forums li.bbp-header .bbp-forum-content,#bbpress-forums li.bbp-header .bbp-reply-content,#bbpress-forums li.bbp-header .bbp-search-content,#bbpress-forums li.bbp-header .bbp-topic-content{margin-right:140px;padding:0;text-align:right}div.bbp-forum-header,div.bbp-reply-header,div.bbp-topic-header,li.bbp-body div.hentry{margin-bottom:0;overflow:hidden;padding:8px}div.bbp-forum-header,div.bbp-reply-header,div.bbp-topic-header{border-top:1px solid #ddd;clear:both}span.bbp-author-ip{font-size:11px;font-weight:700;word-wrap:break-word;color:#aaa}#bbpress-forums div.bbp-forum-content,#bbpress-forums div.bbp-reply-content,#bbpress-forums div.bbp-topic-content{margin-right:130px;padding:12px 0 12px 12px;text-align:right}#bbpress-forums div.bbp-forum-content:after,#bbpress-forums div.bbp-reply-content:after,#bbpress-forums div.bbp-topic-content:after{clear:both;content:".";display:block;float:none;height:0;font-size:0;visibility:hidden}#bbpress-forums div.bbp-reply-content a,#bbpress-forums div.bbp-topic-content a{background:0 0;border:none;display:inline;font-weight:400;margin:0;padding:0}#bbpress-forums div.bbp-reply-content h1,#bbpress-forums div.bbp-reply-content h2,#bbpress-forums div.bbp-reply-content h3,#bbpress-forums div.bbp-reply-content h4,#bbpress-forums div.bbp-reply-content h5,#bbpress-forums div.bbp-reply-content h6,#bbpress-forums div.bbp-topic-content h1,#bbpress-forums div.bbp-topic-content h2,#bbpress-forums div.bbp-topic-content h3,#bbpress-forums div.bbp-topic-content h4,#bbpress-forums div.bbp-topic-content h5,#bbpress-forums div.bbp-topic-content h6{clear:none;line-height:1em;margin:24px 0;padding:0}#bbpress-forums div.bbp-reply-content img,#bbpress-forums div.bbp-topic-content img{max-width:100%;height:auto}#bbpress-forums div.bbp-reply-content ol,#bbpress-forums div.bbp-reply-content ul,#bbpress-forums div.bbp-topic-content ol,#bbpress-forums div.bbp-topic-content ul{margin:0 15px 15px;padding:0}#bbpress-forums div.bbp-reply-content ul li,#bbpress-forums div.bbp-topic-content ul li{list-style-type:disc}#bbpress-forums div.bbp-reply-content ol li,#bbpress-forums div.bbp-topic-content ol li{list-style-type:decimal}#bbpress-forums div.bbp-reply-content ol li li,#bbpress-forums div.bbp-topic-content ol li li{list-style-type:lower-alpha}#bbpress-forums div.bbp-reply-content ol li li li,#bbpress-forums div.bbp-topic-content ol li li li{list-style-type:upper-roman}#bbpress-forums div.bbp-reply-content code,#bbpress-forums div.bbp-reply-content pre,#bbpress-forums div.bbp-topic-content code,#bbpress-forums div.bbp-topic-content pre{font-family:Inconsolata,Consolas,Monaco,"Lucida Console",monospace;display:inline-block;background-color:#f9f9f9;border:1px solid #ddd;padding:0 5px;max-width:95%;vertical-align:middle;margin-top:-3px;overflow-x:auto}#bbpress-forums div.bbp-reply-content pre,#bbpress-forums div.bbp-topic-content pre{display:block;line-height:18px;margin:0 0 24px;padding:5px 10px;white-space:pre;overflow:auto}#bbpress-forums div.bbp-reply-content pre code,#bbpress-forums div.bbp-topic-content pre code{display:block;border:none;padding:0;margin:0;background-color:transparent;overflow-wrap:normal;overflow:auto;max-width:100%}#bbpress-forums div.bbp-reply-to{margin-right:130px;padding:12px 0 12px 12px;text-align:left}#bbpress-forums div#bbp-cancel-reply-to{text-align:left}div.bbp-breadcrumb{float:right}#bbpress-forums div.bbp-search-form,#bbpress-forums div.bbp-topic-tags{float:left}div.bbp-breadcrumb,div.bbp-topic-tags{font-size:12px}#bbpress-forums div.bbp-breadcrumb p,#bbpress-forums div.bbp-topic-tags p{margin-bottom:10px}#bbp-topic-hot-tags{clear:both}#bbpress-forums #bbp-search-form{clear:right}#bbpress-forums #bbp-search-form .hidden{height:0;width:0;overflow:hidden;position:absolute;background:0 0;right:-999em}#bbpress-forums #bbp-search-form #bbp_search{display:inline-block;width:auto}span.bbp-admin-links{float:left;color:#ddd}span.bbp-admin-links a{color:#bbb;font-weight:400;font-size:10px;text-transform:uppercase;text-decoration:none}fieldset span.bbp-admin-links{float:right}tr td span.bbp-admin-links a:hover{color:#ff4b33}td.bbp-topic-admin-links,td.bbp-topic-counts{width:50%}.bbp-forum-header a.bbp-forum-permalink,.bbp-reply-header a.bbp-reply-permalink,.bbp-topic-header a.bbp-topic-permalink{float:left;margin-right:10px;color:#ccc}.bbp-row-actions #favorite-toggle a{text-decoration:none;padding:0 3px 1px;color:#7c7;border:1px solid #aca;background-color:#dfd;font-weight:700;font-size:13px}.bbp-row-actions #favorite-toggle a:hover{color:#5a5;border-color:#7c7;background-color:#beb}.bbp-row-actions #favorite-toggle span.is-favorite a{color:#faa;border:1px solid #faa;background-color:#fee}.bbp-row-actions #favorite-toggle span.is-favorite a:hover{color:#c88;border-color:#c88;background-color:#fdd}.bbp-row-actions #subscription-toggle a{text-decoration:none;padding:0 3px 1px;color:#7c7;border:1px solid #aca;background-color:#dfd;font-weight:700;font-size:13px}.bbp-row-actions #subscription-toggle a:hover{color:#5a5;border-color:#7c7;background-color:#beb}.bbp-row-actions #subscription-toggle span.is-subscribed a{color:#faa;border:1px solid #faa;background-color:#fee}.bbp-row-actions #subscription-toggle span.is-subscribed a:hover{color:#c88;border-color:#c88;background-color:#fdd}#bbpress-forums .bbp-forum-info .bbp-forum-content,#bbpress-forums p.bbp-topic-meta{font-size:11px;margin:5px 0;padding:0;word-wrap:break-word}#bbpress-forums p.bbp-topic-meta span{white-space:nowrap}.bbp-pagination-count{float:right;border:1px solid transparent}.bbp-pagination-links{float:left;list-style:none;display:inline}.bbp-pagination-links a,.bbp-pagination-links span.current{display:block;float:right;padding:0 5px;margin-right:5px;border:1px solid #efefef;text-decoration:none}.bbp-pagination-links a:hover,.bbp-pagination-links span.current{background:#eee;opacity:.8;border:1px solid #ddd}.bbp-pagination-links span.dots{display:block;float:right;padding:1px 4px;margin-right:5px}.bbp-pagination{float:right;width:100%;margin-bottom:15px}.bbp-topic-pagination{display:inline-block;margin-right:5px;margin-bottom:2px}.bbp-topic-pagination a{font-size:10px;line-height:10px;padding:1px 3px;border:1px solid #ddd;text-decoration:none}#bbpress-forums fieldset.bbp-form{clear:right;border:1px solid #eee;padding:10px 20px;margin-bottom:10px}#bbpress-forums fieldset.bbp-form legend{padding:5px}#bbpress-forums fieldset.bbp-form label{margin:0;display:inline-block}#bbp-edit-topic-tag.bbp-form fieldset.bbp-form label,#bbp-login fieldset label,#bbp-lost-pass fieldset label,#bbp-register fieldset label{width:100px}#bbpress-forums fieldset.bbp-form input,#bbpress-forums fieldset.bbp-form p,#bbpress-forums fieldset.bbp-form select,#bbpress-forums fieldset.bbp-form textarea{margin:0 0 8px}textarea#bbp_forum_content,textarea#bbp_reply_content,textarea#bbp_topic_content{width:97%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}textarea#bbp_forum_content{height:210px}#bbpress-forums fieldset.bbp-forum-form-attributes{width:200px;float:left;clear:none;margin-right:25px}#bbpress-forums fieldset select#bbp_forum_id{max-width:200px}.bbp-reply-form,.bbp-topic-form,.bbp-topic-tag-form{clear:right}body.reply-edit .bbp-reply-form div.avatar img,body.single-forum .bbp-topic-form div.avatar img,body.single-reply .bbp-reply-form div.avatar img,body.topic-edit .bbp-topic-form div.avatar img{margin-left:0;padding:10px;border:1px solid #ddd;line-height:0;background-color:#efefef}body.page .bbp-reply-form code,body.page .bbp-topic-form code,body.reply-edit .bbp-reply-form code,body.single-forum .bbp-topic-form code,body.single-topic .bbp-reply-form code,body.topic-edit .bbp-topic-form code{font-size:10px;background-color:#f0fff8;border:1px solid #ceefe1;display:block;padding:8px;margin-top:5px;width:369px}#delete_tag,#merge_tag{display:inline}div.bbp-submit-wrapper{margin-top:15px;float:left;clear:both}p.form-allowed-tags{max-width:100%}#bbpress-forums div.bbp-the-content-wrapper{margin-bottom:10px}#bbpress-forums div.bbp-the-content-wrapper textarea.bbp-the-content{width:100%;margin:0;font-size:12px}#bbpress-forums div.bbp-the-content-wrapper table,#bbpress-forums div.bbp-the-content-wrapper tbody,#bbpress-forums div.bbp-the-content-wrapper td,#bbpress-forums div.bbp-the-content-wrapper tr{border:none;padding:0;margin:0;width:auto;line-height:1em}#bbpress-forums div.bbp-the-content-wrapper input{font-size:12px;padding:5px;margin:0 0 0 2px;line-height:1em}#bbpress-forums div.bbp-the-content-wrapper div.quicktags-toolbar{padding:5px;min-height:26px}#bbpress-forums div.bbp-the-content-wrapper td.mceToolbar{padding:4px 4px 8px}#bbpress-forums div.wp-editor-container{margin:0;padding:0;line-height:0}#bbpress-forums div.bbp-the-content-wrapper td.mceStatusbar{line-height:16px}#bbpress-forums #bbp-your-profile fieldset{padding:20px 20px 0}#bbpress-forums #bbp-your-profile fieldset div{margin-bottom:20px;float:right;width:100%;clear:right}#bbpress-forums #bbp-your-profile fieldset select{margin-bottom:0}#bbpress-forums #bbp-your-profile fieldset input,#bbpress-forums #bbp-your-profile fieldset textarea{margin-bottom:0;width:60%;background:#f9f9f9;border:1px solid #ddd;-webkit-box-shadow:none;box-shadow:none;padding:5px 8px;-webkit-border-radius:0;border-radius:0}#bbpress-forums #bbp-your-profile fieldset input:focus,#bbpress-forums #bbp-your-profile fieldset textarea:focus{border:1px solid #ccc;-webkit-box-shadow:inset -1px 1px 1px rgba(0,0,0,.1);box-shadow:inset -1px 1px 1px rgba(0,0,0,.1);outline-color:rgba(240,255,240,.1)}#bbpress-forums #bbp-your-profile fieldset.bbp-form input.checkbox{width:auto}#bbpress-forums #bbp-your-profile fieldset legend{display:none}#bbpress-forums #bbp-your-profile fieldset label[for]{float:right;width:20%;padding:5px 0 5px 20px;text-align:left;cursor:pointer}#bbpress-forums #bbp-your-profile fieldset dl label[for]{text-align:right;width:60%}#bbpress-forums #bbp-your-profile fieldset span.description{margin:5px 20% 0 0;font-size:12px;font-style:italic;float:right;clear:right;width:60%;padding:5px 8px;border:1px solid #cee1ef;background-color:#f0f8ff}#bbpress-forums #bbp-your-profile fieldset fieldset{margin:0;border:none;padding:0;clear:none;float:none}#bbpress-forums #bbp-your-profile fieldset fieldset.password{width:60%;display:inline}#bbpress-forums #bbp-your-profile fieldset fieldset.password input,#bbpress-forums #bbp-your-profile fieldset fieldset.password span{width:100%}#bbpress-forums #bbp-your-profile fieldset fieldset.capabilities dl{margin:0}#bbpress-forums #bbp-your-profile fieldset fieldset.password span.description{margin-right:0;margin-bottom:20px}#bbpress-forums #bbp-your-profile fieldset.submit button{float:left}div.bbp-template-notice,div.indicator-hint{border-width:1px;border-style:solid;padding:0 .6em;margin:5px 0 15px;-webkit-border-radius:3px;border-radius:3px;background-color:#ffffe0;border-color:#e6db55;color:#000;clear:both}div.bbp-template-notice a{color:#555;text-decoration:none}div.bbp-template-notice a:hover{color:#000}div.bbp-template-notice.info{border:1px solid #cee1ef;background-color:#f0f8ff}div.bbp-template-notice.important{border:1px solid #e6db55;background-color:#fffbcc}div.bbp-template-notice.error,div.bbp-template-notice.warning{background-color:#ffebe8;border-color:#c00}div.bbp-template-notice.error a,div.bbp-template-notice.warning a{color:#c00}div.bbp-template-notice li,div.bbp-template-notice p{margin:.5em 0 6px!important;padding:2px;font-size:12px;line-height:140%}.bbp-forum-content ul.sticky,.bbp-topics ul.sticky,.bbp-topics ul.super-sticky,.bbp-topics-front ul.super-sticky{background-color:#ffffe0!important;font-size:1.1em}#bbpress-forums .bbp-reply-content ul.bbp-reply-revision-log,#bbpress-forums .bbp-reply-content ul.bbp-topic-revision-log,#bbpress-forums .bbp-topic-content ul.bbp-topic-revision-log{border-top:1px dotted #ddd;width:100%;margin:0;padding:8px 0 0;font-size:11px;color:#aaa}#bbpress-forums .bbp-reply-content ul.bbp-reply-revision-log li,#bbpress-forums .bbp-reply-content ul.bbp-topic-revision-log li,#bbpress-forums .bbp-topic-content ul.bbp-topic-revision-log li{list-style-type:none}.bbp-login-form fieldset legend{display:none}.bbp-login-form .bbp-email input,.bbp-login-form .bbp-password input,.bbp-login-form .bbp-username input{padding:5px}.bbp-login-form label{width:140px;display:inline-block}#sidebar .bbp-login-form label{width:70px}.bbp-login-form .bbp-email,.bbp-login-form .bbp-password,.bbp-login-form .bbp-remember-me,.bbp-login-form .bbp-submit-wrapper,.bbp-login-form .bbp-username{margin-top:10px}.bbp-login-form .bbp-submit-wrapper{text-align:left}.bbp-login-form .bbp-login-links a{float:right;clear:right}.bbp-logged-in img.avatar{float:right;margin:0 0 0 15px}.bbp-logged-in h4{font-weight:700;font-size:1.3em;clear:none;margin-bottom:10px}#bbpress-forums .widget_display_replies img.avatar,#bbpress-forums .widget_display_topics img.avatar,#bbpress-forums div.bbp-template-notice img.avatar,#bbpress-forums p.bbp-topic-meta img.avatar,#bbpress-forums ul.bbp-reply-revision-log img.avatar,#bbpress-forums ul.bbp-topic-revision-log img.avatar{float:none;margin-bottom:-7px;border:3px double #ddd}fieldset div.avatar{float:left}.activity-list li.bbp_reply_create .activity-content .activity-inner,.activity-list li.bbp_topic_create .activity-content .activity-inner{border-right:2px solid #eaeaea;margin-right:5px;padding-right:10px}#bbpress-forums h1{clear:none;font-size:1.8em;line-height:1em;padding-bottom:10px}#bbpress-forums #bbp-user-wrapper{float:right;width:100%}#bbpress-forums .bbp-user-section{overflow:auto}#bbpress-forums #bbp-user-wrapper h2.entry-title{font-size:1.4em;margin:0;padding-bottom:10px;padding-top:0;clear:none}#bbpress-forums #bbp-user-wrapper fieldset.bbp-form,#bbpress-forums #bbp-user-wrapper ul.bbp-forums,#bbpress-forums #bbp-user-wrapper ul.bbp-lead-topic,#bbpress-forums #bbp-user-wrapper ul.bbp-replies,#bbpress-forums #bbp-user-wrapper ul.bbp-topics{clear:none}#bbpress-forums #bbp-single-user-details{margin:0;width:150px;float:right;overflow:hidden}#bbpress-forums #bbp-single-user-details #bbp-user-avatar{margin:0;width:150px}#bbpress-forums #bbp-single-user-details #bbp-user-avatar img.avatar{border:none;height:150px;padding:0;margin:0 0 20px;width:150px}#bbpress-forums #bbp-single-user-details #bbp-user-description{float:none;margin-right:180px}#bbpress-forums #bbp-single-user-details #bbp-user-navigation{float:none;margin:0}#bbpress-forums #bbp-single-user-details #bbp-user-navigation li{margin:0}#bbpress-forums #bbp-single-user-details #bbp-user-navigation a{padding:5px 8px;display:block;border:1px solid transparent;text-decoration:none}#bbpress-forums #bbp-single-user-details #bbp-user-navigation li.current a{background:#eee;opacity:.8}#bbpress-forums #bbp-user-body{margin-right:180px}body.my-account #bbpress-forums{border-top:none;padding-top:0;margin-bottom:0}#bbpress-forums dl.bbp-user-capabilities{display:inline-block;vertical-align:top}#bbpress-forums dl.bbp-user-capabilities dt{margin:0 0 10px;text-transform:capitalize}#bbpress-forums dl.bbp-user-capabilities dd{margin:0;padding:0}#bbpress-forums div.row-actions{font-size:11px;visibility:hidden}#bbpress-forums li:hover>div.row-actions{visibility:visible}@media only screen and (max-width:480px){#bbpress-forums div.bbp-topic-tags,span.bbp-admin-links{clear:right;float:right}div.bbp-submit-wrapper,span.bbp-admin-links,span.bbp-reply-post-date,span.bbp-topic-post-date{float:right}div.bbp-search-form button,div.bbp-search-form input{font-size:11px;padding:2px}li.bbp-forum-info,li.bbp-topic-title{width:45%}li.bbp-forum-reply-count,li.bbp-forum-topic-count,li.bbp-topic-reply-count,li.bbp-topic-voice-count{width:15%}#bbpress-forums .bbp-forums-list li{display:block;font-size:11px}#bbpress-forums .bbp-body div.bbp-reply-author,#bbpress-forums .bbp-body div.bbp-topic-author{margin:-15px 10px 10px;min-height:100px;padding-right:80px;position:relative;text-align:right;width:100%}#bbpress-forums div.bbp-reply-author a.bbp-author-name,#bbpress-forums div.bbp-topic-author a.bbp-author-name{clear:none;display:inline-block;margin-right:0;word-wrap:break-word}#bbpress-forums div.bbp-reply-author img.avatar,#bbpress-forums div.bbp-topic-author img.avatar{position:absolute;top:15px;right:0;width:60px;height:auto}#bbpress-forums div.bbp-reply-author .bbp-author-role,#bbpress-forums div.bbp-topic-author .bbp-author-role{font-size:12px;font-style:normal}#bbpress-forums .bbp-body div.bbp-reply-content,#bbpress-forums .bbp-body div.bbp-topic-content{clear:both;margin:10px;padding:0}#bbpress-forums div.bbp-reply-content p,#bbpress-forums div.bbp-topic-content p{margin-bottom:1em}#bbpress-forums fieldset.bbp-form{padding:0 10px 10px}#bbpress-forums #bbp-user-body{clear:both;margin-right:0;word-wrap:break-word}#bbpress-forums div.bbp-forum-title h3,#bbpress-forums div.bbp-reply-title h3,#bbpress-forums div.bbp-topic-title h3{font-size:14px}}@media only screen and (max-width:320px){#bbpress-forums div.bbp-search-form{margin-bottom:10px}#bbpress-forums li.bbp-body li.bbp-forum-info,#bbpress-forums li.bbp-body li.bbp-topic-title,#bbpress-forums li.bbp-header li.bbp-forum-info,#bbpress-forums li.bbp-header li.bbp-topic-title{width:100%}#bbpress-forums li.bbp-header li.bbp-forum-info,#bbpress-forums li.bbp-header li.bbp-topic-title{text-align:center;text-transform:uppercase}#bbpress-forums li.bbp-body li.bbp-forum-reply-count,#bbpress-forums li.bbp-body li.bbp-forum-topic-count,#bbpress-forums li.bbp-body li.bbp-topic-reply-count,#bbpress-forums li.bbp-body li.bbp-topic-voice-count,#bbpress-forums li.bbp-header li.bbp-forum-reply-count,#bbpress-forums li.bbp-header li.bbp-forum-topic-count,#bbpress-forums li.bbp-header li.bbp-topic-reply-count,#bbpress-forums li.bbp-header li.bbp-topic-voice-count{width:20%}#bbpress-forums li.bbp-body li.bbp-forum-freshness,#bbpress-forums li.bbp-body li.bbp-topic-freshness,#bbpress-forums li.bbp-header li.bbp-forum-freshness,#bbpress-forums li.bbp-header li.bbp-topic-freshness{width:58%}#bbpress-forums li.bbp-body li.bbp-forum-freshness,#bbpress-forums li.bbp-body li.bbp-forum-reply-count,#bbpress-forums li.bbp-body li.bbp-forum-topic-count,#bbpress-forums li.bbp-body li.bbp-topic-freshness,#bbpress-forums li.bbp-body li.bbp-topic-reply-count,#bbpress-forums li.bbp-body li.bbp-topic-voice-count{margin-top:7px}#bbpress-forums li.bbp-footer,#bbpress-forums li.bbp-header{font-size:10px}#bbpress-forums li.bbp-header div.bbp-reply-author,#bbpress-forums li.bbp-header div.bbp-search-author,#bbpress-forums li.bbp-header div.bbp-topic-author{text-align:right;width:25%}#bbpress-forums li.bbp-header div.bbp-reply-content,#bbpress-forums li.bbp-header div.bbp-search-content,#bbpress-forums li.bbp-header div.bbp-topic-content{margin-right:25%}#bbpress-forums div.bbp-template-notice img.avatar,#bbpress-forums p.bbp-topic-meta img.avatar{width:14px;height:auto}#bbpress-forums div.bbp-the-content-wrapper td.mceToolbar{padding:1px}#bbpress-forums div.bbp-the-content-wrapper td.mceToolbar td{width:20px;height:20px}#bbpress-forums div.wp-editor-container{width:100%;overflow:auto}#bbpress-forums input#bbp_topic_tags,#bbpress-forums input#bbp_topic_title{width:95%}#bbpress-forums div.bbp-forum-title h3,#bbpress-forums div.bbp-reply-title h3,#bbpress-forums div.bbp-topic-title h3{font-size:14px}}@media only screen and (max-width:240px){#bbpress-forums li.bbp-body li.bbp-forum-reply-count,#bbpress-forums li.bbp-body li.bbp-forum-topic-count,#bbpress-forums li.bbp-body li.bbp-topic-reply-count,#bbpress-forums li.bbp-body li.bbp-topic-voice-count,#bbpress-forums li.bbp-footer div.bbp-reply-author,#bbpress-forums li.bbp-footer div.bbp-search-author,#bbpress-forums li.bbp-footer div.bbp-topic-author,#bbpress-forums li.bbp-header li.bbp-forum-reply-count,#bbpress-forums li.bbp-header li.bbp-forum-topic-count,#bbpress-forums li.bbp-header li.bbp-topic-reply-count,#bbpress-forums li.bbp-header li.bbp-topic-voice-count{width:45%}#bbpress-forums li.bbp-body li.bbp-forum-freshness,#bbpress-forums li.bbp-body li.bbp-topic-freshness,#bbpress-forums li.bbp-header li.bbp-forum-freshness,#bbpress-forums li.bbp-header li.bbp-topic-freshness{clear:both;width:100%}#bbpress-forums li.bbp-header li.bbp-forum-freshness,#bbpress-forums li.bbp-header li.bbp-topic-freshness{text-align:center}#bbpress-forums li.bbp-body li.bbp-topic-freshness,#bbpress-forums li.bbp-header div.bbp-reply-author,#bbpress-forums li.bbp-header div.bbp-reply-content,#bbpress-forums li.bbp-header div.bbp-search-author,#bbpress-forums li.bbp-header div.bbp-search-content,#bbpress-forums li.bbp-header div.bbp-topic-author,#bbpress-forums li.bbp-header div.bbp-topic-content{margin-right:0;text-align:right}#bbpress-forums li.bbp-body li.bbp-topic-freshness p.bbp-topic-meta{display:inline-block}#bbpress-forums li.bbp-header{overflow:hidden}#bbpress-forums li.bbp-footer div.bbp-reply-content,#bbpress-forums li.bbp-footer div.bbp-search-content,#bbpress-forums li.bbp-footer div.bbp-topic-content{display:inline-block;margin-right:0}#bbpress-forums li.bbp-body div.bbp-reply-author,#bbpress-forums li.bbp-body div.bbp-topic-author{min-height:60px;padding-right:60px}#bbpress-forums div.bbp-reply-author img.avatar,#bbpress-forums div.bbp-topic-author img.avatar{width:40px;height:auto}#bbpress-forums div.bbp-forum-title h3,#bbpress-forums div.bbp-reply-title h3,#bbpress-forums div.bbp-topic-title h3{font-size:12px}}
|
1 |
+
.entry-content .bbpress-wrapper a{-webkit-box-shadow:none;box-shadow:none}#bbpress-forums hr{margin:0 0 24px}#bbpress-forums{background:0 0;clear:both;margin-bottom:20px;overflow:hidden;font-size:12px}#bbpress-forums div.even,#bbpress-forums ul.even{background-color:#fff}#bbpress-forums div.odd,#bbpress-forums ul.odd{background-color:#fbfbfb}body.reply-edit .reply{float:none}#bbpress-forums div.reply{height:auto;width:100%}#bbpress-forums div.bbp-forum-header,#bbpress-forums div.bbp-reply-header,#bbpress-forums div.bbp-topic-header{background-color:#f4f4f4}#bbpress-forums .status-spam.even,#bbpress-forums .status-trash.even{background-color:#fee}#bbpress-forums .status-spam.odd,#bbpress-forums .status-trash.odd{background-color:#fdd}#bbpress-forums .status-pending.even,#bbpress-forums .status-pending.odd,#bbpress-forums ul.status-pending a{background-color:#fef7f1}#bbpress-forums ul.status-closed,#bbpress-forums ul.status-closed a{color:#ccc}#bbpress-forums ul{background:0 0;list-style:none;margin:0;padding:0}#bbpress-forums ul.bbp-threaded-replies{margin-right:50px}#bbpress-forums li{background:0 0;margin:0;list-style:none}#bbpress-forums ul.bbp-forums,#bbpress-forums ul.bbp-lead-topic,#bbpress-forums ul.bbp-replies,#bbpress-forums ul.bbp-search-results,#bbpress-forums ul.bbp-topics{font-size:12px;overflow:hidden;border:1px solid #eee;margin-bottom:20px;clear:both}#bbpress-forums li.bbp-body,#bbpress-forums li.bbp-footer,#bbpress-forums li.bbp-header{clear:both}#bbpress-forums li.bbp-footer,#bbpress-forums li.bbp-header{background:#f3f3f3;border-top:1px solid #eee;font-weight:700;padding:8px;text-align:center}#bbpress-forums li.bbp-header{background:#eaeaea}#bbpress-forums li.bbp-header ul{overflow:hidden}#bbpress-forums .bbp-forums-list{margin:0 5px 0 0;padding-right:15px;border-right:1px solid #ddd}#bbpress-forums .bbp-forums-list li{display:inline;font-size:11px}#bbpress-forums li.bbp-footer p{margin:0;line-height:1em}li.bbp-forum-info,li.bbp-topic-title{float:right;text-align:right;width:55%}li.bbp-forum-reply-count,li.bbp-forum-topic-count,li.bbp-topic-reply-count,li.bbp-topic-voice-count{float:right;text-align:center;width:10%}li.bbp-forum-freshness,li.bbp-topic-freshness{text-align:center;float:right;width:22%}#bbpress-forums li.bbp-body ul.forum,#bbpress-forums li.bbp-body ul.topic{border-top:1px solid #eee;overflow:hidden;padding:8px}#bbpress-forums #favorite-toggle,#bbpress-forums #subscription-toggle{float:left}#bbpress-forums div.bbp-forum-title h3,#bbpress-forums div.bbp-reply-title h3,#bbpress-forums div.bbp-topic-title h3{background:0 0;border:none;font-size:16px;line-height:1em;margin:8px 0;padding:0;text-transform:none}#bbpress-forums div.bbp-forum-author,#bbpress-forums div.bbp-reply-author,#bbpress-forums div.bbp-topic-author{float:right;text-align:center;width:115px}#bbpress-forums div.bbp-forum-author img.avatar,#bbpress-forums div.bbp-reply-author img.avatar,#bbpress-forums div.bbp-topic-author img.avatar{border:none;max-width:80px;padding:0;margin:12px auto 0;float:none}#bbpress-forums div.bbp-forum-author a.bbp-author-name,#bbpress-forums div.bbp-reply-author a.bbp-author-name,#bbpress-forums div.bbp-topic-author a.bbp-author-name{margin:0 12px;word-wrap:break-word;display:inline-block}#bbpress-forums div.bbp-reply-author a.bbp-author-name,#bbpress-forums div.bbp-topic-author a.bbp-author-name{clear:right;display:block}#bbpress-forums div.bbp-forum-author .bbp-author-role,#bbpress-forums div.bbp-reply-author .bbp-author-role,#bbpress-forums div.bbp-topic-author .bbp-author-role{font-size:11px;font-style:italic}#bbpress-forums li.bbp-footer .bbp-forum-author,#bbpress-forums li.bbp-footer .bbp-reply-author,#bbpress-forums li.bbp-footer .bbp-search-author,#bbpress-forums li.bbp-footer .bbp-topic-author,#bbpress-forums li.bbp-header .bbp-forum-author,#bbpress-forums li.bbp-header .bbp-reply-author,#bbpress-forums li.bbp-header .bbp-search-author,#bbpress-forums li.bbp-header .bbp-topic-author{float:right;margin:0;padding:0;width:120px}#bbpress-forums li.bbp-footer .bbp-forum-content,#bbpress-forums li.bbp-footer .bbp-reply-content,#bbpress-forums li.bbp-footer .bbp-search-content,#bbpress-forums li.bbp-footer .bbp-topic-content,#bbpress-forums li.bbp-header .bbp-forum-content,#bbpress-forums li.bbp-header .bbp-reply-content,#bbpress-forums li.bbp-header .bbp-search-content,#bbpress-forums li.bbp-header .bbp-topic-content{margin-right:140px;padding:0;text-align:right}div.bbp-forum-header,div.bbp-reply-header,div.bbp-topic-header,li.bbp-body div.hentry{margin-bottom:0;overflow:hidden;padding:8px}div.bbp-forum-header,div.bbp-reply-header,div.bbp-topic-header{border-top:1px solid #ddd;clear:both}span.bbp-author-ip{font-size:11px;font-weight:700;word-wrap:break-word;color:#aaa}#bbpress-forums div.bbp-forum-content,#bbpress-forums div.bbp-reply-content,#bbpress-forums div.bbp-topic-content{margin-right:130px;padding:12px 0 12px 12px;text-align:right}#bbpress-forums div.bbp-forum-content:after,#bbpress-forums div.bbp-reply-content:after,#bbpress-forums div.bbp-topic-content:after{clear:both;content:".";display:block;float:none;height:0;font-size:0;visibility:hidden}#bbpress-forums div.bbp-reply-content a,#bbpress-forums div.bbp-topic-content a{background:0 0;border:none;display:inline;font-weight:400;margin:0;padding:0}#bbpress-forums div.bbp-reply-content h1,#bbpress-forums div.bbp-reply-content h2,#bbpress-forums div.bbp-reply-content h3,#bbpress-forums div.bbp-reply-content h4,#bbpress-forums div.bbp-reply-content h5,#bbpress-forums div.bbp-reply-content h6,#bbpress-forums div.bbp-topic-content h1,#bbpress-forums div.bbp-topic-content h2,#bbpress-forums div.bbp-topic-content h3,#bbpress-forums div.bbp-topic-content h4,#bbpress-forums div.bbp-topic-content h5,#bbpress-forums div.bbp-topic-content h6{clear:none;line-height:1em;margin:24px 0;padding:0}#bbpress-forums div.bbp-reply-content img,#bbpress-forums div.bbp-topic-content img{max-width:100%;height:auto}#bbpress-forums div.bbp-reply-content ol,#bbpress-forums div.bbp-reply-content ul,#bbpress-forums div.bbp-topic-content ol,#bbpress-forums div.bbp-topic-content ul{margin:0 15px 15px;padding:0}#bbpress-forums div.bbp-reply-content ul li,#bbpress-forums div.bbp-topic-content ul li{list-style-type:disc}#bbpress-forums div.bbp-reply-content ol li,#bbpress-forums div.bbp-topic-content ol li{list-style-type:decimal}#bbpress-forums div.bbp-reply-content ol li li,#bbpress-forums div.bbp-topic-content ol li li{list-style-type:lower-alpha}#bbpress-forums div.bbp-reply-content ol li li li,#bbpress-forums div.bbp-topic-content ol li li li{list-style-type:upper-roman}#bbpress-forums div.bbp-reply-content code,#bbpress-forums div.bbp-reply-content pre,#bbpress-forums div.bbp-topic-content code,#bbpress-forums div.bbp-topic-content pre{font-family:Inconsolata,Consolas,Monaco,"Lucida Console",monospace;display:inline-block;background-color:#f9f9f9;border:1px solid #ddd;padding:0 5px;max-width:95%;vertical-align:middle;margin-top:-3px;overflow-x:auto}#bbpress-forums div.bbp-reply-content pre,#bbpress-forums div.bbp-topic-content pre{display:block;line-height:18px;margin:0 0 24px;padding:5px 10px;white-space:pre;overflow:auto}#bbpress-forums div.bbp-reply-content pre code,#bbpress-forums div.bbp-topic-content pre code{display:block;border:none;padding:0;margin:0;background-color:transparent;overflow-wrap:normal;overflow:auto;max-width:100%}#bbpress-forums div.bbp-reply-to{margin-right:130px;padding:12px 0 12px 12px;text-align:left}#bbpress-forums div#bbp-cancel-reply-to{text-align:left}div.bbp-breadcrumb{float:right}#bbpress-forums div.bbp-search-form,#bbpress-forums div.bbp-topic-tags{float:left}div.bbp-breadcrumb,div.bbp-topic-tags{font-size:12px}#bbpress-forums div.bbp-breadcrumb p,#bbpress-forums div.bbp-topic-tags p{margin-bottom:10px}#bbp-topic-hot-tags{clear:both}#bbpress-forums #bbp-search-form{clear:right}#bbpress-forums #bbp-search-form .hidden{height:0;width:0;overflow:hidden;position:absolute;background:0 0;right:-999em}#bbpress-forums #bbp-search-form #bbp_search{display:inline-block;width:auto}span.bbp-admin-links{float:left;color:#ddd}span.bbp-admin-links a{color:#bbb;font-weight:400;font-size:10px;text-transform:uppercase;text-decoration:none}fieldset span.bbp-admin-links{float:right}tr td span.bbp-admin-links a:hover{color:#ff4b33}td.bbp-topic-admin-links,td.bbp-topic-counts{width:50%}.bbp-forum-header a.bbp-forum-permalink,.bbp-reply-header a.bbp-reply-permalink,.bbp-topic-header a.bbp-topic-permalink{float:left;margin-right:10px;color:#ccc}.bbp-row-actions #favorite-toggle a{text-decoration:none;padding:0 3px 1px;color:#7c7;border:1px solid #aca;background-color:#dfd;font-weight:700;font-size:13px}.bbp-row-actions #favorite-toggle a:hover{color:#5a5;border-color:#7c7;background-color:#beb}.bbp-row-actions #favorite-toggle span.is-favorite a{color:#faa;border:1px solid #faa;background-color:#fee}.bbp-row-actions #favorite-toggle span.is-favorite a:hover{color:#c88;border-color:#c88;background-color:#fdd}.bbp-row-actions #subscription-toggle a{text-decoration:none;padding:0 3px 1px;color:#7c7;border:1px solid #aca;background-color:#dfd;font-weight:700;font-size:13px}.bbp-row-actions #subscription-toggle a:hover{color:#5a5;border-color:#7c7;background-color:#beb}.bbp-row-actions #subscription-toggle span.is-subscribed a{color:#faa;border:1px solid #faa;background-color:#fee}.bbp-row-actions #subscription-toggle span.is-subscribed a:hover{color:#c88;border-color:#c88;background-color:#fdd}#bbpress-forums .bbp-forum-info .bbp-forum-content,#bbpress-forums p.bbp-topic-meta{font-size:11px;margin:5px 0;padding:0;word-wrap:break-word}#bbpress-forums p.bbp-topic-meta span{white-space:nowrap}.bbp-pagination-count{float:right;border:1px solid transparent}.bbp-pagination-links{float:left;list-style:none;display:inline}.bbp-pagination-links a,.bbp-pagination-links span.current{display:block;float:right;padding:0 5px;margin-right:5px;border:1px solid #efefef;text-decoration:none}.bbp-pagination-links a:hover,.bbp-pagination-links span.current{background:#eee;opacity:.8;border:1px solid #ddd}.bbp-pagination-links span.dots{display:block;float:right;padding:1px 4px;margin-right:5px}.bbp-pagination{float:right;width:100%;margin-bottom:15px}.bbp-topic-pagination{display:inline-block;margin-right:5px;margin-bottom:2px}.bbp-topic-pagination a{font-size:10px;line-height:10px;padding:1px 3px;border:1px solid #ddd;text-decoration:none}#bbpress-forums fieldset.bbp-form{clear:right;border:1px solid #eee;padding:10px 20px;margin-bottom:10px}#bbpress-forums fieldset.bbp-form legend{padding:5px}#bbpress-forums fieldset.bbp-form label{margin:0;display:inline-block}#bbp-edit-topic-tag.bbp-form fieldset.bbp-form label,#bbp-login fieldset label,#bbp-lost-pass fieldset label,#bbp-register fieldset label{width:100px}#bbpress-forums fieldset.bbp-form input,#bbpress-forums fieldset.bbp-form p,#bbpress-forums fieldset.bbp-form select,#bbpress-forums fieldset.bbp-form textarea{margin:0 0 8px}textarea#bbp_forum_content,textarea#bbp_reply_content,textarea#bbp_topic_content{width:97%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}textarea#bbp_forum_content{height:210px}#bbpress-forums fieldset.bbp-forum-form-attributes{width:200px;float:left;clear:none;margin-right:25px}#bbpress-forums fieldset select#bbp_forum_id{max-width:200px}.bbp-reply-form,.bbp-topic-form,.bbp-topic-tag-form{clear:right}body.reply-edit .bbp-reply-form div.avatar img,body.single-forum .bbp-topic-form div.avatar img,body.single-reply .bbp-reply-form div.avatar img,body.topic-edit .bbp-topic-form div.avatar img{margin-left:0;padding:10px;border:1px solid #ddd;line-height:0;background-color:#efefef}body.page .bbp-reply-form code,body.page .bbp-topic-form code,body.reply-edit .bbp-reply-form code,body.single-forum .bbp-topic-form code,body.single-topic .bbp-reply-form code,body.topic-edit .bbp-topic-form code{font-size:10px;background-color:#f0fff8;border:1px solid #ceefe1;display:block;padding:8px;margin-top:5px;width:369px}#delete_tag,#merge_tag{display:inline}div.bbp-submit-wrapper{margin-top:15px;float:left;clear:both}p.form-allowed-tags{max-width:100%}#bbpress-forums div.bbp-the-content-wrapper{margin-bottom:10px}#bbpress-forums div.bbp-the-content-wrapper textarea.bbp-the-content{width:100%;margin:0;font-size:12px}#bbpress-forums div.bbp-the-content-wrapper table,#bbpress-forums div.bbp-the-content-wrapper tbody,#bbpress-forums div.bbp-the-content-wrapper td,#bbpress-forums div.bbp-the-content-wrapper tr{border:none;padding:0;margin:0;width:auto;line-height:1em}#bbpress-forums div.bbp-the-content-wrapper input{font-size:12px;padding:5px;margin:0 0 0 2px;line-height:1em}#bbpress-forums div.bbp-the-content-wrapper div.quicktags-toolbar{padding:5px;min-height:26px}#bbpress-forums div.bbp-the-content-wrapper td.mceToolbar{padding:4px 4px 8px}#bbpress-forums div.wp-editor-container{margin:0;padding:0;line-height:0}#bbpress-forums div.bbp-the-content-wrapper td.mceStatusbar{line-height:16px}#bbpress-forums #bbp-your-profile fieldset{padding:20px 20px 0}#bbpress-forums #bbp-your-profile fieldset div{margin-bottom:20px;float:right;width:100%;clear:right}#bbpress-forums #bbp-your-profile fieldset select{margin-bottom:0}#bbpress-forums #bbp-your-profile fieldset input,#bbpress-forums #bbp-your-profile fieldset textarea{margin-bottom:0;width:60%;background:#f9f9f9;border:1px solid #ddd;-webkit-box-shadow:none;box-shadow:none;padding:5px 8px;-webkit-border-radius:0;border-radius:0}#bbpress-forums #bbp-your-profile fieldset input:focus,#bbpress-forums #bbp-your-profile fieldset textarea:focus{border:1px solid #ccc;-webkit-box-shadow:inset -1px 1px 1px rgba(0,0,0,.1);box-shadow:inset -1px 1px 1px rgba(0,0,0,.1);outline-color:rgba(240,255,240,.1)}#bbpress-forums #bbp-your-profile fieldset.bbp-form input.checkbox{width:auto}#bbpress-forums #bbp-your-profile fieldset legend{display:none}#bbpress-forums #bbp-your-profile fieldset label[for]{float:right;width:20%;padding:5px 0 5px 20px;text-align:left;cursor:pointer}#bbpress-forums #bbp-your-profile fieldset dl label[for]{text-align:right;width:60%}#bbpress-forums #bbp-your-profile fieldset span.description{margin:5px 20% 0 0;font-size:12px;font-style:italic;float:right;clear:right;width:60%;padding:5px 8px;border:1px solid #cee1ef;background-color:#f0f8ff}#bbpress-forums #bbp-your-profile fieldset fieldset{margin:0;border:none;padding:0;clear:none;float:none}#bbpress-forums #bbp-your-profile fieldset fieldset.password{width:60%;display:inline}#bbpress-forums #bbp-your-profile fieldset fieldset.password input,#bbpress-forums #bbp-your-profile fieldset fieldset.password span{width:100%}#bbpress-forums #bbp-your-profile fieldset fieldset.capabilities dl{margin:0}#bbpress-forums #bbp-your-profile fieldset fieldset.password span.description{margin-right:0;margin-bottom:20px}#bbpress-forums #bbp-your-profile fieldset.submit button{float:left}div.bbp-template-notice,div.indicator-hint{border-width:1px;border-style:solid;padding:0 .6em;margin:5px 0 15px;-webkit-border-radius:3px;border-radius:3px;background-color:#ffffe0;border-color:#e6db55;color:#000;clear:both}div.bbp-template-notice a{color:#555;text-decoration:none}div.bbp-template-notice a:hover{color:#000}div.bbp-template-notice.info{border:1px solid #cee1ef;background-color:#f0f8ff}div.bbp-template-notice.important{border:1px solid #e6db55;background-color:#fffbcc}div.bbp-template-notice.error,div.bbp-template-notice.warning{background-color:#ffebe8;border-color:#c00}div.bbp-template-notice.error a,div.bbp-template-notice.warning a{color:#c00}div.bbp-template-notice li,div.bbp-template-notice p{margin:.5em 0 6px!important;padding:2px;font-size:12px;line-height:140%}.bbp-forum-content ul.sticky,.bbp-topics ul.sticky,.bbp-topics ul.super-sticky,.bbp-topics-front ul.super-sticky{background-color:#ffffe0!important;font-size:1.1em}#bbpress-forums .bbp-reply-content ul.bbp-reply-revision-log,#bbpress-forums .bbp-reply-content ul.bbp-topic-revision-log,#bbpress-forums .bbp-topic-content ul.bbp-topic-revision-log{border-top:1px dotted #ddd;width:100%;margin:0;padding:8px 0 0;font-size:11px;color:#aaa}#bbpress-forums .bbp-reply-content ul.bbp-reply-revision-log li,#bbpress-forums .bbp-reply-content ul.bbp-topic-revision-log li,#bbpress-forums .bbp-topic-content ul.bbp-topic-revision-log li{list-style-type:none}.bbp-login-form fieldset legend{display:none}.bbp-login-form .bbp-email input,.bbp-login-form .bbp-password input,.bbp-login-form .bbp-username input{padding:5px}.bbp-login-form label{width:140px;display:inline-block}#sidebar .bbp-login-form label{width:70px}.bbp-login-form .bbp-email,.bbp-login-form .bbp-password,.bbp-login-form .bbp-remember-me,.bbp-login-form .bbp-submit-wrapper,.bbp-login-form .bbp-username{margin-top:10px}.bbp-login-form .bbp-submit-wrapper{text-align:left}.bbp-login-form .bbp-login-links a{float:right;clear:right}.bbp-logged-in img.avatar{float:right;margin:0 0 0 15px}.bbp-logged-in h4{font-weight:700;font-size:1.3em;clear:none;margin-bottom:10px}#bbpress-forums .widget_display_replies img.avatar,#bbpress-forums .widget_display_topics img.avatar,#bbpress-forums div.bbp-template-notice img.avatar,#bbpress-forums p.bbp-topic-meta img.avatar,#bbpress-forums ul.bbp-reply-revision-log img.avatar,#bbpress-forums ul.bbp-topic-revision-log img.avatar{float:none;margin-bottom:-7px;border:3px double #ddd}fieldset div.avatar{float:left}.activity-list li.bbp_reply_create .activity-content .activity-inner,.activity-list li.bbp_topic_create .activity-content .activity-inner{border-right:2px solid #eaeaea;margin-right:5px;padding-right:10px}#bbpress-forums h1{clear:none;font-size:1.8em;line-height:1em;padding-bottom:10px}#bbpress-forums #bbp-user-wrapper{float:right;width:100%}#bbpress-forums .bbp-user-section{overflow:auto}#bbpress-forums #bbp-user-wrapper h2.entry-title{font-size:1.4em;margin:0;padding-bottom:10px;padding-top:0;clear:none}#bbpress-forums #bbp-user-wrapper fieldset.bbp-form,#bbpress-forums #bbp-user-wrapper ul.bbp-forums,#bbpress-forums #bbp-user-wrapper ul.bbp-lead-topic,#bbpress-forums #bbp-user-wrapper ul.bbp-replies,#bbpress-forums #bbp-user-wrapper ul.bbp-topics{clear:none}#bbpress-forums #bbp-single-user-details{margin:0;width:150px;float:right;overflow:hidden}#bbpress-forums #bbp-single-user-details #bbp-user-avatar{margin:0;width:150px}#bbpress-forums #bbp-single-user-details #bbp-user-avatar img.avatar{border:none;height:150px;padding:0;margin:0 0 20px;width:150px}#bbpress-forums #bbp-single-user-details #bbp-user-description{float:none;margin-right:180px}#bbpress-forums #bbp-single-user-details #bbp-user-navigation{float:none;margin:0}#bbpress-forums #bbp-single-user-details #bbp-user-navigation li{margin:0}#bbpress-forums #bbp-single-user-details #bbp-user-navigation a{padding:5px 8px;display:block;border:1px solid transparent;text-decoration:none}#bbpress-forums #bbp-single-user-details #bbp-user-navigation li.current a{background:#eee;opacity:.8}#bbpress-forums #bbp-user-body{margin-right:180px}body.my-account #bbpress-forums{border-top:none;padding-top:0;margin-bottom:0}#bbpress-forums dl.bbp-user-capabilities{display:inline-block;vertical-align:top}#bbpress-forums dl.bbp-user-capabilities dt{margin:0 0 10px;text-transform:capitalize}#bbpress-forums dl.bbp-user-capabilities dd{margin:0;padding:0}#bbpress-forums div.row-actions{font-size:11px;visibility:hidden}#bbpress-forums li:hover>div.row-actions{visibility:visible}@media only screen and (max-width:480px){#bbpress-forums div.bbp-topic-tags,span.bbp-admin-links{clear:right;float:right}div.bbp-submit-wrapper,span.bbp-admin-links,span.bbp-reply-post-date,span.bbp-topic-post-date{float:right}div.bbp-search-form button,div.bbp-search-form input{font-size:11px;padding:2px}li.bbp-forum-info,li.bbp-topic-title{width:45%}li.bbp-forum-reply-count,li.bbp-forum-topic-count,li.bbp-topic-reply-count,li.bbp-topic-voice-count{width:15%}#bbpress-forums .bbp-forums-list li{display:block;font-size:11px}#bbpress-forums .bbp-body div.bbp-reply-author,#bbpress-forums .bbp-body div.bbp-topic-author{margin:-15px 10px 10px;min-height:100px;padding-right:80px;position:relative;text-align:right;width:100%}#bbpress-forums div.bbp-reply-author a.bbp-author-name,#bbpress-forums div.bbp-topic-author a.bbp-author-name{clear:none;display:inline-block;margin-right:0;word-wrap:break-word}#bbpress-forums div.bbp-reply-author img.avatar,#bbpress-forums div.bbp-topic-author img.avatar{position:absolute;top:15px;right:0;width:60px;height:auto}#bbpress-forums div.bbp-reply-author .bbp-author-role,#bbpress-forums div.bbp-topic-author .bbp-author-role{font-size:12px;font-style:normal}#bbpress-forums .bbp-body div.bbp-reply-content,#bbpress-forums .bbp-body div.bbp-topic-content{clear:both;margin:10px;padding:0}#bbpress-forums div.bbp-reply-content p,#bbpress-forums div.bbp-topic-content p{margin-bottom:1em}#bbpress-forums fieldset.bbp-form{padding:0 10px 10px}#bbpress-forums #bbp-user-body{clear:both;margin-right:0;word-wrap:break-word}#bbpress-forums div.bbp-forum-title h3,#bbpress-forums div.bbp-reply-title h3,#bbpress-forums div.bbp-topic-title h3{font-size:14px}}@media only screen and (max-width:320px){#bbpress-forums div.bbp-search-form{margin-bottom:10px}#bbpress-forums li.bbp-body li.bbp-forum-info,#bbpress-forums li.bbp-body li.bbp-topic-title,#bbpress-forums li.bbp-header li.bbp-forum-info,#bbpress-forums li.bbp-header li.bbp-topic-title{width:100%}#bbpress-forums li.bbp-header li.bbp-forum-info,#bbpress-forums li.bbp-header li.bbp-topic-title{text-align:center;text-transform:uppercase}#bbpress-forums li.bbp-body li.bbp-forum-reply-count,#bbpress-forums li.bbp-body li.bbp-forum-topic-count,#bbpress-forums li.bbp-body li.bbp-topic-reply-count,#bbpress-forums li.bbp-body li.bbp-topic-voice-count,#bbpress-forums li.bbp-header li.bbp-forum-reply-count,#bbpress-forums li.bbp-header li.bbp-forum-topic-count,#bbpress-forums li.bbp-header li.bbp-topic-reply-count,#bbpress-forums li.bbp-header li.bbp-topic-voice-count{width:20%}#bbpress-forums li.bbp-body li.bbp-forum-freshness,#bbpress-forums li.bbp-body li.bbp-topic-freshness,#bbpress-forums li.bbp-header li.bbp-forum-freshness,#bbpress-forums li.bbp-header li.bbp-topic-freshness{width:58%}#bbpress-forums li.bbp-body li.bbp-forum-freshness,#bbpress-forums li.bbp-body li.bbp-forum-reply-count,#bbpress-forums li.bbp-body li.bbp-forum-topic-count,#bbpress-forums li.bbp-body li.bbp-topic-freshness,#bbpress-forums li.bbp-body li.bbp-topic-reply-count,#bbpress-forums li.bbp-body li.bbp-topic-voice-count{margin-top:7px}#bbpress-forums li.bbp-footer,#bbpress-forums li.bbp-header{font-size:10px}#bbpress-forums li.bbp-header div.bbp-reply-author,#bbpress-forums li.bbp-header div.bbp-search-author,#bbpress-forums li.bbp-header div.bbp-topic-author{text-align:right;width:25%}#bbpress-forums li.bbp-header div.bbp-reply-content,#bbpress-forums li.bbp-header div.bbp-search-content,#bbpress-forums li.bbp-header div.bbp-topic-content{margin-right:25%}#bbpress-forums div.bbp-template-notice img.avatar,#bbpress-forums p.bbp-topic-meta img.avatar{width:14px;height:auto}#bbpress-forums div.bbp-the-content-wrapper td.mceToolbar{padding:1px}#bbpress-forums div.bbp-the-content-wrapper td.mceToolbar td{width:20px;height:20px}#bbpress-forums div.wp-editor-container{width:100%;overflow:auto}#bbpress-forums input#bbp_topic_tags,#bbpress-forums input#bbp_topic_title{width:95%}#bbpress-forums div.bbp-forum-title h3,#bbpress-forums div.bbp-reply-title h3,#bbpress-forums div.bbp-topic-title h3{font-size:14px}}@media only screen and (max-width:240px){#bbpress-forums li.bbp-body li.bbp-forum-reply-count,#bbpress-forums li.bbp-body li.bbp-forum-topic-count,#bbpress-forums li.bbp-body li.bbp-topic-reply-count,#bbpress-forums li.bbp-body li.bbp-topic-voice-count,#bbpress-forums li.bbp-footer div.bbp-reply-author,#bbpress-forums li.bbp-footer div.bbp-search-author,#bbpress-forums li.bbp-footer div.bbp-topic-author,#bbpress-forums li.bbp-header li.bbp-forum-reply-count,#bbpress-forums li.bbp-header li.bbp-forum-topic-count,#bbpress-forums li.bbp-header li.bbp-topic-reply-count,#bbpress-forums li.bbp-header li.bbp-topic-voice-count{width:45%}#bbpress-forums li.bbp-body li.bbp-forum-freshness,#bbpress-forums li.bbp-body li.bbp-topic-freshness,#bbpress-forums li.bbp-header li.bbp-forum-freshness,#bbpress-forums li.bbp-header li.bbp-topic-freshness{clear:both;width:100%}#bbpress-forums li.bbp-header li.bbp-forum-freshness,#bbpress-forums li.bbp-header li.bbp-topic-freshness{text-align:center}#bbpress-forums li.bbp-body li.bbp-topic-freshness,#bbpress-forums li.bbp-header div.bbp-reply-author,#bbpress-forums li.bbp-header div.bbp-reply-content,#bbpress-forums li.bbp-header div.bbp-search-author,#bbpress-forums li.bbp-header div.bbp-search-content,#bbpress-forums li.bbp-header div.bbp-topic-author,#bbpress-forums li.bbp-header div.bbp-topic-content{margin-right:0;text-align:right}#bbpress-forums li.bbp-body li.bbp-topic-freshness p.bbp-topic-meta{display:inline-block}#bbpress-forums li.bbp-header{overflow:hidden}#bbpress-forums li.bbp-footer div.bbp-reply-content,#bbpress-forums li.bbp-footer div.bbp-search-content,#bbpress-forums li.bbp-footer div.bbp-topic-content{display:inline-block;margin-right:0}#bbpress-forums li.bbp-body div.bbp-reply-author,#bbpress-forums li.bbp-body div.bbp-topic-author{min-height:60px;padding-right:60px}#bbpress-forums div.bbp-reply-author img.avatar,#bbpress-forums div.bbp-topic-author img.avatar{width:40px;height:auto}#bbpress-forums div.bbp-forum-title h3,#bbpress-forums div.bbp-reply-title h3,#bbpress-forums div.bbp-topic-title h3{font-size:12px}}
|
templates/default/css/bbpress.css
CHANGED
@@ -8,6 +8,11 @@
|
|
8 |
/* =bbPress Style
|
9 |
-------------------------------------------------------------- */
|
10 |
|
|
|
|
|
|
|
|
|
|
|
11 |
#bbpress-forums hr {
|
12 |
margin: 0 0 24px;
|
13 |
}
|
8 |
/* =bbPress Style
|
9 |
-------------------------------------------------------------- */
|
10 |
|
11 |
+
.entry-content .bbpress-wrapper a {
|
12 |
+
-webkit-box-shadow: none;
|
13 |
+
box-shadow: none;
|
14 |
+
}
|
15 |
+
|
16 |
#bbpress-forums hr {
|
17 |
margin: 0 0 24px;
|
18 |
}
|
templates/default/css/bbpress.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
#bbpress-forums hr{margin:0 0 24px}#bbpress-forums{background:0 0;clear:both;margin-bottom:20px;overflow:hidden;font-size:12px}#bbpress-forums div.even,#bbpress-forums ul.even{background-color:#fff}#bbpress-forums div.odd,#bbpress-forums ul.odd{background-color:#fbfbfb}body.reply-edit .reply{float:none}#bbpress-forums div.reply{height:auto;width:100%}#bbpress-forums div.bbp-forum-header,#bbpress-forums div.bbp-reply-header,#bbpress-forums div.bbp-topic-header{background-color:#f4f4f4}#bbpress-forums .status-spam.even,#bbpress-forums .status-trash.even{background-color:#fee}#bbpress-forums .status-spam.odd,#bbpress-forums .status-trash.odd{background-color:#fdd}#bbpress-forums .status-pending.even,#bbpress-forums .status-pending.odd,#bbpress-forums ul.status-pending a{background-color:#fef7f1}#bbpress-forums ul.status-closed,#bbpress-forums ul.status-closed a{color:#ccc}#bbpress-forums ul{background:0 0;list-style:none;margin:0;padding:0}#bbpress-forums ul.bbp-threaded-replies{margin-left:50px}#bbpress-forums li{background:0 0;margin:0;list-style:none}#bbpress-forums ul.bbp-forums,#bbpress-forums ul.bbp-lead-topic,#bbpress-forums ul.bbp-replies,#bbpress-forums ul.bbp-search-results,#bbpress-forums ul.bbp-topics{font-size:12px;overflow:hidden;border:1px solid #eee;margin-bottom:20px;clear:both}#bbpress-forums li.bbp-body,#bbpress-forums li.bbp-footer,#bbpress-forums li.bbp-header{clear:both}#bbpress-forums li.bbp-footer,#bbpress-forums li.bbp-header{background:#f3f3f3;border-top:1px solid #eee;font-weight:700;padding:8px;text-align:center}#bbpress-forums li.bbp-header{background:#eaeaea}#bbpress-forums li.bbp-header ul{overflow:hidden}#bbpress-forums .bbp-forums-list{margin:0 0 0 5px;padding-left:15px;border-left:1px solid #ddd}#bbpress-forums .bbp-forums-list li{display:inline;font-size:11px}#bbpress-forums li.bbp-footer p{margin:0;line-height:1em}li.bbp-forum-info,li.bbp-topic-title{float:left;text-align:left;width:55%}li.bbp-forum-reply-count,li.bbp-forum-topic-count,li.bbp-topic-reply-count,li.bbp-topic-voice-count{float:left;text-align:center;width:10%}li.bbp-forum-freshness,li.bbp-topic-freshness{text-align:center;float:left;width:22%}#bbpress-forums li.bbp-body ul.forum,#bbpress-forums li.bbp-body ul.topic{border-top:1px solid #eee;overflow:hidden;padding:8px}#bbpress-forums #favorite-toggle,#bbpress-forums #subscription-toggle{float:right}#bbpress-forums div.bbp-forum-title h3,#bbpress-forums div.bbp-reply-title h3,#bbpress-forums div.bbp-topic-title h3{background:0 0;border:none;font-size:16px;line-height:1em;margin:8px 0;padding:0;text-transform:none}#bbpress-forums div.bbp-forum-author,#bbpress-forums div.bbp-reply-author,#bbpress-forums div.bbp-topic-author{float:left;text-align:center;width:115px}#bbpress-forums div.bbp-forum-author img.avatar,#bbpress-forums div.bbp-reply-author img.avatar,#bbpress-forums div.bbp-topic-author img.avatar{border:none;max-width:80px;padding:0;margin:12px auto 0;float:none}#bbpress-forums div.bbp-forum-author a.bbp-author-name,#bbpress-forums div.bbp-reply-author a.bbp-author-name,#bbpress-forums div.bbp-topic-author a.bbp-author-name{margin:0 12px;word-wrap:break-word;display:inline-block}#bbpress-forums div.bbp-reply-author a.bbp-author-name,#bbpress-forums div.bbp-topic-author a.bbp-author-name{clear:left;display:block}#bbpress-forums div.bbp-forum-author .bbp-author-role,#bbpress-forums div.bbp-reply-author .bbp-author-role,#bbpress-forums div.bbp-topic-author .bbp-author-role{font-size:11px;font-style:italic}#bbpress-forums li.bbp-footer .bbp-forum-author,#bbpress-forums li.bbp-footer .bbp-reply-author,#bbpress-forums li.bbp-footer .bbp-search-author,#bbpress-forums li.bbp-footer .bbp-topic-author,#bbpress-forums li.bbp-header .bbp-forum-author,#bbpress-forums li.bbp-header .bbp-reply-author,#bbpress-forums li.bbp-header .bbp-search-author,#bbpress-forums li.bbp-header .bbp-topic-author{float:left;margin:0;padding:0;width:120px}#bbpress-forums li.bbp-footer .bbp-forum-content,#bbpress-forums li.bbp-footer .bbp-reply-content,#bbpress-forums li.bbp-footer .bbp-search-content,#bbpress-forums li.bbp-footer .bbp-topic-content,#bbpress-forums li.bbp-header .bbp-forum-content,#bbpress-forums li.bbp-header .bbp-reply-content,#bbpress-forums li.bbp-header .bbp-search-content,#bbpress-forums li.bbp-header .bbp-topic-content{margin-left:140px;padding:0;text-align:left}div.bbp-forum-header,div.bbp-reply-header,div.bbp-topic-header,li.bbp-body div.hentry{margin-bottom:0;overflow:hidden;padding:8px}div.bbp-forum-header,div.bbp-reply-header,div.bbp-topic-header{border-top:1px solid #ddd;clear:both}span.bbp-author-ip{font-size:11px;font-weight:700;word-wrap:break-word;color:#aaa}#bbpress-forums div.bbp-forum-content,#bbpress-forums div.bbp-reply-content,#bbpress-forums div.bbp-topic-content{margin-left:130px;padding:12px 12px 12px 0;text-align:left}#bbpress-forums div.bbp-forum-content:after,#bbpress-forums div.bbp-reply-content:after,#bbpress-forums div.bbp-topic-content:after{clear:both;content:".";display:block;float:none;height:0;font-size:0;visibility:hidden}#bbpress-forums div.bbp-reply-content a,#bbpress-forums div.bbp-topic-content a{background:0 0;border:none;display:inline;font-weight:400;margin:0;padding:0}#bbpress-forums div.bbp-reply-content h1,#bbpress-forums div.bbp-reply-content h2,#bbpress-forums div.bbp-reply-content h3,#bbpress-forums div.bbp-reply-content h4,#bbpress-forums div.bbp-reply-content h5,#bbpress-forums div.bbp-reply-content h6,#bbpress-forums div.bbp-topic-content h1,#bbpress-forums div.bbp-topic-content h2,#bbpress-forums div.bbp-topic-content h3,#bbpress-forums div.bbp-topic-content h4,#bbpress-forums div.bbp-topic-content h5,#bbpress-forums div.bbp-topic-content h6{clear:none;line-height:1em;margin:24px 0;padding:0}#bbpress-forums div.bbp-reply-content img,#bbpress-forums div.bbp-topic-content img{max-width:100%;height:auto}#bbpress-forums div.bbp-reply-content ol,#bbpress-forums div.bbp-reply-content ul,#bbpress-forums div.bbp-topic-content ol,#bbpress-forums div.bbp-topic-content ul{margin:0 15px 15px;padding:0}#bbpress-forums div.bbp-reply-content ul li,#bbpress-forums div.bbp-topic-content ul li{list-style-type:disc}#bbpress-forums div.bbp-reply-content ol li,#bbpress-forums div.bbp-topic-content ol li{list-style-type:decimal}#bbpress-forums div.bbp-reply-content ol li li,#bbpress-forums div.bbp-topic-content ol li li{list-style-type:lower-alpha}#bbpress-forums div.bbp-reply-content ol li li li,#bbpress-forums div.bbp-topic-content ol li li li{list-style-type:upper-roman}#bbpress-forums div.bbp-reply-content code,#bbpress-forums div.bbp-reply-content pre,#bbpress-forums div.bbp-topic-content code,#bbpress-forums div.bbp-topic-content pre{font-family:Inconsolata,Consolas,Monaco,"Lucida Console",monospace;display:inline-block;background-color:#f9f9f9;border:1px solid #ddd;padding:0 5px;max-width:95%;vertical-align:middle;margin-top:-3px;overflow-x:auto}#bbpress-forums div.bbp-reply-content pre,#bbpress-forums div.bbp-topic-content pre{display:block;line-height:18px;margin:0 0 24px;padding:5px 10px;white-space:pre;overflow:auto}#bbpress-forums div.bbp-reply-content pre code,#bbpress-forums div.bbp-topic-content pre code{display:block;border:none;padding:0;margin:0;background-color:transparent;overflow-wrap:normal;overflow:auto;max-width:100%}#bbpress-forums div.bbp-reply-to{margin-left:130px;padding:12px 12px 12px 0;text-align:right}#bbpress-forums div#bbp-cancel-reply-to{text-align:right}div.bbp-breadcrumb{float:left}#bbpress-forums div.bbp-search-form,#bbpress-forums div.bbp-topic-tags{float:right}div.bbp-breadcrumb,div.bbp-topic-tags{font-size:12px}#bbpress-forums div.bbp-breadcrumb p,#bbpress-forums div.bbp-topic-tags p{margin-bottom:10px}#bbp-topic-hot-tags{clear:both}#bbpress-forums #bbp-search-form{clear:left}#bbpress-forums #bbp-search-form .hidden{height:0;width:0;overflow:hidden;position:absolute;background:0 0;left:-999em}#bbpress-forums #bbp-search-form #bbp_search{display:inline-block;width:auto}span.bbp-admin-links{float:right;color:#ddd}span.bbp-admin-links a{color:#bbb;font-weight:400;font-size:10px;text-transform:uppercase;text-decoration:none}fieldset span.bbp-admin-links{float:left}tr td span.bbp-admin-links a:hover{color:#ff4b33}td.bbp-topic-admin-links,td.bbp-topic-counts{width:50%}.bbp-forum-header a.bbp-forum-permalink,.bbp-reply-header a.bbp-reply-permalink,.bbp-topic-header a.bbp-topic-permalink{float:right;margin-left:10px;color:#ccc}.bbp-row-actions #favorite-toggle a{text-decoration:none;padding:0 3px 1px;color:#7c7;border:1px solid #aca;background-color:#dfd;font-weight:700;font-size:13px}.bbp-row-actions #favorite-toggle a:hover{color:#5a5;border-color:#7c7;background-color:#beb}.bbp-row-actions #favorite-toggle span.is-favorite a{color:#faa;border:1px solid #faa;background-color:#fee}.bbp-row-actions #favorite-toggle span.is-favorite a:hover{color:#c88;border-color:#c88;background-color:#fdd}.bbp-row-actions #subscription-toggle a{text-decoration:none;padding:0 3px 1px;color:#7c7;border:1px solid #aca;background-color:#dfd;font-weight:700;font-size:13px}.bbp-row-actions #subscription-toggle a:hover{color:#5a5;border-color:#7c7;background-color:#beb}.bbp-row-actions #subscription-toggle span.is-subscribed a{color:#faa;border:1px solid #faa;background-color:#fee}.bbp-row-actions #subscription-toggle span.is-subscribed a:hover{color:#c88;border-color:#c88;background-color:#fdd}#bbpress-forums .bbp-forum-info .bbp-forum-content,#bbpress-forums p.bbp-topic-meta{font-size:11px;margin:5px 0;padding:0;word-wrap:break-word}#bbpress-forums p.bbp-topic-meta span{white-space:nowrap}.bbp-pagination-count{float:left;border:1px solid transparent}.bbp-pagination-links{float:right;list-style:none;display:inline}.bbp-pagination-links a,.bbp-pagination-links span.current{display:block;float:left;padding:0 5px;margin-left:5px;border:1px solid #efefef;text-decoration:none}.bbp-pagination-links a:hover,.bbp-pagination-links span.current{background:#eee;opacity:.8;border:1px solid #ddd}.bbp-pagination-links span.dots{display:block;float:left;padding:1px 4px;margin-left:5px}.bbp-pagination{float:left;width:100%;margin-bottom:15px}.bbp-topic-pagination{display:inline-block;margin-left:5px;margin-bottom:2px}.bbp-topic-pagination a{font-size:10px;line-height:10px;padding:1px 3px;border:1px solid #ddd;text-decoration:none}#bbpress-forums fieldset.bbp-form{clear:left;border:1px solid #eee;padding:10px 20px;margin-bottom:10px}#bbpress-forums fieldset.bbp-form legend{padding:5px}#bbpress-forums fieldset.bbp-form label{margin:0;display:inline-block}#bbp-edit-topic-tag.bbp-form fieldset.bbp-form label,#bbp-login fieldset label,#bbp-lost-pass fieldset label,#bbp-register fieldset label{width:100px}#bbpress-forums fieldset.bbp-form input,#bbpress-forums fieldset.bbp-form p,#bbpress-forums fieldset.bbp-form select,#bbpress-forums fieldset.bbp-form textarea{margin:0 0 8px}textarea#bbp_forum_content,textarea#bbp_reply_content,textarea#bbp_topic_content{width:97%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}textarea#bbp_forum_content{height:210px}#bbpress-forums fieldset.bbp-forum-form-attributes{width:200px;float:right;clear:none;margin-left:25px}#bbpress-forums fieldset select#bbp_forum_id{max-width:200px}.bbp-reply-form,.bbp-topic-form,.bbp-topic-tag-form{clear:left}body.reply-edit .bbp-reply-form div.avatar img,body.single-forum .bbp-topic-form div.avatar img,body.single-reply .bbp-reply-form div.avatar img,body.topic-edit .bbp-topic-form div.avatar img{margin-right:0;padding:10px;border:1px solid #ddd;line-height:0;background-color:#efefef}body.page .bbp-reply-form code,body.page .bbp-topic-form code,body.reply-edit .bbp-reply-form code,body.single-forum .bbp-topic-form code,body.single-topic .bbp-reply-form code,body.topic-edit .bbp-topic-form code{font-size:10px;background-color:#f0fff8;border:1px solid #ceefe1;display:block;padding:8px;margin-top:5px;width:369px}#delete_tag,#merge_tag{display:inline}div.bbp-submit-wrapper{margin-top:15px;float:right;clear:both}p.form-allowed-tags{max-width:100%}#bbpress-forums div.bbp-the-content-wrapper{margin-bottom:10px}#bbpress-forums div.bbp-the-content-wrapper textarea.bbp-the-content{width:100%;margin:0;font-size:12px}#bbpress-forums div.bbp-the-content-wrapper table,#bbpress-forums div.bbp-the-content-wrapper tbody,#bbpress-forums div.bbp-the-content-wrapper td,#bbpress-forums div.bbp-the-content-wrapper tr{border:none;padding:0;margin:0;width:auto;line-height:1em}#bbpress-forums div.bbp-the-content-wrapper input{font-size:12px;padding:5px;margin:0 2px 0 0;line-height:1em}#bbpress-forums div.bbp-the-content-wrapper div.quicktags-toolbar{padding:5px;min-height:26px}#bbpress-forums div.bbp-the-content-wrapper td.mceToolbar{padding:4px 4px 8px}#bbpress-forums div.wp-editor-container{margin:0;padding:0;line-height:0}#bbpress-forums div.bbp-the-content-wrapper td.mceStatusbar{line-height:16px}#bbpress-forums #bbp-your-profile fieldset{padding:20px 20px 0}#bbpress-forums #bbp-your-profile fieldset div{margin-bottom:20px;float:left;width:100%;clear:left}#bbpress-forums #bbp-your-profile fieldset select{margin-bottom:0}#bbpress-forums #bbp-your-profile fieldset input,#bbpress-forums #bbp-your-profile fieldset textarea{margin-bottom:0;width:60%;background:#f9f9f9;border:1px solid #ddd;-webkit-box-shadow:none;box-shadow:none;padding:5px 8px;-webkit-border-radius:0;border-radius:0}#bbpress-forums #bbp-your-profile fieldset input:focus,#bbpress-forums #bbp-your-profile fieldset textarea:focus{border:1px solid #ccc;-webkit-box-shadow:inset 1px 1px 1px rgba(0,0,0,.1);box-shadow:inset 1px 1px 1px rgba(0,0,0,.1);outline-color:rgba(240,255,240,.1)}#bbpress-forums #bbp-your-profile fieldset.bbp-form input.checkbox{width:auto}#bbpress-forums #bbp-your-profile fieldset legend{display:none}#bbpress-forums #bbp-your-profile fieldset label[for]{float:left;width:20%;padding:5px 20px 5px 0;text-align:right;cursor:pointer}#bbpress-forums #bbp-your-profile fieldset dl label[for]{text-align:left;width:60%}#bbpress-forums #bbp-your-profile fieldset span.description{margin:5px 0 0 20%;font-size:12px;font-style:italic;float:left;clear:left;width:60%;padding:5px 8px;border:1px solid #cee1ef;background-color:#f0f8ff}#bbpress-forums #bbp-your-profile fieldset fieldset{margin:0;border:none;padding:0;clear:none;float:none}#bbpress-forums #bbp-your-profile fieldset fieldset.password{width:60%;display:inline}#bbpress-forums #bbp-your-profile fieldset fieldset.password input,#bbpress-forums #bbp-your-profile fieldset fieldset.password span{width:100%}#bbpress-forums #bbp-your-profile fieldset fieldset.capabilities dl{margin:0}#bbpress-forums #bbp-your-profile fieldset fieldset.password span.description{margin-left:0;margin-bottom:20px}#bbpress-forums #bbp-your-profile fieldset.submit button{float:right}div.bbp-template-notice,div.indicator-hint{border-width:1px;border-style:solid;padding:0 .6em;margin:5px 0 15px;-webkit-border-radius:3px;border-radius:3px;background-color:#ffffe0;border-color:#e6db55;color:#000;clear:both}div.bbp-template-notice a{color:#555;text-decoration:none}div.bbp-template-notice a:hover{color:#000}div.bbp-template-notice.info{border:1px solid #cee1ef;background-color:#f0f8ff}div.bbp-template-notice.important{border:1px solid #e6db55;background-color:#fffbcc}div.bbp-template-notice.error,div.bbp-template-notice.warning{background-color:#ffebe8;border-color:#c00}div.bbp-template-notice.error a,div.bbp-template-notice.warning a{color:#c00}div.bbp-template-notice li,div.bbp-template-notice p{margin:.5em 0 6px!important;padding:2px;font-size:12px;line-height:140%}.bbp-forum-content ul.sticky,.bbp-topics ul.sticky,.bbp-topics ul.super-sticky,.bbp-topics-front ul.super-sticky{background-color:#ffffe0!important;font-size:1.1em}#bbpress-forums .bbp-reply-content ul.bbp-reply-revision-log,#bbpress-forums .bbp-reply-content ul.bbp-topic-revision-log,#bbpress-forums .bbp-topic-content ul.bbp-topic-revision-log{border-top:1px dotted #ddd;width:100%;margin:0;padding:8px 0 0;font-size:11px;color:#aaa}#bbpress-forums .bbp-reply-content ul.bbp-reply-revision-log li,#bbpress-forums .bbp-reply-content ul.bbp-topic-revision-log li,#bbpress-forums .bbp-topic-content ul.bbp-topic-revision-log li{list-style-type:none}.bbp-login-form fieldset legend{display:none}.bbp-login-form .bbp-email input,.bbp-login-form .bbp-password input,.bbp-login-form .bbp-username input{padding:5px}.bbp-login-form label{width:140px;display:inline-block}#sidebar .bbp-login-form label{width:70px}.bbp-login-form .bbp-email,.bbp-login-form .bbp-password,.bbp-login-form .bbp-remember-me,.bbp-login-form .bbp-submit-wrapper,.bbp-login-form .bbp-username{margin-top:10px}.bbp-login-form .bbp-submit-wrapper{text-align:right}.bbp-login-form .bbp-login-links a{float:left;clear:left}.bbp-logged-in img.avatar{float:left;margin:0 15px 0 0}.bbp-logged-in h4{font-weight:700;font-size:1.3em;clear:none;margin-bottom:10px}#bbpress-forums .widget_display_replies img.avatar,#bbpress-forums .widget_display_topics img.avatar,#bbpress-forums div.bbp-template-notice img.avatar,#bbpress-forums p.bbp-topic-meta img.avatar,#bbpress-forums ul.bbp-reply-revision-log img.avatar,#bbpress-forums ul.bbp-topic-revision-log img.avatar{float:none;margin-bottom:-7px;border:3px double #ddd}fieldset div.avatar{float:right}.activity-list li.bbp_reply_create .activity-content .activity-inner,.activity-list li.bbp_topic_create .activity-content .activity-inner{border-left:2px solid #eaeaea;margin-left:5px;padding-left:10px}#bbpress-forums h1{clear:none;font-size:1.8em;line-height:1em;padding-bottom:10px}#bbpress-forums #bbp-user-wrapper{float:left;width:100%}#bbpress-forums .bbp-user-section{overflow:auto}#bbpress-forums #bbp-user-wrapper h2.entry-title{font-size:1.4em;margin:0;padding-bottom:10px;padding-top:0;clear:none}#bbpress-forums #bbp-user-wrapper fieldset.bbp-form,#bbpress-forums #bbp-user-wrapper ul.bbp-forums,#bbpress-forums #bbp-user-wrapper ul.bbp-lead-topic,#bbpress-forums #bbp-user-wrapper ul.bbp-replies,#bbpress-forums #bbp-user-wrapper ul.bbp-topics{clear:none}#bbpress-forums #bbp-single-user-details{margin:0;width:150px;float:left;overflow:hidden}#bbpress-forums #bbp-single-user-details #bbp-user-avatar{margin:0;width:150px}#bbpress-forums #bbp-single-user-details #bbp-user-avatar img.avatar{border:none;height:150px;padding:0;margin:0 0 20px;width:150px}#bbpress-forums #bbp-single-user-details #bbp-user-description{float:none;margin-left:180px}#bbpress-forums #bbp-single-user-details #bbp-user-navigation{float:none;margin:0}#bbpress-forums #bbp-single-user-details #bbp-user-navigation li{margin:0}#bbpress-forums #bbp-single-user-details #bbp-user-navigation a{padding:5px 8px;display:block;border:1px solid transparent;text-decoration:none}#bbpress-forums #bbp-single-user-details #bbp-user-navigation li.current a{background:#eee;opacity:.8}#bbpress-forums #bbp-user-body{margin-left:180px}body.my-account #bbpress-forums{border-top:none;padding-top:0;margin-bottom:0}#bbpress-forums dl.bbp-user-capabilities{display:inline-block;vertical-align:top}#bbpress-forums dl.bbp-user-capabilities dt{margin:0 0 10px;text-transform:capitalize}#bbpress-forums dl.bbp-user-capabilities dd{margin:0;padding:0}#bbpress-forums div.row-actions{font-size:11px;visibility:hidden}#bbpress-forums li:hover>div.row-actions{visibility:visible}@media only screen and (max-width:480px){#bbpress-forums div.bbp-topic-tags,span.bbp-admin-links{clear:left;float:left}div.bbp-submit-wrapper,span.bbp-admin-links,span.bbp-reply-post-date,span.bbp-topic-post-date{float:left}div.bbp-search-form button,div.bbp-search-form input{font-size:11px;padding:2px}li.bbp-forum-info,li.bbp-topic-title{width:45%}li.bbp-forum-reply-count,li.bbp-forum-topic-count,li.bbp-topic-reply-count,li.bbp-topic-voice-count{width:15%}#bbpress-forums .bbp-forums-list li{display:block;font-size:11px}#bbpress-forums .bbp-body div.bbp-reply-author,#bbpress-forums .bbp-body div.bbp-topic-author{margin:-15px 10px 10px;min-height:100px;padding-left:80px;position:relative;text-align:left;width:100%}#bbpress-forums div.bbp-reply-author a.bbp-author-name,#bbpress-forums div.bbp-topic-author a.bbp-author-name{clear:none;display:inline-block;margin-left:0;word-wrap:break-word}#bbpress-forums div.bbp-reply-author img.avatar,#bbpress-forums div.bbp-topic-author img.avatar{position:absolute;top:15px;left:0;width:60px;height:auto}#bbpress-forums div.bbp-reply-author .bbp-author-role,#bbpress-forums div.bbp-topic-author .bbp-author-role{font-size:12px;font-style:normal}#bbpress-forums .bbp-body div.bbp-reply-content,#bbpress-forums .bbp-body div.bbp-topic-content{clear:both;margin:10px;padding:0}#bbpress-forums div.bbp-reply-content p,#bbpress-forums div.bbp-topic-content p{margin-bottom:1em}#bbpress-forums fieldset.bbp-form{padding:0 10px 10px}#bbpress-forums #bbp-user-body{clear:both;margin-left:0;word-wrap:break-word}#bbpress-forums div.bbp-forum-title h3,#bbpress-forums div.bbp-reply-title h3,#bbpress-forums div.bbp-topic-title h3{font-size:14px}}@media only screen and (max-width:320px){#bbpress-forums div.bbp-search-form{margin-bottom:10px}#bbpress-forums li.bbp-body li.bbp-forum-info,#bbpress-forums li.bbp-body li.bbp-topic-title,#bbpress-forums li.bbp-header li.bbp-forum-info,#bbpress-forums li.bbp-header li.bbp-topic-title{width:100%}#bbpress-forums li.bbp-header li.bbp-forum-info,#bbpress-forums li.bbp-header li.bbp-topic-title{text-align:center;text-transform:uppercase}#bbpress-forums li.bbp-body li.bbp-forum-reply-count,#bbpress-forums li.bbp-body li.bbp-forum-topic-count,#bbpress-forums li.bbp-body li.bbp-topic-reply-count,#bbpress-forums li.bbp-body li.bbp-topic-voice-count,#bbpress-forums li.bbp-header li.bbp-forum-reply-count,#bbpress-forums li.bbp-header li.bbp-forum-topic-count,#bbpress-forums li.bbp-header li.bbp-topic-reply-count,#bbpress-forums li.bbp-header li.bbp-topic-voice-count{width:20%}#bbpress-forums li.bbp-body li.bbp-forum-freshness,#bbpress-forums li.bbp-body li.bbp-topic-freshness,#bbpress-forums li.bbp-header li.bbp-forum-freshness,#bbpress-forums li.bbp-header li.bbp-topic-freshness{width:58%}#bbpress-forums li.bbp-body li.bbp-forum-freshness,#bbpress-forums li.bbp-body li.bbp-forum-reply-count,#bbpress-forums li.bbp-body li.bbp-forum-topic-count,#bbpress-forums li.bbp-body li.bbp-topic-freshness,#bbpress-forums li.bbp-body li.bbp-topic-reply-count,#bbpress-forums li.bbp-body li.bbp-topic-voice-count{margin-top:7px}#bbpress-forums li.bbp-footer,#bbpress-forums li.bbp-header{font-size:10px}#bbpress-forums li.bbp-header div.bbp-reply-author,#bbpress-forums li.bbp-header div.bbp-search-author,#bbpress-forums li.bbp-header div.bbp-topic-author{text-align:left;width:25%}#bbpress-forums li.bbp-header div.bbp-reply-content,#bbpress-forums li.bbp-header div.bbp-search-content,#bbpress-forums li.bbp-header div.bbp-topic-content{margin-left:25%}#bbpress-forums div.bbp-template-notice img.avatar,#bbpress-forums p.bbp-topic-meta img.avatar{width:14px;height:auto}#bbpress-forums div.bbp-the-content-wrapper td.mceToolbar{padding:1px}#bbpress-forums div.bbp-the-content-wrapper td.mceToolbar td{width:20px;height:20px}#bbpress-forums div.wp-editor-container{width:100%;overflow:auto}#bbpress-forums input#bbp_topic_tags,#bbpress-forums input#bbp_topic_title{width:95%}#bbpress-forums div.bbp-forum-title h3,#bbpress-forums div.bbp-reply-title h3,#bbpress-forums div.bbp-topic-title h3{font-size:14px}}@media only screen and (max-width:240px){#bbpress-forums li.bbp-body li.bbp-forum-reply-count,#bbpress-forums li.bbp-body li.bbp-forum-topic-count,#bbpress-forums li.bbp-body li.bbp-topic-reply-count,#bbpress-forums li.bbp-body li.bbp-topic-voice-count,#bbpress-forums li.bbp-footer div.bbp-reply-author,#bbpress-forums li.bbp-footer div.bbp-search-author,#bbpress-forums li.bbp-footer div.bbp-topic-author,#bbpress-forums li.bbp-header li.bbp-forum-reply-count,#bbpress-forums li.bbp-header li.bbp-forum-topic-count,#bbpress-forums li.bbp-header li.bbp-topic-reply-count,#bbpress-forums li.bbp-header li.bbp-topic-voice-count{width:45%}#bbpress-forums li.bbp-body li.bbp-forum-freshness,#bbpress-forums li.bbp-body li.bbp-topic-freshness,#bbpress-forums li.bbp-header li.bbp-forum-freshness,#bbpress-forums li.bbp-header li.bbp-topic-freshness{clear:both;width:100%}#bbpress-forums li.bbp-header li.bbp-forum-freshness,#bbpress-forums li.bbp-header li.bbp-topic-freshness{text-align:center}#bbpress-forums li.bbp-body li.bbp-topic-freshness,#bbpress-forums li.bbp-header div.bbp-reply-author,#bbpress-forums li.bbp-header div.bbp-reply-content,#bbpress-forums li.bbp-header div.bbp-search-author,#bbpress-forums li.bbp-header div.bbp-search-content,#bbpress-forums li.bbp-header div.bbp-topic-author,#bbpress-forums li.bbp-header div.bbp-topic-content{margin-left:0;text-align:left}#bbpress-forums li.bbp-body li.bbp-topic-freshness p.bbp-topic-meta{display:inline-block}#bbpress-forums li.bbp-header{overflow:hidden}#bbpress-forums li.bbp-footer div.bbp-reply-content,#bbpress-forums li.bbp-footer div.bbp-search-content,#bbpress-forums li.bbp-footer div.bbp-topic-content{display:inline-block;margin-left:0}#bbpress-forums li.bbp-body div.bbp-reply-author,#bbpress-forums li.bbp-body div.bbp-topic-author{min-height:60px;padding-left:60px}#bbpress-forums div.bbp-reply-author img.avatar,#bbpress-forums div.bbp-topic-author img.avatar{width:40px;height:auto}#bbpress-forums div.bbp-forum-title h3,#bbpress-forums div.bbp-reply-title h3,#bbpress-forums div.bbp-topic-title h3{font-size:12px}}
|
1 |
+
.entry-content .bbpress-wrapper a{-webkit-box-shadow:none;box-shadow:none}#bbpress-forums hr{margin:0 0 24px}#bbpress-forums{background:0 0;clear:both;margin-bottom:20px;overflow:hidden;font-size:12px}#bbpress-forums div.even,#bbpress-forums ul.even{background-color:#fff}#bbpress-forums div.odd,#bbpress-forums ul.odd{background-color:#fbfbfb}body.reply-edit .reply{float:none}#bbpress-forums div.reply{height:auto;width:100%}#bbpress-forums div.bbp-forum-header,#bbpress-forums div.bbp-reply-header,#bbpress-forums div.bbp-topic-header{background-color:#f4f4f4}#bbpress-forums .status-spam.even,#bbpress-forums .status-trash.even{background-color:#fee}#bbpress-forums .status-spam.odd,#bbpress-forums .status-trash.odd{background-color:#fdd}#bbpress-forums .status-pending.even,#bbpress-forums .status-pending.odd,#bbpress-forums ul.status-pending a{background-color:#fef7f1}#bbpress-forums ul.status-closed,#bbpress-forums ul.status-closed a{color:#ccc}#bbpress-forums ul{background:0 0;list-style:none;margin:0;padding:0}#bbpress-forums ul.bbp-threaded-replies{margin-left:50px}#bbpress-forums li{background:0 0;margin:0;list-style:none}#bbpress-forums ul.bbp-forums,#bbpress-forums ul.bbp-lead-topic,#bbpress-forums ul.bbp-replies,#bbpress-forums ul.bbp-search-results,#bbpress-forums ul.bbp-topics{font-size:12px;overflow:hidden;border:1px solid #eee;margin-bottom:20px;clear:both}#bbpress-forums li.bbp-body,#bbpress-forums li.bbp-footer,#bbpress-forums li.bbp-header{clear:both}#bbpress-forums li.bbp-footer,#bbpress-forums li.bbp-header{background:#f3f3f3;border-top:1px solid #eee;font-weight:700;padding:8px;text-align:center}#bbpress-forums li.bbp-header{background:#eaeaea}#bbpress-forums li.bbp-header ul{overflow:hidden}#bbpress-forums .bbp-forums-list{margin:0 0 0 5px;padding-left:15px;border-left:1px solid #ddd}#bbpress-forums .bbp-forums-list li{display:inline;font-size:11px}#bbpress-forums li.bbp-footer p{margin:0;line-height:1em}li.bbp-forum-info,li.bbp-topic-title{float:left;text-align:left;width:55%}li.bbp-forum-reply-count,li.bbp-forum-topic-count,li.bbp-topic-reply-count,li.bbp-topic-voice-count{float:left;text-align:center;width:10%}li.bbp-forum-freshness,li.bbp-topic-freshness{text-align:center;float:left;width:22%}#bbpress-forums li.bbp-body ul.forum,#bbpress-forums li.bbp-body ul.topic{border-top:1px solid #eee;overflow:hidden;padding:8px}#bbpress-forums #favorite-toggle,#bbpress-forums #subscription-toggle{float:right}#bbpress-forums div.bbp-forum-title h3,#bbpress-forums div.bbp-reply-title h3,#bbpress-forums div.bbp-topic-title h3{background:0 0;border:none;font-size:16px;line-height:1em;margin:8px 0;padding:0;text-transform:none}#bbpress-forums div.bbp-forum-author,#bbpress-forums div.bbp-reply-author,#bbpress-forums div.bbp-topic-author{float:left;text-align:center;width:115px}#bbpress-forums div.bbp-forum-author img.avatar,#bbpress-forums div.bbp-reply-author img.avatar,#bbpress-forums div.bbp-topic-author img.avatar{border:none;max-width:80px;padding:0;margin:12px auto 0;float:none}#bbpress-forums div.bbp-forum-author a.bbp-author-name,#bbpress-forums div.bbp-reply-author a.bbp-author-name,#bbpress-forums div.bbp-topic-author a.bbp-author-name{margin:0 12px;word-wrap:break-word;display:inline-block}#bbpress-forums div.bbp-reply-author a.bbp-author-name,#bbpress-forums div.bbp-topic-author a.bbp-author-name{clear:left;display:block}#bbpress-forums div.bbp-forum-author .bbp-author-role,#bbpress-forums div.bbp-reply-author .bbp-author-role,#bbpress-forums div.bbp-topic-author .bbp-author-role{font-size:11px;font-style:italic}#bbpress-forums li.bbp-footer .bbp-forum-author,#bbpress-forums li.bbp-footer .bbp-reply-author,#bbpress-forums li.bbp-footer .bbp-search-author,#bbpress-forums li.bbp-footer .bbp-topic-author,#bbpress-forums li.bbp-header .bbp-forum-author,#bbpress-forums li.bbp-header .bbp-reply-author,#bbpress-forums li.bbp-header .bbp-search-author,#bbpress-forums li.bbp-header .bbp-topic-author{float:left;margin:0;padding:0;width:120px}#bbpress-forums li.bbp-footer .bbp-forum-content,#bbpress-forums li.bbp-footer .bbp-reply-content,#bbpress-forums li.bbp-footer .bbp-search-content,#bbpress-forums li.bbp-footer .bbp-topic-content,#bbpress-forums li.bbp-header .bbp-forum-content,#bbpress-forums li.bbp-header .bbp-reply-content,#bbpress-forums li.bbp-header .bbp-search-content,#bbpress-forums li.bbp-header .bbp-topic-content{margin-left:140px;padding:0;text-align:left}div.bbp-forum-header,div.bbp-reply-header,div.bbp-topic-header,li.bbp-body div.hentry{margin-bottom:0;overflow:hidden;padding:8px}div.bbp-forum-header,div.bbp-reply-header,div.bbp-topic-header{border-top:1px solid #ddd;clear:both}span.bbp-author-ip{font-size:11px;font-weight:700;word-wrap:break-word;color:#aaa}#bbpress-forums div.bbp-forum-content,#bbpress-forums div.bbp-reply-content,#bbpress-forums div.bbp-topic-content{margin-left:130px;padding:12px 12px 12px 0;text-align:left}#bbpress-forums div.bbp-forum-content:after,#bbpress-forums div.bbp-reply-content:after,#bbpress-forums div.bbp-topic-content:after{clear:both;content:".";display:block;float:none;height:0;font-size:0;visibility:hidden}#bbpress-forums div.bbp-reply-content a,#bbpress-forums div.bbp-topic-content a{background:0 0;border:none;display:inline;font-weight:400;margin:0;padding:0}#bbpress-forums div.bbp-reply-content h1,#bbpress-forums div.bbp-reply-content h2,#bbpress-forums div.bbp-reply-content h3,#bbpress-forums div.bbp-reply-content h4,#bbpress-forums div.bbp-reply-content h5,#bbpress-forums div.bbp-reply-content h6,#bbpress-forums div.bbp-topic-content h1,#bbpress-forums div.bbp-topic-content h2,#bbpress-forums div.bbp-topic-content h3,#bbpress-forums div.bbp-topic-content h4,#bbpress-forums div.bbp-topic-content h5,#bbpress-forums div.bbp-topic-content h6{clear:none;line-height:1em;margin:24px 0;padding:0}#bbpress-forums div.bbp-reply-content img,#bbpress-forums div.bbp-topic-content img{max-width:100%;height:auto}#bbpress-forums div.bbp-reply-content ol,#bbpress-forums div.bbp-reply-content ul,#bbpress-forums div.bbp-topic-content ol,#bbpress-forums div.bbp-topic-content ul{margin:0 15px 15px;padding:0}#bbpress-forums div.bbp-reply-content ul li,#bbpress-forums div.bbp-topic-content ul li{list-style-type:disc}#bbpress-forums div.bbp-reply-content ol li,#bbpress-forums div.bbp-topic-content ol li{list-style-type:decimal}#bbpress-forums div.bbp-reply-content ol li li,#bbpress-forums div.bbp-topic-content ol li li{list-style-type:lower-alpha}#bbpress-forums div.bbp-reply-content ol li li li,#bbpress-forums div.bbp-topic-content ol li li li{list-style-type:upper-roman}#bbpress-forums div.bbp-reply-content code,#bbpress-forums div.bbp-reply-content pre,#bbpress-forums div.bbp-topic-content code,#bbpress-forums div.bbp-topic-content pre{font-family:Inconsolata,Consolas,Monaco,"Lucida Console",monospace;display:inline-block;background-color:#f9f9f9;border:1px solid #ddd;padding:0 5px;max-width:95%;vertical-align:middle;margin-top:-3px;overflow-x:auto}#bbpress-forums div.bbp-reply-content pre,#bbpress-forums div.bbp-topic-content pre{display:block;line-height:18px;margin:0 0 24px;padding:5px 10px;white-space:pre;overflow:auto}#bbpress-forums div.bbp-reply-content pre code,#bbpress-forums div.bbp-topic-content pre code{display:block;border:none;padding:0;margin:0;background-color:transparent;overflow-wrap:normal;overflow:auto;max-width:100%}#bbpress-forums div.bbp-reply-to{margin-left:130px;padding:12px 12px 12px 0;text-align:right}#bbpress-forums div#bbp-cancel-reply-to{text-align:right}div.bbp-breadcrumb{float:left}#bbpress-forums div.bbp-search-form,#bbpress-forums div.bbp-topic-tags{float:right}div.bbp-breadcrumb,div.bbp-topic-tags{font-size:12px}#bbpress-forums div.bbp-breadcrumb p,#bbpress-forums div.bbp-topic-tags p{margin-bottom:10px}#bbp-topic-hot-tags{clear:both}#bbpress-forums #bbp-search-form{clear:left}#bbpress-forums #bbp-search-form .hidden{height:0;width:0;overflow:hidden;position:absolute;background:0 0;left:-999em}#bbpress-forums #bbp-search-form #bbp_search{display:inline-block;width:auto}span.bbp-admin-links{float:right;color:#ddd}span.bbp-admin-links a{color:#bbb;font-weight:400;font-size:10px;text-transform:uppercase;text-decoration:none}fieldset span.bbp-admin-links{float:left}tr td span.bbp-admin-links a:hover{color:#ff4b33}td.bbp-topic-admin-links,td.bbp-topic-counts{width:50%}.bbp-forum-header a.bbp-forum-permalink,.bbp-reply-header a.bbp-reply-permalink,.bbp-topic-header a.bbp-topic-permalink{float:right;margin-left:10px;color:#ccc}.bbp-row-actions #favorite-toggle a{text-decoration:none;padding:0 3px 1px;color:#7c7;border:1px solid #aca;background-color:#dfd;font-weight:700;font-size:13px}.bbp-row-actions #favorite-toggle a:hover{color:#5a5;border-color:#7c7;background-color:#beb}.bbp-row-actions #favorite-toggle span.is-favorite a{color:#faa;border:1px solid #faa;background-color:#fee}.bbp-row-actions #favorite-toggle span.is-favorite a:hover{color:#c88;border-color:#c88;background-color:#fdd}.bbp-row-actions #subscription-toggle a{text-decoration:none;padding:0 3px 1px;color:#7c7;border:1px solid #aca;background-color:#dfd;font-weight:700;font-size:13px}.bbp-row-actions #subscription-toggle a:hover{color:#5a5;border-color:#7c7;background-color:#beb}.bbp-row-actions #subscription-toggle span.is-subscribed a{color:#faa;border:1px solid #faa;background-color:#fee}.bbp-row-actions #subscription-toggle span.is-subscribed a:hover{color:#c88;border-color:#c88;background-color:#fdd}#bbpress-forums .bbp-forum-info .bbp-forum-content,#bbpress-forums p.bbp-topic-meta{font-size:11px;margin:5px 0;padding:0;word-wrap:break-word}#bbpress-forums p.bbp-topic-meta span{white-space:nowrap}.bbp-pagination-count{float:left;border:1px solid transparent}.bbp-pagination-links{float:right;list-style:none;display:inline}.bbp-pagination-links a,.bbp-pagination-links span.current{display:block;float:left;padding:0 5px;margin-left:5px;border:1px solid #efefef;text-decoration:none}.bbp-pagination-links a:hover,.bbp-pagination-links span.current{background:#eee;opacity:.8;border:1px solid #ddd}.bbp-pagination-links span.dots{display:block;float:left;padding:1px 4px;margin-left:5px}.bbp-pagination{float:left;width:100%;margin-bottom:15px}.bbp-topic-pagination{display:inline-block;margin-left:5px;margin-bottom:2px}.bbp-topic-pagination a{font-size:10px;line-height:10px;padding:1px 3px;border:1px solid #ddd;text-decoration:none}#bbpress-forums fieldset.bbp-form{clear:left;border:1px solid #eee;padding:10px 20px;margin-bottom:10px}#bbpress-forums fieldset.bbp-form legend{padding:5px}#bbpress-forums fieldset.bbp-form label{margin:0;display:inline-block}#bbp-edit-topic-tag.bbp-form fieldset.bbp-form label,#bbp-login fieldset label,#bbp-lost-pass fieldset label,#bbp-register fieldset label{width:100px}#bbpress-forums fieldset.bbp-form input,#bbpress-forums fieldset.bbp-form p,#bbpress-forums fieldset.bbp-form select,#bbpress-forums fieldset.bbp-form textarea{margin:0 0 8px}textarea#bbp_forum_content,textarea#bbp_reply_content,textarea#bbp_topic_content{width:97%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}textarea#bbp_forum_content{height:210px}#bbpress-forums fieldset.bbp-forum-form-attributes{width:200px;float:right;clear:none;margin-left:25px}#bbpress-forums fieldset select#bbp_forum_id{max-width:200px}.bbp-reply-form,.bbp-topic-form,.bbp-topic-tag-form{clear:left}body.reply-edit .bbp-reply-form div.avatar img,body.single-forum .bbp-topic-form div.avatar img,body.single-reply .bbp-reply-form div.avatar img,body.topic-edit .bbp-topic-form div.avatar img{margin-right:0;padding:10px;border:1px solid #ddd;line-height:0;background-color:#efefef}body.page .bbp-reply-form code,body.page .bbp-topic-form code,body.reply-edit .bbp-reply-form code,body.single-forum .bbp-topic-form code,body.single-topic .bbp-reply-form code,body.topic-edit .bbp-topic-form code{font-size:10px;background-color:#f0fff8;border:1px solid #ceefe1;display:block;padding:8px;margin-top:5px;width:369px}#delete_tag,#merge_tag{display:inline}div.bbp-submit-wrapper{margin-top:15px;float:right;clear:both}p.form-allowed-tags{max-width:100%}#bbpress-forums div.bbp-the-content-wrapper{margin-bottom:10px}#bbpress-forums div.bbp-the-content-wrapper textarea.bbp-the-content{width:100%;margin:0;font-size:12px}#bbpress-forums div.bbp-the-content-wrapper table,#bbpress-forums div.bbp-the-content-wrapper tbody,#bbpress-forums div.bbp-the-content-wrapper td,#bbpress-forums div.bbp-the-content-wrapper tr{border:none;padding:0;margin:0;width:auto;line-height:1em}#bbpress-forums div.bbp-the-content-wrapper input{font-size:12px;padding:5px;margin:0 2px 0 0;line-height:1em}#bbpress-forums div.bbp-the-content-wrapper div.quicktags-toolbar{padding:5px;min-height:26px}#bbpress-forums div.bbp-the-content-wrapper td.mceToolbar{padding:4px 4px 8px}#bbpress-forums div.wp-editor-container{margin:0;padding:0;line-height:0}#bbpress-forums div.bbp-the-content-wrapper td.mceStatusbar{line-height:16px}#bbpress-forums #bbp-your-profile fieldset{padding:20px 20px 0}#bbpress-forums #bbp-your-profile fieldset div{margin-bottom:20px;float:left;width:100%;clear:left}#bbpress-forums #bbp-your-profile fieldset select{margin-bottom:0}#bbpress-forums #bbp-your-profile fieldset input,#bbpress-forums #bbp-your-profile fieldset textarea{margin-bottom:0;width:60%;background:#f9f9f9;border:1px solid #ddd;-webkit-box-shadow:none;box-shadow:none;padding:5px 8px;-webkit-border-radius:0;border-radius:0}#bbpress-forums #bbp-your-profile fieldset input:focus,#bbpress-forums #bbp-your-profile fieldset textarea:focus{border:1px solid #ccc;-webkit-box-shadow:inset 1px 1px 1px rgba(0,0,0,.1);box-shadow:inset 1px 1px 1px rgba(0,0,0,.1);outline-color:rgba(240,255,240,.1)}#bbpress-forums #bbp-your-profile fieldset.bbp-form input.checkbox{width:auto}#bbpress-forums #bbp-your-profile fieldset legend{display:none}#bbpress-forums #bbp-your-profile fieldset label[for]{float:left;width:20%;padding:5px 20px 5px 0;text-align:right;cursor:pointer}#bbpress-forums #bbp-your-profile fieldset dl label[for]{text-align:left;width:60%}#bbpress-forums #bbp-your-profile fieldset span.description{margin:5px 0 0 20%;font-size:12px;font-style:italic;float:left;clear:left;width:60%;padding:5px 8px;border:1px solid #cee1ef;background-color:#f0f8ff}#bbpress-forums #bbp-your-profile fieldset fieldset{margin:0;border:none;padding:0;clear:none;float:none}#bbpress-forums #bbp-your-profile fieldset fieldset.password{width:60%;display:inline}#bbpress-forums #bbp-your-profile fieldset fieldset.password input,#bbpress-forums #bbp-your-profile fieldset fieldset.password span{width:100%}#bbpress-forums #bbp-your-profile fieldset fieldset.capabilities dl{margin:0}#bbpress-forums #bbp-your-profile fieldset fieldset.password span.description{margin-left:0;margin-bottom:20px}#bbpress-forums #bbp-your-profile fieldset.submit button{float:right}div.bbp-template-notice,div.indicator-hint{border-width:1px;border-style:solid;padding:0 .6em;margin:5px 0 15px;-webkit-border-radius:3px;border-radius:3px;background-color:#ffffe0;border-color:#e6db55;color:#000;clear:both}div.bbp-template-notice a{color:#555;text-decoration:none}div.bbp-template-notice a:hover{color:#000}div.bbp-template-notice.info{border:1px solid #cee1ef;background-color:#f0f8ff}div.bbp-template-notice.important{border:1px solid #e6db55;background-color:#fffbcc}div.bbp-template-notice.error,div.bbp-template-notice.warning{background-color:#ffebe8;border-color:#c00}div.bbp-template-notice.error a,div.bbp-template-notice.warning a{color:#c00}div.bbp-template-notice li,div.bbp-template-notice p{margin:.5em 0 6px!important;padding:2px;font-size:12px;line-height:140%}.bbp-forum-content ul.sticky,.bbp-topics ul.sticky,.bbp-topics ul.super-sticky,.bbp-topics-front ul.super-sticky{background-color:#ffffe0!important;font-size:1.1em}#bbpress-forums .bbp-reply-content ul.bbp-reply-revision-log,#bbpress-forums .bbp-reply-content ul.bbp-topic-revision-log,#bbpress-forums .bbp-topic-content ul.bbp-topic-revision-log{border-top:1px dotted #ddd;width:100%;margin:0;padding:8px 0 0;font-size:11px;color:#aaa}#bbpress-forums .bbp-reply-content ul.bbp-reply-revision-log li,#bbpress-forums .bbp-reply-content ul.bbp-topic-revision-log li,#bbpress-forums .bbp-topic-content ul.bbp-topic-revision-log li{list-style-type:none}.bbp-login-form fieldset legend{display:none}.bbp-login-form .bbp-email input,.bbp-login-form .bbp-password input,.bbp-login-form .bbp-username input{padding:5px}.bbp-login-form label{width:140px;display:inline-block}#sidebar .bbp-login-form label{width:70px}.bbp-login-form .bbp-email,.bbp-login-form .bbp-password,.bbp-login-form .bbp-remember-me,.bbp-login-form .bbp-submit-wrapper,.bbp-login-form .bbp-username{margin-top:10px}.bbp-login-form .bbp-submit-wrapper{text-align:right}.bbp-login-form .bbp-login-links a{float:left;clear:left}.bbp-logged-in img.avatar{float:left;margin:0 15px 0 0}.bbp-logged-in h4{font-weight:700;font-size:1.3em;clear:none;margin-bottom:10px}#bbpress-forums .widget_display_replies img.avatar,#bbpress-forums .widget_display_topics img.avatar,#bbpress-forums div.bbp-template-notice img.avatar,#bbpress-forums p.bbp-topic-meta img.avatar,#bbpress-forums ul.bbp-reply-revision-log img.avatar,#bbpress-forums ul.bbp-topic-revision-log img.avatar{float:none;margin-bottom:-7px;border:3px double #ddd}fieldset div.avatar{float:right}.activity-list li.bbp_reply_create .activity-content .activity-inner,.activity-list li.bbp_topic_create .activity-content .activity-inner{border-left:2px solid #eaeaea;margin-left:5px;padding-left:10px}#bbpress-forums h1{clear:none;font-size:1.8em;line-height:1em;padding-bottom:10px}#bbpress-forums #bbp-user-wrapper{float:left;width:100%}#bbpress-forums .bbp-user-section{overflow:auto}#bbpress-forums #bbp-user-wrapper h2.entry-title{font-size:1.4em;margin:0;padding-bottom:10px;padding-top:0;clear:none}#bbpress-forums #bbp-user-wrapper fieldset.bbp-form,#bbpress-forums #bbp-user-wrapper ul.bbp-forums,#bbpress-forums #bbp-user-wrapper ul.bbp-lead-topic,#bbpress-forums #bbp-user-wrapper ul.bbp-replies,#bbpress-forums #bbp-user-wrapper ul.bbp-topics{clear:none}#bbpress-forums #bbp-single-user-details{margin:0;width:150px;float:left;overflow:hidden}#bbpress-forums #bbp-single-user-details #bbp-user-avatar{margin:0;width:150px}#bbpress-forums #bbp-single-user-details #bbp-user-avatar img.avatar{border:none;height:150px;padding:0;margin:0 0 20px;width:150px}#bbpress-forums #bbp-single-user-details #bbp-user-description{float:none;margin-left:180px}#bbpress-forums #bbp-single-user-details #bbp-user-navigation{float:none;margin:0}#bbpress-forums #bbp-single-user-details #bbp-user-navigation li{margin:0}#bbpress-forums #bbp-single-user-details #bbp-user-navigation a{padding:5px 8px;display:block;border:1px solid transparent;text-decoration:none}#bbpress-forums #bbp-single-user-details #bbp-user-navigation li.current a{background:#eee;opacity:.8}#bbpress-forums #bbp-user-body{margin-left:180px}body.my-account #bbpress-forums{border-top:none;padding-top:0;margin-bottom:0}#bbpress-forums dl.bbp-user-capabilities{display:inline-block;vertical-align:top}#bbpress-forums dl.bbp-user-capabilities dt{margin:0 0 10px;text-transform:capitalize}#bbpress-forums dl.bbp-user-capabilities dd{margin:0;padding:0}#bbpress-forums div.row-actions{font-size:11px;visibility:hidden}#bbpress-forums li:hover>div.row-actions{visibility:visible}@media only screen and (max-width:480px){#bbpress-forums div.bbp-topic-tags,span.bbp-admin-links{clear:left;float:left}div.bbp-submit-wrapper,span.bbp-admin-links,span.bbp-reply-post-date,span.bbp-topic-post-date{float:left}div.bbp-search-form button,div.bbp-search-form input{font-size:11px;padding:2px}li.bbp-forum-info,li.bbp-topic-title{width:45%}li.bbp-forum-reply-count,li.bbp-forum-topic-count,li.bbp-topic-reply-count,li.bbp-topic-voice-count{width:15%}#bbpress-forums .bbp-forums-list li{display:block;font-size:11px}#bbpress-forums .bbp-body div.bbp-reply-author,#bbpress-forums .bbp-body div.bbp-topic-author{margin:-15px 10px 10px;min-height:100px;padding-left:80px;position:relative;text-align:left;width:100%}#bbpress-forums div.bbp-reply-author a.bbp-author-name,#bbpress-forums div.bbp-topic-author a.bbp-author-name{clear:none;display:inline-block;margin-left:0;word-wrap:break-word}#bbpress-forums div.bbp-reply-author img.avatar,#bbpress-forums div.bbp-topic-author img.avatar{position:absolute;top:15px;left:0;width:60px;height:auto}#bbpress-forums div.bbp-reply-author .bbp-author-role,#bbpress-forums div.bbp-topic-author .bbp-author-role{font-size:12px;font-style:normal}#bbpress-forums .bbp-body div.bbp-reply-content,#bbpress-forums .bbp-body div.bbp-topic-content{clear:both;margin:10px;padding:0}#bbpress-forums div.bbp-reply-content p,#bbpress-forums div.bbp-topic-content p{margin-bottom:1em}#bbpress-forums fieldset.bbp-form{padding:0 10px 10px}#bbpress-forums #bbp-user-body{clear:both;margin-left:0;word-wrap:break-word}#bbpress-forums div.bbp-forum-title h3,#bbpress-forums div.bbp-reply-title h3,#bbpress-forums div.bbp-topic-title h3{font-size:14px}}@media only screen and (max-width:320px){#bbpress-forums div.bbp-search-form{margin-bottom:10px}#bbpress-forums li.bbp-body li.bbp-forum-info,#bbpress-forums li.bbp-body li.bbp-topic-title,#bbpress-forums li.bbp-header li.bbp-forum-info,#bbpress-forums li.bbp-header li.bbp-topic-title{width:100%}#bbpress-forums li.bbp-header li.bbp-forum-info,#bbpress-forums li.bbp-header li.bbp-topic-title{text-align:center;text-transform:uppercase}#bbpress-forums li.bbp-body li.bbp-forum-reply-count,#bbpress-forums li.bbp-body li.bbp-forum-topic-count,#bbpress-forums li.bbp-body li.bbp-topic-reply-count,#bbpress-forums li.bbp-body li.bbp-topic-voice-count,#bbpress-forums li.bbp-header li.bbp-forum-reply-count,#bbpress-forums li.bbp-header li.bbp-forum-topic-count,#bbpress-forums li.bbp-header li.bbp-topic-reply-count,#bbpress-forums li.bbp-header li.bbp-topic-voice-count{width:20%}#bbpress-forums li.bbp-body li.bbp-forum-freshness,#bbpress-forums li.bbp-body li.bbp-topic-freshness,#bbpress-forums li.bbp-header li.bbp-forum-freshness,#bbpress-forums li.bbp-header li.bbp-topic-freshness{width:58%}#bbpress-forums li.bbp-body li.bbp-forum-freshness,#bbpress-forums li.bbp-body li.bbp-forum-reply-count,#bbpress-forums li.bbp-body li.bbp-forum-topic-count,#bbpress-forums li.bbp-body li.bbp-topic-freshness,#bbpress-forums li.bbp-body li.bbp-topic-reply-count,#bbpress-forums li.bbp-body li.bbp-topic-voice-count{margin-top:7px}#bbpress-forums li.bbp-footer,#bbpress-forums li.bbp-header{font-size:10px}#bbpress-forums li.bbp-header div.bbp-reply-author,#bbpress-forums li.bbp-header div.bbp-search-author,#bbpress-forums li.bbp-header div.bbp-topic-author{text-align:left;width:25%}#bbpress-forums li.bbp-header div.bbp-reply-content,#bbpress-forums li.bbp-header div.bbp-search-content,#bbpress-forums li.bbp-header div.bbp-topic-content{margin-left:25%}#bbpress-forums div.bbp-template-notice img.avatar,#bbpress-forums p.bbp-topic-meta img.avatar{width:14px;height:auto}#bbpress-forums div.bbp-the-content-wrapper td.mceToolbar{padding:1px}#bbpress-forums div.bbp-the-content-wrapper td.mceToolbar td{width:20px;height:20px}#bbpress-forums div.wp-editor-container{width:100%;overflow:auto}#bbpress-forums input#bbp_topic_tags,#bbpress-forums input#bbp_topic_title{width:95%}#bbpress-forums div.bbp-forum-title h3,#bbpress-forums div.bbp-reply-title h3,#bbpress-forums div.bbp-topic-title h3{font-size:14px}}@media only screen and (max-width:240px){#bbpress-forums li.bbp-body li.bbp-forum-reply-count,#bbpress-forums li.bbp-body li.bbp-forum-topic-count,#bbpress-forums li.bbp-body li.bbp-topic-reply-count,#bbpress-forums li.bbp-body li.bbp-topic-voice-count,#bbpress-forums li.bbp-footer div.bbp-reply-author,#bbpress-forums li.bbp-footer div.bbp-search-author,#bbpress-forums li.bbp-footer div.bbp-topic-author,#bbpress-forums li.bbp-header li.bbp-forum-reply-count,#bbpress-forums li.bbp-header li.bbp-forum-topic-count,#bbpress-forums li.bbp-header li.bbp-topic-reply-count,#bbpress-forums li.bbp-header li.bbp-topic-voice-count{width:45%}#bbpress-forums li.bbp-body li.bbp-forum-freshness,#bbpress-forums li.bbp-body li.bbp-topic-freshness,#bbpress-forums li.bbp-header li.bbp-forum-freshness,#bbpress-forums li.bbp-header li.bbp-topic-freshness{clear:both;width:100%}#bbpress-forums li.bbp-header li.bbp-forum-freshness,#bbpress-forums li.bbp-header li.bbp-topic-freshness{text-align:center}#bbpress-forums li.bbp-body li.bbp-topic-freshness,#bbpress-forums li.bbp-header div.bbp-reply-author,#bbpress-forums li.bbp-header div.bbp-reply-content,#bbpress-forums li.bbp-header div.bbp-search-author,#bbpress-forums li.bbp-header div.bbp-search-content,#bbpress-forums li.bbp-header div.bbp-topic-author,#bbpress-forums li.bbp-header div.bbp-topic-content{margin-left:0;text-align:left}#bbpress-forums li.bbp-body li.bbp-topic-freshness p.bbp-topic-meta{display:inline-block}#bbpress-forums li.bbp-header{overflow:hidden}#bbpress-forums li.bbp-footer div.bbp-reply-content,#bbpress-forums li.bbp-footer div.bbp-search-content,#bbpress-forums li.bbp-footer div.bbp-topic-content{display:inline-block;margin-left:0}#bbpress-forums li.bbp-body div.bbp-reply-author,#bbpress-forums li.bbp-body div.bbp-topic-author{min-height:60px;padding-left:60px}#bbpress-forums div.bbp-reply-author img.avatar,#bbpress-forums div.bbp-topic-author img.avatar{width:40px;height:auto}#bbpress-forums div.bbp-forum-title h3,#bbpress-forums div.bbp-reply-title h3,#bbpress-forums div.bbp-topic-title h3{font-size:12px}}
|
templates/default/extras/page-forum-statistics.php
CHANGED
@@ -21,7 +21,7 @@ get_header(); ?>
|
|
21 |
|
22 |
<?php get_the_content() ? the_content() : wpautop( esc_html__( 'Here are the statistics and popular topics of our forums.', 'bbpress' ) ); ?>
|
23 |
|
24 |
-
<div id="bbpress-forums">
|
25 |
|
26 |
<?php bbp_get_template_part( 'content', 'statistics' ); ?>
|
27 |
|
21 |
|
22 |
<?php get_the_content() ? the_content() : wpautop( esc_html__( 'Here are the statistics and popular topics of our forums.', 'bbpress' ) ); ?>
|
23 |
|
24 |
+
<div id="bbpress-forums" class="bbpress-wrapper">
|
25 |
|
26 |
<?php bbp_get_template_part( 'content', 'statistics' ); ?>
|
27 |
|
templates/default/extras/page-topic-tags.php
CHANGED
@@ -21,7 +21,7 @@ get_header(); ?>
|
|
21 |
|
22 |
<?php get_the_content() ? the_content() : wpautop( esc_html__( 'This is a collection of tags that are currently popular on our forums.', 'bbpress' ) ); ?>
|
23 |
|
24 |
-
<div id="bbpress-forums">
|
25 |
|
26 |
<?php bbp_breadcrumb(); ?>
|
27 |
|
21 |
|
22 |
<?php get_the_content() ? the_content() : wpautop( esc_html__( 'This is a collection of tags that are currently popular on our forums.', 'bbpress' ) ); ?>
|
23 |
|
24 |
+
<div id="bbpress-forums" class="bbpress-wrapper">
|
25 |
|
26 |
<?php bbp_breadcrumb(); ?>
|
27 |
|
templates/default/extras/page-topics-no-replies.php
CHANGED
@@ -21,7 +21,7 @@ get_header(); ?>
|
|
21 |
|
22 |
<?php the_content(); ?>
|
23 |
|
24 |
-
<div id="bbpress-forums">
|
25 |
|
26 |
<?php bbp_breadcrumb(); ?>
|
27 |
|
21 |
|
22 |
<?php the_content(); ?>
|
23 |
|
24 |
+
<div id="bbpress-forums" class="bbpress-wrapper">
|
25 |
|
26 |
<?php bbp_breadcrumb(); ?>
|
27 |
|
templates/default/extras/page-user-login.php
CHANGED
@@ -25,7 +25,7 @@ get_header(); ?>
|
|
25 |
|
26 |
<?php the_content(); ?>
|
27 |
|
28 |
-
<div id="bbpress-forums">
|
29 |
|
30 |
<?php bbp_breadcrumb(); ?>
|
31 |
|
25 |
|
26 |
<?php the_content(); ?>
|
27 |
|
28 |
+
<div id="bbpress-forums" class="bbpress-wrapper">
|
29 |
|
30 |
<?php bbp_breadcrumb(); ?>
|
31 |
|
templates/default/extras/page-user-lost-pass.php
CHANGED
@@ -25,7 +25,7 @@ get_header(); ?>
|
|
25 |
|
26 |
<?php the_content(); ?>
|
27 |
|
28 |
-
<div id="bbpress-forums">
|
29 |
|
30 |
<?php bbp_breadcrumb(); ?>
|
31 |
|
25 |
|
26 |
<?php the_content(); ?>
|
27 |
|
28 |
+
<div id="bbpress-forums" class="bbpress-wrapper">
|
29 |
|
30 |
<?php bbp_breadcrumb(); ?>
|
31 |
|
templates/default/extras/page-user-register.php
CHANGED
@@ -25,7 +25,7 @@ get_header(); ?>
|
|
25 |
|
26 |
<?php the_content(); ?>
|
27 |
|
28 |
-
<div id="bbpress-forums">
|
29 |
|
30 |
<?php bbp_breadcrumb(); ?>
|
31 |
|
25 |
|
26 |
<?php the_content(); ?>
|
27 |
|
28 |
+
<div id="bbpress-forums" class="bbpress-wrapper">
|
29 |
|
30 |
<?php bbp_breadcrumb(); ?>
|
31 |
|