diff --git a/wp-content/plugins/bp-group-management/.gitignore b/wp-content/plugins/bp-group-management/.gitignore new file mode 100644 index 0000000..e43b0f9 --- /dev/null +++ b/wp-content/plugins/bp-group-management/.gitignore @@ -0,0 +1 @@ +.DS_Store diff --git a/wp-content/plugins/bp-group-management/bp-group-management-aux.php b/wp-content/plugins/bp-group-management/bp-group-management-aux.php new file mode 100644 index 0000000..4eda988 --- /dev/null +++ b/wp-content/plugins/bp-group-management/bp-group-management-aux.php @@ -0,0 +1,147 @@ + +

+ + + + +

+is_item_admin and with some tweaks to the returned values */ +function bp_group_management_ban_member( $user_id, $group_id ) { + global $bp; + + $member = new BP_Groups_Member( $user_id, $group_id ); + + do_action( 'groups_ban_member', $group_id, $user_id ); + + if ( !$member->ban() ) + return false; + + update_usermeta( $user_id, 'total_group_count', (int)$total_count - 1 ); + + return true; +} + +function bp_group_management_unban_member( $user_id, $group_id ) { + global $bp; + + $member = new BP_Groups_Member( $user_id, $group_id ); + + do_action( 'groups_unban_member', $group_id, $user_id ); + + return $member->unban(); +} + +function bp_group_management_promote_member( $user_id, $group_id, $status ) { + global $bp; + + $member = new BP_Groups_Member( $user_id, $group_id ); + + do_action( 'groups_promote_member', $group_id, $user_id, $status ); + + return $member->promote( $status ); +} + +function bp_group_management_delete_group( $group_id ) { + global $bp; + + $group = new BP_Groups_Group( $group_id ); + + if ( !$group->delete() ) + return false; + + /* Delete all group activity from activity streams */ + if ( function_exists( 'bp_activity_delete_by_item_id' ) ) { + bp_activity_delete_by_item_id( array( 'item_id' => $group_id, 'component' => $bp->groups->id ) ); + } + + // Remove all outstanding invites for this group + groups_delete_all_group_invites( $group_id ); + + // Remove all notifications for any user belonging to this group + bp_core_delete_all_notifications_by_type( $group_id, $bp->groups->slug ); + + do_action( 'groups_delete_group', $group_id ); + + return true; +} + +function bp_group_management_join_group( $group_id, $user_id = false ) { + global $bp; + + if ( !$user_id ) + $user_id = $bp->loggedin_user->id; + + /* Check if the user has an outstanding invite, is so delete it. */ + if ( groups_check_user_has_invite( $user_id, $group_id ) ) + groups_delete_invite( $user_id, $group_id ); + + /* Check if the user has an outstanding request, is so delete it. */ + if ( groups_check_for_membership_request( $user_id, $group_id ) ) + groups_delete_membership_request( $user_id, $group_id ); + + /* User is already a member, just return true */ + if ( groups_is_user_member( $user_id, $group_id ) ) + return true; + + if ( !$bp->groups->current_group ) + $bp->groups->current_group = new BP_Groups_Group( $group_id ); + + $new_member = new BP_Groups_Member; + $new_member->group_id = $group_id; + $new_member->user_id = $user_id; + $new_member->inviter_id = 0; + $new_member->is_admin = 0; + $new_member->user_title = ''; + $new_member->date_modified = gmdate( "Y-m-d H:i:s" ); + $new_member->is_confirmed = 1; + + if ( !$new_member->save() ) + return false; + + /* Record this in activity streams */ + groups_record_activity( array( + 'user_id' => $user_id, + 'action' => apply_filters( 'groups_activity_joined_group', sprintf( __( '%s joined the group %s', 'bp-group-management'), bp_core_get_userlink( $user_id ), '' . esc_html( $bp->groups->current_group->name ) . '' ) ), + 'type' => 'joined_group', + 'item_id' => $group_id + ) ); + + /* Modify group meta */ + groups_update_groupmeta( $group_id, 'total_member_count', (int) groups_get_groupmeta( $group_id, 'total_member_count') + 1 ); + groups_update_groupmeta( $group_id, 'last_activity', gmdate( "Y-m-d H:i:s" ) ); + + do_action( 'groups_join_group', $group_id, $user_id ); + + return true; +} + +function bp_group_management_pagination_links() { + global $groups_template; + $add_args = array(); + if ( isset( $_GET['order'] ) ) + $add_args['order'] = $_GET['order']; + + $search_terms = isset( $_REQUEST['s'] ) ? $_REQUEST['s'] : ''; + + $links = paginate_links( array( + 'base' => add_query_arg( array( 'grpage' => '%#%', 'num' => $groups_template->pag_num, 's' => $search_terms, 'sortby' => $groups_template->sort_by ) ), + 'format' => '', + 'total' => ceil($groups_template->total_group_count / $groups_template->pag_num), + 'current' => $groups_template->pag_page, + 'prev_text' => '←', + 'next_text' => '→', + 'mid_size' => 1, + 'add_args' => $add_args + )); + echo $links; +} + + +?> \ No newline at end of file diff --git a/wp-content/plugins/bp-group-management/bp-group-management-bp-functions.php b/wp-content/plugins/bp-group-management/bp-group-management-bp-functions.php new file mode 100644 index 0000000..0bf2f5a --- /dev/null +++ b/wp-content/plugins/bp-group-management/bp-group-management-bp-functions.php @@ -0,0 +1,612 @@ + BuddyPress > Group Management) */ +function bp_group_management_admin_main() { + + + /* Group delete requests are sent back to the main page. This handles group deletions */ + if( isset( $_GET['group_action'] ) && $_GET['group_action'] == 'delete' ) { + if ( !check_admin_referer( 'bp-group-management-action_group_delete' ) ) + return false; + + if ( !bp_group_management_delete_group( $_GET['id'] ) ) { ?> +

+ +

+ groups->current_group->id ); + } + } + + ?> + +
+ + +

+
+ 'alphabetical', 'per_page' => $per_page ); + + $order = isset( $_GET['order'] ) ? $_GET['order'] : false; + + if ( $order == 'name' ) + $args['type'] = 'alphabetical'; + else if ( $order == 'group_id' ) + $args['type'] = 'newest'; + else if ( $order == 'popular' ) + $args['type'] = 'popular'; + + $args['page'] = isset( $_GET['grpage'] ) ? $_GET['grpage'] : 1; + + if( bp_has_groups( $args ) ) : + global $groups_template; + ?> + +
+
+ + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + group; + ?> + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + +
+ ' . __('Members', 'bp-group-management' ) . ''; + + + $controlActions[] = '' . __("Delete") . ''; + + $controlActions[] = '' . __( 'Admin', 'bp-group-management' ) . ''; + + $controlActions[] = "" . __('Visit', 'bp-group-management') . ''; + + $controlActions = apply_filters( 'bp_gm_group_action_links', $controlActions ); + + ?> + + +
+ +
+ + + +
+ + + date_created; ?> + + +
+ +
+
+ + + + + + + + + +
+
+ + + You don't have any groups to manage. + + + + +
+ + +
+ +

'; + +

+ +

+ +

+ +

+ +

+ +

+ +

+ +

+ +

+ +

+ +

+ +

+ +

+ + + +

:

+ + + +
+

+ + + +
+ + +
+ + +

+ + + + + + + + + + + +
+ + + + + +
+ + +
+

+
+ + +
+

:

+ + + +
+

+ + + +
+ + + + +

+

.

+ +

+

+
+ +
+

