Version Description
See: http://codex.buddypress.org/releases/version-1-9-2/
Download this release
Release Info
| Developer | johnjamesjacoby |
| Plugin | |
| Version | 1.9.2 |
| Comparing to | |
| See all releases | |
Code changes from version 1.9.1 to 1.9.2
- .travis.yml +54 -0
- bp-activity/bp-activity-screens.php +2 -2
- bp-activity/bp-activity-template.php +2 -6
- bp-blogs/bp-blogs-screens.php +2 -2
- bp-core/bp-core-functions.php +7 -1
- bp-core/bp-core-theme-compatibility.php +58 -0
- bp-core/bp-core-update.php +27 -0
- bp-forums/bp-forums-screens.php +1 -1
- bp-friends/bp-friends-template.php +2 -4
- bp-groups/bp-groups-actions.php +6 -0
- bp-groups/bp-groups-filters.php +10 -0
- bp-groups/bp-groups-screens.php +3 -3
- bp-groups/bp-groups-template.php +2 -4
- bp-languages/buddypress.pot +119 -115
- bp-loader.php +3 -3
- bp-members/bp-members-notifications.php +1 -1
- bp-members/bp-members-screens.php +3 -3
- bp-members/bp-members-template.php +11 -11
- bp-notifications/bp-notifications-functions.php +2 -2
- readme.txt +5 -2
.travis.yml
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
language: php
|
| 2 |
+
|
| 3 |
+
php:
|
| 4 |
+
- 5.2
|
| 5 |
+
- 5.3
|
| 6 |
+
- 5.4
|
| 7 |
+
- 5.5
|
| 8 |
+
|
| 9 |
+
env:
|
| 10 |
+
- WP_VERSION=master WP_MULTISITE=0
|
| 11 |
+
- WP_VERSION=3.8 WP_MULTISITE=0
|
| 12 |
+
- WP_VERSION=3.7.1 WP_MULTISITE=0
|
| 13 |
+
- WP_VERSION=3.6.1 WP_MULTISITE=0
|
| 14 |
+
- WP_VERSION=3.5.2 WP_MULTISITE=0
|
| 15 |
+
- WP_VERSION=master WP_MULTISITE=1
|
| 16 |
+
- WP_VERSION=3.8 WP_MULTISITE=1
|
| 17 |
+
- WP_VERSION=3.7.1 WP_MULTISITE=1
|
| 18 |
+
- WP_VERSION=3.6.1 WP_MULTISITE=1
|
| 19 |
+
- WP_VERSION=3.5.2 WP_MULTISITE=1
|
| 20 |
+
|
| 21 |
+
before_script:
|
| 22 |
+
# set up WP install
|
| 23 |
+
- WP_CORE_DIR=/tmp/wordpress/
|
| 24 |
+
- wget -nv -O /tmp/wordpress.tar.gz https://github.com/WordPress/WordPress/tarball/$WP_VERSION
|
| 25 |
+
- mkdir -p $WP_CORE_DIR
|
| 26 |
+
- tar --strip-components=1 -zxmf /tmp/wordpress.tar.gz -C $WP_CORE_DIR
|
| 27 |
+
- plugin_slug=$(basename $(pwd))
|
| 28 |
+
- plugin_dir=$WP_CORE_DIR/wp-content/plugins/$plugin_slug
|
| 29 |
+
- cd ..
|
| 30 |
+
- mv $plugin_slug $plugin_dir
|
| 31 |
+
# set up testing suite
|
| 32 |
+
- export WP_TESTS_DIR=/tmp/wordpress-tests/
|
| 33 |
+
- svn co --ignore-externals http://unit-tests.svn.wordpress.org/trunk/ $WP_TESTS_DIR
|
| 34 |
+
- cd $WP_TESTS_DIR
|
| 35 |
+
- cp wp-tests-config-sample.php wp-tests-config.php
|
| 36 |
+
- sed -i "s:dirname( __FILE__ ) . '/wordpress/':'$WP_CORE_DIR':" wp-tests-config.php
|
| 37 |
+
- sed -i "s/yourdbnamehere/wordpress_test/" wp-tests-config.php
|
| 38 |
+
- sed -i "s/yourusernamehere/root/" wp-tests-config.php
|
| 39 |
+
- sed -i "s/yourpasswordhere//" wp-tests-config.php
|
| 40 |
+
# set up database
|
| 41 |
+
- mysql -e 'CREATE DATABASE wordpress_test;' -uroot
|
| 42 |
+
# prepare for running the tests
|
| 43 |
+
- cd $plugin_dir/tests
|
| 44 |
+
|
| 45 |
+
script: phpunit
|
| 46 |
+
|
| 47 |
+
notifications:
|
| 48 |
+
email: false
|
| 49 |
+
|
| 50 |
+
irc:
|
| 51 |
+
channels:
|
| 52 |
+
- "irc.freenode.net#buddypress-dev"
|
| 53 |
+
template:
|
| 54 |
+
- "Build %{build_number} (%{branch} - %{commit}): %{message} %{build_url}"
|
bp-activity/bp-activity-screens.php
CHANGED
|
@@ -387,7 +387,7 @@ class BP_Activity_Theme_Compat {
|
|
| 387 |
'post_content' => '',
|
| 388 |
'post_type' => 'bp_activity',
|
| 389 |
'post_status' => 'publish',
|
| 390 |
-
'
|
| 391 |
'comment_status' => 'closed'
|
| 392 |
) );
|
| 393 |
}
|
|
@@ -440,7 +440,7 @@ class BP_Activity_Theme_Compat {
|
|
| 440 |
'post_content' => '',
|
| 441 |
'post_type' => 'bp_activity',
|
| 442 |
'post_status' => 'publish',
|
| 443 |
-
'
|
| 444 |
'comment_status' => 'closed'
|
| 445 |
) );
|
| 446 |
}
|
| 387 |
'post_content' => '',
|
| 388 |
'post_type' => 'bp_activity',
|
| 389 |
'post_status' => 'publish',
|
| 390 |
+
'is_page' => true,
|
| 391 |
'comment_status' => 'closed'
|
| 392 |
) );
|
| 393 |
}
|
| 440 |
'post_content' => '',
|
| 441 |
'post_type' => 'bp_activity',
|
| 442 |
'post_status' => 'publish',
|
| 443 |
+
'is_page' => true,
|
| 444 |
'comment_status' => 'closed'
|
| 445 |
) );
|
| 446 |
}
|
bp-activity/bp-activity-template.php
CHANGED
|
@@ -25,14 +25,12 @@ function bp_activity_slug() {
|
|
| 25 |
*
|
| 26 |
* @since BuddyPress (1.5)
|
| 27 |
*
|
| 28 |
-
* @global object $bp BuddyPress global settings.
|
| 29 |
* @uses apply_filters() To call the 'bp_get_activity_slug' hook.
|
| 30 |
*
|
| 31 |
* @return string The activity component slug.
|
| 32 |
*/
|
| 33 |
function bp_get_activity_slug() {
|
| 34 |
-
|
| 35 |
-
return apply_filters( 'bp_get_activity_slug', $bp->activity->slug );
|
| 36 |
}
|
| 37 |
|
| 38 |
/**
|
|
@@ -50,14 +48,12 @@ function bp_activity_root_slug() {
|
|
| 50 |
*
|
| 51 |
* @since BuddyPress (1.5)
|
| 52 |
*
|
| 53 |
-
* @global object $bp BuddyPress global settings.
|
| 54 |
* @uses apply_filters() To call the 'bp_get_activity_root_slug' hook.
|
| 55 |
*
|
| 56 |
* @return string The activity component root slug.
|
| 57 |
*/
|
| 58 |
function bp_get_activity_root_slug() {
|
| 59 |
-
|
| 60 |
-
return apply_filters( 'bp_get_activity_root_slug', $bp->activity->root_slug );
|
| 61 |
}
|
| 62 |
|
| 63 |
/**
|
| 25 |
*
|
| 26 |
* @since BuddyPress (1.5)
|
| 27 |
*
|
|
|
|
| 28 |
* @uses apply_filters() To call the 'bp_get_activity_slug' hook.
|
| 29 |
*
|
| 30 |
* @return string The activity component slug.
|
| 31 |
*/
|
| 32 |
function bp_get_activity_slug() {
|
| 33 |
+
return apply_filters( 'bp_get_activity_slug', buddypress()->activity->slug );
|
|
|
|
| 34 |
}
|
| 35 |
|
| 36 |
/**
|
| 48 |
*
|
| 49 |
* @since BuddyPress (1.5)
|
| 50 |
*
|
|
|
|
| 51 |
* @uses apply_filters() To call the 'bp_get_activity_root_slug' hook.
|
| 52 |
*
|
| 53 |
* @return string The activity component root slug.
|
| 54 |
*/
|
| 55 |
function bp_get_activity_root_slug() {
|
| 56 |
+
return apply_filters( 'bp_get_activity_root_slug', buddypress()->activity->root_slug );
|
|
|
|
| 57 |
}
|
| 58 |
|
| 59 |
/**
|
bp-blogs/bp-blogs-screens.php
CHANGED
|
@@ -156,7 +156,7 @@ class BP_Blogs_Theme_Compat {
|
|
| 156 |
'post_content' => '',
|
| 157 |
'post_type' => 'bp_blogs',
|
| 158 |
'post_status' => 'publish',
|
| 159 |
-
'
|
| 160 |
'comment_status' => 'closed'
|
| 161 |
) );
|
| 162 |
}
|
|
@@ -219,7 +219,7 @@ class BP_Blogs_Theme_Compat {
|
|
| 219 |
'post_content' => '',
|
| 220 |
'post_type' => 'bp_group',
|
| 221 |
'post_status' => 'publish',
|
| 222 |
-
'
|
| 223 |
'comment_status' => 'closed'
|
| 224 |
) );
|
| 225 |
}
|
| 156 |
'post_content' => '',
|
| 157 |
'post_type' => 'bp_blogs',
|
| 158 |
'post_status' => 'publish',
|
| 159 |
+
'is_page' => true,
|
| 160 |
'comment_status' => 'closed'
|
| 161 |
) );
|
| 162 |
}
|
| 219 |
'post_content' => '',
|
| 220 |
'post_type' => 'bp_group',
|
| 221 |
'post_status' => 'publish',
|
| 222 |
+
'is_page' => true,
|
| 223 |
'comment_status' => 'closed'
|
| 224 |
) );
|
| 225 |
}
|
bp-core/bp-core-functions.php
CHANGED
|
@@ -546,6 +546,12 @@ function bp_core_add_illegal_names() {
|
|
| 546 |
*/
|
| 547 |
function bp_do_register_theme_directory() {
|
| 548 |
$register = 'bp-default' === get_stylesheet() || 'bp-default' === get_template();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 549 |
return apply_filters( 'bp_do_register_theme_directory', $register );
|
| 550 |
}
|
| 551 |
|
|
@@ -1728,7 +1734,7 @@ function bp_nav_menu_get_loggedout_pages() {
|
|
| 1728 |
$register_page = get_post( $bp_directory_page_ids['register'] );
|
| 1729 |
$bp_menu_items[] = array(
|
| 1730 |
'name' => $register_page->post_title,
|
| 1731 |
-
'slug' =>
|
| 1732 |
'link' => get_permalink( $register_page->ID ),
|
| 1733 |
);
|
| 1734 |
}
|
| 546 |
*/
|
| 547 |
function bp_do_register_theme_directory() {
|
| 548 |
$register = 'bp-default' === get_stylesheet() || 'bp-default' === get_template();
|
| 549 |
+
|
| 550 |
+
// Legacy sites continue to have the theme registered
|
| 551 |
+
if ( empty( $register ) && ( 1 == get_site_option( '_bp_retain_bp_default' ) ) ) {
|
| 552 |
+
$register = true;
|
| 553 |
+
}
|
| 554 |
+
|
| 555 |
return apply_filters( 'bp_do_register_theme_directory', $register );
|
| 556 |
}
|
| 557 |
|
| 1734 |
$register_page = get_post( $bp_directory_page_ids['register'] );
|
| 1735 |
$bp_menu_items[] = array(
|
| 1736 |
'name' => $register_page->post_title,
|
| 1737 |
+
'slug' => 'register',
|
| 1738 |
'link' => get_permalink( $register_page->ID ),
|
| 1739 |
);
|
| 1740 |
}
|
bp-core/bp-core-theme-compatibility.php
CHANGED
|
@@ -819,3 +819,61 @@ function bp_comments_open( $open, $post_id = 0 ) {
|
|
| 819 |
// Allow override of the override
|
| 820 |
return apply_filters( 'bp_force_comment_status', $retval, $open, $post_id );
|
| 821 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 819 |
// Allow override of the override
|
| 820 |
return apply_filters( 'bp_force_comment_status', $retval, $open, $post_id );
|
| 821 |
}
|
| 822 |
+
|
| 823 |
+
/**
|
| 824 |
+
* Do not allow {@link comments_template()} to render during theme compatibility.
|
| 825 |
+
*
|
| 826 |
+
* When theme compatibility sets the 'is_page' flag to true via
|
| 827 |
+
* {@link bp_theme_compat_reset_post()}, themes that use comments_template()
|
| 828 |
+
* in their page template will run.
|
| 829 |
+
*
|
| 830 |
+
* To prevent comments_template() from rendering, we set the 'is_page' and
|
| 831 |
+
* 'is_single' flags to false since that function looks at these conditionals
|
| 832 |
+
* before querying the database for comments and loading the comments template.
|
| 833 |
+
*
|
| 834 |
+
* This is done during the output buffer as late as possible to prevent any
|
| 835 |
+
* wonkiness.
|
| 836 |
+
*
|
| 837 |
+
* @since BuddyPress (1.9.2)
|
| 838 |
+
*
|
| 839 |
+
* @param string $retval The current post content.
|
| 840 |
+
*/
|
| 841 |
+
function bp_theme_compat_toggle_is_page( $retval = '' ) {
|
| 842 |
+
global $wp_query;
|
| 843 |
+
|
| 844 |
+
$wp_query->is_single = false;
|
| 845 |
+
$wp_query->is_page = false;
|
| 846 |
+
|
| 847 |
+
// Set a switch so we know that we've toggled these WP_Query properties
|
| 848 |
+
buddypress()->theme_compat->is_page_toggled = true;
|
| 849 |
+
|
| 850 |
+
return $retval;
|
| 851 |
+
}
|
| 852 |
+
add_filter( 'bp_replace_the_content', 'bp_theme_compat_toggle_is_page', 9999 );
|
| 853 |
+
|
| 854 |
+
/**
|
| 855 |
+
* Restores the 'is_single' and 'is_page' flags if toggled by BuddyPress.
|
| 856 |
+
*
|
| 857 |
+
* @since BuddyPress (1.9.2)
|
| 858 |
+
*
|
| 859 |
+
* @see bp_theme_compat_toggle_is_page()
|
| 860 |
+
* @param object $query The WP_Query object.
|
| 861 |
+
*/
|
| 862 |
+
function bp_theme_compat_loop_end( $query ) {
|
| 863 |
+
|
| 864 |
+
// Get BuddyPress
|
| 865 |
+
$bp = buddypress();
|
| 866 |
+
|
| 867 |
+
// Bail if page is not toggled
|
| 868 |
+
if ( ! isset( $bp->theme_compat->is_page_toggled ) ) {
|
| 869 |
+
return;
|
| 870 |
+
}
|
| 871 |
+
|
| 872 |
+
// Revert our toggled WP_Query properties
|
| 873 |
+
$query->is_single = true;
|
| 874 |
+
$query->is_page = true;
|
| 875 |
+
|
| 876 |
+
// Unset our switch
|
| 877 |
+
unset( $bp->theme_compat->is_page_toggled );
|
| 878 |
+
}
|
| 879 |
+
add_action( 'loop_end', 'bp_theme_compat_loop_end' );
|
bp-core/bp-core-update.php
CHANGED
|
@@ -225,6 +225,11 @@ function bp_version_updater() {
|
|
| 225 |
if ( $raw_db_version < 7553 ) {
|
| 226 |
bp_update_to_1_9();
|
| 227 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 228 |
}
|
| 229 |
|
| 230 |
/** All done! *************************************************************/
|
|
@@ -300,6 +305,28 @@ function bp_update_to_1_9() {
|
|
| 300 |
bp_update_option( $active_components_key, $active_components );
|
| 301 |
}
|
| 302 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 303 |
/**
|
| 304 |
* Redirect user to BP's What's New page on first page load after activation.
|
| 305 |
*
|
| 225 |
if ( $raw_db_version < 7553 ) {
|
| 226 |
bp_update_to_1_9();
|
| 227 |
}
|
| 228 |
+
|
| 229 |
+
// 1.9.2
|
| 230 |
+
if ( $raw_db_version < 7731 ) {
|
| 231 |
+
bp_update_to_1_9_2();
|
| 232 |
+
}
|
| 233 |
}
|
| 234 |
|
| 235 |
/** All done! *************************************************************/
|
| 305 |
bp_update_option( $active_components_key, $active_components );
|
| 306 |
}
|
| 307 |
|
| 308 |
+
/**
|
| 309 |
+
* Perform database updates for BP 1.9.2
|
| 310 |
+
*
|
| 311 |
+
* In 1.9, BuddyPress stopped registering its theme directory when it detected
|
| 312 |
+
* that bp-default (or a child theme) was not currently being used, in effect
|
| 313 |
+
* deprecating bp-default. However, this ended up causing problems when site
|
| 314 |
+
* admins using bp-default would switch away from the theme temporarily:
|
| 315 |
+
* bp-default would no longer be available, with no obvious way (outside of
|
| 316 |
+
* a manual filter) to restore it. In 1.9.2, we add an option that flags
|
| 317 |
+
* whether bp-default or a child theme is active at the time of upgrade; if so,
|
| 318 |
+
* the theme directory will continue to be registered even if the theme is
|
| 319 |
+
* deactivated temporarily. Thus, new installations will not see bp-default,
|
| 320 |
+
* but legacy installations using the theme will continue to see it.
|
| 321 |
+
*
|
| 322 |
+
* @since BuddyPress (1.9.2)
|
| 323 |
+
*/
|
| 324 |
+
function bp_update_to_1_9_2() {
|
| 325 |
+
if ( 'bp-default' === get_stylesheet() || 'bp-default' === get_template() ) {
|
| 326 |
+
update_site_option( '_bp_retain_bp_default', 1 );
|
| 327 |
+
}
|
| 328 |
+
}
|
| 329 |
+
|
| 330 |
/**
|
| 331 |
* Redirect user to BP's What's New page on first page load after activation.
|
| 332 |
*
|
bp-forums/bp-forums-screens.php
CHANGED
|
@@ -218,7 +218,7 @@ class BP_Forum_Legacy_Theme_Compat {
|
|
| 218 |
'post_content' => '',
|
| 219 |
'post_type' => 'bp_forum',
|
| 220 |
'post_status' => 'publish',
|
| 221 |
-
'
|
| 222 |
'comment_status' => 'closed'
|
| 223 |
) );
|
| 224 |
}
|
| 218 |
'post_content' => '',
|
| 219 |
'post_type' => 'bp_forum',
|
| 220 |
'post_status' => 'publish',
|
| 221 |
+
'is_page' => true,
|
| 222 |
'comment_status' => 'closed'
|
| 223 |
) );
|
| 224 |
}
|
bp-friends/bp-friends-template.php
CHANGED
|
@@ -26,8 +26,7 @@ function bp_friends_slug() {
|
|
| 26 |
* @since BuddyPress (1.5.0)
|
| 27 |
*/
|
| 28 |
function bp_get_friends_slug() {
|
| 29 |
-
|
| 30 |
-
return apply_filters( 'bp_get_friends_slug', $bp->friends->slug );
|
| 31 |
}
|
| 32 |
|
| 33 |
/**
|
|
@@ -46,8 +45,7 @@ function bp_friends_root_slug() {
|
|
| 46 |
* @since BuddyPress (1.5.0)
|
| 47 |
*/
|
| 48 |
function bp_get_friends_root_slug() {
|
| 49 |
-
|
| 50 |
-
return apply_filters( 'bp_get_friends_root_slug', $bp->friends->root_slug );
|
| 51 |
}
|
| 52 |
|
| 53 |
/**
|
| 26 |
* @since BuddyPress (1.5.0)
|
| 27 |
*/
|
| 28 |
function bp_get_friends_slug() {
|
| 29 |
+
return apply_filters( 'bp_get_friends_slug', buddypress()->friends->slug );
|
|
|
|
| 30 |
}
|
| 31 |
|
| 32 |
/**
|
| 45 |
* @since BuddyPress (1.5.0)
|
| 46 |
*/
|
| 47 |
function bp_get_friends_root_slug() {
|
| 48 |
+
return apply_filters( 'bp_get_friends_root_slug', buddypress()->friends->root_slug );
|
|
|
|
| 49 |
}
|
| 50 |
|
| 51 |
/**
|
bp-groups/bp-groups-actions.php
CHANGED
|
@@ -63,6 +63,12 @@ function groups_action_create_group() {
|
|
| 63 |
if ( isset( $_COOKIE['bp_new_group_id'] ) ) {
|
| 64 |
$bp->groups->new_group_id = $_COOKIE['bp_new_group_id'];
|
| 65 |
$bp->groups->current_group = groups_get_group( array( 'group_id' => $bp->groups->new_group_id ) );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 66 |
}
|
| 67 |
|
| 68 |
// If the save, upload or skip button is hit, lets calculate what we need to save
|
| 63 |
if ( isset( $_COOKIE['bp_new_group_id'] ) ) {
|
| 64 |
$bp->groups->new_group_id = $_COOKIE['bp_new_group_id'];
|
| 65 |
$bp->groups->current_group = groups_get_group( array( 'group_id' => $bp->groups->new_group_id ) );
|
| 66 |
+
|
| 67 |
+
// Only allow the group creator to continue to edit the new group
|
| 68 |
+
if ( ! bp_is_group_creator( $bp->groups->current_group, bp_loggedin_user_id() ) ) {
|
| 69 |
+
bp_core_add_message( __( 'Only the group creator may continue editing this group.', 'buddypress' ), 'error' );
|
| 70 |
+
bp_core_redirect( bp_get_root_domain() . '/' . bp_get_groups_root_slug() . '/create/' );
|
| 71 |
+
}
|
| 72 |
}
|
| 73 |
|
| 74 |
// If the save, upload or skip button is hit, lets calculate what we need to save
|
bp-groups/bp-groups-filters.php
CHANGED
|
@@ -51,6 +51,16 @@ add_filter( 'groups_new_group_forum_desc', 'bp_create_excerpt' );
|
|
| 51 |
add_filter( 'groups_group_name_before_save', 'force_balance_tags' );
|
| 52 |
add_filter( 'groups_group_description_before_save', 'force_balance_tags' );
|
| 53 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 54 |
add_filter( 'bp_get_total_group_count', 'bp_core_number_format' );
|
| 55 |
add_filter( 'bp_get_group_total_for_member', 'bp_core_number_format' );
|
| 56 |
add_filter( 'bp_get_group_total_members', 'bp_core_number_format' );
|
| 51 |
add_filter( 'groups_group_name_before_save', 'force_balance_tags' );
|
| 52 |
add_filter( 'groups_group_description_before_save', 'force_balance_tags' );
|
| 53 |
|
| 54 |
+
// Trim trailing spaces from name and description when saving
|
| 55 |
+
add_filter( 'groups_group_name_before_save', 'trim' );
|
| 56 |
+
add_filter( 'groups_group_description_before_save', 'trim' );
|
| 57 |
+
|
| 58 |
+
// Escape output of new group creation details
|
| 59 |
+
add_filter( 'bp_get_new_group_id', 'esc_attr' );
|
| 60 |
+
add_filter( 'bp_get_new_group_name', 'esc_attr' );
|
| 61 |
+
add_filter( 'bp_get_new_group_description', 'esc_textarea' );
|
| 62 |
+
|
| 63 |
+
// Format numberical output
|
| 64 |
add_filter( 'bp_get_total_group_count', 'bp_core_number_format' );
|
| 65 |
add_filter( 'bp_get_group_total_for_member', 'bp_core_number_format' );
|
| 66 |
add_filter( 'bp_get_group_total_members', 'bp_core_number_format' );
|
bp-groups/bp-groups-screens.php
CHANGED
|
@@ -1036,7 +1036,7 @@ class BP_Groups_Theme_Compat {
|
|
| 1036 |
'post_content' => '',
|
| 1037 |
'post_type' => 'bp_group',
|
| 1038 |
'post_status' => 'publish',
|
| 1039 |
-
'
|
| 1040 |
'comment_status' => 'closed'
|
| 1041 |
) );
|
| 1042 |
}
|
|
@@ -1097,7 +1097,7 @@ class BP_Groups_Theme_Compat {
|
|
| 1097 |
'post_content' => '',
|
| 1098 |
'post_type' => 'bp_group',
|
| 1099 |
'post_status' => 'publish',
|
| 1100 |
-
'
|
| 1101 |
'comment_status' => 'closed'
|
| 1102 |
) );
|
| 1103 |
}
|
|
@@ -1157,7 +1157,7 @@ class BP_Groups_Theme_Compat {
|
|
| 1157 |
'post_content' => '',
|
| 1158 |
'post_type' => 'bp_group',
|
| 1159 |
'post_status' => 'publish',
|
| 1160 |
-
'
|
| 1161 |
'comment_status' => 'closed'
|
| 1162 |
) );
|
| 1163 |
}
|
| 1036 |
'post_content' => '',
|
| 1037 |
'post_type' => 'bp_group',
|
| 1038 |
'post_status' => 'publish',
|
| 1039 |
+
'is_page' => true,
|
| 1040 |
'comment_status' => 'closed'
|
| 1041 |
) );
|
| 1042 |
}
|
| 1097 |
'post_content' => '',
|
| 1098 |
'post_type' => 'bp_group',
|
| 1099 |
'post_status' => 'publish',
|
| 1100 |
+
'is_page' => true,
|
| 1101 |
'comment_status' => 'closed'
|
| 1102 |
) );
|
| 1103 |
}
|
| 1157 |
'post_content' => '',
|
| 1158 |
'post_type' => 'bp_group',
|
| 1159 |
'post_status' => 'publish',
|
| 1160 |
+
'is_page' => true,
|
| 1161 |
'comment_status' => 'closed'
|
| 1162 |
) );
|
| 1163 |
}
|
bp-groups/bp-groups-template.php
CHANGED
|
@@ -30,8 +30,7 @@ function bp_groups_slug() {
|
|
| 30 |
* @since BuddyPress (1.5)
|
| 31 |
*/
|
| 32 |
function bp_get_groups_slug() {
|
| 33 |
-
|
| 34 |
-
return apply_filters( 'bp_get_groups_slug', $bp->groups->slug );
|
| 35 |
}
|
| 36 |
|
| 37 |
/**
|
|
@@ -54,8 +53,7 @@ function bp_groups_root_slug() {
|
|
| 54 |
* @since BuddyPress (1.5)
|
| 55 |
*/
|
| 56 |
function bp_get_groups_root_slug() {
|
| 57 |
-
|
| 58 |
-
return apply_filters( 'bp_get_groups_root_slug', $bp->groups->root_slug );
|
| 59 |
}
|
| 60 |
|
| 61 |
/**
|
| 30 |
* @since BuddyPress (1.5)
|
| 31 |
*/
|
| 32 |
function bp_get_groups_slug() {
|
| 33 |
+
return apply_filters( 'bp_get_groups_slug', buddypress()->groups->slug );
|
|
|
|
| 34 |
}
|
| 35 |
|
| 36 |
/**
|
| 53 |
* @since BuddyPress (1.5)
|
| 54 |
*/
|
| 55 |
function bp_get_groups_root_slug() {
|
| 56 |
+
return apply_filters( 'bp_get_groups_root_slug', buddypress()->groups->root_slug );
|
|
|
|
| 57 |
}
|
| 58 |
|
| 59 |
/**
|
bp-languages/buddypress.pot
CHANGED
|
@@ -1,14 +1,14 @@
|
|
| 1 |
-
# Copyright (C)
|
| 2 |
# This file is distributed under the same license as the BuddyPress package.
|
| 3 |
msgid ""
|
| 4 |
msgstr ""
|
| 5 |
"Project-Id-Version: BuddyPress \n"
|
| 6 |
"Report-Msgid-Bugs-To: http://wppolyglots.wordpress.com\n"
|
| 7 |
-
"POT-Creation-Date:
|
| 8 |
"MIME-Version: 1.0\n"
|
| 9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
| 10 |
"Content-Transfer-Encoding: 8bit\n"
|
| 11 |
-
"PO-Revision-Date:
|
| 12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
| 13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
| 14 |
|
|
@@ -88,7 +88,7 @@ msgstr ""
|
|
| 88 |
#. translators: Group activity RSS title - "[Site Name] | [Group Name] |
|
| 89 |
#. Activity"
|
| 90 |
|
| 91 |
-
#: bp-activity/bp-activity-actions.php:470 bp-groups/bp-groups-actions.php:
|
| 92 |
msgid "%1$s | %2$s | Activity"
|
| 93 |
msgstr ""
|
| 94 |
|
|
@@ -531,8 +531,8 @@ msgid "<span>%1$s</span> — %2$s"
|
|
| 531 |
msgstr ""
|
| 532 |
|
| 533 |
#: bp-activity/bp-activity-classes.php:257
|
| 534 |
-
#: bp-activity/bp-activity-template.php:
|
| 535 |
-
#: bp-groups/bp-groups-template.php:
|
| 536 |
msgid "Arguments passed to %1$s should be in an associative array. See the inline documentation at %2$s for more details."
|
| 537 |
msgstr ""
|
| 538 |
|
|
@@ -629,17 +629,17 @@ msgid "My Activity"
|
|
| 629 |
msgstr ""
|
| 630 |
|
| 631 |
#: bp-activity/bp-activity-loader.php:335
|
| 632 |
-
#: bp-activity/bp-activity-template.php:
|
| 633 |
-
#: bp-activity/bp-activity-template.php:
|
| 634 |
-
#: bp-activity/bp-activity-template.php:
|
| 635 |
#: bp-forums/bp-forums-loader.php:245 bp-forums/bp-forums-template.php:730
|
| 636 |
#: bp-forums/bp-forums-template.php:960 bp-forums/bp-forums-template.php:1990
|
| 637 |
#: bp-friends/bp-friends-loader.php:231 bp-groups/bp-groups-loader.php:577
|
| 638 |
-
#: bp-groups/bp-groups-template.php:
|
| 639 |
-
#: bp-groups/bp-groups-template.php:
|
| 640 |
-
#: bp-groups/bp-groups-template.php:
|
| 641 |
-
#: bp-groups/bp-groups-template.php:
|
| 642 |
-
#: bp-groups/bp-groups-template.php:
|
| 643 |
#: bp-members/bp-members-buddybar.php:64 bp-members/bp-members-loader.php:208
|
| 644 |
#: bp-members/bp-members-template.php:520
|
| 645 |
#: bp-members/bp-members-template.php:820
|
|
@@ -769,46 +769,46 @@ msgstr ""
|
|
| 769 |
msgid "Sitewide Activity"
|
| 770 |
msgstr ""
|
| 771 |
|
| 772 |
-
#: bp-activity/bp-activity-template.php:
|
| 773 |
msgctxt "Activity pagination previous text"
|
| 774 |
msgid "←"
|
| 775 |
msgstr ""
|
| 776 |
|
| 777 |
-
#: bp-activity/bp-activity-template.php:
|
| 778 |
msgctxt "Activity pagination next text"
|
| 779 |
msgid "→"
|
| 780 |
msgstr ""
|
| 781 |
|
| 782 |
-
#: bp-activity/bp-activity-template.php:
|
| 783 |
msgid "Viewing item %1$s to %2$s (of %3$s item)"
|
| 784 |
msgid_plural "Viewing item %1$s to %2$s (of %3$s items)"
|
| 785 |
msgstr[0] ""
|
| 786 |
msgstr[1] ""
|
| 787 |
|
| 788 |
-
#: bp-activity/bp-activity-template.php:
|
| 789 |
msgid "Profile picture"
|
| 790 |
msgstr ""
|
| 791 |
|
| 792 |
-
#: bp-activity/bp-activity-template.php:
|
| 793 |
msgid "Group logo"
|
| 794 |
msgstr ""
|
| 795 |
|
| 796 |
-
#: bp-activity/bp-activity-template.php:
|
| 797 |
-
#: bp-groups/bp-groups-template.php:
|
| 798 |
msgid "Group logo of %s"
|
| 799 |
msgstr ""
|
| 800 |
|
| 801 |
-
#: bp-activity/bp-activity-template.php:
|
| 802 |
msgid "Profile picture of the author of the site %s"
|
| 803 |
msgstr ""
|
| 804 |
|
| 805 |
-
#: bp-activity/bp-activity-template.php:
|
| 806 |
msgid "View Discussion"
|
| 807 |
msgstr ""
|
| 808 |
|
| 809 |
-
#: bp-activity/bp-activity-template.php:
|
| 810 |
#: bp-forums/bp-forums-template.php:2113 bp-groups/bp-groups-admin.php:1281
|
| 811 |
-
#: bp-groups/bp-groups-admin.php:1394 bp-groups/bp-groups-template.php:
|
| 812 |
#: bp-notifications/bp-notifications-template.php:826
|
| 813 |
#: bp-templates/bp-legacy/buddypress/activity/comment.php:43
|
| 814 |
#: bp-templates/bp-legacy/buddypress/members/single/messages/messages-loop.php:51
|
|
@@ -820,7 +820,7 @@ msgstr ""
|
|
| 820 |
msgid "Delete"
|
| 821 |
msgstr ""
|
| 822 |
|
| 823 |
-
#: bp-activity/bp-activity-template.php:
|
| 824 |
#: bp-core/admin/bp-core-slugs.php:109 bp-core/admin/bp-core-slugs.php:172
|
| 825 |
#: bp-core/bp-core-loader.php:238 bp-members/bp-members-loader.php:182
|
| 826 |
#: bp-members/bp-members-template.php:625
|
|
@@ -832,23 +832,23 @@ msgstr ""
|
|
| 832 |
msgid "View"
|
| 833 |
msgstr ""
|
| 834 |
|
| 835 |
-
#: bp-activity/bp-activity-template.php:
|
| 836 |
msgid "Clear Filter"
|
| 837 |
msgstr ""
|
| 838 |
|
| 839 |
-
#: bp-activity/bp-activity-template.php:
|
| 840 |
msgid "a user"
|
| 841 |
msgstr ""
|
| 842 |
|
| 843 |
-
#: bp-activity/bp-activity-template.php:
|
| 844 |
msgid "Send a public message on your activity stream."
|
| 845 |
msgstr ""
|
| 846 |
|
| 847 |
-
#: bp-activity/bp-activity-template.php:
|
| 848 |
msgid "Public Message"
|
| 849 |
msgstr ""
|
| 850 |
|
| 851 |
-
#: bp-activity/bp-activity-template.php:
|
| 852 |
msgid "Site Wide Activity RSS Feed"
|
| 853 |
msgstr ""
|
| 854 |
|
|
@@ -1048,7 +1048,7 @@ msgid "%s's Recent Comments"
|
|
| 1048 |
msgstr ""
|
| 1049 |
|
| 1050 |
#: bp-blogs/bp-blogs-template.php:1134 bp-core/deprecated/1.5.php:417
|
| 1051 |
-
#: bp-forums/bp-forums-template.php:2196 bp-groups/bp-groups-template.php:
|
| 1052 |
#: bp-members/bp-members-template.php:710
|
| 1053 |
#: bp-messages/bp-messages-template.php:410 bp-themes/bp-default/header.php:30
|
| 1054 |
#: bp-themes/bp-default/searchform.php:5
|
|
@@ -1295,7 +1295,7 @@ msgstr ""
|
|
| 1295 |
|
| 1296 |
#: bp-core/admin/bp-core-functions.php:390
|
| 1297 |
#: bp-core/admin/bp-core-settings.php:258 bp-core/bp-core-admin.php:375
|
| 1298 |
-
#: bp-groups/bp-groups-loader.php:304 bp-groups/bp-groups-template.php:
|
| 1299 |
#: bp-settings/bp-settings-loader.php:23 bp-settings/bp-settings-loader.php:73
|
| 1300 |
#: bp-settings/bp-settings-loader.php:163
|
| 1301 |
msgid "Settings"
|
|
@@ -1601,7 +1601,7 @@ msgstr ""
|
|
| 1601 |
|
| 1602 |
#: bp-core/bp-core-admin.php:465 bp-core/bp-core-template.php:361
|
| 1603 |
#: bp-core/bp-core-widgets.php:266 bp-groups/bp-groups-admin.php:776
|
| 1604 |
-
#: bp-groups/bp-groups-template.php:
|
| 1605 |
#: bp-members/bp-members-screens.php:368
|
| 1606 |
#: bp-templates/bp-legacy/buddypress/groups/single/admin.php:231
|
| 1607 |
#: bp-themes/bp-default/groups/single/admin.php:231
|
|
@@ -2215,12 +2215,12 @@ msgid "%1$s mentioned you in the group \"%2$s\""
|
|
| 2215 |
msgstr ""
|
| 2216 |
|
| 2217 |
#: bp-core/deprecated/1.6.php:128 bp-core/deprecated/1.6.php:149
|
| 2218 |
-
#: bp-groups/bp-groups-template.php:
|
| 2219 |
msgid "Recently Active"
|
| 2220 |
msgstr ""
|
| 2221 |
|
| 2222 |
#: bp-core/deprecated/1.6.php:130 bp-core/deprecated/1.6.php:155
|
| 2223 |
-
#: bp-groups/bp-groups-template.php:
|
| 2224 |
msgid "Alphabetically"
|
| 2225 |
msgstr ""
|
| 2226 |
|
|
@@ -2272,8 +2272,8 @@ msgstr ""
|
|
| 2272 |
msgid "Please pick the group forum where you would like to post this topic."
|
| 2273 |
msgstr ""
|
| 2274 |
|
| 2275 |
-
#: bp-forums/bp-forums-screens.php:208 bp-groups/bp-groups-template.php:
|
| 2276 |
-
#: bp-groups/bp-groups-template.php:
|
| 2277 |
#: bp-templates/bp-legacy/buddypress/groups/single/forum.php:19
|
| 2278 |
#: bp-themes/bp-default/forums/index.php:23
|
| 2279 |
#: bp-themes/bp-default/groups/single/forum.php:19
|
|
@@ -2302,11 +2302,11 @@ msgstr ""
|
|
| 2302 |
msgid "Group logo for %s"
|
| 2303 |
msgstr ""
|
| 2304 |
|
| 2305 |
-
#: bp-forums/bp-forums-template.php:1103 bp-groups/bp-groups-template.php:
|
| 2306 |
msgid "%d post"
|
| 2307 |
msgstr ""
|
| 2308 |
|
| 2309 |
-
#: bp-forums/bp-forums-template.php:1105 bp-groups/bp-groups-template.php:
|
| 2310 |
msgid "%d posts"
|
| 2311 |
msgstr ""
|
| 2312 |
|
|
@@ -2578,7 +2578,7 @@ msgstr ""
|
|
| 2578 |
msgid "Friendships"
|
| 2579 |
msgstr ""
|
| 2580 |
|
| 2581 |
-
#: bp-friends/bp-friends-loader.php:147 bp-groups/bp-groups-template.php:
|
| 2582 |
msgid "Requests"
|
| 2583 |
msgstr ""
|
| 2584 |
|
|
@@ -2667,64 +2667,64 @@ msgstr ""
|
|
| 2667 |
msgid "A member accepts your friendship request"
|
| 2668 |
msgstr ""
|
| 2669 |
|
| 2670 |
-
#: bp-friends/bp-friends-template.php:
|
| 2671 |
msgid "My Friends"
|
| 2672 |
msgstr ""
|
| 2673 |
|
| 2674 |
-
#: bp-friends/bp-friends-template.php:
|
| 2675 |
msgid "%s's Friends"
|
| 2676 |
msgstr ""
|
| 2677 |
|
| 2678 |
-
#: bp-friends/bp-friends-template.php:
|
| 2679 |
msgid "See All"
|
| 2680 |
msgstr ""
|
| 2681 |
|
| 2682 |
-
#: bp-friends/bp-friends-template.php:
|
| 2683 |
msgid "You haven't added any friend connections yet."
|
| 2684 |
msgstr ""
|
| 2685 |
|
| 2686 |
-
#: bp-friends/bp-friends-template.php:
|
| 2687 |
msgid "%s hasn't created any friend connections yet."
|
| 2688 |
msgstr ""
|
| 2689 |
|
| 2690 |
-
#: bp-friends/bp-friends-template.php:
|
| 2691 |
msgid "There aren't enough site members to show a random sample just yet."
|
| 2692 |
msgstr ""
|
| 2693 |
|
| 2694 |
-
#: bp-friends/bp-friends-template.php:
|
| 2695 |
msgid "Filter Friends"
|
| 2696 |
msgstr ""
|
| 2697 |
|
| 2698 |
-
#: bp-friends/bp-friends-template.php:
|
| 2699 |
msgid "%d friend"
|
| 2700 |
msgstr ""
|
| 2701 |
|
| 2702 |
-
#: bp-friends/bp-friends-template.php:
|
| 2703 |
msgid "%d friends"
|
| 2704 |
msgstr ""
|
| 2705 |
|
| 2706 |
-
#: bp-friends/bp-friends-template.php:
|
| 2707 |
#: bp-templates/bp-legacy/buddypress-functions.php:999
|
| 2708 |
#: bp-themes/bp-default/_inc/ajax.php:658
|
| 2709 |
msgid "Cancel Friendship Request"
|
| 2710 |
msgstr ""
|
| 2711 |
|
| 2712 |
-
#: bp-friends/bp-friends-template.php:
|
| 2713 |
msgid "Cancel Friendship Requested"
|
| 2714 |
msgstr ""
|
| 2715 |
|
| 2716 |
-
#: bp-friends/bp-friends-template.php:
|
| 2717 |
-
#: bp-friends/bp-friends-template.php:
|
| 2718 |
msgid "Friendship Requested"
|
| 2719 |
msgstr ""
|
| 2720 |
|
| 2721 |
-
#: bp-friends/bp-friends-template.php:
|
| 2722 |
-
#: bp-friends/bp-friends-template.php:
|
| 2723 |
msgid "Cancel Friendship"
|
| 2724 |
msgstr ""
|
| 2725 |
|
| 2726 |
-
#: bp-friends/bp-friends-template.php:
|
| 2727 |
-
#: bp-friends/bp-friends-template.php:
|
| 2728 |
#: bp-templates/bp-legacy/buddypress-functions.php:989
|
| 2729 |
#: bp-templates/bp-legacy/buddypress-functions.php:1007
|
| 2730 |
#: bp-themes/bp-default/_inc/ajax.php:648
|
|
@@ -2767,47 +2767,51 @@ msgstr ""
|
|
| 2767 |
msgid "There was an error saving group details. Please try again."
|
| 2768 |
msgstr ""
|
| 2769 |
|
| 2770 |
-
#: bp-groups/bp-groups-actions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2771 |
msgid "Please fill in all of the required fields"
|
| 2772 |
msgstr ""
|
| 2773 |
|
| 2774 |
-
#: bp-groups/bp-groups-actions.php:
|
| 2775 |
msgid "There was an error saving group details, please try again."
|
| 2776 |
msgstr ""
|
| 2777 |
|
| 2778 |
-
#: bp-groups/bp-groups-actions.php:
|
| 2779 |
msgid "%1$s created the group %2$s"
|
| 2780 |
msgstr ""
|
| 2781 |
|
| 2782 |
-
#: bp-groups/bp-groups-actions.php:
|
| 2783 |
msgid "There was an error saving the group avatar, please try uploading again."
|
| 2784 |
msgstr ""
|
| 2785 |
|
| 2786 |
-
#: bp-groups/bp-groups-actions.php:
|
| 2787 |
msgid "The group avatar was uploaded successfully!"
|
| 2788 |
msgstr ""
|
| 2789 |
|
| 2790 |
-
#: bp-groups/bp-groups-actions.php:
|
| 2791 |
msgid "There was an error joining the group."
|
| 2792 |
msgstr ""
|
| 2793 |
|
| 2794 |
-
#: bp-groups/bp-groups-actions.php:
|
| 2795 |
msgid "You joined the group!"
|
| 2796 |
msgstr ""
|
| 2797 |
|
| 2798 |
-
#: bp-groups/bp-groups-actions.php:
|
| 2799 |
msgid "This group must have at least one admin"
|
| 2800 |
msgstr ""
|
| 2801 |
|
| 2802 |
-
#: bp-groups/bp-groups-actions.php:
|
| 2803 |
msgid "There was an error leaving the group."
|
| 2804 |
msgstr ""
|
| 2805 |
|
| 2806 |
-
#: bp-groups/bp-groups-actions.php:
|
| 2807 |
msgid "You successfully left the group."
|
| 2808 |
msgstr ""
|
| 2809 |
|
| 2810 |
-
#: bp-groups/bp-groups-actions.php:
|
| 2811 |
msgid "Activity feed for the group, %s."
|
| 2812 |
msgstr ""
|
| 2813 |
|
|
@@ -2977,12 +2981,12 @@ msgid "Privacy"
|
|
| 2977 |
msgstr ""
|
| 2978 |
|
| 2979 |
#: bp-groups/bp-groups-admin.php:689 bp-groups/bp-groups-admin.php:1442
|
| 2980 |
-
#: bp-groups/bp-groups-template.php:
|
| 2981 |
msgid "Public"
|
| 2982 |
msgstr ""
|
| 2983 |
|
| 2984 |
#: bp-groups/bp-groups-admin.php:690 bp-groups/bp-groups-admin.php:1445
|
| 2985 |
-
#: bp-groups/bp-groups-template.php:
|
| 2986 |
msgid "Private"
|
| 2987 |
msgstr ""
|
| 2988 |
|
|
@@ -3116,7 +3120,7 @@ msgstr ""
|
|
| 3116 |
msgid "Viewing %1$s - %2$s of %3$s"
|
| 3117 |
msgstr ""
|
| 3118 |
|
| 3119 |
-
#: bp-groups/bp-groups-admin.php:940 bp-groups/bp-groups-template.php:
|
| 3120 |
msgid "%s member"
|
| 3121 |
msgid_plural "%s members"
|
| 3122 |
msgstr[0] ""
|
|
@@ -3206,7 +3210,7 @@ msgid "Group Settings"
|
|
| 3206 |
msgstr ""
|
| 3207 |
|
| 3208 |
#: bp-groups/bp-groups-buddybar.php:40 bp-groups/bp-groups-loader.php:590
|
| 3209 |
-
#: bp-groups/bp-groups-template.php:
|
| 3210 |
msgid "Group Avatar"
|
| 3211 |
msgstr ""
|
| 3212 |
|
|
@@ -3250,11 +3254,11 @@ msgstr ""
|
|
| 3250 |
msgid "You are not an admin of this group."
|
| 3251 |
msgstr ""
|
| 3252 |
|
| 3253 |
-
#: bp-groups/bp-groups-loader.php:300 bp-groups/bp-groups-template.php:
|
| 3254 |
msgid "Details"
|
| 3255 |
msgstr ""
|
| 3256 |
|
| 3257 |
-
#: bp-groups/bp-groups-loader.php:312 bp-groups/bp-groups-template.php:
|
| 3258 |
msgid "Avatar"
|
| 3259 |
msgstr ""
|
| 3260 |
|
|
@@ -3280,8 +3284,8 @@ msgctxt "Group home navigation title"
|
|
| 3280 |
msgid "Home"
|
| 3281 |
msgstr ""
|
| 3282 |
|
| 3283 |
-
#: bp-groups/bp-groups-loader.php:430 bp-groups/bp-groups-template.php:
|
| 3284 |
-
#: bp-groups/bp-groups-template.php:
|
| 3285 |
#: bp-templates/bp-legacy/buddypress-functions.php:1121
|
| 3286 |
#: bp-themes/bp-default/_inc/ajax.php:780
|
| 3287 |
msgid "Request Membership"
|
|
@@ -3697,71 +3701,71 @@ msgstr ""
|
|
| 3697 |
msgid "A member requests to join a private group for which you are an admin"
|
| 3698 |
msgstr ""
|
| 3699 |
|
| 3700 |
-
#: bp-groups/bp-groups-template.php:
|
| 3701 |
msgctxt "Group pagination previous text"
|
| 3702 |
msgid "←"
|
| 3703 |
msgstr ""
|
| 3704 |
|
| 3705 |
-
#: bp-groups/bp-groups-template.php:
|
| 3706 |
msgctxt "Group pagination next text"
|
| 3707 |
msgid "→"
|
| 3708 |
msgstr ""
|
| 3709 |
|
| 3710 |
-
#: bp-groups/bp-groups-template.php:
|
| 3711 |
msgid "Public Group"
|
| 3712 |
msgstr ""
|
| 3713 |
|
| 3714 |
-
#: bp-groups/bp-groups-template.php:
|
| 3715 |
msgid "Hidden Group"
|
| 3716 |
msgstr ""
|
| 3717 |
|
| 3718 |
-
#: bp-groups/bp-groups-template.php:
|
| 3719 |
msgid "Private Group"
|
| 3720 |
msgstr ""
|
| 3721 |
|
| 3722 |
-
#: bp-groups/bp-groups-template.php:
|
| 3723 |
msgid "Group"
|
| 3724 |
msgstr ""
|
| 3725 |
|
| 3726 |
-
#: bp-groups/bp-groups-template.php:
|
| 3727 |
msgid "not yet active"
|
| 3728 |
msgstr ""
|
| 3729 |
|
| 3730 |
-
#: bp-groups/bp-groups-template.php:
|
| 3731 |
msgid "Group creator avatar of %s"
|
| 3732 |
msgstr ""
|
| 3733 |
|
| 3734 |
-
#: bp-groups/bp-groups-template.php:
|
| 3735 |
msgid "No Admins"
|
| 3736 |
msgstr ""
|
| 3737 |
|
| 3738 |
-
#: bp-groups/bp-groups-template.php:
|
| 3739 |
msgid "No Mods"
|
| 3740 |
msgstr ""
|
| 3741 |
|
| 3742 |
-
#: bp-groups/bp-groups-template.php:
|
| 3743 |
msgid "Filter Groups"
|
| 3744 |
msgstr ""
|
| 3745 |
|
| 3746 |
-
#: bp-groups/bp-groups-template.php:
|
| 3747 |
msgid "Viewing group %1$s to %2$s (of %3$s group)"
|
| 3748 |
msgid_plural "Viewing group %1$s to %2$s (of %3$s groups)"
|
| 3749 |
msgstr[0] ""
|
| 3750 |
msgstr[1] ""
|
| 3751 |
|
| 3752 |
-
#: bp-groups/bp-groups-template.php:
|
| 3753 |
msgid "%s members"
|
| 3754 |
msgstr ""
|
| 3755 |
|
| 3756 |
-
#: bp-groups/bp-groups-template.php:
|
| 3757 |
msgid "%d topic"
|
| 3758 |
msgstr ""
|
| 3759 |
|
| 3760 |
-
#: bp-groups/bp-groups-template.php:
|
| 3761 |
msgid "%d topics"
|
| 3762 |
msgstr ""
|
| 3763 |
|
| 3764 |
-
#: bp-groups/bp-groups-template.php:
|
| 3765 |
#: bp-templates/bp-legacy/buddypress/groups/single/admin.php:190
|
| 3766 |
#: bp-templates/bp-legacy/buddypress/groups/single/admin.php:217
|
| 3767 |
#: bp-themes/bp-default/groups/single/admin.php:190
|
|
@@ -3769,16 +3773,16 @@ msgstr ""
|
|
| 3769 |
msgid "Demote to Member"
|
| 3770 |
msgstr ""
|
| 3771 |
|
| 3772 |
-
#: bp-groups/bp-groups-template.php:
|
| 3773 |
-
#: bp-groups/bp-groups-template.php:
|
| 3774 |
msgid "joined %s"
|
| 3775 |
msgstr ""
|
| 3776 |
|
| 3777 |
-
#: bp-groups/bp-groups-template.php:
|
| 3778 |
msgid "This group has no administrators"
|
| 3779 |
msgstr ""
|
| 3780 |
|
| 3781 |
-
#: bp-groups/bp-groups-template.php:
|
| 3782 |
#: bp-templates/bp-legacy/buddypress/groups/single/admin.php:216
|
| 3783 |
#: bp-templates/bp-legacy/buddypress/groups/single/admin.php:272
|
| 3784 |
#: bp-themes/bp-default/groups/single/admin.php:216
|
|
@@ -3786,11 +3790,11 @@ msgstr ""
|
|
| 3786 |
msgid "Promote to Admin"
|
| 3787 |
msgstr ""
|
| 3788 |
|
| 3789 |
-
#: bp-groups/bp-groups-template.php:
|
| 3790 |
msgid "This group has no moderators"
|
| 3791 |
msgstr ""
|
| 3792 |
|
| 3793 |
-
#: bp-groups/bp-groups-template.php:
|
| 3794 |
#: bp-templates/bp-legacy/buddypress-functions.php:1085
|
| 3795 |
#: bp-templates/bp-legacy/buddypress-functions.php:1098
|
| 3796 |
#: bp-themes/bp-default/_inc/ajax.php:744
|
|
@@ -3798,71 +3802,71 @@ msgstr ""
|
|
| 3798 |
msgid "Leave Group"
|
| 3799 |
msgstr ""
|
| 3800 |
|
| 3801 |
-
#: bp-groups/bp-groups-template.php:
|
| 3802 |
#: bp-templates/bp-legacy/buddypress-functions.php:1119
|
| 3803 |
#: bp-themes/bp-default/_inc/ajax.php:778
|
| 3804 |
msgid "Join Group"
|
| 3805 |
msgstr ""
|
| 3806 |
|
| 3807 |
-
#: bp-groups/bp-groups-template.php:
|
| 3808 |
msgid "Accept Invitation"
|
| 3809 |
msgstr ""
|
| 3810 |
|
| 3811 |
-
#: bp-groups/bp-groups-template.php:
|
| 3812 |
msgid "Request Sent"
|
| 3813 |
msgstr ""
|
| 3814 |
|
| 3815 |
-
#: bp-groups/bp-groups-template.php:
|
| 3816 |
msgid "This is a private group and you must request group membership in order to join."
|
| 3817 |
msgstr ""
|
| 3818 |
|
| 3819 |
-
#: bp-groups/bp-groups-template.php:
|
| 3820 |
msgid "This is a private group. To join you must be a registered site member and request group membership."
|
| 3821 |
msgstr ""
|
| 3822 |
|
| 3823 |
-
#: bp-groups/bp-groups-template.php:
|
| 3824 |
msgid "This is a private group. Your membership request is awaiting approval from the group administrator."
|
| 3825 |
msgstr ""
|
| 3826 |
|
| 3827 |
-
#: bp-groups/bp-groups-template.php:
|
| 3828 |
msgid "This is a hidden group and only invited members can join."
|
| 3829 |
msgstr ""
|
| 3830 |
|
| 3831 |
-
#: bp-groups/bp-groups-template.php:
|
| 3832 |
msgid "Viewing member %1$s to %2$s (of %3$s member)"
|
| 3833 |
msgid_plural "Viewing members %1$s to %2$s (of %3$s members)"
|
| 3834 |
msgstr[0] ""
|
| 3835 |
msgstr[1] ""
|
| 3836 |
|
| 3837 |
-
#: bp-groups/bp-groups-template.php:
|
| 3838 |
msgid "Group avatar"
|
| 3839 |
msgstr ""
|
| 3840 |
|
| 3841 |
-
#: bp-groups/bp-groups-template.php:
|
| 3842 |
msgid "Recently Joined"
|
| 3843 |
msgstr ""
|
| 3844 |
|
| 3845 |
-
#: bp-groups/bp-groups-template.php:
|
| 3846 |
msgid "Most Popular"
|
| 3847 |
msgstr ""
|
| 3848 |
|
| 3849 |
-
#: bp-groups/bp-groups-template.php:
|
| 3850 |
msgid "Administrator Of"
|
| 3851 |
msgstr ""
|
| 3852 |
|
| 3853 |
-
#: bp-groups/bp-groups-template.php:
|
| 3854 |
msgid "Moderator Of"
|
| 3855 |
msgstr ""
|
| 3856 |
|
| 3857 |
-
#: bp-groups/bp-groups-template.php:
|
| 3858 |
msgid "No Group Avatar"
|
| 3859 |
msgstr ""
|
| 3860 |
|
| 3861 |
-
#: bp-groups/bp-groups-template.php:
|
| 3862 |
msgid "requested %s"
|
| 3863 |
msgstr ""
|
| 3864 |
|
| 3865 |
-
#: bp-groups/bp-groups-template.php:
|
| 3866 |
msgid "Group Activity RSS Feed"
|
| 3867 |
msgstr ""
|
| 3868 |
|
| 1 |
+
# Copyright (C) 2014 BuddyPress
|
| 2 |
# This file is distributed under the same license as the BuddyPress package.
|
| 3 |
msgid ""
|
| 4 |
msgstr ""
|
| 5 |
"Project-Id-Version: BuddyPress \n"
|
| 6 |
"Report-Msgid-Bugs-To: http://wppolyglots.wordpress.com\n"
|
| 7 |
+
"POT-Creation-Date: 2014-02-05 19:35:27+00:00\n"
|
| 8 |
"MIME-Version: 1.0\n"
|
| 9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
| 10 |
"Content-Transfer-Encoding: 8bit\n"
|
| 11 |
+
"PO-Revision-Date: 2014-MO-DA HO:MI+ZONE\n"
|
| 12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
| 13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
| 14 |
|
| 88 |
#. translators: Group activity RSS title - "[Site Name] | [Group Name] |
|
| 89 |
#. Activity"
|
| 90 |
|
| 91 |
+
#: bp-activity/bp-activity-actions.php:470 bp-groups/bp-groups-actions.php:362
|
| 92 |
msgid "%1$s | %2$s | Activity"
|
| 93 |
msgstr ""
|
| 94 |
|
| 531 |
msgstr ""
|
| 532 |
|
| 533 |
#: bp-activity/bp-activity-classes.php:257
|
| 534 |
+
#: bp-activity/bp-activity-template.php:139 bp-groups/bp-groups-classes.php:583
|
| 535 |
+
#: bp-groups/bp-groups-template.php:112
|
| 536 |
msgid "Arguments passed to %1$s should be in an associative array. See the inline documentation at %2$s for more details."
|
| 537 |
msgstr ""
|
| 538 |
|
| 629 |
msgstr ""
|
| 630 |
|
| 631 |
#: bp-activity/bp-activity-loader.php:335
|
| 632 |
+
#: bp-activity/bp-activity-template.php:1163
|
| 633 |
+
#: bp-activity/bp-activity-template.php:1309
|
| 634 |
+
#: bp-activity/bp-activity-template.php:1320 bp-blogs/bp-blogs-loader.php:231
|
| 635 |
#: bp-forums/bp-forums-loader.php:245 bp-forums/bp-forums-template.php:730
|
| 636 |
#: bp-forums/bp-forums-template.php:960 bp-forums/bp-forums-template.php:1990
|
| 637 |
#: bp-friends/bp-friends-loader.php:231 bp-groups/bp-groups-loader.php:577
|
| 638 |
+
#: bp-groups/bp-groups-template.php:768 bp-groups/bp-groups-template.php:791
|
| 639 |
+
#: bp-groups/bp-groups-template.php:1220 bp-groups/bp-groups-template.php:1236
|
| 640 |
+
#: bp-groups/bp-groups-template.php:1285 bp-groups/bp-groups-template.php:1301
|
| 641 |
+
#: bp-groups/bp-groups-template.php:2029 bp-groups/bp-groups-template.php:2038
|
| 642 |
+
#: bp-groups/bp-groups-template.php:2047 bp-groups/bp-groups-template.php:2804
|
| 643 |
#: bp-members/bp-members-buddybar.php:64 bp-members/bp-members-loader.php:208
|
| 644 |
#: bp-members/bp-members-template.php:520
|
| 645 |
#: bp-members/bp-members-template.php:820
|
| 769 |
msgid "Sitewide Activity"
|
| 770 |
msgstr ""
|
| 771 |
|
| 772 |
+
#: bp-activity/bp-activity-template.php:240
|
| 773 |
msgctxt "Activity pagination previous text"
|
| 774 |
msgid "←"
|
| 775 |
msgstr ""
|
| 776 |
|
| 777 |
+
#: bp-activity/bp-activity-template.php:241
|
| 778 |
msgctxt "Activity pagination next text"
|
| 779 |
msgid "→"
|
| 780 |
msgstr ""
|
| 781 |
|
| 782 |
+
#: bp-activity/bp-activity-template.php:697
|
| 783 |
msgid "Viewing item %1$s to %2$s (of %3$s item)"
|
| 784 |
msgid_plural "Viewing item %1$s to %2$s (of %3$s items)"
|
| 785 |
msgstr[0] ""
|
| 786 |
msgstr[1] ""
|
| 787 |
|
| 788 |
+
#: bp-activity/bp-activity-template.php:1163
|
| 789 |
msgid "Profile picture"
|
| 790 |
msgstr ""
|
| 791 |
|
| 792 |
+
#: bp-activity/bp-activity-template.php:1285
|
| 793 |
msgid "Group logo"
|
| 794 |
msgstr ""
|
| 795 |
|
| 796 |
+
#: bp-activity/bp-activity-template.php:1288 bp-groups/bp-groups-admin.php:1405
|
| 797 |
+
#: bp-groups/bp-groups-template.php:514
|
| 798 |
msgid "Group logo of %s"
|
| 799 |
msgstr ""
|
| 800 |
|
| 801 |
+
#: bp-activity/bp-activity-template.php:1299
|
| 802 |
msgid "Profile picture of the author of the site %s"
|
| 803 |
msgstr ""
|
| 804 |
|
| 805 |
+
#: bp-activity/bp-activity-template.php:1529
|
| 806 |
msgid "View Discussion"
|
| 807 |
msgstr ""
|
| 808 |
|
| 809 |
+
#: bp-activity/bp-activity-template.php:2413
|
| 810 |
#: bp-forums/bp-forums-template.php:2113 bp-groups/bp-groups-admin.php:1281
|
| 811 |
+
#: bp-groups/bp-groups-admin.php:1394 bp-groups/bp-groups-template.php:1484
|
| 812 |
#: bp-notifications/bp-notifications-template.php:826
|
| 813 |
#: bp-templates/bp-legacy/buddypress/activity/comment.php:43
|
| 814 |
#: bp-templates/bp-legacy/buddypress/members/single/messages/messages-loop.php:51
|
| 820 |
msgid "Delete"
|
| 821 |
msgstr ""
|
| 822 |
|
| 823 |
+
#: bp-activity/bp-activity-template.php:2461
|
| 824 |
#: bp-core/admin/bp-core-slugs.php:109 bp-core/admin/bp-core-slugs.php:172
|
| 825 |
#: bp-core/bp-core-loader.php:238 bp-members/bp-members-loader.php:182
|
| 826 |
#: bp-members/bp-members-template.php:625
|
| 832 |
msgid "View"
|
| 833 |
msgstr ""
|
| 834 |
|
| 835 |
+
#: bp-activity/bp-activity-template.php:2559
|
| 836 |
msgid "Clear Filter"
|
| 837 |
msgstr ""
|
| 838 |
|
| 839 |
+
#: bp-activity/bp-activity-template.php:2755
|
| 840 |
msgid "a user"
|
| 841 |
msgstr ""
|
| 842 |
|
| 843 |
+
#: bp-activity/bp-activity-template.php:2809
|
| 844 |
msgid "Send a public message on your activity stream."
|
| 845 |
msgstr ""
|
| 846 |
|
| 847 |
+
#: bp-activity/bp-activity-template.php:2810
|
| 848 |
msgid "Public Message"
|
| 849 |
msgstr ""
|
| 850 |
|
| 851 |
+
#: bp-activity/bp-activity-template.php:3263
|
| 852 |
msgid "Site Wide Activity RSS Feed"
|
| 853 |
msgstr ""
|
| 854 |
|
| 1048 |
msgstr ""
|
| 1049 |
|
| 1050 |
#: bp-blogs/bp-blogs-template.php:1134 bp-core/deprecated/1.5.php:417
|
| 1051 |
+
#: bp-forums/bp-forums-template.php:2196 bp-groups/bp-groups-template.php:2528
|
| 1052 |
#: bp-members/bp-members-template.php:710
|
| 1053 |
#: bp-messages/bp-messages-template.php:410 bp-themes/bp-default/header.php:30
|
| 1054 |
#: bp-themes/bp-default/searchform.php:5
|
| 1295 |
|
| 1296 |
#: bp-core/admin/bp-core-functions.php:390
|
| 1297 |
#: bp-core/admin/bp-core-settings.php:258 bp-core/bp-core-admin.php:375
|
| 1298 |
+
#: bp-groups/bp-groups-loader.php:304 bp-groups/bp-groups-template.php:1466
|
| 1299 |
#: bp-settings/bp-settings-loader.php:23 bp-settings/bp-settings-loader.php:73
|
| 1300 |
#: bp-settings/bp-settings-loader.php:163
|
| 1301 |
msgid "Settings"
|
| 1601 |
|
| 1602 |
#: bp-core/bp-core-admin.php:465 bp-core/bp-core-template.php:361
|
| 1603 |
#: bp-core/bp-core-widgets.php:266 bp-groups/bp-groups-admin.php:776
|
| 1604 |
+
#: bp-groups/bp-groups-template.php:1474 bp-members/bp-members-loader.php:24
|
| 1605 |
#: bp-members/bp-members-screens.php:368
|
| 1606 |
#: bp-templates/bp-legacy/buddypress/groups/single/admin.php:231
|
| 1607 |
#: bp-themes/bp-default/groups/single/admin.php:231
|
| 2215 |
msgstr ""
|
| 2216 |
|
| 2217 |
#: bp-core/deprecated/1.6.php:128 bp-core/deprecated/1.6.php:149
|
| 2218 |
+
#: bp-groups/bp-groups-template.php:2544 bp-groups/bp-groups-template.php:2566
|
| 2219 |
msgid "Recently Active"
|
| 2220 |
msgstr ""
|
| 2221 |
|
| 2222 |
#: bp-core/deprecated/1.6.php:130 bp-core/deprecated/1.6.php:155
|
| 2223 |
+
#: bp-groups/bp-groups-template.php:2549 bp-groups/bp-groups-template.php:2581
|
| 2224 |
msgid "Alphabetically"
|
| 2225 |
msgstr ""
|
| 2226 |
|
| 2272 |
msgid "Please pick the group forum where you would like to post this topic."
|
| 2273 |
msgstr ""
|
| 2274 |
|
| 2275 |
+
#: bp-forums/bp-forums-screens.php:208 bp-groups/bp-groups-template.php:1710
|
| 2276 |
+
#: bp-groups/bp-groups-template.php:1711
|
| 2277 |
#: bp-templates/bp-legacy/buddypress/groups/single/forum.php:19
|
| 2278 |
#: bp-themes/bp-default/forums/index.php:23
|
| 2279 |
#: bp-themes/bp-default/groups/single/forum.php:19
|
| 2302 |
msgid "Group logo for %s"
|
| 2303 |
msgstr ""
|
| 2304 |
|
| 2305 |
+
#: bp-forums/bp-forums-template.php:1103 bp-groups/bp-groups-template.php:1033
|
| 2306 |
msgid "%d post"
|
| 2307 |
msgstr ""
|
| 2308 |
|
| 2309 |
+
#: bp-forums/bp-forums-template.php:1105 bp-groups/bp-groups-template.php:1035
|
| 2310 |
msgid "%d posts"
|
| 2311 |
msgstr ""
|
| 2312 |
|
| 2578 |
msgid "Friendships"
|
| 2579 |
msgstr ""
|
| 2580 |
|
| 2581 |
+
#: bp-friends/bp-friends-loader.php:147 bp-groups/bp-groups-template.php:1478
|
| 2582 |
msgid "Requests"
|
| 2583 |
msgstr ""
|
| 2584 |
|
| 2667 |
msgid "A member accepts your friendship request"
|
| 2668 |
msgstr ""
|
| 2669 |
|
| 2670 |
+
#: bp-friends/bp-friends-template.php:66 bp-xprofile/bp-xprofile-loader.php:129
|
| 2671 |
msgid "My Friends"
|
| 2672 |
msgstr ""
|
| 2673 |
|
| 2674 |
+
#: bp-friends/bp-friends-template.php:66
|
| 2675 |
msgid "%s's Friends"
|
| 2676 |
msgstr ""
|
| 2677 |
|
| 2678 |
+
#: bp-friends/bp-friends-template.php:66
|
| 2679 |
msgid "See All"
|
| 2680 |
msgstr ""
|
| 2681 |
|
| 2682 |
+
#: bp-friends/bp-friends-template.php:86
|
| 2683 |
msgid "You haven't added any friend connections yet."
|
| 2684 |
msgstr ""
|
| 2685 |
|
| 2686 |
+
#: bp-friends/bp-friends-template.php:86
|
| 2687 |
msgid "%s hasn't created any friend connections yet."
|
| 2688 |
msgstr ""
|
| 2689 |
|
| 2690 |
+
#: bp-friends/bp-friends-template.php:156
|
| 2691 |
msgid "There aren't enough site members to show a random sample just yet."
|
| 2692 |
msgstr ""
|
| 2693 |
|
| 2694 |
+
#: bp-friends/bp-friends-template.php:173
|
| 2695 |
msgid "Filter Friends"
|
| 2696 |
msgstr ""
|
| 2697 |
|
| 2698 |
+
#: bp-friends/bp-friends-template.php:221
|
| 2699 |
msgid "%d friend"
|
| 2700 |
msgstr ""
|
| 2701 |
|
| 2702 |
+
#: bp-friends/bp-friends-template.php:223
|
| 2703 |
msgid "%d friends"
|
| 2704 |
msgstr ""
|
| 2705 |
|
| 2706 |
+
#: bp-friends/bp-friends-template.php:318
|
| 2707 |
#: bp-templates/bp-legacy/buddypress-functions.php:999
|
| 2708 |
#: bp-themes/bp-default/_inc/ajax.php:658
|
| 2709 |
msgid "Cancel Friendship Request"
|
| 2710 |
msgstr ""
|
| 2711 |
|
| 2712 |
+
#: bp-friends/bp-friends-template.php:319
|
| 2713 |
msgid "Cancel Friendship Requested"
|
| 2714 |
msgstr ""
|
| 2715 |
|
| 2716 |
+
#: bp-friends/bp-friends-template.php:335
|
| 2717 |
+
#: bp-friends/bp-friends-template.php:336
|
| 2718 |
msgid "Friendship Requested"
|
| 2719 |
msgstr ""
|
| 2720 |
|
| 2721 |
+
#: bp-friends/bp-friends-template.php:352
|
| 2722 |
+
#: bp-friends/bp-friends-template.php:353
|
| 2723 |
msgid "Cancel Friendship"
|
| 2724 |
msgstr ""
|
| 2725 |
|
| 2726 |
+
#: bp-friends/bp-friends-template.php:369
|
| 2727 |
+
#: bp-friends/bp-friends-template.php:370
|
| 2728 |
#: bp-templates/bp-legacy/buddypress-functions.php:989
|
| 2729 |
#: bp-templates/bp-legacy/buddypress-functions.php:1007
|
| 2730 |
#: bp-themes/bp-default/_inc/ajax.php:648
|
| 2767 |
msgid "There was an error saving group details. Please try again."
|
| 2768 |
msgstr ""
|
| 2769 |
|
| 2770 |
+
#: bp-groups/bp-groups-actions.php:69
|
| 2771 |
+
msgid "Only the group creator may continue editing this group."
|
| 2772 |
+
msgstr ""
|
| 2773 |
+
|
| 2774 |
+
#: bp-groups/bp-groups-actions.php:82
|
| 2775 |
msgid "Please fill in all of the required fields"
|
| 2776 |
msgstr ""
|
| 2777 |
|
| 2778 |
+
#: bp-groups/bp-groups-actions.php:89 bp-groups/bp-groups-actions.php:113
|
| 2779 |
msgid "There was an error saving group details, please try again."
|
| 2780 |
msgstr ""
|
| 2781 |
|
| 2782 |
+
#: bp-groups/bp-groups-actions.php:153
|
| 2783 |
msgid "%1$s created the group %2$s"
|
| 2784 |
msgstr ""
|
| 2785 |
|
| 2786 |
+
#: bp-groups/bp-groups-actions.php:205
|
| 2787 |
msgid "There was an error saving the group avatar, please try uploading again."
|
| 2788 |
msgstr ""
|
| 2789 |
|
| 2790 |
+
#: bp-groups/bp-groups-actions.php:207
|
| 2791 |
msgid "The group avatar was uploaded successfully!"
|
| 2792 |
msgstr ""
|
| 2793 |
|
| 2794 |
+
#: bp-groups/bp-groups-actions.php:231 bp-groups/bp-groups-actions.php:238
|
| 2795 |
msgid "There was an error joining the group."
|
| 2796 |
msgstr ""
|
| 2797 |
|
| 2798 |
+
#: bp-groups/bp-groups-actions.php:240
|
| 2799 |
msgid "You joined the group!"
|
| 2800 |
msgstr ""
|
| 2801 |
|
| 2802 |
+
#: bp-groups/bp-groups-actions.php:278 bp-groups/bp-groups-screens.php:711
|
| 2803 |
msgid "This group must have at least one admin"
|
| 2804 |
msgstr ""
|
| 2805 |
|
| 2806 |
+
#: bp-groups/bp-groups-actions.php:280
|
| 2807 |
msgid "There was an error leaving the group."
|
| 2808 |
msgstr ""
|
| 2809 |
|
| 2810 |
+
#: bp-groups/bp-groups-actions.php:282 bp-groups/bp-groups-functions.php:291
|
| 2811 |
msgid "You successfully left the group."
|
| 2812 |
msgstr ""
|
| 2813 |
|
| 2814 |
+
#: bp-groups/bp-groups-actions.php:365
|
| 2815 |
msgid "Activity feed for the group, %s."
|
| 2816 |
msgstr ""
|
| 2817 |
|
| 2981 |
msgstr ""
|
| 2982 |
|
| 2983 |
#: bp-groups/bp-groups-admin.php:689 bp-groups/bp-groups-admin.php:1442
|
| 2984 |
+
#: bp-groups/bp-groups-template.php:645
|
| 2985 |
msgid "Public"
|
| 2986 |
msgstr ""
|
| 2987 |
|
| 2988 |
#: bp-groups/bp-groups-admin.php:690 bp-groups/bp-groups-admin.php:1445
|
| 2989 |
+
#: bp-groups/bp-groups-template.php:647
|
| 2990 |
msgid "Private"
|
| 2991 |
msgstr ""
|
| 2992 |
|
| 3120 |
msgid "Viewing %1$s - %2$s of %3$s"
|
| 3121 |
msgstr ""
|
| 3122 |
|
| 3123 |
+
#: bp-groups/bp-groups-admin.php:940 bp-groups/bp-groups-template.php:958
|
| 3124 |
msgid "%s member"
|
| 3125 |
msgid_plural "%s members"
|
| 3126 |
msgstr[0] ""
|
| 3210 |
msgstr ""
|
| 3211 |
|
| 3212 |
#: bp-groups/bp-groups-buddybar.php:40 bp-groups/bp-groups-loader.php:590
|
| 3213 |
+
#: bp-groups/bp-groups-template.php:2632
|
| 3214 |
msgid "Group Avatar"
|
| 3215 |
msgstr ""
|
| 3216 |
|
| 3254 |
msgid "You are not an admin of this group."
|
| 3255 |
msgstr ""
|
| 3256 |
|
| 3257 |
+
#: bp-groups/bp-groups-loader.php:300 bp-groups/bp-groups-template.php:1459
|
| 3258 |
msgid "Details"
|
| 3259 |
msgstr ""
|
| 3260 |
|
| 3261 |
+
#: bp-groups/bp-groups-loader.php:312 bp-groups/bp-groups-template.php:1470
|
| 3262 |
msgid "Avatar"
|
| 3263 |
msgstr ""
|
| 3264 |
|
| 3284 |
msgid "Home"
|
| 3285 |
msgstr ""
|
| 3286 |
|
| 3287 |
+
#: bp-groups/bp-groups-loader.php:430 bp-groups/bp-groups-template.php:1824
|
| 3288 |
+
#: bp-groups/bp-groups-template.php:1825
|
| 3289 |
#: bp-templates/bp-legacy/buddypress-functions.php:1121
|
| 3290 |
#: bp-themes/bp-default/_inc/ajax.php:780
|
| 3291 |
msgid "Request Membership"
|
| 3701 |
msgid "A member requests to join a private group for which you are an admin"
|
| 3702 |
msgstr ""
|
| 3703 |
|
| 3704 |
+
#: bp-groups/bp-groups-template.php:216
|
| 3705 |
msgctxt "Group pagination previous text"
|
| 3706 |
msgid "←"
|
| 3707 |
msgstr ""
|
| 3708 |
|
| 3709 |
+
#: bp-groups/bp-groups-template.php:217
|
| 3710 |
msgctxt "Group pagination next text"
|
| 3711 |
msgid "→"
|
| 3712 |
msgstr ""
|
| 3713 |
|
| 3714 |
+
#: bp-groups/bp-groups-template.php:478
|
| 3715 |
msgid "Public Group"
|
| 3716 |
msgstr ""
|
| 3717 |
|
| 3718 |
+
#: bp-groups/bp-groups-template.php:480
|
| 3719 |
msgid "Hidden Group"
|
| 3720 |
msgstr ""
|
| 3721 |
|
| 3722 |
+
#: bp-groups/bp-groups-template.php:482
|
| 3723 |
msgid "Private Group"
|
| 3724 |
msgstr ""
|
| 3725 |
|
| 3726 |
+
#: bp-groups/bp-groups-template.php:484
|
| 3727 |
msgid "Group"
|
| 3728 |
msgstr ""
|
| 3729 |
|
| 3730 |
+
#: bp-groups/bp-groups-template.php:556
|
| 3731 |
msgid "not yet active"
|
| 3732 |
msgstr ""
|
| 3733 |
|
| 3734 |
+
#: bp-groups/bp-groups-template.php:738
|
| 3735 |
msgid "Group creator avatar of %s"
|
| 3736 |
msgstr ""
|
| 3737 |
|
| 3738 |
+
#: bp-groups/bp-groups-template.php:773
|
| 3739 |
msgid "No Admins"
|
| 3740 |
msgstr ""
|
| 3741 |
|
| 3742 |
+
#: bp-groups/bp-groups-template.php:800
|
| 3743 |
msgid "No Mods"
|
| 3744 |
msgstr ""
|
| 3745 |
|
| 3746 |
+
#: bp-groups/bp-groups-template.php:882
|
| 3747 |
msgid "Filter Groups"
|
| 3748 |
msgstr ""
|
| 3749 |
|
| 3750 |
+
#: bp-groups/bp-groups-template.php:930
|
| 3751 |
msgid "Viewing group %1$s to %2$s (of %3$s group)"
|
| 3752 |
msgid_plural "Viewing group %1$s to %2$s (of %3$s groups)"
|
| 3753 |
msgstr[0] ""
|
| 3754 |
msgstr[1] ""
|
| 3755 |
|
| 3756 |
+
#: bp-groups/bp-groups-template.php:960
|
| 3757 |
msgid "%s members"
|
| 3758 |
msgstr ""
|
| 3759 |
|
| 3760 |
+
#: bp-groups/bp-groups-template.php:999
|
| 3761 |
msgid "%d topic"
|
| 3762 |
msgstr ""
|
| 3763 |
|
| 3764 |
+
#: bp-groups/bp-groups-template.php:1001
|
| 3765 |
msgid "%d topics"
|
| 3766 |
msgstr ""
|
| 3767 |
|
| 3768 |
+
#: bp-groups/bp-groups-template.php:1227 bp-groups/bp-groups-template.php:1292
|
| 3769 |
#: bp-templates/bp-legacy/buddypress/groups/single/admin.php:190
|
| 3770 |
#: bp-templates/bp-legacy/buddypress/groups/single/admin.php:217
|
| 3771 |
#: bp-themes/bp-default/groups/single/admin.php:190
|
| 3773 |
msgid "Demote to Member"
|
| 3774 |
msgstr ""
|
| 3775 |
|
| 3776 |
+
#: bp-groups/bp-groups-template.php:1240 bp-groups/bp-groups-template.php:1305
|
| 3777 |
+
#: bp-groups/bp-groups-template.php:2122
|
| 3778 |
msgid "joined %s"
|
| 3779 |
msgstr ""
|
| 3780 |
|
| 3781 |
+
#: bp-groups/bp-groups-template.php:1263
|
| 3782 |
msgid "This group has no administrators"
|
| 3783 |
msgstr ""
|
| 3784 |
|
| 3785 |
+
#: bp-groups/bp-groups-template.php:1291
|
| 3786 |
#: bp-templates/bp-legacy/buddypress/groups/single/admin.php:216
|
| 3787 |
#: bp-templates/bp-legacy/buddypress/groups/single/admin.php:272
|
| 3788 |
#: bp-themes/bp-default/groups/single/admin.php:216
|
| 3790 |
msgid "Promote to Admin"
|
| 3791 |
msgstr ""
|
| 3792 |
|
| 3793 |
+
#: bp-groups/bp-groups-template.php:1325
|
| 3794 |
msgid "This group has no moderators"
|
| 3795 |
msgstr ""
|
| 3796 |
|
| 3797 |
+
#: bp-groups/bp-groups-template.php:1750 bp-groups/bp-groups-template.php:1751
|
| 3798 |
#: bp-templates/bp-legacy/buddypress-functions.php:1085
|
| 3799 |
#: bp-templates/bp-legacy/buddypress-functions.php:1098
|
| 3800 |
#: bp-themes/bp-default/_inc/ajax.php:744
|
| 3802 |
msgid "Leave Group"
|
| 3803 |
msgstr ""
|
| 3804 |
|
| 3805 |
+
#: bp-groups/bp-groups-template.php:1773 bp-groups/bp-groups-template.php:1774
|
| 3806 |
#: bp-templates/bp-legacy/buddypress-functions.php:1119
|
| 3807 |
#: bp-themes/bp-default/_inc/ajax.php:778
|
| 3808 |
msgid "Join Group"
|
| 3809 |
msgstr ""
|
| 3810 |
|
| 3811 |
+
#: bp-groups/bp-groups-template.php:1792 bp-groups/bp-groups-template.php:1793
|
| 3812 |
msgid "Accept Invitation"
|
| 3813 |
msgstr ""
|
| 3814 |
|
| 3815 |
+
#: bp-groups/bp-groups-template.php:1808 bp-groups/bp-groups-template.php:1809
|
| 3816 |
msgid "Request Sent"
|
| 3817 |
msgstr ""
|
| 3818 |
|
| 3819 |
+
#: bp-groups/bp-groups-template.php:1855
|
| 3820 |
msgid "This is a private group and you must request group membership in order to join."
|
| 3821 |
msgstr ""
|
| 3822 |
|
| 3823 |
+
#: bp-groups/bp-groups-template.php:1857
|
| 3824 |
msgid "This is a private group. To join you must be a registered site member and request group membership."
|
| 3825 |
msgstr ""
|
| 3826 |
|
| 3827 |
+
#: bp-groups/bp-groups-template.php:1860
|
| 3828 |
msgid "This is a private group. Your membership request is awaiting approval from the group administrator."
|
| 3829 |
msgstr ""
|
| 3830 |
|
| 3831 |
+
#: bp-groups/bp-groups-template.php:1864
|
| 3832 |
msgid "This is a hidden group and only invited members can join."
|
| 3833 |
msgstr ""
|
| 3834 |
|
| 3835 |
+
#: bp-groups/bp-groups-template.php:2170 bp-members/bp-members-template.php:353
|
| 3836 |
msgid "Viewing member %1$s to %2$s (of %3$s member)"
|
| 3837 |
msgid_plural "Viewing members %1$s to %2$s (of %3$s members)"
|
| 3838 |
msgstr[0] ""
|
| 3839 |
msgstr[1] ""
|
| 3840 |
|
| 3841 |
+
#: bp-groups/bp-groups-template.php:2402
|
| 3842 |
msgid "Group avatar"
|
| 3843 |
msgstr ""
|
| 3844 |
|
| 3845 |
+
#: bp-groups/bp-groups-template.php:2545 bp-groups/bp-groups-template.php:2569
|
| 3846 |
msgid "Recently Joined"
|
| 3847 |
msgstr ""
|
| 3848 |
|
| 3849 |
+
#: bp-groups/bp-groups-template.php:2546 bp-groups/bp-groups-template.php:2572
|
| 3850 |
msgid "Most Popular"
|
| 3851 |
msgstr ""
|
| 3852 |
|
| 3853 |
+
#: bp-groups/bp-groups-template.php:2547 bp-groups/bp-groups-template.php:2575
|
| 3854 |
msgid "Administrator Of"
|
| 3855 |
msgstr ""
|
| 3856 |
|
| 3857 |
+
#: bp-groups/bp-groups-template.php:2548 bp-groups/bp-groups-template.php:2578
|
| 3858 |
msgid "Moderator Of"
|
| 3859 |
msgstr ""
|
| 3860 |
|
| 3861 |
+
#: bp-groups/bp-groups-template.php:2636
|
| 3862 |
msgid "No Group Avatar"
|
| 3863 |
msgstr ""
|
| 3864 |
|
| 3865 |
+
#: bp-groups/bp-groups-template.php:2837
|
| 3866 |
msgid "requested %s"
|
| 3867 |
msgstr ""
|
| 3868 |
|
| 3869 |
+
#: bp-groups/bp-groups-template.php:3012
|
| 3870 |
msgid "Group Activity RSS Feed"
|
| 3871 |
msgstr ""
|
| 3872 |
|
bp-loader.php
CHANGED
|
@@ -16,7 +16,7 @@
|
|
| 16 |
* Description: Social networking in a box. Build a social network for your company, school, sports team or niche community all based on the power and flexibility of WordPress.
|
| 17 |
* Author: The BuddyPress Community
|
| 18 |
* Author URI: http://buddypress.org/community/members/
|
| 19 |
-
* Version: 1.9.
|
| 20 |
* Text Domain: buddypress
|
| 21 |
* Domain Path: /bp-languages/
|
| 22 |
* License: GPLv2 or later (license.txt)
|
|
@@ -297,8 +297,8 @@ class BuddyPress {
|
|
| 297 |
|
| 298 |
/** Versions **********************************************************/
|
| 299 |
|
| 300 |
-
$this->version = '1.9.
|
| 301 |
-
$this->db_version =
|
| 302 |
|
| 303 |
/** Loading ***********************************************************/
|
| 304 |
|
| 16 |
* Description: Social networking in a box. Build a social network for your company, school, sports team or niche community all based on the power and flexibility of WordPress.
|
| 17 |
* Author: The BuddyPress Community
|
| 18 |
* Author URI: http://buddypress.org/community/members/
|
| 19 |
+
* Version: 1.9.2
|
| 20 |
* Text Domain: buddypress
|
| 21 |
* Domain Path: /bp-languages/
|
| 22 |
* License: GPLv2 or later (license.txt)
|
| 297 |
|
| 298 |
/** Versions **********************************************************/
|
| 299 |
|
| 300 |
+
$this->version = '1.9.2-7798';
|
| 301 |
+
$this->db_version = 7731;
|
| 302 |
|
| 303 |
/** Loading ***********************************************************/
|
| 304 |
|
bp-members/bp-members-notifications.php
CHANGED
|
@@ -114,7 +114,7 @@ function bp_core_get_notification( $id ) {
|
|
| 114 |
* @param string $format
|
| 115 |
* @return boolean Object or array on success, false on fail
|
| 116 |
*/
|
| 117 |
-
function bp_core_get_notifications_for_user( $user_id, $format = '
|
| 118 |
|
| 119 |
// Bail if notifications is not active
|
| 120 |
if ( ! bp_is_active( 'notifications' ) ) {
|
| 114 |
* @param string $format
|
| 115 |
* @return boolean Object or array on success, false on fail
|
| 116 |
*/
|
| 117 |
+
function bp_core_get_notifications_for_user( $user_id, $format = 'string' ) {
|
| 118 |
|
| 119 |
// Bail if notifications is not active
|
| 120 |
if ( ! bp_is_active( 'notifications' ) ) {
|
bp-members/bp-members-screens.php
CHANGED
|
@@ -371,7 +371,7 @@ class BP_Members_Theme_Compat {
|
|
| 371 |
'post_content' => '',
|
| 372 |
'post_type' => 'bp_members',
|
| 373 |
'post_status' => 'publish',
|
| 374 |
-
'
|
| 375 |
'comment_status' => 'closed'
|
| 376 |
) );
|
| 377 |
}
|
|
@@ -431,7 +431,7 @@ class BP_Members_Theme_Compat {
|
|
| 431 |
'post_content' => '',
|
| 432 |
'post_type' => 'bp_members',
|
| 433 |
'post_status' => 'publish',
|
| 434 |
-
'
|
| 435 |
'comment_status' => 'closed'
|
| 436 |
) );
|
| 437 |
}
|
|
@@ -547,7 +547,7 @@ class BP_Registration_Theme_Compat {
|
|
| 547 |
'post_content' => '',
|
| 548 |
'post_type' => $post_type,
|
| 549 |
'post_status' => 'publish',
|
| 550 |
-
'
|
| 551 |
'comment_status' => 'closed'
|
| 552 |
) );
|
| 553 |
}
|
| 371 |
'post_content' => '',
|
| 372 |
'post_type' => 'bp_members',
|
| 373 |
'post_status' => 'publish',
|
| 374 |
+
'is_page' => true,
|
| 375 |
'comment_status' => 'closed'
|
| 376 |
) );
|
| 377 |
}
|
| 431 |
'post_content' => '',
|
| 432 |
'post_type' => 'bp_members',
|
| 433 |
'post_status' => 'publish',
|
| 434 |
+
'is_page' => true,
|
| 435 |
'comment_status' => 'closed'
|
| 436 |
) );
|
| 437 |
}
|
| 547 |
'post_content' => '',
|
| 548 |
'post_type' => $post_type,
|
| 549 |
'post_status' => 'publish',
|
| 550 |
+
'is_page' => true,
|
| 551 |
'comment_status' => 'closed'
|
| 552 |
) );
|
| 553 |
}
|
bp-members/bp-members-template.php
CHANGED
|
@@ -32,8 +32,7 @@ function bp_members_slug() {
|
|
| 32 |
* @since BuddyPress (1.5)
|
| 33 |
*/
|
| 34 |
function bp_get_members_slug() {
|
| 35 |
-
|
| 36 |
-
return apply_filters( 'bp_get_members_slug', $bp->members->slug );
|
| 37 |
}
|
| 38 |
|
| 39 |
/**
|
|
@@ -56,8 +55,7 @@ function bp_members_root_slug() {
|
|
| 56 |
* @since BuddyPress (1.5)
|
| 57 |
*/
|
| 58 |
function bp_get_members_root_slug() {
|
| 59 |
-
|
| 60 |
-
return apply_filters( 'bp_get_members_root_slug', $bp->members->root_slug );
|
| 61 |
}
|
| 62 |
|
| 63 |
/**
|
|
@@ -109,12 +107,13 @@ function bp_signup_slug() {
|
|
| 109 |
function bp_get_signup_slug() {
|
| 110 |
$bp = buddypress();
|
| 111 |
|
| 112 |
-
if ( !empty( $bp->pages->register->slug ) )
|
| 113 |
$slug = $bp->pages->register->slug;
|
| 114 |
-
elseif ( defined( 'BP_REGISTER_SLUG' ) )
|
| 115 |
$slug = BP_REGISTER_SLUG;
|
| 116 |
-
else
|
| 117 |
$slug = 'register';
|
|
|
|
| 118 |
|
| 119 |
return apply_filters( 'bp_get_signup_slug', $slug );
|
| 120 |
}
|
|
@@ -139,14 +138,15 @@ function bp_activate_slug() {
|
|
| 139 |
* @since BuddyPress (1.5)
|
| 140 |
*/
|
| 141 |
function bp_get_activate_slug() {
|
| 142 |
-
|
| 143 |
|
| 144 |
-
if ( !empty( $bp->pages->activate->slug ) )
|
| 145 |
$slug = $bp->pages->activate->slug;
|
| 146 |
-
elseif ( defined( 'BP_ACTIVATION_SLUG' ) )
|
| 147 |
$slug = BP_ACTIVATION_SLUG;
|
| 148 |
-
else
|
| 149 |
$slug = 'activate';
|
|
|
|
| 150 |
|
| 151 |
return apply_filters( 'bp_get_activate_slug', $slug );
|
| 152 |
}
|
| 32 |
* @since BuddyPress (1.5)
|
| 33 |
*/
|
| 34 |
function bp_get_members_slug() {
|
| 35 |
+
return apply_filters( 'bp_get_members_slug', buddypress()->members->slug );
|
|
|
|
| 36 |
}
|
| 37 |
|
| 38 |
/**
|
| 55 |
* @since BuddyPress (1.5)
|
| 56 |
*/
|
| 57 |
function bp_get_members_root_slug() {
|
| 58 |
+
return apply_filters( 'bp_get_members_root_slug', buddypress()->members->root_slug );
|
|
|
|
| 59 |
}
|
| 60 |
|
| 61 |
/**
|
| 107 |
function bp_get_signup_slug() {
|
| 108 |
$bp = buddypress();
|
| 109 |
|
| 110 |
+
if ( !empty( $bp->pages->register->slug ) ) {
|
| 111 |
$slug = $bp->pages->register->slug;
|
| 112 |
+
} elseif ( defined( 'BP_REGISTER_SLUG' ) ) {
|
| 113 |
$slug = BP_REGISTER_SLUG;
|
| 114 |
+
} else {
|
| 115 |
$slug = 'register';
|
| 116 |
+
}
|
| 117 |
|
| 118 |
return apply_filters( 'bp_get_signup_slug', $slug );
|
| 119 |
}
|
| 138 |
* @since BuddyPress (1.5)
|
| 139 |
*/
|
| 140 |
function bp_get_activate_slug() {
|
| 141 |
+
$bp = buddypress();
|
| 142 |
|
| 143 |
+
if ( !empty( $bp->pages->activate->slug ) ) {
|
| 144 |
$slug = $bp->pages->activate->slug;
|
| 145 |
+
} elseif ( defined( 'BP_ACTIVATION_SLUG' ) ) {
|
| 146 |
$slug = BP_ACTIVATION_SLUG;
|
| 147 |
+
} else {
|
| 148 |
$slug = 'activate';
|
| 149 |
+
}
|
| 150 |
|
| 151 |
return apply_filters( 'bp_get_activate_slug', $slug );
|
| 152 |
}
|
bp-notifications/bp-notifications-functions.php
CHANGED
|
@@ -114,11 +114,11 @@ function bp_notifications_mark_notification( $id, $is_new = false ) {
|
|
| 114 |
* @since BuddyPress (1.9.0)
|
| 115 |
*
|
| 116 |
* @param int $user_id ID of the user whose notification are being fetched.
|
| 117 |
-
* @param string $format Format of the returned values. '
|
| 118 |
* while 'object' returns a structured object for parsing.
|
| 119 |
* @return mixed Object or array on success, false on failure.
|
| 120 |
*/
|
| 121 |
-
function bp_notifications_get_notifications_for_user( $user_id, $format = '
|
| 122 |
|
| 123 |
// Setup local variables
|
| 124 |
$bp = buddypress();
|
| 114 |
* @since BuddyPress (1.9.0)
|
| 115 |
*
|
| 116 |
* @param int $user_id ID of the user whose notification are being fetched.
|
| 117 |
+
* @param string $format Format of the returned values. 'string' returns HTML,
|
| 118 |
* while 'object' returns a structured object for parsing.
|
| 119 |
* @return mixed Object or array on success, false on failure.
|
| 120 |
*/
|
| 121 |
+
function bp_notifications_get_notifications_for_user( $user_id, $format = 'string' ) {
|
| 122 |
|
| 123 |
// Setup local variables
|
| 124 |
$bp = buddypress();
|
readme.txt
CHANGED
|
@@ -2,8 +2,8 @@
|
|
| 2 |
Contributors: johnjamesjacoby, DJPaul, boonebgorges, r-a-y
|
| 3 |
Tags: social networking, activity, profiles, messaging, friends, groups, forums, notifications, settings, twitter, facebook, social, community, networks, networking, cms
|
| 4 |
Requires at least: 3.5
|
| 5 |
-
Tested up to: 3.
|
| 6 |
-
Stable tag: 1.9
|
| 7 |
License: GPLv2 or later
|
| 8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 9 |
|
|
@@ -77,6 +77,9 @@ BuddyPress is available in more than 20 languages. For more information, check o
|
|
| 77 |
|
| 78 |
== Upgrade Notice ==
|
| 79 |
|
|
|
|
|
|
|
|
|
|
| 80 |
= 1.9.1 =
|
| 81 |
See: http://codex.buddypress.org/releases/version-1-9-1/
|
| 82 |
|
| 2 |
Contributors: johnjamesjacoby, DJPaul, boonebgorges, r-a-y
|
| 3 |
Tags: social networking, activity, profiles, messaging, friends, groups, forums, notifications, settings, twitter, facebook, social, community, networks, networking, cms
|
| 4 |
Requires at least: 3.5
|
| 5 |
+
Tested up to: 3.8.1
|
| 6 |
+
Stable tag: 1.9.2
|
| 7 |
License: GPLv2 or later
|
| 8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 9 |
|
| 77 |
|
| 78 |
== Upgrade Notice ==
|
| 79 |
|
| 80 |
+
= 1.9.2 =
|
| 81 |
+
See: http://codex.buddypress.org/releases/version-1-9-2/
|
| 82 |
+
|
| 83 |
= 1.9.1 =
|
| 84 |
See: http://codex.buddypress.org/releases/version-1-9-1/
|
| 85 |
|
