Version Description
- Improved ajax actions
- Improved user query parsing
- Fix BuddyPress Groups notice
Download this release
Release Info
Developer | netweb |
Plugin | bbPress |
Version | 2.5.8 |
Comparing to | |
See all releases |
Code changes from version 2.5.7 to 2.5.8
- bbpress.php +3 -3
- includes/admin/admin.php +3 -5
- includes/core/template-functions.php +7 -17
- includes/extend/buddypress/groups.php +5 -1
- includes/users/functions.php +1 -1
- languages/bbpress.pot +78 -79
- readme.txt +9 -6
bbpress.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
*
|
6 |
* bbPress is forum software with a twist from the creators of WordPress.
|
7 |
*
|
8 |
-
* $Id: bbpress.php
|
9 |
*
|
10 |
* @package bbPress
|
11 |
* @subpackage Main
|
@@ -17,7 +17,7 @@
|
|
17 |
* Description: bbPress is forum software with a twist from the creators of WordPress.
|
18 |
* Author: The bbPress Community
|
19 |
* Author URI: http://bbpress.org
|
20 |
-
* Version: 2.5.
|
21 |
* Text Domain: bbpress
|
22 |
* Domain Path: /languages/
|
23 |
*/
|
@@ -190,7 +190,7 @@ final class bbPress {
|
|
190 |
|
191 |
/** Versions **********************************************************/
|
192 |
|
193 |
-
$this->version = '2.5.
|
194 |
$this->db_version = '250';
|
195 |
|
196 |
/** Paths *************************************************************/
|
5 |
*
|
6 |
* bbPress is forum software with a twist from the creators of WordPress.
|
7 |
*
|
8 |
+
* $Id: bbpress.php 5816 2015-07-13 16:13:27Z netweb $
|
9 |
*
|
10 |
* @package bbPress
|
11 |
* @subpackage Main
|
17 |
* Description: bbPress is forum software with a twist from the creators of WordPress.
|
18 |
* Author: The bbPress Community
|
19 |
* Author URI: http://bbpress.org
|
20 |
+
* Version: 2.5.8
|
21 |
* Text Domain: bbpress
|
22 |
* Domain Path: /languages/
|
23 |
*/
|
190 |
|
191 |
/** Versions **********************************************************/
|
192 |
|
193 |
+
$this->version = '2.5.8-5815';
|
194 |
$this->db_version = '250';
|
195 |
|
196 |
/** Paths *************************************************************/
|
includes/admin/admin.php
CHANGED
@@ -149,11 +149,9 @@ class BBP_Admin {
|
|
149 |
|
150 |
/** Ajax **************************************************************/
|
151 |
|
152 |
-
|
153 |
-
add_action( '
|
154 |
-
|
155 |
-
add_action( 'wp_ajax_bbp_suggest_user', array( $this, 'suggest_user' ) );
|
156 |
-
add_action( 'wp_ajax_nopriv_bbp_suggest_user', array( $this, 'suggest_user' ) );
|
157 |
|
158 |
/** Filters ***********************************************************/
|
159 |
|
149 |
|
150 |
/** Ajax **************************************************************/
|
151 |
|
152 |
+
// No _nopriv_ equivalent - users must be logged in
|
153 |
+
add_action( 'wp_ajax_bbp_suggest_topic', array( $this, 'suggest_topic' ) );
|
154 |
+
add_action( 'wp_ajax_bbp_suggest_user', array( $this, 'suggest_user' ) );
|
|
|
|
|
155 |
|
156 |
/** Filters ***********************************************************/
|
157 |
|
includes/core/template-functions.php
CHANGED
@@ -159,7 +159,7 @@ function bbp_enqueue_style( $handle = '', $file = '', $dependencies = array(), $
|
|
159 |
if ( !empty( $located ) ) {
|
160 |
|
161 |
$content_dir = constant( 'WP_CONTENT_DIR' );
|
162 |
-
|
163 |
// IIS (Windows) here
|
164 |
// Replace back slashes with forward slash
|
165 |
if ( strpos( $located, '\\' ) !== false ) {
|
@@ -227,7 +227,7 @@ function bbp_enqueue_script( $handle = '', $file = '', $dependencies = array(),
|
|
227 |
if ( !empty( $located ) ) {
|
228 |
|
229 |
$content_dir = constant( 'WP_CONTENT_DIR' );
|
230 |
-
|
231 |
// IIS (Windows) here
|
232 |
// Replace back slashes with forward slash
|
233 |
if ( strpos( $located, '\\' ) !== false ) {
|
@@ -457,8 +457,7 @@ function bbp_add_template_stack_locations( $stacks = array() ) {
|
|
457 |
* @param WP_Query $posts_query
|
458 |
*
|
459 |
* @uses get_query_var() To get {@link WP_Query} query var
|
460 |
-
* @uses
|
461 |
-
* @uses get_user_by() To try to get the user by email and nicename
|
462 |
* @uses get_userdata() to get the user data
|
463 |
* @uses current_user_can() To check if the current user can edit the user
|
464 |
* @uses is_user_member_of_blog() To check if user profile page exists
|
@@ -497,21 +496,12 @@ function bbp_parse_query( $posts_query ) {
|
|
497 |
// Setup the default user variable
|
498 |
$the_user = false;
|
499 |
|
500 |
-
// If using pretty permalinks, use
|
501 |
if ( get_option( 'permalink_structure' ) ) {
|
|
|
502 |
|
503 |
-
|
504 |
-
|
505 |
-
$the_user = get_user_by( 'email', $bbp_user );
|
506 |
-
|
507 |
-
// Try nicename
|
508 |
-
} else {
|
509 |
-
$the_user = get_user_by( 'slug', $bbp_user );
|
510 |
-
}
|
511 |
-
}
|
512 |
-
|
513 |
-
// No user found by slug/email, so try the ID if it's numeric
|
514 |
-
if ( empty( $the_user ) && is_numeric( $bbp_user ) ) {
|
515 |
$the_user = get_user_by( 'id', $bbp_user );
|
516 |
}
|
517 |
|
159 |
if ( !empty( $located ) ) {
|
160 |
|
161 |
$content_dir = constant( 'WP_CONTENT_DIR' );
|
162 |
+
|
163 |
// IIS (Windows) here
|
164 |
// Replace back slashes with forward slash
|
165 |
if ( strpos( $located, '\\' ) !== false ) {
|
227 |
if ( !empty( $located ) ) {
|
228 |
|
229 |
$content_dir = constant( 'WP_CONTENT_DIR' );
|
230 |
+
|
231 |
// IIS (Windows) here
|
232 |
// Replace back slashes with forward slash
|
233 |
if ( strpos( $located, '\\' ) !== false ) {
|
457 |
* @param WP_Query $posts_query
|
458 |
*
|
459 |
* @uses get_query_var() To get {@link WP_Query} query var
|
460 |
+
* @uses get_user_by() To try to get the user by id or nicename
|
|
|
461 |
* @uses get_userdata() to get the user data
|
462 |
* @uses current_user_can() To check if the current user can edit the user
|
463 |
* @uses is_user_member_of_blog() To check if user profile page exists
|
496 |
// Setup the default user variable
|
497 |
$the_user = false;
|
498 |
|
499 |
+
// If using pretty permalinks, always use slug
|
500 |
if ( get_option( 'permalink_structure' ) ) {
|
501 |
+
$the_user = get_user_by( 'slug', $bbp_user );
|
502 |
|
503 |
+
// If not using pretty permalinks, always use numeric ID
|
504 |
+
} elseif ( is_numeric( $bbp_user ) ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
505 |
$the_user = get_user_by( 'id', $bbp_user );
|
506 |
}
|
507 |
|
includes/extend/buddypress/groups.php
CHANGED
@@ -147,8 +147,12 @@ class BBP_Forums_Group_Extension extends BP_Group_Extension {
|
|
147 |
|
148 |
/**
|
149 |
* The primary display function for group forums
|
|
|
|
|
|
|
|
|
150 |
*/
|
151 |
-
public function display() {
|
152 |
|
153 |
// Prevent Topic Parent from appearing
|
154 |
add_action( 'bbp_theme_before_topic_form_forum', array( $this, 'ob_start' ) );
|
147 |
|
148 |
/**
|
149 |
* The primary display function for group forums
|
150 |
+
*
|
151 |
+
* @since bbPress (r3746)
|
152 |
+
*
|
153 |
+
* @param int $group_id ID of the current group. Available only on BP 2.2+.
|
154 |
*/
|
155 |
+
public function display( $group_id = null ) {
|
156 |
|
157 |
// Prevent Topic Parent from appearing
|
158 |
add_action( 'bbp_theme_before_topic_form_forum', array( $this, 'ob_start' ) );
|
includes/users/functions.php
CHANGED
@@ -1434,7 +1434,7 @@ function bbp_edit_user_handler( $action = '' ) {
|
|
1434 |
} elseif ( is_integer( $edit_user ) ) {
|
1435 |
|
1436 |
// Maybe update super admin ability
|
1437 |
-
if ( is_multisite() && ! bbp_is_user_home_edit() ) {
|
1438 |
empty( $_POST['super_admin'] ) ? revoke_super_admin( $edit_user ) : grant_super_admin( $edit_user );
|
1439 |
}
|
1440 |
|
1434 |
} elseif ( is_integer( $edit_user ) ) {
|
1435 |
|
1436 |
// Maybe update super admin ability
|
1437 |
+
if ( is_multisite() && ! bbp_is_user_home_edit() && current_user_can( 'manage_network_options' ) && is_super_admin() ) {
|
1438 |
empty( $_POST['super_admin'] ) ? revoke_super_admin( $edit_user ) : grant_super_admin( $edit_user );
|
1439 |
}
|
1440 |
|
languages/bbpress.pot
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
# This file is distributed under the same license as the bbPress package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: bbPress 2.5.
|
6 |
"Report-Msgid-Bugs-To: https://bbpress.trac.wordpress.org\n"
|
7 |
-
"POT-Creation-Date: 2015-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -88,35 +88,35 @@ msgstr ""
|
|
88 |
msgid "Topics with no replies"
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: includes/admin/admin.php:
|
92 |
#: includes/admin/tools.php:34
|
93 |
msgid "Repair Forums"
|
94 |
msgstr ""
|
95 |
|
96 |
-
#: includes/admin/admin.php:
|
97 |
msgid "Forum Repair"
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: includes/admin/admin.php:
|
101 |
#: includes/admin/settings.php:1509
|
102 |
msgid "Import Forums"
|
103 |
msgstr ""
|
104 |
|
105 |
-
#: includes/admin/admin.php:
|
106 |
msgid "Forum Import"
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: includes/admin/admin.php:
|
110 |
#: includes/admin/tools.php:1208
|
111 |
msgid "Reset Forums"
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: includes/admin/admin.php:
|
115 |
msgid "Forum Reset"
|
116 |
msgstr ""
|
117 |
|
118 |
-
#: includes/admin/admin.php:
|
119 |
-
#: includes/admin/admin.php:
|
120 |
#: includes/admin/users.php:82 includes/common/widgets.php:662
|
121 |
#: includes/extend/buddypress/loader.php:42
|
122 |
#: includes/extend/buddypress/loader.php:175
|
@@ -127,95 +127,95 @@ msgstr ""
|
|
127 |
msgid "Forums"
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: includes/admin/admin.php:
|
131 |
-
#: includes/admin/admin.php:
|
132 |
msgid "Welcome to bbPress"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: includes/admin/admin.php:
|
136 |
-
#: includes/admin/admin.php:
|
137 |
-
#: includes/admin/admin.php:
|
138 |
msgid "Update Forums"
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: includes/admin/admin.php:
|
142 |
msgid "Settings"
|
143 |
msgstr ""
|
144 |
|
145 |
-
#: includes/admin/admin.php:
|
146 |
msgid "About"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: includes/admin/admin.php:
|
150 |
msgid "Right Now in Forums"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: includes/admin/admin.php:
|
154 |
msgid "About bbPress"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: includes/admin/admin.php:
|
158 |
msgctxt "admin color scheme"
|
159 |
msgid "Mint"
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: includes/admin/admin.php:
|
163 |
msgctxt "admin color scheme"
|
164 |
msgid "Evergreen"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: includes/admin/admin.php:
|
168 |
msgid "%s - %s"
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: includes/admin/admin.php:
|
172 |
msgid "Welcome to bbPress %s"
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: includes/admin/admin.php:
|
176 |
msgid ""
|
177 |
"Thank you for updating! bbPress %s is bundled up and ready to weather the "
|
178 |
"storm of users in your community!"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: includes/admin/admin.php:
|
182 |
msgid "Version %s"
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: includes/admin/admin.php:
|
186 |
msgid "What’s New"
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: includes/admin/admin.php:
|
190 |
msgid "Credits"
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: includes/admin/admin.php:
|
194 |
msgid "Forum Subscriptions"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: includes/admin/admin.php:
|
198 |
msgid "Subscribe to Forums"
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: includes/admin/admin.php:
|
202 |
msgid "Now your users can subscribe to new topics in specific forums."
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: includes/admin/admin.php:
|
206 |
msgid "Manage Subscriptions"
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: includes/admin/admin.php:
|
210 |
msgid ""
|
211 |
"Your users can manage all of their subscriptions in one convenient location."
|
212 |
msgstr ""
|
213 |
|
214 |
-
#: includes/admin/admin.php:
|
215 |
msgid "Converters"
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: includes/admin/admin.php:
|
219 |
msgid ""
|
220 |
"We’re all abuzz about the hive of new importers, AEF, Drupal, FluxBB, "
|
221 |
"Kunena Forums for Joomla, MyBB, Phorum, PHPFox, PHPWind, PunBB, SMF, Xenforo "
|
@@ -224,111 +224,111 @@ msgid ""
|
|
224 |
"if you need to remove imported users."
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: includes/admin/admin.php:
|
228 |
msgid "Theme Compatibility"
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: includes/admin/admin.php:
|
232 |
msgid "Better handling of styles and scripts in the template stack."
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: includes/admin/admin.php:
|
236 |
msgid "Polyglot support"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: includes/admin/admin.php:
|
240 |
msgid "bbPress fully supports automatic translation updates."
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: includes/admin/admin.php:
|
244 |
msgid "User capabilities"
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: includes/admin/admin.php:
|
248 |
msgid ""
|
249 |
"Roles and capabilities have been swept through, cleaned up, and simplified."
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: includes/admin/admin.php:
|
253 |
msgid "Go to Forum Settings"
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: includes/admin/admin.php:
|
257 |
msgid ""
|
258 |
"Thank you for updating! bbPress %s is waxed, polished, and ready for you to "
|
259 |
"take it for a lap or two around the block!"
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: includes/admin/admin.php:
|
263 |
msgid "bbPress is created by a worldwide swarm of busy, busy bees."
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: includes/admin/admin.php:
|
267 |
msgid "Project Leaders"
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: includes/admin/admin.php:
|
271 |
msgid "Founding Developer"
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: includes/admin/admin.php:
|
275 |
msgid "Lead Developer"
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: includes/admin/admin.php:
|
279 |
msgid "Feature Developer"
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: includes/admin/admin.php:
|
283 |
msgid "Converter Specialist"
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: includes/admin/admin.php:
|
287 |
msgid "Contributing Developers"
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: includes/admin/admin.php:
|
291 |
msgid "Bug Testing"
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: includes/admin/admin.php:
|
295 |
msgid "Core Contributors to bbPress 2.5"
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: includes/admin/admin.php:
|
299 |
msgid "Update Forum"
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: includes/admin/admin.php:
|
303 |
msgid "All done!"
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: includes/admin/admin.php:
|
307 |
msgid "Go Back"
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: includes/admin/admin.php:
|
311 |
msgid ""
|
312 |
"You can update your forum through this page. Hit the link below to update."
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: includes/admin/admin.php:
|
316 |
msgid ""
|
317 |
"Warning! Problem updating %1$s. Your server may not be able to connect to "
|
318 |
"sites running on it. Error message: <em>%2$s</em>"
|
319 |
msgstr ""
|
320 |
|
321 |
-
#: includes/admin/admin.php:
|
322 |
msgid ""
|
323 |
"If your browser doesn’t start loading the next page automatically, "
|
324 |
"click this link:"
|
325 |
msgstr ""
|
326 |
|
327 |
-
#: includes/admin/admin.php:
|
328 |
msgid "Next Forums"
|
329 |
msgstr ""
|
330 |
|
331 |
-
#: includes/admin/admin.php:
|
332 |
msgid ""
|
333 |
"You can update all the forums on your network through this page. It works by "
|
334 |
"calling the update script of each site automatically. Hit the link below to "
|
@@ -937,7 +937,7 @@ msgid "Select whether to open or close the topic."
|
|
937 |
msgstr ""
|
938 |
|
939 |
#: includes/admin/metaboxes.php:379 includes/admin/metaboxes.php:433
|
940 |
-
#: includes/extend/buddypress/groups.php:
|
941 |
#: templates/default/bbpress/form-topic.php:114
|
942 |
msgid "Forum:"
|
943 |
msgstr ""
|
@@ -2469,7 +2469,7 @@ msgstr ""
|
|
2469 |
msgid "Voices"
|
2470 |
msgstr ""
|
2471 |
|
2472 |
-
#: includes/admin/topics.php:694 includes/extend/buddypress/groups.php:
|
2473 |
#: templates/default/bbpress/form-topic.php:117
|
2474 |
msgid "(No Forum)"
|
2475 |
msgstr ""
|
@@ -3119,42 +3119,42 @@ msgstr ""
|
|
3119 |
msgid "%1$s replied to the topic %2$s in the forum %3$s"
|
3120 |
msgstr ""
|
3121 |
|
3122 |
-
#: includes/extend/buddypress/groups.php:
|
3123 |
-
#: includes/extend/buddypress/groups.php:
|
3124 |
msgid "Group Forum Settings"
|
3125 |
msgstr ""
|
3126 |
|
3127 |
-
#: includes/extend/buddypress/groups.php:
|
3128 |
-
#: includes/extend/buddypress/groups.php:
|
3129 |
msgid ""
|
3130 |
"Create a discussion forum to allow members of this group to communicate in a "
|
3131 |
"structured, bulletin-board style fashion."
|
3132 |
msgstr ""
|
3133 |
|
3134 |
-
#: includes/extend/buddypress/groups.php:
|
3135 |
-
#: includes/extend/buddypress/groups.php:
|
3136 |
msgid "Yes. I want this group to have a forum."
|
3137 |
msgstr ""
|
3138 |
|
3139 |
-
#: includes/extend/buddypress/groups.php:
|
3140 |
msgid "Saying no will not delete existing forum content."
|
3141 |
msgstr ""
|
3142 |
|
3143 |
-
#: includes/extend/buddypress/groups.php:
|
3144 |
msgid "Group Forum:"
|
3145 |
msgstr ""
|
3146 |
|
3147 |
-
#: includes/extend/buddypress/groups.php:
|
3148 |
msgid ""
|
3149 |
"Network administrators can reconfigure which forum belongs to this group."
|
3150 |
msgstr ""
|
3151 |
|
3152 |
-
#: includes/extend/buddypress/groups.php:
|
3153 |
msgid "Save Settings"
|
3154 |
msgstr ""
|
3155 |
|
3156 |
-
#: includes/extend/buddypress/groups.php:
|
3157 |
-
#: includes/extend/buddypress/groups.php:
|
3158 |
#: includes/extend/buddypress/notifications.php:161
|
3159 |
#: includes/forums/functions.php:118 includes/forums/functions.php:395
|
3160 |
#: includes/replies/functions.php:116 includes/replies/functions.php:516
|
@@ -3168,16 +3168,16 @@ msgstr ""
|
|
3168 |
msgid "<strong>ERROR</strong>: Are you sure you wanted to do that?"
|
3169 |
msgstr ""
|
3170 |
|
3171 |
-
#: includes/extend/buddypress/groups.php:
|
3172 |
msgctxt "group admin edit screen"
|
3173 |
msgid "Discussion Forum"
|
3174 |
msgstr ""
|
3175 |
|
3176 |
-
#: includes/extend/buddypress/groups.php:
|
3177 |
msgid "Group Forum"
|
3178 |
msgstr ""
|
3179 |
|
3180 |
-
#: includes/extend/buddypress/groups.php:
|
3181 |
msgid "This group does not currently have a forum."
|
3182 |
msgstr ""
|
3183 |
|
@@ -4939,9 +4939,9 @@ msgstr ""
|
|
4939 |
msgid "bbPress"
|
4940 |
msgstr ""
|
4941 |
|
4942 |
-
#. #-#-#-#-# plugin.pot (bbPress 2.5.
|
4943 |
#. Plugin URI of the plugin/theme
|
4944 |
-
#. #-#-#-#-# plugin.pot (bbPress 2.5.
|
4945 |
#. Author URI of the plugin/theme
|
4946 |
msgid "http://bbpress.org"
|
4947 |
msgstr ""
|
@@ -4953,4 +4953,3 @@ msgstr ""
|
|
4953 |
#. Author of the plugin/theme
|
4954 |
msgid "The bbPress Community"
|
4955 |
msgstr ""
|
4956 |
-
|
2 |
# This file is distributed under the same license as the bbPress package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: bbPress 2.5.8\n"
|
6 |
"Report-Msgid-Bugs-To: https://bbpress.trac.wordpress.org\n"
|
7 |
+
"POT-Creation-Date: 2015-07-13 17:00:36+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
88 |
msgid "Topics with no replies"
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: includes/admin/admin.php:198 includes/admin/functions.php:273
|
92 |
#: includes/admin/tools.php:34
|
93 |
msgid "Repair Forums"
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: includes/admin/admin.php:199
|
97 |
msgid "Forum Repair"
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: includes/admin/admin.php:208 includes/admin/functions.php:277
|
101 |
#: includes/admin/settings.php:1509
|
102 |
msgid "Import Forums"
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: includes/admin/admin.php:209
|
106 |
msgid "Forum Import"
|
107 |
msgstr ""
|
108 |
|
109 |
+
#: includes/admin/admin.php:218 includes/admin/functions.php:281
|
110 |
#: includes/admin/tools.php:1208
|
111 |
msgid "Reset Forums"
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: includes/admin/admin.php:219
|
115 |
msgid "Forum Reset"
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: includes/admin/admin.php:233 includes/admin/admin.php:234
|
119 |
+
#: includes/admin/admin.php:244 includes/admin/admin.php:245
|
120 |
#: includes/admin/users.php:82 includes/common/widgets.php:662
|
121 |
#: includes/extend/buddypress/loader.php:42
|
122 |
#: includes/extend/buddypress/loader.php:175
|
127 |
msgid "Forums"
|
128 |
msgstr ""
|
129 |
|
130 |
+
#: includes/admin/admin.php:257 includes/admin/admin.php:258
|
131 |
+
#: includes/admin/admin.php:266 includes/admin/admin.php:267
|
132 |
msgid "Welcome to bbPress"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: includes/admin/admin.php:280 includes/admin/admin.php:281
|
136 |
+
#: includes/admin/admin.php:302 includes/admin/admin.php:303
|
137 |
+
#: includes/admin/admin.php:1010 includes/admin/admin.php:1097
|
138 |
msgid "Update Forums"
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: includes/admin/admin.php:510
|
142 |
msgid "Settings"
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: includes/admin/admin.php:515
|
146 |
msgid "About"
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: includes/admin/admin.php:530
|
150 |
msgid "Right Now in Forums"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: includes/admin/admin.php:545
|
154 |
msgid "About bbPress"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: includes/admin/admin.php:630
|
158 |
msgctxt "admin color scheme"
|
159 |
msgid "Mint"
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: includes/admin/admin.php:639
|
163 |
msgctxt "admin color scheme"
|
164 |
msgid "Evergreen"
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: includes/admin/admin.php:720 includes/admin/admin.php:758
|
168 |
msgid "%s - %s"
|
169 |
msgstr ""
|
170 |
|
171 |
+
#: includes/admin/admin.php:776 includes/admin/admin.php:853
|
172 |
msgid "Welcome to bbPress %s"
|
173 |
msgstr ""
|
174 |
|
175 |
+
#: includes/admin/admin.php:777
|
176 |
msgid ""
|
177 |
"Thank you for updating! bbPress %s is bundled up and ready to weather the "
|
178 |
"storm of users in your community!"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: includes/admin/admin.php:778 includes/admin/admin.php:855
|
182 |
msgid "Version %s"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: includes/admin/admin.php:782 includes/admin/admin.php:859
|
186 |
msgid "What’s New"
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: includes/admin/admin.php:784 includes/admin/admin.php:861
|
190 |
msgid "Credits"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: includes/admin/admin.php:789
|
194 |
msgid "Forum Subscriptions"
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: includes/admin/admin.php:793
|
198 |
msgid "Subscribe to Forums"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: includes/admin/admin.php:794
|
202 |
msgid "Now your users can subscribe to new topics in specific forums."
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: includes/admin/admin.php:798
|
206 |
msgid "Manage Subscriptions"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: includes/admin/admin.php:799
|
210 |
msgid ""
|
211 |
"Your users can manage all of their subscriptions in one convenient location."
|
212 |
msgstr ""
|
213 |
|
214 |
+
#: includes/admin/admin.php:805
|
215 |
msgid "Converters"
|
216 |
msgstr ""
|
217 |
|
218 |
+
#: includes/admin/admin.php:809
|
219 |
msgid ""
|
220 |
"We’re all abuzz about the hive of new importers, AEF, Drupal, FluxBB, "
|
221 |
"Kunena Forums for Joomla, MyBB, Phorum, PHPFox, PHPWind, PunBB, SMF, Xenforo "
|
224 |
"if you need to remove imported users."
|
225 |
msgstr ""
|
226 |
|
227 |
+
#: includes/admin/admin.php:815
|
228 |
msgid "Theme Compatibility"
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: includes/admin/admin.php:816
|
232 |
msgid "Better handling of styles and scripts in the template stack."
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: includes/admin/admin.php:820
|
236 |
msgid "Polyglot support"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: includes/admin/admin.php:821
|
240 |
msgid "bbPress fully supports automatic translation updates."
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: includes/admin/admin.php:825
|
244 |
msgid "User capabilities"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: includes/admin/admin.php:826
|
248 |
msgid ""
|
249 |
"Roles and capabilities have been swept through, cleaned up, and simplified."
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: includes/admin/admin.php:832 includes/admin/admin.php:936
|
253 |
msgid "Go to Forum Settings"
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: includes/admin/admin.php:854
|
257 |
msgid ""
|
258 |
"Thank you for updating! bbPress %s is waxed, polished, and ready for you to "
|
259 |
"take it for a lap or two around the block!"
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: includes/admin/admin.php:865
|
263 |
msgid "bbPress is created by a worldwide swarm of busy, busy bees."
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: includes/admin/admin.php:867
|
267 |
msgid "Project Leaders"
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: includes/admin/admin.php:872
|
271 |
msgid "Founding Developer"
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: includes/admin/admin.php:877
|
275 |
msgid "Lead Developer"
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: includes/admin/admin.php:882 includes/admin/admin.php:901
|
279 |
msgid "Feature Developer"
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: includes/admin/admin.php:887
|
283 |
msgid "Converter Specialist"
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: includes/admin/admin.php:891
|
287 |
msgid "Contributing Developers"
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: includes/admin/admin.php:896
|
291 |
msgid "Bug Testing"
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: includes/admin/admin.php:905
|
295 |
msgid "Core Contributors to bbPress 2.5"
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: includes/admin/admin.php:962 includes/admin/admin.php:984
|
299 |
msgid "Update Forum"
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: includes/admin/admin.php:973 includes/admin/admin.php:1027
|
303 |
msgid "All done!"
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: includes/admin/admin.php:974 includes/admin/admin.php:1028
|
307 |
msgid "Go Back"
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: includes/admin/admin.php:983
|
311 |
msgid ""
|
312 |
"You can update your forum through this page. Hit the link below to update."
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: includes/admin/admin.php:1053
|
316 |
msgid ""
|
317 |
"Warning! Problem updating %1$s. Your server may not be able to connect to "
|
318 |
"sites running on it. Error message: <em>%2$s</em>"
|
319 |
msgstr ""
|
320 |
|
321 |
+
#: includes/admin/admin.php:1077
|
322 |
msgid ""
|
323 |
"If your browser doesn’t start loading the next page automatically, "
|
324 |
"click this link:"
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: includes/admin/admin.php:1078
|
328 |
msgid "Next Forums"
|
329 |
msgstr ""
|
330 |
|
331 |
+
#: includes/admin/admin.php:1096
|
332 |
msgid ""
|
333 |
"You can update all the forums on your network through this page. It works by "
|
334 |
"calling the update script of each site automatically. Hit the link below to "
|
937 |
msgstr ""
|
938 |
|
939 |
#: includes/admin/metaboxes.php:379 includes/admin/metaboxes.php:433
|
940 |
+
#: includes/extend/buddypress/groups.php:1042 includes/topics/template.php:61
|
941 |
#: templates/default/bbpress/form-topic.php:114
|
942 |
msgid "Forum:"
|
943 |
msgstr ""
|
2469 |
msgid "Voices"
|
2470 |
msgstr ""
|
2471 |
|
2472 |
+
#: includes/admin/topics.php:694 includes/extend/buddypress/groups.php:295
|
2473 |
#: templates/default/bbpress/form-topic.php:117
|
2474 |
msgid "(No Forum)"
|
2475 |
msgstr ""
|
3119 |
msgid "%1$s replied to the topic %2$s in the forum %3$s"
|
3120 |
msgstr ""
|
3121 |
|
3122 |
+
#: includes/extend/buddypress/groups.php:275
|
3123 |
+
#: includes/extend/buddypress/groups.php:278
|
3124 |
msgid "Group Forum Settings"
|
3125 |
msgstr ""
|
3126 |
|
3127 |
+
#: includes/extend/buddypress/groups.php:279
|
3128 |
+
#: includes/extend/buddypress/groups.php:480
|
3129 |
msgid ""
|
3130 |
"Create a discussion forum to allow members of this group to communicate in a "
|
3131 |
"structured, bulletin-board style fashion."
|
3132 |
msgstr ""
|
3133 |
|
3134 |
+
#: includes/extend/buddypress/groups.php:283
|
3135 |
+
#: includes/extend/buddypress/groups.php:483
|
3136 |
msgid "Yes. I want this group to have a forum."
|
3137 |
msgstr ""
|
3138 |
|
3139 |
+
#: includes/extend/buddypress/groups.php:286
|
3140 |
msgid "Saying no will not delete existing forum content."
|
3141 |
msgstr ""
|
3142 |
|
3143 |
+
#: includes/extend/buddypress/groups.php:291
|
3144 |
msgid "Group Forum:"
|
3145 |
msgstr ""
|
3146 |
|
3147 |
+
#: includes/extend/buddypress/groups.php:299
|
3148 |
msgid ""
|
3149 |
"Network administrators can reconfigure which forum belongs to this group."
|
3150 |
msgstr ""
|
3151 |
|
3152 |
+
#: includes/extend/buddypress/groups.php:304
|
3153 |
msgid "Save Settings"
|
3154 |
msgstr ""
|
3155 |
|
3156 |
+
#: includes/extend/buddypress/groups.php:339
|
3157 |
+
#: includes/extend/buddypress/groups.php:498
|
3158 |
#: includes/extend/buddypress/notifications.php:161
|
3159 |
#: includes/forums/functions.php:118 includes/forums/functions.php:395
|
3160 |
#: includes/replies/functions.php:116 includes/replies/functions.php:516
|
3168 |
msgid "<strong>ERROR</strong>: Are you sure you wanted to do that?"
|
3169 |
msgstr ""
|
3170 |
|
3171 |
+
#: includes/extend/buddypress/groups.php:437
|
3172 |
msgctxt "group admin edit screen"
|
3173 |
msgid "Discussion Forum"
|
3174 |
msgstr ""
|
3175 |
|
3176 |
+
#: includes/extend/buddypress/groups.php:478
|
3177 |
msgid "Group Forum"
|
3178 |
msgstr ""
|
3179 |
|
3180 |
+
#: includes/extend/buddypress/groups.php:775
|
3181 |
msgid "This group does not currently have a forum."
|
3182 |
msgstr ""
|
3183 |
|
4939 |
msgid "bbPress"
|
4940 |
msgstr ""
|
4941 |
|
4942 |
+
#. #-#-#-#-# plugin.pot (bbPress 2.5.8) #-#-#-#-#
|
4943 |
#. Plugin URI of the plugin/theme
|
4944 |
+
#. #-#-#-#-# plugin.pot (bbPress 2.5.8) #-#-#-#-#
|
4945 |
#. Author URI of the plugin/theme
|
4946 |
msgid "http://bbpress.org"
|
4947 |
msgstr ""
|
4953 |
#. Author of the plugin/theme
|
4954 |
msgid "The bbPress Community"
|
4955 |
msgstr ""
|
|
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
Contributors: matt, johnjamesjacoby, jmdodd, netweb
|
3 |
Tags: forums, discussion, support, theme, akismet, multisite
|
4 |
Requires at least: 3.6
|
5 |
-
Tested up to: 4.
|
6 |
-
Stable tag: 2.5.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -23,8 +23,7 @@ We're keeping things as small and light as possible while still allowing for gre
|
|
23 |
2. Search for 'bbPress'
|
24 |
3. Activate bbPress from your Plugins page. (You'll be greeted with a Welcome page.)
|
25 |
4. Visit 'Forums > Add New' and create some forums. (You can always delete these later.)
|
26 |
-
|
27 |
-
5b. If you do not have pretty permalinks enabled, visit yourdomain.com?post_type=forum
|
28 |
|
29 |
= From WordPress.org =
|
30 |
|
@@ -32,8 +31,7 @@ We're keeping things as small and light as possible while still allowing for gre
|
|
32 |
2. Upload the 'bbpress' directory to your '/wp-content/plugins/' directory, using your favorite method (ftp, sftp, scp, etc...)
|
33 |
3. Activate bbPress from your Plugins page. (You'll be greeted with a Welcome page.)
|
34 |
4. Visit 'Forums > Add New' and create some forums. (You can always delete these later.)
|
35 |
-
|
36 |
-
5b. If you do not have pretty permalinks enabled, visit yourdomain.com?post_type=forum
|
37 |
|
38 |
= Extra =
|
39 |
|
@@ -42,6 +40,11 @@ We're keeping things as small and light as possible while still allowing for gre
|
|
42 |
|
43 |
== Changelog ==
|
44 |
|
|
|
|
|
|
|
|
|
|
|
45 |
= 2.5.7 =
|
46 |
* Improved output of certain URLs
|
47 |
|
2 |
Contributors: matt, johnjamesjacoby, jmdodd, netweb
|
3 |
Tags: forums, discussion, support, theme, akismet, multisite
|
4 |
Requires at least: 3.6
|
5 |
+
Tested up to: 4.4
|
6 |
+
Stable tag: 2.5.8
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
23 |
2. Search for 'bbPress'
|
24 |
3. Activate bbPress from your Plugins page. (You'll be greeted with a Welcome page.)
|
25 |
4. Visit 'Forums > Add New' and create some forums. (You can always delete these later.)
|
26 |
+
5. If you have pretty permalinks enabled, visit yourdomain.com/forums, or if you do not have pretty permalinks enabled, visit yourdomain.com?post_type=forum
|
|
|
27 |
|
28 |
= From WordPress.org =
|
29 |
|
31 |
2. Upload the 'bbpress' directory to your '/wp-content/plugins/' directory, using your favorite method (ftp, sftp, scp, etc...)
|
32 |
3. Activate bbPress from your Plugins page. (You'll be greeted with a Welcome page.)
|
33 |
4. Visit 'Forums > Add New' and create some forums. (You can always delete these later.)
|
34 |
+
5. If you have pretty permalinks enabled, visit yourdomain.com/forums, or if you do not have pretty permalinks enabled, visit yourdomain.com?post_type=forum
|
|
|
35 |
|
36 |
= Extra =
|
37 |
|
40 |
|
41 |
== Changelog ==
|
42 |
|
43 |
+
= 2.5.8 =
|
44 |
+
* Improved ajax actions
|
45 |
+
* Improved user query parsing
|
46 |
+
* Fix BuddyPress Groups notice
|
47 |
+
|
48 |
= 2.5.7 =
|
49 |
* Improved output of certain URLs
|
50 |
|