+ +
+ + + + + + +
+
+"; +} + +function bp_group_management_settings_groups_per_page() { + $options = get_option( 'bp_gm_settings' ); + echo ""; +} + +function bp_group_management_settings_check($input) { + $newinput['members_per_page'] = trim($input['members_per_page']); + $newinput['groups_per_page'] = trim($input['groups_per_page']); + return $newinput; +} + + +function bp_group_management_admin_add() { + $plugin_page = add_submenu_page( 'bp-general-settings', __('Group Management','bp-group-management'), __('Group Management','bp-group-management'), 'manage_options', 'bp-group-management', 'bp_group_management_admin_screen' ); + add_action('admin_print_styles-' . $plugin_page, 'bp_group_management_css'); +} +add_action( is_multisite() && function_exists( 'is_network_admin' ) ? 'network_admin_menu' : 'admin_menu', 'bp_group_management_admin_add', 70 ); + + +function bp_group_management_css() { + wp_enqueue_style( 'bp-group-management-css' ); +} + + + + + +?> diff --git a/wp-content/plugins/bp-group-management/bp-group-management-css.css b/wp-content/plugins/bp-group-management/bp-group-management-css.css new file mode 100644 index 0000000..c2e0f89 --- /dev/null +++ b/wp-content/plugins/bp-group-management/bp-group-management-css.css @@ -0,0 +1,59 @@ +.bp-gm-wrap form input[type="submit"] { + margin-top: 30px; +} + + +.bp-gm-group-actions { + margin: 35px 0; +} + +.bp-gm-group-actions a { + text-decoration:none; + font-size:11px; + line-height:14px; + padding: 2px 8px; + cursor:pointer; + border-width:1px; + border-style: solid; + -moz-border-radius: 11px; + -khtml-border-radius: 11px; + -webkit-border-radius: 11px; + border-radius: 11px; + -moz-box-sizing: content-box; + -webkit-box-sizing: content-box; + -khtml-box-sizing: content-box; + box-sizing: content-box; +} + +.bp-gm-group-members { + width: 500px; + float: left; +} + +#bp-gm-settings-link { + float: right; + font-weight: bold; +} + +.bp-gm-add-members { + width: 350px; + float: left; +} + +.bp-gm-add-members .tablenav-pages { + float: none; +} + +.bp-gm-add-members .tablenav-pages li { + float: left; + margin-right: 3px; +} + +th.bp-gm-group-id-header, th.bp-gm-group-id { + width: 80px; +} + +td.bp-gm-avatar { + width: 80px; + padding: 5px 10px; +} \ No newline at end of file diff --git a/wp-content/plugins/bp-group-management/bp-group-management.php b/wp-content/plugins/bp-group-management/bp-group-management.php new file mode 100644 index 0000000..900c042 --- /dev/null +++ b/wp-content/plugins/bp-group-management/bp-group-management.php @@ -0,0 +1,32 @@ + diff --git a/wp-content/plugins/bp-group-management/bp-group-management.pot b/wp-content/plugins/bp-group-management/bp-group-management.pot new file mode 100644 index 0000000..4a338e8 --- /dev/null +++ b/wp-content/plugins/bp-group-management/bp-group-management.pot @@ -0,0 +1,182 @@ +# Translation of the WordPress plugin BP Group Management 0.2 by Boone Gorges. +# Copyright (C) 2010 Boone Gorges +# This file is distributed under the same license as the BP Group Management package. +# FIRST AUTHOR , 2010. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: BP Group Management 0.2\n" +"Report-Msgid-Bugs-To: http://wordpress.org/tag/bp-group-management\n" +"POT-Creation-Date: 2010-03-07 21:39+0000\n" +"PO-Revision-Date: 2010-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: bp-group-management-bp-functions.php:5 +#: bp-group-management-bp-functions.php:59 +#: bp-group-management-bp-functions.php:243 +#: bp-group-management-bp-functions.php:367 +msgid "Group Management" +msgstr "" + +#: bp-group-management-bp-functions.php:45 +#: bp-group-management-bp-functions.php:163 +#: bp-group-management-bp-functions.php:177 +#: bp-group-management-bp-functions.php:191 +#: bp-group-management-bp-functions.php:205 +#: bp-group-management-bp-functions.php:219 +#: bp-group-management-bp-functions.php:231 +msgid "Sorry, there was an error." +msgstr "" + +#: bp-group-management-bp-functions.php:47 +msgid "Group deleted." +msgstr "" + +#: bp-group-management-bp-functions.php:65 +msgid "Group ID" +msgstr "" + +#: bp-group-management-bp-functions.php:66 +msgid "Group Name" +msgstr "" + +#: bp-group-management-bp-functions.php:67 +msgid "Date Created" +msgstr "" + +#: bp-group-management-bp-functions.php:68 +msgid "Number of Members" +msgstr "" + +#: bp-group-management-bp-functions.php:104 +msgid "Edit" +msgstr "" + +#: bp-group-management-bp-functions.php:107 +msgid "Delete" +msgstr "" + +#: bp-group-management-bp-functions.php:109 +msgid "Visit" +msgstr "" + +#: bp-group-management-bp-functions.php:165 +msgid "Member kicked and banned" +msgstr "" + +#: bp-group-management-bp-functions.php:179 +msgid "Member unbanned" +msgstr "" + +#: bp-group-management-bp-functions.php:193 +msgid "Member demoted" +msgstr "" + +#: bp-group-management-bp-functions.php:207 +msgid "Member promoted to moderator" +msgstr "" + +#: bp-group-management-bp-functions.php:221 +msgid "Member promoted to admin" +msgstr "" + +#: bp-group-management-bp-functions.php:233 +msgid "User added to group" +msgstr "" + +#: bp-group-management-bp-functions.php:244 +#: bp-group-management-bp-functions.php:368 +msgid "Back to group index" +msgstr "" + +#: bp-group-management-bp-functions.php:248 +msgid "Manage current and banned group members" +msgstr "" + +#: bp-group-management-bp-functions.php:277 +msgid "(banned)" +msgstr "" + +#: bp-group-management-bp-functions.php:277 +msgid "Remove Ban" +msgstr "" + +#: bp-group-management-bp-functions.php:300 +msgid "Kick and ban this member" +msgstr "" + +#: bp-group-management-bp-functions.php:300 +msgid "Kick & Ban" +msgstr "" + +#: bp-group-management-bp-functions.php:302 +#: bp-group-management-bp-functions.php:304 +msgid "Demote to Member" +msgstr "" + +#: bp-group-management-bp-functions.php:304 +#: bp-group-management-bp-functions.php:306 +msgid "Promote to Admin" +msgstr "" + +#: bp-group-management-bp-functions.php:306 +msgid "Promote to Moderator" +msgstr "" + +#: bp-group-management-bp-functions.php:325 +msgid "Add members to group" +msgstr "" + +#: bp-group-management-bp-functions.php:342 +msgid "Add" +msgstr "" + +#: bp-group-management-bp-functions.php:371 +msgid "Deleting the group" +msgstr "" + +#: bp-group-management-bp-functions.php:372 +msgid "You are about to delete the group" +msgstr "" + +#: bp-group-management-bp-functions.php:372 +msgid "This action cannot be undone." +msgstr "" + +#: bp-group-management-bp-functions.php:374 +msgid "Delete Group" +msgstr "" + +#: bp-group-management-bp-functions.php:375 +msgid "Oops, I changed my mind" +msgstr "" + +#: bp-group-management-bp-functions.php:477 +#, php-format +msgid "%s joined the group %s" +msgstr "" + +#. Plugin Name of an extension +msgid "BP Group Management" +msgstr "" + +#. Plugin URI of an extension +msgid "http://teleogistic.net/code/buddypress/bp-group-management" +msgstr "" + +#. Description of an extension +msgid "Allows site administrators to manage BuddyPress group membership" +msgstr "" + +#. Author of an extension +msgid "Boone Gorges" +msgstr "" + +#. Author URI of an extension +msgid "http://teleogistic.net" +msgstr "" diff --git a/wp-content/plugins/bp-group-management/languages/bp-group-management-de_DE.mo b/wp-content/plugins/bp-group-management/languages/bp-group-management-de_DE.mo new file mode 100644 index 0000000..eb15792 Binary files /dev/null and b/wp-content/plugins/bp-group-management/languages/bp-group-management-de_DE.mo differ diff --git a/wp-content/plugins/bp-group-management/languages/bp-group-management-de_DE.po b/wp-content/plugins/bp-group-management/languages/bp-group-management-de_DE.po new file mode 100644 index 0000000..367b8b4 --- /dev/null +++ b/wp-content/plugins/bp-group-management/languages/bp-group-management-de_DE.po @@ -0,0 +1,179 @@ +msgid "" +msgstr "" +"Project-Id-Version: BuddyPress Group Management\n" +"Report-Msgid-Bugs-To: http://wordpress.org/tag/bp-group-management\n" +"POT-Creation-Date: 2010-03-07 21:39+0000\n" +"PO-Revision-Date: \n" +"Last-Translator: Thomas Opp \n" +"Language-Team: Yaway Media \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Language: German\n" +"X-Poedit-Country: GERMANY\n" + +#: bp-group-management-bp-functions.php:5 +#: bp-group-management-bp-functions.php:59 +#: bp-group-management-bp-functions.php:243 +#: bp-group-management-bp-functions.php:367 +msgid "Group Management" +msgstr "Gruppenverwaltung" + +#: bp-group-management-bp-functions.php:45 +#: bp-group-management-bp-functions.php:163 +#: bp-group-management-bp-functions.php:177 +#: bp-group-management-bp-functions.php:191 +#: bp-group-management-bp-functions.php:205 +#: bp-group-management-bp-functions.php:219 +#: bp-group-management-bp-functions.php:231 +msgid "Sorry, there was an error." +msgstr "Entschuldigung, es ist ein Fehler aufgetreten." + +#: bp-group-management-bp-functions.php:47 +msgid "Group deleted." +msgstr "Gruppe gelöscht" + +#: bp-group-management-bp-functions.php:65 +msgid "Group ID" +msgstr "Gruppen-ID" + +#: bp-group-management-bp-functions.php:66 +msgid "Group Name" +msgstr "Gruppenname" + +#: bp-group-management-bp-functions.php:67 +msgid "Date Created" +msgstr "Erstellungsdatum" + +#: bp-group-management-bp-functions.php:68 +msgid "Number of Members" +msgstr "Anzahl der Mitglieder" + +#: bp-group-management-bp-functions.php:104 +msgid "Edit" +msgstr "Bearbeiten" + +#: bp-group-management-bp-functions.php:107 +msgid "Delete" +msgstr "Löschen" + +#: bp-group-management-bp-functions.php:109 +msgid "Visit" +msgstr "Besuchen" + +#: bp-group-management-bp-functions.php:165 +msgid "Member kicked and banned" +msgstr "Mitglied gesperrt" + +#: bp-group-management-bp-functions.php:179 +msgid "Member unbanned" +msgstr "Mitglied entsperrt" + +#: bp-group-management-bp-functions.php:193 +msgid "Member demoted" +msgstr "Mitglied zurückgestuft" + +#: bp-group-management-bp-functions.php:207 +msgid "Member promoted to moderator" +msgstr "Mitglied wurde zum Moderator befördert" + +#: bp-group-management-bp-functions.php:221 +msgid "Member promoted to admin" +msgstr "Mitglied wurde zum Administrator befördert" + +#: bp-group-management-bp-functions.php:233 +msgid "User added to group" +msgstr "Mitglied der Gruppe hinzugefügt" + +#: bp-group-management-bp-functions.php:244 +#: bp-group-management-bp-functions.php:368 +msgid "Back to group index" +msgstr "Zurück zum Gruppenverzeichnis" + +#: bp-group-management-bp-functions.php:248 +msgid "Manage current and banned group members" +msgstr "Verwalte alle Gruppenmitglieder" + +#: bp-group-management-bp-functions.php:277 +msgid "(banned)" +msgstr "(gesperrt)" + +#: bp-group-management-bp-functions.php:277 +msgid "Remove Ban" +msgstr "Sperre aufheben" + +#: bp-group-management-bp-functions.php:300 +msgid "Kick and ban this member" +msgstr "Diese Mitglied sperren" + +#: bp-group-management-bp-functions.php:300 +msgid "Kick & Ban" +msgstr "Sperren" + +#: bp-group-management-bp-functions.php:302 +#: bp-group-management-bp-functions.php:304 +msgid "Demote to Member" +msgstr "Auf Mitglied zurückstufen" + +#: bp-group-management-bp-functions.php:304 +#: bp-group-management-bp-functions.php:306 +msgid "Promote to Admin" +msgstr "Zu Administrator befördern" + +#: bp-group-management-bp-functions.php:306 +msgid "Promote to Moderator" +msgstr "Zu Moderator befördern" + +#: bp-group-management-bp-functions.php:325 +msgid "Add members to group" +msgstr "Mitglieder zur Gruppe hinzufügen" + +#: bp-group-management-bp-functions.php:342 +msgid "Add" +msgstr "Hinzufügen" + +#: bp-group-management-bp-functions.php:371 +msgid "Deleting the group" +msgstr "Gruppe wird gelöscht" + +#: bp-group-management-bp-functions.php:372 +msgid "You are about to delete the group" +msgstr "Du bist dabei, die Gruppe zu löschen." + +#: bp-group-management-bp-functions.php:372 +msgid "This action cannot be undone." +msgstr "Diese Aktion kann nicht rückgängig gemacht werden." + +#: bp-group-management-bp-functions.php:374 +msgid "Delete Group" +msgstr "Gruppe löschen" + +#: bp-group-management-bp-functions.php:375 +msgid "Oops, I changed my mind" +msgstr "Ich hab´s mir doch anders überlegt." + +#: bp-group-management-bp-functions.php:477 +#, php-format +msgid "%s joined the group %s" +msgstr "%s ist jetzt Mitglied der Gruppe %s" + +#. Plugin Name of an extension +msgid "BP Group Management" +msgstr "BP Group Management" + +#. Plugin URI of an extension +msgid "http://teleogistic.net/code/buddypress/bp-group-management" +msgstr "http://teleogistic.net/code/buddypress/bp-group-management" + +#. Description of an extension +msgid "Allows site administrators to manage BuddyPress group membership" +msgstr "Erlaubt Administratoren das Verwalten von Mitgliedschaften in BuddyPress-Gruppen" + +#. Author of an extension +msgid "Boone Gorges" +msgstr "Boone Gorges" + +#. Author URI of an extension +msgid "http://teleogistic.net" +msgstr "http://teleogistic.net" + diff --git a/wp-content/plugins/bp-group-management/languages/bp-group-management-it_IT.mo b/wp-content/plugins/bp-group-management/languages/bp-group-management-it_IT.mo new file mode 100644 index 0000000..d648dd1 Binary files /dev/null and b/wp-content/plugins/bp-group-management/languages/bp-group-management-it_IT.mo differ diff --git a/wp-content/plugins/bp-group-management/languages/bp-group-management-it_IT.po b/wp-content/plugins/bp-group-management/languages/bp-group-management-it_IT.po new file mode 100644 index 0000000..6788f55 --- /dev/null +++ b/wp-content/plugins/bp-group-management/languages/bp-group-management-it_IT.po @@ -0,0 +1,185 @@ +# Translation of the WordPress plugin BP Group Management 0.2 by Boone Gorges. +# Copyright (C) 2010 Boone Gorges +# This file is distributed under the same license as the BP Group Management package. +# FIRST AUTHOR , 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: BP Group Management 0.2\n" +"Report-Msgid-Bugs-To: http://wordpress.org/tag/bp-group-management\n" +"POT-Creation-Date: 2010-03-07 21:39+0000\n" +"PO-Revision-Date: 2010-03-08 07:15+0100\n" +"Last-Translator: Luca Camellini \n" +"Language-Team: luccame\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Language: Italian\n" +"X-Poedit-Country: ITALY\n" +"X-Poedit-SourceCharset: utf-8\n" + +#: bp-group-management-bp-functions.php:5 +#: bp-group-management-bp-functions.php:59 +#: bp-group-management-bp-functions.php:243 +#: bp-group-management-bp-functions.php:367 +msgid "Group Management" +msgstr "Gestione Gruppi" + +#: bp-group-management-bp-functions.php:45 +#: bp-group-management-bp-functions.php:163 +#: bp-group-management-bp-functions.php:177 +#: bp-group-management-bp-functions.php:191 +#: bp-group-management-bp-functions.php:205 +#: bp-group-management-bp-functions.php:219 +#: bp-group-management-bp-functions.php:231 +msgid "Sorry, there was an error." +msgstr "Spiacente, si è verificato un errore" + +#: bp-group-management-bp-functions.php:47 +msgid "Group deleted." +msgstr "Gruppo eliminato." + +#: bp-group-management-bp-functions.php:65 +msgid "Group ID" +msgstr "ID Gruppo" + +#: bp-group-management-bp-functions.php:66 +msgid "Group Name" +msgstr "Nome Gruppo" + +#: bp-group-management-bp-functions.php:67 +msgid "Date Created" +msgstr "Data Creazione" + +#: bp-group-management-bp-functions.php:68 +msgid "Number of Members" +msgstr "Numero di Membri" + +#: bp-group-management-bp-functions.php:104 +msgid "Edit" +msgstr "Modifica" + +#: bp-group-management-bp-functions.php:107 +msgid "Delete" +msgstr "Elimina" + +#: bp-group-management-bp-functions.php:109 +msgid "Visit" +msgstr "Visita" + +#: bp-group-management-bp-functions.php:165 +msgid "Member kicked and banned" +msgstr "Membro espulso e bandito" + +#: bp-group-management-bp-functions.php:179 +msgid "Member unbanned" +msgstr "Membro riammesso" + +#: bp-group-management-bp-functions.php:193 +msgid "Member demoted" +msgstr "Membro degradato" + +#: bp-group-management-bp-functions.php:207 +msgid "Member promoted to moderator" +msgstr "Membro promosso a moderatore" + +#: bp-group-management-bp-functions.php:221 +msgid "Member promoted to admin" +msgstr "Membro promosso ad amministratore" + +#: bp-group-management-bp-functions.php:233 +msgid "User added to group" +msgstr "Utente aggiunto al gruppo" + +#: bp-group-management-bp-functions.php:244 +#: bp-group-management-bp-functions.php:368 +msgid "Back to group index" +msgstr "Torna all'indice gruppi" + +#: bp-group-management-bp-functions.php:248 +msgid "Manage current and banned group members" +msgstr "Gestisci membri correnti e banditi del guppo" + +#: bp-group-management-bp-functions.php:277 +msgid "(banned)" +msgstr "(bandito)" + +#: bp-group-management-bp-functions.php:277 +msgid "Remove Ban" +msgstr "Rimuovi Bando" + +#: bp-group-management-bp-functions.php:300 +msgid "Kick and ban this member" +msgstr "Espelli e bandisci questo membro" + +#: bp-group-management-bp-functions.php:300 +msgid "Kick & Ban" +msgstr "Espelli & Bandisci" + +#: bp-group-management-bp-functions.php:302 +#: bp-group-management-bp-functions.php:304 +msgid "Demote to Member" +msgstr "Degrada a Membro" + +#: bp-group-management-bp-functions.php:304 +#: bp-group-management-bp-functions.php:306 +msgid "Promote to Admin" +msgstr "Promuovi ad amministratore" + +#: bp-group-management-bp-functions.php:306 +msgid "Promote to Moderator" +msgstr "Promuovi a Moderatore" + +#: bp-group-management-bp-functions.php:325 +msgid "Add members to group" +msgstr "Aggiungi membri al gruppo" + +#: bp-group-management-bp-functions.php:342 +msgid "Add" +msgstr "Aggiungi" + +#: bp-group-management-bp-functions.php:371 +msgid "Deleting the group" +msgstr "Eliminazione gruppo" + +#: bp-group-management-bp-functions.php:372 +msgid "You are about to delete the group" +msgstr "Stai per eliminare il gruppo" + +#: bp-group-management-bp-functions.php:372 +msgid "This action cannot be undone." +msgstr "Questa azione non può essere annullata" + +#: bp-group-management-bp-functions.php:374 +msgid "Delete Group" +msgstr "Elimina Gruppo" + +#: bp-group-management-bp-functions.php:375 +msgid "Oops, I changed my mind" +msgstr "Oops, ho cambiato idea" + +#: bp-group-management-bp-functions.php:477 +#, php-format +msgid "%s joined the group %s" +msgstr "%s si è iscritto al gruppo %s" + +#. Plugin Name of an extension +msgid "BP Group Management" +msgstr "BP Group Management" + +#. Plugin URI of an extension +msgid "http://teleogistic.net/code/buddypress/bp-group-management" +msgstr "http://teleogistic.net/code/buddypress/bp-group-management" + +#. Description of an extension +msgid "Allows site administrators to manage BuddyPress group membership" +msgstr "Permetti agli amministratori del sito di gestire le adesioni ai gruppi di BuddyPress" + +#. Author of an extension +msgid "Boone Gorges" +msgstr "Boone Gorges" + +#. Author URI of an extension +msgid "http://teleogistic.net" +msgstr "http://teleogistic.net" + diff --git a/wp-content/plugins/bp-group-management/languages/bp-group-management-nl_NL.mo b/wp-content/plugins/bp-group-management/languages/bp-group-management-nl_NL.mo new file mode 100644 index 0000000..df2ed92 Binary files /dev/null and b/wp-content/plugins/bp-group-management/languages/bp-group-management-nl_NL.mo differ diff --git a/wp-content/plugins/bp-group-management/languages/bp-group-management-nl_NL.po b/wp-content/plugins/bp-group-management/languages/bp-group-management-nl_NL.po new file mode 100644 index 0000000..670f37d --- /dev/null +++ b/wp-content/plugins/bp-group-management/languages/bp-group-management-nl_NL.po @@ -0,0 +1,266 @@ +msgid "" +msgstr "" +"Project-Id-Version: bp-group-management v0.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-01-19 16:49+0100\n" +"PO-Revision-Date: \n" +"Last-Translator: anja \n" +"Language-Team: werkgroepen.net \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Poedit-Language: Dutch\n" +"X-Poedit-Country: NETHERLANDS\n" +"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;esc_attr_e;esc_attr__;esc_html_e;esc_html__\n" +"X-Poedit-Basepath: .\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPath-1: ..\n" + +#: bp-group-management-aux.php:6 +#: bp-group-management-bp-functions.php:132 +#: ../bp-group-management/bp-group-management-aux.php:6 +#: ../bp-group-management/bp-group-management-bp-functions.php:132 +msgid "Members" +msgstr "Leden" + +#: bp-group-management-aux.php:7 +#: bp-group-management-bp-functions.php:135 +#: ../bp-group-management/bp-group-management-aux.php:7 +#: ../bp-group-management/bp-group-management-bp-functions.php:135 +msgid "Delete" +msgstr "Verwijderen" + +#: bp-group-management-aux.php:8 +#: bp-group-management-bp-functions.php:137 +#: ../bp-group-management/bp-group-management-aux.php:8 +#: ../bp-group-management/bp-group-management-bp-functions.php:137 +msgid "Admin" +msgstr "Admin" + +#: bp-group-management-aux.php:9 +#: bp-group-management-bp-functions.php:139 +#: ../bp-group-management/bp-group-management-aux.php:9 +#: ../bp-group-management/bp-group-management-bp-functions.php:139 +msgid "Visit" +msgstr "Bezoek" + +#: bp-group-management-aux.php:111 +#: ../bp-group-management/bp-group-management-aux.php:111 +#, php-format +msgid "%s joined the group %s" +msgstr "%s doet mee met de groep %s" + +#: bp-group-management-bp-functions.php:38 +#: bp-group-management-bp-functions.php:211 +#: bp-group-management-bp-functions.php:225 +#: bp-group-management-bp-functions.php:239 +#: bp-group-management-bp-functions.php:253 +#: bp-group-management-bp-functions.php:267 +#: bp-group-management-bp-functions.php:279 +#: ../bp-group-management/bp-group-management-bp-functions.php:38 +#: ../bp-group-management/bp-group-management-bp-functions.php:211 +#: ../bp-group-management/bp-group-management-bp-functions.php:225 +#: ../bp-group-management/bp-group-management-bp-functions.php:239 +#: ../bp-group-management/bp-group-management-bp-functions.php:253 +#: ../bp-group-management/bp-group-management-bp-functions.php:267 +#: ../bp-group-management/bp-group-management-bp-functions.php:279 +msgid "Sorry, there was an error." +msgstr "Helaas, er was een fout." + +#: bp-group-management-bp-functions.php:40 +#: ../bp-group-management/bp-group-management-bp-functions.php:40 +msgid "Group deleted." +msgstr "Groep verwijderd." + +#: bp-group-management-bp-functions.php:51 +#: bp-group-management-bp-functions.php:291 +#: bp-group-management-bp-functions.php:490 +#: bp-group-management-bp-functions.php:571 +#: ../bp-group-management/bp-group-management-bp-functions.php:51 +#: ../bp-group-management/bp-group-management-bp-functions.php:291 +#: ../bp-group-management/bp-group-management-bp-functions.php:490 +#: ../bp-group-management/bp-group-management-bp-functions.php:571 +msgid "Group Management" +msgstr "Groepsbeheer" + +#: bp-group-management-bp-functions.php:96 +#: ../bp-group-management/bp-group-management-bp-functions.php:96 +msgid "Group ID" +msgstr "Groep ID" + +#: bp-group-management-bp-functions.php:98 +#: ../bp-group-management/bp-group-management-bp-functions.php:98 +msgid "Group avatar" +msgstr "Groep avatar" + +#: bp-group-management-bp-functions.php:99 +#: ../bp-group-management/bp-group-management-bp-functions.php:99 +msgid "Group Name" +msgstr "Groepsnaam" + +#: bp-group-management-bp-functions.php:100 +#: ../bp-group-management/bp-group-management-bp-functions.php:100 +msgid "Date Created" +msgstr "Datum gemaakt" + +#: bp-group-management-bp-functions.php:101 +#: ../bp-group-management/bp-group-management-bp-functions.php:101 +msgid "Number of Members" +msgstr "Aantal leden" + +#: bp-group-management-bp-functions.php:190 +#: ../bp-group-management/bp-group-management-bp-functions.php:190 +msgid "Plugin settings" +msgstr "Plugin instellingen" + +#: bp-group-management-bp-functions.php:213 +#: ../bp-group-management/bp-group-management-bp-functions.php:213 +msgid "Member kicked and banned" +msgstr "Lid verbannen" + +#: bp-group-management-bp-functions.php:227 +#: ../bp-group-management/bp-group-management-bp-functions.php:227 +msgid "Member unbanned" +msgstr "Lid uit de ban gehaald " + +#: bp-group-management-bp-functions.php:241 +#: ../bp-group-management/bp-group-management-bp-functions.php:241 +msgid "Member demoted" +msgstr "Lid gewijzigd" + +#: bp-group-management-bp-functions.php:255 +#: ../bp-group-management/bp-group-management-bp-functions.php:255 +msgid "Member promoted to moderator" +msgstr "Lid gewijzigd naar moderator" + +#: bp-group-management-bp-functions.php:269 +#: ../bp-group-management/bp-group-management-bp-functions.php:269 +msgid "Member promoted to admin" +msgstr "Lif gewijzigd naar admin" + +#: bp-group-management-bp-functions.php:281 +#: ../bp-group-management/bp-group-management-bp-functions.php:281 +msgid "User added to group" +msgstr "Gebruiker aan groep toegevoegd" + +#: bp-group-management-bp-functions.php:293 +#: bp-group-management-bp-functions.php:492 +#: bp-group-management-bp-functions.php:524 +#: ../bp-group-management/bp-group-management-bp-functions.php:293 +#: ../bp-group-management/bp-group-management-bp-functions.php:492 +#: ../bp-group-management/bp-group-management-bp-functions.php:524 +msgid "Group index" +msgstr "Groep index" + +#: bp-group-management-bp-functions.php:296 +#: bp-group-management-bp-functions.php:495 +#: ../bp-group-management/bp-group-management-bp-functions.php:296 +#: ../bp-group-management/bp-group-management-bp-functions.php:495 +msgid "Group actions" +msgstr "Groep acties:" + +#: bp-group-management-bp-functions.php:307 +#: ../bp-group-management/bp-group-management-bp-functions.php:307 +msgid "Manage current and banned group members" +msgstr "Beheer huidige en verbannen groepsleden" + +#: bp-group-management-bp-functions.php:336 +#: ../bp-group-management/bp-group-management-bp-functions.php:336 +msgid "(banned)" +msgstr "(verbannen)" + +#: bp-group-management-bp-functions.php:336 +#: ../bp-group-management/bp-group-management-bp-functions.php:336 +msgid "Remove Ban" +msgstr "Verwijder ban" + +#: bp-group-management-bp-functions.php:359 +#: ../bp-group-management/bp-group-management-bp-functions.php:359 +msgid "Kick and ban this member" +msgstr "Verban dit lid" + +#: bp-group-management-bp-functions.php:359 +#: ../bp-group-management/bp-group-management-bp-functions.php:359 +msgid "Kick & Ban" +msgstr "Verban dit lid" + +#: bp-group-management-bp-functions.php:361 +#: bp-group-management-bp-functions.php:363 +#: ../bp-group-management/bp-group-management-bp-functions.php:361 +#: ../bp-group-management/bp-group-management-bp-functions.php:363 +msgid "Demote to Member" +msgstr "Wijzig naar lid" + +#: bp-group-management-bp-functions.php:363 +#: bp-group-management-bp-functions.php:365 +#: ../bp-group-management/bp-group-management-bp-functions.php:363 +#: ../bp-group-management/bp-group-management-bp-functions.php:365 +msgid "Promote to Admin" +msgstr "Wijzig naar admin" + +#: bp-group-management-bp-functions.php:365 +#: ../bp-group-management/bp-group-management-bp-functions.php:365 +msgid "Promote to Moderator" +msgstr "Wijzig naar moderator" + +#: bp-group-management-bp-functions.php:401 +#: ../bp-group-management/bp-group-management-bp-functions.php:401 +msgid "Add members to group" +msgstr "Voeg leden aan groep toe" + +#: bp-group-management-bp-functions.php:458 +#: ../bp-group-management/bp-group-management-bp-functions.php:458 +msgid "Add" +msgstr "Toevoegen" + +#: bp-group-management-bp-functions.php:504 +#: ../bp-group-management/bp-group-management-bp-functions.php:504 +msgid "Deleting the group" +msgstr "De groep verwijderen" + +#: bp-group-management-bp-functions.php:505 +#: ../bp-group-management/bp-group-management-bp-functions.php:505 +msgid "You are about to delete the group" +msgstr "Je staat op het punt de groep te verwijderen" + +#: bp-group-management-bp-functions.php:505 +#: ../bp-group-management/bp-group-management-bp-functions.php:505 +msgid "This action cannot be undone." +msgstr "Deze actie kan niet ongedaan gemaakt worden" + +#: bp-group-management-bp-functions.php:507 +#: ../bp-group-management/bp-group-management-bp-functions.php:507 +msgid "Delete Group" +msgstr "Verwijder groep" + +#: bp-group-management-bp-functions.php:508 +#: ../bp-group-management/bp-group-management-bp-functions.php:508 +msgid "Oops, I changed my mind" +msgstr "Uhh, ik ben van gedachten veranderd" + +#: bp-group-management-bp-functions.php:523 +#: ../bp-group-management/bp-group-management-bp-functions.php:523 +msgid "Group Management Settings" +msgstr "Groepsbeheer Instellingen" + +#: bp-group-management-bp-functions.php:529 +#: ../bp-group-management/bp-group-management-bp-functions.php:529 +msgid "Save Changes" +msgstr "Wijzigingen bijwerken" + +#: bp-group-management-bp-functions.php:541 +#: ../bp-group-management/bp-group-management-bp-functions.php:541 +msgid "Main Settings" +msgstr "Hoofdinstellingen" + +#: bp-group-management-bp-functions.php:543 +#: ../bp-group-management/bp-group-management-bp-functions.php:543 +msgid "Number of members to display per page" +msgstr "Aantal leden per pagina tonen" + +#: bp-group-management-bp-functions.php:545 +#: ../bp-group-management/bp-group-management-bp-functions.php:545 +msgid "Number of groups to display per page" +msgstr "Aantal groepen per pagina tonen" + diff --git a/wp-content/plugins/bp-group-management/languages/bp-group-management-ro_RO.mo b/wp-content/plugins/bp-group-management/languages/bp-group-management-ro_RO.mo new file mode 100644 index 0000000..7a0f654 Binary files /dev/null and b/wp-content/plugins/bp-group-management/languages/bp-group-management-ro_RO.mo differ diff --git a/wp-content/plugins/bp-group-management/languages/bp-group-management-ro_RO.po b/wp-content/plugins/bp-group-management/languages/bp-group-management-ro_RO.po new file mode 100644 index 0000000..28af2c4 --- /dev/null +++ b/wp-content/plugins/bp-group-management/languages/bp-group-management-ro_RO.po @@ -0,0 +1,183 @@ +# Copyright (C) 2010 Boone Gorges +# This file is distributed under the same license as the BP Group Management package. +# FIRST AUTHOR , 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: BP Group Management 0.2\n" +"Report-Msgid-Bugs-To: http://wordpress.org/tag/bp-group-management\n" +"POT-Creation-Date: 2010-03-07 21:39+0000\n" +"PO-Revision-Date: 2012-03-20 18:15+0200\n" +"X-Poedit-Language: Romanian\n" +"X-Poedit-Country: Romania\n" +"Language-Team: Web Geeks\n" +"Last-Translator: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: bp-group-management-bp-functions.php:5 +#: bp-group-management-bp-functions.php:59 +#: bp-group-management-bp-functions.php:243 +#: bp-group-management-bp-functions.php:367 +msgid "Group Management" +msgstr "Gestionarea grupului" + +#: bp-group-management-bp-functions.php:45 +#: bp-group-management-bp-functions.php:163 +#: bp-group-management-bp-functions.php:177 +#: bp-group-management-bp-functions.php:191 +#: bp-group-management-bp-functions.php:205 +#: bp-group-management-bp-functions.php:219 +#: bp-group-management-bp-functions.php:231 +msgid "Sorry, there was an error." +msgstr "Ne pare rău, a fost o eroare." + +#: bp-group-management-bp-functions.php:47 +msgid "Group deleted." +msgstr "Grupa elimină." + +#: bp-group-management-bp-functions.php:65 +msgid "Group ID" +msgstr "ID de grup" + +#: bp-group-management-bp-functions.php:66 +msgid "Group Name" +msgstr "Nume grup" + +#: bp-group-management-bp-functions.php:67 +msgid "Date Created" +msgstr "Data creat" + +#: bp-group-management-bp-functions.php:68 +msgid "Number of Members" +msgstr "Numărul de membri" + +#: bp-group-management-bp-functions.php:104 +msgid "Edit" +msgstr "Editare" + +#: bp-group-management-bp-functions.php:107 +msgid "Delete" +msgstr "Ştergere" + +#: bp-group-management-bp-functions.php:109 +msgid "Visit" +msgstr "Vizitaţi" + +#: bp-group-management-bp-functions.php:165 +msgid "Member kicked and banned" +msgstr "Membre dat şi interzis" + +#: bp-group-management-bp-functions.php:179 +msgid "Member unbanned" +msgstr "Membru unbanned" + +#: bp-group-management-bp-functions.php:193 +msgid "Member demoted" +msgstr "Membre retrogradat" + +#: bp-group-management-bp-functions.php:207 +msgid "Member promoted to moderator" +msgstr "Membre promovat moderator" + +#: bp-group-management-bp-functions.php:221 +msgid "Member promoted to admin" +msgstr "Membre promovat la admin" + +#: bp-group-management-bp-functions.php:233 +msgid "User added to group" +msgstr "Utilizator adăugate la Grupa" + +#: bp-group-management-bp-functions.php:244 +#: bp-group-management-bp-functions.php:368 +msgid "Back to group index" +msgstr "Înapoi la indexul de grup" + +#: bp-group-management-bp-functions.php:248 +msgid "Manage current and banned group members" +msgstr "Gestionaţi membrii grupului curente şi interzis" + +#: bp-group-management-bp-functions.php:277 +msgid "(banned)" +msgstr "(interzis)" + +#: bp-group-management-bp-functions.php:277 +msgid "Remove Ban" +msgstr "Remove Ban" + +#: bp-group-management-bp-functions.php:300 +msgid "Kick and ban this member" +msgstr "Lovi cu piciorul şi ban acest membru" + +#: bp-group-management-bp-functions.php:300 +msgid "Kick & Ban" +msgstr "Kick & Ban" + +#: bp-group-management-bp-functions.php:302 +#: bp-group-management-bp-functions.php:304 +msgid "Demote to Member" +msgstr "Retrogradarea la membre" + +#: bp-group-management-bp-functions.php:304 +#: bp-group-management-bp-functions.php:306 +msgid "Promote to Admin" +msgstr "Promovarea la Admin" + +#: bp-group-management-bp-functions.php:306 +msgid "Promote to Moderator" +msgstr "Promova Moderator" + +#: bp-group-management-bp-functions.php:325 +msgid "Add members to group" +msgstr "Adăuga membri la grup" + +#: bp-group-management-bp-functions.php:342 +msgid "Add" +msgstr "Adăuga" + +#: bp-group-management-bp-functions.php:371 +msgid "Deleting the group" +msgstr "Şterge grupul" + +#: bp-group-management-bp-functions.php:372 +msgid "You are about to delete the group" +msgstr "Doriţi să ştergeţi grupul" + +#: bp-group-management-bp-functions.php:372 +msgid "This action cannot be undone." +msgstr "Această acţiune nu poate fi anulată." + +#: bp-group-management-bp-functions.php:374 +msgid "Delete Group" +msgstr "Ştergere grup" + +#: bp-group-management-bp-functions.php:375 +msgid "Oops, I changed my mind" +msgstr "Oops, am schimbat mintea mea" + +#: bp-group-management-bp-functions.php:477 +#, php-format +msgid "%s joined the group %s" +msgstr "%s s-a alăturat grupului %s" + +#. Plugin Name of an extension +msgid "BP Group Management" +msgstr "Gestionarea grupul BP" + +#. Plugin URI of an extension +msgid "http://teleogistic.net/code/buddypress/bp-group-management" +msgstr "http://teleogistic.net/code/BuddyPress/BP-Group-management" + +#. Description of an extension +msgid "Allows site administrators to manage BuddyPress group membership" +msgstr "Permite administratorilor de site-ul pentru a gestiona apartenenţa BuddyPress la grup" + +#. Author of an extension +msgid "Boone Gorges" +msgstr "Boone Gorges" + +#. Author URI of an extension +msgid "http://teleogistic.net" +msgstr "http://teleogistic.net" + diff --git a/wp-content/plugins/bp-group-management/languages/bp-group-management-sk_SK.mo b/wp-content/plugins/bp-group-management/languages/bp-group-management-sk_SK.mo new file mode 100644 index 0000000..9c2e212 Binary files /dev/null and b/wp-content/plugins/bp-group-management/languages/bp-group-management-sk_SK.mo differ diff --git a/wp-content/plugins/bp-group-management/languages/bp-group-management-sk_SK.po b/wp-content/plugins/bp-group-management/languages/bp-group-management-sk_SK.po new file mode 100644 index 0000000..91edec6 --- /dev/null +++ b/wp-content/plugins/bp-group-management/languages/bp-group-management-sk_SK.po @@ -0,0 +1,183 @@ +# Copyright (C) 2010 Boone Gorges +# This file is distributed under the same license as the BP Group Management package. +# FIRST AUTHOR , 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: BP Group Management 0.2\n" +"Report-Msgid-Bugs-To: http://wordpress.org/tag/bp-group-management\n" +"POT-Creation-Date: 2010-03-07 21:39+0000\n" +"PO-Revision-Date: 2012-04-10 16:46+0200\n" +"X-Poedit-Language: Slovak\n" +"X-Poedit-Country: Slovakia\n" +"Language-Team: Web Geeks\n" +"Last-Translator: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: bp-group-management-bp-functions.php:5 +#: bp-group-management-bp-functions.php:59 +#: bp-group-management-bp-functions.php:243 +#: bp-group-management-bp-functions.php:367 +msgid "Group Management" +msgstr "Riadenie skupiny" + +#: bp-group-management-bp-functions.php:45 +#: bp-group-management-bp-functions.php:163 +#: bp-group-management-bp-functions.php:177 +#: bp-group-management-bp-functions.php:191 +#: bp-group-management-bp-functions.php:205 +#: bp-group-management-bp-functions.php:219 +#: bp-group-management-bp-functions.php:231 +msgid "Sorry, there was an error." +msgstr "Je nám ľúto, ale vyskytla sa chyba." + +#: bp-group-management-bp-functions.php:47 +msgid "Group deleted." +msgstr "Skupina sa vypúšťa." + +#: bp-group-management-bp-functions.php:65 +msgid "Group ID" +msgstr "Identifikácia skupiny" + +#: bp-group-management-bp-functions.php:66 +msgid "Group Name" +msgstr "Názov skupiny" + +#: bp-group-management-bp-functions.php:67 +msgid "Date Created" +msgstr "Dátumu vytvorenia" + +#: bp-group-management-bp-functions.php:68 +msgid "Number of Members" +msgstr "Počet členov" + +#: bp-group-management-bp-functions.php:104 +msgid "Edit" +msgstr "Upraviť" + +#: bp-group-management-bp-functions.php:107 +msgid "Delete" +msgstr "Odstrániť" + +#: bp-group-management-bp-functions.php:109 +msgid "Visit" +msgstr "Navštívte" + +#: bp-group-management-bp-functions.php:165 +msgid "Member kicked and banned" +msgstr "Členka kopl a zakázané" + +#: bp-group-management-bp-functions.php:179 +msgid "Member unbanned" +msgstr "Člen unbanned" + +#: bp-group-management-bp-functions.php:193 +msgid "Member demoted" +msgstr "Člen odbúravané" + +#: bp-group-management-bp-functions.php:207 +msgid "Member promoted to moderator" +msgstr "Člen povýšený na moderátora" + +#: bp-group-management-bp-functions.php:221 +msgid "Member promoted to admin" +msgstr "Člen povýšený na admin" + +#: bp-group-management-bp-functions.php:233 +msgid "User added to group" +msgstr "Používateľ pridať do skupiny v Európskom parlamente" + +#: bp-group-management-bp-functions.php:244 +#: bp-group-management-bp-functions.php:368 +msgid "Back to group index" +msgstr "Späť na index skupiny" + +#: bp-group-management-bp-functions.php:248 +msgid "Manage current and banned group members" +msgstr "Spravovať súčasných a zakázané èlenov" + +#: bp-group-management-bp-functions.php:277 +msgid "(banned)" +msgstr "(zakázané)" + +#: bp-group-management-bp-functions.php:277 +msgid "Remove Ban" +msgstr "Odstránenie zákazu" + +#: bp-group-management-bp-functions.php:300 +msgid "Kick and ban this member" +msgstr "Kop a zákaz tento člen" + +#: bp-group-management-bp-functions.php:300 +msgid "Kick & Ban" +msgstr "Kop & zákaz" + +#: bp-group-management-bp-functions.php:302 +#: bp-group-management-bp-functions.php:304 +msgid "Demote to Member" +msgstr "Degradovať na členské" + +#: bp-group-management-bp-functions.php:304 +#: bp-group-management-bp-functions.php:306 +msgid "Promote to Admin" +msgstr "Podporu Admin" + +#: bp-group-management-bp-functions.php:306 +msgid "Promote to Moderator" +msgstr "Podporovať na moderátora" + +#: bp-group-management-bp-functions.php:325 +msgid "Add members to group" +msgstr "Pridať členov do skupiny" + +#: bp-group-management-bp-functions.php:342 +msgid "Add" +msgstr "Pridať" + +#: bp-group-management-bp-functions.php:371 +msgid "Deleting the group" +msgstr "Odstránením skupiny" + +#: bp-group-management-bp-functions.php:372 +msgid "You are about to delete the group" +msgstr "Chystáte sa odstrániť skupinu" + +#: bp-group-management-bp-functions.php:372 +msgid "This action cannot be undone." +msgstr "Táto akcia sa nedá vrátiť späť." + +#: bp-group-management-bp-functions.php:374 +msgid "Delete Group" +msgstr "Zmazať skupinu" + +#: bp-group-management-bp-functions.php:375 +msgid "Oops, I changed my mind" +msgstr "Chybička se vloudila, som zmenil mojej mysli" + +#: bp-group-management-bp-functions.php:477 +#, php-format +msgid "%s joined the group %s" +msgstr "%s vstúpil skupina %s" + +#. Plugin Name of an extension +msgid "BP Group Management" +msgstr "Riadenie BP skupiny" + +#. Plugin URI of an extension +msgid "http://teleogistic.net/code/buddypress/bp-group-management" +msgstr "http://teleogistic.net/code/BuddyPress/BP-Group-Management" + +#. Description of an extension +msgid "Allows site administrators to manage BuddyPress group membership" +msgstr "Umožňuje správcom lokality riadiť členstvo v skupine BuddyPress" + +#. Author of an extension +msgid "Boone Gorges" +msgstr "Boone bralá" + +#. Author URI of an extension +msgid "http://teleogistic.net" +msgstr "http://teleogistic.net" + diff --git a/wp-content/plugins/bp-group-management/languages/bp-group-management-tr_TR.mo b/wp-content/plugins/bp-group-management/languages/bp-group-management-tr_TR.mo new file mode 100644 index 0000000..5c37682 Binary files /dev/null and b/wp-content/plugins/bp-group-management/languages/bp-group-management-tr_TR.mo differ diff --git a/wp-content/plugins/bp-group-management/languages/bp-group-management-tr_TR.po b/wp-content/plugins/bp-group-management/languages/bp-group-management-tr_TR.po new file mode 100644 index 0000000..34d2c7e --- /dev/null +++ b/wp-content/plugins/bp-group-management/languages/bp-group-management-tr_TR.po @@ -0,0 +1,185 @@ +# Translation of the WordPress plugin BP Group Management 0.2 by Boone Gorges. +# Copyright (C) 2010 Boone Gorges +# This file is distributed under the same license as the BP Group Management package. +# FIRST AUTHOR , 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: BP Group Management 0.2\n" +"Report-Msgid-Bugs-To: http://wordpress.org/tag/bp-group-management\n" +"POT-Creation-Date: 2010-03-07 21:39+0000\n" +"PO-Revision-Date: 2010-03-08 20:40+0200\n" +"Last-Translator: h \n" +"Language-Team: luccame\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Language: Italian\n" +"X-Poedit-Country: ITALY\n" +"X-Poedit-SourceCharset: utf-8\n" + +#: bp-group-management-bp-functions.php:5 +#: bp-group-management-bp-functions.php:59 +#: bp-group-management-bp-functions.php:243 +#: bp-group-management-bp-functions.php:367 +msgid "Group Management" +msgstr "Grup Yönetimi" + +#: bp-group-management-bp-functions.php:45 +#: bp-group-management-bp-functions.php:163 +#: bp-group-management-bp-functions.php:177 +#: bp-group-management-bp-functions.php:191 +#: bp-group-management-bp-functions.php:205 +#: bp-group-management-bp-functions.php:219 +#: bp-group-management-bp-functions.php:231 +msgid "Sorry, there was an error." +msgstr "Üzgünüm, bir hata meydana geldi." + +#: bp-group-management-bp-functions.php:47 +msgid "Group deleted." +msgstr "Grup silindi." + +#: bp-group-management-bp-functions.php:65 +msgid "Group ID" +msgstr "Grup Sırası" + +#: bp-group-management-bp-functions.php:66 +msgid "Group Name" +msgstr "Grup Adı" + +#: bp-group-management-bp-functions.php:67 +msgid "Date Created" +msgstr "Kurulma Tarihi" + +#: bp-group-management-bp-functions.php:68 +msgid "Number of Members" +msgstr "Üye Sayısı" + +#: bp-group-management-bp-functions.php:104 +msgid "Edit" +msgstr "Düzenle" + +#: bp-group-management-bp-functions.php:107 +msgid "Delete" +msgstr "Sil" + +#: bp-group-management-bp-functions.php:109 +msgid "Visit" +msgstr "Görüntüle" + +#: bp-group-management-bp-functions.php:165 +msgid "Member kicked and banned" +msgstr "Üye yasaklandı" + +#: bp-group-management-bp-functions.php:179 +msgid "Member unbanned" +msgstr "Üyenin yasağı kaldırıldı" + +#: bp-group-management-bp-functions.php:193 +msgid "Member demoted" +msgstr "Üyenin yetkisi alındı" + +#: bp-group-management-bp-functions.php:207 +msgid "Member promoted to moderator" +msgstr "Üye mod yapıldı" + +#: bp-group-management-bp-functions.php:221 +msgid "Member promoted to admin" +msgstr "Üye yönetici yapıldı" + +#: bp-group-management-bp-functions.php:233 +msgid "User added to group" +msgstr "Üye gruba eklendi" + +#: bp-group-management-bp-functions.php:244 +#: bp-group-management-bp-functions.php:368 +msgid "Back to group index" +msgstr "Grup dizinine dön" + +#: bp-group-management-bp-functions.php:248 +msgid "Manage current and banned group members" +msgstr "Üyeleri ve yasaklı üyeleri yönet" + +#: bp-group-management-bp-functions.php:277 +msgid "(banned)" +msgstr "(yasaklı)" + +#: bp-group-management-bp-functions.php:277 +msgid "Remove Ban" +msgstr "Yasağı Kaldır" + +#: bp-group-management-bp-functions.php:300 +msgid "Kick and ban this member" +msgstr "Bu üyeyi yasakla" + +#: bp-group-management-bp-functions.php:300 +msgid "Kick & Ban" +msgstr "Yasakla" + +#: bp-group-management-bp-functions.php:302 +#: bp-group-management-bp-functions.php:304 +msgid "Demote to Member" +msgstr "Yetkisini Al" + +#: bp-group-management-bp-functions.php:304 +#: bp-group-management-bp-functions.php:306 +msgid "Promote to Admin" +msgstr "Yönetici Yap" + +#: bp-group-management-bp-functions.php:306 +msgid "Promote to Moderator" +msgstr "Mod Yap" + +#: bp-group-management-bp-functions.php:325 +msgid "Add members to group" +msgstr "Gruba Dahil Et" + +#: bp-group-management-bp-functions.php:342 +msgid "Add" +msgstr "Ekle" + +#: bp-group-management-bp-functions.php:371 +msgid "Deleting the group" +msgstr "Grup siliniyor" + +#: bp-group-management-bp-functions.php:372 +msgid "You are about to delete the group" +msgstr "Bu grubu silmek üzeresiniz" + +#: bp-group-management-bp-functions.php:372 +msgid "This action cannot be undone." +msgstr "Bu işlemin geri dönüşü yok." + +#: bp-group-management-bp-functions.php:374 +msgid "Delete Group" +msgstr "Grubu Sil" + +#: bp-group-management-bp-functions.php:375 +msgid "Oops, I changed my mind" +msgstr "Ehm, fikrimi değiştirdim" + +#: bp-group-management-bp-functions.php:477 +#, php-format +msgid "%s joined the group %s" +msgstr "%s, %s grubuna katıldı" + +#. Plugin Name of an extension +msgid "BP Group Management" +msgstr "BP Grup Yönetimi" + +#. Plugin URI of an extension +msgid "http://teleogistic.net/code/buddypress/bp-group-management" +msgstr "http://teleogistic.net/code/buddypress/bp-group-management" + +#. Description of an extension +msgid "Allows site administrators to manage BuddyPress group membership" +msgstr "Site yöneticilerinin grup üyeliklerini yönetmelerine izin ver" + +#. Author of an extension +msgid "Boone Gorges" +msgstr "Boone Gorges" + +#. Author URI of an extension +msgid "http://teleogistic.net" +msgstr "http://teleogistic.net" + diff --git a/wp-content/plugins/bp-group-management/languages/bp-group-management.pot b/wp-content/plugins/bp-group-management/languages/bp-group-management.pot new file mode 100644 index 0000000..c78f68d --- /dev/null +++ b/wp-content/plugins/bp-group-management/languages/bp-group-management.pot @@ -0,0 +1,186 @@ +# Translation of the WordPress plugin BP Group Management 0.3 by Boone Gorges. +# Copyright (C) 2010 Boone Gorges +# This file is distributed under the same license as the BP Group Management package. +# FIRST AUTHOR , 2010. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: BP Group Management 0.3\n" +"Report-Msgid-Bugs-To: http://wordpress.org/tag/bp-group-management\n" +"POT-Creation-Date: 2010-03-08 17:03+0000\n" +"PO-Revision-Date: 2010-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: bp-group-management-bp-functions.php:5 +#: bp-group-management-bp-functions.php:57 +#: bp-group-management-bp-functions.php:288 +#: bp-group-management-bp-functions.php:442 +msgid "Group Management" +msgstr "" + +#: bp-group-management-bp-functions.php:46 +#: bp-group-management-bp-functions.php:208 +#: bp-group-management-bp-functions.php:222 +#: bp-group-management-bp-functions.php:236 +#: bp-group-management-bp-functions.php:250 +#: bp-group-management-bp-functions.php:264 +#: bp-group-management-bp-functions.php:276 +msgid "Sorry, there was an error." +msgstr "" + +#: bp-group-management-bp-functions.php:48 +msgid "Group deleted." +msgstr "" + +#: bp-group-management-bp-functions.php:97 +msgid "Group ID" +msgstr "" + +#: bp-group-management-bp-functions.php:99 +msgid "Group avatar" +msgstr "" + +#: bp-group-management-bp-functions.php:100 +msgid "Group Name" +msgstr "" + +#: bp-group-management-bp-functions.php:101 +msgid "Date Created" +msgstr "" + +#: bp-group-management-bp-functions.php:102 +msgid "Number of Members" +msgstr "" + +#: bp-group-management-bp-functions.php:133 +msgid "Edit" +msgstr "" + +#: bp-group-management-bp-functions.php:136 +msgid "Delete" +msgstr "" + +#: bp-group-management-bp-functions.php:138 +msgid "Visit" +msgstr "" + +#: bp-group-management-bp-functions.php:210 +msgid "Member kicked and banned" +msgstr "" + +#: bp-group-management-bp-functions.php:224 +msgid "Member unbanned" +msgstr "" + +#: bp-group-management-bp-functions.php:238 +msgid "Member demoted" +msgstr "" + +#: bp-group-management-bp-functions.php:252 +msgid "Member promoted to moderator" +msgstr "" + +#: bp-group-management-bp-functions.php:266 +msgid "Member promoted to admin" +msgstr "" + +#: bp-group-management-bp-functions.php:278 +msgid "User added to group" +msgstr "" + +#: bp-group-management-bp-functions.php:289 +#: bp-group-management-bp-functions.php:443 +msgid "Back to group index" +msgstr "" + +#: bp-group-management-bp-functions.php:293 +msgid "Manage current and banned group members" +msgstr "" + +#: bp-group-management-bp-functions.php:322 +msgid "(banned)" +msgstr "" + +#: bp-group-management-bp-functions.php:322 +msgid "Remove Ban" +msgstr "" + +#: bp-group-management-bp-functions.php:345 +msgid "Kick and ban this member" +msgstr "" + +#: bp-group-management-bp-functions.php:345 +msgid "Kick & Ban" +msgstr "" + +#: bp-group-management-bp-functions.php:347 +#: bp-group-management-bp-functions.php:349 +msgid "Demote to Member" +msgstr "" + +#: bp-group-management-bp-functions.php:349 +#: bp-group-management-bp-functions.php:351 +msgid "Promote to Admin" +msgstr "" + +#: bp-group-management-bp-functions.php:351 +msgid "Promote to Moderator" +msgstr "" + +#: bp-group-management-bp-functions.php:370 +msgid "Add members to group" +msgstr "" + +#: bp-group-management-bp-functions.php:417 +msgid "Add" +msgstr "" + +#: bp-group-management-bp-functions.php:446 +msgid "Deleting the group" +msgstr "" + +#: bp-group-management-bp-functions.php:447 +msgid "You are about to delete the group" +msgstr "" + +#: bp-group-management-bp-functions.php:447 +msgid "This action cannot be undone." +msgstr "" + +#: bp-group-management-bp-functions.php:449 +msgid "Delete Group" +msgstr "" + +#: bp-group-management-bp-functions.php:450 +msgid "Oops, I changed my mind" +msgstr "" + +#: bp-group-management-bp-functions.php:552 +#, php-format +msgid "%s joined the group %s" +msgstr "" + +#. Plugin Name of an extension +msgid "BP Group Management" +msgstr "" + +#. Plugin URI of an extension +msgid "http://teleogistic.net/code/buddypress/bp-group-management" +msgstr "" + +#. Description of an extension +msgid "Allows site administrators to manage BuddyPress group membership" +msgstr "" + +#. Author of an extension +msgid "Boone Gorges" +msgstr "" + +#. Author URI of an extension +msgid "http://teleogistic.net" +msgstr "" diff --git a/wp-content/plugins/bp-group-management/readme.txt b/wp-content/plugins/bp-group-management/readme.txt new file mode 100644 index 0000000..15d83a9 --- /dev/null +++ b/wp-content/plugins/bp-group-management/readme.txt @@ -0,0 +1,82 @@ +=== Plugin Name === +Contributors: boonebgorges, cuny-academic-commons +Tags: buddypress, groups, members, manage +Requires at least: WP 2.8, BuddyPress 1.2 +Tested up to: WP 3.4, BuddyPress 1.5.6 +Donate link: http://teleogistic.net/donate/ +Stable tag: 0.5.4 + +Allows site administrators to manage BuddyPress group membership + +== Description == + +This plugin creates an admin panel at Dashboard > BuddyPress > Group Management. On this panel, site admins can manage BP group membership by banning, unbanning, promoting and demoting current members of any group, adding members to any group, and deleting groups. + +== Installation == + +* Upload and activate on your BuddyPress blog + +== Translation credits == + +* Italian: Luca Camellini +* Turkish: gk +* German: Tom +* Dutch: [Anja](http://werkgroepen.net/wordpress/) +* Romanian, [Web Geek Science](http://webhostinggeeks.com/) +* B. Radenovich, Slovak (Web Hosting Watch) + +== Changelog == + += 0.5.4 = +* Adds Slovak translation + += 0.5.3 = +* Adds Romanian translation + += 0.5.2 = +* Fixes bug that caused problem with site member listing on non-MS WP installations + += 0.5.1 = +* Adds 'Remove' feature +* Fixes some markup +* Hides spam users from Add Members list + += 0.5 = +* Compatibility with BP 1.5 +* Fixes many PHP warnings + += 0.4.3 = +* Fixes bp_gm_member_action hook location so it fires properly. + += 0.4.2 = +* Compatibility with WP 3.1 Network Admin + += 0.4.1 = +* Added group type (Public/Private/Hidden) to group listing table +* Added missing gettext calls +* Added Dutch translation (thanks, Anja!) + += 0.4 = +* Added plugin settings page +* Member list is paginated (defaults to 50) +* Admin can now specify how many groups/members to show per page +* Group Actions menu added to Members and Delete pages +* Links to Group Admin page added + += 0.3.1 = +* Turkish translation added (thanks, gk!) +* German translation added (thanks, Tom!) +* Sitewide roster altered to include all members, not just members active on BP + += 0.3 = +* Pagination on group list allows you to see all groups (thanks, Andy!) +* Group avatars added (thanks, Andy!) +* Italian translation included (thanks, Luca!) + += 0.2 = +* Fully localizable +* Avatar bug fixed (thanks for pointing it out, anointed!) +* Hooks added for additional group actions + += 0.1 = +* Initial release diff --git a/wp-content/plugins/plugin-update-blocker/dpu-menu.php b/wp-content/plugins/plugin-update-blocker/dpu-menu.php new file mode 100644 index 0000000..cb6e0e6 --- /dev/null +++ b/wp-content/plugins/plugin-update-blocker/dpu-menu.php @@ -0,0 +1,121 @@ + $key){ + if($comp != "action"){ + if($key == 'disable-update'){ + $plugin_name = preg_replace("/_php/", ".php", htmlentities(strip_tags($comp))); + $note = ''; + if(isset($_POST[$comp.'-note'])){$note = $_POST[$comp.'-note'];} + $pub_plugins[$plugin_name] = array('name' => $plugin_name, 'note' => $note); + } + } + } + + update_option(PUB_UPDATE_DEACTIVATED, serialize($pub_plugins)); + + ?> +
+

