Version Description
- Fix bug allowing group members that are friends to be invited twice
- Fix unpublished page preview when page is root component
Download this release
Release Info
Developer | johnjamesjacoby |
Plugin | BuddyPress |
Version | 1.5.4 |
Comparing to | |
See all releases |
Code changes from version 1.5.3.1 to 1.5.4
- bp-core/bp-core-adminbar.php +3 -5
- bp-core/bp-core-catchuri.php +1 -1
- bp-core/bp-core-wpabstraction.php +1 -1
- bp-forums/bp-forums-screens.php +1 -1
- bp-friends/bp-friends-classes.php +12 -5
- bp-friends/bp-friends-functions.php +63 -10
- bp-groups/bp-groups-adminbar.php +10 -5
- bp-languages/buddypress.pot +2487 -2485
- bp-loader.php +2 -2
- bp-members/bp-members-adminbar.php +15 -11
- bp-messages/js/autocomplete/license.bgiframe.txt +19 -19
- bp-themes/bp-default/license.txt +280 -280
- bp-themes/bp-default/readme.txt +21 -21
- bp-themes/bp-default/rtl.css +1 -1
- bp-themes/bp-default/style.css +1 -1
- humans.txt +1 -1
- license.txt +280 -280
- readme.txt +121 -117
bp-core/bp-core-adminbar.php
CHANGED
@@ -65,12 +65,11 @@ add_action( 'bp_init', 'bp_admin_bar_remove_wp_menus', 2 );
|
|
65 |
/**
|
66 |
* Add a menu for the root site of this BuddyPress network
|
67 |
*
|
68 |
-
* @global type $bp
|
69 |
* @global type $wp_admin_bar
|
70 |
* @return If in ajax
|
71 |
*/
|
72 |
function bp_admin_bar_root_site() {
|
73 |
-
global $
|
74 |
|
75 |
// Create the root blog menu
|
76 |
$wp_admin_bar->add_menu( array(
|
@@ -112,7 +111,7 @@ function bp_admin_bar_root_site() {
|
|
112 |
* Add the "My Sites/[Site Name]" menu and all submenus.
|
113 |
*/
|
114 |
function bp_admin_bar_my_sites_menu() {
|
115 |
-
global $
|
116 |
|
117 |
/* Add the 'My Sites' menu if the user has more than one site. */
|
118 |
if ( count( $wp_admin_bar->user->blogs ) <= 1 )
|
@@ -216,7 +215,7 @@ function bp_admin_bar_updates_menu() {
|
|
216 |
return;
|
217 |
|
218 |
$update_title = array( );
|
219 |
-
if ( $wordpress_update_count )
|
220 |
$update_title[] = sprintf( __( '%d WordPress Update' ), $wordpress_update_count );
|
221 |
if ( $plugin_update_count )
|
222 |
$update_title[] = sprintf( _n( '%d Plugin Update', '%d Plugin Updates', $plugin_update_count ), $plugin_update_count );
|
@@ -236,7 +235,6 @@ function bp_admin_bar_updates_menu() {
|
|
236 |
* Handle the Admin Bar CSS
|
237 |
*/
|
238 |
function bp_core_load_admin_bar_css() {
|
239 |
-
global $wp_version;
|
240 |
|
241 |
if ( !bp_use_wp_admin_bar() )
|
242 |
return;
|
65 |
/**
|
66 |
* Add a menu for the root site of this BuddyPress network
|
67 |
*
|
|
|
68 |
* @global type $wp_admin_bar
|
69 |
* @return If in ajax
|
70 |
*/
|
71 |
function bp_admin_bar_root_site() {
|
72 |
+
global $wp_admin_bar;
|
73 |
|
74 |
// Create the root blog menu
|
75 |
$wp_admin_bar->add_menu( array(
|
111 |
* Add the "My Sites/[Site Name]" menu and all submenus.
|
112 |
*/
|
113 |
function bp_admin_bar_my_sites_menu() {
|
114 |
+
global $wp_admin_bar;
|
115 |
|
116 |
/* Add the 'My Sites' menu if the user has more than one site. */
|
117 |
if ( count( $wp_admin_bar->user->blogs ) <= 1 )
|
215 |
return;
|
216 |
|
217 |
$update_title = array( );
|
218 |
+
if ( !empty( $wordpress_update_count ) )
|
219 |
$update_title[] = sprintf( __( '%d WordPress Update' ), $wordpress_update_count );
|
220 |
if ( $plugin_update_count )
|
221 |
$update_title[] = sprintf( _n( '%d Plugin Update', '%d Plugin Updates', $plugin_update_count ), $plugin_update_count );
|
235 |
* Handle the Admin Bar CSS
|
236 |
*/
|
237 |
function bp_core_load_admin_bar_css() {
|
|
|
238 |
|
239 |
if ( !bp_use_wp_admin_bar() )
|
240 |
return;
|
bp-core/bp-core-catchuri.php
CHANGED
@@ -113,7 +113,7 @@ function bp_core_set_uri_globals() {
|
|
113 |
// If a component is set to the front page, force its name into $bp_uri
|
114 |
// so that $current_component is populated (unless a specific WP post is being requested
|
115 |
// via a URL parameter, usually signifying Preview mode)
|
116 |
-
if ( 'page' == get_option( 'show_on_front' ) && get_option( 'page_on_front' ) && empty( $bp_uri ) && empty( $_GET['p'] ) ) {
|
117 |
$post = get_post( get_option( 'page_on_front' ) );
|
118 |
if ( !empty( $post ) ) {
|
119 |
$bp_uri[0] = $post->post_name;
|
113 |
// If a component is set to the front page, force its name into $bp_uri
|
114 |
// so that $current_component is populated (unless a specific WP post is being requested
|
115 |
// via a URL parameter, usually signifying Preview mode)
|
116 |
+
if ( 'page' == get_option( 'show_on_front' ) && get_option( 'page_on_front' ) && empty( $bp_uri ) && empty( $_GET['p'] ) && empty( $_GET['page_id'] ) ) {
|
117 |
$post = get_post( get_option( 'page_on_front' ) );
|
118 |
if ( !empty( $post ) ) {
|
119 |
$bp_uri[0] = $post->post_name;
|
bp-core/bp-core-wpabstraction.php
CHANGED
@@ -22,7 +22,7 @@ if ( !defined( 'ABSPATH' ) ) exit;
|
|
22 |
function bp_get_major_wp_version() {
|
23 |
global $wp_version;
|
24 |
|
25 |
-
return
|
26 |
}
|
27 |
|
28 |
/**
|
22 |
function bp_get_major_wp_version() {
|
23 |
global $wp_version;
|
24 |
|
25 |
+
return (float) $wp_version;
|
26 |
}
|
27 |
|
28 |
/**
|
bp-forums/bp-forums-screens.php
CHANGED
@@ -59,7 +59,7 @@ function bp_forums_directory_forums_setup() {
|
|
59 |
|
60 |
} else {
|
61 |
bp_core_add_message( __( 'Please pick the group forum where you would like to post this topic.', 'buddypress' ), 'error' );
|
62 |
-
bp_core_redirect( add_query_arg( 'new', '',
|
63 |
}
|
64 |
}
|
65 |
|
59 |
|
60 |
} else {
|
61 |
bp_core_add_message( __( 'Please pick the group forum where you would like to post this topic.', 'buddypress' ), 'error' );
|
62 |
+
bp_core_redirect( add_query_arg( 'new', '', bp_get_forums_directory_permalink() ) );
|
63 |
}
|
64 |
}
|
65 |
|
bp-friends/bp-friends-classes.php
CHANGED
@@ -294,17 +294,24 @@ class BP_Friends_Friendship {
|
|
294 |
}
|
295 |
|
296 |
function get_invitable_friend_count( $user_id, $group_id ) {
|
297 |
-
global $wpdb, $bp;
|
298 |
-
|
299 |
-
$friend_ids = BP_Friends_Friendship::get_friend_user_ids( $user_id );
|
300 |
|
|
|
|
|
|
|
301 |
$invitable_count = 0;
|
|
|
302 |
for ( $i = 0, $count = count( $friend_ids ); $i < $count; ++$i ) {
|
303 |
|
304 |
-
|
|
|
|
|
|
|
|
|
|
|
305 |
continue;
|
306 |
|
307 |
-
|
|
|
308 |
continue;
|
309 |
|
310 |
$invitable_count++;
|
294 |
}
|
295 |
|
296 |
function get_invitable_friend_count( $user_id, $group_id ) {
|
|
|
|
|
|
|
297 |
|
298 |
+
// Setup some data we'll use below
|
299 |
+
$is_group_admin = BP_Groups_Member::check_is_admin( $user_id, $group_id );
|
300 |
+
$friend_ids = BP_Friends_Friendship::get_friend_user_ids( $user_id );
|
301 |
$invitable_count = 0;
|
302 |
+
|
303 |
for ( $i = 0, $count = count( $friend_ids ); $i < $count; ++$i ) {
|
304 |
|
305 |
+
// If already a member, they cannot be invited again
|
306 |
+
if ( BP_Groups_Member::check_is_member( (int) $friend_ids[$i], $group_id ) )
|
307 |
+
continue;
|
308 |
+
|
309 |
+
// If user already has invite, they cannot be added
|
310 |
+
if ( BP_Groups_Member::check_has_invite( (int) $friend_ids[$i], $group_id ) )
|
311 |
continue;
|
312 |
|
313 |
+
// If user is not group admin and friend is banned, they cannot be invited
|
314 |
+
if ( ( false === $is_group_admin ) && BP_Groups_Member::check_is_banned( (int) $friend_ids[$i], $group_id ) )
|
315 |
continue;
|
316 |
|
317 |
$invitable_count++;
|
bp-friends/bp-friends-functions.php
CHANGED
@@ -206,25 +206,78 @@ function friends_get_bulk_last_active( $friend_ids ) {
|
|
206 |
return BP_Friends_Friendship::get_bulk_last_active( $friend_ids );
|
207 |
}
|
208 |
|
209 |
-
|
210 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
211 |
|
212 |
-
|
213 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
214 |
|
215 |
-
|
216 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
217 |
$friends[] = array(
|
218 |
-
'id'
|
219 |
'full_name' => bp_get_member_name()
|
220 |
);
|
|
|
221 |
endwhile;
|
222 |
}
|
223 |
|
224 |
-
|
225 |
-
|
|
|
226 |
|
227 |
-
|
|
|
228 |
}
|
229 |
|
230 |
function friends_count_invitable_friends( $user_id, $group_id ) {
|
206 |
return BP_Friends_Friendship::get_bulk_last_active( $friend_ids );
|
207 |
}
|
208 |
|
209 |
+
/**
|
210 |
+
* Get a list of friends that a user can invite into this group.
|
211 |
+
*
|
212 |
+
* Excludes friends that are already in the group, and banned friends if the
|
213 |
+
* user is not a group admin.
|
214 |
+
*
|
215 |
+
* @since 1.0
|
216 |
+
* @param int $user_id User ID whose friends to see can be invited
|
217 |
+
* @param int $group_id Group to check possible invitations against
|
218 |
+
* @return mixed False if no friends, array of users if friends
|
219 |
+
*/
|
220 |
+
function friends_get_friends_invite_list( $user_id = 0, $group_id = 0 ) {
|
221 |
|
222 |
+
// Default to logged in user id
|
223 |
+
if ( empty( $user_id ) )
|
224 |
+
$user_id = bp_loggedin_user_id();
|
225 |
+
|
226 |
+
// Only group admins can invited previously banned users
|
227 |
+
$user_is_admin = (bool) groups_is_user_admin( $user_id, $group_id );
|
228 |
+
|
229 |
+
// Assume no friends
|
230 |
+
$friends = array();
|
231 |
+
|
232 |
+
// Default args
|
233 |
+
$args = apply_filters( 'bp_friends_pre_get_invite_list', array(
|
234 |
+
'user_id' => $user_id,
|
235 |
+
'type' => 'alphabetical',
|
236 |
+
'per_page' => 0
|
237 |
+
) );
|
238 |
+
|
239 |
+
// User has friends
|
240 |
+
if ( bp_has_members( $args ) ) {
|
241 |
|
242 |
+
/**
|
243 |
+
* Loop through all friends and try to add them to the invitation list.
|
244 |
+
*
|
245 |
+
* Exclude friends that:
|
246 |
+
* 1. are already members of the group
|
247 |
+
* 2. are banned from this group if the current user is also not a
|
248 |
+
* group admin.
|
249 |
+
*/
|
250 |
+
while ( bp_members() ) :
|
251 |
+
|
252 |
+
// Load the member
|
253 |
+
bp_the_member();
|
254 |
+
|
255 |
+
// Get the user ID of the friend
|
256 |
+
$friend_user_id = bp_get_member_user_id();
|
257 |
+
|
258 |
+
// Skip friend if already in the group
|
259 |
+
if ( groups_is_user_member( $friend_user_id, $group_id ) )
|
260 |
+
continue;
|
261 |
+
|
262 |
+
// Skip friend if not group admin and user banned from group
|
263 |
+
if ( ( false === $user_is_admin ) && groups_is_user_banned( $friend_user_id, $group_id ) )
|
264 |
+
continue;
|
265 |
+
|
266 |
+
// Friend is safe, so add it to the array of possible friends
|
267 |
$friends[] = array(
|
268 |
+
'id' => $friend_user_id,
|
269 |
'full_name' => bp_get_member_name()
|
270 |
);
|
271 |
+
|
272 |
endwhile;
|
273 |
}
|
274 |
|
275 |
+
// If no friends, explicitly set to false
|
276 |
+
if ( empty( $friends ) )
|
277 |
+
$friends = false;
|
278 |
|
279 |
+
// Allow friends to be filtered
|
280 |
+
return apply_filters( 'bp_friends_get_invite_list', $friends, $user_id, $group_id );
|
281 |
}
|
282 |
|
283 |
function friends_count_invitable_friends( $user_id, $group_id ) {
|
bp-groups/bp-groups-adminbar.php
CHANGED
@@ -17,11 +17,16 @@ if ( !defined( 'ABSPATH' ) ) exit;
|
|
17 |
* @since BuddyPress (1.5.2)
|
18 |
*/
|
19 |
function bp_groups_admin_bar_version_check() {
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
|
|
|
|
|
|
|
|
|
|
25 |
}
|
26 |
}
|
27 |
add_action( 'admin_bar_menu', 'bp_groups_admin_bar_version_check', 4 );
|
17 |
* @since BuddyPress (1.5.2)
|
18 |
*/
|
19 |
function bp_groups_admin_bar_version_check() {
|
20 |
+
switch( bp_get_major_wp_version() ) {
|
21 |
+
case 3.2 :
|
22 |
+
add_action( 'bp_setup_admin_bar', 'bp_groups_group_admin_menu', 99 );
|
23 |
+
break;
|
24 |
+
case 3.3 :
|
25 |
+
case 3.4 :
|
26 |
+
default :
|
27 |
+
remove_action( 'admin_bar_menu', 'wp_admin_bar_edit_menu', 80 );
|
28 |
+
add_action( 'admin_bar_menu', 'bp_groups_group_admin_menu', 400 );
|
29 |
+
break;
|
30 |
}
|
31 |
}
|
32 |
add_action( 'admin_bar_menu', 'bp_groups_admin_bar_version_check', 4 );
|
bp-languages/buddypress.pot
CHANGED
@@ -1,481 +1,707 @@
|
|
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:
|
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 |
|
15 |
-
#: bp-
|
16 |
-
msgid "
|
17 |
-
msgstr ""
|
18 |
-
|
19 |
-
#: bp-blogs/bp-blogs-loader.php:58
|
20 |
-
msgid "Search sites..."
|
21 |
msgstr ""
|
22 |
|
23 |
-
#: bp-
|
24 |
-
msgid "
|
25 |
msgstr ""
|
26 |
|
27 |
-
#: bp-
|
28 |
-
|
|
|
29 |
msgstr ""
|
30 |
|
31 |
-
#: bp-
|
32 |
-
|
33 |
-
msgid "My Sites"
|
34 |
msgstr ""
|
35 |
|
36 |
-
#: bp-
|
37 |
-
msgid "
|
38 |
msgstr ""
|
39 |
|
40 |
-
#: bp-
|
41 |
-
|
|
|
42 |
msgstr ""
|
43 |
|
44 |
-
#: bp-
|
45 |
-
msgid "
|
46 |
msgstr ""
|
47 |
|
48 |
-
#: bp-
|
49 |
-
#: bp-
|
50 |
-
|
|
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: bp-
|
54 |
-
|
55 |
-
msgid "New Post"
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: bp-
|
59 |
-
msgid "
|
60 |
msgstr ""
|
61 |
|
62 |
-
#: bp-
|
63 |
-
|
64 |
-
msgid "Manage Comments"
|
65 |
msgstr ""
|
66 |
|
67 |
-
#: bp-
|
68 |
-
msgid "
|
69 |
msgstr ""
|
70 |
|
71 |
-
#: bp-
|
72 |
-
|
73 |
-
msgid "←"
|
74 |
msgstr ""
|
75 |
|
76 |
-
#: bp-
|
77 |
-
|
78 |
-
msgid "→"
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: bp-
|
82 |
-
msgid "
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: bp-
|
86 |
-
msgid "
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: bp-
|
90 |
-
|
91 |
-
#: bp-members/bp-members-template.php:559
|
92 |
-
#: bp-members/bp-members-template.php:833
|
93 |
-
#: bp-themes/bp-default/groups/groups-loop.php:47
|
94 |
-
#: bp-themes/bp-default/groups/single/group-header.php:42
|
95 |
-
msgid "active %s"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: bp-
|
99 |
-
msgid "
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: bp-
|
103 |
-
msgid "
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: bp-
|
107 |
-
msgid "
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: bp-
|
111 |
-
msgid "
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: bp-
|
115 |
-
msgid "
|
116 |
msgstr ""
|
117 |
|
118 |
-
#: bp-
|
119 |
-
msgid "
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: bp-
|
123 |
-
|
|
|
|
|
|
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: bp-
|
127 |
-
|
|
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: bp-
|
131 |
-
|
|
|
|
|
|
|
|
|
132 |
msgstr ""
|
133 |
|
134 |
-
#: bp-
|
135 |
-
|
|
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: bp-
|
139 |
-
|
|
|
|
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: bp-
|
143 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: bp-
|
147 |
-
msgid "
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: bp-
|
151 |
-
|
152 |
-
msgid "I would like my site to appear in search engines, and in public listings around this network."
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: bp-
|
156 |
-
|
157 |
-
#: bp-core/admin/bp-core-admin.php:137 bp-core/admin/bp-core-admin.php:147
|
158 |
-
#: bp-core/admin/bp-core-admin.php:159 bp-friends/bp-friends-screens.php:69
|
159 |
-
#: bp-groups/bp-groups-screens.php:832 bp-messages/bp-messages-screens.php:150
|
160 |
-
#: bp-themes/bp-default/registration/register.php:205
|
161 |
-
#: bp-themes/bp-default/groups/single/admin.php:26
|
162 |
-
#: bp-activity/bp-activity-screens.php:281
|
163 |
-
msgid "Yes"
|
164 |
msgstr ""
|
165 |
|
166 |
-
#: bp-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: bp-
|
178 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: bp-
|
182 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: bp-
|
186 |
-
|
187 |
-
#: bp-themes/bp-default/blogs/create.php:21
|
188 |
-
msgid "Create a Site"
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: bp-
|
192 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: bp-
|
196 |
-
msgid "%s
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: bp-
|
200 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: bp-
|
204 |
-
|
205 |
-
#: bp-members/bp-members-template.php:674 bp-themes/bp-default/header.php:35
|
206 |
-
#: bp-themes/bp-default/searchform.php:5
|
207 |
-
msgid "Search"
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: bp-
|
211 |
-
#: bp-core/bp-core-
|
212 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: bp-blogs/bp-blogs-
|
216 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: bp-
|
220 |
-
msgid "
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: bp-
|
224 |
-
msgid "
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: bp-
|
228 |
-
|
|
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: bp-
|
232 |
-
|
|
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: bp-
|
236 |
-
msgid "
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: bp-
|
240 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: bp-
|
244 |
-
|
|
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: bp-
|
248 |
-
msgid "
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: bp-
|
252 |
-
|
253 |
-
#: bp-groups/bp-groups-template.php:1285 bp-members/bp-members-loader.php:24
|
254 |
-
#: bp-themes/bp-default/groups/single/admin.php:229
|
255 |
-
msgid "Members"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: bp-
|
259 |
-
#: bp-
|
260 |
-
#: bp-
|
261 |
-
#: bp-themes/bp-default/members/single/
|
262 |
-
#: bp-themes/bp-default/
|
263 |
-
|
|
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: bp-
|
267 |
-
#: bp-
|
268 |
-
|
|
|
|
|
|
|
|
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: bp-
|
272 |
-
|
273 |
-
msgid "Popular"
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: bp-
|
277 |
-
msgid "
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: bp-
|
281 |
-
#: bp-core/bp-core-
|
282 |
-
|
283 |
-
#: bp-themes/bp-default/groups/single/forum/edit.php:49
|
284 |
-
#: bp-themes/bp-default/groups/single/forum.php:75
|
285 |
-
msgid "Title:"
|
286 |
msgstr ""
|
287 |
|
288 |
-
#: bp-
|
289 |
-
msgid "
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: bp-
|
293 |
-
msgid "
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: bp-
|
297 |
-
msgid "
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: bp-
|
301 |
-
msgid "
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: bp-
|
305 |
-
msgid "
|
306 |
msgstr ""
|
307 |
|
308 |
-
#: bp-
|
309 |
-
msgid "
|
310 |
msgstr ""
|
311 |
|
312 |
-
#: bp-
|
313 |
-
msgid "
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: bp-
|
317 |
-
|
|
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: bp-
|
321 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: bp-
|
325 |
-
|
|
|
|
|
|
|
326 |
msgstr ""
|
327 |
|
328 |
-
#: bp-
|
329 |
-
msgid "
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: bp-
|
333 |
-
msgid "
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: bp-
|
337 |
-
msgid "
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: bp-
|
341 |
-
msgid "
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: bp-
|
345 |
-
|
|
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: bp-
|
349 |
-
msgid "
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: bp-
|
353 |
-
msgid "
|
354 |
msgstr ""
|
355 |
|
356 |
-
#: bp-
|
357 |
-
msgid "
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: bp-
|
361 |
-
msgid "
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: bp-
|
365 |
-
msgid "
|
366 |
msgstr ""
|
367 |
|
368 |
-
#: bp-
|
369 |
-
msgid "
|
370 |
msgstr ""
|
371 |
|
372 |
-
#: bp-
|
373 |
-
|
|
|
374 |
msgstr ""
|
375 |
|
376 |
-
#: bp-core/bp-core-adminbar.php:
|
377 |
-
|
378 |
-
|
379 |
-
msgstr[0] ""
|
380 |
-
msgstr[1] ""
|
381 |
-
|
382 |
-
#: bp-core/bp-core-adminbar.php:224
|
383 |
-
msgid "%d Theme Update"
|
384 |
-
msgid_plural "%d Theme Updates"
|
385 |
-
msgstr[0] ""
|
386 |
-
msgstr[1] ""
|
387 |
-
|
388 |
-
#: bp-core/bp-core-adminbar.php:229
|
389 |
-
msgid "Updates %s"
|
390 |
msgstr ""
|
391 |
|
392 |
-
#: bp-core/
|
393 |
-
|
394 |
-
msgid "
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: bp-core/
|
398 |
-
|
399 |
-
msgid "Name"
|
400 |
msgstr ""
|
401 |
|
402 |
-
#: bp-core/
|
403 |
-
|
|
|
404 |
msgstr ""
|
405 |
|
406 |
-
#: bp-
|
407 |
-
|
408 |
-
#: bp-core/admin/bp-core-update.php:219 bp-core/bp-core-functions.php:253
|
409 |
-
msgid "Components"
|
410 |
msgstr ""
|
411 |
|
412 |
-
#: bp-
|
413 |
-
|
414 |
-
#: bp-core/admin/bp-core-update.php:223 bp-core/bp-core-functions.php:254
|
415 |
-
msgid "Pages"
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: bp-
|
419 |
-
|
420 |
-
#: bp-settings/bp-settings-loader.php:72 bp-settings/bp-settings-loader.php:150
|
421 |
-
#: bp-groups/bp-groups-loader.php:189 bp-groups/bp-groups-template.php:1279
|
422 |
-
msgid "Settings"
|
423 |
msgstr ""
|
424 |
|
425 |
-
#: bp-
|
426 |
-
|
427 |
-
#: bp-forums/bp-forums-admin.php:25 bp-forums/bp-forums-admin.php:265
|
428 |
-
#: bp-forums/bp-forums-loader.php:111 bp-forums/bp-forums-loader.php:194
|
429 |
-
#: bp-forums/bp-forums-loader.php:237
|
430 |
-
msgid "Forums"
|
431 |
msgstr ""
|
432 |
|
433 |
-
#: bp-
|
434 |
-
|
435 |
-
msgid "Settings Saved"
|
436 |
msgstr ""
|
437 |
|
438 |
-
#: bp-
|
439 |
-
msgid "
|
440 |
msgstr ""
|
441 |
|
442 |
-
#: bp-core/admin/bp-core-admin.php:
|
443 |
-
msgid "
|
444 |
msgstr ""
|
445 |
|
446 |
-
#: bp-
|
447 |
-
msgid "
|
448 |
msgstr ""
|
449 |
|
450 |
-
#: bp-
|
451 |
-
msgid "
|
452 |
msgstr ""
|
453 |
|
454 |
-
#: bp-core/admin/bp-core-
|
455 |
-
msgid "
|
456 |
msgstr ""
|
457 |
|
458 |
-
#: bp-
|
459 |
-
|
|
|
460 |
msgstr ""
|
461 |
|
462 |
-
#: bp-
|
463 |
-
|
|
|
464 |
msgstr ""
|
465 |
|
466 |
-
#: bp-
|
467 |
-
msgid "
|
468 |
msgstr ""
|
469 |
|
470 |
-
#: bp-
|
471 |
-
|
|
|
|
|
|
|
|
|
|
|
472 |
msgstr ""
|
473 |
|
474 |
-
#: bp-
|
475 |
-
msgid "
|
476 |
msgstr ""
|
477 |
|
478 |
-
#: bp-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
479 |
msgid "Account Settings"
|
480 |
msgstr ""
|
481 |
|
@@ -499,10 +725,6 @@ msgstr ""
|
|
499 |
msgid "Allow your users to talk to each other directly and in private. Not just limited to one-on-one discussions, messages can be sent between any number of members."
|
500 |
msgstr ""
|
501 |
|
502 |
-
#: bp-core/admin/bp-core-admin.php:358 bp-activity/bp-activity-loader.php:34
|
503 |
-
msgid "Activity Streams"
|
504 |
-
msgstr ""
|
505 |
-
|
506 |
#: bp-core/admin/bp-core-admin.php:359
|
507 |
msgid "Global, personal, and group activity streams with threaded commenting, direct posting, favoriting and @mentions, all with full RSS feed and email notification support."
|
508 |
msgstr ""
|
@@ -584,17 +806,8 @@ msgstr ""
|
|
584 |
msgid "Save"
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: bp-core/admin/bp-core-admin.php:551 bp-core/admin/bp-core-admin.php:604
|
588 |
-
#: bp-xprofile/bp-xprofile-loader.php:185
|
589 |
-
#: bp-members/bp-members-template.php:588
|
590 |
-
#: bp-themes/bp-default/functions.php:156
|
591 |
-
#: bp-themes/bp-default/activity/entry.php:37
|
592 |
-
#: bp-activity/bp-activity-template.php:2053
|
593 |
-
msgid "View"
|
594 |
-
msgstr ""
|
595 |
-
|
596 |
#: bp-core/admin/bp-core-admin.php:573 bp-core/admin/bp-core-update.php:514
|
597 |
-
#: bp-core/bp-core-functions.php:414 bp-members/bp-members-adminbar.php:
|
598 |
msgid "Register"
|
599 |
msgstr ""
|
600 |
|
@@ -612,6 +825,16 @@ msgstr ""
|
|
612 |
msgid "Associate WordPress Pages with the following BuddyPress Registration pages."
|
613 |
msgstr ""
|
614 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
615 |
#: bp-core/admin/bp-core-update.php:74 bp-core/admin/bp-core-update.php:227
|
616 |
msgid "Permalinks"
|
617 |
msgstr ""
|
@@ -655,8 +878,9 @@ msgstr ""
|
|
655 |
msgid "Save & Next"
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: bp-core/admin/bp-core-update.php:215
|
659 |
#: bp-themes/bp-default/blogs/create.php:21
|
|
|
660 |
msgid "Site Directory"
|
661 |
msgstr ""
|
662 |
|
@@ -725,11 +949,6 @@ msgstr ""
|
|
725 |
msgid "members"
|
726 |
msgstr ""
|
727 |
|
728 |
-
#: bp-core/admin/bp-core-update.php:405
|
729 |
-
#: bp-activity/bp-activity-template.php:2142
|
730 |
-
msgid "groups"
|
731 |
-
msgstr ""
|
732 |
-
|
733 |
#: bp-core/admin/bp-core-update.php:408
|
734 |
msgid "activity"
|
735 |
msgstr ""
|
@@ -758,6 +977,13 @@ msgstr ""
|
|
758 |
msgid "Either choose an existing page or let BuddyPress auto-create pages for you. To manually create custom pages, come back to this step once you are finished."
|
759 |
msgstr ""
|
760 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
761 |
#: bp-core/admin/bp-core-update.php:443
|
762 |
msgid "Displays member profiles, and a directory of all site members."
|
763 |
msgstr ""
|
@@ -771,16 +997,6 @@ msgstr ""
|
|
771 |
msgid "Displays the activity for the entire site, a member's friends, groups and @mentions."
|
772 |
msgstr ""
|
773 |
|
774 |
-
#: bp-core/admin/bp-core-update.php:470 bp-core/bp-core-template.php:248
|
775 |
-
#: bp-groups/bp-groups-activity.php:135 bp-groups/bp-groups-activity.php:171
|
776 |
-
#: bp-groups/bp-groups-activity.php:207 bp-groups/bp-groups-activity.php:243
|
777 |
-
#: bp-groups/bp-groups-loader.php:395 bp-groups/bp-groups-widgets.php:20
|
778 |
-
#: bp-groups/bp-groups-widgets.php:41 bp-groups/bp-groups-widgets.php:107
|
779 |
-
#: bp-groups/bp-groups-screens.php:831 bp-activity/bp-activity-loader.php:184
|
780 |
-
#: bp-activity/bp-activity-loader.php:278
|
781 |
-
msgid "Groups"
|
782 |
-
msgstr ""
|
783 |
-
|
784 |
#: bp-core/admin/bp-core-update.php:471
|
785 |
msgid "Displays individual groups as well as a directory of groups."
|
786 |
msgstr ""
|
@@ -954,83 +1170,168 @@ msgstr ""
|
|
954 |
msgid "BuddyPress was successfully installed! Please run the <a href=\"%s\">installation wizard</a>."
|
955 |
msgstr ""
|
956 |
|
957 |
-
#: bp-core/bp-core-
|
958 |
-
msgid "
|
959 |
msgstr ""
|
960 |
|
961 |
-
#: bp-core/bp-core-
|
962 |
-
msgid "
|
963 |
msgstr ""
|
964 |
|
965 |
-
#: bp-core/bp-core-
|
966 |
-
msgid "
|
967 |
msgstr ""
|
968 |
|
969 |
-
#: bp-core/bp-core-
|
970 |
-
msgid "
|
971 |
msgstr ""
|
972 |
|
973 |
-
#: bp-core/bp-core-
|
974 |
-
msgid "
|
975 |
msgstr ""
|
976 |
|
977 |
-
#: bp-core/bp-core-
|
978 |
-
msgid "
|
979 |
msgstr ""
|
980 |
|
981 |
-
#: bp-core/bp-core-
|
982 |
-
msgid "
|
983 |
msgstr ""
|
984 |
|
985 |
-
#: bp-core/bp-core-
|
986 |
-
msgid "
|
987 |
msgstr ""
|
988 |
|
989 |
-
#: bp-core/bp-core-
|
990 |
-
msgid "
|
991 |
msgstr ""
|
992 |
|
993 |
-
#: bp-core/bp-core-
|
994 |
-
msgid "
|
995 |
msgstr ""
|
996 |
|
997 |
-
#: bp-core/bp-core-
|
998 |
-
msgid "
|
999 |
msgstr ""
|
1000 |
|
1001 |
-
#: bp-core/bp-core-
|
1002 |
-
msgid "
|
1003 |
-
|
|
|
|
|
1004 |
|
1005 |
-
#: bp-core/bp-core-
|
1006 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
1007 |
msgstr ""
|
1008 |
|
1009 |
-
#: bp-core/bp-core-
|
1010 |
-
msgid "
|
1011 |
msgstr ""
|
1012 |
|
1013 |
-
#: bp-core/bp-core-
|
1014 |
-
msgid "
|
1015 |
msgstr ""
|
1016 |
|
1017 |
-
#: bp-core/bp-core-
|
1018 |
-
|
1019 |
-
#: bp-themes/bp-default/activity/index.php:101
|
1020 |
-
#: bp-themes/bp-default/forums/forums-loop.php:40
|
1021 |
-
msgid "Posts"
|
1022 |
msgstr ""
|
1023 |
|
1024 |
-
#: bp-core/bp-core-
|
1025 |
-
msgid "
|
1026 |
msgstr ""
|
1027 |
|
1028 |
-
#: bp-core/bp-core-
|
1029 |
-
msgid "
|
1030 |
msgstr ""
|
1031 |
|
1032 |
-
#: bp-core/bp-core-
|
1033 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1034 |
msgstr ""
|
1035 |
|
1036 |
#: bp-core/bp-core-filters.php:163 bp-core/bp-core-filters.php:187
|
@@ -1094,92 +1395,11 @@ msgstr ""
|
|
1094 |
msgid "Activate your Account"
|
1095 |
msgstr ""
|
1096 |
|
1097 |
-
#: bp-core/bp-core-filters.php:316 bp-themes/bp-default/groups/
|
1098 |
-
#: bp-themes/bp-default/groups/
|
1099 |
msgid "Create a Group"
|
1100 |
msgstr ""
|
1101 |
|
1102 |
-
#: bp-core/bp-core-cssjs.php:49
|
1103 |
-
msgid "Are you sure?"
|
1104 |
-
msgstr ""
|
1105 |
-
|
1106 |
-
#: bp-core/bp-core-classes.php:191
|
1107 |
-
msgid "%d group"
|
1108 |
-
msgid_plural "%d groups"
|
1109 |
-
msgstr[0] ""
|
1110 |
-
msgstr[1] ""
|
1111 |
-
|
1112 |
-
#: bp-core/deprecated/1.5.php:135 bp-xprofile/bp-xprofile-loader.php:220
|
1113 |
-
#: bp-themes/bp-default/members/single/profile/profile-wp.php:8
|
1114 |
-
#: bp-themes/bp-default/activity/post-form.php:45
|
1115 |
-
msgid "My Profile"
|
1116 |
-
msgstr ""
|
1117 |
-
|
1118 |
-
#: bp-core/deprecated/1.5.php:142 bp-themes/bp-default/functions.php:634
|
1119 |
-
#: bp-themes/bp-default/members/single/profile/profile-wp.php:15
|
1120 |
-
msgid "Name"
|
1121 |
-
msgstr ""
|
1122 |
-
|
1123 |
-
#: bp-core/deprecated/1.5.php:151
|
1124 |
-
#: bp-themes/bp-default/members/single/profile/profile-wp.php:24
|
1125 |
-
msgid "About Me"
|
1126 |
-
msgstr ""
|
1127 |
-
|
1128 |
-
#: bp-core/deprecated/1.5.php:160 bp-themes/bp-default/functions.php:638
|
1129 |
-
#: bp-themes/bp-default/members/single/profile/profile-wp.php:33
|
1130 |
-
msgid "Website"
|
1131 |
-
msgstr ""
|
1132 |
-
|
1133 |
-
#: bp-core/deprecated/1.5.php:169
|
1134 |
-
#: bp-themes/bp-default/members/single/profile/profile-wp.php:42
|
1135 |
-
msgid "Jabber"
|
1136 |
-
msgstr ""
|
1137 |
-
|
1138 |
-
#: bp-core/deprecated/1.5.php:178
|
1139 |
-
#: bp-themes/bp-default/members/single/profile/profile-wp.php:51
|
1140 |
-
msgid "AOL Messenger"
|
1141 |
-
msgstr ""
|
1142 |
-
|
1143 |
-
#: bp-core/deprecated/1.5.php:187
|
1144 |
-
#: bp-themes/bp-default/members/single/profile/profile-wp.php:60
|
1145 |
-
msgid "Yahoo Messenger"
|
1146 |
-
msgstr ""
|
1147 |
-
|
1148 |
-
#: bp-core/deprecated/1.5.php:287 bp-core/bp-core-buddybar.php:473
|
1149 |
-
#: bp-members/bp-members-adminbar.php:281
|
1150 |
-
#: bp-members/bp-members-template.php:734 bp-themes/bp-default/sidebar.php:18
|
1151 |
-
msgid "Log Out"
|
1152 |
-
msgstr ""
|
1153 |
-
|
1154 |
-
#: bp-core/deprecated/1.5.php:334
|
1155 |
-
msgid "%1$s mentioned you in the group \"%2$s\""
|
1156 |
-
msgstr ""
|
1157 |
-
|
1158 |
-
#: bp-core/deprecated/1.5.php:336 bp-activity/bp-activity-notifications.php:69
|
1159 |
-
msgid ""
|
1160 |
-
"%1$s mentioned you in the group \"%2$s\":\n"
|
1161 |
-
"\n"
|
1162 |
-
"\"%3$s\"\n"
|
1163 |
-
"\n"
|
1164 |
-
"To view and respond to the message, log in and visit: %4$s\n"
|
1165 |
-
"\n"
|
1166 |
-
"---------------------\n"
|
1167 |
-
msgstr ""
|
1168 |
-
|
1169 |
-
#: bp-core/deprecated/1.5.php:346 bp-friends/bp-friends-notifications.php:36
|
1170 |
-
#: bp-friends/bp-friends-notifications.php:76
|
1171 |
-
#: bp-groups/bp-groups-notifications.php:32
|
1172 |
-
#: bp-groups/bp-groups-notifications.php:83
|
1173 |
-
#: bp-groups/bp-groups-notifications.php:139
|
1174 |
-
#: bp-groups/bp-groups-notifications.php:187
|
1175 |
-
#: bp-groups/bp-groups-notifications.php:241
|
1176 |
-
#: bp-messages/bp-messages-notifications.php:44
|
1177 |
-
#: bp-activity/bp-activity-notifications.php:90
|
1178 |
-
#: bp-activity/bp-activity-notifications.php:164
|
1179 |
-
#: bp-activity/bp-activity-notifications.php:209
|
1180 |
-
msgid "To disable these notifications please log in and go to: %s"
|
1181 |
-
msgstr ""
|
1182 |
-
|
1183 |
#: bp-core/bp-core-functions.php:371
|
1184 |
msgid "<strong>BuddyPress is almost ready</strong>. You must <a href=\"%s\">update your permalink structure</a> to something other than the default for it to work."
|
1185 |
msgstr ""
|
@@ -1273,1868 +1493,1722 @@ msgstr ""
|
|
1273 |
msgid "not recently active"
|
1274 |
msgstr ""
|
1275 |
|
1276 |
-
#: bp-core/bp-core-
|
1277 |
-
|
1278 |
-
|
1279 |
-
|
1280 |
-
#: bp-core/bp-core-catchuri.php:402 bp-core/bp-core-catchuri.php:459
|
1281 |
-
msgid "You must log in to access the page you requested."
|
1282 |
msgstr ""
|
1283 |
|
1284 |
-
#: bp-core/bp-core-
|
1285 |
-
|
|
|
1286 |
msgstr ""
|
1287 |
|
1288 |
-
#: bp-core/bp-core-
|
1289 |
-
msgid "
|
1290 |
msgstr ""
|
1291 |
|
1292 |
-
#: bp-core/bp-core-
|
1293 |
-
msgid "
|
1294 |
msgstr ""
|
1295 |
|
1296 |
-
#: bp-core/bp-core-
|
1297 |
-
msgid "
|
1298 |
msgstr ""
|
1299 |
|
1300 |
-
#: bp-core/bp-core-
|
1301 |
-
|
|
|
|
|
1302 |
msgstr ""
|
1303 |
|
1304 |
-
#: bp-core/bp-core-
|
1305 |
-
msgid "
|
1306 |
msgstr ""
|
1307 |
|
1308 |
-
#: bp-core/bp-core-
|
1309 |
-
msgid "
|
1310 |
msgstr ""
|
1311 |
|
1312 |
-
#: bp-core/bp-core-
|
1313 |
-
msgid "
|
1314 |
msgstr ""
|
1315 |
|
1316 |
-
#: bp-core/bp-core-
|
1317 |
-
|
1318 |
-
msgid "Profile"
|
1319 |
msgstr ""
|
1320 |
|
1321 |
-
#: bp-core/bp-core-
|
1322 |
-
#: bp-
|
1323 |
-
|
|
|
|
|
|
|
1324 |
msgstr ""
|
1325 |
|
1326 |
-
#: bp-
|
1327 |
-
|
|
|
1328 |
msgstr ""
|
1329 |
|
1330 |
-
#: bp-
|
1331 |
-
|
|
|
1332 |
msgstr ""
|
1333 |
|
1334 |
-
#: bp-
|
1335 |
-
|
1336 |
-
#: bp-themes/bp-default/members/single/activity.php:35
|
1337 |
-
#: bp-themes/bp-default/activity/index.php:122
|
1338 |
-
msgid "Friendships"
|
1339 |
msgstr ""
|
1340 |
|
1341 |
-
#: bp-
|
1342 |
-
|
|
|
|
|
|
|
|
|
1343 |
msgstr ""
|
1344 |
|
1345 |
-
#: bp-
|
1346 |
-
msgid "
|
1347 |
msgstr ""
|
1348 |
|
1349 |
-
#: bp-
|
1350 |
-
msgid "
|
1351 |
msgstr ""
|
1352 |
|
1353 |
-
#: bp-
|
1354 |
-
|
1355 |
-
#: bp-activity/bp-activity-loader.php:268
|
1356 |
-
msgid "Friends"
|
1357 |
msgstr ""
|
1358 |
|
1359 |
-
#: bp-
|
1360 |
-
msgid "
|
1361 |
msgstr ""
|
1362 |
|
1363 |
-
#: bp-
|
1364 |
-
msgid "
|
1365 |
msgstr ""
|
1366 |
|
1367 |
-
#: bp-
|
1368 |
-
msgid ""
|
1369 |
-
"%1$s wants to add you as a friend.\n"
|
1370 |
-
"\n"
|
1371 |
-
"To view all of your pending friendship requests: %2$s\n"
|
1372 |
-
"\n"
|
1373 |
-
"To view %3$s's profile: %4$s\n"
|
1374 |
-
"\n"
|
1375 |
-
"---------------------\n"
|
1376 |
msgstr ""
|
1377 |
|
1378 |
-
#: bp-
|
1379 |
-
|
1380 |
-
msgid "%s accepted your friendship request"
|
1381 |
msgstr ""
|
1382 |
|
1383 |
-
#: bp-
|
1384 |
-
msgid ""
|
1385 |
-
"%1$s accepted your friend request.\n"
|
1386 |
-
"\n"
|
1387 |
-
"To view %2$s's profile: %3$s\n"
|
1388 |
-
"\n"
|
1389 |
-
"---------------------\n"
|
1390 |
msgstr ""
|
1391 |
|
1392 |
-
#: bp-
|
1393 |
-
|
1394 |
-
msgid "Recently Active"
|
1395 |
msgstr ""
|
1396 |
|
1397 |
-
#: bp-
|
1398 |
-
|
1399 |
-
msgid "Alphabetically"
|
1400 |
msgstr ""
|
1401 |
|
1402 |
-
#: bp-
|
1403 |
-
msgid "
|
1404 |
msgstr ""
|
1405 |
|
1406 |
-
#: bp-
|
1407 |
-
|
|
|
|
|
|
|
1408 |
msgstr ""
|
1409 |
|
1410 |
-
#: bp-
|
1411 |
-
|
|
|
1412 |
msgstr ""
|
1413 |
|
1414 |
-
#: bp-
|
1415 |
-
|
|
|
1416 |
msgstr ""
|
1417 |
|
1418 |
-
#: bp-
|
1419 |
-
|
|
|
1420 |
msgstr ""
|
1421 |
|
1422 |
-
#: bp-
|
1423 |
-
|
|
|
1424 |
msgstr ""
|
1425 |
|
1426 |
-
#: bp-
|
1427 |
-
|
|
|
1428 |
msgstr ""
|
1429 |
|
1430 |
-
#: bp-
|
1431 |
-
|
|
|
1432 |
msgstr ""
|
1433 |
|
1434 |
-
#: bp-
|
1435 |
-
msgid "%
|
1436 |
msgstr ""
|
1437 |
|
1438 |
-
#: bp-
|
1439 |
-
|
1440 |
-
#: bp-themes/bp-default/_inc/ajax.php:431
|
1441 |
-
msgid "Friendship Requested"
|
1442 |
msgstr ""
|
1443 |
|
1444 |
-
#: bp-
|
1445 |
-
|
1446 |
-
msgid "Cancel Friendship"
|
1447 |
msgstr ""
|
1448 |
|
1449 |
-
#: bp-
|
1450 |
-
|
1451 |
-
#: bp-themes/bp-default/_inc/ajax.php:421
|
1452 |
-
msgid "Add Friend"
|
1453 |
msgstr ""
|
1454 |
|
1455 |
-
#: bp-
|
1456 |
-
msgid "
|
1457 |
msgstr ""
|
1458 |
|
1459 |
-
#: bp-
|
1460 |
-
msgid "
|
1461 |
msgstr ""
|
1462 |
|
1463 |
-
#: bp-
|
1464 |
-
|
|
|
1465 |
msgstr ""
|
1466 |
|
1467 |
-
#: bp-
|
1468 |
-
msgid "
|
1469 |
msgstr ""
|
1470 |
|
1471 |
-
#: bp-
|
1472 |
-
msgid "
|
1473 |
msgstr ""
|
1474 |
|
1475 |
-
#: bp-
|
1476 |
-
|
|
|
1477 |
msgstr ""
|
1478 |
|
1479 |
-
#: bp-
|
1480 |
-
|
|
|
1481 |
msgstr ""
|
1482 |
|
1483 |
-
#: bp-
|
1484 |
-
msgid "
|
1485 |
msgstr ""
|
1486 |
|
1487 |
-
#: bp-
|
1488 |
-
|
1489 |
-
msgid "%1$s and %2$s are now friends"
|
1490 |
msgstr ""
|
1491 |
|
1492 |
-
#: bp-
|
1493 |
-
msgid "
|
1494 |
msgstr ""
|
1495 |
|
1496 |
-
#: bp-
|
1497 |
-
msgid "
|
1498 |
msgstr ""
|
1499 |
|
1500 |
-
#: bp-
|
1501 |
-
msgid "
|
1502 |
msgstr ""
|
1503 |
|
1504 |
-
#: bp-
|
1505 |
-
msgid "
|
1506 |
msgstr ""
|
1507 |
|
1508 |
-
#: bp-
|
1509 |
-
msgid "
|
1510 |
msgstr ""
|
1511 |
|
1512 |
-
#: bp-
|
1513 |
-
msgid "
|
1514 |
msgstr ""
|
1515 |
|
1516 |
-
#: bp-
|
1517 |
-
msgid "
|
1518 |
msgstr ""
|
1519 |
|
1520 |
-
#: bp-
|
1521 |
-
msgid "
|
1522 |
msgstr ""
|
1523 |
|
1524 |
-
#: bp-
|
1525 |
-
msgid "
|
1526 |
msgstr ""
|
1527 |
|
1528 |
-
#: bp-
|
1529 |
-
msgid "
|
1530 |
msgstr ""
|
1531 |
|
1532 |
-
#: bp-
|
1533 |
-
msgid "
|
1534 |
msgstr ""
|
1535 |
|
1536 |
-
#: bp-
|
1537 |
-
|
1538 |
-
#: bp-members/bp-members-adminbar.php:217 bp-members/bp-members-buddybar.php:13
|
1539 |
-
msgid "Notifications"
|
1540 |
msgstr ""
|
1541 |
|
1542 |
-
#: bp-
|
1543 |
-
|
1544 |
-
#: bp-members/bp-members-adminbar.php:196
|
1545 |
-
#: bp-themes/bp-default/members/single/settings/delete-account.php:50
|
1546 |
-
msgid "Delete Account"
|
1547 |
msgstr ""
|
1548 |
|
1549 |
-
#: bp-
|
1550 |
-
|
1551 |
-
#: bp-xprofile/bp-xprofile-screens.php:113
|
1552 |
-
msgid "Changes saved."
|
1553 |
msgstr ""
|
1554 |
|
1555 |
-
#: bp-
|
1556 |
-
msgid "
|
|
|
|
|
1557 |
msgstr ""
|
1558 |
|
1559 |
-
#: bp-
|
1560 |
-
msgid "
|
1561 |
msgstr ""
|
1562 |
|
1563 |
-
#: bp-
|
1564 |
-
msgid "
|
1565 |
msgstr ""
|
1566 |
|
1567 |
-
#: bp-
|
1568 |
-
msgid "
|
1569 |
msgstr ""
|
1570 |
|
1571 |
-
#: bp-
|
1572 |
-
msgid "
|
1573 |
msgstr ""
|
1574 |
|
1575 |
-
#: bp-
|
1576 |
-
msgid "
|
1577 |
msgstr ""
|
1578 |
|
1579 |
-
#: bp-
|
1580 |
-
msgid "
|
1581 |
msgstr ""
|
1582 |
|
1583 |
-
#: bp-
|
1584 |
-
msgid "
|
1585 |
msgstr ""
|
1586 |
|
1587 |
-
#: bp-
|
1588 |
-
msgid "
|
1589 |
msgstr ""
|
1590 |
|
1591 |
-
#: bp-
|
1592 |
-
msgid "The
|
1593 |
-
msgstr ""
|
1594 |
-
|
1595 |
-
#: bp-groups/bp-groups-actions.php:215 bp-groups/bp-groups-actions.php:222
|
1596 |
-
msgid "There was an error joining the group."
|
1597 |
msgstr ""
|
1598 |
|
1599 |
-
#: bp-groups/bp-groups-
|
1600 |
-
msgid "
|
1601 |
msgstr ""
|
1602 |
|
1603 |
-
#: bp-
|
1604 |
-
msgid "
|
1605 |
msgstr ""
|
1606 |
|
1607 |
-
#: bp-groups/bp-groups-
|
1608 |
-
msgid "There was an error
|
1609 |
msgstr ""
|
1610 |
|
1611 |
-
#: bp-
|
1612 |
-
msgid "
|
1613 |
msgstr ""
|
1614 |
|
1615 |
-
#: bp-
|
1616 |
-
msgid "
|
1617 |
msgstr ""
|
1618 |
|
1619 |
-
#: bp-
|
1620 |
-
|
|
|
1621 |
msgstr ""
|
1622 |
|
1623 |
-
#: bp-
|
1624 |
-
|
|
|
1625 |
msgstr ""
|
1626 |
|
1627 |
-
#: bp-
|
1628 |
-
|
|
|
1629 |
msgstr ""
|
1630 |
|
1631 |
-
#: bp-
|
1632 |
-
msgid "
|
1633 |
msgstr ""
|
1634 |
|
1635 |
-
#: bp-groups/bp-groups-
|
1636 |
-
msgid "
|
1637 |
msgstr ""
|
1638 |
|
1639 |
-
#: bp-
|
1640 |
-
msgid "%
|
1641 |
msgstr ""
|
1642 |
|
1643 |
-
#: bp-
|
1644 |
-
msgid "
|
1645 |
msgstr ""
|
1646 |
|
1647 |
-
#: bp-
|
1648 |
-
msgid "
|
1649 |
msgstr ""
|
1650 |
|
1651 |
-
#: bp-
|
1652 |
-
msgid "
|
1653 |
msgstr ""
|
1654 |
|
1655 |
-
#: bp-
|
1656 |
-
msgid "
|
1657 |
msgstr ""
|
1658 |
|
1659 |
-
#: bp-
|
1660 |
-
msgid "
|
1661 |
msgstr ""
|
1662 |
|
1663 |
-
#: bp-
|
1664 |
-
msgid "
|
1665 |
msgstr ""
|
1666 |
|
1667 |
-
#: bp-
|
1668 |
-
msgid "
|
1669 |
msgstr ""
|
1670 |
|
1671 |
-
#: bp-
|
1672 |
-
msgid "
|
1673 |
msgstr ""
|
1674 |
|
1675 |
-
#: bp-
|
1676 |
-
|
|
|
1677 |
msgstr ""
|
1678 |
|
1679 |
-
#: bp-
|
1680 |
-
|
|
|
1681 |
msgstr ""
|
1682 |
|
1683 |
-
#: bp-
|
1684 |
-
|
|
|
|
|
1685 |
msgstr ""
|
1686 |
|
1687 |
-
#: bp-
|
1688 |
-
msgid "
|
1689 |
msgstr ""
|
1690 |
|
1691 |
-
#: bp-
|
1692 |
-
msgid "
|
1693 |
msgstr ""
|
1694 |
|
1695 |
-
#: bp-
|
1696 |
-
msgid "
|
1697 |
msgstr ""
|
1698 |
|
1699 |
-
#: bp-
|
1700 |
-
msgid "
|
1701 |
msgstr ""
|
1702 |
|
1703 |
-
#: bp-
|
1704 |
-
msgid "
|
1705 |
msgstr ""
|
1706 |
|
1707 |
-
#: bp-
|
1708 |
-
msgid "
|
1709 |
msgstr ""
|
1710 |
|
1711 |
-
#: bp-
|
1712 |
-
|
1713 |
-
msgid "Memberships"
|
1714 |
msgstr ""
|
1715 |
|
1716 |
-
#: bp-
|
1717 |
-
msgid "
|
1718 |
msgstr ""
|
1719 |
|
1720 |
-
#: bp-
|
1721 |
-
|
1722 |
-
msgid "Home"
|
1723 |
msgstr ""
|
1724 |
|
1725 |
-
#: bp-
|
1726 |
-
msgid "
|
1727 |
msgstr ""
|
1728 |
|
1729 |
-
#: bp-
|
1730 |
-
|
1731 |
-
msgid "Request Membership"
|
1732 |
msgstr ""
|
1733 |
|
1734 |
-
#: bp-
|
1735 |
-
|
|
|
1736 |
msgstr ""
|
1737 |
|
1738 |
-
#: bp-
|
1739 |
-
msgid "
|
1740 |
msgstr ""
|
1741 |
|
1742 |
-
#: bp-
|
1743 |
-
|
1744 |
-
msgid "Send Invites"
|
1745 |
msgstr ""
|
1746 |
|
1747 |
-
#: bp-
|
1748 |
-
|
|
|
1749 |
msgstr ""
|
1750 |
|
1751 |
-
#: bp-
|
1752 |
-
msgid "
|
1753 |
msgstr ""
|
1754 |
|
1755 |
-
#: bp-
|
1756 |
-
msgid "
|
1757 |
msgstr ""
|
1758 |
|
1759 |
-
#: bp-
|
1760 |
-
#: bp-
|
1761 |
-
|
|
|
|
|
1762 |
msgstr ""
|
1763 |
|
1764 |
-
#: bp-groups/bp-groups-
|
1765 |
-
msgid "
|
1766 |
msgstr ""
|
1767 |
|
1768 |
-
#: bp-
|
1769 |
-
msgid "
|
1770 |
msgstr ""
|
1771 |
|
1772 |
-
#: bp-
|
1773 |
-
msgid "
|
1774 |
msgstr ""
|
1775 |
|
1776 |
-
#: bp-
|
1777 |
-
msgid ""
|
1778 |
-
"Group details for the group \"%1$s\" were updated:\n"
|
1779 |
-
"\n"
|
1780 |
-
"To view the group: %2$s\n"
|
1781 |
-
"\n"
|
1782 |
-
"---------------------\n"
|
1783 |
msgstr ""
|
1784 |
|
1785 |
-
#: bp-
|
1786 |
-
msgid "
|
1787 |
msgstr ""
|
1788 |
|
1789 |
-
#: bp-
|
1790 |
msgid ""
|
1791 |
-
"%1$s wants to
|
1792 |
-
"\n"
|
1793 |
-
"Because you are the administrator of this group, you must either accept or reject the membership request.\n"
|
1794 |
"\n"
|
1795 |
-
"To view all pending
|
1796 |
-
"%3$s\n"
|
1797 |
"\n"
|
1798 |
-
"To view %
|
1799 |
"\n"
|
1800 |
"---------------------\n"
|
1801 |
msgstr ""
|
1802 |
|
1803 |
-
#: bp-
|
1804 |
-
msgid "Membership request for group \"%s\" accepted"
|
1805 |
-
msgstr ""
|
1806 |
-
|
1807 |
-
#: bp-groups/bp-groups-notifications.php:120
|
1808 |
msgid ""
|
1809 |
-
"
|
1810 |
"\n"
|
1811 |
-
"To view
|
1812 |
"\n"
|
1813 |
"---------------------\n"
|
1814 |
msgstr ""
|
1815 |
|
1816 |
-
#: bp-
|
1817 |
-
msgid "
|
1818 |
msgstr ""
|
1819 |
|
1820 |
-
#: bp-
|
1821 |
-
msgid ""
|
1822 |
-
"Your membership request for the group \"%1$s\" has been rejected.\n"
|
1823 |
-
"\n"
|
1824 |
-
"To submit another request please log in and visit: %2$s\n"
|
1825 |
-
"\n"
|
1826 |
-
"---------------------\n"
|
1827 |
msgstr ""
|
1828 |
|
1829 |
-
#: bp-
|
1830 |
-
msgid "
|
1831 |
msgstr ""
|
1832 |
|
1833 |
-
#: bp-
|
1834 |
-
msgid "
|
1835 |
msgstr ""
|
1836 |
|
1837 |
-
#: bp-
|
1838 |
-
msgid "
|
1839 |
msgstr ""
|
1840 |
|
1841 |
-
#: bp-
|
1842 |
-
msgid ""
|
1843 |
-
"You have been promoted to %1$s for the group: \"%2$s\".\n"
|
1844 |
-
"\n"
|
1845 |
-
"To view the group please visit: %3$s\n"
|
1846 |
-
"\n"
|
1847 |
-
"---------------------\n"
|
1848 |
msgstr ""
|
1849 |
|
1850 |
-
#: bp-
|
1851 |
-
|
|
|
1852 |
msgstr ""
|
1853 |
|
1854 |
-
#: bp-
|
1855 |
-
|
1856 |
-
|
1857 |
-
"\n"
|
1858 |
-
"To view your group invites visit: %3$s\n"
|
1859 |
-
"\n"
|
1860 |
-
"To view the group visit: %4$s\n"
|
1861 |
-
"\n"
|
1862 |
-
"To view %5$s's profile visit: %6$s\n"
|
1863 |
-
"\n"
|
1864 |
-
"---------------------\n"
|
1865 |
msgstr ""
|
1866 |
|
1867 |
-
#: bp-
|
1868 |
-
msgid "
|
1869 |
msgstr ""
|
1870 |
|
1871 |
-
#: bp-
|
1872 |
-
msgid "
|
1873 |
msgstr ""
|
1874 |
|
1875 |
-
#: bp-
|
1876 |
-
msgid "
|
1877 |
msgstr ""
|
1878 |
|
1879 |
-
#: bp-
|
1880 |
-
msgid "
|
1881 |
msgstr ""
|
1882 |
|
1883 |
-
#: bp-
|
1884 |
-
msgid "
|
1885 |
msgstr ""
|
1886 |
|
1887 |
-
#: bp-
|
1888 |
-
msgid "
|
1889 |
msgstr ""
|
1890 |
|
1891 |
-
#: bp-
|
1892 |
-
msgid "
|
1893 |
msgstr ""
|
1894 |
|
1895 |
-
#: bp-
|
1896 |
-
|
1897 |
-
#: bp-themes/bp-default/groups/single/admin.php:358
|
1898 |
-
msgid "Delete Group"
|
1899 |
msgstr ""
|
1900 |
|
1901 |
-
#: bp-
|
1902 |
-
msgid "
|
1903 |
msgstr ""
|
1904 |
|
1905 |
-
#: bp-
|
1906 |
-
|
|
|
|
|
1907 |
msgstr ""
|
1908 |
|
1909 |
-
#: bp-
|
1910 |
-
|
|
|
1911 |
msgstr ""
|
1912 |
|
1913 |
-
#: bp-
|
1914 |
-
|
|
|
|
|
1915 |
msgstr ""
|
1916 |
|
1917 |
-
#: bp-groups/bp-groups-
|
1918 |
-
msgid "
|
1919 |
msgstr ""
|
1920 |
|
1921 |
-
#: bp-groups/bp-groups-
|
1922 |
-
msgid "
|
1923 |
msgstr ""
|
1924 |
|
1925 |
-
#: bp-groups/bp-groups-
|
1926 |
-
msgid "
|
1927 |
msgstr ""
|
1928 |
|
1929 |
-
#: bp-groups/bp-groups-
|
1930 |
-
msgid "
|
1931 |
msgstr ""
|
1932 |
|
1933 |
-
#: bp-groups/bp-groups-
|
1934 |
-
msgid "
|
1935 |
msgstr ""
|
1936 |
|
1937 |
-
#: bp-groups/bp-groups-
|
1938 |
-
msgid "
|
1939 |
msgstr ""
|
1940 |
|
1941 |
-
#: bp-groups/bp-groups-
|
1942 |
-
|
1943 |
-
msgid "%1$s joined the group %2$s"
|
1944 |
msgstr ""
|
1945 |
|
1946 |
-
#: bp-groups/bp-groups-
|
1947 |
-
msgid "
|
1948 |
msgstr ""
|
1949 |
|
1950 |
-
#: bp-groups/bp-groups-
|
1951 |
-
msgid "
|
1952 |
msgstr ""
|
1953 |
|
1954 |
-
#: bp-groups/bp-groups-screens.php:
|
1955 |
-
msgid "
|
1956 |
msgstr ""
|
1957 |
|
1958 |
-
#: bp-groups/bp-groups-
|
1959 |
-
msgid "
|
1960 |
msgstr ""
|
1961 |
|
1962 |
-
#: bp-groups/bp-groups-
|
1963 |
-
msgid "
|
1964 |
msgstr ""
|
1965 |
|
1966 |
-
#: bp-groups/bp-groups-
|
1967 |
-
msgid "
|
1968 |
msgstr ""
|
1969 |
|
1970 |
-
#: bp-groups/bp-groups-
|
1971 |
-
msgid "
|
1972 |
msgstr ""
|
1973 |
|
1974 |
-
#: bp-groups/bp-groups-
|
1975 |
-
msgid "
|
1976 |
msgstr ""
|
1977 |
|
1978 |
-
#: bp-groups/bp-groups-
|
1979 |
-
msgid "
|
1980 |
msgstr ""
|
1981 |
|
1982 |
-
#: bp-groups/bp-groups-
|
1983 |
-
msgid "
|
1984 |
msgstr ""
|
1985 |
|
1986 |
-
#: bp-groups/bp-groups-
|
1987 |
-
msgid "
|
1988 |
msgstr ""
|
1989 |
|
1990 |
-
#: bp-groups/bp-groups-
|
1991 |
-
msgid "
|
1992 |
msgstr ""
|
1993 |
|
1994 |
-
#: bp-groups/bp-groups-
|
1995 |
-
msgid "
|
1996 |
msgstr ""
|
1997 |
|
1998 |
-
#: bp-groups/bp-groups-
|
1999 |
-
msgid "
|
2000 |
msgstr ""
|
2001 |
|
2002 |
-
#: bp-groups/bp-groups-
|
2003 |
-
msgid "
|
2004 |
msgstr ""
|
2005 |
|
2006 |
-
#: bp-groups/bp-groups-
|
2007 |
-
msgid "
|
2008 |
msgstr ""
|
2009 |
|
2010 |
-
#: bp-groups/bp-groups-
|
2011 |
-
msgid "
|
2012 |
msgstr ""
|
2013 |
|
2014 |
-
#: bp-groups/bp-groups-
|
2015 |
-
msgid "
|
2016 |
msgstr ""
|
2017 |
|
2018 |
-
#: bp-groups/bp-groups-
|
2019 |
-
msgid "
|
2020 |
msgstr ""
|
2021 |
|
2022 |
-
#: bp-groups/bp-groups-
|
2023 |
-
msgid "
|
2024 |
msgstr ""
|
2025 |
|
2026 |
-
#: bp-groups/bp-groups-
|
2027 |
-
msgid "You have
|
2028 |
msgstr ""
|
2029 |
|
2030 |
-
#: bp-groups/bp-groups-
|
2031 |
-
msgid "
|
2032 |
msgstr ""
|
2033 |
|
2034 |
-
#: bp-groups/bp-groups-
|
2035 |
-
msgid "
|
2036 |
msgstr ""
|
2037 |
|
2038 |
-
#: bp-groups/bp-groups-
|
2039 |
-
msgid "
|
2040 |
msgstr ""
|
2041 |
|
2042 |
-
#: bp-groups/bp-groups-
|
2043 |
-
msgid "
|
2044 |
msgstr ""
|
2045 |
|
2046 |
-
#: bp-groups/bp-groups-
|
2047 |
-
msgid "
|
2048 |
msgstr ""
|
2049 |
|
2050 |
-
#: bp-groups/bp-groups-
|
2051 |
-
msgid "
|
2052 |
msgstr ""
|
2053 |
|
2054 |
-
#: bp-groups/bp-groups-
|
2055 |
-
msgid "
|
2056 |
msgstr ""
|
2057 |
|
2058 |
-
#: bp-groups/bp-groups-
|
2059 |
-
msgid "
|
2060 |
msgstr ""
|
2061 |
|
2062 |
-
#: bp-groups/bp-groups-
|
2063 |
-
msgid "
|
2064 |
msgstr ""
|
2065 |
|
2066 |
-
#: bp-groups/bp-groups-
|
2067 |
-
|
|
|
|
|
2068 |
msgstr ""
|
2069 |
|
2070 |
-
#: bp-groups/bp-groups-
|
2071 |
-
msgid "
|
2072 |
msgstr ""
|
2073 |
|
2074 |
-
#: bp-groups/bp-groups-
|
2075 |
-
msgid "Group
|
2076 |
msgstr ""
|
2077 |
|
2078 |
-
#: bp-groups/bp-groups-
|
2079 |
-
|
|
|
2080 |
msgstr ""
|
2081 |
|
2082 |
-
#: bp-groups/bp-groups-
|
2083 |
-
msgid "
|
2084 |
msgstr ""
|
2085 |
|
2086 |
-
#: bp-groups/bp-groups-
|
2087 |
-
msgid "
|
2088 |
msgstr ""
|
2089 |
|
2090 |
-
#: bp-groups/bp-groups-
|
2091 |
-
msgid "
|
2092 |
msgstr ""
|
2093 |
|
2094 |
-
#: bp-groups/bp-groups-
|
2095 |
-
msgid "
|
2096 |
msgstr ""
|
2097 |
|
2098 |
-
#: bp-groups/bp-groups-
|
2099 |
-
msgid "
|
2100 |
msgstr ""
|
2101 |
|
2102 |
-
#: bp-groups/bp-groups-
|
2103 |
-
|
|
|
2104 |
msgstr ""
|
2105 |
|
2106 |
-
#: bp-groups/bp-groups-
|
2107 |
-
msgid "
|
2108 |
msgstr ""
|
2109 |
|
2110 |
-
#: bp-groups/bp-groups-
|
2111 |
-
msgid "
|
2112 |
msgstr ""
|
2113 |
|
2114 |
-
#: bp-groups/bp-groups-
|
2115 |
-
msgid "
|
2116 |
msgstr ""
|
2117 |
|
2118 |
-
#: bp-groups/bp-groups-
|
2119 |
-
msgid "
|
2120 |
-
msgstr ""
|
2121 |
-
|
2122 |
-
#: bp-groups/bp-groups-screens.php:688
|
2123 |
-
msgid "User ban removed successfully"
|
2124 |
-
msgstr ""
|
2125 |
-
|
2126 |
-
#: bp-groups/bp-groups-screens.php:704
|
2127 |
-
msgid "There was an error removing that user from the group, please try again"
|
2128 |
-
msgstr ""
|
2129 |
-
|
2130 |
-
#: bp-groups/bp-groups-screens.php:706
|
2131 |
-
msgid "User removed successfully"
|
2132 |
-
msgstr ""
|
2133 |
-
|
2134 |
-
#: bp-groups/bp-groups-screens.php:744
|
2135 |
-
msgid "There was an error accepting the membership request, please try again."
|
2136 |
-
msgstr ""
|
2137 |
-
|
2138 |
-
#: bp-groups/bp-groups-screens.php:746
|
2139 |
-
msgid "Group membership request accepted"
|
2140 |
-
msgstr ""
|
2141 |
-
|
2142 |
-
#: bp-groups/bp-groups-screens.php:755
|
2143 |
-
msgid "There was an error rejecting the membership request, please try again."
|
2144 |
-
msgstr ""
|
2145 |
-
|
2146 |
-
#: bp-groups/bp-groups-screens.php:757
|
2147 |
-
msgid "Group membership request rejected"
|
2148 |
-
msgstr ""
|
2149 |
-
|
2150 |
-
#: bp-groups/bp-groups-screens.php:787
|
2151 |
-
msgid "There was an error deleting the group, please try again."
|
2152 |
-
msgstr ""
|
2153 |
-
|
2154 |
-
#: bp-groups/bp-groups-screens.php:789
|
2155 |
-
msgid "The group was deleted successfully"
|
2156 |
-
msgstr ""
|
2157 |
-
|
2158 |
-
#: bp-groups/bp-groups-screens.php:840
|
2159 |
-
msgid "A member invites you to join a group"
|
2160 |
-
msgstr ""
|
2161 |
-
|
2162 |
-
#: bp-groups/bp-groups-screens.php:846
|
2163 |
-
msgid "Group information is updated"
|
2164 |
-
msgstr ""
|
2165 |
-
|
2166 |
-
#: bp-groups/bp-groups-screens.php:852
|
2167 |
-
msgid "You are promoted to a group administrator or moderator"
|
2168 |
-
msgstr ""
|
2169 |
-
|
2170 |
-
#: bp-groups/bp-groups-screens.php:858
|
2171 |
-
msgid "A member requests to join a private group for which you are an admin"
|
2172 |
-
msgstr ""
|
2173 |
-
|
2174 |
-
#: bp-groups/bp-groups-buddybar.php:16 bp-members/bp-members-buddybar.php:103
|
2175 |
-
msgid "Admin Options"
|
2176 |
-
msgstr ""
|
2177 |
-
|
2178 |
-
#: bp-groups/bp-groups-buddybar.php:21
|
2179 |
-
msgid "Group Settings"
|
2180 |
-
msgstr ""
|
2181 |
-
|
2182 |
-
#: bp-groups/bp-groups-template.php:171
|
2183 |
-
msgctxt "Group pagination previous text"
|
2184 |
-
msgid "←"
|
2185 |
-
msgstr ""
|
2186 |
-
|
2187 |
-
#: bp-groups/bp-groups-template.php:172
|
2188 |
-
msgctxt "Group pagination next text"
|
2189 |
-
msgid "→"
|
2190 |
-
msgstr ""
|
2191 |
-
|
2192 |
-
#: bp-groups/bp-groups-template.php:353
|
2193 |
-
msgid "Public Group"
|
2194 |
-
msgstr ""
|
2195 |
-
|
2196 |
-
#: bp-groups/bp-groups-template.php:355
|
2197 |
-
msgid "Hidden Group"
|
2198 |
-
msgstr ""
|
2199 |
-
|
2200 |
-
#: bp-groups/bp-groups-template.php:357
|
2201 |
-
msgid "Private Group"
|
2202 |
-
msgstr ""
|
2203 |
-
|
2204 |
-
#: bp-groups/bp-groups-template.php:359
|
2205 |
-
msgid "Group"
|
2206 |
-
msgstr ""
|
2207 |
-
|
2208 |
-
#: bp-groups/bp-groups-template.php:389
|
2209 |
-
#: bp-activity/bp-activity-template.php:992
|
2210 |
-
msgid "Group logo of %s"
|
2211 |
-
msgstr ""
|
2212 |
-
|
2213 |
-
#: bp-groups/bp-groups-template.php:431
|
2214 |
-
msgid "not yet active"
|
2215 |
-
msgstr ""
|
2216 |
-
|
2217 |
-
#: bp-groups/bp-groups-template.php:522
|
2218 |
-
msgid "Private"
|
2219 |
-
msgstr ""
|
2220 |
-
|
2221 |
-
#: bp-groups/bp-groups-template.php:572 bp-groups/bp-groups-template.php:595
|
2222 |
-
#: bp-groups/bp-groups-template.php:1034 bp-groups/bp-groups-template.php:1050
|
2223 |
-
#: bp-groups/bp-groups-template.php:1099 bp-groups/bp-groups-template.php:1115
|
2224 |
-
#: bp-groups/bp-groups-template.php:1795 bp-groups/bp-groups-template.php:1804
|
2225 |
-
#: bp-groups/bp-groups-template.php:1813 bp-groups/bp-groups-template.php:2519
|
2226 |
-
#: bp-forums/bp-forums-template.php:488 bp-forums/bp-forums-template.php:605
|
2227 |
-
#: bp-forums/bp-forums-template.php:1192 bp-members/bp-members-template.php:484
|
2228 |
-
#: bp-members/bp-members-template.php:780
|
2229 |
-
#: bp-members/bp-members-template.php:800
|
2230 |
-
#: bp-themes/bp-default/groups/single/admin.php:185
|
2231 |
-
#: bp-themes/bp-default/groups/single/admin.php:210
|
2232 |
-
#: bp-activity/bp-activity-template.php:897
|
2233 |
-
#: bp-activity/bp-activity-template.php:1008
|
2234 |
-
#: bp-activity/bp-activity-template.php:1017
|
2235 |
-
msgid "Profile picture of %s"
|
2236 |
-
msgstr ""
|
2237 |
-
|
2238 |
-
#: bp-groups/bp-groups-template.php:577
|
2239 |
-
msgid "No Admins"
|
2240 |
-
msgstr ""
|
2241 |
-
|
2242 |
-
#: bp-groups/bp-groups-template.php:604
|
2243 |
-
msgid "No Mods"
|
2244 |
-
msgstr ""
|
2245 |
-
|
2246 |
-
#: bp-groups/bp-groups-template.php:686
|
2247 |
-
msgid "Filter Groups"
|
2248 |
-
msgstr ""
|
2249 |
-
|
2250 |
-
#: bp-groups/bp-groups-template.php:736
|
2251 |
-
msgid "Viewing group %1$s to %2$s (of %3$s groups)"
|
2252 |
msgstr ""
|
2253 |
|
2254 |
-
#: bp-groups/bp-groups-template.php:
|
2255 |
-
msgid "
|
2256 |
msgstr ""
|
2257 |
|
2258 |
-
#: bp-groups/bp-groups-
|
2259 |
-
|
2260 |
-
msgid "%s members"
|
2261 |
msgstr ""
|
2262 |
|
2263 |
-
#: bp-groups/bp-groups-
|
2264 |
-
msgid "
|
2265 |
msgstr ""
|
2266 |
|
2267 |
-
#: bp-groups/bp-groups-
|
2268 |
-
|
|
|
2269 |
msgstr ""
|
2270 |
|
2271 |
-
#: bp-groups/bp-groups-
|
2272 |
-
msgid "
|
2273 |
msgstr ""
|
2274 |
|
2275 |
-
#: bp-groups/bp-groups-
|
2276 |
-
|
|
|
2277 |
msgstr ""
|
2278 |
|
2279 |
-
#: bp-groups/bp-groups-
|
2280 |
-
|
2281 |
-
#: bp-themes/bp-default/groups/single/admin.php:215
|
2282 |
-
msgid "Demote to Member"
|
2283 |
msgstr ""
|
2284 |
|
2285 |
-
#: bp-groups/bp-groups-
|
2286 |
-
#: bp-groups/bp-groups-template.php:
|
2287 |
-
msgid "
|
2288 |
msgstr ""
|
2289 |
|
2290 |
-
#: bp-groups/bp-groups-
|
2291 |
-
msgid "
|
2292 |
msgstr ""
|
2293 |
|
2294 |
-
#: bp-groups/bp-groups-
|
2295 |
-
|
2296 |
-
#: bp-themes/bp-default/groups/single/admin.php:270
|
2297 |
-
msgid "Promote to Admin"
|
2298 |
msgstr ""
|
2299 |
|
2300 |
-
#: bp-groups/bp-groups-
|
2301 |
-
|
|
|
2302 |
msgstr ""
|
2303 |
|
2304 |
-
#: bp-groups/bp-groups-
|
2305 |
-
|
2306 |
-
#: bp-themes/bp-default/members/single/messages/messages-loop.php:50
|
2307 |
-
#: bp-themes/bp-default/members/single/messages/single.php:24
|
2308 |
-
#: bp-themes/bp-default/activity/comment.php:43
|
2309 |
-
#: bp-activity/bp-activity-template.php:2004
|
2310 |
-
msgid "Delete"
|
2311 |
msgstr ""
|
2312 |
|
2313 |
-
#: bp-groups/bp-groups-
|
2314 |
-
|
2315 |
-
#: bp-themes/bp-default/groups/single/forum.php:19
|
2316 |
-
msgid "New Topic"
|
2317 |
msgstr ""
|
2318 |
|
2319 |
-
#: bp-groups/bp-groups-
|
2320 |
-
|
2321 |
-
msgid "Leave Group"
|
2322 |
msgstr ""
|
2323 |
|
2324 |
-
#: bp-groups/bp-groups-
|
2325 |
-
|
2326 |
-
msgid "Join Group"
|
2327 |
msgstr ""
|
2328 |
|
2329 |
-
#: bp-groups/bp-groups-
|
2330 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
2331 |
msgstr ""
|
2332 |
|
2333 |
-
#: bp-groups/bp-groups-
|
2334 |
-
msgid "
|
2335 |
msgstr ""
|
2336 |
|
2337 |
-
#: bp-groups/bp-groups-
|
2338 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2339 |
msgstr ""
|
2340 |
|
2341 |
-
#: bp-groups/bp-groups-
|
2342 |
-
msgid "
|
2343 |
msgstr ""
|
2344 |
|
2345 |
-
#: bp-groups/bp-groups-
|
2346 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
2347 |
msgstr ""
|
2348 |
|
2349 |
-
#: bp-groups/bp-groups-
|
2350 |
-
msgid "
|
2351 |
msgstr ""
|
2352 |
|
2353 |
-
#: bp-groups/bp-groups-
|
2354 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
2355 |
msgstr ""
|
2356 |
|
2357 |
-
#: bp-groups/bp-groups-
|
2358 |
-
msgid "
|
2359 |
msgstr ""
|
2360 |
|
2361 |
-
#: bp-groups/bp-groups-
|
2362 |
-
msgid "
|
2363 |
msgstr ""
|
2364 |
|
2365 |
-
#: bp-groups/bp-groups-
|
2366 |
-
msgid "
|
2367 |
msgstr ""
|
2368 |
|
2369 |
-
#: bp-groups/bp-groups-
|
2370 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
2371 |
msgstr ""
|
2372 |
|
2373 |
-
#: bp-groups/bp-groups-
|
2374 |
-
msgid "
|
2375 |
msgstr ""
|
2376 |
|
2377 |
-
#: bp-groups/bp-groups-
|
2378 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2379 |
msgstr ""
|
2380 |
|
2381 |
-
#: bp-groups/bp-groups-
|
2382 |
-
msgid "Group
|
2383 |
msgstr ""
|
2384 |
|
2385 |
-
#: bp-groups/bp-groups-
|
2386 |
-
msgid "
|
2387 |
msgstr ""
|
2388 |
|
2389 |
-
#: bp-groups/bp-groups-
|
2390 |
-
msgid "
|
2391 |
msgstr ""
|
2392 |
|
2393 |
-
#: bp-
|
2394 |
-
|
2395 |
-
#: bp-forums/bp-forums-template.php:1262 bp-themes/bp-default/functions.php:495
|
2396 |
-
msgid "Edit"
|
2397 |
msgstr ""
|
2398 |
|
2399 |
-
#: bp-
|
2400 |
-
|
2401 |
-
#: bp-themes/bp-default/members/single/profile/change-avatar.php:1
|
2402 |
-
msgid "Change Avatar"
|
2403 |
msgstr ""
|
2404 |
|
2405 |
-
#: bp-
|
2406 |
-
msgid "
|
2407 |
msgstr ""
|
2408 |
|
2409 |
-
#: bp-
|
2410 |
-
msgid "There was
|
2411 |
msgstr ""
|
2412 |
|
2413 |
-
#: bp-
|
2414 |
-
msgid "
|
2415 |
msgstr ""
|
2416 |
|
2417 |
-
#: bp-
|
2418 |
-
msgid "
|
2419 |
msgstr ""
|
2420 |
|
2421 |
-
#: bp-
|
2422 |
-
msgid "
|
2423 |
msgstr ""
|
2424 |
|
2425 |
-
#: bp-
|
2426 |
-
msgid "
|
2427 |
msgstr ""
|
2428 |
|
2429 |
-
#: bp-
|
2430 |
-
msgid "
|
2431 |
msgstr ""
|
2432 |
|
2433 |
-
#: bp-
|
2434 |
-
msgid "
|
2435 |
msgstr ""
|
2436 |
|
2437 |
-
#: bp-
|
2438 |
-
|
2439 |
-
#: bp-themes/bp-default/members/single/settings/general.php:69
|
2440 |
-
#: bp-themes/bp-default/members/single/profile/edit.php:126
|
2441 |
-
#: bp-themes/bp-default/groups/single/forum/edit.php:60
|
2442 |
-
#: bp-themes/bp-default/groups/single/forum/edit.php:76
|
2443 |
-
#: bp-themes/bp-default/groups/single/admin.php:32
|
2444 |
-
#: bp-themes/bp-default/groups/single/admin.php:117
|
2445 |
-
msgid "Save Changes"
|
2446 |
msgstr ""
|
2447 |
|
2448 |
-
#: bp-
|
2449 |
-
|
2450 |
-
msgid "Fields marked * are required"
|
2451 |
msgstr ""
|
2452 |
|
2453 |
-
#: bp-
|
2454 |
-
msgid "
|
2455 |
msgstr ""
|
2456 |
|
2457 |
-
#: bp-
|
2458 |
-
msgid "
|
2459 |
msgstr ""
|
2460 |
|
2461 |
-
#: bp-
|
2462 |
-
|
2463 |
-
msgid "or"
|
2464 |
msgstr ""
|
2465 |
|
2466 |
-
#: bp-
|
2467 |
-
|
2468 |
-
#: bp-themes/bp-default/forums/index.php:134
|
2469 |
-
msgid "Cancel"
|
2470 |
msgstr ""
|
2471 |
|
2472 |
-
#: bp-
|
2473 |
-
msgid "
|
2474 |
msgstr ""
|
2475 |
|
2476 |
-
#: bp-
|
2477 |
-
|
2478 |
-
#: bp-themes/bp-default/members/single/friends.php:20
|
2479 |
-
#: bp-themes/bp-default/members/single/groups.php:20
|
2480 |
-
#: bp-themes/bp-default/members/single/forums.php:18
|
2481 |
-
#: bp-themes/bp-default/members/single/blogs.php:19
|
2482 |
-
#: bp-themes/bp-default/blogs/index.php:55
|
2483 |
-
#: bp-themes/bp-default/forums/index.php:60
|
2484 |
-
#: bp-themes/bp-default/groups/index.php:57
|
2485 |
-
#: bp-themes/bp-default/groups/single/forum.php:36
|
2486 |
-
msgid "Order By:"
|
2487 |
msgstr ""
|
2488 |
|
2489 |
-
#: bp-
|
2490 |
-
msgid "
|
2491 |
msgstr ""
|
2492 |
|
2493 |
-
#: bp-
|
2494 |
-
msgid "
|
2495 |
msgstr ""
|
2496 |
|
2497 |
-
#: bp-
|
2498 |
-
msgid "
|
2499 |
msgstr ""
|
2500 |
|
2501 |
-
#: bp-
|
2502 |
-
|
2503 |
-
msgid "Option"
|
2504 |
msgstr ""
|
2505 |
|
2506 |
-
#: bp-
|
2507 |
-
|
2508 |
-
msgid "Default Value"
|
2509 |
msgstr ""
|
2510 |
|
2511 |
-
#: bp-
|
2512 |
-
msgid "
|
2513 |
msgstr ""
|
2514 |
|
2515 |
-
#: bp-
|
2516 |
-
msgid "
|
2517 |
msgstr ""
|
2518 |
|
2519 |
-
#: bp-
|
2520 |
-
msgid "
|
2521 |
msgstr ""
|
2522 |
|
2523 |
-
#: bp-
|
2524 |
-
msgid "
|
2525 |
msgstr ""
|
2526 |
|
2527 |
-
#: bp-
|
2528 |
-
msgid "
|
2529 |
msgstr ""
|
2530 |
|
2531 |
-
#: bp-xprofile/bp-xprofile-
|
2532 |
-
msgid "
|
2533 |
msgstr ""
|
2534 |
|
2535 |
-
#: bp-xprofile/bp-xprofile-
|
2536 |
-
msgid "
|
2537 |
msgstr ""
|
2538 |
|
2539 |
-
#: bp-
|
2540 |
-
msgid "
|
2541 |
msgstr ""
|
2542 |
|
2543 |
-
#: bp-
|
2544 |
-
msgid "
|
2545 |
msgstr ""
|
2546 |
|
2547 |
-
#: bp-
|
2548 |
-
msgid "
|
2549 |
msgstr ""
|
2550 |
|
2551 |
-
#: bp-
|
2552 |
-
msgid "
|
2553 |
msgstr ""
|
2554 |
|
2555 |
-
#: bp-
|
2556 |
-
msgid "
|
2557 |
msgstr ""
|
2558 |
|
2559 |
-
#: bp-
|
2560 |
-
msgid "
|
2561 |
msgstr ""
|
2562 |
|
2563 |
-
#: bp-
|
2564 |
-
msgid "
|
2565 |
msgstr ""
|
2566 |
|
2567 |
-
#: bp-
|
2568 |
-
msgid "
|
2569 |
msgstr ""
|
2570 |
|
2571 |
-
#: bp-
|
2572 |
-
msgid "
|
2573 |
msgstr ""
|
2574 |
|
2575 |
-
#: bp-
|
2576 |
-
msgid "
|
2577 |
msgstr ""
|
2578 |
|
2579 |
-
#: bp-
|
2580 |
-
msgid "
|
2581 |
msgstr ""
|
2582 |
|
2583 |
-
#: bp-
|
2584 |
-
|
2585 |
-
msgid "Select box field types require at least one option. Please add options below."
|
2586 |
msgstr ""
|
2587 |
|
2588 |
-
#: bp-
|
2589 |
-
msgid "
|
2590 |
msgstr ""
|
2591 |
|
2592 |
-
#: bp-
|
2593 |
-
msgid "
|
2594 |
msgstr ""
|
2595 |
|
2596 |
-
#: bp-
|
2597 |
-
msgid "
|
2598 |
msgstr ""
|
2599 |
|
2600 |
-
#: bp-
|
2601 |
-
msgid "
|
2602 |
msgstr ""
|
2603 |
|
2604 |
-
#: bp-
|
2605 |
-
msgid "
|
2606 |
msgstr ""
|
2607 |
|
2608 |
-
#: bp-
|
2609 |
-
msgid "
|
2610 |
msgstr ""
|
2611 |
|
2612 |
-
#: bp-
|
2613 |
-
msgid "
|
2614 |
msgstr ""
|
2615 |
|
2616 |
-
#: bp-
|
2617 |
-
msgid "
|
2618 |
msgstr ""
|
2619 |
|
2620 |
-
#: bp-
|
2621 |
-
msgid "
|
2622 |
msgstr ""
|
2623 |
|
2624 |
-
#: bp-
|
2625 |
-
msgid "
|
2626 |
msgstr ""
|
2627 |
|
2628 |
-
#: bp-
|
2629 |
-
|
|
|
2630 |
msgstr ""
|
2631 |
|
2632 |
-
#: bp-
|
2633 |
-
|
|
|
2634 |
msgstr ""
|
2635 |
|
2636 |
-
#: bp-
|
2637 |
-
msgid "
|
2638 |
msgstr ""
|
2639 |
|
2640 |
-
#: bp-
|
2641 |
-
msgid "
|
2642 |
msgstr ""
|
2643 |
|
2644 |
-
#: bp-
|
2645 |
-
msgid "
|
2646 |
msgstr ""
|
2647 |
|
2648 |
-
#: bp-
|
2649 |
-
msgid "
|
2650 |
msgstr ""
|
2651 |
|
2652 |
-
#: bp-
|
2653 |
-
msgid "
|
2654 |
msgstr ""
|
2655 |
|
2656 |
-
#: bp-
|
2657 |
-
msgid "
|
2658 |
msgstr ""
|
2659 |
|
2660 |
-
#: bp-
|
2661 |
-
msgid "
|
2662 |
msgstr ""
|
2663 |
|
2664 |
-
#: bp-
|
2665 |
-
msgid "
|
2666 |
msgstr ""
|
2667 |
|
2668 |
-
#: bp-
|
2669 |
-
msgid "
|
2670 |
msgstr ""
|
2671 |
|
2672 |
-
#: bp-
|
2673 |
-
|
2674 |
-
#: bp-themes/bp-default/members/single/profile/edit.php:58
|
2675 |
-
#: bp-themes/bp-default/members/single/profile/edit.php:73
|
2676 |
-
msgid "Clear"
|
2677 |
msgstr ""
|
2678 |
|
2679 |
-
|
|
|
|
|
2680 |
|
2681 |
-
#: bp-
|
2682 |
-
#: bp-themes/bp-default/
|
2683 |
-
msgid "
|
2684 |
msgstr ""
|
2685 |
|
2686 |
-
#: bp-
|
2687 |
-
msgid "
|
2688 |
msgstr ""
|
2689 |
|
2690 |
-
#: bp-
|
2691 |
-
msgid "
|
2692 |
msgstr ""
|
2693 |
|
2694 |
-
#: bp-
|
2695 |
-
|
|
|
|
|
2696 |
msgstr ""
|
2697 |
|
2698 |
-
#: bp-
|
2699 |
-
|
|
|
2700 |
msgstr ""
|
2701 |
|
2702 |
-
#: bp-
|
2703 |
-
msgid "
|
2704 |
msgstr ""
|
2705 |
|
2706 |
-
#: bp-
|
2707 |
-
|
|
|
|
|
2708 |
msgstr ""
|
2709 |
|
2710 |
-
#: bp-
|
2711 |
-
msgid "
|
2712 |
msgstr ""
|
2713 |
|
2714 |
-
#: bp-
|
2715 |
-
|
|
|
|
|
2716 |
msgstr ""
|
2717 |
|
2718 |
-
#: bp-
|
2719 |
-
|
|
|
2720 |
msgstr ""
|
2721 |
|
2722 |
-
#: bp-
|
2723 |
-
|
|
|
2724 |
msgstr ""
|
2725 |
|
2726 |
-
#: bp-
|
2727 |
-
msgid "
|
2728 |
msgstr ""
|
2729 |
|
2730 |
-
#: bp-
|
2731 |
-
msgid "
|
2732 |
msgstr ""
|
2733 |
|
2734 |
-
#: bp-
|
2735 |
-
msgid "
|
2736 |
msgstr ""
|
2737 |
|
2738 |
-
#: bp-
|
2739 |
-
msgid "
|
2740 |
msgstr ""
|
2741 |
|
2742 |
-
#: bp-
|
2743 |
-
msgid "
|
2744 |
msgstr ""
|
2745 |
|
2746 |
-
#: bp-
|
2747 |
-
|
2748 |
-
#: bp-members/bp-members-adminbar.php:161
|
2749 |
-
msgid "Edit Profile"
|
2750 |
msgstr ""
|
2751 |
|
2752 |
-
#: bp-
|
2753 |
-
msgid "
|
2754 |
msgstr ""
|
2755 |
|
2756 |
-
#: bp-
|
2757 |
-
msgid "
|
2758 |
msgstr ""
|
2759 |
|
2760 |
-
#: bp-
|
2761 |
-
msgid "
|
2762 |
msgstr ""
|
2763 |
|
2764 |
-
#: bp-
|
2765 |
-
msgid "
|
2766 |
msgstr ""
|
2767 |
|
2768 |
-
#: bp-
|
2769 |
-
msgid "
|
2770 |
msgstr ""
|
2771 |
|
2772 |
-
#: bp-
|
2773 |
-
msgid "
|
2774 |
msgstr ""
|
2775 |
|
2776 |
-
#: bp-
|
2777 |
-
msgid "
|
2778 |
msgstr ""
|
2779 |
|
2780 |
-
#: bp-
|
2781 |
-
msgid "
|
2782 |
msgstr ""
|
2783 |
|
2784 |
-
#: bp-
|
2785 |
-
|
2786 |
-
msgid "Features"
|
2787 |
msgstr ""
|
2788 |
|
2789 |
-
#: bp-
|
2790 |
-
msgid "
|
2791 |
msgstr ""
|
2792 |
|
2793 |
-
#: bp-
|
2794 |
-
msgid "
|
2795 |
msgstr ""
|
2796 |
|
2797 |
-
#: bp-
|
2798 |
-
|
2799 |
-
msgid "Activity Stream Integration"
|
2800 |
msgstr ""
|
2801 |
|
2802 |
-
#: bp-
|
2803 |
-
|
2804 |
-
msgid "@ Mention Integration"
|
2805 |
msgstr ""
|
2806 |
|
2807 |
-
#: bp-
|
2808 |
-
msgid "
|
2809 |
msgstr ""
|
2810 |
|
2811 |
-
#: bp-
|
2812 |
-
msgid "
|
2813 |
msgstr ""
|
2814 |
|
2815 |
-
#: bp-
|
2816 |
-
msgid "
|
2817 |
msgstr ""
|
2818 |
|
2819 |
-
#: bp-
|
2820 |
-
msgid "
|
2821 |
msgstr ""
|
2822 |
|
2823 |
-
#: bp-
|
2824 |
-
msgid "
|
2825 |
msgstr ""
|
2826 |
|
2827 |
-
#: bp-
|
2828 |
-
msgid "
|
2829 |
msgstr ""
|
2830 |
|
2831 |
-
#: bp-
|
2832 |
-
msgid "
|
2833 |
msgstr ""
|
2834 |
|
2835 |
-
#: bp-
|
2836 |
-
|
|
|
|
|
2837 |
msgstr ""
|
2838 |
|
2839 |
-
#: bp-
|
2840 |
-
|
|
|
2841 |
msgstr ""
|
2842 |
|
2843 |
-
#: bp-
|
2844 |
-
msgid "
|
2845 |
msgstr ""
|
2846 |
|
2847 |
-
#: bp-
|
2848 |
-
|
|
|
2849 |
msgstr ""
|
2850 |
|
2851 |
-
#: bp-
|
2852 |
-
msgid "
|
2853 |
msgstr ""
|
2854 |
|
2855 |
-
#: bp-
|
2856 |
-
|
|
|
|
|
|
|
2857 |
msgstr ""
|
2858 |
|
2859 |
-
#: bp-
|
2860 |
-
msgid "
|
2861 |
msgstr ""
|
2862 |
|
2863 |
-
#: bp-
|
2864 |
-
msgid "<
|
2865 |
msgstr ""
|
2866 |
|
2867 |
-
#: bp-
|
2868 |
-
|
|
|
|
|
2869 |
msgstr ""
|
2870 |
|
2871 |
-
#: bp-
|
2872 |
-
msgid ""
|
2873 |
-
"You've decided to set up a new installation of bbPress for forum management in BuddyPress. This is very simple and is usually just a one click\n"
|
2874 |
-
"\t\t\t\tprocess. When you're ready, hit the link below."
|
2875 |
msgstr ""
|
2876 |
|
2877 |
-
#: bp-
|
2878 |
-
msgid "
|
2879 |
msgstr ""
|
2880 |
|
2881 |
-
#: bp-
|
2882 |
-
msgid "
|
2883 |
msgstr ""
|
2884 |
|
2885 |
-
#: bp-
|
2886 |
-
msgid "
|
2887 |
msgstr ""
|
2888 |
|
2889 |
-
#: bp-
|
2890 |
-
msgid "
|
2891 |
msgstr ""
|
2892 |
|
2893 |
-
#: bp-
|
2894 |
-
msgid "
|
2895 |
msgstr ""
|
2896 |
|
2897 |
-
#: bp-
|
2898 |
-
msgid "
|
2899 |
msgstr ""
|
2900 |
|
2901 |
-
#: bp-
|
2902 |
-
msgid "
|
2903 |
msgstr ""
|
2904 |
|
2905 |
-
#: bp-
|
2906 |
-
msgid "
|
2907 |
msgstr ""
|
2908 |
|
2909 |
-
#: bp-
|
2910 |
-
|
2911 |
-
msgid "←"
|
2912 |
msgstr ""
|
2913 |
|
2914 |
-
#: bp-
|
2915 |
-
|
2916 |
-
msgid "→"
|
2917 |
msgstr ""
|
2918 |
|
2919 |
-
#: bp-
|
2920 |
-
|
2921 |
-
msgid "Deleted User"
|
2922 |
msgstr ""
|
2923 |
|
2924 |
-
#: bp-
|
2925 |
-
msgid "
|
2926 |
msgstr ""
|
2927 |
|
2928 |
-
#: bp-
|
2929 |
-
msgid "
|
2930 |
msgstr ""
|
2931 |
|
2932 |
-
#: bp-
|
2933 |
-
msgid "
|
2934 |
msgstr ""
|
2935 |
|
2936 |
-
#: bp-
|
2937 |
-
msgid "
|
2938 |
msgstr ""
|
2939 |
|
2940 |
-
#: bp-
|
2941 |
-
msgid "
|
2942 |
msgstr ""
|
2943 |
|
2944 |
-
#: bp-
|
2945 |
-
msgid "
|
2946 |
msgstr ""
|
2947 |
|
2948 |
-
#: bp-
|
2949 |
-
msgid "
|
2950 |
msgstr ""
|
2951 |
|
2952 |
-
#: bp-
|
2953 |
-
msgid "
|
2954 |
msgstr ""
|
2955 |
|
2956 |
-
#: bp-
|
2957 |
-
msgid "
|
2958 |
msgstr ""
|
2959 |
|
2960 |
-
#: bp-
|
2961 |
-
|
2962 |
-
msgid "←"
|
2963 |
msgstr ""
|
2964 |
|
2965 |
-
#: bp-
|
2966 |
-
|
2967 |
-
msgid "→"
|
2968 |
msgstr ""
|
2969 |
|
2970 |
-
#: bp-
|
2971 |
-
msgid "
|
2972 |
msgstr ""
|
2973 |
|
2974 |
-
#: bp-
|
2975 |
-
msgid "
|
2976 |
msgstr ""
|
2977 |
|
2978 |
-
#: bp-
|
2979 |
-
msgid "
|
2980 |
msgstr ""
|
2981 |
|
2982 |
-
#: bp-
|
2983 |
-
|
|
|
2984 |
msgstr ""
|
2985 |
|
2986 |
-
#: bp-
|
2987 |
-
|
|
|
2988 |
msgstr ""
|
2989 |
|
2990 |
-
#: bp-
|
2991 |
-
msgid "
|
2992 |
msgstr ""
|
2993 |
|
2994 |
-
#: bp-
|
2995 |
-
|
2996 |
-
#: bp-messages/bp-messages-functions.php:237
|
2997 |
-
msgid "Inbox"
|
2998 |
msgstr ""
|
2999 |
|
3000 |
-
#: bp-
|
3001 |
-
|
3002 |
-
msgid "Sent"
|
3003 |
msgstr ""
|
3004 |
|
3005 |
-
#: bp-
|
3006 |
-
|
3007 |
-
msgid "Compose"
|
3008 |
msgstr ""
|
3009 |
|
3010 |
-
#: bp-
|
3011 |
-
msgid "
|
3012 |
msgstr ""
|
3013 |
|
3014 |
-
#: bp-
|
3015 |
-
|
|
|
3016 |
msgstr ""
|
3017 |
|
3018 |
-
#: bp-
|
3019 |
-
msgid "
|
3020 |
msgstr ""
|
3021 |
|
3022 |
-
#: bp-
|
3023 |
-
|
3024 |
-
msgid "Messages"
|
3025 |
msgstr ""
|
3026 |
|
3027 |
-
#: bp-
|
3028 |
-
msgid "
|
3029 |
msgstr ""
|
3030 |
|
3031 |
-
#: bp-messages/bp-messages-
|
3032 |
-
msgid "
|
3033 |
msgstr ""
|
3034 |
|
3035 |
-
#: bp-messages/bp-messages-
|
3036 |
-
|
3037 |
-
msgid "←"
|
3038 |
msgstr ""
|
3039 |
|
3040 |
-
#: bp-messages/bp-messages-
|
3041 |
-
|
3042 |
-
msgid "→"
|
3043 |
msgstr ""
|
3044 |
|
3045 |
-
#: bp-messages/bp-messages-
|
3046 |
-
msgid "
|
3047 |
msgstr ""
|
3048 |
|
3049 |
-
#: bp-messages/bp-messages-
|
3050 |
-
msgid "
|
3051 |
msgstr ""
|
3052 |
|
3053 |
-
#: bp-messages/bp-messages-
|
3054 |
-
msgid "
|
3055 |
msgstr ""
|
3056 |
|
3057 |
-
#: bp-messages/bp-messages-
|
3058 |
-
msgid "
|
3059 |
msgstr ""
|
3060 |
|
3061 |
-
#: bp-messages/bp-messages-
|
3062 |
-
|
|
|
3063 |
msgstr ""
|
3064 |
|
3065 |
-
#: bp-messages/bp-messages-
|
3066 |
-
msgid "
|
3067 |
msgstr ""
|
3068 |
|
3069 |
-
#: bp-messages/bp-messages-
|
3070 |
-
msgid "
|
3071 |
msgstr ""
|
3072 |
|
3073 |
-
#: bp-messages/bp-messages-
|
3074 |
-
msgid "
|
3075 |
msgstr ""
|
3076 |
|
3077 |
-
#: bp-messages/bp-messages-
|
3078 |
-
|
|
|
|
|
3079 |
msgstr ""
|
3080 |
|
3081 |
-
#: bp-messages/bp-messages-
|
3082 |
-
msgid "
|
3083 |
msgstr ""
|
3084 |
|
3085 |
-
#: bp-messages/bp-messages-
|
3086 |
-
|
3087 |
-
msgid "Close"
|
3088 |
msgstr ""
|
3089 |
|
3090 |
-
#: bp-messages/bp-messages-
|
3091 |
-
msgid "
|
3092 |
msgstr ""
|
3093 |
|
3094 |
-
#: bp-messages/bp-messages-
|
3095 |
-
msgid "
|
3096 |
msgstr ""
|
3097 |
|
3098 |
-
#: bp-messages/bp-messages-
|
3099 |
-
|
|
|
3100 |
msgstr ""
|
3101 |
|
3102 |
-
#: bp-messages/bp-messages-
|
3103 |
-
#: bp-
|
3104 |
-
msgid "
|
3105 |
msgstr ""
|
3106 |
|
3107 |
-
#: bp-messages/bp-messages-
|
3108 |
-
msgid "
|
3109 |
msgstr ""
|
3110 |
|
3111 |
-
#: bp-messages/bp-messages-
|
3112 |
-
msgid "
|
3113 |
msgstr ""
|
3114 |
|
3115 |
-
#: bp-messages/bp-messages-
|
3116 |
-
msgid "
|
3117 |
msgstr ""
|
3118 |
|
3119 |
-
#: bp-messages/bp-messages-
|
3120 |
-
|
|
|
3121 |
msgstr ""
|
3122 |
|
3123 |
-
#: bp-messages/bp-messages-
|
3124 |
-
msgid "
|
3125 |
msgstr ""
|
3126 |
|
3127 |
-
#: bp-messages/bp-messages-
|
3128 |
-
msgid "
|
3129 |
msgstr ""
|
3130 |
|
3131 |
-
#: bp-messages/bp-messages-
|
3132 |
-
|
3133 |
-
msgid "Messages deleted."
|
3134 |
msgstr ""
|
3135 |
|
3136 |
-
#: bp-messages/bp-messages-
|
3137 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3138 |
msgstr ""
|
3139 |
|
3140 |
#: bp-messages/bp-messages-screens.php:54
|
@@ -3186,554 +3260,592 @@ msgstr ""
|
|
3186 |
msgid "A new site notice is posted"
|
3187 |
msgstr ""
|
3188 |
|
3189 |
-
#: bp-messages/bp-messages-
|
3190 |
-
|
|
|
3191 |
msgstr ""
|
3192 |
|
3193 |
-
#: bp-messages/bp-messages-
|
3194 |
-
|
3195 |
-
|
3196 |
-
"\n"
|
3197 |
-
"Subject: %s\n"
|
3198 |
-
"\n"
|
3199 |
-
"\"%s\"\n"
|
3200 |
-
"\n"
|
3201 |
-
"To view and read your messages please log in and visit: %s\n"
|
3202 |
-
"\n"
|
3203 |
-
"---------------------\n"
|
3204 |
msgstr ""
|
3205 |
|
3206 |
-
#: bp-messages/bp-messages-
|
3207 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3208 |
msgstr ""
|
3209 |
|
3210 |
-
#: bp-messages/bp-messages-
|
3211 |
-
msgid "
|
3212 |
msgstr ""
|
3213 |
|
3214 |
-
#: bp-messages/bp-messages-
|
3215 |
-
msgid "
|
3216 |
msgstr ""
|
3217 |
|
3218 |
-
#: bp-messages/bp-messages-
|
3219 |
-
|
|
|
3220 |
msgstr ""
|
3221 |
|
3222 |
-
#: bp-
|
3223 |
-
msgid "
|
3224 |
msgstr ""
|
3225 |
|
3226 |
-
#: bp-
|
3227 |
-
msgid "
|
3228 |
msgstr ""
|
3229 |
|
3230 |
-
#: bp-
|
3231 |
-
|
3232 |
-
msgid "Mark as Spammer"
|
3233 |
msgstr ""
|
3234 |
|
3235 |
-
#: bp-
|
3236 |
-
|
|
|
3237 |
msgstr ""
|
3238 |
|
3239 |
-
#: bp-
|
3240 |
-
#: bp-
|
3241 |
-
|
|
|
3242 |
msgstr ""
|
3243 |
|
3244 |
-
#: bp-
|
3245 |
-
msgid "
|
3246 |
msgstr ""
|
3247 |
|
3248 |
-
#: bp-
|
3249 |
-
msgid "
|
3250 |
msgstr ""
|
3251 |
|
3252 |
-
#: bp-
|
3253 |
-
msgid "
|
3254 |
msgstr ""
|
3255 |
|
3256 |
-
#: bp-
|
3257 |
-
msgid "
|
3258 |
msgstr ""
|
3259 |
|
3260 |
-
#: bp-
|
3261 |
-
msgid "
|
3262 |
msgstr ""
|
3263 |
|
3264 |
-
#: bp-
|
3265 |
-
msgid "
|
3266 |
msgstr ""
|
3267 |
|
3268 |
-
#: bp-
|
3269 |
-
msgid "
|
3270 |
msgstr ""
|
3271 |
|
3272 |
-
#: bp-
|
3273 |
-
|
|
|
3274 |
msgstr ""
|
3275 |
|
3276 |
-
#: bp-
|
3277 |
-
|
|
|
|
|
3278 |
msgstr ""
|
3279 |
|
3280 |
-
#: bp-
|
3281 |
-
|
|
|
|
|
3282 |
msgstr ""
|
3283 |
|
3284 |
-
#: bp-
|
3285 |
-
|
|
|
|
|
3286 |
msgstr ""
|
3287 |
|
3288 |
-
#: bp-
|
3289 |
-
msgid "
|
3290 |
msgstr ""
|
3291 |
|
3292 |
-
#: bp-
|
3293 |
-
msgid "
|
3294 |
msgstr ""
|
3295 |
|
3296 |
-
#: bp-
|
3297 |
-
msgid "
|
3298 |
msgstr ""
|
3299 |
|
3300 |
-
#: bp-
|
3301 |
-
msgid "
|
3302 |
msgstr ""
|
3303 |
|
3304 |
-
#: bp-
|
3305 |
-
msgid "
|
3306 |
msgstr ""
|
3307 |
|
3308 |
-
#: bp-
|
3309 |
-
msgid "
|
3310 |
msgstr ""
|
3311 |
|
3312 |
-
#: bp-
|
3313 |
-
msgid "
|
3314 |
msgstr ""
|
3315 |
|
3316 |
-
#: bp-
|
3317 |
-
msgid "
|
3318 |
msgstr ""
|
3319 |
|
3320 |
-
#: bp-
|
3321 |
-
msgid "
|
3322 |
msgstr ""
|
3323 |
|
3324 |
-
#: bp-
|
3325 |
-
msgid "
|
3326 |
msgstr ""
|
3327 |
|
3328 |
-
#: bp-
|
3329 |
-
msgid "
|
3330 |
msgstr ""
|
3331 |
|
3332 |
-
#: bp-
|
3333 |
-
msgid "
|
3334 |
msgstr ""
|
3335 |
|
3336 |
-
#: bp-
|
3337 |
-
msgid "
|
3338 |
msgstr ""
|
3339 |
|
3340 |
-
#: bp-
|
3341 |
-
msgid "Sorry,
|
3342 |
msgstr ""
|
3343 |
|
3344 |
-
|
3345 |
-
|
3346 |
-
msgstr ""
|
3347 |
|
3348 |
-
#: bp-
|
3349 |
-
msgid "
|
3350 |
msgstr ""
|
3351 |
|
3352 |
-
#: bp-
|
3353 |
-
|
|
|
3354 |
msgstr ""
|
3355 |
|
3356 |
-
#: bp-
|
3357 |
-
msgid "
|
3358 |
msgstr ""
|
3359 |
|
3360 |
-
#: bp-
|
3361 |
-
msgid "
|
3362 |
msgstr ""
|
3363 |
|
3364 |
-
#: bp-
|
3365 |
-
msgid "
|
3366 |
msgstr ""
|
3367 |
|
3368 |
-
#: bp-
|
3369 |
-
msgid "
|
3370 |
msgstr ""
|
3371 |
|
3372 |
-
#: bp-
|
3373 |
-
msgid "
|
3374 |
msgstr ""
|
3375 |
|
3376 |
-
#: bp-
|
3377 |
-
|
3378 |
-
msgid "←"
|
3379 |
msgstr ""
|
3380 |
|
3381 |
-
#: bp-
|
3382 |
-
|
3383 |
-
msgid "→"
|
3384 |
msgstr ""
|
3385 |
|
3386 |
-
#: bp-
|
3387 |
-
|
|
|
3388 |
msgstr ""
|
3389 |
|
3390 |
-
#: bp-
|
3391 |
-
msgid "
|
3392 |
msgstr ""
|
3393 |
|
3394 |
-
#: bp-
|
3395 |
-
|
|
|
3396 |
msgstr ""
|
3397 |
|
3398 |
-
#: bp-
|
3399 |
-
msgid "
|
3400 |
msgstr ""
|
3401 |
|
3402 |
-
#: bp-
|
3403 |
-
|
|
|
3404 |
msgstr ""
|
3405 |
|
3406 |
-
#: bp-
|
3407 |
-
|
3408 |
-
msgid "- "%s ""
|
3409 |
msgstr ""
|
3410 |
|
3411 |
-
#: bp-
|
3412 |
-
msgid "
|
3413 |
msgstr ""
|
3414 |
|
3415 |
-
#: bp-
|
3416 |
-
msgid "
|
3417 |
msgstr ""
|
3418 |
|
3419 |
-
#: bp-
|
3420 |
-
msgid "
|
3421 |
msgstr ""
|
3422 |
|
3423 |
-
#: bp-themes/bp-default/index.php:
|
3424 |
-
#: bp-themes/bp-default/
|
3425 |
-
|
3426 |
-
msgctxt "Post written by..."
|
3427 |
-
msgid "by %s"
|
3428 |
msgstr ""
|
3429 |
|
3430 |
-
#: bp-themes/bp-default/index.php:
|
3431 |
-
|
3432 |
-
msgid "
|
3433 |
msgstr ""
|
3434 |
|
3435 |
-
#: bp-themes/bp-default/index.php:
|
3436 |
-
#: bp-themes/bp-default/
|
3437 |
-
|
|
|
3438 |
msgstr ""
|
3439 |
|
3440 |
-
#: bp-themes/bp-default/index.php:
|
3441 |
-
#: bp-themes/bp-default/
|
3442 |
-
|
|
|
3443 |
msgstr ""
|
3444 |
|
3445 |
-
#: bp-themes/bp-default/index.php:
|
3446 |
-
#: bp-themes/bp-default/
|
3447 |
-
|
|
|
3448 |
msgstr ""
|
3449 |
|
3450 |
-
#: bp-themes/bp-default/index.php:
|
3451 |
-
#: bp-themes/bp-default/
|
3452 |
-
|
3453 |
-
msgid "Pages: "
|
3454 |
msgstr ""
|
3455 |
|
3456 |
-
#: bp-themes/bp-default/index.php:
|
3457 |
-
#: bp-themes/bp-default/
|
3458 |
-
|
|
|
3459 |
msgstr ""
|
3460 |
|
3461 |
-
#: bp-themes/bp-default/index.php:
|
3462 |
-
#: bp-themes/bp-default/
|
3463 |
-
|
|
|
3464 |
msgstr ""
|
3465 |
|
3466 |
-
#: bp-themes/bp-default/index.php:
|
3467 |
-
#: bp-themes/bp-default/
|
3468 |
-
msgid "
|
3469 |
msgstr ""
|
3470 |
|
3471 |
-
#: bp-themes/bp-default/index.php:
|
3472 |
-
#: bp-themes/bp-default/
|
3473 |
-
|
|
|
3474 |
msgstr ""
|
3475 |
|
3476 |
-
#: bp-themes/bp-default/index.php:
|
3477 |
-
msgid "
|
3478 |
msgstr ""
|
3479 |
|
3480 |
-
#: bp-themes/bp-default/
|
3481 |
-
msgid "
|
3482 |
msgstr ""
|
3483 |
|
3484 |
-
#: bp-themes/bp-default/
|
3485 |
-
msgid "
|
3486 |
msgstr ""
|
3487 |
|
3488 |
-
#: bp-themes/bp-default/
|
3489 |
-
msgid "
|
3490 |
msgstr ""
|
3491 |
|
3492 |
-
#: bp-themes/bp-default/
|
3493 |
-
msgid "
|
3494 |
msgstr ""
|
3495 |
|
3496 |
-
#: bp-themes/bp-default/
|
3497 |
-
msgid "
|
3498 |
msgstr ""
|
3499 |
|
3500 |
-
#: bp-themes/bp-default/
|
3501 |
-
|
|
|
|
|
|
|
3502 |
msgstr ""
|
3503 |
|
3504 |
-
#: bp-themes/bp-default/
|
3505 |
-
|
|
|
3506 |
msgstr ""
|
3507 |
|
3508 |
-
#: bp-themes/bp-default/
|
3509 |
-
|
|
|
3510 |
msgstr ""
|
3511 |
|
3512 |
-
#: bp-themes/bp-default/
|
3513 |
-
|
|
|
3514 |
msgstr ""
|
3515 |
|
3516 |
-
#: bp-themes/bp-default/
|
3517 |
-
#: bp-themes/bp-default/
|
3518 |
-
|
|
|
3519 |
msgstr ""
|
3520 |
|
3521 |
-
#: bp-themes/bp-default/
|
3522 |
-
#: bp-themes/bp-default/
|
3523 |
-
|
3524 |
-
#: bp-themes/bp-default/registration/register.php:49
|
3525 |
-
#: bp-themes/bp-default/registration/register.php:76
|
3526 |
-
#: bp-themes/bp-default/registration/register.php:84
|
3527 |
-
#: bp-themes/bp-default/registration/register.php:92
|
3528 |
-
#: bp-themes/bp-default/registration/register.php:102
|
3529 |
-
#: bp-themes/bp-default/registration/register.php:113
|
3530 |
-
#: bp-themes/bp-default/registration/register.php:128
|
3531 |
-
#: bp-themes/bp-default/registration/register.php:139
|
3532 |
-
#: bp-themes/bp-default/registration/register.php:189
|
3533 |
-
#: bp-themes/bp-default/registration/register.php:198
|
3534 |
-
#: bp-themes/bp-default/members/single/profile/edit.php:26
|
3535 |
-
#: bp-themes/bp-default/members/single/profile/edit.php:33
|
3536 |
-
#: bp-themes/bp-default/members/single/profile/edit.php:40
|
3537 |
-
#: bp-themes/bp-default/members/single/profile/edit.php:49
|
3538 |
-
#: bp-themes/bp-default/members/single/profile/edit.php:67
|
3539 |
-
#: bp-themes/bp-default/members/single/profile/edit.php:83
|
3540 |
-
#: bp-themes/bp-default/members/single/profile/edit.php:93
|
3541 |
-
msgid "(required)"
|
3542 |
msgstr ""
|
3543 |
|
3544 |
-
#: bp-themes/bp-default/
|
3545 |
-
|
|
|
3546 |
msgstr ""
|
3547 |
|
3548 |
-
#: bp-themes/bp-default/
|
3549 |
-
|
|
|
3550 |
msgstr ""
|
3551 |
|
3552 |
-
#: bp-themes/bp-default/
|
3553 |
-
|
|
|
3554 |
msgstr ""
|
3555 |
|
3556 |
-
#: bp-themes/bp-default/
|
3557 |
-
msgid "
|
3558 |
msgstr ""
|
3559 |
|
3560 |
-
#: bp-themes/bp-default/
|
3561 |
-
msgid "
|
3562 |
msgstr ""
|
3563 |
|
3564 |
-
#: bp-themes/bp-default/
|
3565 |
-
msgid "
|
3566 |
msgstr ""
|
3567 |
|
3568 |
-
#: bp-themes/bp-default/
|
3569 |
-
msgid "
|
3570 |
msgstr ""
|
3571 |
|
3572 |
-
#: bp-themes/bp-default/
|
3573 |
-
msgid "
|
3574 |
msgstr ""
|
3575 |
|
3576 |
-
#: bp-themes/bp-default/
|
3577 |
-
msgid "
|
3578 |
msgstr ""
|
3579 |
|
3580 |
-
#: bp-themes/bp-default/
|
3581 |
-
msgid "
|
3582 |
msgstr ""
|
3583 |
|
3584 |
-
#: bp-themes/bp-default/
|
3585 |
-
msgid "
|
3586 |
msgstr ""
|
3587 |
|
3588 |
-
#: bp-themes/bp-default/
|
3589 |
-
msgid "
|
3590 |
msgstr ""
|
3591 |
|
3592 |
-
#: bp-themes/bp-default/
|
3593 |
-
#: bp-
|
3594 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3595 |
msgstr ""
|
3596 |
|
3597 |
-
#: bp-themes/bp-default/
|
3598 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3599 |
msgstr ""
|
3600 |
|
3601 |
-
#: bp-themes/bp-default/
|
3602 |
-
#: bp-
|
3603 |
-
|
|
|
|
|
|
|
|
|
3604 |
msgstr ""
|
3605 |
|
3606 |
-
#: bp-themes/bp-default/
|
3607 |
-
|
3608 |
-
#: bp-activity/bp-activity-actions.php:281
|
3609 |
-
msgid "There was an error posting that reply, please try again."
|
3610 |
msgstr ""
|
3611 |
|
3612 |
-
#: bp-themes/bp-default/
|
3613 |
-
|
3614 |
-
msgid "There was a problem when deleting. Please try again."
|
3615 |
msgstr ""
|
3616 |
|
3617 |
-
#: bp-themes/bp-default/
|
3618 |
-
|
3619 |
-
|
3620 |
-
|
3621 |
-
msgstr ""
|
3622 |
|
3623 |
-
#: bp-themes/bp-default/
|
3624 |
-
|
3625 |
-
#: bp-themes/bp-default/activity/entry.php:68
|
3626 |
-
msgid "Favorite"
|
3627 |
msgstr ""
|
3628 |
|
3629 |
-
#: bp-themes/bp-default/
|
3630 |
-
|
3631 |
-
#: bp-themes/bp-default/groups/create.php:234
|
3632 |
-
msgid "Remove Invite"
|
3633 |
msgstr ""
|
3634 |
|
3635 |
-
#: bp-themes/bp-default/
|
3636 |
-
msgid "
|
3637 |
-
|
|
|
|
|
3638 |
|
3639 |
-
#: bp-themes/bp-default/
|
3640 |
-
msgid "
|
3641 |
msgstr ""
|
3642 |
|
3643 |
-
#: bp-themes/bp-default/
|
3644 |
-
msgid "
|
3645 |
msgstr ""
|
3646 |
|
3647 |
-
#: bp-themes/bp-default/
|
3648 |
-
msgid "
|
3649 |
msgstr ""
|
3650 |
|
3651 |
-
#: bp-themes/bp-default/
|
3652 |
-
msgid "
|
3653 |
msgstr ""
|
3654 |
|
3655 |
-
|
3656 |
-
msgid "Membership Requested"
|
3657 |
-
msgstr ""
|
3658 |
|
3659 |
-
#: bp-themes/bp-default/
|
3660 |
-
msgid "
|
3661 |
msgstr ""
|
3662 |
|
3663 |
-
|
3664 |
-
msgid "There was a problem closing the notice."
|
3665 |
-
msgstr ""
|
3666 |
|
3667 |
-
#: bp-themes/bp-default/
|
3668 |
-
msgid "
|
3669 |
msgstr ""
|
3670 |
|
3671 |
-
#: bp-themes/bp-default/
|
3672 |
-
msgid "
|
3673 |
msgstr ""
|
3674 |
|
3675 |
-
#: bp-themes/bp-default/
|
3676 |
-
msgid "
|
3677 |
msgstr ""
|
3678 |
|
3679 |
-
#: bp-themes/bp-default/
|
3680 |
-
msgid "
|
3681 |
msgstr ""
|
3682 |
|
3683 |
-
#: bp-themes/bp-default/
|
3684 |
-
msgid "
|
3685 |
msgstr ""
|
3686 |
|
3687 |
-
#: bp-themes/bp-default/
|
3688 |
-
|
|
|
|
|
3689 |
msgstr ""
|
3690 |
|
3691 |
-
#: bp-themes/bp-default/
|
3692 |
-
|
|
|
|
|
3693 |
msgstr ""
|
3694 |
|
3695 |
-
#: bp-themes/bp-default/
|
3696 |
-
msgid "
|
3697 |
msgstr ""
|
3698 |
|
3699 |
-
#: bp-themes/bp-default/
|
3700 |
-
|
|
|
|
|
3701 |
msgstr ""
|
3702 |
|
3703 |
-
#: bp-themes/bp-default/
|
3704 |
-
|
|
|
|
|
3705 |
msgstr ""
|
3706 |
|
3707 |
-
#: bp-themes/bp-default/
|
3708 |
-
msgid "
|
3709 |
msgstr ""
|
3710 |
|
3711 |
-
|
3712 |
-
msgid "1 response to %2$s"
|
3713 |
-
msgid_plural "%1$s responses to %2$s"
|
3714 |
-
msgstr[0] ""
|
3715 |
-
msgstr[1] ""
|
3716 |
|
3717 |
-
#: bp-themes/bp-default/
|
3718 |
-
|
|
|
3719 |
msgstr ""
|
3720 |
|
3721 |
-
#: bp-themes/bp-default/
|
3722 |
-
|
|
|
3723 |
msgstr ""
|
3724 |
|
3725 |
-
#: bp-themes/bp-default/
|
3726 |
-
|
3727 |
-
|
3728 |
-
|
3729 |
-
msgstr[1] ""
|
3730 |
-
|
3731 |
-
#: bp-themes/bp-default/404.php:7
|
3732 |
-
msgid "Page not found"
|
3733 |
msgstr ""
|
3734 |
|
3735 |
-
#: bp-themes/bp-default/
|
3736 |
-
msgid "
|
3737 |
msgstr ""
|
3738 |
|
3739 |
#: bp-themes/bp-default/functions.php:81
|
@@ -3839,1145 +3951,1035 @@ msgstr ""
|
|
3839 |
msgid "Next Entries →"
|
3840 |
msgstr ""
|
3841 |
|
3842 |
-
#: bp-themes/bp-default/
|
3843 |
-
|
3844 |
-
|
3845 |
-
|
3846 |
-
#: bp-themes/bp-default/page.php:21 bp-themes/bp-default/onecolumn-page.php:32
|
3847 |
-
msgid "Edit this page."
|
3848 |
-
msgstr ""
|
3849 |
-
|
3850 |
-
#: bp-themes/bp-default/header.php:27
|
3851 |
-
msgctxt "Home page banner link title"
|
3852 |
-
msgid "Home"
|
3853 |
-
msgstr ""
|
3854 |
-
|
3855 |
-
#: bp-themes/bp-default/header.php:30
|
3856 |
-
msgid "Search for:"
|
3857 |
-
msgstr ""
|
3858 |
-
|
3859 |
-
#: bp-themes/bp-default/members/index.php:23
|
3860 |
-
msgid "Members Directory"
|
3861 |
-
msgstr ""
|
3862 |
-
|
3863 |
-
#: bp-themes/bp-default/members/index.php:35
|
3864 |
-
#: bp-themes/bp-default/activity/index.php:41
|
3865 |
-
msgid "All Members <span>%s</span>"
|
3866 |
msgstr ""
|
3867 |
|
3868 |
-
#: bp-themes/bp-default/
|
3869 |
-
#: bp-themes/bp-default/
|
3870 |
-
msgid "
|
3871 |
msgstr ""
|
3872 |
|
3873 |
-
#: bp-themes/bp-default/
|
3874 |
-
#: bp-themes/bp-default/
|
3875 |
-
|
3876 |
-
#: bp-themes/bp-default/members/single/forums.php:20
|
3877 |
-
#: bp-themes/bp-default/members/single/blogs.php:21
|
3878 |
-
#: bp-themes/bp-default/blogs/index.php:57
|
3879 |
-
#: bp-themes/bp-default/forums/index.php:62
|
3880 |
-
#: bp-themes/bp-default/groups/index.php:59
|
3881 |
-
#: bp-themes/bp-default/groups/single/forum.php:38
|
3882 |
-
msgid "Last Active"
|
3883 |
msgstr ""
|
3884 |
|
3885 |
-
#: bp-themes/bp-default/
|
3886 |
-
#: bp-themes/bp-default/
|
3887 |
-
msgid "
|
3888 |
msgstr ""
|
3889 |
|
3890 |
-
#: bp-themes/bp-default/
|
3891 |
-
|
3892 |
-
#: bp-themes/bp-default/members/single/groups.php:25
|
3893 |
-
#: bp-themes/bp-default/members/single/blogs.php:23
|
3894 |
-
#: bp-themes/bp-default/blogs/index.php:59
|
3895 |
-
#: bp-themes/bp-default/groups/index.php:62
|
3896 |
-
msgid "Alphabetical"
|
3897 |
msgstr ""
|
3898 |
|
3899 |
-
#: bp-themes/bp-default/
|
3900 |
-
|
|
|
3901 |
msgstr ""
|
3902 |
|
3903 |
-
#: bp-themes/bp-default/
|
3904 |
-
|
|
|
3905 |
msgstr ""
|
3906 |
|
3907 |
-
#: bp-themes/bp-default/
|
3908 |
-
|
|
|
3909 |
msgstr ""
|
3910 |
|
3911 |
-
#: bp-themes/bp-default/
|
3912 |
-
|
|
|
|
|
|
|
3913 |
msgstr ""
|
3914 |
|
3915 |
-
#: bp-themes/bp-default/
|
3916 |
-
|
|
|
3917 |
msgstr ""
|
3918 |
|
3919 |
-
#: bp-themes/bp-default/
|
3920 |
-
|
|
|
3921 |
msgstr ""
|
3922 |
|
3923 |
-
#: bp-themes/bp-default/
|
3924 |
-
|
|
|
3925 |
msgstr ""
|
3926 |
|
3927 |
-
#: bp-themes/bp-default/
|
3928 |
-
|
|
|
|
|
|
|
3929 |
msgstr ""
|
3930 |
|
3931 |
-
#: bp-themes/bp-default/
|
3932 |
-
|
|
|
3933 |
msgstr ""
|
3934 |
|
3935 |
-
#: bp-themes/bp-default/
|
3936 |
-
|
|
|
3937 |
msgstr ""
|
3938 |
|
3939 |
-
#: bp-themes/bp-default/
|
3940 |
-
|
|
|
3941 |
msgstr ""
|
3942 |
|
3943 |
-
#: bp-themes/bp-default/
|
3944 |
-
|
|
|
3945 |
msgstr ""
|
3946 |
|
3947 |
-
#: bp-themes/bp-default/
|
3948 |
-
|
|
|
3949 |
msgstr ""
|
3950 |
|
3951 |
-
#: bp-themes/bp-default/
|
3952 |
-
|
|
|
3953 |
msgstr ""
|
3954 |
|
3955 |
-
#: bp-themes/bp-default/
|
3956 |
-
|
|
|
3957 |
msgstr ""
|
3958 |
|
3959 |
-
#: bp-themes/bp-default/
|
3960 |
-
|
|
|
3961 |
msgstr ""
|
3962 |
|
3963 |
-
#: bp-themes/bp-default/
|
3964 |
-
|
|
|
3965 |
msgstr ""
|
3966 |
|
3967 |
-
#: bp-themes/bp-default/members/single/profile/change-avatar.php:18
|
3968 |
-
#: bp-themes/bp-default/groups/single/admin.php:131
|
3969 |
#: bp-themes/bp-default/groups/create.php:158
|
3970 |
-
|
3971 |
-
|
3972 |
-
|
3973 |
-
#: bp-themes/bp-default/members/single/profile/change-avatar.php:23
|
3974 |
-
msgid "If you'd like to delete your current avatar but not upload a new one, please use the delete avatar button."
|
3975 |
-
msgstr ""
|
3976 |
-
|
3977 |
-
#: bp-themes/bp-default/members/single/profile/change-avatar.php:24
|
3978 |
-
#: bp-themes/bp-default/groups/single/admin.php:139
|
3979 |
-
msgid "Delete Avatar"
|
3980 |
-
msgstr ""
|
3981 |
-
|
3982 |
-
#: bp-themes/bp-default/members/single/profile/change-avatar.php:24
|
3983 |
-
msgid "Delete My Avatar"
|
3984 |
-
msgstr ""
|
3985 |
-
|
3986 |
-
#: bp-themes/bp-default/members/single/profile/change-avatar.php:31
|
3987 |
-
msgid "Crop Your New Avatar"
|
3988 |
-
msgstr ""
|
3989 |
-
|
3990 |
-
#: bp-themes/bp-default/members/single/profile/change-avatar.php:33
|
3991 |
-
#: bp-themes/bp-default/groups/single/admin.php:151
|
3992 |
-
#: bp-themes/bp-default/groups/create.php:171
|
3993 |
-
msgid "Avatar to crop"
|
3994 |
-
msgstr ""
|
3995 |
-
|
3996 |
-
#: bp-themes/bp-default/members/single/profile/change-avatar.php:36
|
3997 |
-
#: bp-themes/bp-default/groups/single/admin.php:154
|
3998 |
-
#: bp-themes/bp-default/groups/create.php:174
|
3999 |
-
msgid "Avatar preview"
|
4000 |
-
msgstr ""
|
4001 |
-
|
4002 |
-
#: bp-themes/bp-default/members/single/profile/change-avatar.php:39
|
4003 |
-
#: bp-themes/bp-default/groups/single/admin.php:157
|
4004 |
-
#: bp-themes/bp-default/groups/create.php:177
|
4005 |
-
msgid "Crop Image"
|
4006 |
-
msgstr ""
|
4007 |
-
|
4008 |
-
#: bp-themes/bp-default/members/single/profile/change-avatar.php:55
|
4009 |
-
msgid "Your avatar will be used on your profile and throughout the site. To change your avatar, please create an account with <a href=\"http://gravatar.com\">Gravatar</a> using the same email address as you used to register with this site."
|
4010 |
-
msgstr ""
|
4011 |
-
|
4012 |
-
#: bp-themes/bp-default/members/single/profile/edit.php:10
|
4013 |
-
msgid "Editing '%s' Profile Group"
|
4014 |
-
msgstr ""
|
4015 |
-
|
4016 |
-
#: bp-themes/bp-default/members/single/groups.php:23
|
4017 |
-
#: bp-themes/bp-default/groups/index.php:60
|
4018 |
-
msgid "Most Members"
|
4019 |
-
msgstr ""
|
4020 |
-
|
4021 |
-
#: bp-themes/bp-default/members/single/groups.php:24
|
4022 |
-
#: bp-themes/bp-default/groups/index.php:61
|
4023 |
-
msgid "Newly Created"
|
4024 |
msgstr ""
|
4025 |
|
4026 |
-
#: bp-themes/bp-default/
|
4027 |
-
|
4028 |
-
#: bp-themes/bp-default/groups/single/forum.php:39
|
4029 |
-
msgid "Most Posts"
|
4030 |
msgstr ""
|
4031 |
|
4032 |
-
#: bp-themes/bp-default/
|
4033 |
-
|
4034 |
-
#: bp-themes/bp-default/groups/single/forum.php:40
|
4035 |
-
msgid "Unreplied"
|
4036 |
msgstr ""
|
4037 |
|
4038 |
-
#: bp-themes/bp-default/
|
4039 |
-
|
|
|
|
|
4040 |
msgstr ""
|
4041 |
|
4042 |
-
#: bp-themes/bp-default/
|
4043 |
-
|
|
|
|
|
4044 |
msgstr ""
|
4045 |
|
4046 |
-
#: bp-themes/bp-default/
|
4047 |
-
|
|
|
|
|
4048 |
msgstr ""
|
4049 |
|
4050 |
-
#: bp-themes/bp-default/
|
4051 |
-
|
|
|
4052 |
msgstr ""
|
4053 |
|
4054 |
-
#: bp-themes/bp-default/
|
4055 |
-
|
|
|
4056 |
msgstr ""
|
4057 |
|
4058 |
-
#: bp-themes/bp-default/
|
4059 |
-
msgid "
|
4060 |
msgstr ""
|
4061 |
|
4062 |
-
#: bp-themes/bp-default/
|
4063 |
-
|
4064 |
-
#: bp-themes/bp-default/members/single/messages/single.php:24
|
4065 |
-
msgid "Delete Message"
|
4066 |
msgstr ""
|
4067 |
|
4068 |
-
#: bp-themes/bp-default/
|
4069 |
-
msgid "
|
4070 |
msgstr ""
|
4071 |
|
4072 |
-
#: bp-themes/bp-default/
|
4073 |
-
msgid "
|
4074 |
msgstr ""
|
4075 |
|
4076 |
-
#: bp-themes/bp-default/
|
4077 |
-
msgid "
|
4078 |
msgstr ""
|
4079 |
|
4080 |
-
#: bp-themes/bp-default/
|
4081 |
-
|
|
|
4082 |
msgstr ""
|
4083 |
|
4084 |
-
#: bp-themes/bp-default/
|
4085 |
-
|
|
|
4086 |
msgstr ""
|
4087 |
|
4088 |
-
#: bp-themes/bp-default/
|
4089 |
-
msgid "
|
4090 |
msgstr ""
|
4091 |
|
4092 |
-
#: bp-themes/bp-default/
|
4093 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4094 |
msgstr ""
|
4095 |
|
4096 |
-
#: bp-themes/bp-default/
|
4097 |
-
msgid "
|
4098 |
msgstr ""
|
4099 |
|
4100 |
-
#: bp-themes/bp-default/
|
4101 |
-
|
|
|
4102 |
msgstr ""
|
4103 |
|
4104 |
-
#: bp-themes/bp-default/
|
4105 |
-
|
4106 |
-
#: bp-themes/bp-default/groups/single/admin.php:318
|
4107 |
-
msgid "Accept"
|
4108 |
msgstr ""
|
4109 |
|
4110 |
-
#: bp-themes/bp-default/
|
4111 |
-
|
4112 |
-
#: bp-themes/bp-default/groups/single/admin.php:320
|
4113 |
-
msgid "Reject"
|
4114 |
msgstr ""
|
4115 |
|
4116 |
-
#: bp-themes/bp-default/
|
4117 |
-
msgid "
|
4118 |
msgstr ""
|
4119 |
|
4120 |
-
#: bp-themes/bp-default/
|
4121 |
-
msgid "
|
4122 |
msgstr ""
|
4123 |
|
4124 |
-
#: bp-themes/bp-default/
|
4125 |
-
|
4126 |
-
#: bp-themes/bp-default/groups/single/activity.php:8
|
4127 |
-
msgid "Show:"
|
4128 |
msgstr ""
|
4129 |
|
4130 |
-
#: bp-themes/bp-default/
|
4131 |
-
|
4132 |
-
#: bp-themes/bp-default/groups/single/activity.php:10
|
4133 |
-
msgid "Everything"
|
4134 |
msgstr ""
|
4135 |
|
4136 |
-
#: bp-themes/bp-default/
|
4137 |
-
|
4138 |
-
#: bp-themes/bp-default/groups/single/activity.php:11
|
4139 |
-
msgid "Updates"
|
4140 |
msgstr ""
|
4141 |
|
4142 |
-
#: bp-themes/bp-default/
|
4143 |
-
|
4144 |
-
msgid "Comments"
|
4145 |
msgstr ""
|
4146 |
|
4147 |
-
#: bp-themes/bp-default/
|
4148 |
-
|
4149 |
-
#: bp-themes/bp-default/groups/single/activity.php:14
|
4150 |
-
msgid "Forum Topics"
|
4151 |
msgstr ""
|
4152 |
|
4153 |
-
#: bp-themes/bp-default/
|
4154 |
-
|
4155 |
-
#: bp-themes/bp-default/groups/single/activity.php:15
|
4156 |
-
msgid "Forum Replies"
|
4157 |
msgstr ""
|
4158 |
|
4159 |
-
#: bp-themes/bp-default/
|
4160 |
-
|
4161 |
-
msgid "New Groups"
|
4162 |
msgstr ""
|
4163 |
|
4164 |
-
#: bp-themes/bp-default/
|
4165 |
-
#: bp-themes/bp-default/
|
4166 |
-
|
4167 |
-
msgid "Group Memberships"
|
4168 |
msgstr ""
|
4169 |
|
4170 |
-
#: bp-themes/bp-default/
|
4171 |
-
|
|
|
|
|
4172 |
msgstr ""
|
4173 |
|
4174 |
-
#: bp-themes/bp-default/
|
4175 |
-
|
|
|
|
|
4176 |
msgstr ""
|
4177 |
|
4178 |
-
#: bp-themes/bp-default/
|
4179 |
-
msgid "
|
4180 |
msgstr ""
|
4181 |
|
4182 |
-
#: bp-themes/bp-default/
|
4183 |
-
|
4184 |
-
msgid "My Groups <span>%s</span>"
|
4185 |
msgstr ""
|
4186 |
|
4187 |
-
#: bp-themes/bp-default/
|
4188 |
-
msgid "
|
4189 |
msgstr ""
|
4190 |
|
4191 |
-
#: bp-themes/bp-default/
|
4192 |
-
|
|
|
|
|
4193 |
msgstr ""
|
4194 |
|
4195 |
-
#: bp-themes/bp-default/
|
4196 |
-
msgid "
|
4197 |
msgstr ""
|
4198 |
|
4199 |
-
#: bp-themes/bp-default/
|
4200 |
-
|
4201 |
-
#: bp-activity/bp-activity-loader.php:228
|
4202 |
-
#: bp-activity/feeds/bp-activity-mentions-feed.php:27
|
4203 |
-
#: bp-activity/feeds/bp-activity-mentions-feed.php:30
|
4204 |
-
msgid "Mentions"
|
4205 |
msgstr ""
|
4206 |
|
4207 |
-
#: bp-themes/bp-default/
|
4208 |
-
msgid "
|
4209 |
msgstr ""
|
4210 |
|
4211 |
-
#: bp-themes/bp-default/
|
4212 |
-
|
4213 |
-
msgid "RSS Feed"
|
4214 |
msgstr ""
|
4215 |
|
4216 |
-
#: bp-themes/bp-default/
|
4217 |
-
|
4218 |
-
msgid "RSS"
|
4219 |
msgstr ""
|
4220 |
|
4221 |
-
#: bp-themes/bp-default/
|
4222 |
-
msgid "
|
4223 |
msgstr ""
|
4224 |
|
4225 |
-
|
4226 |
-
|
4227 |
-
|
4228 |
-
#: bp-themes/bp-default/activity/comment.php:27
|
4229 |
-
msgid "<a href=\"%1$s\">%2$s</a> replied <a href=\"%3$s\" class=\"activity-time-since\"><span class=\"time-since\">%4$s</span></a>"
|
4230 |
msgstr ""
|
4231 |
|
4232 |
-
#: bp-themes/bp-default/
|
4233 |
-
|
4234 |
-
msgid "Reply"
|
4235 |
msgstr ""
|
4236 |
|
4237 |
-
#: bp-themes/bp-default/
|
4238 |
-
msgid "
|
4239 |
msgstr ""
|
4240 |
|
4241 |
-
#: bp-themes/bp-default/
|
4242 |
-
msgid "
|
4243 |
msgstr ""
|
4244 |
|
4245 |
-
#: bp-themes/bp-default/
|
4246 |
-
msgid "
|
4247 |
msgstr ""
|
4248 |
|
4249 |
-
#: bp-themes/bp-default/
|
4250 |
-
msgid "
|
4251 |
msgstr ""
|
4252 |
|
4253 |
-
#: bp-themes/bp-default/
|
4254 |
-
msgid "
|
4255 |
msgstr ""
|
4256 |
|
4257 |
-
#: bp-themes/bp-default/
|
4258 |
-
msgid "
|
4259 |
msgstr ""
|
4260 |
|
4261 |
-
#: bp-themes/bp-default/
|
4262 |
-
msgid "
|
4263 |
msgstr ""
|
4264 |
|
4265 |
-
#: bp-themes/bp-default/
|
4266 |
-
msgid "
|
4267 |
msgstr ""
|
4268 |
|
4269 |
-
#: bp-themes/bp-default/
|
4270 |
-
msgid "
|
4271 |
msgstr ""
|
4272 |
|
4273 |
-
#: bp-themes/bp-default/
|
4274 |
-
msgid "
|
4275 |
msgstr ""
|
4276 |
|
4277 |
-
#: bp-themes/bp-default/
|
4278 |
-
|
|
|
4279 |
msgstr ""
|
4280 |
|
4281 |
-
#: bp-themes/bp-default/
|
4282 |
-
msgid "
|
4283 |
msgstr ""
|
4284 |
|
4285 |
-
#: bp-themes/bp-default/
|
4286 |
-
|
|
|
4287 |
msgstr ""
|
4288 |
|
4289 |
-
#: bp-themes/bp-default/
|
4290 |
-
msgid "
|
4291 |
msgstr ""
|
4292 |
|
4293 |
-
#: bp-themes/bp-default/
|
4294 |
-
msgid "
|
4295 |
msgstr ""
|
4296 |
|
4297 |
-
#: bp-themes/bp-default/
|
4298 |
-
msgid "
|
4299 |
msgstr ""
|
4300 |
|
4301 |
-
#: bp-themes/bp-default/
|
4302 |
-
|
|
|
4303 |
msgstr ""
|
4304 |
|
4305 |
-
#: bp-themes/bp-default/
|
4306 |
-
msgid "
|
4307 |
msgstr ""
|
4308 |
|
4309 |
-
#: bp-themes/bp-default/
|
4310 |
-
msgid "
|
4311 |
msgstr ""
|
4312 |
|
4313 |
-
#: bp-themes/bp-default/
|
4314 |
-
msgid "
|
4315 |
msgstr ""
|
4316 |
|
4317 |
-
#: bp-themes/bp-default/
|
4318 |
-
|
4319 |
-
#: bp-themes/bp-default/groups/single/forum.php:78
|
4320 |
-
msgid "Content:"
|
4321 |
msgstr ""
|
4322 |
|
4323 |
-
#: bp-themes/bp-default/
|
4324 |
-
|
4325 |
-
#: bp-themes/bp-default/groups/single/forum.php:81
|
4326 |
-
msgid "Tags (comma separated):"
|
4327 |
msgstr ""
|
4328 |
|
4329 |
-
#: bp-themes/bp-default/
|
4330 |
-
msgid "
|
4331 |
msgstr ""
|
4332 |
|
4333 |
-
#: bp-themes/bp-default/
|
4334 |
-
|
4335 |
-
msgid "Post Topic"
|
4336 |
msgstr ""
|
4337 |
|
4338 |
-
#: bp-themes/bp-default/
|
4339 |
-
msgid "
|
4340 |
msgstr ""
|
4341 |
|
4342 |
-
#: bp-themes/bp-default/
|
4343 |
-
msgid "
|
4344 |
msgstr ""
|
4345 |
|
4346 |
-
#: bp-themes/bp-default/
|
4347 |
-
msgid "
|
4348 |
msgstr ""
|
4349 |
|
4350 |
-
#: bp-themes/bp-default/
|
4351 |
-
msgid "
|
4352 |
msgstr ""
|
4353 |
|
4354 |
-
|
|
|
|
|
|
|
|
|
4355 |
|
4356 |
-
#: bp-themes/bp-default/
|
4357 |
-
msgid "
|
4358 |
msgstr ""
|
4359 |
|
4360 |
-
|
|
|
|
|
4361 |
|
4362 |
-
#: bp-themes/bp-default/
|
4363 |
-
msgid "
|
4364 |
msgstr ""
|
4365 |
|
4366 |
-
#: bp-themes/bp-default/
|
4367 |
-
msgid "
|
4368 |
msgstr ""
|
4369 |
|
4370 |
-
#: bp-themes/bp-default/
|
4371 |
-
|
4372 |
-
msgid "Groups Directory"
|
4373 |
msgstr ""
|
4374 |
|
4375 |
-
#: bp-themes/bp-default/
|
4376 |
-
msgid "
|
4377 |
msgstr ""
|
4378 |
|
4379 |
-
#: bp-themes/bp-default/
|
4380 |
-
msgid "
|
4381 |
msgstr ""
|
4382 |
|
4383 |
-
#: bp-themes/bp-default/
|
4384 |
-
#: bp-
|
4385 |
-
|
|
|
4386 |
msgstr ""
|
4387 |
|
4388 |
-
#: bp-themes/bp-default/
|
4389 |
-
|
4390 |
-
#: bp-themes/bp-default/groups/single/forum.php:27
|
4391 |
-
msgid "Forum Directory"
|
4392 |
msgstr ""
|
4393 |
|
4394 |
-
#: bp-themes/bp-default/
|
4395 |
-
msgid "
|
4396 |
msgstr ""
|
4397 |
|
4398 |
-
#: bp-themes/bp-default/
|
4399 |
-
msgid "
|
4400 |
msgstr ""
|
4401 |
|
4402 |
-
#: bp-themes/bp-default/
|
4403 |
-
msgid "
|
4404 |
msgstr ""
|
4405 |
|
4406 |
-
#: bp-themes/bp-default/
|
4407 |
-
msgid "
|
4408 |
msgstr ""
|
4409 |
|
4410 |
-
#: bp-themes/bp-default/
|
4411 |
-
msgid "
|
4412 |
msgstr ""
|
4413 |
|
4414 |
-
#: bp-themes/bp-default/
|
4415 |
-
msgid "
|
4416 |
msgstr ""
|
4417 |
|
4418 |
-
#: bp-themes/bp-default/
|
4419 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4420 |
msgstr ""
|
4421 |
|
4422 |
-
#: bp-themes/bp-default/
|
4423 |
-
|
|
|
|
|
|
|
4424 |
msgstr ""
|
4425 |
|
4426 |
-
#: bp-themes/bp-default/
|
4427 |
-
msgid "
|
4428 |
msgstr ""
|
4429 |
|
4430 |
-
#: bp-themes/bp-default/
|
4431 |
-
msgid "
|
4432 |
msgstr ""
|
4433 |
|
4434 |
-
#: bp-themes/bp-default/
|
4435 |
-
msgid "
|
4436 |
msgstr ""
|
4437 |
|
4438 |
-
#: bp-themes/bp-default/
|
4439 |
-
msgid "
|
4440 |
msgstr ""
|
4441 |
|
4442 |
-
#: bp-themes/bp-default/
|
4443 |
-
msgid "
|
4444 |
msgstr ""
|
4445 |
|
4446 |
-
#: bp-themes/bp-default/
|
4447 |
-
msgid "
|
4448 |
msgstr ""
|
4449 |
|
4450 |
-
#: bp-themes/bp-default/
|
4451 |
-
|
4452 |
-
msgid "Select people to invite from your friends list."
|
4453 |
msgstr ""
|
4454 |
|
4455 |
-
#: bp-themes/bp-default/
|
4456 |
-
|
4457 |
-
msgid "Once you have built up friend connections you will be able to invite others to your group. You can send invites any time in the future by selecting the \"Send Invites\" option when viewing your new group."
|
4458 |
msgstr ""
|
4459 |
|
4460 |
-
#: bp-themes/bp-default/
|
4461 |
-
msgid "
|
4462 |
msgstr ""
|
4463 |
|
4464 |
-
#: bp-themes/bp-default/
|
4465 |
-
msgid "
|
4466 |
msgstr ""
|
4467 |
|
4468 |
-
#: bp-themes/bp-default/
|
4469 |
-
msgid "
|
4470 |
msgstr ""
|
4471 |
|
4472 |
-
#: bp-themes/bp-default/
|
4473 |
-
msgid "
|
4474 |
msgstr ""
|
4475 |
|
4476 |
-
#: bp-themes/bp-default/
|
4477 |
-
|
4478 |
-
msgid "Group Name (required)"
|
4479 |
msgstr ""
|
4480 |
|
4481 |
-
#: bp-themes/bp-default/
|
4482 |
-
|
4483 |
-
msgid "Group Description (required)"
|
4484 |
msgstr ""
|
4485 |
|
4486 |
-
#: bp-themes/bp-default/
|
4487 |
-
msgid "
|
4488 |
msgstr ""
|
4489 |
|
4490 |
-
#: bp-themes/bp-default/
|
4491 |
-
|
4492 |
-
msgid "Enable discussion forum"
|
4493 |
msgstr ""
|
4494 |
|
4495 |
-
#: bp-themes/bp-default/
|
4496 |
-
|
4497 |
-
msgid "Privacy Options"
|
4498 |
msgstr ""
|
4499 |
|
4500 |
-
#: bp-themes/bp-default/
|
4501 |
-
|
4502 |
-
msgid "This is a public group"
|
4503 |
msgstr ""
|
4504 |
|
4505 |
-
#: bp-themes/bp-default/
|
4506 |
-
|
4507 |
-
msgid "Any site member can join this group."
|
4508 |
msgstr ""
|
4509 |
|
4510 |
-
#: bp-themes/bp-default/
|
4511 |
-
|
4512 |
-
#: bp-themes/bp-default/groups/create.php:85
|
4513 |
-
#: bp-themes/bp-default/groups/create.php:94
|
4514 |
-
msgid "This group will be listed in the groups directory and in search results."
|
4515 |
msgstr ""
|
4516 |
|
4517 |
-
#: bp-themes/bp-default/
|
4518 |
-
|
4519 |
-
msgid "Group content and activity will be visible to any site member."
|
4520 |
msgstr ""
|
4521 |
|
4522 |
-
#: bp-themes/bp-default/
|
4523 |
-
|
4524 |
-
msgid "This is a private group"
|
4525 |
msgstr ""
|
4526 |
|
4527 |
-
#: bp-themes/bp-default/
|
4528 |
-
|
4529 |
-
msgid "Only users who request membership and are accepted can join the group."
|
4530 |
msgstr ""
|
4531 |
|
4532 |
-
#: bp-themes/bp-default/
|
4533 |
-
|
4534 |
-
#: bp-themes/bp-default/groups/create.php:95
|
4535 |
-
#: bp-themes/bp-default/groups/create.php:104
|
4536 |
-
msgid "Group content and activity will only be visible to members of the group."
|
4537 |
msgstr ""
|
4538 |
|
4539 |
-
#: bp-themes/bp-default/
|
4540 |
-
#: bp-themes/bp-default/
|
4541 |
-
msgid "
|
4542 |
msgstr ""
|
4543 |
|
4544 |
-
#: bp-themes/bp-default/
|
4545 |
-
|
4546 |
-
msgid "Only users who are invited can join the group."
|
4547 |
msgstr ""
|
4548 |
|
4549 |
-
#: bp-themes/bp-default/
|
4550 |
-
|
4551 |
-
msgid "This group will not be listed in the groups directory or search results."
|
4552 |
msgstr ""
|
4553 |
|
4554 |
-
#: bp-themes/bp-default/
|
4555 |
-
|
4556 |
-
msgid "Group Invitations"
|
4557 |
msgstr ""
|
4558 |
|
4559 |
-
#: bp-themes/bp-default/
|
4560 |
-
|
4561 |
-
msgid "Which members of this group are allowed to invite others?"
|
4562 |
msgstr ""
|
4563 |
|
4564 |
-
#: bp-themes/bp-default/
|
4565 |
-
|
4566 |
-
msgid "All group members"
|
4567 |
msgstr ""
|
4568 |
|
4569 |
-
#: bp-themes/bp-default/
|
4570 |
-
|
4571 |
-
msgid "Group admins and mods only"
|
4572 |
msgstr ""
|
4573 |
|
4574 |
-
#: bp-themes/bp-default/
|
4575 |
-
|
4576 |
-
msgid "Group admins only"
|
4577 |
msgstr ""
|
4578 |
|
4579 |
-
#: bp-themes/bp-default/
|
4580 |
-
|
4581 |
-
msgid "Upload an image to use as an avatar for this group. The image will be shown on the main group page, and in search results."
|
4582 |
msgstr ""
|
4583 |
|
4584 |
-
#: bp-themes/bp-default/
|
4585 |
-
msgid "
|
4586 |
msgstr ""
|
4587 |
|
4588 |
-
#: bp-themes/bp-default/
|
4589 |
-
msgid "
|
4590 |
msgstr ""
|
4591 |
|
4592 |
-
#: bp-themes/bp-default/
|
4593 |
-
msgid "
|
4594 |
msgstr ""
|
4595 |
|
4596 |
-
#: bp-themes/bp-default/
|
4597 |
-
msgid "
|
4598 |
msgstr ""
|
4599 |
|
4600 |
-
#: bp-themes/bp-default/
|
4601 |
-
msgid "
|
4602 |
msgstr ""
|
4603 |
|
4604 |
-
#: bp-themes/bp-default/
|
4605 |
-
msgid "
|
4606 |
msgstr ""
|
4607 |
|
4608 |
-
#: bp-themes/bp-default/
|
4609 |
-
msgid "
|
4610 |
msgstr ""
|
4611 |
|
4612 |
-
#: bp-themes/bp-default/
|
4613 |
-
msgid "
|
4614 |
msgstr ""
|
4615 |
|
4616 |
-
#: bp-themes/bp-default/
|
4617 |
-
msgid "
|
4618 |
msgstr ""
|
4619 |
|
4620 |
-
#: bp-themes/bp-default/
|
4621 |
-
msgid "
|
4622 |
msgstr ""
|
4623 |
|
4624 |
-
#: bp-themes/bp-default/
|
4625 |
-
msgid "
|
4626 |
msgstr ""
|
4627 |
|
4628 |
-
#: bp-themes/bp-default/
|
4629 |
-
|
|
|
4630 |
msgstr ""
|
4631 |
|
4632 |
-
#: bp-themes/bp-default/
|
4633 |
-
|
|
|
4634 |
msgstr ""
|
4635 |
|
4636 |
-
#: bp-themes/bp-default/
|
4637 |
-
msgid "
|
4638 |
msgstr ""
|
4639 |
|
4640 |
-
#: bp-
|
4641 |
-
msgid "
|
4642 |
msgstr ""
|
4643 |
|
4644 |
-
#: bp-
|
4645 |
-
msgid "
|
4646 |
msgstr ""
|
4647 |
|
4648 |
-
#: bp-
|
4649 |
-
msgid "
|
4650 |
msgstr ""
|
4651 |
|
4652 |
-
#: bp-
|
4653 |
-
msgid "
|
4654 |
msgstr ""
|
4655 |
|
4656 |
-
#: bp-
|
4657 |
-
msgid "
|
4658 |
msgstr ""
|
4659 |
|
4660 |
-
#: bp-
|
4661 |
-
msgid "
|
4662 |
msgstr ""
|
4663 |
|
4664 |
-
#: bp-
|
4665 |
-
msgid "
|
4666 |
msgstr ""
|
4667 |
|
4668 |
-
#: bp-
|
4669 |
-
msgid "
|
4670 |
msgstr ""
|
4671 |
|
4672 |
-
#: bp-
|
4673 |
-
msgid "
|
4674 |
msgstr ""
|
4675 |
|
4676 |
-
#: bp-
|
4677 |
-
msgid "
|
4678 |
msgstr ""
|
4679 |
|
4680 |
-
#: bp-
|
4681 |
-
msgid "
|
4682 |
msgstr ""
|
4683 |
|
4684 |
-
#: bp-
|
4685 |
-
msgid "
|
4686 |
msgstr ""
|
4687 |
|
4688 |
-
#: bp-
|
4689 |
-
msgid "
|
4690 |
msgstr ""
|
4691 |
|
4692 |
-
#: bp-
|
4693 |
-
msgid "
|
4694 |
msgstr ""
|
4695 |
|
4696 |
-
#: bp-
|
4697 |
-
msgid "
|
4698 |
msgstr ""
|
4699 |
|
4700 |
-
#: bp-
|
4701 |
-
msgid "
|
4702 |
msgstr ""
|
4703 |
|
4704 |
-
#: bp-
|
4705 |
-
|
4706 |
-
msgid "←"
|
4707 |
msgstr ""
|
4708 |
|
4709 |
-
#: bp-
|
4710 |
-
|
4711 |
-
msgid "→"
|
4712 |
msgstr ""
|
4713 |
|
4714 |
-
#: bp-
|
4715 |
-
msgid "
|
4716 |
msgstr ""
|
4717 |
|
4718 |
-
#: bp-
|
4719 |
-
|
4720 |
-
msgid "←"
|
4721 |
msgstr ""
|
4722 |
|
4723 |
-
#: bp-
|
4724 |
-
|
4725 |
-
msgid "→"
|
4726 |
msgstr ""
|
4727 |
|
4728 |
-
#: bp-
|
4729 |
-
msgid "
|
4730 |
msgstr ""
|
4731 |
|
4732 |
-
#: bp-
|
4733 |
-
msgid "
|
4734 |
msgstr ""
|
4735 |
|
4736 |
-
#: bp-
|
4737 |
-
msgid "
|
4738 |
msgstr ""
|
4739 |
|
4740 |
-
#: bp-
|
4741 |
-
msgid "
|
4742 |
msgstr ""
|
4743 |
|
4744 |
-
#: bp-
|
4745 |
-
msgid "
|
4746 |
msgstr ""
|
4747 |
|
4748 |
-
#: bp-
|
4749 |
-
msgid "
|
4750 |
msgstr ""
|
4751 |
|
4752 |
-
#: bp-
|
4753 |
-
|
|
|
4754 |
msgstr ""
|
4755 |
|
4756 |
-
#: bp-
|
4757 |
-
msgid "
|
4758 |
msgstr ""
|
4759 |
|
4760 |
-
#: bp-
|
4761 |
-
msgid "
|
4762 |
msgstr ""
|
4763 |
|
4764 |
-
#: bp-
|
4765 |
-
|
|
|
4766 |
msgstr ""
|
4767 |
|
4768 |
-
#: bp-
|
4769 |
-
msgid "
|
4770 |
msgstr ""
|
4771 |
|
4772 |
-
#: bp-
|
4773 |
-
msgid "
|
4774 |
msgstr ""
|
4775 |
|
4776 |
-
#: bp-
|
4777 |
-
|
4778 |
-
#: bp-activity/feeds/bp-activity-personal-feed.php:27
|
4779 |
-
#: bp-activity/bp-activity-screens.php:280
|
4780 |
-
msgid "Activity"
|
4781 |
msgstr ""
|
4782 |
|
4783 |
-
#: bp-
|
4784 |
-
|
4785 |
-
msgid "Personal"
|
4786 |
msgstr ""
|
4787 |
|
4788 |
-
#: bp-
|
4789 |
-
#: bp-
|
4790 |
-
msgid "
|
4791 |
msgstr ""
|
4792 |
|
4793 |
-
#: bp-
|
4794 |
-
|
|
|
4795 |
msgstr ""
|
4796 |
|
4797 |
-
#: bp-
|
4798 |
-
msgid "
|
4799 |
msgstr ""
|
4800 |
|
4801 |
-
#: bp-
|
4802 |
-
msgid "
|
4803 |
msgstr ""
|
4804 |
|
4805 |
-
#: bp-
|
4806 |
-
msgid ""
|
4807 |
-
"%1$s mentioned you in an update:\n"
|
4808 |
-
"\n"
|
4809 |
-
"\"%2$s\"\n"
|
4810 |
-
"\n"
|
4811 |
-
"To view and respond to the message, log in and visit: %3$s\n"
|
4812 |
-
"\n"
|
4813 |
-
"---------------------\n"
|
4814 |
msgstr ""
|
4815 |
|
4816 |
-
#: bp-
|
4817 |
-
msgid "
|
4818 |
msgstr ""
|
4819 |
|
4820 |
-
#: bp-
|
4821 |
-
msgid ""
|
4822 |
-
"%1$s replied to one of your updates:\n"
|
4823 |
-
"\n"
|
4824 |
-
"\"%2$s\"\n"
|
4825 |
-
"\n"
|
4826 |
-
"To view your original update and all comments, log in and visit: %3$s\n"
|
4827 |
-
"\n"
|
4828 |
-
"---------------------\n"
|
4829 |
msgstr ""
|
4830 |
|
4831 |
-
#: bp-
|
4832 |
-
msgid "
|
4833 |
msgstr ""
|
4834 |
|
4835 |
-
#: bp-
|
4836 |
-
msgid ""
|
4837 |
-
"%1$s replied to one of your comments:\n"
|
4838 |
-
"\n"
|
4839 |
-
"\"%2$s\"\n"
|
4840 |
-
"\n"
|
4841 |
-
"To view the original activity, your comment and all replies, log in and visit: %3$s\n"
|
4842 |
-
"\n"
|
4843 |
-
"---------------------\n"
|
4844 |
msgstr ""
|
4845 |
|
4846 |
-
#: bp-
|
4847 |
-
msgid "
|
4848 |
msgstr ""
|
4849 |
|
4850 |
-
#: bp-
|
4851 |
-
msgid "
|
4852 |
msgstr ""
|
4853 |
|
4854 |
-
#: bp-
|
4855 |
-
msgid "
|
4856 |
msgstr ""
|
4857 |
|
4858 |
-
#: bp-
|
4859 |
-
msgid "
|
4860 |
msgstr ""
|
4861 |
|
4862 |
-
#: bp-
|
4863 |
-
msgid "
|
4864 |
msgstr ""
|
4865 |
|
4866 |
-
#: bp-
|
4867 |
-
msgid "
|
4868 |
msgstr ""
|
4869 |
|
4870 |
-
#: bp-
|
4871 |
-
msgid "
|
4872 |
msgstr ""
|
4873 |
|
4874 |
-
#: bp-
|
4875 |
-
msgid "
|
4876 |
msgstr ""
|
4877 |
|
4878 |
-
#: bp-
|
4879 |
-
msgid "
|
4880 |
msgstr ""
|
4881 |
|
4882 |
-
#: bp-
|
4883 |
-
msgid "
|
4884 |
msgstr ""
|
4885 |
|
4886 |
-
#: bp-
|
4887 |
-
msgid "
|
4888 |
msgstr ""
|
4889 |
|
4890 |
-
#: bp-
|
4891 |
-
#: bp-
|
4892 |
-
|
4893 |
-
#: bp-activity/feeds/bp-activity-favorites-feed.php:56
|
4894 |
-
#: bp-activity/feeds/bp-activity-group-feed.php:49
|
4895 |
-
#: bp-activity/feeds/bp-activity-sitewide-feed.php:49
|
4896 |
-
#: bp-activity/feeds/bp-activity-mygroups-feed.php:54
|
4897 |
-
msgid "Comments: %s"
|
4898 |
msgstr ""
|
4899 |
|
4900 |
-
#: bp-
|
4901 |
-
|
4902 |
-
#: bp-activity/feeds/bp-activity-personal-feed.php:53
|
4903 |
-
#: bp-activity/feeds/bp-activity-favorites-feed.php:60
|
4904 |
-
msgid "In reply to"
|
4905 |
msgstr ""
|
4906 |
|
4907 |
-
#: bp-
|
4908 |
-
msgid "
|
4909 |
msgstr ""
|
4910 |
|
4911 |
-
#: bp-
|
4912 |
-
|
4913 |
-
msgid "Favorite Activity"
|
4914 |
msgstr ""
|
4915 |
|
4916 |
-
#: bp-
|
4917 |
-
msgid "
|
4918 |
msgstr ""
|
4919 |
|
4920 |
-
#: bp-
|
4921 |
-
msgid "
|
4922 |
msgstr ""
|
4923 |
|
4924 |
-
#: bp-
|
4925 |
-
msgid "
|
4926 |
msgstr ""
|
4927 |
|
4928 |
-
#: bp-
|
4929 |
-
msgid "
|
4930 |
msgstr ""
|
4931 |
|
4932 |
-
#: bp-
|
4933 |
-
|
4934 |
-
msgid "My Groups - Public Activity"
|
4935 |
msgstr ""
|
4936 |
|
4937 |
-
#: bp-
|
4938 |
-
msgid "
|
4939 |
msgstr ""
|
4940 |
|
4941 |
-
#: bp-
|
4942 |
-
msgid "
|
4943 |
msgstr ""
|
4944 |
|
4945 |
-
#: bp-
|
4946 |
-
msgid "
|
4947 |
msgstr ""
|
4948 |
|
4949 |
-
#: bp-
|
4950 |
-
msgid "
|
4951 |
msgstr ""
|
4952 |
|
4953 |
-
#: bp-
|
4954 |
-
msgid "
|
4955 |
msgstr ""
|
4956 |
|
4957 |
-
#: bp-
|
4958 |
-
msgid "
|
4959 |
msgstr ""
|
4960 |
|
4961 |
-
#: bp-
|
4962 |
-
msgid "
|
4963 |
msgstr ""
|
4964 |
|
4965 |
-
#: bp-
|
4966 |
-
msgid "
|
4967 |
msgstr ""
|
4968 |
|
4969 |
-
#: bp-
|
4970 |
-
msgid "
|
4971 |
msgstr ""
|
4972 |
|
4973 |
-
#: bp-
|
4974 |
-
msgid "
|
4975 |
msgstr ""
|
4976 |
|
4977 |
-
#: bp-
|
4978 |
-
msgid "
|
4979 |
msgstr ""
|
4980 |
|
4981 |
-
#: bp-
|
4982 |
-
msgid "
|
4983 |
msgstr ""
|
1 |
+
# Copyright (C) 2012 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: 2012-02-10 18:36:41+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
+
"PO-Revision-Date: 2012-MO-DA HO:MI+ZONE\n"
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
|
15 |
+
#: bp-activity/bp-activity-actions.php:153
|
16 |
+
msgid "Activity deleted successfully"
|
|
|
|
|
|
|
|
|
17 |
msgstr ""
|
18 |
|
19 |
+
#: bp-activity/bp-activity-actions.php:155
|
20 |
+
msgid "There was an error when deleting that activity"
|
21 |
msgstr ""
|
22 |
|
23 |
+
#: bp-activity/bp-activity-actions.php:206
|
24 |
+
#: bp-themes/bp-default/_inc/ajax.php:160
|
25 |
+
msgid "Please enter some content to post."
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: bp-activity/bp-activity-actions.php:227
|
29 |
+
msgid "Update Posted!"
|
|
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: bp-activity/bp-activity-actions.php:229
|
33 |
+
msgid "There was an error when posting your update, please try again."
|
34 |
msgstr ""
|
35 |
|
36 |
+
#: bp-activity/bp-activity-actions.php:268
|
37 |
+
#: bp-themes/bp-default/_inc/ajax.php:202
|
38 |
+
msgid "Please do not leave the comment area blank."
|
39 |
msgstr ""
|
40 |
|
41 |
+
#: bp-activity/bp-activity-actions.php:279
|
42 |
+
msgid "Reply Posted!"
|
43 |
msgstr ""
|
44 |
|
45 |
+
#: bp-activity/bp-activity-actions.php:281
|
46 |
+
#: bp-themes/bp-default/_inc/ajax.php:207
|
47 |
+
#: bp-themes/bp-default/_inc/ajax.php:218
|
48 |
+
msgid "There was an error posting that reply, please try again."
|
49 |
msgstr ""
|
50 |
|
51 |
+
#: bp-activity/bp-activity-actions.php:315
|
52 |
+
msgid "Activity marked as favorite."
|
|
|
53 |
msgstr ""
|
54 |
|
55 |
+
#: bp-activity/bp-activity-actions.php:317
|
56 |
+
msgid "There was an error marking that activity as a favorite, please try again."
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: bp-activity/bp-activity-actions.php:351
|
60 |
+
msgid "Activity removed as favorite."
|
|
|
61 |
msgstr ""
|
62 |
|
63 |
+
#: bp-activity/bp-activity-actions.php:353
|
64 |
+
msgid "There was an error removing that activity as a favorite, please try again."
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: bp-activity/bp-activity-filters.php:248
|
68 |
+
msgid "[Read more]"
|
|
|
69 |
msgstr ""
|
70 |
|
71 |
+
#: bp-activity/bp-activity-filters.php:253
|
72 |
+
msgid "…"
|
|
|
73 |
msgstr ""
|
74 |
|
75 |
+
#: bp-activity/bp-activity-functions.php:151
|
76 |
+
msgid "@%s Mentions"
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: bp-activity/bp-activity-functions.php:154
|
80 |
+
msgid "You have %1$d new activity mentions"
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: bp-activity/bp-activity-functions.php:158
|
84 |
+
msgid "%1$s mentioned you in an activity update"
|
|
|
|
|
|
|
|
|
|
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: bp-activity/bp-activity-functions.php:664
|
88 |
+
msgid "Posted an update"
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: bp-activity/bp-activity-functions.php:872
|
92 |
+
msgid "%s posted an update"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: bp-activity/bp-activity-functions.php:939
|
96 |
+
msgid "%s posted a new activity comment"
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: bp-activity/bp-activity-functions.php:1310
|
100 |
+
msgid "Thumbnail"
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: bp-activity/bp-activity-loader.php:34 bp-core/admin/bp-core-admin.php:358
|
104 |
+
msgid "Activity Streams"
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: bp-activity/bp-activity-loader.php:89
|
108 |
+
msgid "Search Activity..."
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: bp-activity/bp-activity-loader.php:113
|
112 |
+
#: bp-activity/bp-activity-loader.php:235
|
113 |
+
#: bp-activity/bp-activity-screens.php:280
|
114 |
+
#: bp-activity/feeds/bp-activity-personal-feed.php:27
|
115 |
+
msgid "Activity"
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: bp-activity/bp-activity-loader.php:138
|
119 |
+
#: bp-activity/bp-activity-loader.php:251
|
120 |
+
msgid "Personal"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: bp-activity/bp-activity-loader.php:148
|
124 |
+
#: bp-activity/bp-activity-loader.php:228
|
125 |
+
#: bp-activity/feeds/bp-activity-mentions-feed.php:27
|
126 |
+
#: bp-activity/feeds/bp-activity-mentions-feed.php:30
|
127 |
+
#: bp-themes/bp-default/activity/index.php:79
|
128 |
+
msgid "Mentions"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: bp-activity/bp-activity-loader.php:159
|
132 |
+
#: bp-activity/bp-activity-loader.php:259
|
133 |
+
msgid "Favorites"
|
134 |
msgstr ""
|
135 |
|
136 |
+
#: bp-activity/bp-activity-loader.php:171
|
137 |
+
#: bp-activity/bp-activity-loader.php:268 bp-friends/bp-friends-loader.php:153
|
138 |
+
#: bp-friends/bp-friends-screens.php:68
|
139 |
+
msgid "Friends"
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: bp-activity/bp-activity-loader.php:184
|
143 |
+
#: bp-activity/bp-activity-loader.php:278 bp-core/admin/bp-core-update.php:470
|
144 |
+
#: bp-core/bp-core-template.php:248 bp-groups/bp-groups-activity.php:135
|
145 |
+
#: bp-groups/bp-groups-activity.php:171 bp-groups/bp-groups-activity.php:207
|
146 |
+
#: bp-groups/bp-groups-activity.php:243 bp-groups/bp-groups-loader.php:395
|
147 |
+
#: bp-groups/bp-groups-screens.php:831 bp-groups/bp-groups-widgets.php:20
|
148 |
+
#: bp-groups/bp-groups-widgets.php:41 bp-groups/bp-groups-widgets.php:107
|
149 |
+
msgid "Groups"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: bp-activity/bp-activity-loader.php:226
|
153 |
+
msgid "Mentions <span class=\"count\">%s</span>"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: bp-activity/bp-activity-loader.php:303
|
157 |
+
msgid "My Activity"
|
|
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: bp-activity/bp-activity-notifications.php:66
|
161 |
+
msgid "%s mentioned you in an update"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: bp-activity/bp-activity-notifications.php:69 bp-core/deprecated/1.5.php:336
|
165 |
+
msgid ""
|
166 |
+
"%1$s mentioned you in the group \"%2$s\":\n"
|
167 |
+
"\n"
|
168 |
+
"\"%3$s\"\n"
|
169 |
+
"\n"
|
170 |
+
"To view and respond to the message, log in and visit: %4$s\n"
|
171 |
+
"\n"
|
172 |
+
"---------------------\n"
|
173 |
msgstr ""
|
174 |
|
175 |
+
#: bp-activity/bp-activity-notifications.php:79
|
176 |
+
msgid ""
|
177 |
+
"%1$s mentioned you in an update:\n"
|
178 |
+
"\n"
|
179 |
+
"\"%2$s\"\n"
|
180 |
+
"\n"
|
181 |
+
"To view and respond to the message, log in and visit: %3$s\n"
|
182 |
+
"\n"
|
183 |
+
"---------------------\n"
|
184 |
msgstr ""
|
185 |
|
186 |
+
#: bp-activity/bp-activity-notifications.php:90
|
187 |
+
#: bp-activity/bp-activity-notifications.php:164
|
188 |
+
#: bp-activity/bp-activity-notifications.php:209 bp-core/deprecated/1.5.php:346
|
189 |
+
#: bp-friends/bp-friends-notifications.php:36
|
190 |
+
#: bp-friends/bp-friends-notifications.php:76
|
191 |
+
#: bp-groups/bp-groups-notifications.php:32
|
192 |
+
#: bp-groups/bp-groups-notifications.php:83
|
193 |
+
#: bp-groups/bp-groups-notifications.php:139
|
194 |
+
#: bp-groups/bp-groups-notifications.php:187
|
195 |
+
#: bp-groups/bp-groups-notifications.php:241
|
196 |
+
#: bp-messages/bp-messages-notifications.php:44
|
197 |
+
msgid "To disable these notifications please log in and go to: %s"
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: bp-activity/bp-activity-notifications.php:152
|
201 |
+
msgid "%s replied to one of your updates"
|
|
|
|
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: bp-activity/bp-activity-notifications.php:154
|
205 |
+
msgid ""
|
206 |
+
"%1$s replied to one of your updates:\n"
|
207 |
+
"\n"
|
208 |
+
"\"%2$s\"\n"
|
209 |
+
"\n"
|
210 |
+
"To view your original update and all comments, log in and visit: %3$s\n"
|
211 |
+
"\n"
|
212 |
+
"---------------------\n"
|
213 |
msgstr ""
|
214 |
|
215 |
+
#: bp-activity/bp-activity-notifications.php:194
|
216 |
+
msgid "%s replied to one of your comments"
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: bp-activity/bp-activity-notifications.php:199
|
220 |
+
msgid ""
|
221 |
+
"%1$s replied to one of your comments:\n"
|
222 |
+
"\n"
|
223 |
+
"\"%2$s\"\n"
|
224 |
+
"\n"
|
225 |
+
"To view the original activity, your comment and all replies, log in and visit: %3$s\n"
|
226 |
+
"\n"
|
227 |
+
"---------------------\n"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: bp-activity/bp-activity-screens.php:245
|
231 |
+
msgid "You do not have access to this activity."
|
|
|
|
|
|
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: bp-activity/bp-activity-screens.php:281 bp-blogs/bp-blogs-template.php:495
|
235 |
+
#: bp-core/admin/bp-core-admin.php:111 bp-core/admin/bp-core-admin.php:121
|
236 |
+
#: bp-core/admin/bp-core-admin.php:129 bp-core/admin/bp-core-admin.php:137
|
237 |
+
#: bp-core/admin/bp-core-admin.php:147 bp-core/admin/bp-core-admin.php:159
|
238 |
+
#: bp-friends/bp-friends-screens.php:69 bp-groups/bp-groups-screens.php:832
|
239 |
+
#: bp-messages/bp-messages-screens.php:150
|
240 |
+
#: bp-themes/bp-default/groups/single/admin.php:26
|
241 |
+
#: bp-themes/bp-default/registration/register.php:205
|
242 |
+
msgid "Yes"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: bp-activity/bp-activity-screens.php:282 bp-blogs/bp-blogs-template.php:499
|
246 |
+
#: bp-core/admin/bp-core-admin.php:112 bp-core/admin/bp-core-admin.php:122
|
247 |
+
#: bp-core/admin/bp-core-admin.php:130 bp-core/admin/bp-core-admin.php:138
|
248 |
+
#: bp-core/admin/bp-core-admin.php:148 bp-core/admin/bp-core-admin.php:160
|
249 |
+
#: bp-friends/bp-friends-screens.php:70 bp-groups/bp-groups-screens.php:833
|
250 |
+
#: bp-messages/bp-messages-screens.php:151
|
251 |
+
#: bp-themes/bp-default/groups/single/admin.php:27
|
252 |
+
#: bp-themes/bp-default/registration/register.php:206
|
253 |
+
msgid "No"
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: bp-activity/bp-activity-screens.php:289
|
257 |
+
msgid "A member mentions you in an update using \"@%s\""
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: bp-activity/bp-activity-screens.php:295
|
261 |
+
msgid "A member replies to an update or comment you've posted"
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: bp-activity/bp-activity-template.php:173
|
265 |
+
msgctxt "Activity pagination previous text"
|
266 |
+
msgid "←"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: bp-activity/bp-activity-template.php:174
|
270 |
+
msgctxt "Activity pagination next text"
|
271 |
+
msgid "→"
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: bp-activity/bp-activity-template.php:453
|
275 |
+
msgid "Viewing item %1$s to %2$s (of %3$s items)"
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: bp-activity/bp-activity-template.php:897
|
279 |
+
#: bp-activity/bp-activity-template.php:1008
|
280 |
+
#: bp-activity/bp-activity-template.php:1017
|
281 |
+
#: bp-forums/bp-forums-template.php:488 bp-forums/bp-forums-template.php:605
|
282 |
+
#: bp-forums/bp-forums-template.php:1192 bp-groups/bp-groups-template.php:572
|
283 |
+
#: bp-groups/bp-groups-template.php:595 bp-groups/bp-groups-template.php:1034
|
284 |
+
#: bp-groups/bp-groups-template.php:1050 bp-groups/bp-groups-template.php:1099
|
285 |
+
#: bp-groups/bp-groups-template.php:1115 bp-groups/bp-groups-template.php:1795
|
286 |
+
#: bp-groups/bp-groups-template.php:1804 bp-groups/bp-groups-template.php:1813
|
287 |
+
#: bp-groups/bp-groups-template.php:2519 bp-members/bp-members-template.php:484
|
288 |
+
#: bp-members/bp-members-template.php:780
|
289 |
+
#: bp-members/bp-members-template.php:800
|
290 |
+
#: bp-themes/bp-default/groups/single/admin.php:185
|
291 |
+
#: bp-themes/bp-default/groups/single/admin.php:210
|
292 |
+
msgid "Profile picture of %s"
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: bp-activity/bp-activity-template.php:992
|
296 |
+
#: bp-groups/bp-groups-template.php:389
|
297 |
+
msgid "Group logo of %s"
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: bp-activity/bp-activity-template.php:1000 bp-blogs/bp-blogs-template.php:282
|
301 |
+
msgid "Site authored by %s"
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: bp-activity/bp-activity-template.php:1191
|
305 |
+
msgid "View Discussion"
|
|
|
|
|
|
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: bp-activity/bp-activity-template.php:2004
|
309 |
+
#: bp-forums/bp-forums-template.php:1263 bp-groups/bp-groups-template.php:1293
|
310 |
+
#: bp-themes/bp-default/activity/comment.php:43
|
311 |
+
#: bp-themes/bp-default/members/single/messages/messages-loop.php:50
|
312 |
+
#: bp-themes/bp-default/members/single/messages/single.php:24
|
313 |
+
#: bp-xprofile/bp-xprofile-admin.php:464
|
314 |
+
msgid "Delete"
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: bp-activity/bp-activity-template.php:2053
|
318 |
+
#: bp-core/admin/bp-core-admin.php:551 bp-core/admin/bp-core-admin.php:604
|
319 |
+
#: bp-members/bp-members-template.php:588
|
320 |
+
#: bp-themes/bp-default/activity/entry.php:37
|
321 |
+
#: bp-themes/bp-default/functions.php:156
|
322 |
+
#: bp-xprofile/bp-xprofile-loader.php:185
|
323 |
+
msgid "View"
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: bp-activity/bp-activity-template.php:2142
|
327 |
+
msgid "xprofile"
|
|
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: bp-activity/bp-activity-template.php:2142
|
331 |
+
msgid "friends"
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: bp-activity/bp-activity-template.php:2142
|
335 |
+
#: bp-core/admin/bp-core-update.php:405
|
336 |
+
msgid "groups"
|
|
|
|
|
|
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: bp-activity/bp-activity-template.php:2142
|
340 |
+
msgid "status"
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: bp-activity/bp-activity-template.php:2142
|
344 |
+
msgid "sites"
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: bp-activity/bp-activity-template.php:2150
|
348 |
+
msgid "Clear Filter"
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: bp-activity/bp-activity-template.php:2340
|
352 |
+
msgid "a user"
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: bp-activity/bp-activity-template.php:2380
|
356 |
+
msgid "Send a public message on your activity stream."
|
357 |
msgstr ""
|
358 |
|
359 |
+
#: bp-activity/bp-activity-template.php:2381
|
360 |
+
msgid "Public Message"
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: bp-activity/bp-activity-template.php:2690
|
364 |
+
msgid "Site Wide Activity RSS Feed"
|
365 |
msgstr ""
|
366 |
|
367 |
+
#: bp-activity/feeds/bp-activity-favorites-feed.php:27
|
368 |
+
#: bp-activity/feeds/bp-activity-favorites-feed.php:30
|
369 |
+
msgid "Favorite Activity"
|
370 |
msgstr ""
|
371 |
|
372 |
+
#: bp-activity/feeds/bp-activity-favorites-feed.php:56
|
373 |
+
#: bp-activity/feeds/bp-activity-friends-feed.php:49
|
374 |
+
#: bp-activity/feeds/bp-activity-group-feed.php:49
|
375 |
+
#: bp-activity/feeds/bp-activity-mentions-feed.php:49
|
376 |
+
#: bp-activity/feeds/bp-activity-mygroups-feed.php:54
|
377 |
+
#: bp-activity/feeds/bp-activity-personal-feed.php:49
|
378 |
+
#: bp-activity/feeds/bp-activity-sitewide-feed.php:49
|
379 |
+
msgid "Comments: %s"
|
380 |
msgstr ""
|
381 |
|
382 |
+
#: bp-activity/feeds/bp-activity-favorites-feed.php:60
|
383 |
+
#: bp-activity/feeds/bp-activity-friends-feed.php:53
|
384 |
+
#: bp-activity/feeds/bp-activity-mentions-feed.php:53
|
385 |
+
#: bp-activity/feeds/bp-activity-personal-feed.php:53
|
386 |
+
msgid "In reply to"
|
387 |
msgstr ""
|
388 |
|
389 |
+
#: bp-activity/feeds/bp-activity-friends-feed.php:27
|
390 |
+
msgid "Friends Activity"
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: bp-activity/feeds/bp-activity-friends-feed.php:30
|
394 |
+
msgid "%s - Friends Activity Feed"
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: bp-activity/feeds/bp-activity-group-feed.php:27
|
398 |
+
msgid "Group Activity"
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: bp-activity/feeds/bp-activity-group-feed.php:30
|
402 |
+
msgid "%s - Group Activity Feed"
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: bp-activity/feeds/bp-activity-mygroups-feed.php:27
|
406 |
+
#: bp-activity/feeds/bp-activity-mygroups-feed.php:30
|
407 |
+
msgid "My Groups - Public Activity"
|
408 |
msgstr ""
|
409 |
|
410 |
+
#: bp-activity/feeds/bp-activity-personal-feed.php:30
|
411 |
+
msgid "%s - Activity Feed"
|
412 |
msgstr ""
|
413 |
|
414 |
+
#: bp-activity/feeds/bp-activity-sitewide-feed.php:27
|
415 |
+
msgid "Site Wide Activity"
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: bp-activity/feeds/bp-activity-sitewide-feed.php:30
|
419 |
+
msgid "Site Wide Activity Feed"
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: bp-blogs/bp-blogs-activity.php:17
|
423 |
+
msgid "New site created"
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: bp-blogs/bp-blogs-activity.php:18
|
427 |
+
msgid "New post published"
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: bp-blogs/bp-blogs-activity.php:19
|
431 |
+
msgid "New post comment posted"
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: bp-blogs/bp-blogs-buddybar.php:25 bp-blogs/bp-blogs-loader.php:156
|
435 |
+
#: bp-blogs/bp-blogs-loader.php:177 bp-core/bp-core-adminbar.php:120
|
436 |
+
msgid "My Sites"
|
437 |
msgstr ""
|
438 |
|
439 |
+
#: bp-blogs/bp-blogs-buddybar.php:37 bp-core/bp-core-adminbar.php:132
|
440 |
+
#: bp-core/bp-core-buddybar.php:481
|
441 |
+
msgid "Dashboard"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: bp-blogs/bp-blogs-buddybar.php:38 bp-core/bp-core-adminbar.php:135
|
445 |
+
#: bp-core/bp-core-buddybar.php:485
|
446 |
+
msgid "New Post"
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: bp-blogs/bp-blogs-buddybar.php:39 bp-core/bp-core-buddybar.php:486
|
450 |
+
msgid "Manage Posts"
|
|
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: bp-blogs/bp-blogs-buddybar.php:40 bp-core/bp-core-adminbar.php:136
|
454 |
+
#: bp-core/bp-core-buddybar.php:487
|
455 |
+
msgid "Manage Comments"
|
456 |
msgstr ""
|
457 |
|
458 |
+
#: bp-blogs/bp-blogs-buddybar.php:53
|
459 |
+
msgid "Create a Site!"
|
|
|
|
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: bp-blogs/bp-blogs-functions.php:115
|
463 |
+
msgid "%s created the site %s"
|
|
|
|
|
464 |
msgstr ""
|
465 |
|
466 |
+
#: bp-blogs/bp-blogs-functions.php:187
|
467 |
+
msgid "%1$s wrote a new post, %2$s, on the site %3$s"
|
|
|
|
|
|
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: bp-blogs/bp-blogs-functions.php:189
|
471 |
+
msgid "%1$s wrote a new post, %2$s"
|
|
|
|
|
|
|
|
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: bp-blogs/bp-blogs-functions.php:272
|
475 |
+
msgid "%1$s commented on the post, %2$s, on the site %3$s"
|
|
|
476 |
msgstr ""
|
477 |
|
478 |
+
#: bp-blogs/bp-blogs-functions.php:274
|
479 |
+
msgid "%1$s commented on the post, %2$s"
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: bp-blogs/bp-blogs-loader.php:24 bp-core/admin/bp-core-admin.php:370
|
483 |
+
msgid "Site Tracking"
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: bp-blogs/bp-blogs-loader.php:58
|
487 |
+
msgid "Search sites..."
|
488 |
msgstr ""
|
489 |
|
490 |
+
#: bp-blogs/bp-blogs-loader.php:108
|
491 |
+
msgid "Sites <span>%d</span>"
|
492 |
msgstr ""
|
493 |
|
494 |
+
#: bp-blogs/bp-blogs-loader.php:148 bp-core/admin/bp-core-update.php:501
|
495 |
+
msgid "Sites"
|
496 |
msgstr ""
|
497 |
|
498 |
+
#: bp-blogs/bp-blogs-template.php:135
|
499 |
+
msgctxt "Blog pagination previous text"
|
500 |
+
msgid "←"
|
501 |
msgstr ""
|
502 |
|
503 |
+
#: bp-blogs/bp-blogs-template.php:136
|
504 |
+
msgctxt "Blog pagination next text"
|
505 |
+
msgid "→"
|
506 |
msgstr ""
|
507 |
|
508 |
+
#: bp-blogs/bp-blogs-template.php:258
|
509 |
+
msgid "Viewing site %1$s to %2$s (of %3$s sites)"
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: bp-blogs/bp-blogs-template.php:345 bp-core/bp-core-classes.php:175
|
513 |
+
#: bp-groups/bp-groups-widgets.php:70 bp-groups/bp-groups-widgets.php:170
|
514 |
+
#: bp-members/bp-members-template.php:559
|
515 |
+
#: bp-members/bp-members-template.php:833
|
516 |
+
#: bp-themes/bp-default/groups/groups-loop.php:47
|
517 |
+
#: bp-themes/bp-default/groups/single/group-header.php:42
|
518 |
+
msgid "active %s"
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: bp-blogs/bp-blogs-template.php:357
|
522 |
+
msgid "Latest Post: %s"
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: bp-blogs/bp-blogs-template.php:421
|
526 |
+
msgid "There was a problem, please correct the form below and try again."
|
527 |
+
msgstr ""
|
528 |
+
|
529 |
+
#: bp-blogs/bp-blogs-template.php:424
|
530 |
+
msgid "By filling out the form below, you can <strong>add a site to your account</strong>. There is no limit to the number of sites that you can have, so create to your heart's content, but blog responsibly!"
|
531 |
+
msgstr ""
|
532 |
+
|
533 |
+
#: bp-blogs/bp-blogs-template.php:426
|
534 |
+
msgid "If you’re not going to use a great domain, leave it for a new user. Now have at it!"
|
535 |
+
msgstr ""
|
536 |
+
|
537 |
+
#: bp-blogs/bp-blogs-template.php:435
|
538 |
+
msgid "Create Site"
|
539 |
+
msgstr ""
|
540 |
+
|
541 |
+
#: bp-blogs/bp-blogs-template.php:449
|
542 |
+
msgid "Site Name:"
|
543 |
+
msgstr ""
|
544 |
+
|
545 |
+
#: bp-blogs/bp-blogs-template.php:451
|
546 |
+
msgid "Site Domain:"
|
547 |
+
msgstr ""
|
548 |
+
|
549 |
+
#: bp-blogs/bp-blogs-template.php:465
|
550 |
+
msgid "Your address will be "
|
551 |
+
msgstr ""
|
552 |
+
|
553 |
+
#: bp-blogs/bp-blogs-template.php:468
|
554 |
+
msgid "blogname"
|
555 |
+
msgstr ""
|
556 |
+
|
557 |
+
#: bp-blogs/bp-blogs-template.php:470
|
558 |
+
msgid "domain."
|
559 |
+
msgstr ""
|
560 |
+
|
561 |
+
#: bp-blogs/bp-blogs-template.php:473
|
562 |
+
msgid "Must be at least 4 characters, letters and numbers only. It cannot be changed so choose carefully!)"
|
563 |
+
msgstr ""
|
564 |
+
|
565 |
+
#: bp-blogs/bp-blogs-template.php:479
|
566 |
+
msgid "Site Title:"
|
567 |
+
msgstr ""
|
568 |
+
|
569 |
+
#: bp-blogs/bp-blogs-template.php:490
|
570 |
+
msgid "Privacy:"
|
571 |
+
msgstr ""
|
572 |
+
|
573 |
+
#: bp-blogs/bp-blogs-template.php:491
|
574 |
+
#: bp-themes/bp-default/registration/register.php:202
|
575 |
+
msgid "I would like my site to appear in search engines, and in public listings around this network."
|
576 |
+
msgstr ""
|
577 |
+
|
578 |
+
#: bp-blogs/bp-blogs-template.php:574
|
579 |
+
msgid "Congratulations! You have successfully registered a new site."
|
580 |
+
msgstr ""
|
581 |
+
|
582 |
+
#: bp-blogs/bp-blogs-template.php:576
|
583 |
+
msgid "<a href=\"%1$s\">%2$s</a> is your new site. <a href=\"%3$s\">Login</a> as \"%4$s\" using your existing password."
|
584 |
+
msgstr ""
|
585 |
+
|
586 |
+
#: bp-blogs/bp-blogs-template.php:587 bp-core/bp-core-filters.php:320
|
587 |
+
#: bp-themes/bp-default/blogs/create.php:21
|
588 |
+
#: bp-themes/bp-default/blogs/index.php:23
|
589 |
+
msgid "Create a Site"
|
590 |
+
msgstr ""
|
591 |
+
|
592 |
+
#: bp-blogs/bp-blogs-template.php:600
|
593 |
+
msgid "%s's Sites"
|
594 |
+
msgstr ""
|
595 |
+
|
596 |
+
#: bp-blogs/bp-blogs-template.php:601
|
597 |
+
msgid "%s's Recent Posts"
|
598 |
+
msgstr ""
|
599 |
+
|
600 |
+
#: bp-blogs/bp-blogs-template.php:602
|
601 |
+
msgid "%s's Recent Comments"
|
602 |
+
msgstr ""
|
603 |
+
|
604 |
+
#: bp-blogs/bp-blogs-template.php:617 bp-core/deprecated/1.5.php:396
|
605 |
+
#: bp-forums/bp-forums-template.php:1313 bp-groups/bp-groups-template.php:2261
|
606 |
+
#: bp-members/bp-members-template.php:674 bp-themes/bp-default/header.php:35
|
607 |
+
#: bp-themes/bp-default/searchform.php:5
|
608 |
+
msgid "Search"
|
609 |
+
msgstr ""
|
610 |
+
|
611 |
+
#: bp-blogs/bp-blogs-template.php:650 bp-blogs/bp-blogs-template.php:651
|
612 |
+
#: bp-core/bp-core-adminbar.php:139
|
613 |
+
msgid "Visit Site"
|
614 |
+
msgstr ""
|
615 |
+
|
616 |
+
#: bp-blogs/bp-blogs-widgets.php:25
|
617 |
+
msgid "Recent Networkwide Posts"
|
618 |
+
msgstr ""
|
619 |
+
|
620 |
+
#: bp-blogs/bp-blogs-widgets.php:68
|
621 |
+
msgid "Sorry, there were no posts found. Why not write one?"
|
622 |
+
msgstr ""
|
623 |
+
|
624 |
+
#: bp-blogs/bp-blogs-widgets.php:88
|
625 |
+
msgid "Max posts to show:"
|
626 |
+
msgstr ""
|
627 |
+
|
628 |
+
#: bp-core/admin/bp-core-admin.php:11
|
629 |
+
msgid "IMPORTANT: <a href=\"http://codex.buddypress.org/buddypress-site-administration/upgrading-buddypress/\">Read this before attempting to update BuddyPress</a>"
|
630 |
+
msgstr ""
|
631 |
+
|
632 |
+
#: bp-core/admin/bp-core-admin.php:32 bp-core/admin/bp-core-admin.php:251
|
633 |
+
#: bp-core/admin/bp-core-update.php:72 bp-core/admin/bp-core-update.php:88
|
634 |
+
#: bp-core/admin/bp-core-update.php:219 bp-core/bp-core-functions.php:253
|
635 |
+
msgid "Components"
|
636 |
+
msgstr ""
|
637 |
+
|
638 |
+
#: bp-core/admin/bp-core-admin.php:36 bp-core/admin/bp-core-admin.php:293
|
639 |
+
#: bp-core/admin/bp-core-update.php:73 bp-core/admin/bp-core-update.php:89
|
640 |
+
#: bp-core/admin/bp-core-update.php:223 bp-core/bp-core-functions.php:254
|
641 |
+
msgid "Pages"
|
642 |
+
msgstr ""
|
643 |
+
|
644 |
+
#: bp-core/admin/bp-core-admin.php:40 bp-core/admin/bp-core-admin.php:91
|
645 |
+
#: bp-core/bp-core-functions.php:255 bp-groups/bp-groups-loader.php:189
|
646 |
+
#: bp-groups/bp-groups-template.php:1279 bp-settings/bp-settings-loader.php:15
|
647 |
+
#: bp-settings/bp-settings-loader.php:72 bp-settings/bp-settings-loader.php:150
|
648 |
+
msgid "Settings"
|
649 |
+
msgstr ""
|
650 |
+
|
651 |
+
#: bp-core/admin/bp-core-admin.php:48 bp-core/admin/bp-core-update.php:485
|
652 |
+
#: bp-core/bp-core-template.php:254 bp-forums/bp-forums-admin.php:12
|
653 |
+
#: bp-forums/bp-forums-admin.php:25 bp-forums/bp-forums-admin.php:265
|
654 |
+
#: bp-forums/bp-forums-loader.php:111 bp-forums/bp-forums-loader.php:194
|
655 |
+
#: bp-forums/bp-forums-loader.php:237
|
656 |
+
msgid "Forums"
|
657 |
+
msgstr ""
|
658 |
+
|
659 |
+
#: bp-core/admin/bp-core-admin.php:96 bp-core/admin/bp-core-admin.php:257
|
660 |
+
#: bp-core/admin/bp-core-admin.php:299
|
661 |
+
msgid "Settings Saved"
|
662 |
+
msgstr ""
|
663 |
+
|
664 |
+
#: bp-core/admin/bp-core-admin.php:109
|
665 |
+
msgid "Disable BuddyPress to WordPress profile syncing?"
|
666 |
+
msgstr ""
|
667 |
+
|
668 |
+
#: bp-core/admin/bp-core-admin.php:119
|
669 |
+
msgid "Hide admin bar for logged out users?"
|
670 |
+
msgstr ""
|
671 |
+
|
672 |
+
#: bp-core/admin/bp-core-admin.php:127
|
673 |
+
msgid "Disable avatar uploads? (Gravatars will still work)"
|
674 |
+
msgstr ""
|
675 |
+
|
676 |
+
#: bp-core/admin/bp-core-admin.php:135
|
677 |
+
msgid "Disable user account deletion?"
|
678 |
+
msgstr ""
|
679 |
+
|
680 |
+
#: bp-core/admin/bp-core-admin.php:145
|
681 |
+
msgid "Disable activity stream commenting on blog and forum posts?"
|
682 |
+
msgstr ""
|
683 |
+
|
684 |
+
#: bp-core/admin/bp-core-admin.php:157
|
685 |
+
msgid "Restrict group creation to Site Admins?"
|
686 |
+
msgstr ""
|
687 |
+
|
688 |
+
#: bp-core/admin/bp-core-admin.php:174 bp-core/admin/bp-core-admin.php:268
|
689 |
+
msgid "Save Settings"
|
690 |
+
msgstr ""
|
691 |
+
|
692 |
+
#: bp-core/admin/bp-core-admin.php:310
|
693 |
+
msgid "Save All"
|
694 |
+
msgstr ""
|
695 |
+
|
696 |
+
#: bp-core/admin/bp-core-admin.php:342 bp-xprofile/bp-xprofile-loader.php:25
|
697 |
+
msgid "Extended Profiles"
|
698 |
+
msgstr ""
|
699 |
+
|
700 |
+
#: bp-core/admin/bp-core-admin.php:343
|
701 |
+
msgid "Customize your community with fully editable profile fields that allow your users to describe themselves."
|
702 |
+
msgstr ""
|
703 |
+
|
704 |
+
#: bp-core/admin/bp-core-admin.php:346
|
705 |
msgid "Account Settings"
|
706 |
msgstr ""
|
707 |
|
725 |
msgid "Allow your users to talk to each other directly and in private. Not just limited to one-on-one discussions, messages can be sent between any number of members."
|
726 |
msgstr ""
|
727 |
|
|
|
|
|
|
|
|
|
728 |
#: bp-core/admin/bp-core-admin.php:359
|
729 |
msgid "Global, personal, and group activity streams with threaded commenting, direct posting, favoriting and @mentions, all with full RSS feed and email notification support."
|
730 |
msgstr ""
|
806 |
msgid "Save"
|
807 |
msgstr ""
|
808 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
809 |
#: bp-core/admin/bp-core-admin.php:573 bp-core/admin/bp-core-update.php:514
|
810 |
+
#: bp-core/bp-core-functions.php:414 bp-members/bp-members-adminbar.php:104
|
811 |
msgid "Register"
|
812 |
msgstr ""
|
813 |
|
825 |
msgid "Associate WordPress Pages with the following BuddyPress Registration pages."
|
826 |
msgstr ""
|
827 |
|
828 |
+
#: bp-core/admin/bp-core-schema.php:208
|
829 |
+
msgctxt "First XProfile group name"
|
830 |
+
msgid "Base"
|
831 |
+
msgstr ""
|
832 |
+
|
833 |
+
#: bp-core/admin/bp-core-schema.php:209
|
834 |
+
msgctxt "XProfile fullname field name"
|
835 |
+
msgid "Name"
|
836 |
+
msgstr ""
|
837 |
+
|
838 |
#: bp-core/admin/bp-core-update.php:74 bp-core/admin/bp-core-update.php:227
|
839 |
msgid "Permalinks"
|
840 |
msgstr ""
|
878 |
msgid "Save & Next"
|
879 |
msgstr ""
|
880 |
|
881 |
+
#: bp-core/admin/bp-core-update.php:215
|
882 |
#: bp-themes/bp-default/blogs/create.php:21
|
883 |
+
#: bp-themes/bp-default/blogs/index.php:23
|
884 |
msgid "Site Directory"
|
885 |
msgstr ""
|
886 |
|
949 |
msgid "members"
|
950 |
msgstr ""
|
951 |
|
|
|
|
|
|
|
|
|
|
|
952 |
#: bp-core/admin/bp-core-update.php:408
|
953 |
msgid "activity"
|
954 |
msgstr ""
|
977 |
msgid "Either choose an existing page or let BuddyPress auto-create pages for you. To manually create custom pages, come back to this step once you are finished."
|
978 |
msgstr ""
|
979 |
|
980 |
+
#: bp-core/admin/bp-core-update.php:442 bp-core/bp-core-template.php:245
|
981 |
+
#: bp-core/bp-core-widgets.php:23 bp-core/bp-core-widgets.php:110
|
982 |
+
#: bp-groups/bp-groups-template.php:1285 bp-members/bp-members-loader.php:24
|
983 |
+
#: bp-themes/bp-default/groups/single/admin.php:229
|
984 |
+
msgid "Members"
|
985 |
+
msgstr ""
|
986 |
+
|
987 |
#: bp-core/admin/bp-core-update.php:443
|
988 |
msgid "Displays member profiles, and a directory of all site members."
|
989 |
msgstr ""
|
997 |
msgid "Displays the activity for the entire site, a member's friends, groups and @mentions."
|
998 |
msgstr ""
|
999 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1000 |
#: bp-core/admin/bp-core-update.php:471
|
1001 |
msgid "Displays individual groups as well as a directory of groups."
|
1002 |
msgstr ""
|
1170 |
msgid "BuddyPress was successfully installed! Please run the <a href=\"%s\">installation wizard</a>."
|
1171 |
msgstr ""
|
1172 |
|
1173 |
+
#: bp-core/bp-core-adminbar.php:91
|
1174 |
+
msgid "Admin Dashboard"
|
1175 |
msgstr ""
|
1176 |
|
1177 |
+
#: bp-core/bp-core-adminbar.php:102
|
1178 |
+
msgid "Network Dashboard"
|
1179 |
msgstr ""
|
1180 |
|
1181 |
+
#: bp-core/bp-core-adminbar.php:127
|
1182 |
+
msgid "Blavatar"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
+
#: bp-core/bp-core-adminbar.php:156
|
1186 |
+
msgid "Comments %s"
|
1187 |
msgstr ""
|
1188 |
|
1189 |
+
#: bp-core/bp-core-adminbar.php:169
|
1190 |
+
msgid "Appearance"
|
1191 |
msgstr ""
|
1192 |
|
1193 |
+
#: bp-core/bp-core-adminbar.php:175
|
1194 |
+
msgid "Themes"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
+
#: bp-core/bp-core-adminbar.php:178
|
1198 |
+
msgid "Widgets"
|
1199 |
msgstr ""
|
1200 |
|
1201 |
+
#: bp-core/bp-core-adminbar.php:181
|
1202 |
+
msgid "Menus"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
+
#: bp-core/bp-core-adminbar.php:184
|
1206 |
+
msgid "Background"
|
1207 |
msgstr ""
|
1208 |
|
1209 |
+
#: bp-core/bp-core-adminbar.php:187
|
1210 |
+
msgid "Header"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
+
#: bp-core/bp-core-adminbar.php:219
|
1214 |
+
msgid "%d WordPress Update"
|
1215 |
msgstr ""
|
1216 |
|
1217 |
+
#: bp-core/bp-core-adminbar.php:221
|
1218 |
+
msgid "%d Plugin Update"
|
1219 |
+
msgid_plural "%d Plugin Updates"
|
1220 |
+
msgstr[0] ""
|
1221 |
+
msgstr[1] ""
|
1222 |
|
1223 |
+
#: bp-core/bp-core-adminbar.php:223
|
1224 |
+
msgid "%d Theme Update"
|
1225 |
+
msgid_plural "%d Theme Updates"
|
1226 |
+
msgstr[0] ""
|
1227 |
+
msgstr[1] ""
|
1228 |
+
|
1229 |
+
#: bp-core/bp-core-adminbar.php:228
|
1230 |
+
msgid "Updates %s"
|
1231 |
msgstr ""
|
1232 |
|
1233 |
+
#: bp-core/bp-core-avatars.php:91
|
1234 |
+
msgid "Avatar Image"
|
1235 |
msgstr ""
|
1236 |
|
1237 |
+
#: bp-core/bp-core-avatars.php:401
|
1238 |
+
msgid "There is no error, the file uploaded with success"
|
1239 |
msgstr ""
|
1240 |
|
1241 |
+
#: bp-core/bp-core-avatars.php:402 bp-core/bp-core-avatars.php:403
|
1242 |
+
msgid "Your image was bigger than the maximum allowed file size of: "
|
|
|
|
|
|
|
1243 |
msgstr ""
|
1244 |
|
1245 |
+
#: bp-core/bp-core-avatars.php:404
|
1246 |
+
msgid "The uploaded file was only partially uploaded"
|
1247 |
msgstr ""
|
1248 |
|
1249 |
+
#: bp-core/bp-core-avatars.php:405
|
1250 |
+
msgid "No file was uploaded"
|
1251 |
msgstr ""
|
1252 |
|
1253 |
+
#: bp-core/bp-core-avatars.php:406
|
1254 |
+
msgid "Missing a temporary folder"
|
1255 |
+
msgstr ""
|
1256 |
+
|
1257 |
+
#: bp-core/bp-core-avatars.php:410
|
1258 |
+
msgid "Your upload failed, please try again. Error was: %s"
|
1259 |
+
msgstr ""
|
1260 |
+
|
1261 |
+
#: bp-core/bp-core-avatars.php:415
|
1262 |
+
msgid "The file you uploaded is too big. Please upload a file under %s"
|
1263 |
+
msgstr ""
|
1264 |
+
|
1265 |
+
#: bp-core/bp-core-avatars.php:420
|
1266 |
+
msgid "Please upload only JPG, GIF or PNG photos."
|
1267 |
+
msgstr ""
|
1268 |
+
|
1269 |
+
#: bp-core/bp-core-avatars.php:431 bp-core/bp-core-avatars.php:444
|
1270 |
+
msgid "Upload Failed! Error was: %s"
|
1271 |
+
msgstr ""
|
1272 |
+
|
1273 |
+
#: bp-core/bp-core-avatars.php:462
|
1274 |
+
msgid "Upload failed! Error was: %s"
|
1275 |
+
msgstr ""
|
1276 |
+
|
1277 |
+
#: bp-core/bp-core-avatars.php:595
|
1278 |
+
msgid "Avatar of %s"
|
1279 |
+
msgstr ""
|
1280 |
+
|
1281 |
+
#: bp-core/bp-core-buddybar.php:244
|
1282 |
+
msgid "You do not have access to this page."
|
1283 |
+
msgstr ""
|
1284 |
+
|
1285 |
+
#: bp-core/bp-core-buddybar.php:415 bp-themes/bp-default/sidebar.php:53
|
1286 |
+
msgid "Log In"
|
1287 |
+
msgstr ""
|
1288 |
+
|
1289 |
+
#: bp-core/bp-core-buddybar.php:419
|
1290 |
+
msgid "Sign Up"
|
1291 |
+
msgstr ""
|
1292 |
+
|
1293 |
+
#: bp-core/bp-core-buddybar.php:431
|
1294 |
+
msgid "My Account"
|
1295 |
+
msgstr ""
|
1296 |
+
|
1297 |
+
#: bp-core/bp-core-buddybar.php:473 bp-core/deprecated/1.5.php:287
|
1298 |
+
#: bp-members/bp-members-adminbar.php:285
|
1299 |
+
#: bp-members/bp-members-template.php:734 bp-themes/bp-default/sidebar.php:18
|
1300 |
+
msgid "Log Out"
|
1301 |
+
msgstr ""
|
1302 |
+
|
1303 |
+
#: bp-core/bp-core-buddybar.php:502
|
1304 |
+
msgid "Visit"
|
1305 |
+
msgstr ""
|
1306 |
+
|
1307 |
+
#: bp-core/bp-core-buddybar.php:504
|
1308 |
+
msgid "Random Member"
|
1309 |
+
msgstr ""
|
1310 |
+
|
1311 |
+
#: bp-core/bp-core-buddybar.php:508
|
1312 |
+
msgid "Random Group"
|
1313 |
+
msgstr ""
|
1314 |
+
|
1315 |
+
#: bp-core/bp-core-buddybar.php:514
|
1316 |
+
msgid "Random Site"
|
1317 |
+
msgstr ""
|
1318 |
+
|
1319 |
+
#: bp-core/bp-core-catchuri.php:258
|
1320 |
+
msgid "This user has been marked as a spammer. Only site admins can view this profile."
|
1321 |
+
msgstr ""
|
1322 |
+
|
1323 |
+
#: bp-core/bp-core-catchuri.php:402 bp-core/bp-core-catchuri.php:459
|
1324 |
+
msgid "You must log in to access the page you requested."
|
1325 |
+
msgstr ""
|
1326 |
+
|
1327 |
+
#: bp-core/bp-core-classes.php:191
|
1328 |
+
msgid "%d group"
|
1329 |
+
msgid_plural "%d groups"
|
1330 |
+
msgstr[0] ""
|
1331 |
+
msgstr[1] ""
|
1332 |
+
|
1333 |
+
#: bp-core/bp-core-cssjs.php:49
|
1334 |
+
msgid "Are you sure?"
|
1335 |
msgstr ""
|
1336 |
|
1337 |
#: bp-core/bp-core-filters.php:163 bp-core/bp-core-filters.php:187
|
1395 |
msgid "Activate your Account"
|
1396 |
msgstr ""
|
1397 |
|
1398 |
+
#: bp-core/bp-core-filters.php:316 bp-themes/bp-default/groups/create.php:18
|
1399 |
+
#: bp-themes/bp-default/groups/index.php:23
|
1400 |
msgid "Create a Group"
|
1401 |
msgstr ""
|
1402 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1403 |
#: bp-core/bp-core-functions.php:371
|
1404 |
msgid "<strong>BuddyPress is almost ready</strong>. You must <a href=\"%s\">update your permalink structure</a> to something other than the default for it to work."
|
1405 |
msgstr ""
|
1493 |
msgid "not recently active"
|
1494 |
msgstr ""
|
1495 |
|
1496 |
+
#: bp-core/bp-core-loader.php:210 bp-members/bp-members-loader.php:141
|
1497 |
+
#: bp-xprofile/bp-xprofile-loader.php:113
|
1498 |
+
#: bp-xprofile/bp-xprofile-loader.php:177
|
1499 |
+
msgid "Profile"
|
|
|
|
|
1500 |
msgstr ""
|
1501 |
|
1502 |
+
#: bp-core/bp-core-loader.php:221 bp-groups/bp-groups-template.php:520
|
1503 |
+
#: bp-members/bp-members-loader.php:156 bp-xprofile/bp-xprofile-loader.php:125
|
1504 |
+
msgid "Public"
|
1505 |
msgstr ""
|
1506 |
|
1507 |
+
#: bp-core/bp-core-template.php:64
|
1508 |
+
msgid "Options"
|
1509 |
msgstr ""
|
1510 |
|
1511 |
+
#: bp-core/bp-core-template.php:190
|
1512 |
+
msgid "%1$s at %2$s"
|
1513 |
msgstr ""
|
1514 |
|
1515 |
+
#: bp-core/bp-core-template.php:251
|
1516 |
+
msgid "Blogs"
|
1517 |
msgstr ""
|
1518 |
|
1519 |
+
#: bp-core/bp-core-template.php:256 bp-themes/bp-default/activity/index.php:101
|
1520 |
+
#: bp-themes/bp-default/forums/forums-loop.php:40
|
1521 |
+
#: bp-themes/bp-default/members/single/activity.php:27
|
1522 |
+
msgid "Posts"
|
1523 |
msgstr ""
|
1524 |
|
1525 |
+
#: bp-core/bp-core-template.php:259
|
1526 |
+
msgid "Search these:"
|
1527 |
msgstr ""
|
1528 |
|
1529 |
+
#: bp-core/bp-core-template.php:287
|
1530 |
+
msgid "Search anything..."
|
1531 |
msgstr ""
|
1532 |
|
1533 |
+
#: bp-core/bp-core-template.php:381
|
1534 |
+
msgid " […]"
|
1535 |
msgstr ""
|
1536 |
|
1537 |
+
#: bp-core/bp-core-widgets.php:22
|
1538 |
+
msgid "A dynamic list of recently active, popular, and newest members"
|
|
|
1539 |
msgstr ""
|
1540 |
|
1541 |
+
#: bp-core/bp-core-widgets.php:48 bp-core/bp-core-widgets.php:128
|
1542 |
+
#: bp-friends/bp-friends-template.php:63 bp-friends/bp-friends-template.php:84
|
1543 |
+
#: bp-groups/bp-groups-widgets.php:50 bp-groups/bp-groups-widgets.php:125
|
1544 |
+
#: bp-themes/bp-default/blogs/index.php:58
|
1545 |
+
#: bp-themes/bp-default/members/single/blogs.php:22
|
1546 |
+
msgid "Newest"
|
1547 |
msgstr ""
|
1548 |
|
1549 |
+
#: bp-core/bp-core-widgets.php:49 bp-core/bp-core-widgets.php:129
|
1550 |
+
#: bp-groups/bp-groups-widgets.php:51 bp-groups/bp-groups-widgets.php:126
|
1551 |
+
msgid "Active"
|
1552 |
msgstr ""
|
1553 |
|
1554 |
+
#: bp-core/bp-core-widgets.php:53 bp-core/bp-core-widgets.php:130
|
1555 |
+
#: bp-groups/bp-groups-widgets.php:52 bp-groups/bp-groups-widgets.php:127
|
1556 |
+
msgid "Popular"
|
1557 |
msgstr ""
|
1558 |
|
1559 |
+
#: bp-core/bp-core-widgets.php:90
|
1560 |
+
msgid "No one has signed up yet!"
|
|
|
|
|
|
|
1561 |
msgstr ""
|
1562 |
|
1563 |
+
#: bp-core/bp-core-widgets.php:121 bp-core/bp-core-widgets.php:201
|
1564 |
+
#: bp-core/bp-core-widgets.php:270 bp-groups/bp-groups-widgets.php:118
|
1565 |
+
#: bp-themes/bp-default/forums/index.php:104
|
1566 |
+
#: bp-themes/bp-default/groups/single/forum/edit.php:49
|
1567 |
+
#: bp-themes/bp-default/groups/single/forum.php:75
|
1568 |
+
msgid "Title:"
|
1569 |
msgstr ""
|
1570 |
|
1571 |
+
#: bp-core/bp-core-widgets.php:123
|
1572 |
+
msgid "Max members to show:"
|
1573 |
msgstr ""
|
1574 |
|
1575 |
+
#: bp-core/bp-core-widgets.php:126
|
1576 |
+
msgid "Default members to show:"
|
1577 |
msgstr ""
|
1578 |
|
1579 |
+
#: bp-core/bp-core-widgets.php:148
|
1580 |
+
msgid "Avatars of users who are currently online"
|
|
|
|
|
1581 |
msgstr ""
|
1582 |
|
1583 |
+
#: bp-core/bp-core-widgets.php:149
|
1584 |
+
msgid "Who's Online Avatars"
|
1585 |
msgstr ""
|
1586 |
|
1587 |
+
#: bp-core/bp-core-widgets.php:173
|
1588 |
+
msgid "There are no users currently online"
|
1589 |
msgstr ""
|
1590 |
|
1591 |
+
#: bp-core/bp-core-widgets.php:192
|
1592 |
+
msgid "Who's Online"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1593 |
msgstr ""
|
1594 |
|
1595 |
+
#: bp-core/bp-core-widgets.php:203 bp-core/bp-core-widgets.php:272
|
1596 |
+
msgid "Max Members to show:"
|
|
|
1597 |
msgstr ""
|
1598 |
|
1599 |
+
#: bp-core/bp-core-widgets.php:217
|
1600 |
+
msgid "Avatars of recently active members"
|
|
|
|
|
|
|
|
|
|
|
1601 |
msgstr ""
|
1602 |
|
1603 |
+
#: bp-core/bp-core-widgets.php:218
|
1604 |
+
msgid "Recently Active Member Avatars"
|
|
|
1605 |
msgstr ""
|
1606 |
|
1607 |
+
#: bp-core/bp-core-widgets.php:242
|
1608 |
+
msgid "There are no recently active members"
|
|
|
1609 |
msgstr ""
|
1610 |
|
1611 |
+
#: bp-core/bp-core-widgets.php:328
|
1612 |
+
msgid "There were no members found, please try another filter."
|
1613 |
msgstr ""
|
1614 |
|
1615 |
+
#: bp-core/deprecated/1.5.php:135
|
1616 |
+
#: bp-themes/bp-default/activity/post-form.php:45
|
1617 |
+
#: bp-themes/bp-default/members/single/profile/profile-wp.php:8
|
1618 |
+
#: bp-xprofile/bp-xprofile-loader.php:220
|
1619 |
+
msgid "My Profile"
|
1620 |
msgstr ""
|
1621 |
|
1622 |
+
#: bp-core/deprecated/1.5.php:142 bp-themes/bp-default/functions.php:634
|
1623 |
+
#: bp-themes/bp-default/members/single/profile/profile-wp.php:15
|
1624 |
+
msgid "Name"
|
1625 |
msgstr ""
|
1626 |
|
1627 |
+
#: bp-core/deprecated/1.5.php:151
|
1628 |
+
#: bp-themes/bp-default/members/single/profile/profile-wp.php:24
|
1629 |
+
msgid "About Me"
|
1630 |
msgstr ""
|
1631 |
|
1632 |
+
#: bp-core/deprecated/1.5.php:160 bp-themes/bp-default/functions.php:638
|
1633 |
+
#: bp-themes/bp-default/members/single/profile/profile-wp.php:33
|
1634 |
+
msgid "Website"
|
1635 |
msgstr ""
|
1636 |
|
1637 |
+
#: bp-core/deprecated/1.5.php:169
|
1638 |
+
#: bp-themes/bp-default/members/single/profile/profile-wp.php:42
|
1639 |
+
msgid "Jabber"
|
1640 |
msgstr ""
|
1641 |
|
1642 |
+
#: bp-core/deprecated/1.5.php:178
|
1643 |
+
#: bp-themes/bp-default/members/single/profile/profile-wp.php:51
|
1644 |
+
msgid "AOL Messenger"
|
1645 |
msgstr ""
|
1646 |
|
1647 |
+
#: bp-core/deprecated/1.5.php:187
|
1648 |
+
#: bp-themes/bp-default/members/single/profile/profile-wp.php:60
|
1649 |
+
msgid "Yahoo Messenger"
|
1650 |
msgstr ""
|
1651 |
|
1652 |
+
#: bp-core/deprecated/1.5.php:334
|
1653 |
+
msgid "%1$s mentioned you in the group \"%2$s\""
|
1654 |
msgstr ""
|
1655 |
|
1656 |
+
#: bp-forums/bp-forums-admin.php:30
|
1657 |
+
msgid "Settings Saved."
|
|
|
|
|
1658 |
msgstr ""
|
1659 |
|
1660 |
+
#: bp-forums/bp-forums-admin.php:46
|
1661 |
+
msgid "(Installed)"
|
|
|
1662 |
msgstr ""
|
1663 |
|
1664 |
+
#: bp-forums/bp-forums-admin.php:46 bp-forums/bp-forums-admin.php:163
|
1665 |
+
msgid "Forums for Groups"
|
|
|
|
|
1666 |
msgstr ""
|
1667 |
|
1668 |
+
#: bp-forums/bp-forums-admin.php:48 bp-forums/bp-forums-admin.php:165
|
1669 |
+
msgid "Give each individual group its own discussion forum. Choose this if you'd like to keep your members' conversations separated into distinct areas."
|
1670 |
msgstr ""
|
1671 |
|
1672 |
+
#: bp-forums/bp-forums-admin.php:49 bp-forums/bp-forums-admin.php:166
|
1673 |
+
msgid "You may use an existing bbPress installation if you have one."
|
1674 |
msgstr ""
|
1675 |
|
1676 |
+
#: bp-forums/bp-forums-admin.php:51 bp-forums/bp-forums-admin.php:69
|
1677 |
+
#: bp-forums/bp-forums-admin.php:168 bp-forums/bp-forums-admin.php:187
|
1678 |
+
msgid "Features"
|
1679 |
msgstr ""
|
1680 |
|
1681 |
+
#: bp-forums/bp-forums-admin.php:53 bp-forums/bp-forums-admin.php:170
|
1682 |
+
msgid "Group Integration"
|
1683 |
msgstr ""
|
1684 |
|
1685 |
+
#: bp-forums/bp-forums-admin.php:54 bp-forums/bp-forums-admin.php:171
|
1686 |
+
msgid "Member Profile Integration"
|
1687 |
msgstr ""
|
1688 |
|
1689 |
+
#: bp-forums/bp-forums-admin.php:55 bp-forums/bp-forums-admin.php:73
|
1690 |
+
#: bp-forums/bp-forums-admin.php:172 bp-forums/bp-forums-admin.php:191
|
1691 |
+
msgid "Activity Stream Integration"
|
1692 |
msgstr ""
|
1693 |
|
1694 |
+
#: bp-forums/bp-forums-admin.php:56 bp-forums/bp-forums-admin.php:74
|
1695 |
+
#: bp-forums/bp-forums-admin.php:173 bp-forums/bp-forums-admin.php:192
|
1696 |
+
msgid "@ Mention Integration"
|
1697 |
msgstr ""
|
1698 |
|
1699 |
+
#: bp-forums/bp-forums-admin.php:60
|
1700 |
+
msgid "Uninstall Group Forums"
|
1701 |
msgstr ""
|
1702 |
|
1703 |
+
#: bp-forums/bp-forums-admin.php:65 bp-forums/bp-forums-admin.php:183
|
1704 |
+
msgid "New! Site Wide Forums"
|
|
|
1705 |
msgstr ""
|
1706 |
|
1707 |
+
#: bp-forums/bp-forums-admin.php:66 bp-forums/bp-forums-admin.php:184
|
1708 |
+
msgid "Your site will have central forums that are not isolated to any specific group. Choose this if you'd like to have a central forum area for your members."
|
1709 |
msgstr ""
|
1710 |
|
1711 |
+
#: bp-forums/bp-forums-admin.php:67 bp-forums/bp-forums-admin.php:185
|
1712 |
+
msgid "You may activate both Group and Site Wide forums, but this may create a poor experience for your members."
|
1713 |
msgstr ""
|
1714 |
|
1715 |
+
#: bp-forums/bp-forums-admin.php:71 bp-forums/bp-forums-admin.php:189
|
1716 |
+
msgid "Central Discussion Area"
|
1717 |
msgstr ""
|
1718 |
|
1719 |
+
#: bp-forums/bp-forums-admin.php:72 bp-forums/bp-forums-admin.php:190
|
1720 |
+
msgid "Forum Plugins Available"
|
1721 |
msgstr ""
|
1722 |
|
1723 |
+
#: bp-forums/bp-forums-admin.php:77 bp-forums/bp-forums-admin.php:195
|
1724 |
+
msgid "Install Site Wide Forums"
|
1725 |
msgstr ""
|
1726 |
|
1727 |
+
#: bp-forums/bp-forums-admin.php:96
|
1728 |
+
msgid "The bb-config.php file was not found at that location, please try again."
|
1729 |
msgstr ""
|
1730 |
|
1731 |
+
#: bp-forums/bp-forums-admin.php:99
|
1732 |
+
msgid "Forums were set up correctly using your existing bbPress install!"
|
1733 |
msgstr ""
|
1734 |
|
1735 |
+
#: bp-forums/bp-forums-admin.php:100
|
1736 |
+
msgid "BuddyPress will now use its internal copy of bbPress to run the forums on your site. If you wish, you can remove your old bbPress installation files, as long as you keep the bb-config.php file in the same location."
|
1737 |
msgstr ""
|
1738 |
|
1739 |
+
#: bp-forums/bp-forums-admin.php:105
|
1740 |
+
msgid "Existing bbPress Installation"
|
1741 |
msgstr ""
|
1742 |
|
1743 |
+
#: bp-forums/bp-forums-admin.php:106
|
1744 |
+
msgid "BuddyPress can make use of your existing bbPress install. Just provide the location of your <code>bb-config.php</code> file, and BuddyPress will do the rest."
|
1745 |
msgstr ""
|
1746 |
|
1747 |
+
#: bp-forums/bp-forums-admin.php:108 bp-forums/bp-forums-admin.php:140
|
1748 |
+
msgid "Complete Installation"
|
1749 |
msgstr ""
|
1750 |
|
1751 |
+
#: bp-forums/bp-forums-admin.php:124
|
1752 |
+
msgid "<p>All done! Configuration settings have been saved to the file <code>bb-config.php</code> in the root of your WordPress install.</p>"
|
|
|
|
|
1753 |
msgstr ""
|
1754 |
|
1755 |
+
#: bp-forums/bp-forums-admin.php:128
|
1756 |
+
msgid "<p>A configuration file could not be created. No problem, but you will need to save the text shown below into a file named <code>bb-config.php</code> in the root directory of your WordPress installation before you can start using the forum functionality.</p>"
|
|
|
|
|
|
|
1757 |
msgstr ""
|
1758 |
|
1759 |
+
#: bp-forums/bp-forums-admin.php:137
|
1760 |
+
msgid "New bbPress Installation"
|
|
|
|
|
1761 |
msgstr ""
|
1762 |
|
1763 |
+
#: bp-forums/bp-forums-admin.php:138
|
1764 |
+
msgid ""
|
1765 |
+
"You've decided to set up a new installation of bbPress for forum management in BuddyPress. This is very simple and is usually just a one click\n"
|
1766 |
+
"\t\t\t\tprocess. When you're ready, hit the link below."
|
1767 |
msgstr ""
|
1768 |
|
1769 |
+
#: bp-forums/bp-forums-admin.php:150
|
1770 |
+
msgid "bbPress files were not found. To install the forums component you must download a copy of bbPress and make sure it is in the folder: \"%s\""
|
1771 |
msgstr ""
|
1772 |
|
1773 |
+
#: bp-forums/bp-forums-admin.php:177
|
1774 |
+
msgid "Install Group Forums"
|
1775 |
msgstr ""
|
1776 |
|
1777 |
+
#: bp-forums/bp-forums-admin.php:178
|
1778 |
+
msgid "Use Existing Installation"
|
1779 |
msgstr ""
|
1780 |
|
1781 |
+
#: bp-forums/bp-forums-loader.php:61
|
1782 |
+
msgid "Search Forums..."
|
1783 |
msgstr ""
|
1784 |
|
1785 |
+
#: bp-forums/bp-forums-loader.php:135 bp-forums/bp-forums-loader.php:202
|
1786 |
+
msgid "Topics Started"
|
1787 |
msgstr ""
|
1788 |
|
1789 |
+
#: bp-forums/bp-forums-loader.php:146
|
1790 |
+
msgid "Replied To"
|
1791 |
msgstr ""
|
1792 |
|
1793 |
+
#: bp-forums/bp-forums-loader.php:210
|
1794 |
+
msgid "Replies"
|
1795 |
msgstr ""
|
1796 |
|
1797 |
+
#: bp-forums/bp-forums-loader.php:218
|
1798 |
+
msgid "Favorite Topics"
|
1799 |
msgstr ""
|
1800 |
|
1801 |
+
#: bp-forums/bp-forums-screens.php:13
|
1802 |
+
msgid "The forums component has not been set up yet."
|
|
|
|
|
|
|
|
|
1803 |
msgstr ""
|
1804 |
|
1805 |
+
#: bp-forums/bp-forums-screens.php:36 bp-groups/bp-groups-screens.php:346
|
1806 |
+
msgid "Please provide a title for your forum topic."
|
1807 |
msgstr ""
|
1808 |
|
1809 |
+
#: bp-forums/bp-forums-screens.php:38 bp-groups/bp-groups-screens.php:348
|
1810 |
+
msgid "Forum posts cannot be empty. Please enter some text."
|
1811 |
msgstr ""
|
1812 |
|
1813 |
+
#: bp-forums/bp-forums-screens.php:45 bp-groups/bp-groups-screens.php:358
|
1814 |
+
msgid "There was an error when creating the topic"
|
1815 |
msgstr ""
|
1816 |
|
1817 |
+
#: bp-forums/bp-forums-screens.php:48 bp-groups/bp-groups-screens.php:361
|
1818 |
+
msgid "The topic was created successfully"
|
1819 |
msgstr ""
|
1820 |
|
1821 |
+
#: bp-forums/bp-forums-screens.php:56 bp-forums/bp-forums-screens.php:61
|
1822 |
+
msgid "Please pick the group forum where you would like to post this topic."
|
1823 |
msgstr ""
|
1824 |
|
1825 |
+
#: bp-forums/bp-forums-template.php:189 bp-forums/bp-forums-template.php:405
|
1826 |
+
msgctxt "Forum topic pagination previous text"
|
1827 |
+
msgid "←"
|
1828 |
msgstr ""
|
1829 |
|
1830 |
+
#: bp-forums/bp-forums-template.php:190 bp-forums/bp-forums-template.php:406
|
1831 |
+
msgctxt "Forum topic pagination next text"
|
1832 |
+
msgid "→"
|
1833 |
msgstr ""
|
1834 |
|
1835 |
+
#: bp-forums/bp-forums-template.php:506 bp-forums/bp-forums-template.php:568
|
1836 |
+
#: bp-forums/bp-forums-template.php:1208
|
1837 |
+
msgid "Deleted User"
|
1838 |
msgstr ""
|
1839 |
|
1840 |
+
#: bp-forums/bp-forums-template.php:586
|
1841 |
+
msgid "Group logo for %s"
|
1842 |
msgstr ""
|
1843 |
|
1844 |
+
#: bp-forums/bp-forums-template.php:684 bp-groups/bp-groups-template.php:839
|
1845 |
+
msgid "%d post"
|
1846 |
msgstr ""
|
1847 |
|
1848 |
+
#: bp-forums/bp-forums-template.php:686 bp-groups/bp-groups-template.php:841
|
1849 |
+
msgid "%d posts"
|
1850 |
msgstr ""
|
1851 |
|
1852 |
+
#: bp-forums/bp-forums-template.php:792
|
1853 |
+
msgid "Edit Topic"
|
1854 |
msgstr ""
|
1855 |
|
1856 |
+
#: bp-forums/bp-forums-template.php:796
|
1857 |
+
msgid "Sticky Topic"
|
1858 |
msgstr ""
|
1859 |
|
1860 |
+
#: bp-forums/bp-forums-template.php:798
|
1861 |
+
msgid "Un-stick Topic"
|
1862 |
msgstr ""
|
1863 |
|
1864 |
+
#: bp-forums/bp-forums-template.php:801
|
1865 |
+
msgid "Open Topic"
|
1866 |
msgstr ""
|
1867 |
|
1868 |
+
#: bp-forums/bp-forums-template.php:803
|
1869 |
+
msgid "Close Topic"
|
1870 |
msgstr ""
|
1871 |
|
1872 |
+
#: bp-forums/bp-forums-template.php:805
|
1873 |
+
msgid "Delete Topic"
|
1874 |
msgstr ""
|
1875 |
|
1876 |
+
#: bp-forums/bp-forums-template.php:960
|
1877 |
+
msgid " matching tag \"%s\""
|
1878 |
msgstr ""
|
1879 |
|
1880 |
+
#: bp-forums/bp-forums-template.php:962
|
1881 |
+
msgid "Viewing topic %s to %s (of %s total topics%s)"
|
1882 |
msgstr ""
|
1883 |
|
1884 |
+
#: bp-forums/bp-forums-template.php:1044
|
1885 |
+
msgctxt "Forum thread pagination previous text"
|
1886 |
+
msgid "←"
|
1887 |
msgstr ""
|
1888 |
|
1889 |
+
#: bp-forums/bp-forums-template.php:1045
|
1890 |
+
msgctxt "Forum thread pagination next text"
|
1891 |
+
msgid "→"
|
1892 |
msgstr ""
|
1893 |
|
1894 |
+
#: bp-forums/bp-forums-template.php:1262 bp-themes/bp-default/functions.php:495
|
1895 |
+
#: bp-xprofile/bp-xprofile-admin.php:463 bp-xprofile/bp-xprofile-loader.php:135
|
1896 |
+
#: bp-xprofile/bp-xprofile-loader.php:193
|
1897 |
+
msgid "Edit"
|
1898 |
msgstr ""
|
1899 |
|
1900 |
+
#: bp-forums/bp-forums-template.php:1293
|
1901 |
+
msgid "Viewing post %1$s to %2$s (%3$s total posts)"
|
1902 |
msgstr ""
|
1903 |
|
1904 |
+
#: bp-friends/bp-friends-actions.php:29 bp-themes/bp-default/_inc/ajax.php:429
|
1905 |
+
msgid "Friendship could not be requested."
|
1906 |
msgstr ""
|
1907 |
|
1908 |
+
#: bp-friends/bp-friends-actions.php:31
|
1909 |
+
msgid "Friendship requested"
|
1910 |
msgstr ""
|
1911 |
|
1912 |
+
#: bp-friends/bp-friends-actions.php:35
|
1913 |
+
msgid "You are already friends with this user"
|
1914 |
msgstr ""
|
1915 |
|
1916 |
+
#: bp-friends/bp-friends-actions.php:37
|
1917 |
+
msgid "You already have a pending friendship request with this user"
|
1918 |
msgstr ""
|
1919 |
|
1920 |
+
#: bp-friends/bp-friends-actions.php:64 bp-themes/bp-default/_inc/ajax.php:419
|
1921 |
+
msgid "Friendship could not be canceled."
|
1922 |
msgstr ""
|
1923 |
|
1924 |
+
#: bp-friends/bp-friends-actions.php:66
|
1925 |
+
msgid "Friendship canceled"
|
|
|
1926 |
msgstr ""
|
1927 |
|
1928 |
+
#: bp-friends/bp-friends-actions.php:70
|
1929 |
+
msgid "You are not yet friends with this user"
|
1930 |
msgstr ""
|
1931 |
|
1932 |
+
#: bp-friends/bp-friends-actions.php:72
|
1933 |
+
msgid "You have a pending friendship request with this user"
|
|
|
1934 |
msgstr ""
|
1935 |
|
1936 |
+
#: bp-friends/bp-friends-activity.php:50
|
1937 |
+
msgid "New friendship created"
|
1938 |
msgstr ""
|
1939 |
|
1940 |
+
#: bp-friends/bp-friends-activity.php:76
|
1941 |
+
msgid "%d friends accepted your friendship requests"
|
|
|
1942 |
msgstr ""
|
1943 |
|
1944 |
+
#: bp-friends/bp-friends-activity.php:79
|
1945 |
+
#: bp-friends/bp-friends-notifications.php:66
|
1946 |
+
msgid "%s accepted your friendship request"
|
1947 |
msgstr ""
|
1948 |
|
1949 |
+
#: bp-friends/bp-friends-activity.php:90
|
1950 |
+
msgid "You have %d pending friendship requests"
|
1951 |
msgstr ""
|
1952 |
|
1953 |
+
#: bp-friends/bp-friends-activity.php:93
|
1954 |
+
msgid "You have a friendship request from %s"
|
|
|
1955 |
msgstr ""
|
1956 |
|
1957 |
+
#: bp-friends/bp-friends-functions.php:94
|
1958 |
+
#: bp-friends/bp-friends-functions.php:103
|
1959 |
+
msgid "%1$s and %2$s are now friends"
|
1960 |
msgstr ""
|
1961 |
|
1962 |
+
#: bp-friends/bp-friends-loader.php:78
|
1963 |
+
msgid "Search Friends..."
|
1964 |
msgstr ""
|
1965 |
|
1966 |
+
#: bp-friends/bp-friends-loader.php:96
|
1967 |
+
msgid "Friends <span>%d</span>"
|
1968 |
msgstr ""
|
1969 |
|
1970 |
+
#: bp-friends/bp-friends-loader.php:108 bp-friends/bp-friends-loader.php:169
|
1971 |
+
#: bp-friends/bp-friends-loader.php:196
|
1972 |
+
#: bp-themes/bp-default/activity/index.php:122
|
1973 |
+
#: bp-themes/bp-default/members/single/activity.php:35
|
1974 |
+
msgid "Friendships"
|
1975 |
msgstr ""
|
1976 |
|
1977 |
+
#: bp-friends/bp-friends-loader.php:118 bp-groups/bp-groups-template.php:1288
|
1978 |
+
msgid "Requests"
|
1979 |
msgstr ""
|
1980 |
|
1981 |
+
#: bp-friends/bp-friends-loader.php:150
|
1982 |
+
msgid "Friends <span class=\"count\">%s</span>"
|
1983 |
msgstr ""
|
1984 |
|
1985 |
+
#: bp-friends/bp-friends-loader.php:151
|
1986 |
+
msgid "Pending Requests <span class=\"count\">%s</span>"
|
1987 |
msgstr ""
|
1988 |
|
1989 |
+
#: bp-friends/bp-friends-loader.php:154
|
1990 |
+
msgid "No Pending Requests"
|
|
|
|
|
|
|
|
|
|
|
1991 |
msgstr ""
|
1992 |
|
1993 |
+
#: bp-friends/bp-friends-notifications.php:24
|
1994 |
+
msgid "New friendship request from %s"
|
1995 |
msgstr ""
|
1996 |
|
1997 |
+
#: bp-friends/bp-friends-notifications.php:26
|
1998 |
msgid ""
|
1999 |
+
"%1$s wants to add you as a friend.\n"
|
|
|
|
|
2000 |
"\n"
|
2001 |
+
"To view all of your pending friendship requests: %2$s\n"
|
|
|
2002 |
"\n"
|
2003 |
+
"To view %3$s's profile: %4$s\n"
|
2004 |
"\n"
|
2005 |
"---------------------\n"
|
2006 |
msgstr ""
|
2007 |
|
2008 |
+
#: bp-friends/bp-friends-notifications.php:68
|
|
|
|
|
|
|
|
|
2009 |
msgid ""
|
2010 |
+
"%1$s accepted your friend request.\n"
|
2011 |
"\n"
|
2012 |
+
"To view %2$s's profile: %3$s\n"
|
2013 |
"\n"
|
2014 |
"---------------------\n"
|
2015 |
msgstr ""
|
2016 |
|
2017 |
+
#: bp-friends/bp-friends-screens.php:28
|
2018 |
+
msgid "Friendship accepted"
|
2019 |
msgstr ""
|
2020 |
|
2021 |
+
#: bp-friends/bp-friends-screens.php:30
|
2022 |
+
msgid "Friendship could not be accepted"
|
|
|
|
|
|
|
|
|
|
|
2023 |
msgstr ""
|
2024 |
|
2025 |
+
#: bp-friends/bp-friends-screens.php:39
|
2026 |
+
msgid "Friendship rejected"
|
2027 |
msgstr ""
|
2028 |
|
2029 |
+
#: bp-friends/bp-friends-screens.php:41
|
2030 |
+
msgid "Friendship could not be rejected"
|
2031 |
msgstr ""
|
2032 |
|
2033 |
+
#: bp-friends/bp-friends-screens.php:77
|
2034 |
+
msgid "A member sends you a friendship request"
|
2035 |
msgstr ""
|
2036 |
|
2037 |
+
#: bp-friends/bp-friends-screens.php:83
|
2038 |
+
msgid "A member accepts your friendship request"
|
|
|
|
|
|
|
|
|
|
|
2039 |
msgstr ""
|
2040 |
|
2041 |
+
#: bp-friends/bp-friends-template.php:62 bp-friends/bp-friends-template.php:81
|
2042 |
+
#: bp-groups/bp-groups-template.php:2276 bp-groups/bp-groups-template.php:2297
|
2043 |
+
msgid "Recently Active"
|
2044 |
msgstr ""
|
2045 |
|
2046 |
+
#: bp-friends/bp-friends-template.php:64 bp-friends/bp-friends-template.php:87
|
2047 |
+
#: bp-groups/bp-groups-template.php:2281 bp-groups/bp-groups-template.php:2312
|
2048 |
+
msgid "Alphabetically"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2049 |
msgstr ""
|
2050 |
|
2051 |
+
#: bp-friends/bp-friends-template.php:101
|
2052 |
+
msgid "My Friends"
|
2053 |
msgstr ""
|
2054 |
|
2055 |
+
#: bp-friends/bp-friends-template.php:101
|
2056 |
+
msgid "%s's Friends"
|
2057 |
msgstr ""
|
2058 |
|
2059 |
+
#: bp-friends/bp-friends-template.php:101
|
2060 |
+
msgid "See All"
|
2061 |
msgstr ""
|
2062 |
|
2063 |
+
#: bp-friends/bp-friends-template.php:121
|
2064 |
+
msgid "You haven't added any friend connections yet."
|
2065 |
msgstr ""
|
2066 |
|
2067 |
+
#: bp-friends/bp-friends-template.php:121
|
2068 |
+
msgid "%s hasn't created any friend connections yet."
|
2069 |
msgstr ""
|
2070 |
|
2071 |
+
#: bp-friends/bp-friends-template.php:190
|
2072 |
+
msgid "There aren't enough site members to show a random sample just yet."
|
2073 |
msgstr ""
|
2074 |
|
2075 |
+
#: bp-friends/bp-friends-template.php:201
|
2076 |
+
msgid "Filter Friends"
|
2077 |
msgstr ""
|
2078 |
|
2079 |
+
#: bp-friends/bp-friends-template.php:238
|
2080 |
+
msgid "%d friend"
|
|
|
|
|
2081 |
msgstr ""
|
2082 |
|
2083 |
+
#: bp-friends/bp-friends-template.php:240
|
2084 |
+
msgid "%d friends"
|
2085 |
msgstr ""
|
2086 |
|
2087 |
+
#: bp-friends/bp-friends-template.php:323
|
2088 |
+
#: bp-friends/bp-friends-template.php:324
|
2089 |
+
#: bp-themes/bp-default/_inc/ajax.php:431
|
2090 |
+
msgid "Friendship Requested"
|
2091 |
msgstr ""
|
2092 |
|
2093 |
+
#: bp-friends/bp-friends-template.php:338
|
2094 |
+
#: bp-friends/bp-friends-template.php:339
|
2095 |
+
msgid "Cancel Friendship"
|
2096 |
msgstr ""
|
2097 |
|
2098 |
+
#: bp-friends/bp-friends-template.php:355
|
2099 |
+
#: bp-friends/bp-friends-template.php:356
|
2100 |
+
#: bp-themes/bp-default/_inc/ajax.php:421
|
2101 |
+
msgid "Add Friend"
|
2102 |
msgstr ""
|
2103 |
|
2104 |
+
#: bp-groups/bp-groups-actions.php:24
|
2105 |
+
msgid "Sorry, you are not allowed to create groups."
|
2106 |
msgstr ""
|
2107 |
|
2108 |
+
#: bp-groups/bp-groups-actions.php:46
|
2109 |
+
msgid "There was an error saving group details. Please try again."
|
2110 |
msgstr ""
|
2111 |
|
2112 |
+
#: bp-groups/bp-groups-actions.php:68
|
2113 |
+
msgid "Please fill in all of the required fields"
|
2114 |
msgstr ""
|
2115 |
|
2116 |
+
#: bp-groups/bp-groups-actions.php:75 bp-groups/bp-groups-actions.php:102
|
2117 |
+
msgid "There was an error saving group details, please try again."
|
2118 |
msgstr ""
|
2119 |
|
2120 |
+
#: bp-groups/bp-groups-actions.php:141
|
2121 |
+
msgid "%1$s created the group %2$s"
|
2122 |
msgstr ""
|
2123 |
|
2124 |
+
#: bp-groups/bp-groups-actions.php:189
|
2125 |
+
msgid "There was an error saving the group avatar, please try uploading again."
|
2126 |
msgstr ""
|
2127 |
|
2128 |
+
#: bp-groups/bp-groups-actions.php:191
|
2129 |
+
msgid "The group avatar was uploaded successfully!"
|
|
|
2130 |
msgstr ""
|
2131 |
|
2132 |
+
#: bp-groups/bp-groups-actions.php:215 bp-groups/bp-groups-actions.php:222
|
2133 |
+
msgid "There was an error joining the group."
|
2134 |
msgstr ""
|
2135 |
|
2136 |
+
#: bp-groups/bp-groups-actions.php:224
|
2137 |
+
msgid "You joined the group!"
|
2138 |
msgstr ""
|
2139 |
|
2140 |
+
#: bp-groups/bp-groups-actions.php:250 bp-groups/bp-groups-screens.php:646
|
2141 |
+
msgid "This group must have at least one admin"
|
2142 |
msgstr ""
|
2143 |
|
2144 |
+
#: bp-groups/bp-groups-actions.php:253
|
2145 |
+
msgid "There was an error leaving the group."
|
2146 |
msgstr ""
|
2147 |
|
2148 |
+
#: bp-groups/bp-groups-actions.php:255 bp-groups/bp-groups-functions.php:280
|
2149 |
+
msgid "You successfully left the group."
|
2150 |
msgstr ""
|
2151 |
|
2152 |
+
#: bp-groups/bp-groups-activity.php:21
|
2153 |
+
msgid "Created a group"
|
2154 |
msgstr ""
|
2155 |
|
2156 |
+
#: bp-groups/bp-groups-activity.php:22
|
2157 |
+
msgid "Joined a group"
|
2158 |
msgstr ""
|
2159 |
|
2160 |
+
#: bp-groups/bp-groups-activity.php:23
|
2161 |
+
msgid "New group forum topic"
|
2162 |
msgstr ""
|
2163 |
|
2164 |
+
#: bp-groups/bp-groups-activity.php:24
|
2165 |
+
msgid "New group forum post"
|
2166 |
msgstr ""
|
2167 |
|
2168 |
+
#: bp-groups/bp-groups-activity.php:93
|
2169 |
+
msgid "%1$d new membership requests for the group \"%2$s\""
|
2170 |
msgstr ""
|
2171 |
|
2172 |
+
#: bp-groups/bp-groups-activity.php:98
|
2173 |
+
msgid "Group Membership Requests"
|
2174 |
msgstr ""
|
2175 |
|
2176 |
+
#: bp-groups/bp-groups-activity.php:107 bp-groups/bp-groups-activity.php:112
|
2177 |
+
msgid "%s requests group membership"
|
2178 |
msgstr ""
|
2179 |
|
2180 |
+
#: bp-groups/bp-groups-activity.php:130
|
2181 |
+
msgid "%d accepted group membership requests"
|
2182 |
msgstr ""
|
2183 |
|
2184 |
+
#: bp-groups/bp-groups-activity.php:143
|
2185 |
+
msgid "Membership for group \"%s\" accepted"
|
2186 |
msgstr ""
|
2187 |
|
2188 |
+
#: bp-groups/bp-groups-activity.php:166
|
2189 |
+
msgid "%d rejected group membership requests"
|
2190 |
msgstr ""
|
2191 |
|
2192 |
+
#: bp-groups/bp-groups-activity.php:179
|
2193 |
+
msgid "Membership for group \"%s\" rejected"
|
2194 |
msgstr ""
|
2195 |
|
2196 |
+
#: bp-groups/bp-groups-activity.php:202
|
2197 |
+
msgid "You were promoted to an admin in %d groups"
|
2198 |
msgstr ""
|
2199 |
|
2200 |
+
#: bp-groups/bp-groups-activity.php:215
|
2201 |
+
msgid "You were promoted to an admin in the group \"%s\""
|
2202 |
msgstr ""
|
2203 |
|
2204 |
+
#: bp-groups/bp-groups-activity.php:238
|
2205 |
+
msgid "You were promoted to a mod in %d groups"
|
2206 |
msgstr ""
|
2207 |
|
2208 |
+
#: bp-groups/bp-groups-activity.php:251
|
2209 |
+
msgid "You were promoted to a mod in the group \"%s\""
|
2210 |
msgstr ""
|
2211 |
|
2212 |
+
#: bp-groups/bp-groups-activity.php:275
|
2213 |
+
msgid "You have %d new group invitations"
|
2214 |
msgstr ""
|
2215 |
|
2216 |
+
#: bp-groups/bp-groups-activity.php:279
|
2217 |
+
msgid "Group Invites"
|
2218 |
msgstr ""
|
2219 |
|
2220 |
+
#: bp-groups/bp-groups-activity.php:287
|
2221 |
+
msgid "You have an invitation to the group: %s"
|
2222 |
msgstr ""
|
2223 |
|
2224 |
+
#: bp-groups/bp-groups-adminbar.php:83 bp-xprofile/bp-xprofile-admin.php:121
|
2225 |
+
msgid "Edit Group"
|
2226 |
msgstr ""
|
2227 |
|
2228 |
+
#: bp-groups/bp-groups-adminbar.php:92 bp-groups/bp-groups-buddybar.php:19
|
2229 |
+
msgid "Edit Details"
|
2230 |
msgstr ""
|
2231 |
|
2232 |
+
#: bp-groups/bp-groups-adminbar.php:100
|
2233 |
+
msgid "Edit Settings"
|
2234 |
msgstr ""
|
2235 |
|
2236 |
+
#: bp-groups/bp-groups-adminbar.php:109 bp-members/bp-members-adminbar.php:173
|
2237 |
+
msgid "Edit Avatar"
|
2238 |
msgstr ""
|
2239 |
|
2240 |
+
#: bp-groups/bp-groups-adminbar.php:119 bp-groups/bp-groups-buddybar.php:31
|
2241 |
+
msgid "Manage Invitations"
|
2242 |
msgstr ""
|
2243 |
|
2244 |
+
#: bp-groups/bp-groups-adminbar.php:128 bp-groups/bp-groups-buddybar.php:35
|
2245 |
+
msgid "Manage Members"
|
2246 |
msgstr ""
|
2247 |
|
2248 |
+
#: bp-groups/bp-groups-adminbar.php:137 bp-groups/bp-groups-buddybar.php:39
|
2249 |
+
msgid "Membership Requests"
|
2250 |
msgstr ""
|
2251 |
|
2252 |
+
#: bp-groups/bp-groups-adminbar.php:146 bp-groups/bp-groups-buddybar.php:43
|
2253 |
+
#: bp-themes/bp-default/groups/single/admin.php:358
|
2254 |
+
#: bp-xprofile/bp-xprofile-admin.php:125
|
2255 |
+
msgid "Delete Group"
|
2256 |
msgstr ""
|
2257 |
|
2258 |
+
#: bp-groups/bp-groups-buddybar.php:16 bp-members/bp-members-buddybar.php:103
|
2259 |
+
msgid "Admin Options"
|
2260 |
msgstr ""
|
2261 |
|
2262 |
+
#: bp-groups/bp-groups-buddybar.php:21
|
2263 |
+
msgid "Group Settings"
|
2264 |
msgstr ""
|
2265 |
|
2266 |
+
#: bp-groups/bp-groups-buddybar.php:25 bp-groups/bp-groups-loader.php:458
|
2267 |
+
#: bp-groups/bp-groups-template.php:2337
|
2268 |
+
msgid "Group Avatar"
|
2269 |
msgstr ""
|
2270 |
|
2271 |
+
#: bp-groups/bp-groups-classes.php:752
|
2272 |
+
msgid "Group Mod"
|
2273 |
msgstr ""
|
2274 |
|
2275 |
+
#: bp-groups/bp-groups-classes.php:758 bp-groups/bp-groups-functions.php:98
|
2276 |
+
msgid "Group Admin"
|
2277 |
msgstr ""
|
2278 |
|
2279 |
+
#: bp-groups/bp-groups-forums.php:71 bp-groups/bp-groups-forums.php:175
|
2280 |
+
msgid "%1$s replied to the forum topic %2$s in the group %3$s"
|
2281 |
msgstr ""
|
2282 |
|
2283 |
+
#: bp-groups/bp-groups-forums.php:110 bp-groups/bp-groups-forums.php:142
|
2284 |
+
msgid "%1$s started the forum topic %2$s in the group %3$s"
|
2285 |
msgstr ""
|
2286 |
|
2287 |
+
#: bp-groups/bp-groups-functions.php:255
|
2288 |
+
msgid "As the only Admin, you cannot leave the group."
|
2289 |
msgstr ""
|
2290 |
|
2291 |
+
#: bp-groups/bp-groups-functions.php:324 bp-groups/bp-groups-functions.php:809
|
2292 |
+
#: bp-groups/bp-groups-screens.php:57
|
2293 |
+
msgid "%1$s joined the group %2$s"
|
2294 |
msgstr ""
|
2295 |
|
2296 |
+
#: bp-groups/bp-groups-functions.php:513
|
2297 |
+
msgid "%1$s posted an update in the group %2$s"
|
2298 |
msgstr ""
|
2299 |
|
2300 |
+
#: bp-groups/bp-groups-loader.php:84
|
2301 |
+
msgid "Search Groups..."
|
2302 |
msgstr ""
|
2303 |
|
2304 |
+
#: bp-groups/bp-groups-loader.php:172
|
2305 |
+
msgid "You do not have access to this group."
|
2306 |
msgstr ""
|
2307 |
|
2308 |
+
#: bp-groups/bp-groups-loader.php:185 bp-groups/bp-groups-template.php:1272
|
2309 |
+
msgid "Details"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2310 |
msgstr ""
|
2311 |
|
2312 |
+
#: bp-groups/bp-groups-loader.php:197 bp-groups/bp-groups-template.php:1282
|
2313 |
+
msgid "Avatar"
|
2314 |
msgstr ""
|
2315 |
|
2316 |
+
#: bp-groups/bp-groups-loader.php:205
|
2317 |
+
msgid "Invites"
|
|
|
2318 |
msgstr ""
|
2319 |
|
2320 |
+
#: bp-groups/bp-groups-loader.php:231
|
2321 |
+
msgid "Groups <span>%d</span>"
|
2322 |
msgstr ""
|
2323 |
|
2324 |
+
#: bp-groups/bp-groups-loader.php:243 bp-groups/bp-groups-loader.php:271
|
2325 |
+
#: bp-groups/bp-groups-loader.php:411 bp-groups/bp-groups-loader.php:439
|
2326 |
+
msgid "Memberships"
|
2327 |
msgstr ""
|
2328 |
|
2329 |
+
#: bp-groups/bp-groups-loader.php:254
|
2330 |
+
msgid "Invitations"
|
2331 |
msgstr ""
|
2332 |
|
2333 |
+
#: bp-groups/bp-groups-loader.php:283
|
2334 |
+
msgctxt "Group home navigation title"
|
2335 |
+
msgid "Home"
|
2336 |
msgstr ""
|
2337 |
|
2338 |
+
#: bp-groups/bp-groups-loader.php:295
|
2339 |
+
msgid "Admin"
|
|
|
|
|
2340 |
msgstr ""
|
2341 |
|
2342 |
+
#: bp-groups/bp-groups-loader.php:314 bp-groups/bp-groups-template.php:1580
|
2343 |
+
#: bp-groups/bp-groups-template.php:1581 bp-themes/bp-default/_inc/ajax.php:506
|
2344 |
+
msgid "Request Membership"
|
2345 |
msgstr ""
|
2346 |
|
2347 |
+
#: bp-groups/bp-groups-loader.php:326
|
2348 |
+
msgid "Forum"
|
2349 |
msgstr ""
|
2350 |
|
2351 |
+
#: bp-groups/bp-groups-loader.php:338
|
2352 |
+
msgid "Members <span>%s</span>"
|
|
|
|
|
2353 |
msgstr ""
|
2354 |
|
2355 |
+
#: bp-groups/bp-groups-loader.php:350
|
2356 |
+
#: bp-themes/bp-default/groups/single/send-invites.php:60
|
2357 |
+
msgid "Send Invites"
|
2358 |
msgstr ""
|
2359 |
|
2360 |
+
#: bp-groups/bp-groups-loader.php:392
|
2361 |
+
msgid "Groups <span class=\"count\">%s</span>"
|
|
|
|
|
|
|
|
|
|
|
2362 |
msgstr ""
|
2363 |
|
2364 |
+
#: bp-groups/bp-groups-loader.php:393
|
2365 |
+
msgid "Pending Invites <span class=\"count\">%s</span>"
|
|
|
|
|
2366 |
msgstr ""
|
2367 |
|
2368 |
+
#: bp-groups/bp-groups-loader.php:396
|
2369 |
+
msgid "No Pending Invites"
|
|
|
2370 |
msgstr ""
|
2371 |
|
2372 |
+
#: bp-groups/bp-groups-notifications.php:10
|
2373 |
+
msgid "Group Details Updated"
|
|
|
2374 |
msgstr ""
|
2375 |
|
2376 |
+
#: bp-groups/bp-groups-notifications.php:24
|
2377 |
+
msgid ""
|
2378 |
+
"Group details for the group \"%1$s\" were updated:\n"
|
2379 |
+
"\n"
|
2380 |
+
"To view the group: %2$s\n"
|
2381 |
+
"\n"
|
2382 |
+
"---------------------\n"
|
2383 |
msgstr ""
|
2384 |
|
2385 |
+
#: bp-groups/bp-groups-notifications.php:68
|
2386 |
+
msgid "Membership request for group: %s"
|
2387 |
msgstr ""
|
2388 |
|
2389 |
+
#: bp-groups/bp-groups-notifications.php:70
|
2390 |
+
msgid ""
|
2391 |
+
"%1$s wants to join the group \"%2$s\".\n"
|
2392 |
+
"\n"
|
2393 |
+
"Because you are the administrator of this group, you must either accept or reject the membership request.\n"
|
2394 |
+
"\n"
|
2395 |
+
"To view all pending membership requests for this group, please visit:\n"
|
2396 |
+
"%3$s\n"
|
2397 |
+
"\n"
|
2398 |
+
"To view %4$s's profile: %5$s\n"
|
2399 |
+
"\n"
|
2400 |
+
"---------------------\n"
|
2401 |
msgstr ""
|
2402 |
|
2403 |
+
#: bp-groups/bp-groups-notifications.php:119
|
2404 |
+
msgid "Membership request for group \"%s\" accepted"
|
2405 |
msgstr ""
|
2406 |
|
2407 |
+
#: bp-groups/bp-groups-notifications.php:120
|
2408 |
+
msgid ""
|
2409 |
+
"Your membership request for the group \"%1$s\" has been accepted.\n"
|
2410 |
+
"\n"
|
2411 |
+
"To view the group please login and visit: %2$s\n"
|
2412 |
+
"\n"
|
2413 |
+
"---------------------\n"
|
2414 |
msgstr ""
|
2415 |
|
2416 |
+
#: bp-groups/bp-groups-notifications.php:129
|
2417 |
+
msgid "Membership request for group \"%s\" rejected"
|
2418 |
msgstr ""
|
2419 |
|
2420 |
+
#: bp-groups/bp-groups-notifications.php:130
|
2421 |
+
msgid ""
|
2422 |
+
"Your membership request for the group \"%1$s\" has been rejected.\n"
|
2423 |
+
"\n"
|
2424 |
+
"To submit another request please log in and visit: %2$s\n"
|
2425 |
+
"\n"
|
2426 |
+
"---------------------\n"
|
2427 |
msgstr ""
|
2428 |
|
2429 |
+
#: bp-groups/bp-groups-notifications.php:155
|
2430 |
+
msgid "an administrator"
|
2431 |
msgstr ""
|
2432 |
|
2433 |
+
#: bp-groups/bp-groups-notifications.php:158
|
2434 |
+
msgid "a moderator"
|
2435 |
msgstr ""
|
2436 |
|
2437 |
+
#: bp-groups/bp-groups-notifications.php:177
|
2438 |
+
msgid "You have been promoted in the group: \"%s\""
|
2439 |
msgstr ""
|
2440 |
|
2441 |
+
#: bp-groups/bp-groups-notifications.php:179
|
2442 |
+
msgid ""
|
2443 |
+
"You have been promoted to %1$s for the group: \"%2$s\".\n"
|
2444 |
+
"\n"
|
2445 |
+
"To view the group please visit: %3$s\n"
|
2446 |
+
"\n"
|
2447 |
+
"---------------------\n"
|
2448 |
msgstr ""
|
2449 |
|
2450 |
+
#: bp-groups/bp-groups-notifications.php:227
|
2451 |
+
msgid "You have an invitation to the group: \"%s\""
|
2452 |
msgstr ""
|
2453 |
|
2454 |
+
#: bp-groups/bp-groups-notifications.php:229
|
2455 |
+
msgid ""
|
2456 |
+
"One of your friends %1$s has invited you to the group: \"%2$s\".\n"
|
2457 |
+
"\n"
|
2458 |
+
"To view your group invites visit: %3$s\n"
|
2459 |
+
"\n"
|
2460 |
+
"To view the group visit: %4$s\n"
|
2461 |
+
"\n"
|
2462 |
+
"To view %5$s's profile visit: %6$s\n"
|
2463 |
+
"\n"
|
2464 |
+
"---------------------\n"
|
2465 |
msgstr ""
|
2466 |
|
2467 |
+
#: bp-groups/bp-groups-screens.php:49
|
2468 |
+
msgid "Group invite could not be accepted"
|
2469 |
msgstr ""
|
2470 |
|
2471 |
+
#: bp-groups/bp-groups-screens.php:51
|
2472 |
+
msgid "Group invite accepted"
|
2473 |
msgstr ""
|
2474 |
|
2475 |
+
#: bp-groups/bp-groups-screens.php:71
|
2476 |
+
msgid "Group invite could not be rejected"
|
2477 |
msgstr ""
|
2478 |
|
2479 |
+
#: bp-groups/bp-groups-screens.php:73
|
2480 |
+
msgid "Group invite rejected"
|
|
|
|
|
2481 |
msgstr ""
|
2482 |
|
2483 |
+
#: bp-groups/bp-groups-screens.php:149
|
2484 |
+
msgid "There was an error when replying to that topic"
|
|
|
|
|
2485 |
msgstr ""
|
2486 |
|
2487 |
+
#: bp-groups/bp-groups-screens.php:151
|
2488 |
+
msgid "Your reply was posted successfully"
|
2489 |
msgstr ""
|
2490 |
|
2491 |
+
#: bp-groups/bp-groups-screens.php:165
|
2492 |
+
msgid "There was an error when making that topic a sticky"
|
2493 |
msgstr ""
|
2494 |
|
2495 |
+
#: bp-groups/bp-groups-screens.php:167
|
2496 |
+
msgid "The topic was made sticky successfully"
|
2497 |
msgstr ""
|
2498 |
|
2499 |
+
#: bp-groups/bp-groups-screens.php:179
|
2500 |
+
msgid "There was an error when unsticking that topic"
|
2501 |
msgstr ""
|
2502 |
|
2503 |
+
#: bp-groups/bp-groups-screens.php:181
|
2504 |
+
msgid "The topic was unstuck successfully"
|
2505 |
msgstr ""
|
2506 |
|
2507 |
+
#: bp-groups/bp-groups-screens.php:193
|
2508 |
+
msgid "There was an error when closing that topic"
|
2509 |
msgstr ""
|
2510 |
|
2511 |
+
#: bp-groups/bp-groups-screens.php:195
|
2512 |
+
msgid "The topic was closed successfully"
|
2513 |
msgstr ""
|
2514 |
|
2515 |
+
#: bp-groups/bp-groups-screens.php:207
|
2516 |
+
msgid "There was an error when opening that topic"
|
2517 |
msgstr ""
|
2518 |
|
2519 |
+
#: bp-groups/bp-groups-screens.php:209
|
2520 |
+
msgid "The topic was opened successfully"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2521 |
msgstr ""
|
2522 |
|
2523 |
+
#: bp-groups/bp-groups-screens.php:230
|
2524 |
+
msgid "There was an error deleting the topic"
|
|
|
2525 |
msgstr ""
|
2526 |
|
2527 |
+
#: bp-groups/bp-groups-screens.php:232
|
2528 |
+
msgid "The topic was deleted successfully"
|
2529 |
msgstr ""
|
2530 |
|
2531 |
+
#: bp-groups/bp-groups-screens.php:254
|
2532 |
+
msgid "There was an error when editing that topic"
|
2533 |
msgstr ""
|
2534 |
|
2535 |
+
#: bp-groups/bp-groups-screens.php:256
|
2536 |
+
msgid "The topic was edited successfully"
|
|
|
2537 |
msgstr ""
|
2538 |
|
2539 |
+
#: bp-groups/bp-groups-screens.php:280
|
2540 |
+
msgid "There was an error deleting that post"
|
|
|
|
|
2541 |
msgstr ""
|
2542 |
|
2543 |
+
#: bp-groups/bp-groups-screens.php:282
|
2544 |
+
msgid "The post was deleted successfully"
|
2545 |
msgstr ""
|
2546 |
|
2547 |
+
#: bp-groups/bp-groups-screens.php:304
|
2548 |
+
msgid "There was an error when editing that post"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2549 |
msgstr ""
|
2550 |
|
2551 |
+
#: bp-groups/bp-groups-screens.php:306
|
2552 |
+
msgid "The post was edited successfully"
|
2553 |
msgstr ""
|
2554 |
|
2555 |
+
#: bp-groups/bp-groups-screens.php:321 bp-groups/bp-groups-screens.php:338
|
2556 |
+
msgid "You have been banned from this group."
|
2557 |
msgstr ""
|
2558 |
|
2559 |
+
#: bp-groups/bp-groups-screens.php:351
|
2560 |
+
msgid "This group does not have a forum setup yet."
|
2561 |
msgstr ""
|
2562 |
|
2563 |
+
#: bp-groups/bp-groups-screens.php:405
|
2564 |
+
msgid "Group invites sent."
|
|
|
2565 |
msgstr ""
|
2566 |
|
2567 |
+
#: bp-groups/bp-groups-screens.php:433
|
2568 |
+
msgid "There was an error sending your group membership request, please try again."
|
|
|
2569 |
msgstr ""
|
2570 |
|
2571 |
+
#: bp-groups/bp-groups-screens.php:435
|
2572 |
+
msgid "Your membership request was sent to the group administrator successfully. You will be notified when the group administrator responds to your request."
|
2573 |
msgstr ""
|
2574 |
|
2575 |
+
#: bp-groups/bp-groups-screens.php:482
|
2576 |
+
msgid "There was an error updating group details, please try again."
|
2577 |
msgstr ""
|
2578 |
|
2579 |
+
#: bp-groups/bp-groups-screens.php:484
|
2580 |
+
msgid "Group details were successfully updated."
|
2581 |
msgstr ""
|
2582 |
|
2583 |
+
#: bp-groups/bp-groups-screens.php:525
|
2584 |
+
msgid "There was an error updating group settings, please try again."
|
2585 |
msgstr ""
|
2586 |
|
2587 |
+
#: bp-groups/bp-groups-screens.php:527
|
2588 |
+
msgid "Group settings were successfully updated."
|
2589 |
msgstr ""
|
2590 |
|
2591 |
+
#: bp-groups/bp-groups-screens.php:558 bp-xprofile/bp-xprofile-actions.php:36
|
2592 |
+
msgid "Your avatar was deleted successfully!"
|
2593 |
msgstr ""
|
2594 |
|
2595 |
+
#: bp-groups/bp-groups-screens.php:560 bp-xprofile/bp-xprofile-actions.php:38
|
2596 |
+
msgid "There was a problem deleting that avatar, please try again."
|
2597 |
msgstr ""
|
2598 |
|
2599 |
+
#: bp-groups/bp-groups-screens.php:588
|
2600 |
+
msgid "There was a problem cropping the avatar, please try uploading it again"
|
2601 |
msgstr ""
|
2602 |
|
2603 |
+
#: bp-groups/bp-groups-screens.php:590
|
2604 |
+
msgid "The new group avatar was uploaded successfully!"
|
2605 |
msgstr ""
|
2606 |
|
2607 |
+
#: bp-groups/bp-groups-screens.php:625
|
2608 |
+
msgid "There was an error when promoting that user, please try again"
|
2609 |
msgstr ""
|
2610 |
|
2611 |
+
#: bp-groups/bp-groups-screens.php:627
|
2612 |
+
msgid "User promoted successfully"
|
2613 |
msgstr ""
|
2614 |
|
2615 |
+
#: bp-groups/bp-groups-screens.php:650
|
2616 |
+
msgid "There was an error when demoting that user, please try again"
|
2617 |
msgstr ""
|
2618 |
|
2619 |
+
#: bp-groups/bp-groups-screens.php:652
|
2620 |
+
msgid "User demoted successfully"
|
2621 |
msgstr ""
|
2622 |
|
2623 |
+
#: bp-groups/bp-groups-screens.php:668
|
2624 |
+
msgid "There was an error when banning that user, please try again"
|
2625 |
msgstr ""
|
2626 |
|
2627 |
+
#: bp-groups/bp-groups-screens.php:670
|
2628 |
+
msgid "User banned successfully"
|
2629 |
msgstr ""
|
2630 |
|
2631 |
+
#: bp-groups/bp-groups-screens.php:686
|
2632 |
+
msgid "There was an error when unbanning that user, please try again"
|
2633 |
msgstr ""
|
2634 |
|
2635 |
+
#: bp-groups/bp-groups-screens.php:688
|
2636 |
+
msgid "User ban removed successfully"
|
2637 |
msgstr ""
|
2638 |
|
2639 |
+
#: bp-groups/bp-groups-screens.php:704
|
2640 |
+
msgid "There was an error removing that user from the group, please try again"
|
2641 |
msgstr ""
|
2642 |
|
2643 |
+
#: bp-groups/bp-groups-screens.php:706
|
2644 |
+
msgid "User removed successfully"
|
|
|
2645 |
msgstr ""
|
2646 |
|
2647 |
+
#: bp-groups/bp-groups-screens.php:744
|
2648 |
+
msgid "There was an error accepting the membership request, please try again."
|
2649 |
msgstr ""
|
2650 |
|
2651 |
+
#: bp-groups/bp-groups-screens.php:746
|
2652 |
+
msgid "Group membership request accepted"
|
2653 |
msgstr ""
|
2654 |
|
2655 |
+
#: bp-groups/bp-groups-screens.php:755
|
2656 |
+
msgid "There was an error rejecting the membership request, please try again."
|
2657 |
msgstr ""
|
2658 |
|
2659 |
+
#: bp-groups/bp-groups-screens.php:757
|
2660 |
+
msgid "Group membership request rejected"
|
2661 |
msgstr ""
|
2662 |
|
2663 |
+
#: bp-groups/bp-groups-screens.php:787
|
2664 |
+
msgid "There was an error deleting the group, please try again."
|
2665 |
msgstr ""
|
2666 |
|
2667 |
+
#: bp-groups/bp-groups-screens.php:789
|
2668 |
+
msgid "The group was deleted successfully"
|
2669 |
msgstr ""
|
2670 |
|
2671 |
+
#: bp-groups/bp-groups-screens.php:840
|
2672 |
+
msgid "A member invites you to join a group"
|
2673 |
msgstr ""
|
2674 |
|
2675 |
+
#: bp-groups/bp-groups-screens.php:846
|
2676 |
+
msgid "Group information is updated"
|
2677 |
msgstr ""
|
2678 |
|
2679 |
+
#: bp-groups/bp-groups-screens.php:852
|
2680 |
+
msgid "You are promoted to a group administrator or moderator"
|
2681 |
msgstr ""
|
2682 |
|
2683 |
+
#: bp-groups/bp-groups-screens.php:858
|
2684 |
+
msgid "A member requests to join a private group for which you are an admin"
|
2685 |
msgstr ""
|
2686 |
|
2687 |
+
#: bp-groups/bp-groups-template.php:171
|
2688 |
+
msgctxt "Group pagination previous text"
|
2689 |
+
msgid "←"
|
2690 |
msgstr ""
|
2691 |
|
2692 |
+
#: bp-groups/bp-groups-template.php:172
|
2693 |
+
msgctxt "Group pagination next text"
|
2694 |
+
msgid "→"
|
2695 |
msgstr ""
|
2696 |
|
2697 |
+
#: bp-groups/bp-groups-template.php:353
|
2698 |
+
msgid "Public Group"
|
2699 |
msgstr ""
|
2700 |
|
2701 |
+
#: bp-groups/bp-groups-template.php:355
|
2702 |
+
msgid "Hidden Group"
|
2703 |
msgstr ""
|
2704 |
|
2705 |
+
#: bp-groups/bp-groups-template.php:357
|
2706 |
+
msgid "Private Group"
|
2707 |
msgstr ""
|
2708 |
|
2709 |
+
#: bp-groups/bp-groups-template.php:359
|
2710 |
+
msgid "Group"
|
2711 |
msgstr ""
|
2712 |
|
2713 |
+
#: bp-groups/bp-groups-template.php:431
|
2714 |
+
msgid "not yet active"
|
2715 |
msgstr ""
|
2716 |
|
2717 |
+
#: bp-groups/bp-groups-template.php:522
|
2718 |
+
msgid "Private"
|
2719 |
msgstr ""
|
2720 |
|
2721 |
+
#: bp-groups/bp-groups-template.php:577
|
2722 |
+
msgid "No Admins"
|
2723 |
msgstr ""
|
2724 |
|
2725 |
+
#: bp-groups/bp-groups-template.php:604
|
2726 |
+
msgid "No Mods"
|
2727 |
msgstr ""
|
2728 |
|
2729 |
+
#: bp-groups/bp-groups-template.php:686
|
2730 |
+
msgid "Filter Groups"
|
2731 |
msgstr ""
|
2732 |
|
2733 |
+
#: bp-groups/bp-groups-template.php:736
|
2734 |
+
msgid "Viewing group %1$s to %2$s (of %3$s groups)"
|
|
|
|
|
|
|
2735 |
msgstr ""
|
2736 |
|
2737 |
+
#: bp-groups/bp-groups-template.php:764
|
2738 |
+
msgid "%s member"
|
2739 |
+
msgstr ""
|
2740 |
|
2741 |
+
#: bp-groups/bp-groups-template.php:766
|
2742 |
+
#: bp-themes/bp-default/members/single/groups/invites.php:14
|
2743 |
+
msgid "%s members"
|
2744 |
msgstr ""
|
2745 |
|
2746 |
+
#: bp-groups/bp-groups-template.php:805
|
2747 |
+
msgid "%d topic"
|
2748 |
msgstr ""
|
2749 |
|
2750 |
+
#: bp-groups/bp-groups-template.php:807
|
2751 |
+
msgid "%d topics"
|
2752 |
msgstr ""
|
2753 |
|
2754 |
+
#: bp-groups/bp-groups-template.php:1041 bp-groups/bp-groups-template.php:1106
|
2755 |
+
#: bp-themes/bp-default/groups/single/admin.php:189
|
2756 |
+
#: bp-themes/bp-default/groups/single/admin.php:215
|
2757 |
+
msgid "Demote to Member"
|
2758 |
msgstr ""
|
2759 |
|
2760 |
+
#: bp-groups/bp-groups-template.php:1054 bp-groups/bp-groups-template.php:1119
|
2761 |
+
#: bp-groups/bp-groups-template.php:1888
|
2762 |
+
msgid "joined %s"
|
2763 |
msgstr ""
|
2764 |
|
2765 |
+
#: bp-groups/bp-groups-template.php:1077
|
2766 |
+
msgid "This group has no administrators"
|
2767 |
msgstr ""
|
2768 |
|
2769 |
+
#: bp-groups/bp-groups-template.php:1105
|
2770 |
+
#: bp-themes/bp-default/groups/single/admin.php:214
|
2771 |
+
#: bp-themes/bp-default/groups/single/admin.php:270
|
2772 |
+
msgid "Promote to Admin"
|
2773 |
msgstr ""
|
2774 |
|
2775 |
+
#: bp-groups/bp-groups-template.php:1139
|
2776 |
+
msgid "This group has no moderators"
|
2777 |
msgstr ""
|
2778 |
|
2779 |
+
#: bp-groups/bp-groups-template.php:1499 bp-groups/bp-groups-template.php:1500
|
2780 |
+
#: bp-themes/bp-default/forums/index.php:23
|
2781 |
+
#: bp-themes/bp-default/groups/single/forum.php:19
|
2782 |
+
msgid "New Topic"
|
2783 |
msgstr ""
|
2784 |
|
2785 |
+
#: bp-groups/bp-groups-template.php:1539 bp-groups/bp-groups-template.php:1540
|
2786 |
+
#: bp-themes/bp-default/_inc/ajax.php:482
|
2787 |
+
msgid "Leave Group"
|
2788 |
msgstr ""
|
2789 |
|
2790 |
+
#: bp-groups/bp-groups-template.php:1562 bp-groups/bp-groups-template.php:1563
|
2791 |
+
#: bp-themes/bp-default/_inc/ajax.php:504
|
2792 |
+
msgid "Join Group"
|
2793 |
msgstr ""
|
2794 |
|
2795 |
+
#: bp-groups/bp-groups-template.php:1595 bp-groups/bp-groups-template.php:1596
|
2796 |
+
msgid "Request Sent"
|
2797 |
msgstr ""
|
2798 |
|
2799 |
+
#: bp-groups/bp-groups-template.php:1618
|
2800 |
+
msgid "This is a private group and you must request group membership in order to join."
|
2801 |
msgstr ""
|
2802 |
|
2803 |
+
#: bp-groups/bp-groups-template.php:1620
|
2804 |
+
msgid "This is a private group. To join you must be a registered site member and request group membership."
|
2805 |
msgstr ""
|
2806 |
|
2807 |
+
#: bp-groups/bp-groups-template.php:1622
|
2808 |
+
msgid "This is a private group. Your membership request is awaiting approval from the group administrator."
|
2809 |
msgstr ""
|
2810 |
|
2811 |
+
#: bp-groups/bp-groups-template.php:1624
|
2812 |
+
msgid "This is a hidden group and only invited members can join."
|
2813 |
msgstr ""
|
2814 |
|
2815 |
+
#: bp-groups/bp-groups-template.php:1938
|
2816 |
+
msgid "Viewing members %1$s to %2$s (of %3$s members)"
|
|
|
|
|
2817 |
msgstr ""
|
2818 |
|
2819 |
+
#: bp-groups/bp-groups-template.php:2164
|
2820 |
+
msgid "Group avatar"
|
2821 |
msgstr ""
|
2822 |
|
2823 |
+
#: bp-groups/bp-groups-template.php:2277 bp-groups/bp-groups-template.php:2300
|
2824 |
+
msgid "Recently Joined"
|
2825 |
msgstr ""
|
2826 |
|
2827 |
+
#: bp-groups/bp-groups-template.php:2278 bp-groups/bp-groups-template.php:2303
|
2828 |
+
msgid "Most Popular"
|
2829 |
msgstr ""
|
2830 |
|
2831 |
+
#: bp-groups/bp-groups-template.php:2279 bp-groups/bp-groups-template.php:2306
|
2832 |
+
msgid "Administrator Of"
|
2833 |
msgstr ""
|
2834 |
|
2835 |
+
#: bp-groups/bp-groups-template.php:2280 bp-groups/bp-groups-template.php:2309
|
2836 |
+
msgid "Moderator Of"
|
2837 |
msgstr ""
|
2838 |
|
2839 |
+
#: bp-groups/bp-groups-template.php:2341
|
2840 |
+
msgid "No Group Avatar"
|
2841 |
msgstr ""
|
2842 |
|
2843 |
+
#: bp-groups/bp-groups-template.php:2552
|
2844 |
+
msgid "requested %s"
|
2845 |
msgstr ""
|
2846 |
|
2847 |
+
#: bp-groups/bp-groups-template.php:2736
|
2848 |
+
msgid "Group Activity RSS Feed"
|
2849 |
msgstr ""
|
2850 |
|
2851 |
+
#: bp-groups/bp-groups-widgets.php:19
|
2852 |
+
msgid "A dynamic list of recently active, popular, and newest groups"
|
|
|
2853 |
msgstr ""
|
2854 |
|
2855 |
+
#: bp-groups/bp-groups-widgets.php:68 bp-groups/bp-groups-widgets.php:168
|
2856 |
+
msgid "created %s"
|
2857 |
msgstr ""
|
2858 |
|
2859 |
+
#: bp-groups/bp-groups-widgets.php:87
|
2860 |
+
msgid "There are no groups to display."
|
2861 |
msgstr ""
|
2862 |
|
2863 |
+
#: bp-groups/bp-groups-widgets.php:120
|
2864 |
+
msgid "Max groups to show:"
|
|
|
2865 |
msgstr ""
|
2866 |
|
2867 |
+
#: bp-groups/bp-groups-widgets.php:123
|
2868 |
+
msgid "Default groups to show:"
|
|
|
2869 |
msgstr ""
|
2870 |
|
2871 |
+
#: bp-groups/bp-groups-widgets.php:187
|
2872 |
+
msgid "No groups matched the current filter."
|
2873 |
msgstr ""
|
2874 |
|
2875 |
+
#: bp-members/bp-members-actions.php:87
|
2876 |
+
msgid "User marked as spammer. Spam users are visible only to site admins."
|
2877 |
msgstr ""
|
2878 |
|
2879 |
+
#: bp-members/bp-members-actions.php:89
|
2880 |
+
msgid "User removed as spammer."
|
2881 |
msgstr ""
|
2882 |
|
2883 |
+
#: bp-members/bp-members-actions.php:136
|
2884 |
+
msgid "%s has been deleted from the system."
|
2885 |
msgstr ""
|
2886 |
|
2887 |
+
#: bp-members/bp-members-actions.php:138
|
2888 |
+
msgid "There was an error deleting %s from the system. Please try again."
|
2889 |
msgstr ""
|
2890 |
|
2891 |
+
#: bp-members/bp-members-adminbar.php:96
|
2892 |
+
msgid "Log in"
|
2893 |
msgstr ""
|
2894 |
|
2895 |
+
#: bp-members/bp-members-adminbar.php:156
|
2896 |
+
msgid "Edit Member"
|
2897 |
msgstr ""
|
2898 |
|
2899 |
+
#: bp-members/bp-members-adminbar.php:165
|
2900 |
+
#: bp-xprofile/bp-xprofile-template.php:822
|
2901 |
+
#: bp-xprofile/bp-xprofile-template.php:823
|
2902 |
+
msgid "Edit Profile"
|
2903 |
msgstr ""
|
2904 |
|
2905 |
+
#: bp-members/bp-members-adminbar.php:182
|
2906 |
+
#: bp-members/bp-members-buddybar.php:116
|
2907 |
+
msgid "Mark as Spammer"
|
2908 |
msgstr ""
|
2909 |
|
2910 |
+
#: bp-members/bp-members-adminbar.php:184
|
2911 |
+
msgid "Are you sure you want to mark this user as a spammer?"
|
2912 |
msgstr ""
|
2913 |
|
2914 |
+
#: bp-members/bp-members-adminbar.php:190
|
2915 |
+
#: bp-members/bp-members-buddybar.php:120
|
2916 |
+
msgid "Not a Spammer"
|
2917 |
msgstr ""
|
2918 |
|
2919 |
+
#: bp-members/bp-members-adminbar.php:192
|
2920 |
+
msgid "Are you sure you want to mark this user as not a spammer?"
|
2921 |
msgstr ""
|
2922 |
|
2923 |
+
#: bp-members/bp-members-adminbar.php:200
|
2924 |
+
#: bp-settings/bp-settings-loader.php:115
|
2925 |
+
#: bp-settings/bp-settings-loader.php:175
|
2926 |
+
#: bp-themes/bp-default/members/single/settings/delete-account.php:50
|
2927 |
+
msgid "Delete Account"
|
2928 |
msgstr ""
|
2929 |
|
2930 |
+
#: bp-members/bp-members-adminbar.php:202
|
2931 |
+
msgid "Are you sure you want to delete this user's account?"
|
2932 |
msgstr ""
|
2933 |
|
2934 |
+
#: bp-members/bp-members-adminbar.php:219
|
2935 |
+
msgid "Notifications <span id=\"ab-pending-notifications\" class=\"pending-count\">%s</span>"
|
2936 |
msgstr ""
|
2937 |
|
2938 |
+
#: bp-members/bp-members-adminbar.php:221 bp-members/bp-members-buddybar.php:13
|
2939 |
+
#: bp-settings/bp-settings-loader.php:103
|
2940 |
+
#: bp-settings/bp-settings-loader.php:166
|
2941 |
+
msgid "Notifications"
|
2942 |
msgstr ""
|
2943 |
|
2944 |
+
#: bp-members/bp-members-adminbar.php:257
|
2945 |
+
msgid "No new notifications"
|
|
|
|
|
2946 |
msgstr ""
|
2947 |
|
2948 |
+
#: bp-members/bp-members-buddybar.php:34
|
2949 |
+
msgid "No new notifications."
|
2950 |
msgstr ""
|
2951 |
|
2952 |
+
#: bp-members/bp-members-buddybar.php:62
|
2953 |
+
msgid "Blog Authors"
|
2954 |
msgstr ""
|
2955 |
|
2956 |
+
#: bp-members/bp-members-buddybar.php:108
|
2957 |
+
msgid "Edit %s's Profile"
|
2958 |
msgstr ""
|
2959 |
|
2960 |
+
#: bp-members/bp-members-buddybar.php:112
|
2961 |
+
msgid "Edit %s's Avatar"
|
2962 |
msgstr ""
|
2963 |
|
2964 |
+
#: bp-members/bp-members-buddybar.php:124
|
2965 |
+
msgid "Delete %s's Account"
|
2966 |
msgstr ""
|
2967 |
|
2968 |
+
#: bp-members/bp-members-functions.php:671
|
2969 |
+
msgid "<strong>ERROR</strong>: Your account has been marked as a spammer."
|
2970 |
msgstr ""
|
2971 |
|
2972 |
+
#: bp-members/bp-members-loader.php:70
|
2973 |
+
msgid "Search Members..."
|
2974 |
msgstr ""
|
2975 |
|
2976 |
+
#: bp-members/bp-members-loader.php:177
|
2977 |
+
msgid "You"
|
2978 |
msgstr ""
|
2979 |
|
2980 |
+
#: bp-members/bp-members-signup.php:59
|
2981 |
+
msgid "Please make sure you enter your password twice"
|
|
|
2982 |
msgstr ""
|
2983 |
|
2984 |
+
#: bp-members/bp-members-signup.php:63
|
2985 |
+
msgid "The passwords you entered do not match."
|
|
|
2986 |
msgstr ""
|
2987 |
|
2988 |
+
#: bp-members/bp-members-signup.php:86
|
2989 |
+
msgid "This is a required field"
|
|
|
2990 |
msgstr ""
|
2991 |
|
2992 |
+
#: bp-members/bp-members-signup.php:199
|
2993 |
+
msgid "Your account is now active!"
|
2994 |
msgstr ""
|
2995 |
|
2996 |
+
#: bp-members/bp-members-signup.php:308
|
2997 |
+
msgid "Please enter a username"
|
2998 |
msgstr ""
|
2999 |
|
3000 |
+
#: bp-members/bp-members-signup.php:319
|
3001 |
+
msgid "Only lowercase letters and numbers allowed"
|
3002 |
msgstr ""
|
3003 |
|
3004 |
+
#: bp-members/bp-members-signup.php:322
|
3005 |
+
msgid "Username must be at least 4 characters"
|
3006 |
msgstr ""
|
3007 |
|
3008 |
+
#: bp-members/bp-members-signup.php:325
|
3009 |
+
msgid "Sorry, usernames may not contain the character \"_\"!"
|
3010 |
msgstr ""
|
3011 |
|
3012 |
+
#: bp-members/bp-members-signup.php:332
|
3013 |
+
msgid "Sorry, usernames must have letters too!"
|
3014 |
msgstr ""
|
3015 |
|
3016 |
+
#: bp-members/bp-members-signup.php:335
|
3017 |
+
msgid "Please check your email address."
|
3018 |
msgstr ""
|
3019 |
|
3020 |
+
#: bp-members/bp-members-signup.php:338 bp-members/bp-members-signup.php:346
|
3021 |
+
msgid "Sorry, that email address is not allowed!"
|
3022 |
msgstr ""
|
3023 |
|
3024 |
+
#: bp-members/bp-members-signup.php:351
|
3025 |
+
msgid "Sorry, that username already exists!"
|
3026 |
msgstr ""
|
3027 |
|
3028 |
+
#: bp-members/bp-members-signup.php:355
|
3029 |
+
msgid "Sorry, that email address is already used!"
|
|
|
3030 |
msgstr ""
|
3031 |
|
3032 |
+
#: bp-members/bp-members-signup.php:394
|
3033 |
+
msgid "<strong>ERROR</strong>: Couldn’t register you... please contact the <a href=\"mailto:%s\">webmaster</a> !"
|
|
|
3034 |
msgstr ""
|
3035 |
|
3036 |
+
#: bp-members/bp-members-signup.php:479 bp-members/bp-members-signup.php:483
|
3037 |
+
msgid "Invalid activation key"
|
3038 |
msgstr ""
|
3039 |
|
3040 |
+
#: bp-members/bp-members-signup.php:523
|
3041 |
+
msgid "%s became a registered member"
|
3042 |
msgstr ""
|
3043 |
|
3044 |
+
#: bp-members/bp-members-signup.php:597
|
3045 |
+
msgid "<strong>ERROR</strong>: Your account has not been activated. Check your email for the activation link."
|
3046 |
msgstr ""
|
3047 |
|
3048 |
+
#: bp-members/bp-members-template.php:212
|
3049 |
+
msgctxt "Member pagination previous text"
|
3050 |
+
msgid "←"
|
3051 |
msgstr ""
|
3052 |
|
3053 |
+
#: bp-members/bp-members-template.php:213
|
3054 |
+
msgctxt "Member pagination next text"
|
3055 |
+
msgid "→"
|
3056 |
msgstr ""
|
3057 |
|
3058 |
+
#: bp-members/bp-members-template.php:354
|
3059 |
+
msgid "Viewing member %1$s to %2$s (of %3$s active members)"
|
3060 |
msgstr ""
|
3061 |
|
3062 |
+
#: bp-members/bp-members-template.php:356
|
3063 |
+
msgid "Viewing member %1$s to %2$s (of %3$s members with friends)"
|
|
|
|
|
3064 |
msgstr ""
|
3065 |
|
3066 |
+
#: bp-members/bp-members-template.php:358
|
3067 |
+
msgid "Viewing member %1$s to %2$s (of %3$s members online)"
|
|
|
3068 |
msgstr ""
|
3069 |
|
3070 |
+
#: bp-members/bp-members-template.php:360
|
3071 |
+
msgid "Viewing member %1$s to %2$s (of %3$s members)"
|
|
|
3072 |
msgstr ""
|
3073 |
|
3074 |
+
#: bp-members/bp-members-template.php:561
|
3075 |
+
msgid "Never active"
|
3076 |
msgstr ""
|
3077 |
|
3078 |
+
#: bp-members/bp-members-template.php:583
|
3079 |
+
msgctxt "member latest update in member directory"
|
3080 |
+
msgid "- "%s ""
|
3081 |
msgstr ""
|
3082 |
|
3083 |
+
#: bp-members/bp-members-template.php:640
|
3084 |
+
msgid "registered %s"
|
3085 |
msgstr ""
|
3086 |
|
3087 |
+
#: bp-members/bp-members-template.php:1091
|
3088 |
+
msgid "Your Avatar"
|
|
|
3089 |
msgstr ""
|
3090 |
|
3091 |
+
#: bp-members/bp-members-template.php:1159
|
3092 |
+
msgid "Activity RSS Feed"
|
3093 |
msgstr ""
|
3094 |
|
3095 |
+
#: bp-messages/bp-messages-actions.php:30
|
3096 |
+
msgid "Your reply was sent successfully"
|
3097 |
msgstr ""
|
3098 |
|
3099 |
+
#: bp-messages/bp-messages-actions.php:32
|
3100 |
+
msgid "There was a problem sending your reply, please try again"
|
|
|
3101 |
msgstr ""
|
3102 |
|
3103 |
+
#: bp-messages/bp-messages-actions.php:41 bp-messages/bp-messages-loader.php:96
|
3104 |
+
msgid "Messages <span>%s</span>"
|
|
|
3105 |
msgstr ""
|
3106 |
|
3107 |
+
#: bp-messages/bp-messages-actions.php:48
|
3108 |
+
msgid "From: %s"
|
3109 |
msgstr ""
|
3110 |
|
3111 |
+
#: bp-messages/bp-messages-actions.php:78
|
3112 |
+
msgid "There was an error deleting that message."
|
3113 |
msgstr ""
|
3114 |
|
3115 |
+
#: bp-messages/bp-messages-actions.php:80
|
3116 |
+
msgid "Message deleted."
|
3117 |
msgstr ""
|
3118 |
|
3119 |
+
#: bp-messages/bp-messages-actions.php:102
|
3120 |
+
msgid "There was an error deleting messages."
|
3121 |
msgstr ""
|
3122 |
|
3123 |
+
#: bp-messages/bp-messages-actions.php:104
|
3124 |
+
#: bp-themes/bp-default/_inc/ajax.php:609
|
3125 |
+
msgid "Messages deleted."
|
3126 |
msgstr ""
|
3127 |
|
3128 |
+
#: bp-messages/bp-messages-classes.php:203
|
3129 |
+
msgid " Recipients"
|
3130 |
msgstr ""
|
3131 |
|
3132 |
+
#: bp-messages/bp-messages-functions.php:48
|
3133 |
+
msgid "Re: %s"
|
3134 |
msgstr ""
|
3135 |
|
3136 |
+
#: bp-messages/bp-messages-functions.php:56
|
3137 |
+
msgid "No Subject"
|
3138 |
msgstr ""
|
3139 |
|
3140 |
+
#: bp-messages/bp-messages-functions.php:237
|
3141 |
+
#: bp-messages/bp-messages-loader.php:114
|
3142 |
+
#: bp-messages/bp-messages-loader.php:182
|
3143 |
+
msgid "Inbox"
|
3144 |
msgstr ""
|
3145 |
|
3146 |
+
#: bp-messages/bp-messages-functions.php:240
|
3147 |
+
msgid "You have %d new messages"
|
3148 |
msgstr ""
|
3149 |
|
3150 |
+
#: bp-messages/bp-messages-functions.php:243
|
3151 |
+
msgid "You have %d new message"
|
|
|
3152 |
msgstr ""
|
3153 |
|
3154 |
+
#: bp-messages/bp-messages-loader.php:24
|
3155 |
+
msgid "Private Messages"
|
3156 |
msgstr ""
|
3157 |
|
3158 |
+
#: bp-messages/bp-messages-loader.php:79
|
3159 |
+
msgid "Search Messages..."
|
3160 |
msgstr ""
|
3161 |
|
3162 |
+
#: bp-messages/bp-messages-loader.php:124
|
3163 |
+
#: bp-messages/bp-messages-loader.php:205
|
3164 |
+
msgid "Sent"
|
3165 |
msgstr ""
|
3166 |
|
3167 |
+
#: bp-messages/bp-messages-loader.php:134
|
3168 |
+
#: bp-messages/bp-messages-loader.php:213
|
3169 |
+
msgid "Compose"
|
3170 |
msgstr ""
|
3171 |
|
3172 |
+
#: bp-messages/bp-messages-loader.php:145
|
3173 |
+
msgid "Notices"
|
3174 |
msgstr ""
|
3175 |
|
3176 |
+
#: bp-messages/bp-messages-loader.php:178
|
3177 |
+
msgid "Messages <span class=\"count\">%s</span>"
|
3178 |
msgstr ""
|
3179 |
|
3180 |
+
#: bp-messages/bp-messages-loader.php:179
|
3181 |
+
msgid "Inbox <span class=\"count\">%s</span>"
|
3182 |
msgstr ""
|
3183 |
|
3184 |
+
#: bp-messages/bp-messages-loader.php:181
|
3185 |
+
#: bp-messages/bp-messages-screens.php:149
|
3186 |
+
msgid "Messages"
|
3187 |
msgstr ""
|
3188 |
|
3189 |
+
#: bp-messages/bp-messages-loader.php:222
|
3190 |
+
msgid "All Member Notices"
|
3191 |
msgstr ""
|
3192 |
|
3193 |
+
#: bp-messages/bp-messages-loader.php:241
|
3194 |
+
msgid "My Messages"
|
3195 |
msgstr ""
|
3196 |
|
3197 |
+
#: bp-messages/bp-messages-notifications.php:30
|
3198 |
+
msgid "New message from %s"
|
|
|
3199 |
msgstr ""
|
3200 |
|
3201 |
+
#: bp-messages/bp-messages-notifications.php:32
|
3202 |
+
msgid ""
|
3203 |
+
"%s sent you a new message:\n"
|
3204 |
+
"\n"
|
3205 |
+
"Subject: %s\n"
|
3206 |
+
"\n"
|
3207 |
+
"\"%s\"\n"
|
3208 |
+
"\n"
|
3209 |
+
"To view and read your messages please log in and visit: %s\n"
|
3210 |
+
"\n"
|
3211 |
+
"---------------------\n"
|
3212 |
msgstr ""
|
3213 |
|
3214 |
#: bp-messages/bp-messages-screens.php:54
|
3260 |
msgid "A new site notice is posted"
|
3261 |
msgstr ""
|
3262 |
|
3263 |
+
#: bp-messages/bp-messages-template.php:75
|
3264 |
+
msgctxt "Message pagination previous text"
|
3265 |
+
msgid "←"
|
3266 |
msgstr ""
|
3267 |
|
3268 |
+
#: bp-messages/bp-messages-template.php:76
|
3269 |
+
msgctxt "Message pagination next text"
|
3270 |
+
msgid "→"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3271 |
msgstr ""
|
3272 |
|
3273 |
+
#: bp-messages/bp-messages-template.php:343
|
3274 |
+
msgid "Viewing message %1$s to %2$s (of %3$s messages)"
|
3275 |
+
msgstr ""
|
3276 |
+
|
3277 |
+
#: bp-messages/bp-messages-template.php:401
|
3278 |
+
msgid "Select:"
|
3279 |
+
msgstr ""
|
3280 |
+
|
3281 |
+
#: bp-messages/bp-messages-template.php:404
|
3282 |
+
msgid "Read"
|
3283 |
+
msgstr ""
|
3284 |
+
|
3285 |
+
#: bp-messages/bp-messages-template.php:405
|
3286 |
+
msgid "Unread"
|
3287 |
+
msgstr ""
|
3288 |
+
|
3289 |
+
#: bp-messages/bp-messages-template.php:406
|
3290 |
+
msgid "All"
|
3291 |
+
msgstr ""
|
3292 |
+
|
3293 |
+
#: bp-messages/bp-messages-template.php:409
|
3294 |
+
msgid "Mark as Read"
|
3295 |
+
msgstr ""
|
3296 |
+
|
3297 |
+
#: bp-messages/bp-messages-template.php:410
|
3298 |
+
msgid "Mark as Unread"
|
3299 |
+
msgstr ""
|
3300 |
+
|
3301 |
+
#: bp-messages/bp-messages-template.php:412
|
3302 |
+
msgid "Delete Selected"
|
3303 |
msgstr ""
|
3304 |
|
3305 |
+
#: bp-messages/bp-messages-template.php:421
|
3306 |
+
msgid "Currently Active"
|
3307 |
msgstr ""
|
3308 |
|
3309 |
+
#: bp-messages/bp-messages-template.php:496
|
3310 |
+
msgid "Deactivate"
|
3311 |
msgstr ""
|
3312 |
|
3313 |
+
#: bp-messages/bp-messages-template.php:547
|
3314 |
+
#: bp-themes/bp-default/functions.php:155
|
3315 |
+
msgid "Close"
|
3316 |
msgstr ""
|
3317 |
|
3318 |
+
#: bp-messages/bp-messages-template.php:591
|
3319 |
+
msgid "Send a private message to this user."
|
3320 |
msgstr ""
|
3321 |
|
3322 |
+
#: bp-messages/bp-messages-template.php:592
|
3323 |
+
msgid "Private Message"
|
3324 |
msgstr ""
|
3325 |
|
3326 |
+
#: bp-messages/bp-messages-template.php:782
|
3327 |
+
msgid "%d Recipients"
|
|
|
3328 |
msgstr ""
|
3329 |
|
3330 |
+
#: bp-messages/bp-messages-template.php:857
|
3331 |
+
#: bp-themes/bp-default/_inc/ajax.php:543
|
3332 |
+
msgid "Sent %s"
|
3333 |
msgstr ""
|
3334 |
|
3335 |
+
#: bp-settings/bp-settings-actions.php:101
|
3336 |
+
#: bp-settings/bp-settings-actions.php:142
|
3337 |
+
#: bp-xprofile/bp-xprofile-screens.php:113
|
3338 |
+
msgid "Changes saved."
|
3339 |
msgstr ""
|
3340 |
|
3341 |
+
#: bp-settings/bp-settings-actions.php:104
|
3342 |
+
msgid "Your new passwords did not match."
|
3343 |
msgstr ""
|
3344 |
|
3345 |
+
#: bp-settings/bp-settings-actions.php:107
|
3346 |
+
msgid "Your existing password is incorrect."
|
3347 |
msgstr ""
|
3348 |
|
3349 |
+
#: bp-settings/bp-settings-actions.php:110
|
3350 |
+
msgid "Sorry, that email address is already used or is invalid."
|
3351 |
msgstr ""
|
3352 |
|
3353 |
+
#: bp-settings/bp-settings-loader.php:92 bp-settings/bp-settings-loader.php:158
|
3354 |
+
msgid "General"
|
3355 |
msgstr ""
|
3356 |
|
3357 |
+
#: bp-themes/bp-default/404.php:7
|
3358 |
+
msgid "Page not found"
|
3359 |
msgstr ""
|
3360 |
|
3361 |
+
#: bp-themes/bp-default/404.php:9
|
3362 |
+
msgid "We're sorry, but we can't find the page that you're looking for. Perhaps searching will help."
|
3363 |
msgstr ""
|
3364 |
|
3365 |
+
#: bp-themes/bp-default/_inc/ajax.php:177
|
3366 |
+
msgid "There was a problem posting your update, please try again."
|
3367 |
msgstr ""
|
3368 |
|
3369 |
+
#: bp-themes/bp-default/_inc/ajax.php:275
|
3370 |
+
#: bp-themes/bp-default/_inc/ajax.php:310
|
3371 |
+
msgid "There was a problem when deleting. Please try again."
|
3372 |
msgstr ""
|
3373 |
|
3374 |
+
#: bp-themes/bp-default/_inc/ajax.php:325
|
3375 |
+
#: bp-themes/bp-default/activity/entry.php:72
|
3376 |
+
#: bp-themes/bp-default/functions.php:158
|
3377 |
+
msgid "Remove Favorite"
|
3378 |
msgstr ""
|
3379 |
|
3380 |
+
#: bp-themes/bp-default/_inc/ajax.php:334
|
3381 |
+
#: bp-themes/bp-default/activity/entry.php:68
|
3382 |
+
#: bp-themes/bp-default/functions.php:157
|
3383 |
+
msgid "Favorite"
|
3384 |
msgstr ""
|
3385 |
|
3386 |
+
#: bp-themes/bp-default/_inc/ajax.php:393
|
3387 |
+
#: bp-themes/bp-default/groups/create.php:234
|
3388 |
+
#: bp-themes/bp-default/groups/single/send-invites.php:42
|
3389 |
+
msgid "Remove Invite"
|
3390 |
msgstr ""
|
3391 |
|
3392 |
+
#: bp-themes/bp-default/_inc/ajax.php:434
|
3393 |
+
msgid "Request Pending"
|
3394 |
msgstr ""
|
3395 |
|
3396 |
+
#: bp-themes/bp-default/_inc/ajax.php:446
|
3397 |
+
msgid "There was a problem accepting that request. Please try again."
|
3398 |
msgstr ""
|
3399 |
|
3400 |
+
#: bp-themes/bp-default/_inc/ajax.php:457
|
3401 |
+
msgid "There was a problem rejecting that request. Please try again."
|
3402 |
msgstr ""
|
3403 |
|
3404 |
+
#: bp-themes/bp-default/_inc/ajax.php:480
|
3405 |
+
msgid "Error joining group"
|
3406 |
msgstr ""
|
3407 |
|
3408 |
+
#: bp-themes/bp-default/_inc/ajax.php:490
|
3409 |
+
msgid "Error requesting membership"
|
3410 |
msgstr ""
|
3411 |
|
3412 |
+
#: bp-themes/bp-default/_inc/ajax.php:492
|
3413 |
+
msgid "Membership Requested"
|
3414 |
msgstr ""
|
3415 |
|
3416 |
+
#: bp-themes/bp-default/_inc/ajax.php:501
|
3417 |
+
msgid "Error leaving group"
|
3418 |
msgstr ""
|
3419 |
|
3420 |
+
#: bp-themes/bp-default/_inc/ajax.php:518
|
3421 |
+
msgid "There was a problem closing the notice."
|
3422 |
msgstr ""
|
3423 |
|
3424 |
+
#: bp-themes/bp-default/_inc/ajax.php:560
|
3425 |
+
msgid "There was a problem sending that reply. Please try again."
|
3426 |
msgstr ""
|
3427 |
|
3428 |
+
#: bp-themes/bp-default/_inc/ajax.php:570
|
3429 |
+
msgid "There was a problem marking messages as unread."
|
3430 |
msgstr ""
|
3431 |
|
3432 |
+
#: bp-themes/bp-default/_inc/ajax.php:586
|
3433 |
+
msgid "There was a problem marking messages as read."
|
3434 |
msgstr ""
|
3435 |
|
3436 |
+
#: bp-themes/bp-default/_inc/ajax.php:602
|
3437 |
+
msgid "There was a problem deleting messages."
|
3438 |
msgstr ""
|
3439 |
|
3440 |
+
#: bp-themes/bp-default/activity/activity-loop.php:41
|
3441 |
+
msgid "Load More"
|
3442 |
msgstr ""
|
3443 |
|
3444 |
+
#: bp-themes/bp-default/activity/activity-loop.php:55
|
3445 |
+
msgid "Sorry, there was no activity found. Please try a different filter."
|
3446 |
msgstr ""
|
3447 |
|
3448 |
+
#. translators: 1: user profile link, 2: user name, 3: activity permalink, 3:
|
3449 |
+
#. activity timestamp
|
|
|
3450 |
|
3451 |
+
#: bp-themes/bp-default/activity/comment.php:27
|
3452 |
+
msgid "<a href=\"%1$s\">%2$s</a> replied <a href=\"%3$s\" class=\"activity-time-since\"><span class=\"time-since\">%4$s</span></a>"
|
3453 |
msgstr ""
|
3454 |
|
3455 |
+
#: bp-themes/bp-default/activity/comment.php:37
|
3456 |
+
#: bp-themes/bp-default/groups/single/forum/edit.php:10
|
3457 |
+
msgid "Reply"
|
3458 |
msgstr ""
|
3459 |
|
3460 |
+
#: bp-themes/bp-default/activity/entry.php:37
|
3461 |
+
msgid "In reply to: "
|
3462 |
msgstr ""
|
3463 |
|
3464 |
+
#: bp-themes/bp-default/activity/entry.php:37
|
3465 |
+
msgid "View Thread / Permalink"
|
3466 |
msgstr ""
|
3467 |
|
3468 |
+
#: bp-themes/bp-default/activity/entry.php:60
|
3469 |
+
msgid "Comment <span>%s</span>"
|
3470 |
msgstr ""
|
3471 |
|
3472 |
+
#: bp-themes/bp-default/activity/entry.php:68
|
3473 |
+
msgid "Mark as Favorite"
|
3474 |
msgstr ""
|
3475 |
|
3476 |
+
#: bp-themes/bp-default/activity/entry.php:104
|
3477 |
+
msgid "Post"
|
3478 |
msgstr ""
|
3479 |
|
3480 |
+
#: bp-themes/bp-default/activity/entry.php:104
|
3481 |
+
msgid "or press esc to cancel."
|
|
|
3482 |
msgstr ""
|
3483 |
|
3484 |
+
#: bp-themes/bp-default/activity/index.php:41
|
3485 |
+
msgid "The public activity for everyone on this site."
|
|
|
3486 |
msgstr ""
|
3487 |
|
3488 |
+
#: bp-themes/bp-default/activity/index.php:41
|
3489 |
+
#: bp-themes/bp-default/members/index.php:35
|
3490 |
+
msgid "All Members <span>%s</span>"
|
3491 |
msgstr ""
|
3492 |
|
3493 |
+
#: bp-themes/bp-default/activity/index.php:51
|
3494 |
+
msgid "The activity of my friends only."
|
3495 |
msgstr ""
|
3496 |
|
3497 |
+
#: bp-themes/bp-default/activity/index.php:51
|
3498 |
+
#: bp-themes/bp-default/members/index.php:39
|
3499 |
+
msgid "My Friends <span>%s</span>"
|
3500 |
msgstr ""
|
3501 |
|
3502 |
+
#: bp-themes/bp-default/activity/index.php:63
|
3503 |
+
msgid "The activity of groups I am a member of."
|
3504 |
msgstr ""
|
3505 |
|
3506 |
+
#: bp-themes/bp-default/activity/index.php:63
|
3507 |
+
#: bp-themes/bp-default/groups/index.php:41
|
3508 |
+
msgid "My Groups <span>%s</span>"
|
3509 |
msgstr ""
|
3510 |
|
3511 |
+
#: bp-themes/bp-default/activity/index.php:73
|
3512 |
+
msgid "The activity I've marked as a favorite."
|
|
|
3513 |
msgstr ""
|
3514 |
|
3515 |
+
#: bp-themes/bp-default/activity/index.php:73
|
3516 |
+
msgid "My Favorites <span>%s</span>"
|
3517 |
msgstr ""
|
3518 |
|
3519 |
+
#: bp-themes/bp-default/activity/index.php:79
|
3520 |
+
msgid "Activity that I have been mentioned in."
|
3521 |
msgstr ""
|
3522 |
|
3523 |
+
#: bp-themes/bp-default/activity/index.php:79
|
3524 |
+
msgid "<span>%s new</span>"
|
3525 |
msgstr ""
|
3526 |
|
3527 |
+
#: bp-themes/bp-default/activity/index.php:89
|
3528 |
+
#: bp-themes/bp-default/groups/single/activity.php:3
|
3529 |
+
msgid "RSS Feed"
|
|
|
|
|
3530 |
msgstr ""
|
3531 |
|
3532 |
+
#: bp-themes/bp-default/activity/index.php:89
|
3533 |
+
#: bp-themes/bp-default/groups/single/activity.php:3
|
3534 |
+
msgid "RSS"
|
3535 |
msgstr ""
|
3536 |
|
3537 |
+
#: bp-themes/bp-default/activity/index.php:94
|
3538 |
+
#: bp-themes/bp-default/groups/single/activity.php:8
|
3539 |
+
#: bp-themes/bp-default/members/single/activity.php:18
|
3540 |
+
msgid "Show:"
|
3541 |
msgstr ""
|
3542 |
|
3543 |
+
#: bp-themes/bp-default/activity/index.php:96
|
3544 |
+
#: bp-themes/bp-default/groups/single/activity.php:10
|
3545 |
+
#: bp-themes/bp-default/members/single/activity.php:20
|
3546 |
+
msgid "Everything"
|
3547 |
msgstr ""
|
3548 |
|
3549 |
+
#: bp-themes/bp-default/activity/index.php:97
|
3550 |
+
#: bp-themes/bp-default/groups/single/activity.php:11
|
3551 |
+
#: bp-themes/bp-default/members/single/activity.php:21
|
3552 |
+
msgid "Updates"
|
3553 |
msgstr ""
|
3554 |
|
3555 |
+
#: bp-themes/bp-default/activity/index.php:102
|
3556 |
+
#: bp-themes/bp-default/members/single/activity.php:28
|
3557 |
+
msgid "Comments"
|
|
|
3558 |
msgstr ""
|
3559 |
|
3560 |
+
#: bp-themes/bp-default/activity/index.php:108
|
3561 |
+
#: bp-themes/bp-default/groups/single/activity.php:14
|
3562 |
+
#: bp-themes/bp-default/members/single/activity.php:43
|
3563 |
+
msgid "Forum Topics"
|
3564 |
msgstr ""
|
3565 |
|
3566 |
+
#: bp-themes/bp-default/activity/index.php:109
|
3567 |
+
#: bp-themes/bp-default/groups/single/activity.php:15
|
3568 |
+
#: bp-themes/bp-default/members/single/activity.php:44
|
3569 |
+
msgid "Forum Replies"
|
3570 |
msgstr ""
|
3571 |
|
3572 |
+
#: bp-themes/bp-default/activity/index.php:115
|
3573 |
+
#: bp-themes/bp-default/members/single/activity.php:50
|
3574 |
+
msgid "New Groups"
|
3575 |
msgstr ""
|
3576 |
|
3577 |
+
#: bp-themes/bp-default/activity/index.php:116
|
3578 |
+
#: bp-themes/bp-default/groups/single/activity.php:18
|
3579 |
+
#: bp-themes/bp-default/members/single/activity.php:51
|
3580 |
+
msgid "Group Memberships"
|
3581 |
msgstr ""
|
3582 |
|
3583 |
+
#: bp-themes/bp-default/activity/index.php:126
|
3584 |
+
msgid "New Members"
|
3585 |
msgstr ""
|
3586 |
|
3587 |
+
#: bp-themes/bp-default/activity/post-form.php:23
|
3588 |
+
msgid "What's new in %s, %s?"
|
3589 |
msgstr ""
|
3590 |
|
3591 |
+
#: bp-themes/bp-default/activity/post-form.php:25
|
3592 |
+
msgid "What's new, %s?"
|
3593 |
msgstr ""
|
3594 |
|
3595 |
+
#: bp-themes/bp-default/activity/post-form.php:35
|
3596 |
+
msgid "Post Update"
|
3597 |
msgstr ""
|
3598 |
|
3599 |
+
#: bp-themes/bp-default/activity/post-form.php:42
|
3600 |
+
msgid "Post in"
|
3601 |
msgstr ""
|
3602 |
|
3603 |
+
#: bp-themes/bp-default/archive.php:10
|
3604 |
+
msgid "You are browsing the archive for %1$s."
|
3605 |
msgstr ""
|
3606 |
|
3607 |
+
#: bp-themes/bp-default/archive.php:24 bp-themes/bp-default/attachment.php:18
|
3608 |
+
#: bp-themes/bp-default/index.php:24 bp-themes/bp-default/search.php:26
|
3609 |
+
#: bp-themes/bp-default/single.php:16
|
3610 |
+
msgctxt "Post written by..."
|
3611 |
+
msgid "by %s"
|
3612 |
msgstr ""
|
3613 |
|
3614 |
+
#: bp-themes/bp-default/archive.php:28 bp-themes/bp-default/attachment.php:22
|
3615 |
+
#: bp-themes/bp-default/index.php:32 bp-themes/bp-default/search.php:30
|
3616 |
+
msgid "Permanent Link to"
|
3617 |
msgstr ""
|
3618 |
|
3619 |
+
#: bp-themes/bp-default/archive.php:30 bp-themes/bp-default/index.php:34
|
3620 |
+
#: bp-themes/bp-default/search.php:32 bp-themes/bp-default/single.php:23
|
3621 |
+
msgid "%1$s <span>in %2$s</span>"
|
3622 |
msgstr ""
|
3623 |
|
3624 |
+
#: bp-themes/bp-default/archive.php:33 bp-themes/bp-default/index.php:37
|
3625 |
+
#: bp-themes/bp-default/search.php:35 bp-themes/bp-default/single.php:28
|
3626 |
+
msgid "Read the rest of this entry →"
|
3627 |
msgstr ""
|
3628 |
|
3629 |
+
#: bp-themes/bp-default/archive.php:34 bp-themes/bp-default/index.php:38
|
3630 |
+
#: bp-themes/bp-default/onecolumn-page.php:31 bp-themes/bp-default/page.php:20
|
3631 |
+
#: bp-themes/bp-default/single.php:30
|
3632 |
+
msgid "Pages: "
|
3633 |
msgstr ""
|
3634 |
|
3635 |
+
#: bp-themes/bp-default/archive.php:37 bp-themes/bp-default/index.php:41
|
3636 |
+
#: bp-themes/bp-default/search.php:38 bp-themes/bp-default/single.php:33
|
3637 |
+
msgid "Tags: "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3638 |
msgstr ""
|
3639 |
|
3640 |
+
#: bp-themes/bp-default/archive.php:37 bp-themes/bp-default/index.php:41
|
3641 |
+
#: bp-themes/bp-default/search.php:38
|
3642 |
+
msgid "No Comments »"
|
3643 |
msgstr ""
|
3644 |
|
3645 |
+
#: bp-themes/bp-default/archive.php:37 bp-themes/bp-default/index.php:41
|
3646 |
+
#: bp-themes/bp-default/search.php:38
|
3647 |
+
msgid "1 Comment »"
|
3648 |
msgstr ""
|
3649 |
|
3650 |
+
#: bp-themes/bp-default/archive.php:37 bp-themes/bp-default/index.php:41
|
3651 |
+
#: bp-themes/bp-default/search.php:38
|
3652 |
+
msgid "% Comments »"
|
3653 |
msgstr ""
|
3654 |
|
3655 |
+
#: bp-themes/bp-default/archive.php:50 bp-themes/bp-default/index.php:54
|
3656 |
+
msgid "Not Found"
|
3657 |
msgstr ""
|
3658 |
|
3659 |
+
#: bp-themes/bp-default/attachment.php:26 bp-themes/bp-default/single.php:24
|
3660 |
+
msgid "Edit this entry"
|
3661 |
msgstr ""
|
3662 |
|
3663 |
+
#: bp-themes/bp-default/attachment.php:40
|
3664 |
+
msgid "Full size is %s pixels"
|
3665 |
msgstr ""
|
3666 |
|
3667 |
+
#: bp-themes/bp-default/attachment.php:43
|
3668 |
+
msgid "Link to full size image"
|
3669 |
msgstr ""
|
3670 |
|
3671 |
+
#: bp-themes/bp-default/attachment.php:62
|
3672 |
+
msgid "Sorry, no attachments matched your criteria."
|
3673 |
msgstr ""
|
3674 |
|
3675 |
+
#: bp-themes/bp-default/blogs/blogs-loop.php:90
|
3676 |
+
msgid "Sorry, there were no sites found."
|
3677 |
msgstr ""
|
3678 |
|
3679 |
+
#: bp-themes/bp-default/blogs/create.php:32
|
3680 |
+
msgid "Site registration is currently disabled"
|
3681 |
msgstr ""
|
3682 |
|
3683 |
+
#: bp-themes/bp-default/blogs/index.php:35
|
3684 |
+
msgid "All Sites <span>%s</span>"
|
3685 |
msgstr ""
|
3686 |
|
3687 |
+
#: bp-themes/bp-default/blogs/index.php:39
|
3688 |
+
msgid "My Sites <span>%s</span>"
|
3689 |
msgstr ""
|
3690 |
|
3691 |
+
#: bp-themes/bp-default/blogs/index.php:55
|
3692 |
+
#: bp-themes/bp-default/forums/index.php:60
|
3693 |
+
#: bp-themes/bp-default/groups/index.php:57
|
3694 |
+
#: bp-themes/bp-default/groups/single/forum.php:36
|
3695 |
+
#: bp-themes/bp-default/members/index.php:55
|
3696 |
+
#: bp-themes/bp-default/members/single/blogs.php:19
|
3697 |
+
#: bp-themes/bp-default/members/single/forums.php:18
|
3698 |
+
#: bp-themes/bp-default/members/single/friends.php:20
|
3699 |
+
#: bp-themes/bp-default/members/single/groups.php:20
|
3700 |
+
#: bp-xprofile/bp-xprofile-classes.php:620
|
3701 |
+
msgid "Order By:"
|
3702 |
msgstr ""
|
3703 |
|
3704 |
+
#: bp-themes/bp-default/blogs/index.php:57
|
3705 |
+
#: bp-themes/bp-default/forums/index.php:62
|
3706 |
+
#: bp-themes/bp-default/groups/index.php:59
|
3707 |
+
#: bp-themes/bp-default/groups/single/forum.php:38
|
3708 |
+
#: bp-themes/bp-default/members/index.php:57
|
3709 |
+
#: bp-themes/bp-default/members/single/blogs.php:21
|
3710 |
+
#: bp-themes/bp-default/members/single/forums.php:20
|
3711 |
+
#: bp-themes/bp-default/members/single/friends.php:22
|
3712 |
+
#: bp-themes/bp-default/members/single/groups.php:22
|
3713 |
+
msgid "Last Active"
|
3714 |
msgstr ""
|
3715 |
|
3716 |
+
#: bp-themes/bp-default/blogs/index.php:59
|
3717 |
+
#: bp-themes/bp-default/groups/index.php:62
|
3718 |
+
#: bp-themes/bp-default/members/index.php:62
|
3719 |
+
#: bp-themes/bp-default/members/single/blogs.php:23
|
3720 |
+
#: bp-themes/bp-default/members/single/friends.php:24
|
3721 |
+
#: bp-themes/bp-default/members/single/groups.php:25
|
3722 |
+
msgid "Alphabetical"
|
3723 |
msgstr ""
|
3724 |
|
3725 |
+
#: bp-themes/bp-default/comments.php:3
|
3726 |
+
msgid "Password Protected"
|
|
|
|
|
3727 |
msgstr ""
|
3728 |
|
3729 |
+
#: bp-themes/bp-default/comments.php:4
|
3730 |
+
msgid "Enter the password to view comments."
|
|
|
3731 |
msgstr ""
|
3732 |
|
3733 |
+
#: bp-themes/bp-default/comments.php:24
|
3734 |
+
msgid "1 response to %2$s"
|
3735 |
+
msgid_plural "%1$s responses to %2$s"
|
3736 |
+
msgstr[0] ""
|
3737 |
+
msgstr[1] ""
|
3738 |
|
3739 |
+
#: bp-themes/bp-default/comments.php:46
|
3740 |
+
msgid "Comments are closed, but <a href=\"%1$s\" title=\"Trackback URL for this post\">trackbacks</a> and pingbacks are open."
|
|
|
|
|
3741 |
msgstr ""
|
3742 |
|
3743 |
+
#: bp-themes/bp-default/comments.php:50
|
3744 |
+
msgid "Comments are closed."
|
|
|
|
|
3745 |
msgstr ""
|
3746 |
|
3747 |
+
#: bp-themes/bp-default/comments.php:62
|
3748 |
+
msgid "1 trackback"
|
3749 |
+
msgid_plural "%d trackbacks"
|
3750 |
+
msgstr[0] ""
|
3751 |
+
msgstr[1] ""
|
3752 |
|
3753 |
+
#: bp-themes/bp-default/footer.php:15
|
3754 |
+
msgid "Proudly powered by <a href=\"%1$s\">WordPress</a> and <a href=\"%2$s\">BuddyPress</a>."
|
3755 |
msgstr ""
|
3756 |
|
3757 |
+
#: bp-themes/bp-default/forums/forums-loop.php:39
|
3758 |
+
msgid "Topic"
|
3759 |
msgstr ""
|
3760 |
|
3761 |
+
#: bp-themes/bp-default/forums/forums-loop.php:41
|
3762 |
+
msgid "Freshness"
|
3763 |
msgstr ""
|
3764 |
|
3765 |
+
#: bp-themes/bp-default/forums/forums-loop.php:54
|
3766 |
+
msgid "Permalink"
|
3767 |
msgstr ""
|
3768 |
|
3769 |
+
#. translators: "started by [poster] in [forum]"
|
|
|
|
|
3770 |
|
3771 |
+
#: bp-themes/bp-default/forums/forums-loop.php:61
|
3772 |
+
msgid "Started by %1$s"
|
3773 |
msgstr ""
|
3774 |
|
3775 |
+
#. translators: "started by [poster] in [forum]"
|
|
|
|
|
3776 |
|
3777 |
+
#: bp-themes/bp-default/forums/forums-loop.php:72
|
3778 |
+
msgid "in %1$s"
|
3779 |
msgstr ""
|
3780 |
|
3781 |
+
#: bp-themes/bp-default/forums/forums-loop.php:122
|
3782 |
+
msgid "Sorry, there were no forum topics found."
|
3783 |
msgstr ""
|
3784 |
|
3785 |
+
#: bp-themes/bp-default/forums/index.php:23
|
3786 |
+
msgid "Forums Directory"
|
3787 |
msgstr ""
|
3788 |
|
3789 |
+
#: bp-themes/bp-default/forums/index.php:40
|
3790 |
+
msgid "All Topics <span>%s</span>"
|
3791 |
msgstr ""
|
3792 |
|
3793 |
+
#: bp-themes/bp-default/forums/index.php:44
|
3794 |
+
msgid "My Topics <span>%s</span>"
|
3795 |
msgstr ""
|
3796 |
|
3797 |
+
#: bp-themes/bp-default/forums/index.php:63
|
3798 |
+
#: bp-themes/bp-default/groups/single/forum.php:39
|
3799 |
+
#: bp-themes/bp-default/members/single/forums.php:21
|
3800 |
+
msgid "Most Posts"
|
3801 |
msgstr ""
|
3802 |
|
3803 |
+
#: bp-themes/bp-default/forums/index.php:64
|
3804 |
+
#: bp-themes/bp-default/groups/single/forum.php:40
|
3805 |
+
#: bp-themes/bp-default/members/single/forums.php:22
|
3806 |
+
msgid "Unreplied"
|
3807 |
msgstr ""
|
3808 |
|
3809 |
+
#: bp-themes/bp-default/forums/index.php:100
|
3810 |
+
msgid "Create New Topic:"
|
3811 |
msgstr ""
|
3812 |
|
3813 |
+
#: bp-themes/bp-default/forums/index.php:107
|
3814 |
+
#: bp-themes/bp-default/groups/single/forum/edit.php:52
|
3815 |
+
#: bp-themes/bp-default/groups/single/forum.php:78
|
3816 |
+
msgid "Content:"
|
3817 |
msgstr ""
|
3818 |
|
3819 |
+
#: bp-themes/bp-default/forums/index.php:110
|
3820 |
+
#: bp-themes/bp-default/groups/single/forum/edit.php:55
|
3821 |
+
#: bp-themes/bp-default/groups/single/forum.php:81
|
3822 |
+
msgid "Tags (comma separated):"
|
3823 |
msgstr ""
|
3824 |
|
3825 |
+
#: bp-themes/bp-default/forums/index.php:113
|
3826 |
+
msgid "Post In Group Forum:"
|
3827 |
msgstr ""
|
3828 |
|
3829 |
+
#. translators: no option picked in select box
|
|
|
|
|
|
|
|
|
3830 |
|
3831 |
+
#: bp-themes/bp-default/forums/index.php:116
|
3832 |
+
#: bp-xprofile/bp-xprofile-template.php:432
|
3833 |
+
msgid "----"
|
3834 |
msgstr ""
|
3835 |
|
3836 |
+
#: bp-themes/bp-default/forums/index.php:133
|
3837 |
+
#: bp-themes/bp-default/groups/single/forum.php:87
|
3838 |
+
msgid "Post Topic"
|
3839 |
msgstr ""
|
3840 |
|
3841 |
+
#: bp-themes/bp-default/forums/index.php:134
|
3842 |
+
#: bp-xprofile/bp-xprofile-classes.php:311
|
3843 |
+
#: bp-xprofile/bp-xprofile-classes.php:761
|
3844 |
+
msgid "Cancel"
|
|
|
|
|
|
|
|
|
3845 |
msgstr ""
|
3846 |
|
3847 |
+
#: bp-themes/bp-default/forums/index.php:145
|
3848 |
+
msgid "You are not a member of any groups so you don't have any group forums you can post in. To start posting, first find a group that matches the topic subject you'd like to start. If this group does not exist, why not <a href='%s'>create a new group</a>? Once you have joined or created the group you can post your topic in that group's forum."
|
3849 |
msgstr ""
|
3850 |
|
3851 |
#: bp-themes/bp-default/functions.php:81
|
3951 |
msgid "Next Entries →"
|
3952 |
msgstr ""
|
3953 |
|
3954 |
+
#: bp-themes/bp-default/groups/create.php:18
|
3955 |
+
#: bp-themes/bp-default/groups/index.php:23
|
3956 |
+
msgid "Groups Directory"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3957 |
msgstr ""
|
3958 |
|
3959 |
+
#: bp-themes/bp-default/groups/create.php:39
|
3960 |
+
#: bp-themes/bp-default/groups/single/admin.php:16
|
3961 |
+
msgid "Group Name (required)"
|
3962 |
msgstr ""
|
3963 |
|
3964 |
+
#: bp-themes/bp-default/groups/create.php:42
|
3965 |
+
#: bp-themes/bp-default/groups/single/admin.php:19
|
3966 |
+
msgid "Group Description (required)"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3967 |
msgstr ""
|
3968 |
|
3969 |
+
#: bp-themes/bp-default/groups/create.php:62
|
3970 |
+
#: bp-themes/bp-default/groups/single/admin.php:47
|
3971 |
+
msgid "Enable discussion forum"
|
3972 |
msgstr ""
|
3973 |
|
3974 |
+
#: bp-themes/bp-default/groups/create.php:69
|
3975 |
+
msgid "<strong>Attention Site Admin:</strong> Group forums require the <a href=\"%s\">correct setup and configuration</a> of a bbPress installation."
|
|
|
|
|
|
|
|
|
|
|
3976 |
msgstr ""
|
3977 |
|
3978 |
+
#: bp-themes/bp-default/groups/create.php:78
|
3979 |
+
#: bp-themes/bp-default/groups/single/admin.php:56
|
3980 |
+
msgid "Privacy Options"
|
3981 |
msgstr ""
|
3982 |
|
3983 |
+
#: bp-themes/bp-default/groups/create.php:82
|
3984 |
+
#: bp-themes/bp-default/groups/single/admin.php:61
|
3985 |
+
msgid "This is a public group"
|
3986 |
msgstr ""
|
3987 |
|
3988 |
+
#: bp-themes/bp-default/groups/create.php:84
|
3989 |
+
#: bp-themes/bp-default/groups/single/admin.php:63
|
3990 |
+
msgid "Any site member can join this group."
|
3991 |
msgstr ""
|
3992 |
|
3993 |
+
#: bp-themes/bp-default/groups/create.php:85
|
3994 |
+
#: bp-themes/bp-default/groups/create.php:94
|
3995 |
+
#: bp-themes/bp-default/groups/single/admin.php:64
|
3996 |
+
#: bp-themes/bp-default/groups/single/admin.php:74
|
3997 |
+
msgid "This group will be listed in the groups directory and in search results."
|
3998 |
msgstr ""
|
3999 |
|
4000 |
+
#: bp-themes/bp-default/groups/create.php:86
|
4001 |
+
#: bp-themes/bp-default/groups/single/admin.php:65
|
4002 |
+
msgid "Group content and activity will be visible to any site member."
|
4003 |
msgstr ""
|
4004 |
|
4005 |
+
#: bp-themes/bp-default/groups/create.php:91
|
4006 |
+
#: bp-themes/bp-default/groups/single/admin.php:71
|
4007 |
+
msgid "This is a private group"
|
4008 |
msgstr ""
|
4009 |
|
4010 |
+
#: bp-themes/bp-default/groups/create.php:93
|
4011 |
+
#: bp-themes/bp-default/groups/single/admin.php:73
|
4012 |
+
msgid "Only users who request membership and are accepted can join the group."
|
4013 |
msgstr ""
|
4014 |
|
4015 |
+
#: bp-themes/bp-default/groups/create.php:95
|
4016 |
+
#: bp-themes/bp-default/groups/create.php:104
|
4017 |
+
#: bp-themes/bp-default/groups/single/admin.php:75
|
4018 |
+
#: bp-themes/bp-default/groups/single/admin.php:85
|
4019 |
+
msgid "Group content and activity will only be visible to members of the group."
|
4020 |
msgstr ""
|
4021 |
|
4022 |
+
#: bp-themes/bp-default/groups/create.php:100
|
4023 |
+
#: bp-themes/bp-default/groups/single/admin.php:81
|
4024 |
+
msgid "This is a hidden group"
|
4025 |
msgstr ""
|
4026 |
|
4027 |
+
#: bp-themes/bp-default/groups/create.php:102
|
4028 |
+
#: bp-themes/bp-default/groups/single/admin.php:83
|
4029 |
+
msgid "Only users who are invited can join the group."
|
4030 |
msgstr ""
|
4031 |
|
4032 |
+
#: bp-themes/bp-default/groups/create.php:103
|
4033 |
+
#: bp-themes/bp-default/groups/single/admin.php:84
|
4034 |
+
msgid "This group will not be listed in the groups directory or search results."
|
4035 |
msgstr ""
|
4036 |
|
4037 |
+
#: bp-themes/bp-default/groups/create.php:111
|
4038 |
+
#: bp-themes/bp-default/groups/single/admin.php:92
|
4039 |
+
msgid "Group Invitations"
|
4040 |
msgstr ""
|
4041 |
|
4042 |
+
#: bp-themes/bp-default/groups/create.php:113
|
4043 |
+
#: bp-themes/bp-default/groups/single/admin.php:94
|
4044 |
+
msgid "Which members of this group are allowed to invite others?"
|
4045 |
msgstr ""
|
4046 |
|
4047 |
+
#: bp-themes/bp-default/groups/create.php:118
|
4048 |
+
#: bp-themes/bp-default/groups/single/admin.php:99
|
4049 |
+
msgid "All group members"
|
4050 |
msgstr ""
|
4051 |
|
4052 |
+
#: bp-themes/bp-default/groups/create.php:123
|
4053 |
+
#: bp-themes/bp-default/groups/single/admin.php:104
|
4054 |
+
msgid "Group admins and mods only"
|
4055 |
msgstr ""
|
4056 |
|
4057 |
+
#: bp-themes/bp-default/groups/create.php:128
|
4058 |
+
#: bp-themes/bp-default/groups/single/admin.php:109
|
4059 |
+
msgid "Group admins only"
|
4060 |
msgstr ""
|
4061 |
|
4062 |
+
#: bp-themes/bp-default/groups/create.php:154
|
4063 |
+
#: bp-themes/bp-default/groups/single/admin.php:127
|
4064 |
+
msgid "Upload an image to use as an avatar for this group. The image will be shown on the main group page, and in search results."
|
4065 |
msgstr ""
|
4066 |
|
|
|
|
|
4067 |
#: bp-themes/bp-default/groups/create.php:158
|
4068 |
+
#: bp-themes/bp-default/groups/single/admin.php:131
|
4069 |
+
#: bp-themes/bp-default/members/single/profile/change-avatar.php:18
|
4070 |
+
msgid "Upload Image"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4071 |
msgstr ""
|
4072 |
|
4073 |
+
#: bp-themes/bp-default/groups/create.php:162
|
4074 |
+
msgid "To skip the avatar upload process, hit the \"Next Step\" button."
|
|
|
|
|
4075 |
msgstr ""
|
4076 |
|
4077 |
+
#: bp-themes/bp-default/groups/create.php:169
|
4078 |
+
msgid "Crop Group Avatar"
|
|
|
|
|
4079 |
msgstr ""
|
4080 |
|
4081 |
+
#: bp-themes/bp-default/groups/create.php:171
|
4082 |
+
#: bp-themes/bp-default/groups/single/admin.php:151
|
4083 |
+
#: bp-themes/bp-default/members/single/profile/change-avatar.php:33
|
4084 |
+
msgid "Avatar to crop"
|
4085 |
msgstr ""
|
4086 |
|
4087 |
+
#: bp-themes/bp-default/groups/create.php:174
|
4088 |
+
#: bp-themes/bp-default/groups/single/admin.php:154
|
4089 |
+
#: bp-themes/bp-default/members/single/profile/change-avatar.php:36
|
4090 |
+
msgid "Avatar preview"
|
4091 |
msgstr ""
|
4092 |
|
4093 |
+
#: bp-themes/bp-default/groups/create.php:177
|
4094 |
+
#: bp-themes/bp-default/groups/single/admin.php:157
|
4095 |
+
#: bp-themes/bp-default/members/single/profile/change-avatar.php:39
|
4096 |
+
msgid "Crop Image"
|
4097 |
msgstr ""
|
4098 |
|
4099 |
+
#: bp-themes/bp-default/groups/create.php:216
|
4100 |
+
#: bp-themes/bp-default/groups/single/send-invites.php:22
|
4101 |
+
msgid "Select people to invite from your friends list."
|
4102 |
msgstr ""
|
4103 |
|
4104 |
+
#: bp-themes/bp-default/groups/create.php:251
|
4105 |
+
#: bp-themes/bp-default/groups/single/send-invites.php:73
|
4106 |
+
msgid "Once you have built up friend connections you will be able to invite others to your group. You can send invites any time in the future by selecting the \"Send Invites\" option when viewing your new group."
|
4107 |
msgstr ""
|
4108 |
|
4109 |
+
#: bp-themes/bp-default/groups/create.php:273
|
4110 |
+
msgid "Back to Previous Step"
|
4111 |
msgstr ""
|
4112 |
|
4113 |
+
#: bp-themes/bp-default/groups/create.php:280
|
4114 |
+
msgid "Next Step"
|
|
|
|
|
4115 |
msgstr ""
|
4116 |
|
4117 |
+
#: bp-themes/bp-default/groups/create.php:287
|
4118 |
+
msgid "Create Group and Continue"
|
4119 |
msgstr ""
|
4120 |
|
4121 |
+
#: bp-themes/bp-default/groups/groups-loop.php:95
|
4122 |
+
msgid "There were no groups found."
|
4123 |
msgstr ""
|
4124 |
|
4125 |
+
#: bp-themes/bp-default/groups/index.php:37
|
4126 |
+
msgid "All Groups <span>%s</span>"
|
4127 |
msgstr ""
|
4128 |
|
4129 |
+
#: bp-themes/bp-default/groups/index.php:60
|
4130 |
+
#: bp-themes/bp-default/members/single/groups.php:23
|
4131 |
+
msgid "Most Members"
|
4132 |
msgstr ""
|
4133 |
|
4134 |
+
#: bp-themes/bp-default/groups/index.php:61
|
4135 |
+
#: bp-themes/bp-default/members/single/groups.php:24
|
4136 |
+
msgid "Newly Created"
|
4137 |
msgstr ""
|
4138 |
|
4139 |
+
#: bp-themes/bp-default/groups/single/admin.php:25
|
4140 |
+
msgid "Notify group members of changes via email"
|
4141 |
msgstr ""
|
4142 |
|
4143 |
+
#: bp-themes/bp-default/groups/single/admin.php:32
|
4144 |
+
#: bp-themes/bp-default/groups/single/admin.php:117
|
4145 |
+
#: bp-themes/bp-default/groups/single/forum/edit.php:60
|
4146 |
+
#: bp-themes/bp-default/groups/single/forum/edit.php:76
|
4147 |
+
#: bp-themes/bp-default/members/single/profile/edit.php:126
|
4148 |
+
#: bp-themes/bp-default/members/single/settings/general.php:69
|
4149 |
+
#: bp-themes/bp-default/members/single/settings/notifications.php:62
|
4150 |
+
#: bp-xprofile/bp-xprofile-classes.php:274
|
4151 |
+
msgid "Save Changes"
|
4152 |
msgstr ""
|
4153 |
|
4154 |
+
#: bp-themes/bp-default/groups/single/admin.php:137
|
4155 |
+
msgid "If you'd like to remove the existing avatar but not upload a new one, please use the delete avatar button."
|
4156 |
msgstr ""
|
4157 |
|
4158 |
+
#: bp-themes/bp-default/groups/single/admin.php:139
|
4159 |
+
#: bp-themes/bp-default/members/single/profile/change-avatar.php:24
|
4160 |
+
msgid "Delete Avatar"
|
4161 |
msgstr ""
|
4162 |
|
4163 |
+
#: bp-themes/bp-default/groups/single/admin.php:149
|
4164 |
+
msgid "Crop Avatar"
|
|
|
|
|
4165 |
msgstr ""
|
4166 |
|
4167 |
+
#: bp-themes/bp-default/groups/single/admin.php:177
|
4168 |
+
msgid "Administrators"
|
|
|
|
|
4169 |
msgstr ""
|
4170 |
|
4171 |
+
#: bp-themes/bp-default/groups/single/admin.php:203
|
4172 |
+
msgid "Moderators"
|
4173 |
msgstr ""
|
4174 |
|
4175 |
+
#: bp-themes/bp-default/groups/single/admin.php:258
|
4176 |
+
msgid "(banned)"
|
4177 |
msgstr ""
|
4178 |
|
4179 |
+
#: bp-themes/bp-default/groups/single/admin.php:264
|
4180 |
+
msgid "Unban this member"
|
|
|
|
|
4181 |
msgstr ""
|
4182 |
|
4183 |
+
#: bp-themes/bp-default/groups/single/admin.php:264
|
4184 |
+
msgid "Remove Ban"
|
|
|
|
|
4185 |
msgstr ""
|
4186 |
|
4187 |
+
#: bp-themes/bp-default/groups/single/admin.php:268
|
4188 |
+
msgid "Kick and ban this member"
|
|
|
|
|
4189 |
msgstr ""
|
4190 |
|
4191 |
+
#: bp-themes/bp-default/groups/single/admin.php:268
|
4192 |
+
msgid "Kick & Ban"
|
|
|
4193 |
msgstr ""
|
4194 |
|
4195 |
+
#: bp-themes/bp-default/groups/single/admin.php:269
|
4196 |
+
msgid "Promote to Mod"
|
|
|
|
|
4197 |
msgstr ""
|
4198 |
|
4199 |
+
#: bp-themes/bp-default/groups/single/admin.php:274
|
4200 |
+
msgid "Remove this member"
|
|
|
|
|
4201 |
msgstr ""
|
4202 |
|
4203 |
+
#: bp-themes/bp-default/groups/single/admin.php:274
|
4204 |
+
msgid "Remove from group"
|
|
|
4205 |
msgstr ""
|
4206 |
|
4207 |
+
#: bp-themes/bp-default/groups/single/admin.php:288
|
4208 |
+
#: bp-themes/bp-default/groups/single/members.php:87
|
4209 |
+
msgid "This group has no members."
|
|
|
4210 |
msgstr ""
|
4211 |
|
4212 |
+
#: bp-themes/bp-default/groups/single/admin.php:318
|
4213 |
+
#: bp-themes/bp-default/members/single/friends/requests.php:37
|
4214 |
+
#: bp-themes/bp-default/members/single/groups/invites.php:23
|
4215 |
+
msgid "Accept"
|
4216 |
msgstr ""
|
4217 |
|
4218 |
+
#: bp-themes/bp-default/groups/single/admin.php:320
|
4219 |
+
#: bp-themes/bp-default/members/single/friends/requests.php:38
|
4220 |
+
#: bp-themes/bp-default/members/single/groups/invites.php:24
|
4221 |
+
msgid "Reject"
|
4222 |
msgstr ""
|
4223 |
|
4224 |
+
#: bp-themes/bp-default/groups/single/admin.php:333
|
4225 |
+
msgid "There are no pending membership requests."
|
4226 |
msgstr ""
|
4227 |
|
4228 |
+
#: bp-themes/bp-default/groups/single/admin.php:350
|
4229 |
+
msgid "WARNING: Deleting this group will completely remove ALL content associated with it. There is no way back, please be careful with this option."
|
|
|
4230 |
msgstr ""
|
4231 |
|
4232 |
+
#: bp-themes/bp-default/groups/single/admin.php:353
|
4233 |
+
msgid "I understand the consequences of deleting this group."
|
4234 |
msgstr ""
|
4235 |
|
4236 |
+
#: bp-themes/bp-default/groups/single/forum/edit.php:16
|
4237 |
+
#: bp-themes/bp-default/groups/single/forum/topic.php:20
|
4238 |
+
#: bp-themes/bp-default/groups/single/forum.php:27
|
4239 |
+
msgid "Forum Directory"
|
4240 |
msgstr ""
|
4241 |
|
4242 |
+
#: bp-themes/bp-default/groups/single/forum/edit.php:25
|
4243 |
+
msgid "Edit:"
|
4244 |
msgstr ""
|
4245 |
|
4246 |
+
#: bp-themes/bp-default/groups/single/forum/edit.php:91
|
4247 |
+
msgid "This topic does not exist."
|
|
|
|
|
|
|
|
|
4248 |
msgstr ""
|
4249 |
|
4250 |
+
#: bp-themes/bp-default/groups/single/forum/topic.php:12
|
4251 |
+
msgid "New Reply"
|
4252 |
msgstr ""
|
4253 |
|
4254 |
+
#: bp-themes/bp-default/groups/single/forum/topic.php:35
|
4255 |
+
msgid "Topic tags:"
|
|
|
4256 |
msgstr ""
|
4257 |
|
4258 |
+
#: bp-themes/bp-default/groups/single/forum/topic.php:81
|
4259 |
+
msgid "%1$s said %2$s:"
|
|
|
4260 |
msgstr ""
|
4261 |
|
4262 |
+
#: bp-themes/bp-default/groups/single/forum/topic.php:95
|
4263 |
+
msgid "Permanent link to this post"
|
4264 |
msgstr ""
|
4265 |
|
4266 |
+
#: bp-themes/bp-default/groups/single/forum/topic.php:126
|
4267 |
+
msgid "You will auto join this group when you reply to this topic."
|
|
|
|
|
|
|
4268 |
msgstr ""
|
4269 |
|
4270 |
+
#: bp-themes/bp-default/groups/single/forum/topic.php:131
|
4271 |
+
msgid "Add a reply:"
|
|
|
4272 |
msgstr ""
|
4273 |
|
4274 |
+
#: bp-themes/bp-default/groups/single/forum/topic.php:136
|
4275 |
+
msgid "Post Reply"
|
4276 |
msgstr ""
|
4277 |
|
4278 |
+
#: bp-themes/bp-default/groups/single/forum/topic.php:147
|
4279 |
+
msgid "This topic is closed, replies are no longer accepted."
|
4280 |
msgstr ""
|
4281 |
|
4282 |
+
#: bp-themes/bp-default/groups/single/forum/topic.php:161
|
4283 |
+
msgid "There are no posts for this topic."
|
4284 |
msgstr ""
|
4285 |
|
4286 |
+
#: bp-themes/bp-default/groups/single/forum.php:69
|
4287 |
+
msgid "You will auto join this group when you start a new topic."
|
4288 |
msgstr ""
|
4289 |
|
4290 |
+
#: bp-themes/bp-default/groups/single/forum.php:73
|
4291 |
+
msgid "Post a New Topic:"
|
4292 |
msgstr ""
|
4293 |
|
4294 |
+
#: bp-themes/bp-default/groups/single/group-header.php:11
|
4295 |
+
msgid "Group Admins"
|
4296 |
msgstr ""
|
4297 |
|
4298 |
+
#: bp-themes/bp-default/groups/single/group-header.php:20
|
4299 |
+
msgid "Group Mods"
|
4300 |
msgstr ""
|
4301 |
|
4302 |
+
#: bp-themes/bp-default/groups/single/request-membership.php:4
|
4303 |
+
msgid "You are requesting to become a member of the group '%s'."
|
4304 |
msgstr ""
|
4305 |
|
4306 |
+
#: bp-themes/bp-default/groups/single/request-membership.php:7
|
4307 |
+
msgid "Comments (optional)"
|
4308 |
msgstr ""
|
4309 |
|
4310 |
+
#: bp-themes/bp-default/groups/single/request-membership.php:12
|
4311 |
+
msgid "Send Request"
|
4312 |
msgstr ""
|
4313 |
|
4314 |
+
#: bp-themes/bp-default/header.php:27
|
4315 |
+
msgctxt "Home page banner link title"
|
4316 |
+
msgid "Home"
|
4317 |
msgstr ""
|
4318 |
|
4319 |
+
#: bp-themes/bp-default/header.php:30
|
4320 |
+
msgid "Search for:"
|
4321 |
msgstr ""
|
4322 |
|
4323 |
+
#: bp-themes/bp-default/index.php:27
|
4324 |
+
msgctxt "Sticky post"
|
4325 |
+
msgid "Featured"
|
4326 |
msgstr ""
|
4327 |
|
4328 |
+
#: bp-themes/bp-default/index.php:55
|
4329 |
+
msgid "Sorry, but you are looking for something that isn't here."
|
4330 |
msgstr ""
|
4331 |
|
4332 |
+
#: bp-themes/bp-default/links.php:16
|
4333 |
+
msgid "Links"
|
4334 |
msgstr ""
|
4335 |
|
4336 |
+
#: bp-themes/bp-default/members/index.php:23
|
4337 |
+
msgid "Members Directory"
|
4338 |
msgstr ""
|
4339 |
|
4340 |
+
#: bp-themes/bp-default/members/index.php:58
|
4341 |
+
#: bp-themes/bp-default/members/single/friends.php:23
|
4342 |
+
msgid "Newest Registered"
|
4343 |
msgstr ""
|
4344 |
|
4345 |
+
#: bp-themes/bp-default/members/members-loop.php:108
|
4346 |
+
msgid "Sorry, no members were found."
|
4347 |
msgstr ""
|
4348 |
|
4349 |
+
#: bp-themes/bp-default/members/single/friends/requests.php:68
|
4350 |
+
msgid "You have no pending friendship requests."
|
4351 |
msgstr ""
|
4352 |
|
4353 |
+
#: bp-themes/bp-default/members/single/groups/invites.php:37
|
4354 |
+
msgid "You have no outstanding group invites."
|
4355 |
msgstr ""
|
4356 |
|
4357 |
+
#: bp-themes/bp-default/members/single/messages/compose.php:5
|
4358 |
+
msgid "Send To (Username or Friend's Name)"
|
|
|
|
|
4359 |
msgstr ""
|
4360 |
|
4361 |
+
#: bp-themes/bp-default/members/single/messages/compose.php:14
|
4362 |
+
msgid "This is a notice to all users."
|
|
|
|
|
4363 |
msgstr ""
|
4364 |
|
4365 |
+
#: bp-themes/bp-default/members/single/messages/compose.php:17
|
4366 |
+
msgid "Subject"
|
4367 |
msgstr ""
|
4368 |
|
4369 |
+
#: bp-themes/bp-default/members/single/messages/compose.php:20
|
4370 |
+
msgid "Message"
|
|
|
4371 |
msgstr ""
|
4372 |
|
4373 |
+
#: bp-themes/bp-default/members/single/messages/compose.php:28
|
4374 |
+
msgid "Send Message"
|
4375 |
msgstr ""
|
4376 |
|
4377 |
+
#: bp-themes/bp-default/members/single/messages/messages-loop.php:31
|
4378 |
+
msgid "From:"
|
4379 |
msgstr ""
|
4380 |
|
4381 |
+
#: bp-themes/bp-default/members/single/messages/messages-loop.php:36
|
4382 |
+
msgid "To:"
|
4383 |
msgstr ""
|
4384 |
|
4385 |
+
#: bp-themes/bp-default/members/single/messages/messages-loop.php:42
|
4386 |
+
msgid "View Message"
|
4387 |
msgstr ""
|
4388 |
|
4389 |
+
#: bp-themes/bp-default/members/single/messages/messages-loop.php:50
|
4390 |
+
#: bp-themes/bp-default/members/single/messages/notices-loop.php:38
|
4391 |
+
#: bp-themes/bp-default/members/single/messages/single.php:24
|
4392 |
+
msgid "Delete Message"
|
4393 |
+
msgstr ""
|
4394 |
|
4395 |
+
#: bp-themes/bp-default/members/single/messages/messages-loop.php:68
|
4396 |
+
msgid "Sorry, no messages were found."
|
4397 |
msgstr ""
|
4398 |
|
4399 |
+
#: bp-themes/bp-default/members/single/messages/notices-loop.php:31
|
4400 |
+
msgid "Sent:"
|
4401 |
+
msgstr ""
|
4402 |
|
4403 |
+
#: bp-themes/bp-default/members/single/messages/notices-loop.php:49
|
4404 |
+
msgid "Sorry, no notices were found."
|
4405 |
msgstr ""
|
4406 |
|
4407 |
+
#: bp-themes/bp-default/members/single/messages/single.php:14
|
4408 |
+
msgid "You are alone in this conversation."
|
4409 |
msgstr ""
|
4410 |
|
4411 |
+
#: bp-themes/bp-default/members/single/messages/single.php:18
|
4412 |
+
msgid "Conversation between %s and you."
|
|
|
4413 |
msgstr ""
|
4414 |
|
4415 |
+
#: bp-themes/bp-default/members/single/messages/single.php:75
|
4416 |
+
msgid "Send a Reply"
|
4417 |
msgstr ""
|
4418 |
|
4419 |
+
#: bp-themes/bp-default/members/single/messages/single.php:91
|
4420 |
+
msgid "Send Reply"
|
4421 |
msgstr ""
|
4422 |
|
4423 |
+
#: bp-themes/bp-default/members/single/profile/change-avatar.php:1
|
4424 |
+
#: bp-xprofile/bp-xprofile-loader.php:145
|
4425 |
+
#: bp-xprofile/bp-xprofile-loader.php:201
|
4426 |
+
msgid "Change Avatar"
|
4427 |
msgstr ""
|
4428 |
|
4429 |
+
#: bp-themes/bp-default/members/single/profile/change-avatar.php:7
|
4430 |
+
msgid "Your avatar will be used on your profile and throughout the site. If there is a <a href=\"http://gravatar.com\">Gravatar</a> associated with your account email we will use that, or you can upload an image from your computer."
|
|
|
|
|
4431 |
msgstr ""
|
4432 |
|
4433 |
+
#: bp-themes/bp-default/members/single/profile/change-avatar.php:14
|
4434 |
+
msgid "Click below to select a JPG, GIF or PNG format photo from your computer and then click 'Upload Image' to proceed."
|
4435 |
msgstr ""
|
4436 |
|
4437 |
+
#: bp-themes/bp-default/members/single/profile/change-avatar.php:23
|
4438 |
+
msgid "If you'd like to delete your current avatar but not upload a new one, please use the delete avatar button."
|
4439 |
msgstr ""
|
4440 |
|
4441 |
+
#: bp-themes/bp-default/members/single/profile/change-avatar.php:24
|
4442 |
+
msgid "Delete My Avatar"
|
4443 |
msgstr ""
|
4444 |
|
4445 |
+
#: bp-themes/bp-default/members/single/profile/change-avatar.php:31
|
4446 |
+
msgid "Crop Your New Avatar"
|
4447 |
msgstr ""
|
4448 |
|
4449 |
+
#: bp-themes/bp-default/members/single/profile/change-avatar.php:55
|
4450 |
+
msgid "Your avatar will be used on your profile and throughout the site. To change your avatar, please create an account with <a href=\"http://gravatar.com\">Gravatar</a> using the same email address as you used to register with this site."
|
4451 |
msgstr ""
|
4452 |
|
4453 |
+
#: bp-themes/bp-default/members/single/profile/edit.php:10
|
4454 |
+
msgid "Editing '%s' Profile Group"
|
4455 |
msgstr ""
|
4456 |
|
4457 |
+
#: bp-themes/bp-default/members/single/profile/edit.php:26
|
4458 |
+
#: bp-themes/bp-default/members/single/profile/edit.php:33
|
4459 |
+
#: bp-themes/bp-default/members/single/profile/edit.php:40
|
4460 |
+
#: bp-themes/bp-default/members/single/profile/edit.php:49
|
4461 |
+
#: bp-themes/bp-default/members/single/profile/edit.php:67
|
4462 |
+
#: bp-themes/bp-default/members/single/profile/edit.php:83
|
4463 |
+
#: bp-themes/bp-default/members/single/profile/edit.php:93
|
4464 |
+
#: bp-themes/bp-default/registration/register.php:37
|
4465 |
+
#: bp-themes/bp-default/registration/register.php:41
|
4466 |
+
#: bp-themes/bp-default/registration/register.php:45
|
4467 |
+
#: bp-themes/bp-default/registration/register.php:49
|
4468 |
+
#: bp-themes/bp-default/registration/register.php:76
|
4469 |
+
#: bp-themes/bp-default/registration/register.php:84
|
4470 |
+
#: bp-themes/bp-default/registration/register.php:92
|
4471 |
+
#: bp-themes/bp-default/registration/register.php:102
|
4472 |
+
#: bp-themes/bp-default/registration/register.php:113
|
4473 |
+
#: bp-themes/bp-default/registration/register.php:128
|
4474 |
+
#: bp-themes/bp-default/registration/register.php:139
|
4475 |
+
#: bp-themes/bp-default/registration/register.php:189
|
4476 |
+
#: bp-themes/bp-default/registration/register.php:198
|
4477 |
+
msgid "(required)"
|
4478 |
msgstr ""
|
4479 |
|
4480 |
+
#: bp-themes/bp-default/members/single/profile/edit.php:58
|
4481 |
+
#: bp-themes/bp-default/members/single/profile/edit.php:73
|
4482 |
+
#: bp-themes/bp-default/registration/register.php:119
|
4483 |
+
#: bp-xprofile/bp-xprofile-admin.php:432
|
4484 |
+
msgid "Clear"
|
4485 |
msgstr ""
|
4486 |
|
4487 |
+
#: bp-themes/bp-default/members/single/profile/profile-wp.php:8
|
4488 |
+
msgid "%s's Profile"
|
4489 |
msgstr ""
|
4490 |
|
4491 |
+
#: bp-themes/bp-default/members/single/settings/delete-account.php:55
|
4492 |
+
msgid "WARNING: Deleting your account will completely remove ALL content associated with it. There is no way back, please be careful with this option."
|
4493 |
msgstr ""
|
4494 |
|
4495 |
+
#: bp-themes/bp-default/members/single/settings/delete-account.php:58
|
4496 |
+
msgid "I understand the consequences of deleting my account."
|
4497 |
msgstr ""
|
4498 |
|
4499 |
+
#: bp-themes/bp-default/members/single/settings/delete-account.php:63
|
4500 |
+
msgid "Delete My Account"
|
4501 |
msgstr ""
|
4502 |
|
4503 |
+
#: bp-themes/bp-default/members/single/settings/general.php:50
|
4504 |
+
msgid "General Settings"
|
4505 |
msgstr ""
|
4506 |
|
4507 |
+
#: bp-themes/bp-default/members/single/settings/general.php:56
|
4508 |
+
msgid "Current Password <span>(required to update email or change current password)</span>"
|
4509 |
msgstr ""
|
4510 |
|
4511 |
+
#: bp-themes/bp-default/members/single/settings/general.php:57
|
4512 |
+
msgid "Password Lost and Found"
|
|
|
4513 |
msgstr ""
|
4514 |
|
4515 |
+
#: bp-themes/bp-default/members/single/settings/general.php:57
|
4516 |
+
msgid "Lost your password?"
|
|
|
4517 |
msgstr ""
|
4518 |
|
4519 |
+
#: bp-themes/bp-default/members/single/settings/general.php:59
|
4520 |
+
msgid "Account Email"
|
4521 |
msgstr ""
|
4522 |
|
4523 |
+
#: bp-themes/bp-default/members/single/settings/general.php:62
|
4524 |
+
msgid "Change Password <span>(leave blank for no change)</span>"
|
4525 |
msgstr ""
|
4526 |
|
4527 |
+
#: bp-themes/bp-default/members/single/settings/general.php:63
|
4528 |
+
msgid "New Password"
|
4529 |
msgstr ""
|
4530 |
|
4531 |
+
#: bp-themes/bp-default/members/single/settings/general.php:64
|
4532 |
+
msgid "Repeat New Password"
|
4533 |
msgstr ""
|
4534 |
|
4535 |
+
#: bp-themes/bp-default/members/single/settings/notifications.php:50
|
4536 |
+
msgid "Email Notification"
|
|
|
4537 |
msgstr ""
|
4538 |
|
4539 |
+
#: bp-themes/bp-default/members/single/settings/notifications.php:55
|
4540 |
+
msgid "Send a notification by email when:"
|
|
|
4541 |
msgstr ""
|
4542 |
|
4543 |
+
#: bp-themes/bp-default/onecolumn-page.php:29 bp-themes/bp-default/page.php:18
|
4544 |
+
msgid "<p class=\"serif\">Read the rest of this page →</p>"
|
4545 |
msgstr ""
|
4546 |
|
4547 |
+
#: bp-themes/bp-default/onecolumn-page.php:32 bp-themes/bp-default/page.php:21
|
4548 |
+
msgid "Edit this page."
|
|
|
4549 |
msgstr ""
|
4550 |
|
4551 |
+
#: bp-themes/bp-default/registration/activate.php:12
|
4552 |
+
msgid "Account Activated"
|
|
|
4553 |
msgstr ""
|
4554 |
|
4555 |
+
#: bp-themes/bp-default/registration/activate.php:17
|
4556 |
+
msgid "Your account was activated successfully! Your account details have been sent to you in a separate email."
|
|
|
4557 |
msgstr ""
|
4558 |
|
4559 |
+
#: bp-themes/bp-default/registration/activate.php:19
|
4560 |
+
msgid "Your account was activated successfully! You can now log in with the username and password you provided when you signed up."
|
|
|
4561 |
msgstr ""
|
4562 |
|
4563 |
+
#: bp-themes/bp-default/registration/activate.php:28
|
4564 |
+
msgid "Please provide a valid activation key."
|
|
|
|
|
|
|
4565 |
msgstr ""
|
4566 |
|
4567 |
+
#: bp-themes/bp-default/registration/activate.php:32
|
4568 |
+
msgid "Activation Key:"
|
|
|
4569 |
msgstr ""
|
4570 |
|
4571 |
+
#: bp-themes/bp-default/registration/register.php:16
|
4572 |
+
msgid "User registration is currently not allowed."
|
|
|
4573 |
msgstr ""
|
4574 |
|
4575 |
+
#: bp-themes/bp-default/registration/register.php:27
|
4576 |
+
msgid "Registering for this site is easy, just fill in the fields below and we'll get a new account set up for you in no time."
|
|
|
4577 |
msgstr ""
|
4578 |
|
4579 |
+
#: bp-themes/bp-default/registration/register.php:35
|
4580 |
+
msgid "Account Details"
|
|
|
|
|
|
|
4581 |
msgstr ""
|
4582 |
|
4583 |
+
#: bp-themes/bp-default/registration/register.php:37
|
4584 |
+
#: bp-themes/bp-default/sidebar.php:44
|
4585 |
+
msgid "Username"
|
4586 |
msgstr ""
|
4587 |
|
4588 |
+
#: bp-themes/bp-default/registration/register.php:41
|
4589 |
+
msgid "Email Address"
|
|
|
4590 |
msgstr ""
|
4591 |
|
4592 |
+
#: bp-themes/bp-default/registration/register.php:45
|
4593 |
+
msgid "Choose a Password"
|
|
|
4594 |
msgstr ""
|
4595 |
|
4596 |
+
#: bp-themes/bp-default/registration/register.php:49
|
4597 |
+
msgid "Confirm Password"
|
|
|
4598 |
msgstr ""
|
4599 |
|
4600 |
+
#: bp-themes/bp-default/registration/register.php:65
|
4601 |
+
msgid "Profile Details"
|
|
|
4602 |
msgstr ""
|
4603 |
|
4604 |
+
#: bp-themes/bp-default/registration/register.php:183
|
4605 |
+
msgid "Blog Details"
|
|
|
4606 |
msgstr ""
|
4607 |
|
4608 |
+
#: bp-themes/bp-default/registration/register.php:185
|
4609 |
+
msgid "Yes, I'd like to create a new site"
|
|
|
4610 |
msgstr ""
|
4611 |
|
4612 |
+
#: bp-themes/bp-default/registration/register.php:189
|
4613 |
+
msgid "Blog URL"
|
|
|
4614 |
msgstr ""
|
4615 |
|
4616 |
+
#: bp-themes/bp-default/registration/register.php:198
|
4617 |
+
msgid "Site Title"
|
|
|
4618 |
msgstr ""
|
4619 |
|
4620 |
+
#: bp-themes/bp-default/registration/register.php:219
|
4621 |
+
msgid "Complete Sign Up"
|
4622 |
msgstr ""
|
4623 |
|
4624 |
+
#: bp-themes/bp-default/registration/register.php:230
|
4625 |
+
msgid "Sign Up Complete!"
|
4626 |
msgstr ""
|
4627 |
|
4628 |
+
#: bp-themes/bp-default/registration/register.php:236
|
4629 |
+
msgid "You have successfully created your account! To begin using this site you will need to activate your account via the email we have just sent to your address."
|
4630 |
msgstr ""
|
4631 |
|
4632 |
+
#: bp-themes/bp-default/registration/register.php:238
|
4633 |
+
msgid "You have successfully created your account! Please log in using the username and password you have just created."
|
4634 |
msgstr ""
|
4635 |
|
4636 |
+
#: bp-themes/bp-default/search.php:10
|
4637 |
+
msgid "Site"
|
4638 |
msgstr ""
|
4639 |
|
4640 |
+
#: bp-themes/bp-default/search.php:14
|
4641 |
+
msgid "Search Results"
|
4642 |
msgstr ""
|
4643 |
|
4644 |
+
#: bp-themes/bp-default/search.php:51
|
4645 |
+
msgid "No posts found. Try a different search?"
|
4646 |
msgstr ""
|
4647 |
|
4648 |
+
#: bp-themes/bp-default/sidebar.php:37
|
4649 |
+
msgid "Please <a href=\"%s\" title=\"Create an account\">create an account</a> to get started."
|
4650 |
msgstr ""
|
4651 |
|
4652 |
+
#: bp-themes/bp-default/sidebar.php:47
|
4653 |
+
msgid "Password"
|
4654 |
msgstr ""
|
4655 |
|
4656 |
+
#: bp-themes/bp-default/sidebar.php:50
|
4657 |
+
msgid "Remember Me"
|
4658 |
msgstr ""
|
4659 |
|
4660 |
+
#: bp-themes/bp-default/sidebar.php:64
|
4661 |
+
msgid "Forum Topic Tags"
|
4662 |
msgstr ""
|
4663 |
|
4664 |
+
#: bp-themes/bp-default/single.php:35
|
4665 |
+
msgctxt "Previous post link"
|
4666 |
+
msgid "←"
|
4667 |
msgstr ""
|
4668 |
|
4669 |
+
#: bp-themes/bp-default/single.php:36
|
4670 |
+
msgctxt "Next post link"
|
4671 |
+
msgid "→"
|
4672 |
msgstr ""
|
4673 |
|
4674 |
+
#: bp-themes/bp-default/single.php:45
|
4675 |
+
msgid "Sorry, no posts matched your criteria."
|
4676 |
msgstr ""
|
4677 |
|
4678 |
+
#: bp-xprofile/bp-xprofile-activity.php:22
|
4679 |
+
msgid "New member registered"
|
4680 |
msgstr ""
|
4681 |
|
4682 |
+
#: bp-xprofile/bp-xprofile-activity.php:23
|
4683 |
+
msgid "Updated Profile"
|
4684 |
msgstr ""
|
4685 |
|
4686 |
+
#: bp-xprofile/bp-xprofile-activity.php:128
|
4687 |
+
msgid "%s changed their profile picture"
|
4688 |
msgstr ""
|
4689 |
|
4690 |
+
#: bp-xprofile/bp-xprofile-admin.php:25
|
4691 |
+
msgid "Profile Fields"
|
4692 |
msgstr ""
|
4693 |
|
4694 |
+
#: bp-xprofile/bp-xprofile-admin.php:74
|
4695 |
+
msgid "Extended Profile Fields"
|
4696 |
msgstr ""
|
4697 |
|
4698 |
+
#: bp-xprofile/bp-xprofile-admin.php:76 bp-xprofile/bp-xprofile-admin.php:178
|
4699 |
+
msgid "Add New Group"
|
4700 |
msgstr ""
|
4701 |
|
4702 |
+
#: bp-xprofile/bp-xprofile-admin.php:79
|
4703 |
+
msgid "Your users will distinguish themselves through their profile page. You must give them profile fields that allow them to describe themselves in a way that is relevant to the theme of your social network."
|
4704 |
msgstr ""
|
4705 |
|
4706 |
+
#: bp-xprofile/bp-xprofile-admin.php:80
|
4707 |
+
msgid "NOTE: Any fields in the \"%s\" group will appear on the signup page."
|
4708 |
msgstr ""
|
4709 |
|
4710 |
+
#: bp-xprofile/bp-xprofile-admin.php:103 bp-xprofile/bp-xprofile-admin.php:399
|
4711 |
+
msgid "(Primary)"
|
4712 |
msgstr ""
|
4713 |
|
4714 |
+
#: bp-xprofile/bp-xprofile-admin.php:120
|
4715 |
+
msgid "Add New Field"
|
4716 |
msgstr ""
|
4717 |
|
4718 |
+
#: bp-xprofile/bp-xprofile-admin.php:160
|
4719 |
+
msgid "There are no fields in this group."
|
4720 |
msgstr ""
|
4721 |
|
4722 |
+
#: bp-xprofile/bp-xprofile-admin.php:177
|
4723 |
+
msgid "You have no groups."
|
4724 |
msgstr ""
|
4725 |
|
4726 |
+
#: bp-xprofile/bp-xprofile-admin.php:209
|
4727 |
+
msgid "There was an error saving the group. Please try again"
|
4728 |
msgstr ""
|
4729 |
|
4730 |
+
#: bp-xprofile/bp-xprofile-admin.php:212
|
4731 |
+
msgid "The group was saved successfully."
|
4732 |
msgstr ""
|
4733 |
|
4734 |
+
#: bp-xprofile/bp-xprofile-admin.php:244
|
4735 |
+
msgid "There was an error deleting the group. Please try again"
|
4736 |
msgstr ""
|
4737 |
|
4738 |
+
#: bp-xprofile/bp-xprofile-admin.php:247
|
4739 |
+
msgid "The group was deleted successfully."
|
4740 |
msgstr ""
|
4741 |
|
4742 |
+
#: bp-xprofile/bp-xprofile-admin.php:288
|
4743 |
+
msgid "There was an error saving the field. Please try again"
|
|
|
4744 |
msgstr ""
|
4745 |
|
4746 |
+
#: bp-xprofile/bp-xprofile-admin.php:294
|
4747 |
+
msgid "The field was saved successfully."
|
|
|
4748 |
msgstr ""
|
4749 |
|
4750 |
+
#: bp-xprofile/bp-xprofile-admin.php:324
|
4751 |
+
msgid "field"
|
4752 |
msgstr ""
|
4753 |
|
4754 |
+
#: bp-xprofile/bp-xprofile-admin.php:326
|
4755 |
+
msgid "option"
|
|
|
4756 |
msgstr ""
|
4757 |
|
4758 |
+
#: bp-xprofile/bp-xprofile-admin.php:331
|
4759 |
+
msgid "There was an error deleting the %s. Please try again"
|
|
|
4760 |
msgstr ""
|
4761 |
|
4762 |
+
#: bp-xprofile/bp-xprofile-admin.php:334
|
4763 |
+
msgid "The %s was deleted successfully!"
|
4764 |
msgstr ""
|
4765 |
|
4766 |
+
#: bp-xprofile/bp-xprofile-admin.php:399
|
4767 |
+
msgid "(Required)"
|
4768 |
msgstr ""
|
4769 |
|
4770 |
+
#: bp-xprofile/bp-xprofile-classes.php:244
|
4771 |
+
msgid "Please make sure you give the group a name."
|
4772 |
msgstr ""
|
4773 |
|
4774 |
+
#: bp-xprofile/bp-xprofile-classes.php:268
|
4775 |
+
msgid "Add New Field Group"
|
4776 |
msgstr ""
|
4777 |
|
4778 |
+
#: bp-xprofile/bp-xprofile-classes.php:270
|
4779 |
+
msgid "Create Field Group"
|
4780 |
msgstr ""
|
4781 |
|
4782 |
+
#: bp-xprofile/bp-xprofile-classes.php:272
|
4783 |
+
msgid "Edit Field Group"
|
4784 |
msgstr ""
|
4785 |
|
4786 |
+
#: bp-xprofile/bp-xprofile-classes.php:282
|
4787 |
+
#: bp-xprofile/bp-xprofile-classes.php:702
|
4788 |
+
msgid "Fields marked * are required"
|
4789 |
msgstr ""
|
4790 |
|
4791 |
+
#: bp-xprofile/bp-xprofile-classes.php:293
|
4792 |
+
msgid "Field Group Title"
|
4793 |
msgstr ""
|
4794 |
|
4795 |
+
#: bp-xprofile/bp-xprofile-classes.php:301
|
4796 |
+
msgid "Group Description"
|
4797 |
msgstr ""
|
4798 |
|
4799 |
+
#: bp-xprofile/bp-xprofile-classes.php:311
|
4800 |
+
#: bp-xprofile/bp-xprofile-classes.php:761
|
4801 |
+
msgid "or"
|
4802 |
msgstr ""
|
4803 |
|
4804 |
+
#: bp-xprofile/bp-xprofile-classes.php:619
|
4805 |
+
msgid "Please enter options for this Field:"
|
4806 |
msgstr ""
|
4807 |
|
4808 |
+
#: bp-xprofile/bp-xprofile-classes.php:622
|
4809 |
+
msgid "Order Entered"
|
4810 |
msgstr ""
|
4811 |
|
4812 |
+
#: bp-xprofile/bp-xprofile-classes.php:623
|
4813 |
+
msgid "Name - Ascending"
|
|
|
|
|
|
|
4814 |
msgstr ""
|
4815 |
|
4816 |
+
#: bp-xprofile/bp-xprofile-classes.php:624
|
4817 |
+
msgid "Name - Descending"
|
|
|
4818 |
msgstr ""
|
4819 |
|
4820 |
+
#: bp-xprofile/bp-xprofile-classes.php:651
|
4821 |
+
#: bp-xprofile/bp-xprofile-classes.php:668
|
4822 |
+
msgid "Option"
|
4823 |
msgstr ""
|
4824 |
|
4825 |
+
#: bp-xprofile/bp-xprofile-classes.php:653
|
4826 |
+
#: bp-xprofile/bp-xprofile-classes.php:669
|
4827 |
+
msgid "Default Value"
|
4828 |
msgstr ""
|
4829 |
|
4830 |
+
#: bp-xprofile/bp-xprofile-classes.php:675
|
4831 |
+
msgid "Add Another Option"
|
4832 |
msgstr ""
|
4833 |
|
4834 |
+
#: bp-xprofile/bp-xprofile-classes.php:683
|
4835 |
+
msgid "Add Field"
|
4836 |
msgstr ""
|
4837 |
|
4838 |
+
#: bp-xprofile/bp-xprofile-classes.php:695
|
4839 |
+
msgid "Edit Field"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4840 |
msgstr ""
|
4841 |
|
4842 |
+
#: bp-xprofile/bp-xprofile-classes.php:715
|
4843 |
+
msgid "Field Title"
|
4844 |
msgstr ""
|
4845 |
|
4846 |
+
#: bp-xprofile/bp-xprofile-classes.php:724
|
4847 |
+
msgid "Field Description"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4848 |
msgstr ""
|
4849 |
|
4850 |
+
#: bp-xprofile/bp-xprofile-classes.php:731
|
4851 |
+
msgid "Is This Field Required?"
|
4852 |
msgstr ""
|
4853 |
|
4854 |
+
#: bp-xprofile/bp-xprofile-classes.php:733
|
4855 |
+
msgid "Not Required"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4856 |
msgstr ""
|
4857 |
|
4858 |
+
#: bp-xprofile/bp-xprofile-classes.php:734
|
4859 |
+
msgid "Required"
|
4860 |
msgstr ""
|
4861 |
|
4862 |
+
#: bp-xprofile/bp-xprofile-classes.php:739
|
4863 |
+
msgid "Field Type"
|
4864 |
msgstr ""
|
4865 |
|
4866 |
+
#: bp-xprofile/bp-xprofile-classes.php:741
|
4867 |
+
msgid "Text Box"
|
4868 |
msgstr ""
|
4869 |
|
4870 |
+
#: bp-xprofile/bp-xprofile-classes.php:742
|
4871 |
+
msgid "Multi-line Text Box"
|
4872 |
msgstr ""
|
4873 |
|
4874 |
+
#: bp-xprofile/bp-xprofile-classes.php:743
|
4875 |
+
msgid "Date Selector"
|
4876 |
msgstr ""
|
4877 |
|
4878 |
+
#: bp-xprofile/bp-xprofile-classes.php:744
|
4879 |
+
msgid "Radio Buttons"
|
4880 |
msgstr ""
|
4881 |
|
4882 |
+
#: bp-xprofile/bp-xprofile-classes.php:745
|
4883 |
+
msgid "Drop Down Select Box"
|
4884 |
msgstr ""
|
4885 |
|
4886 |
+
#: bp-xprofile/bp-xprofile-classes.php:746
|
4887 |
+
msgid "Multi Select Box"
|
4888 |
msgstr ""
|
4889 |
|
4890 |
+
#: bp-xprofile/bp-xprofile-classes.php:747
|
4891 |
+
msgid "Checkboxes"
|
4892 |
msgstr ""
|
4893 |
|
4894 |
+
#: bp-xprofile/bp-xprofile-classes.php:779
|
4895 |
+
msgid "Please make sure you fill out all required fields."
|
4896 |
msgstr ""
|
4897 |
|
4898 |
+
#: bp-xprofile/bp-xprofile-classes.php:782
|
4899 |
+
msgid "Radio button field types require at least one option. Please add options below."
|
4900 |
msgstr ""
|
4901 |
|
4902 |
+
#: bp-xprofile/bp-xprofile-classes.php:785
|
4903 |
+
#: bp-xprofile/bp-xprofile-classes.php:788
|
4904 |
+
msgid "Select box field types require at least one option. Please add options below."
|
|
|
|
|
|
|
|
|
|
|
4905 |
msgstr ""
|
4906 |
|
4907 |
+
#: bp-xprofile/bp-xprofile-classes.php:791
|
4908 |
+
msgid "Checkbox field types require at least one option. Please add options below."
|
|
|
|
|
|
|
4909 |
msgstr ""
|
4910 |
|
4911 |
+
#: bp-xprofile/bp-xprofile-screens.php:85
|
4912 |
+
msgid "Please make sure you fill in all required fields in this profile field group before saving."
|
4913 |
msgstr ""
|
4914 |
|
4915 |
+
#: bp-xprofile/bp-xprofile-screens.php:111
|
4916 |
+
msgid "There was a problem updating some of your profile information, please try again."
|
|
|
4917 |
msgstr ""
|
4918 |
|
4919 |
+
#: bp-xprofile/bp-xprofile-screens.php:165
|
4920 |
+
msgid "There was a problem cropping your avatar, please try uploading it again"
|
4921 |
msgstr ""
|
4922 |
|
4923 |
+
#: bp-xprofile/bp-xprofile-screens.php:167
|
4924 |
+
msgid "Your new avatar was uploaded successfully!"
|
4925 |
msgstr ""
|
4926 |
|
4927 |
+
#: bp-xprofile/bp-xprofile-template.php:615
|
4928 |
+
msgid "January"
|
4929 |
msgstr ""
|
4930 |
|
4931 |
+
#: bp-xprofile/bp-xprofile-template.php:616
|
4932 |
+
msgid "February"
|
4933 |
msgstr ""
|
4934 |
|
4935 |
+
#: bp-xprofile/bp-xprofile-template.php:617
|
4936 |
+
msgid "March"
|
|
|
4937 |
msgstr ""
|
4938 |
|
4939 |
+
#: bp-xprofile/bp-xprofile-template.php:618
|
4940 |
+
msgid "April"
|
4941 |
msgstr ""
|
4942 |
|
4943 |
+
#: bp-xprofile/bp-xprofile-template.php:619
|
4944 |
+
msgid "May"
|
4945 |
msgstr ""
|
4946 |
|
4947 |
+
#: bp-xprofile/bp-xprofile-template.php:620
|
4948 |
+
msgid "June"
|
4949 |
msgstr ""
|
4950 |
|
4951 |
+
#: bp-xprofile/bp-xprofile-template.php:621
|
4952 |
+
msgid "July"
|
4953 |
msgstr ""
|
4954 |
|
4955 |
+
#: bp-xprofile/bp-xprofile-template.php:622
|
4956 |
+
msgid "August"
|
4957 |
msgstr ""
|
4958 |
|
4959 |
+
#: bp-xprofile/bp-xprofile-template.php:623
|
4960 |
+
msgid "September"
|
4961 |
msgstr ""
|
4962 |
|
4963 |
+
#: bp-xprofile/bp-xprofile-template.php:624
|
4964 |
+
msgid "October"
|
4965 |
msgstr ""
|
4966 |
|
4967 |
+
#: bp-xprofile/bp-xprofile-template.php:625
|
4968 |
+
msgid "November"
|
4969 |
msgstr ""
|
4970 |
|
4971 |
+
#: bp-xprofile/bp-xprofile-template.php:626
|
4972 |
+
msgid "December"
|
4973 |
msgstr ""
|
4974 |
|
4975 |
+
#: bp-xprofile/bp-xprofile-template.php:759
|
4976 |
+
msgid "Avatar uploads are currently disabled. Why not use a <a href=\"http://gravatar.com\" target=\"_blank\">gravatar</a> instead?"
|
4977 |
msgstr ""
|
4978 |
|
4979 |
+
#: bp-xprofile/bp-xprofile-template.php:768
|
4980 |
+
msgid "Profile not recently updated"
|
4981 |
msgstr ""
|
4982 |
|
4983 |
+
#: bp-xprofile/bp-xprofile-template.php:779
|
4984 |
+
msgid "Profile updated %s"
|
4985 |
msgstr ""
|
bp-loader.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* Plugin URI: http://buddypress.org
|
5 |
* 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.
|
6 |
* Author: The BuddyPress Community
|
7 |
-
* Version: 1.5.
|
8 |
* Author URI: http://buddypress.org/community/members/
|
9 |
* Network: true
|
10 |
*/
|
@@ -17,7 +17,7 @@ global $wpdb;
|
|
17 |
|
18 |
// Define the BuddyPress version
|
19 |
if ( !defined( 'BP_VERSION' ) )
|
20 |
-
define( 'BP_VERSION', '1.5.
|
21 |
|
22 |
// Define the database version
|
23 |
if ( !defined( 'BP_DB_VERSION' ) )
|
4 |
* Plugin URI: http://buddypress.org
|
5 |
* 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.
|
6 |
* Author: The BuddyPress Community
|
7 |
+
* Version: 1.5.4
|
8 |
* Author URI: http://buddypress.org/community/members/
|
9 |
* Network: true
|
10 |
*/
|
17 |
|
18 |
// Define the BuddyPress version
|
19 |
if ( !defined( 'BP_VERSION' ) )
|
20 |
+
define( 'BP_VERSION', '1.5.4' );
|
21 |
|
22 |
// Define the database version
|
23 |
if ( !defined( 'BP_DB_VERSION' ) )
|
bp-members/bp-members-adminbar.php
CHANGED
@@ -17,16 +17,20 @@ if ( !defined( 'ABSPATH' ) ) exit;
|
|
17 |
* @since BuddyPress (1.5.2)
|
18 |
*/
|
19 |
function bp_members_admin_bar_version_check() {
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
|
|
|
|
|
|
|
|
30 |
}
|
31 |
}
|
32 |
add_action( 'admin_bar_menu', 'bp_members_admin_bar_version_check', 4 );
|
@@ -37,7 +41,7 @@ add_action( 'admin_bar_menu', 'bp_members_admin_bar_version_check', 4 );
|
|
37 |
* @since BuddyPress (r4151)
|
38 |
*/
|
39 |
function bp_members_admin_bar_my_account_menu() {
|
40 |
-
global $bp, $wp_admin_bar
|
41 |
|
42 |
// Bail if this is an ajax request
|
43 |
if ( defined( 'DOING_AJAX' ) )
|
17 |
* @since BuddyPress (1.5.2)
|
18 |
*/
|
19 |
function bp_members_admin_bar_version_check() {
|
20 |
+
switch( bp_get_major_wp_version() ) {
|
21 |
+
case 3.2 :
|
22 |
+
add_action( 'bp_setup_admin_bar', 'bp_members_admin_bar_my_account_menu', 4 );
|
23 |
+
add_action( 'bp_setup_admin_bar', 'bp_members_admin_bar_notifications_menu', 5 );
|
24 |
+
add_action( 'bp_setup_admin_bar', 'bp_members_admin_bar_user_admin_menu', 99 );
|
25 |
+
add_action( 'bp_setup_admin_bar', 'bp_members_admin_bar_my_account_logout', 9999 );
|
26 |
+
break;
|
27 |
+
case 3.3 :
|
28 |
+
case 3.4 :
|
29 |
+
default :
|
30 |
+
add_action( 'bp_setup_admin_bar', 'bp_members_admin_bar_my_account_menu', 4 );
|
31 |
+
add_action( 'bp_setup_admin_bar', 'bp_members_admin_bar_notifications_menu', 5 );
|
32 |
+
add_action( 'admin_bar_menu', 'bp_members_admin_bar_user_admin_menu', 400 );
|
33 |
+
break;
|
34 |
}
|
35 |
}
|
36 |
add_action( 'admin_bar_menu', 'bp_members_admin_bar_version_check', 4 );
|
41 |
* @since BuddyPress (r4151)
|
42 |
*/
|
43 |
function bp_members_admin_bar_my_account_menu() {
|
44 |
+
global $bp, $wp_admin_bar;
|
45 |
|
46 |
// Bail if this is an ajax request
|
47 |
if ( defined( 'DOING_AJAX' ) )
|
bp-messages/js/autocomplete/license.bgiframe.txt
CHANGED
@@ -1,20 +1,20 @@
|
|
1 |
-
Copyright 2010, Brandon Aaron (http://brandonaaron.net/)
|
2 |
-
|
3 |
-
Permission is hereby granted, free of charge, to any person obtaining
|
4 |
-
a copy of this software and associated documentation files (the
|
5 |
-
"Software"), to deal in the Software without restriction, including
|
6 |
-
without limitation the rights to use, copy, modify, merge, publish,
|
7 |
-
distribute, sublicense, and/or sell copies of the Software, and to
|
8 |
-
permit persons to whom the Software is furnished to do so, subject to
|
9 |
-
the following conditions:
|
10 |
-
|
11 |
-
The above copyright notice and this permission notice shall be
|
12 |
-
included in all copies or substantial portions of the Software.
|
13 |
-
|
14 |
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15 |
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16 |
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17 |
-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18 |
-
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19 |
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20 |
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
1 |
+
Copyright 2010, Brandon Aaron (http://brandonaaron.net/)
|
2 |
+
|
3 |
+
Permission is hereby granted, free of charge, to any person obtaining
|
4 |
+
a copy of this software and associated documentation files (the
|
5 |
+
"Software"), to deal in the Software without restriction, including
|
6 |
+
without limitation the rights to use, copy, modify, merge, publish,
|
7 |
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8 |
+
permit persons to whom the Software is furnished to do so, subject to
|
9 |
+
the following conditions:
|
10 |
+
|
11 |
+
The above copyright notice and this permission notice shall be
|
12 |
+
included in all copies or substantial portions of the Software.
|
13 |
+
|
14 |
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15 |
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16 |
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17 |
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18 |
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19 |
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20 |
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
bp-themes/bp-default/license.txt
CHANGED
@@ -1,280 +1,280 @@
|
|
1 |
-
GNU GENERAL PUBLIC LICENSE
|
2 |
-
Version 2, June 1991
|
3 |
-
|
4 |
-
Copyright (C) 1989, 1991 Free Software Foundation, Inc.
|
5 |
-
675 Mass Ave, Cambridge, MA 02139, USA
|
6 |
-
Everyone is permitted to copy and distribute verbatim copies
|
7 |
-
of this license document, but changing it is not allowed.
|
8 |
-
|
9 |
-
Preamble
|
10 |
-
|
11 |
-
The licenses for most software are designed to take away your
|
12 |
-
freedom to share and change it. By contrast, the GNU General Public
|
13 |
-
License is intended to guarantee your freedom to share and change free
|
14 |
-
software--to make sure the software is free for all its users. This
|
15 |
-
General Public License applies to most of the Free Software
|
16 |
-
Foundation's software and to any other program whose authors commit to
|
17 |
-
using it. (Some other Free Software Foundation software is covered by
|
18 |
-
the GNU Library General Public License instead.) You can apply it to
|
19 |
-
your programs, too.
|
20 |
-
|
21 |
-
When we speak of free software, we are referring to freedom, not
|
22 |
-
price. Our General Public Licenses are designed to make sure that you
|
23 |
-
have the freedom to distribute copies of free software (and charge for
|
24 |
-
this service if you wish), that you receive source code or can get it
|
25 |
-
if you want it, that you can change the software or use pieces of it
|
26 |
-
in new free programs; and that you know you can do these things.
|
27 |
-
|
28 |
-
To protect your rights, we need to make restrictions that forbid
|
29 |
-
anyone to deny you these rights or to ask you to surrender the rights.
|
30 |
-
These restrictions translate to certain responsibilities for you if you
|
31 |
-
distribute copies of the software, or if you modify it.
|
32 |
-
|
33 |
-
For example, if you distribute copies of such a program, whether
|
34 |
-
gratis or for a fee, you must give the recipients all the rights that
|
35 |
-
you have. You must make sure that they, too, receive or can get the
|
36 |
-
source code. And you must show them these terms so they know their
|
37 |
-
rights.
|
38 |
-
|
39 |
-
We protect your rights with two steps: (1) copyright the software, and
|
40 |
-
(2) offer you this license which gives you legal permission to copy,
|
41 |
-
distribute and/or modify the software.
|
42 |
-
|
43 |
-
Also, for each author's protection and ours, we want to make certain
|
44 |
-
that everyone understands that there is no warranty for this free
|
45 |
-
software. If the software is modified by someone else and passed on, we
|
46 |
-
want its recipients to know that what they have is not the original, so
|
47 |
-
that any problems introduced by others will not reflect on the original
|
48 |
-
authors' reputations.
|
49 |
-
|
50 |
-
Finally, any free program is threatened constantly by software
|
51 |
-
patents. We wish to avoid the danger that redistributors of a free
|
52 |
-
program will individually obtain patent licenses, in effect making the
|
53 |
-
program proprietary. To prevent this, we have made it clear that any
|
54 |
-
patent must be licensed for everyone's free use or not licensed at all.
|
55 |
-
|
56 |
-
The precise terms and conditions for copying, distribution and
|
57 |
-
modification follow.
|
58 |
-
|
59 |
-
GNU GENERAL PUBLIC LICENSE
|
60 |
-
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
61 |
-
|
62 |
-
0. This License applies to any program or other work which contains
|
63 |
-
a notice placed by the copyright holder saying it may be distributed
|
64 |
-
under the terms of this General Public License. The "Program", below,
|
65 |
-
refers to any such program or work, and a "work based on the Program"
|
66 |
-
means either the Program or any derivative work under copyright law:
|
67 |
-
that is to say, a work containing the Program or a portion of it,
|
68 |
-
either verbatim or with modifications and/or translated into another
|
69 |
-
language. (Hereinafter, translation is included without limitation in
|
70 |
-
the term "modification".) Each licensee is addressed as "you".
|
71 |
-
|
72 |
-
Activities other than copying, distribution and modification are not
|
73 |
-
covered by this License; they are outside its scope. The act of
|
74 |
-
running the Program is not restricted, and the output from the Program
|
75 |
-
is covered only if its contents constitute a work based on the
|
76 |
-
Program (independent of having been made by running the Program).
|
77 |
-
Whether that is true depends on what the Program does.
|
78 |
-
|
79 |
-
1. You may copy and distribute verbatim copies of the Program's
|
80 |
-
source code as you receive it, in any medium, provided that you
|
81 |
-
conspicuously and appropriately publish on each copy an appropriate
|
82 |
-
copyright notice and disclaimer of warranty; keep intact all the
|
83 |
-
notices that refer to this License and to the absence of any warranty;
|
84 |
-
and give any other recipients of the Program a copy of this License
|
85 |
-
along with the Program.
|
86 |
-
|
87 |
-
You may charge a fee for the physical act of transferring a copy, and
|
88 |
-
you may at your option offer warranty protection in exchange for a fee.
|
89 |
-
|
90 |
-
2. You may modify your copy or copies of the Program or any portion
|
91 |
-
of it, thus forming a work based on the Program, and copy and
|
92 |
-
distribute such modifications or work under the terms of Section 1
|
93 |
-
above, provided that you also meet all of these conditions:
|
94 |
-
|
95 |
-
a) You must cause the modified files to carry prominent notices
|
96 |
-
stating that you changed the files and the date of any change.
|
97 |
-
|
98 |
-
b) You must cause any work that you distribute or publish, that in
|
99 |
-
whole or in part contains or is derived from the Program or any
|
100 |
-
part thereof, to be licensed as a whole at no charge to all third
|
101 |
-
parties under the terms of this License.
|
102 |
-
|
103 |
-
c) If the modified program normally reads commands interactively
|
104 |
-
when run, you must cause it, when started running for such
|
105 |
-
interactive use in the most ordinary way, to print or display an
|
106 |
-
announcement including an appropriate copyright notice and a
|
107 |
-
notice that there is no warranty (or else, saying that you provide
|
108 |
-
a warranty) and that users may redistribute the program under
|
109 |
-
these conditions, and telling the user how to view a copy of this
|
110 |
-
License. (Exception: if the Program itself is interactive but
|
111 |
-
does not normally print such an announcement, your work based on
|
112 |
-
the Program is not required to print an announcement.)
|
113 |
-
|
114 |
-
These requirements apply to the modified work as a whole. If
|
115 |
-
identifiable sections of that work are not derived from the Program,
|
116 |
-
and can be reasonably considered independent and separate works in
|
117 |
-
themselves, then this License, and its terms, do not apply to those
|
118 |
-
sections when you distribute them as separate works. But when you
|
119 |
-
distribute the same sections as part of a whole which is a work based
|
120 |
-
on the Program, the distribution of the whole must be on the terms of
|
121 |
-
this License, whose permissions for other licensees extend to the
|
122 |
-
entire whole, and thus to each and every part regardless of who wrote it.
|
123 |
-
Thus, it is not the intent of this section to claim rights or contest
|
124 |
-
your rights to work written entirely by you; rather, the intent is to
|
125 |
-
exercise the right to control the distribution of derivative or
|
126 |
-
collective works based on the Program.
|
127 |
-
|
128 |
-
In addition, mere aggregation of another work not based on the Program
|
129 |
-
with the Program (or with a work based on the Program) on a volume of
|
130 |
-
a storage or distribution medium does not bring the other work under
|
131 |
-
the scope of this License.
|
132 |
-
|
133 |
-
3. You may copy and distribute the Program (or a work based on it,
|
134 |
-
under Section 2) in object code or executable form under the terms of
|
135 |
-
Sections 1 and 2 above provided that you also do one of the following:
|
136 |
-
|
137 |
-
a) Accompany it with the complete corresponding machine-readable
|
138 |
-
source code, which must be distributed under the terms of Sections
|
139 |
-
1 and 2 above on a medium customarily used for software interchange; or,
|
140 |
-
|
141 |
-
b) Accompany it with a written offer, valid for at least three
|
142 |
-
years, to give any third party, for a charge no more than your
|
143 |
-
cost of physically performing source distribution, a complete
|
144 |
-
machine-readable copy of the corresponding source code, to be
|
145 |
-
distributed under the terms of Sections 1 and 2 above on a medium
|
146 |
-
customarily used for software interchange; or,
|
147 |
-
|
148 |
-
c) Accompany it with the information you received as to the offer
|
149 |
-
to distribute corresponding source code. (This alternative is
|
150 |
-
allowed only for noncommercial distribution and only if you
|
151 |
-
received the program in object code or executable form with such
|
152 |
-
an offer, in accord with Subsection b above.)
|
153 |
-
|
154 |
-
The source code for a work means the preferred form of the work for
|
155 |
-
making modifications to it. For an executable work, complete source
|
156 |
-
code means all the source code for all modules it contains, plus any
|
157 |
-
associated interface definition files, plus the scripts used to
|
158 |
-
control compilation and installation of the executable. However, as a
|
159 |
-
special exception, the source code distributed need not include
|
160 |
-
anything that is normally distributed (in either source or binary
|
161 |
-
form) with the major components (compiler, kernel, and so on) of the
|
162 |
-
operating system on which the executable runs, unless that component
|
163 |
-
itself accompanies the executable.
|
164 |
-
|
165 |
-
If distribution of executable or object code is made by offering
|
166 |
-
access to copy from a designated place, then offering equivalent
|
167 |
-
access to copy the source code from the same place counts as
|
168 |
-
distribution of the source code, even though third parties are not
|
169 |
-
compelled to copy the source along with the object code.
|
170 |
-
|
171 |
-
4. You may not copy, modify, sublicense, or distribute the Program
|
172 |
-
except as expressly provided under this License. Any attempt
|
173 |
-
otherwise to copy, modify, sublicense or distribute the Program is
|
174 |
-
void, and will automatically terminate your rights under this License.
|
175 |
-
However, parties who have received copies, or rights, from you under
|
176 |
-
this License will not have their licenses terminated so long as such
|
177 |
-
parties remain in full compliance.
|
178 |
-
|
179 |
-
5. You are not required to accept this License, since you have not
|
180 |
-
signed it. However, nothing else grants you permission to modify or
|
181 |
-
distribute the Program or its derivative works. These actions are
|
182 |
-
prohibited by law if you do not accept this License. Therefore, by
|
183 |
-
modifying or distributing the Program (or any work based on the
|
184 |
-
Program), you indicate your acceptance of this License to do so, and
|
185 |
-
all its terms and conditions for copying, distributing or modifying
|
186 |
-
the Program or works based on it.
|
187 |
-
|
188 |
-
6. Each time you redistribute the Program (or any work based on the
|
189 |
-
Program), the recipient automatically receives a license from the
|
190 |
-
original licensor to copy, distribute or modify the Program subject to
|
191 |
-
these terms and conditions. You may not impose any further
|
192 |
-
restrictions on the recipients' exercise of the rights granted herein.
|
193 |
-
You are not responsible for enforcing compliance by third parties to
|
194 |
-
this License.
|
195 |
-
|
196 |
-
7. If, as a consequence of a court judgment or allegation of patent
|
197 |
-
infringement or for any other reason (not limited to patent issues),
|
198 |
-
conditions are imposed on you (whether by court order, agreement or
|
199 |
-
otherwise) that contradict the conditions of this License, they do not
|
200 |
-
excuse you from the conditions of this License. If you cannot
|
201 |
-
distribute so as to satisfy simultaneously your obligations under this
|
202 |
-
License and any other pertinent obligations, then as a consequence you
|
203 |
-
may not distribute the Program at all. For example, if a patent
|
204 |
-
license would not permit royalty-free redistribution of the Program by
|
205 |
-
all those who receive copies directly or indirectly through you, then
|
206 |
-
the only way you could satisfy both it and this License would be to
|
207 |
-
refrain entirely from distribution of the Program.
|
208 |
-
|
209 |
-
If any portion of this section is held invalid or unenforceable under
|
210 |
-
any particular circumstance, the balance of the section is intended to
|
211 |
-
apply and the section as a whole is intended to apply in other
|
212 |
-
circumstances.
|
213 |
-
|
214 |
-
It is not the purpose of this section to induce you to infringe any
|
215 |
-
patents or other property right claims or to contest validity of any
|
216 |
-
such claims; this section has the sole purpose of protecting the
|
217 |
-
integrity of the free software distribution system, which is
|
218 |
-
implemented by public license practices. Many people have made
|
219 |
-
generous contributions to the wide range of software distributed
|
220 |
-
through that system in reliance on consistent application of that
|
221 |
-
system; it is up to the author/donor to decide if he or she is willing
|
222 |
-
to distribute software through any other system and a licensee cannot
|
223 |
-
impose that choice.
|
224 |
-
|
225 |
-
This section is intended to make thoroughly clear what is believed to
|
226 |
-
be a consequence of the rest of this License.
|
227 |
-
|
228 |
-
8. If the distribution and/or use of the Program is restricted in
|
229 |
-
certain countries either by patents or by copyrighted interfaces, the
|
230 |
-
original copyright holder who places the Program under this License
|
231 |
-
may add an explicit geographical distribution limitation excluding
|
232 |
-
those countries, so that distribution is permitted only in or among
|
233 |
-
countries not thus excluded. In such case, this License incorporates
|
234 |
-
the limitation as if written in the body of this License.
|
235 |
-
|
236 |
-
9. The Free Software Foundation may publish revised and/or new versions
|
237 |
-
of the General Public License from time to time. Such new versions will
|
238 |
-
be similar in spirit to the present version, but may differ in detail to
|
239 |
-
address new problems or concerns.
|
240 |
-
|
241 |
-
Each version is given a distinguishing version number. If the Program
|
242 |
-
specifies a version number of this License which applies to it and "any
|
243 |
-
later version", you have the option of following the terms and conditions
|
244 |
-
either of that version or of any later version published by the Free
|
245 |
-
Software Foundation. If the Program does not specify a version number of
|
246 |
-
this License, you may choose any version ever published by the Free Software
|
247 |
-
Foundation.
|
248 |
-
|
249 |
-
10. If you wish to incorporate parts of the Program into other free
|
250 |
-
programs whose distribution conditions are different, write to the author
|
251 |
-
to ask for permission. For software which is copyrighted by the Free
|
252 |
-
Software Foundation, write to the Free Software Foundation; we sometimes
|
253 |
-
make exceptions for this. Our decision will be guided by the two goals
|
254 |
-
of preserving the free status of all derivatives of our free software and
|
255 |
-
of promoting the sharing and reuse of software generally.
|
256 |
-
|
257 |
-
NO WARRANTY
|
258 |
-
|
259 |
-
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
260 |
-
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
261 |
-
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
|
262 |
-
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
|
263 |
-
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
264 |
-
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
|
265 |
-
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
|
266 |
-
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
|
267 |
-
REPAIR OR CORRECTION.
|
268 |
-
|
269 |
-
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
270 |
-
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
|
271 |
-
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
272 |
-
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
|
273 |
-
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
|
274 |
-
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
|
275 |
-
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
|
276 |
-
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
277 |
-
POSSIBILITY OF SUCH DAMAGES.
|
278 |
-
|
279 |
-
END OF TERMS AND CONDITIONS
|
280 |
-
|
1 |
+
GNU GENERAL PUBLIC LICENSE
|
2 |
+
Version 2, June 1991
|
3 |
+
|
4 |
+
Copyright (C) 1989, 1991 Free Software Foundation, Inc.
|
5 |
+
675 Mass Ave, Cambridge, MA 02139, USA
|
6 |
+
Everyone is permitted to copy and distribute verbatim copies
|
7 |
+
of this license document, but changing it is not allowed.
|
8 |
+
|
9 |
+
Preamble
|
10 |
+
|
11 |
+
The licenses for most software are designed to take away your
|
12 |
+
freedom to share and change it. By contrast, the GNU General Public
|
13 |
+
License is intended to guarantee your freedom to share and change free
|
14 |
+
software--to make sure the software is free for all its users. This
|
15 |
+
General Public License applies to most of the Free Software
|
16 |
+
Foundation's software and to any other program whose authors commit to
|
17 |
+
using it. (Some other Free Software Foundation software is covered by
|
18 |
+
the GNU Library General Public License instead.) You can apply it to
|
19 |
+
your programs, too.
|
20 |
+
|
21 |
+
When we speak of free software, we are referring to freedom, not
|
22 |
+
price. Our General Public Licenses are designed to make sure that you
|
23 |
+
have the freedom to distribute copies of free software (and charge for
|
24 |
+
this service if you wish), that you receive source code or can get it
|
25 |
+
if you want it, that you can change the software or use pieces of it
|
26 |
+
in new free programs; and that you know you can do these things.
|
27 |
+
|
28 |
+
To protect your rights, we need to make restrictions that forbid
|
29 |
+
anyone to deny you these rights or to ask you to surrender the rights.
|
30 |
+
These restrictions translate to certain responsibilities for you if you
|
31 |
+
distribute copies of the software, or if you modify it.
|
32 |
+
|
33 |
+
For example, if you distribute copies of such a program, whether
|
34 |
+
gratis or for a fee, you must give the recipients all the rights that
|
35 |
+
you have. You must make sure that they, too, receive or can get the
|
36 |
+
source code. And you must show them these terms so they know their
|
37 |
+
rights.
|
38 |
+
|
39 |
+
We protect your rights with two steps: (1) copyright the software, and
|
40 |
+
(2) offer you this license which gives you legal permission to copy,
|
41 |
+
distribute and/or modify the software.
|
42 |
+
|
43 |
+
Also, for each author's protection and ours, we want to make certain
|
44 |
+
that everyone understands that there is no warranty for this free
|
45 |
+
software. If the software is modified by someone else and passed on, we
|
46 |
+
want its recipients to know that what they have is not the original, so
|
47 |
+
that any problems introduced by others will not reflect on the original
|
48 |
+
authors' reputations.
|
49 |
+
|
50 |
+
Finally, any free program is threatened constantly by software
|
51 |
+
patents. We wish to avoid the danger that redistributors of a free
|
52 |
+
program will individually obtain patent licenses, in effect making the
|
53 |
+
program proprietary. To prevent this, we have made it clear that any
|
54 |
+
patent must be licensed for everyone's free use or not licensed at all.
|
55 |
+
|
56 |
+
The precise terms and conditions for copying, distribution and
|
57 |
+
modification follow.
|
58 |
+
|
59 |
+
GNU GENERAL PUBLIC LICENSE
|
60 |
+
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
61 |
+
|
62 |
+
0. This License applies to any program or other work which contains
|
63 |
+
a notice placed by the copyright holder saying it may be distributed
|
64 |
+
under the terms of this General Public License. The "Program", below,
|
65 |
+
refers to any such program or work, and a "work based on the Program"
|
66 |
+
means either the Program or any derivative work under copyright law:
|
67 |
+
that is to say, a work containing the Program or a portion of it,
|
68 |
+
either verbatim or with modifications and/or translated into another
|
69 |
+
language. (Hereinafter, translation is included without limitation in
|
70 |
+
the term "modification".) Each licensee is addressed as "you".
|
71 |
+
|
72 |
+
Activities other than copying, distribution and modification are not
|
73 |
+
covered by this License; they are outside its scope. The act of
|
74 |
+
running the Program is not restricted, and the output from the Program
|
75 |
+
is covered only if its contents constitute a work based on the
|
76 |
+
Program (independent of having been made by running the Program).
|
77 |
+
Whether that is true depends on what the Program does.
|
78 |
+
|
79 |
+
1. You may copy and distribute verbatim copies of the Program's
|
80 |
+
source code as you receive it, in any medium, provided that you
|
81 |
+
conspicuously and appropriately publish on each copy an appropriate
|
82 |
+
copyright notice and disclaimer of warranty; keep intact all the
|
83 |
+
notices that refer to this License and to the absence of any warranty;
|
84 |
+
and give any other recipients of the Program a copy of this License
|
85 |
+
along with the Program.
|
86 |
+
|
87 |
+
You may charge a fee for the physical act of transferring a copy, and
|
88 |
+
you may at your option offer warranty protection in exchange for a fee.
|
89 |
+
|
90 |
+
2. You may modify your copy or copies of the Program or any portion
|
91 |
+
of it, thus forming a work based on the Program, and copy and
|
92 |
+
distribute such modifications or work under the terms of Section 1
|
93 |
+
above, provided that you also meet all of these conditions:
|
94 |
+
|
95 |
+
a) You must cause the modified files to carry prominent notices
|
96 |
+
stating that you changed the files and the date of any change.
|
97 |
+
|
98 |
+
b) You must cause any work that you distribute or publish, that in
|
99 |
+
whole or in part contains or is derived from the Program or any
|
100 |
+
part thereof, to be licensed as a whole at no charge to all third
|
101 |
+
parties under the terms of this License.
|
102 |
+
|
103 |
+
c) If the modified program normally reads commands interactively
|
104 |
+
when run, you must cause it, when started running for such
|
105 |
+
interactive use in the most ordinary way, to print or display an
|
106 |
+
announcement including an appropriate copyright notice and a
|
107 |
+
notice that there is no warranty (or else, saying that you provide
|
108 |
+
a warranty) and that users may redistribute the program under
|
109 |
+
these conditions, and telling the user how to view a copy of this
|
110 |
+
License. (Exception: if the Program itself is interactive but
|
111 |
+
does not normally print such an announcement, your work based on
|
112 |
+
the Program is not required to print an announcement.)
|
113 |
+
|
114 |
+
These requirements apply to the modified work as a whole. If
|
115 |
+
identifiable sections of that work are not derived from the Program,
|
116 |
+
and can be reasonably considered independent and separate works in
|
117 |
+
themselves, then this License, and its terms, do not apply to those
|
118 |
+
sections when you distribute them as separate works. But when you
|
119 |
+
distribute the same sections as part of a whole which is a work based
|
120 |
+
on the Program, the distribution of the whole must be on the terms of
|
121 |
+
this License, whose permissions for other licensees extend to the
|
122 |
+
entire whole, and thus to each and every part regardless of who wrote it.
|
123 |
+
Thus, it is not the intent of this section to claim rights or contest
|
124 |
+
your rights to work written entirely by you; rather, the intent is to
|
125 |
+
exercise the right to control the distribution of derivative or
|
126 |
+
collective works based on the Program.
|
127 |
+
|
128 |
+
In addition, mere aggregation of another work not based on the Program
|
129 |
+
with the Program (or with a work based on the Program) on a volume of
|
130 |
+
a storage or distribution medium does not bring the other work under
|
131 |
+
the scope of this License.
|
132 |
+
|
133 |
+
3. You may copy and distribute the Program (or a work based on it,
|
134 |
+
under Section 2) in object code or executable form under the terms of
|
135 |
+
Sections 1 and 2 above provided that you also do one of the following:
|
136 |
+
|
137 |
+
a) Accompany it with the complete corresponding machine-readable
|
138 |
+
source code, which must be distributed under the terms of Sections
|
139 |
+
1 and 2 above on a medium customarily used for software interchange; or,
|
140 |
+
|
141 |
+
b) Accompany it with a written offer, valid for at least three
|
142 |
+
years, to give any third party, for a charge no more than your
|
143 |
+
cost of physically performing source distribution, a complete
|
144 |
+
machine-readable copy of the corresponding source code, to be
|
145 |
+
distributed under the terms of Sections 1 and 2 above on a medium
|
146 |
+
customarily used for software interchange; or,
|
147 |
+
|
148 |
+
c) Accompany it with the information you received as to the offer
|
149 |
+
to distribute corresponding source code. (This alternative is
|
150 |
+
allowed only for noncommercial distribution and only if you
|
151 |
+
received the program in object code or executable form with such
|
152 |
+
an offer, in accord with Subsection b above.)
|
153 |
+
|
154 |
+
The source code for a work means the preferred form of the work for
|
155 |
+
making modifications to it. For an executable work, complete source
|
156 |
+
code means all the source code for all modules it contains, plus any
|
157 |
+
associated interface definition files, plus the scripts used to
|
158 |
+
control compilation and installation of the executable. However, as a
|
159 |
+
special exception, the source code distributed need not include
|
160 |
+
anything that is normally distributed (in either source or binary
|
161 |
+
form) with the major components (compiler, kernel, and so on) of the
|
162 |
+
operating system on which the executable runs, unless that component
|
163 |
+
itself accompanies the executable.
|
164 |
+
|
165 |
+
If distribution of executable or object code is made by offering
|
166 |
+
access to copy from a designated place, then offering equivalent
|
167 |
+
access to copy the source code from the same place counts as
|
168 |
+
distribution of the source code, even though third parties are not
|
169 |
+
compelled to copy the source along with the object code.
|
170 |
+
|
171 |
+
4. You may not copy, modify, sublicense, or distribute the Program
|
172 |
+
except as expressly provided under this License. Any attempt
|
173 |
+
otherwise to copy, modify, sublicense or distribute the Program is
|
174 |
+
void, and will automatically terminate your rights under this License.
|
175 |
+
However, parties who have received copies, or rights, from you under
|
176 |
+
this License will not have their licenses terminated so long as such
|
177 |
+
parties remain in full compliance.
|
178 |
+
|
179 |
+
5. You are not required to accept this License, since you have not
|
180 |
+
signed it. However, nothing else grants you permission to modify or
|
181 |
+
distribute the Program or its derivative works. These actions are
|
182 |
+
prohibited by law if you do not accept this License. Therefore, by
|
183 |
+
modifying or distributing the Program (or any work based on the
|
184 |
+
Program), you indicate your acceptance of this License to do so, and
|
185 |
+
all its terms and conditions for copying, distributing or modifying
|
186 |
+
the Program or works based on it.
|
187 |
+
|
188 |
+
6. Each time you redistribute the Program (or any work based on the
|
189 |
+
Program), the recipient automatically receives a license from the
|
190 |
+
original licensor to copy, distribute or modify the Program subject to
|
191 |
+
these terms and conditions. You may not impose any further
|
192 |
+
restrictions on the recipients' exercise of the rights granted herein.
|
193 |
+
You are not responsible for enforcing compliance by third parties to
|
194 |
+
this License.
|
195 |
+
|
196 |
+
7. If, as a consequence of a court judgment or allegation of patent
|
197 |
+
infringement or for any other reason (not limited to patent issues),
|
198 |
+
conditions are imposed on you (whether by court order, agreement or
|
199 |
+
otherwise) that contradict the conditions of this License, they do not
|
200 |
+
excuse you from the conditions of this License. If you cannot
|
201 |
+
distribute so as to satisfy simultaneously your obligations under this
|
202 |
+
License and any other pertinent obligations, then as a consequence you
|
203 |
+
may not distribute the Program at all. For example, if a patent
|
204 |
+
license would not permit royalty-free redistribution of the Program by
|
205 |
+
all those who receive copies directly or indirectly through you, then
|
206 |
+
the only way you could satisfy both it and this License would be to
|
207 |
+
refrain entirely from distribution of the Program.
|
208 |
+
|
209 |
+
If any portion of this section is held invalid or unenforceable under
|
210 |
+
any particular circumstance, the balance of the section is intended to
|
211 |
+
apply and the section as a whole is intended to apply in other
|
212 |
+
circumstances.
|
213 |
+
|
214 |
+
It is not the purpose of this section to induce you to infringe any
|
215 |
+
patents or other property right claims or to contest validity of any
|
216 |
+
such claims; this section has the sole purpose of protecting the
|
217 |
+
integrity of the free software distribution system, which is
|
218 |
+
implemented by public license practices. Many people have made
|
219 |
+
generous contributions to the wide range of software distributed
|
220 |
+
through that system in reliance on consistent application of that
|
221 |
+
system; it is up to the author/donor to decide if he or she is willing
|
222 |
+
to distribute software through any other system and a licensee cannot
|
223 |
+
impose that choice.
|
224 |
+
|
225 |
+
This section is intended to make thoroughly clear what is believed to
|
226 |
+
be a consequence of the rest of this License.
|
227 |
+
|
228 |
+
8. If the distribution and/or use of the Program is restricted in
|
229 |
+
certain countries either by patents or by copyrighted interfaces, the
|
230 |
+
original copyright holder who places the Program under this License
|
231 |
+
may add an explicit geographical distribution limitation excluding
|
232 |
+
those countries, so that distribution is permitted only in or among
|
233 |
+
countries not thus excluded. In such case, this License incorporates
|
234 |
+
the limitation as if written in the body of this License.
|
235 |
+
|
236 |
+
9. The Free Software Foundation may publish revised and/or new versions
|
237 |
+
of the General Public License from time to time. Such new versions will
|
238 |
+
be similar in spirit to the present version, but may differ in detail to
|
239 |
+
address new problems or concerns.
|
240 |
+
|
241 |
+
Each version is given a distinguishing version number. If the Program
|
242 |
+
specifies a version number of this License which applies to it and "any
|
243 |
+
later version", you have the option of following the terms and conditions
|
244 |
+
either of that version or of any later version published by the Free
|
245 |
+
Software Foundation. If the Program does not specify a version number of
|
246 |
+
this License, you may choose any version ever published by the Free Software
|
247 |
+
Foundation.
|
248 |
+
|
249 |
+
10. If you wish to incorporate parts of the Program into other free
|
250 |
+
programs whose distribution conditions are different, write to the author
|
251 |
+
to ask for permission. For software which is copyrighted by the Free
|
252 |
+
Software Foundation, write to the Free Software Foundation; we sometimes
|
253 |
+
make exceptions for this. Our decision will be guided by the two goals
|
254 |
+
of preserving the free status of all derivatives of our free software and
|
255 |
+
of promoting the sharing and reuse of software generally.
|
256 |
+
|
257 |
+
NO WARRANTY
|
258 |
+
|
259 |
+
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
260 |
+
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
261 |
+
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
|
262 |
+
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
|
263 |
+
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
264 |
+
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
|
265 |
+
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
|
266 |
+
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
|
267 |
+
REPAIR OR CORRECTION.
|
268 |
+
|
269 |
+
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
270 |
+
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
|
271 |
+
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
272 |
+
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
|
273 |
+
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
|
274 |
+
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
|
275 |
+
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
|
276 |
+
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
277 |
+
POSSIBILITY OF SUCH DAMAGES.
|
278 |
+
|
279 |
+
END OF TERMS AND CONDITIONS
|
280 |
+
|
bp-themes/bp-default/readme.txt
CHANGED
@@ -1,22 +1,22 @@
|
|
1 |
-
--- BuddyPress Default ---
|
2 |
-
Clean and stylish, BuddyPress Default lets you build a social network straight out of the box. Make it yours with a custom menu, header image, and background. Along with five widgetized areas (one in the sidebar, four in the footer), BP-Default supports featured images (as custom header images on posts and pages) and is furnished with an optional one-column page template that removes the sidebar, and a stylesheet for the admin Visual Editor.
|
3 |
-
|
4 |
-
|
5 |
-
--- Installation ---
|
6 |
-
The theme is bundled with BuddyPress. After activating the plugin, BuddyPress Default will be added to the "Appearance > Themes" menu in your WordPress admin area.
|
7 |
-
|
8 |
-
|
9 |
-
--- About BuddyPress ---
|
10 |
-
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. BuddyPress will let users register on your site and start creating profiles, posting messages, making connections, creating and interacting in groups and much more.
|
11 |
-
|
12 |
-
For help with BuddyPress Default, or for more information about BuddyPress, please visit http://buddypress.org/.
|
13 |
-
|
14 |
-
|
15 |
-
--- Building a BuddyPress theme ---
|
16 |
-
If you want to make a custom theme based on BuddyPress Default, DO NOT copy and edit it. By doing this you will make updates and maintenance much harder for yourself. Instead, please review this codex page for instructions on how to build a BuddyPress child theme:
|
17 |
-
|
18 |
-
http://codex.buddypress.org/how-to-guides/building-a-buddypress-child-theme/
|
19 |
-
|
20 |
-
|
21 |
-
--- Changelog ---
|
22 |
A list of changes is available at http://codex.buddypress.org/theme-development/bp-default-theme-changelog/.
|
1 |
+
--- BuddyPress Default ---
|
2 |
+
Clean and stylish, BuddyPress Default lets you build a social network straight out of the box. Make it yours with a custom menu, header image, and background. Along with five widgetized areas (one in the sidebar, four in the footer), BP-Default supports featured images (as custom header images on posts and pages) and is furnished with an optional one-column page template that removes the sidebar, and a stylesheet for the admin Visual Editor.
|
3 |
+
|
4 |
+
|
5 |
+
--- Installation ---
|
6 |
+
The theme is bundled with BuddyPress. After activating the plugin, BuddyPress Default will be added to the "Appearance > Themes" menu in your WordPress admin area.
|
7 |
+
|
8 |
+
|
9 |
+
--- About BuddyPress ---
|
10 |
+
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. BuddyPress will let users register on your site and start creating profiles, posting messages, making connections, creating and interacting in groups and much more.
|
11 |
+
|
12 |
+
For help with BuddyPress Default, or for more information about BuddyPress, please visit http://buddypress.org/.
|
13 |
+
|
14 |
+
|
15 |
+
--- Building a BuddyPress theme ---
|
16 |
+
If you want to make a custom theme based on BuddyPress Default, DO NOT copy and edit it. By doing this you will make updates and maintenance much harder for yourself. Instead, please review this codex page for instructions on how to build a BuddyPress child theme:
|
17 |
+
|
18 |
+
http://codex.buddypress.org/how-to-guides/building-a-buddypress-child-theme/
|
19 |
+
|
20 |
+
|
21 |
+
--- Changelog ---
|
22 |
A list of changes is available at http://codex.buddypress.org/theme-development/bp-default-theme-changelog/.
|
bp-themes/bp-default/rtl.css
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
* Theme Name: BuddyPress Default
|
3 |
* Theme URI: http://buddypress.org/extend/themes/
|
4 |
* Description: Clean and stylish, BuddyPress Default lets you build a social network straight out of the box. Make it yours with a custom menu, header image, and background. Along with five widgetized areas (one in the sidebar, four in the footer), BP-Default supports featured images (as custom header images on posts and pages) and is furnished with an optional one-column page template that removes the sidebar, and a stylesheet for the admin Visual Editor.
|
5 |
-
* Version: 1.5.
|
6 |
* Author: the BuddyPress team
|
7 |
* Author URI: http://buddypress.org
|
8 |
* License: GNU General Public License
|
2 |
* Theme Name: BuddyPress Default
|
3 |
* Theme URI: http://buddypress.org/extend/themes/
|
4 |
* Description: Clean and stylish, BuddyPress Default lets you build a social network straight out of the box. Make it yours with a custom menu, header image, and background. Along with five widgetized areas (one in the sidebar, four in the footer), BP-Default supports featured images (as custom header images on posts and pages) and is furnished with an optional one-column page template that removes the sidebar, and a stylesheet for the admin Visual Editor.
|
5 |
+
* Version: 1.5.4
|
6 |
* Author: the BuddyPress team
|
7 |
* Author URI: http://buddypress.org
|
8 |
* License: GNU General Public License
|
bp-themes/bp-default/style.css
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
* Theme Name: BuddyPress Default
|
3 |
* Theme URI: http://buddypress.org/extend/themes/
|
4 |
* Description: Clean and stylish, BuddyPress Default lets you build a social network straight out of the box. Make it yours with a custom menu, header image, and background. Along with five widgetized areas (one in the sidebar, four in the footer), BP-Default supports featured images (as custom header images on posts and pages) and is furnished with an optional one-column page template that removes the sidebar, and a stylesheet for the admin Visual Editor.
|
5 |
-
* Version: 1.5.
|
6 |
* Author: the BuddyPress team
|
7 |
* Author URI: http://buddypress.org
|
8 |
* License: GNU General Public License
|
2 |
* Theme Name: BuddyPress Default
|
3 |
* Theme URI: http://buddypress.org/extend/themes/
|
4 |
* Description: Clean and stylish, BuddyPress Default lets you build a social network straight out of the box. Make it yours with a custom menu, header image, and background. Along with five widgetized areas (one in the sidebar, four in the footer), BP-Default supports featured images (as custom header images on posts and pages) and is furnished with an optional one-column page template that removes the sidebar, and a stylesheet for the admin Visual Editor.
|
5 |
+
* Version: 1.5.4
|
6 |
* Author: the BuddyPress team
|
7 |
* Author URI: http://buddypress.org
|
8 |
* License: GNU General Public License
|
humans.txt
CHANGED
@@ -33,7 +33,7 @@ Twitter: apeatling
|
|
33 |
|
34 |
Name: John James Jacoby
|
35 |
Title: Lead Developer
|
36 |
-
Twitter:
|
37 |
Favorite Food: Pizza
|
38 |
|
39 |
Name: Boone B. Gorges
|
33 |
|
34 |
Name: John James Jacoby
|
35 |
Title: Lead Developer
|
36 |
+
Twitter: jjj
|
37 |
Favorite Food: Pizza
|
38 |
|
39 |
Name: Boone B. Gorges
|
license.txt
CHANGED
@@ -1,280 +1,280 @@
|
|
1 |
-
GNU GENERAL PUBLIC LICENSE
|
2 |
-
Version 2, June 1991
|
3 |
-
|
4 |
-
Copyright (C) 1989, 1991 Free Software Foundation, Inc.
|
5 |
-
675 Mass Ave, Cambridge, MA 02139, USA
|
6 |
-
Everyone is permitted to copy and distribute verbatim copies
|
7 |
-
of this license document, but changing it is not allowed.
|
8 |
-
|
9 |
-
Preamble
|
10 |
-
|
11 |
-
The licenses for most software are designed to take away your
|
12 |
-
freedom to share and change it. By contrast, the GNU General Public
|
13 |
-
License is intended to guarantee your freedom to share and change free
|
14 |
-
software--to make sure the software is free for all its users. This
|
15 |
-
General Public License applies to most of the Free Software
|
16 |
-
Foundation's software and to any other program whose authors commit to
|
17 |
-
using it. (Some other Free Software Foundation software is covered by
|
18 |
-
the GNU Library General Public License instead.) You can apply it to
|
19 |
-
your programs, too.
|
20 |
-
|
21 |
-
When we speak of free software, we are referring to freedom, not
|
22 |
-
price. Our General Public Licenses are designed to make sure that you
|
23 |
-
have the freedom to distribute copies of free software (and charge for
|
24 |
-
this service if you wish), that you receive source code or can get it
|
25 |
-
if you want it, that you can change the software or use pieces of it
|
26 |
-
in new free programs; and that you know you can do these things.
|
27 |
-
|
28 |
-
To protect your rights, we need to make restrictions that forbid
|
29 |
-
anyone to deny you these rights or to ask you to surrender the rights.
|
30 |
-
These restrictions translate to certain responsibilities for you if you
|
31 |
-
distribute copies of the software, or if you modify it.
|
32 |
-
|
33 |
-
For example, if you distribute copies of such a program, whether
|
34 |
-
gratis or for a fee, you must give the recipients all the rights that
|
35 |
-
you have. You must make sure that they, too, receive or can get the
|
36 |
-
source code. And you must show them these terms so they know their
|
37 |
-
rights.
|
38 |
-
|
39 |
-
We protect your rights with two steps: (1) copyright the software, and
|
40 |
-
(2) offer you this license which gives you legal permission to copy,
|
41 |
-
distribute and/or modify the software.
|
42 |
-
|
43 |
-
Also, for each author's protection and ours, we want to make certain
|
44 |
-
that everyone understands that there is no warranty for this free
|
45 |
-
software. If the software is modified by someone else and passed on, we
|
46 |
-
want its recipients to know that what they have is not the original, so
|
47 |
-
that any problems introduced by others will not reflect on the original
|
48 |
-
authors' reputations.
|
49 |
-
|
50 |
-
Finally, any free program is threatened constantly by software
|
51 |
-
patents. We wish to avoid the danger that redistributors of a free
|
52 |
-
program will individually obtain patent licenses, in effect making the
|
53 |
-
program proprietary. To prevent this, we have made it clear that any
|
54 |
-
patent must be licensed for everyone's free use or not licensed at all.
|
55 |
-
|
56 |
-
The precise terms and conditions for copying, distribution and
|
57 |
-
modification follow.
|
58 |
-
|
59 |
-
GNU GENERAL PUBLIC LICENSE
|
60 |
-
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
61 |
-
|
62 |
-
0. This License applies to any program or other work which contains
|
63 |
-
a notice placed by the copyright holder saying it may be distributed
|
64 |
-
under the terms of this General Public License. The "Program", below,
|
65 |
-
refers to any such program or work, and a "work based on the Program"
|
66 |
-
means either the Program or any derivative work under copyright law:
|
67 |
-
that is to say, a work containing the Program or a portion of it,
|
68 |
-
either verbatim or with modifications and/or translated into another
|
69 |
-
language. (Hereinafter, translation is included without limitation in
|
70 |
-
the term "modification".) Each licensee is addressed as "you".
|
71 |
-
|
72 |
-
Activities other than copying, distribution and modification are not
|
73 |
-
covered by this License; they are outside its scope. The act of
|
74 |
-
running the Program is not restricted, and the output from the Program
|
75 |
-
is covered only if its contents constitute a work based on the
|
76 |
-
Program (independent of having been made by running the Program).
|
77 |
-
Whether that is true depends on what the Program does.
|
78 |
-
|
79 |
-
1. You may copy and distribute verbatim copies of the Program's
|
80 |
-
source code as you receive it, in any medium, provided that you
|
81 |
-
conspicuously and appropriately publish on each copy an appropriate
|
82 |
-
copyright notice and disclaimer of warranty; keep intact all the
|
83 |
-
notices that refer to this License and to the absence of any warranty;
|
84 |
-
and give any other recipients of the Program a copy of this License
|
85 |
-
along with the Program.
|
86 |
-
|
87 |
-
You may charge a fee for the physical act of transferring a copy, and
|
88 |
-
you may at your option offer warranty protection in exchange for a fee.
|
89 |
-
|
90 |
-
2. You may modify your copy or copies of the Program or any portion
|
91 |
-
of it, thus forming a work based on the Program, and copy and
|
92 |
-
distribute such modifications or work under the terms of Section 1
|
93 |
-
above, provided that you also meet all of these conditions:
|
94 |
-
|
95 |
-
a) You must cause the modified files to carry prominent notices
|
96 |
-
stating that you changed the files and the date of any change.
|
97 |
-
|
98 |
-
b) You must cause any work that you distribute or publish, that in
|
99 |
-
whole or in part contains or is derived from the Program or any
|
100 |
-
part thereof, to be licensed as a whole at no charge to all third
|
101 |
-
parties under the terms of this License.
|
102 |
-
|
103 |
-
c) If the modified program normally reads commands interactively
|
104 |
-
when run, you must cause it, when started running for such
|
105 |
-
interactive use in the most ordinary way, to print or display an
|
106 |
-
announcement including an appropriate copyright notice and a
|
107 |
-
notice that there is no warranty (or else, saying that you provide
|
108 |
-
a warranty) and that users may redistribute the program under
|
109 |
-
these conditions, and telling the user how to view a copy of this
|
110 |
-
License. (Exception: if the Program itself is interactive but
|
111 |
-
does not normally print such an announcement, your work based on
|
112 |
-
the Program is not required to print an announcement.)
|
113 |
-
|
114 |
-
These requirements apply to the modified work as a whole. If
|
115 |
-
identifiable sections of that work are not derived from the Program,
|
116 |
-
and can be reasonably considered independent and separate works in
|
117 |
-
themselves, then this License, and its terms, do not apply to those
|
118 |
-
sections when you distribute them as separate works. But when you
|
119 |
-
distribute the same sections as part of a whole which is a work based
|
120 |
-
on the Program, the distribution of the whole must be on the terms of
|
121 |
-
this License, whose permissions for other licensees extend to the
|
122 |
-
entire whole, and thus to each and every part regardless of who wrote it.
|
123 |
-
Thus, it is not the intent of this section to claim rights or contest
|
124 |
-
your rights to work written entirely by you; rather, the intent is to
|
125 |
-
exercise the right to control the distribution of derivative or
|
126 |
-
collective works based on the Program.
|
127 |
-
|
128 |
-
In addition, mere aggregation of another work not based on the Program
|
129 |
-
with the Program (or with a work based on the Program) on a volume of
|
130 |
-
a storage or distribution medium does not bring the other work under
|
131 |
-
the scope of this License.
|
132 |
-
|
133 |
-
3. You may copy and distribute the Program (or a work based on it,
|
134 |
-
under Section 2) in object code or executable form under the terms of
|
135 |
-
Sections 1 and 2 above provided that you also do one of the following:
|
136 |
-
|
137 |
-
a) Accompany it with the complete corresponding machine-readable
|
138 |
-
source code, which must be distributed under the terms of Sections
|
139 |
-
1 and 2 above on a medium customarily used for software interchange; or,
|
140 |
-
|
141 |
-
b) Accompany it with a written offer, valid for at least three
|
142 |
-
years, to give any third party, for a charge no more than your
|
143 |
-
cost of physically performing source distribution, a complete
|
144 |
-
machine-readable copy of the corresponding source code, to be
|
145 |
-
distributed under the terms of Sections 1 and 2 above on a medium
|
146 |
-
customarily used for software interchange; or,
|
147 |
-
|
148 |
-
c) Accompany it with the information you received as to the offer
|
149 |
-
to distribute corresponding source code. (This alternative is
|
150 |
-
allowed only for noncommercial distribution and only if you
|
151 |
-
received the program in object code or executable form with such
|
152 |
-
an offer, in accord with Subsection b above.)
|
153 |
-
|
154 |
-
The source code for a work means the preferred form of the work for
|
155 |
-
making modifications to it. For an executable work, complete source
|
156 |
-
code means all the source code for all modules it contains, plus any
|
157 |
-
associated interface definition files, plus the scripts used to
|
158 |
-
control compilation and installation of the executable. However, as a
|
159 |
-
special exception, the source code distributed need not include
|
160 |
-
anything that is normally distributed (in either source or binary
|
161 |
-
form) with the major components (compiler, kernel, and so on) of the
|
162 |
-
operating system on which the executable runs, unless that component
|
163 |
-
itself accompanies the executable.
|
164 |
-
|
165 |
-
If distribution of executable or object code is made by offering
|
166 |
-
access to copy from a designated place, then offering equivalent
|
167 |
-
access to copy the source code from the same place counts as
|
168 |
-
distribution of the source code, even though third parties are not
|
169 |
-
compelled to copy the source along with the object code.
|
170 |
-
|
171 |
-
4. You may not copy, modify, sublicense, or distribute the Program
|
172 |
-
except as expressly provided under this License. Any attempt
|
173 |
-
otherwise to copy, modify, sublicense or distribute the Program is
|
174 |
-
void, and will automatically terminate your rights under this License.
|
175 |
-
However, parties who have received copies, or rights, from you under
|
176 |
-
this License will not have their licenses terminated so long as such
|
177 |
-
parties remain in full compliance.
|
178 |
-
|
179 |
-
5. You are not required to accept this License, since you have not
|
180 |
-
signed it. However, nothing else grants you permission to modify or
|
181 |
-
distribute the Program or its derivative works. These actions are
|
182 |
-
prohibited by law if you do not accept this License. Therefore, by
|
183 |
-
modifying or distributing the Program (or any work based on the
|
184 |
-
Program), you indicate your acceptance of this License to do so, and
|
185 |
-
all its terms and conditions for copying, distributing or modifying
|
186 |
-
the Program or works based on it.
|
187 |
-
|
188 |
-
6. Each time you redistribute the Program (or any work based on the
|
189 |
-
Program), the recipient automatically receives a license from the
|
190 |
-
original licensor to copy, distribute or modify the Program subject to
|
191 |
-
these terms and conditions. You may not impose any further
|
192 |
-
restrictions on the recipients' exercise of the rights granted herein.
|
193 |
-
You are not responsible for enforcing compliance by third parties to
|
194 |
-
this License.
|
195 |
-
|
196 |
-
7. If, as a consequence of a court judgment or allegation of patent
|
197 |
-
infringement or for any other reason (not limited to patent issues),
|
198 |
-
conditions are imposed on you (whether by court order, agreement or
|
199 |
-
otherwise) that contradict the conditions of this License, they do not
|
200 |
-
excuse you from the conditions of this License. If you cannot
|
201 |
-
distribute so as to satisfy simultaneously your obligations under this
|
202 |
-
License and any other pertinent obligations, then as a consequence you
|
203 |
-
may not distribute the Program at all. For example, if a patent
|
204 |
-
license would not permit royalty-free redistribution of the Program by
|
205 |
-
all those who receive copies directly or indirectly through you, then
|
206 |
-
the only way you could satisfy both it and this License would be to
|
207 |
-
refrain entirely from distribution of the Program.
|
208 |
-
|
209 |
-
If any portion of this section is held invalid or unenforceable under
|
210 |
-
any particular circumstance, the balance of the section is intended to
|
211 |
-
apply and the section as a whole is intended to apply in other
|
212 |
-
circumstances.
|
213 |
-
|
214 |
-
It is not the purpose of this section to induce you to infringe any
|
215 |
-
patents or other property right claims or to contest validity of any
|
216 |
-
such claims; this section has the sole purpose of protecting the
|
217 |
-
integrity of the free software distribution system, which is
|
218 |
-
implemented by public license practices. Many people have made
|
219 |
-
generous contributions to the wide range of software distributed
|
220 |
-
through that system in reliance on consistent application of that
|
221 |
-
system; it is up to the author/donor to decide if he or she is willing
|
222 |
-
to distribute software through any other system and a licensee cannot
|
223 |
-
impose that choice.
|
224 |
-
|
225 |
-
This section is intended to make thoroughly clear what is believed to
|
226 |
-
be a consequence of the rest of this License.
|
227 |
-
|
228 |
-
8. If the distribution and/or use of the Program is restricted in
|
229 |
-
certain countries either by patents or by copyrighted interfaces, the
|
230 |
-
original copyright holder who places the Program under this License
|
231 |
-
may add an explicit geographical distribution limitation excluding
|
232 |
-
those countries, so that distribution is permitted only in or among
|
233 |
-
countries not thus excluded. In such case, this License incorporates
|
234 |
-
the limitation as if written in the body of this License.
|
235 |
-
|
236 |
-
9. The Free Software Foundation may publish revised and/or new versions
|
237 |
-
of the General Public License from time to time. Such new versions will
|
238 |
-
be similar in spirit to the present version, but may differ in detail to
|
239 |
-
address new problems or concerns.
|
240 |
-
|
241 |
-
Each version is given a distinguishing version number. If the Program
|
242 |
-
specifies a version number of this License which applies to it and "any
|
243 |
-
later version", you have the option of following the terms and conditions
|
244 |
-
either of that version or of any later version published by the Free
|
245 |
-
Software Foundation. If the Program does not specify a version number of
|
246 |
-
this License, you may choose any version ever published by the Free Software
|
247 |
-
Foundation.
|
248 |
-
|
249 |
-
10. If you wish to incorporate parts of the Program into other free
|
250 |
-
programs whose distribution conditions are different, write to the author
|
251 |
-
to ask for permission. For software which is copyrighted by the Free
|
252 |
-
Software Foundation, write to the Free Software Foundation; we sometimes
|
253 |
-
make exceptions for this. Our decision will be guided by the two goals
|
254 |
-
of preserving the free status of all derivatives of our free software and
|
255 |
-
of promoting the sharing and reuse of software generally.
|
256 |
-
|
257 |
-
NO WARRANTY
|
258 |
-
|
259 |
-
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
260 |
-
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
261 |
-
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
|
262 |
-
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
|
263 |
-
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
264 |
-
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
|
265 |
-
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
|
266 |
-
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
|
267 |
-
REPAIR OR CORRECTION.
|
268 |
-
|
269 |
-
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
270 |
-
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
|
271 |
-
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
272 |
-
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
|
273 |
-
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
|
274 |
-
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
|
275 |
-
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
|
276 |
-
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
277 |
-
POSSIBILITY OF SUCH DAMAGES.
|
278 |
-
|
279 |
-
END OF TERMS AND CONDITIONS
|
280 |
-
|
1 |
+
GNU GENERAL PUBLIC LICENSE
|
2 |
+
Version 2, June 1991
|
3 |
+
|
4 |
+
Copyright (C) 1989, 1991 Free Software Foundation, Inc.
|
5 |
+
675 Mass Ave, Cambridge, MA 02139, USA
|
6 |
+
Everyone is permitted to copy and distribute verbatim copies
|
7 |
+
of this license document, but changing it is not allowed.
|
8 |
+
|
9 |
+
Preamble
|
10 |
+
|
11 |
+
The licenses for most software are designed to take away your
|
12 |
+
freedom to share and change it. By contrast, the GNU General Public
|
13 |
+
License is intended to guarantee your freedom to share and change free
|
14 |
+
software--to make sure the software is free for all its users. This
|
15 |
+
General Public License applies to most of the Free Software
|
16 |
+
Foundation's software and to any other program whose authors commit to
|
17 |
+
using it. (Some other Free Software Foundation software is covered by
|
18 |
+
the GNU Library General Public License instead.) You can apply it to
|
19 |
+
your programs, too.
|
20 |
+
|
21 |
+
When we speak of free software, we are referring to freedom, not
|
22 |
+
price. Our General Public Licenses are designed to make sure that you
|
23 |
+
have the freedom to distribute copies of free software (and charge for
|
24 |
+
this service if you wish), that you receive source code or can get it
|
25 |
+
if you want it, that you can change the software or use pieces of it
|
26 |
+
in new free programs; and that you know you can do these things.
|
27 |
+
|
28 |
+
To protect your rights, we need to make restrictions that forbid
|
29 |
+
anyone to deny you these rights or to ask you to surrender the rights.
|
30 |
+
These restrictions translate to certain responsibilities for you if you
|
31 |
+
distribute copies of the software, or if you modify it.
|
32 |
+
|
33 |
+
For example, if you distribute copies of such a program, whether
|
34 |
+
gratis or for a fee, you must give the recipients all the rights that
|
35 |
+
you have. You must make sure that they, too, receive or can get the
|
36 |
+
source code. And you must show them these terms so they know their
|
37 |
+
rights.
|
38 |
+
|
39 |
+
We protect your rights with two steps: (1) copyright the software, and
|
40 |
+
(2) offer you this license which gives you legal permission to copy,
|
41 |
+
distribute and/or modify the software.
|
42 |
+
|
43 |
+
Also, for each author's protection and ours, we want to make certain
|
44 |
+
that everyone understands that there is no warranty for this free
|
45 |
+
software. If the software is modified by someone else and passed on, we
|
46 |
+
want its recipients to know that what they have is not the original, so
|
47 |
+
that any problems introduced by others will not reflect on the original
|
48 |
+
authors' reputations.
|
49 |
+
|
50 |
+
Finally, any free program is threatened constantly by software
|
51 |
+
patents. We wish to avoid the danger that redistributors of a free
|
52 |
+
program will individually obtain patent licenses, in effect making the
|
53 |
+
program proprietary. To prevent this, we have made it clear that any
|
54 |
+
patent must be licensed for everyone's free use or not licensed at all.
|
55 |
+
|
56 |
+
The precise terms and conditions for copying, distribution and
|
57 |
+
modification follow.
|
58 |
+
|
59 |
+
GNU GENERAL PUBLIC LICENSE
|
60 |
+
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
61 |
+
|
62 |
+
0. This License applies to any program or other work which contains
|
63 |
+
a notice placed by the copyright holder saying it may be distributed
|
64 |
+
under the terms of this General Public License. The "Program", below,
|
65 |
+
refers to any such program or work, and a "work based on the Program"
|
66 |
+
means either the Program or any derivative work under copyright law:
|
67 |
+
that is to say, a work containing the Program or a portion of it,
|
68 |
+
either verbatim or with modifications and/or translated into another
|
69 |
+
language. (Hereinafter, translation is included without limitation in
|
70 |
+
the term "modification".) Each licensee is addressed as "you".
|
71 |
+
|
72 |
+
Activities other than copying, distribution and modification are not
|
73 |
+
covered by this License; they are outside its scope. The act of
|
74 |
+
running the Program is not restricted, and the output from the Program
|
75 |
+
is covered only if its contents constitute a work based on the
|
76 |
+
Program (independent of having been made by running the Program).
|
77 |
+
Whether that is true depends on what the Program does.
|
78 |
+
|
79 |
+
1. You may copy and distribute verbatim copies of the Program's
|
80 |
+
source code as you receive it, in any medium, provided that you
|
81 |
+
conspicuously and appropriately publish on each copy an appropriate
|
82 |
+
copyright notice and disclaimer of warranty; keep intact all the
|
83 |
+
notices that refer to this License and to the absence of any warranty;
|
84 |
+
and give any other recipients of the Program a copy of this License
|
85 |
+
along with the Program.
|
86 |
+
|
87 |
+
You may charge a fee for the physical act of transferring a copy, and
|
88 |
+
you may at your option offer warranty protection in exchange for a fee.
|
89 |
+
|
90 |
+
2. You may modify your copy or copies of the Program or any portion
|
91 |
+
of it, thus forming a work based on the Program, and copy and
|
92 |
+
distribute such modifications or work under the terms of Section 1
|
93 |
+
above, provided that you also meet all of these conditions:
|
94 |
+
|
95 |
+
a) You must cause the modified files to carry prominent notices
|
96 |
+
stating that you changed the files and the date of any change.
|
97 |
+
|
98 |
+
b) You must cause any work that you distribute or publish, that in
|
99 |
+
whole or in part contains or is derived from the Program or any
|
100 |
+
part thereof, to be licensed as a whole at no charge to all third
|
101 |
+
parties under the terms of this License.
|
102 |
+
|
103 |
+
c) If the modified program normally reads commands interactively
|
104 |
+
when run, you must cause it, when started running for such
|
105 |
+
interactive use in the most ordinary way, to print or display an
|
106 |
+
announcement including an appropriate copyright notice and a
|
107 |
+
notice that there is no warranty (or else, saying that you provide
|
108 |
+
a warranty) and that users may redistribute the program under
|
109 |
+
these conditions, and telling the user how to view a copy of this
|
110 |
+
License. (Exception: if the Program itself is interactive but
|
111 |
+
does not normally print such an announcement, your work based on
|
112 |
+
the Program is not required to print an announcement.)
|
113 |
+
|
114 |
+
These requirements apply to the modified work as a whole. If
|
115 |
+
identifiable sections of that work are not derived from the Program,
|
116 |
+
and can be reasonably considered independent and separate works in
|
117 |
+
themselves, then this License, and its terms, do not apply to those
|
118 |
+
sections when you distribute them as separate works. But when you
|
119 |
+
distribute the same sections as part of a whole which is a work based
|
120 |
+
on the Program, the distribution of the whole must be on the terms of
|
121 |
+
this License, whose permissions for other licensees extend to the
|
122 |
+
entire whole, and thus to each and every part regardless of who wrote it.
|
123 |
+
Thus, it is not the intent of this section to claim rights or contest
|
124 |
+
your rights to work written entirely by you; rather, the intent is to
|
125 |
+
exercise the right to control the distribution of derivative or
|
126 |
+
collective works based on the Program.
|
127 |
+
|
128 |
+
In addition, mere aggregation of another work not based on the Program
|
129 |
+
with the Program (or with a work based on the Program) on a volume of
|
130 |
+
a storage or distribution medium does not bring the other work under
|
131 |
+
the scope of this License.
|
132 |
+
|
133 |
+
3. You may copy and distribute the Program (or a work based on it,
|
134 |
+
under Section 2) in object code or executable form under the terms of
|
135 |
+
Sections 1 and 2 above provided that you also do one of the following:
|
136 |
+
|
137 |
+
a) Accompany it with the complete corresponding machine-readable
|
138 |
+
source code, which must be distributed under the terms of Sections
|
139 |
+
1 and 2 above on a medium customarily used for software interchange; or,
|
140 |
+
|
141 |
+
b) Accompany it with a written offer, valid for at least three
|
142 |
+
years, to give any third party, for a charge no more than your
|
143 |
+
cost of physically performing source distribution, a complete
|
144 |
+
machine-readable copy of the corresponding source code, to be
|
145 |
+
distributed under the terms of Sections 1 and 2 above on a medium
|
146 |
+
customarily used for software interchange; or,
|
147 |
+
|
148 |
+
c) Accompany it with the information you received as to the offer
|
149 |
+
to distribute corresponding source code. (This alternative is
|
150 |
+
allowed only for noncommercial distribution and only if you
|
151 |
+
received the program in object code or executable form with such
|
152 |
+
an offer, in accord with Subsection b above.)
|
153 |
+
|
154 |
+
The source code for a work means the preferred form of the work for
|
155 |
+
making modifications to it. For an executable work, complete source
|
156 |
+
code means all the source code for all modules it contains, plus any
|
157 |
+
associated interface definition files, plus the scripts used to
|
158 |
+
control compilation and installation of the executable. However, as a
|
159 |
+
special exception, the source code distributed need not include
|
160 |
+
anything that is normally distributed (in either source or binary
|
161 |
+
form) with the major components (compiler, kernel, and so on) of the
|
162 |
+
operating system on which the executable runs, unless that component
|
163 |
+
itself accompanies the executable.
|
164 |
+
|
165 |
+
If distribution of executable or object code is made by offering
|
166 |
+
access to copy from a designated place, then offering equivalent
|
167 |
+
access to copy the source code from the same place counts as
|
168 |
+
distribution of the source code, even though third parties are not
|
169 |
+
compelled to copy the source along with the object code.
|
170 |
+
|
171 |
+
4. You may not copy, modify, sublicense, or distribute the Program
|
172 |
+
except as expressly provided under this License. Any attempt
|
173 |
+
otherwise to copy, modify, sublicense or distribute the Program is
|
174 |
+
void, and will automatically terminate your rights under this License.
|
175 |
+
However, parties who have received copies, or rights, from you under
|
176 |
+
this License will not have their licenses terminated so long as such
|
177 |
+
parties remain in full compliance.
|
178 |
+
|
179 |
+
5. You are not required to accept this License, since you have not
|
180 |
+
signed it. However, nothing else grants you permission to modify or
|
181 |
+
distribute the Program or its derivative works. These actions are
|
182 |
+
prohibited by law if you do not accept this License. Therefore, by
|
183 |
+
modifying or distributing the Program (or any work based on the
|
184 |
+
Program), you indicate your acceptance of this License to do so, and
|
185 |
+
all its terms and conditions for copying, distributing or modifying
|
186 |
+
the Program or works based on it.
|
187 |
+
|
188 |
+
6. Each time you redistribute the Program (or any work based on the
|
189 |
+
Program), the recipient automatically receives a license from the
|
190 |
+
original licensor to copy, distribute or modify the Program subject to
|
191 |
+
these terms and conditions. You may not impose any further
|
192 |
+
restrictions on the recipients' exercise of the rights granted herein.
|
193 |
+
You are not responsible for enforcing compliance by third parties to
|
194 |
+
this License.
|
195 |
+
|
196 |
+
7. If, as a consequence of a court judgment or allegation of patent
|
197 |
+
infringement or for any other reason (not limited to patent issues),
|
198 |
+
conditions are imposed on you (whether by court order, agreement or
|
199 |
+
otherwise) that contradict the conditions of this License, they do not
|
200 |
+
excuse you from the conditions of this License. If you cannot
|
201 |
+
distribute so as to satisfy simultaneously your obligations under this
|
202 |
+
License and any other pertinent obligations, then as a consequence you
|
203 |
+
may not distribute the Program at all. For example, if a patent
|
204 |
+
license would not permit royalty-free redistribution of the Program by
|
205 |
+
all those who receive copies directly or indirectly through you, then
|
206 |
+
the only way you could satisfy both it and this License would be to
|
207 |
+
refrain entirely from distribution of the Program.
|
208 |
+
|
209 |
+
If any portion of this section is held invalid or unenforceable under
|
210 |
+
any particular circumstance, the balance of the section is intended to
|
211 |
+
apply and the section as a whole is intended to apply in other
|
212 |
+
circumstances.
|
213 |
+
|
214 |
+
It is not the purpose of this section to induce you to infringe any
|
215 |
+
patents or other property right claims or to contest validity of any
|
216 |
+
such claims; this section has the sole purpose of protecting the
|
217 |
+
integrity of the free software distribution system, which is
|
218 |
+
implemented by public license practices. Many people have made
|
219 |
+
generous contributions to the wide range of software distributed
|
220 |
+
through that system in reliance on consistent application of that
|
221 |
+
system; it is up to the author/donor to decide if he or she is willing
|
222 |
+
to distribute software through any other system and a licensee cannot
|
223 |
+
impose that choice.
|
224 |
+
|
225 |
+
This section is intended to make thoroughly clear what is believed to
|
226 |
+
be a consequence of the rest of this License.
|
227 |
+
|
228 |
+
8. If the distribution and/or use of the Program is restricted in
|
229 |
+
certain countries either by patents or by copyrighted interfaces, the
|
230 |
+
original copyright holder who places the Program under this License
|
231 |
+
may add an explicit geographical distribution limitation excluding
|
232 |
+
those countries, so that distribution is permitted only in or among
|
233 |
+
countries not thus excluded. In such case, this License incorporates
|
234 |
+
the limitation as if written in the body of this License.
|
235 |
+
|
236 |
+
9. The Free Software Foundation may publish revised and/or new versions
|
237 |
+
of the General Public License from time to time. Such new versions will
|
238 |
+
be similar in spirit to the present version, but may differ in detail to
|
239 |
+
address new problems or concerns.
|
240 |
+
|
241 |
+
Each version is given a distinguishing version number. If the Program
|
242 |
+
specifies a version number of this License which applies to it and "any
|
243 |
+
later version", you have the option of following the terms and conditions
|
244 |
+
either of that version or of any later version published by the Free
|
245 |
+
Software Foundation. If the Program does not specify a version number of
|
246 |
+
this License, you may choose any version ever published by the Free Software
|
247 |
+
Foundation.
|
248 |
+
|
249 |
+
10. If you wish to incorporate parts of the Program into other free
|
250 |
+
programs whose distribution conditions are different, write to the author
|
251 |
+
to ask for permission. For software which is copyrighted by the Free
|
252 |
+
Software Foundation, write to the Free Software Foundation; we sometimes
|
253 |
+
make exceptions for this. Our decision will be guided by the two goals
|
254 |
+
of preserving the free status of all derivatives of our free software and
|
255 |
+
of promoting the sharing and reuse of software generally.
|
256 |
+
|
257 |
+
NO WARRANTY
|
258 |
+
|
259 |
+
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
260 |
+
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
261 |
+
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
|
262 |
+
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
|
263 |
+
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
264 |
+
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
|
265 |
+
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
|
266 |
+
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
|
267 |
+
REPAIR OR CORRECTION.
|
268 |
+
|
269 |
+
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
270 |
+
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
|
271 |
+
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
272 |
+
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
|
273 |
+
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
|
274 |
+
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
|
275 |
+
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
|
276 |
+
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
277 |
+
POSSIBILITY OF SUCH DAMAGES.
|
278 |
+
|
279 |
+
END OF TERMS AND CONDITIONS
|
280 |
+
|
readme.txt
CHANGED
@@ -1,117 +1,121 @@
|
|
1 |
-
=== Plugin Name ===
|
2 |
-
Contributors: apeatling, johnjamesjacoby, MrMaz, DJPaul, boonebgorges
|
3 |
-
Tags: buddypress, social networking, activity, profiles, messaging, friends, groups, forums, microblogging, twitter, facebook, social, community, networks, networking, cms
|
4 |
-
Requires at least: 3.3
|
5 |
-
Tested up to: 3.3
|
6 |
-
Stable tag: 1.5.
|
7 |
-
|
8 |
-
Social networking in a box. Build a social network for your company, school, sports team or niche community.
|
9 |
-
|
10 |
-
== Description ==
|
11 |
-
|
12 |
-
BuddyPress lets users register on your site and start creating profiles, posting messages, making connections, creating and interacting in groups and much more. A social network in a box, BuddyPress lets you build a social network for your company, school, sports team or niche community.
|
13 |
-
|
14 |
-
<h4>Try the Demo</h4>
|
15 |
-
|
16 |
-
If you're interested in seeing what a default installation of BuddyPress has to offer, try out the BuddyPress Test Drive! This site is a community of BuddyPress users looking to try out and discuss the latest features of BuddyPress.
|
17 |
-
|
18 |
-
<a href="http://testbp.org/">BuddyPress Test Drive</a>
|
19 |
-
|
20 |
-
<h4>Who's Using BuddyPress?</h4>
|
21 |
-
|
22 |
-
More and more BuddyPress powered sites are popping up. You can take a look at some of the best sites on the <a href="http://buddypress.org/showcase/">BuddyPress Showcase</a>.
|
23 |
-
|
24 |
-
<h4>Plugins: Adding So Much More</h4>
|
25 |
-
|
26 |
-
BuddyPress boasts an ever growing array of new features developed by an awesome plugin development community. There are more than 330 BuddyPress plugins available, and the list is growing every day. Check out our list of <a href="http://buddypress.org/extend/recommended-plugins/">popular and recommended plugins</a>; for a full list of plugins, please visit the <a href="http://buddypress.org/extend/plugins/">BuddyPress.org plugins page</a>. You can install any of these plugins automatically, using the plugin installer on your WordPress Dashboard.
|
27 |
-
|
28 |
-
<h4>More Information</h4>
|
29 |
-
|
30 |
-
Visit the <a href="http://buddypress.org/">BuddyPress website</a> for more information about BuddyPress.
|
31 |
-
|
32 |
-
== Installation ==
|
33 |
-
|
34 |
-
You can download and install BuddyPress using the built in WordPress plugin installer. If you download BuddyPress manually, make sure it is uploaded to "/wp-content/plugins/buddypress/".
|
35 |
-
|
36 |
-
Activate BuddyPress in the "Plugins" admin panel using the "Activate" link. You'll then see a message asking you to complete the BuddyPress Installation Wizard, which will guide you through configuring your site for BuddyPress.
|
37 |
-
|
38 |
-
--- Discussion Forums ---
|
39 |
-
|
40 |
-
BuddyPress includes full support for discussion forums. Each group created on your site can have its own forum. If you'd like to enable this feature, after completing the Installation Wizard, visit the "Forums Setup" item under the "BuddyPress" menu in your WordPress admin area, and follow the on-screen instructions.
|
41 |
-
|
42 |
-
== Frequently Asked Questions ==
|
43 |
-
|
44 |
-
= Can I use my existing WordPress theme? =
|
45 |
-
|
46 |
-
Of course! Once you've installed and activated BuddyPress, the Installation Wizard will guide you through the available theme options. You'll be given the option of installing the <a href="http://wordpress.org/extend/plugins/bp-template-pack/">BuddyPress Template Pack</a>, which will help you add BuddyPress compatibility to your existing theme.
|
47 |
-
|
48 |
-
Be sure to also try out the default theme bundled with BuddyPress. It provides all the awesome features of a standard WordPress blog, but also integrates BuddyPress's features in a seamless and beautiful way. The BuddyPress Default theme is a snap to customize, with full support for custom headers and backgrounds and multiple widget areas. It also makes a great starting point for your own <a href="http://codex.buddypress.org/how-to-guides/building-a-buddypress-child-theme/">child theme</a>.
|
49 |
-
|
50 |
-
= Will this work on WordPress multisite? =
|
51 |
-
|
52 |
-
Yes! If your WordPress site has multisite enabled, BuddyPress will support the global tracking of blogs, posts and comments.
|
53 |
-
|
54 |
-
= Where can I get support? =
|
55 |
-
|
56 |
-
The support forums can be found at <a href="http://buddypress.org/forums/">http://buddypress.org/forums/</a>.
|
57 |
-
|
58 |
-
= Where can I find documentation? =
|
59 |
-
|
60 |
-
The documentation codex can be found at <a href="http://codex.buddypress.org/">http://codex.buddypress.org/</a>.
|
61 |
-
|
62 |
-
= Where can I report a bug? =
|
63 |
-
|
64 |
-
Report bugs and participate in development at <a href="http://buddypress.trac.wordpress.org/">http://buddypress.trac.wordpress.org</a>.
|
65 |
-
|
66 |
-
= Where can I get the bleeding edge version of BuddyPress? =
|
67 |
-
|
68 |
-
Check out the development trunk of BuddyPress via Subversion, from <a href="http://buddypress.svn.wordpress.org/trunk/">http://buddypress.svn.wordpress.org/trunk/</a>
|
69 |
-
|
70 |
-
== Screenshots ==
|
71 |
-
|
72 |
-
1. **Activity Streams** - Global, personal and group activity streams with threaded commenting, direct posting, favoriting and @mentions. All with full RSS feeds and email notification support.
|
73 |
-
2. **Extended Profiles** - Fully editable rofile fields allow you to define the fields users can fill in to describe themselves. Tailor profile fields to suit your audience.
|
74 |
-
3. **Extensible Groups** - Powerful public, private or hidden groups allow your users to break the discussion down into specific topics. Extend groups with your own custom features using the group extension API.
|
75 |
-
4. **Friend Connections** - Let your users make connections so they can track the activity of others, or filter on only those users they care about the most.
|
76 |
-
5. **Private Messaging** - Private messaging will allow your users to talk to each other directly and in private. Not just limited to one-on-one discussions, your users can send messages to multiple recipients.
|
77 |
-
6. **Discussion Forums** - Full powered discussion forums built directly into groups allow for more conventional in-depth conversations.
|
78 |
-
7. **WordPress Blogging** - Allow your users to start their own WordPress sites (using WordPress's Multisite feature), and track posts and comments from across your blog network in the activity stream.
|
79 |
-
8. **User Settings** - Give your users complete control over profile and notification settings. Settings are fully integrated into your theme, and can be disabled by the administrator.
|
80 |
-
|
81 |
-
== Languages ==
|
82 |
-
|
83 |
-
BuddyPress is available in more than 20 languages. For more information, check out the <a href="http://codex.buddypress.org/getting-started/translations/">translation page</a> on the BuddyPress Codex.
|
84 |
-
|
85 |
-
== Upgrade Notice ==
|
86 |
-
|
87 |
-
= 1.5.
|
88 |
-
*
|
89 |
-
*
|
90 |
-
|
91 |
-
= 1.5.3 =
|
92 |
-
* Fixes
|
93 |
-
* See http://codex.buddypress.org/releases/version-1-5-3/
|
94 |
-
|
95 |
-
= 1.5.
|
96 |
-
*
|
97 |
-
*
|
98 |
-
|
99 |
-
= 1.5.
|
100 |
-
*
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
|
|
|
|
|
|
|
1 |
+
=== Plugin Name ===
|
2 |
+
Contributors: apeatling, johnjamesjacoby, MrMaz, DJPaul, boonebgorges
|
3 |
+
Tags: buddypress, social networking, activity, profiles, messaging, friends, groups, forums, microblogging, twitter, facebook, social, community, networks, networking, cms
|
4 |
+
Requires at least: 3.3
|
5 |
+
Tested up to: 3.3
|
6 |
+
Stable tag: 1.5.4
|
7 |
+
|
8 |
+
Social networking in a box. Build a social network for your company, school, sports team or niche community.
|
9 |
+
|
10 |
+
== Description ==
|
11 |
+
|
12 |
+
BuddyPress lets users register on your site and start creating profiles, posting messages, making connections, creating and interacting in groups and much more. A social network in a box, BuddyPress lets you build a social network for your company, school, sports team or niche community.
|
13 |
+
|
14 |
+
<h4>Try the Demo</h4>
|
15 |
+
|
16 |
+
If you're interested in seeing what a default installation of BuddyPress has to offer, try out the BuddyPress Test Drive! This site is a community of BuddyPress users looking to try out and discuss the latest features of BuddyPress.
|
17 |
+
|
18 |
+
<a href="http://testbp.org/">BuddyPress Test Drive</a>
|
19 |
+
|
20 |
+
<h4>Who's Using BuddyPress?</h4>
|
21 |
+
|
22 |
+
More and more BuddyPress powered sites are popping up. You can take a look at some of the best sites on the <a href="http://buddypress.org/showcase/">BuddyPress Showcase</a>.
|
23 |
+
|
24 |
+
<h4>Plugins: Adding So Much More</h4>
|
25 |
+
|
26 |
+
BuddyPress boasts an ever growing array of new features developed by an awesome plugin development community. There are more than 330 BuddyPress plugins available, and the list is growing every day. Check out our list of <a href="http://buddypress.org/extend/recommended-plugins/">popular and recommended plugins</a>; for a full list of plugins, please visit the <a href="http://buddypress.org/extend/plugins/">BuddyPress.org plugins page</a>. You can install any of these plugins automatically, using the plugin installer on your WordPress Dashboard.
|
27 |
+
|
28 |
+
<h4>More Information</h4>
|
29 |
+
|
30 |
+
Visit the <a href="http://buddypress.org/">BuddyPress website</a> for more information about BuddyPress.
|
31 |
+
|
32 |
+
== Installation ==
|
33 |
+
|
34 |
+
You can download and install BuddyPress using the built in WordPress plugin installer. If you download BuddyPress manually, make sure it is uploaded to "/wp-content/plugins/buddypress/".
|
35 |
+
|
36 |
+
Activate BuddyPress in the "Plugins" admin panel using the "Activate" link. You'll then see a message asking you to complete the BuddyPress Installation Wizard, which will guide you through configuring your site for BuddyPress.
|
37 |
+
|
38 |
+
--- Discussion Forums ---
|
39 |
+
|
40 |
+
BuddyPress includes full support for discussion forums. Each group created on your site can have its own forum. If you'd like to enable this feature, after completing the Installation Wizard, visit the "Forums Setup" item under the "BuddyPress" menu in your WordPress admin area, and follow the on-screen instructions.
|
41 |
+
|
42 |
+
== Frequently Asked Questions ==
|
43 |
+
|
44 |
+
= Can I use my existing WordPress theme? =
|
45 |
+
|
46 |
+
Of course! Once you've installed and activated BuddyPress, the Installation Wizard will guide you through the available theme options. You'll be given the option of installing the <a href="http://wordpress.org/extend/plugins/bp-template-pack/">BuddyPress Template Pack</a>, which will help you add BuddyPress compatibility to your existing theme.
|
47 |
+
|
48 |
+
Be sure to also try out the default theme bundled with BuddyPress. It provides all the awesome features of a standard WordPress blog, but also integrates BuddyPress's features in a seamless and beautiful way. The BuddyPress Default theme is a snap to customize, with full support for custom headers and backgrounds and multiple widget areas. It also makes a great starting point for your own <a href="http://codex.buddypress.org/how-to-guides/building-a-buddypress-child-theme/">child theme</a>.
|
49 |
+
|
50 |
+
= Will this work on WordPress multisite? =
|
51 |
+
|
52 |
+
Yes! If your WordPress site has multisite enabled, BuddyPress will support the global tracking of blogs, posts and comments.
|
53 |
+
|
54 |
+
= Where can I get support? =
|
55 |
+
|
56 |
+
The support forums can be found at <a href="http://buddypress.org/forums/">http://buddypress.org/forums/</a>.
|
57 |
+
|
58 |
+
= Where can I find documentation? =
|
59 |
+
|
60 |
+
The documentation codex can be found at <a href="http://codex.buddypress.org/">http://codex.buddypress.org/</a>.
|
61 |
+
|
62 |
+
= Where can I report a bug? =
|
63 |
+
|
64 |
+
Report bugs and participate in development at <a href="http://buddypress.trac.wordpress.org/">http://buddypress.trac.wordpress.org</a>.
|
65 |
+
|
66 |
+
= Where can I get the bleeding edge version of BuddyPress? =
|
67 |
+
|
68 |
+
Check out the development trunk of BuddyPress via Subversion, from <a href="http://buddypress.svn.wordpress.org/trunk/">http://buddypress.svn.wordpress.org/trunk/</a>
|
69 |
+
|
70 |
+
== Screenshots ==
|
71 |
+
|
72 |
+
1. **Activity Streams** - Global, personal and group activity streams with threaded commenting, direct posting, favoriting and @mentions. All with full RSS feeds and email notification support.
|
73 |
+
2. **Extended Profiles** - Fully editable rofile fields allow you to define the fields users can fill in to describe themselves. Tailor profile fields to suit your audience.
|
74 |
+
3. **Extensible Groups** - Powerful public, private or hidden groups allow your users to break the discussion down into specific topics. Extend groups with your own custom features using the group extension API.
|
75 |
+
4. **Friend Connections** - Let your users make connections so they can track the activity of others, or filter on only those users they care about the most.
|
76 |
+
5. **Private Messaging** - Private messaging will allow your users to talk to each other directly and in private. Not just limited to one-on-one discussions, your users can send messages to multiple recipients.
|
77 |
+
6. **Discussion Forums** - Full powered discussion forums built directly into groups allow for more conventional in-depth conversations.
|
78 |
+
7. **WordPress Blogging** - Allow your users to start their own WordPress sites (using WordPress's Multisite feature), and track posts and comments from across your blog network in the activity stream.
|
79 |
+
8. **User Settings** - Give your users complete control over profile and notification settings. Settings are fully integrated into your theme, and can be disabled by the administrator.
|
80 |
+
|
81 |
+
== Languages ==
|
82 |
+
|
83 |
+
BuddyPress is available in more than 20 languages. For more information, check out the <a href="http://codex.buddypress.org/getting-started/translations/">translation page</a> on the BuddyPress Codex.
|
84 |
+
|
85 |
+
== Upgrade Notice ==
|
86 |
+
|
87 |
+
= 1.5.4 =
|
88 |
+
* Fix bug allowing group members that are friends to be invited twice
|
89 |
+
* Fix unpublished page preview when page is root component
|
90 |
+
|
91 |
+
= 1.5.3.1 =
|
92 |
+
* Fixes bug related to password changes
|
93 |
+
* See http://codex.buddypress.org/releases/version-1-5-3-1/
|
94 |
+
|
95 |
+
= 1.5.3 =
|
96 |
+
* Fixes 6 minor bugs/notices
|
97 |
+
* See http://codex.buddypress.org/releases/version-1-5-3/
|
98 |
+
|
99 |
+
= 1.5.2 =
|
100 |
+
* Compatibility with WordPress 3.3
|
101 |
+
* Fixes 10 minor bugs/notices
|
102 |
+
|
103 |
+
= 1.5.1 =
|
104 |
+
* Fixes over 25 issues
|
105 |
+
|
106 |
+
= 1.5 =
|
107 |
+
See: http://codex.buddypress.org/releases/version-1-5/
|
108 |
+
|
109 |
+
= 1.2.9 =
|
110 |
+
* Compatibility with WordPress 3.2
|
111 |
+
|
112 |
+
= 1.2.8 =
|
113 |
+
* Compatibility with WordPress 3.1
|
114 |
+
|
115 |
+
= 1.2.7 =
|
116 |
+
* Fixes over 10 bugs.
|
117 |
+
|
118 |
+
== Changelog ==
|
119 |
+
|
120 |
+
See http://codex.buddypress.org/releases/version-1-5/ for 1.5.
|
121 |
+
See http://buddypress.org/about/release-history/ for all other versions.
|