Options saved!

+
+ + + + + +
+

+

+

+ Select for which plugins you want to disable updates.
You can then leave a note to explain the changes you made.
+ If a plugin you deactivated had a new version ready, you may need to refresh the page to hide it. +

+
+ + + + + + + + $wp_plugins){ + $cur_plugin = ''; + if(array_key_exists($key, $pub_plugins)){ + $cur_plugin = $pub_plugins[$key]; + } + ?> + + + + + + + + + +

Plugin name

Deactivated


>Add note
+ /> +
+ +
+ + +
+ +
+ \ No newline at end of file diff --git a/wp-content/plugins/plugin-update-blocker/plugin-update-blocker.php b/wp-content/plugins/plugin-update-blocker/plugin-update-blocker.php new file mode 100644 index 0000000..958f5a8 --- /dev/null +++ b/wp-content/plugins/plugin-update-blocker/plugin-update-blocker.php @@ -0,0 +1,95 @@ +Settings'; + } + return $links; +} + +function pub_init(){ + add_submenu_page('tools.php', PUB_NAME, PUB_NAME, 8, PUB_SLUG, 'pub_menu'); +} + +function pub_menu(){ + include dirname(__FILE__) . '/dpu-menu.php'; +} + +function pub_wp_head() { + wp_print_scripts('jquery'); +} + +function pub_http_request_args( $r, $url ) { + if ( 0 !== strpos( $url, 'http://api.wordpress.org/plugins/update-check' ) ){ + return $r; + } + + $pub_plugins = unserialize(get_option(PUB_UPDATE_DEACTIVATED)); + if(count($pub_plugins) == 0){ return $r; } + + $wp_plugins = unserialize($r['body']['plugins'] ); + + foreach($pub_plugins as $key => $p){ + unset( $wp_plugins->plugins[ $key ] ); + unset( $wp_plugins->active[ array_key_exists($key, $wp_plugins) ] ); + } + $r['body']['plugins'] = serialize( $wp_plugins ); + + return $r; +} + +add_filter('http_request_args', 'pub_http_request_args', 5, 2 ); + + + + + +?> \ No newline at end of file diff --git a/wp-content/plugins/plugin-update-blocker/readme.txt b/wp-content/plugins/plugin-update-blocker/readme.txt new file mode 100644 index 0000000..9c9bf3e --- /dev/null +++ b/wp-content/plugins/plugin-update-blocker/readme.txt @@ -0,0 +1,57 @@ +=== Plugin Name === +Contributors: jegerwan +Donate link: # +Tags: plugin, update, admin, tools +Requires at least: 2.9 +Tested up to: 3.1 +Stable tag: 0.2 + +Lets you disable unwanted updates for plugins + +== Description == + +This plugin helps you deactivate the update for the plugins you don't want to update! +Let's say you are working on a website and you modified several plugins to make them work the way you want them to. +If you (or your client) later updates the plugin, all the changes you made will be lost. +This plugin will help you in solving this issue. +It will let you select for which plugins you want to disable updates. You can then leave a note to explain the changes you made. + +Please note: +It's strongly recommended that you keep your WordPress plugins up to date. +If you skip plugin updates, you could expose your website to critical security issues. + +== Installation == + +Pretty straightforward : + +1. Upload the entire directory to the `/wp-content/plugins/` directory +2. Activate the plugin through the 'Plugins' menu in WordPress +3. The plugin admin page is located in the "Tools" menu + + +== Upgrade Notice == + +first update, no upgrage possible + +== Frequently Asked Questions == + += Is the update blocker permanent? = + +This will bloc the updates for the selected plugins, as long as it is activated + +== Screenshots == + +1. Plugin page where you can disable your plugins + +== Changelog == + += 0.2 = +- added saved notifications +- extended description on the plugin page +- added PUB_VERSION & PUB_DIR +- added settings link in the plugin list +- updated screenshot +- added Plugin URI in plugin description + += 0.1 = +First update. The plugin is working but I will ad more features diff --git a/wp-content/plugins/plugin-update-blocker/screenshot-1.jpg b/wp-content/plugins/plugin-update-blocker/screenshot-1.jpg new file mode 100644 index 0000000..d272b5e Binary files /dev/null and b/wp-content/plugins/plugin-update-blocker/screenshot-1.jpg differ